From 90e43103b3f2c99f964e118a60428b5e48f5b7a2 Mon Sep 17 00:00:00 2001 From: archive Date: Mon, 27 Mar 2000 00:00:00 +0000 Subject: [PATCH] as released 2000-03-27 --- examples/makemdx.qdt | 28 + examples/maps/bar_sy.map | 8624 +++ examples/maps/rival_teams.map | 15025 +++++ examples/maps/rtpv20.map | 49824 +++++++++++++++++ examples/maps/sr1.map | 37007 ++++++++++++ gamesrc/AI_BITCH.C | 1375 + gamesrc/AI_BITCH.H | 932 + gamesrc/AI_DOG.C | 589 + gamesrc/AI_DOG.H | 167 + gamesrc/AI_PUNK.C | 1617 + gamesrc/AI_PUNK.H | 912 + gamesrc/AI_RUNT.C | 1501 + gamesrc/AI_RUNT.H | 973 + gamesrc/AI_THUG.C | 1414 + gamesrc/AI_THUG.H | 758 + gamesrc/AI_THUG2.H | 1003 + gamesrc/AI_WHORE.C | 1558 + gamesrc/AI_WHORE.H | 1026 + gamesrc/EP_ALL.C | 711 + gamesrc/EP_ALL.H | 533 + gamesrc/EP_LOG.C | 180 + gamesrc/EP_LOG.H | 19 + gamesrc/GAME.DEF | 2 + gamesrc/GAME.DSW | 29 + gamesrc/GAME.H | 238 + gamesrc/G_AI.C | 4788 ++ gamesrc/G_AI.H | 221 + gamesrc/G_CAST.C | 1288 + gamesrc/G_CHASE.C | 152 + gamesrc/G_FOG.C | 76 + gamesrc/G_FUNC.C | 4483 ++ gamesrc/G_FUNC.H | 23 + gamesrc/G_LOCAL.H | 1746 + gamesrc/G_MISC.C | 3679 ++ gamesrc/G_NAV.H | 329 + gamesrc/G_PAWN.C | 2222 + gamesrc/G_PHYS.C | 1376 + gamesrc/G_SVCMDS.C | 281 + gamesrc/G_TARGET.C | 1493 + gamesrc/G_UTILS.C | 717 + gamesrc/G_WEAPON.C | 3035 + gamesrc/G_cmds.c | 3794 ++ gamesrc/G_combat.c | 2330 + gamesrc/G_items.c | 3874 ++ gamesrc/G_main.c | 905 + gamesrc/G_save.c | 1280 + gamesrc/G_spawn.c | 1861 + gamesrc/Game.ncb | Bin 0 -> 484352 bytes gamesrc/Game.opt | Bin 0 -> 48640 bytes gamesrc/MAKEFILE | 939 + gamesrc/M_BBOX.C | 186 + gamesrc/M_MOVE.C | 1120 + gamesrc/M_PLAYER.H | 388 + gamesrc/NavLib/NavLib.lib | Bin 0 -> 61678 bytes gamesrc/P_HUD.C | 1925 + gamesrc/P_TRAIL.C | 127 + gamesrc/P_VIEW.C | 1904 + gamesrc/P_WEAPON.C | 3235 ++ gamesrc/P_client.c | 3186 ++ gamesrc/Q_SHARED.C | 1564 + gamesrc/Q_SHARED.H | 1460 + gamesrc/VEHICLES.C | 687 + gamesrc/VEHICLES.H | 139 + gamesrc/VEH_DEFS.H | 96 + gamesrc/VOICE.C | 829 + gamesrc/VOICE.H | 42 + gamesrc/ai_bitch_tables.h | 1443 + gamesrc/ai_bum_sit.c | 639 + gamesrc/ai_bum_sit.h | 240 + gamesrc/ai_dog_tables.h | 304 + gamesrc/ai_punk_tables.h | 1695 + gamesrc/ai_runt_tables.h | 1590 + gamesrc/ai_shorty.c | 1576 + gamesrc/ai_shorty.h | 719 + gamesrc/ai_shorty_tables.h | 1547 + gamesrc/ai_skinny.c | 9 + gamesrc/ai_skinny_tables.h | 1620 + gamesrc/ai_thug2_tables.h | 1605 + gamesrc/ai_thug_sit.c | 1347 + gamesrc/ai_thug_tables.h | 1271 + gamesrc/ai_whore_tables.h | 1795 + gamesrc/ep_crystalpalace.c | 209 + gamesrc/ep_posionville.c | 1608 + gamesrc/ep_radiocity.c | 1231 + gamesrc/ep_shipyards.c | 1312 + gamesrc/ep_skidrow.c | 2943 + gamesrc/ep_steeltown.c | 1198 + gamesrc/ep_trainyard.c | 419 + gamesrc/g_ai_ents.c | 753 + gamesrc/g_ai_fight.c | 586 + gamesrc/g_ai_memory.c | 1476 + gamesrc/g_joe_misc.c | 9902 ++++ gamesrc/g_teamplay.c | 680 + gamesrc/g_teamplay.h | 48 + gamesrc/g_trigger.c | 1128 + gamesrc/game.dsp | 1192 + gamesrc/releasei386-glibc/GAME/g_nav.o | Bin 0 -> 17324 bytes gamesrc/releasei386-glibc/GAME/g_nav_cells.o | Bin 0 -> 2536 bytes gamesrc/releasei386-glibc/GAME/g_nav_io.o | Bin 0 -> 7340 bytes gamesrc/releasei386-glibc/GAME/g_nav_misc.o | Bin 0 -> 10736 bytes gamesrc/voice_bitch.c | 747 + gamesrc/voice_bitch.h | 114 + gamesrc/voice_punk.c | 1587 + gamesrc/voice_punk.h | 191 + kpdata.exe | Bin 0 -> 389182 bytes readme.txt | 148 + 106 files changed, 228697 insertions(+) create mode 100644 examples/makemdx.qdt create mode 100644 examples/maps/bar_sy.map create mode 100644 examples/maps/rival_teams.map create mode 100644 examples/maps/rtpv20.map create mode 100644 examples/maps/sr1.map create mode 100644 gamesrc/AI_BITCH.C create mode 100644 gamesrc/AI_BITCH.H create mode 100644 gamesrc/AI_DOG.C create mode 100644 gamesrc/AI_DOG.H create mode 100644 gamesrc/AI_PUNK.C create mode 100644 gamesrc/AI_PUNK.H create mode 100644 gamesrc/AI_RUNT.C create mode 100644 gamesrc/AI_RUNT.H create mode 100644 gamesrc/AI_THUG.C create mode 100644 gamesrc/AI_THUG.H create mode 100644 gamesrc/AI_THUG2.H create mode 100644 gamesrc/AI_WHORE.C create mode 100644 gamesrc/AI_WHORE.H create mode 100644 gamesrc/EP_ALL.C create mode 100644 gamesrc/EP_ALL.H create mode 100644 gamesrc/EP_LOG.C create mode 100644 gamesrc/EP_LOG.H create mode 100644 gamesrc/GAME.DEF create mode 100644 gamesrc/GAME.DSW create mode 100644 gamesrc/GAME.H create mode 100644 gamesrc/G_AI.C create mode 100644 gamesrc/G_AI.H create mode 100644 gamesrc/G_CAST.C create mode 100644 gamesrc/G_CHASE.C create mode 100644 gamesrc/G_FOG.C create mode 100644 gamesrc/G_FUNC.C create mode 100644 gamesrc/G_FUNC.H create mode 100644 gamesrc/G_LOCAL.H create mode 100644 gamesrc/G_MISC.C create mode 100644 gamesrc/G_NAV.H create mode 100644 gamesrc/G_PAWN.C create mode 100644 gamesrc/G_PHYS.C create mode 100644 gamesrc/G_SVCMDS.C create mode 100644 gamesrc/G_TARGET.C create mode 100644 gamesrc/G_UTILS.C create mode 100644 gamesrc/G_WEAPON.C create mode 100644 gamesrc/G_cmds.c create mode 100644 gamesrc/G_combat.c create mode 100644 gamesrc/G_items.c create mode 100644 gamesrc/G_main.c create mode 100644 gamesrc/G_save.c create mode 100644 gamesrc/G_spawn.c create mode 100644 gamesrc/Game.ncb create mode 100644 gamesrc/Game.opt create mode 100644 gamesrc/MAKEFILE create mode 100644 gamesrc/M_BBOX.C create mode 100644 gamesrc/M_MOVE.C create mode 100644 gamesrc/M_PLAYER.H create mode 100644 gamesrc/NavLib/NavLib.lib create mode 100644 gamesrc/P_HUD.C create mode 100644 gamesrc/P_TRAIL.C create mode 100644 gamesrc/P_VIEW.C create mode 100644 gamesrc/P_WEAPON.C create mode 100644 gamesrc/P_client.c create mode 100644 gamesrc/Q_SHARED.C create mode 100644 gamesrc/Q_SHARED.H create mode 100644 gamesrc/VEHICLES.C create mode 100644 gamesrc/VEHICLES.H create mode 100644 gamesrc/VEH_DEFS.H create mode 100644 gamesrc/VOICE.C create mode 100644 gamesrc/VOICE.H create mode 100644 gamesrc/ai_bitch_tables.h create mode 100644 gamesrc/ai_bum_sit.c create mode 100644 gamesrc/ai_bum_sit.h create mode 100644 gamesrc/ai_dog_tables.h create mode 100644 gamesrc/ai_punk_tables.h create mode 100644 gamesrc/ai_runt_tables.h create mode 100644 gamesrc/ai_shorty.c create mode 100644 gamesrc/ai_shorty.h create mode 100644 gamesrc/ai_shorty_tables.h create mode 100644 gamesrc/ai_skinny.c create mode 100644 gamesrc/ai_skinny_tables.h create mode 100644 gamesrc/ai_thug2_tables.h create mode 100644 gamesrc/ai_thug_sit.c create mode 100644 gamesrc/ai_thug_tables.h create mode 100644 gamesrc/ai_whore_tables.h create mode 100644 gamesrc/ep_crystalpalace.c create mode 100644 gamesrc/ep_posionville.c create mode 100644 gamesrc/ep_radiocity.c create mode 100644 gamesrc/ep_shipyards.c create mode 100644 gamesrc/ep_skidrow.c create mode 100644 gamesrc/ep_steeltown.c create mode 100644 gamesrc/ep_trainyard.c create mode 100644 gamesrc/g_ai_ents.c create mode 100644 gamesrc/g_ai_fight.c create mode 100644 gamesrc/g_ai_memory.c create mode 100644 gamesrc/g_joe_misc.c create mode 100644 gamesrc/g_teamplay.c create mode 100644 gamesrc/g_teamplay.h create mode 100644 gamesrc/g_trigger.c create mode 100644 gamesrc/game.dsp create mode 100644 gamesrc/releasei386-glibc/GAME/g_nav.o create mode 100644 gamesrc/releasei386-glibc/GAME/g_nav_cells.o create mode 100644 gamesrc/releasei386-glibc/GAME/g_nav_io.o create mode 100644 gamesrc/releasei386-glibc/GAME/g_nav_misc.o create mode 100644 gamesrc/voice_bitch.c create mode 100644 gamesrc/voice_bitch.h create mode 100644 gamesrc/voice_punk.c create mode 100644 gamesrc/voice_punk.h create mode 100644 kpdata.exe create mode 100644 readme.txt diff --git a/examples/makemdx.qdt b/examples/makemdx.qdt new file mode 100644 index 0000000..860dcc3 --- /dev/null +++ b/examples/makemdx.qdt @@ -0,0 +1,28 @@ +// This is an example kpdata script, used to convert a bunch of .md2 files into a single .mdx file. +// +// A line that starts with // is considered a comment, and ignored by kpdata. +// +// To create a .mdx file, you first need to create a bunch of .md2 files (standard Quake2 models), +// you would then use kpdata, to create the .mdx file, using the $mdx command. +// +// The format of the $mdx command is: +// +// $mdx (mdx_name) -objects {md2 md2 ..} +// +// So, for example.. + +$mdx bitch_body -objects bitch_rarm bitch_larm bitch_torso bitch_rhand bitch_lhand + +// Would create a file called bitch_body.mdx in the current directory, composed of the given .md2 files. +// +// Each .md2 files becomes an object with it's own bounding box, within the .mdx file. Assuming +// the game code is written to use those bounding boxes, you will be able to shoot individual limbs +// on the new character. +// +// You can create an .mdx made of just a single .md2 file, although it will behave exactly the same as +// the .md2 file. Kingpin supports the .md2 file format also, so doing this would be pointless. +// +// NOTE: if you intend on using this process to create a PPM (plugin player model) for Kingpin, your +// model MUST consist of the same models that exist in the existing player folders +// (head.mdx, body.mdx, legs.mdx). Also, player models must not contain any skins explicitly listed +// inside the .mdx. Doing so will cause problems within the game. diff --git a/examples/maps/bar_sy.map b/examples/maps/bar_sy.map new file mode 100644 index 0000000..75e15ae --- /dev/null +++ b/examples/maps/bar_sy.map @@ -0,0 +1,8624 @@ +{ +"message" "Salty Dog" +"sky " "st" +"fogdensity2" "0.00055" +"fogdensity" "0.00055" +"fogval2" "0.11 0.11 0.11" +"fogval" "0.11 0.11 0.11" +"classname" "worldspawn" +"episode" "3" +// brush 0 +{ +( 240 64 64 ) ( 240 16 64 ) ( 272 16 64 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 272 64 32 ) ( 272 64 112 ) ( 240 64 112 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 256 24 48 ) ( 256 24 128 ) ( 256 72 128 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 240 16 32 ) ( 240 16 112 ) ( 272 16 112 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 240 64 32 ) ( 240 64 112 ) ( 240 16 112 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 376 8 80 ) ( 232 0 80 ) ( 232 16 80 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +} +// brush 1 +{ +( 1032 136 64 ) ( 968 136 64 ) ( 968 72 64 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 64 94 12 ) ( 64 94 108 ) ( 64 30 108 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 264 16 -36 ) ( 264 16 60 ) ( 200 16 60 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 42 0 100 ) ( 46 0 88 ) ( 38 0 88 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 724 224 80 ) ( 712 336 80 ) ( 736 336 80 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 384 4 96 ) ( 384 16 32 ) ( 384 -8 32 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +} +// brush 2 +{ +( 1048 840 64 ) ( 984 840 64 ) ( 984 776 64 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 64 160 -100 ) ( 64 160 -4 ) ( 64 224 -4 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 48 814 -20 ) ( 48 814 76 ) ( 48 750 76 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 296 288 -20 ) ( 296 288 76 ) ( 232 288 76 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 64 284 80 ) ( 48 280 80 ) ( 48 288 80 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 52 0 104 ) ( 56 0 32 ) ( 48 0 32 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +} +// brush 3 +{ +( 256 456 28 ) ( 256 456 124 ) ( 256 520 124 ) bricks/b_hl_v2 0 32 0 1 1 0 0 0 +( 48 382 -52 ) ( 48 382 44 ) ( 48 318 44 ) bricks/b_hl_v2 0 32 0 1 1 0 0 0 +( 232 304 -20 ) ( 232 304 76 ) ( 168 304 76 ) bricks/b_hl_v2 -64 32 0 1 1 0 0 0 +( 18 288 100 ) ( 22 288 88 ) ( 14 288 88 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 692 512 64 ) ( 704 624 64 ) ( 680 624 64 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 256 296 80 ) ( 48 288 80 ) ( 48 304 80 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +} +// brush 4 +{ +( 272 384 12 ) ( 272 384 108 ) ( 272 448 108 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 256 398 -148 ) ( 256 398 -52 ) ( 256 334 -52 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 217 432 -20 ) ( 217 432 76 ) ( 153 432 76 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 98 288 116 ) ( 102 288 104 ) ( 94 288 104 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 52 528 64 ) ( 64 640 64 ) ( 40 640 64 ) bricks/b_hl_v2 -80 0 0 1 1 0 0 0 +( 264 288 160 ) ( 256 288 160 ) ( 260 432 160 ) bricks/b_hl_v2 -80 0 0 1 1 0 0 0 +} +// brush 5 +{ +( 240 64 160 ) ( 240 16 160 ) ( 272 16 160 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +( 272 64 144 ) ( 272 64 224 ) ( 240 64 224 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 256 24 160 ) ( 256 24 240 ) ( 256 72 240 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +( 240 16 144 ) ( 240 16 224 ) ( 272 16 224 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +( 240 64 144 ) ( 240 64 224 ) ( 240 16 224 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +( 368 8 288 ) ( 224 0 288 ) ( 224 16 288 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +} +// brush 6 +{ +( 240 64 80 ) ( 240 16 80 ) ( 272 16 80 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 272 64 48 ) ( 272 64 128 ) ( 240 64 128 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 256 24 64 ) ( 256 24 144 ) ( 256 72 144 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 240 16 48 ) ( 240 16 128 ) ( 272 16 128 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 240 64 48 ) ( 240 64 128 ) ( 240 16 128 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 368 8 160 ) ( 224 0 160 ) ( 224 16 160 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +} +// brush 7 +{ +( 948 512 220 ) ( 948 528 220 ) ( 980 528 220 ) common/li_sr_v17 -14 2 90 2 1 134217728 132 0 +( 948 528 224 ) ( 948 520 192 ) ( 980 520 192 ) props2/speaker1 2 -5 0 0.400002 0.500000 134217728 8388608 0 +( 644 512 128 ) ( 644 512 256 ) ( 1156 512 256 ) bricks/b_mf_v2 -19 31 -180 2 -1 134217728 0 0 +( 972 464 256 ) ( 972 472 64 ) ( 972 456 64 ) metals/mt_mf_v1c -20 -16 0 1.500000 0.500000 134217728 8388608 0 +( 948 460 256 ) ( 948 448 64 ) ( 948 472 64 ) metals/mt_mf_v1c -20 -16 0 1.500000 0.500000 134217728 8388608 0 +( 980 512 196 ) ( 980 520 196 ) ( 948 520 196 ) metals/mt_mf_v1c -19 1 90 1.500000 0.500000 134217728 8388608 0 +} +// brush 8 +{ +( 1472 528 80 ) ( 1440 528 80 ) ( 1440 384 80 ) common/0_clip_mon 0 0 0 1 1 131072 128 0 +( 1440 384 240 ) ( 1440 528 240 ) ( 1472 528 240 ) common/0_clip_mon 0 0 0 1 1 131072 128 0 +( 1440 384 240 ) ( 1472 384 240 ) ( 1472 384 80 ) common/0_clip_mon 0 0 0 1 1 131072 128 0 +( 1472 384 240 ) ( 1472 528 240 ) ( 1472 528 80 ) common/0_clip_mon 0 0 0 1 1 131072 128 0 +( 1472 528 240 ) ( 1440 528 240 ) ( 1440 528 80 ) common/0_clip_mon 0 0 0 1 1 131072 128 0 +( 1440 528 240 ) ( 1440 384 240 ) ( 1440 384 80 ) common/0_clip_mon 0 0 0 1 1 131072 128 0 +} +// brush 9 +{ +( 1352 416 80 ) ( 1240 416 80 ) ( 1240 384 80 ) common/0_clip_mon 0 0 0 1 1 131072 128 0 +( 1240 384 240 ) ( 1240 416 240 ) ( 1352 416 240 ) common/0_clip_mon 0 0 0 1 1 131072 128 0 +( 1240 384 224 ) ( 1352 384 224 ) ( 1352 384 112 ) common/0_clip_mon 0 0 0 1 1 131072 128 0 +( 1352 384 224 ) ( 1352 416 224 ) ( 1352 416 112 ) common/0_clip_mon 0 0 0 1 1 131072 128 0 +( 1352 416 224 ) ( 1240 416 224 ) ( 1240 416 112 ) common/0_clip_mon 0 0 0 1 1 131072 128 0 +( 1240 416 224 ) ( 1240 384 224 ) ( 1240 384 112 ) common/0_clip_mon 0 0 0 1 1 131072 128 0 +} +// brush 10 +{ +( 1153 453 239 ) ( 1153 449 239 ) ( 1149 449 239 ) metals/mt_pv_m26y 95 117 -180 0.500000 0.500000 134217728 8390656 0 +( 1153 453 205 ) ( 1153 453 207 ) ( 1149 453 207 ) metals/mt_pv_m26y 96 -94 -180 0.500000 -0.500000 134217728 8390656 0 +( 1153 453 224 ) ( 1152 451 224 ) ( 1152 451 239 ) metals/mt_pv_m26y -120 -95 -180 0.500000 -0.500000 134217728 8390656 0 +( 1175 475 224 ) ( 1131 423 224 ) ( 1175 423 224 ) metals/mt_pv_m26y 95 117 -180 0.500000 0.500000 134217728 8390656 0 +( 1151 453 239 ) ( 1152 451 239 ) ( 1152 451 224 ) metals/mt_pv_m26y -87 -81 -180 0.500000 -0.500000 134217728 8390656 0 +} +// brush 11 +{ +( 1152 452 224 ) ( 1136 460 216 ) ( 1152 470 216 ) metals/mt_pv_m26y -34 59 -180 1 1 134217728 8388608 0 +( 1152 452 224 ) ( 1136 444 216 ) ( 1136 460 216 ) metals/mt_pv_m26y -34 59 -180 1 1 134217728 8388608 0 +( 1152 434 216 ) ( 1136 444 216 ) ( 1152 452 224 ) metals/mt_pv_m26y -34 59 -180 1 1 134217728 8388608 0 +( 1152 452 224 ) ( 1168 444 216 ) ( 1152 434 216 ) metals/mt_pv_m26y -34 59 -180 1 1 134217728 8388608 0 +( 1152 452 224 ) ( 1168 460 216 ) ( 1168 444 216 ) metals/mt_pv_m26y -34 59 -180 1 1 134217728 8388608 0 +( 1152 470 216 ) ( 1168 460 216 ) ( 1152 452 224 ) metals/mt_pv_m26y -34 59 -180 1 1 134217728 8388608 0 +( 1168 444 216 ) ( 1168 460 216 ) ( 1152 470 216 ) common/li_mf_v12c -16 -12 0 1 1 134217728 8388609 10000 +} +// brush 12 +{ +( 463 906 176 ) ( 351 906 176 ) ( 351 874 176 ) metals/mt_mf_v1c -61 41 -90 0.100006 0.100037 134217728 8388608 0 +( 351 874 240 ) ( 351 906 240 ) ( 463 906 240 ) metals/mt_mf_v1c -61 41 -90 0.100006 0.100037 134217728 8388608 0 +( 353 868 176 ) ( 353 868 208 ) ( 353 900 208 ) props2/picture_03 44 -32 0 0.500000 0.500000 134217728 0 0 +( 351 874 176 ) ( 351 874 208 ) ( 463 874 208 ) metals/mt_mf_v1c -39 40 0 0.100037 0.100006 134217728 8388608 0 +( 351 906 176 ) ( 351 906 208 ) ( 351 874 208 ) metals/mt_mf_v1c -61 40 -180 0.100006 -0.100006 134217728 8388608 0 +( 463 938 176 ) ( 463 938 208 ) ( 351 938 208 ) metals/mt_mf_v1c -39 40 0 0.100037 0.100006 134217728 8388608 0 +} +// brush 13 +{ +( 520 424 156 ) ( 456 424 156 ) ( 456 232 156 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 460 232 160 ) ( 460 424 160 ) ( 524 424 160 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 524 576 212 ) ( 460 576 212 ) ( 460 576 148 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 520 430 236 ) ( 520 238 236 ) ( 520 238 172 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 521 572 160 ) ( 521 575 156 ) ( 521 569 156 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 511 536 160 ) ( 522 536 156 ) ( 500 536 156 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +} +// brush 14 +{ +( 224 528 112 ) ( 223 528 112 ) ( 223 544 112 ) wood/wd_st_m7s 16 -64 90 1 1 0 0 0 +( 224 360 80 ) ( 224 360 208 ) ( 224 616 208 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 223 480 112 ) ( 224 480 112 ) ( 224 480 108 ) wood/wd_st_m7s -16 8 0 1 1 0 134217728 0 +( 152 544 80 ) ( 152 544 208 ) ( 24 544 208 ) wood/wd_st_m7s -16 8 0 1 1 0 134217728 0 +( 88 416 108 ) ( 96 544 108 ) ( 80 544 108 ) wood/wd_st_m7s -16 -56 0 1 1 0 134217728 0 +( 223 418 116 ) ( 223 416 108 ) ( 223 420 108 ) wood/wd_st_m7s 64 8 0 1 1 0 134217728 0 +} +// brush 15 +{ +( 688 190 112 ) ( 368 190 112 ) ( 368 766 112 ) wood/wd_st_m7s -64 -18 0 1 1 0 134217728 0 +( 448 687 48 ) ( 448 687 112 ) ( 448 111 112 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 584 574 108 ) ( 584 382 108 ) ( 616 382 108 ) wood/wd_sr_va2 -64 46 0 1 1 0 0 0 +( 615 508 88 ) ( 615 508 136 ) ( 583 508 136 ) wood/wd_sr_va2 -64 112 0 1 1 0 0 0 +( 449 476 112 ) ( 449 478 108 ) ( 449 474 108 ) wood/wd_sr_va2 18 112 0 1 1 0 0 0 +( 450 491 112 ) ( 454 491 108 ) ( 445 491 108 ) wood/wd_sr_va2 -64 112 0 1 1 0 0 0 +} +// brush 16 +{ +( 448 880 116 ) ( 512 880 116 ) ( 512 1008 116 ) wood/wd_sr_va3 24 48 -90 0.649994 -0.649963 0 134217728 0 +( 512 1008 120 ) ( 512 880 120 ) ( 448 880 120 ) wood/wd_sr_va3 24 48 -90 0.649994 -0.649963 0 134217728 0 +( 508 1004 120 ) ( 508 1004 116 ) ( 512 1008 116 ) wood/wd_cp_v3 -17 127 90 0.500000 -0.500000 0 0 0 +( 508 884 116 ) ( 508 884 120 ) ( 512 880 120 ) wood/wd_cp_v3 -15 63 90 0.500000 -0.500000 0 0 0 +( 512 880 120 ) ( 512 1008 120 ) ( 512 1008 116 ) wood/wd_sr_va3 28 -52 -180 0.650024 0.649994 0 0 0 +( 508 1004 116 ) ( 508 1004 120 ) ( 508 884 120 ) wood/wd_cp_v3 -16 127 90 0.500000 -0.500000 0 0 0 +} +// brush 17 +{ +( 452 1008 116 ) ( 448 1008 116 ) ( 448 880 116 ) wood/wd_sr_va3 24 16 -90 0.649994 -0.649963 0 134217728 0 +( 512 1008 120 ) ( 512 880 120 ) ( 448 880 120 ) wood/wd_sr_va3 24 16 -90 0.649994 -0.649963 0 134217728 0 +( 452 1004 116 ) ( 452 1004 120 ) ( 448 1008 120 ) wood/wd_cp_v3 -16 63 90 0.500000 -0.500000 0 0 0 +( 448 1008 120 ) ( 448 880 120 ) ( 448 880 116 ) wood/wd_sr_va3 28 -52 -180 0.650024 0.649994 0 0 0 +( 452 884 120 ) ( 452 884 116 ) ( 448 880 116 ) wood/wd_cp_v3 -17 127 90 0.500000 -0.500000 0 0 0 +( 452 884 116 ) ( 452 884 120 ) ( 452 1004 120 ) wood/wd_cp_v3 -16 127 90 0.500000 -0.500000 0 0 0 +} +// brush 18 +{ +( 448 880 116 ) ( 512 880 116 ) ( 512 1008 116 ) wood/wd_sr_va3 -10 12 -180 0.649994 -0.649963 0 0 0 +( 512 1008 120 ) ( 512 880 120 ) ( 448 880 120 ) wood/wd_sr_va3 -10 12 -180 0.649994 -0.649963 0 134217728 0 +( 448 1008 120 ) ( 448 1008 116 ) ( 512 1008 116 ) wood/wd_sr_va3 5 -51 -180 0.649994 0.649994 0 0 0 +( 512 1008 120 ) ( 512 1008 116 ) ( 508 1004 116 ) wood/wd_cp_v3 -17 127 90 0.500000 -0.500000 0 0 0 +( 448 1008 116 ) ( 448 1008 120 ) ( 452 1004 120 ) wood/wd_cp_v3 -16 63 90 0.500000 -0.500000 0 0 0 +( 508 1004 116 ) ( 500 1004 116 ) ( 504 1004 120 ) wood/wd_cp_v3 -17 31 90 0.500000 -0.500000 0 0 0 +} +// brush 19 +{ +( 448 880 116 ) ( 512 880 116 ) ( 512 1008 116 ) wood/wd_st_m3 -48 96 0 0.500000 0.500000 0 134217728 0 +( 512 1008 120 ) ( 512 880 120 ) ( 448 880 120 ) wood/wd_st_m3 -48 96 0 0.500000 0.500000 0 134217728 0 +( 508 884 116 ) ( 508 880 116 ) ( 508 882 120 ) wood/wd_st_m3 47 96 -90 0.500000 0.500000 0 134217728 0 +( 452 880 116 ) ( 452 892 116 ) ( 452 886 120 ) wood/wd_st_m3 47 96 -90 0.500000 0.500000 0 134217728 0 +( 500 1004 116 ) ( 508 1004 116 ) ( 504 1004 120 ) wood/wd_st_m3 47 0 -90 0.500000 -0.500000 0 134217728 0 +( 508 884 116 ) ( 500 884 116 ) ( 504 884 120 ) wood/wd_st_m3 47 0 -90 0.500000 -0.500000 0 134217728 0 +} +// brush 20 +{ +( 448 880 116 ) ( 512 880 116 ) ( 512 1008 116 ) wood/wd_sr_va3 4 -12 0 0.649994 -0.649963 0 0 0 +( 512 1008 120 ) ( 512 880 120 ) ( 448 880 120 ) wood/wd_sr_va3 4 -12 0 0.649994 -0.649963 0 134217728 0 +( 448 880 116 ) ( 448 880 120 ) ( 512 880 120 ) wood/wd_cp_v3 -17 31 90 0.500000 -0.500000 0 0 0 +( 512 880 116 ) ( 512 880 120 ) ( 508 884 120 ) wood/wd_cp_v3 -15 63 90 0.500000 -0.500000 0 0 0 +( 448 880 120 ) ( 448 880 116 ) ( 452 884 116 ) wood/wd_cp_v3 -17 127 90 0.500000 -0.500000 0 0 0 +( 500 884 116 ) ( 508 884 116 ) ( 504 884 120 ) wood/wd_cp_v3 -17 31 90 0.500000 -0.500000 0 0 0 +} +// brush 21 +{ +( 482 946 116 ) ( 482 942 116 ) ( 478 942 116 ) metals/mt_pv_m16n -72 17 90 1 1 134217728 0 0 +( 482 947 112 ) ( 478 947 112 ) ( 478 947 108 ) metals/mt_pv_m16n 11 0 -180 1 -1 134217728 0 0 +( 477 946 112 ) ( 477 942 112 ) ( 477 942 108 ) metals/mt_pv_m16n -72 0 0 1 1 134217728 0 0 +( 478 941 112 ) ( 482 941 112 ) ( 482 941 108 ) metals/mt_pv_m16n 11 0 -180 1 -1 134217728 0 0 +( 483 941 112 ) ( 483 945 112 ) ( 483 945 108 ) metals/mt_pv_m16n -72 0 0 1 1 134217728 0 0 +( 482 946 82 ) ( 477 946 82 ) ( 479 942 82 ) metals/mt_pv_m16n -72 17 90 1 1 134217728 0 0 +} +// brush 22 +{ +( 642 946 116 ) ( 642 942 116 ) ( 638 942 116 ) metals/mt_pv_m16n -72 -15 90 1 1 134217728 0 0 +( 642 947 112 ) ( 638 947 112 ) ( 638 947 108 ) metals/mt_pv_m16n 43 0 -180 1 -1 134217728 0 0 +( 637 946 112 ) ( 637 942 112 ) ( 637 942 108 ) metals/mt_pv_m16n -72 0 0 1 1 134217728 0 0 +( 638 941 112 ) ( 642 941 112 ) ( 642 941 108 ) metals/mt_pv_m16n 43 0 -180 1 -1 134217728 0 0 +( 643 941 112 ) ( 643 945 112 ) ( 643 945 108 ) metals/mt_pv_m16n -72 0 0 1 1 134217728 0 0 +( 642 946 82 ) ( 637 946 82 ) ( 639 942 82 ) metals/mt_pv_m16n -72 -15 90 1 1 134217728 0 0 +} +// brush 23 +{ +( 608 880 116 ) ( 672 880 116 ) ( 672 1008 116 ) wood/wd_sr_va3 14 -12 0 0.649994 -0.649963 0 0 0 +( 672 1008 120 ) ( 672 880 120 ) ( 608 880 120 ) wood/wd_sr_va3 14 -12 0 0.649994 -0.649963 0 134217728 0 +( 608 880 116 ) ( 608 880 120 ) ( 672 880 120 ) wood/wd_cp_v3 -17 95 90 0.500000 -0.500000 0 0 0 +( 672 880 116 ) ( 672 880 120 ) ( 668 884 120 ) wood/wd_cp_v3 -15 63 90 0.500000 -0.500000 0 0 0 +( 608 880 120 ) ( 608 880 116 ) ( 612 884 116 ) wood/wd_cp_v3 -17 127 90 0.500000 -0.500000 0 0 0 +( 660 884 116 ) ( 668 884 116 ) ( 664 884 120 ) wood/wd_cp_v3 -17 95 90 0.500000 -0.500000 0 0 0 +} +// brush 24 +{ +( 608 880 116 ) ( 672 880 116 ) ( 672 1008 116 ) wood/wd_st_m3 16 96 0 0.500000 0.500000 0 134217728 0 +( 672 1008 120 ) ( 672 880 120 ) ( 608 880 120 ) wood/wd_st_m3 16 96 0 0.500000 0.500000 0 134217728 0 +( 668 884 116 ) ( 668 880 116 ) ( 668 882 120 ) wood/wd_st_m3 47 96 -90 0.500000 0.500000 0 134217728 0 +( 612 880 116 ) ( 612 892 116 ) ( 612 886 120 ) wood/wd_st_m3 47 96 -90 0.500000 0.500000 0 134217728 0 +( 660 1004 116 ) ( 668 1004 116 ) ( 664 1004 120 ) wood/wd_st_m3 48 -64 -90 0.500000 -0.500000 0 134217728 0 +( 668 884 116 ) ( 660 884 116 ) ( 664 884 120 ) wood/wd_st_m3 48 -64 -90 0.500000 -0.500000 0 134217728 0 +} +// brush 25 +{ +( 608 880 116 ) ( 672 880 116 ) ( 672 1008 116 ) wood/wd_sr_va3 -20 13 -180 0.649994 -0.649963 0 0 0 +( 672 1008 120 ) ( 672 880 120 ) ( 608 880 120 ) wood/wd_sr_va3 -20 13 -180 0.649994 -0.649963 0 134217728 0 +( 608 1008 120 ) ( 608 1008 116 ) ( 672 1008 116 ) wood/wd_sr_va3 -4 -52 -180 0.649994 0.649994 0 0 0 +( 672 1008 120 ) ( 672 1008 116 ) ( 668 1004 116 ) wood/wd_cp_v3 -17 127 90 0.500000 -0.500000 0 0 0 +( 608 1008 116 ) ( 608 1008 120 ) ( 612 1004 120 ) wood/wd_cp_v3 -16 63 90 0.500000 -0.500000 0 0 0 +( 668 1004 116 ) ( 660 1004 116 ) ( 664 1004 120 ) wood/wd_cp_v3 -17 95 90 0.500000 -0.500000 0 0 0 +} +// brush 26 +{ +( 612 1008 116 ) ( 608 1008 116 ) ( 608 880 116 ) wood/wd_sr_va3 25 -38 -90 0.649994 -0.649963 0 134217728 0 +( 672 1008 120 ) ( 672 880 120 ) ( 608 880 120 ) wood/wd_sr_va3 25 -38 -90 0.649994 -0.649963 0 134217728 0 +( 612 1004 116 ) ( 612 1004 120 ) ( 608 1008 120 ) wood/wd_cp_v3 -16 63 90 0.500000 -0.500000 0 0 0 +( 608 1008 120 ) ( 608 880 120 ) ( 608 880 116 ) wood/wd_sr_va3 28 -52 -180 0.650024 0.649994 0 0 0 +( 612 884 120 ) ( 612 884 116 ) ( 608 880 116 ) wood/wd_cp_v3 -17 127 90 0.500000 -0.500000 0 0 0 +( 612 884 116 ) ( 612 884 120 ) ( 612 1004 120 ) wood/wd_cp_v3 -16 127 90 0.500000 -0.500000 0 0 0 +} +// brush 27 +{ +( 608 880 116 ) ( 672 880 116 ) ( 672 1008 116 ) wood/wd_sr_va3 25 -6 -90 0.649994 -0.649963 0 134217728 0 +( 672 1008 120 ) ( 672 880 120 ) ( 608 880 120 ) wood/wd_sr_va3 25 -6 -90 0.649994 -0.649963 0 134217728 0 +( 668 1004 120 ) ( 668 1004 116 ) ( 672 1008 116 ) wood/wd_cp_v3 -17 127 90 0.500000 -0.500000 0 0 0 +( 668 884 116 ) ( 668 884 120 ) ( 672 880 120 ) wood/wd_cp_v3 -15 63 90 0.500000 -0.500000 0 0 0 +( 672 880 120 ) ( 672 1008 120 ) ( 672 1008 116 ) wood/wd_sr_va3 28 -52 -180 0.650024 0.649994 0 0 0 +( 668 1004 116 ) ( 668 1004 120 ) ( 668 884 120 ) wood/wd_cp_v3 -16 127 90 0.500000 -0.500000 0 0 0 +} +// brush 28 +{ +( 608 16 116 ) ( 672 16 116 ) ( 672 144 116 ) wood/wd_sr_va3 40 -7 -90 0.649994 -0.649963 0 134217728 0 +( 672 144 120 ) ( 672 16 120 ) ( 608 16 120 ) wood/wd_sr_va3 40 -7 -90 0.649994 -0.649963 0 134217728 0 +( 668 140 120 ) ( 668 140 116 ) ( 672 144 116 ) wood/wd_cp_v3 -18 63 90 0.500000 -0.500000 0 0 0 +( 668 20 116 ) ( 668 20 120 ) ( 672 16 120 ) wood/wd_cp_v3 -16 127 90 0.500000 -0.500000 0 0 0 +( 672 16 120 ) ( 672 144 120 ) ( 672 144 116 ) wood/wd_sr_va3 43 -52 -180 0.650024 0.649994 0 0 0 +( 668 140 116 ) ( 668 140 120 ) ( 668 20 120 ) wood/wd_cp_v3 -17 63 90 0.500000 -0.500000 0 0 0 +} +// brush 29 +{ +( 612 144 116 ) ( 608 144 116 ) ( 608 16 116 ) wood/wd_sr_va3 40 -39 -90 0.649994 -0.649963 0 134217728 0 +( 672 144 120 ) ( 672 16 120 ) ( 608 16 120 ) wood/wd_sr_va3 40 -39 -90 0.649994 -0.649963 0 134217728 0 +( 612 140 116 ) ( 612 140 120 ) ( 608 144 120 ) wood/wd_cp_v3 -17 127 90 0.500000 -0.500000 0 0 0 +( 608 144 120 ) ( 608 16 120 ) ( 608 16 116 ) wood/wd_sr_va3 43 -52 -180 0.650024 0.649994 0 0 0 +( 612 20 120 ) ( 612 20 116 ) ( 608 16 116 ) wood/wd_cp_v3 -18 63 90 0.500000 -0.500000 0 0 0 +( 612 20 116 ) ( 612 20 120 ) ( 612 140 120 ) wood/wd_cp_v3 -17 63 90 0.500000 -0.500000 0 0 0 +} +// brush 30 +{ +( 608 16 116 ) ( 672 16 116 ) ( 672 144 116 ) wood/wd_sr_va3 44 28 -180 0.649994 -0.649963 0 0 0 +( 672 144 120 ) ( 672 16 120 ) ( 608 16 120 ) wood/wd_sr_va3 44 28 -180 0.649994 -0.649963 0 134217728 0 +( 608 144 120 ) ( 608 144 116 ) ( 672 144 116 ) wood/wd_sr_va3 60 -52 -180 0.649994 0.649994 0 0 0 +( 672 144 120 ) ( 672 144 116 ) ( 668 140 116 ) wood/wd_cp_v3 -18 63 90 0.500000 -0.500000 0 0 0 +( 608 144 116 ) ( 608 144 120 ) ( 612 140 120 ) wood/wd_cp_v3 -17 127 90 0.500000 -0.500000 0 0 0 +( 668 140 116 ) ( 660 140 116 ) ( 664 140 120 ) wood/wd_cp_v3 -17 95 90 0.500000 -0.500000 0 0 0 +} +// brush 31 +{ +( 608 16 116 ) ( 672 16 116 ) ( 672 144 116 ) wood/wd_st_m3 -112 32 0 0.500000 0.500000 0 134217728 0 +( 672 144 120 ) ( 672 16 120 ) ( 608 16 120 ) wood/wd_st_m3 -112 32 0 0.500000 0.500000 0 134217728 0 +( 668 20 116 ) ( 668 16 116 ) ( 668 18 120 ) wood/wd_st_m3 47 32 -90 0.500000 0.500000 0 134217728 0 +( 612 16 116 ) ( 612 28 116 ) ( 612 22 120 ) wood/wd_st_m3 47 32 -90 0.500000 0.500000 0 134217728 0 +( 660 140 116 ) ( 668 140 116 ) ( 664 140 120 ) wood/wd_st_m3 48 -64 -90 0.500000 -0.500000 0 134217728 0 +( 668 20 116 ) ( 660 20 116 ) ( 664 20 120 ) wood/wd_st_m3 48 -64 -90 0.500000 -0.500000 0 134217728 0 +} +// brush 32 +{ +( 608 16 116 ) ( 672 16 116 ) ( 672 144 116 ) wood/wd_sr_va3 -50 -27 0 0.649994 -0.649963 0 0 0 +( 672 144 120 ) ( 672 16 120 ) ( 608 16 120 ) wood/wd_sr_va3 -50 -27 0 0.649994 -0.649963 0 134217728 0 +( 608 16 116 ) ( 608 16 120 ) ( 672 16 120 ) wood/wd_cp_v3 -17 95 90 0.500000 -0.500000 0 0 0 +( 672 16 116 ) ( 672 16 120 ) ( 668 20 120 ) wood/wd_cp_v3 -16 127 90 0.500000 -0.500000 0 0 0 +( 608 16 120 ) ( 608 16 116 ) ( 612 20 116 ) wood/wd_cp_v3 -18 63 90 0.500000 -0.500000 0 0 0 +( 660 20 116 ) ( 668 20 116 ) ( 664 20 120 ) wood/wd_cp_v3 -17 95 90 0.500000 -0.500000 0 0 0 +} +// brush 33 +{ +( 642 82 116 ) ( 642 78 116 ) ( 638 78 116 ) metals/mt_pv_m16n -104 -15 90 1 1 134217728 0 0 +( 642 83 112 ) ( 638 83 112 ) ( 638 83 108 ) metals/mt_pv_m16n 43 0 -180 1 -1 134217728 0 0 +( 637 82 112 ) ( 637 78 112 ) ( 637 78 108 ) metals/mt_pv_m16n -104 0 0 1 1 134217728 0 0 +( 638 77 112 ) ( 642 77 112 ) ( 642 77 108 ) metals/mt_pv_m16n 43 0 -180 1 -1 134217728 0 0 +( 643 77 112 ) ( 643 81 112 ) ( 643 81 108 ) metals/mt_pv_m16n -104 0 0 1 1 134217728 0 0 +( 642 82 82 ) ( 637 82 82 ) ( 639 78 82 ) metals/mt_pv_m16n -104 -15 90 1 1 134217728 0 0 +} +// brush 34 +{ +( 482 82 116 ) ( 482 78 116 ) ( 478 78 116 ) metals/mt_pv_m16n -104 16 90 1 1 134217728 0 0 +( 482 83 112 ) ( 478 83 112 ) ( 478 83 108 ) metals/mt_pv_m16n 11 0 -180 1 -1 134217728 0 0 +( 477 82 112 ) ( 477 78 112 ) ( 477 78 108 ) metals/mt_pv_m16n -104 0 0 1 1 134217728 0 0 +( 478 77 112 ) ( 482 77 112 ) ( 482 77 108 ) metals/mt_pv_m16n 11 0 -180 1 -1 134217728 0 0 +( 483 77 112 ) ( 483 81 112 ) ( 483 81 108 ) metals/mt_pv_m16n -104 0 0 1 1 134217728 0 0 +( 482 82 82 ) ( 477 82 82 ) ( 479 78 82 ) metals/mt_pv_m16n -104 16 90 1 1 134217728 0 0 +} +// brush 35 +{ +( 448 16 116 ) ( 512 16 116 ) ( 512 144 116 ) wood/wd_sr_va3 2 -27 0 0.649994 -0.649963 0 0 0 +( 512 144 120 ) ( 512 16 120 ) ( 448 16 120 ) wood/wd_sr_va3 2 -27 0 0.649994 -0.649963 0 134217728 0 +( 448 16 116 ) ( 448 16 120 ) ( 512 16 120 ) wood/wd_cp_v3 -18 31 90 0.500000 -0.500000 0 0 0 +( 512 16 116 ) ( 512 16 120 ) ( 508 20 120 ) wood/wd_cp_v3 -16 127 90 0.500000 -0.500000 0 0 0 +( 448 16 120 ) ( 448 16 116 ) ( 452 20 116 ) wood/wd_cp_v3 -18 63 90 0.500000 -0.500000 0 0 0 +( 500 20 116 ) ( 508 20 116 ) ( 504 20 120 ) wood/wd_cp_v3 -18 31 90 0.500000 -0.500000 0 0 0 +} +// brush 36 +{ +( 448 16 116 ) ( 512 16 116 ) ( 512 144 116 ) wood/wd_st_m3 -48 32 0 0.500000 0.500000 0 134217728 0 +( 512 144 120 ) ( 512 16 120 ) ( 448 16 120 ) wood/wd_st_m3 -48 32 0 0.500000 0.500000 0 134217728 0 +( 508 20 116 ) ( 508 16 116 ) ( 508 18 120 ) wood/wd_st_m3 47 32 -90 0.500000 0.500000 0 134217728 0 +( 452 16 116 ) ( 452 28 116 ) ( 452 22 120 ) wood/wd_st_m3 47 32 -90 0.500000 0.500000 0 134217728 0 +( 500 140 116 ) ( 508 140 116 ) ( 504 140 120 ) wood/wd_st_m3 48 0 -90 0.500000 -0.500000 0 134217728 0 +( 508 20 116 ) ( 500 20 116 ) ( 504 20 120 ) wood/wd_st_m3 48 0 -90 0.500000 -0.500000 0 134217728 0 +} +// brush 37 +{ +( 448 16 116 ) ( 512 16 116 ) ( 512 144 116 ) wood/wd_sr_va3 -8 28 -180 0.649994 -0.649963 0 0 0 +( 512 144 120 ) ( 512 16 120 ) ( 448 16 120 ) wood/wd_sr_va3 -8 28 -180 0.649994 -0.649963 0 134217728 0 +( 448 144 120 ) ( 448 144 116 ) ( 512 144 116 ) wood/wd_sr_va3 7 -52 -180 0.649994 0.649994 0 0 0 +( 512 144 120 ) ( 512 144 116 ) ( 508 140 116 ) wood/wd_cp_v3 -18 63 90 0.500000 -0.500000 0 0 0 +( 448 144 116 ) ( 448 144 120 ) ( 452 140 120 ) wood/wd_cp_v3 -17 127 90 0.500000 -0.500000 0 0 0 +( 508 140 116 ) ( 500 140 116 ) ( 504 140 120 ) wood/wd_cp_v3 -18 31 90 0.500000 -0.500000 0 0 0 +} +// brush 38 +{ +( 452 144 116 ) ( 448 144 116 ) ( 448 16 116 ) wood/wd_sr_va3 40 13 -90 0.649994 -0.649963 0 134217728 0 +( 512 144 120 ) ( 512 16 120 ) ( 448 16 120 ) wood/wd_sr_va3 40 13 -90 0.649994 -0.649963 0 134217728 0 +( 452 140 116 ) ( 452 140 120 ) ( 448 144 120 ) wood/wd_cp_v3 -17 127 90 0.500000 -0.500000 0 0 0 +( 448 144 120 ) ( 448 16 120 ) ( 448 16 116 ) wood/wd_sr_va3 43 -52 -180 0.650024 0.649994 0 0 0 +( 452 20 120 ) ( 452 20 116 ) ( 448 16 116 ) wood/wd_cp_v3 -18 63 90 0.500000 -0.500000 0 0 0 +( 452 20 116 ) ( 452 20 120 ) ( 452 140 120 ) wood/wd_cp_v3 -17 63 90 0.500000 -0.500000 0 0 0 +} +// brush 39 +{ +( 448 16 116 ) ( 512 16 116 ) ( 512 144 116 ) wood/wd_sr_va3 40 -18 -90 0.649994 -0.649963 0 134217728 0 +( 512 144 120 ) ( 512 16 120 ) ( 448 16 120 ) wood/wd_sr_va3 40 -18 -90 0.649994 -0.649963 0 134217728 0 +( 508 140 120 ) ( 508 140 116 ) ( 512 144 116 ) wood/wd_cp_v3 -18 63 90 0.500000 -0.500000 0 0 0 +( 508 20 116 ) ( 508 20 120 ) ( 512 16 120 ) wood/wd_cp_v3 -16 127 90 0.500000 -0.500000 0 0 0 +( 512 16 120 ) ( 512 144 120 ) ( 512 144 116 ) wood/wd_sr_va3 43 -52 -180 0.650024 0.649994 0 0 0 +( 508 140 116 ) ( 508 140 120 ) ( 508 20 120 ) wood/wd_cp_v3 -17 63 90 0.500000 -0.500000 0 0 0 +} +// brush 40 +{ +( 968 827 234 ) ( 952 827 234 ) ( 952 824 240 ) metals/mt_pv_m26y -25 7 -180 1 -1 134217728 0 0 +( 952 837 234 ) ( 968 837 234 ) ( 968 840 240 ) metals/mt_pv_m26y -23 7 -180 1 -1 134217728 0 0 +( 952 830 240 ) ( 968 830 240 ) ( 968 824 240 ) metals/mt_pv_m26y -22 71 -180 1 -1 134217728 0 0 +( 965 837 234 ) ( 965 827 234 ) ( 968 824 240 ) metals/mt_pv_m26y 0 71 90 1 -1 134217728 0 0 +( 955 827 234 ) ( 955 837 234 ) ( 952 840 240 ) metals/mt_pv_m26y 0 73 90 1 -1 134217728 0 0 +( 955 824 237 ) ( 963 824 237 ) ( 959 840 237 ) common/li_sr_ml5 8 -9 0 0.800000 0.800000 134217728 1 10000 +} +// brush 41 +{ +( 968 579 234 ) ( 952 579 234 ) ( 952 576 240 ) metals/mt_pv_m26y -25 7 -180 1 -1 134217728 0 0 +( 952 589 234 ) ( 968 589 234 ) ( 968 592 240 ) metals/mt_pv_m26y -23 7 -180 1 -1 134217728 0 0 +( 952 582 240 ) ( 968 582 240 ) ( 968 576 240 ) metals/mt_pv_m26y -22 79 -180 1 -1 134217728 0 0 +( 965 589 234 ) ( 965 579 234 ) ( 968 576 240 ) metals/mt_pv_m26y 0 79 90 1 -1 134217728 0 0 +( 955 579 234 ) ( 955 589 234 ) ( 952 592 240 ) metals/mt_pv_m26y 0 81 90 1 -1 134217728 0 0 +( 955 576 237 ) ( 963 576 237 ) ( 959 592 237 ) common/li_sr_ml5 8 1 0 0.800000 0.800000 134217728 1 10000 +} +// brush 42 +{ +( 1104 579 234 ) ( 1088 579 234 ) ( 1088 576 240 ) metals/mt_pv_m26y 111 8 -180 1 -1 134217728 0 0 +( 1088 589 234 ) ( 1104 589 234 ) ( 1104 592 240 ) metals/mt_pv_m26y -15 8 -180 1 -1 134217728 0 0 +( 1088 582 240 ) ( 1104 582 240 ) ( 1104 576 240 ) metals/mt_pv_m26y -14 79 -180 1 -1 134217728 0 0 +( 1101 589 234 ) ( 1101 579 234 ) ( 1104 576 240 ) metals/mt_pv_m26y 0 79 90 1 -1 134217728 0 0 +( 1091 579 234 ) ( 1091 589 234 ) ( 1088 592 240 ) metals/mt_pv_m26y 0 81 90 1 -1 134217728 0 0 +( 1091 576 237 ) ( 1099 576 237 ) ( 1095 592 237 ) common/li_sr_ml5 14 2 0 0.800000 0.800000 134217728 1 10000 +} +// brush 43 +{ +( 520 440 160 ) ( 520 400 160 ) ( 520 400 112 ) wood/wd_sr_va2 0 32 0 1 1 0 134250496 0 +( 511 429 164 ) ( 521 390 164 ) ( 521 390 116 ) wood/wd_sr_va2 0 32 0 1 1 0 134250496 0 +( 505 415 164 ) ( 525 380 164 ) ( 525 380 116 ) wood/wd_sr_va2 -64 113 0 0.250000 0.300000 0 134217728 3 +( 504 400 160 ) ( 532 372 160 ) ( 532 372 112 ) wood/wd_sr_va2 -64 113 0 0.250000 0.300000 0 134217728 3 +( 505 385 160 ) ( 540 365 160 ) ( 540 365 112 ) wood/wd_sr_va2 -64 32 0 1 1 0 134250496 0 +( 511 371 160 ) ( 550 361 160 ) ( 550 361 112 ) wood/wd_sr_va2 -64 32 0 1 1 0 134250496 0 +( 520 360 160 ) ( 560 360 160 ) ( 560 360 112 ) wood/wd_sr_va2 -64 32 0 1 1 0 134250496 0 +( 600 360 156 ) ( 600 440 156 ) ( 520 440 156 ) wood/wd_cp_v3 -108 32 0 1 1 0 0 0 +( 520 440 160 ) ( 600 440 160 ) ( 600 360 160 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 560 372 176 ) ( 560 384 128 ) ( 560 360 128 ) wood/wd_sr_va2 48 29 0 1 1 0 0 0 +( 548 400 196 ) ( 536 400 148 ) ( 560 400 148 ) wood/wd_sr_va2 -16 29 0 1 1 0 0 0 +} +// brush 44 +{ +( 1328 460 224 ) ( 1312 468 216 ) ( 1328 478 216 ) metals/mt_pv_m26y 14 51 -180 1 1 134217728 8388608 0 +( 1328 460 224 ) ( 1312 452 216 ) ( 1312 468 216 ) metals/mt_pv_m26y 14 51 -180 1 1 134217728 8388608 0 +( 1328 442 216 ) ( 1312 452 216 ) ( 1328 460 224 ) metals/mt_pv_m26y 14 51 -180 1 1 134217728 8388608 0 +( 1328 460 224 ) ( 1344 452 216 ) ( 1328 442 216 ) metals/mt_pv_m26y 14 51 -180 1 1 134217728 8388608 0 +( 1328 460 224 ) ( 1344 468 216 ) ( 1344 452 216 ) metals/mt_pv_m26y 14 51 -180 1 1 134217728 8388608 0 +( 1328 478 216 ) ( 1344 468 216 ) ( 1328 460 224 ) metals/mt_pv_m26y 14 51 -180 1 1 134217728 8388608 0 +( 1344 452 216 ) ( 1344 468 216 ) ( 1328 478 216 ) common/li_mf_v12c 0 -3 0 1 1 134217728 8388609 10000 +} +// brush 45 +{ +( 1329 461 239 ) ( 1329 457 239 ) ( 1325 457 239 ) metals/mt_pv_m26y 63 101 -180 0.500000 0.500000 134217728 8390656 0 +( 1329 461 205 ) ( 1329 461 207 ) ( 1325 461 207 ) metals/mt_pv_m26y 64 -94 -180 0.500000 -0.500000 134217728 8390656 0 +( 1329 461 224 ) ( 1328 459 224 ) ( 1328 459 239 ) metals/mt_pv_m26y -104 -95 -180 0.500000 -0.500000 134217728 8390656 0 +( 1351 483 224 ) ( 1307 431 224 ) ( 1351 431 224 ) metals/mt_pv_m26y 63 101 -180 0.500000 0.500000 134217728 8390656 0 +( 1327 461 239 ) ( 1328 459 239 ) ( 1328 459 224 ) metals/mt_pv_m26y -71 -81 -180 0.500000 -0.500000 134217728 8390656 0 +} +// brush 46 +{ +( 1329 637 239 ) ( 1329 633 239 ) ( 1325 633 239 ) metals/mt_pv_m26y 63 -123 -180 0.500000 0.500000 134217728 8390656 0 +( 1329 637 205 ) ( 1329 637 207 ) ( 1325 637 207 ) metals/mt_pv_m26y 64 -94 -180 0.500000 -0.500000 134217728 8390656 0 +( 1329 637 224 ) ( 1328 635 224 ) ( 1328 635 239 ) metals/mt_pv_m26y 120 -95 -180 0.500000 -0.500000 134217728 8390656 0 +( 1351 659 224 ) ( 1307 607 224 ) ( 1351 607 224 ) metals/mt_pv_m26y 63 -123 -180 0.500000 0.500000 134217728 8390656 0 +( 1327 637 239 ) ( 1328 635 239 ) ( 1328 635 224 ) metals/mt_pv_m26y 25 -81 -180 0.500000 -0.500000 134217728 8390656 0 +} +// brush 47 +{ +( 1328 636 224 ) ( 1312 644 216 ) ( 1328 654 216 ) metals/mt_pv_m26y 14 -125 -180 1 1 134217728 8388608 0 +( 1328 636 224 ) ( 1312 628 216 ) ( 1312 644 216 ) metals/mt_pv_m26y 14 -125 -180 1 1 134217728 8388608 0 +( 1328 618 216 ) ( 1312 628 216 ) ( 1328 636 224 ) metals/mt_pv_m26y 14 -125 -180 1 1 134217728 8388608 0 +( 1328 636 224 ) ( 1344 628 216 ) ( 1328 618 216 ) metals/mt_pv_m26y 14 -125 -180 1 1 134217728 8388608 0 +( 1328 636 224 ) ( 1344 644 216 ) ( 1344 628 216 ) metals/mt_pv_m26y 14 -125 -180 1 1 134217728 8388608 0 +( 1328 654 216 ) ( 1344 644 216 ) ( 1328 636 224 ) metals/mt_pv_m26y 14 -125 -180 1 1 134217728 8388608 0 +( 1344 628 216 ) ( 1344 644 216 ) ( 1328 654 216 ) common/li_mf_v12c 0 13 0 1 1 134217728 8388609 10000 +} +// brush 48 +{ +( 152 176 240 ) ( 136 184 232 ) ( 152 194 232 ) metals/mt_pv_m26y -9 -48 -180 1 1 134217728 8388608 0 +( 152 176 240 ) ( 136 168 232 ) ( 136 184 232 ) metals/mt_pv_m26y -9 -48 -180 1 1 134217728 8388608 0 +( 152 158 232 ) ( 136 168 232 ) ( 152 176 240 ) metals/mt_pv_m26y -9 -48 -180 1 1 134217728 8388608 0 +( 152 176 240 ) ( 168 168 232 ) ( 152 158 232 ) metals/mt_pv_m26y -9 -48 -180 1 1 134217728 8388608 0 +( 152 176 240 ) ( 168 184 232 ) ( 168 168 232 ) metals/mt_pv_m26y -9 -48 -180 1 1 134217728 8388608 0 +( 152 194 232 ) ( 168 184 232 ) ( 152 176 240 ) metals/mt_pv_m26y -9 -48 -180 1 1 134217728 8388608 0 +( 168 168 232 ) ( 168 184 232 ) ( 152 194 232 ) common/li_mf_v12c 24 1 0 1 1 134217728 8388609 12000 +} +// brush 49 +{ +( 153 177 279 ) ( 153 173 279 ) ( 149 173 279 ) metals/mt_pv_m26y -111 -97 -180 0.500000 0.500000 134217728 8390656 0 +( 153 177 221 ) ( 153 177 223 ) ( 149 177 223 ) metals/mt_pv_m26y -112 -62 -180 0.500000 -0.500000 134217728 8390656 0 +( 153 177 240 ) ( 152 175 240 ) ( 152 175 255 ) metals/mt_pv_m26y 96 -62 -180 0.500000 -0.500000 134217728 8390656 0 +( 175 199 240 ) ( 131 147 240 ) ( 175 147 240 ) metals/mt_pv_m26y -111 -97 -180 0.500000 0.500000 134217728 8390656 0 +( 151 177 279 ) ( 152 175 279 ) ( 152 175 264 ) metals/mt_pv_m26y 1 -48 -180 0.500000 -0.500000 134217728 8390656 0 +} +// brush 50 +{ +( 158 179 280 ) ( 155 182 280 ) ( 155 182 279 ) metals/mt_pv_m26y 84 -14 -180 0.500000 -0.500000 134217728 8390656 0 +( 155 182 280 ) ( 149 182 280 ) ( 149 182 279 ) metals/mt_pv_m26y -112 -14 -180 0.500000 -0.500000 134217728 8390656 0 +( 149 182 280 ) ( 146 179 280 ) ( 146 179 279 ) metals/mt_pv_m26y 84 -14 -180 0.500000 -0.500000 134217728 8390656 0 +( 146 173 279 ) ( 146 179 279 ) ( 146 179 280 ) metals/mt_pv_m26y 96 -14 -180 0.500000 -0.500000 134217728 8390656 0 +( 146 173 280 ) ( 149 170 280 ) ( 149 170 279 ) metals/mt_pv_m26y 45 -14 -180 0.500000 -0.500000 134217728 8390656 0 +( 149 170 280 ) ( 155 170 280 ) ( 155 170 279 ) metals/mt_pv_m26y -112 -14 -180 0.500000 -0.500000 134217728 8390656 0 +( 155 170 280 ) ( 158 173 280 ) ( 158 173 279 ) metals/mt_pv_m26y 44 -14 -180 0.500000 -0.500000 134217728 8390656 0 +( 158 173 280 ) ( 158 179 280 ) ( 158 179 279 ) metals/mt_pv_m26y 96 -14 -180 0.500000 -0.500000 134217728 8390656 0 +( 158 170 279 ) ( 158 182 279 ) ( 146 182 279 ) metals/mt_pv_m26y -111 -97 -180 0.500000 0.500000 134217728 8390656 0 +( 146 182 280 ) ( 158 182 280 ) ( 158 170 280 ) metals/mt_pv_m26y -111 -97 -180 0.500000 0.500000 134217728 8390656 0 +} +// brush 51 +{ +( 744 910 360 ) ( 744 910 824 ) ( 760 910 824 ) wood/wd_sr_m3y -96 -5 0 1 1 134217728 134217728 0 +( 760 974 824 ) ( 744 974 824 ) ( 744 974 360 ) wood/wd_sr_m3y -96 -5 0 1 1 134217728 134217728 0 +( 752 990 840 ) ( 752 990 376 ) ( 752 862 376 ) wood/wd_sr_m3y 6 -62 90 1 1 134217728 134217728 0 +( 751 990 360 ) ( 751 990 824 ) ( 751 862 824 ) props2/picture_02 -28 -16 0 0.500000 0.500000 134217728 0 0 +( 744 862 184 ) ( 760 862 184 ) ( 752 990 184 ) wood/wd_sr_m3y -96 -62 0 1 -1 134217728 134217728 0 +( 752 862 216 ) ( 736 862 216 ) ( 744 990 216 ) wood/wd_sr_m3y -96 -62 0 1 -1 134217728 134217728 0 +} +// brush 52 +{ +( 304 656 64 ) ( 304 464 64 ) ( 816 464 64 ) floors/fl_hl_v1 -62 0 0 1 1 0 0 0 +( 816 464 80 ) ( 304 464 80 ) ( 304 656 80 ) floors/fl_hl_v1 0 0 0 1 1 0 2097152 0 +( 520 896 48 ) ( 712 896 112 ) ( 520 896 112 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 596 832 80 ) ( 616 832 64 ) ( 576 832 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 752 776 80 ) ( 752 784 64 ) ( 752 768 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 640 832 64 ) ( 640 848 64 ) ( 640 840 80 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +} +// brush 53 +{ +( 304 720 64 ) ( 304 528 64 ) ( 816 528 64 ) floors/fl_hl_v1 -62 0 0 1 1 0 0 0 +( 816 528 80 ) ( 304 528 80 ) ( 304 720 80 ) floors/fl_hl_v1 0 0 0 1 1 0 0 0 +( 704 797 48 ) ( 704 797 112 ) ( 704 989 112 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 544 960 48 ) ( 736 960 112 ) ( 544 960 112 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 572 896 80 ) ( 592 896 64 ) ( 552 896 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 640 832 64 ) ( 640 848 64 ) ( 640 840 80 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +} +// brush 54 +{ +( 398 499 280 ) ( 395 502 280 ) ( 395 502 279 ) metals/mt_pv_m26y -44 -15 -180 0.500000 -0.500000 134217728 8390656 0 +( 395 502 280 ) ( 389 502 280 ) ( 389 502 279 ) metals/mt_pv_m26y 112 -15 -180 0.500000 -0.500000 134217728 8390656 0 +( 389 502 280 ) ( 386 499 280 ) ( 386 499 279 ) metals/mt_pv_m26y -44 -15 -180 0.500000 -0.500000 134217728 8390656 0 +( 386 493 279 ) ( 386 499 279 ) ( 386 499 280 ) metals/mt_pv_m26y -32 -15 -180 0.500000 -0.500000 134217728 8390656 0 +( 386 493 280 ) ( 389 490 280 ) ( 389 490 279 ) metals/mt_pv_m26y 45 -15 -180 0.500000 -0.500000 134217728 8390656 0 +( 389 490 280 ) ( 395 490 280 ) ( 395 490 279 ) metals/mt_pv_m26y 112 -15 -180 0.500000 -0.500000 134217728 8390656 0 +( 395 490 280 ) ( 398 493 280 ) ( 398 493 279 ) metals/mt_pv_m26y 44 -15 -180 0.500000 -0.500000 134217728 8390656 0 +( 398 493 280 ) ( 398 499 280 ) ( 398 499 279 ) metals/mt_pv_m26y -32 -15 -180 0.500000 -0.500000 134217728 8390656 0 +( 398 490 279 ) ( 398 502 279 ) ( 386 502 279 ) metals/mt_pv_m26y 112 30 -180 0.500000 0.500000 134217728 8390656 0 +( 386 502 280 ) ( 398 502 280 ) ( 398 490 280 ) metals/mt_pv_m26y 112 30 -180 0.500000 0.500000 134217728 8390656 0 +} +// brush 55 +{ +( 393 497 279 ) ( 393 493 279 ) ( 389 493 279 ) metals/mt_pv_m26y 112 30 -180 0.500000 0.500000 134217728 8390656 0 +( 393 497 221 ) ( 393 497 223 ) ( 389 497 223 ) metals/mt_pv_m26y 112 -63 -180 0.500000 -0.500000 134217728 8390656 0 +( 393 497 240 ) ( 392 495 240 ) ( 392 495 255 ) metals/mt_pv_m26y -32 -63 -180 0.500000 -0.500000 134217728 8390656 0 +( 415 519 240 ) ( 371 467 240 ) ( 415 467 240 ) metals/mt_pv_m26y 112 30 -180 0.500000 0.500000 134217728 8390656 0 +( 391 497 279 ) ( 392 495 279 ) ( 392 495 264 ) metals/mt_pv_m26y 1 -49 -180 0.500000 -0.500000 134217728 8390656 0 +} +// brush 56 +{ +( 392 496 240 ) ( 376 504 232 ) ( 392 514 232 ) metals/mt_pv_m26y 103 15 -180 1 1 134217728 8388608 0 +( 392 496 240 ) ( 376 488 232 ) ( 376 504 232 ) metals/mt_pv_m26y 103 15 -180 1 1 134217728 8388608 0 +( 392 478 232 ) ( 376 488 232 ) ( 392 496 240 ) metals/mt_pv_m26y 103 15 -180 1 1 134217728 8388608 0 +( 392 496 240 ) ( 408 488 232 ) ( 392 478 232 ) metals/mt_pv_m26y 103 15 -180 1 1 134217728 8388608 0 +( 392 496 240 ) ( 408 504 232 ) ( 408 488 232 ) metals/mt_pv_m26y 103 15 -180 1 1 134217728 8388608 0 +( 392 514 232 ) ( 408 504 232 ) ( 392 496 240 ) metals/mt_pv_m26y 103 15 -180 1 1 134217728 8388608 0 +( 408 488 232 ) ( 408 504 232 ) ( 392 514 232 ) common/li_mf_v12c -24 1 0 1 1 134217728 8388609 20000 +} +// brush 57 +{ +( 558 131 280 ) ( 555 134 280 ) ( 555 134 279 ) metals/mt_pv_m26y -12 -15 -180 0.500000 -0.500000 134217728 8390656 0 +( 555 134 280 ) ( 549 134 280 ) ( 549 134 279 ) metals/mt_pv_m26y -80 -14 -180 0.500000 -0.500000 134217728 8390656 0 +( 549 134 280 ) ( 546 131 280 ) ( 546 131 279 ) metals/mt_pv_m26y -12 -15 -180 0.500000 -0.500000 134217728 8390656 0 +( 546 125 279 ) ( 546 131 279 ) ( 546 131 280 ) metals/mt_pv_m26y 0 -15 -180 0.500000 -0.500000 134217728 8390656 0 +( 546 125 280 ) ( 549 122 280 ) ( 549 122 279 ) metals/mt_pv_m26y -51 -15 -180 0.500000 -0.500000 134217728 8390656 0 +( 549 122 280 ) ( 555 122 280 ) ( 555 122 279 ) metals/mt_pv_m26y -80 -14 -180 0.500000 -0.500000 134217728 8390656 0 +( 555 122 280 ) ( 558 125 280 ) ( 558 125 279 ) metals/mt_pv_m26y -52 -15 -180 0.500000 -0.500000 134217728 8390656 0 +( 558 125 280 ) ( 558 131 280 ) ( 558 131 279 ) metals/mt_pv_m26y 0 -15 -180 0.500000 -0.500000 134217728 8390656 0 +( 558 122 279 ) ( 558 134 279 ) ( 546 134 279 ) metals/mt_pv_m26y -79 126 -180 0.500000 0.500000 134217728 8390656 0 +( 546 134 280 ) ( 558 134 280 ) ( 558 122 280 ) metals/mt_pv_m26y -79 126 -180 0.500000 0.500000 134217728 8390656 0 +} +// brush 58 +{ +( 553 129 279 ) ( 553 125 279 ) ( 549 125 279 ) metals/mt_pv_m26y -79 126 -180 0.500000 0.500000 134217728 8390656 0 +( 553 129 221 ) ( 553 129 223 ) ( 549 129 223 ) metals/mt_pv_m26y -80 -62 -180 0.500000 -0.500000 134217728 8390656 0 +( 553 129 240 ) ( 552 127 240 ) ( 552 127 255 ) metals/mt_pv_m26y 0 -63 -180 0.500000 -0.500000 134217728 8390656 0 +( 575 151 240 ) ( 531 99 240 ) ( 575 99 240 ) metals/mt_pv_m26y -79 126 -180 0.500000 0.500000 134217728 8390656 0 +( 551 129 279 ) ( 552 127 279 ) ( 552 127 264 ) metals/mt_pv_m26y -95 -49 -180 0.500000 -0.500000 134217728 8390656 0 +} +// brush 59 +{ +( 552 128 240 ) ( 536 136 232 ) ( 552 146 232 ) metals/mt_pv_m26y 7 127 -180 1 1 134217728 8388608 0 +( 552 128 240 ) ( 536 120 232 ) ( 536 136 232 ) metals/mt_pv_m26y 7 127 -180 1 1 134217728 8388608 0 +( 552 110 232 ) ( 536 120 232 ) ( 552 128 240 ) metals/mt_pv_m26y 7 127 -180 1 1 134217728 8388608 0 +( 552 128 240 ) ( 568 120 232 ) ( 552 110 232 ) metals/mt_pv_m26y 7 127 -180 1 1 134217728 8388608 0 +( 552 128 240 ) ( 568 136 232 ) ( 568 120 232 ) metals/mt_pv_m26y 7 127 -180 1 1 134217728 8388608 0 +( 552 146 232 ) ( 568 136 232 ) ( 552 128 240 ) metals/mt_pv_m26y 7 127 -180 1 1 134217728 8388608 0 +( 568 120 232 ) ( 568 136 232 ) ( 552 146 232 ) common/li_mf_v12c 8 -15 0 1 1 134217728 8388608 0 +} +// brush 60 +{ +( 558 899 280 ) ( 555 902 280 ) ( 555 902 279 ) metals/mt_pv_m26y -12 -15 -180 0.500000 -0.500000 134217728 8390656 0 +( 555 902 280 ) ( 549 902 280 ) ( 549 902 279 ) metals/mt_pv_m26y -80 -14 -180 0.500000 -0.500000 134217728 8390656 0 +( 549 902 280 ) ( 546 899 280 ) ( 546 899 279 ) metals/mt_pv_m26y -12 -15 -180 0.500000 -0.500000 134217728 8390656 0 +( 546 893 279 ) ( 546 899 279 ) ( 546 899 280 ) metals/mt_pv_m26y 0 -15 -180 0.500000 -0.500000 134217728 8390656 0 +( 546 893 280 ) ( 549 890 280 ) ( 549 890 279 ) metals/mt_pv_m26y 77 -15 -180 0.500000 -0.500000 134217728 8390656 0 +( 549 890 280 ) ( 555 890 280 ) ( 555 890 279 ) metals/mt_pv_m26y -80 -14 -180 0.500000 -0.500000 134217728 8390656 0 +( 555 890 280 ) ( 558 893 280 ) ( 558 893 279 ) metals/mt_pv_m26y 76 -15 -180 0.500000 -0.500000 134217728 8390656 0 +( 558 893 280 ) ( 558 899 280 ) ( 558 899 279 ) metals/mt_pv_m26y 0 -15 -180 0.500000 -0.500000 134217728 8390656 0 +( 558 890 279 ) ( 558 902 279 ) ( 546 902 279 ) metals/mt_pv_m26y -80 -2 -180 0.500000 0.500000 134217728 8390656 0 +( 546 902 280 ) ( 558 902 280 ) ( 558 890 280 ) metals/mt_pv_m26y -80 -2 -180 0.500000 0.500000 134217728 8390656 0 +} +// brush 61 +{ +( 553 897 279 ) ( 553 893 279 ) ( 549 893 279 ) metals/mt_pv_m26y -80 -2 -180 0.500000 0.500000 134217728 8390656 0 +( 553 897 221 ) ( 553 897 223 ) ( 549 897 223 ) metals/mt_pv_m26y -80 -62 -180 0.500000 -0.500000 134217728 8390656 0 +( 553 897 240 ) ( 552 895 240 ) ( 552 895 255 ) metals/mt_pv_m26y 0 -63 -180 0.500000 -0.500000 134217728 8390656 0 +( 575 919 240 ) ( 531 867 240 ) ( 575 867 240 ) metals/mt_pv_m26y -80 -2 -180 0.500000 0.500000 134217728 8390656 0 +( 551 897 279 ) ( 552 895 279 ) ( 552 895 264 ) metals/mt_pv_m26y 33 -49 -180 0.500000 -0.500000 134217728 8390656 0 +} +// brush 62 +{ +( 552 896 240 ) ( 536 904 232 ) ( 552 914 232 ) metals/mt_pv_m26y -121 -1 -180 1 1 134217728 8388608 0 +( 552 896 240 ) ( 536 888 232 ) ( 536 904 232 ) metals/mt_pv_m26y -121 -1 -180 1 1 134217728 8388608 0 +( 552 878 232 ) ( 536 888 232 ) ( 552 896 240 ) metals/mt_pv_m26y -121 -1 -180 1 1 134217728 8388608 0 +( 552 896 240 ) ( 568 888 232 ) ( 552 878 232 ) metals/mt_pv_m26y -121 -1 -180 1 1 134217728 8388608 0 +( 552 896 240 ) ( 568 904 232 ) ( 568 888 232 ) metals/mt_pv_m26y -121 -1 -180 1 1 134217728 8388608 0 +( 552 914 232 ) ( 568 904 232 ) ( 552 896 240 ) metals/mt_pv_m26y -121 -1 -180 1 1 134217728 8388608 0 +( 568 888 232 ) ( 568 904 232 ) ( 552 914 232 ) common/li_mf_v12c 8 17 0 1 1 134217728 8388609 20000 +} +// brush 63 +{ +( 368 504 112 ) ( 304 504 112 ) ( 304 440 112 ) wood/wd_sr_vy2 48 -55 180 1 -1 0 0 0 +( 80 432 -4 ) ( 80 432 92 ) ( 80 496 92 ) wood/wd_st_c04bb 0 -42 0 0.750000 0.750000 0 0 0 +( 64 494 -4 ) ( 64 494 92 ) ( 64 430 92 ) wood/wd_sr_vy2 -59 14 180 1 -1 0 0 0 +( 216 704 -4 ) ( 216 704 92 ) ( 152 704 92 ) wood/wd_sr_vy2 48 15 180 1 -1 0 0 0 +( 68 560 160 ) ( 64 704 160 ) ( 72 704 160 ) wood/wd_sr_vy2 48 -32 180 1 -1 0 0 0 +( 80 576 112 ) ( 64 576 112 ) ( 72 576 160 ) wood/wd_sr_vy2 48 -32 180 1 -1 0 0 0 +} +// brush 64 +{ +( 368 504 112 ) ( 304 504 112 ) ( 304 440 112 ) wood/wd_sr_vy2 48 -55 180 1 -1 0 0 0 +( 80 432 -4 ) ( 80 432 92 ) ( 80 496 92 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 64 494 -4 ) ( 64 494 92 ) ( 64 430 92 ) wood/wd_sr_vy2 -59 14 180 1 -1 0 0 0 +( 114 432 132 ) ( 118 432 120 ) ( 110 432 120 ) wood/wd_st_c04b 0 96 0 0.500000 0.750000 0 0 0 +( 68 560 160 ) ( 64 704 160 ) ( 72 704 160 ) wood/wd_sr_vy2 48 -32 180 1 -1 0 0 0 +( 64 576 112 ) ( 80 576 112 ) ( 72 576 160 ) wood/wd_sr_vy2 48 -32 180 1 -1 0 0 0 +} +// brush 65 +{ +( 304 440 288 ) ( 304 504 288 ) ( 368 504 288 ) wood/wd_sr_vy2 4 -32 180 1 -1 0 0 0 +( 80 432 -4 ) ( 80 432 92 ) ( 80 496 92 ) wood/wd_st_v4 0 32 0 1 1 0 134217728 0 +( 64 494 -4 ) ( 64 494 92 ) ( 64 430 92 ) wood/wd_sr_vy2 -59 14 180 1 -1 0 0 0 +( 216 704 -4 ) ( 216 704 92 ) ( 152 704 92 ) wood/wd_sr_vy2 4 15 180 1 -1 0 0 0 +( 68 560 160 ) ( 72 704 160 ) ( 64 704 160 ) wood/wd_sr_vy2 4 -32 180 1 -1 0 0 0 +( 80 576 160 ) ( 64 576 160 ) ( 72 576 288 ) wood/wd_sr_vy2 4 -32 180 1 -1 0 0 0 +} +// brush 66 +{ +( 304 440 288 ) ( 304 504 288 ) ( 368 504 288 ) wood/wd_sr_vy2 4 -32 180 1 -1 0 0 0 +( 80 432 -4 ) ( 80 432 92 ) ( 80 496 92 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 64 494 -4 ) ( 64 494 92 ) ( 64 430 92 ) wood/wd_sr_vy2 -59 14 180 1 -1 0 0 0 +( 114 432 132 ) ( 118 432 120 ) ( 110 432 120 ) wood/wd_sr_vy2 4 15 180 1 -1 0 0 0 +( 68 560 160 ) ( 72 704 160 ) ( 64 704 160 ) wood/wd_sr_vy2 4 -32 180 1 -1 0 0 0 +( 64 576 160 ) ( 80 576 160 ) ( 72 576 288 ) wood/wd_sr_vy2 4 -32 180 1 -1 0 0 0 +} +// brush 67 +{ +( 662 495 276 ) ( 659 498 276 ) ( 659 498 275 ) metals/mt_pv_m26y -52 -24 -180 0.500000 -0.500000 134217728 8390656 0 +( 659 498 276 ) ( 653 498 276 ) ( 653 498 275 ) metals/mt_pv_m26y 0 -23 -180 0.500000 -0.500000 134217728 8390656 0 +( 653 498 276 ) ( 650 495 276 ) ( 650 495 275 ) metals/mt_pv_m26y -52 -24 -180 0.500000 -0.500000 134217728 8390656 0 +( 650 489 275 ) ( 650 495 275 ) ( 650 495 276 ) metals/mt_pv_m26y -40 -24 -180 0.500000 -0.500000 134217728 8390656 0 +( 650 489 276 ) ( 653 486 276 ) ( 653 486 275 ) metals/mt_pv_m26y -91 -24 -180 0.500000 -0.500000 134217728 8390656 0 +( 653 486 276 ) ( 659 486 276 ) ( 659 486 275 ) metals/mt_pv_m26y 0 -23 -180 0.500000 -0.500000 134217728 8390656 0 +( 659 486 276 ) ( 662 489 276 ) ( 662 489 275 ) metals/mt_pv_m26y -92 -24 -180 0.500000 -0.500000 134217728 8390656 0 +( 662 489 276 ) ( 662 495 276 ) ( 662 495 275 ) metals/mt_pv_m26y -40 -24 -180 0.500000 -0.500000 134217728 8390656 0 +( 662 486 275 ) ( 662 498 275 ) ( 650 498 275 ) metals/mt_pv_m26y 0 37 -180 0.500000 0.500000 134217728 8390656 0 +( 650 498 276 ) ( 662 498 276 ) ( 662 486 276 ) metals/mt_pv_m26y 0 37 -180 0.500000 0.500000 134217728 8390656 0 +} +// brush 68 +{ +( 657 493 275 ) ( 657 489 275 ) ( 653 489 275 ) metals/mt_pv_m26y 0 37 -180 0.500000 0.500000 134217728 8390656 0 +( 657 493 241 ) ( 657 493 243 ) ( 653 493 243 ) metals/mt_pv_m26y 0 -23 -180 0.500000 -0.500000 134217728 8390656 0 +( 657 493 260 ) ( 656 491 260 ) ( 656 491 275 ) metals/mt_pv_m26y -40 -24 -180 0.500000 -0.500000 134217728 8390656 0 +( 679 515 260 ) ( 635 463 260 ) ( 679 463 260 ) metals/mt_pv_m26y 0 37 -180 0.500000 0.500000 134217728 8390656 0 +( 655 493 275 ) ( 656 491 275 ) ( 656 491 260 ) metals/mt_pv_m26y -7 -10 -180 0.500000 -0.500000 134217728 8390656 0 +} +// brush 69 +{ +( 656 492 260 ) ( 640 500 252 ) ( 656 510 252 ) metals/mt_pv_m26y 111 19 -180 1 1 134217728 8388608 0 +( 656 492 260 ) ( 640 484 252 ) ( 640 500 252 ) metals/mt_pv_m26y 111 19 -180 1 1 134217728 8388608 0 +( 656 474 252 ) ( 640 484 252 ) ( 656 492 260 ) metals/mt_pv_m26y 111 19 -180 1 1 134217728 8388608 0 +( 656 492 260 ) ( 672 484 252 ) ( 656 474 252 ) metals/mt_pv_m26y 111 19 -180 1 1 134217728 8388608 0 +( 656 492 260 ) ( 672 500 252 ) ( 672 484 252 ) metals/mt_pv_m26y 111 19 -180 1 1 134217728 8388608 0 +( 656 510 252 ) ( 672 500 252 ) ( 656 492 260 ) metals/mt_pv_m26y 111 19 -180 1 1 134217728 8388608 0 +( 672 484 252 ) ( 672 500 252 ) ( 656 510 252 ) common/li_mf_v12c 0 -3 0 1 1 134217728 8388609 20000 +} +// brush 70 +{ +( 264 1184 272 ) ( 264 1120 272 ) ( 268 1120 272 ) floors/dr_st_m4a 63 38 -180 1 1 0 134217728 0 +( 268 1184 272 ) ( 268 1184 384 ) ( 264 1184 384 ) floors/dr_st_m4a 15 15 -180 1 -1 0 134217728 0 +( 268 1120 272 ) ( 268 1120 384 ) ( 268 1184 384 ) floors/dr_st_m4a -32 15 0 1 1 0 134217728 0 +( 264 1120 272 ) ( 264 1120 384 ) ( 268 1120 384 ) floors/dr_st_m4a 15 15 -180 1 -1 0 134217728 0 +( 264 1184 277 ) ( 264 1184 389 ) ( 264 1120 389 ) floors/dr_st_m4a -32 15 0 1 1 0 134217728 0 +( 184 1164 384 ) ( 440 1084 384 ) ( 184 1084 384 ) floors/dr_st_m4a 63 38 -180 1 1 0 134217728 0 +} +// brush 71 +{ +( 160 640 272 ) ( 144 648 264 ) ( 160 658 264 ) metals/mt_pv_m26y 127 0 -180 1 1 134217728 8388608 0 +( 160 640 272 ) ( 144 632 264 ) ( 144 648 264 ) metals/mt_pv_m26y 127 0 -180 1 1 134217728 8388608 0 +( 160 622 264 ) ( 144 632 264 ) ( 160 640 272 ) metals/mt_pv_m26y 127 0 -180 1 1 134217728 8388608 0 +( 160 640 272 ) ( 176 632 264 ) ( 160 622 264 ) metals/mt_pv_m26y 127 0 -180 1 1 134217728 8388608 0 +( 160 640 272 ) ( 176 648 264 ) ( 176 632 264 ) metals/mt_pv_m26y 127 0 -180 1 1 134217728 8388608 0 +( 160 658 264 ) ( 176 648 264 ) ( 160 640 272 ) metals/mt_pv_m26y 127 0 -180 1 1 134217728 8388608 0 +( 176 632 264 ) ( 176 648 264 ) ( 160 658 264 ) common/li_mf_v12c -16 17 0 1 1 134217728 8388609 20000 +} +// brush 72 +{ +( 161 641 287 ) ( 161 637 287 ) ( 157 637 287 ) metals/mt_pv_m26y 31 -2 -180 0.500000 0.500000 134217728 8390656 0 +( 161 641 253 ) ( 161 641 255 ) ( 157 641 255 ) metals/mt_pv_m26y 32 0 -180 0.500000 -0.500000 134217728 8390656 0 +( 161 641 272 ) ( 160 639 272 ) ( 160 639 287 ) metals/mt_pv_m26y 0 0 -180 0.500000 -0.500000 134217728 8390656 0 +( 183 663 272 ) ( 139 611 272 ) ( 183 611 272 ) metals/mt_pv_m26y 31 -2 -180 0.500000 0.500000 134217728 8390656 0 +( 159 641 287 ) ( 160 639 287 ) ( 160 639 272 ) metals/mt_pv_m26y 32 14 -180 0.500000 -0.500000 134217728 8390656 0 +} +// brush 73 +{ +( 166 643 288 ) ( 163 646 288 ) ( 163 646 287 ) metals/mt_pv_m26y 116 0 -180 0.500000 -0.500000 134217728 8390656 0 +( 163 646 288 ) ( 157 646 288 ) ( 157 646 287 ) metals/mt_pv_m26y 32 0 -180 0.500000 -0.500000 134217728 8390656 0 +( 157 646 288 ) ( 154 643 288 ) ( 154 643 287 ) metals/mt_pv_m26y 116 0 -180 0.500000 -0.500000 134217728 8390656 0 +( 154 637 287 ) ( 154 643 287 ) ( 154 643 288 ) metals/mt_pv_m26y 0 0 -180 0.500000 -0.500000 134217728 8390656 0 +( 154 637 288 ) ( 157 634 288 ) ( 157 634 287 ) metals/mt_pv_m26y 77 0 -180 0.500000 -0.500000 134217728 8390656 0 +( 157 634 288 ) ( 163 634 288 ) ( 163 634 287 ) metals/mt_pv_m26y 32 0 -180 0.500000 -0.500000 134217728 8390656 0 +( 163 634 288 ) ( 166 637 288 ) ( 166 637 287 ) metals/mt_pv_m26y 76 0 -180 0.500000 -0.500000 134217728 8390656 0 +( 166 637 288 ) ( 166 643 288 ) ( 166 643 287 ) metals/mt_pv_m26y 0 0 -180 0.500000 -0.500000 134217728 8390656 0 +( 166 634 287 ) ( 166 646 287 ) ( 154 646 287 ) metals/mt_pv_m26y 31 -2 -180 0.500000 0.500000 134217728 8390656 0 +( 154 646 288 ) ( 166 646 288 ) ( 166 634 288 ) metals/mt_pv_m26y 31 -2 -180 0.500000 0.500000 134217728 8390656 0 +} +// brush 74 +{ +( 161 1121 447 ) ( 161 1117 447 ) ( 157 1117 447 ) metals/mt_pv_m26y 127 -2 -180 0.500000 0.500000 134217728 8390656 0 +( 159 1123 413 ) ( 159 1123 415 ) ( 159 1119 415 ) metals/mt_pv_m26y 0 0 -180 0.500000 -0.500000 134217728 8390656 0 +( 159 1119 447 ) ( 161 1120 447 ) ( 161 1120 431 ) metals/mt_pv_m26y 0 0 -180 0.500000 -0.500000 134217728 8390656 0 +( 183 1143 431 ) ( 139 1091 431 ) ( 183 1091 431 ) metals/mt_pv_m26y 127 -2 -180 0.500000 0.500000 134217728 8390656 0 +( 159 1121 431 ) ( 161 1120 431 ) ( 161 1120 447 ) metals/mt_pv_m26y 0 15 -180 0.500000 -0.500000 134217728 8390656 0 +} +// brush 75 +{ +( 166 1123 448 ) ( 163 1126 448 ) ( 163 1126 447 ) metals/mt_pv_m26y 116 0 -180 0.500000 -0.500000 134217728 8390656 0 +( 163 1126 448 ) ( 157 1126 448 ) ( 157 1126 447 ) metals/mt_pv_m26y 0 0 -180 0.500000 -0.500000 134217728 8390656 0 +( 157 1126 448 ) ( 154 1123 448 ) ( 154 1123 447 ) metals/mt_pv_m26y 116 0 -180 0.500000 -0.500000 134217728 8390656 0 +( 154 1117 447 ) ( 154 1123 447 ) ( 154 1123 448 ) metals/mt_pv_m26y 0 0 -180 0.500000 -0.500000 134217728 8390656 0 +( 154 1117 448 ) ( 157 1114 448 ) ( 157 1114 447 ) metals/mt_pv_m26y 76 0 -180 0.500000 -0.500000 134217728 8390656 0 +( 157 1114 448 ) ( 163 1114 448 ) ( 163 1114 447 ) metals/mt_pv_m26y 0 0 -180 0.500000 -0.500000 134217728 8390656 0 +( 163 1114 448 ) ( 166 1117 448 ) ( 166 1117 447 ) metals/mt_pv_m26y 76 0 -180 0.500000 -0.500000 134217728 8390656 0 +( 166 1117 448 ) ( 166 1123 448 ) ( 166 1123 447 ) metals/mt_pv_m26y 0 0 -180 0.500000 -0.500000 134217728 8390656 0 +( 166 1114 447 ) ( 166 1126 447 ) ( 154 1126 447 ) metals/mt_pv_m26y 127 -2 -180 0.500000 0.500000 134217728 8390656 0 +( 154 1126 448 ) ( 166 1126 448 ) ( 166 1114 448 ) metals/mt_pv_m26y 127 -2 -180 0.500000 0.500000 134217728 8390656 0 +} +// brush 76 +{ +( 160 1120 432 ) ( 144 1128 424 ) ( 160 1138 424 ) metals/mt_pv_m26y 127 32 -180 1 1 134217728 8388608 0 +( 160 1120 432 ) ( 144 1112 424 ) ( 144 1128 424 ) metals/mt_pv_m26y 127 32 -180 1 1 134217728 8388608 0 +( 160 1102 424 ) ( 144 1112 424 ) ( 160 1120 432 ) metals/mt_pv_m26y 127 32 -180 1 1 134217728 8388608 0 +( 160 1120 432 ) ( 176 1112 424 ) ( 160 1102 424 ) metals/mt_pv_m26y 127 32 -180 1 1 134217728 8388608 0 +( 160 1120 432 ) ( 176 1128 424 ) ( 176 1112 424 ) metals/mt_pv_m26y 127 32 -180 1 1 134217728 8388608 0 +( 160 1138 424 ) ( 176 1128 424 ) ( 160 1120 432 ) metals/mt_pv_m26y 127 32 -180 1 1 134217728 8388608 0 +( 176 1112 424 ) ( 176 1128 424 ) ( 160 1138 424 ) common/li_mf_v12c -16 17 0 1 1 134217728 8388609 20000 +} +// brush 77 +{ +( 360 640 228 ) ( 360 576 228 ) ( 424 576 228 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 420 576 256 ) ( 420 576 352 ) ( 356 576 352 ) wood/wd_st_v4 0 32 0 1 1 0 134217728 0 +( 356 560 112 ) ( 356 560 208 ) ( 420 560 208 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 124 746 110 ) ( 124 746 206 ) ( 124 682 206 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 364 560 288 ) ( 356 576 288 ) ( 372 576 288 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 196 568 160 ) ( 196 576 112 ) ( 196 560 112 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +} +// brush 78 +{ +( 96 992 320 ) ( 96 1056 320 ) ( 96 1056 224 ) wood/wd_st_v2 0 0 0 1 1 0 134217728 0 +( 96 944 256 ) ( 96 944 448 ) ( 80 944 448 ) wood/wd_sr_va2 -80 22 0 1 1 0 134217728 0 +( 64 1072 320 ) ( 64 1008 320 ) ( 64 1008 224 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +( 64 704 96 ) ( 64 704 288 ) ( 80 704 288 ) wood/wd_st_v2 0 0 0 1 1 0 134217728 0 +( 80 944 448 ) ( 80 704 288 ) ( 64 704 288 ) wood/wd_sr_va2 -48 23 0 1 1 0 134217728 0 +( 64 944 256 ) ( 64 704 96 ) ( 80 704 96 ) wood/wd_sr_va2 -48 23 0 1 1 0 134217728 0 +( 80 700 72 ) ( 64 712 72 ) ( 64 688 72 ) wood/wd_sr_va2 -48 23 0 1 1 0 134217728 0 +} +// brush 79 +{ +( 64 944 448 ) ( 64 704 288 ) ( 256 704 288 ) WOOD/WD_ST_M1B 21 0 180 3 3 0 0 0 +( 64 704 304 ) ( 64 944 464 ) ( 256 944 464 ) WOOD/WD_ST_M1B 0 -21 90 3 3 0 0 0 +( 256 944 448 ) ( 256 944 464 ) ( 64 944 464 ) WOOD/WD_ST_M1B -16 -21 90 3 3 0 0 0 +( 256 944 448 ) ( 256 704 288 ) ( 256 704 304 ) WOOD/WD_ST_M1B -16 0 90 3 3 0 0 0 +( 64 704 288 ) ( 64 704 304 ) ( 256 704 304 ) WOOD/WD_ST_M1B -16 -21 90 3 3 0 0 0 +( 64 944 464 ) ( 64 704 304 ) ( 64 704 288 ) WOOD/WD_ST_M1B -16 0 90 3 3 0 0 0 +} +// brush 80 +{ +( 256 992 320 ) ( 256 1056 320 ) ( 256 1056 224 ) wood/wd_sr_va2 -60 72 0 1 1 0 134217728 0 +( 240 944 256 ) ( 240 944 448 ) ( 224 944 448 ) wood/wd_sr_va2 0 22 0 1 1 0 134217728 0 +( 224 1072 320 ) ( 224 1008 320 ) ( 224 1008 224 ) wood/wd_st_v2 0 0 0 1 1 0 134217728 0 +( 240 704 96 ) ( 240 704 288 ) ( 256 704 288 ) wood/wd_st_v2 0 0 0 1 1 0 134217728 0 +( 256 944 448 ) ( 256 704 288 ) ( 240 704 288 ) wood/wd_sr_va2 -96 23 0 1 1 0 134217728 0 +( 240 944 256 ) ( 240 704 96 ) ( 256 704 96 ) wood/wd_sr_va2 -96 23 0 1 1 0 134217728 0 +( 256 700 72 ) ( 240 712 72 ) ( 240 688 72 ) wood/wd_sr_va2 -96 23 0 1 1 0 134217728 0 +} +// brush 81 +{ +( 230 560 228 ) ( 118 560 228 ) ( 118 568 228 ) wood/wd_hl_v4f 0 0 0 1 1 0 134217728 0 +( 132 568 220 ) ( 124 568 228 ) ( 124 560 228 ) wood/wd_hl_v4f 0 0 0 1 1 0 134217728 0 +( 188 560 220 ) ( 196 560 228 ) ( 196 568 228 ) wood/wd_hl_v4f 0 0 0 1 1 0 134217728 0 +( 364 560 188 ) ( 236 560 508 ) ( 364 560 508 ) wood/wd_hl_v4f 0 0 90 1 1 0 134217728 0 +( -136 576 164 ) ( -8 576 484 ) ( -136 576 484 ) wood/wd_hl_v4f 0 0 90 1 1 0 134217728 0 +( 174 560 224 ) ( 222 568 224 ) ( 126 568 224 ) wood/wd_hl_v4f 0 0 90 1 1 0 134217728 0 +} +// brush 82 +{ +( 196 576 246 ) ( 196 576 134 ) ( 196 568 134 ) wood/wd_hl_v4f 0 0 0 1 1 0 134217728 0 +( 180 575 112 ) ( 176 575 112 ) ( 176 559 112 ) wood/wd_hl_v4f 32 0 0 1 1 0 134217728 0 +( 172 576 204 ) ( 180 576 212 ) ( 180 568 212 ) wood/wd_hl_v4f 32 0 0 1 1 0 134217728 0 +( 140 576 380 ) ( 460 576 252 ) ( 460 576 380 ) wood/wd_hl_v4f 32 0 0 1 1 0 134217728 0 +( 116 560 -120 ) ( 436 560 8 ) ( 436 560 -120 ) wood/wd_hl_v4f 32 0 0 1 1 0 134217728 0 +( 192 560 224 ) ( 192 560 110 ) ( 192 576 110 ) wood/wd_hl_v4f 0 0 0 1 1 0 134217728 0 +} +// brush 83 +{ +( 124 568 134 ) ( 124 576 134 ) ( 124 576 246 ) wood/wd_hl_v4f 0 0 0 1 1 0 134217728 0 +( 128 559 112 ) ( 128 575 112 ) ( 124 575 112 ) wood/wd_hl_v4f -32 0 0 1 1 0 134217728 0 +( 124 568 228 ) ( 124 576 228 ) ( 132 576 220 ) wood/wd_hl_v4f -32 0 0 1 1 0 134217728 0 +( -156 576 380 ) ( -156 576 252 ) ( 164 576 380 ) wood/wd_hl_v4f -32 0 0 1 1 0 134217728 0 +( -132 560 -120 ) ( -132 560 8 ) ( 188 560 -120 ) wood/wd_hl_v4f -32 0 0 1 1 0 134217728 0 +( 128 576 110 ) ( 128 560 110 ) ( 128 560 224 ) wood/wd_hl_v4f 0 0 0 1 1 0 134217728 0 +} +// brush 84 +{ +( 240 728 96 ) ( 112 728 96 ) ( 112 472 96 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 112 472 112 ) ( 112 728 112 ) ( 240 728 112 ) wood/wd_st_m7s 0 -64 90 1 1 0 134217728 0 +( 240 472 80 ) ( 240 472 208 ) ( 240 728 208 ) wood/wd_st_m7s 0 8 0 1 1 0 134217728 0 +( 120 560 64 ) ( 120 560 192 ) ( 248 560 192 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 80 712 80 ) ( 80 712 208 ) ( 80 456 208 ) wood/wd_st_m7s 0 8 0 1 1 0 134217728 0 +( 200 728 80 ) ( 200 728 208 ) ( 72 728 208 ) wood/wd_st_m7s -64 8 0 1 1 0 134217728 0 +} +// brush 85 +{ +( 240 752 112 ) ( 112 752 112 ) ( 112 496 112 ) wood/wd_sr_va2 0 119 -90 1 1 0 134217728 0 +( 112 496 128 ) ( 112 752 128 ) ( 240 752 128 ) bricks/c_sr_m2 -64 0 0 1 1 0 0 0 +( 240 496 96 ) ( 240 496 224 ) ( 240 752 224 ) wood/wd_sr_va2 0 111 -180 1 -1 0 134217728 0 +( 72 728 96 ) ( 72 728 224 ) ( 200 728 224 ) bricks/c_sr_m1a 0 1 0 1 1 0 0 0 +( 80 752 96 ) ( 80 752 224 ) ( 80 496 224 ) wood/wd_sr_va2 0 111 -180 1 -1 0 134217728 0 +( 200 752 96 ) ( 200 752 224 ) ( 72 752 224 ) wood/wd_sr_va2 -64 111 0 1 1 0 134217728 0 +} +// brush 86 +{ +( 240 776 128 ) ( 112 776 128 ) ( 112 520 128 ) wood/wd_sr_va2 23 119 -90 1 1 0 134217728 0 +( 112 520 144 ) ( 112 776 144 ) ( 240 776 144 ) bricks/c_sr_m2 -64 -8 0 1 1 0 0 0 +( 240 520 112 ) ( 240 520 240 ) ( 240 776 240 ) wood/wd_sr_va2 24 127 -180 1 -1 0 134217728 0 +( 72 752 112 ) ( 72 752 240 ) ( 200 752 240 ) bricks/c_sr_m1a 0 19 0 1 1 0 0 0 +( 80 776 112 ) ( 80 776 240 ) ( 80 520 240 ) wood/wd_sr_va2 24 127 -180 1 -1 0 134217728 0 +( 200 776 112 ) ( 200 776 240 ) ( 72 776 240 ) wood/wd_sr_va2 -64 127 0 1 1 0 134217728 0 +} +// brush 87 +{ +( 240 800 144 ) ( 112 800 144 ) ( 112 544 144 ) wood/wd_sr_va2 47 119 -90 1 1 0 134217728 0 +( 112 544 160 ) ( 112 800 160 ) ( 240 800 160 ) bricks/c_sr_m2 -64 0 0 1 1 0 0 0 +( 240 544 128 ) ( 240 544 256 ) ( 240 800 256 ) wood/wd_sr_va2 49 13 180 1 -1 0 134217728 0 +( 72 776 128 ) ( 72 776 256 ) ( 200 776 256 ) bricks/c_sr_m1a 0 1 0 1 1 0 0 0 +( 80 800 128 ) ( 80 800 256 ) ( 80 544 256 ) wood/wd_sr_va2 49 13 180 1 -1 0 134217728 0 +( 200 800 128 ) ( 200 800 256 ) ( 72 800 256 ) wood/wd_sr_va2 -64 15 0 1 1 0 134217728 0 +} +// brush 88 +{ +( 240 824 160 ) ( 112 824 160 ) ( 112 568 160 ) wood/wd_sr_va2 -55 119 -90 1 1 0 134217728 0 +( 112 568 176 ) ( 112 824 176 ) ( 240 824 176 ) bricks/c_sr_m2 -64 -10 0 1 1 0 0 0 +( 240 568 144 ) ( 240 568 272 ) ( 240 824 272 ) wood/wd_sr_va2 -55 30 -180 1 -1 0 134217728 0 +( 72 800 144 ) ( 72 800 272 ) ( 200 800 272 ) bricks/c_sr_m1a 0 19 0 1 1 0 0 0 +( 80 824 144 ) ( 80 824 272 ) ( 80 568 272 ) wood/wd_sr_va2 -55 30 -180 1 -1 0 134217728 0 +( 200 824 144 ) ( 200 824 272 ) ( 72 824 272 ) wood/wd_sr_va2 -64 30 0 1 1 0 134217728 0 +} +// brush 89 +{ +( 240 848 176 ) ( 112 848 176 ) ( 112 592 176 ) wood/wd_sr_va2 -31 119 -90 1 1 0 134217728 0 +( 112 592 192 ) ( 112 848 192 ) ( 240 848 192 ) bricks/c_sr_m2 -64 -4 0 1 1 0 0 0 +( 240 592 160 ) ( 240 592 288 ) ( 240 848 288 ) wood/wd_sr_va2 -31 47 -180 1 -1 0 134217728 0 +( 72 824 160 ) ( 72 824 288 ) ( 200 824 288 ) bricks/c_sr_m1a 0 1 0 1 1 0 0 0 +( 80 848 160 ) ( 80 848 288 ) ( 80 592 288 ) wood/wd_sr_va2 -31 47 -180 1 -1 0 134217728 0 +( 200 848 160 ) ( 200 848 288 ) ( 72 848 288 ) wood/wd_sr_va2 -64 47 0 1 1 0 134217728 0 +} +// brush 90 +{ +( 240 872 192 ) ( 112 872 192 ) ( 112 616 192 ) wood/wd_sr_va2 -8 119 -90 1 1 0 134217728 0 +( 112 616 208 ) ( 112 872 208 ) ( 240 872 208 ) bricks/c_sr_m2 -64 -29 0 1 1 0 0 0 +( 240 616 176 ) ( 240 616 304 ) ( 240 872 304 ) wood/wd_sr_va2 -6 63 -180 1 -1 0 134217728 0 +( 72 848 176 ) ( 72 848 304 ) ( 200 848 304 ) bricks/c_sr_m1a 0 19 0 1 1 0 0 0 +( 80 872 176 ) ( 80 872 304 ) ( 80 616 304 ) wood/wd_sr_va2 -6 63 -180 1 -1 0 134217728 0 +( 200 872 176 ) ( 200 872 304 ) ( 72 872 304 ) wood/wd_sr_va2 -64 63 0 1 1 0 134217728 0 +} +// brush 91 +{ +( 240 896 208 ) ( 112 896 208 ) ( 112 640 208 ) wood/wd_sr_va2 15 119 -90 1 1 0 134217728 0 +( 112 640 224 ) ( 112 896 224 ) ( 240 896 224 ) bricks/c_sr_m2 -64 0 0 1 1 0 0 0 +( 240 640 192 ) ( 240 640 320 ) ( 240 896 320 ) wood/wd_sr_va2 16 79 -180 1 -1 0 134217728 0 +( 72 872 192 ) ( 72 872 320 ) ( 200 872 320 ) bricks/c_sr_m1a 0 1 0 1 1 0 0 0 +( 80 896 192 ) ( 80 896 320 ) ( 80 640 320 ) wood/wd_sr_va2 16 79 -180 1 -1 0 134217728 0 +( 200 896 192 ) ( 200 896 320 ) ( 72 896 320 ) wood/wd_sr_va2 -64 79 0 1 1 0 134217728 0 +} +// brush 92 +{ +( 240 920 224 ) ( 112 920 224 ) ( 112 664 224 ) wood/wd_sr_va2 39 119 -90 1 1 0 134217728 0 +( 112 664 240 ) ( 112 920 240 ) ( 240 920 240 ) bricks/c_sr_m2 -64 7 0 1 1 0 0 0 +( 240 664 208 ) ( 240 664 336 ) ( 240 920 336 ) wood/wd_sr_va2 40 95 -180 1 -1 0 134217728 0 +( 72 896 208 ) ( 72 896 336 ) ( 200 896 336 ) bricks/c_sr_m1a 0 19 0 1 1 0 0 0 +( 80 920 208 ) ( 80 920 336 ) ( 80 664 336 ) wood/wd_sr_va2 40 95 -180 1 -1 0 134217728 0 +( 200 920 208 ) ( 200 920 336 ) ( 72 920 336 ) wood/wd_sr_va2 -64 95 0 1 1 0 134217728 0 +} +// brush 93 +{ +( 240 944 240 ) ( 112 944 240 ) ( 112 688 240 ) wood/wd_sr_va2 63 119 -90 1 1 0 134217728 0 +( 112 688 256 ) ( 112 944 256 ) ( 240 944 256 ) bricks/c_sr_m2 -64 -1 0 1 1 0 0 0 +( 240 688 224 ) ( 240 688 352 ) ( 240 944 352 ) wood/wd_sr_va2 -63 111 -180 1 -1 0 134217728 0 +( 72 920 224 ) ( 72 920 352 ) ( 200 920 352 ) bricks/c_sr_m1a 0 1 0 1 1 0 0 0 +( 80 944 224 ) ( 80 944 352 ) ( 80 688 352 ) wood/wd_sr_va2 -63 111 -180 1 -1 0 134217728 0 +( 184 944 224 ) ( 184 944 352 ) ( 56 944 352 ) wood/wd_sr_va2 -64 111 0 1 1 0 134217728 0 +} +// brush 94 +{ +( 292 576 248 ) ( 292 576 344 ) ( 228 576 344 ) wood/wd_st_v4 0 32 0 1 1 0 134217728 0 +( 228 560 120 ) ( 228 560 216 ) ( 292 560 216 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 80 742 110 ) ( 80 742 206 ) ( 80 678 206 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 268 568 288 ) ( 260 584 288 ) ( 276 584 288 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 124 568 160 ) ( 124 576 112 ) ( 124 560 112 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 100 560 160 ) ( 104 576 160 ) ( 96 576 160 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +} +// brush 95 +{ +( 228 640 112 ) ( 228 576 112 ) ( 292 576 112 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 292 576 248 ) ( 292 576 344 ) ( 228 576 344 ) wood/wd_st_c04bb 0 -42 0 0.750000 0.750000 0 0 0 +( 228 560 120 ) ( 228 560 216 ) ( 292 560 216 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 80 742 110 ) ( 80 742 206 ) ( 80 678 206 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 124 568 160 ) ( 124 576 112 ) ( 124 560 112 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 100 560 160 ) ( 96 576 160 ) ( 104 576 160 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +} +// brush 96 +{ +( 544 504 64 ) ( 480 504 64 ) ( 480 440 64 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 256 432 -4 ) ( 256 432 92 ) ( 256 496 92 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 240 494 -52 ) ( 240 494 44 ) ( 240 430 44 ) wood/wd_st_c04bb 0 -42 0 0.750000 0.750000 0 0 0 +( 392 704 -4 ) ( 392 704 92 ) ( 328 704 92 ) bricks/b_hl_v2 -64 48 0 1 1 0 0 0 +( 290 560 132 ) ( 294 560 120 ) ( 286 560 120 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 68 560 160 ) ( 64 704 160 ) ( 72 704 160 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +} +// brush 97 +{ +( 384 640 112 ) ( 384 576 112 ) ( 448 576 112 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 448 576 248 ) ( 448 576 344 ) ( 384 576 344 ) wood/wd_st_c04bb 0 -42 0 0.750000 0.750000 0 0 0 +( 384 560 120 ) ( 384 560 216 ) ( 448 560 216 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 196 742 110 ) ( 196 742 206 ) ( 196 678 206 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 240 560 160 ) ( 240 568 112 ) ( 240 552 112 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 36 560 160 ) ( 32 576 160 ) ( 40 576 160 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +} +// brush 98 +{ +( 600 632 160 ) ( 560 632 160 ) ( 560 632 112 ) wood/wd_sr_va2 -64 32 0 1 1 0 134250496 0 +( 589 641 160 ) ( 550 631 160 ) ( 550 631 112 ) wood/wd_sr_va2 -64 32 0 1 1 0 134250496 0 +( 575 647 160 ) ( 540 627 160 ) ( 540 627 112 ) wood/wd_sr_va2 -64 32 0 1 1 0 134250496 0 +( 560 648 160 ) ( 532 620 160 ) ( 532 620 112 ) wood/wd_sr_va2 0 32 0 1 1 0 134250496 0 +( 545 647 160 ) ( 525 612 160 ) ( 525 612 112 ) wood/wd_sr_va2 0 32 0 1 1 0 134250496 0 +( 531 641 160 ) ( 521 602 160 ) ( 521 602 112 ) wood/wd_sr_va2 0 32 0 1 1 0 134250496 0 +( 520 632 160 ) ( 520 592 160 ) ( 520 592 112 ) wood/wd_sr_va2 0 32 0 1 1 0 134250496 0 +( 600 552 156 ) ( 600 632 156 ) ( 520 632 156 ) wood/wd_cp_v3 -108 32 0 1 1 0 0 0 +( 520 632 160 ) ( 600 632 160 ) ( 600 552 160 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 560 564 176 ) ( 560 576 128 ) ( 560 552 128 ) wood/wd_sr_va2 -16 29 0 1 1 0 0 0 +( 548 592 196 ) ( 560 592 148 ) ( 536 592 148 ) wood/wd_sr_va2 -16 29 0 1 1 0 0 0 +} +// brush 99 +{ +( 556 384 156 ) ( 492 384 156 ) ( 492 192 156 ) wood/wd_cp_v3 -32 0 0 1 1 0 0 0 +( 480 192 160 ) ( 480 384 160 ) ( 544 384 160 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 488 360 160 ) ( 552 360 160 ) ( 552 360 96 ) wood/wd_sr_va2 -64 32 0 1 1 0 134250496 0 +( 672 192 156 ) ( 672 384 156 ) ( 672 384 92 ) wood/wd_sr_va2 -32 32 0 1 1 0 0 0 +( 608 400 212 ) ( 544 400 212 ) ( 544 400 148 ) wood/wd_cp_v3 -32 16 0 1 1 0 134217728 0 +( 560 384 244 ) ( 560 192 244 ) ( 560 192 180 ) wood/wd_sr_va2 -32 32 0 1 1 0 0 0 +} +// brush 100 +{ +( 584 592 104 ) ( 584 400 104 ) ( 616 400 104 ) wood/wd_sr_va2 -32 125 0 0.250000 0.300000 0 0 0 +( 616 400 112 ) ( 584 400 112 ) ( 584 592 112 ) floors/fl_st_m2a -16 -48 0 1 1 0 67108864 0 +( 616 592 88 ) ( 616 592 136 ) ( 584 592 136 ) wood/wd_sr_va2 -32 35 0 0.250000 0.300000 0 0 0 +( 752 396 92 ) ( 752 396 140 ) ( 752 588 140 ) wood/wd_sr_va2 -64 35 0 0.250000 0.300000 0 0 0 +( 584 400 88 ) ( 584 400 136 ) ( 616 400 136 ) wood/wd_sr_va2 -64 104 0 1 1 0 0 0 +( 560 592 88 ) ( 560 592 136 ) ( 560 400 136 ) wood/wd_sr_va2 -64 35 0 0.250000 0.300000 0 0 0 +} +// brush 101 +{ +( 432 720 64 ) ( 432 656 64 ) ( 496 656 64 ) floors/fl_hl_v1 0 0 0 1 1 0 0 0 +( 496 656 80 ) ( 432 656 80 ) ( 432 720 80 ) floors/fl_hl_v1 0 0 0 1 1 0 2097152 0 +( 496 720 64 ) ( 496 720 80 ) ( 432 720 80 ) floors/fl_hl_v1 0 48 0 1 1 0 0 0 +( 432 720 64 ) ( 432 720 80 ) ( 432 656 80 ) floors/fl_hl_v1 0 48 0 1 1 0 0 0 +( 464 688 80 ) ( 496 720 64 ) ( 432 656 64 ) floors/fl_hl_v1 0 48 0 1 1 0 0 0 +} +// brush 102 +{ +( 432 272 64 ) ( 496 272 64 ) ( 496 336 64 ) floors/fl_hl_v1 -62 0 0 1 1 0 0 0 +( 496 336 80 ) ( 496 272 80 ) ( 432 272 80 ) floors/fl_hl_v1 -62 0 0 1 1 0 2097152 0 +( 432 336 64 ) ( 432 336 80 ) ( 432 272 80 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 432 272 64 ) ( 432 272 80 ) ( 496 272 80 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 464 304 80 ) ( 432 336 64 ) ( 496 272 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +} +// brush 103 +{ +( 384 560 48 ) ( 256 560 48 ) ( 256 304 48 ) floors/fl_hl_v1b -62 0 0 1 1 0 0 0 +( 240 304 80 ) ( 240 560 80 ) ( 368 560 80 ) floors/fl_hl_v1b 0 -1 0 1 1 0 2097152 0 +( 320 272 48 ) ( 320 272 176 ) ( 320 528 176 ) floors/fl_hl_v1b 2 48 0 1 1 0 0 0 +( 248 432 32 ) ( 248 432 160 ) ( 376 432 160 ) floors/fl_hl_v1b -62 48 0 1 1 0 0 0 +( 240 592 48 ) ( 240 592 176 ) ( 240 336 176 ) floors/fl_hl_v1b 2 48 0 1 1 0 0 0 +( 328 552 48 ) ( 328 552 176 ) ( 200 552 176 ) floors/fl_hl_v1b -62 48 0 1 1 0 0 0 +} +// brush 104 +{ +( 96 160 48 ) ( 96 32 48 ) ( 128 32 48 ) WOOD/WD_ST_M1B -64 0 0 0.250000 0.250000 0 134217728 0 +( 128 32 64 ) ( 96 32 64 ) ( 96 160 64 ) wood/wd_st_m7s 0 -64 90 1 1 0 134217728 0 +( 128 160 32 ) ( 128 160 64 ) ( 96 160 64 ) WOOD/WD_ST_M1B -64 64 0 0.250000 0.250000 0 134217728 0 +( 128 -32 32 ) ( 128 -32 64 ) ( 128 96 64 ) WOOD/WD_ST_M1B 0 64 0 0.250000 0.250000 0 134217728 0 +( 96 32 32 ) ( 96 32 64 ) ( 128 32 64 ) WOOD/WD_ST_M1B -64 64 0 0.250000 0.250000 0 134217728 0 +( 96 160 32 ) ( 96 160 64 ) ( 96 32 64 ) WOOD/WD_ST_M1B 0 64 0 0.250000 0.250000 0 134217728 0 +} +// brush 105 +{ +( 176 160 48 ) ( 176 32 48 ) ( 208 32 48 ) WOOD/WD_ST_M1B 0 0 0 0.250000 0.250000 0 134217728 0 +( 208 32 64 ) ( 176 32 64 ) ( 176 160 64 ) wood/wd_st_m7s 0 -64 90 1 1 0 134217728 0 +( 208 160 32 ) ( 208 160 64 ) ( 176 160 64 ) WOOD/WD_ST_M1B 0 64 0 0.250000 0.250000 0 134217728 0 +( 208 32 32 ) ( 208 32 64 ) ( 208 160 64 ) WOOD/WD_ST_M1B 0 64 0 0.250000 0.250000 0 134217728 0 +( 176 32 32 ) ( 176 32 64 ) ( 208 32 64 ) WOOD/WD_ST_M1B 0 64 0 0.250000 0.250000 0 134217728 0 +( 176 96 32 ) ( 176 96 64 ) ( 176 -32 64 ) WOOD/WD_ST_M1B 0 64 0 0.250000 0.250000 0 134217728 0 +} +// brush 106 +{ +( 48 272 48 ) ( 48 80 48 ) ( 560 80 48 ) wood/wd_sr_vy2 -64 0 0 1 1 0 0 0 +( 560 80 64 ) ( 48 80 64 ) ( 48 272 64 ) wood/wd_st_m7s 0 -64 90 1 1 0 134217728 0 +( 560 288 0 ) ( 560 288 64 ) ( 48 288 64 ) wood/wd_sr_vy2 -64 48 0 1 1 0 0 0 +( 272 64 48 ) ( 272 64 112 ) ( 272 256 112 ) wood/wd_sr_vy2 0 48 0 1 1 0 0 0 +( 48 232 16 ) ( 48 232 80 ) ( 48 40 80 ) wood/wd_sr_vy2 0 48 0 1 1 0 0 0 +( 128 160 32 ) ( 96 160 64 ) ( 128 160 64 ) wood/wd_sr_vy2 -64 48 0 1 1 0 0 0 +} +// brush 107 +{ +( 64 272 48 ) ( 64 80 48 ) ( 576 80 48 ) wood/wd_sr_vy2 -64 0 0 1 1 0 0 0 +( 576 80 64 ) ( 64 80 64 ) ( 64 272 64 ) wood/wd_st_m7s 0 -64 90 1 1 0 134217728 0 +( 256 80 48 ) ( 256 80 112 ) ( 256 272 112 ) wood/wd_sr_vy2 0 48 0 1 1 0 0 0 +( 64 16 0 ) ( 64 16 64 ) ( 576 16 64 ) wood/wd_sr_vy2 -64 48 0 1 1 0 0 0 +( 160 160 32 ) ( 160 160 64 ) ( 128 160 64 ) wood/wd_sr_vy2 -64 48 0 1 1 0 0 0 +( 208 0 32 ) ( 208 128 64 ) ( 208 0 64 ) wood/wd_sr_vy2 0 48 0 1 1 0 0 0 +} +// brush 108 +{ +( 48 272 48 ) ( 48 80 48 ) ( 560 80 48 ) wood/wd_sr_vy2 -64 0 0 1 1 0 0 0 +( 560 80 64 ) ( 48 80 64 ) ( 48 272 64 ) wood/wd_st_m7s 0 -64 90 1 1 0 134217728 0 +( 48 16 0 ) ( 48 16 64 ) ( 560 16 64 ) wood/wd_sr_vy2 -64 48 0 1 1 0 0 0 +( 48 232 16 ) ( 48 232 80 ) ( 48 40 80 ) wood/wd_sr_vy2 0 48 0 1 1 0 0 0 +( 208 32 32 ) ( 208 32 64 ) ( 208 160 64 ) wood/wd_sr_vy2 0 48 0 1 1 0 0 0 +( 112 32 32 ) ( 144 32 64 ) ( 112 32 64 ) wood/wd_sr_vy2 -64 48 0 1 1 0 0 0 +} +// brush 109 +{ +( 128 272 48 ) ( 128 80 48 ) ( 640 80 48 ) wood/wd_sr_vy2 -64 0 0 1 1 0 0 0 +( 640 80 64 ) ( 128 80 64 ) ( 128 272 64 ) wood/wd_st_m7s 0 -64 90 1 1 0 134217728 0 +( 224 160 32 ) ( 224 160 64 ) ( 192 160 64 ) wood/wd_sr_vy2 -64 48 0 1 1 0 0 0 +( 192 32 32 ) ( 192 32 64 ) ( 224 32 64 ) wood/wd_sr_vy2 -64 48 0 1 1 0 0 0 +( 176 96 32 ) ( 176 -32 64 ) ( 176 96 64 ) wood/wd_sr_vy2 0 48 0 1 1 0 0 0 +( 128 -32 32 ) ( 128 96 64 ) ( 128 -32 64 ) wood/wd_sr_vy2 0 48 0 1 1 0 0 0 +} +// brush 110 +{ +( 128 272 48 ) ( 128 80 48 ) ( 640 80 48 ) wood/wd_sr_vy2 -64 0 0 1 1 0 0 0 +( 640 80 64 ) ( 128 80 64 ) ( 128 272 64 ) wood/wd_st_m7s 0 -64 90 1 1 0 134217728 0 +( 48 240 16 ) ( 48 240 80 ) ( 48 48 80 ) wood/wd_sr_vy2 0 48 0 1 1 0 0 0 +( 208 160 32 ) ( 208 160 64 ) ( 176 160 64 ) wood/wd_sr_vy2 -64 48 0 1 1 0 0 0 +( 192 32 32 ) ( 192 32 64 ) ( 224 32 64 ) wood/wd_sr_vy2 -64 48 0 1 1 0 0 0 +( 96 160 32 ) ( 96 32 64 ) ( 96 160 64 ) wood/wd_sr_vy2 0 48 0 1 1 0 0 0 +} +// brush 111 +{ +( 64 720 48 ) ( 64 528 48 ) ( 576 528 48 ) floors/fl_hl_v1 -62 0 0 1 1 0 0 0 +( 576 528 80 ) ( 64 528 80 ) ( 64 720 80 ) floors/fl_hl_v1 0 0 0 1 1 0 2097152 0 +( 72 552 16 ) ( 72 552 80 ) ( 584 552 80 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 240 664 16 ) ( 240 664 80 ) ( 240 472 80 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 288 768 48 ) ( 288 768 112 ) ( 288 960 112 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 312 768 48 ) ( 504 768 112 ) ( 312 768 112 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +} +// brush 112 +{ +( 1032 136 80 ) ( 968 136 80 ) ( 968 72 80 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 64 94 28 ) ( 64 94 124 ) ( 64 30 124 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 264 16 -20 ) ( 264 16 76 ) ( 200 16 76 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 42 0 116 ) ( 46 0 104 ) ( 38 0 104 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 724 224 160 ) ( 712 336 160 ) ( 736 336 160 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 384 4 112 ) ( 384 16 48 ) ( 384 -8 48 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +} +// brush 113 +{ +( 416 16 48 ) ( 448 16 48 ) ( 448 112 48 ) wood/wd_cp_v3 -11 -64 90 1 1 0 0 0 +( 448 160 124 ) ( 448 64 124 ) ( 416 64 124 ) wood/wd_cp_v3 -11 -64 90 1 1 0 0 0 +( 256 -16 112 ) ( 256 -16 120 ) ( 256 -112 120 ) wood/wd_sr_va2c 0 48 0 1 1 0 0 0 +( 448 224 112 ) ( 448 224 120 ) ( 416 224 120 ) wood/wd_sr_va2e -64 1 0 1 1 0 0 0 +( 288 176 112 ) ( 288 176 120 ) ( 288 272 120 ) wood/wd_sr_va2e 0 1 0 1 1 0 134217728 0 +( 416 64 112 ) ( 416 64 120 ) ( 448 64 120 ) wood/wd_cp_v3 91 113 -180 1 -1 0 0 0 +( 260 220 120 ) ( 256 216 48 ) ( 264 224 48 ) wood/wd_sr_va2e 0 1 0 1 1 0 0 0 +( 284 220 120 ) ( 280 224 48 ) ( 288 216 48 ) wood/wd_sr_va2e 0 1 0 1 1 0 134217728 0 +} +// brush 114 +{ +( 88 -20 124 ) ( 280 -20 124 ) ( 280 44 124 ) wood/wd_cp_v3 -44 32 0 1 1 0 134217728 0 +( 280 0 128 ) ( 280 -64 128 ) ( 88 -64 128 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 256 -3 64 ) ( 256 -3 128 ) ( 256 -67 128 ) wood/wd_cp_v3 20 80 0 1 1 0 134217728 0 +( 280 224 64 ) ( 280 224 128 ) ( 88 224 128 ) wood/wd_cp_v3 -44 80 0 1 1 0 134217728 0 +( 288 0 112 ) ( 288 0 176 ) ( 288 64 176 ) wood/wd_cp_v3 20 80 0 1 1 0 134217728 0 +( 88 64 148 ) ( 88 64 212 ) ( 280 64 212 ) wood/wd_cp_v3 -44 80 0 1 1 0 134217728 0 +( 260 220 128 ) ( 256 216 120 ) ( 264 224 120 ) wood/wd_cp_v3 20 80 0 1 1 0 134217728 0 +( 284 220 128 ) ( 280 224 120 ) ( 288 216 120 ) wood/wd_cp_v3 20 80 0 1 1 0 134217728 0 +} +// brush 115 +{ +( 720 432 112 ) ( 720 400 112 ) ( 816 400 112 ) wood/wd_sr_vy2 -64 0 0 1 1 0 0 0 +( 816 400 228 ) ( 720 400 228 ) ( 720 432 228 ) wood/wd_sr_vy2 -64 0 0 1 1 0 0 0 +( 816 624 144 ) ( 816 624 152 ) ( 720 624 152 ) wood/wd_sr_vy2 -64 48 0 1 1 0 0 0 +( 752 400 144 ) ( 752 400 152 ) ( 752 432 152 ) wood/wd_sr_vy2 0 48 0 1 1 0 0 0 +( 880 600 144 ) ( 880 600 152 ) ( 976 600 152 ) wood/wd_sr_vy2 -64 48 0 1 1 0 134217728 0 +( 720 432 144 ) ( 720 432 152 ) ( 720 400 152 ) wood/wd_sr_vy2 0 48 0 1 1 0 134217728 0 +} +// brush 116 +{ +( 720 632 156 ) ( 720 624 156 ) ( 752 624 156 ) wood/wd_cp_v3 -32 -24 0 1 1 0 0 0 +( 752 624 160 ) ( 720 624 160 ) ( 720 632 160 ) wood/wd_cp_v3 -32 -32 0 1 1 0 0 0 +( 752 632 152 ) ( 752 632 160 ) ( 720 632 160 ) wood/wd_sr_va2 -64 32 0 1 1 0 134250496 0 +( 752 624 152 ) ( 752 624 160 ) ( 752 632 160 ) wood/wd_sr_va2 -64 113 0 0.250000 0.300000 0 0 0 +( 720 624 156 ) ( 720 624 164 ) ( 752 624 164 ) wood/wd_sr_va2 -64 113 0 0.250000 0.300000 0 0 0 +( 720 632 152 ) ( 720 632 160 ) ( 720 624 160 ) wood/wd_sr_va2 -64 113 0 0.250000 0.300000 0 0 0 +} +// brush 117 +{ +( 720 368 156 ) ( 720 360 156 ) ( 752 360 156 ) wood/wd_cp_v3 -44 32 0 1 1 0 0 0 +( 752 360 160 ) ( 720 360 160 ) ( 720 368 160 ) wood/wd_cp_v3 -32 -32 0 1 1 0 0 0 +( 752 368 156 ) ( 752 368 164 ) ( 720 368 164 ) wood/wd_sr_va2 -64 113 0 0.250000 0.300000 0 0 0 +( 752 360 152 ) ( 752 360 160 ) ( 752 368 160 ) wood/wd_sr_va2 -64 113 0 0.250000 0.300000 0 0 0 +( 720 360 152 ) ( 720 360 160 ) ( 752 360 160 ) wood/wd_sr_va2 -64 32 0 1 1 0 134250496 0 +( 720 368 152 ) ( 720 368 160 ) ( 720 360 160 ) wood/wd_sr_va2 -64 113 0 0.250000 0.300000 0 0 0 +} +// brush 118 +{ +( 48 304 288 ) ( 48 0 288 ) ( 272 0 288 ) WOOD/WD_ST_M1B 0 -21 90 3 3 0 0 0 +( 272 0 304 ) ( 48 0 304 ) ( 48 304 304 ) WOOD/WD_ST_M1B 0 -21 90 3 3 0 0 0 +( 272 304 288 ) ( 272 304 304 ) ( 48 304 304 ) WOOD/WD_ST_M1B -16 -21 90 3 3 0 0 0 +( 272 0 292 ) ( 272 0 308 ) ( 272 304 308 ) WOOD/WD_ST_M1B -16 0 90 3 3 0 0 0 +( 48 0 292 ) ( 48 0 308 ) ( 272 0 308 ) WOOD/WD_ST_M1B -16 -21 90 3 3 0 0 0 +( 48 304 292 ) ( 48 304 308 ) ( 48 0 308 ) WOOD/WD_ST_M1B -16 0 90 3 3 0 0 0 +} +// brush 119 +{ +( 336 464 288 ) ( 336 160 288 ) ( 560 160 288 ) WOOD/WD_ST_M1B 0 -21 90 3 3 0 0 0 +( 560 160 304 ) ( 336 160 304 ) ( 336 464 304 ) WOOD/WD_ST_M1B 0 -21 90 3 3 0 0 0 +( 560 1024 288 ) ( 560 1024 304 ) ( 336 1024 304 ) WOOD/WD_ST_M1B -16 -21 90 3 3 0 0 0 +( 768 160 288 ) ( 768 160 304 ) ( 768 464 304 ) WOOD/WD_ST_M1B -16 0 90 3 3 0 0 0 +( 336 784 292 ) ( 336 784 308 ) ( 560 784 308 ) WOOD/WD_ST_M1B -16 -21 90 3 3 0 0 0 +( 336 464 292 ) ( 336 464 308 ) ( 336 160 308 ) WOOD/WD_ST_M1B -16 0 90 3 3 0 0 0 +} +// brush 120 +{ +( 400 0 224 ) ( 400 -96 224 ) ( 752 -96 224 ) props/w_sr_m2a -64 0 0 1 1 0 132 0 +( 752 -96 240 ) ( 400 -96 240 ) ( 400 0 240 ) props/w_sr_m2a -64 0 0 1 1 0 132 0 +( 752 0 256 ) ( 752 0 272 ) ( 400 0 272 ) props/w_sr_m2a -64 48 0 1 1 0 132 0 +( 752 -96 256 ) ( 752 -96 272 ) ( 752 0 272 ) props/w_sr_m2a 0 48 0 1 1 0 132 0 +( 400 -64 260 ) ( 400 -64 276 ) ( 752 -64 276 ) props/w_sr_m2a -64 48 0 1 1 0 132 0 +( 400 0 256 ) ( 400 0 272 ) ( 400 -96 272 ) props/w_sr_m2a 0 48 0 1 1 0 132 0 +} +// brush 121 +{ +( 400 0 304 ) ( 400 -64 280 ) ( 752 -64 280 ) props/w_sr_m2a -64 0 0 1 1 0 133 15000 +( 752 0 368 ) ( 752 -64 368 ) ( 400 -64 368 ) props/w_sr_m2a -64 0 0 1 1 0 0 0 +( 400 0 368 ) ( 400 0 336 ) ( 752 0 336 ) props/w_sr_m2a -64 16 0 1 1 0 0 0 +( 752 0 368 ) ( 752 0 336 ) ( 752 -64 288 ) props/w_sr_m2a 0 16 0 1 1 0 0 0 +( 752 -64 368 ) ( 752 -64 280 ) ( 400 -64 280 ) props/w_sr_m2a -64 16 0 1 1 0 0 0 +( 400 -64 368 ) ( 400 -64 288 ) ( 400 0 336 ) props/w_sr_m2a 0 16 0 1 1 0 0 0 +} +// brush 122 +{ +( 384 0 224 ) ( 384 -112 224 ) ( 400 -112 224 ) props/w_sr_m2a -64 0 0 1 1 0 132 0 +( 400 -124 368 ) ( 384 -124 368 ) ( 384 -12 368 ) props/w_sr_m2a -64 0 0 1 1 0 132 0 +( 400 0 512 ) ( 400 0 528 ) ( 384 0 528 ) props/w_sr_m2a -64 48 0 1 1 0 132 0 +( 400 -112 320 ) ( 400 -112 336 ) ( 400 0 336 ) props/w_sr_m2a 0 48 0 1 1 0 132 0 +( 386 -64 304 ) ( 386 -64 320 ) ( 402 -64 320 ) props/w_sr_m2a -64 48 0 1 1 0 132 0 +( 384 0 320 ) ( 384 0 336 ) ( 384 -112 336 ) props/w_sr_m2a 0 48 0 1 1 0 132 0 +} +// brush 123 +{ +( 752 0 224 ) ( 752 -112 224 ) ( 768 -112 224 ) props/w_sr_m2a -64 0 0 1 1 0 132 0 +( 768 -112 368 ) ( 752 -112 368 ) ( 752 0 368 ) props/w_sr_m2a -64 0 0 1 1 0 132 0 +( 768 0 512 ) ( 768 0 528 ) ( 752 0 528 ) props/w_sr_m2a -64 48 0 1 1 0 132 0 +( 768 -112 320 ) ( 768 -112 336 ) ( 768 0 336 ) props/w_sr_m2a 0 48 0 1 1 0 132 0 +( 752 -64 328 ) ( 752 -64 344 ) ( 768 -64 344 ) props/w_sr_m2a -64 48 0 1 1 0 132 0 +( 752 0 320 ) ( 752 0 336 ) ( 752 -112 336 ) props/w_sr_m2a 0 48 0 1 1 0 132 0 +} +// brush 124 +{ +( 720 208 112 ) ( 720 176 112 ) ( 816 176 112 ) wood/wd_sr_vy2 -64 0 0 1 1 0 0 0 +( 816 176 228 ) ( 720 176 228 ) ( 720 208 228 ) wood/wd_sr_vy2 -64 0 0 1 1 0 0 0 +( 816 400 144 ) ( 816 400 152 ) ( 720 400 152 ) wood/wd_sr_vy2 -64 48 0 1 1 0 0 0 +( 752 176 144 ) ( 752 176 152 ) ( 752 208 152 ) wood/wd_sr_vy2 0 48 0 1 1 0 0 0 +( 880 368 144 ) ( 880 368 152 ) ( 976 368 152 ) wood/wd_sr_vy2 96 -47 180 1 1 0 0 0 +( 720 208 144 ) ( 720 208 152 ) ( 720 176 152 ) wood/wd_sr_vy2 0 48 0 1 1 0 134217728 0 +} +// brush 125 +{ +( 768 600 28 ) ( 768 600 124 ) ( 768 664 124 ) wood/wd_sr_va2 0 -48 0 1 1.200000 0 0 0 +( 752 846 -20 ) ( 752 846 76 ) ( 752 782 76 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 784 768 -20 ) ( 784 768 76 ) ( 720 768 76 ) bricks/b_hl_v2 -64 48 0 1 1 0 0 0 +( 644 944 160 ) ( 656 1056 160 ) ( 632 1056 160 ) wood/wd_sr_vy2 112 -14 180 1 -1 0 0 0 +( 768 556 288 ) ( 752 552 288 ) ( 752 560 288 ) wood/wd_sr_vy2 112 -14 180 1 -1 0 0 0 +( 768 600 236 ) ( 752 600 232 ) ( 752 600 240 ) wood/wd_sr_vy2 112 33 180 1 -1 0 0 0 +} +// brush 126 +{ +( 768 480 28 ) ( 768 480 124 ) ( 768 544 124 ) wood/wd_sr_vy2 1 127 180 1 -1 0 0 0 +( 752 846 -4 ) ( 752 846 92 ) ( 752 782 92 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 898 16 116 ) ( 902 16 104 ) ( 894 16 104 ) wood/wd_sr_vy2 113 0 180 1 -1 0 0 0 +( 644 944 160 ) ( 656 1056 160 ) ( 632 1056 160 ) wood/wd_sr_vy2 112 -14 180 1 -1 0 0 0 +( 768 556 288 ) ( 752 552 288 ) ( 752 560 288 ) wood/wd_sr_vy2 112 -14 180 1 -1 0 0 0 +( 768 368 232 ) ( 752 368 240 ) ( 752 368 224 ) wood/wd_sr_vy2 112 33 180 1 -1 0 0 0 +} +// brush 127 +{ +( 768 520 -52 ) ( 768 520 44 ) ( 768 584 44 ) props2/bottle_c03 0 14 0 1 1 0 0 0 +( 752 846 -84 ) ( 752 846 12 ) ( 752 782 12 ) props2/bottle_c03 0 0 0 1 1 0 0 0 +( 644 936 160 ) ( 656 1048 160 ) ( 632 1048 160 ) props2/bottle_c03 0 30 0 1 1 0 0 0 +( 780 556 192 ) ( 764 552 192 ) ( 764 560 192 ) props2/bottle_c03 0 30 0 1 1 0 0 0 +( 768 600 188 ) ( 752 600 192 ) ( 752 600 184 ) props2/bottle_c03 0 14 0 1 1 0 0 0 +( 756 400 181 ) ( 740 400 165 ) ( 740 400 197 ) props2/bottle_c03 0 14 0 1 1 0 0 0 +} +// brush 128 +{ +( 768 528 -16 ) ( 768 528 80 ) ( 768 592 80 ) props2/bottle_c03 -56 16 0 1 1 0 0 0 +( 752 854 -48 ) ( 752 854 48 ) ( 752 790 48 ) props2/bottle_c03 0 4 0 1 1 0 0 0 +( 644 944 192 ) ( 656 1056 192 ) ( 632 1056 192 ) props2/bottle_c03 0 24 0 1 1 0 0 0 +( 768 564 228 ) ( 752 560 228 ) ( 752 568 228 ) props2/bottle_c03 0 24 0 1 1 0 0 0 +( 764 400 224 ) ( 748 400 216 ) ( 748 400 232 ) props2/bottle_c03 0 16 0 1 1 0 0 0 +( 756 600 210 ) ( 740 600 226 ) ( 740 600 194 ) props2/bottle_c03 0 16 0 1 1 0 0 0 +} +// brush 129 +{ +( 495 533 242 ) ( 495 485 239 ) ( 575 485 239 ) sprites/alfa_v1 -15 12 0 1 0.997564 0 4096 0 +( 575 483 271 ) ( 495 483 271 ) ( 495 531 274 ) sprites/alfa_v1 -15 15 0 1 0.997563 0 4096 0 +( 575 533 242 ) ( 575 532 258 ) ( 495 532 258 ) sprites/alfa_v1 -15 2 0 1 0.997574 0 4096 0 +( 559 485 239 ) ( 559 484 255 ) ( 559 532 258 ) sprites/alfa_v1 8 5 -4 1.000002 1.000010 0 4096 0 +( 495 469 238 ) ( 495 468 254 ) ( 575 468 254 ) sprites/alfa_v1 -15 15 0 1 0.997559 0 4096 0 +( 558 534 232 ) ( 558 533 248 ) ( 558 485 245 ) props/si_b_m1a 74 69 5 -0.500000 0.500000 0 4096 0 +} +// brush 130 +{ +( 493 533 242 ) ( 493 485 239 ) ( 573 485 239 ) sprites/alfa_v1 -13 12 0 1 0.997564 0 4096 0 +( 573 483 271 ) ( 493 483 271 ) ( 493 531 274 ) sprites/alfa_v1 -13 15 0 1 0.997563 0 4096 0 +( 573 533 242 ) ( 573 532 258 ) ( 493 532 258 ) sprites/alfa_v1 -13 2 0 1 0.997574 0 4096 0 +( 557 485 239 ) ( 557 484 255 ) ( 557 532 258 ) sprites/alfa_v1 8 5 -4 1.000002 1.000010 0 4096 0 +( 493 469 238 ) ( 493 468 254 ) ( 573 468 254 ) sprites/alfa_v1 -13 15 0 1 0.997559 0 4096 0 +( 556 534 232 ) ( 556 533 248 ) ( 556 485 245 ) props/si_b_m1 -49 6 5 -0.500000 0.500000 0 4096 0 +} +// brush 131 +{ +( 768 8 272 ) ( 768 0 280 ) ( 736 0 280 ) wood/wd_sr_vy2 33 -5 180 1 -1 0 0 0 +( 768 160 28 ) ( 768 160 124 ) ( 768 224 124 ) wood/wd_sr_vy2 17 15 180 1 -1 0 0 0 +( 736 0 240 ) ( 736 0 280 ) ( 768 0 280 ) props/w_sr_m2a -64 48 0 1 1 0 132 0 +( 956 927 240 ) ( 968 1039 240 ) ( 944 1039 240 ) wood/wd_sr_vy2 32 0 180 1 -1 0 0 0 +( 736 4 304 ) ( 736 -8 128 ) ( 736 16 128 ) bricks/b_hl_v2 0 64 0 1 1 0 0 0 +( 768 8 268 ) ( 736 8 272 ) ( 736 8 264 ) bricks/b_hl_v2 -64 64 0 1 1 0 0 0 +} +// brush 132 +{ +( 416 8 272 ) ( 416 0 280 ) ( 384 0 280 ) props/w_sr_m2a -64 0 0 1 1 0 0 0 +( 416 160 28 ) ( 416 160 124 ) ( 416 224 124 ) bricks/b_hl_v2 0 64 0 1 1 0 0 0 +( 384 0 240 ) ( 384 0 280 ) ( 416 0 280 ) props/w_sr_m2a -64 48 0 1 1 0 132 0 +( 636 926 240 ) ( 648 1038 240 ) ( 624 1038 240 ) wood/wd_sr_vy2 96 0 180 1 -1 0 0 0 +( 384 4 304 ) ( 384 -8 128 ) ( 384 16 128 ) wood/wd_sr_vy2 32 64 180 1 -1 0 0 0 +( 416 8 268 ) ( 384 8 272 ) ( 384 8 264 ) wood/wd_sr_vy2 96 64 180 1 -1 0 0 0 +} +// brush 133 +{ +( 672 8 272 ) ( 672 0 280 ) ( 608 0 280 ) props/w_sr_m2a -64 0 0 1 1 0 0 0 +( 672 160 28 ) ( 672 160 124 ) ( 672 224 124 ) bricks/b_hl_v2 0 64 0 1 1 0 0 0 +( 608 0 240 ) ( 608 0 280 ) ( 672 0 280 ) props/w_sr_m2a -64 48 0 1 1 0 132 0 +( 860 927 240 ) ( 872 1039 240 ) ( 848 1039 240 ) wood/wd_sr_vy2 64 0 180 1 -1 0 0 0 +( 608 4 304 ) ( 608 -8 128 ) ( 608 16 128 ) bricks/b_hl_v2 0 64 0 1 1 0 0 0 +( 672 8 268 ) ( 608 8 272 ) ( 608 8 264 ) bricks/b_hl_v2 -64 64 0 1 1 0 0 0 +} +// brush 134 +{ +( 544 8 272 ) ( 544 0 280 ) ( 480 0 280 ) props/w_sr_m2a -64 0 0 1 1 0 0 0 +( 544 160 28 ) ( 544 160 124 ) ( 544 224 124 ) bricks/b_hl_v2 0 64 0 1 1 0 0 0 +( 480 0 240 ) ( 480 0 280 ) ( 544 0 280 ) props/w_sr_m2a -64 48 0 1 1 0 132 0 +( 732 927 240 ) ( 744 1039 240 ) ( 720 1039 240 ) wood/wd_sr_vy2 64 0 180 1 -1 0 0 0 +( 480 4 304 ) ( 480 -8 128 ) ( 480 16 128 ) bricks/b_hl_v2 0 64 0 1 1 0 0 0 +( 544 8 268 ) ( 480 8 272 ) ( 480 8 264 ) bricks/b_hl_v2 -64 64 0 1 1 0 0 0 +} +// brush 135 +{ +( 692 408 228 ) ( 692 376 228 ) ( 788 376 228 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 788 200 288 ) ( 692 200 288 ) ( 692 232 288 ) wood/wd_cp_v3 -16 32 0 1 1 0 0 0 +( 800 624 276 ) ( 800 624 284 ) ( 704 624 284 ) wood/wd_sr_va3 0 32 0 1 1 0 0 3 +( 592 372 272 ) ( 592 372 280 ) ( 592 404 280 ) wood/wd_sr_va2d 0 99 0 1 1 0 0 0 +( 852 368 272 ) ( 852 368 280 ) ( 948 368 280 ) wood/wd_sr_va3 0 32 0 1 1 0 134217728 3 +( 560 408 272 ) ( 560 408 280 ) ( 560 376 280 ) wood/wd_sr_va3 0 32 0 1 1 0 0 3 +} +// brush 136 +{ +( 864 776 288 ) ( 864 840 288 ) ( 928 840 288 ) wood/wd_sr_vy2 97 -5 180 1 -1 0 0 0 +( 752 160 44 ) ( 752 160 140 ) ( 752 224 140 ) wood/wd_sr_vy2 17 31 180 1 -1 0 0 0 +( 808 16 12 ) ( 808 16 108 ) ( 744 16 108 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( -158 0 148 ) ( -154 0 136 ) ( -162 0 136 ) props/w_sr_m2a -64 48 0 1 1 0 0 0 +( 652 928 272 ) ( 664 1040 272 ) ( 640 1040 272 ) bricks/b_hl_v2 -64 16 0 1 1 0 0 0 +( 384 4 320 ) ( 384 -8 144 ) ( 384 16 144 ) wood/wd_sr_vy2 32 80 180 1 -1 0 0 0 +( 752 4 276 ) ( 384 8 272 ) ( 384 0 280 ) props/w_sr_m2a -64 0 0 1 1 0 0 0 +} +// brush 137 +{ +( 256 288 64 ) ( 256 224 64 ) ( 288 224 64 ) wood/wd_sr_va2 -64 32 0 1 1 0 0 0 +( 288 224 80 ) ( 256 224 80 ) ( 256 288 80 ) wood/wd_st_m7s 0 -64 90 1 1 0 134217728 0 +( 288 288 64 ) ( 288 288 96 ) ( 256 288 96 ) wood/wd_sr_va2 -64 64 0 1 1 0 0 0 +( 272 224 64 ) ( 272 224 96 ) ( 272 288 96 ) wood/wd_sr_va2 0 64 0 1 1 0 0 0 +( 256 216 64 ) ( 256 216 96 ) ( 288 216 96 ) wood/wd_sr_va2 -64 64 0 1 1 0 0 0 +( 256 288 64 ) ( 256 288 96 ) ( 256 224 96 ) wood/wd_sr_va2 0 71 0 1 1 0 0 0 +} +// brush 138 +{ +( 352 1276 256 ) ( 352 1228 256 ) ( 448 1228 256 ) wood/wd_st_m7s -64 0 0 1 1 0 0 0 +( 448 1228 272 ) ( 352 1228 272 ) ( 352 1276 272 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 448 1280 264 ) ( 448 1280 272 ) ( 352 1280 272 ) wood/wd_st_m7s -64 8 0 1 1 0 0 0 +( 388 944 264 ) ( 388 944 272 ) ( 484 944 272 ) wood/wd_st_m7s -64 8 0 1 1 0 0 0 +( 256 1280 264 ) ( 256 1280 272 ) ( 256 1232 272 ) wood/wd_st_m7s 0 8 0 1 1 0 0 0 +( 272 964 272 ) ( 272 984 256 ) ( 272 944 256 ) wood/wd_st_m7s 0 8 0 1 1 0 0 0 +} +// brush 139 +{ +( -16 1056 272 ) ( 48 1056 272 ) ( 48 1120 272 ) wood/wd_st_c04bb 0 0 0 0.500000 0.500000 0 0 0 +( 48 1128 272 ) ( 48 1128 368 ) ( 48 1064 368 ) wood/wd_st_c04bb 0 0 0 0.500000 0.500000 0 0 0 +( 218 1296 272 ) ( 218 1296 368 ) ( 154 1296 368 ) wood/wd_st_c04bb 0 0 0 0.500000 0.500000 0 0 0 +( 64 1056 272 ) ( 64 1056 368 ) ( 64 1120 368 ) wood/wd_st_c04bb 0 -20 0 0.750000 0.750000 0 0 0 +( 13 944 272 ) ( 13 944 368 ) ( 77 944 368 ) wood/wd_st_c04bb 0 0 0 0.500000 0.500000 0 0 0 +( 64 984 320 ) ( 48 976 320 ) ( 48 992 320 ) wood/wd_st_c04bb 0 0 0 0.500000 0.500000 0 0 0 +} +// brush 140 +{ +( 48 1128 448 ) ( 48 1064 448 ) ( -16 1064 448 ) wood/wd_sr_va2 -96 55 0 1 1 0 134217728 0 +( 48 1128 272 ) ( 48 1128 368 ) ( 48 1064 368 ) wood/wd_sr_va2 -32 63 0 1 1 0 134217728 0 +( 218 1296 272 ) ( 218 1296 368 ) ( 154 1296 368 ) wood/wd_sr_va2 -96 63 0 1 1 0 134217728 0 +( 64 1056 272 ) ( 64 1056 368 ) ( 64 1120 368 ) wood/wd_st_v4 0 64 0 1 1 0 134217728 0 +( 13 944 272 ) ( 13 944 368 ) ( 77 944 368 ) wood/wd_sr_va2 -96 63 0 1 1 0 134217728 0 +( 64 984 320 ) ( 48 992 320 ) ( 48 976 320 ) wood/wd_sr_va2 -96 55 0 1 1 0 134217728 0 +} +// brush 141 +{ +( 192 1296 272 ) ( 256 1296 272 ) ( 256 1360 272 ) wood/wd_st_c04d -64 0 0 0.250000 0.250000 0 134217728 0 +( 256 1360 272 ) ( 256 1360 368 ) ( 256 1296 368 ) wood/wd_st_c04bb 0 -20 0 0.750000 0.750000 0 0 0 +( 406 1280 272 ) ( 406 1280 368 ) ( 342 1280 368 ) wood/wd_st_c05 0 19 0 0.500000 0.350000 0 134217728 0 +( 272 1296 272 ) ( 272 1296 368 ) ( 272 1360 368 ) wood/wd_st_c04b 0 19 0 0.250000 0.350000 0 134217728 0 +( 88 1188 272 ) ( 88 1188 368 ) ( 152 1188 368 ) wood/wd_st_c04d 0 32 0 0.250000 0.250000 0 134217728 0 +( 272 1272 320 ) ( 256 1264 320 ) ( 256 1280 320 ) wood/wd_st_c04d -64 0 0 0.250000 0.250000 0 134217728 0 +} +// brush 142 +{ +( 256 1336 448 ) ( 256 1272 448 ) ( 192 1272 448 ) wood/wd_sr_va2 -48 -37 0 1 1 0 134217728 0 +( 256 1360 272 ) ( 256 1360 368 ) ( 256 1296 368 ) wood/wd_st_v4 0 64 0 1 1 0 134217728 0 +( 406 1280 272 ) ( 406 1280 368 ) ( 342 1280 368 ) wood/wd_sr_va2 -96 63 0 1 1 0 134217728 0 +( 272 1296 272 ) ( 272 1296 368 ) ( 272 1360 368 ) wood/wd_sr_va2 0 65 0 1 1 0 134217728 0 +( 90 1188 272 ) ( 90 1188 368 ) ( 154 1188 368 ) wood/wd_sr_va2 -96 67 0 1 1 0 134217728 0 +( 272 1272 320 ) ( 256 1280 320 ) ( 256 1264 320 ) wood/wd_sr_va2 -48 -37 0 1 1 0 134217728 0 +} +// brush 143 +{ +( 64 1280 448 ) ( 64 1296 448 ) ( 272 1296 448 ) wood/wd_sr_va2 -48 27 0 1 1 0 134217728 0 +( 64 1280 320 ) ( 64 1296 320 ) ( 64 1296 448 ) wood/wd_sr_va2 32 67 0 1 1 0 134217728 0 +( 402 1296 272 ) ( 402 1296 368 ) ( 338 1296 368 ) wood/wd_sr_va2 -96 63 0 1 1 0 134217728 0 +( 272 1280 448 ) ( 272 1296 448 ) ( 272 1296 320 ) wood/wd_sr_va2 32 63 0 1 1 0 134217728 0 +( 154 1280 272 ) ( 154 1280 368 ) ( 218 1280 368 ) wood/wd_st_v4 0 64 0 1 1 0 134217728 0 +( 272 1280 320 ) ( 272 1296 320 ) ( 64 1296 320 ) wood/wd_sr_va2 -48 27 0 1 1 0 134217728 0 +} +// brush 144 +{ +( 192 1360 272 ) ( 256 1360 272 ) ( 256 1424 272 ) wood/wd_st_c04d -64 0 0 0.250000 0.250000 0 134217728 0 +( 64 1424 272 ) ( 64 1424 368 ) ( 64 1360 368 ) wood/wd_st_c04d 0 32 0 0.250000 0.250000 0 134217728 0 +( 402 1296 272 ) ( 402 1296 368 ) ( 338 1296 368 ) wood/wd_st_c05 0 19 0 0.500000 0.350000 0 134217728 0 +( 272 1360 272 ) ( 272 1360 368 ) ( 272 1424 368 ) wood/wd_sr_va2 16 63 0 1 1 0 134217728 0 +( 154 1280 272 ) ( 154 1280 368 ) ( 218 1280 368 ) wood/wd_st_c04bb 0 -20 0 0.750000 0.750000 0 0 0 +( 192 1368 320 ) ( 176 1360 320 ) ( 176 1376 320 ) wood/wd_st_c04d -64 0 0 0.250000 0.250000 0 134217728 0 +} +// brush 145 +{ +( 320 1136 448 ) ( 320 1072 448 ) ( 384 1072 448 ) WOOD/WD_ST_M1B 21 0 180 3 3 0 0 0 +( 392 1072 464 ) ( 328 1072 464 ) ( 328 1136 464 ) WOOD/WD_ST_M1B 0 -21 90 3 3 0 0 0 +( 48 1296 464 ) ( 48 1296 448 ) ( 272 1296 448 ) WOOD/WD_ST_M1B -16 -21 90 3 3 0 0 0 +( 276 944 464 ) ( 276 944 448 ) ( 52 944 448 ) WOOD/WD_ST_M1B -16 -21 90 3 3 0 0 0 +( 48 1024 464 ) ( 48 1024 448 ) ( 48 1312 448 ) WOOD/WD_ST_M1B -16 0 90 3 3 0 0 0 +( 272 1296 464 ) ( 272 1296 448 ) ( 272 1008 448 ) WOOD/WD_ST_M1B -16 0 90 3 3 0 0 0 +} +// brush 146 +{ +( 256 1388 448 ) ( 256 1324 448 ) ( 192 1324 448 ) wood/wd_sr_va2 -48 -53 0 1 1 0 134217728 0 +( 256 1376 224 ) ( 256 1376 320 ) ( 256 1312 320 ) wood/wd_st_v4 0 64 0 1 1 0 134217728 0 +( 410 1188 220 ) ( 410 1188 316 ) ( 346 1188 316 ) wood/wd_sr_va2 -80 15 0 1 1 0 134217728 0 +( 272 1328 224 ) ( 272 1328 320 ) ( 272 1392 320 ) wood/wd_sr_va2 0 65 0 1 1 0 134217728 0 +( 90 1116 224 ) ( 90 1116 320 ) ( 154 1116 320 ) wood/wd_sr_va2 -48 19 0 1 1 0 134217728 0 +( 272 1320 388 ) ( 256 1328 388 ) ( 256 1312 388 ) wood/wd_sr_va2 -48 -53 0 1 1 0 134217728 0 +} +// brush 147 +{ +( 208 928 272 ) ( 272 928 272 ) ( 272 992 272 ) wood/wd_st_c05 0 32 0 0.500000 0.350000 0 134217728 0 +( 224 980 272 ) ( 224 980 368 ) ( 224 916 368 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +( 442 960 272 ) ( 442 960 368 ) ( 378 960 368 ) wood/wd_st_c04bb 0 -20 0 0.750000 0.750000 0 0 0 +( 218 944 272 ) ( 218 944 368 ) ( 282 944 368 ) wood/wd_sr_vy2 32 15 180 1 -1 0 0 0 +( 528 952 320 ) ( 272 944 320 ) ( 272 960 320 ) wood/wd_st_c05 0 32 0 0.500000 0.350000 0 134217728 0 +( 272 964 320 ) ( 272 984 272 ) ( 272 944 272 ) wood/wd_st_c05 0 19 0 0.500000 0.350000 0 134217728 0 +} +// brush 148 +{ +( 276 1000 448 ) ( 276 936 448 ) ( 212 936 448 ) wood/wd_sr_va2 -64 59 0 1 1 0 134217728 0 +( 224 980 272 ) ( 224 980 368 ) ( 224 916 368 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +( 442 960 272 ) ( 442 960 368 ) ( 378 960 368 ) wood/wd_st_v4 0 64 0 1 1 0 134217728 0 +( 218 944 272 ) ( 218 944 368 ) ( 282 944 368 ) wood/wd_sr_vy2 32 15 180 1 -1 0 0 0 +( 528 952 320 ) ( 272 960 320 ) ( 272 944 320 ) wood/wd_sr_va2 -64 59 0 1 1 0 134217728 0 +( 272 964 448 ) ( 272 984 320 ) ( 272 944 320 ) wood/wd_sr_va2 0 67 0 1 1 0 134217728 0 +} +// brush 149 +{ +( 224 1008 256 ) ( 224 880 256 ) ( 480 880 256 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 480 880 272 ) ( 224 880 272 ) ( 224 1008 272 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 456 1296 240 ) ( 456 1296 368 ) ( 200 1296 368 ) wood/wd_st_m7s -64 8 0 1 1 0 134217728 0 +( 256 864 240 ) ( 256 864 368 ) ( 256 992 368 ) wood/wd_st_m7s 0 8 0 1 1 0 134217728 0 +( 243 944 240 ) ( 243 944 368 ) ( 499 944 368 ) bricks/c_sr_m1a 0 19 0 1 1 0 0 0 +( 48 983 240 ) ( 48 983 368 ) ( 48 855 368 ) wood/wd_st_m7s 0 8 0 1 1 0 134217728 0 +} +// brush 150 +{ +( 192 1168 272 ) ( 256 1168 272 ) ( 256 1232 272 ) wood/wd_st_c04d -64 0 0 0.250000 0.250000 0 134217728 0 +( 256 1232 272 ) ( 256 1232 368 ) ( 256 1168 368 ) wood/wd_st_c04bb 0 -20 0 0.750000 0.750000 0 0 0 +( 406 1116 272 ) ( 406 1116 368 ) ( 342 1116 368 ) wood/wd_st_c05 0 19 0 0.500000 0.350000 0 134217728 0 +( 272 1088 272 ) ( 272 1088 368 ) ( 272 1152 368 ) wood/wd_st_c04b 0 19 0 0.250000 0.350000 0 134217728 0 +( 272 1208 320 ) ( 256 1200 320 ) ( 256 1216 320 ) wood/wd_st_c04d -64 0 0 0.250000 0.250000 0 134217728 0 +( 264 960 320 ) ( 272 960 272 ) ( 256 960 272 ) wood/wd_st_c04d -64 32 0 0.250000 0.250000 0 134217728 0 +} +// brush 151 +{ +( 256 1272 448 ) ( 256 1208 448 ) ( 192 1208 448 ) wood/wd_sr_va2 -48 -37 0 1 1 0 134217728 0 +( 256 1232 272 ) ( 256 1232 368 ) ( 256 1168 368 ) wood/wd_st_v4 0 64 0 1 1 0 134217728 0 +( 406 1116 272 ) ( 406 1116 368 ) ( 342 1116 368 ) wood/wd_sr_va2 -96 63 0 1 1 0 134217728 0 +( 272 1088 272 ) ( 272 1088 368 ) ( 272 1152 368 ) wood/wd_sr_va2 0 65 0 1 1 0 134217728 0 +( 272 1208 320 ) ( 256 1216 320 ) ( 256 1200 320 ) wood/wd_sr_va2 -48 -37 0 1 1 0 134217728 0 +( 264 960 448 ) ( 272 960 320 ) ( 256 960 320 ) wood/wd_sr_va2 -48 99 0 1 1 0 134217728 0 +} +// brush 152 +{ +( 112 1000 448 ) ( 112 936 448 ) ( 48 936 448 ) wood/wd_sr_va2 -28 59 0 1 1 0 134217728 0 +( 64 984 272 ) ( 64 984 368 ) ( 64 920 368 ) wood/wd_sr_va2 0 67 0 1 1 0 134217728 0 +( 278 960 272 ) ( 278 960 368 ) ( 214 960 368 ) wood/wd_st_v4 0 64 0 1 1 0 134217728 0 +( 86 944 272 ) ( 86 944 368 ) ( 150 944 368 ) wood/wd_sr_vy2 32 15 180 1 -1 0 0 0 +( 364 952 320 ) ( 108 960 320 ) ( 108 944 320 ) wood/wd_sr_va2 -28 59 0 1 1 0 134217728 0 +( 96 936 448 ) ( 96 944 320 ) ( 96 928 320 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +} +// brush 153 +{ +( 44 928 272 ) ( 108 928 272 ) ( 108 992 272 ) wood/wd_st_c05 -56 32 0 0.500000 0.350000 0 134217728 0 +( 64 984 272 ) ( 64 984 368 ) ( 64 920 368 ) wood/wd_st_c05 0 19 0 0.500000 0.350000 0 134217728 0 +( 278 960 272 ) ( 278 960 368 ) ( 214 960 368 ) wood/wd_st_c04bb 0 -20 0 0.750000 0.750000 0 0 0 +( 86 944 272 ) ( 86 944 368 ) ( 150 944 368 ) wood/wd_sr_vy2 32 15 180 1 -1 0 0 0 +( 364 952 320 ) ( 108 944 320 ) ( 108 960 320 ) wood/wd_st_c05 -56 32 0 0.500000 0.350000 0 134217728 0 +( 96 936 320 ) ( 96 944 272 ) ( 96 928 272 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +} +// brush 154 +{ +( 272 1222 388 ) ( 272 1110 388 ) ( 264 1110 388 ) wood/wd_hl_v4f 0 0 0 1 1 0 134217728 0 +( 264 1124 380 ) ( 264 1116 388 ) ( 272 1116 388 ) wood/wd_hl_v4f 0 0 0 1 1 0 134217728 0 +( 272 1180 380 ) ( 272 1188 388 ) ( 264 1188 388 ) wood/wd_hl_v4f 0 0 0 1 1 0 134217728 0 +( 272 1356 348 ) ( 272 1228 668 ) ( 272 1356 668 ) wood/wd_hl_v4f 0 0 0 1 1 0 134217728 0 +( 256 856 324 ) ( 256 984 644 ) ( 256 856 644 ) wood/wd_hl_v4f 0 0 90 1 1 0 134217728 0 +( 272 1166 384 ) ( 264 1214 384 ) ( 264 1118 384 ) wood/wd_hl_v4f 0 0 0 1 1 0 134217728 0 +} +// brush 155 +{ +( 256 1188 406 ) ( 256 1188 294 ) ( 264 1188 294 ) wood/wd_hl_v4f 0 0 0 1 1 0 134217728 0 +( 257 1172 272 ) ( 257 1168 272 ) ( 273 1168 272 ) wood/wd_hl_v4f 0 -32 0 1 1 0 134217728 0 +( 256 1164 364 ) ( 256 1172 372 ) ( 264 1172 372 ) wood/wd_hl_v4f 0 -32 0 1 1 0 134217728 0 +( 256 1132 540 ) ( 256 1452 412 ) ( 256 1452 540 ) wood/wd_hl_v4f 32 0 0 1 1 0 134217728 0 +( 272 1108 40 ) ( 272 1428 168 ) ( 272 1428 40 ) wood/wd_hl_v4f 32 0 0 1 1 0 134217728 0 +( 272 1184 384 ) ( 272 1184 270 ) ( 256 1184 270 ) wood/wd_hl_v4f 0 0 0 1 1 0 134217728 0 +} +// brush 156 +{ +( 264 1116 294 ) ( 256 1116 294 ) ( 256 1116 406 ) wood/wd_hl_v4f 0 0 0 1 1 0 134217728 0 +( 273 1120 272 ) ( 257 1120 272 ) ( 257 1116 272 ) wood/wd_hl_v4f 0 32 0 1 1 0 134217728 0 +( 264 1116 388 ) ( 256 1116 388 ) ( 256 1124 380 ) wood/wd_hl_v4f 0 32 0 1 1 0 134217728 0 +( 256 836 540 ) ( 256 836 412 ) ( 256 1156 540 ) wood/wd_hl_v4f -32 0 0 1 1 0 134217728 0 +( 272 860 40 ) ( 272 860 168 ) ( 272 1180 40 ) wood/wd_hl_v4f -32 0 0 1 1 0 134217728 0 +( 256 1120 270 ) ( 272 1120 270 ) ( 272 1120 384 ) wood/wd_hl_v4f 0 0 0 1 1 0 134217728 0 +} +// brush 157 +{ +( 272 1232 256 ) ( 272 1072 256 ) ( 280 1072 256 ) wood/wd_sr_vy2 33 -32 180 1 -1 0 0 0 +( 280 1072 400 ) ( 272 1072 400 ) ( 272 1232 400 ) wood/wd_sr_vy2 33 -32 180 1 -1 0 0 0 +( 280 1232 376 ) ( 280 1232 384 ) ( 272 1232 384 ) wood/wd_sr_vy2 33 15 180 1 -1 0 0 0 +( 288 1072 376 ) ( 288 1072 384 ) ( 288 1232 384 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +( 272 1072 376 ) ( 272 1072 384 ) ( 280 1072 384 ) wood/wd_sr_vy2 33 15 180 1 -1 0 0 0 +( 272 1232 376 ) ( 272 1232 384 ) ( 272 1072 384 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +} +// brush 158 +{ +( 672 400 152 ) ( 672 360 152 ) ( 675 360 152 ) wood/wd_cp_v3 -32 0 0 1 1 0 0 0 +( 675 360 156 ) ( 672 360 156 ) ( 672 400 156 ) wood/wd_cp_v3 -32 0 0 1 1 0 0 0 +( 675 400 152 ) ( 675 400 156 ) ( 672 400 156 ) wood/wd_cp_v3 -32 44 0 1 1 0 0 0 +( 675 360 152 ) ( 675 360 156 ) ( 675 400 156 ) wood/wd_cp_v3 32 44 0 1 1 0 0 0 +( 672 360 152 ) ( 672 360 156 ) ( 675 360 156 ) wood/wd_cp_v3 -32 44 0 1 1 0 0 0 +( 672 400 152 ) ( 672 400 156 ) ( 672 360 156 ) wood/wd_cp_v3 32 44 0 1 1 0 0 0 +} +// brush 159 +{ +( 716 400 152 ) ( 716 360 152 ) ( 719 360 152 ) wood/wd_cp_v3 -76 0 0 1 1 0 0 0 +( 719 360 156 ) ( 716 360 156 ) ( 716 400 156 ) wood/wd_cp_v3 -76 0 0 1 1 0 0 0 +( 719 400 152 ) ( 719 400 156 ) ( 716 400 156 ) wood/wd_cp_v3 -76 44 0 1 1 0 0 0 +( 719 360 152 ) ( 719 360 156 ) ( 719 400 156 ) wood/wd_cp_v3 32 44 0 1 1 0 0 0 +( 716 360 152 ) ( 716 360 156 ) ( 719 360 156 ) wood/wd_cp_v3 -76 44 0 1 1 0 0 0 +( 716 400 152 ) ( 716 400 156 ) ( 716 360 156 ) wood/wd_cp_v3 32 44 0 1 1 0 0 0 +} +// brush 160 +{ +( 720 408 276 ) ( 720 376 276 ) ( 816 376 276 ) WOOD/WD_ST_M1B -32 0 0 2 2 0 134217728 0 +( 816 200 288 ) ( 720 200 288 ) ( 720 232 288 ) WOOD/WD_ST_M1B -1 -66 90 1 1 0 0 0 +( 816 592 276 ) ( 816 592 284 ) ( 720 592 284 ) WOOD/WD_ST_M1B -49 -66 90 1 1 0 0 0 +( 880 400 272 ) ( 880 400 280 ) ( 976 400 280 ) WOOD/WD_ST_M1B -49 -66 90 1 1 0 0 0 +( 592 408 272 ) ( 592 408 280 ) ( 592 376 280 ) WOOD/WD_ST_M1B -49 -2 90 1 1 0 0 0 +( 736 368 232 ) ( 736 624 236 ) ( 736 624 228 ) WOOD/WD_ST_M1B -49 -2 90 1 1 0 0 0 +} +// brush 161 +{ +( 720 408 228 ) ( 720 376 228 ) ( 816 376 228 ) wood/wd_cp_v3 -44 32 0 1 1 0 0 0 +( 816 200 288 ) ( 720 200 288 ) ( 720 232 288 ) wood/wd_cp_v3 -44 32 0 1 1 0 0 0 +( 816 624 276 ) ( 816 624 284 ) ( 720 624 284 ) wood/wd_sr_va3 0 32 0 1 1 0 0 0 +( 720 368 232 ) ( 720 624 228 ) ( 720 624 236 ) wood/wd_sr_vy2 -24 48 0 1 1 0 0 0 +( 752 368 230 ) ( 752 624 232 ) ( 752 624 228 ) wood/wd_sr_vy2 -24 48 0 1 1 0 0 0 +( 744 596 230 ) ( 736 596 228 ) ( 736 596 232 ) wood/wd_sr_vy2 -88 48 0 1 1 0 0 0 +} +// brush 162 +{ +( 720 412 228 ) ( 720 380 228 ) ( 816 380 228 ) wood/wd_cp_v3 -44 32 0 1 1 0 0 0 +( 816 200 288 ) ( 720 200 288 ) ( 720 232 288 ) wood/wd_cp_v3 -44 32 0 1 1 0 0 0 +( 880 368 272 ) ( 880 368 280 ) ( 976 368 280 ) wood/wd_sr_va3 0 32 0 1 1 0 134217728 0 +( 720 368 232 ) ( 720 624 228 ) ( 720 624 236 ) wood/wd_sr_va2d 0 99 0 1 1 0 0 0 +( 752 368 230 ) ( 752 624 232 ) ( 752 624 228 ) wood/wd_sr_vy2 -24 48 0 1 1 0 0 0 +( 744 408 232 ) ( 736 408 236 ) ( 736 408 228 ) wood/wd_sr_vy2 -88 48 0 1 1 0 0 0 +} +// brush 163 +{ +( 256 456 44 ) ( 256 456 140 ) ( 256 520 140 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 48 382 -36 ) ( 48 382 60 ) ( 48 318 60 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 232 304 -4 ) ( 232 304 92 ) ( 168 304 92 ) bricks/b_hl_v2 -64 48 0 1 1 0 0 0 +( 18 288 116 ) ( 22 288 104 ) ( 14 288 104 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 692 512 80 ) ( 704 624 80 ) ( 680 624 80 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 256 296 160 ) ( 48 288 160 ) ( 48 304 160 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +} +// brush 164 +{ +( 368 784 80 ) ( 368 208 80 ) ( 688 208 80 ) wood/wd_sr_va2c -64 64 0 1 1 0 0 0 +( 704 704 52 ) ( 704 704 116 ) ( 384 704 116 ) wood/wd_sr_va2c -64 116 0 1 1 0 0 0 +( 752 208 52 ) ( 752 208 116 ) ( 752 784 116 ) wood/wd_sr_va2c 0 116 0 1 1 0 0 0 +( 384 288 52 ) ( 384 288 116 ) ( 704 288 116 ) wood/wd_sr_va2c -64 116 0 1 1 0 0 0 +( 448 764 52 ) ( 448 764 116 ) ( 448 188 116 ) wood/wd_sr_va2c 0 116 0 1 1 0 0 0 +( 472 312 116 ) ( 496 288 84 ) ( 448 336 84 ) wood/wd_sr_va2c 0 116 0 1 1 0 0 0 +( 472 680 116 ) ( 448 656 84 ) ( 496 704 84 ) wood/wd_sr_va2c 0 116 0 1 1 0 0 0 +( 584 592 108 ) ( 616 400 108 ) ( 584 400 108 ) wood/wd_sr_va2c -64 64 0 1 1 0 0 0 +} +// brush 165 +{ +( 720 412 228 ) ( 720 380 228 ) ( 816 380 228 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 816 200 288 ) ( 720 200 288 ) ( 720 232 288 ) wood/wd_cp_v3 -44 32 0 1 1 0 0 0 +( 744 596 230 ) ( 736 596 232 ) ( 736 596 228 ) wood/wd_cp_v3 -44 80 0 1 1 0 0 0 +( 744 408 232 ) ( 736 408 228 ) ( 736 408 236 ) wood/wd_cp_v3 -44 80 0 1 1 0 0 0 +( 720 408 236 ) ( 720 596 232 ) ( 720 596 240 ) wood/wd_sr_va2d 0 99 0 1 1 0 0 0 +( 752 408 232 ) ( 752 596 240 ) ( 752 596 224 ) wood/wd_cp_v3 20 80 0 1 1 0 0 0 +} +// brush 166 +{ +( 108 32 192 ) ( 108 24 192 ) ( 116 24 192 ) common/li_sr_m19a -8 0 0 0.500000 0.500000 0 1 100 +( 116 24 288 ) ( 108 24 288 ) ( 108 32 288 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 116 32 192 ) ( 116 32 256 ) ( 108 32 256 ) bricks/b_hl_v2 -64 16 0 1 1 0 0 0 +( 116 24 224 ) ( 116 24 288 ) ( 116 32 288 ) bricks/b_hl_v2 0 16 0 1 1 0 0 0 +( 108 24 192 ) ( 108 24 256 ) ( 116 24 256 ) bricks/b_hl_v2 -64 16 0 1 1 0 0 0 +( 108 32 224 ) ( 108 32 288 ) ( 108 24 288 ) bricks/b_hl_v2 0 16 0 1 1 0 0 0 +} +// brush 167 +{ +( 188 32 192 ) ( 188 24 192 ) ( 196 24 192 ) common/li_sr_m19a -8 0 0 0.500000 0.500000 0 1 100 +( 196 24 288 ) ( 188 24 288 ) ( 188 32 288 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 196 32 192 ) ( 196 32 256 ) ( 188 32 256 ) bricks/b_hl_v2 -64 16 0 1 1 0 0 0 +( 196 24 224 ) ( 196 24 288 ) ( 196 32 288 ) bricks/b_hl_v2 0 16 0 1 1 0 0 0 +( 188 24 192 ) ( 188 24 256 ) ( 196 24 256 ) bricks/b_hl_v2 -64 16 0 1 1 0 0 0 +( 188 32 224 ) ( 188 32 288 ) ( 188 24 288 ) bricks/b_hl_v2 0 16 0 1 1 0 0 0 +} +// brush 168 +{ +( 144 48 192 ) ( 144 16 192 ) ( 240 16 192 ) wood/wd_hl_v4f 0 0 0 1 1 0 134217728 0 +( 240 16 288 ) ( 144 16 288 ) ( 144 48 288 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 240 64 16 ) ( 240 64 256 ) ( 144 64 256 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 240 16 16 ) ( 240 16 256 ) ( 240 48 256 ) bricks/b_hl_v2 0 16 0 1 1 0 0 0 +( 64 48 16 ) ( 64 48 256 ) ( 64 16 256 ) bricks/b_hl_v2 0 16 0 1 1 0 0 0 +( 196 32 192 ) ( 188 32 256 ) ( 196 32 256 ) bricks/b_hl_v2 -64 16 0 1 1 0 0 0 +} +// brush 169 +{ +( 144 48 192 ) ( 144 16 192 ) ( 240 16 192 ) wood/wd_hl_v4f 0 0 0 1 1 0 134217728 0 +( 240 16 288 ) ( 144 16 288 ) ( 144 48 288 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 240 16 16 ) ( 240 16 256 ) ( 240 48 256 ) bricks/b_hl_v2 0 16 0 1 1 0 0 0 +( 144 16 16 ) ( 144 16 256 ) ( 240 16 256 ) bricks/b_hl_v2 -64 16 0 1 1 0 0 0 +( 196 32 192 ) ( 196 32 256 ) ( 188 32 256 ) bricks/b_hl_v2 -64 16 0 1 1 0 0 0 +( 196 24 224 ) ( 196 32 288 ) ( 196 24 288 ) bricks/b_hl_v2 0 16 0 1 1 0 0 0 +} +// brush 170 +{ +( 144 48 192 ) ( 144 16 192 ) ( 240 16 192 ) wood/wd_hl_v4f 0 0 0 1 1 0 134217728 0 +( 240 16 288 ) ( 144 16 288 ) ( 144 48 288 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 144 16 16 ) ( 144 16 256 ) ( 240 16 256 ) bricks/b_hl_v2 -64 16 0 1 1 0 0 0 +( 64 48 16 ) ( 64 48 256 ) ( 64 16 256 ) bricks/b_hl_v2 0 16 0 1 1 0 0 0 +( 196 24 224 ) ( 196 24 288 ) ( 196 32 288 ) bricks/b_hl_v2 0 16 0 1 1 0 0 0 +( 188 24 192 ) ( 196 24 256 ) ( 188 24 256 ) bricks/b_hl_v2 -64 16 0 1 1 0 0 0 +} +// brush 171 +{ +( 144 48 192 ) ( 144 16 192 ) ( 240 16 192 ) wood/wd_hl_v4f 0 0 0 1 1 0 134217728 0 +( 240 16 288 ) ( 144 16 288 ) ( 144 48 288 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 196 32 192 ) ( 196 32 256 ) ( 188 32 256 ) bricks/b_hl_v2 -64 16 0 1 1 0 0 0 +( 188 24 192 ) ( 188 24 256 ) ( 196 24 256 ) bricks/b_hl_v2 -64 16 0 1 1 0 0 0 +( 188 32 224 ) ( 188 24 288 ) ( 188 32 288 ) bricks/b_hl_v2 0 16 0 1 1 0 0 0 +( 116 24 224 ) ( 116 32 288 ) ( 116 24 288 ) bricks/b_hl_v2 0 16 0 1 1 0 0 0 +} +// brush 172 +{ +( 144 48 192 ) ( 144 16 192 ) ( 240 16 192 ) wood/wd_hl_v4f 0 0 0 1 1 0 134217728 0 +( 240 16 288 ) ( 144 16 288 ) ( 144 48 288 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 64 48 16 ) ( 64 48 256 ) ( 64 16 256 ) bricks/b_hl_v2 0 16 0 1 1 0 0 0 +( 196 32 192 ) ( 196 32 256 ) ( 188 32 256 ) bricks/b_hl_v2 -64 16 0 1 1 0 0 0 +( 188 24 192 ) ( 188 24 256 ) ( 196 24 256 ) bricks/b_hl_v2 -64 16 0 1 1 0 0 0 +( 108 32 224 ) ( 108 24 288 ) ( 108 32 288 ) bricks/b_hl_v2 0 16 0 1 1 0 0 0 +} +// brush 173 +{ +( 584 592 112 ) ( 584 400 112 ) ( 616 400 112 ) wood/wd_sr_va2 -32 126 0 0.250000 0.300000 0 0 0 +( 616 400 120 ) ( 584 400 120 ) ( 584 592 120 ) floors/fl_st_m2a -16 -48 0 1 1 0 67108864 0 +( 616 592 96 ) ( 616 592 144 ) ( 584 592 144 ) wood/wd_sr_va2 -32 61 0 0.250000 0.300000 0 0 0 +( 656 388 100 ) ( 656 388 148 ) ( 656 580 148 ) wood/wd_sr_va2 40 123 0 1 1 0 0 0 +( 584 400 96 ) ( 584 400 144 ) ( 616 400 144 ) wood/wd_sr_va2 -64 112 0 1 1 0 0 0 +( 560 592 96 ) ( 560 592 144 ) ( 560 400 144 ) wood/wd_sr_va2 -64 61 0 0.250000 0.300000 0 0 0 +} +// brush 174 +{ +( 272 304 288 ) ( 272 0 288 ) ( 496 0 288 ) WOOD/WD_ST_M1B 0 -21 90 3 3 0 0 0 +( 496 0 304 ) ( 272 0 304 ) ( 272 304 304 ) WOOD/WD_ST_M1B 0 -21 90 3 3 0 0 0 +( 496 784 292 ) ( 496 784 308 ) ( 272 784 308 ) WOOD/WD_ST_M1B -16 -21 90 3 3 0 0 0 +( 768 0 288 ) ( 768 0 304 ) ( 768 304 304 ) WOOD/WD_ST_M1B -16 0 90 3 3 0 0 0 +( 272 0 292 ) ( 272 0 308 ) ( 496 0 308 ) WOOD/WD_ST_M1B -16 -21 90 3 3 0 0 0 +( 272 304 292 ) ( 272 304 308 ) ( 272 0 308 ) WOOD/WD_ST_M1B -16 0 90 3 3 0 0 0 +} +// brush 175 +{ +( 768 776 28 ) ( 768 776 124 ) ( 768 840 124 ) wood/wd_sr_va2 0 -48 0 1 1.200000 0 0 0 +( 752 1022 -20 ) ( 752 1022 76 ) ( 752 958 76 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 784 1024 -20 ) ( 784 1024 76 ) ( 720 1024 76 ) wood/wd_sr_vy2 113 0 180 1 -1 0 0 0 +( 644 1120 160 ) ( 656 1232 160 ) ( 632 1232 160 ) wood/wd_sr_vy2 112 -62 180 1 -1 0 0 0 +( 768 732 288 ) ( 752 728 288 ) ( 752 736 288 ) wood/wd_sr_vy2 112 -62 180 1 -1 0 0 0 +( 760 896 240 ) ( 768 896 160 ) ( 752 896 160 ) bricks/b_hl_v2 -16 48 0 1 1 0 0 0 +} +// brush 176 +{ +( 768 728 28 ) ( 768 728 124 ) ( 768 792 124 ) wood/wd_sr_va2 0 -48 0 1 1.200000 0 0 0 +( 752 974 -20 ) ( 752 974 76 ) ( 752 910 76 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 784 896 -20 ) ( 784 896 76 ) ( 720 896 76 ) wood/wd_sr_vy2 113 0 180 1 -1 0 0 0 +( 648 1072 192 ) ( 660 1184 192 ) ( 636 1184 192 ) bricks/b_hl_v2 -16 0 0 1 1 0 0 0 +( 768 684 288 ) ( 752 680 288 ) ( 752 688 288 ) wood/wd_sr_vy2 112 -14 180 1 -1 0 0 0 +( 768 768 236 ) ( 752 768 232 ) ( 752 768 240 ) wood/wd_sr_vy2 112 33 180 1 -1 0 0 0 +} +// brush 177 +{ +( 588 624 104 ) ( 588 368 104 ) ( 592 368 104 ) common/0_clip_mon 0 0 0 1 1 131072 128 0 +( 592 368 228 ) ( 588 368 228 ) ( 588 624 228 ) common/0_clip_mon 0 0 0 1 1 131072 128 0 +( 592 592 204 ) ( 592 592 220 ) ( 588 592 220 ) common/0_clip_mon 0 16 0 1 1 131072 128 0 +( 589 368 103 ) ( 589 368 119 ) ( 589 624 119 ) common/0_clip_mon 0 16 0 1 1 131072 128 0 +( 585 400 204 ) ( 585 400 220 ) ( 589 400 220 ) common/0_clip_mon 0 16 0 1 1 131072 128 0 +( 588 592 204 ) ( 588 592 220 ) ( 588 336 220 ) common/0_clip_mon 0 16 0 1 1 131072 128 0 +} +// brush 178 +{ +( 660 604 228 ) ( 660 596 228 ) ( 668 596 228 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 666 596 288 ) ( 658 596 288 ) ( 658 604 288 ) bricks/b_hl_v2 -24 -60 0 1 1 0 0 0 +( 668 604 228 ) ( 668 604 292 ) ( 660 604 292 ) bricks/b_hl_v2 -24 52 0 1 1 0 0 0 +( 668 596 228 ) ( 668 596 292 ) ( 668 604 292 ) bricks/b_hl_v2 60 52 0 1 1 0 0 0 +( 660 596 228 ) ( 660 596 292 ) ( 668 596 292 ) bricks/b_hl_v2 -24 52 0 1 1 0 0 0 +( 660 604 286 ) ( 660 604 350 ) ( 660 596 350 ) bricks/b_hl_v2 60 52 0 1 1 0 0 0 +} +// brush 179 +{ +( 596 604 228 ) ( 596 596 228 ) ( 604 596 228 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 602 596 288 ) ( 594 596 288 ) ( 594 604 288 ) bricks/b_hl_v2 -88 -60 0 1 1 0 0 0 +( 604 604 228 ) ( 604 604 292 ) ( 596 604 292 ) bricks/b_hl_v2 -88 52 0 1 1 0 0 0 +( 604 596 228 ) ( 604 596 292 ) ( 604 604 292 ) bricks/b_hl_v2 60 52 0 1 1 0 0 0 +( 596 596 228 ) ( 596 596 292 ) ( 604 596 292 ) bricks/b_hl_v2 -88 52 0 1 1 0 0 0 +( 596 604 228 ) ( 596 604 292 ) ( 596 596 292 ) bricks/b_hl_v2 60 52 0 1 1 0 0 0 +} +// brush 180 +{ +( 596 396 228 ) ( 596 388 228 ) ( 604 388 228 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 602 388 288 ) ( 594 388 288 ) ( 594 396 288 ) bricks/b_hl_v2 -88 20 0 1 1 0 0 0 +( 604 396 228 ) ( 604 396 292 ) ( 596 396 292 ) bricks/b_hl_v2 -88 52 0 1 1 0 0 0 +( 604 388 228 ) ( 604 388 292 ) ( 604 396 292 ) bricks/b_hl_v2 -20 52 0 1 1 0 0 0 +( 596 388 228 ) ( 596 388 292 ) ( 604 388 292 ) bricks/b_hl_v2 -88 52 0 1 1 0 0 0 +( 596 396 228 ) ( 596 396 292 ) ( 596 388 292 ) bricks/b_hl_v2 -20 52 0 1 1 0 0 0 +} +// brush 181 +{ +( 660 396 228 ) ( 660 388 228 ) ( 668 388 228 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 666 388 288 ) ( 658 388 288 ) ( 658 396 288 ) bricks/b_hl_v2 -24 20 0 1 1 0 0 0 +( 668 396 228 ) ( 668 396 292 ) ( 660 396 292 ) bricks/b_hl_v2 -24 52 0 1 1 0 0 0 +( 668 388 228 ) ( 668 388 292 ) ( 668 396 292 ) bricks/b_hl_v2 -20 52 0 1 1 0 0 0 +( 660 388 228 ) ( 660 388 292 ) ( 668 388 292 ) bricks/b_hl_v2 -24 52 0 1 1 0 0 0 +( 660 396 286 ) ( 660 396 350 ) ( 660 388 350 ) bricks/b_hl_v2 -20 52 0 1 1 0 0 0 +} +// brush 182 +{ +( 864 776 288 ) ( 864 840 288 ) ( 928 840 288 ) wood/wd_sr_vy2 97 -5 180 1 -1 0 0 0 +( 64 806 -20 ) ( 64 806 76 ) ( 64 742 76 ) wood/wd_sr_vy2 17 127 180 1 -1 0 0 0 +( 808 16 -20 ) ( 808 16 76 ) ( 744 16 76 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +( -158 0 116 ) ( -154 0 104 ) ( -162 0 104 ) wood/wd_sr_vy2 97 0 180 1 -1 0 0 0 +( 384 4 288 ) ( 384 16 112 ) ( 384 -8 112 ) wood/wd_sr_vy2 32 48 180 1 -1 0 0 0 +( 72 0 160 ) ( 80 16 160 ) ( 64 16 160 ) wood/wd_sr_vy2 96 0 180 1 -1 0 0 0 +} +// brush 183 +{ +( 944 856 80 ) ( 880 856 80 ) ( 880 792 80 ) wood/wd_sr_va2e -64 -34 0 1 1 0 0 0 +( 768 560 -28 ) ( 768 560 68 ) ( 768 624 68 ) wood/wd_sr_va2c 0 31 0 1 1 0 0 0 +( 752 846 -12 ) ( 752 846 84 ) ( 752 782 84 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 784 768 -20 ) ( 784 768 76 ) ( 720 768 76 ) wood/wd_sr_va2e -64 14 0 1 1 0 0 0 +( 898 16 116 ) ( 902 16 104 ) ( 894 16 104 ) wood/wd_sr_va2e -64 14 0 1 1 0 0 0 +( 754 16 160 ) ( 752 768 160 ) ( 756 768 160 ) wood/wd_sr_va2e -64 -34 0 1 1 0 0 0 +} +// brush 184 +{ +( 768 736 -28 ) ( 768 736 68 ) ( 768 800 68 ) wood/wd_sr_va2 0 32 0 1 1 0 134217728 0 +( 752 1022 -12 ) ( 752 1022 84 ) ( 752 958 84 ) wood/wd_sr_va2 0 32 0 1 1 0 134217728 0 +( 784 1024 -20 ) ( 784 1024 76 ) ( 720 1024 76 ) wood/wd_sr_vy2 113 0 180 1 -1 0 0 0 +( 644 1120 160 ) ( 632 1232 160 ) ( 656 1232 160 ) wood/wd_sr_vy2 112 -62 180 1 -1 0 0 0 +( 760 960 160 ) ( 768 960 80 ) ( 752 960 80 ) wood/wd_sr_va2 -64 32 0 1 1 0 134217728 0 +( 750 896 152 ) ( 752 944 152 ) ( 748 944 152 ) wood/wd_sr_va2 -16 -17 0 1 1 0 134217728 0 +} +// brush 185 +{ +( 512 664 80 ) ( 448 664 80 ) ( 448 600 80 ) wood/wd_sr_vy2 64 40 180 1 -1 0 0 0 +( 272 584 -52 ) ( 272 584 44 ) ( 272 648 44 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 256 638 -4 ) ( 256 638 92 ) ( 256 574 92 ) wood/wd_st_c04b -64 76 0 0.250000 0.350000 0 134217728 0 +( 376 768 -20 ) ( 376 768 76 ) ( 312 768 76 ) wood/wd_sr_vy2 65 0 180 1 -1 0 0 0 +( 258 560 116 ) ( 262 560 104 ) ( 254 560 104 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 340 576 160 ) ( 338 768 160 ) ( 342 768 160 ) wood/wd_sr_vy2 64 48 180 1 -1 0 0 0 +} +// brush 186 +{ +( 352 608 -52 ) ( 352 608 44 ) ( 352 672 44 ) wood/wd_sr_va2 0 32 0 1 1 0 134217728 0 +( 256 654 -4 ) ( 256 654 92 ) ( 256 590 92 ) wood/wd_st_c04b 0 76 0 0.250000 0.350000 0 134217728 0 +( 376 784 -20 ) ( 376 784 76 ) ( 312 784 76 ) wood/wd_sr_vy2 81 0 180 1 -1 0 0 0 +( 274 768 116 ) ( 278 768 104 ) ( 270 768 104 ) wood/wd_sr_va2 -64 32 0 1 1 0 134217728 0 +( 228 768 160 ) ( 216 880 160 ) ( 240 880 160 ) wood/wd_sr_vy2 79 32 180 1 -1 0 0 0 +( 338 768 152 ) ( 340 784 152 ) ( 336 784 152 ) wood/wd_sr_vy2 79 32 180 1 -1 0 0 0 +} +// brush 187 +{ +( 528 680 80 ) ( 464 680 80 ) ( 464 616 80 ) wood/wd_sr_vy2 80 25 180 1 -1 0 0 0 +( 352 608 -52 ) ( 352 608 44 ) ( 352 672 44 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 256 654 -4 ) ( 256 654 92 ) ( 256 590 92 ) wood/wd_st_c04b 0 76 0 0.250000 0.350000 0 134217728 0 +( 376 784 -20 ) ( 376 784 76 ) ( 312 784 76 ) wood/wd_sr_vy2 81 0 180 1 -1 0 0 0 +( 274 768 116 ) ( 278 768 104 ) ( 270 768 104 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 338 768 152 ) ( 336 784 152 ) ( 340 784 152 ) wood/wd_sr_vy2 79 32 180 1 -1 0 0 0 +} +// brush 188 +{ +( 656 208 96 ) ( 336 208 96 ) ( 336 784 96 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 672 720 52 ) ( 672 720 116 ) ( 352 720 116 ) wood/wd_sr_va2 -64 96 0 1 1 0 134250496 0 +( 752 208 48 ) ( 752 208 112 ) ( 752 784 112 ) wood/wd_st_m7s -48 48 0 1 1 0 0 0 +( 456 680 112 ) ( 432 656 80 ) ( 480 704 80 ) wood/wd_sr_va2 0 96 0 1 1 0 134250496 0 +( 704 704 52 ) ( 384 704 116 ) ( 704 704 116 ) wood/wd_st_m7s -48 48 0 1 1 0 0 0 +( 436 704 92 ) ( 440 720 92 ) ( 432 720 92 ) wood/wd_st_m7s -48 0 0 1 1 0 0 0 +} +// brush 189 +{ +( 336 784 80 ) ( 336 208 80 ) ( 656 208 80 ) wood/wd_st_m7s -48 48 0 1 1 0 0 0 +( 672 720 52 ) ( 672 720 116 ) ( 352 720 116 ) wood/wd_sr_va2c -64 99 0 1 1 0 0 0 +( 752 208 52 ) ( 752 208 116 ) ( 752 784 116 ) wood/wd_st_m7s -48 52 0 1 1 0 0 0 +( 456 680 116 ) ( 432 656 84 ) ( 480 704 84 ) wood/wd_sr_va2c 0 99 0 1 1 0 0 0 +( 704 704 48 ) ( 384 704 112 ) ( 704 704 112 ) wood/wd_st_m7s -48 52 0 1 1 0 0 0 +( 436 704 92 ) ( 432 720 92 ) ( 440 720 92 ) wood/wd_st_m7s -48 0 0 1 1 0 0 0 +} +// brush 190 +{ +( 656 208 96 ) ( 336 208 96 ) ( 336 784 96 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 456 680 112 ) ( 432 656 80 ) ( 480 704 80 ) wood/wd_sr_va2 0 96 0 1 1 0 134250496 0 +( 704 704 52 ) ( 704 704 116 ) ( 384 704 116 ) wood/wd_st_m7s 0 96 0 0.500000 0.500000 0 0 0 +( 448 764 52 ) ( 448 764 116 ) ( 448 188 116 ) wood/wd_st_m7s 0 96 0 0.500000 0.500000 0 0 0 +( 472 680 116 ) ( 496 704 84 ) ( 448 656 84 ) wood/wd_st_m7s 0 96 0 0.500000 0.500000 0 0 0 +( 436 656 92 ) ( 440 704 92 ) ( 432 704 92 ) wood/wd_st_m7s 0 0 0 0.500000 0.500000 0 0 0 +} +// brush 191 +{ +( 336 784 80 ) ( 336 208 80 ) ( 656 208 80 ) wood/wd_st_m7s 0 0 0 0.500000 0.500000 0 0 0 +( 456 680 116 ) ( 432 656 84 ) ( 480 704 84 ) wood/wd_sr_va2c 0 99 0 1 1 0 0 0 +( 704 704 48 ) ( 704 704 112 ) ( 384 704 112 ) wood/wd_st_m7s 0 104 0 0.500000 0.500000 0 0 0 +( 448 764 48 ) ( 448 764 112 ) ( 448 188 112 ) wood/wd_st_m7s 0 104 0 0.500000 0.500000 0 0 0 +( 472 680 116 ) ( 496 704 84 ) ( 448 656 84 ) wood/wd_st_m7s 0 104 0 0.500000 0.500000 0 0 0 +( 436 656 92 ) ( 432 704 92 ) ( 440 704 92 ) wood/wd_st_m7s 0 0 0 0.500000 0.500000 0 0 0 +} +// brush 192 +{ +( 336 784 80 ) ( 336 208 80 ) ( 656 208 80 ) wood/wd_st_m7s 0 0 0 0.500000 0.500000 0 0 0 +( 432 764 52 ) ( 432 764 116 ) ( 432 188 116 ) wood/wd_sr_va2c 0 99 0 1 1 0 0 0 +( 440 328 116 ) ( 464 304 84 ) ( 416 352 84 ) wood/wd_sr_va2c 0 99 0 1 1 0 0 0 +( 456 680 116 ) ( 432 656 84 ) ( 480 704 84 ) wood/wd_sr_va2c 0 99 0 1 1 0 0 0 +( 448 764 48 ) ( 448 188 112 ) ( 448 764 112 ) wood/wd_st_m7s 0 104 0 0.500000 0.500000 0 0 0 +( 436 320 92 ) ( 432 672 92 ) ( 440 672 92 ) wood/wd_st_m7s 0 0 0 0.500000 0.500000 0 0 0 +} +// brush 193 +{ +( 944 496 96 ) ( 944 176 96 ) ( 368 176 96 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 448 320 96 ) ( 480 288 96 ) ( 480 288 92 ) wood/wd_sr_va2 0 96 0 1 1 0 134250496 0 +( 448 336 96 ) ( 448 320 96 ) ( 448 320 92 ) wood/wd_st_m7s 0 96 0 0.500000 0.500000 0 0 0 +( 496 288 92 ) ( 480 288 92 ) ( 480 288 96 ) wood/wd_st_m7s 0 96 0 0.500000 0.500000 0 0 0 +( 496 288 100 ) ( 448 336 100 ) ( 472 312 68 ) wood/wd_st_m7s 0 96 0 0.500000 0.500000 0 0 0 +( 436 288 92 ) ( 440 336 92 ) ( 432 336 92 ) wood/wd_st_m7s 0 0 0 0.500000 0.500000 0 0 0 +} +// brush 194 +{ +( 368 176 80 ) ( 944 176 80 ) ( 944 496 80 ) wood/wd_st_m7s 0 0 0 0.500000 0.500000 0 0 0 +( 448 320 100 ) ( 496 272 100 ) ( 472 296 68 ) wood/wd_sr_va2c 0 99 0 1 1 0 0 0 +( 448 224 64 ) ( 448 544 64 ) ( 448 544 128 ) wood/wd_st_m7s 0 104 0 0.500000 0.500000 0 0 0 +( 964 288 64 ) ( 388 288 64 ) ( 388 288 128 ) wood/wd_st_m7s 0 104 0 0.500000 0.500000 0 0 0 +( 496 288 96 ) ( 448 336 96 ) ( 472 312 64 ) wood/wd_st_m7s 0 104 0 0.500000 0.500000 0 0 0 +( 436 288 92 ) ( 432 336 92 ) ( 440 336 92 ) wood/wd_st_m7s 0 0 0 0.500000 0.500000 0 0 0 +} +// brush 195 +{ +( 336 784 80 ) ( 336 208 80 ) ( 656 208 80 ) wood/wd_st_m7s -127 0 90 0.500000 0.500000 0 0 0 +( 752 208 52 ) ( 752 208 116 ) ( 752 784 116 ) wood/wd_st_m7s -103 0 90 0.500000 0.500000 0 0 0 +( 368 272 52 ) ( 368 272 116 ) ( 688 272 116 ) wood/wd_sr_va2c -64 99 0 1 1 0 0 0 +( 456 312 116 ) ( 480 288 84 ) ( 432 336 84 ) wood/wd_sr_va2c 0 99 0 1 1 0 0 0 +( 384 288 48 ) ( 704 288 112 ) ( 384 288 112 ) wood/wd_st_m7s -103 0 90 0.500000 0.500000 0 0 0 +( 436 272 92 ) ( 432 288 92 ) ( 440 288 92 ) wood/wd_sr_va2 -64 49 0 1 1 0 0 0 +} +// brush 196 +{ +( 720 408 112 ) ( 720 376 112 ) ( 816 376 112 ) wood/wd_sr_va3 0 39 0 1 1 0 0 0 +( 816 600 144 ) ( 816 600 152 ) ( 720 600 152 ) wood/wd_sr_va3 0 23 0 1 1 0 0 0 +( 752 376 144 ) ( 752 376 152 ) ( 752 408 152 ) wood/wd_sr_va3 0 23 0 1 1 0 0 0 +( 880 400 144 ) ( 880 400 152 ) ( 976 400 152 ) wood/wd_sr_va3 0 23 0 1 1 0 0 0 +( 720 408 144 ) ( 720 408 152 ) ( 720 376 152 ) wood/wd_sr_va2a 0 32 0 1 1 0 134217728 0 +( 752 596 160 ) ( 720 592 160 ) ( 720 600 160 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +} +// brush 197 +{ +( 192 576 48 ) ( 64 576 48 ) ( 64 320 48 ) wood/wd_st_m7s -16 24 0 1 1 0 134217728 0 +( 224 376 84 ) ( 224 376 212 ) ( 224 632 212 ) wood/wd_sr_va2c 0 116 0 1 1 0 0 0 +( 72 432 68 ) ( 72 432 196 ) ( 200 432 196 ) wood/wd_st_m7s -16 12 0 1 1 0 134217728 0 +( 80 528 84 ) ( 80 528 212 ) ( 80 272 212 ) wood/wd_st_m7s -24 12 0 1 1 0 134217728 0 +( 152 560 84 ) ( 152 560 212 ) ( 24 560 212 ) wood/wd_st_m7s -16 12 0 1 1 0 134217728 0 +( 88 432 108 ) ( 80 560 108 ) ( 96 560 108 ) wood/wd_sr_va2 -64 64 0 1 1 0 134217728 0 +} +// brush 198 +{ +( 224 304 96 ) ( 224 560 96 ) ( 352 560 96 ) wood/wd_st_m7s 0 -64 90 1 1 0 134217728 0 +( 240 360 68 ) ( 240 360 196 ) ( 240 616 196 ) wood/wd_sr_va2 0 96 0 1 1 0 134250496 0 +( 232 432 48 ) ( 232 432 176 ) ( 360 432 176 ) wood/wd_st_m7s -48 120 0 1 1 0 134217728 0 +( 224 592 72 ) ( 224 592 200 ) ( 224 336 200 ) wood/wd_st_m7s -40 120 0 1 1 0 134217728 0 +( 312 560 64 ) ( 312 560 192 ) ( 184 560 192 ) wood/wd_st_m7s -48 120 0 1 1 0 134217728 0 +( 228 432 92 ) ( 232 560 92 ) ( 224 560 92 ) wood/wd_st_m7s -48 -56 0 1 1 0 134217728 0 +} +// brush 199 +{ +( 352 560 48 ) ( 224 560 48 ) ( 224 304 48 ) wood/wd_st_m7s -48 40 0 1 1 0 134217728 0 +( 240 360 68 ) ( 240 360 196 ) ( 240 616 196 ) wood/wd_sr_va2c 0 99 0 1 1 0 0 0 +( 232 432 52 ) ( 232 432 180 ) ( 360 432 180 ) wood/wd_st_m7s -48 124 0 1 1 0 134217728 0 +( 224 592 76 ) ( 224 592 204 ) ( 224 336 204 ) wood/wd_st_m7s -40 124 0 1 1 0 134217728 0 +( 312 560 68 ) ( 312 560 196 ) ( 184 560 196 ) wood/wd_st_m7s -48 124 0 1 1 0 134217728 0 +( 228 432 92 ) ( 224 560 92 ) ( 232 560 92 ) wood/wd_st_m7s -48 -56 0 1 1 0 134217728 0 +} +// brush 200 +{ +( 528 728 80 ) ( 464 728 80 ) ( 464 664 80 ) wood/wd_sr_va2 -64 -16 0 1 1 0 134217728 0 +( 352 752 -52 ) ( 352 752 44 ) ( 352 816 44 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 336 718 -4 ) ( 336 718 92 ) ( 336 654 92 ) wood/wd_sr_va2 0 32 0 1 1 0 134217728 0 +( 376 1008 -20 ) ( 376 1008 76 ) ( 312 1008 76 ) wood/wd_sr_va2 -64 32 0 1 1 0 134217728 0 +( 348 784 160 ) ( 344 928 160 ) ( 352 928 160 ) wood/wd_sr_va2 -64 -16 0 1 1 0 134217728 0 +( 352 944 156 ) ( 336 944 152 ) ( 336 944 160 ) wood/wd_sr_va2 -64 32 0 1 1 0 134217728 0 +} +// brush 201 +{ +( 352 752 -52 ) ( 352 752 44 ) ( 352 816 44 ) wood/wd_sr_va2 0 32 0 1 1 0 134217728 0 +( 336 716 -4 ) ( 336 716 92 ) ( 336 652 92 ) wood/wd_sr_va2 0 32 0 1 1 0 134217728 0 +( 228 816 160 ) ( 216 928 160 ) ( 240 928 160 ) wood/wd_sr_vy2 79 -13 180 1 -1 0 0 0 +( 348 784 152 ) ( 352 928 152 ) ( 344 928 152 ) wood/wd_sr_vy2 79 -13 180 1 -1 0 0 0 +( 352 944 156 ) ( 336 944 160 ) ( 336 944 152 ) wood/wd_sr_vy2 79 34 180 1 -1 0 0 0 +( 352 856 156 ) ( 336 856 152 ) ( 336 856 160 ) wood/wd_sr_vy2 79 34 180 1 -1 0 0 0 +} +// brush 202 +{ +( 352 752 -52 ) ( 352 752 44 ) ( 352 816 44 ) wood/wd_sr_va2 0 32 0 1 1 0 134217728 0 +( 336 718 -4 ) ( 336 718 92 ) ( 336 654 92 ) wood/wd_st_c04b -64 76 0 0.250000 0.350000 0 134217728 0 +( 282 784 116 ) ( 286 784 104 ) ( 278 784 104 ) wood/wd_st_c04b -64 76 0 0.250000 0.350000 0 134217728 0 +( 228 816 160 ) ( 216 928 160 ) ( 240 928 160 ) wood/wd_sr_vy2 79 -13 180 1 -1 0 0 0 +( 348 784 152 ) ( 352 928 152 ) ( 344 928 152 ) wood/wd_sr_vy2 79 -13 180 1 -1 0 0 0 +( 352 856 156 ) ( 336 856 160 ) ( 336 856 152 ) wood/wd_sr_vy2 79 34 180 1 -1 0 0 0 +} +// brush 203 +{ +( 528 728 80 ) ( 464 728 80 ) ( 464 664 80 ) wood/wd_sr_va2 -64 -16 0 1 1 0 134217728 0 +( 352 752 -52 ) ( 352 752 44 ) ( 352 816 44 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 336 718 -4 ) ( 336 718 92 ) ( 336 654 92 ) wood/wd_sr_va2 0 32 0 1 1 0 134217728 0 +( 282 784 116 ) ( 286 784 104 ) ( 278 784 104 ) wood/wd_sr_va2 -64 32 0 1 1 0 134217728 0 +( 348 784 152 ) ( 344 928 152 ) ( 352 928 152 ) wood/wd_sr_va2 -64 -16 0 1 1 0 134217728 0 +( 352 856 156 ) ( 336 856 160 ) ( 336 856 152 ) wood/wd_sr_va2 -64 32 0 1 1 0 134217728 0 +} +// brush 204 +{ +( 336 944 80 ) ( 336 856 80 ) ( 344 856 80 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 344 856 152 ) ( 336 856 152 ) ( 336 944 152 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 344 944 80 ) ( 344 944 152 ) ( 336 944 152 ) bricks/b_hl_v2 -64 48 0 1 1 0 0 0 +( 351 856 80 ) ( 351 856 152 ) ( 351 944 152 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 336 856 80 ) ( 336 856 152 ) ( 344 856 152 ) bricks/b_hl_v2 -64 48 0 1 1 0 0 0 +( 336 944 80 ) ( 336 944 152 ) ( 336 856 152 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +} +// brush 205 +{ +( 528 728 80 ) ( 464 728 80 ) ( 464 664 80 ) wood/wd_sr_vy2 80 -21 180 1 -1 0 0 0 +( 352 752 -52 ) ( 352 752 44 ) ( 352 816 44 ) wood/wd_sr_va2a 0 48 0 1 1 0 134217728 0 +( 348 784 152 ) ( 344 928 152 ) ( 352 928 152 ) wood/wd_sr_vy2 79 -13 180 1 -1 0 0 0 +( 352 944 156 ) ( 336 944 160 ) ( 336 944 152 ) wood/wd_sr_vy2 79 34 180 1 -1 0 0 0 +( 360 928 164 ) ( 344 928 160 ) ( 344 928 168 ) wood/wd_sr_vy2 79 34 180 1 -1 0 0 0 +( 351 856 80 ) ( 351 944 152 ) ( 351 856 152 ) wood/wd_sr_vy2 15 33 180 1 -1 0 0 0 +} +// brush 206 +{ +( 944 1032 80 ) ( 880 1032 80 ) ( 880 968 80 ) wood/wd_sr_va2 -64 -16 0 1 1 0 134217728 0 +( 768 736 -28 ) ( 768 736 68 ) ( 768 800 68 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 752 1022 -12 ) ( 752 1022 84 ) ( 752 958 84 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 760 896 160 ) ( 768 896 80 ) ( 752 896 80 ) wood/wd_sr_va2 -64 32 0 1 1 0 134217728 0 +( 750 896 160 ) ( 748 944 160 ) ( 752 944 160 ) wood/wd_sr_va2 -64 -16 0 1 1 0 134217728 0 +( 757 960 152 ) ( 752 960 80 ) ( 762 960 80 ) wood/wd_sr_va2 -64 32 0 1 1 0 134217728 0 +} +// brush 207 +{ +( 944 1032 80 ) ( 880 1032 80 ) ( 880 968 80 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 768 736 -28 ) ( 768 736 68 ) ( 768 800 68 ) wood/wd_sr_va2 0 32 0 1 1 0 134217728 0 +( 784 1024 -20 ) ( 784 1024 76 ) ( 720 1024 76 ) bricks/b_hl_v2 -64 48 0 1 1 0 0 0 +( 750 896 152 ) ( 748 944 152 ) ( 752 944 152 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 757 960 152 ) ( 762 960 80 ) ( 752 960 80 ) bricks/b_hl_v2 -64 48 0 1 1 0 0 0 +( 753 964 152 ) ( 753 960 80 ) ( 753 968 80 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +} +// brush 208 +{ +( 528 824 80 ) ( 464 824 80 ) ( 464 760 80 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 753 846 -52 ) ( 753 846 44 ) ( 753 910 44 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 376 1024 -20 ) ( 376 1024 76 ) ( 312 1024 76 ) bricks/b_hl_v2 -64 48 0 1 1 0 0 0 +( 750 1008 152 ) ( 748 1024 152 ) ( 752 1024 152 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 704 1010 152 ) ( 704 1008 80 ) ( 704 1012 80 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 746 1009 152 ) ( 749 1009 80 ) ( 743 1009 80 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +} +// brush 209 +{ +( 64 320 112 ) ( 64 576 112 ) ( 192 576 112 ) wood/wd_st_m7s 0 -64 90 1 1 0 134217728 0 +( 72 432 64 ) ( 72 432 192 ) ( 200 432 192 ) wood/wd_st_m7s -16 8 0 1 1 0 134217728 0 +( 80 528 80 ) ( 80 528 208 ) ( 80 272 208 ) wood/wd_st_m7s -24 8 0 1 1 0 134217728 0 +( 152 560 80 ) ( 152 560 208 ) ( 24 560 208 ) wood/wd_st_m7s -16 8 0 1 1 0 134217728 0 +( 88 432 108 ) ( 96 560 108 ) ( 80 560 108 ) wood/wd_st_m7s -16 -40 0 1 1 0 134217728 0 +( 223 434 116 ) ( 223 436 108 ) ( 223 432 108 ) wood/wd_st_m7s 48 8 0 1 1 0 134217728 0 +} +// brush 210 +{ +( 656 208 96 ) ( 336 208 96 ) ( 336 784 96 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 368 272 52 ) ( 368 272 116 ) ( 688 272 116 ) wood/wd_sr_va2 -64 96 0 1 1 0 134250496 0 +( 456 312 112 ) ( 480 288 80 ) ( 432 336 80 ) wood/wd_sr_va2 0 96 0 1 1 0 134250496 0 +( 384 288 52 ) ( 704 288 116 ) ( 384 288 116 ) wood/wd_st_m7s -95 0 90 0.500000 0.500000 0 0 0 +( 436 272 92 ) ( 440 288 92 ) ( 432 288 92 ) wood/wd_st_m7s -127 0 90 0.500000 0.500000 0 0 0 +( 640 280 100 ) ( 640 288 92 ) ( 640 272 92 ) wood/wd_st_m7s -95 0 90 0.500000 0.500000 0 0 0 +} +// brush 211 +{ +( 656 208 96 ) ( 336 208 96 ) ( 336 784 96 ) wood/wd_st_m7s -64 0 0 1 1 0 0 0 +( 752 208 48 ) ( 752 208 112 ) ( 752 784 112 ) wood/wd_st_m7s -95 0 90 0.500000 0.500000 0 0 0 +( 368 272 52 ) ( 368 272 116 ) ( 688 272 116 ) wood/wd_sr_va2 -64 96 0 1 1 0 134250496 0 +( 384 288 52 ) ( 704 288 116 ) ( 384 288 116 ) wood/wd_st_m7s -95 0 90 0.500000 0.500000 0 0 0 +( 436 272 92 ) ( 440 288 92 ) ( 432 288 92 ) wood/wd_st_m7s -127 0 90 0.500000 0.500000 0 0 0 +( 720 280 100 ) ( 720 272 92 ) ( 720 288 92 ) wood/wd_st_m7s -95 0 90 0.500000 0.500000 0 0 0 +} +// brush 212 +{ +( 656 208 96 ) ( 336 208 96 ) ( 336 784 96 ) wood/wd_st_m7s -64 0 0 1 1 0 0 0 +( 384 288 52 ) ( 704 288 116 ) ( 384 288 116 ) wood/wd_st_m7s -95 0 90 0.500000 0.500000 0 0 0 +( 436 272 92 ) ( 440 288 92 ) ( 432 288 92 ) wood/wd_st_m7s -127 0 90 0.500000 0.500000 0 0 0 +( 640 280 100 ) ( 640 272 92 ) ( 640 288 92 ) wood/wd_st_m7s -95 0 90 0.500000 0.500000 0 0 0 +( 720 280 100 ) ( 720 288 92 ) ( 720 272 92 ) wood/wd_st_m7s -95 0 90 0.500000 0.500000 0 0 0 +( 645 272 100 ) ( 647 272 92 ) ( 643 272 92 ) wood/wd_sr_va2 -64 96 0 1 1 0 134250496 0 +} +// brush 213 +{ +( 1048 840 80 ) ( 984 840 80 ) ( 984 776 80 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 64 160 -84 ) ( 64 160 12 ) ( 64 224 12 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 48 814 -4 ) ( 48 814 92 ) ( 48 750 92 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 296 288 -4 ) ( 296 288 92 ) ( 232 288 92 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 64 284 160 ) ( 48 280 160 ) ( 48 288 160 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +( 52 0 120 ) ( 56 0 48 ) ( 48 0 48 ) wood/wd_sr_va2aa 0 -12 0 1 1.250000 0 0 0 +} +// brush 214 +{ +( 352 992 48 ) ( 352 480 48 ) ( 416 480 48 ) floors/fl_hl_v1b -62 0 0 1 1 0 0 0 +( 416 480 80 ) ( 352 480 80 ) ( 352 992 80 ) floors/fl_hl_v1b -62 0 0 1 1 0 2097152 0 +( 336 1024 48 ) ( 336 1024 112 ) ( 272 1024 112 ) floors/fl_hl_v1b -62 48 0 1 1 0 0 0 +( 432 448 48 ) ( 432 448 112 ) ( 432 960 112 ) floors/fl_hl_v1b 2 48 0 1 1 0 0 0 +( 336 994 48 ) ( 336 994 112 ) ( 336 482 112 ) floors/fl_hl_v1b 2 48 0 1 1 0 0 0 +( 364 896 80 ) ( 384 896 48 ) ( 344 896 48 ) floors/fl_hl_v1b -62 48 0 1 1 0 0 0 +} +// brush 215 +{ +( 352 992 48 ) ( 352 480 48 ) ( 416 480 48 ) floors/fl_hl_v1 -38 0 0 0.500000 0.500000 0 0 0 +( 416 480 80 ) ( 352 480 80 ) ( 352 992 80 ) floors/fl_hl_v1 0 0 0 1 1 0 2097152 0 +( 432 448 48 ) ( 432 448 112 ) ( 432 960 112 ) floors/fl_hl_v1 -38 32 0 0.500000 0.500000 0 0 0 +( 376 768 48 ) ( 376 768 112 ) ( 440 768 112 ) floors/fl_hl_v1 -38 32 0 0.500000 0.500000 0 0 0 +( 336 994 48 ) ( 336 994 112 ) ( 336 482 112 ) floors/fl_hl_v1 -38 32 0 0.500000 0.500000 0 0 0 +( 364 896 80 ) ( 344 896 48 ) ( 384 896 48 ) floors/fl_hl_v1 -38 32 0 0.500000 0.500000 0 0 0 +} +// brush 216 +{ +( 240 720 64 ) ( 240 528 64 ) ( 752 528 64 ) floors/fl_hl_v1 -62 0 0 1 1 0 0 0 +( 752 528 80 ) ( 240 528 80 ) ( 240 720 80 ) floors/fl_hl_v1 0 0 0 1 1 0 2097152 0 +( 432 688 16 ) ( 432 688 80 ) ( 432 496 80 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 480 1024 48 ) ( 672 1024 112 ) ( 480 1024 112 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 768 844 80 ) ( 768 856 64 ) ( 768 832 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 480 960 80 ) ( 488 960 64 ) ( 472 960 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +} +// brush 217 +{ +( 240 720 64 ) ( 240 528 64 ) ( 752 528 64 ) floors/fl_hl_v1d -1 61 0 1 1 0 0 0 +( 752 528 80 ) ( 240 528 80 ) ( 240 720 80 ) floors/fl_hl_v1b -126 64 0 1 1 0 2097152 0 +( 532 832 80 ) ( 552 832 64 ) ( 512 832 64 ) floors/fl_hl_v1d -1 109 0 1 1 0 0 0 +( 640 844 80 ) ( 640 856 64 ) ( 640 832 64 ) floors/fl_hl_v1d 63 109 0 1 1 0 0 0 +( 480 960 80 ) ( 472 960 64 ) ( 488 960 64 ) floors/fl_hl_v1d -1 109 0 1 1 0 0 0 +( 512 900 80 ) ( 512 840 64 ) ( 512 960 64 ) floors/fl_hl_v1d 63 109 0 1 1 0 0 0 +} +// brush 218 +{ +( 240 720 64 ) ( 240 528 64 ) ( 752 528 64 ) floors/fl_hl_v1 -62 0 0 1 1 0 0 0 +( 752 528 80 ) ( 240 528 80 ) ( 240 720 80 ) floors/fl_hl_v1 0 0 0 1 1 0 2097152 0 +( 432 688 16 ) ( 432 688 80 ) ( 432 496 80 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 532 832 80 ) ( 552 832 64 ) ( 512 832 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 480 960 80 ) ( 472 960 64 ) ( 488 960 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 512 900 80 ) ( 512 960 64 ) ( 512 840 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +} +// brush 219 +{ +( 240 304 64 ) ( 240 112 64 ) ( 752 112 64 ) floors/fl_hl_v1 -62 0 0 1 1 0 0 0 +( 752 112 80 ) ( 240 112 80 ) ( 240 304 80 ) floors/fl_hl_v1 0 0 0 1 1 0 2097152 0 +( 752 192 16 ) ( 752 192 80 ) ( 240 192 80 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 752 112 16 ) ( 752 112 80 ) ( 752 304 80 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 640 176 80 ) ( 640 48 64 ) ( 640 304 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 700 128 80 ) ( 752 128 64 ) ( 648 128 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +} +// brush 220 +{ +( 240 272 64 ) ( 240 80 64 ) ( 752 80 64 ) floors/fl_hl_v1d -62 0 0 1 1 0 0 0 +( 752 80 80 ) ( 240 80 80 ) ( 240 272 80 ) floors/fl_hl_v1d 0 0 90 1 1 0 2097152 0 +( 752 80 16 ) ( 752 80 80 ) ( 752 272 80 ) floors/fl_hl_v1d 2 48 0 1 1 0 0 0 +( 240 16 16 ) ( 240 16 80 ) ( 752 16 80 ) floors/fl_hl_v1d -62 48 0 1 1 0 0 0 +( 640 144 80 ) ( 640 16 64 ) ( 640 272 64 ) floors/fl_hl_v1d 2 48 0 1 1 0 0 0 +( 700 128 80 ) ( 648 128 64 ) ( 752 128 64 ) floors/fl_hl_v1d -62 48 0 1 1 0 0 0 +} +// brush 221 +{ +( 240 272 64 ) ( 240 80 64 ) ( 752 80 64 ) floors/fl_hl_v1 -62 0 0 1 1 0 0 0 +( 752 80 80 ) ( 240 80 80 ) ( 240 272 80 ) floors/fl_hl_v1 0 0 0 1 1 0 2097152 0 +( 752 272 16 ) ( 752 272 80 ) ( 240 272 80 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 272 256 16 ) ( 272 256 80 ) ( 272 64 80 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 448 32 80 ) ( 448 56 64 ) ( 448 8 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 332 192 80 ) ( 376 192 64 ) ( 288 192 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +} +// brush 222 +{ +( 240 272 64 ) ( 240 80 64 ) ( 752 80 64 ) floors/fl_hl_v1a -62 0 0 1 1 0 0 0 +( 752 80 80 ) ( 240 80 80 ) ( 240 272 80 ) floors/fl_hl_v1a -64 -1 90 -1 1 0 2097152 0 +( 240 64 16 ) ( 240 64 80 ) ( 752 64 80 ) floors/fl_hl_v1a -62 48 0 1 1 0 0 0 +( 288 256 16 ) ( 288 256 80 ) ( 288 64 80 ) floors/fl_hl_v1a 2 48 0 1 1 0 0 0 +( 384 40 80 ) ( 384 64 64 ) ( 384 16 64 ) floors/fl_hl_v1a 2 48 0 1 1 0 0 0 +( 332 192 80 ) ( 288 192 64 ) ( 376 192 64 ) floors/fl_hl_v1a -62 48 0 1 1 0 0 0 +} +// brush 223 +{ +( 288 864 48 ) ( 288 352 48 ) ( 352 352 48 ) floors/fl_hl_v1 -62 0 0 1 1 0 0 0 +( 352 352 80 ) ( 288 352 80 ) ( 288 864 80 ) floors/fl_hl_v1 0 0 0 1 1 0 2097152 0 +( 432 336 48 ) ( 432 336 112 ) ( 432 848 112 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 304 272 48 ) ( 304 272 112 ) ( 368 272 112 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 272 864 48 ) ( 272 864 112 ) ( 272 352 112 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 380 384 80 ) ( 328 384 48 ) ( 432 384 48 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +} +// brush 224 +{ +( 288 864 48 ) ( 288 352 48 ) ( 352 352 48 ) floors/fl_hl_v1 -62 0 0 1 1 0 0 0 +( 352 352 80 ) ( 288 352 80 ) ( 288 864 80 ) floors/fl_hl_v1 0 0 0 1 1 0 2097152 0 +( 264 768 48 ) ( 264 768 112 ) ( 200 768 112 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 432 336 48 ) ( 432 336 112 ) ( 432 848 112 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 288 840 48 ) ( 288 840 112 ) ( 288 328 112 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 316 552 80 ) ( 328 552 48 ) ( 304 552 48 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +} +// brush 225 +{ +( 288 864 48 ) ( 288 352 48 ) ( 352 352 48 ) floors/fl_hl_v1 -62 0 0 1 1 0 0 0 +( 352 352 80 ) ( 288 352 80 ) ( 288 864 80 ) floors/fl_hl_v1b 0 -1 0 1 1 0 2097152 0 +( 272 864 48 ) ( 272 864 112 ) ( 272 352 112 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 380 384 80 ) ( 432 384 48 ) ( 328 384 48 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 332 432 80 ) ( 320 432 48 ) ( 344 432 48 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 320 400 80 ) ( 320 416 48 ) ( 320 384 48 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +} +// brush 226 +{ +( 288 864 48 ) ( 288 352 48 ) ( 352 352 48 ) floors/fl_hl_v1d -62 0 0 1 1 0 0 0 +( 352 352 80 ) ( 288 352 80 ) ( 288 864 80 ) floors/fl_hl_v1b 0 -1 0 1 1 0 2097152 0 +( 432 336 48 ) ( 432 336 112 ) ( 432 848 112 ) floors/fl_hl_v1d 2 48 0 1 1 0 0 0 +( 380 384 80 ) ( 432 384 48 ) ( 328 384 48 ) floors/fl_hl_v1d -62 48 0 1 1 0 0 0 +( 316 552 80 ) ( 304 552 48 ) ( 328 552 48 ) floors/fl_hl_v1d -62 48 0 1 1 0 0 0 +( 320 392 80 ) ( 320 376 48 ) ( 320 408 48 ) floors/fl_hl_v1d 2 48 0 1 1 0 0 0 +} +// brush 227 +{ +( 240 720 64 ) ( 240 528 64 ) ( 752 528 64 ) floors/fl_hl_v1 -62 0 0 1 1 0 0 0 +( 752 528 80 ) ( 240 528 80 ) ( 240 720 80 ) floors/fl_hl_v1 0 0 0 1 1 0 2097152 0 +( 240 720 16 ) ( 240 720 80 ) ( 752 720 80 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 432 688 16 ) ( 432 688 80 ) ( 432 496 80 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 532 832 80 ) ( 512 832 64 ) ( 552 832 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 640 728 80 ) ( 640 736 64 ) ( 640 720 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +} +// brush 228 +{ +( 240 272 64 ) ( 240 80 64 ) ( 752 80 64 ) floors/fl_hl_v1 -62 0 0 1 1 0 0 0 +( 752 80 80 ) ( 240 80 80 ) ( 240 272 80 ) floors/fl_hl_v1 0 0 0 1 1 0 2097152 0 +( 752 192 16 ) ( 752 192 80 ) ( 240 192 80 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 384 40 80 ) ( 384 16 64 ) ( 384 64 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 448 48 80 ) ( 448 64 64 ) ( 448 32 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 416 64 80 ) ( 448 64 64 ) ( 384 64 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +} +// brush 229 +{ +( 240 272 64 ) ( 240 80 64 ) ( 752 80 64 ) floors/fl_hl_v1a -61 0 90 1 1 0 0 0 +( 752 80 80 ) ( 240 80 80 ) ( 240 272 80 ) floors/fl_hl_v1 0 0 0 1 1 0 2097152 0 +( 240 16 16 ) ( 240 16 80 ) ( 752 16 80 ) floors/fl_hl_v1a -110 0 90 1 1 0 0 0 +( 384 40 80 ) ( 384 16 64 ) ( 384 64 64 ) floors/fl_hl_v1a -109 -64 90 1 1 0 0 0 +( 448 48 80 ) ( 448 64 64 ) ( 448 32 64 ) floors/fl_hl_v1a -109 -64 90 1 1 0 0 0 +( 416 64 80 ) ( 384 64 64 ) ( 448 64 64 ) floors/fl_hl_v1a -110 0 90 1 1 0 0 0 +} +// brush 230 +{ +( 240 368 64 ) ( 240 176 64 ) ( 752 176 64 ) floors/fl_hl_v1 -30 0 0 0.500000 0.500000 0 0 0 +( 752 176 80 ) ( 240 176 80 ) ( 240 368 80 ) floors/fl_hl_v1a -64 -128 90 1 -1 0 2097152 0 +( 752 288 16 ) ( 752 288 80 ) ( 240 288 80 ) floors/fl_hl_v1 -30 32 0 0.500000 0.500000 0 0 0 +( 752 176 16 ) ( 752 176 80 ) ( 752 368 80 ) floors/fl_hl_v1 -30 32 0 0.500000 0.500000 0 0 0 +( 640 240 80 ) ( 640 112 64 ) ( 640 368 64 ) floors/fl_hl_v1 -30 32 0 0.500000 0.500000 0 0 0 +( 700 192 80 ) ( 752 192 64 ) ( 648 192 64 ) floors/fl_hl_v1 -30 32 0 0.500000 0.500000 0 0 0 +} +// brush 231 +{ +( 223 480 112 ) ( 224 480 112 ) ( 224 432 112 ) wood/wd_st_m7s 50 -64 90 1 1 0 0 0 +( 224 298 80 ) ( 224 298 208 ) ( 224 554 208 ) wood/wd_sr_va2 50 112 0 1 1 0 134250496 0 +( 72 432 64 ) ( 72 432 192 ) ( 200 432 192 ) wood/wd_st_m7s -16 8 0 1 1 0 134217728 0 +( 224 480 112 ) ( 223 480 112 ) ( 223 480 108 ) wood/wd_st_m7s -16 8 0 1 1 0 134217728 0 +( 224 432 108 ) ( 224 478 108 ) ( 222 478 108 ) wood/wd_st_m7s -16 38 0 1 1 0 134217728 0 +( 223 355 116 ) ( 223 353 108 ) ( 223 357 108 ) wood/wd_st_m7s -30 8 0 1 1 0 134217728 0 +} +// brush 232 +{ +( 224 544 112 ) ( 223 544 112 ) ( 223 560 112 ) wood/wd_st_m7s 0 -64 90 1 1 0 0 0 +( 224 376 80 ) ( 224 376 208 ) ( 224 632 208 ) wood/wd_sr_va2 0 112 0 1 1 0 134250496 0 +( 223 544 112 ) ( 224 544 112 ) ( 224 544 108 ) wood/wd_st_m7s -16 8 0 1 1 0 134217728 0 +( 152 560 80 ) ( 152 560 208 ) ( 24 560 208 ) wood/wd_st_m7s -16 8 0 1 1 0 134217728 0 +( 88 432 108 ) ( 96 560 108 ) ( 80 560 108 ) wood/wd_st_m7s -16 -40 0 1 1 0 134217728 0 +( 223 434 116 ) ( 223 432 108 ) ( 223 436 108 ) wood/wd_st_m7s 48 8 0 1 1 0 134217728 0 +} +// brush 233 +{ +( 240 272 64 ) ( 240 80 64 ) ( 752 80 64 ) floors/fl_hl_v1 -62 0 0 1 1 0 0 0 +( 752 80 80 ) ( 240 80 80 ) ( 240 272 80 ) floors/fl_hl_v1 0 0 0 1 1 0 2097152 0 +( 240 16 16 ) ( 240 16 80 ) ( 752 16 80 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 640 144 80 ) ( 640 272 64 ) ( 640 16 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 448 48 80 ) ( 448 32 64 ) ( 448 64 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 512 128 80 ) ( 448 128 64 ) ( 576 128 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +} +// brush 234 +{ +( 240 272 64 ) ( 240 80 64 ) ( 752 80 64 ) floors/fl_hl_v1 -62 0 0 1 1 0 0 0 +( 752 80 80 ) ( 240 80 80 ) ( 240 272 80 ) floors/fl_hl_v1 0 0 0 1 1 0 2097152 0 +( 752 272 16 ) ( 752 272 80 ) ( 240 272 80 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 640 144 80 ) ( 640 272 64 ) ( 640 16 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 512 128 80 ) ( 576 128 64 ) ( 448 128 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +( 576 144 80 ) ( 576 128 64 ) ( 576 160 64 ) floors/fl_hl_v1 -62 48 0 1 1 0 0 0 +} +// brush 235 +{ +( 240 272 64 ) ( 240 80 64 ) ( 752 80 64 ) floors/fl_hl_v1 -38 0 0 0.500000 0.500000 0 0 0 +( 752 80 80 ) ( 240 80 80 ) ( 240 272 80 ) floors/fl_hl_v1 -62 0 0 1 1 0 0 0 +( 752 272 16 ) ( 752 272 80 ) ( 240 272 80 ) floors/fl_hl_v1 -38 32 0 0.500000 0.500000 0 0 0 +( 448 48 80 ) ( 448 32 64 ) ( 448 64 64 ) floors/fl_hl_v1 -38 32 0 0.500000 0.500000 0 0 0 +( 576 144 80 ) ( 576 160 64 ) ( 576 128 64 ) floors/fl_hl_v1 -38 32 0 0.500000 0.500000 0 0 0 +( 560 256 80 ) ( 608 256 64 ) ( 512 256 64 ) floors/fl_hl_v1 -38 32 0 0.500000 0.500000 0 0 0 +} +// brush 236 +{ +( 240 272 64 ) ( 240 80 64 ) ( 752 80 64 ) floors/fl_hl_v1d -62 0 0 1 1 0 0 0 +( 752 80 80 ) ( 240 80 80 ) ( 240 272 80 ) floors/fl_hl_v1d 2 -64 90 1 1 0 2097152 0 +( 448 48 80 ) ( 448 32 64 ) ( 448 64 64 ) floors/fl_hl_v1d 2 48 0 1 1 0 0 0 +( 512 128 80 ) ( 576 128 64 ) ( 448 128 64 ) floors/fl_hl_v1d -62 48 0 1 1 0 0 0 +( 576 144 80 ) ( 576 160 64 ) ( 576 128 64 ) floors/fl_hl_v1d 2 48 0 1 1 0 0 0 +( 560 256 80 ) ( 512 256 64 ) ( 608 256 64 ) floors/fl_hl_v1d -62 48 0 1 1 0 0 0 +} +// brush 237 +{ +( 304 720 64 ) ( 304 528 64 ) ( 816 528 64 ) floors/fl_hl_v1 0 0 0 0.500000 0.500000 0 0 0 +( 816 528 80 ) ( 304 528 80 ) ( 304 720 80 ) floors/fl_hl_v1c 0 0 0 0.500000 0.500000 0 0 0 +( 768 797 48 ) ( 768 797 112 ) ( 768 989 112 ) floors/fl_hl_v1 0 32 0 0.500000 0.500000 0 0 0 +( 544 960 48 ) ( 736 960 112 ) ( 544 960 112 ) floors/fl_hl_v1 0 32 0 0.500000 0.500000 0 0 0 +( 596 896 80 ) ( 616 896 64 ) ( 576 896 64 ) floors/fl_hl_v1 0 32 0 0.500000 0.500000 0 0 0 +( 704 844 80 ) ( 704 832 64 ) ( 704 856 64 ) floors/fl_hl_v1 0 32 0 0.500000 0.500000 0 0 0 +} +// brush 238 +{ +( 752 896 80 ) ( 752 892 80 ) ( 768 892 80 ) wood/wd_sr_m3y -64 0 0 1 1 0 0 0 +( 768 896 192 ) ( 768 892 188 ) ( 752 892 188 ) wood/wd_sr_m3y -64 0 0 1 1 0 0 0 +( 768 896 80 ) ( 768 896 152 ) ( 752 896 152 ) wood/wd_sr_m3y -64 48 0 1 1 0 0 0 +( 768 896 80 ) ( 766 892 80 ) ( 766 892 188 ) wood/wd_sr_m3y 0 48 0 1 1 0 0 0 +( 754 892 188 ) ( 766 892 188 ) ( 766 892 80 ) wood/wd_sr_m3y -64 48 0 1 1 0 0 0 +( 752 896 192 ) ( 754 892 188 ) ( 754 892 80 ) wood/wd_sr_m3y 0 48 0 1 1 0 134217728 0 +} +// brush 239 +{ +( 754 772 188 ) ( 766 772 188 ) ( 766 892 188 ) wood/wd_sr_m3y 64 3 180 1 1 0 134217728 0 +( 752 768 192 ) ( 752 896 192 ) ( 768 896 192 ) wood/wd_sr_m3y 0 -60 90 1 1 0 0 0 +( 768 892 188 ) ( 768 896 192 ) ( 752 896 192 ) wood/wd_sr_m3y 0 -64 90 1 1 0 0 0 +( 768 896 192 ) ( 766 892 188 ) ( 766 772 188 ) wood/wd_sr_m3y -51 0 90 1 1 0 0 0 +( 768 768 192 ) ( 768 772 188 ) ( 752 772 188 ) wood/wd_sr_m3y 0 -64 90 1 1 0 0 0 +( 752 768 192 ) ( 754 772 188 ) ( 754 892 188 ) wood/wd_sr_m3y -51 0 90 1 1 0 134217728 0 +} +// brush 240 +{ +( 752 880 80 ) ( 752 876 80 ) ( 768 876 80 ) wood/wd_sr_m3y -64 4 0 1 1 0 0 0 +( 768 772 188 ) ( 768 768 192 ) ( 752 768 192 ) wood/wd_sr_m3y -64 4 0 1 1 0 0 0 +( 754 772 80 ) ( 766 772 80 ) ( 766 772 188 ) wood/wd_sr_m3y -64 44 0 1 1 0 134217728 0 +( 768 768 192 ) ( 766 772 188 ) ( 766 772 80 ) wood/wd_sr_m3y -4 44 0 1 1 0 0 0 +( 752 768 192 ) ( 768 768 192 ) ( 768 768 80 ) wood/wd_sr_m3y -64 44 0 1 1 0 0 0 +( 752 768 80 ) ( 754 772 80 ) ( 754 772 188 ) wood/wd_sr_m3y -4 44 0 1 1 0 134217728 0 +} +// brush 241 +{ +( 720 600 228 ) ( 720 568 228 ) ( 816 568 228 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 816 392 288 ) ( 720 392 288 ) ( 720 424 288 ) wood/wd_cp_v3 -44 -32 0 1 1 0 0 0 +( 816 624 276 ) ( 816 624 284 ) ( 720 624 284 ) wood/wd_sr_va3 0 32 0 1 1 0 0 3 +( 592 600 272 ) ( 592 600 280 ) ( 592 568 280 ) wood/wd_sr_va3 0 32 0 1 1 0 134217728 3 +( 720 560 232 ) ( 720 816 236 ) ( 720 816 228 ) wood/wd_sr_vy2 40 48 0 1 1 0 0 0 +( 604 604 228 ) ( 596 604 292 ) ( 604 604 292 ) wood/wd_sr_vy2 -24 48 0 1 1 0 0 0 +} +// brush 242 +{ +( 720 600 228 ) ( 720 568 228 ) ( 816 568 228 ) wood/wd_cp_v3 -44 -32 0 1 1 0 0 0 +( 816 392 288 ) ( 720 392 288 ) ( 720 424 288 ) wood/wd_cp_v3 -44 -32 0 1 1 0 0 0 +( 880 592 272 ) ( 880 592 280 ) ( 976 592 280 ) wood/wd_sr_va2d -64 99 0 1 1 0 0 0 +( 592 600 272 ) ( 592 600 280 ) ( 592 568 280 ) wood/wd_sr_va3 0 32 0 1 1 0 134217728 3 +( 604 596 228 ) ( 604 596 292 ) ( 604 604 292 ) wood/wd_sr_vy2 40 48 0 1 1 0 0 0 +( 596 596 228 ) ( 604 596 292 ) ( 596 596 292 ) wood/wd_sr_vy2 -24 48 0 1 1 0 0 0 +} +// brush 243 +{ +( 720 600 228 ) ( 720 568 228 ) ( 816 568 228 ) wood/wd_cp_v3 -44 -32 0 1 1 0 0 0 +( 816 392 288 ) ( 720 392 288 ) ( 720 424 288 ) wood/wd_cp_v3 -44 -32 0 1 1 0 0 0 +( 592 600 272 ) ( 592 600 280 ) ( 592 568 280 ) wood/wd_sr_va3 0 32 0 1 1 0 134217728 3 +( 604 604 228 ) ( 604 604 292 ) ( 596 604 292 ) wood/wd_sr_vy2 -24 48 0 1 1 0 0 0 +( 596 596 228 ) ( 596 596 292 ) ( 604 596 292 ) wood/wd_sr_vy2 -24 48 0 1 1 0 0 0 +( 596 604 228 ) ( 596 596 292 ) ( 596 604 292 ) wood/wd_sr_vy2 40 48 0 1 1 0 0 0 +} +// brush 244 +{ +( 720 600 228 ) ( 720 568 228 ) ( 816 568 228 ) wood/wd_cp_v3 -44 32 0 1 1 0 0 0 +( 816 392 288 ) ( 720 392 288 ) ( 720 424 288 ) wood/wd_cp_v3 -44 -32 0 1 1 0 0 0 +( 880 592 272 ) ( 880 592 280 ) ( 976 592 280 ) wood/wd_sr_va2d -64 99 0 1 1 0 0 0 +( 720 560 232 ) ( 720 816 236 ) ( 720 816 228 ) wood/wd_sr_vy2 40 48 0 1 1 0 0 0 +( 604 604 228 ) ( 604 604 292 ) ( 596 604 292 ) wood/wd_sr_vy2 -24 48 0 1 1 0 0 0 +( 668 596 228 ) ( 668 604 292 ) ( 668 596 292 ) wood/wd_sr_vy2 40 48 0 1 1 0 0 0 +} +// brush 245 +{ +( 720 600 228 ) ( 720 568 228 ) ( 816 568 228 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 816 392 288 ) ( 720 392 288 ) ( 720 424 288 ) wood/wd_cp_v3 -44 -32 0 1 1 0 0 0 +( 880 592 272 ) ( 880 592 280 ) ( 976 592 280 ) wood/wd_sr_va2d -64 99 0 1 1 0 0 0 +( 604 596 228 ) ( 604 604 292 ) ( 604 596 292 ) wood/wd_sr_vy2 40 48 0 1 1 0 0 0 +( 668 596 228 ) ( 668 596 292 ) ( 668 604 292 ) wood/wd_sr_vy2 40 48 0 1 1 0 0 0 +( 660 596 228 ) ( 668 596 292 ) ( 660 596 292 ) wood/wd_sr_vy2 -24 48 0 1 1 0 0 0 +} +// brush 246 +{ +( 720 600 228 ) ( 720 568 228 ) ( 816 568 228 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 816 392 288 ) ( 720 392 288 ) ( 720 424 288 ) wood/wd_cp_v3 -44 -32 0 1 1 0 0 0 +( 604 604 228 ) ( 604 604 292 ) ( 596 604 292 ) wood/wd_sr_vy2 -24 48 0 1 1 0 0 0 +( 604 596 228 ) ( 604 604 292 ) ( 604 596 292 ) wood/wd_sr_vy2 40 48 0 1 1 0 0 0 +( 660 596 228 ) ( 660 596 292 ) ( 668 596 292 ) wood/wd_sr_vy2 -24 48 0 1 1 0 0 0 +( 660 604 286 ) ( 660 596 350 ) ( 660 604 350 ) wood/wd_sr_vy2 40 48 0 1 1 0 0 0 +} +// brush 247 +{ +( 720 376 228 ) ( 720 344 228 ) ( 816 344 228 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 816 168 288 ) ( 720 168 288 ) ( 720 200 288 ) wood/wd_cp_v3 -44 64 0 1 1 0 0 0 +( 816 400 276 ) ( 816 400 284 ) ( 720 400 284 ) wood/wd_sr_va2d -64 99 0 1 1 0 0 0 +( 592 376 272 ) ( 592 376 280 ) ( 592 344 280 ) wood/wd_sr_va3 0 32 0 1 1 0 134217728 3 +( 720 336 232 ) ( 720 592 236 ) ( 720 592 228 ) wood/wd_sr_vy2 -56 48 0 1 1 0 0 0 +( 668 396 228 ) ( 660 396 292 ) ( 668 396 292 ) wood/wd_sr_vy2 -120 48 0 1 1 0 0 0 +} +// brush 248 +{ +( 720 376 228 ) ( 720 344 228 ) ( 816 344 228 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 816 168 288 ) ( 720 168 288 ) ( 720 200 288 ) wood/wd_cp_v3 -44 64 0 1 1 0 0 0 +( 880 368 272 ) ( 880 368 280 ) ( 976 368 280 ) wood/wd_sr_va3 0 32 0 1 1 0 134217728 3 +( 720 336 232 ) ( 720 592 236 ) ( 720 592 228 ) wood/wd_sr_vy2 -56 48 0 1 1 0 0 0 +( 668 396 228 ) ( 668 396 292 ) ( 660 396 292 ) wood/wd_sr_vy2 -120 48 0 1 1 0 0 0 +( 668 388 228 ) ( 668 396 292 ) ( 668 388 292 ) wood/wd_sr_vy2 -56 48 0 1 1 0 0 0 +} +// brush 249 +{ +( 720 376 228 ) ( 720 344 228 ) ( 816 344 228 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 816 168 288 ) ( 720 168 288 ) ( 720 200 288 ) wood/wd_cp_v3 -44 64 0 1 1 0 0 0 +( 880 368 272 ) ( 880 368 280 ) ( 976 368 280 ) wood/wd_sr_va3 0 32 0 1 1 0 134217728 3 +( 592 376 272 ) ( 592 376 280 ) ( 592 344 280 ) wood/wd_sr_va3 0 32 0 1 1 0 134217728 3 +( 668 388 228 ) ( 668 388 292 ) ( 668 396 292 ) wood/wd_sr_vy2 -56 48 0 1 1 0 0 0 +( 660 388 228 ) ( 668 388 292 ) ( 660 388 292 ) wood/wd_sr_vy2 -120 48 0 1 1 0 0 0 +} +// brush 250 +{ +( 720 376 228 ) ( 720 344 228 ) ( 816 344 228 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 816 168 288 ) ( 720 168 288 ) ( 720 200 288 ) wood/wd_cp_v3 -44 64 0 1 1 0 0 0 +( 668 396 228 ) ( 668 396 292 ) ( 660 396 292 ) wood/wd_sr_vy2 -120 48 0 1 1 0 0 0 +( 660 388 228 ) ( 660 388 292 ) ( 668 388 292 ) wood/wd_sr_vy2 -120 48 0 1 1 0 0 0 +( 660 396 286 ) ( 660 388 350 ) ( 660 396 350 ) wood/wd_sr_vy2 -56 48 0 1 1 0 0 0 +( 604 388 228 ) ( 604 396 292 ) ( 604 388 292 ) wood/wd_sr_vy2 -56 48 0 1 1 0 0 0 +} +// brush 251 +{ +( 720 376 228 ) ( 720 344 228 ) ( 816 344 228 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 816 168 288 ) ( 720 168 288 ) ( 720 200 288 ) wood/wd_cp_v3 -44 64 0 1 1 0 0 0 +( 592 376 272 ) ( 592 376 280 ) ( 592 344 280 ) wood/wd_sr_va3 0 32 0 1 1 0 134217728 3 +( 668 396 228 ) ( 668 396 292 ) ( 660 396 292 ) wood/wd_sr_vy2 -120 48 0 1 1 0 0 0 +( 660 388 228 ) ( 660 388 292 ) ( 668 388 292 ) wood/wd_sr_vy2 -120 48 0 1 1 0 0 0 +( 596 396 228 ) ( 596 388 292 ) ( 596 396 292 ) wood/wd_sr_vy2 -56 48 0 1 1 0 0 0 +} +// brush 252 +{ +( 256 464 -20 ) ( 256 464 76 ) ( 256 528 76 ) wood/wd_sr_va2 0 0 0 1 1 0 134217728 0 +( 80 518 -20 ) ( 80 518 76 ) ( 80 454 76 ) wood/wd_sr_va2 0 0 0 1 1 0 134217728 0 +( 200 432 -20 ) ( 200 432 76 ) ( 136 432 76 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 82 416 116 ) ( 86 416 104 ) ( 78 416 104 ) wood/wd_sr_va2 -64 0 0 1 1 0 134217728 0 +( 36 608 64 ) ( 48 720 64 ) ( 24 720 64 ) wood/wd_sr_va2 -64 -48 0 1 1 0 134217728 0 +( 253 416 160 ) ( 250 432 160 ) ( 256 432 160 ) wood/wd_sr_va2 -64 -48 0 1 1 0 134217728 0 +} +// brush 253 +{ +( 712 1024 152 ) ( 712 1008 152 ) ( 760 1008 152 ) wood/wd_sr_va2 -64 -16 0 1 1 0 134217728 0 +( 752 1008 160 ) ( 704 1008 160 ) ( 704 1024 160 ) wood/wd_sr_va2 -64 -16 0 1 1 0 134217728 0 +( 752 1024 80 ) ( 752 1024 160 ) ( 704 1024 160 ) wood/wd_sr_va2 -64 32 0 1 1 0 134217728 0 +( 752 1008 80 ) ( 752 1008 160 ) ( 752 1024 160 ) wood/wd_sr_va2 0 32 0 1 1 0 134217728 0 +( 704 1008 80 ) ( 704 1008 160 ) ( 752 1008 160 ) wood/wd_sr_va2 -64 32 0 1 1 0 134217728 0 +( 704 1024 80 ) ( 704 1024 160 ) ( 704 1008 160 ) wood/wd_sr_va2 0 32 0 1 1 0 134217728 0 +} +// brush 254 +{ +( 324 160 123 ) ( 316 168 123 ) ( 316 168 119 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 134217728 0 0 +( 320 172 123 ) ( 308 172 123 ) ( 308 172 119 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 134217728 0 0 +( 308 176 123 ) ( 300 168 123 ) ( 300 168 119 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 134217728 0 0 +( 296 172 123 ) ( 296 160 123 ) ( 296 160 119 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 134217728 0 0 +( 292 160 123 ) ( 300 152 123 ) ( 300 152 119 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 134217728 0 0 +( 296 148 123 ) ( 308 148 123 ) ( 308 148 119 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 134217728 0 0 +( 308 144 123 ) ( 316 152 123 ) ( 316 152 119 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 134217728 0 0 +( 320 148 123 ) ( 320 160 123 ) ( 320 160 119 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 134217728 0 0 +( 296 172 120 ) ( 320 172 120 ) ( 320 148 120 ) props/stool_t2 -32 50 0 0.370000 0.370000 134217728 0 0 +( 299 148 112 ) ( 302 172 112 ) ( 296 172 112 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 134217728 8388608 0 +} +// brush 255 +{ +( 688 652 155 ) ( 680 660 155 ) ( 680 660 151 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 0 0 0 +( 684 664 155 ) ( 672 664 155 ) ( 672 664 151 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 0 0 0 +( 672 668 155 ) ( 664 660 155 ) ( 664 660 151 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 0 0 0 +( 660 664 155 ) ( 660 652 155 ) ( 660 652 151 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 0 0 0 +( 656 652 155 ) ( 664 644 155 ) ( 664 644 151 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 0 0 0 +( 660 640 153 ) ( 672 640 153 ) ( 672 640 149 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 0 0 0 +( 672 636 155 ) ( 680 644 155 ) ( 680 644 151 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 0 0 0 +( 684 640 155 ) ( 684 652 155 ) ( 684 652 151 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 0 0 0 +( 660 664 152 ) ( 684 664 152 ) ( 684 640 152 ) props/stool_t2 -54 1 0 0.370000 0.370000 0 2097152 0 +( 684 662 144 ) ( 660 664 144 ) ( 660 660 144 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 0 8388608 0 +} +// brush 256 +{ +( 624 652 153 ) ( 616 660 153 ) ( 616 660 149 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 0 0 0 +( 620 664 155 ) ( 608 664 155 ) ( 608 664 151 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 0 0 0 +( 608 668 155 ) ( 600 660 155 ) ( 600 660 151 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 0 0 0 +( 596 664 155 ) ( 596 652 155 ) ( 596 652 151 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 0 0 0 +( 592 652 155 ) ( 600 644 155 ) ( 600 644 151 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 0 0 0 +( 596 640 153 ) ( 608 640 153 ) ( 608 640 149 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 0 0 0 +( 608 636 153 ) ( 616 644 153 ) ( 616 644 149 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 0 0 0 +( 620 640 153 ) ( 620 652 153 ) ( 620 652 149 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 0 0 0 +( 596 664 152 ) ( 620 664 152 ) ( 620 640 152 ) props/stool_t2 -9 2 0 0.370000 0.370000 0 2097152 0 +( 620 662 144 ) ( 596 664 144 ) ( 596 660 144 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 0 8388608 0 +} +// brush 257 +{ +( 592 340 155 ) ( 584 348 155 ) ( 584 348 151 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 134217728 0 0 +( 588 352 155 ) ( 576 352 155 ) ( 576 352 151 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 134217728 0 0 +( 576 356 155 ) ( 568 348 155 ) ( 568 348 151 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 134217728 0 0 +( 564 352 155 ) ( 564 340 155 ) ( 564 340 151 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 134217728 0 0 +( 560 340 155 ) ( 568 332 155 ) ( 568 332 151 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 134217728 0 0 +( 564 328 155 ) ( 576 328 155 ) ( 576 328 151 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 134217728 0 0 +( 576 324 155 ) ( 584 332 155 ) ( 584 332 151 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 134217728 0 0 +( 588 328 155 ) ( 588 340 155 ) ( 588 340 151 ) props2/sh_rc_c02f 0 0 0 0.250000 0.250000 134217728 0 0 +( 564 352 152 ) ( 588 352 152 ) ( 588 328 152 ) props/stool_t2 -51 13 0 0.370000 0.370000 134217728 2097152 0 +( 568 328 144 ) ( 570 352 144 ) ( 566 352 144 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 134217728 8388608 0 +} +// brush 258 +{ +( 310 102 81 ) ( 310 99 94 ) ( 306 99 94 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 306 102 81 ) ( 306 99 94 ) ( 306 95 94 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 306 98 81 ) ( 306 95 94 ) ( 310 95 94 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 310 98 81 ) ( 310 95 94 ) ( 310 99 94 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 310 100 81 ) ( 310 104 81 ) ( 306 104 81 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 134217728 8388608 0 +( 306 100 94 ) ( 310 100 94 ) ( 310 96 94 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 134217728 8388608 0 +} +// brush 259 +{ +( 310 99 94 ) ( 310 103 101 ) ( 306 103 101 ) metals/mt_mf_v1c 0 34 0 0.100000 0.100000 134217728 8388608 0 +( 306 99 94 ) ( 306 104 103 ) ( 306 100 103 ) metals/mt_mf_v1c -30 34 0 0.100000 0.100000 134217728 8388608 0 +( 306 95 94 ) ( 306 100 103 ) ( 310 100 103 ) metals/mt_mf_v1c 0 34 0 0.100000 0.100000 134217728 8388608 0 +( 310 95 94 ) ( 310 100 103 ) ( 310 104 103 ) metals/mt_mf_v1c -30 34 0 0.100000 0.100000 134217728 8388608 0 +( 310 97 94 ) ( 310 101 94 ) ( 306 101 94 ) metals/mt_mf_v1c 0 30 0 0.100000 0.100000 134217728 8388608 0 +( 306 100 103 ) ( 306 103 101 ) ( 310 103 101 ) metals/mt_mf_v1c 0 30 0 0.100000 0.100000 134217728 8388608 0 +} +// brush 260 +{ +( 64 288 64 ) ( 64 256 64 ) ( 96 256 64 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 96 256 128 ) ( 64 256 128 ) ( 64 288 128 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 96 288 64 ) ( 96 288 128 ) ( 64 288 128 ) bricks/b_hl_v2 -64 48 0 1 1 0 0 0 +( 64 288 64 ) ( 64 288 128 ) ( 64 256 128 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 84 268 128 ) ( 104 288 64 ) ( 64 248 64 ) wood/wd_sr_va2a 0 1 0 1 1 0 0 0 +} +// brush 261 +{ +( 528 648 80 ) ( 464 648 80 ) ( 464 584 80 ) wood/wd_sr_va2 -64 -16 0 1 1 0 134217728 0 +( 352 672 -52 ) ( 352 672 44 ) ( 352 736 44 ) wood/wd_sr_va2e -3 49 0 1 1 0 134217728 0 +( 348 704 152 ) ( 344 848 152 ) ( 352 848 152 ) wood/wd_sr_va2 -64 -16 0 1 1 0 134217728 0 +( 361 864 156 ) ( 345 864 160 ) ( 345 864 152 ) wood/wd_sr_va2 -64 32 0 1 1 0 134217728 0 +( 352 856 164 ) ( 336 856 160 ) ( 336 856 168 ) wood/wd_sr_va2 -64 32 0 1 1 0 134217728 0 +( 351 856 80 ) ( 351 944 152 ) ( 351 856 152 ) wood/wd_sr_va2 0 32 0 1 1 0 134217728 0 +} +// brush 262 +{ +( 622 658 113 ) ( 610 658 113 ) ( 610 658 112 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 0 8388608 0 +( 602 662 113 ) ( 602 650 113 ) ( 602 650 112 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 0 8388608 0 +( 596 646 113 ) ( 608 646 113 ) ( 608 646 112 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 0 8388608 0 +( 614 640 113 ) ( 614 652 113 ) ( 614 652 112 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 0 8388608 0 +( 620 640 104 ) ( 620 664 104 ) ( 596 664 104 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 0 8388608 0 +( 596 664 112 ) ( 620 664 112 ) ( 620 640 112 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 0 8388608 0 +} +// brush 263 +{ +( 684 658 113 ) ( 672 658 113 ) ( 672 658 112 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 0 8388608 0 +( 666 664 104 ) ( 666 652 104 ) ( 666 652 103 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 0 8388608 0 +( 660 646 113 ) ( 672 646 113 ) ( 672 646 112 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 0 8388608 0 +( 678 640 113 ) ( 678 652 113 ) ( 678 652 112 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 0 8388608 0 +( 684 640 104 ) ( 684 664 104 ) ( 660 664 104 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 0 8388608 0 +( 660 664 112 ) ( 684 664 112 ) ( 684 640 112 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 0 8388608 0 +} +// brush 264 +{ +( 688 208 112 ) ( 368 208 112 ) ( 368 784 112 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 448 764 48 ) ( 448 764 112 ) ( 448 188 112 ) wood/wd_sr_va2 0 112 0 1 1 0 134250496 0 +( 472 680 112 ) ( 448 656 80 ) ( 496 704 80 ) wood/wd_sr_va2 0 112 0 1 1 0 134250496 0 +( 584 592 108 ) ( 584 400 108 ) ( 616 400 108 ) wood/wd_sr_va2 -64 64 0 1 1 0 0 0 +( 616 592 88 ) ( 584 592 136 ) ( 616 592 136 ) wood/wd_sr_va2 -64 112 0 1 1 0 0 0 +( 622 658 113 ) ( 610 658 113 ) ( 610 658 112 ) wood/wd_sr_va2 -64 112 0 1 1 0 0 0 +( 602 662 113 ) ( 602 650 112 ) ( 602 650 113 ) wood/wd_sr_va2 0 112 0 1 1 0 0 0 +} +// brush 265 +{ +( 688 208 112 ) ( 368 208 112 ) ( 368 784 112 ) wood/wd_st_m7s -64 0 0 1 1 0 0 0 +( 752 208 48 ) ( 752 208 112 ) ( 752 784 112 ) wood/wd_st_m7s 0 96 0 0.500000 0.500000 0 0 0 +( 584 592 104 ) ( 584 400 104 ) ( 616 400 104 ) wood/wd_sr_va2 -64 64 0 1 1 0 0 0 +( 616 592 88 ) ( 584 592 136 ) ( 616 592 136 ) wood/wd_sr_va2 -64 112 0 1 1 0 0 0 +( 602 662 113 ) ( 602 650 113 ) ( 602 650 112 ) wood/wd_sr_va2 0 112 0 1 1 0 0 0 +( 596 646 113 ) ( 608 646 112 ) ( 608 646 113 ) wood/wd_sr_va2 -64 112 0 1 1 0 0 0 +} +// brush 266 +{ +( 688 208 112 ) ( 368 208 112 ) ( 368 784 112 ) wood/wd_st_m7s -64 0 0 1 1 0 0 0 +( 584 592 104 ) ( 584 400 104 ) ( 616 400 104 ) wood/wd_sr_va2 -64 64 0 1 1 0 0 0 +( 622 658 113 ) ( 610 658 113 ) ( 610 658 112 ) wood/wd_sr_va2 -64 112 0 1 1 0 0 0 +( 596 646 113 ) ( 608 646 113 ) ( 608 646 112 ) wood/wd_sr_va2 -64 112 0 1 1 0 0 0 +( 614 640 113 ) ( 614 652 112 ) ( 614 652 113 ) wood/wd_sr_va2 0 112 0 1 1 0 0 0 +( 666 664 104 ) ( 666 652 103 ) ( 666 652 104 ) wood/wd_sr_va2 0 112 0 1 1 0 0 0 +} +// brush 267 +{ +( 688 208 112 ) ( 368 208 112 ) ( 368 784 112 ) wood/wd_st_m7s -64 0 0 1 1 0 0 0 +( 752 208 48 ) ( 752 208 112 ) ( 752 784 112 ) wood/wd_st_m7s 0 96 0 0.500000 0.500000 0 0 0 +( 584 592 104 ) ( 584 400 104 ) ( 616 400 104 ) wood/wd_sr_va2 -64 64 0 1 1 0 0 0 +( 622 658 113 ) ( 610 658 113 ) ( 610 658 112 ) wood/wd_sr_va2 -64 112 0 1 1 0 0 0 +( 596 646 113 ) ( 608 646 113 ) ( 608 646 112 ) wood/wd_sr_va2 -64 112 0 1 1 0 0 0 +( 678 640 113 ) ( 678 652 112 ) ( 678 652 113 ) wood/wd_sr_va2 0 112 0 1 1 0 0 0 +} +// brush 268 +{ +( 588 346 112 ) ( 576 346 112 ) ( 576 346 111 ) metals/mt_mf_v1c -44 22 0 0.100000 0.100000 0 8388608 0 +( 570 350 112 ) ( 570 338 112 ) ( 570 338 111 ) metals/mt_mf_v1c 0 22 0 0.100000 0.100000 0 8388608 0 +( 562 334 112 ) ( 574 334 112 ) ( 574 334 111 ) metals/mt_mf_v1c -44 22 0 0.100000 0.100000 0 8388608 0 +( 582 328 112 ) ( 582 340 112 ) ( 582 340 111 ) metals/mt_mf_v1c 0 22 0 0.100000 0.100000 0 8388608 0 +( 586 328 104 ) ( 586 352 104 ) ( 562 352 104 ) metals/mt_mf_v1c -44 0 0 0.100000 0.100000 0 8388608 0 +( 562 352 112 ) ( 586 352 112 ) ( 586 328 112 ) metals/mt_mf_v1c -44 0 0 0.100000 0.100000 0 8388608 0 +} +// brush 269 +{ +( 648 346 112 ) ( 636 346 112 ) ( 636 346 111 ) metals/mt_mf_v1c -24 22 0 0.100000 0.100000 0 8388608 0 +( 634 346 105 ) ( 634 334 105 ) ( 634 334 104 ) metals/mt_mf_v1c -20 22 0 0.100000 0.100000 0 8388608 0 +( 624 334 112 ) ( 636 334 112 ) ( 636 334 111 ) metals/mt_mf_v1c -24 22 0 0.100000 0.100000 0 8388608 0 +( 646 326 112 ) ( 646 338 112 ) ( 646 338 111 ) metals/mt_mf_v1c -20 22 0 0.100000 0.100000 0 8388608 0 +( 648 326 104 ) ( 648 350 104 ) ( 624 350 104 ) metals/mt_mf_v1c -24 20 0 0.100000 0.100000 0 8388608 0 +( 624 350 112 ) ( 648 350 112 ) ( 648 326 112 ) metals/mt_mf_v1c -24 20 0 0.100000 0.100000 0 8388608 0 +} +// brush 270 +{ +( 688 208 112 ) ( 368 208 112 ) ( 368 784 112 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 752 208 48 ) ( 752 208 112 ) ( 752 784 112 ) wood/wd_st_m7s 0 48 0 1 1 0 0 0 +( 448 764 48 ) ( 448 764 112 ) ( 448 188 112 ) wood/wd_sr_va2 0 112 0 1 1 0 134250496 0 +( 584 592 108 ) ( 584 400 108 ) ( 616 400 108 ) wood/wd_st_m7s -64 0 0 1 1 0 0 0 +( 584 400 88 ) ( 616 400 136 ) ( 584 400 136 ) wood/wd_st_m7s -64 48 0 1 1 0 0 0 +( 648 346 112 ) ( 636 346 111 ) ( 636 346 112 ) wood/wd_st_m7s -64 48 0 1 1 0 0 0 +} +// brush 271 +{ +( 688 208 112 ) ( 368 208 112 ) ( 368 784 112 ) wood/wd_st_m7s -64 0 0 1 1 0 0 0 +( 752 208 48 ) ( 752 208 112 ) ( 752 784 112 ) wood/wd_st_m7s 0 48 0 1 1 0 0 0 +( 384 288 48 ) ( 384 288 112 ) ( 704 288 112 ) wood/wd_sr_va2 -64 104 0 1 1 0 134250496 0 +( 584 592 108 ) ( 584 400 108 ) ( 616 400 108 ) wood/wd_st_m7s -64 0 0 1 1 0 0 0 +( 634 346 109 ) ( 634 334 109 ) ( 634 334 108 ) wood/wd_st_m7s 0 48 0 1 1 0 0 0 +( 624 334 112 ) ( 636 334 111 ) ( 636 334 112 ) wood/wd_st_m7s -64 48 0 1 1 0 0 0 +} +// brush 272 +{ +( 688 208 112 ) ( 368 208 112 ) ( 368 784 112 ) wood/wd_st_m7s -64 0 0 1 1 0 0 0 +( 752 208 48 ) ( 752 208 112 ) ( 752 784 112 ) wood/wd_st_m7s 0 48 0 1 1 0 0 0 +( 584 592 104 ) ( 584 400 104 ) ( 616 400 104 ) wood/wd_st_m7s -64 0 0 1 1 0 0 0 +( 648 346 112 ) ( 636 346 112 ) ( 636 346 111 ) wood/wd_st_m7s -64 48 0 1 1 0 0 0 +( 624 334 112 ) ( 636 334 112 ) ( 636 334 111 ) wood/wd_st_m7s -64 48 0 1 1 0 0 0 +( 646 326 112 ) ( 646 338 111 ) ( 646 338 112 ) wood/wd_st_m7s 0 48 0 1 1 0 0 0 +} +// brush 273 +{ +( 688 208 112 ) ( 368 208 112 ) ( 368 784 112 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 384 288 48 ) ( 384 288 112 ) ( 704 288 112 ) wood/wd_sr_va2 -64 104 0 1 1 0 134250496 0 +( 584 592 108 ) ( 584 400 108 ) ( 616 400 108 ) wood/wd_st_m7s -64 0 0 1 1 0 0 0 +( 634 346 109 ) ( 634 334 108 ) ( 634 334 109 ) wood/wd_st_m7s 0 48 0 1 1 0 0 0 +( 570 350 116 ) ( 570 338 116 ) ( 570 338 115 ) wood/wd_st_m7s 0 48 0 1 1 0 0 0 +( 562 334 112 ) ( 574 334 111 ) ( 574 334 112 ) wood/wd_st_m7s -64 48 0 1 1 0 0 0 +} +// brush 274 +{ +( 688 208 112 ) ( 368 208 112 ) ( 368 784 112 ) wood/wd_st_m7s -64 0 0 1 1 0 0 0 +( 584 592 104 ) ( 584 400 104 ) ( 616 400 104 ) wood/wd_st_m7s -64 0 0 1 1 0 0 0 +( 648 346 112 ) ( 636 346 112 ) ( 636 346 111 ) wood/wd_st_m7s -64 48 0 1 1 0 0 0 +( 634 346 105 ) ( 634 334 104 ) ( 634 334 105 ) wood/wd_st_m7s 0 48 0 1 1 0 0 0 +( 562 334 112 ) ( 574 334 112 ) ( 574 334 111 ) wood/wd_st_m7s -64 48 0 1 1 0 0 0 +( 582 328 112 ) ( 582 340 111 ) ( 582 340 112 ) wood/wd_st_m7s 0 48 0 1 1 0 0 0 +} +// brush 275 +{ +( 720 604 192 ) ( 720 372 192 ) ( 768 372 192 ) wood/wd_sr_vy2 -88 0 0 1 1 0 0 0 +( 768 368 196 ) ( 720 368 196 ) ( 720 600 196 ) wood/wd_sr_vy2 -88 0 0 1 1 0 0 0 +( 732 596 192 ) ( 732 596 196 ) ( 732 364 196 ) wood/wd_sr_vy2 -71 0 90 1 1 0 0 0 +( 744 600 166 ) ( 736 600 168 ) ( 736 600 164 ) wood/wd_sr_vy2 -72 -64 90 1 1 0 0 0 +( 744 400 168 ) ( 736 400 164 ) ( 736 400 172 ) wood/wd_sr_vy2 -72 -64 90 1 1 0 0 0 +( 752 408 168 ) ( 752 596 176 ) ( 752 596 160 ) wood/wd_sr_vy2 -71 0 90 1 1 0 0 0 +} +// brush 276 +{ +( 864 781 240 ) ( 864 845 240 ) ( 928 845 240 ) bricks/b_hl_v2 -64 16 0 1 1 0 0 0 +( 768 160 28 ) ( 768 160 124 ) ( 768 224 124 ) wood/wd_sr_vy2 17 15 180 1 -1 0 0 0 +( -158 0 132 ) ( -154 0 120 ) ( -162 0 120 ) wood/wd_sr_vy2 97 16 180 1 -1 0 0 0 +( 384 4 304 ) ( 384 -8 128 ) ( 384 16 128 ) wood/wd_sr_vy2 32 64 180 1 -1 0 0 0 +( 768 13 160 ) ( 384 16 160 ) ( 384 10 160 ) bricks/b_hl_v2 -32 16 0 1 1 0 0 0 +( 768 16 236 ) ( 384 16 240 ) ( 384 16 232 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +} +// brush 277 +{ +( 864 776 272 ) ( 864 840 272 ) ( 928 840 272 ) wood/wd_sr_vy2 97 -5 180 1 -1 0 0 0 +( 416 160 28 ) ( 416 160 124 ) ( 416 224 124 ) bricks/b_hl_v2 0 64 0 1 1 0 0 0 +( 384 16 272 ) ( 384 16 232 ) ( 416 16 232 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 384 4 304 ) ( 384 -8 128 ) ( 384 16 128 ) wood/wd_sr_vy2 32 64 180 1 -1 0 0 0 +( 416 8 285 ) ( 384 8 281 ) ( 384 8 289 ) wood/wd_sr_vy2 96 64 180 1 -1 0 0 0 +( 416 12 240 ) ( 384 16 240 ) ( 384 8 240 ) wood/wd_sr_vy2 96 17 180 1 -1 0 0 0 +} +// brush 278 +{ +( 1088 776 272 ) ( 1088 840 272 ) ( 1152 840 272 ) wood/wd_sr_vy2 65 -5 180 1 -1 0 0 0 +( 672 160 28 ) ( 672 160 124 ) ( 672 224 124 ) bricks/b_hl_v2 0 64 0 1 1 0 0 0 +( 608 16 272 ) ( 608 16 232 ) ( 672 16 232 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 608 4 304 ) ( 608 -8 128 ) ( 608 16 128 ) bricks/b_hl_v2 0 64 0 1 1 0 0 0 +( 672 8 284 ) ( 608 8 280 ) ( 608 8 288 ) bricks/b_hl_v2 -64 64 0 1 1 0 0 0 +( 672 12 240 ) ( 608 16 240 ) ( 608 8 240 ) bricks/b_hl_v2 -64 16 0 1 1 0 0 0 +} +// brush 279 +{ +( 960 776 272 ) ( 960 840 272 ) ( 1024 840 272 ) wood/wd_sr_vy2 65 -5 180 1 -1 0 0 0 +( 544 160 28 ) ( 544 160 124 ) ( 544 224 124 ) bricks/b_hl_v2 0 64 0 1 1 0 0 0 +( 480 16 272 ) ( 480 16 232 ) ( 544 16 232 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 480 4 304 ) ( 480 -8 128 ) ( 480 16 128 ) bricks/b_hl_v2 0 64 0 1 1 0 0 0 +( 544 8 268 ) ( 480 8 264 ) ( 480 8 272 ) bricks/b_hl_v2 -64 64 0 1 1 0 0 0 +( 544 12 240 ) ( 480 16 240 ) ( 480 8 240 ) bricks/b_hl_v2 -64 16 0 1 1 0 0 0 +} +// brush 280 +{ +( 1184 776 272 ) ( 1184 840 272 ) ( 1248 840 272 ) wood/wd_sr_vy2 33 -5 180 1 -1 0 0 0 +( 768 160 28 ) ( 768 160 124 ) ( 768 224 124 ) wood/wd_sr_vy2 17 15 180 1 -1 0 0 0 +( 737 16 288 ) ( 737 16 248 ) ( 769 16 248 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +( 736 4 304 ) ( 736 -8 128 ) ( 736 16 128 ) bricks/b_hl_v2 0 64 0 1 1 0 0 0 +( 768 8 268 ) ( 736 8 264 ) ( 736 8 272 ) bricks/b_hl_v2 -64 64 0 1 1 0 0 0 +( 768 12 240 ) ( 736 16 240 ) ( 736 8 240 ) bricks/b_hl_v2 -64 16 0 1 1 0 0 0 +} +// brush 281 +{ +( 768 752 160 ) ( 768 736 160 ) ( 880 736 160 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 880 736 240 ) ( 768 736 240 ) ( 768 752 240 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 880 752 160 ) ( 880 752 240 ) ( 768 752 240 ) wood/wd_sr_va2 0 -48 0 1 1.200000 0 0 0 +( 896 720 160 ) ( 896 720 240 ) ( 896 736 240 ) wood/wd_sr_va2 0 -48 0 1 1.200000 0 0 0 +( 768 736 160 ) ( 768 736 240 ) ( 880 736 240 ) bricks/b_hl_v2 -64 48 0 1 1 0 0 0 +( 768 752 160 ) ( 768 752 240 ) ( 768 736 240 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +} +// brush 282 +{ +( 768 752 80 ) ( 768 736 80 ) ( 880 736 80 ) wood/wd_sr_va2 -64 -16 0 1 1 0 134217728 0 +( 880 736 160 ) ( 768 736 160 ) ( 768 752 160 ) wood/wd_sr_va2 -64 -16 0 1 1 0 134217728 0 +( 880 752 80 ) ( 880 752 160 ) ( 768 752 160 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 896 720 80 ) ( 896 720 160 ) ( 896 736 160 ) wood/wd_sr_va2b 0 32 0 1 1 0 0 0 +( 768 736 80 ) ( 768 736 160 ) ( 880 736 160 ) wood/wd_sr_va2 -64 32 0 1 1 0 134217728 0 +( 768 752 80 ) ( 768 752 160 ) ( 768 736 160 ) wood/wd_sr_va2 0 32 0 1 1 0 134217728 0 +} +// brush 283 +{ +( 768 928 80 ) ( 768 912 80 ) ( 880 912 80 ) wood/wd_sr_va2 -64 64 0 1 1 0 134217728 0 +( 880 912 160 ) ( 768 912 160 ) ( 768 928 160 ) wood/wd_sr_va2 -64 64 0 1 1 0 134217728 0 +( 880 928 80 ) ( 880 928 160 ) ( 768 928 160 ) wood/wd_sr_va2 -64 32 0 1 1 0 134217728 0 +( 1024 912 80 ) ( 1024 912 160 ) ( 1024 928 160 ) wood/wd_sr_va2 48 32 0 1 1 0 134217728 0 +( 768 912 80 ) ( 768 912 160 ) ( 880 912 160 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 768 928 80 ) ( 768 928 160 ) ( 768 912 160 ) wood/wd_sr_va2 48 32 0 1 1 0 134217728 0 +} +// brush 284 +{ +( 768 928 160 ) ( 768 912 160 ) ( 880 912 160 ) bricks/b_hl_v2 -64 -48 0 1 1 0 0 0 +( 880 912 240 ) ( 768 912 240 ) ( 768 928 240 ) bricks/b_hl_v2 -64 -48 0 1 1 0 0 0 +( 880 928 160 ) ( 880 928 240 ) ( 768 928 240 ) bricks/b_hl_v2 -64 48 0 1 1 0 0 0 +( 1024 912 160 ) ( 1024 912 240 ) ( 1024 928 240 ) bricks/b_hl_v2 48 48 0 1 1 0 0 0 +( 768 912 160 ) ( 768 912 240 ) ( 880 912 240 ) wood/wd_sr_va2 0 -48 0 1 1.200000 0 0 0 +( 768 928 160 ) ( 768 928 240 ) ( 768 912 240 ) bricks/b_hl_v2 48 48 0 1 1 0 0 0 +} +// brush 285 +{ +( 304 656 64 ) ( 304 464 64 ) ( 816 464 64 ) floors/fl_hl_v1 0 0 0 0.500000 0.500000 0 0 0 +( 816 464 80 ) ( 304 464 80 ) ( 304 656 80 ) wood/wd_sr_m3y -64 -4 0 1 1 0 0 0 +( 768 733 48 ) ( 768 733 112 ) ( 768 925 112 ) floors/fl_hl_v1 0 32 0 0.500000 0.500000 0 0 0 +( 544 896 48 ) ( 736 896 112 ) ( 544 896 112 ) floors/fl_hl_v1 0 32 0 0.500000 0.500000 0 0 0 +( 596 832 80 ) ( 616 832 64 ) ( 576 832 64 ) floors/fl_hl_v1 0 32 0 0.500000 0.500000 0 0 0 +( 752 776 80 ) ( 752 768 64 ) ( 752 784 64 ) floors/fl_hl_v1 0 32 0 0.500000 0.500000 0 0 0 +} +// brush 286 +{ +( 240 720 64 ) ( 240 528 64 ) ( 752 528 64 ) floors/fl_hl_v1a -62 46 0 1 1 0 0 0 +( 752 528 80 ) ( 240 528 80 ) ( 240 720 80 ) floors/fl_hl_v1d -126 64 0 1 1 0 2097152 0 +( 240 720 16 ) ( 240 720 80 ) ( 752 720 80 ) floors/fl_hl_v1a -62 94 0 1 1 0 0 0 +( 532 832 80 ) ( 512 832 64 ) ( 552 832 64 ) floors/fl_hl_v1a -62 94 0 1 1 0 0 0 +( 640 781 80 ) ( 640 728 64 ) ( 640 834 64 ) floors/fl_hl_v1a 2 94 0 1 1 0 0 0 +( 752 776 80 ) ( 752 784 64 ) ( 752 768 64 ) floors/fl_hl_v1a 2 94 0 1 1 0 0 0 +} +// brush 287 +{ +( 240 720 64 ) ( 240 528 64 ) ( 752 528 64 ) floors/fl_hl_v1a -64 46 0 1 1 0 0 0 +( 752 528 80 ) ( 240 528 80 ) ( 240 720 80 ) wood/wd_sr_m3y -64 -4 0 1 1 0 134217728 0 +( 240 720 16 ) ( 240 720 80 ) ( 752 720 80 ) floors/fl_hl_v1a -64 94 0 1 1 0 0 0 +( 768 797 48 ) ( 768 797 112 ) ( 768 989 112 ) floors/fl_hl_v1a 0 94 0 1 1 0 0 0 +( 532 832 80 ) ( 512 832 64 ) ( 552 832 64 ) floors/fl_hl_v1a -64 94 0 1 1 0 0 0 +( 752 776 80 ) ( 752 768 64 ) ( 752 784 64 ) floors/fl_hl_v1a 0 94 0 1 1 0 0 0 +} +// brush 288 +{ +( 768 736 80 ) ( 768 720 80 ) ( 880 720 80 ) wood/wd_sr_va2 -64 0 0 1 1 0 134217728 0 +( 880 720 160 ) ( 768 720 160 ) ( 768 736 160 ) wood/wd_sr_va2 -64 0 0 1 1 0 134217728 0 +( 880 736 80 ) ( 880 736 160 ) ( 768 736 160 ) wood/wd_sr_va2 -64 32 0 1 1 0 134217728 0 +( 896 704 80 ) ( 896 704 160 ) ( 896 720 160 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 768 512 80 ) ( 768 512 160 ) ( 880 512 160 ) wood/wd_sr_va2 -64 32 0 1 1 0 134217728 0 +( 880 736 80 ) ( 880 736 160 ) ( 880 720 160 ) wood/wd_sr_va2 -16 32 0 1 1 0 134217728 0 +} +// brush 289 +{ +( 768 736 160 ) ( 768 720 160 ) ( 880 720 160 ) bricks/b_hl_v2 -64 16 0 1 1 0 0 0 +( 880 720 240 ) ( 768 720 240 ) ( 768 736 240 ) bricks/b_hl_v2 -64 16 0 1 1 0 0 0 +( 880 736 160 ) ( 880 736 240 ) ( 768 736 240 ) bricks/b_hl_v2 -64 48 0 1 1 0 0 0 +( 896 704 160 ) ( 896 704 240 ) ( 896 720 240 ) wood/wd_sr_va2 0 -48 0 1 1.200000 0 0 0 +( 768 512 160 ) ( 768 512 240 ) ( 880 512 240 ) bricks/b_hl_v2 -64 48 0 1 1 0 0 0 +( 880 736 160 ) ( 880 736 240 ) ( 880 720 240 ) bricks/b_hl_v2 -16 48 0 1 1 0 0 0 +} +// brush 290 +{ +( 768 720 160 ) ( 768 704 160 ) ( 880 704 160 ) bricks/b_hl_v2 -64 32 0 1 1 0 0 0 +( 880 704 240 ) ( 768 704 240 ) ( 768 720 240 ) bricks/b_hl_v2 -64 32 0 1 1 0 0 0 +( 864 512 160 ) ( 864 512 240 ) ( 752 512 240 ) wood/wd_sr_va2 0 -48 0 1 1.200000 0 0 0 +( 1024 688 160 ) ( 1024 688 240 ) ( 1024 704 240 ) bricks/b_hl_v2 -32 48 0 1 1 0 0 0 +( 896 496 160 ) ( 896 496 240 ) ( 1008 496 240 ) bricks/b_hl_v2 -64 48 0 1 1 0 0 0 +( 880 720 160 ) ( 880 720 240 ) ( 880 704 240 ) bricks/b_hl_v2 -32 48 0 1 1 0 0 0 +} +// brush 291 +{ +( 768 720 80 ) ( 768 704 80 ) ( 880 704 80 ) wood/wd_sr_va2d -64 0 0 1 1 0 0 0 +( 880 704 160 ) ( 768 704 160 ) ( 768 720 160 ) wood/wd_sr_va2d -64 0 0 1 1 0 0 0 +( 864 512 80 ) ( 864 512 160 ) ( 752 512 160 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 1024 688 80 ) ( 1024 688 160 ) ( 1024 704 160 ) wood/wd_sr_va2d 0 48 0 1 1 0 0 0 +( 896 496 80 ) ( 896 496 160 ) ( 1008 496 160 ) wood/wd_sr_va2d -64 48 0 1 1 0 0 0 +( 880 720 80 ) ( 880 720 160 ) ( 880 704 160 ) wood/wd_sr_va2d 0 48 0 1 1 0 0 0 +} +// brush 292 +{ +( 496 512 64 ) ( 496 320 64 ) ( 1008 320 64 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 1008 320 80 ) ( 496 320 80 ) ( 496 512 80 ) floors/fl_hl_v1a -64 -1 0 -1 1 0 134217728 0 +( 496 512 16 ) ( 496 512 80 ) ( 1008 512 80 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +( 1024 573 48 ) ( 1024 573 112 ) ( 1024 765 112 ) wood/wd_st_m7s 0 48 0 1 1 0 134217728 0 +( 804 576 80 ) ( 784 576 64 ) ( 824 576 64 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +( 960 557 80 ) ( 960 504 64 ) ( 960 610 64 ) wood/wd_st_m7s 0 48 0 1 1 0 134217728 0 +} +// brush 293 +{ +( 888 640 64 ) ( 888 576 64 ) ( 896 576 64 ) wood/wd_st_m7s -64 64 0 1 1 0 0 0 +( 896 576 80 ) ( 888 576 80 ) ( 888 640 80 ) wood/wd_st_m7s -64 64 0 1 1 0 0 0 +( 896 640 64 ) ( 896 640 80 ) ( 888 640 80 ) wood/wd_st_m7s -64 48 0 1 1 0 0 0 +( 896 576 64 ) ( 896 576 80 ) ( 896 640 80 ) wood/wd_st_m7s -64 48 0 1 1 0 0 0 +( 888 576 64 ) ( 888 576 80 ) ( 896 576 80 ) wood/wd_st_m7s -64 48 0 1 1 0 0 0 +( 888 640 64 ) ( 888 640 80 ) ( 888 576 80 ) wood/wd_st_m7s -64 48 0 1 1 0 0 0 +} +// brush 294 +{ +( 896 640 64 ) ( 896 576 64 ) ( 960 576 64 ) bricks/c_sr_m2e 0 0 0 0.250000 0.250000 0 0 0 +( 960 576 68 ) ( 896 576 68 ) ( 896 640 68 ) bricks/c_sr_m2e 0 0 0 0.250000 0.250000 0 0 0 +( 960 640 56 ) ( 960 640 72 ) ( 896 640 72 ) bricks/c_sr_m2e 0 64 0 0.250000 0.250000 0 0 0 +( 960 576 56 ) ( 960 576 72 ) ( 960 640 72 ) bricks/c_sr_m2e 0 64 0 0.250000 0.250000 0 0 0 +( 896 576 56 ) ( 896 576 72 ) ( 960 576 72 ) bricks/c_sr_m2e 0 64 0 0.250000 0.250000 0 0 0 +( 896 640 56 ) ( 896 640 72 ) ( 896 576 72 ) bricks/c_sr_m2e 0 64 0 0.250000 0.250000 0 0 0 +} +// brush 295 +{ +( 896 640 68 ) ( 896 576 68 ) ( 960 576 68 ) metals/mt_sr_mn3 -64 64 0 1 1 0 524313 50 +( 960 576 76 ) ( 896 576 76 ) ( 896 640 76 ) metals/mt_sr_mn3 -64 64 0 1 1 0 524313 50 +( 960 640 60 ) ( 960 640 76 ) ( 896 640 76 ) metals/mt_sr_mn3 -64 48 0 1 1 0 524313 50 +( 960 576 60 ) ( 960 576 76 ) ( 960 640 76 ) metals/mt_sr_mn3 -64 48 0 1 1 0 524313 50 +( 896 576 60 ) ( 896 576 76 ) ( 960 576 76 ) metals/mt_sr_mn3 -64 48 0 1 1 0 524313 50 +( 896 640 60 ) ( 896 640 76 ) ( 896 576 76 ) metals/mt_sr_mn3 -64 48 0 1 1 0 524313 50 +} +// brush 296 +{ +( 917 576 78 ) ( 914 576 75 ) ( 914 584 75 ) props/pipe1 0 0 180 0.250000 0.250000 134217728 0 4 +( 913 576 76 ) ( 913 576 72 ) ( 913 584 72 ) props/pipe1 -63 0 90 0.250000 0.250000 134217728 0 0 +( 911 576 72 ) ( 914 576 69 ) ( 914 584 69 ) props/pipe1 -63 0 90 0.250000 0.250000 134217728 0 0 +( 913 576 68 ) ( 917 576 68 ) ( 917 584 68 ) props/pipe1 -63 0 90 0.250000 0.250000 134217728 0 0 +( 917 576 66 ) ( 920 576 69 ) ( 920 584 69 ) props/pipe1 -63 0 90 0.250000 0.250000 134217728 0 0 +( 921 576 68 ) ( 921 576 72 ) ( 921 584 72 ) props/pipe1 -63 0 90 0.250000 0.250000 134217728 0 0 +( 923 576 72 ) ( 920 576 75 ) ( 920 584 75 ) props/pipe1 0 0 180 0.250000 0.250000 134217728 0 4 +( 921 576 76 ) ( 917 576 76 ) ( 917 584 76 ) props/pipe1 0 0 180 0.250000 0.250000 134217728 0 0 +( 919 640 76 ) ( 915 640 76 ) ( 915 640 68 ) props/pipe1 -63 0 90 0.250000 0.250000 134217728 0 0 +( 915 576 68 ) ( 915 576 76 ) ( 919 576 76 ) props/pipe1 -63 0 90 0.250000 0.250000 134217728 0 0 +} +// brush 297 +{ +( 985 592 78 ) ( 985 589 75 ) ( 977 589 75 ) props/pipe1 44 51 -90 0.250000 0.250000 134217728 0 4 +( 985 588 76 ) ( 985 588 72 ) ( 977 588 72 ) props/pipe1 -63 52 90 0.250000 -0.250000 134217728 0 0 +( 985 586 72 ) ( 985 589 69 ) ( 977 589 69 ) props/pipe1 51 -44 -180 0.250000 0.250000 134217728 0 0 +( 985 588 68 ) ( 985 592 68 ) ( 977 592 68 ) props/pipe1 51 -44 -180 0.250000 0.250000 134217728 0 0 +( 985 592 66 ) ( 985 595 69 ) ( 977 595 69 ) props/pipe1 51 -44 -180 0.250000 0.250000 134217728 0 0 +( 985 596 68 ) ( 985 596 72 ) ( 977 596 72 ) props/pipe1 -63 52 90 0.250000 -0.250000 134217728 0 0 +( 985 598 72 ) ( 985 595 75 ) ( 977 595 75 ) props/pipe1 44 51 -90 0.250000 0.250000 134217728 0 4 +( 985 596 76 ) ( 985 592 76 ) ( 977 592 76 ) props/pipe1 44 51 -90 0.250000 0.250000 134217728 0 0 +( 960 591 68 ) ( 960 591 76 ) ( 960 595 76 ) props/pipe1 -63 -44 90 0.250000 0.250000 134217728 0 0 +( 925 592 76 ) ( 921 588 68 ) ( 929 596 68 ) props/pipe1 -63 -44 90 0.250000 0.250000 134217728 0 0 +} +// brush 298 +{ +( 925 576 78 ) ( 922 576 75 ) ( 922 584 75 ) props/pipe1 31 0 180 0.250000 0.250000 134217728 0 4 +( 921 576 76 ) ( 921 576 72 ) ( 921 584 72 ) props/pipe1 -63 0 90 0.250000 0.250000 134217728 0 0 +( 919 576 72 ) ( 922 576 69 ) ( 922 584 69 ) props/pipe1 -63 -31 90 0.250000 0.250000 134217728 0 0 +( 921 576 68 ) ( 925 576 68 ) ( 925 584 68 ) props/pipe1 -63 -31 90 0.250000 0.250000 134217728 0 0 +( 925 576 66 ) ( 928 576 69 ) ( 928 584 69 ) props/pipe1 -63 -31 90 0.250000 0.250000 134217728 0 0 +( 929 576 68 ) ( 929 576 72 ) ( 929 584 72 ) props/pipe1 -63 0 90 0.250000 0.250000 134217728 0 0 +( 931 576 72 ) ( 928 576 75 ) ( 928 584 75 ) props/pipe1 31 0 180 0.250000 0.250000 134217728 0 4 +( 929 576 76 ) ( 925 576 76 ) ( 925 584 76 ) props/pipe1 31 0 180 0.250000 0.250000 134217728 0 4 +( 927 640 76 ) ( 923 640 76 ) ( 923 640 68 ) props/pipe1 -63 -32 90 0.250000 0.250000 134217728 0 0 +( 925 592 76 ) ( 929 596 68 ) ( 921 588 68 ) props/pipe1 -63 -32 90 0.250000 0.250000 134217728 0 0 +} +// brush 299 +{ +( 880 928 240 ) ( 880 496 240 ) ( 1056 496 240 ) WOOD/WD_ST_M1B 0 -21 90 3 3 0 0 0 +( 1056 496 256 ) ( 880 496 256 ) ( 880 928 256 ) WOOD/WD_ST_M1B 0 -21 90 3 3 0 0 0 +( 1056 928 240 ) ( 1056 928 320 ) ( 880 928 320 ) WOOD/WD_ST_M1B -16 -21 90 3 3 0 0 0 +( 1040 496 240 ) ( 1040 496 320 ) ( 1040 928 320 ) WOOD/WD_ST_M1B -16 0 90 3 3 0 0 0 +( 880 496 240 ) ( 880 496 320 ) ( 1056 496 320 ) WOOD/WD_ST_M1B -16 -21 90 3 3 0 0 0 +( 880 928 176 ) ( 880 928 256 ) ( 880 496 256 ) WOOD/WD_ST_M1B -16 0 90 3 3 0 0 0 +} +// brush 300 +{ +( 768 928 240 ) ( 768 496 240 ) ( 944 496 240 ) WOOD/WD_ST_M1B 0 -21 90 3 3 0 0 0 +( 944 496 256 ) ( 768 496 256 ) ( 768 928 256 ) WOOD/WD_ST_M1B 0 -21 90 3 3 0 0 0 +( 944 928 240 ) ( 944 928 320 ) ( 768 928 320 ) WOOD/WD_ST_M1B -16 -21 90 3 3 0 0 0 +( 880 512 176 ) ( 880 512 256 ) ( 880 944 256 ) WOOD/WD_ST_M1B -16 0 90 3 3 0 0 0 +( 768 736 240 ) ( 768 736 320 ) ( 944 736 320 ) WOOD/WD_ST_M1B -16 -21 90 3 3 0 0 0 +( 768 928 240 ) ( 768 928 320 ) ( 768 496 320 ) WOOD/WD_ST_M1B -16 0 90 3 3 0 0 0 +} +// brush 301 +{ +( 912 718 160 ) ( 912 702 160 ) ( 1024 702 160 ) bricks/b_hl_v2 -80 32 0 1 1 0 0 0 +( 1024 704 240 ) ( 912 704 240 ) ( 912 720 240 ) bricks/b_hl_v2 -80 32 0 1 1 0 0 0 +( 1040 672 160 ) ( 1040 672 240 ) ( 1040 688 240 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +( 1024 496 160 ) ( 1024 496 240 ) ( 1136 496 240 ) bricks/b_hl_v2 -80 48 0 1 1 0 0 0 +( 1024 1120 160 ) ( 1024 1120 240 ) ( 1024 1104 240 ) wood/wd_sr_va2 0 -48 0 1 1.200000 0 0 0 +( 1032 574 240 ) ( 1024 574 160 ) ( 1040 574 160 ) bricks/b_hl_v2 -96 48 0 1 1 0 0 0 +} +// brush 302 +{ +( 912 720 64 ) ( 912 704 64 ) ( 1024 704 64 ) wood/wd_sr_va2 -80 16 0 1 1 0 134217728 0 +( 1024 702 160 ) ( 912 702 160 ) ( 912 718 160 ) wood/wd_sr_va2 -80 16 0 1 1 0 134217728 0 +( 1040 672 80 ) ( 1040 672 160 ) ( 1040 688 160 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 1024 496 80 ) ( 1024 496 160 ) ( 1136 496 160 ) wood/wd_sr_va2 -80 32 0 1 1 0 134217728 0 +( 1024 1120 80 ) ( 1024 1120 160 ) ( 1024 1104 160 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 1032 574 160 ) ( 1024 574 80 ) ( 1040 574 80 ) wood/wd_sr_va2 -96 32 0 1 1 0 134217728 0 +} +// brush 303 +{ +( 912 722 160 ) ( 912 706 160 ) ( 1024 706 160 ) bricks/b_hl_v2 -80 32 0 1 1 0 0 0 +( 1024 704 240 ) ( 912 704 240 ) ( 912 720 240 ) bricks/b_hl_v2 -80 32 0 1 1 0 0 0 +( 992 928 160 ) ( 992 928 240 ) ( 880 928 240 ) bricks/b_hl_v2 -80 48 0 1 1 0 0 0 +( 1040 672 160 ) ( 1040 672 240 ) ( 1040 688 240 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +( 1024 1120 160 ) ( 1024 1120 240 ) ( 1024 1104 240 ) wood/wd_sr_va2 0 -48 0 1 1.200000 0 0 0 +( 1032 646 240 ) ( 1040 646 160 ) ( 1024 646 160 ) bricks/b_hl_v2 -96 48 0 1 1 0 0 0 +} +// brush 304 +{ +( 912 720 80 ) ( 912 704 80 ) ( 1024 704 80 ) wood/wd_sr_va2 -96 -16 0 1 1 0 134217728 0 +( 1024 704 160 ) ( 912 704 160 ) ( 912 720 160 ) wood/wd_sr_va2 -96 -16 0 1 1 0 134217728 0 +( 992 928 80 ) ( 992 928 160 ) ( 880 928 160 ) wood/wd_sr_va2 -96 32 0 1 1 0 134217728 0 +( 1040 672 80 ) ( 1040 672 160 ) ( 1040 688 160 ) wood/wd_sr_va2 -32 32 0 1 1 0 134217728 0 +( 1024 1120 80 ) ( 1024 1120 160 ) ( 1024 1104 160 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 1040 768 160 ) ( 1048 768 80 ) ( 1032 768 80 ) wood/wd_sr_va2 -96 32 0 1 1 0 134217728 0 +} +// brush 305 +{ +( 912 656 192 ) ( 912 640 192 ) ( 1024 640 192 ) bricks/b_hl_v2 -80 -32 0 1 1 0 0 0 +( 1024 640 240 ) ( 912 640 240 ) ( 912 656 240 ) bricks/b_hl_v2 -80 -32 0 1 1 0 0 0 +( 976 646 160 ) ( 976 646 240 ) ( 864 646 240 ) bricks/b_hl_v2 -80 48 0 1 1 0 0 0 +( 1040 608 160 ) ( 1040 608 240 ) ( 1040 624 240 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +( 1024 1056 160 ) ( 1024 1056 240 ) ( 1024 1040 240 ) wood/wd_sr_va2 0 -48 0 1 1.200000 0 0 0 +( 1032 574 240 ) ( 1040 574 160 ) ( 1024 574 160 ) bricks/b_hl_v2 -96 48 0 1 1 0 0 0 +} +// brush 306 +{ +( 1026 520 188 ) ( 1038 520 188 ) ( 1038 640 188 ) wood/wd_sr_m3y 63 0 -180 1 -1 0 134217728 0 +( 1024 516 192 ) ( 1024 644 192 ) ( 1040 644 192 ) wood/wd_sr_m3y 63 0 -180 1 -1 0 134217728 0 +( 1040 642 188 ) ( 1040 646 192 ) ( 1024 646 192 ) wood/wd_sr_m3y 63 0 -180 1 -1 0 134217728 0 +( 1040 644 192 ) ( 1038 640 188 ) ( 1038 520 188 ) wood/wd_sr_m3y 48 0 -90 1 -1 0 134217728 0 +( 1040 574 192 ) ( 1040 578 188 ) ( 1024 578 188 ) wood/wd_sr_m3y 63 0 -180 1 -1 0 134217728 0 +( 1024 516 192 ) ( 1026 520 188 ) ( 1026 640 188 ) wood/wd_sr_m3y 48 0 -90 1 -1 0 134217728 0 +} +// brush 307 +{ +( 1024 646 80 ) ( 1024 642 80 ) ( 1040 642 80 ) wood/wd_sr_m3y 63 2 -180 1 -1 0 134217728 0 +( 1040 646 192 ) ( 1040 642 188 ) ( 1024 642 188 ) wood/wd_sr_m3y 63 2 -180 1 -1 0 134217728 0 +( 1040 646 80 ) ( 1040 646 152 ) ( 1024 646 152 ) wood/wd_sr_m3y 63 47 -180 1 -1 0 134217728 0 +( 1040 646 80 ) ( 1038 642 80 ) ( 1038 642 188 ) wood/wd_sr_m3y 2 48 -180 1 -1 0 134217728 0 +( 1026 642 188 ) ( 1038 642 188 ) ( 1038 642 80 ) wood/wd_sr_m3y 63 47 -180 1 -1 0 134217728 0 +( 1024 646 192 ) ( 1026 642 188 ) ( 1026 642 80 ) wood/wd_sr_m3y 2 48 -180 1 -1 0 134217728 0 +} +// brush 308 +{ +( 1040 574 80 ) ( 1040 578 80 ) ( 1024 578 80 ) wood/wd_sr_m3y 63 -2 -180 1 -1 0 134217728 0 +( 1024 574 192 ) ( 1024 578 188 ) ( 1040 578 188 ) wood/wd_sr_m3y 63 -2 -180 1 -1 0 134217728 0 +( 1024 574 80 ) ( 1024 574 152 ) ( 1040 574 152 ) wood/wd_sr_m3y 63 47 -180 1 -1 0 134217728 0 +( 1024 574 80 ) ( 1026 578 80 ) ( 1026 578 188 ) wood/wd_sr_m3y -2 48 -180 1 -1 0 134217728 0 +( 1038 578 188 ) ( 1026 578 188 ) ( 1026 578 80 ) wood/wd_sr_m3y 63 47 -180 1 -1 0 134217728 0 +( 1040 574 192 ) ( 1038 578 188 ) ( 1038 578 80 ) wood/wd_sr_m3y -2 48 -180 1 -1 0 134217728 0 +} +// brush 309 +{ +( 1024 644 64 ) ( 1024 576 64 ) ( 1040 576 64 ) wood/wd_sr_m3y 63 0 -180 1 -1 0 0 0 +( 1040 576 80 ) ( 1024 576 80 ) ( 1024 644 80 ) wood/wd_sr_m3y 63 0 -180 1 -1 0 0 0 +( 1040 646 65 ) ( 1040 646 81 ) ( 1024 646 81 ) wood/wd_sr_m3y 63 47 -180 1 -1 0 0 0 +( 1040 576 64 ) ( 1040 576 80 ) ( 1040 644 80 ) wood/wd_sr_m3y 0 48 -180 1 -1 0 0 0 +( 1024 574 65 ) ( 1024 574 81 ) ( 1040 574 81 ) wood/wd_sr_m3y 63 47 -180 1 -1 0 0 0 +( 1024 644 64 ) ( 1024 644 80 ) ( 1024 576 80 ) wood/wd_sr_m3y 0 48 -180 1 -1 0 0 0 +} +// brush 310 +{ +( 912 560 64 ) ( 912 544 64 ) ( 1024 544 64 ) bricks/b_hl_v2 -96 0 0 1 1 0 0 0 +( 1024 546 160 ) ( 912 546 160 ) ( 912 562 160 ) bricks/b_hl_v2 -96 0 0 1 1 0 0 0 +( 992 768 80 ) ( 992 768 160 ) ( 880 768 160 ) bricks/b_hl_v2 -96 48 0 1 1 0 0 0 +( 1040 512 80 ) ( 1040 512 160 ) ( 1040 528 160 ) wood/wd_sr_va2c 0 32 0 1 1 0 134217728 0 +( 1026 951 80 ) ( 1026 951 160 ) ( 1026 935 160 ) bricks/b_hl_v2 -32 48 0 1 1 0 1048576 0 +( 1036 646 160 ) ( 1044 646 80 ) ( 1028 646 80 ) bricks/b_hl_v2 -96 48 0 1 1 0 0 0 +} +// brush 311 +{ +( 1024 768 156 ) ( 1024 644 156 ) ( 1028 644 156 ) wood/wd_sr_va2 -96 -16 0 1 1 0 134217728 0 +( 1024 648 160 ) ( 1012 648 160 ) ( 1012 768 160 ) wood/wd_sr_va2 -96 -16 0 1 1 0 134217728 0 +( 1024 768 80 ) ( 1024 768 160 ) ( 1012 768 160 ) wood/wd_sr_va2 -96 32 0 1 1 0 134217728 0 +( 1026 768 156 ) ( 1026 648 156 ) ( 1026 644 160 ) wood/wd_sr_va2 -32 32 0 1 1 0 134217728 0 +( 1028 646 160 ) ( 1028 646 156 ) ( 1024 646 156 ) wood/wd_sr_va2 -96 32 0 1 1 0 134217728 0 +( 1024 768 160 ) ( 1024 644 160 ) ( 1024 648 156 ) wood/wd_sr_va2 -32 32 0 1 1 0 134217728 0 +} +// brush 312 +{ +( 1024 772 152 ) ( 1024 716 152 ) ( 1028 716 152 ) wood/wd_sr_va2 -96 -16 0 1 1 0 134217728 0 +( 1024 656 156 ) ( 1012 656 156 ) ( 1012 776 156 ) wood/wd_sr_va2 -96 -16 0 1 1 0 134217728 0 +( 1024 768 76 ) ( 1024 768 156 ) ( 1012 768 156 ) wood/wd_sr_va2 -96 32 0 1 1 0 134217728 0 +( 1026 644 76 ) ( 1026 644 156 ) ( 1026 764 156 ) wood/wd_sr_va2 -32 32 0 1 1 0 134217728 0 +( 1032 656 156 ) ( 1032 664 152 ) ( 1028 664 152 ) wood/wd_sr_va2 -96 -16 0 1 1 0 134217728 0 +( 1024 828 76 ) ( 1024 828 156 ) ( 1024 708 156 ) wood/wd_sr_va2 -32 32 0 1 1 0 134217728 0 +} +// brush 313 +{ +( 1027 768 146 ) ( 1025 760 139 ) ( 1021 760 140 ) wood/wd_sr_va2 -96 -16 0 1 1 134217792 134217729 10 +( 1002 760 81 ) ( 1006 760 80 ) ( 1006 768 80 ) wood/wd_sr_va2 -96 -16 0 1 1 134217792 134217729 10 +( 1032 768 178 ) ( 1010 768 101 ) ( 1014 768 100 ) wood/wd_sr_va2 2 35 -13 1 1 134217792 134217729 10 +( 1022 760 150 ) ( 1000 760 73 ) ( 1000 768 73 ) wood/wd_sr_va2 -32 32 0 1 1 134217792 134217729 10 +( 1002 760 81 ) ( 1011 760 111 ) ( 1015 760 110 ) wood/wd_sr_va2 17 33 -15 1 1 134217792 134217729 10 +( 1024 768 147 ) ( 1002 768 70 ) ( 1002 760 70 ) wood/wd_sr_va2 -32 32 0 1 1 134217792 134217729 10 +} +// brush 314 +{ +( 896 640 64 ) ( 896 576 64 ) ( 960 576 64 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 960 576 80 ) ( 896 576 80 ) ( 896 640 80 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 960 640 64 ) ( 960 640 80 ) ( 896 640 80 ) common/0_clip 0 16 0 1 1 196608 128 0 +( 960 576 64 ) ( 960 576 80 ) ( 960 640 80 ) common/0_clip 0 16 0 1 1 196608 128 0 +( 896 576 64 ) ( 896 576 80 ) ( 960 576 80 ) common/0_clip 0 16 0 1 1 196608 128 0 +( 896 640 64 ) ( 896 640 80 ) ( 896 576 80 ) common/0_clip 0 16 0 1 1 196608 128 0 +} +// brush 315 +{ +( 288 112 80 ) ( 288 64 80 ) ( 320 64 80 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 320 64 112 ) ( 288 64 112 ) ( 288 112 112 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 320 104 80 ) ( 320 104 88 ) ( 288 104 88 ) common/0_clip 0 24 0 1 1 196608 128 0 +( 314 52 78 ) ( 314 52 86 ) ( 314 100 86 ) common/0_clip 0 24 0 1 1 196608 128 0 +( 288 64 80 ) ( 288 64 88 ) ( 320 64 88 ) common/0_clip 0 24 0 1 1 196608 128 0 +( 288 112 80 ) ( 288 112 88 ) ( 288 64 88 ) common/0_clip 0 24 0 1 1 196608 128 0 +} +// brush 316 +{ +( 928 880 160 ) ( 928 864 160 ) ( 1040 864 160 ) bricks/b_hl_v2 -96 0 0 1 1 0 0 0 +( 1040 864 240 ) ( 928 864 240 ) ( 928 880 240 ) bricks/b_hl_v2 -96 0 0 1 1 0 0 0 +( 1152 832 160 ) ( 1152 832 240 ) ( 1152 848 240 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 1040 656 160 ) ( 1040 656 240 ) ( 1152 656 240 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +( 1040 1280 128 ) ( 1040 1280 208 ) ( 1040 1264 208 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 1048 672 240 ) ( 1040 672 160 ) ( 1056 672 160 ) bricks/b_sr_v31b -64 113 0 1 1 0 0 0 +} +// brush 317 +{ +( 1040 880 144 ) ( 1040 864 144 ) ( 1152 864 144 ) bricks/b_sr_v31b -64 -63 0 1 1 0 0 0 +( 1152 864 240 ) ( 1040 864 240 ) ( 1040 880 240 ) bricks/b_sr_v31b -64 -63 0 1 1 0 0 0 +( 1216 832 176 ) ( 1216 832 256 ) ( 1216 848 256 ) bricks/b_sr_v31b 0 113 0 1 1 0 0 0 +( 1136 496 160 ) ( 1136 496 240 ) ( 1248 496 240 ) bricks/b_sr_v31b -64 113 0 1 1 0 0 0 +( 1152 1280 144 ) ( 1152 1280 224 ) ( 1152 1264 224 ) bricks/b_sr_v31b 0 113 0 1 1 0 0 0 +( 1160 512 240 ) ( 1152 512 160 ) ( 1168 512 160 ) bricks/b_sr_v31b -64 113 0 1 1 0 0 0 +} +// brush 318 +{ +( 912 704 144 ) ( 912 688 144 ) ( 1024 688 144 ) bricks/b_hl_v2 -80 48 0 1 1 0 0 0 +( 1024 688 240 ) ( 912 688 240 ) ( 912 704 240 ) bricks/b_hl_v2 -80 48 0 1 1 0 0 0 +( 1040 688 160 ) ( 1040 688 240 ) ( 1040 704 240 ) bricks/b_sr_v31a 0 114 0 1 1 0 0 0 +( 1008 384 160 ) ( 1008 384 240 ) ( 1120 384 240 ) bricks/b_hl_v2 -80 48 0 1 1 0 0 0 +( 1024 1104 160 ) ( 1024 1104 240 ) ( 1024 1088 240 ) bricks/b_hl_v2 -48 48 0 1 1 0 0 0 +( 1032 496 224 ) ( 1024 496 144 ) ( 1040 496 144 ) bricks/b_hl_v2 -96 48 0 1 1 0 0 0 +} +// brush 319 +{ +( 912 720 144 ) ( 912 704 144 ) ( 1024 704 144 ) bricks/b_hl_v2 -80 32 0 1 1 0 0 0 +( 1024 704 240 ) ( 912 704 240 ) ( 912 720 240 ) bricks/b_hl_v2 -80 32 0 1 1 0 0 0 +( 1152 720 144 ) ( 1152 720 224 ) ( 1152 736 224 ) bricks/b_hl_v2 -32 48 0 1 1 0 0 0 +( 1072 368 160 ) ( 1072 368 240 ) ( 1184 368 240 ) bricks/b_hl_v2 -80 48 0 1 1 0 0 0 +( 1024 1120 128 ) ( 1024 1120 208 ) ( 1024 1104 208 ) bricks/b_hl_v2 -32 48 0 1 1 0 0 0 +( 1064 384 240 ) ( 1056 384 160 ) ( 1072 384 160 ) bricks/b_sr_v31b -64 113 0 1 1 0 0 0 +} +// brush 320 +{ +( 1360 688 144 ) ( 1360 672 144 ) ( 1472 672 144 ) bricks/b_sr_v31a 0 -63 0 1 1 0 0 0 +( 1472 672 240 ) ( 1360 672 240 ) ( 1360 688 240 ) bricks/b_sr_v31a 0 -63 0 1 1 0 0 0 +( 1488 704 176 ) ( 1488 704 256 ) ( 1488 720 256 ) bricks/b_sr_v31a 0 113 0 1 1 0 0 0 +( 1456 368 160 ) ( 1456 368 240 ) ( 1568 368 240 ) bricks/b_sr_v31a 0 113 0 1 1 0 0 0 +( 1472 912 144 ) ( 1472 912 224 ) ( 1472 896 224 ) bricks/b_sr_v31a 0 113 0 1 1 0 0 0 +( 1512 512 240 ) ( 1504 512 160 ) ( 1520 512 160 ) bricks/b_sr_v31a 0 113 0 1 1 0 0 0 +} +// brush 321 +{ +( 1040 720 144 ) ( 1040 704 144 ) ( 1152 704 144 ) bricks/b_sr_v31b -64 32 0 1 1 0 0 0 +( 1152 704 240 ) ( 1040 704 240 ) ( 1040 720 240 ) bricks/b_sr_v31b -64 32 0 1 1 0 0 0 +( 1472 704 144 ) ( 1472 704 224 ) ( 1472 720 224 ) bricks/b_sr_v31b 32 112 0 1 1 0 0 0 +( 1200 368 160 ) ( 1200 368 240 ) ( 1312 368 240 ) bricks/b_sr_v31b -64 112 0 1 1 0 0 0 +( 1152 1120 144 ) ( 1152 1120 224 ) ( 1152 1104 224 ) bricks/b_sr_v31b 32 112 0 1 1 0 0 0 +( 1256 384 240 ) ( 1248 384 160 ) ( 1264 384 160 ) bricks/b_sr_v31a -97 113 0 1 1 0 0 0 +} +// brush 322 +{ +( 1360 864 144 ) ( 1360 848 144 ) ( 1472 848 144 ) bricks/b_sr_v31a 0 0 0 1 1 0 0 0 +( 1472 848 240 ) ( 1360 848 240 ) ( 1360 864 240 ) bricks/b_sr_v31a 0 0 0 1 1 0 0 0 +( 1488 880 152 ) ( 1488 880 232 ) ( 1488 896 232 ) bricks/b_sr_v31a 0 48 0 1 1 0 0 0 +( 1456 512 160 ) ( 1456 512 240 ) ( 1568 512 240 ) bricks/b_sr_v31a 0 48 0 1 1 0 0 0 +( 1472 1072 176 ) ( 1472 1072 256 ) ( 1472 1056 256 ) bricks/b_sr_v31a 0 113 0 1 1 0 0 0 +( 1512 704 240 ) ( 1504 704 160 ) ( 1520 704 160 ) bricks/b_sr_v31a 0 48 0 1 1 0 0 0 +} +// brush 323 +{ +( 1264 672 240 ) ( 1264 352 240 ) ( 1376 352 240 ) bricks/b_rc_v13b -64 0 0 1 1 0 0 0 +( 1376 352 256 ) ( 1264 352 256 ) ( 1264 672 256 ) bricks/b_rc_v13b -64 0 0 1 1 0 0 0 +( 1488 720 256 ) ( 1216 720 256 ) ( 1216 720 240 ) bricks/b_rc_v13b -64 48 0 1 1 0 0 0 +( 1488 384 256 ) ( 1488 720 256 ) ( 1488 720 240 ) bricks/b_rc_v13b 0 48 0 1 1 0 0 0 +( 1216 384 256 ) ( 1488 384 256 ) ( 1488 384 240 ) bricks/b_rc_v13b -64 48 0 1 1 0 0 0 +( 1216 720 256 ) ( 1216 384 256 ) ( 1216 384 240 ) bricks/b_rc_v13b 0 48 0 1 1 0 0 0 +} +// brush 324 +{ +( 1152 672 240 ) ( 1152 352 240 ) ( 1264 352 240 ) bricks/b_rc_v13b -64 0 0 1 1 0 0 0 +( 1264 352 256 ) ( 1152 352 256 ) ( 1152 672 256 ) bricks/b_rc_v13b -64 0 0 1 1 0 0 0 +( 1264 496 240 ) ( 1264 496 256 ) ( 1152 496 256 ) bricks/b_rc_v13b -64 48 0 1 1 0 0 0 +( 1216 352 240 ) ( 1216 352 256 ) ( 1216 672 256 ) bricks/b_rc_v13b 0 48 0 1 1 0 0 0 +( 1152 384 240 ) ( 1152 384 256 ) ( 1264 384 256 ) bricks/b_rc_v13b -64 48 0 1 1 0 0 0 +( 1152 672 240 ) ( 1152 672 256 ) ( 1152 352 256 ) bricks/b_rc_v13b 0 48 0 1 1 0 0 0 +} +// brush 325 +{ +( 1072 592 144 ) ( 1088 592 144 ) ( 1088 704 144 ) bricks/b_sr_v31a 16 -112 90 1 1 0 0 0 +( 1088 704 240 ) ( 1088 592 240 ) ( 1072 592 240 ) bricks/b_sr_v31a 16 -112 90 1 1 0 0 0 +( 1048 720 160 ) ( 1048 720 240 ) ( 1032 720 240 ) bricks/b_sr_v31a -48 113 0 1 1 0 0 0 +( 1488 688 176 ) ( 1488 688 256 ) ( 1488 800 256 ) bricks/b_sr_v31a 16 48 0 1 1 0 0 0 +( 864 704 160 ) ( 864 704 240 ) ( 880 704 240 ) bricks/b_sr_v31a 111 113 -180 1 -1 0 0 0 +( 1200 744 224 ) ( 1200 736 144 ) ( 1200 752 144 ) bricks/b_sr_v31a 16 113 0 1 1 0 0 0 +} +// brush 326 +{ +( 496 576 64 ) ( 496 384 64 ) ( 1008 384 64 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 1008 384 80 ) ( 496 384 80 ) ( 496 576 80 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 496 640 16 ) ( 496 640 80 ) ( 1008 640 80 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +( 1024 637 48 ) ( 1024 637 112 ) ( 1024 829 112 ) wood/wd_st_m7s 0 48 0 1 1 0 134217728 0 +( 896 637 80 ) ( 896 584 64 ) ( 896 690 64 ) wood/wd_st_m7s 0 48 0 1 1 0 134217728 0 +( 964 704 80 ) ( 896 704 64 ) ( 1032 704 64 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +} +// brush 327 +{ +( 496 672 64 ) ( 496 480 64 ) ( 1008 480 64 ) wood/wd_st_m7s -64 32 0 1 1 0 134217728 0 +( 1008 480 80 ) ( 496 480 80 ) ( 496 672 80 ) floors/fl_hl_v1d 0 64 0 1 1 0 2097152 0 +( 1024 733 48 ) ( 1024 733 112 ) ( 1024 925 112 ) wood/wd_st_m7s -32 48 0 1 1 0 134217728 0 +( 804 928 80 ) ( 784 928 64 ) ( 824 928 64 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +( 896 733 80 ) ( 896 680 64 ) ( 896 786 64 ) wood/wd_st_m7s -32 48 0 1 1 0 134217728 0 +( 964 832 80 ) ( 1032 832 64 ) ( 896 832 64 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +} +// brush 328 +{ +( 496 576 64 ) ( 496 384 64 ) ( 1008 384 64 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 1008 384 80 ) ( 496 384 80 ) ( 496 576 80 ) floors/fl_hl_v1a 0 63 0 -1 -1 0 2097152 0 +( 804 832 80 ) ( 784 832 64 ) ( 824 832 64 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +( 896 637 80 ) ( 896 584 64 ) ( 896 690 64 ) wood/wd_st_m7s 0 48 0 1 1 0 134217728 0 +( 964 704 80 ) ( 1032 704 64 ) ( 896 704 64 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +( 960 768 80 ) ( 960 832 64 ) ( 960 704 64 ) wood/wd_st_m7s 0 48 0 1 1 0 134217728 0 +} +// brush 329 +{ +( 496 576 64 ) ( 496 384 64 ) ( 1008 384 64 ) wood/wd_st_m7s -63 -3 0 1 1 0 134217728 0 +( 1008 384 80 ) ( 496 384 80 ) ( 496 576 80 ) floors/fl_hl_v1b 0 64 0 1 1 0 2097152 0 +( 1024 637 48 ) ( 1024 637 112 ) ( 1024 829 112 ) wood/wd_st_m7s 1 45 0 1 1 0 134217728 0 +( 804 832 80 ) ( 784 832 64 ) ( 824 832 64 ) wood/wd_st_m7s -63 45 0 1 1 0 134217728 0 +( 964 768 80 ) ( 1032 768 64 ) ( 896 768 64 ) wood/wd_st_m7s -63 45 0 1 1 0 134217728 0 +( 960 768 80 ) ( 960 704 64 ) ( 960 832 64 ) wood/wd_st_m7s 1 45 0 1 1 0 134217728 0 +} +// brush 330 +{ +( 496 512 64 ) ( 496 320 64 ) ( 1008 320 64 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 1008 320 80 ) ( 496 320 80 ) ( 496 512 80 ) floors/fl_hl_v1a 1 64 0 -1 -1 0 134217728 0 +( 1024 573 48 ) ( 1024 573 112 ) ( 1024 765 112 ) wood/wd_st_m7s 0 48 0 1 1 0 134217728 0 +( 804 768 80 ) ( 784 768 64 ) ( 824 768 64 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +( 964 704 80 ) ( 1032 704 64 ) ( 896 704 64 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +( 960 704 80 ) ( 960 640 64 ) ( 960 768 64 ) wood/wd_st_m7s 0 48 0 1 1 0 134217728 0 +} +// brush 331 +{ +( 1024 768 64 ) ( 1024 644 64 ) ( 1028 644 64 ) wood/wd_st_m7s -64 0 0 1 1 0 0 0 +( 1028 644 80 ) ( 1024 644 80 ) ( 1024 768 80 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 1026 643 64 ) ( 1026 643 80 ) ( 1026 767 80 ) wood/wd_st_m7s 0 48 0 1 1 0 0 0 +( 1024 644 64 ) ( 1024 644 80 ) ( 1028 644 80 ) wood/wd_st_m7s -64 48 0 1 1 0 0 0 +( 1024 768 64 ) ( 1024 768 80 ) ( 1024 644 80 ) wood/wd_st_m7s 0 48 0 1 1 0 0 0 +( 1032 704 80 ) ( 1008 704 64 ) ( 1056 704 64 ) wood/wd_st_m7s -64 48 0 1 1 0 0 0 +} +// brush 332 +{ +( 1024 768 64 ) ( 1024 644 64 ) ( 1028 644 64 ) wood/wd_st_m7s -64 0 0 1 1 0 0 0 +( 1028 644 80 ) ( 1024 644 80 ) ( 1024 768 80 ) floors/fl_hl_v1 0 0 0 0.500000 0.500000 0 2097152 0 +( 1028 768 64 ) ( 1028 768 80 ) ( 1024 768 80 ) wood/wd_st_m7s -64 48 0 1 1 0 0 0 +( 1026 643 64 ) ( 1026 643 80 ) ( 1026 767 80 ) wood/wd_st_m7s 0 48 0 1 1 0 0 0 +( 1024 768 64 ) ( 1024 768 80 ) ( 1024 644 80 ) wood/wd_st_m7s 0 48 0 1 1 0 0 0 +( 1032 704 80 ) ( 1056 704 64 ) ( 1008 704 64 ) wood/wd_st_m7s -64 48 0 1 1 0 0 0 +} +// brush 333 +{ +( 368 752 64 ) ( 368 560 64 ) ( 880 560 64 ) floors/fl_hl_v1 0 0 0 1 1 0 0 0 +( 880 560 80 ) ( 368 560 80 ) ( 368 752 80 ) floors/fl_hl_v1 0 0 0 1 1 0 2097152 0 +( 896 829 48 ) ( 896 829 112 ) ( 896 1021 112 ) floors/fl_hl_v1 0 48 0 1 1 0 0 0 +( 676 928 80 ) ( 656 928 64 ) ( 696 928 64 ) floors/fl_hl_v1 0 48 0 1 1 0 0 0 +( 832 813 80 ) ( 832 760 64 ) ( 832 866 64 ) floors/fl_hl_v1 0 48 0 1 1 0 0 0 +( 872 832 80 ) ( 896 832 64 ) ( 848 832 64 ) floors/fl_hl_v1 0 48 0 1 1 0 0 0 +} +// brush 334 +{ +( 368 816 64 ) ( 368 624 64 ) ( 880 624 64 ) wood/wd_st_m7s -64 64 0 1 1 0 134217728 0 +( 880 624 80 ) ( 368 624 80 ) ( 368 816 80 ) floors/fl_hl_v1c 0 0 0 0.500000 0.500000 0 2097152 0 +( 768 877 80 ) ( 768 824 64 ) ( 768 930 64 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +( 872 896 80 ) ( 848 896 64 ) ( 896 896 64 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +( 808 832 80 ) ( 816 832 64 ) ( 800 832 64 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +( 832 824 80 ) ( 832 832 64 ) ( 832 816 64 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +} +// brush 335 +{ +( 304 752 64 ) ( 304 560 64 ) ( 816 560 64 ) floors/fl_hl_v1 0 0 0 0.500000 0.500000 0 2097152 0 +( 816 560 80 ) ( 304 560 80 ) ( 304 752 80 ) floors/fl_hl_v1 0 0 0 0.500000 0.500000 0 2097152 0 +( 832 829 48 ) ( 832 829 112 ) ( 832 1021 112 ) floors/fl_hl_v1 0 32 0 0.500000 0.500000 0 2097152 0 +( 612 928 80 ) ( 592 928 64 ) ( 632 928 64 ) floors/fl_hl_v1 0 32 0 0.500000 0.500000 0 2097152 0 +( 768 813 80 ) ( 768 760 64 ) ( 768 866 64 ) floors/fl_hl_v1 0 32 0 0.500000 0.500000 0 2097152 0 +( 808 896 80 ) ( 832 896 64 ) ( 784 896 64 ) floors/fl_hl_v1 0 32 0 0.500000 0.500000 0 2097152 0 +} +// brush 336 +{ +( 368 752 64 ) ( 368 560 64 ) ( 880 560 64 ) floors/fl_hl_v1 0 0 0 0.500000 0.500000 0 2097152 0 +( 880 560 80 ) ( 368 560 80 ) ( 368 752 80 ) floors/fl_hl_v1b -64 64 0 1 1 0 2097152 0 +( 872 832 80 ) ( 848 832 64 ) ( 896 832 64 ) floors/fl_hl_v1 0 32 0 0.500000 0.500000 0 2097152 0 +( 808 736 80 ) ( 816 736 64 ) ( 800 736 64 ) floors/fl_hl_v1 0 32 0 0.500000 0.500000 0 2097152 0 +( 768 752 80 ) ( 768 744 64 ) ( 768 760 64 ) floors/fl_hl_v1 0 32 0 0.500000 0.500000 0 2097152 0 +( 832 784 80 ) ( 832 832 64 ) ( 832 736 64 ) floors/fl_hl_v1 0 32 0 0.500000 0.500000 0 2097152 0 +} +// brush 337 +{ +( 368 752 64 ) ( 368 560 64 ) ( 880 560 64 ) floors/fl_hl_v1 0 0 0 1 1 0 0 0 +( 880 560 80 ) ( 368 560 80 ) ( 368 752 80 ) floors/fl_hl_v1a 0 63 0 1 -1 0 2097152 0 +( 896 829 48 ) ( 896 829 112 ) ( 896 1021 112 ) floors/fl_hl_v1 0 48 0 1 1 0 0 0 +( 872 832 80 ) ( 848 832 64 ) ( 896 832 64 ) floors/fl_hl_v1 0 48 0 1 1 0 0 0 +( 808 736 80 ) ( 816 736 64 ) ( 800 736 64 ) floors/fl_hl_v1 0 48 0 1 1 0 0 0 +( 832 784 80 ) ( 832 736 64 ) ( 832 832 64 ) floors/fl_hl_v1 0 48 0 1 1 0 0 0 +} +// brush 338 +{ +( 1000 720 192 ) ( 1000 704 192 ) ( 1112 704 192 ) bricks/b_sr_v31c -64 0 0 1 1 0 0 0 +( 1110 704 240 ) ( 998 704 240 ) ( 998 720 240 ) bricks/b_sr_v31c -64 0 0 1 1 0 0 0 +( 1130 672 160 ) ( 1130 672 240 ) ( 1130 688 240 ) bricks/b_sr_v31c 0 48 0 1 1 0 0 0 +( 1120 496 160 ) ( 1120 496 240 ) ( 1232 496 240 ) bricks/b_sr_v31c 0 116 0 1 1 0 0 0 +( 1062 1120 160 ) ( 1062 1120 240 ) ( 1062 1104 240 ) bricks/b_sr_v31c 0 48 0 1 1 0 0 0 +( 1120 512 240 ) ( 1112 512 160 ) ( 1128 512 160 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +} +// brush 339 +{ +( 1130 512 80 ) ( 1126 512 80 ) ( 1126 496 80 ) wood/wd_sr_m3y 63 38 -90 1 1 0 0 0 +( 1130 496 192 ) ( 1126 496 188 ) ( 1126 512 188 ) wood/wd_sr_m3y 63 38 -90 1 1 0 0 0 +( 1130 496 80 ) ( 1130 496 152 ) ( 1130 512 152 ) wood/wd_sr_m3y 62 48 -180 1 -1 0 0 0 +( 1130 496 80 ) ( 1126 498 80 ) ( 1126 498 188 ) wood/wd_sr_m3y -37 48 0 1 1 0 0 0 +( 1126 510 188 ) ( 1126 498 188 ) ( 1126 498 80 ) wood/wd_sr_m3y 62 48 -180 1 -1 0 0 0 +( 1130 512 192 ) ( 1126 510 188 ) ( 1126 510 80 ) wood/wd_sr_m3y -37 48 0 1 1 0 0 0 +} +// brush 340 +{ +( 1062 496 80 ) ( 1066 496 80 ) ( 1066 512 80 ) wood/wd_sr_m3y 49 -105 90 1 1 0 0 0 +( 1062 512 192 ) ( 1066 512 188 ) ( 1066 496 188 ) wood/wd_sr_m3y 49 -105 90 1 1 0 0 0 +( 1062 512 80 ) ( 1062 512 152 ) ( 1062 496 152 ) wood/wd_sr_m3y 49 48 0 1 1 0 0 0 +( 1062 512 80 ) ( 1066 510 80 ) ( 1066 510 188 ) wood/wd_sr_m3y 104 47 -180 1 -1 0 0 0 +( 1066 498 188 ) ( 1066 510 188 ) ( 1066 510 80 ) wood/wd_sr_m3y 49 48 0 1 1 0 0 0 +( 1062 496 192 ) ( 1066 498 188 ) ( 1066 498 80 ) wood/wd_sr_m3y 104 47 -180 1 -1 0 0 0 +} +// brush 341 +{ +( 1186 498 188 ) ( 1186 510 188 ) ( 1066 510 188 ) wood/wd_sr_m3y -48 110 -90 1 1 0 0 0 +( 1190 496 192 ) ( 1062 496 192 ) ( 1062 512 192 ) wood/wd_sr_m3y 106 52 -180 1 1 0 0 0 +( 1066 512 188 ) ( 1062 512 192 ) ( 1062 496 192 ) wood/wd_sr_m3y 106 48 -180 1 1 0 0 0 +( 1062 512 192 ) ( 1066 510 188 ) ( 1186 510 188 ) wood/wd_sr_m3y -49 105 90 1 -1 0 0 0 +( 1130 512 192 ) ( 1126 512 188 ) ( 1126 496 188 ) wood/wd_sr_m3y 106 48 -180 1 1 0 0 0 +( 1190 496 192 ) ( 1186 498 188 ) ( 1066 498 188 ) wood/wd_sr_m3y -49 105 90 1 -1 0 0 0 +} +// brush 342 +{ +( 1040 896 160 ) ( 1040 880 160 ) ( 1152 880 160 ) bricks/b_hl_v2 -80 -16 0 1 1 0 0 0 +( 1152 880 240 ) ( 1040 880 240 ) ( 1040 896 240 ) bricks/b_hl_v2 -80 -16 0 1 1 0 0 0 +( 1168 848 192 ) ( 1168 848 272 ) ( 1168 864 272 ) bricks/b_sr_v31b 16 113 0 1 1 0 0 0 +( 1136 512 160 ) ( 1136 512 240 ) ( 1248 512 240 ) bricks/b_sr_v31b -64 113 0 1 1 0 0 0 +( 1152 1296 144 ) ( 1152 1296 224 ) ( 1152 1280 224 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +( 1160 672 240 ) ( 1152 672 160 ) ( 1168 672 160 ) bricks/b_sr_v31b -64 113 0 1 1 0 0 0 +} +// brush 343 +{ +( 1040 896 78 ) ( 1040 880 78 ) ( 1152 880 78 ) wood/wd_sr_va2 -80 -32 0 1 1 0 134217728 0 +( 1152 880 160 ) ( 1040 880 160 ) ( 1040 896 160 ) wood/wd_sr_va2 -80 -32 0 1 1 0 134217728 0 +( 1168 848 112 ) ( 1168 848 192 ) ( 1168 864 192 ) floors/ti_rc_c4a -96 32 0 0.500000 0.500000 0 0 0 +( 1136 512 80 ) ( 1136 512 160 ) ( 1248 512 160 ) floors/ti_rc_c8 0 31 0 0.500000 0.500000 0 0 0 +( 1152 1296 64 ) ( 1152 1296 144 ) ( 1152 1280 144 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 1160 672 160 ) ( 1152 672 80 ) ( 1168 672 80 ) wood/wd_sr_va2 -96 32 0 1 1 0 134217728 0 +} +// brush 344 +{ +( 928 720 160 ) ( 928 704 160 ) ( 1040 704 160 ) bricks/b_hl_v2 -96 32 0 1 1 0 0 0 +( 1040 704 240 ) ( 928 704 240 ) ( 928 720 240 ) bricks/b_hl_v2 -96 32 0 1 1 0 0 0 +( 1062 672 160 ) ( 1062 672 240 ) ( 1062 688 240 ) bricks/b_sr_v31b 0 113 0 1 1 0 0 0 +( 1040 1120 160 ) ( 1040 1120 240 ) ( 1040 1104 240 ) bricks/b_hl_v2 -32 48 0 1 1 0 0 0 +( 1056 512 240 ) ( 1048 512 160 ) ( 1064 512 160 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +( 1048 504 240 ) ( 1056 504 160 ) ( 1040 504 160 ) bricks/b_hl_v2 -112 48 0 1 1 0 0 0 +} +// brush 345 +{ +( 928 720 144 ) ( 928 704 144 ) ( 1040 704 144 ) bricks/b_hl_v2 -96 32 0 1 1 0 0 0 +( 1040 704 240 ) ( 928 704 240 ) ( 928 720 240 ) bricks/b_hl_v2 -96 32 0 1 1 0 0 0 +( 1062 672 160 ) ( 1062 672 240 ) ( 1062 688 240 ) bricks/b_sr_v31b 0 113 0 1 1 0 0 0 +( 1040 496 160 ) ( 1040 496 240 ) ( 1152 496 240 ) bricks/b_sr_v31c 0 116 0 1 1 0 0 0 +( 1040 1120 144 ) ( 1040 1120 224 ) ( 1040 1104 224 ) bricks/b_hl_v2 -32 48 0 1 1 0 0 0 +( 1048 504 240 ) ( 1040 504 160 ) ( 1056 504 160 ) bricks/b_hl_v2 -112 48 0 1 1 0 0 0 +} +// brush 346 +{ +( 928 720 64 ) ( 928 704 64 ) ( 1040 704 64 ) wood/wd_sr_va2 -96 16 0 1 1 0 134217728 0 +( 1040 704 160 ) ( 928 704 160 ) ( 928 720 160 ) wood/wd_sr_va2 -96 16 0 1 1 0 134217728 0 +( 1062 672 80 ) ( 1062 672 160 ) ( 1062 688 160 ) wood/wd_sr_va2 -32 32 0 1 1 0 134217728 0 +( 1040 1120 80 ) ( 1040 1120 160 ) ( 1040 1104 160 ) wood/wd_sr_va2 -32 32 0 1 1 0 134217728 0 +( 1056 512 160 ) ( 1048 512 80 ) ( 1064 512 80 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 1048 504 160 ) ( 1056 504 80 ) ( 1040 504 80 ) wood/wd_sr_va2 -112 32 0 1 1 0 134217728 0 +} +// brush 347 +{ +( 928 720 64 ) ( 928 704 64 ) ( 1040 704 64 ) wood/wd_sr_va2 -96 16 0 1 1 0 134217728 0 +( 1040 704 144 ) ( 928 704 144 ) ( 928 720 144 ) wood/wd_sr_va2 -96 16 0 1 1 0 134217728 0 +( 1062 672 78 ) ( 1062 672 158 ) ( 1062 688 158 ) wood/wd_sr_va2 -32 32 0 1 1 0 134217728 0 +( 1040 496 80 ) ( 1040 496 160 ) ( 1152 496 160 ) floors/ti_rc_c17b 32 31 0 -0.500000 0.500000 0 67108864 0 +( 1040 1120 64 ) ( 1040 1120 144 ) ( 1040 1104 144 ) wood/wd_sr_va2 -32 32 0 1 1 0 134217728 0 +( 1048 504 160 ) ( 1040 504 80 ) ( 1056 504 80 ) wood/wd_sr_va2 -112 32 0 1 1 0 134217728 0 +} +// brush 348 +{ +( 1026 720 160 ) ( 1026 704 160 ) ( 1138 704 160 ) bricks/b_hl_v2 -64 32 0 1 1 0 0 0 +( 1136 704 240 ) ( 1024 704 240 ) ( 1024 720 240 ) bricks/b_hl_v2 -64 32 0 1 1 0 0 0 +( 1152 672 160 ) ( 1152 672 240 ) ( 1152 688 240 ) bricks/b_sr_v31b 0 113 0 1 1 0 0 0 +( 1130 1120 160 ) ( 1130 1120 240 ) ( 1130 1104 240 ) bricks/b_hl_v2 -32 48 0 1 1 0 0 0 +( 1144 512 240 ) ( 1136 512 160 ) ( 1152 512 160 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +( 1048 504 240 ) ( 1056 504 160 ) ( 1040 504 160 ) bricks/b_hl_v2 -80 48 0 1 1 0 0 0 +} +// brush 349 +{ +( 1026 720 144 ) ( 1026 704 144 ) ( 1138 704 144 ) bricks/b_hl_v2 -64 32 0 1 1 0 0 0 +( 1136 704 240 ) ( 1024 704 240 ) ( 1024 720 240 ) bricks/b_hl_v2 -64 32 0 1 1 0 0 0 +( 1152 672 160 ) ( 1152 672 240 ) ( 1152 688 240 ) bricks/b_sr_v31b 0 113 0 1 1 0 0 0 +( 1144 496 160 ) ( 1144 496 240 ) ( 1256 496 240 ) bricks/b_sr_v31b -64 113 0 1 1 0 0 0 +( 1130 1120 144 ) ( 1130 1120 224 ) ( 1130 1104 224 ) bricks/b_hl_v2 -32 48 0 1 1 0 0 0 +( 1048 504 240 ) ( 1040 504 160 ) ( 1056 504 160 ) bricks/b_hl_v2 -80 48 0 1 1 0 0 0 +} +// brush 350 +{ +( 1026 720 64 ) ( 1026 704 64 ) ( 1138 704 64 ) wood/wd_sr_va2 -66 16 0 1 1 0 134217728 0 +( 1138 704 160 ) ( 1026 704 160 ) ( 1026 720 160 ) wood/wd_sr_va2 -66 16 0 1 1 0 134217728 0 +( 1152 672 80 ) ( 1152 672 160 ) ( 1152 688 160 ) wood/wd_sr_va2 -32 32 0 1 1 0 134217728 0 +( 1130 1120 80 ) ( 1130 1120 160 ) ( 1130 1104 160 ) wood/wd_sr_va2 -32 32 0 1 1 0 134217728 0 +( 1146 512 160 ) ( 1138 512 80 ) ( 1154 512 80 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 1048 504 160 ) ( 1056 504 80 ) ( 1040 504 80 ) wood/wd_sr_va2 -82 32 0 1 1 0 134217728 0 +} +// brush 351 +{ +( 1026 720 64 ) ( 1026 704 64 ) ( 1138 704 64 ) wood/wd_sr_va2 -66 16 0 1 1 0 134217728 0 +( 1138 704 144 ) ( 1026 704 144 ) ( 1026 720 144 ) wood/wd_sr_va2 -66 16 0 1 1 0 134217728 0 +( 1152 672 66 ) ( 1152 672 146 ) ( 1152 688 146 ) wood/wd_sr_va2 -32 32 0 1 1 0 134217728 0 +( 1146 496 80 ) ( 1146 496 160 ) ( 1258 496 160 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 67108864 0 +( 1130 1120 64 ) ( 1130 1120 144 ) ( 1130 1104 144 ) wood/wd_sr_va2 -32 32 0 1 1 0 134217728 0 +( 1048 504 160 ) ( 1040 504 80 ) ( 1056 504 80 ) wood/wd_sr_va2 -82 32 0 1 1 0 134217728 0 +} +// brush 352 +{ +( 1040 672 240 ) ( 1040 352 240 ) ( 1152 352 240 ) WOOD/WD_ST_M1B 0 -32 90 2 2 0 0 0 +( 1152 352 256 ) ( 1040 352 256 ) ( 1040 672 256 ) WOOD/WD_ST_M1B 0 -32 90 2 2 0 0 0 +( 1152 656 240 ) ( 1152 656 256 ) ( 1040 656 256 ) WOOD/WD_ST_M1B -88 -32 90 2 2 0 0 0 +( 1152 352 240 ) ( 1152 352 256 ) ( 1152 672 256 ) WOOD/WD_ST_M1B -87 0 90 2 2 0 0 0 +( 1040 672 240 ) ( 1040 672 256 ) ( 1040 352 256 ) WOOD/WD_ST_M1B -87 0 90 2 2 0 0 0 +( 1049 512 256 ) ( 1055 512 240 ) ( 1042 512 240 ) WOOD/WD_ST_M1B -88 -32 90 2 2 0 0 0 +} +// brush 353 +{ +( 1040 672 240 ) ( 1040 352 240 ) ( 1152 352 240 ) bricks/b_rc_v13b -64 0 0 1 1 0 0 0 +( 1152 352 256 ) ( 1040 352 256 ) ( 1040 672 256 ) bricks/b_rc_v13b -64 0 0 1 1 0 0 0 +( 1152 352 240 ) ( 1152 352 256 ) ( 1152 672 256 ) bricks/b_rc_v13b 0 48 0 1 1 0 0 0 +( 1040 384 240 ) ( 1040 384 256 ) ( 1152 384 256 ) bricks/b_rc_v13b -64 48 0 1 1 0 0 0 +( 1040 672 240 ) ( 1040 672 256 ) ( 1040 352 256 ) bricks/b_rc_v13b 0 48 0 1 1 0 0 0 +( 1049 512 256 ) ( 1042 512 240 ) ( 1055 512 240 ) bricks/b_rc_v13b -64 48 0 1 1 0 0 0 +} +// brush 354 +{ +( 1408 512 80 ) ( 1408 384 80 ) ( 1472 384 80 ) floors/r_sr_m2a -127 0 90 0.500000 0.500000 0 0 0 +( 1472 384 88 ) ( 1408 384 88 ) ( 1408 512 88 ) floors/r_sr_m2a -127 0 90 0.500000 0.500000 0 67108864 0 +( 1472 512 80 ) ( 1472 512 96 ) ( 1408 512 96 ) floors/ti_rc_c4a -64 55 0 1 1 0 0 0 +( 1472 384 80 ) ( 1472 384 96 ) ( 1472 512 96 ) floors/r_sr_m2a -95 0 90 0.500000 0.500000 0 0 0 +( 1408 384 80 ) ( 1408 384 96 ) ( 1472 384 96 ) floors/r_sr_m2a -95 0 90 0.500000 0.500000 0 0 0 +( 1440 512 80 ) ( 1440 512 96 ) ( 1440 384 96 ) floors/ti_rc_c4a 0 55 0 1 1 0 0 0 +( 1448 504 88 ) ( 1440 496 80 ) ( 1456 512 80 ) floors/ti_rc_c4a 0 55 0 1 1 0 0 0 +} +// brush 355 +{ +( 1459 403 90 ) ( 1472 403 90 ) ( 1472 423 90 ) metals/m_mf_v1 -35 -52 90 0.500000 0.500000 134217760 24 0 +( 1460 423 90 ) ( 1460 423 92 ) ( 1460 403 92 ) metals/m_mf_v1 -37 5 0 0.500000 0.500000 134217760 24 0 +( 1472 423 91 ) ( 1472 423 93 ) ( 1459 423 93 ) metals/m_mf_v1 52 7 -180 0.500000 -0.500000 134217760 24 0 +( 1472 403 91 ) ( 1472 403 93 ) ( 1472 423 93 ) metals/m_mf_v1 -37 5 0 0.500000 0.500000 134217760 24 0 +( 1459 403 91 ) ( 1459 403 93 ) ( 1472 403 93 ) metals/m_mf_v1 52 7 -180 0.500000 -0.500000 134217760 24 0 +( 1464 421 93 ) ( 1460 419 91 ) ( 1468 423 91 ) metals/m_mf_v1 52 7 -180 0.500000 -0.500000 134217760 24 0 +( 1464 405 93 ) ( 1468 403 91 ) ( 1460 407 91 ) metals/m_mf_v1 52 7 -180 0.500000 -0.500000 134217760 24 0 +( 1465 403 91 ) ( 1460 423 91 ) ( 1470 423 91 ) metals/m_mf_v1 52 35 -180 0.500000 -0.500000 134217760 25 1 +} +// brush 356 +{ +( 1264 672 64 ) ( 1264 352 64 ) ( 1376 352 64 ) bricks/c_sr_m2c -64 0 0 1 1 0 0 0 +( 1392 704 64 ) ( 1392 704 80 ) ( 1280 704 80 ) bricks/c_sr_m2c -64 48 0 1 1 0 0 0 +( 1472 352 68 ) ( 1472 352 84 ) ( 1472 672 84 ) bricks/c_sr_m2c 0 48 0 1 1 0 0 0 +( 1264 384 64 ) ( 1264 384 80 ) ( 1376 384 80 ) bricks/c_sr_m2c -64 48 0 1 1 0 0 0 +( 1216 672 70 ) ( 1216 672 86 ) ( 1216 352 86 ) bricks/c_sr_m2c 0 48 0 1 1 0 0 0 +( 1044 384 78 ) ( 1040 720 78 ) ( 1048 720 78 ) bricks/c_sr_m2c -64 0 0 1 1 0 0 0 +} +// brush 357 +{ +( 1152 672 64 ) ( 1152 352 64 ) ( 1264 352 64 ) bricks/c_mf_v2b -64 0 0 1 1 0 0 0 +( 1264 496 64 ) ( 1264 496 80 ) ( 1152 496 80 ) bricks/c_mf_v2b -64 48 0 1 1 0 0 0 +( 1216 352 70 ) ( 1216 352 86 ) ( 1216 672 86 ) bricks/c_mf_v2b 0 48 0 1 1 0 0 0 +( 1152 384 64 ) ( 1152 384 80 ) ( 1264 384 80 ) bricks/c_mf_v2b -64 48 0 1 1 0 0 0 +( 1152 672 66 ) ( 1152 672 82 ) ( 1152 352 82 ) bricks/c_mf_v2b 0 48 0 1 1 0 0 0 +( 1044 384 78 ) ( 1040 496 78 ) ( 1048 496 78 ) bricks/c_mf_v2b -64 0 0 1 1 0 0 0 +} +// brush 358 +{ +( 1456 680 81 ) ( 1456 680 93 ) ( 1452 684 93 ) bricks/b_sr_v26 -8 36 0 1 1 134217728 0 0 +( 1456 664 81 ) ( 1456 664 93 ) ( 1456 680 93 ) bricks/b_sr_v26 -8 36 0 1 1 134217728 0 0 +( 1456 664 93 ) ( 1456 664 81 ) ( 1452 660 81 ) bricks/b_sr_v26 -8 36 0 1 1 134217728 0 0 +( 1452 660 93 ) ( 1452 660 81 ) ( 1440 660 81 ) bricks/b_sr_v26 -16 36 0 1 1 134217728 0 0 +( 1432 664 81 ) ( 1432 664 93 ) ( 1440 660 93 ) bricks/b_sr_v26 -16 36 0 1 1 134217728 0 0 +( 1432 664 93 ) ( 1432 664 81 ) ( 1432 680 81 ) bricks/b_sr_v26 -8 36 0 1 1 134217728 0 0 +( 1432 680 93 ) ( 1432 680 81 ) ( 1440 684 81 ) bricks/b_sr_v26 -16 36 0 1 1 134217728 0 0 +( 1452 684 81 ) ( 1452 684 93 ) ( 1440 684 93 ) bricks/b_sr_v26 -16 36 0 1 1 134217728 0 0 +( 1456 664 92 ) ( 1456 680 92 ) ( 1432 680 92 ) bricks/b_sr_v26 -16 0 0 1 1 134217728 0 0 +( 1432 679 93 ) ( 1456 679 93 ) ( 1456 663 93 ) bricks/b_sr_v26 -16 0 0 1 1 134217728 0 0 +} +// brush 359 +{ +( 1460 692 160 ) ( 1460 652 160 ) ( 1468 652 160 ) bricks/b_sr_v24t -84 56 90 1 -1 134217728 0 0 +( 1472 652 164 ) ( 1472 692 164 ) ( 1472 692 152 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1468 692 164 ) ( 1460 692 164 ) ( 1460 692 152 ) bricks/b_sr_v24t -60 -56 0 1 -1 134217728 0 0 +( 1460 692 164 ) ( 1460 652 164 ) ( 1460 652 152 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1460 652 164 ) ( 1468 652 164 ) ( 1468 652 152 ) bricks/b_sr_v24t -60 -56 0 1 -1 134217728 0 0 +( 1464 652 152 ) ( 1460 656 152 ) ( 1462 654 188 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1460 688 152 ) ( 1464 692 152 ) ( 1462 690 188 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1468 660 186 ) ( 1468 652 186 ) ( 1460 656 186 ) bricks/b_sr_v24t -60 -104 0 1 -1 134217728 0 0 +} +// brush 360 +{ +( 1468 652 188 ) ( 1460 652 188 ) ( 1460 692 188 ) bricks/b_sr_v24t -83 88 -180 0.500000 -0.500000 134217728 0 0 +( 1472 652 186 ) ( 1472 652 188 ) ( 1472 692 188 ) bricks/b_sr_v24t 14 57 -180 0.500000 -0.500000 134217728 0 0 +( 1464 692 188 ) ( 1464 692 186 ) ( 1472 692 186 ) bricks/b_sr_v24t -82 57 -180 0.500000 -0.500000 134217728 0 0 +( 1460 656 188 ) ( 1460 656 186 ) ( 1460 688 186 ) bricks/b_sr_v24t 14 57 -180 0.500000 -0.500000 134217728 0 0 +( 1472 652 188 ) ( 1472 652 186 ) ( 1464 652 186 ) bricks/b_sr_v24t -82 57 -180 0.500000 -0.500000 134217728 0 0 +( 1464 652 188 ) ( 1464 652 186 ) ( 1460 656 186 ) bricks/b_sr_v24t 14 57 -180 0.500000 -0.500000 134217728 0 0 +( 1460 688 188 ) ( 1460 688 186 ) ( 1464 692 186 ) bricks/b_sr_v24t 14 57 -180 0.500000 -0.500000 134217728 0 0 +( 1468 652 186 ) ( 1468 660 186 ) ( 1460 656 186 ) bricks/b_sr_v24t -83 88 -180 0.500000 -0.500000 134217728 0 0 +} +// brush 361 +{ +( 1456 680 82 ) ( 1456 680 94 ) ( 1452 684 94 ) metals/mt_p_y_m1 0 0 0 0.500000 0.500000 134217760 524313 1 +( 1456 664 82 ) ( 1456 664 94 ) ( 1456 680 94 ) metals/mt_p_y_m1 0 0 0 0.500000 0.500000 134217760 524313 1 +( 1456 664 94 ) ( 1456 664 82 ) ( 1452 660 82 ) metals/mt_p_y_m1 0 0 0 0.500000 0.500000 134217760 524313 1 +( 1452 660 94 ) ( 1452 660 82 ) ( 1440 660 82 ) metals/mt_p_y_m1 0 0 0 0.500000 0.500000 134217760 524313 1 +( 1432 664 82 ) ( 1432 664 94 ) ( 1440 660 94 ) metals/mt_p_y_m1 0 0 0 0.500000 0.500000 134217760 524313 1 +( 1432 664 94 ) ( 1432 664 82 ) ( 1432 680 82 ) metals/mt_p_y_m1 0 0 0 0.500000 0.500000 134217760 524313 1 +( 1432 680 94 ) ( 1432 680 82 ) ( 1440 684 82 ) metals/mt_p_y_m1 0 0 0 0.500000 0.500000 134217760 524313 1 +( 1452 684 82 ) ( 1452 684 94 ) ( 1440 684 94 ) metals/mt_p_y_m1 0 0 0 0.500000 0.500000 134217760 524313 1 +( 1456 664 93 ) ( 1456 680 93 ) ( 1432 680 93 ) metals/mt_p_y_m1 0 0 0 0.500000 0.500000 134217760 524313 1 +( 1433 679 100 ) ( 1457 679 100 ) ( 1457 663 100 ) metals/mt_p_y_m1 0 0 0 0.500000 0.500000 134217760 524313 1 +} +// brush 362 +{ +( 1452 684 92 ) ( 1452 680 92 ) ( 1456 680 92 ) bricks/b_sr_v24t -60 -104 0 1 -1 134217728 0 0 +( 1456 680 104 ) ( 1452 680 104 ) ( 1452 684 104 ) bricks/b_sr_v24t -84 56 90 1 -1 134217728 0 0 +( 1456 680 100 ) ( 1456 684 100 ) ( 1456 684 76 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1456 684 104 ) ( 1452 684 104 ) ( 1452 684 80 ) bricks/b_sr_v24t -60 -56 0 1 -1 134217728 0 0 +( 1456 680 76 ) ( 1452 684 76 ) ( 1454 682 100 ) bricks/b_sr_v24t -35 89 90 1 -1 134217728 0 0 +} +// brush 363 +{ +( 1452 664 92 ) ( 1452 660 92 ) ( 1456 660 92 ) bricks/b_sr_v24t -60 -104 0 1 -1 134217728 0 0 +( 1456 660 104 ) ( 1452 660 104 ) ( 1452 664 104 ) bricks/b_sr_v24t -84 56 90 1 -1 134217728 0 0 +( 1456 660 100 ) ( 1456 664 100 ) ( 1456 664 76 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1452 660 100 ) ( 1456 660 100 ) ( 1456 660 76 ) bricks/b_sr_v24t -60 -56 0 1 -1 134217728 0 0 +( 1452 660 80 ) ( 1456 664 80 ) ( 1454 662 104 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +} +// brush 364 +{ +( 1432 664 104 ) ( 1428 664 104 ) ( 1428 680 104 ) bricks/b_sr_v24t -84 56 90 1 -1 134217728 0 0 +( 1432 664 100 ) ( 1432 680 100 ) ( 1432 680 76 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1432 680 104 ) ( 1428 680 104 ) ( 1428 680 80 ) bricks/b_sr_v24t -60 -56 0 1 -1 134217728 0 0 +( 1428 680 104 ) ( 1428 664 104 ) ( 1428 664 80 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1428 664 104 ) ( 1432 664 104 ) ( 1432 664 80 ) bricks/b_sr_v24t -60 -56 0 1 -1 134217728 0 0 +( 1428 664 96 ) ( 1432 664 92 ) ( 1430 680 94 ) bricks/b_sr_v24t -60 -104 0 1 -1 134217728 0 0 +} +// brush 365 +{ +( 1432 660 104 ) ( 1428 660 104 ) ( 1428 664 104 ) bricks/b_sr_v24t -84 56 90 1 -1 134217728 0 0 +( 1432 660 100 ) ( 1432 664 100 ) ( 1432 664 76 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1432 664 104 ) ( 1428 664 104 ) ( 1428 664 80 ) bricks/b_sr_v24t -60 -56 0 1 -1 134217728 0 0 +( 1432 660 80 ) ( 1428 664 80 ) ( 1430 662 104 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1428 660 96 ) ( 1432 660 92 ) ( 1430 664 94 ) bricks/b_sr_v24t -60 -104 0 1 -1 134217728 0 0 +} +// brush 366 +{ +( 1432 680 104 ) ( 1428 680 104 ) ( 1428 684 104 ) bricks/b_sr_v24t -84 56 90 1 -1 134217728 0 0 +( 1432 680 100 ) ( 1432 684 100 ) ( 1432 684 76 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1428 680 104 ) ( 1432 680 104 ) ( 1432 680 80 ) bricks/b_sr_v24t -60 -56 0 1 -1 134217728 0 0 +( 1428 680 80 ) ( 1432 684 80 ) ( 1430 682 104 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1428 680 96 ) ( 1432 680 92 ) ( 1430 684 94 ) bricks/b_sr_v24t -60 -104 0 1 -1 134217728 0 0 +} +// brush 367 +{ +( 1456 656 104 ) ( 1436 656 104 ) ( 1436 660 104 ) bricks/b_sr_v24t -84 56 90 1 -1 134217728 0 0 +( 1456 656 100 ) ( 1456 660 100 ) ( 1456 660 76 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1456 660 100 ) ( 1436 660 100 ) ( 1436 660 76 ) bricks/b_sr_v24t -60 -56 0 1 -1 134217728 0 0 +( 1440 660 100 ) ( 1440 656 100 ) ( 1440 656 76 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1436 656 104 ) ( 1456 656 104 ) ( 1456 656 80 ) bricks/b_sr_v24t -60 -56 0 1 -1 134217728 0 0 +( 1456 656 96 ) ( 1456 660 92 ) ( 1440 658 94 ) bricks/b_sr_v24t -60 -104 0 1 -1 134217728 0 0 +} +// brush 368 +{ +( 1432 660 92 ) ( 1432 656 92 ) ( 1440 656 92 ) bricks/b_sr_v24t -60 -104 0 1 -1 134217728 0 0 +( 1440 656 104 ) ( 1432 656 104 ) ( 1432 660 104 ) bricks/b_sr_v24t -84 56 90 1 -1 134217728 0 0 +( 1440 656 100 ) ( 1440 660 100 ) ( 1440 660 76 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1432 664 104 ) ( 1432 664 80 ) ( 1440 660 80 ) bricks/b_sr_v24t -60 -56 0 1 -1 134217728 0 0 +( 1432 660 100 ) ( 1432 660 76 ) ( 1432 664 76 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1432 660 80 ) ( 1432 660 104 ) ( 1440 656 104 ) bricks/b_sr_v24t -60 -56 0 1 -1 134217728 0 0 +( 1440 656 96 ) ( 1440 660 92 ) ( 1432 658 94 ) bricks/b_sr_v24t -60 -104 0 1 -1 134217728 0 0 +} +// brush 369 +{ +( 1456 684 104 ) ( 1436 684 104 ) ( 1436 688 104 ) bricks/b_sr_v24t -84 56 90 1 -1 134217728 0 0 +( 1456 684 100 ) ( 1456 688 100 ) ( 1456 688 76 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1456 688 104 ) ( 1436 688 104 ) ( 1436 688 80 ) bricks/b_sr_v24t -60 -56 0 1 -1 134217728 0 0 +( 1440 688 100 ) ( 1440 684 100 ) ( 1440 684 76 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1436 684 104 ) ( 1456 684 104 ) ( 1456 684 80 ) bricks/b_sr_v24t -60 -56 0 1 -1 134217728 0 0 +( 1456 684 92 ) ( 1456 688 96 ) ( 1440 686 94 ) bricks/b_sr_v24t -60 -104 0 1 -1 134217728 0 0 +} +// brush 370 +{ +( 1432 684 92 ) ( 1432 680 92 ) ( 1440 680 92 ) bricks/b_sr_v24t -60 -104 0 1 -1 134217728 0 0 +( 1440 680 104 ) ( 1432 680 104 ) ( 1432 684 104 ) bricks/b_sr_v24t -84 56 90 1 -1 134217728 0 0 +( 1440 684 76 ) ( 1440 684 100 ) ( 1440 688 100 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1440 688 80 ) ( 1440 688 104 ) ( 1432 684 104 ) bricks/b_sr_v24t -60 -56 0 1 -1 134217728 0 0 +( 1432 684 100 ) ( 1432 680 100 ) ( 1432 680 76 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1440 684 104 ) ( 1440 684 80 ) ( 1432 680 80 ) bricks/b_sr_v24t -60 -56 0 1 -1 134217728 0 0 +( 1440 684 92 ) ( 1440 688 96 ) ( 1432 686 94 ) bricks/b_sr_v24t -60 -104 0 1 -1 134217728 0 0 +} +// brush 371 +{ +( 1448 680 92 ) ( 1448 664 92 ) ( 1464 664 92 ) bricks/b_sr_v24t -60 -104 0 1 -1 134217728 0 0 +( 1464 664 104 ) ( 1448 664 104 ) ( 1448 680 104 ) bricks/b_sr_v24t -84 56 90 1 -1 134217728 0 0 +( 1464 664 104 ) ( 1464 680 104 ) ( 1464 680 80 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1456 688 104 ) ( 1456 688 80 ) ( 1464 680 80 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1456 656 100 ) ( 1456 656 76 ) ( 1456 688 76 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1456 656 80 ) ( 1456 656 104 ) ( 1464 664 104 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1464 656 96 ) ( 1464 660 92 ) ( 1456 658 94 ) bricks/b_sr_v24t -60 -104 0 1 -1 134217728 0 0 +( 1464 684 92 ) ( 1464 688 96 ) ( 1456 686 94 ) bricks/b_sr_v24t -60 -104 0 1 -1 134217728 0 0 +} +// brush 372 +{ +( 1316 404 102 ) ( 1348 404 102 ) ( 1348 408 106 ) bricks/b_sr_mv1 101 -71 -180 0.500000 0.500000 134217728 0 0 +( 1356 384 114 ) ( 1316 384 114 ) ( 1316 408 114 ) bricks/b_sr_mv1 101 -71 -180 0.500000 0.500000 134217728 0 0 +( 1356 408 122 ) ( 1316 408 122 ) ( 1316 408 74 ) bricks/b_sr_mv1 -36 113 0 0.500000 0.500000 134217728 0 0 +( 1348 400 106 ) ( 1348 384 106 ) ( 1348 392 114 ) bricks/b_sr_mv1 127 -71 -90 0.500000 -0.500000 134217728 0 0 +( 1316 384 106 ) ( 1316 400 106 ) ( 1316 392 114 ) bricks/b_sr_mv1 127 -71 -90 0.500000 -0.500000 134217728 0 0 +( 1348 404 102 ) ( 1316 404 102 ) ( 1316 404 114 ) bricks/b_sr_mv1 -36 113 0 0.500000 0.500000 134217728 0 0 +} +// brush 373 +{ +( 1316 408 102 ) ( 1316 384 102 ) ( 1356 384 102 ) bricks/b_sr_mv1 101 -71 -180 0.500000 0.500000 134217728 0 0 +( 1356 384 106 ) ( 1316 384 106 ) ( 1316 408 106 ) bricks/b_sr_mv1 101 -71 -180 0.500000 0.500000 134217728 0 0 +( 1316 388 118 ) ( 1356 388 118 ) ( 1356 388 70 ) bricks/b_sr_mv1 0 47 -90 0.500000 0.500000 134217728 0 0 +( 1334 392 106 ) ( 1334 396 106 ) ( 1334 396 102 ) bricks/b_sr_mv1 127 -71 -90 0.500000 -0.500000 134217728 0 0 +( 1330 396 106 ) ( 1330 392 106 ) ( 1330 392 102 ) bricks/b_sr_mv1 127 -71 -90 0.500000 -0.500000 134217728 0 0 +( 1334 392 106 ) ( 1330 392 106 ) ( 1334 392 102 ) bricks/b_sr_mv1 0 47 -90 0.500000 0.500000 134217728 0 0 +} +// brush 374 +{ +( 1316 408 102 ) ( 1316 384 102 ) ( 1356 384 102 ) bricks/b_sr_mv1 101 -71 -180 0.500000 0.500000 134217728 0 0 +( 1356 384 106 ) ( 1316 384 106 ) ( 1316 408 106 ) bricks/b_sr_mv1 101 -71 -180 0.500000 0.500000 134217728 0 0 +( 1316 388 118 ) ( 1356 388 118 ) ( 1356 388 70 ) bricks/b_sr_mv1 0 47 -90 0.500000 0.500000 134217728 0 0 +( 1316 384 102 ) ( 1316 400 102 ) ( 1316 392 110 ) bricks/b_sr_mv1 127 -71 -90 0.500000 -0.500000 134217728 0 0 +( 1334 396 106 ) ( 1330 396 106 ) ( 1330 396 102 ) bricks/b_sr_mv1 0 47 -90 0.500000 0.500000 134217728 0 0 +( 1330 392 106 ) ( 1330 396 106 ) ( 1330 392 102 ) bricks/b_sr_mv1 127 -71 -90 0.500000 -0.500000 134217728 0 0 +} +// brush 375 +{ +( 1316 408 102 ) ( 1316 384 102 ) ( 1356 384 102 ) bricks/b_sr_mv1 101 -71 -180 0.500000 0.500000 134217728 0 0 +( 1356 384 106 ) ( 1316 384 106 ) ( 1316 408 106 ) bricks/b_sr_mv1 101 -71 -180 0.500000 0.500000 134217728 0 0 +( 1316 384 102 ) ( 1316 400 102 ) ( 1316 392 110 ) bricks/b_sr_mv1 127 -71 -90 0.500000 -0.500000 134217728 0 0 +( 1316 404 102 ) ( 1324 404 102 ) ( 1320 404 110 ) bricks/b_sr_mv1 0 47 -90 0.500000 0.500000 134217728 0 0 +( 1334 392 106 ) ( 1334 396 106 ) ( 1334 396 102 ) bricks/b_sr_mv1 127 -71 -90 0.500000 -0.500000 134217728 0 0 +( 1330 396 106 ) ( 1334 396 106 ) ( 1330 396 102 ) bricks/b_sr_mv1 0 47 -90 0.500000 0.500000 134217728 0 0 +} +// brush 376 +{ +( 1316 408 102 ) ( 1316 384 102 ) ( 1356 384 102 ) bricks/b_sr_mv1 101 -71 -180 0.500000 0.500000 134217728 0 0 +( 1356 384 106 ) ( 1316 384 106 ) ( 1316 408 106 ) bricks/b_sr_mv1 101 -71 -180 0.500000 0.500000 134217728 0 0 +( 1316 388 118 ) ( 1356 388 118 ) ( 1356 388 70 ) bricks/b_sr_mv1 0 47 -90 0.500000 0.500000 134217728 0 0 +( 1348 400 102 ) ( 1348 384 102 ) ( 1348 392 110 ) bricks/b_sr_mv1 127 -71 -90 0.500000 -0.500000 134217728 0 0 +( 1316 404 102 ) ( 1324 404 102 ) ( 1320 404 110 ) bricks/b_sr_mv1 0 47 -90 0.500000 0.500000 134217728 0 0 +( 1334 396 106 ) ( 1334 392 106 ) ( 1334 396 102 ) bricks/b_sr_mv1 127 -71 -90 0.500000 -0.500000 134217728 0 0 +} +// brush 377 +{ +( 1334 384 105 ) ( 1330 384 105 ) ( 1330 388 105 ) bricks/c_mf_v3d 23 -99 90 1 1 134217728 0 0 +( 1334 384 107 ) ( 1334 388 107 ) ( 1334 388 98 ) metals/mt_sr_v24 9 63 -90 1 1 134217728 0 0 +( 1334 388 107 ) ( 1330 388 107 ) ( 1330 388 98 ) metals/mt_sr_v24 11 -34 -90 1 -1 134217728 0 0 +( 1330 388 107 ) ( 1330 384 107 ) ( 1330 384 98 ) metals/mt_sr_v24 9 63 -90 1 1 134217728 0 0 +( 1330 384 107 ) ( 1334 384 107 ) ( 1334 384 98 ) metals/mt_sr_v24 11 -34 -90 1 -1 134217728 0 0 +( 1332 383 98 ) ( 1328 387 98 ) ( 1330 385 107 ) metals/mt_sr_v24 11 -28 -90 1 -1 134217728 0 0 +( 1328 385 98 ) ( 1332 389 98 ) ( 1330 387 107 ) metals/mt_sr_v24 11 37 -90 1 1 134217728 0 0 +( 1332 389 98 ) ( 1336 385 98 ) ( 1334 387 107 ) metals/mt_sr_v24 11 -35 -90 1 -1 134217728 0 0 +( 1335 386 98 ) ( 1331 382 98 ) ( 1333 384 107 ) metals/mt_sr_v24 11 31 -90 1 1 134217728 0 0 +( 1334 385 102 ) ( 1334 389 102 ) ( 1330 387 102 ) metals/mt_sr_v24 -12 61 0 1 1 134217728 0 0 +} +// brush 378 +{ +( 1330 388 102 ) ( 1330 384 102 ) ( 1334 384 102 ) bricks/b_sr_mv1 101 -87 -180 0.500000 0.500000 134217728 0 0 +( 1334 384 106 ) ( 1330 384 106 ) ( 1330 388 106 ) bricks/b_sr_mv1 101 -87 -180 0.500000 0.500000 134217728 0 0 +( 1334 384 106 ) ( 1334 388 106 ) ( 1334 388 102 ) bricks/b_sr_mv1 127 -87 -90 0.500000 -0.500000 134217728 0 0 +( 1330 384 106 ) ( 1334 384 106 ) ( 1334 384 102 ) bricks/b_sr_mv1 0 47 -90 0.500000 0.500000 134217728 0 0 +( 1331 382 98 ) ( 1335 386 98 ) ( 1333 384 107 ) bricks/b_sr_mv1 0 -105 -90 0.500000 -0.500000 134217728 0 0 +} +// brush 379 +{ +( 1330 388 102 ) ( 1330 384 102 ) ( 1334 384 102 ) bricks/b_sr_mv1 101 -87 -180 0.500000 0.500000 134217728 0 0 +( 1334 384 106 ) ( 1330 384 106 ) ( 1330 388 106 ) bricks/b_sr_mv1 101 -87 -180 0.500000 0.500000 134217728 0 0 +( 1330 388 106 ) ( 1330 384 106 ) ( 1330 384 102 ) bricks/b_sr_mv1 127 -87 -90 0.500000 -0.500000 134217728 0 0 +( 1330 384 106 ) ( 1334 384 106 ) ( 1334 384 102 ) bricks/b_sr_mv1 0 47 -90 0.500000 0.500000 134217728 0 0 +( 1328 387 98 ) ( 1332 383 98 ) ( 1330 385 107 ) bricks/b_sr_mv1 0 121 -90 0.500000 0.500000 134217728 0 0 +} +// brush 380 +{ +( 1316 404 106 ) ( 1316 388 106 ) ( 1348 388 106 ) metals/mt_sr_mn3 -49 -56 45 0.250000 0.250000 134217760 524328 0 +( 1348 388 110 ) ( 1316 388 110 ) ( 1316 404 110 ) metals/mt_sr_mn3 -49 -56 45 0.250000 0.250000 134217760 524328 0 +( 1348 404 106 ) ( 1348 404 110 ) ( 1316 404 110 ) metals/mt_sr_mn3 -122 16 45 0.250000 0.250000 134217760 524328 0 +( 1348 388 106 ) ( 1348 388 110 ) ( 1348 404 110 ) metals/mt_sr_mn3 -66 73 45 0.250000 0.250000 134217760 524328 0 +( 1316 388 106 ) ( 1316 388 110 ) ( 1348 388 110 ) metals/mt_sr_mn3 -122 16 45 0.250000 0.250000 134217760 524328 0 +( 1316 404 106 ) ( 1316 404 110 ) ( 1316 388 110 ) metals/mt_sr_mn3 -66 73 45 0.250000 0.250000 134217760 524328 0 +} +// brush 381 +{ +( 1274 386 130 ) ( 1259 386 130 ) ( 1259 385 130 ) metals/mt_pv_m14 31 27 -90 1 1 134217728 16384 0 +( 1238 384 166 ) ( 1238 400 166 ) ( 1286 400 166 ) metals/mt_pv_m14 31 27 -90 1 1 134217728 16384 0 +( 1274 384 154 ) ( 1274 384 178 ) ( 1274 400 178 ) metals/mt_pv_m14 30 104 -180 1 -1 134217728 16384 0 +( 1238 385 156 ) ( 1238 385 180 ) ( 1286 385 180 ) metals/mt_pv_m14 -28 104 0 1 1 134217728 16384 0 +( 1286 386 152 ) ( 1286 386 176 ) ( 1238 386 176 ) floors/r_sr_m2 -28 112 0 1 1 134217728 16384 0 +( 1264 385 166 ) ( 1259 385 130 ) ( 1259 386 130 ) floors/r_sr_m2 29 112 0 1 1 134217728 16384 0 +} +// brush 382 +{ +( 1238 384 166 ) ( 1238 400 166 ) ( 1286 400 166 ) metals/mt_pv_m14 31 27 -90 1 1 134217728 16384 0 +( 1238 385 156 ) ( 1238 385 180 ) ( 1286 385 180 ) metals/mt_pv_m14 -28 104 0 1 1 134217728 16384 0 +( 1246 400 154 ) ( 1246 400 178 ) ( 1246 384 178 ) metals/mt_pv_m14 30 104 -180 1 -1 134217728 16384 0 +( 1286 386 152 ) ( 1286 386 176 ) ( 1238 386 176 ) floors/r_sr_m2 -28 112 0 1 1 134217728 16384 0 +( 1256 385 160 ) ( 1247 386 148 ) ( 1265 386 172 ) floors/r_sr_m2 29 112 0 1 1 134217728 16384 0 +( 1255 385 148 ) ( 1264 386 166 ) ( 1246 386 130 ) floors/r_sr_m2 29 112 0 1 1 134217728 16384 0 +} +// brush 383 +{ +( 1257 386 130 ) ( 1247 386 130 ) ( 1247 385 130 ) metals/mt_pv_m14 31 27 -90 1 1 134217728 16384 0 +( 1238 384 166 ) ( 1238 400 166 ) ( 1286 400 166 ) metals/mt_pv_m14 31 27 -90 1 1 134217728 16384 0 +( 1238 385 156 ) ( 1238 385 180 ) ( 1286 385 180 ) metals/mt_pv_m14 -28 104 0 1 1 134217728 16384 0 +( 1286 386 152 ) ( 1286 386 176 ) ( 1238 386 176 ) floors/r_sr_m2 -28 112 0 1 1 134217728 16384 0 +( 1261 385 150 ) ( 1265 386 171 ) ( 1257 386 129 ) floors/r_sr_m2 29 112 0 1 1 134217728 16384 0 +( 1264 385 166 ) ( 1247 385 130 ) ( 1247 386 130 ) floors/r_sr_m2 29 112 0 1 1 134217728 16384 0 +} +// brush 384 +{ +( 1310 384 166 ) ( 1310 400 166 ) ( 1358 400 166 ) metals/mt_pv_m14 31 98 -90 1 1 134217728 16384 0 +( 1346 390 166 ) ( 1346 390 150 ) ( 1346 385 150 ) metals/mt_pv_m14 30 104 -180 1 -1 134217728 16384 0 +( 1310 385 156 ) ( 1310 385 180 ) ( 1358 385 180 ) metals/mt_pv_m14 -100 104 0 1 1 134217728 16384 0 +( 1358 386 153 ) ( 1358 386 177 ) ( 1310 386 177 ) floors/r_sr_m2 -100 112 0 1 1 134217728 32768 0 +( 1326 385 162 ) ( 1322 386 159 ) ( 1330 386 165 ) floors/r_sr_m2 -100 -57 0 1 1 134217728 16384 0 +( 1323 381 160 ) ( 1346 381 150 ) ( 1346 386 150 ) floors/r_sr_m2 -100 -57 0 1 1 134217728 16384 0 +} +// brush 385 +{ +( 1310 385 156 ) ( 1310 385 180 ) ( 1358 385 180 ) metals/mt_pv_m14 -100 104 0 1 1 134217728 16384 0 +( 1358 386 152 ) ( 1358 386 176 ) ( 1310 386 176 ) floors/r_sr_m2 -100 112 0 1 1 134217728 32768 0 +( 1323 385 158 ) ( 1318 385 147 ) ( 1318 386 147 ) floors/r_sr_m2 -43 112 0 1 1 134217728 16384 0 +( 1323 390 158 ) ( 1346 390 150 ) ( 1346 385 150 ) floors/r_sr_m2 -100 -57 0 1 1 134217728 16384 0 +( 1346 386 150 ) ( 1318 386 147 ) ( 1318 385 147 ) floors/r_sr_m2 -100 -57 0 1 1 134217728 16384 0 +} +// brush 386 +{ +( 1354 400 130 ) ( 1306 400 130 ) ( 1306 384 130 ) metals/mt_pv_m14 31 98 -90 1 1 134217728 16384 0 +( 1346 385 130 ) ( 1346 385 150 ) ( 1346 390 150 ) metals/mt_pv_m14 30 104 -180 1 -1 134217728 16384 0 +( 1310 385 156 ) ( 1310 385 180 ) ( 1358 385 180 ) metals/mt_pv_m14 -100 104 0 1 1 134217728 16384 0 +( 1318 390 130 ) ( 1318 390 147 ) ( 1318 385 147 ) metals/mt_pv_m14 30 104 -180 1 -1 134217728 16384 0 +( 1358 386 152 ) ( 1358 386 176 ) ( 1310 386 176 ) floors/r_sr_m2 -100 112 0 1 1 134217728 32768 0 +( 1346 385 150 ) ( 1318 385 147 ) ( 1318 390 147 ) floors/r_sr_m2 -100 -57 0 1 1 134217728 16384 0 +( 1322 385 131 ) ( 1324 390 128 ) ( 1320 390 134 ) floors/r_sr_m2 -43 112 0 1 1 134217728 16384 0 +} +// brush 387 +{ +( 1438 480 79 ) ( 1428 480 79 ) ( 1428 480 78 ) metals/mt_sr_mn3 -61 8 45 0.500000 0.500000 32 524312 0 +( 1408 404 79 ) ( 1408 394 79 ) ( 1408 394 78 ) metals/mt_sr_mn3 -33 36 45 0.500000 0.500000 32 524312 0 +( 1420 384 79 ) ( 1430 384 79 ) ( 1430 384 78 ) metals/mt_sr_mn3 -61 8 45 0.500000 0.500000 32 524312 0 +( 1440 384 79 ) ( 1440 394 79 ) ( 1440 394 78 ) metals/mt_sr_mn3 -33 36 45 0.500000 0.500000 32 524312 0 +( 1436 384 78 ) ( 1436 404 78 ) ( 1424 404 78 ) metals/mt_sr_mn3 -24 -28 45 0.500000 0.500000 32 524312 0 +( 1424 404 79 ) ( 1436 404 79 ) ( 1436 384 79 ) metals/mt_sr_mn3 -24 -28 45 0.500000 0.500000 32 524312 0 +} +// brush 388 +{ +( 1438 672 79 ) ( 1428 672 79 ) ( 1428 672 78 ) metals/mt_sr_mn3 -61 8 45 0.500000 0.500000 32 524312 0 +( 1376 596 79 ) ( 1376 586 79 ) ( 1376 586 78 ) metals/mt_sr_mn3 -33 36 45 0.500000 0.500000 32 524312 0 +( 1420 544 79 ) ( 1430 544 79 ) ( 1430 544 78 ) metals/mt_sr_mn3 -61 8 45 0.500000 0.500000 32 524312 0 +( 1440 576 79 ) ( 1440 586 79 ) ( 1440 586 78 ) metals/mt_sr_mn3 -33 36 45 0.500000 0.500000 32 524312 0 +( 1436 576 78 ) ( 1436 596 78 ) ( 1424 596 78 ) metals/mt_sr_mn3 -24 -28 45 0.500000 0.500000 32 524312 0 +( 1424 596 79 ) ( 1436 596 79 ) ( 1436 576 79 ) metals/mt_sr_mn3 -24 -28 45 0.500000 0.500000 32 524312 0 +} +// brush 389 +{ +( 560 512 64 ) ( 560 320 64 ) ( 1072 320 64 ) wood/wd_st_m7s 0 64 0 1 1 0 134217728 0 +( 1072 320 80 ) ( 560 320 80 ) ( 560 512 80 ) wood/wd_st_m7s 0 64 0 1 1 0 134217728 0 +( 560 576 16 ) ( 560 576 80 ) ( 1072 576 80 ) wood/wd_st_m7s 0 48 0 1 1 0 134217728 0 +( 1024 573 48 ) ( 1024 573 112 ) ( 1024 765 112 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +( 960 573 80 ) ( 960 520 64 ) ( 960 626 64 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +( 1028 640 80 ) ( 960 640 64 ) ( 1096 640 64 ) wood/wd_st_m7s 0 48 0 1 1 0 134217728 0 +} +// brush 390 +{ +( 496 448 64 ) ( 496 256 64 ) ( 1008 256 64 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 1008 256 80 ) ( 496 256 80 ) ( 496 448 80 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 496 512 16 ) ( 496 512 80 ) ( 1008 512 80 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +( 960 509 48 ) ( 960 509 112 ) ( 960 701 112 ) wood/wd_st_m7s 0 48 0 1 1 0 134217728 0 +( 896 509 80 ) ( 896 456 64 ) ( 896 562 64 ) wood/wd_st_m7s 0 48 0 1 1 0 134217728 0 +( 964 576 80 ) ( 896 576 64 ) ( 1032 576 64 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +} +// brush 391 +{ +( 1040 864 160 ) ( 928 864 160 ) ( 928 880 160 ) wood/wd_sr_va2 -96 -16 0 1 1 0 134217728 0 +( 1152 832 80 ) ( 1152 832 160 ) ( 1152 848 160 ) wood/wd_sr_va2 0 32 0 1 1 0 134217728 0 +( 1040 656 80 ) ( 1040 656 160 ) ( 1152 656 160 ) wood/wd_sr_va2c -64 32 0 1 1 0 134217728 0 +( 1040 1280 48 ) ( 1040 1280 128 ) ( 1040 1264 128 ) wood/wd_sr_va2 0 32 0 1 1 0 134217728 0 +( 1048 672 160 ) ( 1040 672 80 ) ( 1056 672 80 ) wood/wd_sr_va2 -112 32 0 1 1 0 134217728 0 +( 1044 658 152 ) ( 1048 672 152 ) ( 1040 672 152 ) wood/wd_sr_va2 -112 -16 0 1 1 0 134217728 0 +} +// brush 392 +{ +( 928 880 78 ) ( 928 864 78 ) ( 1040 864 78 ) wood/wd_sr_va2 -96 -16 0 1 1 0 134217728 0 +( 1152 832 80 ) ( 1152 832 160 ) ( 1152 848 160 ) wood/wd_sr_va2 0 32 0 1 1 0 134217728 0 +( 1040 658 80 ) ( 1040 658 160 ) ( 1152 658 160 ) bricks/b_hl_v2 -112 48 0 1 1 0 1048576 0 +( 1040 1280 48 ) ( 1040 1280 128 ) ( 1040 1264 128 ) wood/wd_sr_va2 0 32 0 1 1 0 134217728 0 +( 1048 672 160 ) ( 1040 672 80 ) ( 1056 672 80 ) wood/wd_sr_va2 -112 32 0 1 1 0 134217728 0 +( 1044 658 152 ) ( 1040 672 152 ) ( 1048 672 152 ) wood/wd_sr_va2 -112 -16 0 1 1 0 134217728 0 +} +// brush 393 +{ +( 1040 659 80 ) ( 1040 656 80 ) ( 1067 656 80 ) wood/wd_sr_va2c -64 -16 0 1 1 134217728 0 0 +( 1067 656 152 ) ( 1040 656 152 ) ( 1040 659 152 ) wood/wd_sr_va2c -64 -16 0 1 1 134217728 0 0 +( 1068 658 144 ) ( 1068 658 152 ) ( 1041 658 152 ) wood/wd_sr_va2c -64 32 0 1 1 134217728 0 0 +( 1066 656 143 ) ( 1066 656 151 ) ( 1066 659 151 ) wood/wd_sr_va2c 0 32 0 1 1 134217728 0 0 +( 1040 656 144 ) ( 1040 656 152 ) ( 1067 656 152 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 134217728 0 0 +( 1040 659 144 ) ( 1040 659 152 ) ( 1040 656 152 ) wood/wd_sr_va2c 0 32 0 1 1 134217728 0 0 +} +// brush 394 +{ +( 1040 672 64 ) ( 1040 352 64 ) ( 1152 352 64 ) bricks/c_sr_m2c -64 0 0 1 1 0 0 0 +( 1152 672 64 ) ( 1152 672 80 ) ( 1040 672 80 ) bricks/c_sr_m2c -64 48 0 1 1 0 0 0 +( 1040 384 64 ) ( 1040 384 80 ) ( 1152 384 80 ) bricks/c_sr_m2c -64 48 0 1 1 0 0 0 +( 1040 672 66 ) ( 1040 672 82 ) ( 1040 352 82 ) bricks/c_sr_m2c 0 48 0 1 1 0 0 0 +( 1044 384 78 ) ( 1040 656 78 ) ( 1048 656 78 ) bricks/c_sr_m2c -64 0 0 1 1 0 0 0 +( 1152 390 78 ) ( 1152 396 64 ) ( 1152 384 64 ) bricks/c_sr_m2c 0 48 0 1 1 0 0 0 +} +// brush 395 +{ +( 1040 672 64 ) ( 1040 352 64 ) ( 1152 352 64 ) bricks/c_sr_m2c -64 0 0 1 1 0 0 0 +( 1152 672 64 ) ( 1152 672 80 ) ( 1040 672 80 ) bricks/c_sr_m2c -64 48 0 1 1 0 0 0 +( 1168 348 70 ) ( 1168 348 86 ) ( 1168 668 86 ) bricks/c_sr_m2c 0 48 0 1 1 0 0 0 +( 1040 512 64 ) ( 1040 512 80 ) ( 1152 512 80 ) bricks/c_sr_m2c -64 48 0 1 1 0 0 0 +( 1044 384 78 ) ( 1040 656 78 ) ( 1048 656 78 ) bricks/c_sr_m2c -64 0 0 1 1 0 0 0 +( 1152 390 78 ) ( 1152 384 64 ) ( 1152 396 64 ) bricks/c_sr_m2c 0 48 0 1 1 0 0 0 +} +// brush 396 +{ +( 1184 640 192 ) ( 1184 608 192 ) ( 1216 608 192 ) bricks/b_sr_mv1 74 -6 -180 0.501465 0.500000 0 0 0 +( 1216 608 224 ) ( 1184 608 224 ) ( 1184 640 224 ) bricks/b_sr_mv1 74 -6 -180 0.501465 0.500000 0 0 0 +( 1216 640 128 ) ( 1216 640 224 ) ( 1184 640 224 ) bricks/b_sr_mv1 74 -6 -180 0.501465 0.500000 0 0 0 +( 1216 608 128 ) ( 1216 608 224 ) ( 1216 640 224 ) metals/mt_pv_m11m 0 0 0 0.500000 0.500000 0 8388608 0 +( 1184 608 128 ) ( 1184 608 224 ) ( 1216 608 224 ) bricks/b_sr_mv1 74 -6 -180 0.501465 0.500000 0 0 0 +( 1200 640 128 ) ( 1200 640 224 ) ( 1200 608 224 ) bricks/b_sr_v31a 16 113 0 1 1 0 0 0 +} +// brush 397 +{ +( 1088 896 144 ) ( 1088 880 144 ) ( 1200 880 144 ) bricks/b_hl_v2 0 -16 0 1 1 0 0 0 +( 1216 848 176 ) ( 1216 848 256 ) ( 1216 864 256 ) bricks/b_sr_v31b 16 113 0 1 1 0 0 0 +( 1184 512 160 ) ( 1184 512 240 ) ( 1296 512 240 ) bricks/b_sr_v31b -112 113 0 1 1 0 0 0 +( 1200 1296 144 ) ( 1200 1296 224 ) ( 1200 1280 224 ) bricks/b_sr_v31a 16 113 0 1 1 0 0 0 +( 1208 704 240 ) ( 1200 704 160 ) ( 1216 704 160 ) bricks/b_sr_v31b -112 113 0 1 1 0 0 0 +( 1184 640 192 ) ( 1216 608 192 ) ( 1184 608 192 ) bricks/b_sr_v31b -112 -63 0 1 1 0 0 0 +} +// brush 398 +{ +( 1200 880 240 ) ( 1088 880 240 ) ( 1088 896 240 ) bricks/b_hl_v2 0 -16 0 1 1 0 0 0 +( 1216 848 176 ) ( 1216 848 256 ) ( 1216 864 256 ) bricks/b_sr_v31b 16 113 0 1 1 0 0 0 +( 1184 512 160 ) ( 1184 512 240 ) ( 1296 512 240 ) bricks/b_sr_v31b -112 113 0 1 1 0 0 0 +( 1200 1296 144 ) ( 1200 1296 224 ) ( 1200 1280 224 ) bricks/b_sr_v31a 16 113 0 1 1 0 0 0 +( 1208 704 240 ) ( 1200 704 160 ) ( 1216 704 160 ) bricks/b_sr_v31b -112 113 0 1 1 0 0 0 +( 1216 608 224 ) ( 1184 640 224 ) ( 1184 608 224 ) bricks/b_sr_v31b -112 -63 0 1 1 0 0 0 +} +// brush 399 +{ +( 1216 848 176 ) ( 1216 848 256 ) ( 1216 864 256 ) bricks/b_sr_v31b 16 113 0 1 1 0 0 0 +( 1200 1296 144 ) ( 1200 1296 224 ) ( 1200 1280 224 ) bricks/b_sr_v31a 16 113 0 1 1 0 0 0 +( 1208 704 240 ) ( 1200 704 160 ) ( 1216 704 160 ) bricks/b_sr_v31b -112 113 0 1 1 0 0 0 +( 1184 640 192 ) ( 1184 608 192 ) ( 1216 608 192 ) bricks/b_sr_v31b -112 -63 0 1 1 0 0 0 +( 1216 608 224 ) ( 1184 608 224 ) ( 1184 640 224 ) bricks/b_sr_v31b -112 -63 0 1 1 0 0 0 +( 1216 640 128 ) ( 1184 640 224 ) ( 1216 640 224 ) bricks/b_sr_v31b -112 113 0 1 1 0 0 0 +} +// brush 400 +{ +( 1216 848 176 ) ( 1216 848 256 ) ( 1216 864 256 ) bricks/b_sr_v31b 16 113 0 1 1 0 0 0 +( 1184 512 160 ) ( 1184 512 240 ) ( 1296 512 240 ) bricks/b_sr_v31b -112 113 0 1 1 0 0 0 +( 1200 1296 144 ) ( 1200 1296 224 ) ( 1200 1280 224 ) bricks/b_sr_v31a 16 113 0 1 1 0 0 0 +( 1184 640 192 ) ( 1184 608 192 ) ( 1216 608 192 ) bricks/b_sr_v31b -112 -63 0 1 1 0 0 0 +( 1216 608 224 ) ( 1184 608 224 ) ( 1184 640 224 ) bricks/b_sr_v31b -112 -63 0 1 1 0 0 0 +( 1184 608 128 ) ( 1216 608 224 ) ( 1184 608 224 ) bricks/b_sr_v31b -112 113 0 1 1 0 0 0 +} +// brush 401 +{ +( 728 456 164 ) ( 728 288 164 ) ( 732 288 164 ) metals/mt_pv_m14y -64 16 0 1 1 134217728 16 0 +( 736 288 224 ) ( 732 288 224 ) ( 732 456 224 ) metals/mt_pv_m14y -64 16 0 1 1 134217728 16 0 +( 732 494 156 ) ( 732 494 160 ) ( 728 494 160 ) metals/mt_pv_m14y -64 44 0 1 1 134217728 16 0 +( 732 288 156 ) ( 732 288 160 ) ( 732 456 160 ) metals/mt_pv_m14y -16 44 0 1 1 134217728 16 0 +( 728 404 148 ) ( 728 404 152 ) ( 732 404 152 ) metals/mt_pv_m14y -64 44 0 1 1 134217728 16 0 +( 728 456 156 ) ( 728 456 160 ) ( 728 288 160 ) metals/mt_pv_m14y -16 44 0 1 1 134217728 16 0 +} +// brush 402 +{ +( 728 596 164 ) ( 728 428 164 ) ( 732 428 164 ) metals/mt_pv_m14y -64 4 0 1 1 134217728 16 0 +( 736 428 224 ) ( 732 428 224 ) ( 732 596 224 ) metals/mt_pv_m14y -64 4 0 1 1 134217728 16 0 +( 732 596 156 ) ( 732 596 160 ) ( 728 596 160 ) metals/mt_pv_m14y -64 44 0 1 1 134217728 16 0 +( 732 428 156 ) ( 732 428 160 ) ( 732 596 160 ) metals/mt_pv_m14y -4 44 0 1 1 134217728 16 0 +( 728 498 148 ) ( 728 498 152 ) ( 732 498 152 ) metals/mt_pv_m14y -64 44 0 1 1 134217728 16 0 +( 728 596 156 ) ( 728 596 160 ) ( 728 428 160 ) metals/mt_pv_m14y -4 44 0 1 1 134217728 16 0 +} +// brush 403 +{ +( 288 16 288 ) ( 256 16 288 ) ( 256 64 288 ) bricks/b_hl_v2 -64 -32 0 1 1 0 0 0 +( 288 64 48 ) ( 288 64 128 ) ( 256 64 128 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 384 16 48 ) ( 384 16 128 ) ( 384 64 128 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 256 16 48 ) ( 256 16 128 ) ( 288 16 128 ) bricks/b_hl_v2 -64 16 0 1 1 0 0 0 +( 256 64 48 ) ( 256 64 128 ) ( 256 16 128 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +( 384 8 160 ) ( 240 16 160 ) ( 240 0 160 ) bricks/b_hl_v2 -64 -32 0 1 1 0 0 0 +} +// brush 404 +{ +( 256 64 48 ) ( 256 16 48 ) ( 288 16 48 ) bricks/b_hl_v2 -64 -32 0 1 1 0 0 0 +( 288 64 48 ) ( 288 64 128 ) ( 256 64 128 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 384 16 48 ) ( 384 16 128 ) ( 384 64 128 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 256 16 48 ) ( 256 16 128 ) ( 288 16 128 ) bricks/b_hl_v2 -64 16 0 1 1 0 0 0 +( 256 64 48 ) ( 256 64 128 ) ( 256 16 128 ) wood/wd_sr_va2a -64 32 0 1 1 0 134217728 0 +( 384 8 160 ) ( 240 0 160 ) ( 240 16 160 ) bricks/b_hl_v2 -64 -32 0 1 1 0 0 0 +} +// brush 405 +{ +( 1024 136 80 ) ( 960 136 80 ) ( 960 72 80 ) wood/wd_sr_va2a -64 0 0 1 1 0 0 0 +( 768 168 44 ) ( 768 168 140 ) ( 768 232 140 ) wood/wd_sr_va2a 0 48 0 1 1 0 0 0 +( 264 16 12 ) ( 264 16 108 ) ( 200 16 108 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 42 0 132 ) ( 46 0 120 ) ( 38 0 120 ) wood/wd_sr_va2a -64 48 0 1 1 0 0 0 +( 724 224 160 ) ( 712 336 160 ) ( 736 336 160 ) wood/wd_sr_va2a -64 0 0 1 1 0 0 0 +( 384 4 144 ) ( 384 -8 80 ) ( 384 16 80 ) wood/wd_sr_va2a 0 48 0 1 1 0 0 0 +} +// brush 406 +{ +( 256 456 44 ) ( 256 456 140 ) ( 256 520 140 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 48 382 -36 ) ( 48 382 60 ) ( 48 318 60 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 232 304 -4 ) ( 232 304 92 ) ( 168 304 92 ) bricks/b_hl_v2 -64 48 0 1 1 0 0 0 +( 18 288 100 ) ( 22 288 88 ) ( 14 288 88 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 50 288 160 ) ( 55 304 160 ) ( 44 304 160 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 256 296 224 ) ( 48 288 224 ) ( 48 304 224 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +} +// brush 407 +{ +( 928 360 288 ) ( 928 424 288 ) ( 992 424 288 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 256 456 28 ) ( 256 456 124 ) ( 256 520 124 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 48 382 -36 ) ( 48 382 60 ) ( 48 318 60 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 232 304 -4 ) ( 232 304 92 ) ( 168 304 92 ) bricks/b_hl_v2 -64 48 0 1 1 0 0 0 +( 18 288 100 ) ( 22 288 88 ) ( 14 288 88 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 256 296 224 ) ( 48 304 224 ) ( 48 288 224 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +} +// brush 408 +{ +( 64 160 -20 ) ( 64 160 76 ) ( 64 224 76 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 48 814 -36 ) ( 48 814 60 ) ( 48 750 60 ) wood/wd_sr_vy2 17 127 180 1 -1 0 0 0 +( 328 288 -20 ) ( 328 288 76 ) ( 264 288 76 ) wood/wd_sr_vy2 97 0 180 1 -1 0 0 0 +( -30 0 100 ) ( -26 0 88 ) ( -34 0 88 ) wood/wd_sr_vy2 97 0 180 1 -1 0 0 0 +( 756 928 160 ) ( 768 1040 160 ) ( 744 1040 160 ) wood/wd_sr_vy2 95 1 180 1 -1 0 0 0 +( 64 296 224 ) ( 48 288 224 ) ( 48 304 224 ) wood/wd_sr_vy2 95 1 180 1 -1 0 0 0 +} +// brush 409 +{ +( 992 776 288 ) ( 992 840 288 ) ( 1056 840 288 ) wood/wd_sr_vy2 96 -5 180 1 -1 0 0 0 +( 64 160 -36 ) ( 64 160 60 ) ( 64 224 60 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 48 814 -36 ) ( 48 814 60 ) ( 48 750 60 ) wood/wd_sr_vy2 17 127 180 1 -1 0 0 0 +( 328 288 -20 ) ( 328 288 76 ) ( 264 288 76 ) wood/wd_sr_vy2 97 0 180 1 -1 0 0 0 +( -30 0 100 ) ( -26 0 88 ) ( -34 0 88 ) wood/wd_sr_vy2 97 0 180 1 -1 0 0 0 +( 64 296 224 ) ( 48 304 224 ) ( 48 288 224 ) wood/wd_sr_vy2 95 1 180 1 -1 0 0 0 +} +// brush 410 +{ +( 288 376 288 ) ( 288 440 288 ) ( 352 440 288 ) bricks/b_hl_v2 -80 0 0 1 1 0 0 0 +( 272 384 -4 ) ( 272 384 92 ) ( 272 448 92 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 256 398 -148 ) ( 256 398 -52 ) ( 256 334 -52 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 216 432 -20 ) ( 216 432 76 ) ( 152 432 76 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 98 288 100 ) ( 102 288 88 ) ( 94 288 88 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 272 296 224 ) ( 256 304 224 ) ( 256 288 224 ) bricks/b_hl_v2 -80 0 0 1 1 0 0 0 +} +// brush 411 +{ +( 272 384 12 ) ( 272 384 108 ) ( 272 448 108 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 256 398 -140 ) ( 256 398 -44 ) ( 256 334 -44 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 216 432 -20 ) ( 216 432 76 ) ( 152 432 76 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +( 98 288 100 ) ( 102 288 88 ) ( 94 288 88 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 258 288 160 ) ( 261 432 160 ) ( 255 432 160 ) bricks/b_hl_v2 -80 0 0 1 1 0 0 0 +( 272 296 224 ) ( 256 288 224 ) ( 256 304 224 ) bricks/b_hl_v2 -80 0 0 1 1 0 0 0 +} +// brush 412 +{ +( 272 456 288 ) ( 272 520 288 ) ( 336 520 288 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 256 464 -20 ) ( 256 464 76 ) ( 256 528 76 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 80 518 -20 ) ( 80 518 76 ) ( 80 454 76 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 200 432 -20 ) ( 200 432 76 ) ( 136 432 76 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 82 416 116 ) ( 86 416 104 ) ( 78 416 104 ) bricks/b_hl_v2 -64 48 0 1 1 0 0 0 +( 256 424 224 ) ( 80 432 224 ) ( 80 416 224 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +} +// brush 413 +{ +( 256 464 4 ) ( 256 464 100 ) ( 256 528 100 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 80 518 -20 ) ( 80 518 76 ) ( 80 454 76 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 200 432 -20 ) ( 200 432 76 ) ( 136 432 76 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 82 416 116 ) ( 86 416 104 ) ( 78 416 104 ) bricks/b_hl_v2 -64 48 0 1 1 0 0 0 +( 253 416 160 ) ( 256 432 160 ) ( 250 432 160 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 256 424 224 ) ( 80 416 224 ) ( 80 432 224 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +} +// brush 414 +{ +( 752 848 -36 ) ( 752 848 60 ) ( 752 912 60 ) wood/wd_sr_vy2 33 127 180 1 -1 0 0 0 +( 336 814 -36 ) ( 336 814 60 ) ( 336 750 60 ) wood/wd_sr_vy2 33 127 180 1 -1 0 0 0 +( 376 1024 -20 ) ( 376 1024 76 ) ( 312 1024 76 ) wood/wd_sr_vy2 81 0 180 1 -1 0 0 0 +( 482 1008 116 ) ( 486 1008 104 ) ( 478 1008 104 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 228 912 160 ) ( 240 1024 160 ) ( 216 1024 160 ) wood/wd_sr_vy2 78 18 180 1 -1 0 0 0 +( 752 1016 288 ) ( 336 1008 288 ) ( 336 1024 288 ) wood/wd_sr_vy2 78 18 180 1 -1 0 0 0 +} +// brush 415 +{ +( 352 752 -36 ) ( 352 752 60 ) ( 352 816 60 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 336 718 -36 ) ( 336 718 60 ) ( 336 654 60 ) wood/wd_sr_vy2 1 127 180 1 -1 0 0 0 +( 376 1008 -20 ) ( 376 1008 76 ) ( 312 1008 76 ) wood/wd_sr_vy2 81 0 180 1 -1 0 0 0 +( 282 784 180 ) ( 286 784 168 ) ( 278 784 168 ) wood/wd_sr_vy2 81 0 180 1 -1 0 0 0 +( 228 816 160 ) ( 240 928 160 ) ( 216 928 160 ) wood/wd_sr_vy2 79 -13 180 1 -1 0 0 0 +( 352 1016 288 ) ( 336 1008 288 ) ( 336 1024 288 ) wood/wd_sr_vy2 79 -13 180 1 -1 0 0 0 +} +// brush 416 +{ +( 352 608 -20 ) ( 352 608 76 ) ( 352 672 76 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 256 654 -36 ) ( 256 654 60 ) ( 256 590 60 ) wood/wd_sr_vy2 49 127 180 1 -1 0 0 0 +( 376 784 44 ) ( 376 784 140 ) ( 312 784 140 ) wood/wd_sr_vy2 81 0 180 1 -1 0 0 0 +( 274 768 164 ) ( 278 768 152 ) ( 270 768 152 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 228 768 160 ) ( 240 880 160 ) ( 216 880 160 ) wood/wd_sr_vy2 79 32 180 1 -1 0 0 0 +( 352 1016 288 ) ( 256 1008 288 ) ( 256 1024 288 ) wood/wd_sr_vy2 79 32 180 1 -1 0 0 0 +} +// brush 417 +{ +( 272 624 -20 ) ( 272 624 76 ) ( 272 688 76 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 256 670 28 ) ( 256 670 124 ) ( 256 606 124 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +( 384 576 -20 ) ( 384 576 76 ) ( 320 576 76 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +( 274 560 116 ) ( 278 560 104 ) ( 270 560 104 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 228 784 160 ) ( 240 896 160 ) ( 216 896 160 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +( 272 1016 288 ) ( 256 1008 288 ) ( 256 1024 288 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +} +// brush 418 +{ +( 272 584 -20 ) ( 272 584 76 ) ( 272 648 76 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 256 638 -36 ) ( 256 638 60 ) ( 256 574 60 ) wood/wd_sr_vy2 -62 127 180 1 -1 0 0 0 +( 376 768 28 ) ( 376 768 124 ) ( 312 768 124 ) wood/wd_sr_vy2 65 0 180 1 -1 0 0 0 +( 258 576 116 ) ( 262 576 104 ) ( 254 576 104 ) wood/wd_sr_vy2 65 0 180 1 -1 0 0 0 +( 212 752 160 ) ( 224 864 160 ) ( 200 864 160 ) wood/wd_sr_vy2 64 48 180 1 -1 0 0 0 +( 272 1016 288 ) ( 256 1008 288 ) ( 256 1024 288 ) wood/wd_sr_vy2 64 48 180 1 -1 0 0 0 +} +// brush 419 +{ +( 448 576 248 ) ( 448 576 344 ) ( 384 576 344 ) wood/wd_st_v4 0 32 0 1 1 0 134217728 0 +( 384 560 104 ) ( 384 560 200 ) ( 448 560 200 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 196 742 110 ) ( 196 742 206 ) ( 196 678 206 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 240 560 224 ) ( 240 568 176 ) ( 240 552 176 ) bricks/b_hl_v2 0 48 0 1 1 0 0 0 +( 36 560 160 ) ( 40 576 160 ) ( 32 576 160 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +( 208 568 288 ) ( 196 560 288 ) ( 196 576 288 ) bricks/b_hl_v2 -64 0 0 1 1 0 0 0 +} +// brush 420 +{ +( 256 432 60 ) ( 256 432 156 ) ( 256 496 156 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 240 494 60 ) ( 240 494 156 ) ( 240 430 156 ) wood/wd_st_v4 0 32 0 1 1 0 134217728 0 +( 392 704 -4 ) ( 392 704 92 ) ( 328 704 92 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 290 560 132 ) ( 294 560 120 ) ( 286 560 120 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 68 560 160 ) ( 72 704 160 ) ( 64 704 160 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +( 256 568 288 ) ( 240 560 288 ) ( 240 576 288 ) wood/wd_sr_va2 0 -16 0 1 1.200000 0 0 0 +} +// brush 421 +{ +( 528 824 80 ) ( 464 824 80 ) ( 464 760 80 ) wood/wd_sr_va2a -64 -16 0 1 1 0 0 0 +( 704 1024 152 ) ( 512 1024 152 ) ( 512 1024 80 ) wood/wd_sr_va2a -64 32 0 1 1 0 0 0 +( 482 1008 116 ) ( 486 1008 104 ) ( 478 1008 104 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 750 1008 160 ) ( 748 1024 160 ) ( 752 1024 160 ) wood/wd_sr_va2a -64 -16 0 1 1 0 0 0 +( 336 1008 80 ) ( 336 1024 80 ) ( 336 1024 152 ) wood/wd_sr_va2a 0 32 0 1 1 0 0 0 +( 448 1016 160 ) ( 448 1024 80 ) ( 448 1008 80 ) wood/wd_sr_va2a 0 32 0 1 1 0 0 0 +} +// brush 422 +{ +( 528 824 80 ) ( 464 824 80 ) ( 464 760 80 ) wood/wd_sr_va2b -64 0 0 1 1 0 0 0 +( 704 1024 152 ) ( 512 1024 152 ) ( 512 1024 80 ) wood/wd_sr_va2b -64 48 0 1 1 0 0 0 +( 482 1008 116 ) ( 486 1008 104 ) ( 478 1008 104 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 750 1008 160 ) ( 748 1024 160 ) ( 752 1024 160 ) wood/wd_sr_va2b -64 0 0 1 1 0 0 0 +( 448 1016 160 ) ( 448 1008 80 ) ( 448 1024 80 ) wood/wd_sr_va2b 0 48 0 1 1 0 0 0 +( 576 1016 160 ) ( 576 1024 80 ) ( 576 1008 80 ) wood/wd_sr_va2b 0 48 0 1 1 0 0 0 +} +// brush 423 +{ +( 528 824 80 ) ( 464 824 80 ) ( 464 760 80 ) wood/wd_sr_va2a -64 -16 0 1 1 0 0 0 +( 704 1024 152 ) ( 512 1024 152 ) ( 512 1024 80 ) wood/wd_sr_va2a -64 32 0 1 1 0 0 0 +( 482 1008 116 ) ( 486 1008 104 ) ( 478 1008 104 ) wood/wd_sr_va2aa 0 0 0 1 1.250000 0 0 0 +( 750 1008 160 ) ( 748 1024 160 ) ( 752 1024 160 ) wood/wd_sr_va2a -64 -16 0 1 1 0 0 0 +( 704 1010 152 ) ( 704 1012 80 ) ( 704 1008 80 ) wood/wd_sr_va2a 0 32 0 1 1 0 0 0 +( 576 1016 160 ) ( 576 1008 80 ) ( 576 1024 80 ) wood/wd_sr_va2a 0 32 0 1 1 0 0 0 +} +// brush 424 +{ +( 320 176 188 ) ( 320 64 188 ) ( 352 64 188 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 0 8388608 0 +( 352 64 220 ) ( 320 64 220 ) ( 320 176 220 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 0 8388608 0 +( 352 66 188 ) ( 352 66 220 ) ( 320 66 220 ) props/sg_sr_b3 0 55 0 0.500000 0.500000 0 0 0 +( 352 64 188 ) ( 352 64 220 ) ( 352 176 220 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 0 8388608 0 +( 320 64 188 ) ( 320 64 220 ) ( 352 64 220 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 0 8388608 0 +( 320 176 188 ) ( 320 176 220 ) ( 320 64 220 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 0 8388608 0 +} +// brush 425 +{ +( 564 477 172 ) ( 564 481 172 ) ( 568 481 172 ) props2/fridg1a -8 24 0 0.500000 0.500000 134217728 8421376 0 +( 571 484 146 ) ( 568 481 172 ) ( 564 481 172 ) props2/fridg1 2 121 -180 0.350000 -0.350000 134217728 8404992 0 +( 571 474 146 ) ( 568 476 172 ) ( 568 482 172 ) props2/fridg1 -134 121 0 0.350000 0.350000 134217728 8404992 0 +( 561 474 146 ) ( 564 477 172 ) ( 568 477 172 ) props2/fridg1 2 121 -180 0.349976 -0.350002 134217728 16384 0 +( 561 484 146 ) ( 564 482 172 ) ( 564 476 172 ) props2/fridg1 -56 121 0 0.349976 0.349998 134217728 16384 0 +( 566 473 146 ) ( 572 485 146 ) ( 560 485 146 ) props/w_sr_m2a -52 -28 0 1 1 134217728 132 0 +} +// brush 426 +{ +( 574 476 180 ) ( 574 482 180 ) ( 576 482 180 ) props/sg_sr_b3 -44 -54 90 0.250000 0.250000 134217728 33 15000 +( 577 480 172 ) ( 577 482 180 ) ( 575 482 180 ) props/sg_sr_b3 -54 56 0 0.250000 0.250000 134217728 33 15000 +( 576 477 158 ) ( 576 477 178 ) ( 576 481 178 ) props/sg_sr_b3 -21 13 0 0.100000 0.100000 134217728 33 15000 +( 574 478 172 ) ( 574 476 180 ) ( 576 476 180 ) props/sg_sr_b3 -54 57 0 0.250000 0.250000 134217728 33 15000 +( 575 481 158 ) ( 575 481 178 ) ( 575 477 178 ) props/sg_sr_b3 -20 14 0 0.100000 0.100000 134217728 33 15000 +( 578 476 174 ) ( 581 482 174 ) ( 574 482 174 ) metals/mt_mf_v1c -41 52 0 0.100000 0.100000 134217728 8388640 0 +} +// brush 427 +{ +( 574 496 180 ) ( 574 502 180 ) ( 576 502 180 ) props/sg_sr_ba3 -54 43 0 0.200000 0.200000 134217728 33 15000 +( 577 500 172 ) ( 577 502 180 ) ( 575 502 180 ) props/sg_sr_ba3 -54 39 0 0.200000 0.200000 134217728 33 15000 +( 576 497 158 ) ( 576 497 178 ) ( 576 501 178 ) props/sg_sr_ba3 -32 16 0 0.100000 0.100000 134217728 33 15000 +( 574 498 172 ) ( 574 496 180 ) ( 576 496 180 ) props/sg_sr_ba3 -54 39 0 0.200000 0.200000 134217728 33 15000 +( 575 501 158 ) ( 575 501 178 ) ( 575 497 178 ) props/sg_sr_ba3 -30 17 0 0.100000 0.100000 134217728 33 15000 +( 578 496 174 ) ( 581 502 174 ) ( 574 502 174 ) metals/mt_mf_v1c -41 52 0 0.100000 0.100000 134217728 8388640 0 +} +// brush 428 +{ +( 564 497 172 ) ( 564 501 172 ) ( 568 501 172 ) props2/fridg1a -7 16 0 0.500000 0.500000 134217728 8421376 0 +( 571 504 146 ) ( 568 501 172 ) ( 564 501 172 ) props2/fridg1 3 121 -180 0.349976 -0.350002 134217728 16384 0 +( 571 494 146 ) ( 568 496 172 ) ( 568 502 172 ) props2/fridg1 -57 121 0 0.350000 0.350000 134217728 8404992 0 +( 561 494 146 ) ( 564 497 172 ) ( 568 497 172 ) props2/fridg1 3 121 -180 0.349976 -0.350002 134217728 16384 0 +( 561 504 146 ) ( 564 502 172 ) ( 564 496 172 ) props2/fridg1 -114 121 0 0.349976 0.349998 134217728 16384 0 +( 566 493 146 ) ( 572 505 146 ) ( 560 505 146 ) props/w_sr_m2a -51 -48 0 1 1 134217728 132 0 +} +// brush 429 +{ +( 564 517 172 ) ( 564 521 172 ) ( 568 521 172 ) props2/fridg1a -7 8 0 0.500000 0.500000 134217728 8421376 0 +( 571 524 146 ) ( 568 521 172 ) ( 564 521 172 ) props2/fridg1 3 121 -180 0.349976 -0.350002 134217728 16384 0 +( 571 514 146 ) ( 568 516 172 ) ( 568 522 172 ) props2/fridg1 -115 121 0 0.350000 0.350000 134217728 8404992 0 +( 561 514 146 ) ( 564 517 172 ) ( 568 517 172 ) props2/fridg1 3 121 -180 0.349976 -0.350002 134217728 16384 0 +( 561 524 146 ) ( 564 522 172 ) ( 564 516 172 ) props2/fridg1 -170 121 0 0.350000 0.350000 134217728 16384 0 +( 566 513 146 ) ( 572 525 146 ) ( 560 525 146 ) props/w_sr_m2a -51 -4 0 1 1 134217728 132 0 +} +// brush 430 +{ +( 574 516 180 ) ( 574 522 180 ) ( 576 522 180 ) props/sg_sr_ba2 -53 -68 90 0.200000 0.200000 134217728 33 15000 +( 576 520 172 ) ( 576 522 180 ) ( 574 522 180 ) props/sg_sr_ba2 -3 40 0 0.200000 0.200000 134217728 33 50000 +( 576 517 158 ) ( 576 517 178 ) ( 576 521 178 ) props/sg_sr_ba2 -39 14 0 0.100000 0.100000 134217728 33 15000 +( 574 518 172 ) ( 574 516 180 ) ( 576 516 180 ) props/sg_sr_ba2 -54 38 0 0.200000 0.200000 134217728 33 15000 +( 575 521 158 ) ( 575 521 178 ) ( 575 517 178 ) props/sg_sr_ba2 -36 13 0 0.100000 0.100000 134217728 33 15000 +( 578 516 174 ) ( 581 522 174 ) ( 574 522 174 ) metals/mt_mf_v1c -41 52 0 0.100000 0.100000 134217728 8388640 0 +} +// brush 431 +{ +( 560 592 120 ) ( 560 400 120 ) ( 592 400 120 ) wood/wd_sr_va2 -64 82 0 0.250000 0.300000 0 0 0 +( 592 400 144 ) ( 560 400 144 ) ( 560 592 144 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 588 400 112 ) ( 588 400 160 ) ( 588 592 160 ) wood/wd_sr_va2a 0 16 0 1 1 0 0 0 +( 560 400 112 ) ( 560 400 160 ) ( 592 400 160 ) wood/wd_sr_va2 -64 113 0 0.250000 0.300000 0 0 0 +( 560 592 112 ) ( 560 592 160 ) ( 560 400 160 ) wood/wd_sr_va2 -64 113 0 0.250000 0.300000 0 0 0 +( 576 469 140 ) ( 588 469 144 ) ( 576 469 144 ) wood/wd_sr_va2 -64 113 0 0.250000 0.300000 0 0 0 +} +// brush 432 +{ +( 560 592 120 ) ( 560 400 120 ) ( 592 400 120 ) wood/wd_sr_va2 -64 82 0 0.250000 0.300000 0 0 0 +( 592 400 144 ) ( 560 400 144 ) ( 560 592 144 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 592 592 112 ) ( 592 592 160 ) ( 560 592 160 ) wood/wd_sr_va2 -64 113 0 0.250000 0.300000 0 0 0 +( 560 592 112 ) ( 560 592 160 ) ( 560 400 160 ) wood/wd_sr_va2 -64 113 0 0.250000 0.300000 0 0 0 +( 576 469 140 ) ( 576 469 144 ) ( 588 469 144 ) wood/wd_sr_va2 -64 113 0 0.250000 0.300000 0 0 0 +( 576 541 140 ) ( 576 501 144 ) ( 576 541 144 ) wood/wd_sr_va2 -64 113 0 0.250000 0.300000 0 0 0 +} +// brush 433 +{ +( 560 592 120 ) ( 560 400 120 ) ( 592 400 120 ) wood/wd_sr_va2 -64 82 0 0.250000 0.300000 0 0 0 +( 592 400 144 ) ( 560 400 144 ) ( 560 592 144 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 592 592 112 ) ( 592 592 160 ) ( 560 592 160 ) wood/wd_sr_va2 -64 113 0 0.250000 0.300000 0 0 0 +( 588 400 112 ) ( 588 400 160 ) ( 588 592 160 ) wood/wd_sr_va2a 0 16 0 1 1 0 134217728 0 +( 576 541 140 ) ( 576 541 144 ) ( 576 501 144 ) wood/wd_sr_va2 -64 113 0 0.250000 0.300000 0 0 0 +( 588 529 140 ) ( 576 529 144 ) ( 588 529 144 ) wood/wd_sr_va2 -64 113 0 0.250000 0.300000 0 0 0 +} +// brush 434 +{ +( 576 509 144 ) ( 576 549 144 ) ( 588 549 144 ) metals/mt_pv_m16j 55 -38 -180 0.250000 0.240000 0 8421376 0 +( 588 509 140 ) ( 588 509 144 ) ( 588 549 144 ) metals/mt_pv_m16bb 59 33 -180 0.250000 -0.250000 0 0 0 +( 576 469 140 ) ( 576 469 144 ) ( 588 469 144 ) props/stool_t5 -10 8 0 1 1 0 0 0 +( 576 541 140 ) ( 576 541 144 ) ( 576 501 144 ) props/stool_t5 43 9 -180 1 -1 0 0 0 +( 588 529 140 ) ( 588 529 144 ) ( 576 529 144 ) props/stool_t5 -10 8 0 1 1 0 0 0 +( 583 469 142 ) ( 588 529 142 ) ( 578 529 142 ) props/stool_t5 -10 24 0 1 1 0 0 0 +} +// brush 435 +{ +( 589 549 120 ) ( 577 549 120 ) ( 577 509 120 ) props/stool_t5 44 9 -90 1 1 0 0 0 +( 588 509 140 ) ( 588 509 144 ) ( 588 549 144 ) wood/wd_sr_va2a 0 16 0 1 1 0 0 0 +( 576 469 140 ) ( 576 469 144 ) ( 588 469 144 ) props/stool_t5 -10 8 0 1 1 0 0 0 +( 576 541 140 ) ( 576 541 144 ) ( 576 501 144 ) props/stool_t5 43 9 -180 1 -1 0 0 0 +( 588 529 140 ) ( 588 529 144 ) ( 576 529 144 ) props/stool_t5 -10 8 0 1 1 0 0 0 +( 583 469 142 ) ( 578 529 142 ) ( 588 529 142 ) props/stool_t5 -10 24 0 1 1 0 0 0 +} +// brush 436 +{ +( 1466 399 80 ) ( 1364 444 80 ) ( 1494 737 80 ) bricks/b_rc_v16 -78 7 63 1.000139 1.000027 134217728 0 0 +( 1569 590 64 ) ( 1569 590 80 ) ( 1466 635 80 ) bricks/b_rc_v16 -4 48 0 0.913574 1 134217728 0 0 +( 1349 451 70 ) ( 1349 451 86 ) ( 1479 743 86 ) bricks/b_rc_v16 -20 48 0 0.913551 1 134217728 0 0 +( 1453 606 64 ) ( 1453 606 80 ) ( 1556 560 80 ) bricks/b_rc_v16 -118 48 0 0.913574 1 134217728 0 0 +( 1450 756 70 ) ( 1450 756 86 ) ( 1320 464 86 ) bricks/b_rc_v16 -5 48 0 0.913536 1 134217728 0 0 +( 1176 563 78 ) ( 1316 868 78 ) ( 1309 872 78 ) bricks/b_rc_v16 -118 -32 23 1.000139 1.000027 134217728 0 0 +} +// brush 437 +{ +( 1408 576 80 ) ( 1408 464 80 ) ( 1088 464 80 ) bricks/b_rc_v16 -64 0 0 1 1 134217728 67108864 0 +( 1376 464 64 ) ( 1376 464 80 ) ( 1376 576 80 ) bricks/b_rc_v16 0 48 0 1 1 134217728 0 0 +( 1088 416 70 ) ( 1088 416 86 ) ( 1408 416 86 ) bricks/b_rc_v16 -64 48 0 1 1 134217728 0 0 +( 1376 244 78 ) ( 1040 248 78 ) ( 1040 240 78 ) bricks/b_rc_v16 -64 0 0 1 1 134217728 0 0 +( 1352 432 80 ) ( 1344 416 76 ) ( 1360 448 76 ) bricks/b_rc_v16 0 48 0 1 1 134217728 0 0 +( 1360 436 80 ) ( 1352 432 76 ) ( 1368 440 76 ) bricks/b_rc_v16 -64 48 0 1 1 134217728 0 0 +} +// brush 438 +{ +( 1232 352 80 ) ( 1120 352 80 ) ( 1120 672 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 67108864 0 +( 1232 576 64 ) ( 1232 576 80 ) ( 1120 576 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1152 352 70 ) ( 1152 352 86 ) ( 1152 672 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1120 448 64 ) ( 1120 448 80 ) ( 1232 448 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1120 672 66 ) ( 1120 672 82 ) ( 1120 352 82 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1124 384 78 ) ( 1128 656 78 ) ( 1120 656 78 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +} +// brush 439 +{ +( 1152 384 80 ) ( 1040 384 80 ) ( 1040 704 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 67108864 0 +( 1152 640 64 ) ( 1152 640 80 ) ( 1040 640 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1088 384 70 ) ( 1088 384 86 ) ( 1088 704 86 ) bricks/b_rc_v16 32 48 0 1 1 0 0 0 +( 1040 608 64 ) ( 1040 608 80 ) ( 1152 608 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1040 704 66 ) ( 1040 704 82 ) ( 1040 384 82 ) bricks/b_rc_v16 32 48 0 1 1 0 0 0 +( 1044 416 78 ) ( 1048 688 78 ) ( 1040 688 78 ) bricks/b_rc_v16 -64 -32 0 1 1 0 0 0 +} +// brush 440 +{ +( 1152 400 80 ) ( 1040 400 80 ) ( 1040 720 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 67108864 0 +( 1152 658 64 ) ( 1152 658 80 ) ( 1040 658 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1152 400 70 ) ( 1152 400 86 ) ( 1152 720 86 ) bricks/b_rc_v16 48 48 0 1 1 0 0 0 +( 1040 640 64 ) ( 1040 640 80 ) ( 1152 640 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1040 720 66 ) ( 1040 720 82 ) ( 1040 400 82 ) bricks/b_rc_v16 48 48 0 1 1 0 0 0 +( 1044 432 78 ) ( 1048 704 78 ) ( 1040 704 78 ) bricks/b_rc_v16 -64 -48 0 1 1 0 0 0 +} +// brush 441 +{ +( 1472 352 80 ) ( 1360 352 80 ) ( 1360 672 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +( 1488 544 64 ) ( 1488 544 80 ) ( 1376 544 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1344 400 70 ) ( 1344 400 86 ) ( 1344 720 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1376 512 64 ) ( 1376 512 80 ) ( 1488 512 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1280 672 70 ) ( 1280 672 86 ) ( 1280 352 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1140 384 78 ) ( 1144 720 78 ) ( 1136 720 78 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +} +// brush 442 +{ +( 1408 672 78 ) ( 1408 640 78 ) ( 1440 640 78 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +( 1440 640 80 ) ( 1408 640 80 ) ( 1408 672 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +( 1440 672 78 ) ( 1440 672 110 ) ( 1408 672 110 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1392 640 78 ) ( 1392 640 110 ) ( 1392 672 110 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1408 656 78 ) ( 1408 656 110 ) ( 1440 656 110 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1376 672 78 ) ( 1376 672 110 ) ( 1376 640 110 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +} +// brush 443 +{ +( 1408 704 78 ) ( 1408 672 78 ) ( 1440 672 78 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +( 1440 672 80 ) ( 1408 672 80 ) ( 1408 704 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +( 1440 704 78 ) ( 1440 704 110 ) ( 1408 704 110 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1440 672 78 ) ( 1440 672 110 ) ( 1440 704 110 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1408 672 78 ) ( 1408 672 110 ) ( 1440 672 110 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1376 704 78 ) ( 1376 704 110 ) ( 1376 672 110 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +} +// brush 444 +{ +( 1440 640 78 ) ( 1440 608 78 ) ( 1472 608 78 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +( 1472 608 80 ) ( 1440 608 80 ) ( 1440 640 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +( 1472 704 78 ) ( 1472 704 110 ) ( 1440 704 110 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1472 608 78 ) ( 1472 608 110 ) ( 1472 640 110 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1440 608 78 ) ( 1440 608 110 ) ( 1472 608 110 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1440 640 78 ) ( 1440 640 110 ) ( 1440 608 110 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +} +// brush 445 +{ +( 1600 544 80 ) ( 1488 544 80 ) ( 1488 864 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +( 1616 608 64 ) ( 1616 608 80 ) ( 1504 608 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1472 544 70 ) ( 1472 544 86 ) ( 1472 864 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1484 512 64 ) ( 1484 512 80 ) ( 1596 512 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1408 868 70 ) ( 1408 868 86 ) ( 1408 548 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1236 580 78 ) ( 1240 916 78 ) ( 1232 916 78 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +} +// brush 446 +{ +( 1056 416 78 ) ( 1056 384 78 ) ( 1072 384 78 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +( 1072 384 80 ) ( 1056 384 80 ) ( 1056 416 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 67108864 0 +( 1072 416 78 ) ( 1072 416 86 ) ( 1056 416 86 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1088 384 72 ) ( 1088 384 80 ) ( 1088 416 80 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1056 384 78 ) ( 1056 384 86 ) ( 1072 384 86 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1056 416 72 ) ( 1056 416 80 ) ( 1056 384 80 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +} +// brush 447 +{ +( 1040 416 78 ) ( 1040 384 78 ) ( 1056 384 78 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +( 1056 384 80 ) ( 1040 384 80 ) ( 1040 416 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 67108864 0 +( 1056 448 78 ) ( 1056 448 86 ) ( 1040 448 86 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1056 384 72 ) ( 1056 384 80 ) ( 1056 416 80 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1040 384 78 ) ( 1040 384 86 ) ( 1056 384 86 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1040 416 78 ) ( 1040 416 86 ) ( 1040 384 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +} +// brush 448 +{ +( 1120 416 78 ) ( 1120 384 78 ) ( 1152 384 78 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +( 1152 384 80 ) ( 1120 384 80 ) ( 1120 416 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 67108864 0 +( 1152 416 78 ) ( 1152 416 94 ) ( 1120 416 94 ) bricks/b_rc_v16 -64 46 0 1 1 0 0 0 +( 1152 384 78 ) ( 1152 384 94 ) ( 1152 416 94 ) bricks/b_rc_v16 0 46 0 1 1 0 0 0 +( 1120 384 78 ) ( 1120 384 94 ) ( 1152 384 94 ) bricks/b_rc_v16 -64 46 0 1 1 0 0 0 +( 1120 416 72 ) ( 1120 416 88 ) ( 1120 384 88 ) bricks/b_rc_v16 0 46 0 1 1 0 0 0 +( 1132 408 88 ) ( 1120 400 72 ) ( 1144 416 72 ) bricks/b_rc_v16 -64 46 0 1 1 0 0 0 +} +// brush 449 +{ +( 1504 352 80 ) ( 1392 352 80 ) ( 1392 672 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +( 1520 704 64 ) ( 1520 704 80 ) ( 1408 704 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1376 400 70 ) ( 1376 400 86 ) ( 1376 720 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1408 512 64 ) ( 1408 512 80 ) ( 1520 512 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1344 672 70 ) ( 1344 672 86 ) ( 1344 352 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1172 384 78 ) ( 1176 720 78 ) ( 1168 720 78 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +} +// brush 450 +{ +( 1376 224 80 ) ( 1264 224 80 ) ( 1264 544 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +( 1392 416 64 ) ( 1392 416 80 ) ( 1280 416 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1376 224 70 ) ( 1376 224 86 ) ( 1376 544 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1280 384 64 ) ( 1280 384 80 ) ( 1392 384 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1216 544 70 ) ( 1216 544 86 ) ( 1216 224 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1044 256 78 ) ( 1048 592 78 ) ( 1040 592 78 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +} +// brush 451 +{ +( 1568 384 80 ) ( 1456 384 80 ) ( 1456 704 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +( 1584 512 64 ) ( 1584 512 80 ) ( 1472 512 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1472 384 68 ) ( 1472 384 84 ) ( 1472 704 84 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1456 480 66 ) ( 1456 480 82 ) ( 1568 480 82 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1408 704 70 ) ( 1408 704 86 ) ( 1408 384 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1236 416 78 ) ( 1240 752 78 ) ( 1232 752 78 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +} +// brush 452 +{ +( 1536 384 80 ) ( 1424 384 80 ) ( 1424 704 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +( 1552 544 64 ) ( 1552 544 80 ) ( 1440 544 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1408 384 70 ) ( 1408 384 86 ) ( 1408 704 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1424 512 64 ) ( 1424 512 80 ) ( 1536 512 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1376 704 70 ) ( 1376 704 86 ) ( 1376 384 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1204 416 78 ) ( 1208 752 78 ) ( 1200 752 78 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +} +// brush 453 +{ +( 1536 352 80 ) ( 1424 352 80 ) ( 1424 672 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +( 1552 512 64 ) ( 1552 512 80 ) ( 1440 512 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1408 352 70 ) ( 1408 352 86 ) ( 1408 672 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1424 384 64 ) ( 1424 384 80 ) ( 1536 384 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1376 672 70 ) ( 1376 672 86 ) ( 1376 352 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1204 384 78 ) ( 1208 720 78 ) ( 1200 720 78 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +} +// brush 454 +{ +( 1264 352 80 ) ( 1152 352 80 ) ( 1152 672 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 67108864 0 +( 1264 496 64 ) ( 1264 496 80 ) ( 1152 496 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1216 352 70 ) ( 1216 352 86 ) ( 1216 672 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1152 384 64 ) ( 1152 384 80 ) ( 1264 384 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1152 672 66 ) ( 1152 672 82 ) ( 1152 352 82 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1044 384 78 ) ( 1048 496 78 ) ( 1040 496 78 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +} +// brush 455 +{ +( 1152 352 80 ) ( 1040 352 80 ) ( 1040 672 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 67108864 0 +( 1152 608 64 ) ( 1152 608 80 ) ( 1040 608 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1120 352 70 ) ( 1120 352 86 ) ( 1120 672 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1040 448 64 ) ( 1040 448 80 ) ( 1152 448 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1040 672 66 ) ( 1040 672 82 ) ( 1040 352 82 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1044 384 78 ) ( 1048 656 78 ) ( 1040 656 78 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +} +// brush 456 +{ +( 1088 704 144 ) ( 1088 592 144 ) ( 1072 592 144 ) floors/ti_rc_c3a -64 0 0 1 1 0 0 0 +( 1064 720 80 ) ( 1064 720 160 ) ( 1048 720 160 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 832 704 80 ) ( 832 704 160 ) ( 848 704 160 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 67108864 0 +( 1200 744 144 ) ( 1200 736 64 ) ( 1200 752 64 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1280 720 144 ) ( 1280 736 78 ) ( 1280 704 78 ) floors/ti_rc_c3a 0 48 0 1 1 0 0 0 +( 1032 704 84 ) ( 1036 720 84 ) ( 1028 720 84 ) floors/ti_rc_c3a -64 0 0 1 1 0 0 0 +} +// brush 457 +{ +( 1064 720 80 ) ( 1064 720 160 ) ( 1048 720 160 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 832 704 80 ) ( 832 704 160 ) ( 848 704 160 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1200 744 144 ) ( 1200 736 64 ) ( 1200 752 64 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1280 720 144 ) ( 1280 736 78 ) ( 1280 704 78 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1202 704 64 ) ( 1204 720 64 ) ( 1199 720 64 ) floors/ti_rc_c8 0 59 0 0.500000 0.500000 0 0 0 +( 1032 704 84 ) ( 1028 720 84 ) ( 1036 720 84 ) floors/ti_rc_c8 0 59 0 0.500000 0.500000 0 0 0 +} +// brush 458 +{ +( 1152 864 144 ) ( 1040 864 144 ) ( 1040 880 144 ) floors/ti_rc_c8 0 64 0 0.500000 0.500000 0 0 0 +( 1216 832 96 ) ( 1216 832 176 ) ( 1216 848 176 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 67108864 0 +( 1136 496 80 ) ( 1136 496 160 ) ( 1248 496 160 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 67108864 0 +( 1152 1280 50 ) ( 1152 1280 130 ) ( 1152 1264 130 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1160 512 160 ) ( 1152 512 80 ) ( 1168 512 80 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1032 496 84 ) ( 1036 512 84 ) ( 1028 512 84 ) floors/ti_rc_c8 0 64 0 0.500000 0.500000 0 0 0 +} +// brush 459 +{ +( 1040 880 64 ) ( 1040 864 64 ) ( 1152 864 64 ) floors/ti_rc_c8 0 59 0 0.500000 0.500000 0 0 0 +( 1216 832 96 ) ( 1216 832 176 ) ( 1216 848 176 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1136 496 80 ) ( 1136 496 160 ) ( 1248 496 160 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1152 1280 50 ) ( 1152 1280 130 ) ( 1152 1264 130 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1160 512 160 ) ( 1152 512 80 ) ( 1168 512 80 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1032 496 84 ) ( 1028 512 84 ) ( 1036 512 84 ) floors/ti_rc_c8 0 59 0 0.500000 0.500000 0 0 0 +} +// brush 460 +{ +( 1200 880 144 ) ( 1088 880 144 ) ( 1088 896 144 ) floors/ti_rc_c8 0 64 0 0.500000 0.500000 0 0 0 +( 1216 880 96 ) ( 1216 880 176 ) ( 1216 896 176 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 67108864 0 +( 1184 512 80 ) ( 1184 512 160 ) ( 1296 512 160 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1200 1296 64 ) ( 1200 1296 144 ) ( 1200 1280 144 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1208 704 160 ) ( 1200 704 80 ) ( 1216 704 80 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1032 512 84 ) ( 1036 704 84 ) ( 1028 704 84 ) floors/ti_rc_c8 0 64 0 0.500000 0.500000 0 0 0 +} +// brush 461 +{ +( 1088 896 64 ) ( 1088 880 64 ) ( 1200 880 64 ) floors/ti_rc_c8 0 59 0 0.500000 0.500000 0 0 0 +( 1216 880 96 ) ( 1216 880 176 ) ( 1216 896 176 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1184 512 80 ) ( 1184 512 160 ) ( 1296 512 160 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1200 1296 64 ) ( 1200 1296 144 ) ( 1200 1280 144 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1208 704 160 ) ( 1200 704 80 ) ( 1216 704 80 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1032 512 84 ) ( 1028 704 84 ) ( 1036 704 84 ) floors/ti_rc_c8 0 59 0 0.500000 0.500000 0 0 0 +} +// brush 462 +{ +( 1024 688 144 ) ( 912 688 144 ) ( 912 704 144 ) floors/ti_rc_c8 0 64 0 0.500000 0.500000 0 0 0 +( 1040 688 80 ) ( 1040 688 160 ) ( 1040 704 160 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 67108864 0 +( 1008 384 80 ) ( 1008 384 160 ) ( 1120 384 160 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1024 1104 80 ) ( 1024 1104 160 ) ( 1024 1088 160 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1028 432 142 ) ( 1024 432 78 ) ( 1032 432 78 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1032 384 84 ) ( 1036 432 84 ) ( 1028 432 84 ) floors/ti_rc_c8 0 64 0 0.500000 0.500000 0 0 0 +} +// brush 463 +{ +( 912 704 64 ) ( 912 688 64 ) ( 1024 688 64 ) floors/ti_rc_c8 0 59 0 0.500000 0.500000 0 0 0 +( 1040 688 80 ) ( 1040 688 160 ) ( 1040 704 160 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1008 384 80 ) ( 1008 384 160 ) ( 1120 384 160 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1024 1104 80 ) ( 1024 1104 160 ) ( 1024 1088 160 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1028 432 142 ) ( 1024 432 78 ) ( 1032 432 78 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1032 384 84 ) ( 1028 432 84 ) ( 1036 432 84 ) floors/ti_rc_c8 0 59 0 0.500000 0.500000 0 0 0 +} +// brush 464 +{ +( 1024 688 144 ) ( 912 688 144 ) ( 912 704 144 ) floors/ti_rc_c8 0 64 0 0.500000 0.500000 0 0 0 +( 1040 688 80 ) ( 1040 688 160 ) ( 1040 704 160 ) floors/ti_rc_c8a -64 40 0 0.500000 0.500000 0 67108864 0 +( 1024 1104 80 ) ( 1024 1104 160 ) ( 1024 1088 160 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1032 496 144 ) ( 1024 496 64 ) ( 1040 496 64 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1028 432 142 ) ( 1032 432 78 ) ( 1024 432 78 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1032 432 84 ) ( 1036 496 84 ) ( 1028 496 84 ) floors/ti_rc_c8 0 64 0 0.500000 0.500000 0 0 0 +} +// brush 465 +{ +( 912 704 64 ) ( 912 688 64 ) ( 1024 688 64 ) floors/ti_rc_c8 0 59 0 0.500000 0.500000 0 0 0 +( 1040 688 80 ) ( 1040 688 160 ) ( 1040 704 160 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1024 1104 80 ) ( 1024 1104 160 ) ( 1024 1088 160 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1032 496 144 ) ( 1024 496 64 ) ( 1040 496 64 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1028 432 142 ) ( 1032 432 78 ) ( 1024 432 78 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1032 432 84 ) ( 1028 496 84 ) ( 1036 496 84 ) floors/ti_rc_c8 0 59 0 0.500000 0.500000 0 0 0 +} +// brush 466 +{ +( 1024 704 144 ) ( 912 704 144 ) ( 912 720 144 ) floors/ti_rc_c8 0 64 0 0.500000 0.500000 0 0 0 +( 1472 720 64 ) ( 1472 720 144 ) ( 1472 736 144 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1008 368 80 ) ( 1008 368 160 ) ( 1120 368 160 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1024 1120 48 ) ( 1024 1120 128 ) ( 1024 1104 128 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1128 384 160 ) ( 1120 384 80 ) ( 1136 384 80 ) floors/ti_rc_c8 0 32 0 -0.500000 0.500000 0 67108864 0 +( 1032 368 84 ) ( 1036 384 84 ) ( 1028 384 84 ) floors/ti_rc_c8 0 64 0 0.500000 0.500000 0 0 0 +} +// brush 467 +{ +( 912 720 64 ) ( 912 704 64 ) ( 1024 704 64 ) floors/ti_rc_c8 0 59 0 0.500000 0.500000 0 0 0 +( 1472 720 64 ) ( 1472 720 144 ) ( 1472 736 144 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1008 368 80 ) ( 1008 368 160 ) ( 1120 368 160 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1024 1120 48 ) ( 1024 1120 128 ) ( 1024 1104 128 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1128 384 160 ) ( 1120 384 80 ) ( 1136 384 80 ) floors/ti_rc_c8 0 32 0 -0.500000 0.500000 0 67108864 0 +( 1032 368 84 ) ( 1028 384 84 ) ( 1036 384 84 ) floors/ti_rc_c8 0 59 0 0.500000 0.500000 0 0 0 +} +// brush 468 +{ +( 1472 672 144 ) ( 1360 672 144 ) ( 1360 688 144 ) floors/ti_rc_c8 0 64 0 0.500000 0.500000 0 0 0 +( 1488 704 96 ) ( 1488 704 176 ) ( 1488 720 176 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1456 368 80 ) ( 1456 368 160 ) ( 1568 368 160 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1472 1088 64 ) ( 1472 1088 144 ) ( 1472 1072 144 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 67108864 0 +( 1476 448 160 ) ( 1472 448 80 ) ( 1480 448 80 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1032 368 84 ) ( 1036 448 84 ) ( 1028 448 84 ) floors/ti_rc_c8 0 64 0 0.500000 0.500000 0 0 0 +} +// brush 469 +{ +( 1360 688 78 ) ( 1360 672 78 ) ( 1472 672 78 ) floors/ti_rc_c8 0 64 0 0.500000 0.500000 0 0 0 +( 1488 704 96 ) ( 1488 704 176 ) ( 1488 720 176 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1456 368 80 ) ( 1456 368 160 ) ( 1568 368 160 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1472 1088 64 ) ( 1472 1088 144 ) ( 1472 1072 144 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1476 448 160 ) ( 1472 448 80 ) ( 1480 448 80 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1032 368 84 ) ( 1028 448 84 ) ( 1036 448 84 ) floors/ti_rc_c8 0 64 0 0.500000 0.500000 0 0 0 +} +// brush 470 +{ +( 1472 672 144 ) ( 1360 672 144 ) ( 1360 688 144 ) floors/ti_rc_c8 0 64 0 0.500000 0.500000 0 0 0 +( 1488 704 96 ) ( 1488 704 176 ) ( 1488 720 176 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1472 1088 64 ) ( 1472 1088 144 ) ( 1472 1072 144 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 67108864 0 +( 1512 704 160 ) ( 1504 704 80 ) ( 1520 704 80 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1476 448 160 ) ( 1480 448 80 ) ( 1472 448 80 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1032 448 84 ) ( 1036 704 84 ) ( 1028 704 84 ) floors/ti_rc_c8 0 64 0 0.500000 0.500000 0 0 0 +} +// brush 471 +{ +( 1488 704 96 ) ( 1488 704 176 ) ( 1488 720 176 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1472 1088 64 ) ( 1472 1088 144 ) ( 1472 1072 144 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1512 704 160 ) ( 1504 704 80 ) ( 1520 704 80 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1476 448 160 ) ( 1480 448 80 ) ( 1472 448 80 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1488 697 64 ) ( 1472 700 64 ) ( 1472 695 64 ) floors/ti_rc_c8 0 64 0 0.500000 0.500000 0 0 0 +( 1032 448 84 ) ( 1028 704 84 ) ( 1036 704 84 ) floors/ti_rc_c8 0 64 0 0.500000 0.500000 0 0 0 +} +// brush 472 +{ +( 1088 704 144 ) ( 1088 592 144 ) ( 1072 592 144 ) floors/ti_rc_c8 0 64 0 0.500000 0.500000 0 0 0 +( 1064 720 80 ) ( 1064 720 160 ) ( 1048 720 160 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1488 688 96 ) ( 1488 688 176 ) ( 1488 800 176 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 832 704 80 ) ( 832 704 160 ) ( 848 704 160 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 67108864 0 +( 1280 720 144 ) ( 1280 704 78 ) ( 1280 736 78 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1032 704 84 ) ( 1036 720 84 ) ( 1028 720 84 ) floors/ti_rc_c8 0 64 0 0.500000 0.500000 0 0 0 +} +// brush 473 +{ +( 1064 720 80 ) ( 1064 720 160 ) ( 1048 720 160 ) floors/ti_rc_c8 0 32 0 0.500000 0.500000 0 0 0 +( 1488 688 96 ) ( 1488 688 176 ) ( 1488 800 176 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 832 704 80 ) ( 832 704 160 ) ( 848 704 160 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1280 720 144 ) ( 1280 704 78 ) ( 1280 736 78 ) floors/ti_rc_c8 0 27 0 0.500000 0.500000 0 0 0 +( 1202 704 64 ) ( 1204 720 64 ) ( 1199 720 64 ) floors/ti_rc_c8 0 59 0 0.500000 0.500000 0 0 0 +( 1032 704 84 ) ( 1028 720 84 ) ( 1036 720 84 ) floors/ti_rc_c8 0 59 0 0.500000 0.500000 0 0 0 +} +// brush 474 +{ +( 320 774 133 ) ( 288 774 133 ) ( 288 766 133 ) bricks/b_sr_v27c 0 15 0 1 1 134217728 0 0 +( 288 767 183 ) ( 288 775 183 ) ( 320 775 183 ) bricks/b_sr_v27c 0 15 0 1 1 134217728 0 0 +( 288 767 195 ) ( 320 767 195 ) ( 320 767 75 ) props2/np_rc_c03 -8 78 0 0.500000 0.500000 134217728 0 0 +( 324 767 195 ) ( 324 775 195 ) ( 324 775 75 ) bricks/b_sr_v27c -47 19 0 1 1 134217728 0 0 +( 322 768 196 ) ( 290 768 196 ) ( 290 768 76 ) bricks/b_sr_v26a -68 1 0 1 1 134217728 0 0 +( 292 775 195 ) ( 292 767 195 ) ( 292 767 75 ) bricks/b_sr_v27c -47 19 0 1 1 134217728 0 0 +} +// brush 475 +{ +( 326 108 81 ) ( 314 108 81 ) ( 314 108 80 ) metals/mt_mf_v1c -60 32 0 0.100000 0.100000 0 8388608 0 +( 302 108 81 ) ( 302 96 81 ) ( 302 96 80 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 0 8388608 0 +( 302 96 81 ) ( 314 96 81 ) ( 314 96 80 ) metals/mt_mf_v1c -60 32 0 0.100000 0.100000 0 8388608 0 +( 314 84 81 ) ( 314 96 81 ) ( 314 96 80 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 0 8388608 0 +( 326 84 80 ) ( 326 108 80 ) ( 302 108 80 ) metals/mt_mf_v1c -60 0 0 0.100000 0.100000 0 8388608 0 +( 302 108 81 ) ( 326 108 81 ) ( 326 84 81 ) metals/mt_mf_v1c -60 0 0 0.100000 0.100000 0 8388608 0 +} +// brush 476 +{ +( 313 76 83 ) ( 308 84 90 ) ( 305 84 88 ) props2/sh_rc_c02f 90 25 -56 0.249894 0.249953 134217728 0 0 +( 310 88 87 ) ( 304 88 97 ) ( 301 88 95 ) props2/sh_rc_c02f 106 25 -56 0.249928 0.250050 134217728 0 0 +( 304 91 97 ) ( 300 83 104 ) ( 296 83 101 ) props2/sh_rc_c02f -3 5 122 0.250115 -0.249899 134217728 0 0 +( 297 87 107 ) ( 297 75 107 ) ( 294 75 105 ) props2/sh_rc_c02f -14 31 90 0.250000 -0.209641 134217728 0 0 +( 295 75 110 ) ( 300 67 104 ) ( 296 67 101 ) props2/sh_rc_c02f 111 3 -57 0.249970 0.249962 134217728 0 0 +( 297 63 107 ) ( 304 63 97 ) ( 301 63 95 ) props2/sh_rc_c02f 106 25 -56 0.249928 0.250050 134217728 0 0 +( 304 60 97 ) ( 308 68 90 ) ( 305 68 88 ) props2/sh_rc_c02f -110 2 123 0.249986 -0.250041 134217728 0 0 +( 310 64 87 ) ( 310 76 87 ) ( 307 76 85 ) props2/sh_rc_c02f -14 29 90 0.250000 -0.209671 134217728 0 0 +( 295 88 105 ) ( 308 88 85 ) ( 308 64 85 ) props/stool_t2 17 45 -90 0.310272 0.369995 134217728 0 0 +( 290 63 98 ) ( 291 87 96 ) ( 288 87 101 ) metals/mt_mf_v1c 0 9 -90 0.083923 0.099976 134217728 8388608 0 +} +// brush 477 +{ +( 662 340 159 ) ( 654 348 157 ) ( 655 348 153 ) props2/sh_rc_c02f 46 12 -165 0.250000 -0.250000 134217728 0 0 +( 658 352 158 ) ( 646 352 155 ) ( 647 352 151 ) props2/sh_rc_c02f 46 12 -165 0.250000 -0.250000 134217728 0 0 +( 646 356 155 ) ( 639 348 153 ) ( 640 348 149 ) props2/sh_rc_c02f -50 18 -192 0.250000 -0.250000 134217728 0 0 +( 635 352 152 ) ( 635 340 152 ) ( 636 340 148 ) props2/sh_rc_c02f 0 7 0 0.250000 0.242554 134217728 0 0 +( 631 340 151 ) ( 639 332 153 ) ( 640 332 149 ) props2/sh_rc_c02f -114 27 14 0.250000 0.250000 134217728 0 0 +( 635 328 152 ) ( 646 328 155 ) ( 647 328 151 ) props2/sh_rc_c02f 46 12 -165 0.250000 -0.250000 134217728 0 0 +( 646 324 155 ) ( 654 332 157 ) ( 655 332 153 ) props2/sh_rc_c02f 46 12 -165 0.250000 -0.250000 134217728 0 0 +( 658 328 158 ) ( 658 340 158 ) ( 659 340 154 ) props2/sh_rc_c02f 119 12 -180 0.250000 -0.250000 134217728 0 0 +( 635 352 149 ) ( 659 352 155 ) ( 659 328 155 ) props/stool_t2 -38 -10 0 0.360000 0.370000 134217728 2097152 0 +( 641 328 142 ) ( 643 352 143 ) ( 639 352 142 ) metals/mt_mf_v1c -31 63 0 0.097046 0.100006 134217728 8388608 0 +} +// brush 478 +{ +( 520 440 156 ) ( 456 440 156 ) ( 456 248 156 ) wood/wd_cp_v3 -108 32 0 1 1 0 0 0 +( 460 248 160 ) ( 460 440 160 ) ( 524 440 160 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 460 400 196 ) ( 524 400 196 ) ( 524 400 132 ) wood/wd_sr_va2 -12 64 0 1 0.500000 0 0 0 +( 560 240 168 ) ( 560 432 168 ) ( 560 432 104 ) wood/wd_cp_v3 32 16 0 1 1 0 134217728 0 +( 524 592 212 ) ( 460 592 212 ) ( 460 592 148 ) wood/wd_sr_va2 -76 32 0 1 1 0 0 0 +( 521 588 160 ) ( 521 585 156 ) ( 521 591 156 ) wood/wd_sr_va2b 0 32 0 1 1 0 0 0 +} +// brush 479 +{ +( 520 440 156 ) ( 456 440 156 ) ( 456 248 156 ) wood/wd_cp_v3 -108 32 0 1 1 0 0 0 +( 460 248 160 ) ( 460 440 160 ) ( 524 440 160 ) wood/wd_cp_v3 -32 -32 0 1 1 0 0 0 +( 460 400 196 ) ( 524 400 196 ) ( 524 400 132 ) wood/wd_sr_va2 -12 64 0 1 0.500000 0 0 0 +( 520 452 236 ) ( 520 260 236 ) ( 520 260 172 ) wood/wd_sr_va2 0 32 0 1 1 0 134250496 0 +( 521 588 160 ) ( 521 591 156 ) ( 521 585 156 ) wood/wd_sr_va2 0 32 0 1 1 0 134250496 0 +( 512 536 160 ) ( 501 536 156 ) ( 523 536 156 ) wood/wd_sr_va2 -64 32 0 1 1 0 134250496 0 +} +// brush 480 +{ +( 520 440 156 ) ( 456 440 156 ) ( 456 248 156 ) wood/wd_cp_v3 -108 32 0 1 1 0 0 0 +( 460 248 160 ) ( 460 440 160 ) ( 524 440 160 ) wood/wd_cp_v3 -32 -32 0 1 1 0 0 0 +( 524 592 212 ) ( 460 592 212 ) ( 460 592 148 ) wood/wd_sr_va2 -76 32 0 1 1 0 0 0 +( 520 470 236 ) ( 520 278 236 ) ( 520 278 172 ) wood/wd_sr_va2 0 32 0 1 1 0 134250496 0 +( 521 588 160 ) ( 521 591 156 ) ( 521 585 156 ) wood/wd_sr_va2 0 32 0 1 1 0 134250496 0 +( 511 576 160 ) ( 522 576 156 ) ( 500 576 156 ) wood/wd_sr_va2 -64 32 0 1 1 0 134250496 0 +} +// brush 481 +{ +( 688 208 112 ) ( 368 208 112 ) ( 368 784 112 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 584 592 108 ) ( 584 400 108 ) ( 616 400 108 ) wood/wd_sr_va2 -64 64 0 1 1 0 0 0 +( 616 592 88 ) ( 616 592 136 ) ( 584 592 136 ) wood/wd_sr_va2 -64 112 0 1 1 0 0 0 +( 584 400 88 ) ( 584 400 136 ) ( 616 400 136 ) wood/wd_sr_va2 -64 112 0 1 1 0 0 0 +( 560 592 88 ) ( 560 400 136 ) ( 560 592 136 ) wood/wd_sr_va2 0 112 0 1 1 0 0 0 +( 449 501 112 ) ( 449 499 108 ) ( 449 503 108 ) wood/wd_st_m7s 0 48 0 1 1 0 134217728 0 +} +// brush 482 +{ +( 688 208 112 ) ( 368 208 112 ) ( 368 784 112 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 448 764 48 ) ( 448 764 112 ) ( 448 188 112 ) wood/wd_sr_va2 0 112 0 1 1 0 134250496 0 +( 584 592 108 ) ( 584 400 108 ) ( 616 400 108 ) wood/wd_sr_va2 -64 64 0 1 1 0 0 0 +( 616 592 88 ) ( 616 592 136 ) ( 584 592 136 ) wood/wd_sr_va2 -64 112 0 1 1 0 0 0 +( 449 501 112 ) ( 449 503 108 ) ( 449 499 108 ) wood/wd_sr_va2 0 112 0 1 1 0 0 0 +( 450 508 112 ) ( 454 508 108 ) ( 445 508 108 ) wood/wd_sr_va2 -64 112 0 1 1 0 0 0 +} +// brush 483 +{ +( 688 208 112 ) ( 368 208 112 ) ( 368 784 112 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 448 764 48 ) ( 448 764 112 ) ( 448 188 112 ) wood/wd_sr_va2 0 112 0 1 1 0 134250496 0 +( 584 592 108 ) ( 584 400 108 ) ( 616 400 108 ) wood/wd_sr_va2 -64 64 0 1 1 0 0 0 +( 584 400 88 ) ( 584 400 136 ) ( 616 400 136 ) wood/wd_sr_va2 -64 112 0 1 1 0 0 0 +( 449 501 112 ) ( 449 503 108 ) ( 449 499 108 ) wood/wd_sr_va2 0 112 0 1 1 0 0 0 +( 450 491 112 ) ( 445 491 108 ) ( 454 491 108 ) wood/wd_sr_va2 -64 112 0 1 1 0 0 0 +} +// brush 484 +{ +( 656 208 96 ) ( 336 208 96 ) ( 336 784 96 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 440 328 112 ) ( 464 304 80 ) ( 416 352 80 ) wood/wd_sr_va2 0 96 0 1 1 0 134250496 0 +( 456 680 112 ) ( 432 656 80 ) ( 480 704 80 ) wood/wd_sr_va2 0 96 0 1 1 0 134250496 0 +( 448 764 52 ) ( 448 188 116 ) ( 448 764 116 ) wood/wd_st_m7s 0 96 0 0.500000 0.500000 0 0 0 +( 436 320 92 ) ( 440 672 92 ) ( 432 672 92 ) wood/wd_st_m7s 0 0 0 0.500000 0.500000 0 0 0 +( 433 550 96 ) ( 433 543 92 ) ( 433 558 92 ) wood/wd_st_m7s 0 48 0 1 1 0 134217728 0 +} +// brush 485 +{ +( 656 208 96 ) ( 336 208 96 ) ( 336 784 96 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 432 772 48 ) ( 432 772 112 ) ( 432 196 112 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 456 680 112 ) ( 432 656 80 ) ( 480 704 80 ) wood/wd_sr_va2 0 96 0 1 1 0 134250496 0 +( 436 320 92 ) ( 440 672 92 ) ( 432 672 92 ) wood/wd_st_m7s 0 0 0 0.500000 0.500000 0 0 0 +( 433 550 96 ) ( 433 558 92 ) ( 433 543 92 ) wood/wd_st_m7s 0 96 0 0.500000 0.500000 0 0 0 +( 430 575 96 ) ( 434 575 92 ) ( 426 575 92 ) wood/wd_st_m7s 0 96 0 0.500000 0.500000 0 0 0 +} +// brush 486 +{ +( 656 208 96 ) ( 336 208 96 ) ( 336 784 96 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 432 764 48 ) ( 432 764 112 ) ( 432 188 112 ) wood/wd_sr_va2 0 96 0 1 1 0 134250496 0 +( 440 328 112 ) ( 464 304 80 ) ( 416 352 80 ) wood/wd_sr_va2 0 96 0 1 1 0 134250496 0 +( 436 320 92 ) ( 440 672 92 ) ( 432 672 92 ) wood/wd_st_m7s 0 0 0 0.500000 0.500000 0 0 0 +( 433 558 96 ) ( 433 566 92 ) ( 433 551 92 ) wood/wd_st_m7s 0 96 0 0.500000 0.500000 0 0 0 +( 430 575 96 ) ( 426 575 92 ) ( 434 575 92 ) wood/wd_st_m7s 0 96 0 0.500000 0.500000 0 0 0 +} +// brush 487 +{ +( 688 208 112 ) ( 368 208 112 ) ( 368 784 112 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 448 764 48 ) ( 448 764 112 ) ( 448 188 112 ) wood/wd_sr_va2 0 112 0 1 1 0 134250496 0 +( 472 312 112 ) ( 496 288 80 ) ( 448 336 80 ) wood/wd_sr_va2 0 104 0 1 1 0 134250496 0 +( 584 592 108 ) ( 584 400 108 ) ( 616 400 108 ) wood/wd_st_m7s -64 0 0 1 1 0 0 0 +( 648 346 112 ) ( 636 346 112 ) ( 636 346 111 ) wood/wd_st_m7s -64 48 0 1 1 0 0 0 +( 570 350 116 ) ( 570 338 115 ) ( 570 338 116 ) wood/wd_st_m7s 0 48 0 1 1 0 0 0 +( 535 289 112 ) ( 537 289 108 ) ( 532 289 108 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +} +// brush 488 +{ +( 688 208 112 ) ( 368 208 112 ) ( 368 784 112 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 384 288 48 ) ( 384 288 112 ) ( 704 288 112 ) wood/wd_sr_va2 -64 104 0 1 1 0 134250496 0 +( 472 312 112 ) ( 496 288 80 ) ( 448 336 80 ) wood/wd_sr_va2 0 104 0 1 1 0 134250496 0 +( 584 592 108 ) ( 584 400 108 ) ( 616 400 108 ) wood/wd_st_m7s -64 0 0 1 1 0 0 0 +( 570 352 116 ) ( 570 340 115 ) ( 570 340 116 ) wood/wd_st_m7s 0 48 0 1 1 0 0 0 +( 535 289 112 ) ( 532 289 108 ) ( 537 289 108 ) wood/wd_st_m7s -64 48 0 1 1 0 0 0 +} +// brush 489 +{ +( 688 208 112 ) ( 368 208 112 ) ( 368 784 112 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 752 208 48 ) ( 752 208 112 ) ( 752 784 112 ) wood/wd_st_m7s 0 96 0 0.500000 0.500000 0 0 0 +( 472 680 112 ) ( 448 656 80 ) ( 496 704 80 ) wood/wd_sr_va2 0 112 0 1 1 0 134250496 0 +( 584 592 108 ) ( 584 400 108 ) ( 616 400 108 ) wood/wd_sr_va2 -64 64 0 1 1 0 0 0 +( 622 658 113 ) ( 610 658 112 ) ( 610 658 113 ) wood/wd_sr_va2 -64 112 0 1 1 0 0 0 +( 595 703 112 ) ( 593 703 108 ) ( 597 703 108 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +} +// brush 490 +{ +( 688 208 112 ) ( 368 208 112 ) ( 368 784 112 ) wood/wd_st_m7s -64 0 0 1 1 0 134217728 0 +( 741 704 48 ) ( 741 704 112 ) ( 421 704 112 ) wood/wd_sr_va2 -64 112 0 1 1 0 134250496 0 +( 472 680 112 ) ( 448 656 80 ) ( 496 704 80 ) wood/wd_sr_va2 0 112 0 1 1 0 134250496 0 +( 584 592 108 ) ( 584 400 108 ) ( 616 400 108 ) wood/wd_sr_va2 -64 64 0 1 1 0 0 0 +( 595 703 112 ) ( 597 703 108 ) ( 593 703 108 ) wood/wd_sr_va2 -64 112 0 1 1 0 0 0 +( 752 701 112 ) ( 752 707 108 ) ( 752 696 108 ) wood/wd_sr_va2 0 112 0 1 1 0 0 0 +} +// brush 491 +{ +( 476 792 156 ) ( 476 600 156 ) ( 540 600 156 ) wood/wd_cp_v3 -32 -24 0 1 1 0 0 0 +( 544 600 160 ) ( 480 600 160 ) ( 480 792 160 ) wood/wd_cp_v3 0 -32 0 2 2 0 134217728 0 +( 720 600 96 ) ( 720 600 160 ) ( 720 792 160 ) wood/wd_sr_va2 -40 32 0 1 1 0 0 0 +( 544 592 148 ) ( 544 592 212 ) ( 608 592 212 ) wood/wd_cp_v3 -32 16 0 1 1 0 134217728 0 +( 560 792 180 ) ( 560 792 244 ) ( 560 600 244 ) wood/wd_sr_va2 -40 32 0 1 1 0 0 0 +( 622 632 160 ) ( 614 632 156 ) ( 630 632 156 ) wood/wd_sr_va2 -64 32 0 1 1 0 134250496 0 +} +// brush 492 +{ +( 752 148 252 ) ( 736 148 252 ) ( 736 180 252 ) common/li_sr_v17 40 -31 -180 2 1 134217728 132 0 +( 736 148 256 ) ( 744 148 224 ) ( 744 180 224 ) props2/speaker1 16 59 0 0.400000 0.500000 134217728 8388608 0 +( 752 -156 160 ) ( 752 -156 288 ) ( 752 356 288 ) bricks/b_mf_v2 60 65 -180 2 -1 134217728 0 0 +( 800 172 288 ) ( 792 172 96 ) ( 808 172 96 ) metals/mt_mf_v1c 53 49 -180 1.500000 -0.500000 134217728 8388608 0 +( 804 148 288 ) ( 816 148 96 ) ( 792 148 96 ) metals/mt_mf_v1c 53 49 -180 1.500000 -0.500000 134217728 8388608 0 +( 752 180 228 ) ( 744 180 228 ) ( 744 148 228 ) metals/mt_mf_v1c 53 -63 -180 1.500000 0.500000 134217728 8388608 0 +} +// brush 493 +{ +( 752 820 252 ) ( 736 820 252 ) ( 736 852 252 ) common/li_sr_v17 40 -63 -180 2 1 134217728 132 0 +( 736 820 256 ) ( 744 820 224 ) ( 744 852 224 ) props2/speaker1 0 59 0 0.400000 0.500000 134217728 8388608 0 +( 752 516 160 ) ( 752 516 288 ) ( 752 1028 288 ) bricks/b_mf_v2 -18 64 -180 2 -1 134217728 0 0 +( 800 844 288 ) ( 792 844 96 ) ( 808 844 96 ) metals/mt_mf_v1c 53 49 -180 1.500000 -0.500000 134217728 8388608 0 +( 804 820 288 ) ( 816 820 96 ) ( 792 820 96 ) metals/mt_mf_v1c 53 49 -180 1.500000 -0.500000 134217728 8388608 0 +( 752 852 228 ) ( 744 852 228 ) ( 744 820 228 ) metals/mt_mf_v1c 53 -63 -180 1.500000 0.500000 134217728 8388608 0 +} +// brush 494 +{ +( 172 288 252 ) ( 172 272 252 ) ( 140 272 252 ) common/li_sr_v17 -13 33 -90 2 1 134217728 132 0 +( 172 272 256 ) ( 172 280 224 ) ( 140 280 224 ) props2/speaker1 48 59 -180 0.399994 -0.500000 134217728 8388608 0 +( 476 288 160 ) ( 476 288 288 ) ( -36 288 288 ) bricks/b_mf_v2 -67 65 0 2 1 134217728 0 0 +( 148 336 288 ) ( 148 328 96 ) ( 148 344 96 ) metals/mt_mf_v1c -21 48 -180 1.500000 -0.500000 134217728 8388608 0 +( 172 340 288 ) ( 172 352 96 ) ( 172 328 96 ) metals/mt_mf_v1c -21 48 -180 1.500000 -0.500000 134217728 8388608 0 +( 140 288 228 ) ( 140 280 228 ) ( 172 280 228 ) metals/mt_mf_v1c -20 0 -90 1.500000 0.500000 134217728 8388608 0 +} +// brush 495 +{ +( 96 768 288 ) ( 96 704 288 ) ( 160 704 288 ) WOOD/WD_ST_M1B 21 0 180 3 3 0 0 0 +( 168 704 304 ) ( 104 704 304 ) ( 104 768 304 ) WOOD/WD_ST_M1B 0 -21 90 3 3 0 0 0 +( 0 704 172 ) ( 0 704 268 ) ( -64 704 268 ) WOOD/WD_ST_M1B -16 -21 90 3 3 0 0 0 +( 272 532 180 ) ( 272 532 276 ) ( 272 596 276 ) WOOD/WD_ST_M1B -16 0 90 3 3 0 0 0 +( 174 416 172 ) ( 174 416 268 ) ( 238 416 268 ) WOOD/WD_ST_M1B -16 -21 90 3 3 0 0 0 +( 64 584 172 ) ( 64 584 268 ) ( 64 520 268 ) WOOD/WD_ST_M1B -16 0 90 3 3 0 0 0 +} +// brush 496 +{ +( 384 64 304 ) ( 384 -48 304 ) ( 400 -48 304 ) props/w_sr_m2a -64 -16 0 1 1 0 132 0 +( 400 -108 368 ) ( 384 -108 368 ) ( 384 4 368 ) props/w_sr_m2a -64 -16 0 1 1 0 132 0 +( 400 16 512 ) ( 400 16 528 ) ( 384 16 528 ) props/w_sr_m2a -64 48 0 1 1 0 132 0 +( 768 -96 320 ) ( 768 -96 336 ) ( 768 16 336 ) props/w_sr_m2a 16 48 0 1 1 0 132 0 +( 754 0 304 ) ( 754 0 320 ) ( 770 0 320 ) props/w_sr_m2a -64 48 0 1 1 0 132 0 +( 384 16 320 ) ( 384 16 336 ) ( 384 -96 336 ) props/w_sr_m2a 16 48 0 1 1 0 132 0 +} +// brush 497 +{ +( 384 -16 224 ) ( 384 -128 224 ) ( 400 -128 224 ) props/w_sr_m2a -64 64 0 1 1 0 132 0 +( 400 -188 368 ) ( 384 -188 368 ) ( 384 -76 368 ) props/w_sr_m2a -64 64 0 1 1 0 132 0 +( 768 -64 432 ) ( 768 -64 448 ) ( 752 -64 448 ) props/w_sr_m2a -64 48 0 1 1 0 132 0 +( 768 -176 240 ) ( 768 -176 256 ) ( 768 -64 256 ) props/w_sr_m2a -64 96 0 1 1 0 132 0 +( 386 -80 224 ) ( 386 -80 240 ) ( 402 -80 240 ) props/w_sr_m2a -64 96 0 1 1 0 132 0 +( 384 -64 240 ) ( 384 -64 256 ) ( 384 -176 256 ) props/w_sr_m2a -64 96 0 1 1 0 132 0 +} +// brush 498 +{ +( 1261 388 100 ) ( 1268 388 100 ) ( 1270 396 100 ) bricks/b_sr_mv1 55 -70 -180 0.504639 0.500000 134217728 0 0 +( 1262 404 104 ) ( 1271 396 104 ) ( 1269 388 104 ) bricks/b_sr_mv1 74 -70 -180 0.501465 0.500000 134217728 0 0 +( 1261 388 104 ) ( 1269 388 104 ) ( 1268 388 100 ) bricks/b_sr_mv1 3 -35 -99 0.499985 0.500066 134217728 0 0 +( 1261 404 100 ) ( 1262 404 101 ) ( 1263 404 105 ) bricks/b_sr_mv1 3 -35 -99 0.499985 0.500066 134217728 0 0 +( 1261 396 104 ) ( 1261 392 104 ) ( 1261 396 100 ) bricks/b_sr_mv1 124 -71 -90 0.493896 -0.500000 134217728 0 0 +( 1262 404 101 ) ( 1270 396 100 ) ( 1271 396 104 ) bricks/b_sr_mv1 2 -28 -98 0.499969 -0.500240 134217728 0 0 +( 1269 388 104 ) ( 1271 396 104 ) ( 1270 396 100 ) bricks/b_sr_mv1 115 -71 -90 0.493805 -0.500000 134217728 0 0 +} +// brush 499 +{ +( 1246 388 120 ) ( 1285 388 113 ) ( 1278 388 66 ) bricks/b_sr_mv1 74 -38 -180 0.501465 0.500000 134217728 0 0 +( 1263 404 105 ) ( 1259 404 106 ) ( 1258 404 102 ) bricks/b_sr_mv1 74 -38 -180 0.501465 0.500000 134217728 0 0 +( 1246 400 108 ) ( 1243 396 99 ) ( 1249 404 99 ) bricks/b_sr_mv1 70 -38 -180 0.501465 0.500000 134217728 0 0 +( 1252 388 102 ) ( 1261 404 100 ) ( 1243 404 104 ) bricks/b_sr_mv1 74 -70 -180 0.501465 0.500000 134217728 0 0 +( 1261 388 102 ) ( 1261 404 104 ) ( 1261 404 100 ) bricks/b_sr_mv1 70 -38 -180 0.501465 0.500000 134217728 0 0 +( 1243 396 104 ) ( 1245 398 111 ) ( 1245 388 111 ) bricks/b_sr_mv1 70 -38 -180 0.501465 0.500000 134217728 0 0 +( 1252 388 106 ) ( 1243 404 108 ) ( 1261 404 104 ) bricks/b_sr_mv1 74 -70 -180 0.501465 0.500000 134217728 0 0 +} +// brush 500 +{ +( 1476 548 110 ) ( 1461 548 104 ) ( 1461 596 104 ) bricks/b_sr_v24t 73 18 90 1 -0.939453 134217728 0 0 +( 1466 548 115 ) ( 1466 596 115 ) ( 1482 596 70 ) bricks/b_sr_v24t 64 -66 0 1 -0.939728 134217728 0 0 +( 1473 580 117 ) ( 1458 580 112 ) ( 1475 580 67 ) bricks/b_sr_v24t -4 -63 20 1.000006 -1.000068 134217728 0 0 +( 1458 596 112 ) ( 1458 548 112 ) ( 1475 548 67 ) bricks/b_sr_v24t 64 -63 0 1 -0.939697 134217728 0 0 +( 1458 564 112 ) ( 1473 564 117 ) ( 1490 564 72 ) bricks/b_sr_v24t -4 -63 20 1.000006 -1.000068 134217728 0 0 +( 1480 564 99 ) ( 1480 572 99 ) ( 1465 568 93 ) bricks/b_sr_v24t -27 52 0 0.939819 -1 134217728 0 0 +} +// brush 501 +{ +( 1454 564 89 ) ( 1454 560 89 ) ( 1458 560 90 ) bricks/b_sr_v24t -26 52 0 0.939819 -1 134217728 0 0 +( 1454 560 102 ) ( 1450 560 100 ) ( 1450 564 100 ) bricks/b_sr_v24t -22 52 0 0.939575 -1 134217728 0 0 +( 1455 560 98 ) ( 1455 564 98 ) ( 1463 564 75 ) bricks/b_sr_v24t 64 -60 0 1 -0.939667 134217728 0 0 +( 1451 560 97 ) ( 1455 560 98 ) ( 1463 560 75 ) bricks/b_sr_v24t -4 -63 20 1.000006 -1.000068 134217728 0 0 +( 1458 560 78 ) ( 1462 564 79 ) ( 1452 562 101 ) bricks/b_sr_v24t -60 -62 -160 0.999865 1.000040 134217728 0 0 +} +// brush 502 +{ +( 1450 580 88 ) ( 1450 564 88 ) ( 1465 564 93 ) bricks/b_sr_v24t -27 52 0 0.939575 -1 134217728 0 0 +( 1461 564 104 ) ( 1454 556 102 ) ( 1454 588 102 ) bricks/b_sr_v24t 73 18 90 1 -0.939697 134217728 0 0 +( 1461 564 104 ) ( 1461 580 104 ) ( 1469 580 82 ) bricks/b_sr_v24t 64 -63 0 1 -0.939728 134217728 0 0 +( 1454 588 102 ) ( 1462 588 79 ) ( 1469 580 82 ) bricks/b_sr_v24t -62 -65 19 1.000001 -1.000069 134217728 0 0 +( 1456 588 94 ) ( 1454 588 102 ) ( 1454 556 102 ) bricks/b_sr_v24t 64 -60 0 1 -0.939667 134217728 0 0 +( 1462 556 79 ) ( 1454 556 102 ) ( 1461 564 104 ) bricks/b_sr_v24t 10 -97 -159 1.000022 0.999941 134217728 0 0 +( 1464 556 97 ) ( 1465 560 93 ) ( 1457 558 92 ) bricks/b_sr_v24t 2 -34 19 1.000121 -0.999927 134217728 0 0 +( 1465 584 93 ) ( 1464 588 97 ) ( 1457 586 92 ) bricks/b_sr_v24t 1 18 19 0.999860 0.999955 134217728 0 0 +} +// brush 503 +{ +( 1451 560 101 ) ( 1454 560 102 ) ( 1454 556 102 ) bricks/b_sr_v24t 73 18 90 1 -0.939575 134217728 0 0 +( 1456 556 94 ) ( 1454 556 102 ) ( 1454 560 102 ) bricks/b_sr_v24t 64 -60 0 1 -0.939667 134217728 0 0 +( 1455 560 98 ) ( 1436 560 91 ) ( 1444 560 69 ) bricks/b_sr_v24t -4 -63 20 1.000006 -1.000068 134217728 0 0 +( 1440 560 92 ) ( 1440 556 92 ) ( 1448 556 70 ) bricks/b_sr_v24t 64 -54 0 1 -0.939636 134217728 0 0 +( 1435 556 95 ) ( 1454 556 102 ) ( 1462 556 79 ) bricks/b_sr_v24t -4 -63 20 1.000006 -1.000068 134217728 0 0 +( 1456 556 94 ) ( 1458 560 90 ) ( 1442 558 87 ) bricks/b_sr_v24t 2 -34 19 1.000121 -0.999927 134217728 0 0 +( 1445 556 95 ) ( 1440 560 90 ) ( 1450 560 100 ) bricks/b_sr_v24t 52 -6 19 1.000121 -0.999927 134217728 0 0 +} +// brush 504 +{ +( 1454 584 89 ) ( 1454 580 89 ) ( 1458 580 90 ) bricks/b_sr_v24t -26 52 0 0.939819 -1 134217728 0 0 +( 1454 580 102 ) ( 1450 580 100 ) ( 1450 584 100 ) bricks/b_sr_v24t 73 18 90 1 -0.939575 134217728 0 0 +( 1455 580 98 ) ( 1455 584 98 ) ( 1463 584 75 ) bricks/b_sr_v24t 64 -60 0 1 -0.939667 134217728 0 0 +( 1454 584 102 ) ( 1450 584 100 ) ( 1458 584 78 ) bricks/b_sr_v24t -4 -63 20 1.000006 -1.000068 134217728 0 0 +( 1463 580 75 ) ( 1459 584 74 ) ( 1453 582 97 ) bricks/b_sr_v24t -43 56 110 0.999940 -1.000027 134217728 0 0 +} +// brush 505 +{ +( 1455 584 98 ) ( 1455 588 98 ) ( 1463 588 75 ) bricks/b_sr_v24t 64 -60 0 1 -0.939667 134217728 0 0 +( 1454 588 100 ) ( 1447 587 98 ) ( 1450 587 91 ) bricks/b_sr_v24t -4 -63 20 1.000006 -1.000068 134217728 0 0 +( 1447 584 86 ) ( 1450 587 91 ) ( 1447 587 98 ) bricks/b_sr_v24t 32 -54 0 1 -0.939636 134217728 0 0 +( 1435 584 95 ) ( 1454 584 102 ) ( 1462 584 79 ) bricks/b_sr_v24t -4 -63 20 1.000006 -1.000068 134217728 0 0 +( 1458 584 90 ) ( 1456 588 94 ) ( 1442 586 87 ) bricks/b_sr_v24t 1 18 19 0.999860 0.999955 134217728 0 0 +( 1449 584 98 ) ( 1444 588 93 ) ( 1454 588 102 ) bricks/b_sr_v24t 52 -9 19 0.999860 0.999955 134217728 0 0 +} +// brush 506 +{ +( 1461 580 80 ) ( 1457 580 91 ) ( 1454 584 90 ) bricks/b_sr_v26 91 90 20 0.999782 0.999897 134217728 0 0 +( 1461 564 80 ) ( 1457 564 91 ) ( 1457 580 91 ) bricks/b_sr_v26 20 39 0 1 0.939728 134217728 0 0 +( 1457 564 91 ) ( 1461 564 80 ) ( 1458 560 79 ) bricks/b_sr_v26 -41 77 -159 0.999876 -0.999997 134217728 0 0 +( 1454 560 90 ) ( 1458 560 79 ) ( 1446 560 75 ) bricks/b_sr_v26 40 43 20 0.999902 0.999882 134217728 0 0 +( 1439 564 72 ) ( 1435 564 83 ) ( 1442 560 86 ) bricks/b_sr_v26 40 43 20 0.999902 0.999882 134217728 0 0 +( 1435 564 83 ) ( 1439 564 72 ) ( 1439 580 72 ) bricks/b_sr_v26 20 30 0 1 0.939697 134217728 0 0 +( 1435 580 83 ) ( 1439 580 72 ) ( 1446 584 75 ) bricks/b_sr_v26 40 43 20 0.999902 0.999882 134217728 0 0 +( 1458 584 79 ) ( 1454 584 90 ) ( 1442 584 86 ) bricks/b_sr_v26 40 43 20 0.999902 0.999882 134217728 0 0 +( 1458 564 90 ) ( 1458 580 90 ) ( 1435 580 82 ) bricks/b_sr_v26 17 -28 0 0.939941 1 134217728 0 0 +( 1435 579 83 ) ( 1457 579 91 ) ( 1457 563 91 ) bricks/b_sr_v26 18 -28 0 0.939697 1 134217728 0 0 +} +// brush 507 +{ +( 1435 584 82 ) ( 1435 580 82 ) ( 1443 580 85 ) bricks/b_sr_v24t -26 52 0 0.939819 -1 134217728 0 0 +( 1431 584 93 ) ( 1438 588 96 ) ( 1438 584 96 ) bricks/b_sr_v24t 73 18 90 1 -0.939575 134217728 0 0 +( 1443 584 85 ) ( 1438 584 96 ) ( 1438 588 96 ) bricks/b_sr_v24t 64 -54 0 1 -0.939636 134217728 0 0 +( 1447 588 74 ) ( 1439 588 96 ) ( 1431 584 93 ) bricks/b_sr_v24t -4 -63 20 1.000006 -1.000068 134217728 0 0 +( 1432 584 90 ) ( 1432 580 90 ) ( 1441 580 67 ) bricks/b_sr_v24t 64 -51 0 1 -0.939697 134217728 0 0 +( 1439 584 96 ) ( 1447 584 74 ) ( 1439 580 71 ) bricks/b_sr_v24t -4 -63 20 1.000006 -1.000068 134217728 0 0 +( 1443 584 85 ) ( 1441 588 89 ) ( 1434 586 84 ) bricks/b_sr_v24t 1 18 19 0.999860 0.999955 134217728 0 0 +} +// brush 508 +{ +( 1431 564 93 ) ( 1427 564 92 ) ( 1427 580 92 ) bricks/b_sr_v24t 73 18 90 1 -0.939697 134217728 0 0 +( 1432 564 90 ) ( 1432 580 90 ) ( 1441 580 67 ) bricks/b_sr_v24t 64 -51 0 1 -0.939697 134217728 0 0 +( 1431 580 93 ) ( 1427 580 92 ) ( 1430 580 85 ) bricks/b_sr_v24t -4 -63 20 1.000006 -1.000068 134217728 0 0 +( 1429 564 86 ) ( 1430 580 85 ) ( 1427 580 92 ) bricks/b_sr_v24t 64 -50 0 1 -0.939728 134217728 0 0 +( 1430 564 85 ) ( 1435 564 82 ) ( 1433 580 83 ) bricks/b_sr_v24t -3 52 0 1.281494 -1 134217728 0 0 +( 1435 568 90 ) ( 1427 564 88 ) ( 1427 572 92 ) bricks/b_sr_v24t -3 52 0 1.281494 -1 134217728 0 0 +( 1435 570 88 ) ( 1427 573 82 ) ( 1427 568 93 ) bricks/b_sr_v24t -3 -92 0 1.281494 -1 134217728 0 0 +} +// brush 509 +{ +( 1431 580 93 ) ( 1427 580 92 ) ( 1427 584 92 ) bricks/b_sr_v24t 73 18 90 1 -0.939697 134217728 0 0 +( 1432 580 90 ) ( 1432 584 90 ) ( 1441 584 67 ) bricks/b_sr_v24t 64 -51 0 1 -0.939697 134217728 0 0 +( 1435 580 82 ) ( 1430 580 85 ) ( 1427 580 92 ) bricks/b_sr_v24t -4 -63 20 1.000006 -1.000068 134217728 0 0 +( 1431 584 93 ) ( 1427 580 92 ) ( 1430 580 85 ) bricks/b_sr_v24t 23 -63 -160 1.000210 1.000113 134217728 0 0 +( 1430 580 85 ) ( 1435 580 82 ) ( 1433 584 83 ) bricks/b_sr_v24t -2 52 0 1.281860 -1 134217728 0 0 +} +// brush 510 +{ +( 1464 596 82 ) ( 1464 548 82 ) ( 1480 548 82 ) bricks/b_sr_v26 -16 -28 0 1 1 134217728 0 0 +( 1464 578 84 ) ( 1464 566 84 ) ( 1464 566 92 ) bricks/b_sr_v26 28 112 0 1 1 134217728 0 0 +( 1440 578 84 ) ( 1460 578 84 ) ( 1460 578 92 ) bricks/b_sr_v26 -16 112 0 1 1 134217728 0 0 +( 1440 566 92 ) ( 1460 566 92 ) ( 1460 566 84 ) bricks/b_sr_v26 -16 112 0 1 1 134217728 0 0 +( 1438 568 84 ) ( 1438 576 84 ) ( 1438 576 92 ) bricks/b_sr_v26 28 112 0 1 1 134217728 0 0 +( 1440 566 84 ) ( 1438 568 84 ) ( 1438 568 92 ) bricks/b_sr_v26 28 112 0 1 1 134217728 0 0 +( 1438 576 84 ) ( 1440 578 84 ) ( 1440 578 92 ) bricks/b_sr_v26 28 112 0 1 1 134217728 0 0 +( 1451 566 88 ) ( 1438 578 84 ) ( 1464 578 92 ) bricks/b_sr_v26 -4 -32 0 1 1 134217728 0 0 +} +// brush 511 +{ +( 1464 596 80 ) ( 1464 548 80 ) ( 1480 548 80 ) bricks/b_sr_v26 -16 -28 0 1 1 134217728 0 0 +( 1472 548 110 ) ( 1472 596 110 ) ( 1472 596 62 ) bricks/b_sr_v26 28 112 0 1 1 134217728 0 0 +( 1480 580 110 ) ( 1464 580 110 ) ( 1464 580 62 ) bricks/b_sr_v26 -16 112 0 1 1 134217728 0 0 +( 1464 564 110 ) ( 1480 564 110 ) ( 1480 564 62 ) bricks/b_sr_v26 -16 112 0 1 1 134217728 0 0 +( 1472 564 82 ) ( 1440 564 82 ) ( 1444 580 82 ) bricks/b_sr_v26 -16 -28 0 1 1 134217728 0 0 +( 1436 564 84 ) ( 1436 580 78 ) ( 1436 580 90 ) bricks/b_sr_v26 28 112 0 1 1 134217728 0 0 +( 1438 566 90 ) ( 1440 564 78 ) ( 1436 568 78 ) bricks/b_sr_v26 28 112 0 1 1 134217728 0 0 +( 1438 578 90 ) ( 1436 576 78 ) ( 1440 580 78 ) bricks/b_sr_v26 28 112 0 1 1 134217728 0 0 +} +// brush 512 +{ +( 1467 574 105 ) ( 1471 574 105 ) ( 1471 570 105 ) metals/mt_sr_v24 -21 6 -90 1 -1 134217728 0 0 +( 1471 570 104 ) ( 1471 574 104 ) ( 1467 574 104 ) metals/mt_sr_v24 -21 6 -90 1 -1 134217728 0 0 +( 1468 569 104 ) ( 1468 569 105 ) ( 1470 569 105 ) metals/mt_sr_v24 -8 8 90 1 1 134217728 0 0 +( 1466 573 104 ) ( 1466 573 105 ) ( 1466 571 105 ) metals/mt_sr_v24 -8 -44 90 1 -1 134217728 0 0 +( 1470 575 104 ) ( 1470 575 105 ) ( 1468 575 105 ) metals/mt_sr_v24 -8 8 90 1 1 134217728 0 0 +( 1472 571 104 ) ( 1472 571 105 ) ( 1472 573 105 ) metals/mt_sr_v24 -8 -44 90 1 -1 134217728 0 0 +( 1472 573 104 ) ( 1472 573 105 ) ( 1470 575 105 ) metals/mt_sr_v24 -8 52 90 1 1 134217728 0 0 +( 1468 575 104 ) ( 1468 575 105 ) ( 1466 573 105 ) metals/mt_sr_v24 -8 26 90 1 1 134217728 0 0 +( 1466 571 104 ) ( 1466 571 105 ) ( 1468 569 105 ) metals/mt_sr_v24 -8 34 90 1 1 134217728 0 0 +( 1470 569 104 ) ( 1470 569 105 ) ( 1472 571 105 ) metals/mt_sr_v24 -8 11 90 1 1 134217728 0 0 +} +// brush 513 +{ +( 1460 594 164 ) ( 1460 555 156 ) ( 1468 555 156 ) bricks/b_sr_v24t 27 82 14 1 -1 134217728 0 0 +( 1472 554 160 ) ( 1472 593 168 ) ( 1472 596 157 ) bricks/b_sr_v24t 97 -34 14 1 -1 134217728 0 0 +( 1468 593 168 ) ( 1460 593 168 ) ( 1460 596 157 ) bricks/b_sr_v24t 4 -11 14 1 -1 134217728 0 0 +( 1460 593 168 ) ( 1460 554 160 ) ( 1460 556 148 ) bricks/b_sr_v24t 97 -34 14 1 -1 134217728 0 0 +( 1460 554 160 ) ( 1468 554 160 ) ( 1468 556 148 ) bricks/b_sr_v24t 4 -11 14 1 -1 134217728 0 0 +( 1464 556 148 ) ( 1460 560 149 ) ( 1462 551 184 ) bricks/b_sr_v24t 97 -34 14 1 -1 134217728 0 0 +( 1460 592 156 ) ( 1464 596 157 ) ( 1462 586 191 ) bricks/b_sr_v24t 97 -34 14 1 -1 134217728 0 0 +( 1468 557 183 ) ( 1468 549 182 ) ( 1460 553 182 ) bricks/b_sr_v24t 27 82 14 1 -1 134217728 0 0 +} +// brush 514 +{ +( 1464 696 80 ) ( 1464 648 80 ) ( 1480 648 80 ) bricks/b_sr_v26 -16 0 0 1 1 134217728 0 0 +( 1472 648 110 ) ( 1472 696 110 ) ( 1472 696 62 ) bricks/b_sr_v26 0 112 0 1 1 134217728 0 0 +( 1480 680 110 ) ( 1464 680 110 ) ( 1464 680 62 ) bricks/b_sr_v26 -16 112 0 1 1 134217728 0 0 +( 1464 664 110 ) ( 1480 664 110 ) ( 1480 664 62 ) bricks/b_sr_v26 -16 112 0 1 1 134217728 0 0 +( 1472 664 82 ) ( 1440 664 82 ) ( 1444 680 82 ) bricks/b_sr_v26 -16 0 0 1 1 134217728 0 0 +( 1436 664 84 ) ( 1436 680 78 ) ( 1436 680 90 ) bricks/b_sr_v26 0 112 0 1 1 134217728 0 0 +( 1438 666 90 ) ( 1440 664 78 ) ( 1436 668 78 ) bricks/b_sr_v26 0 112 0 1 1 134217728 0 0 +( 1438 678 90 ) ( 1436 676 78 ) ( 1440 680 78 ) bricks/b_sr_v26 0 112 0 1 1 134217728 0 0 +} +// brush 515 +{ +( 1464 696 82 ) ( 1464 648 82 ) ( 1480 648 82 ) bricks/b_sr_v26 -16 0 0 1 1 134217728 0 0 +( 1464 678 84 ) ( 1464 666 84 ) ( 1464 666 92 ) bricks/b_sr_v26 0 112 0 1 1 134217728 0 0 +( 1440 678 84 ) ( 1460 678 84 ) ( 1460 678 92 ) bricks/b_sr_v26 -16 112 0 1 1 134217728 0 0 +( 1440 666 92 ) ( 1460 666 92 ) ( 1460 666 84 ) bricks/b_sr_v26 -16 112 0 1 1 134217728 0 0 +( 1472 664 92 ) ( 1440 664 92 ) ( 1444 680 92 ) bricks/b_sr_v26 -16 0 0 1 1 134217728 0 0 +( 1438 668 84 ) ( 1438 676 84 ) ( 1438 676 92 ) bricks/b_sr_v26 0 112 0 1 1 134217728 0 0 +( 1440 666 84 ) ( 1438 668 84 ) ( 1438 668 92 ) bricks/b_sr_v26 0 112 0 1 1 134217728 0 0 +( 1438 676 84 ) ( 1440 678 84 ) ( 1440 678 92 ) bricks/b_sr_v26 0 112 0 1 1 134217728 0 0 +} +// brush 516 +{ +( 1480 648 104 ) ( 1464 648 104 ) ( 1464 696 104 ) bricks/b_sr_v24t -84 56 90 1 -1 134217728 0 0 +( 1472 648 112 ) ( 1472 696 112 ) ( 1472 696 64 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1480 680 112 ) ( 1464 680 112 ) ( 1464 680 64 ) bricks/b_sr_v24t -60 -56 0 1 -1 134217728 0 0 +( 1464 696 112 ) ( 1464 648 112 ) ( 1464 648 64 ) bricks/b_sr_v24t -92 -56 0 1 -1 134217728 0 0 +( 1464 664 112 ) ( 1480 664 112 ) ( 1480 664 64 ) bricks/b_sr_v24t -60 -56 0 1 -1 134217728 0 0 +( 1480 664 92 ) ( 1480 672 92 ) ( 1464 668 92 ) bricks/b_sr_v24t -60 -104 0 1 -1 134217728 0 0 +} +// brush 517 +{ +( 1464 662 189 ) ( 1468 662 189 ) ( 1468 658 189 ) metals/mt_sr_v24 20 10 -90 1 -1 134217728 0 0 +( 1468 658 188 ) ( 1468 662 188 ) ( 1464 662 188 ) metals/mt_sr_v24 20 10 -90 1 -1 134217728 0 0 +( 1467 657 189 ) ( 1467 657 188 ) ( 1465 657 188 ) metals/mt_sr_v24 -28 11 90 1 1 134217728 0 0 +( 1463 659 189 ) ( 1463 659 188 ) ( 1463 661 188 ) metals/mt_sr_v24 -28 60 90 1 -1 134217728 0 0 +( 1465 663 189 ) ( 1465 663 188 ) ( 1467 663 188 ) metals/mt_sr_v24 -28 11 90 1 1 134217728 0 0 +( 1469 661 189 ) ( 1469 661 188 ) ( 1469 659 188 ) metals/mt_sr_v24 -28 60 90 1 -1 134217728 0 0 +( 1469 661 188 ) ( 1469 661 189 ) ( 1467 663 189 ) metals/mt_sr_v24 -28 -54 90 1 1 134217728 0 0 +( 1463 661 189 ) ( 1463 661 188 ) ( 1465 663 188 ) metals/mt_sr_v24 -28 -13 90 1 1 134217728 0 0 +( 1465 657 189 ) ( 1465 657 188 ) ( 1463 659 188 ) metals/mt_sr_v24 -28 -5 90 1 1 134217728 0 0 +( 1469 659 189 ) ( 1469 659 188 ) ( 1467 657 188 ) metals/mt_sr_v24 -28 -29 90 1 1 134217728 0 0 +} +// brush 518 +{ +( 1468 658 189 ) ( 1468 662 189 ) ( 1464 662 189 ) metals/mt_sr_v24 20 11 -90 1 -1 134217728 0 0 +( 1468 658 188 ) ( 1464 658 188 ) ( 1464 658 197 ) metals/mt_sr_v24 -28 12 90 1 1 134217728 0 0 +( 1464 658 188 ) ( 1464 662 188 ) ( 1464 662 197 ) metals/mt_sr_v24 -28 60 90 1 -1 134217728 0 0 +( 1464 662 188 ) ( 1468 662 188 ) ( 1468 662 197 ) metals/mt_sr_v24 -28 12 90 1 1 134217728 0 0 +( 1468 662 188 ) ( 1468 658 188 ) ( 1468 658 197 ) metals/mt_sr_v24 -28 60 90 1 -1 134217728 0 0 +( 1469 660 197 ) ( 1465 664 197 ) ( 1467 662 188 ) metals/mt_sr_v24 -28 -46 90 1 1 134217728 0 0 +( 1467 664 197 ) ( 1463 660 197 ) ( 1465 662 188 ) metals/mt_sr_v24 -28 -6 90 1 1 134217728 0 0 +( 1463 660 197 ) ( 1467 656 197 ) ( 1465 658 188 ) metals/mt_sr_v24 -28 -11 90 1 1 134217728 0 0 +( 1466 657 197 ) ( 1470 661 197 ) ( 1468 659 188 ) metals/mt_sr_v24 -28 -34 90 1 1 134217728 0 0 +( 1468 658 193 ) ( 1464 658 197 ) ( 1466 662 195 ) metals/mt_sr_v24 19 0 -90 1 1 134217728 0 0 +} +// brush 519 +{ +( 1471 658 197 ) ( 1471 662 197 ) ( 1471 662 193 ) metals/mt_sr_v24 18 15 -180 1 -1 134217728 0 0 +( 1478 658 197 ) ( 1478 658 193 ) ( 1469 658 193 ) metals/mt_sr_v24 27 16 0 1 1 134217728 0 0 +( 1478 658 193 ) ( 1478 662 193 ) ( 1469 662 193 ) metals/mt_sr_v24 26 61 0 1 1 134217728 0 0 +( 1478 662 193 ) ( 1478 662 197 ) ( 1469 662 197 ) metals/mt_sr_v24 27 16 0 1 1 134217728 0 0 +( 1478 662 197 ) ( 1478 658 197 ) ( 1469 658 197 ) metals/mt_sr_v24 26 61 0 1 1 134217728 0 0 +( 1469 660 198 ) ( 1469 664 194 ) ( 1478 662 196 ) metals/mt_sr_v24 25 7 0 1 1 134217728 0 0 +( 1469 664 196 ) ( 1469 660 192 ) ( 1478 662 194 ) metals/mt_sr_v24 26 63 0 1 1 134217728 0 0 +( 1469 660 192 ) ( 1469 656 196 ) ( 1478 658 194 ) metals/mt_sr_v24 25 59 0 1 1 134217728 0 0 +( 1469 657 195 ) ( 1469 661 199 ) ( 1478 659 197 ) metals/mt_sr_v24 26 51 0 1 1 134217728 0 0 +( 1464 658 197 ) ( 1468 658 193 ) ( 1466 662 195 ) metals/mt_sr_v24 -49 62 -180 1 -1 134217728 0 0 +} +// brush 520 +{ +( 1471 662 193 ) ( 1471 662 197 ) ( 1471 658 197 ) metals/mt_sr_v24 18 14 -180 1 -1 134217728 0 0 +( 1472 658 197 ) ( 1472 662 197 ) ( 1472 662 193 ) metals/mt_sr_v24 18 14 -180 1 -1 134217728 0 0 +( 1472 657 194 ) ( 1471 657 194 ) ( 1471 657 196 ) metals/mt_sr_v24 25 15 0 1 1 134217728 0 0 +( 1472 661 192 ) ( 1471 661 192 ) ( 1471 659 192 ) metals/mt_sr_v24 24 61 0 1 1 134217728 0 0 +( 1472 663 196 ) ( 1471 663 196 ) ( 1471 663 194 ) metals/mt_sr_v24 25 15 0 1 1 134217728 0 0 +( 1472 659 198 ) ( 1471 659 198 ) ( 1471 661 198 ) metals/mt_sr_v24 24 61 0 1 1 134217728 0 0 +( 1472 661 198 ) ( 1471 661 198 ) ( 1471 663 196 ) metals/mt_sr_v24 23 9 0 1 1 134217728 0 0 +( 1472 663 194 ) ( 1471 663 194 ) ( 1471 661 192 ) metals/mt_sr_v24 24 1 0 1 1 134217728 0 0 +( 1471 657 194 ) ( 1472 657 194 ) ( 1472 659 192 ) metals/mt_sr_v24 23 57 0 1 1 134217728 0 0 +( 1472 657 196 ) ( 1471 657 196 ) ( 1471 659 198 ) metals/mt_sr_v24 24 49 0 1 1 134217728 0 0 +} +// brush 521 +{ +( 1458 405 88 ) ( 1460 405 88 ) ( 1460 421 88 ) bricks/b_sr_v20b -15 -90 90 1 1 134217728 0 0 +( 1460 421 91 ) ( 1460 405 91 ) ( 1458 405 91 ) bricks/b_sr_v20b -15 -90 90 1 1 134217728 0 0 +( 1458 419 91 ) ( 1458 407 91 ) ( 1458 407 89 ) bricks/b_sr_v20b -16 -97 0 1 -1 134217728 0 0 +( 1460 421 91 ) ( 1458 419 91 ) ( 1458 419 89 ) bricks/b_sr_v20b 0 -98 0 1 -1 134217728 0 0 +( 1460 405 88 ) ( 1460 405 90 ) ( 1460 421 90 ) bricks/b_sr_v20b -16 -97 0 1 -1 134217728 0 0 +( 1460 405 89 ) ( 1458 407 89 ) ( 1458 407 91 ) bricks/b_sr_v20b -57 -97 -180 1 1 134217728 0 0 +} +// brush 522 +{ +( 1460 423 88 ) ( 1468 423 88 ) ( 1468 425 88 ) bricks/b_sr_v20b -15 -90 90 1 1 134217728 0 0 +( 1468 425 91 ) ( 1468 423 91 ) ( 1460 423 91 ) bricks/b_sr_v20b -15 -90 90 1 1 134217728 0 0 +( 1460 419 88 ) ( 1460 421 88 ) ( 1460 421 90 ) bricks/b_sr_v20b -16 -97 0 1 -1 134217728 0 0 +( 1468 425 91 ) ( 1460 421 91 ) ( 1460 421 89 ) bricks/b_sr_v20b 67 -98 -180 1 1 134217728 0 0 +( 1468 423 89 ) ( 1468 423 91 ) ( 1468 425 91 ) bricks/b_sr_v20b -16 -97 0 1 -1 134217728 0 0 +( 1468 423 89 ) ( 1460 419 89 ) ( 1460 419 91 ) bricks/b_sr_v20b 67 -98 -180 1 1 134217728 0 0 +} +// brush 523 +{ +( 1460 401 88 ) ( 1468 401 88 ) ( 1468 403 88 ) bricks/b_sr_v20b -15 -90 90 1 1 134217728 0 0 +( 1468 403 91 ) ( 1468 401 91 ) ( 1460 401 91 ) bricks/b_sr_v20b -15 -90 90 1 1 134217728 0 0 +( 1460 407 90 ) ( 1460 405 90 ) ( 1460 405 88 ) bricks/b_sr_v20b -16 -97 0 1 -1 134217728 0 0 +( 1468 403 91 ) ( 1460 407 91 ) ( 1460 407 89 ) bricks/b_sr_v20b 67 -98 -180 1 1 134217728 0 0 +( 1468 401 89 ) ( 1468 401 91 ) ( 1468 403 91 ) bricks/b_sr_v20b -16 -97 0 1 -1 134217728 0 0 +( 1468 401 89 ) ( 1460 405 89 ) ( 1460 405 91 ) bricks/b_sr_v20b 67 -98 -180 1 1 134217728 0 0 +} +// brush 524 +{ +( 1448 397 88 ) ( 1472 397 88 ) ( 1472 429 88 ) bricks/b_sr_v20b -15 -90 90 1 1 134217728 0 0 +( 1470 423 140 ) ( 1470 403 140 ) ( 1468 403 140 ) bricks/b_sr_v20b -15 -49 90 1 1 134217728 0 0 +( 1470 423 88 ) ( 1470 423 144 ) ( 1468 423 144 ) bricks/b_sr_v20b 90 73 -180 1 -1 134217728 0 0 +( 1470 423 140 ) ( 1470 419 140 ) ( 1470 419 88 ) bricks/b_sr_v24t 4 -84 0 1 -1 134217728 0 0 +( 1471 408 140 ) ( 1471 412 88 ) ( 1471 403 88 ) bricks/b_sr_v20b -17 72 0 1 1 134217728 0 0 +( 1471 413 88 ) ( 1470 419 88 ) ( 1470 419 140 ) bricks/b_sr_v24t 4 -84 0 1 -1 134217728 0 0 +} +// brush 525 +{ +( 1448 397 88 ) ( 1472 397 88 ) ( 1472 429 88 ) bricks/b_sr_v20b -15 -90 90 1 1 134217728 0 0 +( 1470 423 140 ) ( 1470 403 140 ) ( 1468 403 140 ) bricks/b_sr_v20b -15 -49 90 1 1 134217728 0 0 +( 1470 403 88 ) ( 1470 407 88 ) ( 1470 407 140 ) bricks/b_sr_v24t 4 -84 0 1 -1 134217728 0 0 +( 1469 403 140 ) ( 1472 403 88 ) ( 1466 403 88 ) bricks/b_sr_v20b 90 73 -180 1 -1 134217728 0 0 +( 1471 408 140 ) ( 1471 412 88 ) ( 1471 403 88 ) bricks/b_sr_v20b -17 72 0 1 1 134217728 0 0 +( 1471 413 140 ) ( 1470 407 140 ) ( 1470 407 88 ) bricks/b_sr_v24t 4 -84 0 1 -1 134217728 0 0 +} +// brush 526 +{ +( 1448 397 88 ) ( 1472 397 88 ) ( 1472 429 88 ) bricks/b_sr_v20b -15 -90 90 1 1 134217728 0 0 +( 1472 397 88 ) ( 1472 397 152 ) ( 1472 429 152 ) bricks/b_sr_v20b -16 -96 0 1 -1 134217728 0 0 +( 1470 399 144 ) ( 1472 397 88 ) ( 1468 401 88 ) bricks/b_sr_v20b -45 -96 -180 1 1 134217728 0 0 +( 1470 423 140 ) ( 1470 403 140 ) ( 1468 403 140 ) bricks/b_sr_v20b -15 -90 90 1 1 134217728 0 0 +( 1468 403 88 ) ( 1468 423 144 ) ( 1468 403 144 ) bricks/b_sr_v20b -16 -96 0 1 -1 134217728 0 0 +( 1469 403 140 ) ( 1466 403 88 ) ( 1472 403 88 ) bricks/b_sr_v20b 67 -97 -180 1 1 134217728 0 0 +} +// brush 527 +{ +( 1448 397 88 ) ( 1472 397 88 ) ( 1472 429 88 ) bricks/b_sr_v20b -15 -90 90 1 1 134217728 0 0 +( 1468 429 88 ) ( 1468 429 152 ) ( 1468 397 152 ) bricks/b_sr_v20b -16 -96 0 1 -1 134217728 0 0 +( 1472 397 88 ) ( 1472 397 152 ) ( 1472 429 152 ) bricks/b_sr_v20b -16 -96 0 1 -1 134217728 0 0 +( 1470 427 144 ) ( 1468 425 88 ) ( 1472 429 88 ) bricks/b_sr_v20b 12 -97 0 1 -1 134217728 0 0 +( 1470 423 140 ) ( 1470 403 140 ) ( 1468 403 140 ) bricks/b_sr_v20b -15 -90 90 1 1 134217728 0 0 +( 1470 423 88 ) ( 1468 423 144 ) ( 1470 423 144 ) bricks/b_sr_v20b 67 -97 -180 1 1 134217728 0 0 +} +// brush 528 +{ +( 1472 429 144 ) ( 1472 397 144 ) ( 1448 397 144 ) bricks/b_sr_v20b -15 -90 90 1 1 134217728 0 0 +( 1468 429 88 ) ( 1468 429 152 ) ( 1468 397 152 ) bricks/b_sr_v20b -16 -96 0 1 -1 134217728 0 0 +( 1472 397 88 ) ( 1472 397 152 ) ( 1472 429 152 ) bricks/b_sr_v20b -16 -96 0 1 -1 134217728 0 0 +( 1470 427 144 ) ( 1468 425 88 ) ( 1472 429 88 ) bricks/b_sr_v20b 12 -97 0 1 -1 134217728 0 0 +( 1470 399 144 ) ( 1472 397 88 ) ( 1468 401 88 ) bricks/b_sr_v20b -45 -96 -180 1 1 134217728 0 0 +( 1470 423 140 ) ( 1468 403 140 ) ( 1470 403 140 ) bricks/b_sr_v20b -15 -90 90 1 1 134217728 0 0 +} +// brush 529 +{ +( 1472 423 90 ) ( 1472 403 90 ) ( 1459 403 90 ) bricks/b_sr_v31d -65 0 0 1 1 0 0 0 +( 1460 423 88 ) ( 1460 423 90 ) ( 1460 403 90 ) bricks/b_sr_v31d 0 48 0 1 1 0 0 0 +( 1472 423 89 ) ( 1472 423 91 ) ( 1459 423 91 ) bricks/b_sr_v31d -65 48 0 1 1 0 0 0 +( 1472 403 89 ) ( 1472 403 91 ) ( 1472 423 91 ) bricks/b_sr_v31d 0 48 0 1 1 0 0 0 +( 1459 403 89 ) ( 1459 403 91 ) ( 1472 403 91 ) bricks/b_sr_v31d -65 48 0 1 1 0 0 0 +( 1464 421 91 ) ( 1460 419 89 ) ( 1468 423 89 ) bricks/b_sr_v31d -65 48 0 1 1 0 0 0 +( 1464 405 91 ) ( 1468 403 89 ) ( 1460 407 89 ) bricks/b_sr_v31d -65 48 0 1 1 0 0 0 +( 1465 403 89 ) ( 1470 423 89 ) ( 1460 423 89 ) bricks/b_sr_v31d -65 0 0 1 1 0 0 0 +} +// brush 530 +{ +( 1351 427 78 ) ( 1351 451 78 ) ( 1303 451 78 ) metals/mt_pv_m14 0 39 -180 1 -1 134217728 16384 0 +( 1303 423 79 ) ( 1303 447 79 ) ( 1351 447 79 ) floors/r_sr_m2 0 47 -180 1 -1 134217728 16384 0 +( 1343 419 79 ) ( 1338 429 79 ) ( 1338 429 74 ) floors/r_sr_m2 -123 47 90 1 -1 134217728 16384 0 +( 1338 429 83 ) ( 1315 421 83 ) ( 1315 421 78 ) floors/r_sr_m2 0 24 -180 1 -1 134217728 16384 0 +( 1329 420 74 ) ( 1315 421 79 ) ( 1343 419 79 ) floors/r_sr_m2 0 24 -180 1 -1 134217728 16384 0 +( 1330 423 79 ) ( 1331 421 78 ) ( 1328 426 78 ) floors/r_sr_m2 63 24 -180 1 -1 134217728 16384 0 +( 1337 426 79 ) ( 1333 427 78 ) ( 1340 425 78 ) floors/r_sr_m2 127 24 -180 1 -1 134217728 16384 0 +} +// brush 531 +{ +( 1342 424 78 ) ( 1349 447 78 ) ( 1303 461 78 ) metals/mt_pv_m14 55 -4 -163 0.999865 -0.999947 134217728 16384 0 +( 1295 435 79 ) ( 1302 458 79 ) ( 1348 443 79 ) floors/r_sr_m2 68 -1 -162 0.999999 -1.000012 134217728 16384 0 +( 1330 430 83 ) ( 1306 429 83 ) ( 1306 429 78 ) floors/r_sr_m2 49 24 -180 1.057861 -1 134217728 16384 0 +( 1319 424 74 ) ( 1306 429 79 ) ( 1332 419 79 ) floors/r_sr_m2 81 24 -180 0.935547 -1 134217728 16384 0 +( 1317 427 79 ) ( 1316 425 78 ) ( 1318 430 78 ) floors/r_sr_m2 -30 24 -180 0.956295 -1 134217728 16384 0 +( 1321 427 79 ) ( 1320 430 78 ) ( 1321 424 78 ) floors/r_sr_m2 -22 24 -180 1.131737 -1 134217728 16384 0 +} +// brush 532 +{ +( 1334 417 78 ) ( 1344 438 78 ) ( 1301 459 78 ) metals/mt_pv_m14 108 -89 -154 1.000086 -0.999915 134217728 16384 0 +( 1289 433 79 ) ( 1299 455 79 ) ( 1342 435 79 ) floors/r_sr_m2 108 -81 -154 0.999975 -1.000133 134217728 16384 0 +( 1323 424 83 ) ( 1299 426 83 ) ( 1299 426 78 ) floors/r_sr_m2 47 24 -180 1.053467 -1 134217728 16384 0 +( 1311 420 74 ) ( 1299 426 79 ) ( 1323 413 79 ) floors/r_sr_m2 40 24 -180 0.876221 -1 134217728 16384 0 +( 1309 423 79 ) ( 1311 425 78 ) ( 1308 421 78 ) floors/r_sr_m2 23 24 -180 0.906311 -1 134217728 16384 0 +} +// brush 533 +{ +( 1302 432 78 ) ( 1302 456 78 ) ( 1254 456 78 ) metals/mt_pv_m14 79 34 -180 1 -1 134217728 16384 0 +( 1254 428 79 ) ( 1254 452 79 ) ( 1302 452 79 ) floors/r_sr_m2 79 42 -180 1 -1 134217728 16384 0 +( 1294 424 79 ) ( 1289 434 79 ) ( 1289 434 74 ) floors/r_sr_m2 -123 42 90 1 -1 134217728 16384 0 +( 1289 434 83 ) ( 1266 426 83 ) ( 1266 426 78 ) floors/r_sr_m2 79 24 -180 1 -1 134217728 16384 0 +( 1288 431 79 ) ( 1291 430 78 ) ( 1284 432 78 ) floors/r_sr_m2 78 24 -180 1 -1 134217728 16384 0 +} +// brush 534 +{ +( 1369 716 80 ) ( 1415 614 80 ) ( 1122 483 80 ) bricks/b_rc_v16 -84 93 -23 1.000021 0.999985 0 0 0 +( 1385 601 64 ) ( 1385 601 80 ) ( 1340 703 80 ) bricks/b_rc_v16 -56 48 0 0.913544 1 0 0 0 +( 1134 448 70 ) ( 1134 448 86 ) ( 1426 578 86 ) bricks/b_rc_v16 -97 48 0 0.913574 1 0 0 0 +( 1475 400 78 ) ( 1166 267 78 ) ( 1170 259 78 ) bricks/b_rc_v16 -72 -14 -23 1.000021 0.999985 0 0 0 +( 1382 569 80 ) ( 1377 562 76 ) ( 1388 575 76 ) bricks/b_rc_v16 71 48 -180 0.863770 -1 0 0 0 +( 1391 559 80 ) ( 1398 554 78 ) ( 1384 565 78 ) bricks/b_rc_v16 -10 48 0 0.863525 1 0 0 0 +} +// brush 535 +{ +( 1416 454 80 ) ( 1370 556 80 ) ( 1663 687 80 ) bricks/b_rc_v16 2 -93 156 1.000031 0.999871 0 0 0 +( 1400 569 64 ) ( 1400 569 80 ) ( 1445 467 80 ) bricks/b_rc_v16 56 48 -180 0.913574 -1 0 0 0 +( 1651 722 70 ) ( 1651 722 86 ) ( 1359 592 86 ) bricks/b_rc_v16 7 47 -180 0.913574 -1 0 0 0 +( 1310 770 78 ) ( 1619 903 78 ) ( 1615 911 78 ) bricks/b_rc_v16 14 -73 156 1.000031 0.999919 0 0 0 +( 1403 609 80 ) ( 1408 616 76 ) ( 1397 603 76 ) bricks/b_rc_v16 -2 48 0 0.863770 1 0 0 0 +( 1394 611 80 ) ( 1387 616 78 ) ( 1401 605 78 ) bricks/b_rc_v16 14 47 -180 0.863525 -1 0 0 0 +} +// brush 536 +{ +( 1088 416 78 ) ( 1088 384 78 ) ( 1104 384 78 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +( 1104 384 80 ) ( 1088 384 80 ) ( 1088 416 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 67108864 0 +( 1120 392 86 ) ( 1088 400 86 ) ( 1088 400 78 ) bricks/b_rc_v16 -64 46 0 1 1 0 0 0 +( 1120 384 72 ) ( 1120 384 80 ) ( 1120 416 80 ) bricks/b_rc_v16 0 46 0 1 1 0 0 0 +( 1088 384 78 ) ( 1088 384 86 ) ( 1104 384 86 ) bricks/b_rc_v16 -64 46 0 1 1 0 0 0 +( 1088 384 72 ) ( 1088 400 72 ) ( 1088 400 80 ) bricks/b_rc_v16 0 46 0 1 1 0 0 0 +} +// brush 537 +{ +( 1259 392 116 ) ( 1259 387 116 ) ( 1261 387 116 ) metals/mt_sr_v24 -4 54 0 1 1 134217728 0 0 +( 1261 387 118 ) ( 1259 387 118 ) ( 1259 392 118 ) metals/mt_sr_v24 -4 54 0 1 1 134217728 0 0 +( 1261 387 118 ) ( 1261 392 118 ) ( 1261 392 114 ) metals/mt_sr_v24 4 56 -90 1 1 134217728 0 0 +( 1261 392 118 ) ( 1259 392 118 ) ( 1259 392 114 ) metals/mt_sr_v24 6 -26 -90 1 -1 134217728 0 0 +( 1259 392 118 ) ( 1259 387 118 ) ( 1259 387 114 ) metals/mt_sr_v24 4 56 -90 1 1 134217728 0 0 +( 1259 387 118 ) ( 1261 387 118 ) ( 1261 387 114 ) metals/mt_sr_v24 6 -26 -90 1 -1 134217728 0 0 +} +// brush 538 +{ +( 1259 387 114 ) ( 1259 385 114 ) ( 1261 385 114 ) metals/mt_sr_v24 -4 54 0 1 1 134217728 0 0 +( 1261 385 118 ) ( 1259 385 118 ) ( 1259 387 118 ) metals/mt_sr_v24 -4 54 0 1 1 134217728 0 0 +( 1262 385 114 ) ( 1262 385 118 ) ( 1261 387 118 ) metals/mt_sr_v24 4 56 -90 1 1 134217728 0 0 +( 1261 387 116 ) ( 1259 387 116 ) ( 1259 387 114 ) metals/mt_sr_v24 6 -26 -90 1 -1 134217728 0 0 +( 1258 385 118 ) ( 1258 385 114 ) ( 1259 387 114 ) metals/mt_sr_v24 4 56 -90 1 1 134217728 0 0 +( 1262 385 118 ) ( 1262 385 114 ) ( 1258 385 114 ) metals/mt_sr_v24 6 -26 -90 1 -1 134217728 0 0 +} +// brush 539 +{ +( 1268 388 115 ) ( 1268 387 115 ) ( 1270 387 115 ) metals/mt_sr_v24 -2 54 0 1 1 134217728 0 0 +( 1270 387 116 ) ( 1268 387 116 ) ( 1268 388 116 ) metals/mt_sr_v24 -2 54 0 1 1 134217728 0 0 +( 1270 387 116 ) ( 1270 388 116 ) ( 1270 388 115 ) metals/mt_sr_v24 7 56 -90 1 1 134217728 0 0 +( 1270 388 116 ) ( 1268 388 116 ) ( 1268 388 115 ) metals/mt_sr_v24 9 -26 -90 1 -1 134217728 0 0 +( 1268 388 116 ) ( 1268 387 116 ) ( 1268 387 115 ) metals/mt_sr_v24 7 56 -90 1 1 134217728 0 0 +( 1268 387 116 ) ( 1270 387 116 ) ( 1270 387 115 ) metals/mt_sr_v24 9 -26 -90 1 -1 134217728 0 0 +} +// brush 540 +{ +( 1270 387 115 ) ( 1270 385 115 ) ( 1271 385 115 ) metals/mt_sr_v24 -2 54 0 1 1 134217728 0 0 +( 1271 385 116 ) ( 1270 385 116 ) ( 1270 387 116 ) metals/mt_sr_v24 -2 54 0 1 1 134217728 0 0 +( 1271 385 116 ) ( 1271 387 116 ) ( 1271 387 115 ) metals/mt_sr_v24 7 56 -90 1 1 134217728 0 0 +( 1271 387 116 ) ( 1270 387 116 ) ( 1270 387 115 ) metals/mt_sr_v24 9 -26 -90 1 -1 134217728 0 0 +( 1270 387 116 ) ( 1270 385 116 ) ( 1270 385 115 ) metals/mt_sr_v24 7 56 -90 1 1 134217728 0 0 +( 1270 385 116 ) ( 1271 385 116 ) ( 1271 385 115 ) metals/mt_sr_v24 9 -26 -90 1 -1 134217728 0 0 +} +// brush 541 +{ +( 1268 385 115 ) ( 1268 384 115 ) ( 1270 384 115 ) metals/mt_sr_v24 -2 54 0 1 1 134217728 0 0 +( 1270 384 116 ) ( 1268 384 116 ) ( 1268 385 116 ) metals/mt_sr_v24 -2 54 0 1 1 134217728 0 0 +( 1270 384 116 ) ( 1270 385 116 ) ( 1270 385 115 ) metals/mt_sr_v24 7 56 -90 1 1 134217728 0 0 +( 1270 385 116 ) ( 1268 385 116 ) ( 1268 385 115 ) metals/mt_sr_v24 9 -26 -90 1 -1 134217728 0 0 +( 1268 385 116 ) ( 1268 384 116 ) ( 1268 384 115 ) metals/mt_sr_v24 7 56 -90 1 1 134217728 0 0 +( 1268 384 116 ) ( 1270 384 116 ) ( 1270 384 115 ) metals/mt_sr_v24 9 -26 -90 1 -1 134217728 0 0 +} +// brush 542 +{ +( 1268 387 108 ) ( 1268 385 108 ) ( 1270 385 108 ) metals/mt_sr_v24 -2 54 0 1 1 134217728 0 0 +( 1270 385 116 ) ( 1268 385 116 ) ( 1268 387 116 ) metals/mt_sr_v24 -2 54 0 1 1 134217728 0 0 +( 1270 385 125 ) ( 1270 387 125 ) ( 1270 387 113 ) metals/mt_sr_v24 15 56 -90 1.000031 1 134217728 0 0 +( 1270 387 125 ) ( 1268 387 125 ) ( 1268 387 113 ) metals/mt_sr_v24 18 -23 -90 1 -1 134217728 0 0 +( 1268 387 125 ) ( 1268 385 125 ) ( 1268 385 113 ) metals/mt_sr_v24 15 56 -90 1.000031 1 134217728 0 0 +( 1268 385 125 ) ( 1270 385 125 ) ( 1270 385 113 ) metals/mt_sr_v24 18 -23 -90 1 -1 134217728 0 0 +} +// brush 543 +{ +( 1267 387 115 ) ( 1267 385 115 ) ( 1268 385 115 ) metals/mt_sr_v24 -2 54 0 1 1 134217728 0 0 +( 1268 385 116 ) ( 1267 385 116 ) ( 1267 387 116 ) metals/mt_sr_v24 -2 54 0 1 1 134217728 0 0 +( 1268 385 116 ) ( 1268 387 116 ) ( 1268 387 113 ) metals/mt_sr_v24 7 56 -90 1 1 134217728 0 0 +( 1268 387 116 ) ( 1267 387 116 ) ( 1267 387 113 ) metals/mt_sr_v24 9 -26 -90 1 -1 134217728 0 0 +( 1267 387 116 ) ( 1267 385 116 ) ( 1267 385 113 ) metals/mt_sr_v24 7 56 -90 1 1 134217728 0 0 +( 1267 385 116 ) ( 1268 385 116 ) ( 1268 385 113 ) metals/mt_sr_v24 9 -26 -90 1 -1 134217728 0 0 +} +// brush 544 +{ +( 1248 387 118 ) ( 1250 387 118 ) ( 1250 388 118 ) metals/mt_sr_v24 -50 54 0 1 1 134217728 0 0 +( 1250 388 119 ) ( 1250 387 119 ) ( 1248 387 119 ) metals/mt_sr_v24 -50 54 0 1 1 134217728 0 0 +( 1248 388 118 ) ( 1248 388 119 ) ( 1248 387 119 ) metals/mt_sr_v24 10 56 -90 1 1 134217728 0 0 +( 1250 388 118 ) ( 1250 388 119 ) ( 1248 388 119 ) metals/mt_sr_v24 12 -10 -90 1 -1 134217728 0 0 +( 1250 387 118 ) ( 1250 387 119 ) ( 1250 388 119 ) metals/mt_sr_v24 10 56 -90 1 1 134217728 0 0 +( 1248 387 118 ) ( 1248 387 119 ) ( 1250 387 119 ) metals/mt_sr_v24 12 -10 -90 1 -1 134217728 0 0 +} +// brush 545 +{ +( 1247 385 118 ) ( 1248 385 118 ) ( 1248 387 118 ) metals/mt_sr_v24 -50 54 0 1 1 134217728 0 0 +( 1248 387 119 ) ( 1248 385 119 ) ( 1247 385 119 ) metals/mt_sr_v24 -50 54 0 1 1 134217728 0 0 +( 1247 387 118 ) ( 1247 387 119 ) ( 1247 385 119 ) metals/mt_sr_v24 10 56 -90 1 1 134217728 0 0 +( 1248 387 118 ) ( 1248 387 119 ) ( 1247 387 119 ) metals/mt_sr_v24 12 -10 -90 1 -1 134217728 0 0 +( 1248 385 118 ) ( 1248 385 119 ) ( 1248 387 119 ) metals/mt_sr_v24 10 56 -90 1 1 134217728 0 0 +( 1247 385 118 ) ( 1247 385 119 ) ( 1248 385 119 ) metals/mt_sr_v24 12 -10 -90 1 -1 134217728 0 0 +} +// brush 546 +{ +( 1248 384 118 ) ( 1250 384 118 ) ( 1250 385 118 ) metals/mt_sr_v24 -50 54 0 1 1 134217728 0 0 +( 1250 385 119 ) ( 1250 384 119 ) ( 1248 384 119 ) metals/mt_sr_v24 -50 54 0 1 1 134217728 0 0 +( 1248 385 118 ) ( 1248 385 119 ) ( 1248 384 119 ) metals/mt_sr_v24 10 56 -90 1 1 134217728 0 0 +( 1250 385 118 ) ( 1250 385 119 ) ( 1248 385 119 ) metals/mt_sr_v24 12 -10 -90 1 -1 134217728 0 0 +( 1250 384 118 ) ( 1250 384 119 ) ( 1250 385 119 ) metals/mt_sr_v24 10 56 -90 1 1 134217728 0 0 +( 1248 384 118 ) ( 1248 384 119 ) ( 1250 384 119 ) metals/mt_sr_v24 12 -10 -90 1 -1 134217728 0 0 +} +// brush 547 +{ +( 1250 385 111 ) ( 1252 385 111 ) ( 1252 387 111 ) metals/mt_sr_v24 -52 54 0 1 1 134217728 0 0 +( 1249 387 119 ) ( 1249 385 119 ) ( 1247 385 119 ) metals/mt_sr_v24 -52 54 0 1 1 134217728 0 0 +( 1250 387 111 ) ( 1248 387 119 ) ( 1248 385 119 ) metals/mt_sr_v24 17 56 -90 1.000031 1 134217728 0 0 +( 1252 387 111 ) ( 1250 387 119 ) ( 1248 387 119 ) metals/mt_sr_v24 21 -9 -90 1 -1 134217728 0 0 +( 1252 385 111 ) ( 1250 385 119 ) ( 1250 387 119 ) metals/mt_sr_v24 17 56 -90 1.000031 1 134217728 0 0 +( 1250 385 111 ) ( 1248 385 119 ) ( 1250 385 119 ) metals/mt_sr_v24 21 -9 -90 1 -1 134217728 0 0 +} +// brush 548 +{ +( 1250 385 118 ) ( 1251 385 118 ) ( 1251 387 118 ) metals/mt_sr_v24 -50 54 0 1 1 134217728 0 0 +( 1251 387 119 ) ( 1251 385 119 ) ( 1250 385 119 ) metals/mt_sr_v24 -50 54 0 1 1 134217728 0 0 +( 1250 387 116 ) ( 1250 387 119 ) ( 1250 385 119 ) metals/mt_sr_v24 10 56 -90 1 1 134217728 0 0 +( 1251 387 116 ) ( 1251 387 119 ) ( 1250 387 119 ) metals/mt_sr_v24 12 -10 -90 1 -1 134217728 0 0 +( 1251 385 116 ) ( 1251 385 119 ) ( 1251 387 119 ) metals/mt_sr_v24 10 56 -90 1 1 134217728 0 0 +( 1250 385 116 ) ( 1250 385 119 ) ( 1251 385 119 ) metals/mt_sr_v24 12 -10 -90 1 -1 134217728 0 0 +} +// brush 549 +{ +( 1331 392 116 ) ( 1331 387 116 ) ( 1333 387 116 ) metals/mt_sr_v24 -12 54 0 1 1 134217728 0 0 +( 1333 387 118 ) ( 1331 387 118 ) ( 1331 392 118 ) metals/mt_sr_v24 -12 54 0 1 1 134217728 0 0 +( 1333 387 118 ) ( 1333 392 118 ) ( 1333 392 114 ) metals/mt_sr_v24 4 56 -90 1 1 134217728 0 0 +( 1333 392 118 ) ( 1331 392 118 ) ( 1331 392 114 ) metals/mt_sr_v24 6 -34 -90 1 -1 134217728 0 0 +( 1331 392 118 ) ( 1331 387 118 ) ( 1331 387 114 ) metals/mt_sr_v24 4 56 -90 1 1 134217728 0 0 +( 1331 387 118 ) ( 1333 387 118 ) ( 1333 387 114 ) metals/mt_sr_v24 6 -34 -90 1 -1 134217728 0 0 +} +// brush 550 +{ +( 1331 387 114 ) ( 1331 385 114 ) ( 1333 385 114 ) metals/mt_sr_v24 -12 54 0 1 1 134217728 0 0 +( 1333 385 118 ) ( 1331 385 118 ) ( 1331 387 118 ) metals/mt_sr_v24 -12 54 0 1 1 134217728 0 0 +( 1334 385 114 ) ( 1334 385 118 ) ( 1333 387 118 ) metals/mt_sr_v24 4 56 -90 1 1 134217728 0 0 +( 1333 387 116 ) ( 1331 387 116 ) ( 1331 387 114 ) metals/mt_sr_v24 6 -34 -90 1 -1 134217728 0 0 +( 1330 385 118 ) ( 1330 385 114 ) ( 1331 387 114 ) metals/mt_sr_v24 4 56 -90 1 1 134217728 0 0 +( 1334 385 118 ) ( 1334 385 114 ) ( 1330 385 114 ) metals/mt_sr_v24 6 -34 -90 1 -1 134217728 0 0 +} +// brush 551 +{ +( 1324 387 115 ) ( 1324 385 115 ) ( 1325 385 115 ) metals/mt_sr_v24 -56 54 0 1 1 134217728 0 0 +( 1325 385 116 ) ( 1324 385 116 ) ( 1324 387 116 ) metals/mt_sr_v24 -56 54 0 1 1 134217728 0 0 +( 1325 385 116 ) ( 1325 387 116 ) ( 1325 387 115 ) metals/mt_sr_v24 25 56 -90 1 1 134217728 0 0 +( 1325 387 116 ) ( 1324 387 116 ) ( 1324 387 115 ) metals/mt_sr_v24 27 -34 -90 1 -1 134217728 0 0 +( 1324 387 116 ) ( 1324 385 116 ) ( 1324 385 115 ) metals/mt_sr_v24 25 56 -90 1 1 134217728 0 0 +( 1324 385 116 ) ( 1325 385 116 ) ( 1325 385 115 ) metals/mt_sr_v24 27 -34 -90 1 -1 134217728 0 0 +} +// brush 552 +{ +( 1322 388 115 ) ( 1322 387 115 ) ( 1324 387 115 ) metals/mt_sr_v24 -56 54 0 1 1 134217728 0 0 +( 1324 387 116 ) ( 1322 387 116 ) ( 1322 388 116 ) metals/mt_sr_v24 -56 54 0 1 1 134217728 0 0 +( 1324 387 116 ) ( 1324 388 116 ) ( 1324 388 115 ) metals/mt_sr_v24 25 56 -90 1 1 134217728 0 0 +( 1324 388 116 ) ( 1322 388 116 ) ( 1322 388 115 ) metals/mt_sr_v24 27 -34 -90 1 -1 134217728 0 0 +( 1322 388 116 ) ( 1322 387 116 ) ( 1322 387 115 ) metals/mt_sr_v24 25 56 -90 1 1 134217728 0 0 +( 1322 387 116 ) ( 1324 387 116 ) ( 1324 387 115 ) metals/mt_sr_v24 27 -34 -90 1 -1 134217728 0 0 +} +// brush 553 +{ +( 1322 387 114 ) ( 1322 385 114 ) ( 1324 385 114 ) metals/mt_sr_v24 -56 54 0 1 1 134217728 0 0 +( 1324 385 116 ) ( 1322 385 116 ) ( 1322 387 116 ) metals/mt_sr_v24 -56 54 0 1 1 134217728 0 0 +( 1324 385 125 ) ( 1324 387 125 ) ( 1324 387 113 ) metals/mt_sr_v24 15 56 -90 1.000031 1 134217728 0 0 +( 1324 387 125 ) ( 1322 387 125 ) ( 1322 387 113 ) metals/mt_sr_v24 18 -13 -90 1 -1 134217728 0 0 +( 1322 387 125 ) ( 1322 385 125 ) ( 1322 385 113 ) metals/mt_sr_v24 15 56 -90 1.000031 1 134217728 0 0 +( 1322 385 125 ) ( 1324 385 125 ) ( 1324 385 113 ) metals/mt_sr_v24 18 -13 -90 1 -1 134217728 0 0 +} +// brush 554 +{ +( 1321 387 115 ) ( 1321 385 115 ) ( 1322 385 115 ) metals/mt_sr_v24 -56 54 0 1 1 134217728 0 0 +( 1322 385 116 ) ( 1321 385 116 ) ( 1321 387 116 ) metals/mt_sr_v24 -56 54 0 1 1 134217728 0 0 +( 1322 385 116 ) ( 1322 387 116 ) ( 1322 387 113 ) metals/mt_sr_v24 25 56 -90 1 1 134217728 0 0 +( 1322 387 116 ) ( 1321 387 116 ) ( 1321 387 113 ) metals/mt_sr_v24 27 -34 -90 1 -1 134217728 0 0 +( 1321 387 116 ) ( 1321 385 116 ) ( 1321 385 113 ) metals/mt_sr_v24 25 56 -90 1 1 134217728 0 0 +( 1321 385 116 ) ( 1322 385 116 ) ( 1322 385 113 ) metals/mt_sr_v24 27 -34 -90 1 -1 134217728 0 0 +} +// brush 555 +{ +( 1322 385 115 ) ( 1322 384 115 ) ( 1324 384 115 ) metals/mt_sr_v24 -56 54 0 1 1 134217728 0 0 +( 1324 384 116 ) ( 1322 384 116 ) ( 1322 385 116 ) metals/mt_sr_v24 -56 54 0 1 1 134217728 0 0 +( 1324 384 116 ) ( 1324 385 116 ) ( 1324 385 115 ) metals/mt_sr_v24 25 56 -90 1 1 134217728 0 0 +( 1324 385 116 ) ( 1322 385 116 ) ( 1322 385 115 ) metals/mt_sr_v24 27 -34 -90 1 -1 134217728 0 0 +( 1322 385 116 ) ( 1322 384 116 ) ( 1322 384 115 ) metals/mt_sr_v24 25 56 -90 1 1 134217728 0 0 +( 1322 384 116 ) ( 1324 384 116 ) ( 1324 384 115 ) metals/mt_sr_v24 27 -34 -90 1 -1 134217728 0 0 +} +// brush 556 +{ +( 1340 388 115 ) ( 1340 387 115 ) ( 1342 387 115 ) metals/mt_sr_v24 -10 54 0 1 1 134217728 0 0 +( 1342 387 116 ) ( 1340 387 116 ) ( 1340 388 116 ) metals/mt_sr_v24 -10 54 0 1 1 134217728 0 0 +( 1342 387 116 ) ( 1342 388 116 ) ( 1342 388 115 ) metals/mt_sr_v24 7 56 -90 1 1 134217728 0 0 +( 1342 388 116 ) ( 1340 388 116 ) ( 1340 388 115 ) metals/mt_sr_v24 9 -34 -90 1 -1 134217728 0 0 +( 1340 388 116 ) ( 1340 387 116 ) ( 1340 387 115 ) metals/mt_sr_v24 7 56 -90 1 1 134217728 0 0 +( 1340 387 116 ) ( 1342 387 116 ) ( 1342 387 115 ) metals/mt_sr_v24 9 -34 -90 1 -1 134217728 0 0 +} +// brush 557 +{ +( 1342 387 115 ) ( 1342 385 115 ) ( 1343 385 115 ) metals/mt_sr_v24 -10 54 0 1 1 134217728 0 0 +( 1343 385 116 ) ( 1342 385 116 ) ( 1342 387 116 ) metals/mt_sr_v24 -10 54 0 1 1 134217728 0 0 +( 1343 385 116 ) ( 1343 387 116 ) ( 1343 387 115 ) metals/mt_sr_v24 7 56 -90 1 1 134217728 0 0 +( 1343 387 116 ) ( 1342 387 116 ) ( 1342 387 115 ) metals/mt_sr_v24 9 -34 -90 1 -1 134217728 0 0 +( 1342 387 116 ) ( 1342 385 116 ) ( 1342 385 115 ) metals/mt_sr_v24 7 56 -90 1 1 134217728 0 0 +( 1342 385 116 ) ( 1343 385 116 ) ( 1343 385 115 ) metals/mt_sr_v24 9 -34 -90 1 -1 134217728 0 0 +} +// brush 558 +{ +( 1340 385 115 ) ( 1340 384 115 ) ( 1342 384 115 ) metals/mt_sr_v24 -10 54 0 1 1 134217728 0 0 +( 1342 384 116 ) ( 1340 384 116 ) ( 1340 385 116 ) metals/mt_sr_v24 -10 54 0 1 1 134217728 0 0 +( 1342 384 116 ) ( 1342 385 116 ) ( 1342 385 115 ) metals/mt_sr_v24 7 56 -90 1 1 134217728 0 0 +( 1342 385 116 ) ( 1340 385 116 ) ( 1340 385 115 ) metals/mt_sr_v24 9 -34 -90 1 -1 134217728 0 0 +( 1340 385 116 ) ( 1340 384 116 ) ( 1340 384 115 ) metals/mt_sr_v24 7 56 -90 1 1 134217728 0 0 +( 1340 384 116 ) ( 1342 384 116 ) ( 1342 384 115 ) metals/mt_sr_v24 9 -34 -90 1 -1 134217728 0 0 +} +// brush 559 +{ +( 1340 387 114 ) ( 1340 385 114 ) ( 1342 385 114 ) metals/mt_sr_v24 -10 54 0 1 1 134217728 0 0 +( 1342 385 116 ) ( 1340 385 116 ) ( 1340 387 116 ) metals/mt_sr_v24 -10 54 0 1 1 134217728 0 0 +( 1342 385 125 ) ( 1342 387 125 ) ( 1342 387 113 ) metals/mt_sr_v24 15 56 -90 1.000031 1 134217728 0 0 +( 1342 387 125 ) ( 1340 387 125 ) ( 1340 387 113 ) metals/mt_sr_v24 18 -31 -90 1 -1 134217728 0 0 +( 1340 387 125 ) ( 1340 385 125 ) ( 1340 385 113 ) metals/mt_sr_v24 15 56 -90 1.000031 1 134217728 0 0 +( 1340 385 125 ) ( 1342 385 125 ) ( 1342 385 113 ) metals/mt_sr_v24 18 -31 -90 1 -1 134217728 0 0 +} +// brush 560 +{ +( 1339 387 115 ) ( 1339 385 115 ) ( 1340 385 115 ) metals/mt_sr_v24 -10 54 0 1 1 134217728 0 0 +( 1340 385 116 ) ( 1339 385 116 ) ( 1339 387 116 ) metals/mt_sr_v24 -10 54 0 1 1 134217728 0 0 +( 1340 385 116 ) ( 1340 387 116 ) ( 1340 387 113 ) metals/mt_sr_v24 7 56 -90 1 1 134217728 0 0 +( 1340 387 116 ) ( 1339 387 116 ) ( 1339 387 113 ) metals/mt_sr_v24 9 -34 -90 1 -1 134217728 0 0 +( 1339 387 116 ) ( 1339 385 116 ) ( 1339 385 113 ) metals/mt_sr_v24 7 56 -90 1 1 134217728 0 0 +( 1339 385 116 ) ( 1340 385 116 ) ( 1340 385 113 ) metals/mt_sr_v24 9 -34 -90 1 -1 134217728 0 0 +} +// brush 561 +{ +( 1262 392 104 ) ( 1258 392 105 ) ( 1258 396 105 ) bricks/c_mf_v3d 31 -42 90 1 0.987793 134217728 0 0 +( 1262 392 106 ) ( 1262 396 106 ) ( 1261 396 97 ) metals/mt_sr_v24 8 55 -90 0.987732 1 134217728 0 0 +( 1262 396 106 ) ( 1258 396 107 ) ( 1257 396 98 ) metals/mt_sr_v24 13 -3 -98 1.000033 -1.000098 134217728 0 0 +( 1258 396 107 ) ( 1258 392 107 ) ( 1257 392 98 ) metals/mt_sr_v24 9 55 -90 0.987701 1 134217728 0 0 +( 1258 392 107 ) ( 1262 392 106 ) ( 1261 392 97 ) metals/mt_sr_v24 13 -3 -98 1.000033 -1.000098 134217728 0 0 +( 1259 391 97 ) ( 1255 395 98 ) ( 1258 393 107 ) metals/mt_sr_v24 13 -39 -99 0.999981 -0.999886 134217728 0 0 +( 1255 393 98 ) ( 1259 397 97 ) ( 1258 395 107 ) metals/mt_sr_v24 13 -40 -98 0.999924 -0.999954 134217728 0 0 +( 1259 397 97 ) ( 1263 393 97 ) ( 1262 395 106 ) metals/mt_sr_v24 59 20 -99 1.000041 -1.000011 134217728 0 0 +( 1262 394 97 ) ( 1258 390 98 ) ( 1261 392 106 ) metals/mt_sr_v24 13 11 -98 0.999943 -1.000219 134217728 0 0 +( 1261 393 101 ) ( 1261 397 101 ) ( 1257 395 102 ) metals/mt_sr_v24 -19 53 0 0.987915 1 134217728 0 0 +} +// brush 562 +{ +( 1264 385 108 ) ( 1268 385 108 ) ( 1268 387 108 ) metals/mt_sr_v24 -15 54 0 0.987915 1 134217728 0 0 +( 1265 387 110 ) ( 1268 387 110 ) ( 1268 385 110 ) metals/mt_sr_v24 -15 54 0 0.987671 1 134217728 0 0 +( 1268 387 110 ) ( 1268 387 108 ) ( 1268 385 108 ) metals/mt_sr_v24 14 56 -90 0.987701 1 134217728 0 0 +( 1269 387 123 ) ( 1267 387 123 ) ( 1265 387 112 ) metals/mt_sr_v24 20 9 -99 0.999992 -0.999992 134217728 0 0 +( 1267 387 123 ) ( 1267 385 123 ) ( 1265 385 112 ) metals/mt_sr_v24 15 56 -90 0.987671 1 134217728 0 0 +( 1269 385 123 ) ( 1271 385 123 ) ( 1269 385 111 ) metals/mt_sr_v24 20 9 -99 0.999992 -0.999992 134217728 0 0 +} +// brush 563 +{ +( 1252 387 111 ) ( 1252 385 111 ) ( 1256 385 111 ) metals/mt_sr_v24 0 54 0 0.987915 1 134217728 0 0 +( 1252 385 113 ) ( 1252 387 113 ) ( 1255 387 113 ) metals/mt_sr_v24 0 54 0 0.987671 1 134217728 0 0 +( 1252 385 111 ) ( 1252 387 111 ) ( 1252 387 113 ) metals/mt_sr_v24 17 56 -90 0.987701 1 134217728 0 0 +( 1255 387 115 ) ( 1253 387 126 ) ( 1251 387 126 ) metals/mt_sr_v24 20 -40 -99 0.999992 -0.999992 134217728 0 0 +( 1255 385 115 ) ( 1253 385 126 ) ( 1253 387 126 ) metals/mt_sr_v24 18 56 -90 0.987671 1 134217728 0 0 +( 1251 385 114 ) ( 1249 385 126 ) ( 1251 385 126 ) metals/mt_sr_v24 20 -40 -99 0.999992 -0.999992 134217728 0 0 +} +// brush 564 +{ +( 960 640 79 ) ( 935 640 69 ) ( 935 628 69 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 960 628 81 ) ( 935 628 71 ) ( 935 640 71 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 960 628 79 ) ( 940 628 69 ) ( 940 628 71 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 960 628 81 ) ( 960 640 81 ) ( 960 640 79 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 960 640 81 ) ( 935 640 71 ) ( 935 640 69 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 935 640 71 ) ( 940 628 71 ) ( 940 628 69 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +} +// brush 565 +{ +( 949 628 78 ) ( 949 616 78 ) ( 977 620 78 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 449 684 80 ) ( 449 876 80 ) ( 961 876 80 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 957 628 80 ) ( 957 628 64 ) ( 981 628 64 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 777 620 78 ) ( 737 620 78 ) ( 757 620 94 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 937 648 66 ) ( 937 648 82 ) ( 933 636 82 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 960 637 64 ) ( 960 625 64 ) ( 960 631 80 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +} +// brush 566 +{ +( 956 596 78 ) ( 956 584 78 ) ( 984 588 78 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 456 652 80 ) ( 456 844 80 ) ( 968 844 80 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 972 600 94 ) ( 972 600 78 ) ( 996 600 78 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 960 588 64 ) ( 948 588 64 ) ( 948 588 80 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 940 600 94 ) ( 948 588 94 ) ( 948 588 78 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 960 604 64 ) ( 960 592 64 ) ( 960 598 80 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +} +// brush 567 +{ +( 956 608 78 ) ( 956 596 78 ) ( 984 600 78 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 456 664 80 ) ( 456 856 80 ) ( 968 856 80 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 972 612 80 ) ( 972 612 64 ) ( 996 612 64 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 784 600 78 ) ( 744 600 78 ) ( 764 600 94 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 960 628 78 ) ( 960 628 94 ) ( 956 616 94 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 960 616 64 ) ( 960 604 64 ) ( 960 610 80 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +} +// brush 568 +{ +( 960 620 79 ) ( 942 620 69 ) ( 942 612 69 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 960 612 81 ) ( 942 612 71 ) ( 942 620 71 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 960 620 81 ) ( 937 620 68 ) ( 937 620 66 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 960 612 79 ) ( 942 612 69 ) ( 942 612 71 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 942 612 69 ) ( 937 620 66 ) ( 937 620 68 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 960 612 79 ) ( 960 612 81 ) ( 960 620 81 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +} +// brush 569 +{ +( 916 640 78 ) ( 888 644 78 ) ( 888 632 78 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 900 384 80 ) ( 388 384 80 ) ( 388 576 80 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 929 631 76 ) ( 896 631 76 ) ( 896 631 80 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 896 640 78 ) ( 924 640 78 ) ( 924 640 82 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 924 640 76 ) ( 929 631 76 ) ( 929 631 80 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 896 640 80 ) ( 896 631 80 ) ( 896 631 76 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +} +// brush 570 +{ +( 916 628 78 ) ( 888 632 78 ) ( 888 620 78 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 904 628 80 ) ( 908 616 80 ) ( 896 616 80 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 896 608 78 ) ( 896 608 94 ) ( 908 608 94 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 695 631 80 ) ( 675 631 64 ) ( 715 631 64 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 904 616 78 ) ( 908 604 78 ) ( 908 604 94 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 896 622 80 ) ( 896 616 64 ) ( 896 628 64 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +} +// brush 571 +{ +( 880 600 78 ) ( 908 596 78 ) ( 908 608 78 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 896 856 80 ) ( 1408 856 80 ) ( 1408 664 80 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 852 608 78 ) ( 876 608 78 ) ( 876 608 94 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 896 600 94 ) ( 900 600 94 ) ( 900 600 78 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 904 608 78 ) ( 900 600 78 ) ( 900 600 94 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 896 610 80 ) ( 896 604 64 ) ( 896 616 64 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +} +// brush 572 +{ +( 896 592 79 ) ( 916 592 77 ) ( 916 600 77 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 896 600 81 ) ( 916 600 79 ) ( 916 592 79 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 896 600 79 ) ( 913 600 77 ) ( 913 600 79 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 896 592 81 ) ( 916 592 79 ) ( 916 592 77 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 916 592 79 ) ( 913 600 79 ) ( 913 600 77 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 896 602 81 ) ( 896 596 65 ) ( 896 608 65 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +} +// brush 573 +{ +( 880 584 78 ) ( 908 580 78 ) ( 908 592 78 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 896 840 80 ) ( 1408 840 80 ) ( 1408 648 80 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 896 592 76 ) ( 916 592 76 ) ( 916 592 92 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 1100 584 80 ) ( 1120 584 64 ) ( 1080 584 64 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 908 584 92 ) ( 916 592 92 ) ( 916 592 76 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 896 594 80 ) ( 896 588 64 ) ( 896 600 64 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +} +// brush 574 +{ +( 880 576 78 ) ( 908 572 78 ) ( 908 584 78 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 896 832 80 ) ( 1408 832 80 ) ( 1408 640 80 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 892 584 64 ) ( 916 584 64 ) ( 916 584 80 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 1100 576 80 ) ( 1120 576 64 ) ( 1080 576 64 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 924 589 92 ) ( 920 601 92 ) ( 920 601 76 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 896 586 80 ) ( 896 580 64 ) ( 896 592 64 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +} +// brush 575 +{ +( 956 584 78 ) ( 956 572 78 ) ( 984 576 78 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 456 640 80 ) ( 456 832 80 ) ( 968 832 80 ) wood/wd_st_m7s -64 64 0 1 1 134217728 134217728 0 +( 988 584 80 ) ( 988 584 64 ) ( 1012 584 64 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 784 576 64 ) ( 744 576 64 ) ( 764 576 80 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 964 604 78 ) ( 964 604 94 ) ( 960 592 94 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +( 960 592 64 ) ( 960 580 64 ) ( 960 586 80 ) wood/wd_st_m7s -64 48 0 1 1 134217728 134217728 0 +} +// brush 576 +{ +( 956 592 78 ) ( 956 580 78 ) ( 984 584 78 ) wood/wd_st_m7s -64 64 0 1 1 0 134217728 0 +( 456 648 80 ) ( 456 840 80 ) ( 968 840 80 ) wood/wd_st_m7s -64 64 0 1 1 0 134217728 0 +( 972 588 80 ) ( 972 588 64 ) ( 996 588 64 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +( 784 584 64 ) ( 744 584 64 ) ( 764 584 80 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +( 948 608 78 ) ( 948 608 94 ) ( 944 596 94 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +( 960 600 64 ) ( 960 588 64 ) ( 960 594 80 ) wood/wd_st_m7s -64 48 0 1 1 0 134217728 0 +} +// brush 577 +{ +( 892 559 68 ) ( 919 567 68 ) ( 914 578 68 ) wood/wd_st_m7s -4 -71 23 0.999962 0.999999 0 134217728 0 +( 803 800 70 ) ( 1270 1008 70 ) ( 1348 832 70 ) wood/wd_st_m7s -4 -71 23 0.999962 0.999999 0 134217728 0 +( 885 565 54 ) ( 907 575 54 ) ( 907 575 70 ) wood/wd_st_m7s -29 38 0 0.913574 1 0 134217728 0 +( 1093 649 84 ) ( 1111 657 68 ) ( 1075 641 68 ) wood/wd_st_m7s -25 38 0 0.913574 1 0 134217728 0 +( 926 592 72 ) ( 917 601 72 ) ( 917 601 56 ) wood/wd_st_m7s -47 38 0 0.777958 1 0 134217728 0 +( 926 587 70 ) ( 928 582 54 ) ( 923 593 54 ) wood/wd_st_m7s -44 38 0 0.913544 1 0 134217728 0 +} +// brush 578 +{ +( 952 605 68 ) ( 947 595 68 ) ( 974 587 68 ) wood/wd_st_m7s -121 31 23 0.999962 0.999999 0 134217728 0 +( 518 860 70 ) ( 596 1035 70 ) ( 1064 827 70 ) wood/wd_st_m7s -121 31 23 0.999962 0.999999 0 134217728 0 +( 959 602 70 ) ( 959 602 54 ) ( 981 592 54 ) wood/wd_st_m7s -29 38 0 0.913574 1 0 134217728 0 +( 792 668 68 ) ( 755 684 68 ) ( 773 676 84 ) wood/wd_st_m7s -25 38 0 0.913574 1 0 134217728 0 +( 949 629 56 ) ( 949 629 72 ) ( 941 619 72 ) wood/wd_st_m7s -13 38 0 0.777958 1 0 134217728 0 +( 943 620 54 ) ( 938 609 54 ) ( 941 615 70 ) wood/wd_st_m7s -15 38 0 0.913544 1 0 134217728 0 +} +// brush 579 +{ +( 989 673 80 ) ( 1013 642 80 ) ( 1019 647 80 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 1019 647 82 ) ( 1013 642 82 ) ( 989 673 82 ) wood/wd_sr_va2a 6 121 223 1 1 134217728 134217728 0 +( 1019 647 80 ) ( 1019 647 96 ) ( 995 678 96 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +( 1013 642 80 ) ( 1013 642 96 ) ( 1019 647 96 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 989 673 80 ) ( 989 673 96 ) ( 1013 642 96 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +( 997 671 82 ) ( 996 666 80 ) ( 998 676 80 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +} +// brush 580 +{ +( 1024 656 96 ) ( 1024 672 100 ) ( 1028 672 100 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 1026 668 80 ) ( 1022 668 80 ) ( 1022 660 80 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 1022 656 80 ) ( 1022 656 96 ) ( 1026 656 96 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1026 668 152 ) ( 1026 668 72 ) ( 1026 660 72 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +( 1026 672 80 ) ( 1026 672 100 ) ( 1022 672 100 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1024 660 152 ) ( 1024 660 72 ) ( 1024 668 72 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +} +// brush 581 +{ +( 1024 644 100 ) ( 1024 652 92 ) ( 1028 652 92 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 1026 652 80 ) ( 1022 652 80 ) ( 1022 644 80 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 1028 646 132 ) ( 1028 646 52 ) ( 1024 646 52 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1026 652 152 ) ( 1026 652 72 ) ( 1026 644 72 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +( 1026 656 80 ) ( 1026 656 112 ) ( 1022 656 112 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1024 644 152 ) ( 1024 644 72 ) ( 1024 652 72 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +} +// brush 582 +{ +( 1024 668 100 ) ( 1024 676 92 ) ( 1028 676 92 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 1026 680 80 ) ( 1022 680 80 ) ( 1022 672 80 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 1026 672 152 ) ( 1026 672 72 ) ( 1022 672 72 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1026 680 152 ) ( 1026 680 72 ) ( 1026 672 72 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +( 1026 680 80 ) ( 1026 680 112 ) ( 1022 680 112 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1024 672 152 ) ( 1024 672 72 ) ( 1024 680 72 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +} +// brush 583 +{ +( 1028 688 108 ) ( 1028 680 100 ) ( 1024 680 100 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 1026 688 80 ) ( 1022 688 80 ) ( 1022 680 80 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 1022 680 80 ) ( 1022 680 100 ) ( 1026 680 100 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1026 688 152 ) ( 1026 688 72 ) ( 1026 680 72 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +( 1028 688 80 ) ( 1028 688 108 ) ( 1024 688 108 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1024 680 152 ) ( 1024 680 72 ) ( 1024 688 72 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +} +// brush 584 +{ +( 1009 690 80 ) ( 978 666 80 ) ( 983 660 80 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 983 660 82 ) ( 978 666 82 ) ( 1009 690 82 ) wood/wd_sr_va2a 0 -80 90 1 1 134217728 134217728 0 +( 1014 684 80 ) ( 1014 684 96 ) ( 1009 690 96 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +( 983 660 80 ) ( 983 660 96 ) ( 1014 684 96 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1009 690 80 ) ( 1009 690 96 ) ( 978 666 96 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1007 682 82 ) ( 1012 681 80 ) ( 1002 683 80 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +} +// brush 585 +{ +( 1024 688 148 ) ( 1024 680 144 ) ( 1028 680 144 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 1028 676 152 ) ( 1024 676 152 ) ( 1024 684 152 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 1024 688 168 ) ( 1024 688 148 ) ( 1028 688 148 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1026 680 96 ) ( 1026 680 176 ) ( 1026 688 176 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +( 1026 680 168 ) ( 1026 680 144 ) ( 1022 680 144 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1024 688 96 ) ( 1024 688 176 ) ( 1024 680 176 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +} +// brush 586 +{ +( 1028 704 124 ) ( 1028 712 132 ) ( 1024 712 132 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 1028 704 152 ) ( 1024 704 152 ) ( 1024 712 152 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 1024 712 152 ) ( 1024 712 132 ) ( 1028 712 132 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1026 704 80 ) ( 1026 704 160 ) ( 1026 712 160 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +( 1026 704 152 ) ( 1026 704 124 ) ( 1022 704 124 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1024 712 80 ) ( 1024 712 160 ) ( 1024 704 160 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +} +// brush 587 +{ +( 1022 724 132 ) ( 1022 716 140 ) ( 1026 716 140 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 1028 712 152 ) ( 1024 712 152 ) ( 1024 720 152 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 1028 720 80 ) ( 1028 720 160 ) ( 1024 720 160 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1026 712 80 ) ( 1026 712 160 ) ( 1026 720 160 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +( 1028 712 152 ) ( 1028 712 120 ) ( 1024 712 120 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1024 720 80 ) ( 1024 720 160 ) ( 1024 712 160 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +} +// brush 588 +{ +( 984 720 80 ) ( 984 680 80 ) ( 992 680 80 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 992 680 82 ) ( 984 680 82 ) ( 984 720 82 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 992 720 80 ) ( 992 720 96 ) ( 984 720 96 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 992 680 80 ) ( 992 680 96 ) ( 992 720 96 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +( 984 680 80 ) ( 984 680 96 ) ( 992 680 96 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 984 720 80 ) ( 984 720 96 ) ( 984 680 96 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +} +// brush 589 +{ +( 995 694 85 ) ( 993 705 85 ) ( 994 705 81 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +( 972 710 82 ) ( 973 710 78 ) ( 978 716 79 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +( 978 716 79 ) ( 994 705 81 ) ( 993 705 85 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1030 668 90 ) ( 966 715 81 ) ( 971 721 82 ) wood/wd_sr_va2a 6 -71 234 1 1 134217728 134217728 0 +( 972 710 82 ) ( 995 694 85 ) ( 995 694 81 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1034 673 89 ) ( 970 720 80 ) ( 966 714 79 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +} +// brush 590 +{ +( 1012 704 80 ) ( 1019 707 80 ) ( 1003 743 80 ) wood/wd_sr_va2a -64 -16 0 1 1 0 134217728 0 +( 1003 743 82 ) ( 1019 707 82 ) ( 1012 704 82 ) wood/wd_sr_va2a -64 -16 0 1 1 0 134217728 0 +( 996 740 96 ) ( 1012 704 96 ) ( 1012 704 80 ) wood/wd_sr_va2a 0 32 0 1 1 0 134217728 0 +( 1008 718 96 ) ( 1015 721 96 ) ( 1015 721 80 ) wood/wd_sr_va2a -64 32 0 1 1 0 134217728 0 +( 1019 707 96 ) ( 1003 743 96 ) ( 1003 743 80 ) wood/wd_sr_va2a 0 32 0 1 1 0 134217728 0 +( 996 736 80 ) ( 1006 733 80 ) ( 1001 735 82 ) wood/wd_sr_va2a -64 32 0 1 1 0 134217728 0 +} +// brush 591 +{ +( 1022 732 80 ) ( 1022 672 80 ) ( 1026 672 80 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 1028 768 88 ) ( 1028 760 92 ) ( 1024 760 92 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 1032 768 80 ) ( 1032 768 104 ) ( 1028 768 104 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1026 672 80 ) ( 1026 672 104 ) ( 1026 732 104 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +( 1022 760 80 ) ( 1022 760 92 ) ( 1026 760 92 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1024 732 80 ) ( 1024 732 104 ) ( 1024 672 104 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +} +// brush 592 +{ +( 1026 832 80 ) ( 1022 832 80 ) ( 1022 772 80 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 1024 744 88 ) ( 1028 744 88 ) ( 1028 736 84 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 1028 736 104 ) ( 1032 736 104 ) ( 1032 736 80 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1026 772 104 ) ( 1026 832 104 ) ( 1026 832 80 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +( 1026 760 92 ) ( 1022 760 92 ) ( 1022 760 80 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1024 832 104 ) ( 1024 772 104 ) ( 1024 772 80 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +} +// brush 593 +{ +( 1022 768 112 ) ( 1022 760 120 ) ( 1026 760 120 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 1028 760 152 ) ( 1024 760 152 ) ( 1024 768 152 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 134217728 0 +( 1028 768 80 ) ( 1028 768 160 ) ( 1024 768 160 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1026 760 80 ) ( 1026 760 160 ) ( 1026 768 160 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +( 1026 760 152 ) ( 1026 760 120 ) ( 1022 760 120 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 1024 768 80 ) ( 1024 768 160 ) ( 1024 760 160 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +} +// brush 594 +{ +( 1140 658 128 ) ( 1130 658 134 ) ( 1130 656 134 ) wood/wd_sr_va2c -64 -16 0 1 1 134217728 0 0 +( 1169 656 152 ) ( 1142 656 152 ) ( 1142 659 152 ) wood/wd_sr_va2c -64 -16 0 1 1 134217728 0 0 +( 1170 658 144 ) ( 1170 658 152 ) ( 1143 658 152 ) wood/wd_sr_va2c -64 32 0 1 1 134217728 0 0 +( 1152 658 152 ) ( 1152 658 120 ) ( 1152 656 120 ) wood/wd_sr_va2c 0 32 0 1 1 134217728 0 0 +( 1142 656 144 ) ( 1142 656 152 ) ( 1169 656 152 ) wood/wd_sr_va2c -64 32 0 1 1 134217728 134217728 0 +( 1130 656 170 ) ( 1130 656 134 ) ( 1130 658 134 ) wood/wd_sr_va2c 0 32 0 1 1 134217728 0 0 +} +// brush 595 +{ +( 1086 658 110 ) ( 1076 658 116 ) ( 1076 656 116 ) wood/wd_sr_va2c -64 -16 0 1 1 134217728 0 0 +( 1103 656 152 ) ( 1076 656 152 ) ( 1076 659 152 ) wood/wd_sr_va2c -64 -16 0 1 1 134217728 0 0 +( 1104 658 144 ) ( 1104 658 152 ) ( 1077 658 152 ) wood/wd_sr_va2c -64 32 0 1 1 134217728 0 0 +( 1086 658 152 ) ( 1086 658 120 ) ( 1086 656 120 ) wood/wd_sr_va2c 0 32 0 1 1 134217728 0 0 +( 1076 656 144 ) ( 1076 656 152 ) ( 1103 656 152 ) wood/wd_sr_va2c -64 32 0 1 1 134217728 134217728 0 +( 1076 656 152 ) ( 1076 656 116 ) ( 1076 658 116 ) wood/wd_sr_va2c 0 32 0 1 1 134217728 0 0 +} +// brush 596 +{ +( 1066 656 112 ) ( 1076 656 120 ) ( 1076 658 120 ) wood/wd_sr_va2c -64 -16 0 1 1 134217728 0 0 +( 1093 656 152 ) ( 1066 656 152 ) ( 1066 659 152 ) wood/wd_sr_va2c -64 -16 0 1 1 134217728 0 0 +( 1094 658 144 ) ( 1094 658 152 ) ( 1067 658 152 ) wood/wd_sr_va2c -64 32 0 1 1 134217728 0 0 +( 1076 658 152 ) ( 1076 658 120 ) ( 1076 656 120 ) wood/wd_sr_va2c 0 32 0 1 1 134217728 0 0 +( 1066 656 144 ) ( 1066 656 152 ) ( 1093 656 152 ) wood/wd_sr_va2c -64 32 0 1 1 134217728 134217728 0 +( 1066 659 144 ) ( 1066 659 152 ) ( 1066 656 152 ) wood/wd_sr_va2c 0 32 0 1 1 134217728 0 0 +} +// brush 597 +{ +( 1105 660 92 ) ( 1105 656 92 ) ( 1089 656 88 ) wood/wd_sr_va2c -64 -16 0 1 1 134217728 0 0 +( 1093 654 80 ) ( 1101 654 80 ) ( 1101 658 80 ) wood/wd_sr_va2c -64 -16 0 1 1 134217728 0 0 +( 1089 658 96 ) ( 1089 654 96 ) ( 1089 654 80 ) wood/wd_sr_va2c 0 32 0 1 1 134217728 0 0 +( 1093 658 72 ) ( 1101 658 72 ) ( 1101 658 152 ) wood/wd_sr_va2c -64 32 0 1 1 134217728 0 0 +( 1105 654 100 ) ( 1105 658 100 ) ( 1105 658 80 ) wood/wd_sr_va2c 0 32 0 1 1 134217728 0 0 +( 1101 656 72 ) ( 1093 656 72 ) ( 1093 656 152 ) wood/wd_sr_va2c -64 32 0 1 1 134217728 134217728 0 +} +// brush 598 +{ +( 1107 660 108 ) ( 1115 660 100 ) ( 1115 656 100 ) wood/wd_sr_va2c -64 -16 0 1 1 134217728 0 0 +( 1107 658 80 ) ( 1107 654 80 ) ( 1115 654 80 ) wood/wd_sr_va2c -64 -16 0 1 1 134217728 0 0 +( 1115 654 80 ) ( 1115 654 100 ) ( 1115 658 100 ) wood/wd_sr_va2c 0 32 0 1 1 134217728 0 0 +( 1107 658 152 ) ( 1107 658 72 ) ( 1115 658 72 ) wood/wd_sr_va2c -64 32 0 1 1 134217728 0 0 +( 1107 660 80 ) ( 1107 660 108 ) ( 1107 656 108 ) wood/wd_sr_va2c 0 32 0 1 1 134217728 0 0 +( 1115 656 152 ) ( 1115 656 72 ) ( 1107 656 72 ) wood/wd_sr_va2c -64 32 0 1 1 134217728 134217728 0 +} +// brush 599 +{ +( 1127 656 100 ) ( 1119 656 92 ) ( 1119 660 92 ) wood/wd_sr_va2c -64 -16 0 1 1 134217728 0 0 +( 1115 658 80 ) ( 1115 654 80 ) ( 1123 654 80 ) wood/wd_sr_va2c -64 -16 0 1 1 134217728 0 0 +( 1123 658 152 ) ( 1123 658 72 ) ( 1123 654 72 ) wood/wd_sr_va2c 0 32 0 1 1 134217728 0 0 +( 1115 658 152 ) ( 1115 658 72 ) ( 1123 658 72 ) wood/wd_sr_va2c -64 32 0 1 1 134217728 0 0 +( 1115 658 80 ) ( 1115 658 112 ) ( 1115 654 112 ) wood/wd_sr_va2c 0 32 0 1 1 134217728 0 0 +( 1123 656 152 ) ( 1123 656 72 ) ( 1115 656 72 ) wood/wd_sr_va2c -64 32 0 1 1 134217728 0 0 +} +// brush 600 +{ +( 1139 656 96 ) ( 1123 656 100 ) ( 1123 660 100 ) wood/wd_sr_va2c -64 -16 0 1 1 134217728 0 0 +( 1127 658 80 ) ( 1127 654 80 ) ( 1135 654 80 ) wood/wd_sr_va2c -64 -16 0 1 1 134217728 0 0 +( 1139 654 80 ) ( 1139 654 96 ) ( 1139 658 96 ) wood/wd_sr_va2c 0 32 0 1 1 134217728 0 0 +( 1127 658 152 ) ( 1127 658 72 ) ( 1135 658 72 ) wood/wd_sr_va2c -64 32 0 1 1 134217728 0 0 +( 1123 658 80 ) ( 1123 658 100 ) ( 1123 654 100 ) wood/wd_sr_va2c 0 32 0 1 1 134217728 0 0 +( 1135 656 152 ) ( 1135 656 72 ) ( 1127 656 72 ) wood/wd_sr_va2c -64 32 0 1 1 134217728 134217728 0 +} +// brush 601 +{ +( 1151 656 100 ) ( 1143 656 92 ) ( 1143 660 92 ) wood/wd_sr_va2c -64 -16 0 1 1 134217728 0 0 +( 1143 658 80 ) ( 1143 654 80 ) ( 1151 654 80 ) wood/wd_sr_va2c -64 -16 0 1 1 134217728 0 0 +( 1151 660 132 ) ( 1151 660 52 ) ( 1151 656 52 ) wood/wd_sr_va2c 0 32 0 1 1 134217728 0 0 +( 1143 658 152 ) ( 1143 658 72 ) ( 1151 658 72 ) wood/wd_sr_va2c -64 32 0 1 1 134217728 0 0 +( 1139 658 80 ) ( 1139 658 112 ) ( 1139 654 112 ) wood/wd_sr_va2c 0 32 0 1 1 134217728 0 0 +( 1151 656 152 ) ( 1151 656 72 ) ( 1143 656 72 ) wood/wd_sr_va2c -64 32 0 1 1 134217728 134217728 0 +} +// brush 602 +{ +( 738 1008 86 ) ( 730 1008 92 ) ( 730 1012 92 ) wood/wd_sr_va2a -64 -16 0 1 1 0 0 0 +( 738 1172 284 ) ( 738 1172 188 ) ( 738 1108 188 ) wood/wd_sr_va2a 0 32 0 1 1 0 0 0 +( 508 1009 116 ) ( 512 1009 128 ) ( 504 1009 128 ) wood/wd_sr_va2a -64 32 0 1 1 0 0 0 +( 776 1012 80 ) ( 774 996 80 ) ( 778 996 80 ) wood/wd_sr_va2a -64 -16 0 1 1 0 0 0 +( 730 1012 80 ) ( 730 1012 100 ) ( 730 1008 100 ) wood/wd_sr_va2a 0 32 0 1 1 0 0 0 +( 773 1008 80 ) ( 770 1008 152 ) ( 776 1008 152 ) wood/wd_sr_va2a -64 32 0 1 1 0 0 0 +} +// brush 603 +{ +( 756 974 94 ) ( 756 960 84 ) ( 752 960 84 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 0 0 +( 753 977 234 ) ( 753 977 138 ) ( 753 913 138 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 0 0 +( 724 966 242 ) ( 724 966 146 ) ( 788 966 146 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 0 0 +( 758 896 80 ) ( 760 944 80 ) ( 756 944 80 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 0 0 +( 752 960 70 ) ( 752 960 84 ) ( 756 960 84 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 0 0 +( 752 964 70 ) ( 752 968 142 ) ( 752 960 142 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 0 0 +} +// brush 604 +{ +( 752 966 112 ) ( 752 960 108 ) ( 756 960 108 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 0 0 +( 752 976 -12 ) ( 752 976 84 ) ( 752 912 84 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +( 781 966 -20 ) ( 781 966 76 ) ( 717 966 76 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 0 0 +( 750 896 152 ) ( 748 944 152 ) ( 752 944 152 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 0 0 +( 756 960 152 ) ( 756 960 108 ) ( 752 960 108 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 0 0 +( 753 964 152 ) ( 753 968 80 ) ( 753 960 80 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 0 0 +} +// brush 605 +{ +( 752 980 128 ) ( 752 966 138 ) ( 756 966 138 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 0 0 +( 752 982 -12 ) ( 752 982 84 ) ( 752 918 84 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +( 781 980 -20 ) ( 781 980 76 ) ( 717 980 76 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 0 0 +( 750 902 152 ) ( 748 950 152 ) ( 752 950 152 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 0 0 +( 753 966 152 ) ( 753 966 138 ) ( 749 966 138 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 0 0 +( 753 970 152 ) ( 753 974 80 ) ( 753 966 80 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 0 0 +} +// brush 606 +{ +( 752 994 96 ) ( 752 980 106 ) ( 756 980 106 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 0 0 +( 752 996 -2 ) ( 752 996 94 ) ( 752 932 94 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +( 781 988 0 ) ( 781 988 96 ) ( 717 988 96 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 0 0 +( 750 916 152 ) ( 748 964 152 ) ( 752 964 152 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 0 0 +( 753 980 156 ) ( 753 980 142 ) ( 749 980 142 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 0 0 +( 753 984 154 ) ( 753 988 82 ) ( 753 980 82 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 0 0 +} +// brush 607 +{ +( 752 994 122 ) ( 752 988 118 ) ( 756 988 118 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 0 0 +( 752 1004 -12 ) ( 752 1004 84 ) ( 752 940 84 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 0 0 +( 781 996 -14 ) ( 781 996 82 ) ( 717 996 82 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 0 0 +( 750 924 152 ) ( 748 972 152 ) ( 752 972 152 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 0 0 +( 753 988 152 ) ( 753 988 108 ) ( 749 988 108 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 0 0 +( 753 992 152 ) ( 753 996 80 ) ( 753 988 80 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 0 0 +} +// brush 608 +{ +( 752 1004 134 ) ( 752 996 140 ) ( 756 996 140 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 0 0 +( 752 996 140 ) ( 752 1004 132 ) ( 752 1004 150 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 134217728 0 +( 756 1008 152 ) ( 752 1008 150 ) ( 752 1008 132 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 0 0 +( 750 932 152 ) ( 748 980 152 ) ( 752 980 152 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 0 0 +( 753 996 152 ) ( 753 996 140 ) ( 749 996 140 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 0 0 +( 753 1000 152 ) ( 753 1004 80 ) ( 753 996 80 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 0 0 +} +// brush 609 +{ +( 754 1009 130 ) ( 746 1009 140 ) ( 746 1005 140 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 0 0 +( 754 848 -52 ) ( 754 848 44 ) ( 754 912 44 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 0 0 +( 524 1008 112 ) ( 528 1008 100 ) ( 520 1008 100 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 0 0 +( 792 1008 152 ) ( 790 1024 152 ) ( 794 1024 152 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 0 0 +( 746 1008 152 ) ( 746 1008 140 ) ( 746 1012 140 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 0 0 +( 789 1009 152 ) ( 786 1009 80 ) ( 792 1009 80 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 0 0 +} +// brush 610 +{ +( 746 1012 131 ) ( 738 1012 125 ) ( 738 1008 125 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 0 0 +( 746 848 -52 ) ( 746 848 44 ) ( 746 912 44 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 0 0 +( 516 1008 116 ) ( 520 1008 104 ) ( 512 1008 104 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 0 0 +( 784 1008 152 ) ( 782 1024 152 ) ( 786 1024 152 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 0 0 +( 738 1004 152 ) ( 738 1004 132 ) ( 738 1008 132 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 0 0 +( 781 1009 152 ) ( 778 1009 80 ) ( 784 1009 80 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 0 0 +} +// brush 611 +{ +( 730 1011 138 ) ( 722 1011 132 ) ( 722 1007 132 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 0 0 +( 730 847 -52 ) ( 730 847 44 ) ( 730 911 44 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 0 0 +( 500 1008 116 ) ( 504 1008 104 ) ( 496 1008 104 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 768 1007 152 ) ( 766 1023 152 ) ( 770 1023 152 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 0 0 +( 712 1003 153 ) ( 712 1003 133 ) ( 712 1007 133 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 0 0 +( 756 1009 152 ) ( 753 1009 80 ) ( 759 1009 80 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 0 0 +} +// brush 612 +{ +( 738 1009 129 ) ( 730 1009 134 ) ( 730 1008 134 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 0 0 +( 738 847 -52 ) ( 738 847 44 ) ( 738 911 44 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 0 0 +( 508 1008 116 ) ( 512 1008 104 ) ( 504 1008 104 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 0 0 +( 776 1007 152 ) ( 774 1023 152 ) ( 778 1023 152 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 0 0 +( 730 1008 152 ) ( 730 1008 134 ) ( 730 1009 134 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 0 0 +( 764 1009 152 ) ( 761 1009 80 ) ( 767 1009 80 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 0 0 +} +// brush 613 +{ +( 704 1008 110 ) ( 712 1008 116 ) ( 712 1012 116 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 0 0 +( 712 1009 152 ) ( 712 1009 116 ) ( 712 1005 116 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 0 0 +( 482 1008 116 ) ( 486 1008 104 ) ( 478 1008 104 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 134217728 0 +( 750 1008 152 ) ( 748 1024 152 ) ( 752 1024 152 ) wood/wd_sr_va2a -64 -16 0 1 1 134217728 0 0 +( 704 1007 152 ) ( 704 1005 80 ) ( 704 1009 80 ) wood/wd_sr_va2a 0 32 0 1 1 134217728 0 0 +( 747 1009 152 ) ( 744 1009 80 ) ( 750 1009 80 ) wood/wd_sr_va2a -64 32 0 1 1 134217728 0 0 +} +// brush 614 +{ +( 336 928 104 ) ( 336 912 112 ) ( 352 912 112 ) wood/wd_sr_va2a -64 0 0 1 1 0 0 0 +( 352 736 -52 ) ( 352 736 44 ) ( 352 800 44 ) wood/wd_sr_va2a 0 48 0 1 1 0 134217728 0 +( 348 768 152 ) ( 344 912 152 ) ( 352 912 152 ) wood/wd_sr_va2a -64 0 0 1 1 0 0 0 +( 360 928 156 ) ( 344 928 160 ) ( 344 928 152 ) wood/wd_sr_va2a -64 48 0 1 1 0 0 0 +( 361 912 152 ) ( 361 912 112 ) ( 345 912 112 ) wood/wd_sr_va2a -64 48 0 1 1 0 0 0 +( 351 856 80 ) ( 351 944 152 ) ( 351 856 152 ) wood/wd_sr_va2a 0 48 0 1 1 0 0 0 +} +// brush 615 +{ +( 352 896 112 ) ( 352 912 120 ) ( 336 912 120 ) wood/wd_sr_va2a -64 0 0 1 1 0 0 0 +( 352 720 -52 ) ( 352 720 44 ) ( 352 784 44 ) wood/wd_sr_va2a 0 48 0 1 1 0 134217728 0 +( 348 752 152 ) ( 344 896 152 ) ( 352 896 152 ) wood/wd_sr_va2a -64 0 0 1 1 0 0 0 +( 345 912 152 ) ( 345 912 120 ) ( 361 912 120 ) wood/wd_sr_va2a -64 48 0 1 1 0 0 0 +( 361 896 152 ) ( 361 896 112 ) ( 345 896 112 ) wood/wd_sr_va2a -64 48 0 1 1 0 0 0 +( 351 856 80 ) ( 351 944 152 ) ( 351 856 152 ) wood/wd_sr_va2a 0 48 0 1 1 0 0 0 +} +// brush 616 +{ +( 352 880 128 ) ( 352 896 122 ) ( 350 896 122 ) wood/wd_sr_va2a -64 0 0 1 1 0 0 0 +( 352 888 192 ) ( 352 888 160 ) ( 352 880 152 ) wood/wd_sr_va2a 0 48 0 1 1 0 0 0 +( 348 728 152 ) ( 344 872 152 ) ( 352 872 152 ) wood/wd_sr_va2a -64 0 0 1 1 0 0 0 +( 351 896 152 ) ( 351 896 122 ) ( 353 896 122 ) wood/wd_sr_va2a -64 48 0 1 1 0 0 0 +( 360 880 152 ) ( 360 880 88 ) ( 344 880 88 ) wood/wd_sr_va2a -64 48 0 1 1 0 0 0 +( 351 856 80 ) ( 351 944 152 ) ( 351 856 152 ) wood/wd_sr_va2a 0 48 0 1 1 0 0 0 +} +// brush 617 +{ +( 337 862 126 ) ( 353 862 126 ) ( 353 870 134 ) wood/wd_sr_va2a -64 0 0 1 1 0 0 0 +( 352 880 152 ) ( 352 880 120 ) ( 352 872 112 ) wood/wd_sr_va2a 0 48 0 1 1 0 0 0 +( 348 720 152 ) ( 344 864 152 ) ( 352 864 152 ) wood/wd_sr_va2a -64 0 0 1 1 0 0 0 +( 344 880 152 ) ( 344 880 120 ) ( 360 880 120 ) wood/wd_sr_va2a -64 48 0 1 1 0 0 0 +( 361 872 164 ) ( 345 872 160 ) ( 345 872 168 ) wood/wd_sr_va2a -64 48 0 1 1 0 0 0 +( 351 856 80 ) ( 351 944 152 ) ( 351 856 152 ) wood/wd_sr_va2a 0 48 0 1 1 0 0 0 +} +// brush 618 +{ +( 336 864 96 ) ( 352 864 96 ) ( 352 872 104 ) wood/wd_sr_va2a -64 0 0 1 1 0 0 0 +( 352 872 152 ) ( 352 872 120 ) ( 352 864 112 ) wood/wd_sr_va2a 0 48 0 1 1 0 0 0 +( 348 712 152 ) ( 344 856 152 ) ( 352 856 152 ) wood/wd_sr_va2a -64 0 0 1 1 0 0 0 +( 345 872 152 ) ( 345 872 120 ) ( 361 872 120 ) wood/wd_sr_va2a -64 48 0 1 1 0 0 0 +( 361 864 164 ) ( 345 864 160 ) ( 345 864 168 ) wood/wd_sr_va2a -64 48 0 1 1 0 0 0 +( 351 856 80 ) ( 351 944 152 ) ( 351 856 152 ) wood/wd_sr_va2a 0 48 0 1 1 0 0 0 +} +// brush 619 +{ +( 580 342 144 ) ( 576 342 144 ) ( 576 342 113 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 574 344 144 ) ( 574 340 144 ) ( 574 340 113 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 572 338 144 ) ( 576 338 144 ) ( 576 338 113 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 578 338 144 ) ( 578 342 144 ) ( 578 342 113 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 578 340 112 ) ( 578 344 112 ) ( 574 344 112 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 134217728 8388608 0 +( 574 344 144 ) ( 578 344 144 ) ( 578 340 144 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 134217728 8388608 0 +} +// brush 620 +{ +( 642 342 113 ) ( 650 342 144 ) ( 646 342 144 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 638 342 112 ) ( 646 342 143 ) ( 646 338 143 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 638 338 113 ) ( 646 338 144 ) ( 650 338 144 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 642 338 113 ) ( 650 338 144 ) ( 650 342 144 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 642 340 112 ) ( 642 344 112 ) ( 638 344 112 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 134217728 8388608 0 +( 647 344 146 ) ( 651 344 146 ) ( 651 340 146 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 134217728 8388608 0 +} +// brush 621 +{ +( 676 654 144 ) ( 672 654 144 ) ( 672 654 113 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 0 8388608 0 +( 670 656 144 ) ( 670 652 144 ) ( 670 652 113 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 0 8388608 0 +( 668 650 144 ) ( 672 650 144 ) ( 672 650 113 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 0 8388608 0 +( 674 650 144 ) ( 674 654 144 ) ( 674 654 113 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 0 8388608 0 +( 674 652 112 ) ( 674 656 112 ) ( 670 656 112 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 0 8388608 0 +( 670 656 144 ) ( 674 656 144 ) ( 674 652 144 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 0 8388608 0 +} +// brush 622 +{ +( 612 654 144 ) ( 608 654 144 ) ( 608 654 113 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 0 8388608 0 +( 606 656 145 ) ( 606 652 145 ) ( 606 652 114 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 0 8388608 0 +( 604 650 144 ) ( 608 650 144 ) ( 608 650 113 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 0 8388608 0 +( 610 650 144 ) ( 610 654 144 ) ( 610 654 113 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 0 8388608 0 +( 610 652 112 ) ( 610 656 112 ) ( 606 656 112 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 0 8388608 0 +( 606 656 144 ) ( 610 656 144 ) ( 610 652 144 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 0 8388608 0 +} +// brush 623 +{ +( 312 162 112 ) ( 308 162 112 ) ( 308 162 81 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 306 164 112 ) ( 306 160 112 ) ( 306 160 81 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 304 158 113 ) ( 308 158 113 ) ( 308 158 82 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 310 158 112 ) ( 310 162 112 ) ( 310 162 81 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 310 160 81 ) ( 310 164 81 ) ( 306 164 81 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 134217728 8388608 0 +( 306 164 112 ) ( 310 164 112 ) ( 310 160 112 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 134217728 8388608 0 +} +// brush 624 +{ +( 326 166 81 ) ( 314 166 81 ) ( 314 166 80 ) metals/mt_mf_v1c -60 32 0 0.100000 0.100000 0 8388608 0 +( 302 166 81 ) ( 302 154 81 ) ( 302 154 80 ) metals/mt_mf_v1c -60 32 0 0.100000 0.100000 0 8388608 0 +( 302 154 81 ) ( 314 154 81 ) ( 314 154 80 ) metals/mt_mf_v1c -60 32 0 0.100000 0.100000 0 8388608 0 +( 314 142 81 ) ( 314 154 81 ) ( 314 154 80 ) metals/mt_mf_v1c -60 32 0 0.100000 0.100000 0 8388608 0 +( 326 142 80 ) ( 326 166 80 ) ( 302 166 80 ) metals/mt_mf_v1c -60 60 0 0.100000 0.100000 0 8388608 0 +( 302 166 81 ) ( 326 166 81 ) ( 326 142 81 ) metals/mt_mf_v1c -60 60 0 0.100000 0.100000 0 8388608 0 +} +// brush 625 +{ +( 198 18 154 ) ( 184 18 146 ) ( 184 50 146 ) WOOD/WD_ST_M1B -54 -64 90 0.250000 0.250000 134217728 0 0 +( 186 18 154 ) ( 178 18 140 ) ( 178 50 140 ) WOOD/WD_ST_M1B -15 -56 90 0.250000 0.250000 134217728 0 0 +( 176 18 148 ) ( 176 18 132 ) ( 176 50 132 ) WOOD/WD_ST_M1B -15 -56 90 0.250000 0.250000 134217728 0 0 +( 170 18 138 ) ( 178 18 124 ) ( 178 50 124 ) WOOD/WD_ST_M1B -15 -56 90 0.250000 0.250000 134217728 0 0 +( 170 18 126 ) ( 184 18 118 ) ( 184 50 118 ) WOOD/WD_ST_M1B -54 -64 90 0.250000 0.250000 134217728 0 0 +( 176 18 116 ) ( 192 18 116 ) ( 192 50 116 ) WOOD/WD_ST_M1B -54 -64 90 0.250000 0.250000 134217728 0 0 +( 186 18 110 ) ( 200 18 118 ) ( 200 50 118 ) WOOD/WD_ST_M1B -54 -64 90 0.250000 0.250000 134217728 0 0 +( 198 18 110 ) ( 206 18 124 ) ( 206 50 124 ) WOOD/WD_ST_M1B -15 -56 90 0.250000 0.250000 134217728 0 0 +( 208 18 116 ) ( 208 18 132 ) ( 208 50 132 ) WOOD/WD_ST_M1B -15 -56 90 0.250000 0.250000 134217728 0 0 +( 214 18 126 ) ( 206 18 140 ) ( 206 50 140 ) WOOD/WD_ST_M1B -15 -56 90 0.250000 0.250000 134217728 0 0 +( 214 18 138 ) ( 200 18 146 ) ( 200 50 146 ) WOOD/WD_ST_M1B -54 -64 90 0.250000 0.250000 134217728 0 0 +( 208 18 148 ) ( 192 18 148 ) ( 192 50 148 ) WOOD/WD_ST_M1B -54 -64 90 0.250000 0.250000 134217728 0 0 +( 308 19 148 ) ( 276 19 148 ) ( 276 19 116 ) props2/board_v -32 40 0 -0.500000 0.500000 134217728 2097152 0 +( 176 18 116 ) ( 176 18 148 ) ( 208 18 148 ) WOOD/WD_ST_M1B -15 -64 90 0.250000 0.250000 134217728 0 0 +} +// brush 626 +{ +( 74 18 104 ) ( 74 16 104 ) ( 214 16 104 ) wood/wd_st_m3s 0 0 0 0.250000 0.250000 134217728 0 0 +( 206 16 160 ) ( 66 16 160 ) ( 66 18 160 ) wood/wd_st_m3s 0 0 0 0.250000 0.250000 134217728 0 0 +( 286 18 128 ) ( 286 18 160 ) ( 146 18 160 ) wood/wd_st_m3s 0 64 0 0.250000 0.250000 134217728 134217728 0 +( 224 16 132 ) ( 224 16 164 ) ( 224 18 164 ) wood/wd_st_m3s 0 64 0 0.250000 0.250000 134217728 0 0 +( -30 16 128 ) ( -30 16 160 ) ( 110 16 160 ) wood/wd_st_m3s 0 64 0 0.250000 0.250000 134217728 0 0 +( 160 18 128 ) ( 160 18 160 ) ( 160 16 160 ) wood/wd_st_m3s 0 64 0 0.250000 0.250000 134217728 0 0 +} +// brush 627 +{ +( 118 18 154 ) ( 104 18 146 ) ( 104 50 146 ) WOOD/WD_ST_M1B -55 0 90 0.250000 0.250000 134217728 0 0 +( 106 18 154 ) ( 98 18 140 ) ( 98 50 140 ) WOOD/WD_ST_M1B -15 -56 90 0.250000 0.250000 134217728 0 0 +( 96 18 148 ) ( 96 18 132 ) ( 96 50 132 ) WOOD/WD_ST_M1B -15 -56 90 0.250000 0.250000 134217728 0 0 +( 90 18 138 ) ( 98 18 124 ) ( 98 50 124 ) WOOD/WD_ST_M1B -15 -56 90 0.250000 0.250000 134217728 0 0 +( 90 18 126 ) ( 104 18 118 ) ( 104 50 118 ) WOOD/WD_ST_M1B -55 0 90 0.250000 0.250000 134217728 0 0 +( 96 18 116 ) ( 112 18 116 ) ( 112 50 116 ) WOOD/WD_ST_M1B -55 0 90 0.250000 0.250000 134217728 0 0 +( 106 18 110 ) ( 120 18 118 ) ( 120 50 118 ) WOOD/WD_ST_M1B -55 0 90 0.250000 0.250000 134217728 0 0 +( 118 18 110 ) ( 126 18 124 ) ( 126 50 124 ) WOOD/WD_ST_M1B -15 -56 90 0.250000 0.250000 134217728 0 0 +( 128 18 116 ) ( 128 18 132 ) ( 128 50 132 ) WOOD/WD_ST_M1B -15 -56 90 0.250000 0.250000 134217728 0 0 +( 134 18 126 ) ( 126 18 140 ) ( 126 50 140 ) WOOD/WD_ST_M1B -15 -56 90 0.250000 0.250000 134217728 0 0 +( 134 18 138 ) ( 120 18 146 ) ( 120 50 146 ) WOOD/WD_ST_M1B -55 0 90 0.250000 0.250000 134217728 0 0 +( 128 18 148 ) ( 112 18 148 ) ( 112 50 148 ) WOOD/WD_ST_M1B -55 0 90 0.250000 0.250000 134217728 0 0 +( 128 19 148 ) ( 96 19 148 ) ( 96 19 116 ) props2/board_v 0 40 0 -0.500000 0.500000 134217728 2097152 0 +( 96 18 116 ) ( 96 18 148 ) ( 128 18 148 ) WOOD/WD_ST_M1B -15 0 90 0.250000 0.250000 134217728 0 0 +} +// brush 628 +{ +( -6 18 104 ) ( -6 16 104 ) ( 134 16 104 ) wood/wd_st_m3s -64 0 0 0.250000 0.250000 134217728 0 0 +( 126 16 160 ) ( -14 16 160 ) ( -14 18 160 ) wood/wd_st_m3s -64 0 0 0.250000 0.250000 134217728 0 0 +( 198 18 128 ) ( 198 18 160 ) ( 58 18 160 ) wood/wd_st_m3s -64 64 0 0.250000 0.250000 134217728 134217728 0 +( 144 16 132 ) ( 144 16 164 ) ( 144 18 164 ) wood/wd_st_m3s 0 64 0 0.250000 0.250000 134217728 0 0 +( -102 16 128 ) ( -102 16 160 ) ( 38 16 160 ) wood/wd_st_m3s -64 64 0 0.250000 0.250000 134217728 0 0 +( 80 18 128 ) ( 80 18 160 ) ( 80 16 160 ) wood/wd_st_m3s 0 64 0 0.250000 0.250000 134217728 0 0 +} +// brush 629 +{ +( 383 360 176 ) ( 271 360 176 ) ( 271 328 176 ) metals/mt_mf_v1c 47 10 -90 0.100006 0.100037 134217728 8388608 0 +( 271 328 240 ) ( 271 360 240 ) ( 383 360 240 ) metals/mt_mf_v1c 47 10 -90 0.100006 0.100037 134217728 8388608 0 +( 273 328 176 ) ( 273 328 208 ) ( 273 360 208 ) props2/picture_01 -16 -32 0 0.500000 0.500000 134217728 0 0 +( 271 328 176 ) ( 271 328 208 ) ( 383 328 208 ) metals/mt_mf_v1c -8 40 0 0.100037 0.100006 134217728 8388608 0 +( 271 360 176 ) ( 271 360 208 ) ( 271 328 208 ) metals/mt_mf_v1c 47 40 -180 0.100006 -0.100006 134217728 8388608 0 +( 383 392 176 ) ( 383 392 208 ) ( 271 392 208 ) metals/mt_mf_v1c -8 40 0 0.100037 0.100006 134217728 8388608 0 +} +// brush 630 +{ +( 294 767 133 ) ( 290 767 133 ) ( 290 751 133 ) wood/wd_sr_m3b 0 0 0 0.100000 0.100000 134217728 0 0 +( 290 751 184 ) ( 290 767 184 ) ( 294 767 184 ) wood/wd_sr_m3b 0 0 0 0.100000 0.100000 134217728 0 0 +( 292 766 197 ) ( 296 766 197 ) ( 296 766 85 ) wood/wd_sr_m3b 0 96 0 0.100000 0.100000 134217728 0 0 +( 292 751 197 ) ( 292 767 197 ) ( 292 767 85 ) wood/wd_sr_m3b 0 96 0 0.100000 0.100000 134217728 0 0 +( 292 768 197 ) ( 288 768 197 ) ( 288 768 85 ) wood/wd_sr_m3b 0 96 0 0.100000 0.100000 134217728 0 0 +( 290 767 197 ) ( 290 751 197 ) ( 290 751 85 ) wood/wd_sr_m3b 0 96 0 0.100000 0.100000 134217728 0 0 +} +// brush 631 +{ +( 296 769 182 ) ( 292 769 182 ) ( 292 753 182 ) wood/wd_sr_m3b 0 0 0 0.100000 0.100000 134217728 0 0 +( 292 751 184 ) ( 292 767 184 ) ( 296 767 184 ) wood/wd_sr_m3b 0 0 0 0.100000 0.100000 134217728 0 0 +( 294 766 246 ) ( 298 766 246 ) ( 298 766 134 ) wood/wd_sr_m3b -96 0 90 0.100000 0.100000 134217728 0 0 +( 324 751 246 ) ( 324 767 246 ) ( 324 767 134 ) wood/wd_sr_m3b 0 96 0 0.100000 0.100000 134217728 0 0 +( 294 768 246 ) ( 290 768 246 ) ( 290 768 134 ) wood/wd_sr_m3b 0 96 0 0.100000 0.100000 134217728 0 0 +( 292 767 246 ) ( 292 751 246 ) ( 292 751 134 ) wood/wd_sr_m3b 0 96 0 0.100000 0.100000 134217728 0 0 +} +// brush 632 +{ +( 328 767 133 ) ( 324 767 133 ) ( 324 751 133 ) wood/wd_sr_m3b 0 0 0 0.100000 0.100000 134217728 0 0 +( 324 751 184 ) ( 324 767 184 ) ( 328 767 184 ) wood/wd_sr_m3b 0 0 0 0.100000 0.100000 134217728 0 0 +( 326 766 197 ) ( 330 766 197 ) ( 330 766 85 ) wood/wd_sr_m3b 0 96 0 0.100000 0.100000 134217728 0 0 +( 326 751 197 ) ( 326 767 197 ) ( 326 767 85 ) wood/wd_sr_m3b 0 96 0 0.100000 0.100000 134217728 0 0 +( 326 768 197 ) ( 322 768 197 ) ( 322 768 85 ) wood/wd_sr_m3b 0 96 0 0.100000 0.100000 134217728 0 0 +( 324 767 184 ) ( 324 751 184 ) ( 324 751 72 ) wood/wd_sr_m3b 0 96 0 0.100000 0.100000 134217728 0 0 +} +// brush 633 +{ +( 296 767 133 ) ( 292 767 133 ) ( 292 751 133 ) wood/wd_sr_m3b 0 0 0 0.100000 0.100000 134217728 0 0 +( 292 753 135 ) ( 292 769 135 ) ( 296 769 135 ) wood/wd_sr_m3b 0 0 0 0.100000 0.100000 134217728 0 0 +( 294 766 197 ) ( 298 766 197 ) ( 298 766 85 ) wood/wd_sr_m3b -96 0 90 0.100000 0.100000 134217728 0 0 +( 324 751 197 ) ( 324 767 197 ) ( 324 767 85 ) wood/wd_sr_m3b 0 96 0 0.100000 0.100000 134217728 0 0 +( 294 768 197 ) ( 290 768 197 ) ( 290 768 85 ) wood/wd_sr_m3b 0 96 0 0.100000 0.100000 134217728 0 0 +( 292 767 197 ) ( 292 751 197 ) ( 292 751 85 ) wood/wd_sr_m3b 0 96 0 0.100000 0.100000 134217728 0 0 +} +// brush 634 +{ +( 732 432 160 ) ( 732 432 164 ) ( 732 600 164 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 728 400 156 ) ( 728 400 160 ) ( 732 400 160 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 728 600 160 ) ( 728 600 164 ) ( 728 432 164 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 728 596 164 ) ( 728 428 164 ) ( 732 428 164 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 134217728 8388608 0 +( 736 428 224 ) ( 732 428 224 ) ( 732 596 224 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 134217728 8388608 0 +( 728 404 148 ) ( 732 404 152 ) ( 728 404 152 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +} +// brush 635 +{ +( 736 432 228 ) ( 732 432 228 ) ( 732 600 228 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 134217728 8388608 0 +( 732 600 160 ) ( 732 600 164 ) ( 728 600 164 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 732 432 160 ) ( 732 432 164 ) ( 732 600 164 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 728 400 156 ) ( 728 400 160 ) ( 732 400 160 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 728 600 160 ) ( 728 600 164 ) ( 728 432 164 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 736 428 224 ) ( 732 596 224 ) ( 732 428 224 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 134217728 8388608 0 +} +// brush 636 +{ +( 732 470 160 ) ( 732 470 164 ) ( 732 638 164 ) metals/mt_mf_v1c 3 32 0 0.100000 0.100000 134217728 8388608 0 +( 728 638 160 ) ( 728 638 164 ) ( 728 470 164 ) metals/mt_mf_v1c 3 32 0 0.100000 0.100000 134217728 8388608 0 +( 728 634 164 ) ( 728 466 164 ) ( 732 466 164 ) metals/mt_mf_v1c 0 -3 0 0.100000 0.100000 134217728 8388608 0 +( 736 466 224 ) ( 732 466 224 ) ( 732 634 224 ) metals/mt_mf_v1c 0 -3 0 0.100000 0.100000 134217728 8388608 0 +( 728 498 148 ) ( 732 498 152 ) ( 728 498 152 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 732 494 156 ) ( 728 494 160 ) ( 732 494 160 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +} +// brush 637 +{ +( 728 600 160 ) ( 728 432 160 ) ( 732 432 160 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 134217728 8388608 0 +( 732 600 160 ) ( 732 600 164 ) ( 728 600 164 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 732 432 160 ) ( 732 432 164 ) ( 732 600 164 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 728 400 156 ) ( 728 400 160 ) ( 732 400 160 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 728 600 160 ) ( 728 600 164 ) ( 728 432 164 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 728 596 164 ) ( 732 428 164 ) ( 728 428 164 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 134217728 8388608 0 +} +// brush 638 +{ +( 732 600 160 ) ( 732 600 164 ) ( 728 600 164 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 732 432 160 ) ( 732 432 164 ) ( 732 600 164 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 728 600 160 ) ( 728 600 164 ) ( 728 432 164 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +( 728 596 164 ) ( 728 428 164 ) ( 732 428 164 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 134217728 8388608 0 +( 736 428 224 ) ( 732 428 224 ) ( 732 596 224 ) metals/mt_mf_v1c 0 0 0 0.100000 0.100000 134217728 8388608 0 +( 732 596 156 ) ( 728 596 160 ) ( 732 596 160 ) metals/mt_mf_v1c 0 32 0 0.100000 0.100000 134217728 8388608 0 +} +// brush 639 +{ +( 574 481 172 ) ( 574 477 172 ) ( 582 477 172 ) metals/mt_mf_v1c -42 58 0 0.099976 0.100006 134217728 8388608 0 +( 577 480 172 ) ( 577 482 180 ) ( 575 482 180 ) metals/mt_mf_v1c -42 26 0 0.099976 0.100006 134217728 8388608 0 +( 576 477 158 ) ( 576 477 178 ) ( 576 481 178 ) metals/mt_mf_v1c -24 26 0 0.099976 0.100006 134217728 8388608 0 +( 574 478 172 ) ( 574 476 180 ) ( 576 476 180 ) metals/mt_mf_v1c -42 26 0 0.099976 0.100006 134217728 8388608 0 +( 575 481 158 ) ( 575 481 178 ) ( 575 477 178 ) metals/mt_mf_v1c -24 26 0 0.099976 0.100006 134217728 8388608 0 +( 578 476 174 ) ( 574 482 174 ) ( 581 482 174 ) metals/mt_mf_v1c -42 58 0 0.099976 0.100006 134217728 8388608 0 +} +// brush 640 +{ +( 574 478 168 ) ( 575 478 168 ) ( 575 480 168 ) metals/mt_mf_v1c -63 58 0 0.099976 0.100006 134217728 8388608 0 +( 578 477 172 ) ( 570 477 172 ) ( 570 481 172 ) metals/mt_mf_v1c -63 58 0 0.099976 0.100006 134217728 8388608 0 +( 577 480 152 ) ( 577 480 172 ) ( 569 480 172 ) metals/mt_mf_v1c -63 26 0 0.099976 0.100006 134217728 8388608 0 +( 576 480 172 ) ( 575 480 168 ) ( 575 478 168 ) metals/mt_mf_v1c -24 26 0 0.099976 0.100006 134217728 8388608 0 +( 570 478 153 ) ( 570 478 173 ) ( 578 478 173 ) metals/mt_mf_v1c -63 26 0 0.099976 0.100006 134217728 8388608 0 +( 574 478 171 ) ( 574 480 168 ) ( 574 480 173 ) metals/mt_mf_v1c -24 26 0 0.099976 0.100006 134217728 8388608 0 +} +// brush 641 +{ +( 568 478 170 ) ( 576 478 170 ) ( 576 480 170 ) metals/mt_mf_v1c -42 58 0 0.099976 0.100006 134217728 8388608 0 +( 576 477 172 ) ( 568 477 172 ) ( 568 481 172 ) metals/mt_mf_v1c -42 58 0 0.099976 0.100006 134217728 8388608 0 +( 575 480 152 ) ( 575 480 172 ) ( 567 480 172 ) metals/mt_mf_v1c -42 26 0 0.099976 0.100006 134217728 8388608 0 +( 574 480 172 ) ( 574 480 170 ) ( 574 478 170 ) metals/mt_mf_v1c -24 26 0 0.099976 0.100006 134217728 8388608 0 +( 568 478 153 ) ( 568 478 173 ) ( 576 478 173 ) metals/mt_mf_v1c -42 26 0 0.099976 0.100006 134217728 8388608 0 +( 570 475 153 ) ( 568 483 173 ) ( 568 475 173 ) metals/mt_mf_v1c -24 26 0 0.099976 0.100006 134217728 8388608 0 +} +// brush 642 +{ +( 574 498 168 ) ( 575 498 168 ) ( 575 500 168 ) metals/mt_mf_v1c -62 51 0 0.099976 0.100006 134217728 8388608 0 +( 578 497 172 ) ( 570 497 172 ) ( 570 501 172 ) metals/mt_mf_v1c -62 51 0 0.099976 0.100006 134217728 8388608 0 +( 577 500 152 ) ( 577 500 172 ) ( 569 500 172 ) metals/mt_mf_v1c -62 26 0 0.099976 0.100006 134217728 8388608 0 +( 576 500 172 ) ( 575 500 168 ) ( 575 498 168 ) metals/mt_mf_v1c -15 26 0 0.099976 0.100006 134217728 8388608 0 +( 570 498 153 ) ( 570 498 173 ) ( 578 498 173 ) metals/mt_mf_v1c -62 26 0 0.099976 0.100006 134217728 8388608 0 +( 574 498 171 ) ( 574 500 168 ) ( 574 500 173 ) metals/mt_mf_v1c -15 26 0 0.099976 0.100006 134217728 8388608 0 +} +// brush 643 +{ +( 574 501 172 ) ( 574 497 172 ) ( 582 497 172 ) metals/mt_mf_v1c -41 51 0 0.099976 0.100006 134217728 8388608 0 +( 577 500 172 ) ( 577 502 180 ) ( 575 502 180 ) metals/mt_mf_v1c -41 26 0 0.099976 0.100006 134217728 8388608 0 +( 576 497 158 ) ( 576 497 178 ) ( 576 501 178 ) metals/mt_mf_v1c -15 26 0 0.099976 0.100006 134217728 8388608 0 +( 574 498 172 ) ( 574 496 180 ) ( 576 496 180 ) metals/mt_mf_v1c -41 26 0 0.099976 0.100006 134217728 8388608 0 +( 575 501 158 ) ( 575 501 178 ) ( 575 497 178 ) metals/mt_mf_v1c -15 26 0 0.099976 0.100006 134217728 8388608 0 +( 578 496 174 ) ( 574 502 174 ) ( 581 502 174 ) metals/mt_mf_v1c -41 51 0 0.099976 0.100006 134217728 8388608 0 +} +// brush 644 +{ +( 568 498 170 ) ( 576 498 170 ) ( 576 500 170 ) metals/mt_mf_v1c -41 51 0 0.099976 0.100006 134217728 8388608 0 +( 576 497 172 ) ( 568 497 172 ) ( 568 501 172 ) metals/mt_mf_v1c -41 51 0 0.099976 0.100006 134217728 8388608 0 +( 575 500 152 ) ( 575 500 172 ) ( 567 500 172 ) metals/mt_mf_v1c -41 26 0 0.099976 0.100006 134217728 8388608 0 +( 574 500 172 ) ( 574 500 170 ) ( 574 498 170 ) metals/mt_mf_v1c -15 26 0 0.099976 0.100006 134217728 8388608 0 +( 568 498 153 ) ( 568 498 173 ) ( 576 498 173 ) metals/mt_mf_v1c -41 26 0 0.099976 0.100006 134217728 8388608 0 +( 570 495 153 ) ( 568 503 173 ) ( 568 495 173 ) metals/mt_mf_v1c -15 26 0 0.099976 0.100006 134217728 8388608 0 +} +// brush 645 +{ +( 574 518 168 ) ( 575 518 168 ) ( 575 520 168 ) metals/mt_mf_v1c -62 44 0 0.099976 0.100006 134217728 8388608 0 +( 578 517 172 ) ( 570 517 172 ) ( 570 521 172 ) metals/mt_mf_v1c -62 44 0 0.099976 0.100006 134217728 8388608 0 +( 578 520 152 ) ( 578 520 172 ) ( 570 520 172 ) metals/mt_mf_v1c -62 26 0 0.099976 0.100006 134217728 8388608 0 +( 576 520 172 ) ( 575 520 168 ) ( 575 518 168 ) metals/mt_mf_v1c -8 26 0 0.099976 0.100006 134217728 8388608 0 +( 570 518 153 ) ( 570 518 173 ) ( 578 518 173 ) metals/mt_mf_v1c -62 26 0 0.099976 0.100006 134217728 8388608 0 +( 574 518 171 ) ( 574 520 168 ) ( 574 520 173 ) metals/mt_mf_v1c -8 26 0 0.099976 0.100006 134217728 8388608 0 +} +// brush 646 +{ +( 574 521 172 ) ( 574 517 172 ) ( 582 517 172 ) metals/mt_mf_v1c -41 44 0 0.099976 0.100006 134217728 8388608 0 +( 576 520 172 ) ( 576 522 180 ) ( 574 522 180 ) metals/mt_mf_v1c -41 26 0 0.099976 0.100006 134217728 8388608 0 +( 576 517 158 ) ( 576 517 178 ) ( 576 521 178 ) metals/mt_mf_v1c -7 26 0 0.099976 0.100006 134217728 8388608 0 +( 574 518 172 ) ( 574 516 180 ) ( 576 516 180 ) metals/mt_mf_v1c -41 26 0 0.099976 0.100006 134217728 8388608 0 +( 575 521 158 ) ( 575 521 178 ) ( 575 517 178 ) metals/mt_mf_v1c -7 26 0 0.099976 0.100006 134217728 8388608 0 +( 578 516 174 ) ( 574 522 174 ) ( 581 522 174 ) metals/mt_mf_v1c -41 44 0 0.099976 0.100006 134217728 8388608 0 +} +// brush 647 +{ +( 568 518 170 ) ( 576 518 170 ) ( 576 520 170 ) metals/mt_mf_v1c -41 44 0 0.099976 0.100006 134217728 8388608 0 +( 576 517 172 ) ( 568 517 172 ) ( 568 521 172 ) metals/mt_mf_v1c -41 44 0 0.099976 0.100006 134217728 8388608 0 +( 576 520 152 ) ( 576 520 172 ) ( 568 520 172 ) metals/mt_mf_v1c -41 26 0 0.099976 0.100006 134217728 8388608 0 +( 574 520 172 ) ( 574 520 170 ) ( 574 518 170 ) metals/mt_mf_v1c -8 26 0 0.099976 0.100006 134217728 8388608 0 +( 568 518 153 ) ( 568 518 173 ) ( 576 518 173 ) metals/mt_mf_v1c -41 26 0 0.099976 0.100006 134217728 8388608 0 +( 570 515 153 ) ( 568 523 173 ) ( 568 515 173 ) metals/mt_mf_v1c -8 26 0 0.099976 0.100006 134217728 8388608 0 +} +// brush 648 +{ +( 562 519 144 ) ( 562 511 144 ) ( 570 511 144 ) metals/mt_mf_v1c -39 49 0 0.100037 0.099976 134217728 8388608 0 +( 570 523 160 ) ( 568 521 180 ) ( 564 521 180 ) metals/mt_mf_v1c -42 32 0 0.099976 0.099998 134217728 8388608 0 +( 570 515 160 ) ( 568 515 180 ) ( 568 523 180 ) metals/mt_mf_v1c -22 32 0 0.100037 0.099998 134217728 8388608 0 +( 562 515 160 ) ( 564 517 180 ) ( 568 517 180 ) metals/mt_mf_v1c -42 32 0 0.099976 0.099998 134217728 8388608 0 +( 562 523 160 ) ( 564 523 180 ) ( 564 515 180 ) metals/mt_mf_v1c -22 32 0 0.100037 0.099998 134217728 8388608 0 +( 566 513 146 ) ( 560 525 146 ) ( 572 525 146 ) metals/mt_mf_v1c -39 49 0 0.100037 0.099976 134217728 8388608 0 +} +// brush 649 +{ +( 562 501 144 ) ( 562 493 144 ) ( 570 493 144 ) metals/mt_mf_v1c -39 49 0 0.100037 0.099976 134217728 8388608 0 +( 570 503 160 ) ( 568 501 180 ) ( 564 501 180 ) metals/mt_mf_v1c -42 32 0 0.099976 0.099998 134217728 8388608 0 +( 570 495 160 ) ( 568 495 180 ) ( 568 503 180 ) metals/mt_mf_v1c -22 32 0 0.100037 0.099998 134217728 8388608 0 +( 562 495 160 ) ( 564 497 180 ) ( 568 497 180 ) metals/mt_mf_v1c -42 32 0 0.099976 0.099998 134217728 8388608 0 +( 562 503 160 ) ( 564 503 180 ) ( 564 495 180 ) metals/mt_mf_v1c -22 32 0 0.100037 0.099998 134217728 8388608 0 +( 566 493 146 ) ( 560 505 146 ) ( 572 505 146 ) metals/mt_mf_v1c -39 49 0 0.100037 0.099976 134217728 8388608 0 +} +// brush 650 +{ +( 562 479 144 ) ( 562 471 144 ) ( 570 471 144 ) metals/mt_mf_v1c -39 49 0 0.100037 0.099976 134217728 8388608 0 +( 570 483 160 ) ( 568 481 180 ) ( 564 481 180 ) metals/mt_mf_v1c -42 32 0 0.099976 0.099998 134217728 8388608 0 +( 570 475 160 ) ( 568 475 180 ) ( 568 483 180 ) metals/mt_mf_v1c -22 32 0 0.100037 0.099998 134217728 8388608 0 +( 562 475 160 ) ( 564 477 180 ) ( 568 477 180 ) metals/mt_mf_v1c -42 32 0 0.099976 0.099998 134217728 8388608 0 +( 562 483 160 ) ( 564 483 180 ) ( 564 475 180 ) metals/mt_mf_v1c -22 32 0 0.100037 0.099998 134217728 8388608 0 +( 566 473 146 ) ( 560 485 146 ) ( 572 485 146 ) metals/mt_mf_v1c -39 49 0 0.100037 0.099976 134217728 8388608 0 +} +// brush 651 +{ +( 560 464 112 ) ( 560 432 112 ) ( 656 432 112 ) wood/wd_sr_va3 0 39 0 1 1 0 0 0 +( 720 624 152 ) ( 528 624 152 ) ( 528 624 112 ) wood/wd_sr_va2 -64 120 0 1 1 0 134250496 0 +( 720 432 144 ) ( 720 432 152 ) ( 720 464 152 ) wood/wd_sr_va3 0 23 0 1 1 0 0 0 +( 720 592 144 ) ( 720 592 152 ) ( 816 592 152 ) wood/wd_sr_va2a -64 36 0 1 1 0 134217728 0 +( 560 592 112 ) ( 528 624 112 ) ( 528 624 152 ) wood/wd_sr_va3 0 23 0 1 1 0 0 0 +( 536 616 152 ) ( 528 608 112 ) ( 544 624 112 ) wood/wd_sr_va2 0 120 0 1 1 0 134250496 0 +( 720 622 116 ) ( 536 620 116 ) ( 536 624 116 ) props2/stool_t6 -85 -4 0 0.750000 0.750000 0 2097152 1 +} +// brush 652 +{ +( 656 432 156 ) ( 560 432 156 ) ( 560 464 156 ) wood/wd_sr_va3 0 39 0 1 1 0 0 0 +( 720 624 152 ) ( 528 624 152 ) ( 528 624 112 ) props2/stool_t6 -85 60 0 0.750000 0.750000 0 2097152 1 +( 720 432 144 ) ( 720 432 152 ) ( 720 464 152 ) wood/wd_sr_va3 0 23 0 1 1 0 0 0 +( 720 592 144 ) ( 720 592 152 ) ( 816 592 152 ) wood/wd_sr_va2a -64 36 0 1 1 0 134217728 0 +( 560 592 112 ) ( 528 624 112 ) ( 528 624 152 ) wood/wd_sr_va3 0 23 0 1 1 0 0 0 +( 536 616 152 ) ( 528 608 112 ) ( 544 624 112 ) props2/stool_t6 0 60 0 0.750000 0.750000 0 2097152 1 +( 720 622 116 ) ( 536 624 116 ) ( 536 620 116 ) props2/stool_t6 -85 -4 0 0.750000 0.750000 0 2097152 1 +} +// brush 653 +{ +( 528 432 112 ) ( 528 400 112 ) ( 624 400 112 ) wood/wd_sr_va3 0 39 0 1 1 0 0 0 +( 576 576 144 ) ( 544 608 144 ) ( 544 608 112 ) wood/wd_sr_va3 0 23 0 1 1 0 0 0 +( 560 400 144 ) ( 560 400 152 ) ( 560 432 152 ) wood/wd_sr_va3 0 23 0 1 1 0 0 0 +( 560 400 112 ) ( 528 368 112 ) ( 528 368 160 ) wood/wd_sr_va3 0 23 0 1 1 0 0 0 +( 528 344 112 ) ( 528 568 112 ) ( 528 568 144 ) wood/wd_sr_va2 0 120 0 1 1 0 134250496 0 +( 536 376 152 ) ( 544 368 112 ) ( 528 384 112 ) wood/wd_sr_va2 0 120 0 1 1 0 134250496 0 +( 536 616 152 ) ( 528 608 112 ) ( 544 624 112 ) wood/wd_sr_va2 0 120 0 1 1 0 134250496 0 +( 560 622 116 ) ( 528 620 116 ) ( 528 624 116 ) props2/stool_t6 -85 -4 0 0.750000 0.750000 0 0 1 +} +// brush 654 +{ +( 624 400 156 ) ( 528 400 156 ) ( 528 432 156 ) wood/wd_sr_va3 0 39 0 1 1 0 0 0 +( 576 576 144 ) ( 544 608 144 ) ( 544 608 112 ) wood/wd_sr_va3 0 23 0 1 1 0 0 0 +( 560 400 144 ) ( 560 400 152 ) ( 560 432 152 ) wood/wd_sr_va3 0 23 0 1 1 0 0 0 +( 560 400 112 ) ( 528 368 112 ) ( 528 368 160 ) wood/wd_sr_va3 0 23 0 1 1 0 0 0 +( 528 344 112 ) ( 528 568 112 ) ( 528 568 144 ) props2/stool_t6 0 60 0 0.750000 0.750000 0 2097152 1 +( 536 376 152 ) ( 544 368 112 ) ( 528 384 112 ) props2/stool_t6 0 60 0 0.750000 0.750000 0 2097152 1 +( 536 616 152 ) ( 528 608 112 ) ( 544 624 112 ) props2/stool_t6 0 60 0 0.750000 0.750000 0 0 1 +( 560 622 116 ) ( 528 624 116 ) ( 528 620 116 ) props2/stool_t6 -85 -4 0 0.750000 0.750000 0 0 1 +} +// brush 655 +{ +( 560 400 112 ) ( 560 368 112 ) ( 656 368 112 ) wood/wd_sr_va3 0 39 0 1 1 0 0 0 +( 656 400 144 ) ( 656 400 152 ) ( 560 400 152 ) wood/wd_sr_va2a -64 24 0 1 1 0 0 0 +( 672 368 144 ) ( 672 368 152 ) ( 672 400 152 ) wood/wd_sr_va3 0 23 0 1 1 0 0 0 +( 672 368 112 ) ( 528 368 112 ) ( 528 368 160 ) wood/wd_sr_va2 -64 120 0 1 1 0 134250496 0 +( 560 400 160 ) ( 528 368 160 ) ( 528 368 112 ) wood/wd_sr_va3 0 23 0 1 1 0 0 0 +( 536 376 152 ) ( 544 368 112 ) ( 528 384 112 ) wood/wd_sr_va2 0 120 0 1 1 0 134250496 0 +( 672 622 116 ) ( 536 620 116 ) ( 536 624 116 ) props2/stool_t6 -85 -4 0 0.750000 0.750000 0 2097152 1 +} +// brush 656 +{ +( 672 368 156 ) ( 576 368 156 ) ( 576 400 156 ) wood/wd_sr_va3 0 39 0 1 1 0 0 0 +( 656 400 144 ) ( 656 400 152 ) ( 560 400 152 ) wood/wd_sr_va2a -64 24 0 1 1 0 0 0 +( 672 368 144 ) ( 672 368 152 ) ( 672 400 152 ) wood/wd_sr_va3 0 23 0 1 1 0 0 0 +( 672 368 112 ) ( 528 368 112 ) ( 528 368 160 ) props2/stool_t6 -85 60 0 0.750000 0.750000 0 2097152 1 +( 560 400 160 ) ( 528 368 160 ) ( 528 368 112 ) wood/wd_sr_va3 0 23 0 1 1 0 0 0 +( 536 376 152 ) ( 544 368 112 ) ( 528 384 112 ) props2/stool_t6 0 60 0 0.750000 0.750000 0 2097152 1 +( 672 622 116 ) ( 536 624 116 ) ( 536 620 116 ) props2/stool_t6 -85 -4 0 0.750000 0.750000 0 2097152 1 +} +// brush 657 +{ +( 1375 538 180 ) ( 1468 532 194 ) ( 1468 536 194 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1375 542 184 ) ( 1468 536 198 ) ( 1468 532 198 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1468 532 77 ) ( 1468 532 197 ) ( 1468 536 197 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1375 538 184 ) ( 1468 532 198 ) ( 1468 532 194 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1375 542 64 ) ( 1375 542 184 ) ( 1375 538 184 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1375 542 180 ) ( 1468 536 194 ) ( 1468 536 198 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +} +// brush 658 +{ +( 1436 534 184 ) ( 1436 542 152 ) ( 1468 536 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1468 532 152 ) ( 1436 538 152 ) ( 1436 530 184 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 534 184 ) ( 1436 530 184 ) ( 1436 538 152 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1468 532 152 ) ( 1468 536 152 ) ( 1436 542 152 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1436 530 184 ) ( 1436 534 184 ) ( 1468 536 152 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +} +// brush 659 +{ +( 1468 534 184 ) ( 1468 530 184 ) ( 1436 530 184 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1468 536 152 ) ( 1468 534 184 ) ( 1436 534 184 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 530 184 ) ( 1468 530 184 ) ( 1468 532 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1468 536 152 ) ( 1468 532 152 ) ( 1468 530 184 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1468 532 152 ) ( 1468 536 152 ) ( 1436 534 184 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +} +// brush 660 +{ +( 1436 542 152 ) ( 1436 538 120 ) ( 1468 540 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1468 536 120 ) ( 1436 534 120 ) ( 1436 538 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 542 152 ) ( 1436 538 152 ) ( 1436 534 120 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1468 536 120 ) ( 1468 540 120 ) ( 1436 538 120 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1436 538 152 ) ( 1436 542 152 ) ( 1468 540 120 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +} +// brush 661 +{ +( 1468 540 120 ) ( 1468 536 152 ) ( 1436 542 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1468 532 152 ) ( 1468 536 120 ) ( 1436 538 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1468 532 152 ) ( 1468 536 152 ) ( 1468 540 120 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1468 536 152 ) ( 1468 532 152 ) ( 1436 538 152 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1436 542 152 ) ( 1436 538 152 ) ( 1468 536 120 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +} +// brush 662 +{ +( 1436 530 88 ) ( 1468 530 88 ) ( 1468 534 88 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1468 534 88 ) ( 1436 538 120 ) ( 1436 534 88 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 534 120 ) ( 1468 530 88 ) ( 1436 530 88 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 534 88 ) ( 1436 538 120 ) ( 1436 534 120 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1468 530 88 ) ( 1436 534 120 ) ( 1436 538 120 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +} +// brush 663 +{ +( 1436 538 120 ) ( 1468 534 88 ) ( 1468 540 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 534 120 ) ( 1468 536 120 ) ( 1468 530 88 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1468 530 88 ) ( 1468 536 120 ) ( 1468 540 120 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1436 538 120 ) ( 1468 540 120 ) ( 1468 536 120 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1468 534 88 ) ( 1436 538 120 ) ( 1436 534 120 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +} +// brush 664 +{ +( 1372 526 88 ) ( 1404 530 88 ) ( 1404 534 88 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1404 534 88 ) ( 1372 536 120 ) ( 1372 530 88 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1372 530 88 ) ( 1372 536 120 ) ( 1372 532 120 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1372 532 120 ) ( 1404 530 88 ) ( 1372 526 88 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 530 88 ) ( 1372 532 120 ) ( 1372 536 120 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +} +// brush 665 +{ +( 1372 536 120 ) ( 1404 534 88 ) ( 1404 538 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1372 532 120 ) ( 1404 534 120 ) ( 1404 530 88 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 530 88 ) ( 1404 534 120 ) ( 1404 538 120 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1372 536 120 ) ( 1404 538 120 ) ( 1404 534 120 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1404 534 88 ) ( 1372 536 120 ) ( 1372 532 120 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +} +// brush 666 +{ +( 1436 542 152 ) ( 1404 534 184 ) ( 1404 542 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 530 184 ) ( 1436 538 152 ) ( 1404 538 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 542 152 ) ( 1404 534 184 ) ( 1404 530 184 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1404 538 152 ) ( 1436 538 152 ) ( 1436 542 152 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1436 538 152 ) ( 1404 530 184 ) ( 1404 534 184 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +} +// brush 667 +{ +( 1436 534 184 ) ( 1436 530 184 ) ( 1404 530 184 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1436 542 152 ) ( 1436 534 184 ) ( 1404 534 184 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 530 184 ) ( 1436 530 184 ) ( 1436 538 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 542 152 ) ( 1436 538 152 ) ( 1436 530 184 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1436 538 152 ) ( 1436 542 152 ) ( 1404 534 184 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +} +// brush 668 +{ +( 1404 542 152 ) ( 1372 534 184 ) ( 1372 538 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1372 538 152 ) ( 1372 534 184 ) ( 1372 530 184 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1372 530 184 ) ( 1404 538 152 ) ( 1372 534 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1372 534 152 ) ( 1404 538 152 ) ( 1404 542 152 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1404 538 152 ) ( 1372 530 184 ) ( 1372 534 184 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +} +// brush 669 +{ +( 1372 534 184 ) ( 1404 534 184 ) ( 1404 530 184 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1372 534 184 ) ( 1404 542 152 ) ( 1404 534 184 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 538 152 ) ( 1372 530 184 ) ( 1404 530 184 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 534 184 ) ( 1404 542 152 ) ( 1404 538 152 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1372 530 184 ) ( 1404 538 152 ) ( 1404 542 152 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +} +// brush 670 +{ +( 1436 538 120 ) ( 1404 542 152 ) ( 1404 538 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 538 152 ) ( 1436 534 120 ) ( 1404 534 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 538 120 ) ( 1404 542 152 ) ( 1404 538 152 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1404 534 120 ) ( 1436 534 120 ) ( 1436 538 120 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1436 534 120 ) ( 1404 538 152 ) ( 1404 542 152 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +} +// brush 671 +{ +( 1404 542 152 ) ( 1436 538 120 ) ( 1436 542 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 538 152 ) ( 1436 538 152 ) ( 1436 534 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 534 120 ) ( 1436 538 152 ) ( 1436 542 152 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1404 542 152 ) ( 1436 542 152 ) ( 1436 538 152 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1436 538 120 ) ( 1404 542 152 ) ( 1404 538 152 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +} +// brush 672 +{ +( 1404 534 88 ) ( 1404 530 88 ) ( 1436 530 88 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1404 534 88 ) ( 1436 534 88 ) ( 1404 538 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 530 88 ) ( 1404 534 120 ) ( 1436 530 88 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 530 88 ) ( 1404 534 88 ) ( 1404 538 120 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1436 534 88 ) ( 1436 530 88 ) ( 1404 534 120 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +} +// brush 673 +{ +( 1436 534 88 ) ( 1436 538 120 ) ( 1404 538 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 534 120 ) ( 1436 530 88 ) ( 1404 534 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 534 120 ) ( 1436 538 120 ) ( 1436 534 88 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1436 538 120 ) ( 1436 534 120 ) ( 1404 534 120 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1404 538 120 ) ( 1404 534 120 ) ( 1436 530 88 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +} +// brush 674 +{ +( 1404 538 120 ) ( 1372 538 152 ) ( 1372 536 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1372 536 120 ) ( 1372 538 152 ) ( 1372 534 152 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1372 534 152 ) ( 1404 534 120 ) ( 1372 532 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1372 532 120 ) ( 1404 534 120 ) ( 1404 538 120 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1404 534 120 ) ( 1372 534 152 ) ( 1372 538 152 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +} +// brush 675 +{ +( 1372 538 152 ) ( 1404 538 120 ) ( 1404 542 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1372 534 152 ) ( 1404 538 152 ) ( 1404 534 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 534 120 ) ( 1404 538 152 ) ( 1404 542 152 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1372 538 152 ) ( 1404 542 152 ) ( 1404 538 152 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1404 538 120 ) ( 1372 538 152 ) ( 1372 534 152 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +} +// brush 676 +{ +( 1468 645 195 ) ( 1373 643 195 ) ( 1373 639 195 ) floors/r_sr_m1 0 -1 0 1 1 0 0 0 +( 1468 641 199 ) ( 1373 639 199 ) ( 1373 643 199 ) floors/r_sr_m1 0 -1 0 1 1 0 0 0 +( 1468 645 199 ) ( 1373 643 199 ) ( 1373 643 195 ) floors/r_sr_m1 0 63 0 1 1 0 0 0 +( 1468 641 167 ) ( 1468 641 199 ) ( 1468 645 199 ) floors/r_sr_m1 -63 63 0 1 1 0 0 0 +( 1468 641 195 ) ( 1373 639 195 ) ( 1373 639 199 ) floors/r_sr_m1 0 63 0 1 1 0 0 0 +( 1373 643 167 ) ( 1373 643 199 ) ( 1373 639 199 ) floors/r_sr_m1 -63 63 0 1 1 0 0 0 +} +// brush 677 +{ +( 1468 638 152 ) ( 1436 644 184 ) ( 1436 632 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 640 184 ) ( 1468 634 152 ) ( 1436 628 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 628 152 ) ( 1436 632 152 ) ( 1436 644 184 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1436 632 152 ) ( 1436 628 152 ) ( 1468 634 152 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1468 638 152 ) ( 1468 634 152 ) ( 1436 640 184 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +} +// brush 678 +{ +( 1436 640 184 ) ( 1436 644 184 ) ( 1468 644 184 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1436 644 184 ) ( 1468 638 152 ) ( 1468 644 184 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1468 634 152 ) ( 1436 640 184 ) ( 1468 640 184 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1468 640 184 ) ( 1468 644 184 ) ( 1468 638 152 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1436 644 184 ) ( 1436 640 184 ) ( 1468 634 152 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +} +// brush 679 +{ +( 1468 624 120 ) ( 1436 632 152 ) ( 1436 642 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 628 152 ) ( 1468 620 120 ) ( 1436 638 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 638 120 ) ( 1436 642 120 ) ( 1436 632 152 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1436 642 120 ) ( 1436 638 120 ) ( 1468 620 120 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1468 624 120 ) ( 1468 620 120 ) ( 1436 628 152 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +} +// brush 680 +{ +( 1436 632 152 ) ( 1468 624 120 ) ( 1468 638 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 628 152 ) ( 1468 634 152 ) ( 1468 620 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1468 624 120 ) ( 1468 620 120 ) ( 1468 634 152 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1436 628 152 ) ( 1436 632 152 ) ( 1468 638 152 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1468 620 120 ) ( 1468 624 120 ) ( 1436 632 152 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +} +// brush 681 +{ +( 1468 618 88 ) ( 1436 618 88 ) ( 1436 614 88 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1436 618 88 ) ( 1468 618 88 ) ( 1436 642 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 614 88 ) ( 1436 638 120 ) ( 1468 614 88 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 638 120 ) ( 1436 614 88 ) ( 1436 618 88 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1436 642 120 ) ( 1468 618 88 ) ( 1468 614 88 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +} +// brush 682 +{ +( 1468 624 120 ) ( 1436 642 120 ) ( 1468 618 88 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1468 614 88 ) ( 1436 638 120 ) ( 1468 620 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1468 624 120 ) ( 1468 618 88 ) ( 1468 614 88 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1468 620 120 ) ( 1436 638 120 ) ( 1436 642 120 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1436 638 120 ) ( 1468 614 88 ) ( 1468 618 88 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +} +// brush 683 +{ +( 1404 618 88 ) ( 1372 614 88 ) ( 1372 610 88 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1372 614 88 ) ( 1404 618 88 ) ( 1372 620 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1372 616 120 ) ( 1372 610 88 ) ( 1372 614 88 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1372 610 88 ) ( 1372 616 120 ) ( 1404 614 88 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1372 620 120 ) ( 1404 618 88 ) ( 1404 614 88 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +} +// brush 684 +{ +( 1404 648 120 ) ( 1372 620 120 ) ( 1404 618 88 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 614 88 ) ( 1372 616 120 ) ( 1404 644 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 648 120 ) ( 1404 618 88 ) ( 1404 614 88 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1404 644 120 ) ( 1372 616 120 ) ( 1372 620 120 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1372 616 120 ) ( 1404 614 88 ) ( 1404 618 88 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +} +// brush 685 +{ +( 1404 648 152 ) ( 1436 632 152 ) ( 1404 644 184 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 644 152 ) ( 1404 640 184 ) ( 1436 628 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 640 184 ) ( 1404 644 152 ) ( 1404 648 152 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1436 632 152 ) ( 1404 648 152 ) ( 1404 644 152 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1404 644 184 ) ( 1436 632 152 ) ( 1436 628 152 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +} +// brush 686 +{ +( 1404 640 184 ) ( 1404 644 184 ) ( 1436 644 184 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1404 644 184 ) ( 1436 632 152 ) ( 1436 644 184 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 628 152 ) ( 1404 640 184 ) ( 1436 640 184 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 640 184 ) ( 1436 644 184 ) ( 1436 632 152 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1404 644 184 ) ( 1404 640 184 ) ( 1436 628 152 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +} +// brush 687 +{ +( 1372 644 152 ) ( 1404 648 152 ) ( 1372 644 184 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1372 640 184 ) ( 1372 640 152 ) ( 1372 644 152 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1372 640 152 ) ( 1372 640 184 ) ( 1404 644 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 648 152 ) ( 1372 644 152 ) ( 1372 640 152 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1372 644 184 ) ( 1404 648 152 ) ( 1404 644 152 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +} +// brush 688 +{ +( 1404 640 184 ) ( 1372 640 184 ) ( 1372 644 184 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1404 644 184 ) ( 1372 644 184 ) ( 1404 648 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 640 184 ) ( 1404 644 152 ) ( 1372 640 184 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 644 152 ) ( 1404 640 184 ) ( 1404 644 184 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1404 648 152 ) ( 1372 644 184 ) ( 1372 640 184 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +} +// brush 689 +{ +( 1404 648 120 ) ( 1436 642 120 ) ( 1404 648 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 644 120 ) ( 1404 644 152 ) ( 1436 638 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 644 152 ) ( 1404 644 120 ) ( 1404 648 120 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1436 642 120 ) ( 1404 648 120 ) ( 1404 644 120 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1404 648 152 ) ( 1436 642 120 ) ( 1436 638 120 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +} +// brush 690 +{ +( 1436 632 152 ) ( 1404 648 152 ) ( 1436 642 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 638 120 ) ( 1404 644 152 ) ( 1436 628 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 632 152 ) ( 1436 642 120 ) ( 1436 638 120 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1436 628 152 ) ( 1404 644 152 ) ( 1404 648 152 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1404 644 152 ) ( 1436 638 120 ) ( 1436 642 120 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +} +// brush 691 +{ +( 1436 614 88 ) ( 1436 618 88 ) ( 1404 618 88 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1404 648 120 ) ( 1404 618 88 ) ( 1436 618 88 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 614 88 ) ( 1404 614 88 ) ( 1404 644 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 648 120 ) ( 1404 644 120 ) ( 1404 614 88 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1404 644 120 ) ( 1404 648 120 ) ( 1436 618 88 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +} +// brush 692 +{ +( 1404 648 120 ) ( 1436 618 88 ) ( 1436 642 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 644 120 ) ( 1436 638 120 ) ( 1436 614 88 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1436 618 88 ) ( 1436 614 88 ) ( 1436 638 120 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1404 644 120 ) ( 1404 648 120 ) ( 1436 642 120 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1436 614 88 ) ( 1436 618 88 ) ( 1404 648 120 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +} +// brush 693 +{ +( 1372 620 120 ) ( 1404 648 120 ) ( 1372 644 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1372 640 152 ) ( 1372 616 120 ) ( 1372 620 120 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1372 616 120 ) ( 1372 640 152 ) ( 1404 644 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 648 120 ) ( 1372 620 120 ) ( 1372 616 120 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1372 644 152 ) ( 1404 648 120 ) ( 1404 644 120 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +} +// brush 694 +{ +( 1404 648 152 ) ( 1372 644 152 ) ( 1404 648 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 644 120 ) ( 1372 640 152 ) ( 1404 644 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1404 648 152 ) ( 1404 648 120 ) ( 1404 644 120 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1404 644 152 ) ( 1372 640 152 ) ( 1372 644 152 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1372 640 152 ) ( 1404 644 120 ) ( 1404 648 120 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +} +// brush 695 +{ +( 148 432 252 ) ( 148 448 252 ) ( 180 448 252 ) common/li_sr_v17 25 -30 90 2 1 134217728 132 0 +( 148 448 256 ) ( 148 440 224 ) ( 180 440 224 ) props2/speaker1 -46 59 0 0.400002 0.500000 134217728 8388608 0 +( -156 432 160 ) ( -156 432 288 ) ( 356 432 288 ) bricks/b_mf_v2 93 63 -180 2 -1 134217728 0 0 +( 172 384 288 ) ( 172 392 96 ) ( 172 376 96 ) metals/mt_mf_v1c -31 48 0 1.500000 0.500000 134217728 8388608 0 +( 148 380 288 ) ( 148 368 96 ) ( 148 392 96 ) metals/mt_mf_v1c -31 48 0 1.500000 0.500000 134217728 8388608 0 +( 180 432 228 ) ( 180 440 228 ) ( 148 440 228 ) metals/mt_mf_v1c -30 -63 90 1.500000 0.500000 134217728 8388608 0 +} +} +// entity 1 +{ +"origin" "496 560 136" +"count " "9" +"art_skins" "044 023 010" +"cast_group " "0" +"angle" "0" +"classname" "cast_runt" +} +// entity 2 +{ +"classname" "trigger_relay" +"targetname" "t17" +"origin" "1264 600 136" +"target" "t20" +} +// entity 3 +{ +"origin" "480 928 122" +"angle" "45" +"classname" "props_trashbottle" +} +// entity 4 +{ +"origin" "626 904 128" +"classname" "props_trashbottle_vert" +} +// entity 5 +{ +"origin" "640 947 126" +"classname" "props_tablesetA" +} +// entity 6 +{ +"origin" "1444 672 96" +"classname" "props2_fish" +} +// entity 7 +{ +"spawnflags" "0" +"origin" "1096 584 108" +"light" "120" +"_color" "1.000000 0.811688 0.616883" +"classname" "light" +} +// entity 8 +{ +"origin" "1096 584 170" +"light" "300" +"_color" "1.000000 0.811688 0.616883" +"classname" "junior" +} +// entity 9 +{ +"classname" "light" +"_color" "1.000000 0.811688 0.616883" +"light" "120" +"origin" "1096 584 210" +"spawnflags" "8" +} +// entity 10 +{ +"origin" "1096 584 186" +"noise" "world/lightf_hum" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 11 +{ +"origin" "1096 584 236" +"dmg" "2" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 12 +{ +"classname" "junior" +"light" "200" +"origin" "1329 636 169" +"_color" "1.000000 0.912500 0.812500" +} +// entity 13 +{ +"classname" "lightflare" +"light" "10" +"origin" "1328 636 215" +"_color" "0.314936 0.289997 0.257475" +"spawnflags" "2" +"health" "96" +} +// entity 14 +{ +"moral" "6" +"acc" "4" +"aiflags" "1" +"classname" "cast_punk" +"cast_group" "1" +"name " "bigwillie" +"scale" "1.05" +"origin" "1344 592 104" +"spawnflags" "2" +"health" "350" +"art_skins" "109 046 047" +"targetname" "t20" +"angle" "180" +} +// entity 15 +{ +"art_skins" "016 014 003" +"classname" "cast_runt" +"angle" "180" +"cast_group" "0" +"name" "dogg" +"origin" "616 496 144" +} +// entity 16 +{ +"art_skins" "109 046 047" +"name" "bwillie" +"classname" "cast_bum_sit" +"angle" "270" +"origin" "1400 604 104" +"targetname" "bumwillie" +"killtarget" "bumwillie" +} +// entity 17 +{ +"classname" "target_changelevel" +"targetname" "t16" +"map" "sy_h$from_bar" +"origin" "160 968 280" +} +// entity 18 +{ +"classname" "trigger_multiple" +"target" "t16" +// brush 0 +{ +( 224 960 272 ) ( 96 960 272 ) ( 96 944 272 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 96 944 448 ) ( 96 960 448 ) ( 224 960 448 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 96 944 448 ) ( 224 944 448 ) ( 224 944 320 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 224 944 448 ) ( 224 960 448 ) ( 224 960 320 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 224 960 448 ) ( 96 960 448 ) ( 96 960 320 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 96 960 448 ) ( 96 944 448 ) ( 96 944 320 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 19 +{ +"classname" "info_player_start" +"angle" "270" +"origin" "160 608 136" +"targetname" "from_hub" +} +// entity 20 +{ +"classname" "func_wall" +// brush 0 +{ +( 1456 560 180 ) ( 1460 560 180 ) ( 1460 558 180 ) metals/mt_sr_v24 55 -11 0 1 1.082092 134217728 0 0 +( 1456 558 180 ) ( 1460 558 180 ) ( 1460 556 179 ) metals/mt_sr_v24 55 -21 0 1 0.874207 134217728 0 0 +( 1456 556 179 ) ( 1460 556 179 ) ( 1460 556 177 ) metals/mt_sr_v24 0 34 90 0.978180 1 134217728 0 0 +( 1460 559 176 ) ( 1456 559 176 ) ( 1456 556 177 ) metals/mt_sr_v24 55 -11 0 1 1.082108 134217728 0 0 +( 1460 560 178 ) ( 1456 560 178 ) ( 1456 559 176 ) metals/mt_sr_v24 55 23 0 1 0.874207 134217728 0 0 +( 1460 560 180 ) ( 1456 560 180 ) ( 1456 560 178 ) metals/mt_sr_v24 -1 34 90 0.978149 1 134217728 0 0 +( 1460 555 184 ) ( 1460 564 186 ) ( 1460 566 176 ) metals/mt_sr_v24 -41 -20 78 1 -0.999988 134217728 0 0 +( 1456 566 176 ) ( 1456 564 186 ) ( 1456 555 184 ) metals/mt_sr_v24 -41 -20 78 1 -0.999988 134217728 0 0 +} +// brush 1 +{ +( 1458 556 179 ) ( 1458 556 177 ) ( 1458 552 176 ) metals/mt_sr_v24 -33 -51 78 0.999996 -0.999993 134217728 0 0 +( 1456 552 176 ) ( 1456 556 177 ) ( 1456 556 179 ) metals/mt_sr_v24 -33 -51 78 0.999996 -0.999993 134217728 0 0 +( 1460 551 178 ) ( 1456 551 178 ) ( 1456 556 179 ) metals/mt_sr_v24 -53 -53 -180 1 -0.978149 134217728 0 0 +( 1460 552 176 ) ( 1456 552 176 ) ( 1456 551 178 ) metals/mt_sr_v24 5 43 -90 0.978119 -1 134217728 0 0 +( 1460 556 177 ) ( 1456 556 177 ) ( 1456 552 176 ) metals/mt_sr_v24 -53 -53 -180 1 -0.978165 134217728 0 0 +( 1460 556 179 ) ( 1456 556 179 ) ( 1456 556 177 ) metals/mt_sr_v24 6 43 -90 0.978149 -1 134217728 0 0 +} +// brush 2 +{ +( 1458 552 151 ) ( 1458 551 150 ) ( 1459 551 150 ) floors/r_sr_m1 0 -96 0 1 1 134217728 0 0 +( 1457 552 176 ) ( 1456 552 176 ) ( 1456 553 176 ) floors/r_sr_m1 0 -96 0 1 1 134217728 0 0 +( 1456 553 176 ) ( 1456 552 151 ) ( 1457 552 151 ) floors/r_sr_m1 0 48 0 1 1 134217728 0 0 +( 1457 553 176 ) ( 1457 552 151 ) ( 1457 551 150 ) floors/r_sr_m1 32 48 0 1 1 134217728 0 0 +( 1457 552 176 ) ( 1457 551 150 ) ( 1456 551 150 ) floors/r_sr_m1 0 48 0 1 1 134217728 0 0 +( 1456 552 176 ) ( 1456 551 150 ) ( 1456 552 151 ) floors/r_sr_m1 32 48 0 1 1 134217728 0 0 +} +// brush 3 +{ +( 1471 576 160 ) ( 1467 576 160 ) ( 1467 573 159 ) metals/mt_sr_v24 -14 -58 -90 0.978165 1 134217728 0 0 +( 1467 572 160 ) ( 1467 576 161 ) ( 1471 576 161 ) metals/mt_sr_v24 -13 -58 -90 0.978149 1 134217728 0 0 +( 1470 571 160 ) ( 1470 572 159 ) ( 1468 572 159 ) metals/mt_sr_v24 -16 -55 -90 0.978149 1 134217728 0 0 +( 1472 575 160 ) ( 1472 575 159 ) ( 1472 574 159 ) metals/mt_sr_v24 31 -25 -102 0.999988 1.000021 134217728 0 0 +( 1468 577 161 ) ( 1468 577 160 ) ( 1470 577 160 ) metals/mt_sr_v24 59 -56 -90 0.978119 1 134217728 0 0 +( 1466 573 160 ) ( 1466 574 159 ) ( 1466 575 159 ) metals/mt_sr_v24 31 -25 -102 0.999988 1.000021 134217728 0 0 +( 1466 575 160 ) ( 1466 575 159 ) ( 1468 577 160 ) metals/mt_sr_v24 30 -12 -102 0.999988 1 134217728 0 0 +( 1470 577 161 ) ( 1470 577 160 ) ( 1472 575 159 ) metals/mt_sr_v24 20 -12 -101 1.000011 0.999985 134217728 0 0 +( 1472 573 160 ) ( 1472 574 159 ) ( 1470 572 159 ) metals/mt_sr_v24 -52 -22 -101 1 0.999996 134217728 0 0 +( 1468 571 160 ) ( 1468 572 159 ) ( 1466 574 159 ) metals/mt_sr_v24 -52 -43 -102 1.000003 0.999991 134217728 0 0 +} +// brush 4 +{ +( 1470 573 160 ) ( 1467 569 137 ) ( 1465 569 137 ) metals/mt_sr_v24 -8 9 90 1 1 134217728 0 0 +( 1467 574 160 ) ( 1464 570 137 ) ( 1464 572 137 ) metals/mt_sr_v24 -9 -47 90 1 -1 134217728 0 0 +( 1468 577 160 ) ( 1465 573 137 ) ( 1467 573 137 ) metals/mt_sr_v24 -8 9 90 1 1 134217728 0 0 +( 1471 576 160 ) ( 1468 572 137 ) ( 1468 570 137 ) metals/mt_sr_v24 -9 -47 90 1 -1 134217728 0 0 +( 1470 577 160 ) ( 1467 573 137 ) ( 1468 572 137 ) metals/mt_sr_v24 -9 62 90 1 1 134217728 0 0 +( 1467 576 160 ) ( 1464 572 137 ) ( 1465 573 137 ) metals/mt_sr_v24 -9 36 90 1 1 134217728 0 0 +( 1468 573 160 ) ( 1465 569 137 ) ( 1464 570 137 ) metals/mt_sr_v24 -9 32 90 1 1 134217728 0 0 +( 1471 574 160 ) ( 1468 570 137 ) ( 1467 569 137 ) metals/mt_sr_v24 -9 8 90 1 1 134217728 0 0 +( 1469 573 160 ) ( 1467 577 160 ) ( 1471 577 160 ) metals/mt_sr_v24 -25 -61 -90 1 1 134217728 0 0 +( 1467 569 144 ) ( 1469 577 145 ) ( 1465 577 142 ) metals/mt_sr_v24 -25 -61 -90 1 1 134217728 0 0 +} +// brush 5 +{ +( 1470 574 105 ) ( 1468 574 105 ) ( 1467 573 105 ) metals/mt_sr_v24 -21 7 -90 1 -1 134217728 0 0 +( 1468 570 105 ) ( 1462 562 133 ) ( 1464 562 133 ) metals/mt_sr_v24 -8 9 90 1 1 134217728 0 0 +( 1467 573 105 ) ( 1461 565 133 ) ( 1461 563 133 ) metals/mt_sr_v24 -8 -44 90 1 -1 134217728 0 0 +( 1470 574 105 ) ( 1464 566 133 ) ( 1462 566 133 ) metals/mt_sr_v24 -8 9 90 1 1 134217728 0 0 +( 1471 571 105 ) ( 1465 563 133 ) ( 1465 565 133 ) metals/mt_sr_v24 -8 -44 90 1 -1 134217728 0 0 +( 1471 573 105 ) ( 1465 565 133 ) ( 1464 566 133 ) metals/mt_sr_v24 -8 59 90 1 1 134217728 0 0 +( 1468 574 105 ) ( 1462 566 133 ) ( 1461 565 133 ) metals/mt_sr_v24 -8 33 90 1 1 134217728 0 0 +( 1467 571 105 ) ( 1461 563 133 ) ( 1462 562 133 ) metals/mt_sr_v24 -8 29 90 1 1 134217728 0 0 +( 1470 570 105 ) ( 1464 562 133 ) ( 1465 563 133 ) metals/mt_sr_v24 -8 5 90 1 1 134217728 0 0 +( 1471 564 132 ) ( 1461 562 131 ) ( 1461 566 133 ) metals/mt_sr_v24 -22 -61 -90 1 1 134217728 0 0 +} +// brush 6 +{ +( 1468 558 189 ) ( 1468 562 189 ) ( 1464 562 189 ) metals/mt_sr_v24 -8 9 -90 1 -1 134217728 0 0 +( 1468 558 188 ) ( 1464 558 188 ) ( 1464 558 197 ) metals/mt_sr_v24 -28 12 90 1 1 134217728 0 0 +( 1464 558 188 ) ( 1464 562 188 ) ( 1464 562 197 ) metals/mt_sr_v24 -28 -32 90 1 -1 134217728 0 0 +( 1464 562 188 ) ( 1468 562 188 ) ( 1468 562 197 ) metals/mt_sr_v24 -28 12 90 1 1 134217728 0 0 +( 1468 562 188 ) ( 1468 558 188 ) ( 1468 558 197 ) metals/mt_sr_v24 -28 -32 90 1 -1 134217728 0 0 +( 1469 560 197 ) ( 1465 564 197 ) ( 1467 562 188 ) metals/mt_sr_v24 -28 46 90 1 1 134217728 0 0 +( 1467 564 197 ) ( 1463 560 197 ) ( 1465 562 188 ) metals/mt_sr_v24 -28 21 90 1 1 134217728 0 0 +( 1463 560 197 ) ( 1467 556 197 ) ( 1465 558 188 ) metals/mt_sr_v24 -28 17 90 1 1 134217728 0 0 +( 1466 557 197 ) ( 1470 561 197 ) ( 1468 559 188 ) metals/mt_sr_v24 -28 59 90 1 1 134217728 0 0 +( 1468 558 193 ) ( 1464 558 197 ) ( 1466 562 195 ) metals/mt_sr_v24 -9 -63 -90 1 1 134217728 0 0 +} +// brush 7 +{ +( 1471 562 193 ) ( 1471 562 197 ) ( 1471 558 197 ) metals/mt_sr_v24 -10 12 -180 1 -1 134217728 0 0 +( 1472 558 197 ) ( 1472 562 197 ) ( 1472 562 193 ) metals/mt_sr_v24 -10 12 -180 1 -1 134217728 0 0 +( 1472 557 194 ) ( 1471 557 194 ) ( 1471 557 196 ) metals/mt_sr_v24 25 15 0 1 1 134217728 0 0 +( 1472 561 192 ) ( 1471 561 192 ) ( 1471 559 192 ) metals/mt_sr_v24 24 -31 0 1 1 134217728 0 0 +( 1472 563 196 ) ( 1471 563 196 ) ( 1471 563 194 ) metals/mt_sr_v24 25 15 0 1 1 134217728 0 0 +( 1472 559 198 ) ( 1471 559 198 ) ( 1471 561 198 ) metals/mt_sr_v24 24 -31 0 1 1 134217728 0 0 +( 1472 561 198 ) ( 1471 561 198 ) ( 1471 563 196 ) metals/mt_sr_v24 23 -19 0 1 1 134217728 0 0 +( 1472 563 194 ) ( 1471 563 194 ) ( 1471 561 192 ) metals/mt_sr_v24 24 -27 0 1 1 134217728 0 0 +( 1471 557 194 ) ( 1472 557 194 ) ( 1472 559 192 ) metals/mt_sr_v24 23 -35 0 1 1 134217728 0 0 +( 1472 557 196 ) ( 1471 557 196 ) ( 1471 559 198 ) metals/mt_sr_v24 24 -43 0 1 1 134217728 0 0 +} +// brush 8 +{ +( 1471 558 197 ) ( 1471 562 197 ) ( 1471 562 193 ) metals/mt_sr_v24 -10 13 -180 1 -1 134217728 0 0 +( 1478 558 197 ) ( 1478 558 193 ) ( 1469 558 193 ) metals/mt_sr_v24 27 16 0 1 1 134217728 0 0 +( 1478 558 193 ) ( 1478 562 193 ) ( 1469 562 193 ) metals/mt_sr_v24 26 -31 0 1 1 134217728 0 0 +( 1478 562 193 ) ( 1478 562 197 ) ( 1469 562 197 ) metals/mt_sr_v24 27 16 0 1 1 134217728 0 0 +( 1478 562 197 ) ( 1478 558 197 ) ( 1469 558 197 ) metals/mt_sr_v24 26 -31 0 1 1 134217728 0 0 +( 1469 560 198 ) ( 1469 564 194 ) ( 1478 562 196 ) metals/mt_sr_v24 25 -21 0 1 1 134217728 0 0 +( 1469 564 196 ) ( 1469 560 192 ) ( 1478 562 194 ) metals/mt_sr_v24 26 -29 0 1 1 134217728 0 0 +( 1469 560 192 ) ( 1469 556 196 ) ( 1478 558 194 ) metals/mt_sr_v24 25 -33 0 1 1 134217728 0 0 +( 1469 557 195 ) ( 1469 561 199 ) ( 1478 559 197 ) metals/mt_sr_v24 26 -41 0 1 1 134217728 0 0 +( 1464 558 197 ) ( 1468 558 193 ) ( 1466 562 195 ) metals/mt_sr_v24 -48 -29 -180 1 -1 134217728 0 0 +} +} +// entity 21 +{ +"classname" "func_wall" +// brush 0 +{ +( 1471 674 159 ) ( 1467 674 159 ) ( 1467 670 159 ) metals/mt_sr_v24 4 -59 -90 1 1 134217728 0 0 +( 1467 670 160 ) ( 1467 674 160 ) ( 1471 674 160 ) metals/mt_sr_v24 4 -59 -90 1 1 134217728 0 0 +( 1470 669 160 ) ( 1470 669 159 ) ( 1468 669 159 ) metals/mt_sr_v24 56 -56 -90 1 1 134217728 0 0 +( 1472 673 160 ) ( 1472 673 159 ) ( 1472 671 159 ) metals/mt_sr_v24 55 49 -90 1 1 134217728 0 0 +( 1468 675 160 ) ( 1468 675 159 ) ( 1470 675 159 ) metals/mt_sr_v24 56 -56 -90 1 1 134217728 0 0 +( 1466 671 160 ) ( 1466 671 159 ) ( 1466 673 159 ) metals/mt_sr_v24 55 49 -90 1 1 134217728 0 0 +( 1466 673 160 ) ( 1466 673 159 ) ( 1468 675 159 ) metals/mt_sr_v24 54 61 -90 1 1 134217728 0 0 +( 1470 675 160 ) ( 1470 675 159 ) ( 1472 673 159 ) metals/mt_sr_v24 55 53 -90 1 1 134217728 0 0 +( 1470 669 159 ) ( 1470 669 160 ) ( 1472 671 160 ) metals/mt_sr_v24 54 45 -90 1 1 134217728 0 0 +( 1468 669 160 ) ( 1468 669 159 ) ( 1466 671 159 ) metals/mt_sr_v24 55 37 -90 1 1 134217728 0 0 +} +// brush 1 +{ +( 1471 670 105 ) ( 1471 674 105 ) ( 1467 674 105 ) metals/mt_sr_v24 6 8 -90 1 -1 134217728 0 0 +( 1471 670 104 ) ( 1467 670 104 ) ( 1467 670 113 ) metals/mt_sr_v24 -8 9 90 1 1 134217728 0 0 +( 1467 670 104 ) ( 1467 674 104 ) ( 1467 674 113 ) metals/mt_sr_v24 -7 47 90 1 -1 134217728 0 0 +( 1467 674 104 ) ( 1471 674 104 ) ( 1471 674 113 ) metals/mt_sr_v24 -8 9 90 1 1 134217728 0 0 +( 1471 674 104 ) ( 1471 670 104 ) ( 1471 670 113 ) metals/mt_sr_v24 -7 47 90 1 -1 134217728 0 0 +( 1472 672 113 ) ( 1468 676 113 ) ( 1470 674 104 ) metals/mt_sr_v24 -7 -34 90 1 1 134217728 0 0 +( 1470 676 113 ) ( 1466 672 113 ) ( 1468 674 104 ) metals/mt_sr_v24 -7 -59 90 1 1 134217728 0 0 +( 1466 672 113 ) ( 1470 668 113 ) ( 1468 670 104 ) metals/mt_sr_v24 -7 -63 90 1 1 134217728 0 0 +( 1469 669 113 ) ( 1473 673 113 ) ( 1471 671 104 ) metals/mt_sr_v24 -7 -23 90 1 1 134217728 0 0 +( 1469 670 159 ) ( 1467 674 159 ) ( 1471 674 159 ) metals/mt_sr_v24 5 -62 -90 1 1 134217728 0 0 +} +// brush 2 +{ +( 1467 674 105 ) ( 1471 674 105 ) ( 1471 670 105 ) metals/mt_sr_v24 6 7 -90 1 -1 134217728 0 0 +( 1471 670 104 ) ( 1471 674 104 ) ( 1467 674 104 ) metals/mt_sr_v24 6 7 -90 1 -1 134217728 0 0 +( 1470 669 105 ) ( 1470 669 104 ) ( 1468 669 104 ) metals/mt_sr_v24 -8 8 90 1 1 134217728 0 0 +( 1466 671 105 ) ( 1466 671 104 ) ( 1466 673 104 ) metals/mt_sr_v24 -7 47 90 1 -1 134217728 0 0 +( 1468 675 105 ) ( 1468 675 104 ) ( 1470 675 104 ) metals/mt_sr_v24 -8 8 90 1 1 134217728 0 0 +( 1472 673 105 ) ( 1472 673 104 ) ( 1472 671 104 ) metals/mt_sr_v24 -7 47 90 1 -1 134217728 0 0 +( 1472 673 104 ) ( 1472 673 105 ) ( 1470 675 105 ) metals/mt_sr_v24 -7 -41 90 1 1 134217728 0 0 +( 1466 673 105 ) ( 1466 673 104 ) ( 1468 675 104 ) metals/mt_sr_v24 -7 -1 90 1 1 134217728 0 0 +( 1468 669 105 ) ( 1468 669 104 ) ( 1466 671 104 ) metals/mt_sr_v24 -7 -58 90 1 1 134217728 0 0 +( 1472 671 105 ) ( 1472 671 104 ) ( 1470 669 104 ) metals/mt_sr_v24 -7 -17 90 1 1 134217728 0 0 +} +} +// entity 22 +{ +"classname" "func_wall" +// brush 0 +{ +( 1456 662 182 ) ( 1460 662 182 ) ( 1460 660 183 ) metals/mt_sr_v24 55 56 0 1 1 134217728 0 0 +( 1456 660 183 ) ( 1460 660 183 ) ( 1460 658 182 ) metals/mt_sr_v24 55 56 0 1 1 134217728 0 0 +( 1456 658 182 ) ( 1460 658 182 ) ( 1460 658 180 ) metals/mt_sr_v24 -63 34 90 1 1 134217728 0 0 +( 1460 660 179 ) ( 1456 660 179 ) ( 1456 658 180 ) metals/mt_sr_v24 55 56 0 1 1 134217728 0 0 +( 1460 662 180 ) ( 1456 662 180 ) ( 1456 660 179 ) metals/mt_sr_v24 55 56 0 1 1 134217728 0 0 +( 1460 662 182 ) ( 1456 662 182 ) ( 1456 662 180 ) metals/mt_sr_v24 48 18 0 1 1 134217728 0 0 +( 1460 658 187 ) ( 1460 667 187 ) ( 1460 667 177 ) metals/mt_sr_v24 0 55 90 1 -1 134217728 0 0 +( 1456 667 177 ) ( 1456 667 187 ) ( 1456 658 187 ) metals/mt_sr_v24 0 55 90 1 -1 134217728 0 0 +} +// brush 1 +{ +( 1458 658 182 ) ( 1458 658 180 ) ( 1458 653 180 ) metals/mt_sr_v24 -56 23 90 1 -1 134217728 0 0 +( 1456 653 180 ) ( 1456 658 180 ) ( 1456 658 182 ) metals/mt_sr_v24 -56 23 90 1 -1 134217728 0 0 +( 1460 653 182 ) ( 1456 653 182 ) ( 1456 658 182 ) metals/mt_sr_v24 -54 24 -180 1 -1 134217728 0 0 +( 1460 653 180 ) ( 1456 653 180 ) ( 1456 653 182 ) metals/mt_sr_v24 7 43 -90 1 -1 134217728 0 0 +( 1460 658 180 ) ( 1456 658 180 ) ( 1456 653 180 ) metals/mt_sr_v24 -54 24 -180 1 -1 134217728 0 0 +( 1460 658 182 ) ( 1456 658 182 ) ( 1456 658 180 ) metals/mt_sr_v24 7 43 -90 1 -1 134217728 0 0 +} +// brush 2 +{ +( 1458 654 154 ) ( 1458 653 154 ) ( 1459 653 154 ) common/li_sr_v10 -62 15 90 0.250000 0.250000 134217728 0 0 +( 1457 653 180 ) ( 1456 653 180 ) ( 1456 654 180 ) common/li_sr_v10 -62 15 90 0.250000 0.250000 134217728 0 0 +( 1457 654 176 ) ( 1457 654 180 ) ( 1456 654 180 ) common/li_sr_v10 -62 2 90 0.250000 0.250000 134217728 0 0 +( 1457 653 176 ) ( 1457 653 180 ) ( 1457 654 180 ) common/li_sr_v10 -62 -15 90 0.250000 0.250000 134217728 0 0 +( 1456 653 176 ) ( 1456 653 180 ) ( 1457 653 180 ) common/li_sr_v10 -62 2 90 0.250000 0.250000 134217728 0 0 +( 1456 654 176 ) ( 1456 654 180 ) ( 1456 653 180 ) common/li_sr_v10 -62 -15 90 0.250000 0.250000 134217728 0 0 +} +} +// entity 23 +{ +"classname" "func_wall" +// brush 0 +{ +( 1254 408 80 ) ( 1261 408 80 ) ( 1263 416 80 ) bricks/b_sr_mv1 42 -30 -180 0.504639 0.500000 134217728 0 0 +( 1255 424 84 ) ( 1264 416 84 ) ( 1262 408 84 ) bricks/b_sr_mv1 61 -30 -180 0.501465 0.500000 134217728 0 0 +( 1254 408 84 ) ( 1262 408 84 ) ( 1261 408 80 ) bricks/b_sr_mv1 90 85 -99 0.499985 0.500066 134217728 0 0 +( 1254 416 84 ) ( 1254 412 84 ) ( 1254 416 80 ) bricks/b_sr_mv1 84 -31 -90 0.493896 -0.500000 134217728 0 0 +( 1257 411 84 ) ( 1253 416 80 ) ( 1260 407 80 ) bricks/b_sr_mv1 75 -31 -90 0.493805 -0.500000 134217728 0 0 +} +// brush 1 +{ +( 1271 404 80 ) ( 1278 402 80 ) ( 1282 409 80 ) bricks/b_sr_mv1 1 -52 -161 0.504562 0.499992 134217728 0 0 +( 1277 419 84 ) ( 1283 408 84 ) ( 1279 401 84 ) bricks/b_sr_mv1 127 -63 -162 0.501585 0.499978 134217728 0 0 +( 1271 404 84 ) ( 1279 401 84 ) ( 1278 402 80 ) bricks/b_sr_mv1 112 1 -98 0.499333 0.476098 134217728 0 0 +( 1279 401 84 ) ( 1283 408 84 ) ( 1282 409 80 ) bricks/b_sr_mv1 60 -36 -94 0.495276 -0.435608 134217728 0 0 +( 1275 406 84 ) ( 1277 401 80 ) ( 1273 412 80 ) bricks/b_sr_mv1 75 -22 -90 0.493823 -0.595692 134217728 0 0 +( 1277 407 84 ) ( 1269 411 80 ) ( 1284 404 80 ) bricks/b_sr_mv1 75 -48 -90 0.493805 -0.456299 134217728 0 0 +} +// brush 2 +{ +( 1260 407 80 ) ( 1266 410 80 ) ( 1263 418 80 ) bricks/b_sr_mv1 94 -86 146 0.504646 0.499991 134217728 0 0 +( 1252 421 84 ) ( 1264 419 84 ) ( 1267 411 84 ) bricks/b_sr_mv1 104 -87 146 0.501599 0.499873 134217728 0 0 +( 1260 407 84 ) ( 1267 411 84 ) ( 1266 410 80 ) bricks/b_sr_mv1 21 74 -97 0.498137 0.420942 134217728 0 0 +( 1267 411 84 ) ( 1264 419 84 ) ( 1263 418 80 ) bricks/b_sr_mv1 109 -97 -82 0.498363 -0.482953 134217728 0 0 +( 1261 411 84 ) ( 1266 409 80 ) ( 1255 413 80 ) bricks/b_sr_mv1 125 -19 -91 0.493916 -0.597952 134217728 0 0 +( 1261 413 84 ) ( 1254 410 80 ) ( 1268 417 80 ) bricks/b_sr_mv1 75 -30 -90 0.493805 -0.453735 134217728 0 0 +} +// brush 3 +{ +( 1376 288 80 ) ( 1264 288 80 ) ( 1264 608 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 67108864 0 +( 1392 480 64 ) ( 1392 480 80 ) ( 1280 480 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1248 288 70 ) ( 1248 288 86 ) ( 1248 608 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1280 448 64 ) ( 1280 448 80 ) ( 1392 448 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1216 608 70 ) ( 1216 608 86 ) ( 1216 288 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1044 320 78 ) ( 1048 656 78 ) ( 1040 656 78 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +} +// brush 4 +{ +( 1376 256 80 ) ( 1264 256 80 ) ( 1264 576 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 67108864 0 +( 1392 448 64 ) ( 1392 448 80 ) ( 1280 448 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1280 256 70 ) ( 1280 256 86 ) ( 1280 576 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1280 416 64 ) ( 1280 416 80 ) ( 1392 416 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1216 576 70 ) ( 1216 576 86 ) ( 1216 256 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1044 288 78 ) ( 1048 624 78 ) ( 1040 624 78 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +} +// brush 5 +{ +( 1325 262 80 ) ( 1230 322 80 ) ( 1399 593 80 ) bricks/b_rc_v16 -62 -95 60 1 1 134217728 67108864 0 +( 1440 417 64 ) ( 1440 417 80 ) ( 1345 476 80 ) bricks/b_rc_v16 -113 48 0 0.848022 1 134217728 0 0 +( 1216 330 70 ) ( 1216 330 86 ) ( 1386 602 86 ) bricks/b_rc_v16 -64 48 0 0.848038 1 134217728 0 0 +( 1328 449 64 ) ( 1328 449 80 ) ( 1423 390 80 ) bricks/b_rc_v16 -93 48 0 0.848022 1 134217728 0 0 +( 1359 619 70 ) ( 1359 619 86 ) ( 1189 347 86 ) bricks/b_rc_v16 -44 48 0 0.848061 1 134217728 0 0 +( 1060 466 78 ) ( 1242 748 78 ) ( 1235 753 78 ) bricks/b_rc_v16 -95 1 32 0.999972 0.999998 134217728 0 0 +} +// brush 6 +{ +( 1329 628 80 ) ( 1375 526 80 ) ( 1082 395 80 ) bricks/b_rc_v16 -64 16 0 1 1 134217728 67108864 0 +( 1345 513 64 ) ( 1345 513 80 ) ( 1300 615 80 ) bricks/b_rc_v16 -24 48 0 0.913544 1 134217728 0 0 +( 1102 352 70 ) ( 1102 352 86 ) ( 1394 482 86 ) bricks/b_rc_v16 -54 48 0 0.913574 1 134217728 0 0 +( 1435 312 78 ) ( 1126 179 78 ) ( 1130 171 78 ) bricks/b_rc_v16 -1 51 -23 1.000021 0.999985 134217728 0 0 +( 1342 481 80 ) ( 1337 474 76 ) ( 1348 487 76 ) bricks/b_rc_v16 44 48 -180 0.863770 -1 134217728 0 0 +( 1351 471 80 ) ( 1358 466 78 ) ( 1344 477 78 ) bricks/b_rc_v16 -92 48 0 0.863525 1 134217728 0 0 +} +// brush 7 +{ +( 1441 574 80 ) ( 1395 472 80 ) ( 1103 602 80 ) bricks/b_rc_v16 -68 24 0 1 1 134217728 67108864 0 +( 1083 558 70 ) ( 1083 558 86 ) ( 1376 428 86 ) bricks/b_rc_v16 -33 48 0 0.913696 1 134217728 0 0 +( 1276 284 78 ) ( 971 424 78 ) ( 968 417 78 ) bricks/b_rc_v16 -119 1 23 1.000027 0.999999 134217728 0 0 +( 1331 465 80 ) ( 1317 454 76 ) ( 1345 476 76 ) bricks/b_rc_v16 85 47 -180 0.863403 -1 134217728 0 0 +( 1340 465 80 ) ( 1331 465 76 ) ( 1349 466 76 ) bricks/b_rc_v16 -32 48 0 1.116943 1 134217728 0 0 +( 1339 453 80 ) ( 1338 462 78 ) ( 1339 444 78 ) bricks/b_rc_v16 -36 48 0 1.116913 1 134217728 0 0 +} +// brush 8 +{ +( 1568 352 80 ) ( 1456 352 80 ) ( 1456 672 80 ) bricks/b_rc_v16 -64 0 0 1 1 134217728 0 0 +( 1456 384 64 ) ( 1456 384 80 ) ( 1568 384 80 ) bricks/b_rc_v16 -64 48 0 1 1 134217728 0 0 +( 1408 672 70 ) ( 1408 672 86 ) ( 1408 352 86 ) bricks/b_rc_v16 0 48 0 1 1 134217728 0 0 +( 1236 384 78 ) ( 1240 720 78 ) ( 1232 720 78 ) bricks/b_rc_v16 -64 0 0 1 1 134217728 0 0 +( 1424 408 80 ) ( 1408 416 76 ) ( 1440 400 76 ) bricks/b_rc_v16 -64 48 0 1 1 134217728 0 0 +( 1428 400 80 ) ( 1424 408 76 ) ( 1432 392 76 ) bricks/b_rc_v16 0 48 0 1 1 134217728 0 0 +} +// brush 9 +{ +( 1408 480 78 ) ( 1408 448 78 ) ( 1440 448 78 ) bricks/b_rc_v16 -64 0 0 1 1 134217728 0 0 +( 1440 448 80 ) ( 1408 448 80 ) ( 1408 480 80 ) bricks/b_rc_v16 -64 0 0 1 1 134217728 0 0 +( 1440 480 78 ) ( 1440 480 86 ) ( 1408 480 86 ) bricks/b_rc_v16 -64 44 0 1 1 134217728 0 0 +( 1440 448 76 ) ( 1440 448 84 ) ( 1440 480 84 ) bricks/b_rc_v16 0 44 0 1 1 134217728 0 0 +( 1408 448 76 ) ( 1408 448 84 ) ( 1440 448 84 ) bricks/b_rc_v16 -64 44 0 1 1 134217728 0 0 +( 1428 464 86 ) ( 1432 448 78 ) ( 1424 480 78 ) bricks/b_rc_v16 0 44 0 1 1 134217728 0 0 +} +// brush 10 +{ +( 1457 444 88 ) ( 1482 503 88 ) ( 1453 516 88 ) bricks/b_sr_v20b 109 -69 -156 0.999671 -1.000079 134217728 0 0 +( 1477 496 90 ) ( 1457 444 88 ) ( 1454 446 92 ) bricks/b_sr_v20b -27 107 23 0.999919 0.999905 134217728 0 0 +( 1452 446 92 ) ( 1455 506 92 ) ( 1474 498 92 ) bricks/b_sr_v20b 109 -69 -156 0.999671 -1.000079 134217728 0 0 +( 1472 494 91 ) ( 1452 446 94 ) ( 1452 446 88 ) bricks/b_sr_v20b 96 1 -90 1 0.920532 134217728 0 0 +( 1458 456 92 ) ( 1459 455 88 ) ( 1456 457 88 ) bricks/b_sr_v20b 96 47 -90 1 0.920288 134217728 0 0 +( 1464 462 92 ) ( 1460 467 88 ) ( 1468 457 88 ) bricks/b_sr_v20b 96 62 -90 0.999969 0.850990 134217728 0 0 +} +// brush 11 +{ +( 1466 442 112 ) ( 1466 442 88 ) ( 1436 431 88 ) bricks/b_sr_v20b 126 -118 -180 0.933472 1 134217728 0 0 +( 1466 442 88 ) ( 1443 502 88 ) ( 1413 491 88 ) bricks/b_sr_v20b 9 18 159 1.000247 -1.000015 134217728 0 0 +( 1444 494 90 ) ( 1466 442 88 ) ( 1462 441 92 ) bricks/b_sr_v20b -83 22 -20 1.000137 0.999966 134217728 0 0 +( 1460 440 92 ) ( 1421 485 92 ) ( 1440 493 92 ) bricks/b_sr_v20b 9 18 159 1.000247 -1.000015 134217728 0 0 +( 1442 489 91 ) ( 1460 440 94 ) ( 1460 440 88 ) bricks/b_sr_v20b 96 -5 -90 1 0.933586 134217728 0 0 +( 1458 451 92 ) ( 1456 451 88 ) ( 1459 452 88 ) bricks/b_sr_v20b 96 25 -90 1 0.933472 134217728 0 0 +( 1462 450 92 ) ( 1460 452 88 ) ( 1463 450 88 ) bricks/b_sr_v20b 124 21 -85 1.003028 0.977646 134217728 0 0 +} +// brush 12 +{ +( 1458 460 88 ) ( 1458 524 88 ) ( 1426 524 88 ) bricks/b_sr_v20b 14 45 -180 1 -1 134217728 0 0 +( 1456 516 90 ) ( 1458 460 88 ) ( 1454 460 92 ) bricks/b_sr_v20b -76 45 0 1 1 134217728 0 0 +( 1452 460 92 ) ( 1432 516 92 ) ( 1452 516 92 ) bricks/b_sr_v20b 14 45 -180 1 -1 134217728 0 0 +( 1452 512 91 ) ( 1452 460 94 ) ( 1452 460 88 ) bricks/b_sr_v20b 96 43 -90 1 1 134217728 0 0 +( 1456 495 88 ) ( 1459 494 92 ) ( 1453 496 92 ) bricks/b_sr_v20b 96 46 -90 1 1 134217728 0 0 +( 1458 491 92 ) ( 1464 488 88 ) ( 1452 494 88 ) bricks/b_sr_v20b 96 46 -90 1 1 134217728 0 0 +} +// brush 13 +{ +( 1458 469 88 ) ( 1460 469 88 ) ( 1460 485 88 ) bricks/b_sr_v20b 48 -90 90 1 1 134217728 0 0 +( 1460 485 91 ) ( 1460 469 91 ) ( 1458 469 91 ) bricks/b_sr_v20b 48 -90 90 1 1 134217728 0 0 +( 1458 483 91 ) ( 1458 471 91 ) ( 1458 471 89 ) bricks/b_sr_v20b 48 -97 0 1 -1 134217728 0 0 +( 1460 485 91 ) ( 1458 483 91 ) ( 1458 483 89 ) bricks/b_sr_v20b -64 -98 0 1 -1 134217728 0 0 +( 1460 469 88 ) ( 1460 469 90 ) ( 1460 485 90 ) bricks/b_sr_v20b 48 -97 0 1 -1 134217728 0 0 +( 1460 476 91 ) ( 1462 474 88 ) ( 1457 479 88 ) bricks/b_sr_v20b 6 -97 -180 1 1 134217728 0 0 +} +// brush 14 +{ +( 1460 487 88 ) ( 1468 487 88 ) ( 1468 489 88 ) bricks/b_sr_v20b 48 -90 90 1 1 134217728 0 0 +( 1468 489 91 ) ( 1468 487 91 ) ( 1460 487 91 ) bricks/b_sr_v20b 48 -90 90 1 1 134217728 0 0 +( 1460 483 88 ) ( 1460 485 88 ) ( 1460 485 90 ) bricks/b_sr_v20b 48 -97 0 1 -1 134217728 0 0 +( 1468 489 91 ) ( 1460 485 91 ) ( 1460 485 89 ) bricks/b_sr_v20b 66 -98 -180 1 1 134217728 0 0 +( 1468 487 89 ) ( 1468 487 91 ) ( 1468 489 91 ) bricks/b_sr_v20b 48 -97 0 1 -1 134217728 0 0 +( 1468 487 89 ) ( 1460 483 89 ) ( 1460 483 91 ) bricks/b_sr_v20b 66 -98 -180 1 1 134217728 0 0 +} +// brush 15 +{ +( 1472 487 90 ) ( 1472 467 90 ) ( 1459 467 90 ) bricks/b_sr_v31d -64 0 0 1 1 134217728 0 0 +( 1473 487 89 ) ( 1473 487 91 ) ( 1460 487 91 ) bricks/b_sr_v31d -64 48 0 1 1 134217728 0 0 +( 1472 467 89 ) ( 1472 467 91 ) ( 1472 487 91 ) bricks/b_sr_v31d 0 48 0 1 1 134217728 0 0 +( 1459 465 89 ) ( 1459 465 91 ) ( 1472 465 91 ) bricks/b_sr_v31d -64 48 0 1 1 134217728 0 0 +( 1464 485 91 ) ( 1460 483 89 ) ( 1468 487 89 ) bricks/b_sr_v31d -64 48 0 1 1 134217728 0 0 +( 1464 467 89 ) ( 1469 487 89 ) ( 1459 487 89 ) bricks/b_sr_v31d -64 0 0 1 1 134217728 0 0 +( 1463 473 90 ) ( 1468 468 89 ) ( 1458 478 89 ) bricks/b_sr_v31d 0 48 0 1 1 134217728 0 0 +( 1460 477 90 ) ( 1460 474 89 ) ( 1460 481 89 ) bricks/b_sr_v31d 0 48 0 1 1 134217728 0 0 +} +// brush 16 +{ +( 1460 465 88 ) ( 1468 465 88 ) ( 1468 467 88 ) bricks/b_sr_v20b 48 -90 90 1 1 134217728 0 0 +( 1468 467 91 ) ( 1468 465 91 ) ( 1460 465 91 ) bricks/b_sr_v20b 48 -90 90 1 1 134217728 0 0 +( 1468 467 91 ) ( 1460 471 91 ) ( 1460 471 89 ) bricks/b_sr_v20b 66 -98 -180 1 1 134217728 0 0 +( 1468 465 89 ) ( 1468 465 91 ) ( 1468 467 91 ) bricks/b_sr_v20b 48 -97 0 1 -1 134217728 0 0 +( 1468 465 89 ) ( 1460 469 89 ) ( 1460 469 91 ) bricks/b_sr_v20b 66 -98 -180 1 1 134217728 0 0 +( 1465 467 91 ) ( 1465 465 88 ) ( 1465 469 88 ) bricks/b_sr_v20b 2 -98 -180 1 1 134217728 0 0 +} +// brush 17 +{ +( 1448 461 88 ) ( 1472 461 88 ) ( 1472 493 88 ) bricks/b_sr_v20b 48 -90 90 1 1 134217728 0 0 +( 1472 461 88 ) ( 1472 461 152 ) ( 1472 493 152 ) bricks/b_sr_v20b 48 -96 0 1 -1 134217728 0 0 +( 1470 463 144 ) ( 1472 461 88 ) ( 1468 465 88 ) bricks/b_sr_v20b 18 -96 -180 1 1 134217728 0 0 +( 1468 467 88 ) ( 1468 487 144 ) ( 1468 467 144 ) bricks/b_sr_v20b 48 -96 0 1 -1 134217728 0 0 +( 1469 467 140 ) ( 1466 467 88 ) ( 1472 467 88 ) bricks/b_sr_v20b 67 -97 -180 1 1 134217728 0 0 +( 1472 463 123 ) ( 1468 460 122 ) ( 1468 466 124 ) bricks/b_sr_v20b 67 -49 -180 1 1 134217728 0 0 +} +// brush 18 +{ +( 1448 461 88 ) ( 1472 461 88 ) ( 1472 493 88 ) bricks/b_sr_v20b 48 -90 90 1 1 134217728 0 0 +( 1470 467 88 ) ( 1470 471 88 ) ( 1470 471 140 ) bricks/b_sr_v24t 4 -84 0 1 -1 134217728 0 0 +( 1469 467 137 ) ( 1472 467 85 ) ( 1466 467 85 ) bricks/b_sr_v20b 90 73 -180 1 -1 134217728 0 0 +( 1471 472 140 ) ( 1471 476 88 ) ( 1471 467 88 ) bricks/b_sr_v20b 47 72 0 1 1 134217728 0 0 +( 1471 477 140 ) ( 1470 471 140 ) ( 1470 471 88 ) bricks/b_sr_v24t 4 -84 0 1 -1 134217728 0 0 +( 1471 477 125 ) ( 1470 475 126 ) ( 1470 480 123 ) bricks/b_sr_v24t -60 -36 0 1 -1 134217728 0 0 +( 1471 466 124 ) ( 1470 459 121 ) ( 1470 473 127 ) bricks/b_sr_v24t -60 -36 0 1 -1 134217728 0 0 +( 1471 476 122 ) ( 1470 475 126 ) ( 1470 477 117 ) bricks/b_sr_v24t -60 -84 0 1 -1 134217728 0 0 +} +// brush 19 +{ +( 1448 461 88 ) ( 1472 461 88 ) ( 1472 493 88 ) bricks/b_sr_v20b 48 -90 90 1 1 134217728 0 0 +( 1470 487 90 ) ( 1470 487 146 ) ( 1468 487 146 ) bricks/b_sr_v20b 90 73 -180 1 -1 134217728 0 0 +( 1470 487 140 ) ( 1470 483 140 ) ( 1470 483 88 ) bricks/b_sr_v24t 4 -84 0 1 -1 134217728 0 0 +( 1471 472 140 ) ( 1471 476 88 ) ( 1471 467 88 ) bricks/b_sr_v20b 47 72 0 1 1 134217728 0 0 +( 1471 477 88 ) ( 1470 483 88 ) ( 1470 483 140 ) bricks/b_sr_v24t 4 -84 0 1 -1 134217728 0 0 +( 1471 482 124 ) ( 1470 477 125 ) ( 1470 487 123 ) bricks/b_sr_v24t -60 -36 0 1 -1 134217728 0 0 +( 1471 478 117 ) ( 1470 477 108 ) ( 1470 479 125 ) bricks/b_sr_v24t -60 -84 0 1 -1 134217728 0 0 +} +// brush 20 +{ +( 1448 461 88 ) ( 1472 461 88 ) ( 1472 493 88 ) bricks/b_sr_v20b 48 -90 90 1 1 134217728 0 0 +( 1468 493 88 ) ( 1468 493 152 ) ( 1468 461 152 ) bricks/b_sr_v20b 48 -96 0 1 -1 134217728 0 0 +( 1472 461 88 ) ( 1472 461 152 ) ( 1472 493 152 ) bricks/b_sr_v20b 48 -96 0 1 -1 134217728 0 0 +( 1470 491 144 ) ( 1468 489 88 ) ( 1472 493 88 ) bricks/b_sr_v20b -52 -97 0 1 -1 134217728 0 0 +( 1470 487 88 ) ( 1468 487 144 ) ( 1470 487 144 ) bricks/b_sr_v20b 67 -97 -180 1 1 134217728 0 0 +( 1472 487 125 ) ( 1468 482 134 ) ( 1468 493 116 ) bricks/b_sr_v20b 67 -97 -180 1 1 134217728 0 0 +} +// brush 21 +{ +( 1243 384 104 ) ( 1261 384 100 ) ( 1261 388 100 ) bricks/b_sr_mv1 116 -71 -180 0.493774 0.500000 134217728 0 0 +( 1277 384 111 ) ( 1245 384 116 ) ( 1245 388 116 ) bricks/b_sr_mv1 120 -71 -180 0.493774 0.500000 134217728 0 0 +( 1276 388 107 ) ( 1245 388 112 ) ( 1243 388 104 ) bricks/b_sr_mv1 29 118 -8 0.500172 0.499906 134217728 0 0 +( 1243 388 104 ) ( 1245 388 111 ) ( 1245 384 111 ) bricks/b_sr_mv1 4 -71 -90 0.493896 -0.500000 134217728 0 0 +( 1245 384 116 ) ( 1267 384 112 ) ( 1265 384 100 ) bricks/b_sr_mv1 5 -32 -99 0.499936 0.500052 134217728 0 0 +( 1249 384 115 ) ( 1245 384 111 ) ( 1245 388 111 ) bricks/b_sr_mv1 53 31 -90 0.493866 0.500000 134217728 0 0 +( 1261 384 107 ) ( 1261 388 113 ) ( 1261 388 101 ) bricks/b_sr_mv1 12 31 -90 0.493866 0.500000 134217728 0 0 +} +// brush 22 +{ +( 1243 384 104 ) ( 1243 408 104 ) ( 1240 404 108 ) bricks/b_sr_mv1 -24 -70 90 0.571838 0.500000 134217728 0 0 +( 1245 384 111 ) ( 1241 384 114 ) ( 1241 399 114 ) bricks/b_sr_mv1 120 -71 -180 0.493774 0.500000 134217728 0 0 +( 1240 399 108 ) ( 1241 399 114 ) ( 1241 384 114 ) bricks/b_sr_mv1 83 119 -180 0.500000 -0.493866 134217728 0 0 +( 1247 384 124 ) ( 1286 384 117 ) ( 1279 384 70 ) bricks/b_sr_mv1 5 -32 -99 0.499936 0.500052 134217728 0 0 +( 1243 384 104 ) ( 1245 384 111 ) ( 1245 396 111 ) bricks/b_sr_mv1 83 118 -180 0.500000 -0.493866 134217728 0 0 +( 1245 397 116 ) ( 1240 399 104 ) ( 1246 395 104 ) bricks/b_sr_mv1 6 -44 170 0.499936 0.500056 134217728 0 0 +( 1243 384 112 ) ( 1241 399 112 ) ( 1245 399 112 ) bricks/b_sr_mv1 17 -65 170 0.499936 0.500056 134217728 0 0 +} +// brush 23 +{ +( 1270 388 100 ) ( 1261 388 100 ) ( 1261 384 100 ) bricks/b_sr_mv1 116 -71 -180 0.493774 0.500000 134217728 0 0 +( 1277 384 111 ) ( 1245 384 116 ) ( 1245 388 116 ) bricks/b_sr_mv1 120 -71 -180 0.493774 0.500000 134217728 0 0 +( 1276 388 107 ) ( 1245 388 112 ) ( 1243 388 104 ) bricks/b_sr_mv1 29 118 -8 0.500172 0.499906 134217728 0 0 +( 1245 384 116 ) ( 1267 384 112 ) ( 1265 384 100 ) bricks/b_sr_mv1 5 -32 -99 0.499936 0.500052 134217728 0 0 +( 1268 388 112 ) ( 1273 388 98 ) ( 1273 384 98 ) bricks/b_sr_mv1 12 31 -90 0.493866 0.500000 134217728 0 0 +( 1271 388 104 ) ( 1270 388 100 ) ( 1270 384 100 ) bricks/b_sr_mv1 12 31 -90 0.493866 0.500000 134217728 0 0 +( 1261 384 114 ) ( 1261 384 103 ) ( 1261 388 103 ) bricks/b_sr_mv1 12 31 -90 0.493866 0.500000 134217728 0 0 +} +// brush 24 +{ +( 1316 384 102 ) ( 1316 408 102 ) ( 1312 404 106 ) bricks/b_sr_mv1 101 -71 -180 0.500000 0.500000 134217728 0 0 +( 1356 384 114 ) ( 1316 384 114 ) ( 1316 408 114 ) bricks/b_sr_mv1 101 -71 -180 0.500000 0.500000 134217728 0 0 +( 1312 408 122 ) ( 1312 384 122 ) ( 1312 384 74 ) bricks/b_sr_mv1 83 113 -180 0.500000 -0.500000 134217728 0 0 +( 1316 384 122 ) ( 1356 384 122 ) ( 1356 384 74 ) bricks/b_sr_mv1 0 47 -90 0.500000 0.500000 134217728 0 0 +( 1316 408 102 ) ( 1316 384 102 ) ( 1316 384 114 ) bricks/b_sr_mv1 83 113 -180 0.500000 -0.500000 134217728 0 0 +( 1312 404 106 ) ( 1316 408 106 ) ( 1314 406 114 ) bricks/b_sr_mv1 51 113 -180 0.500000 -0.500000 134217728 0 0 +( 1316 404 102 ) ( 1316 408 106 ) ( 1312 406 104 ) bricks/b_sr_mv1 101 -71 -180 0.500000 0.500000 134217728 0 0 +} +// brush 25 +{ +( 1316 388 102 ) ( 1316 384 102 ) ( 1348 384 102 ) bricks/b_sr_mv1 101 -71 -180 0.500000 0.500000 134217728 0 0 +( 1348 384 114 ) ( 1316 384 114 ) ( 1316 388 114 ) bricks/b_sr_mv1 101 -71 -180 0.500000 0.500000 134217728 0 0 +( 1348 384 110 ) ( 1348 388 110 ) ( 1348 388 102 ) bricks/b_sr_mv1 127 -71 -90 0.500000 -0.500000 134217728 0 0 +( 1348 388 110 ) ( 1316 388 110 ) ( 1316 388 102 ) bricks/b_sr_mv1 -36 113 0 0.500000 0.500000 134217728 0 0 +( 1316 388 110 ) ( 1316 384 110 ) ( 1316 384 102 ) bricks/b_sr_mv1 127 -71 -90 0.500000 -0.500000 134217728 0 0 +( 1316 384 110 ) ( 1348 384 110 ) ( 1348 384 102 ) bricks/b_sr_mv1 0 47 -90 0.500000 0.500000 134217728 0 0 +} +// brush 26 +{ +( 1348 408 102 ) ( 1348 384 102 ) ( 1352 384 106 ) bricks/b_sr_mv1 101 -71 -180 0.500000 0.500000 134217728 0 0 +( 1356 384 114 ) ( 1316 384 114 ) ( 1316 408 114 ) bricks/b_sr_mv1 101 -71 -180 0.500000 0.500000 134217728 0 0 +( 1352 384 122 ) ( 1352 408 122 ) ( 1352 408 74 ) bricks/b_sr_mv1 127 -71 -90 0.500000 -0.500000 134217728 0 0 +( 1316 384 122 ) ( 1356 384 122 ) ( 1356 384 74 ) bricks/b_sr_mv1 0 47 -90 0.500000 0.500000 134217728 0 0 +( 1348 384 102 ) ( 1348 408 102 ) ( 1348 408 110 ) bricks/b_sr_mv1 83 113 -180 0.500000 -0.500000 134217728 0 0 +( 1348 408 106 ) ( 1352 404 106 ) ( 1350 406 114 ) bricks/b_sr_mv1 -44 113 0 0.500000 0.500000 134217728 0 0 +( 1352 404 102 ) ( 1352 408 106 ) ( 1348 406 104 ) bricks/b_sr_mv1 101 -71 -180 0.500000 0.500000 134217728 0 0 +} +// brush 27 +{ +( 1237 383 168 ) ( 1237 399 168 ) ( 1285 399 168 ) metals/mt_sr_v24 -3 63 0 1 1 134217728 0 0 +( 1276 383 144 ) ( 1276 383 168 ) ( 1276 399 168 ) metals/mt_sr_v24 -7 63 90 1 -1 134217728 0 0 +( 1237 384 144 ) ( 1237 384 168 ) ( 1285 384 168 ) metals/mt_sr_v24 -7 -60 90 1 1 134217728 0 0 +( 1244 399 144 ) ( 1244 399 168 ) ( 1244 383 168 ) metals/mt_sr_v24 -7 63 90 1 -1 134217728 0 0 +( 1285 386 144 ) ( 1285 386 168 ) ( 1237 386 168 ) metals/mt_sr_v24 -7 -60 90 1 1 134217728 0 0 +( 1237 383 166 ) ( 1285 399 166 ) ( 1237 399 166 ) metals/mt_sr_v24 -3 63 0 1 1 134217728 0 0 +} +// brush 28 +{ +( 1243 384 150 ) ( 1243 384 174 ) ( 1291 384 174 ) metals/mt_sr_v24 -13 -54 90 1 1 134217728 0 0 +( 1244 399 150 ) ( 1244 399 174 ) ( 1244 383 174 ) metals/mt_sr_v24 -13 63 90 1 -1 134217728 0 0 +( 1291 386 150 ) ( 1291 386 174 ) ( 1243 386 174 ) metals/mt_sr_v24 -13 -54 90 1 1 134217728 0 0 +( 1291 399 130 ) ( 1243 399 130 ) ( 1243 383 130 ) metals/mt_sr_v24 -61 63 0 1 1 134217728 0 0 +( 1244 383 166 ) ( 1244 399 166 ) ( 1292 399 166 ) metals/mt_sr_v24 -61 63 0 1 1 134217728 0 0 +( 1246 400 150 ) ( 1246 384 174 ) ( 1246 400 174 ) metals/mt_sr_v24 -13 63 90 1 -1 134217728 0 0 +} +// brush 29 +{ +( 1273 384 150 ) ( 1273 384 174 ) ( 1321 384 174 ) metals/mt_sr_v24 -13 -25 90 1 1 134217728 0 0 +( 1274 400 150 ) ( 1274 400 174 ) ( 1274 384 174 ) metals/mt_sr_v24 -13 63 90 1 -1 134217728 0 0 +( 1321 386 150 ) ( 1321 386 174 ) ( 1273 386 174 ) metals/mt_sr_v24 -13 -25 90 1 1 134217728 0 0 +( 1321 399 130 ) ( 1273 399 130 ) ( 1273 383 130 ) metals/mt_sr_v24 -31 63 0 1 1 134217728 0 0 +( 1274 383 166 ) ( 1274 399 166 ) ( 1322 399 166 ) metals/mt_sr_v24 -31 63 0 1 1 134217728 0 0 +( 1276 399 150 ) ( 1276 383 174 ) ( 1276 399 174 ) metals/mt_sr_v24 -13 63 90 1 -1 134217728 0 0 +} +// brush 30 +{ +( 1237 383 130 ) ( 1237 399 130 ) ( 1285 399 130 ) metals/mt_sr_v24 -3 63 0 1 1 134217728 0 0 +( 1276 383 107 ) ( 1276 383 131 ) ( 1276 399 131 ) metals/mt_sr_v24 -34 63 90 1 -1 134217728 0 0 +( 1237 384 107 ) ( 1237 384 131 ) ( 1285 384 131 ) metals/mt_sr_v24 -34 -60 90 1 1 134217728 0 0 +( 1244 399 107 ) ( 1244 399 131 ) ( 1244 383 131 ) metals/mt_sr_v24 -34 63 90 1 -1 134217728 0 0 +( 1285 386 107 ) ( 1285 386 131 ) ( 1237 386 131 ) metals/mt_sr_v24 -34 -60 90 1 1 134217728 0 0 +( 1237 383 128 ) ( 1285 399 128 ) ( 1237 399 128 ) metals/mt_sr_v24 -3 63 0 1 1 134217728 0 0 +} +// brush 31 +{ +( 1316 384 130 ) ( 1314 384 166 ) ( 1316 384 166 ) metals/mt_sr_v24 -13 -62 90 1 1 134217728 0 0 +( 1316 385 130 ) ( 1314 385 166 ) ( 1314 384 166 ) metals/mt_sr_v24 -13 63 90 1 -1 134217728 0 0 +( 1318 386 130 ) ( 1316 386 166 ) ( 1314 386 166 ) metals/mt_sr_v24 -13 -62 90 1 1 134217728 0 0 +( 1363 400 130 ) ( 1315 400 130 ) ( 1315 384 130 ) metals/mt_sr_v24 -5 63 0 1 1 134217728 0 0 +( 1314 383 166 ) ( 1314 399 166 ) ( 1362 399 166 ) metals/mt_sr_v24 -5 63 0 1 1 134217728 0 0 +( 1318 385 130 ) ( 1316 385 166 ) ( 1316 386 166 ) metals/mt_sr_v24 -13 63 90 1 -1 134217728 0 0 +} +// brush 32 +{ +( 1348 384 168 ) ( 1332 384 168 ) ( 1332 385 168 ) metals/mt_sr_v24 -11 63 0 1 1 134217728 0 0 +( 1348 383 144 ) ( 1348 383 168 ) ( 1348 399 168 ) metals/mt_sr_v24 -7 63 90 1 -1 134217728 0 0 +( 1348 384 166 ) ( 1332 384 166 ) ( 1332 384 168 ) metals/mt_sr_v24 -7 -4 90 1 1 134217728 0 0 +( 1328 386 168 ) ( 1312 386 168 ) ( 1312 386 166 ) metals/mt_sr_v24 -7 -4 90 1 1 134217728 0 0 +( 1348 385 166 ) ( 1332 385 166 ) ( 1332 384 166 ) metals/mt_sr_v24 -11 63 0 1 1 134217728 0 0 +( 1324 384 166 ) ( 1324 385 164 ) ( 1324 385 168 ) metals/mt_sr_v24 -19 39 0 1 1 134217728 0 0 +} +// brush 33 +{ +( 1345 384 150 ) ( 1345 384 174 ) ( 1393 384 174 ) metals/mt_sr_v24 -13 -33 90 1 1 134217728 0 0 +( 1346 400 150 ) ( 1346 400 174 ) ( 1346 384 174 ) metals/mt_sr_v24 -13 63 90 1 -1 134217728 0 0 +( 1393 386 150 ) ( 1393 386 174 ) ( 1345 386 174 ) metals/mt_sr_v24 -13 -33 90 1 1 134217728 0 0 +( 1393 400 130 ) ( 1345 400 130 ) ( 1345 384 130 ) metals/mt_sr_v24 -39 63 0 1 1 134217728 0 0 +( 1346 383 166 ) ( 1346 399 166 ) ( 1394 399 166 ) metals/mt_sr_v24 -39 63 0 1 1 134217728 0 0 +( 1348 399 150 ) ( 1348 383 174 ) ( 1348 399 174 ) metals/mt_sr_v24 -13 63 90 1 -1 134217728 0 0 +} +// brush 34 +{ +( 1309 384 130 ) ( 1309 400 130 ) ( 1357 400 130 ) metals/mt_sr_v24 -11 63 0 1 1 134217728 0 0 +( 1348 383 107 ) ( 1348 383 131 ) ( 1348 399 131 ) metals/mt_sr_v24 -34 63 90 1 -1 134217728 0 0 +( 1309 384 107 ) ( 1309 384 131 ) ( 1357 384 131 ) metals/mt_sr_v24 -34 -4 90 1 1 134217728 0 0 +( 1316 399 107 ) ( 1316 399 131 ) ( 1316 383 131 ) metals/mt_sr_v24 -34 63 90 1 -1 134217728 0 0 +( 1357 386 107 ) ( 1357 386 131 ) ( 1309 386 131 ) metals/mt_sr_v24 -34 -4 90 1 1 134217728 0 0 +( 1309 383 128 ) ( 1357 399 128 ) ( 1309 399 128 ) metals/mt_sr_v24 -11 63 0 1 1 134217728 0 0 +} +// brush 35 +{ +( 1258 385 97 ) ( 1258 385 93 ) ( 1262 385 93 ) metals/mt_sr_v24 -5 -20 0 1 -1 134217728 0 0 +( 1262 384 93 ) ( 1258 384 93 ) ( 1258 384 97 ) metals/mt_sr_v24 -5 -20 0 1 -1 134217728 0 0 +( 1263 384 96 ) ( 1263 385 96 ) ( 1263 385 94 ) metals/mt_sr_v24 0 -19 -180 1 1 134217728 0 0 +( 1259 384 98 ) ( 1259 385 98 ) ( 1261 385 98 ) metals/mt_sr_v24 0 -25 -90 1 -1 134217728 0 0 +( 1257 384 94 ) ( 1257 385 94 ) ( 1257 385 96 ) metals/mt_sr_v24 0 -19 -180 1 1 134217728 0 0 +( 1261 384 92 ) ( 1261 385 92 ) ( 1259 385 92 ) metals/mt_sr_v24 0 -25 -90 1 -1 134217728 0 0 +( 1259 384 92 ) ( 1259 385 92 ) ( 1257 385 94 ) metals/mt_sr_v24 0 -25 -90 1 -1 134217728 0 0 +( 1257 384 96 ) ( 1257 385 96 ) ( 1259 385 98 ) metals/mt_sr_v24 0 -25 -90 1 -1 134217728 0 0 +( 1263 385 96 ) ( 1263 384 96 ) ( 1261 384 98 ) metals/mt_sr_v24 0 -25 -90 1 -1 134217728 0 0 +( 1263 384 94 ) ( 1263 385 94 ) ( 1261 385 92 ) metals/mt_sr_v24 0 -25 -90 1 -1 134217728 0 0 +} +// brush 36 +{ +( 1262 385 93 ) ( 1258 385 93 ) ( 1258 385 97 ) metals/mt_sr_v24 -5 -19 0 1 -1 134217728 0 0 +( 1262 382 93 ) ( 1262 382 97 ) ( 1262 391 97 ) metals/mt_sr_v24 6 -18 -180 1 1 134217728 0 0 +( 1262 382 97 ) ( 1258 382 97 ) ( 1258 391 97 ) metals/mt_sr_v24 5 -25 -90 1 -1 134217728 0 0 +( 1258 382 97 ) ( 1258 382 93 ) ( 1258 391 93 ) metals/mt_sr_v24 6 -18 -180 1 1 134217728 0 0 +( 1258 382 93 ) ( 1262 382 93 ) ( 1262 391 93 ) metals/mt_sr_v24 5 -25 -90 1 -1 134217728 0 0 +( 1260 391 92 ) ( 1256 391 96 ) ( 1258 382 94 ) metals/mt_sr_v24 4 -25 -90 1 -1 134217728 0 0 +( 1256 391 94 ) ( 1260 391 98 ) ( 1258 382 96 ) metals/mt_sr_v24 5 -25 -90 1 -1 134217728 0 0 +( 1260 391 98 ) ( 1264 391 94 ) ( 1262 382 96 ) metals/mt_sr_v24 4 -25 -90 1 -1 134217728 0 0 +( 1263 391 95 ) ( 1259 391 91 ) ( 1261 382 93 ) metals/mt_sr_v24 5 -25 -90 1 -1 134217728 0 0 +( 1262 396 93 ) ( 1262 392 97 ) ( 1258 394 95 ) metals/mt_sr_v24 5 -25 -90 1 -1 134217728 0 0 +} +// brush 37 +{ +( 1262 392 105 ) ( 1258 392 105 ) ( 1258 396 105 ) metals/mt_sr_v24 -4 54 0 1 1 134217728 0 0 +( 1262 392 102 ) ( 1262 396 102 ) ( 1262 396 93 ) metals/mt_sr_v24 4 55 -90 1 1 134217728 0 0 +( 1262 396 102 ) ( 1258 396 102 ) ( 1258 396 93 ) metals/mt_sr_v24 6 -26 -90 1 -1 134217728 0 0 +( 1258 396 102 ) ( 1258 392 102 ) ( 1258 392 93 ) metals/mt_sr_v24 4 55 -90 1 1 134217728 0 0 +( 1258 392 102 ) ( 1262 392 102 ) ( 1262 392 93 ) metals/mt_sr_v24 6 -26 -90 1 -1 134217728 0 0 +( 1260 391 93 ) ( 1256 395 93 ) ( 1258 393 102 ) metals/mt_sr_v24 6 -20 -90 1 -1 134217728 0 0 +( 1256 393 93 ) ( 1260 397 93 ) ( 1258 395 102 ) metals/mt_sr_v24 6 30 -90 1 1 134217728 0 0 +( 1260 397 93 ) ( 1264 393 93 ) ( 1262 395 102 ) metals/mt_sr_v24 6 -27 -90 1 -1 134217728 0 0 +( 1263 394 93 ) ( 1259 390 93 ) ( 1261 392 102 ) metals/mt_sr_v24 6 24 -90 1 1 134217728 0 0 +( 1262 392 97 ) ( 1262 396 93 ) ( 1258 394 95 ) metals/mt_sr_v24 -4 53 0 1 1 134217728 0 0 +} +// brush 38 +{ +( 1334 392 105 ) ( 1330 392 105 ) ( 1330 396 105 ) metals/mt_sr_v24 -12 54 0 1 1 134217728 0 0 +( 1334 392 102 ) ( 1334 396 102 ) ( 1334 396 93 ) metals/mt_sr_v24 4 55 -90 1 1 134217728 0 0 +( 1334 396 102 ) ( 1330 396 102 ) ( 1330 396 93 ) metals/mt_sr_v24 6 -34 -90 1 -1 134217728 0 0 +( 1330 396 102 ) ( 1330 392 102 ) ( 1330 392 93 ) metals/mt_sr_v24 4 55 -90 1 1 134217728 0 0 +( 1330 392 102 ) ( 1334 392 102 ) ( 1334 392 93 ) metals/mt_sr_v24 6 -34 -90 1 -1 134217728 0 0 +( 1332 391 93 ) ( 1328 395 93 ) ( 1330 393 102 ) metals/mt_sr_v24 6 -20 -90 1 -1 134217728 0 0 +( 1328 393 93 ) ( 1332 397 93 ) ( 1330 395 102 ) metals/mt_sr_v24 6 30 -90 1 1 134217728 0 0 +( 1332 397 93 ) ( 1336 393 93 ) ( 1334 395 102 ) metals/mt_sr_v24 6 -27 -90 1 -1 134217728 0 0 +( 1335 394 93 ) ( 1331 390 93 ) ( 1333 392 102 ) metals/mt_sr_v24 6 24 -90 1 1 134217728 0 0 +( 1334 392 97 ) ( 1334 396 93 ) ( 1330 394 95 ) metals/mt_sr_v24 -12 53 0 1 1 134217728 0 0 +} +// brush 39 +{ +( 1334 385 93 ) ( 1330 385 93 ) ( 1330 385 97 ) metals/mt_sr_v24 -13 -19 0 1 -1 134217728 0 0 +( 1334 382 93 ) ( 1334 382 97 ) ( 1334 391 97 ) metals/mt_sr_v24 6 -18 -180 1 1 134217728 0 0 +( 1334 382 97 ) ( 1330 382 97 ) ( 1330 391 97 ) metals/mt_sr_v24 6 -33 -90 1 -1 134217728 0 0 +( 1330 382 97 ) ( 1330 382 93 ) ( 1330 391 93 ) metals/mt_sr_v24 6 -18 -180 1 1 134217728 0 0 +( 1330 382 93 ) ( 1334 382 93 ) ( 1334 391 93 ) metals/mt_sr_v24 6 -33 -90 1 -1 134217728 0 0 +( 1332 391 92 ) ( 1328 391 96 ) ( 1330 382 94 ) metals/mt_sr_v24 5 -33 -90 1 -1 134217728 0 0 +( 1328 391 94 ) ( 1332 391 98 ) ( 1330 382 96 ) metals/mt_sr_v24 6 -33 -90 1 -1 134217728 0 0 +( 1332 391 98 ) ( 1336 391 94 ) ( 1334 382 96 ) metals/mt_sr_v24 5 -33 -90 1 -1 134217728 0 0 +( 1335 391 95 ) ( 1331 391 91 ) ( 1333 382 93 ) metals/mt_sr_v24 6 -33 -90 1 -1 134217728 0 0 +( 1334 396 93 ) ( 1334 392 97 ) ( 1330 394 95 ) metals/mt_sr_v24 6 -33 -90 1 -1 134217728 0 0 +} +// brush 40 +{ +( 1330 385 97 ) ( 1330 385 93 ) ( 1334 385 93 ) metals/mt_sr_v24 -13 -20 0 1 -1 134217728 0 0 +( 1334 384 93 ) ( 1330 384 93 ) ( 1330 384 97 ) metals/mt_sr_v24 -13 -20 0 1 -1 134217728 0 0 +( 1335 384 96 ) ( 1335 385 96 ) ( 1335 385 94 ) metals/mt_sr_v24 0 -19 -180 1 1 134217728 0 0 +( 1331 384 98 ) ( 1331 385 98 ) ( 1333 385 98 ) metals/mt_sr_v24 0 -33 -90 1 -1 134217728 0 0 +( 1329 384 94 ) ( 1329 385 94 ) ( 1329 385 96 ) metals/mt_sr_v24 0 -19 -180 1 1 134217728 0 0 +( 1333 384 92 ) ( 1333 385 92 ) ( 1331 385 92 ) metals/mt_sr_v24 0 -33 -90 1 -1 134217728 0 0 +( 1331 384 92 ) ( 1331 385 92 ) ( 1329 385 94 ) metals/mt_sr_v24 0 -33 -90 1 -1 134217728 0 0 +( 1329 384 96 ) ( 1329 385 96 ) ( 1331 385 98 ) metals/mt_sr_v24 0 -33 -90 1 -1 134217728 0 0 +( 1335 385 96 ) ( 1335 384 96 ) ( 1333 384 98 ) metals/mt_sr_v24 0 -33 -90 1 -1 134217728 0 0 +( 1335 384 94 ) ( 1335 385 94 ) ( 1333 385 92 ) metals/mt_sr_v24 0 -33 -90 1 -1 134217728 0 0 +} +// brush 41 +{ +( 1376 352 80 ) ( 1264 352 80 ) ( 1264 672 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +( 1392 576 64 ) ( 1392 576 80 ) ( 1280 576 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1280 336 70 ) ( 1280 336 86 ) ( 1280 656 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1280 512 64 ) ( 1280 512 80 ) ( 1392 512 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1216 672 70 ) ( 1216 672 86 ) ( 1216 352 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 980 368 78 ) ( 984 704 78 ) ( 976 704 78 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +} +// brush 42 +{ +( 1289 372 80 ) ( 1203 444 80 ) ( 1409 689 80 ) bricks/b_rc_v16 -86 -9 47 1.000075 1.000017 134217728 0 0 +( 1445 533 64 ) ( 1445 533 80 ) ( 1359 605 80 ) bricks/b_rc_v16 -45 48 0 0.765991 1 134217728 0 0 +( 1191 454 70 ) ( 1191 454 86 ) ( 1396 700 86 ) bricks/b_rc_v16 -22 48 0 0.766037 1 134217728 0 0 +( 1338 581 64 ) ( 1338 581 80 ) ( 1424 509 80 ) bricks/b_rc_v16 -18 48 0 0.766113 1 134217728 0 0 +( 1372 720 70 ) ( 1372 720 86 ) ( 1166 475 86 ) bricks/b_rc_v16 4 48 0 0.766037 1 134217728 0 0 +( 1055 610 78 ) ( 1274 865 78 ) ( 1268 870 78 ) bricks/b_rc_v16 -122 -27 39 1.000075 1.000017 134217728 0 0 +} +// brush 43 +{ +( 1376 384 80 ) ( 1264 384 80 ) ( 1264 704 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +( 1280 576 64 ) ( 1280 576 80 ) ( 1392 576 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1216 704 70 ) ( 1216 704 86 ) ( 1216 384 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 980 400 78 ) ( 984 736 78 ) ( 976 736 78 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +( 1232 600 80 ) ( 1216 608 78 ) ( 1248 592 78 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1236 600 80 ) ( 1232 608 78 ) ( 1240 592 78 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +} +// brush 44 +{ +( 1376 480 80 ) ( 1264 480 80 ) ( 1264 800 80 ) bricks/b_rc_v16 -64 0 0 1 1 134217728 0 0 +( 1392 704 64 ) ( 1392 704 80 ) ( 1280 704 80 ) bricks/b_rc_v16 -64 48 0 1 1 134217728 0 0 +( 1280 464 70 ) ( 1280 464 86 ) ( 1280 784 86 ) bricks/b_rc_v16 0 48 0 1 1 134217728 0 0 +( 1280 640 64 ) ( 1280 640 80 ) ( 1392 640 80 ) bricks/b_rc_v16 -64 48 0 1 1 134217728 0 0 +( 1216 800 70 ) ( 1216 800 86 ) ( 1216 480 86 ) bricks/b_rc_v16 0 48 0 1 1 134217728 0 0 +( 980 496 78 ) ( 984 832 78 ) ( 976 832 78 ) bricks/b_rc_v16 -64 0 0 1 1 134217728 0 0 +( 1264 648 80 ) ( 1280 656 78 ) ( 1248 640 78 ) bricks/b_rc_v16 -64 48 0 1 1 134217728 0 0 +( 1268 656 80 ) ( 1272 664 78 ) ( 1264 648 78 ) bricks/b_rc_v16 0 48 0 1 1 134217728 0 0 +} +// brush 45 +{ +( 1312 656 78 ) ( 1312 624 78 ) ( 1344 624 78 ) bricks/b_rc_v16 -64 0 0 1 1 134217728 0 0 +( 1344 624 80 ) ( 1312 624 80 ) ( 1312 656 80 ) bricks/b_rc_v16 -64 0 0 1 1 134217728 0 0 +( 1344 704 78 ) ( 1344 704 110 ) ( 1312 704 110 ) bricks/b_rc_v16 -64 48 0 1 1 134217728 0 0 +( 1344 624 78 ) ( 1344 624 110 ) ( 1344 656 110 ) bricks/b_rc_v16 0 48 0 1 1 134217728 0 0 +( 1312 672 78 ) ( 1312 672 110 ) ( 1344 672 110 ) bricks/b_rc_v16 -64 48 0 1 1 134217728 0 0 +( 1312 656 78 ) ( 1312 656 110 ) ( 1312 624 110 ) bricks/b_rc_v16 0 48 0 1 1 134217728 0 0 +} +// brush 46 +{ +( 1504 384 80 ) ( 1392 384 80 ) ( 1392 704 80 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +( 1520 576 64 ) ( 1520 576 80 ) ( 1408 576 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1344 432 70 ) ( 1344 432 86 ) ( 1344 752 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1408 544 64 ) ( 1408 544 80 ) ( 1520 544 80 ) bricks/b_rc_v16 -64 48 0 1 1 0 0 0 +( 1312 704 70 ) ( 1312 704 86 ) ( 1312 384 86 ) bricks/b_rc_v16 0 48 0 1 1 0 0 0 +( 1172 416 78 ) ( 1176 752 78 ) ( 1168 752 78 ) bricks/b_rc_v16 -64 0 0 1 1 0 0 0 +} +} +// entity 24 +{ +"classname" "props_phone" +"angle" "45" +"origin" "576 420 150" +} +// entity 25 +{ +"_fade" ".7" +"origin" "336 70 204" +"_color" "0.767857 1.000000 0.714286" +"style" "6" +"light" "150" +"classname" "light" +} +// entity 26 +{ +"targetname" "t15" +"classname" "func_areaportal" +// brush 0 +{ +( 1031 642 80 ) ( 1031 578 80 ) ( 1033 578 80 ) common/0_trigger 0 0 0 1 1 0 0 0 +( 1033 578 188 ) ( 1031 578 188 ) ( 1031 642 188 ) common/0_trigger 0 0 0 1 1 0 0 0 +( 1033 642 80 ) ( 1033 642 188 ) ( 1031 642 188 ) common/0_trigger 0 16 0 1 1 0 0 0 +( 1033 581 80 ) ( 1033 581 188 ) ( 1033 645 188 ) common/0_trigger 0 16 0 1 1 0 0 0 +( 1031 578 80 ) ( 1031 578 188 ) ( 1033 578 188 ) common/0_trigger 0 16 0 1 1 0 0 0 +( 1031 644 79 ) ( 1031 644 187 ) ( 1031 580 187 ) wood/wd_sr_vy2 -30 14 180 1 -1 0 0 0 +} +} +// entity 27 +{ +"volume" ".3" +"attenuation" "3" +"origin" "1448 572 136" +"spawnflags" "1" +"noise" "world/drip_single" +"classname" "target_speaker" +} +// entity 28 +{ +"fxdensity" "1" +"classname" "elements_raincloud" +// brush 0 +{ +( 1460 574 144 ) ( 1460 568 144 ) ( 1466 568 144 ) common/0_trigger 3 0 0 1 1 0 128 0 +( 1467 568 145 ) ( 1461 568 145 ) ( 1461 574 145 ) common/0_trigger 3 0 0 1 1 0 128 0 +( 1465 572 136 ) ( 1465 572 154 ) ( 1459 572 154 ) common/0_trigger 3 15 0 1 1 0 128 0 +( 1466 568 136 ) ( 1466 568 154 ) ( 1466 574 154 ) common/0_trigger 0 15 0 1 1 0 128 0 +( 1459 571 136 ) ( 1459 571 154 ) ( 1465 571 154 ) common/0_trigger 3 15 0 1 1 0 128 0 +( 1465 574 136 ) ( 1465 574 154 ) ( 1465 568 154 ) common/0_trigger 0 15 0 1 1 0 128 0 +} +} +// entity 29 +{ +"classname" "props_cig_machine" +"lightit" "6" +"origin" "1007 804 112" +"angle" "180" +} +// entity 30 +{ +"target" "t15" +"classname" "func_door_rotating" +"sounds" "4" +"distance" "90" +"style" "0" +"speed" "120" +"_min;ight" ".2" +// brush 0 +{ +( 1031 640 80 ) ( 1031 639 80 ) ( 1033 639 80 ) common/0_origin 0 3 0 1 1 16777216 128 0 +( 1033 639 188 ) ( 1031 639 188 ) ( 1031 640 188 ) common/0_origin 0 3 0 1 1 16777216 128 0 +( 1034 641 80 ) ( 1034 641 188 ) ( 1032 641 188 ) common/0_origin 0 16 0 1 1 16777216 128 0 +( 1033 639 80 ) ( 1033 639 188 ) ( 1033 640 188 ) common/0_origin -3 16 0 1 1 16777216 128 0 +( 1031 639 80 ) ( 1031 639 188 ) ( 1033 639 188 ) common/0_origin 0 16 0 1 1 16777216 128 0 +( 1031 640 80 ) ( 1031 640 188 ) ( 1031 639 188 ) common/0_origin -3 16 0 1 1 16777216 128 0 +} +// brush 1 +{ +( 1028 640 80 ) ( 1028 580 80 ) ( 1036 580 80 ) floors/dr_pv_vv1 -64 0 0 1 1 0 0 0 +( 1032 580 188 ) ( 1024 580 188 ) ( 1024 640 188 ) floors/dr_pv_vv1 -64 0 0 1 1 0 0 0 +( 1036 642 80 ) ( 1036 642 96 ) ( 1028 642 96 ) floors/dr_pv_vv1 -64 48 0 1 1 0 0 0 +( 1034 580 80 ) ( 1034 580 96 ) ( 1034 640 96 ) floors/dr_pv_vv1 -2 77 0 1 1 0 0 0 +( 1028 578 80 ) ( 1028 578 96 ) ( 1036 578 96 ) floors/dr_pv_vv1 -64 48 0 1 1 0 0 0 +( 1030 640 80 ) ( 1030 640 96 ) ( 1030 580 96 ) floors/dr_pv_vv1 -2 77 0 1 1 0 0 0 +} +} +// entity 31 +{ +"classname" "props_trashcorner" +"angle" "0" +"lightit" "6" +"origin" "983 871 88" +} +// entity 32 +{ +"classname" "light" +"light" "75" +"origin" "162 501 257" +"_color" "1.000000 0.912500 0.812500" +} +// entity 33 +{ +"origin" "572 568 164" +"angle" "135" +"classname" "props_fan" +} +// entity 34 +{ +"classname" "func_wall" +// brush 0 +{ +( 64 208 112 ) ( 64 192 112 ) ( 80 192 112 ) WOOD/WD_ST_M1B -64 64 0 0.250000 0.249939 134217728 134217728 0 +( 80 192 144 ) ( 64 192 144 ) ( 64 208 144 ) WOOD/WD_ST_M1B -64 63 0 0.250000 0.249939 134217728 134217728 0 +( 80 208 112 ) ( 80 208 144 ) ( 64 208 144 ) WOOD/WD_ST_M1B -64 127 0 0.250000 0.249969 134217728 134217728 0 +( 65 192 112 ) ( 65 192 144 ) ( 65 208 144 ) props2/board_v1 -30 31 0 0.500015 0.500045 134217728 0 0 +( 64 176 112 ) ( 64 176 144 ) ( 80 176 144 ) WOOD/WD_ST_M1B -64 0 0 0.250000 0.249969 134217728 134217728 0 +( 64 208 112 ) ( 64 208 144 ) ( 64 192 144 ) WOOD/WD_ST_M1B -6 51 1 0.250038 0.249977 134217728 134217728 0 +} +} +// entity 35 +{ +"origin" "528 496 256" +"spawnflags" "1" +"noise" "world/neon" +"classname" "target_speaker" +"volume" ".2" +"attenuation" "3" +} +// entity 36 +{ +"_fade" ".5" +"_color" "1.000000 0.000000 0.000000" +"light" "100" +"origin" "544 480 264" +"classname" "light" +"style" "6" +} +// entity 37 +{ +"sounds" "3" +"speed" "120" +"distance" "90" +"_minlight" ".3" +"spawnflags" "136" +"classname" "func_door_rotating" +// brush 0 +{ +( 717 400 157 ) ( 717 361 157 ) ( 718 361 157 ) common/0_origin 0 0 0 1 1 16777216 128 0 +( 718 361 159 ) ( 717 361 159 ) ( 717 400 159 ) common/0_origin 0 0 0 1 1 16777216 128 0 +( 718 400 156 ) ( 718 400 160 ) ( 717 400 160 ) common/0_origin 0 16 0 1 1 16777216 128 0 +( 719 360 156 ) ( 719 360 160 ) ( 719 399 160 ) common/0_origin 0 16 0 1 1 16777216 128 0 +( 717 361 156 ) ( 717 361 160 ) ( 718 361 160 ) common/0_origin 0 16 0 1 1 16777216 128 0 +( 718 400 156 ) ( 718 400 160 ) ( 718 361 160 ) common/0_origin 0 16 0 1 1 16777216 128 0 +} +// brush 1 +{ +( 636 384 156 ) ( 572 384 156 ) ( 572 192 156 ) wood/wd_sr_vy2 32 -64 90 1 1 0 0 0 +( 576 192 160 ) ( 576 384 160 ) ( 640 384 160 ) wood/wd_sr_vy2 32 -64 90 1 1 0 134217728 0 +( 584 360 160 ) ( 648 360 160 ) ( 648 360 96 ) wood/wd_sr_va2 -32 32 0 1 1 0 0 0 +( 719 192 156 ) ( 719 384 156 ) ( 719 384 92 ) wood/wd_cp_v3 32 16 0 1 1 0 0 0 +( 704 400 208 ) ( 640 400 208 ) ( 640 400 144 ) wood/wd_cp_v3 -32 16 0 1 1 0 0 0 +( 673 384 245 ) ( 673 192 245 ) ( 673 192 181 ) wood/wd_cp_v3 32 16 0 1 1 0 0 0 +} +} +// entity 38 +{ +"_minlight" ".3" +"team " "bar_door" +"style" "0" +"speed" "120" +"sounds" "3" +"distance" "90" +"classname" "func_door_rotating" +// brush 0 +{ +( 129 565 111 ) ( 131 565 111 ) ( 131 567 111 ) common/0_origin 0 0 0 1 1 16777216 128 0 +( 131 567 225 ) ( 131 565 225 ) ( 129 565 225 ) common/0_origin 0 0 0 1 1 16777216 128 0 +( 131 567 224 ) ( 129 567 224 ) ( 129 567 112 ) common/0_origin 0 16 0 1 1 16777216 128 0 +( 129 567 224 ) ( 129 565 224 ) ( 129 565 112 ) common/0_origin 0 16 0 1 1 16777216 128 0 +( 129 565 224 ) ( 131 565 224 ) ( 131 565 112 ) common/0_origin 0 16 0 1 1 16777216 128 0 +( 131 565 224 ) ( 131 567 224 ) ( 131 567 112 ) common/0_origin 0 16 0 1 1 16777216 128 0 +} +// brush 1 +{ +( 192 564 112 ) ( 192 568 112 ) ( 128 568 112 ) wood/wd_sy_m1 32 0 0 1 1 0 0 0 +( 128 568 224 ) ( 192 568 224 ) ( 192 564 224 ) wood/wd_sy_m1 32 0 0 1 1 0 0 0 +( 128 568 224 ) ( 128 564 224 ) ( 128 564 112 ) wood/wd_sy_m1 0 0 0 1 1 0 0 0 +( 128 564 224 ) ( 192 564 224 ) ( 192 564 112 ) floors/dr_st_m4a 0 -16 0 1 1 0 134217728 0 +( 192 564 224 ) ( 192 568 224 ) ( 192 568 112 ) wood/wd_sy_m1 0 0 0 1 1 0 0 0 +( 192 568 224 ) ( 128 568 224 ) ( 128 568 112 ) floors/dr_st_m4a 0 -16 0 1 1 0 134217728 0 +} +} +// entity 39 +{ +"classname" "func_wall" +// brush 0 +{ +( 736 160 28 ) ( 736 160 124 ) ( 736 224 124 ) props/w_sr_ba7c -1 17 0 1 1 0 1 50 +( 1096 16 -4 ) ( 1096 16 92 ) ( 1032 16 92 ) props/w_sr_ba7c 0 18 0 1 1 0 1 50 +( 672 0 240 ) ( 672 0 280 ) ( 736 0 280 ) props/w_sr_ba7c -1 17 0 1 1 0 1 50 +( 924 928 240 ) ( 936 1040 240 ) ( 912 1040 240 ) props/w_sr_ba7c -1 33 0 1 1 0 1 50 +( 672 4 304 ) ( 672 -8 128 ) ( 672 16 128 ) props/w_sr_ba7c -1 17 0 1 1 0 1 50 +( 736 4 272 ) ( 672 0 272 ) ( 672 8 272 ) props/w_sr_ba7c -1 33 0 1 1 0 1 50 +} +// brush 1 +{ +( 608 160 28 ) ( 608 160 124 ) ( 608 224 124 ) props/w_sr_ba7c -1 17 0 1 1 0 1 50 +( 968 16 -4 ) ( 968 16 92 ) ( 904 16 92 ) props/w_sr_ba7c 0 18 0 1 1 0 1 50 +( 544 0 240 ) ( 544 0 280 ) ( 608 0 280 ) props/w_sr_ba7c -1 17 0 1 1 0 1 50 +( 796 928 240 ) ( 808 1040 240 ) ( 784 1040 240 ) props/w_sr_ba7c -1 33 0 1 1 0 1 50 +( 544 4 304 ) ( 544 -8 128 ) ( 544 16 128 ) props/w_sr_ba7c -1 17 0 1 1 0 1 50 +( 608 4 272 ) ( 544 0 272 ) ( 544 8 272 ) props/w_sr_ba7c -1 33 0 1 1 0 1 50 +} +// brush 2 +{ +( 480 160 28 ) ( 480 160 124 ) ( 480 224 124 ) props/w_sr_ba7c -1 17 0 1 1 0 1 50 +( 840 16 -4 ) ( 840 16 92 ) ( 776 16 92 ) props/w_sr_ba7c 0 18 0 1 1 0 1 50 +( 416 0 240 ) ( 416 0 280 ) ( 480 0 280 ) props/w_sr_ba7c -1 17 0 1 1 0 1 50 +( 668 928 240 ) ( 680 1040 240 ) ( 656 1040 240 ) props/w_sr_ba7c -1 33 0 1 1 0 1 50 +( 416 4 304 ) ( 416 -8 128 ) ( 416 16 128 ) props/w_sr_ba7c -1 17 0 1 1 0 1 50 +( 480 4 272 ) ( 416 0 272 ) ( 416 8 272 ) props/w_sr_ba7c -1 33 0 1 1 0 1 50 +} +} +// entity 40 +{ +"_color" "1.000000 0.912500 0.812500" +"origin" "160 832 281" +"light" "60" +"classname" "light" +"_fade" ".1" +} +// entity 41 +{ +"origin" "552 128 204" +"classname" "junior" +"light" "250" +"_color" "0.909091 1.000000 0.909091" +} +// entity 42 +{ +"_color" "0.909091 1.000000 0.909091" +"light" "250" +"classname" "junior" +"origin" "448 128 220" +} +// entity 43 +{ +"origin" "704 128 204" +"classname" "junior" +"light" "250" +"_color" "0.909091 1.000000 0.909091" +} +// entity 44 +{ +"_fade" ".5" +"_color" "1.000000 0.000000 0.000000" +"light" "100" +"classname" "light" +"origin" "544 512 264" +"style" "6" +} +// entity 45 +{ +"_color" "1.000000 0.500000 0.000000" +"light" "90" +"origin" "544 496 248" +"classname" "light" +"style" "6" +} +// entity 46 +{ +"classname" "junior" +"light" "220" +"origin" "568 496 192" +"_color" "1.000000 0.780392 0.533333" +} +// entity 47 +{ +"_fade" ".2" +"_color" "0.909091 1.000000 0.909091" +"light" "50" +"classname" "light" +"origin" "640 192 136" +} +// entity 48 +{ +"classname" "junior" +"origin" "544 480 248" +"light" "100" +"_color" "1.000000 0.000000 0.000000" +"style" "6" +} +// entity 49 +{ +"origin" "544 512 248" +"classname" "junior" +"light" "100" +"_color" "1.000000 0.000000 0.000000" +"style" "6" +} +// entity 50 +{ +"_fade" ".5" +"classname" "junior" +"origin" "544 496 232" +"light" "90" +"_color" "1.000000 0.500000 0.000000" +"style" "6" +} +// entity 51 +{ +"classname" "junior" +"light" "250" +"origin" "112 28 168" +"_color" "1.000000 0.912500 0.812500" +} +// entity 52 +{ +"classname" "lightflare" +"light" "85" +"origin" "112 28 191" +"_color" "0.314936 0.289997 0.257475" +"spawnflags" "2" +"health" "96" +} +// entity 53 +{ +"_cone" "15" +"target" "t2" +"classname" "light" +"light" "400" +"origin" "192 28 168" +"_color" "1.000000 0.912500 0.812500" +} +// entity 54 +{ +"_color" "1.000000 0.912500 0.812500" +"origin" "192 28 168" +"light" "250" +"classname" "junior" +} +// entity 55 +{ +"health" "96" +"spawnflags" "2" +"_color" "0.314936 0.289997 0.257475" +"origin" "192 28 191" +"light" "85" +"classname" "lightflare" +} +// entity 56 +{ +"_color" "1.000000 0.912500 0.812500" +"origin" "192 28 184" +"light" "65" +"classname" "light" +} +// entity 57 +{ +"dmg" "2" +"health" "96" +"spawnflags" "2" +"_color" "0.314936 0.289997 0.257475" +"origin" "162 501 283" +"light" "150" +"classname" "light_bulb" +} +// entity 58 +{ +"classname" "light" +"light" "120" +"origin" "162 501 137" +"_color" "1.000000 0.912500 0.812500" +} +// entity 59 +{ +"light" "1000" +"targetname" "t2" +"origin" "192 20 68" +"classname" "info_null" +} +// entity 60 +{ +"classname" "light" +"light" "85" +"origin" "192 36 128" +"_color" "1.000000 0.912500 0.812500" +} +// entity 61 +{ +"_color" "1.000000 0.912500 0.812500" +"origin" "192 44 72" +"light" "100" +"classname" "light" +} +// entity 62 +{ +"_color" "1.000000 0.912500 0.812500" +"origin" "112 28 168" +"light" "400" +"classname" "light" +"target" "t13" +"_cone" "15" +} +// entity 63 +{ +"classname" "light" +"light" "65" +"origin" "112 28 184" +"_color" "1.000000 0.912500 0.812500" +} +// entity 64 +{ +"classname" "info_null" +"origin" "112 20 68" +"targetname" "t13" +"light" "1000" +} +// entity 65 +{ +"_color" "1.000000 0.912500 0.812500" +"origin" "112 36 128" +"light" "85" +"classname" "light" +} +// entity 66 +{ +"classname" "light" +"light" "100" +"origin" "112 44 72" +"_color" "1.000000 0.912500 0.812500" +} +// entity 67 +{ +"attenuation" "-1" +"origin" "728 160 240" +"spawnflags" "1" +"noise" "world/cypress5" +"classname" "target_speaker" +} +// entity 68 +{ +"_fade" ".1" +"classname" "light" +"_color" "1.000000 0.941935 0.703226" +"origin" "704 832 183" +"light" "65" +} +// entity 69 +{ +"lightit" "6" +"angle" "315" +"classname" "props_trashbottle_vert" +"origin" "539 598 168" +} +// entity 70 +{ +"origin" "539 422 168" +"classname" "props_trashbottle_vert" +"angle" "315" +"lightit" "6" +} +// entity 71 +{ +"classname" "target_speaker" +"noise" "world/cypress5" +"spawnflags" "1" +"origin" "728 832 240" +"attenuation" "-1" +} +// entity 72 +{ +"classname" "target_speaker" +"noise" "world/cypress5" +"spawnflags" "1" +"origin" "160 264 240" +"attenuation" "-1" +} +// entity 73 +{ +"_color" "0.909091 1.000000 0.909091" +"light" "50" +"classname" "light" +"origin" "448 64 136" +"_fade" ".2" +} +// entity 74 +{ +"origin" "640 64 136" +"classname" "light" +"light" "50" +"_color" "0.909091 1.000000 0.909091" +"_fade" ".2" +} +// entity 75 +{ +"classname" "func_wall" +// brush 0 +{ +( 1472 538 200 ) ( 1472 530 200 ) ( 1468 530 200 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1468 530 184 ) ( 1472 530 184 ) ( 1472 534 184 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1468 530 184 ) ( 1468 534 184 ) ( 1468 536 216 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1472 532 216 ) ( 1472 536 216 ) ( 1472 534 184 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1468 528 184 ) ( 1468 530 200 ) ( 1472 530 200 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1472 536 184 ) ( 1472 538 200 ) ( 1468 538 200 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +} +// brush 1 +{ +( 1472 534 184 ) ( 1472 530 184 ) ( 1468 530 184 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1472 532 152 ) ( 1472 536 152 ) ( 1468 536 152 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1468 530 184 ) ( 1468 532 152 ) ( 1468 536 152 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1472 532 152 ) ( 1472 530 184 ) ( 1472 534 184 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1468 536 184 ) ( 1468 538 152 ) ( 1472 538 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1468 530 152 ) ( 1468 528 184 ) ( 1472 528 184 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +} +// brush 2 +{ +( 1472 536 152 ) ( 1472 532 152 ) ( 1468 532 152 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1472 536 120 ) ( 1472 540 120 ) ( 1468 540 120 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1468 532 152 ) ( 1468 536 120 ) ( 1468 540 120 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1472 536 120 ) ( 1472 532 152 ) ( 1472 536 152 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1468 538 152 ) ( 1468 542 120 ) ( 1472 542 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1468 534 120 ) ( 1468 530 152 ) ( 1472 530 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +} +// brush 3 +{ +( 1472 540 120 ) ( 1472 536 120 ) ( 1468 536 120 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1472 530 80 ) ( 1472 534 80 ) ( 1468 534 80 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1468 536 120 ) ( 1468 530 88 ) ( 1468 534 88 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1472 530 88 ) ( 1472 536 120 ) ( 1472 540 120 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1468 542 120 ) ( 1468 536 88 ) ( 1472 536 88 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1468 528 88 ) ( 1468 534 120 ) ( 1472 534 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +} +// brush 4 +{ +( 1374 532 80 ) ( 1366 532 80 ) ( 1366 524 80 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1372 530 88 ) ( 1374 532 80 ) ( 1374 524 80 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1372 526 88 ) ( 1372 524 80 ) ( 1368 524 80 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1368 526 88 ) ( 1366 524 80 ) ( 1366 532 80 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1368 530 88 ) ( 1368 532 80 ) ( 1372 532 80 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1366 529 88 ) ( 1374 532 88 ) ( 1374 526 88 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +} +// brush 5 +{ +( 1372 536 120 ) ( 1372 532 120 ) ( 1368 532 120 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1372 526 88 ) ( 1372 530 88 ) ( 1368 530 88 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1366 532 120 ) ( 1366 526 88 ) ( 1366 530 88 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1374 526 88 ) ( 1374 532 120 ) ( 1374 536 120 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1368 538 120 ) ( 1368 532 88 ) ( 1372 532 88 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1368 524 88 ) ( 1368 530 120 ) ( 1372 530 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +} +// brush 6 +{ +( 1372 538 152 ) ( 1372 534 152 ) ( 1368 534 152 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1374 532 120 ) ( 1374 536 120 ) ( 1370 536 120 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1366 534 152 ) ( 1366 532 120 ) ( 1366 536 120 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1374 532 120 ) ( 1374 534 152 ) ( 1374 538 152 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1368 540 152 ) ( 1368 538 120 ) ( 1372 538 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1370 530 120 ) ( 1370 532 152 ) ( 1374 532 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +} +// brush 7 +{ +( 1372 534 184 ) ( 1372 530 184 ) ( 1368 530 184 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1372 534 152 ) ( 1372 538 152 ) ( 1368 538 152 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1366 530 184 ) ( 1366 534 152 ) ( 1366 538 152 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1374 534 152 ) ( 1374 530 184 ) ( 1374 534 184 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1368 536 184 ) ( 1368 540 152 ) ( 1372 540 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1368 532 152 ) ( 1368 528 184 ) ( 1372 528 184 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +} +// brush 8 +{ +( 1368 538 200 ) ( 1372 538 200 ) ( 1372 534 200 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1368 530 184 ) ( 1372 530 184 ) ( 1372 534 184 ) floors/r_sr_m1 0 -36 0 1 1 0 0 0 +( 1366 530 184 ) ( 1366 534 184 ) ( 1366 538 216 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1374 534 216 ) ( 1374 538 216 ) ( 1374 534 184 ) floors/r_sr_m1 36 48 0 1 1 0 0 0 +( 1372 528 184 ) ( 1368 528 184 ) ( 1368 532 216 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1372 540 216 ) ( 1368 540 216 ) ( 1368 536 184 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +} +} +// entity 76 +{ +"classname" "func_wall" +// brush 0 +{ +( 1468 640 200 ) ( 1468 644 200 ) ( 1472 644 200 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1468 638 152 ) ( 1468 634 152 ) ( 1472 634 152 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1468 638 152 ) ( 1468 644 184 ) ( 1468 640 184 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1472 644 184 ) ( 1472 638 152 ) ( 1472 634 152 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1472 640 152 ) ( 1472 646 184 ) ( 1468 646 184 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1472 638 184 ) ( 1472 632 152 ) ( 1468 632 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +} +// brush 1 +{ +( 1468 634 152 ) ( 1468 638 152 ) ( 1472 638 152 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1468 624 120 ) ( 1468 620 120 ) ( 1472 620 120 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1468 624 120 ) ( 1468 638 152 ) ( 1468 634 152 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1472 638 152 ) ( 1472 624 120 ) ( 1472 620 120 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1472 626 120 ) ( 1472 640 152 ) ( 1468 640 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1472 632 152 ) ( 1472 618 120 ) ( 1468 618 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +} +// brush 2 +{ +( 1468 620 120 ) ( 1468 624 120 ) ( 1472 624 120 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1468 618 80 ) ( 1468 614 80 ) ( 1472 614 80 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1468 618 88 ) ( 1468 624 120 ) ( 1468 620 120 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1472 624 120 ) ( 1472 618 88 ) ( 1472 614 88 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1472 620 88 ) ( 1472 626 120 ) ( 1468 626 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1472 618 120 ) ( 1472 612 88 ) ( 1468 612 88 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +} +// brush 3 +{ +( 1374 617 80 ) ( 1366 617 80 ) ( 1366 609 80 ) floors/r_sr_m1 0 7 0 1 1 0 0 0 +( 1372 615 88 ) ( 1374 617 80 ) ( 1374 609 80 ) floors/r_sr_m1 -7 48 0 1 1 0 0 0 +( 1372 611 88 ) ( 1372 609 80 ) ( 1368 609 80 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1368 611 88 ) ( 1366 609 80 ) ( 1366 617 80 ) floors/r_sr_m1 -7 48 0 1 1 0 0 0 +( 1368 615 88 ) ( 1368 617 80 ) ( 1372 617 80 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1366 614 88 ) ( 1374 617 88 ) ( 1374 611 88 ) floors/r_sr_m1 0 7 0 1 1 0 0 0 +} +// brush 4 +{ +( 1368 616 120 ) ( 1368 620 120 ) ( 1372 620 120 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1368 614 88 ) ( 1368 610 88 ) ( 1372 610 88 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1366 614 88 ) ( 1366 620 120 ) ( 1366 616 120 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1374 620 120 ) ( 1374 614 88 ) ( 1374 610 88 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1372 616 88 ) ( 1372 622 120 ) ( 1368 622 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1372 614 120 ) ( 1372 608 88 ) ( 1368 608 88 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +} +// brush 5 +{ +( 1368 640 152 ) ( 1368 644 152 ) ( 1372 644 152 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1368 622 120 ) ( 1368 618 120 ) ( 1372 618 120 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1366 620 120 ) ( 1366 644 152 ) ( 1366 640 152 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1374 644 152 ) ( 1374 620 120 ) ( 1374 616 120 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1372 622 120 ) ( 1372 646 152 ) ( 1368 646 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1372 638 152 ) ( 1372 614 120 ) ( 1368 614 120 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +} +// brush 6 +{ +( 1368 644 200 ) ( 1372 644 200 ) ( 1372 640 200 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1368 640 152 ) ( 1372 640 152 ) ( 1372 644 152 ) floors/r_sr_m1 0 0 0 1 1 0 0 0 +( 1366 644 184 ) ( 1366 640 184 ) ( 1366 640 152 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1374 644 152 ) ( 1374 640 152 ) ( 1374 640 184 ) floors/r_sr_m1 -64 48 0 1 1 0 0 0 +( 1372 646 184 ) ( 1368 646 184 ) ( 1368 646 152 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +( 1372 638 152 ) ( 1368 638 152 ) ( 1368 638 184 ) floors/r_sr_m1 0 48 0 1 1 0 0 0 +} +} +// entity 77 +{ +"classname" "target_speaker" +"noise" "world/toiletrunning" +"spawnflags" "1" +"origin" "1448 672 136" +"attenuation" "3" +"volume" ".3" +} +// entity 78 +{ +"attenuation" "-1" +"origin" "160 456 240" +"spawnflags" "1" +"noise" "world/cypress5" +"classname" "target_speaker" +} +// entity 79 +{ +"origin" "160 1120 356" +"classname" "target_speaker" +"attenuation" "3" +"spawnflags" "1" +"noise" "world/cypress5" +} +// entity 80 +{ +"_color" "1.000000 0.912500 0.812500" +"origin" "160 1120 297" +"light" "80" +"classname" "light" +"_fade" ".5" +} +// entity 81 +{ +"classname" "junior" +"light" "200" +"origin" "160 1120 409" +"_color" "1.000000 0.912500 0.812500" +} +// entity 82 +{ +"classname" "lightflare" +"light" "10" +"origin" "160 1120 423" +"_color" "0.314936 0.289997 0.257475" +"spawnflags" "2" +"health" "96" +} +// entity 83 +{ +"_fade" ".5" +"classname" "light" +"light" "80" +"origin" "160 1120 377" +"_color" "1.000000 0.912500 0.812500" +} +// entity 84 +{ +"origin" "161 640 232" +"classname" "target_speaker" +"attenuation" "3" +"spawnflags" "1" +"noise" "world/cypress5" +} +// entity 85 +{ +"classname" "light" +"light" "80" +"origin" "161 640 137" +"_color" "1.000000 0.912500 0.812500" +"_fade" ".7" +} +// entity 86 +{ +"_color" "1.000000 0.912500 0.812500" +"origin" "161 640 249" +"light" "200" +"classname" "junior" +} +// entity 87 +{ +"health" "96" +"spawnflags" "2" +"_color" "0.314936 0.289997 0.257475" +"origin" "160 640 263" +"light" "10" +"classname" "lightflare" +} +// entity 88 +{ +"_fade" ".7" +"_color" "1.000000 0.912500 0.812500" +"origin" "161 640 217" +"light" "80" +"classname" "light" +} +// entity 89 +{ +"classname" "junior" +"light" "200" +"origin" "657 492 237" +"_color" "1.000000 0.912500 0.812500" +} +// entity 90 +{ +"classname" "lightflare" +"light" "10" +"origin" "656 492 251" +"_color" "0.314936 0.289997 0.257475" +"spawnflags" "2" +"health" "96" +} +// entity 91 +{ +"classname" "light" +"light" "80" +"origin" "657 492 205" +"_color" "1.000000 0.912500 0.812500" +"_fade" ".7" +} +// entity 92 +{ +"classname" "func_rotating" +"spawnflags" "1" +"speed" "150" +// brush 0 +{ +( 554 894 240 ) ( 554 898 240 ) ( 550 898 240 ) common/0_origin -5 24 90 1 1 16777216 0 0 +( 550 898 274 ) ( 554 898 274 ) ( 554 894 274 ) common/0_origin -5 24 90 1 1 16777216 0 0 +( 550 898 234 ) ( 550 894 234 ) ( 550 894 232 ) common/0_origin -8 20 0 1 1 16777216 0 0 +( 550 894 234 ) ( 554 894 234 ) ( 554 894 232 ) common/0_origin -24 19 -180 1 -1 16777216 0 0 +( 554 894 234 ) ( 554 898 234 ) ( 554 898 232 ) common/0_origin -8 20 0 1 1 16777216 0 0 +( 554 898 234 ) ( 550 898 234 ) ( 550 898 232 ) common/0_origin -24 19 -180 1 -1 16777216 0 0 +} +// brush 1 +{ +( 554 894 240 ) ( 554 898 240 ) ( 550 898 240 ) metals/mt_sr_v24 -47 24 90 1 1 0 0 0 +( 550 898 246 ) ( 554 898 246 ) ( 554 894 246 ) metals/mt_sr_v24 -47 24 90 1 1 0 0 0 +( 548 898 234 ) ( 548 894 234 ) ( 548 894 232 ) metals/mt_sr_v24 -48 12 0 1 1 0 0 0 +( 550 892 234 ) ( 554 892 234 ) ( 554 892 232 ) metals/mt_sr_v24 -24 12 -180 1 -1 0 0 0 +( 556 894 234 ) ( 556 898 234 ) ( 556 898 232 ) metals/mt_sr_v24 -48 12 0 1 1 0 0 0 +( 554 900 234 ) ( 550 900 234 ) ( 550 900 232 ) metals/mt_sr_v24 -24 12 -180 1 -1 0 0 0 +( 552 890 240 ) ( 548 894 240 ) ( 550 892 246 ) metals/mt_sr_v24 -22 12 0 1 1 0 0 0 +( 558 896 240 ) ( 554 892 240 ) ( 556 894 246 ) metals/mt_sr_v24 22 12 -180 1 -1 0 0 0 +( 552 902 240 ) ( 556 898 240 ) ( 554 900 246 ) metals/mt_sr_v24 -10 12 0 1 1 0 0 0 +( 546 896 240 ) ( 550 900 240 ) ( 548 898 246 ) metals/mt_sr_v24 9 12 -180 1 -1 0 0 0 +} +// brush 2 +{ +( 554 872 242 ) ( 554 892 242 ) ( 550 892 242 ) wood/wd_st_m2 -7 -79 270 1 1 0 0 0 +( 550 892 244 ) ( 554 892 244 ) ( 554 872 244 ) wood/wd_st_m2 -7 -79 270 1 1 0 0 0 +( 544 832 244 ) ( 544 832 242 ) ( 550 892 242 ) wood/wd_st_m2 75 96 270 1 1 0 0 0 +( 544 832 242 ) ( 544 832 244 ) ( 560 832 244 ) wood/wd_st_m2 76 -80 270 1 1 0 0 0 +( 560 832 242 ) ( 560 832 244 ) ( 554 892 244 ) wood/wd_st_m2 75 96 270 1 1 0 0 0 +( 554 892 246 ) ( 550 892 246 ) ( 550 892 240 ) wood/wd_st_m2 76 -80 270 1 1 0 0 0 +( 558 848 242 ) ( 558 838 242 ) ( 558 843 244 ) wood/wd_st_m2 75 96 270 1 1 0 0 0 +( 546 844 242 ) ( 546 852 242 ) ( 546 848 244 ) wood/wd_st_m2 75 96 270 1 1 0 0 0 +} +// brush 3 +{ +( 576 898 242 ) ( 556 898 242 ) ( 556 894 242 ) wood/wd_st_m2 -7 -79 270 1 1 0 0 0 +( 556 894 244 ) ( 556 898 244 ) ( 576 898 244 ) wood/wd_st_m2 -7 -79 270 1 1 0 0 0 +( 616 888 244 ) ( 616 888 242 ) ( 556 894 242 ) wood/wd_st_m2 76 -80 270 1 1 0 0 0 +( 616 888 242 ) ( 616 888 244 ) ( 616 904 244 ) wood/wd_st_m2 75 96 270 1 1 0 0 0 +( 616 904 242 ) ( 616 904 244 ) ( 556 898 244 ) wood/wd_st_m2 76 -80 270 1 1 0 0 0 +( 556 898 246 ) ( 556 894 246 ) ( 556 894 240 ) wood/wd_st_m2 75 96 270 1 1 0 0 0 +( 600 902 242 ) ( 610 902 242 ) ( 605 902 244 ) wood/wd_st_m2 76 -80 270 1 1 0 0 0 +( 604 890 242 ) ( 596 890 242 ) ( 600 890 244 ) wood/wd_st_m2 76 -80 270 1 1 0 0 0 +} +// brush 4 +{ +( 528 894 242 ) ( 548 894 242 ) ( 548 898 242 ) wood/wd_st_m2 -7 -79 270 1 1 0 0 0 +( 548 898 244 ) ( 548 894 244 ) ( 528 894 244 ) wood/wd_st_m2 -7 -79 270 1 1 0 0 0 +( 488 904 244 ) ( 488 904 242 ) ( 548 898 242 ) wood/wd_st_m2 76 -80 270 1 1 0 0 0 +( 488 904 242 ) ( 488 904 244 ) ( 488 888 244 ) wood/wd_st_m2 75 96 270 1 1 0 0 0 +( 488 888 242 ) ( 488 888 244 ) ( 548 894 244 ) wood/wd_st_m2 76 -80 270 1 1 0 0 0 +( 548 894 246 ) ( 548 898 246 ) ( 548 898 240 ) wood/wd_st_m2 75 96 270 1 1 0 0 0 +( 504 890 242 ) ( 494 890 242 ) ( 499 890 244 ) wood/wd_st_m2 76 -80 270 1 1 0 0 0 +( 500 902 242 ) ( 508 902 242 ) ( 504 902 244 ) wood/wd_st_m2 76 -80 270 1 1 0 0 0 +} +// brush 5 +{ +( 550 920 242 ) ( 550 900 242 ) ( 554 900 242 ) wood/wd_st_m2 -7 -79 270 1 1 0 0 0 +( 554 900 244 ) ( 550 900 244 ) ( 550 920 244 ) wood/wd_st_m2 -7 -79 270 1 1 0 0 0 +( 560 960 244 ) ( 560 960 242 ) ( 554 900 242 ) wood/wd_st_m2 75 96 270 1 1 0 0 0 +( 560 960 242 ) ( 560 960 244 ) ( 544 960 244 ) wood/wd_st_m2 76 -80 270 1 1 0 0 0 +( 544 960 242 ) ( 544 960 244 ) ( 550 900 244 ) wood/wd_st_m2 75 96 270 1 1 0 0 0 +( 550 900 246 ) ( 554 900 246 ) ( 554 900 240 ) wood/wd_st_m2 76 -80 270 1 1 0 0 0 +( 546 944 242 ) ( 546 954 242 ) ( 546 949 244 ) wood/wd_st_m2 75 96 270 1 1 0 0 0 +( 558 948 242 ) ( 558 940 242 ) ( 558 944 244 ) wood/wd_st_m2 75 96 270 1 1 0 0 0 +} +} +// entity 93 +{ +"classname" "junior" +"light" "200" +"origin" "553 896 201" +"_color" "1.000000 0.912500 0.812500" +} +// entity 94 +{ +"classname" "lightflare" +"light" "10" +"origin" "552 896 231" +"_color" "0.314936 0.289997 0.257475" +"spawnflags" "2" +"health" "96" +} +// entity 95 +{ +"classname" "light" +"light" "120" +"origin" "553 896 185" +"_color" "1.000000 0.912500 0.812500" +"_fade" ".7" +} +// entity 96 +{ +"classname" "func_rotating" +"spawnflags" "1" +"speed" "150" +// brush 0 +{ +( 554 126 240 ) ( 554 130 240 ) ( 550 130 240 ) common/0_origin 26 24 90 1 1 16777216 0 0 +( 550 130 274 ) ( 554 130 274 ) ( 554 126 274 ) common/0_origin 26 24 90 1 1 16777216 0 0 +( 550 130 234 ) ( 550 126 234 ) ( 550 126 232 ) common/0_origin 24 20 0 1 1 16777216 0 0 +( 550 126 234 ) ( 554 126 234 ) ( 554 126 232 ) common/0_origin -24 19 -180 1 -1 16777216 0 0 +( 554 126 234 ) ( 554 130 234 ) ( 554 130 232 ) common/0_origin 24 20 0 1 1 16777216 0 0 +( 554 130 234 ) ( 550 130 234 ) ( 550 130 232 ) common/0_origin -24 19 -180 1 -1 16777216 0 0 +} +// brush 1 +{ +( 554 126 240 ) ( 554 130 240 ) ( 550 130 240 ) metals/mt_sr_v24 16 24 90 1 1 0 0 0 +( 550 130 246 ) ( 554 130 246 ) ( 554 126 246 ) metals/mt_sr_v24 16 24 90 1 1 0 0 0 +( 548 130 234 ) ( 548 126 234 ) ( 548 126 232 ) metals/mt_sr_v24 16 12 0 1 1 0 0 0 +( 550 124 234 ) ( 554 124 234 ) ( 554 124 232 ) metals/mt_sr_v24 -24 12 -180 1 -1 0 0 0 +( 556 126 234 ) ( 556 130 234 ) ( 556 130 232 ) metals/mt_sr_v24 16 12 0 1 1 0 0 0 +( 554 132 234 ) ( 550 132 234 ) ( 550 132 232 ) metals/mt_sr_v24 -24 12 -180 1 -1 0 0 0 +( 552 122 240 ) ( 548 126 240 ) ( 550 124 246 ) metals/mt_sr_v24 42 12 0 1 1 0 0 0 +( 558 128 240 ) ( 554 124 240 ) ( 556 126 246 ) metals/mt_sr_v24 -42 11 -180 1 -1 0 0 0 +( 552 134 240 ) ( 556 130 240 ) ( 554 132 246 ) metals/mt_sr_v24 54 12 0 1 1 0 0 0 +( 546 128 240 ) ( 550 132 240 ) ( 548 130 246 ) metals/mt_sr_v24 -55 11 -180 1 -1 0 0 0 +} +// brush 2 +{ +( 554 104 242 ) ( 554 124 242 ) ( 550 124 242 ) wood/wd_st_m2 -7 48 270 1 1 0 0 0 +( 550 124 244 ) ( 554 124 244 ) ( 554 104 244 ) wood/wd_st_m2 -7 48 270 1 1 0 0 0 +( 544 64 244 ) ( 544 64 242 ) ( 550 124 242 ) wood/wd_st_m2 75 -32 270 1 1 0 0 0 +( 544 64 242 ) ( 544 64 244 ) ( 560 64 244 ) wood/wd_st_m2 76 48 270 1 1 0 0 0 +( 560 64 242 ) ( 560 64 244 ) ( 554 124 244 ) wood/wd_st_m2 75 -32 270 1 1 0 0 0 +( 554 124 246 ) ( 550 124 246 ) ( 550 124 240 ) wood/wd_st_m2 76 48 270 1 1 0 0 0 +( 558 80 242 ) ( 558 70 242 ) ( 558 75 244 ) wood/wd_st_m2 75 -32 270 1 1 0 0 0 +( 546 76 242 ) ( 546 84 242 ) ( 546 80 244 ) wood/wd_st_m2 75 -32 270 1 1 0 0 0 +} +// brush 3 +{ +( 576 130 242 ) ( 556 130 242 ) ( 556 126 242 ) wood/wd_st_m2 -7 48 270 1 1 0 0 0 +( 556 126 244 ) ( 556 130 244 ) ( 576 130 244 ) wood/wd_st_m2 -7 48 270 1 1 0 0 0 +( 616 120 244 ) ( 616 120 242 ) ( 556 126 242 ) wood/wd_st_m2 76 48 270 1 1 0 0 0 +( 616 120 242 ) ( 616 120 244 ) ( 616 136 244 ) wood/wd_st_m2 75 -32 270 1 1 0 0 0 +( 616 136 242 ) ( 616 136 244 ) ( 556 130 244 ) wood/wd_st_m2 76 48 270 1 1 0 0 0 +( 556 130 246 ) ( 556 126 246 ) ( 556 126 240 ) wood/wd_st_m2 75 -32 270 1 1 0 0 0 +( 600 134 242 ) ( 610 134 242 ) ( 605 134 244 ) wood/wd_st_m2 76 48 270 1 1 0 0 0 +( 604 122 242 ) ( 596 122 242 ) ( 600 122 244 ) wood/wd_st_m2 76 48 270 1 1 0 0 0 +} +// brush 4 +{ +( 528 126 242 ) ( 548 126 242 ) ( 548 130 242 ) wood/wd_st_m2 -7 48 270 1 1 0 0 0 +( 548 130 244 ) ( 548 126 244 ) ( 528 126 244 ) wood/wd_st_m2 -7 48 270 1 1 0 0 0 +( 488 136 244 ) ( 488 136 242 ) ( 548 130 242 ) wood/wd_st_m2 76 48 270 1 1 0 0 0 +( 488 136 242 ) ( 488 136 244 ) ( 488 120 244 ) wood/wd_st_m2 75 -32 270 1 1 0 0 0 +( 488 120 242 ) ( 488 120 244 ) ( 548 126 244 ) wood/wd_st_m2 76 48 270 1 1 0 0 0 +( 548 126 246 ) ( 548 130 246 ) ( 548 130 240 ) wood/wd_st_m2 75 -32 270 1 1 0 0 0 +( 504 122 242 ) ( 494 122 242 ) ( 499 122 244 ) wood/wd_st_m2 76 48 270 1 1 0 0 0 +( 500 134 242 ) ( 508 134 242 ) ( 504 134 244 ) wood/wd_st_m2 76 48 270 1 1 0 0 0 +} +// brush 5 +{ +( 550 152 242 ) ( 550 132 242 ) ( 554 132 242 ) wood/wd_st_m2 -7 48 270 1 1 0 0 0 +( 554 132 244 ) ( 550 132 244 ) ( 550 152 244 ) wood/wd_st_m2 -7 48 270 1 1 0 0 0 +( 560 192 244 ) ( 560 192 242 ) ( 554 132 242 ) wood/wd_st_m2 75 -32 270 1 1 0 0 0 +( 560 192 242 ) ( 560 192 244 ) ( 544 192 244 ) wood/wd_st_m2 76 48 270 1 1 0 0 0 +( 544 192 242 ) ( 544 192 244 ) ( 550 132 244 ) wood/wd_st_m2 75 -32 270 1 1 0 0 0 +( 550 132 246 ) ( 554 132 246 ) ( 554 132 240 ) wood/wd_st_m2 76 48 270 1 1 0 0 0 +( 546 176 242 ) ( 546 186 242 ) ( 546 181 244 ) wood/wd_st_m2 75 -32 270 1 1 0 0 0 +( 558 180 242 ) ( 558 172 242 ) ( 558 176 244 ) wood/wd_st_m2 75 -32 270 1 1 0 0 0 +} +} +// entity 97 +{ +"classname" "func_rotating" +"spawnflags" "1" +"speed" "150" +// brush 0 +{ +( 394 494 240 ) ( 394 498 240 ) ( 390 498 240 ) common/0_origin -22 -7 90 1 1 16777216 0 0 +( 390 498 274 ) ( 394 498 274 ) ( 394 494 274 ) common/0_origin -22 -7 90 1 1 16777216 0 0 +( 390 498 234 ) ( 390 494 234 ) ( 390 494 232 ) common/0_origin -24 20 0 1 1 16777216 0 0 +( 390 494 234 ) ( 394 494 234 ) ( 394 494 232 ) common/0_origin 8 18 -180 1 -1 16777216 0 0 +( 394 494 234 ) ( 394 498 234 ) ( 394 498 232 ) common/0_origin -24 20 0 1 1 16777216 0 0 +( 394 498 234 ) ( 390 498 234 ) ( 390 498 232 ) common/0_origin 8 18 -180 1 -1 16777216 0 0 +} +// brush 1 +{ +( 394 494 240 ) ( 394 498 240 ) ( 390 498 240 ) metals/mt_sr_v24 33 -7 90 1 1 0 0 0 +( 390 498 246 ) ( 394 498 246 ) ( 394 494 246 ) metals/mt_sr_v24 33 -7 90 1 1 0 0 0 +( 388 498 234 ) ( 388 494 234 ) ( 388 494 232 ) metals/mt_sr_v24 32 12 0 1 1 0 0 0 +( 390 492 234 ) ( 394 492 234 ) ( 394 492 232 ) metals/mt_sr_v24 8 11 -180 1 -1 0 0 0 +( 396 494 234 ) ( 396 498 234 ) ( 396 498 232 ) metals/mt_sr_v24 32 12 0 1 1 0 0 0 +( 394 500 234 ) ( 390 500 234 ) ( 390 500 232 ) metals/mt_sr_v24 8 11 -180 1 -1 0 0 0 +( 392 490 240 ) ( 388 494 240 ) ( 390 492 246 ) metals/mt_sr_v24 -6 12 0 1 1 0 0 0 +( 398 496 240 ) ( 394 492 240 ) ( 396 494 246 ) metals/mt_sr_v24 6 11 -180 1 -1 0 0 0 +( 392 502 240 ) ( 396 498 240 ) ( 394 500 246 ) metals/mt_sr_v24 6 12 0 1 1 0 0 0 +( 386 496 240 ) ( 390 500 240 ) ( 388 498 246 ) metals/mt_sr_v24 -7 11 -180 1 -1 0 0 0 +} +// brush 2 +{ +( 394 472 242 ) ( 394 492 242 ) ( 390 492 242 ) wood/wd_st_m2 -23 16 270 1 1 0 0 0 +( 390 492 244 ) ( 394 492 244 ) ( 394 472 244 ) wood/wd_st_m2 -23 16 270 1 1 0 0 0 +( 384 432 244 ) ( 384 432 242 ) ( 390 492 242 ) wood/wd_st_m2 75 -48 270 1 1 0 0 0 +( 384 432 242 ) ( 384 432 244 ) ( 400 432 244 ) wood/wd_st_m2 76 16 270 1 1 0 0 0 +( 400 432 242 ) ( 400 432 244 ) ( 394 492 244 ) wood/wd_st_m2 75 -48 270 1 1 0 0 0 +( 394 492 246 ) ( 390 492 246 ) ( 390 492 240 ) wood/wd_st_m2 76 16 270 1 1 0 0 0 +( 398 448 242 ) ( 398 438 242 ) ( 398 443 244 ) wood/wd_st_m2 75 -48 270 1 1 0 0 0 +( 386 444 242 ) ( 386 452 242 ) ( 386 448 244 ) wood/wd_st_m2 75 -48 270 1 1 0 0 0 +} +// brush 3 +{ +( 416 498 242 ) ( 396 498 242 ) ( 396 494 242 ) wood/wd_st_m2 -23 16 270 1 1 0 0 0 +( 396 494 244 ) ( 396 498 244 ) ( 416 498 244 ) wood/wd_st_m2 -23 16 270 1 1 0 0 0 +( 456 488 244 ) ( 456 488 242 ) ( 396 494 242 ) wood/wd_st_m2 76 16 270 1 1 0 0 0 +( 456 488 242 ) ( 456 488 244 ) ( 456 504 244 ) wood/wd_st_m2 75 -48 270 1 1 0 0 0 +( 456 504 242 ) ( 456 504 244 ) ( 396 498 244 ) wood/wd_st_m2 76 16 270 1 1 0 0 0 +( 396 498 246 ) ( 396 494 246 ) ( 396 494 240 ) wood/wd_st_m2 75 -48 270 1 1 0 0 0 +( 440 502 242 ) ( 450 502 242 ) ( 445 502 244 ) wood/wd_st_m2 76 16 270 1 1 0 0 0 +( 444 490 242 ) ( 436 490 242 ) ( 440 490 244 ) wood/wd_st_m2 76 16 270 1 1 0 0 0 +} +// brush 4 +{ +( 368 494 242 ) ( 388 494 242 ) ( 388 498 242 ) wood/wd_st_m2 -23 16 270 1 1 0 0 0 +( 388 498 244 ) ( 388 494 244 ) ( 368 494 244 ) wood/wd_st_m2 -23 16 270 1 1 0 0 0 +( 328 504 244 ) ( 328 504 242 ) ( 388 498 242 ) wood/wd_st_m2 76 16 270 1 1 0 0 0 +( 328 504 242 ) ( 328 504 244 ) ( 328 488 244 ) wood/wd_st_m2 75 -48 270 1 1 0 0 0 +( 328 488 242 ) ( 328 488 244 ) ( 388 494 244 ) wood/wd_st_m2 76 16 270 1 1 0 0 0 +( 388 494 246 ) ( 388 498 246 ) ( 388 498 240 ) wood/wd_st_m2 75 -48 270 1 1 0 0 0 +( 344 490 242 ) ( 334 490 242 ) ( 339 490 244 ) wood/wd_st_m2 76 16 270 1 1 0 0 0 +( 340 502 242 ) ( 348 502 242 ) ( 344 502 244 ) wood/wd_st_m2 76 16 270 1 1 0 0 0 +} +// brush 5 +{ +( 390 520 242 ) ( 390 500 242 ) ( 394 500 242 ) wood/wd_st_m2 -23 16 270 1 1 0 0 0 +( 394 500 244 ) ( 390 500 244 ) ( 390 520 244 ) wood/wd_st_m2 -23 16 270 1 1 0 0 0 +( 400 560 244 ) ( 400 560 242 ) ( 394 500 242 ) wood/wd_st_m2 75 -48 270 1 1 0 0 0 +( 400 560 242 ) ( 400 560 244 ) ( 384 560 244 ) wood/wd_st_m2 76 16 270 1 1 0 0 0 +( 384 560 242 ) ( 384 560 244 ) ( 390 500 244 ) wood/wd_st_m2 75 -48 270 1 1 0 0 0 +( 390 500 246 ) ( 394 500 246 ) ( 394 500 240 ) wood/wd_st_m2 76 16 270 1 1 0 0 0 +( 386 544 242 ) ( 386 554 242 ) ( 386 549 244 ) wood/wd_st_m2 75 -48 270 1 1 0 0 0 +( 398 548 242 ) ( 398 540 242 ) ( 398 544 244 ) wood/wd_st_m2 75 -48 270 1 1 0 0 0 +} +} +// entity 98 +{ +"classname" "junior" +"light" "200" +"origin" "393 496 201" +"_color" "1.000000 0.912500 0.812500" +} +// entity 99 +{ +"classname" "lightflare" +"light" "10" +"origin" "392 496 231" +"_color" "0.314936 0.289997 0.257475" +"spawnflags" "2" +"health" "96" +} +// entity 100 +{ +"classname" "light" +"light" "120" +"origin" "393 496 185" +"_color" "1.000000 0.912500 0.812500" +"_fade" ".7" +} +// entity 101 +{ +"speed" "150" +"spawnflags" "1" +"classname" "func_rotating" +// brush 0 +{ +( 154 174 240 ) ( 154 178 240 ) ( 150 178 240 ) common/0_origin -22 8 90 1 1 16777216 0 0 +( 150 178 274 ) ( 154 178 274 ) ( 154 174 274 ) common/0_origin -22 8 90 1 1 16777216 0 0 +( 150 178 234 ) ( 150 174 234 ) ( 150 174 232 ) common/0_origin -24 20 0 1 1 16777216 0 0 +( 150 174 234 ) ( 154 174 234 ) ( 154 174 232 ) common/0_origin -8 18 -180 1 -1 16777216 0 0 +( 154 174 234 ) ( 154 178 234 ) ( 154 178 232 ) common/0_origin -24 20 0 1 1 16777216 0 0 +( 154 178 234 ) ( 150 178 234 ) ( 150 178 232 ) common/0_origin -8 18 -180 1 -1 16777216 0 0 +} +// brush 1 +{ +( 154 174 240 ) ( 154 178 240 ) ( 150 178 240 ) metals/mt_sr_v24 -32 40 90 1 1 0 0 0 +( 150 178 246 ) ( 154 178 246 ) ( 154 174 246 ) metals/mt_sr_v24 -32 40 90 1 1 0 0 0 +( 148 178 234 ) ( 148 174 234 ) ( 148 174 232 ) metals/mt_sr_v24 -32 12 0 1 1 0 0 0 +( 150 172 234 ) ( 154 172 234 ) ( 154 172 232 ) metals/mt_sr_v24 -40 11 -180 1 -1 0 0 0 +( 156 174 234 ) ( 156 178 234 ) ( 156 178 232 ) metals/mt_sr_v24 -32 12 0 1 1 0 0 0 +( 154 180 234 ) ( 150 180 234 ) ( 150 180 232 ) metals/mt_sr_v24 -40 11 -180 1 -1 0 0 0 +( 152 170 240 ) ( 148 174 240 ) ( 150 172 246 ) metals/mt_sr_v24 -6 12 0 1 1 0 0 0 +( 158 176 240 ) ( 154 172 240 ) ( 156 174 246 ) metals/mt_sr_v24 6 11 -180 1 -1 0 0 0 +( 152 182 240 ) ( 156 178 240 ) ( 154 180 246 ) metals/mt_sr_v24 -58 12 0 1 1 0 0 0 +( 146 176 240 ) ( 150 180 240 ) ( 148 178 246 ) metals/mt_sr_v24 57 11 -180 1 -1 0 0 0 +} +// brush 2 +{ +( 154 152 242 ) ( 154 172 242 ) ( 150 172 242 ) wood/wd_st_m2 41 -96 270 1 1 0 0 0 +( 150 172 244 ) ( 154 172 244 ) ( 154 152 244 ) wood/wd_st_m2 41 -96 270 1 1 0 0 0 +( 144 112 244 ) ( 144 112 242 ) ( 150 172 242 ) wood/wd_st_m2 75 16 270 1 1 0 0 0 +( 144 112 242 ) ( 144 112 244 ) ( 160 112 244 ) wood/wd_st_m2 76 -96 270 1 1 0 0 0 +( 160 112 242 ) ( 160 112 244 ) ( 154 172 244 ) wood/wd_st_m2 75 16 270 1 1 0 0 0 +( 154 172 246 ) ( 150 172 246 ) ( 150 172 240 ) wood/wd_st_m2 76 -96 270 1 1 0 0 0 +( 158 128 242 ) ( 158 118 242 ) ( 158 123 244 ) wood/wd_st_m2 75 16 270 1 1 0 0 0 +( 146 124 242 ) ( 146 132 242 ) ( 146 128 244 ) wood/wd_st_m2 75 16 270 1 1 0 0 0 +} +// brush 3 +{ +( 176 178 242 ) ( 156 178 242 ) ( 156 174 242 ) wood/wd_st_m2 41 -96 270 1 1 0 0 0 +( 156 174 244 ) ( 156 178 244 ) ( 176 178 244 ) wood/wd_st_m2 41 -96 270 1 1 0 0 0 +( 216 168 244 ) ( 216 168 242 ) ( 156 174 242 ) wood/wd_st_m2 76 -96 270 1 1 0 0 0 +( 216 168 242 ) ( 216 168 244 ) ( 216 184 244 ) wood/wd_st_m2 75 16 270 1 1 0 0 0 +( 216 184 242 ) ( 216 184 244 ) ( 156 178 244 ) wood/wd_st_m2 76 -96 270 1 1 0 0 0 +( 156 178 246 ) ( 156 174 246 ) ( 156 174 240 ) wood/wd_st_m2 75 16 270 1 1 0 0 0 +( 200 182 242 ) ( 210 182 242 ) ( 205 182 244 ) wood/wd_st_m2 76 -96 270 1 1 0 0 0 +( 204 170 242 ) ( 196 170 242 ) ( 200 170 244 ) wood/wd_st_m2 76 -96 270 1 1 0 0 0 +} +// brush 4 +{ +( 128 174 242 ) ( 148 174 242 ) ( 148 178 242 ) wood/wd_st_m2 41 -96 270 1 1 0 0 0 +( 148 178 244 ) ( 148 174 244 ) ( 128 174 244 ) wood/wd_st_m2 41 -96 270 1 1 0 0 0 +( 88 184 244 ) ( 88 184 242 ) ( 148 178 242 ) wood/wd_st_m2 76 -96 270 1 1 0 0 0 +( 88 184 242 ) ( 88 184 244 ) ( 88 168 244 ) wood/wd_st_m2 75 16 270 1 1 0 0 0 +( 88 168 242 ) ( 88 168 244 ) ( 148 174 244 ) wood/wd_st_m2 76 -96 270 1 1 0 0 0 +( 148 174 246 ) ( 148 178 246 ) ( 148 178 240 ) wood/wd_st_m2 75 16 270 1 1 0 0 0 +( 104 170 242 ) ( 94 170 242 ) ( 99 170 244 ) wood/wd_st_m2 76 -96 270 1 1 0 0 0 +( 100 182 242 ) ( 108 182 242 ) ( 104 182 244 ) wood/wd_st_m2 76 -96 270 1 1 0 0 0 +} +// brush 5 +{ +( 150 200 242 ) ( 150 180 242 ) ( 154 180 242 ) wood/wd_st_m2 41 -96 270 1 1 0 0 0 +( 154 180 244 ) ( 150 180 244 ) ( 150 200 244 ) wood/wd_st_m2 41 -96 270 1 1 0 0 0 +( 160 240 244 ) ( 160 240 242 ) ( 154 180 242 ) wood/wd_st_m2 75 16 270 1 1 0 0 0 +( 160 240 242 ) ( 160 240 244 ) ( 144 240 244 ) wood/wd_st_m2 76 -96 270 1 1 0 0 0 +( 144 240 242 ) ( 144 240 244 ) ( 150 180 244 ) wood/wd_st_m2 75 16 270 1 1 0 0 0 +( 150 180 246 ) ( 154 180 246 ) ( 154 180 240 ) wood/wd_st_m2 76 -96 270 1 1 0 0 0 +( 146 224 242 ) ( 146 234 242 ) ( 146 229 244 ) wood/wd_st_m2 75 16 270 1 1 0 0 0 +( 158 228 242 ) ( 158 220 242 ) ( 158 224 244 ) wood/wd_st_m2 75 16 270 1 1 0 0 0 +} +} +// entity 102 +{ +"_color" "1.000000 0.912500 0.812500" +"origin" "153 176 201" +"light" "200" +"classname" "junior" +} +// entity 103 +{ +"health" "96" +"spawnflags" "2" +"_color" "0.314936 0.289997 0.257475" +"origin" "152 176 231" +"light" "10" +"classname" "lightflare" +} +// entity 104 +{ +"_fade" ".7" +"_color" "1.000000 0.912500 0.812500" +"origin" "153 176 185" +"light" "120" +"classname" "light" +} +// entity 105 +{ +"origin" "136 672 152" +"angle" "270" +"classname" "info_player_coop" +"targetname" "from_hub" +} +// entity 106 +{ +"classname" "info_player_coop" +"angle" "270" +"origin" "184 656 152" +"targetname" "from_hub" +} +// entity 107 +{ +"moral" "6" +"acc" "4" +"aiflags" "1" +"spawnflags" "64" +"classname" "cast_shorty" +"angle" "270" +"art_skins" "064 047 047" +"origin" "1296 656 104" +"name" "sal" +"cast_group" "1" +"health" "250" +} +// entity 108 +{ +"_color" "1.000000 0.912500 0.812500" +"origin" "1329 460 169" +"light" "200" +"classname" "junior" +} +// entity 109 +{ +"health" "96" +"spawnflags" "2" +"_color" "0.314936 0.289997 0.257475" +"origin" "1328 460 215" +"light" "10" +"classname" "lightflare" +} +// entity 110 +{ +"art_skins" "600 043 003" +"name" "selma" +"cast_group" "0" +"angle" "270" +"origin" "496 384 136" +"classname" "cast_bitch" +"head" "2" +} +// entity 111 +{ +"art_skins" "040 015 003" +"cast_group" "0" +"angle" "90" +"classname" "cast_bitch" +"origin" "512 336 136" +} +// entity 112 +{ +"origin" "1344 616 144" +"cast_group" "1" +"classname" "target_crosslevel_target" +"spawnflags" "1" +"target" "t17" +} +// entity 113 +{ +"lightit" "6" +"angle" "315" +"classname" "props_trashbottle_vert" +"origin" "555 382 168" +} +// entity 114 +{ +"classname" "light" +"_color" "1.000000 0.811688 0.616883" +"light" "120" +"origin" "960 584 108" +"spawnflags" "0" +} +// entity 115 +{ +"classname" "junior" +"_color" "1.000000 0.811688 0.616883" +"light" "300" +"origin" "960 584 170" +} +// entity 116 +{ +"spawnflags" "8" +"origin" "960 584 210" +"light" "120" +"_color" "1.000000 0.811688 0.616883" +"classname" "light" +} +// entity 117 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/lightf_hum" +"origin" "960 584 186" +} +// entity 118 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"dmg" "2" +"origin" "960 584 236" +} +// entity 119 +{ +"spawnflags" "0" +"origin" "960 832 100" +"light" "120" +"_color" "1.000000 0.811688 0.616883" +"classname" "light" +} +// entity 120 +{ +"origin" "960 832 170" +"light" "300" +"_color" "1.000000 0.811688 0.616883" +"classname" "junior" +} +// entity 121 +{ +"classname" "light" +"_color" "1.000000 0.811688 0.616883" +"light" "120" +"origin" "960 832 210" +"spawnflags" "8" +} +// entity 122 +{ +"origin" "960 832 186" +"noise" "world/lightf_hum" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 123 +{ +"origin" "960 832 236" +"dmg" "2" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 124 +{ +"_fade" ".7" +"_color" "1.000000 0.912500 0.812500" +"origin" "1329 636 105" +"light" "80" +"classname" "light" +} +// entity 125 +{ +"classname" "light" +"light" "80" +"origin" "1329 460 105" +"_color" "1.000000 0.912500 0.812500" +"_fade" ".7" +} +// entity 126 +{ +"classname" "func_wall" +// brush 0 +{ +( 478 78 80 ) ( 482 78 80 ) ( 482 82 80 ) metals/mt_pv_m16n -104 16 90 1 1 0 0 0 +( 476 84 82 ) ( 476 84 80 ) ( 484 84 80 ) metals/mt_pv_m16n 39 0 -180 1 -1 0 0 0 +( 476 84 80 ) ( 476 84 82 ) ( 476 76 82 ) metals/mt_pv_m16n -104 0 0 1 1 0 0 0 +( 476 76 80 ) ( 476 76 82 ) ( 484 76 82 ) metals/mt_pv_m16n 39 0 -180 1 -1 0 0 0 +( 484 84 82 ) ( 484 84 80 ) ( 484 76 80 ) metals/mt_pv_m16n -104 0 0 1 1 0 0 0 +( 477 82 82 ) ( 482 82 82 ) ( 479 78 82 ) metals/mt_pv_m16n -104 16 90 1 1 0 0 0 +} +} +// entity 127 +{ +"classname" "func_wall" +// brush 0 +{ +( 638 78 80 ) ( 642 78 80 ) ( 642 82 80 ) metals/mt_pv_m16n -104 -15 90 1 1 0 0 0 +( 636 84 82 ) ( 636 84 80 ) ( 644 84 80 ) metals/mt_pv_m16n 71 0 -180 1 -1 0 0 0 +( 636 84 80 ) ( 636 84 82 ) ( 636 76 82 ) metals/mt_pv_m16n -104 0 0 1 1 0 0 0 +( 636 76 80 ) ( 636 76 82 ) ( 644 76 82 ) metals/mt_pv_m16n 71 0 -180 1 -1 0 0 0 +( 644 84 82 ) ( 644 84 80 ) ( 644 76 80 ) metals/mt_pv_m16n -104 0 0 1 1 0 0 0 +( 637 82 82 ) ( 642 82 82 ) ( 639 78 82 ) metals/mt_pv_m16n -104 -15 90 1 1 0 0 0 +} +} +// entity 128 +{ +"classname" "func_wall" +// brush 0 +{ +( 638 942 80 ) ( 642 942 80 ) ( 642 946 80 ) metals/mt_pv_m16n -72 -15 90 1 1 0 0 0 +( 636 948 82 ) ( 636 948 80 ) ( 644 948 80 ) metals/mt_pv_m16n 71 0 -180 1 -1 0 0 0 +( 636 948 80 ) ( 636 948 82 ) ( 636 940 82 ) metals/mt_pv_m16n -72 0 0 1 1 0 0 0 +( 636 940 80 ) ( 636 940 82 ) ( 644 940 82 ) metals/mt_pv_m16n 71 0 -180 1 -1 0 0 0 +( 644 948 82 ) ( 644 948 80 ) ( 644 940 80 ) metals/mt_pv_m16n -72 0 0 1 1 0 0 0 +( 637 946 82 ) ( 642 946 82 ) ( 639 942 82 ) metals/mt_pv_m16n -72 -15 90 1 1 0 0 0 +} +} +// entity 129 +{ +"classname" "func_wall" +// brush 0 +{ +( 478 942 80 ) ( 482 942 80 ) ( 482 946 80 ) metals/mt_pv_m16n -72 17 90 1 1 0 0 0 +( 476 948 82 ) ( 476 948 80 ) ( 484 948 80 ) metals/mt_pv_m16n -89 0 -180 1 -1 0 0 0 +( 476 948 80 ) ( 476 948 82 ) ( 476 940 82 ) metals/mt_pv_m16n -72 0 0 1 1 0 0 0 +( 476 940 80 ) ( 476 940 82 ) ( 484 940 82 ) metals/mt_pv_m16n -89 0 -180 1 -1 0 0 0 +( 484 948 82 ) ( 484 948 80 ) ( 484 940 80 ) metals/mt_pv_m16n -72 0 0 1 1 0 0 0 +( 477 946 82 ) ( 482 946 82 ) ( 479 942 82 ) metals/mt_pv_m16n -72 17 90 1 1 0 0 0 +} +} +// entity 130 +{ +"classname" "props_trashbottle_vert" +"origin" "642 910 128" +} +// entity 131 +{ +"classname" "props_trashbottle_vert" +"origin" "474 906 128" +} +// entity 132 +{ +"classname" "junior" +"light" "200" +"origin" "1153 452 169" +"_color" "1.000000 0.912500 0.812500" +} +// entity 133 +{ +"classname" "lightflare" +"light" "10" +"origin" "1152 452 215" +"_color" "0.314936 0.289997 0.257475" +"spawnflags" "2" +"health" "96" +} +// entity 134 +{ +"_fade" ".7" +"_color" "1.000000 0.912500 0.812500" +"origin" "1153 452 105" +"light" "80" +"classname" "light" +} +// entity 135 +{ +"moral" "6" +"health" "250" +"name" "lefty" +"cast_group" "1" +"classname" "cast_punk" +"angle" "135" +"art_skins" "064 046 047" +"origin" "1392 464 104" +"spawnflags" "64" +"aiflags" "1" +} +// entity 136 +{ +"classname" "target_speaker" +"noise" "world/cypress5" +"spawnflags" "1" +"origin" "960 536 208" +"attenuation" "-1" +} +// entity 137 +{ +"origin" "1264 576 136" +"targetname" "t17" +"classname" "trigger_relay" +"killtarget" "bumwillie" +"delay" ".2" +} diff --git a/examples/maps/rival_teams.map b/examples/maps/rival_teams.map new file mode 100644 index 0000000..f0f86af --- /dev/null +++ b/examples/maps/rival_teams.map @@ -0,0 +1,15025 @@ +{ +"classname" "worldspawn" +"nextmap" "kpdm2" +"sky" "st" +"fogdensity" "0.00015" +"fogval" "0.3 0.35 0.4" +"message" "Rival Teams" +"fogdensity2" "0.000105" +"fogval2" "0.3 0.35 0.4" +"sounds" "3" +{ +( 1344 8192 8192 ) ( 1344 -8192 8192 ) ( 1344 8192 -8192 ) common/0_hint 16 0 0 1.000000 1.000000 0 384 0 +( 1472 -8192 8192 ) ( 1472 8192 8192 ) ( 1472 8192 -8192 ) common/0_hint 16 0 0 1.000000 1.000000 0 384 0 +( -8192 1328 8192 ) ( 8192 1328 8192 ) ( -8192 1328 -8192 ) common/0_hint 0 0 180 1.000000 1.000000 0 384 0 +( 8192 1344 8192 ) ( -8192 1344 8192 ) ( -8192 1344 -8192 ) common/0_hint 0 0 180 1.000000 1.000000 0 384 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) common/0_hint 16 -31 90 1.000000 1.000000 0 384 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) common/0_hint 16 -31 90 1.000000 1.000000 0 384 0 +} +{ +( -1088 8192 8192 ) ( -1088 -8192 8192 ) ( -1088 8192 -8192 ) common/0_hint 16 0 0 1.000000 1.000000 0 384 0 +( -960 -8192 8192 ) ( -960 8192 8192 ) ( -960 8192 -8192 ) common/0_hint 16 0 0 1.000000 1.000000 0 384 0 +( -8192 1312 8192 ) ( 8192 1312 8192 ) ( -8192 1312 -8192 ) common/0_hint 16 0 180 1.000000 1.000000 0 384 0 +( 8192 1328 8192 ) ( -8192 1328 8192 ) ( -8192 1328 -8192 ) common/0_hint 16 0 180 1.000000 1.000000 0 384 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) common/0_hint 16 15 90 1.000000 1.000000 0 384 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) common/0_hint 16 15 90 1.000000 1.000000 0 384 0 +} +{ +( -1088 8192 8192 ) ( -1088 -8192 8192 ) ( -1088 8192 -8192 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( -960 -8192 8192 ) ( -960 8192 8192 ) ( -960 8192 -8192 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( -8192 1456 8192 ) ( 8192 1456 8192 ) ( -8192 1456 -8192 ) common/0_hint -16 0 180 1.000000 1.000000 0 384 0 +( 8192 1472 8192 ) ( -8192 1472 8192 ) ( -8192 1472 -8192 ) common/0_hint -16 0 180 1.000000 1.000000 0 384 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) common/0_hint 0 15 90 1.000000 1.000000 0 384 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) common/0_hint 0 15 90 1.000000 1.000000 0 384 0 +} +{ +( -1216 8192 8192 ) ( -1216 -8192 8192 ) ( -1216 8192 -8192 ) common/0_hint -16 0 0 1.000000 1.000000 0 384 0 +( -1088 -8192 8192 ) ( -1088 8192 8192 ) ( -1088 8192 -8192 ) common/0_hint -16 0 0 1.000000 1.000000 0 384 0 +( -8192 480 8192 ) ( 8192 480 8192 ) ( -8192 480 -8192 ) common/0_hint 0 0 180 1.000000 1.000000 0 384 0 +( 8192 496 8192 ) ( -8192 496 8192 ) ( -8192 496 -8192 ) common/0_hint 0 0 180 1.000000 1.000000 0 384 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) common/0_hint -16 0 90 1.000000 1.000000 0 384 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) common/0_hint -16 0 90 1.000000 1.000000 0 384 0 +} +{ +( -848 8192 8192 ) ( -848 -8192 8192 ) ( -848 8192 -8192 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( -832 -8192 8192 ) ( -832 8192 8192 ) ( -832 8192 -8192 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( -8192 352 8192 ) ( 8192 352 8192 ) ( -8192 352 -8192 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 8192 480 8192 ) ( -8192 480 8192 ) ( -8192 480 -8192 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 848 -8192 8192 ) ( 848 8192 8192 ) ( 848 8192 -8192 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( -8192 1344 8192 ) ( 8192 1344 8192 ) ( -8192 1344 -8192 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 8192 1472 8192 ) ( -8192 1472 8192 ) ( -8192 1472 -8192 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +} +{ +( -832 1381 8192 ) ( -832 -960 8192 ) ( -832 1381 -8192 ) bricks/b_sr_c27 32 32 0 1.000000 1.000000 1 0 0 +( 0 -960 8192 ) ( 0 1381 8192 ) ( 0 1381 -8192 ) bricks/b_sr_c27 32 32 0 1.000000 1.000000 1 0 0 +( -8192 192 8192 ) ( 8192 192 8192 ) ( -8192 192 -8192 ) bricks/b_sr_c27 -8 32 0 1.000000 1.000000 1 0 0 +( 8192 256 8192 ) ( -8192 256 8192 ) ( -8192 256 -8192 ) metals/mt_sr_v16 0 -3 0 2.000000 2.000000 1 8388608 0 +( 8192 -960 352 ) ( 8192 1381 352 ) ( -8192 -960 352 ) bricks/b_sr_c27 -8 -32 0 1.000000 1.000000 1 0 0 +( 8192 1381 416 ) ( 8192 -960 416 ) ( -8192 -960 416 ) metals/mt_mf_v1c 0 -3 0 10.000000 10.000000 1 2099200 0 +} +{ +( -1696 8192 8192 ) ( -1696 -8192 8192 ) ( -1696 8192 -8192 ) props/box_sr_m6 6 43 0 0.750000 0.750000 1 134217728 0 +( -1648 -8192 8192 ) ( -1648 8192 8192 ) ( -1648 8192 -8192 ) props/box_sr_m6 6 43 0 0.750000 0.750000 1 134217728 0 +( -8192 908 8192 ) ( 8192 908 8192 ) ( -8192 908 -8192 ) props/box_sr_m6 21 43 0 0.750000 0.750000 1 134217728 0 +( 8192 956 8192 ) ( -8192 956 8192 ) ( -8192 956 -8192 ) props/box_sr_m6 21 43 0 0.750000 0.750000 1 134217728 0 +( 8192 -8192 320 ) ( 8192 8192 320 ) ( -8192 -8192 320 ) props/box_sr_m6 32 -52 0 1.000000 1.000000 1 134217728 0 +( 8192 8192 368 ) ( 8192 -8192 368 ) ( -8192 -8192 368 ) props/box_sr_m5 21 -6 0 0.750000 0.750000 1 134217728 0 +} +{ +( -832 478 8192 ) ( -832 -107 8192 ) ( -832 478 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( 0 -107 8192 ) ( 0 478 8192 ) ( 0 478 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( -8192 176 8192 ) ( 8192 176 8192 ) ( -8192 176 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( 8192 192 8192 ) ( -8192 192 8192 ) ( -8192 192 -8192 ) props/bld_rc_c11 5 104 0 -7.000000 4.000000 +( 8192 -107 416 ) ( 8192 478 416 ) ( -8192 -107 416 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( 8192 478 1024 ) ( 8192 -107 1024 ) ( -8192 -107 1024 ) metals/mt_mf_v1c 0 0 0 5.000000 5.000000 1 2099200 0 +} +{ +( -832 9963 7808 ) ( -832 -10062 7808 ) ( -832 9963 -8576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( -384 -10062 7808 ) ( -384 9963 7808 ) ( -384 9963 -8576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 576 7808 ) ( 8192 576 7808 ) ( -8192 576 -8576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1280 7808 ) ( -8192 1280 7808 ) ( -8192 1280 -8576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -10062 576 ) ( 8192 9963 576 ) ( -8192 -10062 576 ) metals/mt_sr_v13 0 0 0 1.000000 1.000000 1 0 0 +( 8192 9963 640 ) ( 8192 -10062 640 ) ( -8192 -10062 640 ) floors/rf_sr_m2 0 0 0 5.000000 5.000000 1 0 0 +} +{ +( -1088 8192 24112 ) ( -1088 -8192 24112 ) ( -1088 8192 -25040 ) bricks/c_sr_m2c -24 -72 180 1.000000 1.000000 1 67108864 0 +( -960 -8192 24112 ) ( -960 8192 24112 ) ( -960 8192 -25040 ) bricks/c_sr_m2c -24 -72 180 1.000000 1.000000 1 67108864 0 +( -8192 960 24112 ) ( 8192 960 24112 ) ( -8192 960 -25040 ) bricks/c_sr_m2c -8 -72 180 1.000000 1.000000 1 67108864 0 +( 8192 1072 24112 ) ( -8192 1072 24112 ) ( -8192 1072 -25040 ) bricks/c_sr_m2c -8 -72 180 1.000000 1.000000 1 67108864 0 +( 8192 -8192 232 ) ( 8192 8192 232 ) ( -8192 -8192 232 ) bricks/c_sr_m2c -8 -80 180 1.000000 1.000000 1 67108864 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) metals/mt_sr_v13 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -848 8192 8192 ) ( -848 -8192 8192 ) ( -848 8192 -8192 ) bricks/b_mf_v2 120 -64 0 1.000000 1.000000 1 0 0 +( -832 -8192 8192 ) ( -832 8192 8192 ) ( -832 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 512 8192 ) ( 8192 512 8192 ) ( -8192 512 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 576 8192 ) ( -8192 576 8192 ) ( -8192 576 -8192 ) metals/mt_pv_m16l 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 768 ) ( 8192 8192 768 ) ( -8192 -8192 768 ) bricks/b_mf_v2 64 -120 0 1.000000 1.000000 1 0 0 +( 8192 8192 960 ) ( 8192 -8192 960 ) ( -8192 -8192 960 ) bricks/b_mf_v2 64 -120 0 1.000000 1.000000 1 0 0 +} +{ +( -1088 7288 952 ) ( -1088 -7048 952 ) ( -1088 7288 -290 ) metals/mt_sr_v18 0 0 0 1.000000 1.000000 1 8388608 0 +( -944 -7048 952 ) ( -944 7288 952 ) ( -944 7288 -290 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -66176 960 952 ) ( 81280 960 952 ) ( -66176 960 -290 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 81280 1072 952 ) ( -66176 1072 952 ) ( -66176 1072 -290 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 81280 -7048 360 ) ( 81280 7288 360 ) ( -66176 -7048 360 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 81280 7288 400 ) ( 81280 -7048 400 ) ( -66176 -7048 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -1088 8192 8192 ) ( -1088 -8192 8192 ) ( -1088 8192 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( -960 -8192 8192 ) ( -960 8192 8192 ) ( -960 8192 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( -8192 1072 8192 ) ( 8192 1072 8192 ) ( -8192 1072 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 1088 8192 ) ( -8192 1088 8192 ) ( -8192 1088 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 352 ) ( 8192 8192 352 ) ( -8192 -8192 352 ) metals/mt_sr_v13 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v16 0 32 0 1.000000 1.000000 1 8390656 0 +} +{ +( -2240 8192 8192 ) ( -2240 -8192 8192 ) ( -2240 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 672 8192 ) ( 8192 672 8192 ) ( -8192 672 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 736 8192 ) ( -8192 736 8192 ) ( -8192 736 -8192 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -2240 8192 8192 ) ( -2240 -8192 8192 ) ( -2240 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1568 8192 ) ( 8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1632 8192 ) ( -8192 1632 8192 ) ( -8192 1632 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1280 8192 ) ( 8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1024 8192 ) ( -8192 1024 8192 ) ( -8192 1024 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1216 8192 ) ( 8192 1216 8192 ) ( -8192 1216 -8192 ) bricks/b_mf_v2a 64 0 0 1.000000 1.000000 1 0 0 +( 8192 1280 8192 ) ( -8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1024 8192 ) ( 8192 1024 8192 ) ( -8192 1024 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1088 8192 ) ( -8192 1088 8192 ) ( -8192 1088 -8192 ) bricks/b_mf_v2a 64 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1472 8192 8192 ) ( 1472 -8192 8192 ) ( 1472 8192 -8192 ) bricks/b_sr_c26d 0 112 0 1.000000 1.000000 1 0 0 +( 1536 -8192 8192 ) ( 1536 8192 8192 ) ( 1536 8192 -8192 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +( -8192 960 8192 ) ( 8192 960 8192 ) ( -8192 960 -8192 ) bricks/b_sr_c26d 0 112 0 1.000000 1.000000 1 0 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/b_sr_c27 0 112 0 1.000000 1.000000 1 0 0 +( 8192 -8192 416 ) ( 8192 8192 416 ) ( -8192 -8192 416 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1536 8192 8192 ) ( 1536 -8192 8192 ) ( 1536 8192 -8192 ) bricks/b_sr_c27 0 112 0 1.000000 1.000000 1 0 0 +( 1728 -8192 8192 ) ( 1728 8192 8192 ) ( 1728 8192 -8192 ) bricks/b_sr_c27 0 112 0 1.000000 1.000000 1 0 0 +( -8192 1024 8192 ) ( 8192 1024 8192 ) ( -8192 1024 -8192 ) bricks/b_mf_v2 0 112 0 1.000000 1.000000 1 0 0 +( 8192 1152 8192 ) ( -8192 1152 8192 ) ( -8192 1152 -8192 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 416 ) ( 8192 8192 416 ) ( -8192 -8192 416 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1728 9600 8192 ) ( 1728 -10061 8192 ) ( 1728 9600 -8192 ) bricks/b_sr_c27 0 112 0 1.000000 1.000000 1 0 0 +( 1792 -10061 8192 ) ( 1792 9600 8192 ) ( 1792 9600 -8192 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +( -9609 960 8192 ) ( 9115 960 8192 ) ( -9609 960 -8192 ) bricks/b_mf_v2 0 112 0 1.000000 1.000000 1 0 0 +( 9115 1152 8192 ) ( -9609 1152 8192 ) ( -9609 1152 -8192 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +( 9115 -10061 416 ) ( 9115 9600 416 ) ( -9609 -10061 416 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 9115 9600 512 ) ( 9115 -10061 512 ) ( -9609 -10061 512 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1728 9120 8192 ) ( 1728 -9250 8192 ) ( 1728 9120 -8192 ) bricks/b_mf_v2 0 112 0 1.000000 1.000000 1 0 0 +( 1792 -9250 8192 ) ( 1792 9120 8192 ) ( 1792 9120 -8192 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +( -9609 536 8192 ) ( 9115 536 8192 ) ( -9609 536 -8192 ) bricks/b_mf_v2 0 112 0 1.000000 1.000000 1 0 0 +( 9115 832 8192 ) ( -9609 832 8192 ) ( -9609 832 -8192 ) bricks/b_mf_v2 0 112 0 1.000000 1.000000 1 0 0 +( 9115 -9250 416 ) ( 9115 9120 416 ) ( -9609 -9250 416 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 9115 9120 512 ) ( 9115 -9250 512 ) ( -9609 -9250 512 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1696 -8192 8192 ) ( 1696 8192 8192 ) ( 1696 8192 -8192 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( -13260 1536 8192 ) ( 11522 1536 8192 ) ( -13260 1536 -8192 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 11522 1552 8192 ) ( -13260 1552 8192 ) ( -13260 1552 -8192 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 11522 -8192 384 ) ( 11522 8192 384 ) ( -13260 -8192 384 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 11522 8192 896 ) ( 11522 -8192 896 ) ( -13260 -8192 896 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( -9320 6386 8192 ) ( 11298 -2701 8192 ) ( 11298 -2701 -8192 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +} +{ +( 1952 -8192 8192 ) ( 1952 8192 8192 ) ( 1952 8192 -8192 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( -15699 1536 8192 ) ( 12810 1536 8192 ) ( -15699 1536 -8192 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 12810 1552 8192 ) ( -15699 1552 8192 ) ( -15699 1552 -8192 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 12810 -8192 384 ) ( 12810 8192 384 ) ( -15699 -8192 384 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 12810 8192 896 ) ( 12810 -8192 896 ) ( -15699 -8192 896 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( -11031 6504 8192 ) ( 12690 -2583 8192 ) ( 12690 -2583 -8192 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +} +{ +( -1536 8192 8192 ) ( -1536 -8192 8192 ) ( -1536 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -32 -8192 8192 ) ( -32 8192 8192 ) ( -32 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -10737 2624 8192 ) ( 11912 2624 8192 ) ( -10737 2624 -8192 ) bricks/b_mf_v2a 64 -64 0 1.000000 1.000000 1 0 0 +( 11912 2688 8192 ) ( -10737 2688 8192 ) ( -10737 2688 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 11912 -8192 448 ) ( 11912 8192 448 ) ( -10737 -8192 448 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 11912 8192 576 ) ( 11912 -8192 576 ) ( -10737 -8192 576 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( 704 8192 8192 ) ( 704 -8192 8192 ) ( 704 8192 -8192 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 832 -8192 8192 ) ( 832 8192 8192 ) ( 832 8192 -8192 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( -8192 1256 8192 ) ( 8192 1256 8192 ) ( -8192 1256 -8192 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +} +{ +( -528 8192 8192 ) ( -528 -8192 8192 ) ( -528 8192 -8192 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( -512 -8192 8192 ) ( -512 8192 8192 ) ( -512 8192 -8192 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( -8192 1328 8192 ) ( 8192 1328 8192 ) ( -8192 1328 -8192 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 8192 1456 8192 ) ( -8192 1456 8192 ) ( -8192 1456 -8192 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +} +{ +( 640 3840 8192 ) ( 640 -3182 8192 ) ( 640 3840 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( 896 -3182 8192 ) ( 896 3840 8192 ) ( 896 3840 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( -8192 192 8192 ) ( 8192 192 8192 ) ( -8192 192 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( 8192 -3182 1024 ) ( 8192 3840 1024 ) ( -8192 -3182 1024 ) common/li_sr_m14 0 0 90 20.000000 20.000000 0 5 300 +( 8192 3840 1088 ) ( 8192 -3182 1088 ) ( -8192 -3182 1088 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( -448 8192 8192 ) ( -448 -8192 8192 ) ( -448 8192 -8192 ) bricks/b_sr_20 0 0 180 1.000000 1.000000 1 0 0 +( -320 -8192 8192 ) ( -320 8192 8192 ) ( -320 8192 -8192 ) bricks/b_sr_20 0 0 180 1.000000 1.000000 1 0 0 +( -8192 1504 8192 ) ( 8192 1504 8192 ) ( -8192 1504 -8192 ) bricks/b_sr_20 0 0 180 1.000000 1.000000 1 0 0 +( 8192 1600 8192 ) ( -8192 1600 8192 ) ( -8192 1600 -8192 ) bricks/b_sr_20 0 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 144 ) ( 8192 8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 180 1.000000 1.000000 1 0 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_20 0 0 180 1.000000 1.000000 1 0 0 +} +{ +( -448 8192 7250 ) ( -448 -8192 7250 ) ( -448 8192 -7086 ) bricks/b_sr_20 0 0 180 1.000000 1.000000 1 0 0 +( -320 -8192 7250 ) ( -320 8192 7250 ) ( -320 8192 -7086 ) bricks/b_sr_20 0 0 180 1.000000 1.000000 1 0 0 +( -8192 1504 7250 ) ( 8192 1504 7250 ) ( -8192 1504 -7086 ) bricks/b_sr_20 0 0 180 1.000000 1.000000 1 0 0 +( 8192 1600 7250 ) ( -8192 1600 7250 ) ( -8192 1600 -7086 ) bricks/b_sr_20 0 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 656 ) ( 8192 8192 656 ) ( -8192 -8192 656 ) bricks/b_sr_20 0 0 180 1.000000 1.000000 1 0 0 +( 8192 8192 768 ) ( 8192 -8192 768 ) ( -8192 -8192 768 ) bricks/b_sr_20 0 0 180 1.000000 1.000000 1 0 0 +} +{ +( -448 8192 8192 ) ( -448 -8192 8192 ) ( -448 8192 -8192 ) bricks/b_sr_c01 0 0 180 1.000000 1.000000 1 0 0 +( -320 -8192 8192 ) ( -320 8192 8192 ) ( -320 8192 -8192 ) bricks/b_sr_c01 0 0 180 1.000000 1.000000 1 0 0 +( -8192 1504 8192 ) ( 8192 1504 8192 ) ( -8192 1504 -8192 ) bricks/b_sr_c09 52 16 0 1.000000 1.000000 1 0 0 +( 8192 1600 8192 ) ( -8192 1600 8192 ) ( -8192 1600 -8192 ) bricks/b_sr_c01 0 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 400 ) ( 8192 8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c01 0 0 180 1.000000 1.000000 1 0 0 +( 8192 8192 656 ) ( 8192 -8192 656 ) ( -8192 -8192 656 ) bricks/b_sr_c01 0 0 180 1.000000 1.000000 1 0 0 +} +{ +( -272 8192 8192 ) ( -272 -8192 8192 ) ( -272 8192 -8192 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +( -256 -8192 8192 ) ( -256 8192 8192 ) ( -256 8192 -8192 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +( -8192 1616 8192 ) ( 8192 1616 8192 ) ( -8192 1616 -8192 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +( 8192 1984 8192 ) ( -8192 1984 8192 ) ( -8192 1984 -8192 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +} +{ +( -272 4571 8192 ) ( -272 -2256 8192 ) ( -272 4571 -8192 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +( -256 -2256 8192 ) ( -256 4571 8192 ) ( -256 4571 -8192 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +( -8192 1984 8192 ) ( 8192 1984 8192 ) ( -8192 1984 -8192 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +( 8192 2064 8192 ) ( -8192 2064 8192 ) ( -8192 2064 -8192 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +( 8192 -2256 128 ) ( 8192 4571 128 ) ( -8192 -2256 128 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +( 8192 4571 656 ) ( 8192 -2256 656 ) ( -8192 -2256 656 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +} +{ +( -272 6877 7250 ) ( -272 -6230 7250 ) ( -272 6877 -7086 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +( -256 -6230 7250 ) ( -256 6877 7250 ) ( -256 6877 -7086 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +( -8192 1616 7250 ) ( 8192 1616 7250 ) ( -8192 1616 -7086 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +( 8192 2064 7250 ) ( -8192 2064 7250 ) ( -8192 2064 -7086 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +( 8192 -6230 656 ) ( 8192 6877 656 ) ( -8192 -6230 656 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +( 8192 6877 768 ) ( 8192 -6230 768 ) ( -8192 -6230 768 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +} +{ +( -272 8192 6711 ) ( -272 -8192 6711 ) ( -272 8192 -6664 ) bricks/b_sr_c01 32 0 0 1.000000 1.000000 1 0 0 +( -256 -8192 6711 ) ( -256 8192 6711 ) ( -256 8192 -6664 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +( -8192 1568 6711 ) ( 8192 1568 6711 ) ( -8192 1568 -6664 ) bricks/b_sr_c01 32 0 0 1.000000 1.000000 1 0 0 +( 8192 1616 6711 ) ( -8192 1616 6711 ) ( -8192 1616 -6664 ) bricks/b_sr_c01 32 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/b_sr_c01 32 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 768 ) ( 8192 -8192 768 ) ( -8192 -8192 768 ) bricks/b_sr_c01 32 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1224 8192 8192 ) ( -1224 -8192 8192 ) ( -1224 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -1208 -8192 8192 ) ( -1208 8192 8192 ) ( -1208 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 2312 8192 ) ( 8192 2312 8192 ) ( -8192 2312 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 2488 8192 ) ( -8192 2488 8192 ) ( -8192 2488 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 544 ) ( 8192 8192 544 ) ( -8192 -8192 544 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 548 ) ( 8192 -8192 548 ) ( -8192 -8192 548 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( -1224 8192 8192 ) ( -1224 -8192 8192 ) ( -1224 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -1208 -8192 8192 ) ( -1208 8192 8192 ) ( -1208 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 2504 8192 ) ( 8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 2624 8192 ) ( -8192 2624 8192 ) ( -8192 2624 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 544 ) ( 8192 8192 544 ) ( -8192 -8192 544 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 548 ) ( 8192 -8192 548 ) ( -8192 -8192 548 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( -1224 8192 8192 ) ( -1224 -8192 8192 ) ( -1224 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -1208 -8192 8192 ) ( -1208 8192 8192 ) ( -1208 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 2312 8192 ) ( 8192 2312 8192 ) ( -8192 2312 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 2488 8192 ) ( -8192 2488 8192 ) ( -8192 2488 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 476 ) ( 8192 8192 476 ) ( -8192 -8192 476 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 480 ) ( 8192 -8192 480 ) ( -8192 -8192 480 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( -1224 8192 8192 ) ( -1224 -8192 8192 ) ( -1224 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -1208 -8192 8192 ) ( -1208 8192 8192 ) ( -1208 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 2504 8192 ) ( 8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 2624 8192 ) ( -8192 2624 8192 ) ( -8192 2624 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 476 ) ( 8192 8192 476 ) ( -8192 -8192 476 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 480 ) ( 8192 -8192 480 ) ( -8192 -8192 480 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( -1224 8192 8192 ) ( -1224 -8192 8192 ) ( -1224 8192 -8192 ) metals/mt_sr_v13 0 0 0 1.000000 1.000000 1 8388608 0 +( -1208 -8192 8192 ) ( -1208 8192 8192 ) ( -1208 8192 -8192 ) metals/mt_sr_v13 0 0 0 1.000000 1.000000 1 8388608 0 +( -8192 2176 8192 ) ( 8192 2176 8192 ) ( -8192 2176 -8192 ) metals/mt_sr_v13 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2296 8192 ) ( -8192 2296 8192 ) ( -8192 2296 -8192 ) metals/mt_sr_v13 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 476 ) ( 8192 8192 476 ) ( -8192 -8192 476 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 480 ) ( 8192 -8192 480 ) ( -8192 -8192 480 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( -1224 8192 8192 ) ( -1224 -8192 8192 ) ( -1224 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -1208 -8192 8192 ) ( -1208 8192 8192 ) ( -1208 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 2176 8192 ) ( 8192 2176 8192 ) ( -8192 2176 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 2296 8192 ) ( -8192 2296 8192 ) ( -8192 2296 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 544 ) ( 8192 8192 544 ) ( -8192 -8192 544 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 548 ) ( 8192 -8192 548 ) ( -8192 -8192 548 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -832 -8192 8192 ) ( -832 8192 8192 ) ( -832 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 2296 8192 ) ( 8192 2296 8192 ) ( -8192 2296 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 2312 8192 ) ( -8192 2312 8192 ) ( -8192 2312 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 476 ) ( 8192 8192 476 ) ( -8192 -8192 476 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 480 ) ( 8192 -8192 480 ) ( -8192 -8192 480 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -832 -8192 8192 ) ( -832 8192 8192 ) ( -832 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 2296 8192 ) ( 8192 2296 8192 ) ( -8192 2296 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 2312 8192 ) ( -8192 2312 8192 ) ( -8192 2312 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 544 ) ( 8192 8192 544 ) ( -8192 -8192 544 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 548 ) ( 8192 -8192 548 ) ( -8192 -8192 548 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -832 -8192 8192 ) ( -832 8192 8192 ) ( -832 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 2488 8192 ) ( 8192 2488 8192 ) ( -8192 2488 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 2504 8192 ) ( -8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 476 ) ( 8192 8192 476 ) ( -8192 -8192 476 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 480 ) ( 8192 -8192 480 ) ( -8192 -8192 480 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -832 -8192 8192 ) ( -832 8192 8192 ) ( -832 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 2488 8192 ) ( 8192 2488 8192 ) ( -8192 2488 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 2504 8192 ) ( -8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 544 ) ( 8192 8192 544 ) ( -8192 -8192 544 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 548 ) ( 8192 -8192 548 ) ( -8192 -8192 548 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( -968 8192 8192 ) ( -968 -8192 8192 ) ( -968 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -952 -8192 8192 ) ( -952 8192 8192 ) ( -952 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 2176 8192 ) ( 8192 2176 8192 ) ( -8192 2176 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 2296 8192 ) ( -8192 2296 8192 ) ( -8192 2296 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 544 ) ( 8192 8192 544 ) ( -8192 -8192 544 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 548 ) ( 8192 -8192 548 ) ( -8192 -8192 548 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( -968 8192 8192 ) ( -968 -8192 8192 ) ( -968 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -952 -8192 8192 ) ( -952 8192 8192 ) ( -952 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 2176 8192 ) ( 8192 2176 8192 ) ( -8192 2176 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 2296 8192 ) ( -8192 2296 8192 ) ( -8192 2296 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 476 ) ( 8192 8192 476 ) ( -8192 -8192 476 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 480 ) ( 8192 -8192 480 ) ( -8192 -8192 480 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( -968 8192 8192 ) ( -968 -8192 8192 ) ( -968 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -952 -8192 8192 ) ( -952 8192 8192 ) ( -952 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 2504 8192 ) ( 8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 2624 8192 ) ( -8192 2624 8192 ) ( -8192 2624 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 476 ) ( 8192 8192 476 ) ( -8192 -8192 476 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 480 ) ( 8192 -8192 480 ) ( -8192 -8192 480 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -968 8192 8192 ) ( -968 -8192 8192 ) ( -968 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -952 -8192 8192 ) ( -952 8192 8192 ) ( -952 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 2312 8192 ) ( 8192 2312 8192 ) ( -8192 2312 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 2488 8192 ) ( -8192 2488 8192 ) ( -8192 2488 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 476 ) ( 8192 8192 476 ) ( -8192 -8192 476 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 480 ) ( 8192 -8192 480 ) ( -8192 -8192 480 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( -968 8192 8192 ) ( -968 -8192 8192 ) ( -968 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -952 -8192 8192 ) ( -952 8192 8192 ) ( -952 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 2504 8192 ) ( 8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 2624 8192 ) ( -8192 2624 8192 ) ( -8192 2624 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 544 ) ( 8192 8192 544 ) ( -8192 -8192 544 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 548 ) ( 8192 -8192 548 ) ( -8192 -8192 548 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( -968 8192 8192 ) ( -968 -8192 8192 ) ( -968 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -952 -8192 8192 ) ( -952 8192 8192 ) ( -952 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 2312 8192 ) ( 8192 2312 8192 ) ( -8192 2312 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 2488 8192 ) ( -8192 2488 8192 ) ( -8192 2488 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 544 ) ( 8192 8192 544 ) ( -8192 -8192 544 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 548 ) ( 8192 -8192 548 ) ( -8192 -8192 548 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +( 8192 8192 64 ) ( 8192 -8192 64 ) ( -8192 -8192 64 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +( -803 -8191 8155 ) ( -803 8191 8155 ) ( 1228 8191 -8102 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +( 8191 267 8289 ) ( -8191 267 8289 ) ( -8191 2300 -7968 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +( 1181 8191 8108 ) ( 1181 -8191 8108 ) ( -850 -8191 -8149 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +( -8191 2252 7974 ) ( 8191 2252 7974 ) ( 8191 220 -8283 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +} +{ +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +( 8192 8192 64 ) ( 8192 -8192 64 ) ( -8192 -8192 64 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +( -803 -8191 8155 ) ( -803 8191 8155 ) ( 1228 8191 -8102 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +( 8191 456 8312 ) ( -8191 456 8312 ) ( -8191 2489 -7944 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +( 1181 8191 8108 ) ( 1181 -8191 8108 ) ( -850 -8191 -8149 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +( -8191 2441 7950 ) ( 8191 2441 7950 ) ( 8191 409 -8306 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +} +{ +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +( 8192 8192 64 ) ( 8192 -8192 64 ) ( -8192 -8192 64 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +( -1118 -8191 8115 ) ( -1118 8191 8115 ) ( 913 8191 -8141 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +( 8191 456 8312 ) ( -8191 456 8312 ) ( -8191 2489 -7944 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +( 866 8191 8147 ) ( 866 -8191 8147 ) ( -1165 -8191 -8110 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +( -8191 2441 7950 ) ( 8191 2441 7950 ) ( 8191 409 -8306 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +} +{ +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +( 8192 8192 64 ) ( 8192 -8192 64 ) ( -8192 -8192 64 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +( -1118 -8191 8115 ) ( -1118 8191 8115 ) ( 913 8191 -8141 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +( 8191 267 8289 ) ( -8191 267 8289 ) ( -8191 2300 -7968 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +( 866 8191 8147 ) ( 866 -8191 8147 ) ( -1165 -8191 -8110 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +( -8191 2252 7974 ) ( 8191 2252 7974 ) ( 8191 220 -8283 ) bricks/c_sr_m3a 0 -36 0 2.000000 2.000000 1 0 0 +} +{ +( 320 8192 8192 ) ( 320 -8192 8192 ) ( 320 8192 -8192 ) bricks/c_pv_m2 14 -1 180 1.000000 1.000000 1 0 0 +( 832 -8192 8192 ) ( 832 8192 8192 ) ( 832 8192 -8192 ) bricks/c_pv_m2 0 -1 180 1.000000 1.000000 1 0 0 +( -8192 1152 8192 ) ( 8192 1152 8192 ) ( -8192 1152 -8192 ) bricks/c_pv_m2 0 -1 180 1.000000 1.000000 1 0 0 +( 8192 1280 8192 ) ( -8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/c_pv_m2 0 -1 180 1.000000 1.000000 1 0 0 +( 8192 -8192 -8 ) ( 8192 8192 -8 ) ( -8192 -8192 -8 ) bricks/c_pv_m2 0 -1 180 1.000000 1.000000 1 0 0 +( 8192 8192 48 ) ( 8192 -8192 48 ) ( -8192 -8192 48 ) bricks/c_pv_m2 0 -1 180 1.000000 1.000000 1 0 0 +} +{ +( 1088 8192 8192 ) ( 1088 -8192 8192 ) ( 1088 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 1792 -8192 8192 ) ( 1792 8192 8192 ) ( 1792 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 416 8192 ) ( 8192 416 8192 ) ( -8192 416 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 448 8192 ) ( -8192 448 8192 ) ( -8192 448 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 48 ) ( 8192 8192 48 ) ( -8192 -8192 48 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( -320 8192 9088 ) ( -320 -8192 9088 ) ( -320 8192 -9637 ) bricks/b_sr_c15 0 0 0 1.000000 1.000000 1 0 0 +( -256 -8192 9088 ) ( -256 8192 9088 ) ( -256 8192 -9637 ) bricks/b_sr_c15 96 8 0 1.000000 1.000000 1 0 0 +( -8192 1504 9088 ) ( 8192 1504 9088 ) ( -8192 1504 -9637 ) bricks/b_sr_c15 60 8 0 1.000000 1.000000 1 0 0 +( 8192 1600 9088 ) ( -8192 1600 9088 ) ( -8192 1600 -9637 ) bricks/b_sr_c15 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 768 ) ( 8192 8192 768 ) ( -8192 -8192 768 ) bricks/b_sr_c15 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 896 ) ( 8192 -8192 896 ) ( -8192 -8192 896 ) floors/rf_sr_m2 0 0 0 5.000000 5.000000 1 0 0 +} +{ +( -832 41632 9088 ) ( -832 -56672 9088 ) ( -832 41632 -9637 ) bricks/b_sr_c15 0 0 0 1.000000 1.000000 1 0 0 +( -320 -56672 9088 ) ( -320 41632 9088 ) ( -320 41632 -9637 ) bricks/b_sr_c15 96 0 0 1.000000 1.000000 1 0 0 +( -8192 1504 9088 ) ( 8192 1504 9088 ) ( -8192 1504 -9637 ) bricks/b_sr_c06 63 0 0 1.000000 1.000000 1 0 0 +( 8192 1600 9088 ) ( -8192 1600 9088 ) ( -8192 1600 -9637 ) bricks/b_sr_c15 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -56672 768 ) ( 8192 41632 768 ) ( -8192 -56672 768 ) bricks/c_mf_v7d -72 192 90 2.000000 2.000000 1 67108864 0 +( 8192 41632 896 ) ( 8192 -56672 896 ) ( -8192 -56672 896 ) floors/rf_sr_m2 0 0 0 5.000000 5.000000 1 0 0 +} +{ +( -2328 8192 8192 ) ( -2328 -8192 8192 ) ( -2328 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -2296 -8192 8192 ) ( -2296 8192 8192 ) ( -2296 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -8192 1392 8192 ) ( 8192 1392 8192 ) ( -8192 1392 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 1424 8192 ) ( -8192 1424 8192 ) ( -8192 1424 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +} +{ +( -2328 8192 8192 ) ( -2328 -8192 8192 ) ( -2328 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -2320 -8192 8192 ) ( -2320 8192 8192 ) ( -2320 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -8192 1392 8192 ) ( 8192 1392 8192 ) ( -8192 1392 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 1424 8192 ) ( -8192 1424 8192 ) ( -8192 1424 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 -8192 400 ) ( 8192 8192 400 ) ( -8192 -8192 400 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +} +{ +( -2320 8192 8192 ) ( -2320 -8192 8192 ) ( -2320 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -2296 -8192 8192 ) ( -2296 8192 8192 ) ( -2296 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -8192 1392 8192 ) ( 8192 1392 8192 ) ( -8192 1392 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 1400 8192 ) ( -8192 1400 8192 ) ( -8192 1400 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 -8192 400 ) ( 8192 8192 400 ) ( -8192 -8192 400 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +} +{ +( -2328 8192 8192 ) ( -2328 -8192 8192 ) ( -2328 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -2296 -8192 8192 ) ( -2296 8192 8192 ) ( -2296 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -8192 880 8192 ) ( 8192 880 8192 ) ( -8192 880 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 912 8192 ) ( -8192 912 8192 ) ( -8192 912 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +} +{ +( -2328 8192 8192 ) ( -2328 -8192 8192 ) ( -2328 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -2320 -8192 8192 ) ( -2320 8192 8192 ) ( -2320 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -8192 880 8192 ) ( 8192 880 8192 ) ( -8192 880 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 912 8192 ) ( -8192 912 8192 ) ( -8192 912 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 -8192 400 ) ( 8192 8192 400 ) ( -8192 -8192 400 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +} +{ +( -2320 8192 8192 ) ( -2320 -8192 8192 ) ( -2320 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -2296 -8192 8192 ) ( -2296 8192 8192 ) ( -2296 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -8192 904 8192 ) ( 8192 904 8192 ) ( -8192 904 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 912 8192 ) ( -8192 912 8192 ) ( -8192 912 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 -8192 400 ) ( 8192 8192 400 ) ( -8192 -8192 400 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +} +{ +( -832 2387 19520 ) ( -832 1524 19520 ) ( -832 2387 -21440 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +( 576 1524 19520 ) ( 576 2387 19520 ) ( 576 2387 -21440 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +( -14262 2064 19520 ) ( 13465 2064 19520 ) ( -14262 2064 -21440 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( 13465 2080 19520 ) ( -14262 2080 19520 ) ( -14262 2080 -21440 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +( 13465 1524 640 ) ( 13465 2387 640 ) ( -14262 1524 640 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +( 13465 2387 960 ) ( 13465 1524 960 ) ( -14262 1524 960 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2816 6414 17600 ) ( 2816 -5999 17600 ) ( 2816 6414 -20288 ) bricks/b_si_v 0 0 0 7.000000 7.000000 0 5 150 +( 2880 -5999 17600 ) ( 2880 6414 17600 ) ( 2880 6414 -20288 ) bricks/b_si_v 0 0 0 1.000000 1.000000 0 5 150 +( -8192 256 17600 ) ( 8192 256 17600 ) ( -8192 256 -20288 ) bricks/b_si_v 0 0 0 1.000000 1.000000 0 5 150 +( 8192 1856 17600 ) ( -8192 1856 17600 ) ( -8192 1856 -20288 ) bricks/b_si_v 0 0 0 1.000000 1.000000 0 5 150 +( 8192 -5999 728 ) ( 8192 6414 728 ) ( -8192 -5999 728 ) bricks/b_si_v 0 0 0 1.000000 1.000000 0 5 150 +( 8192 6414 1024 ) ( 8192 -5999 1024 ) ( -8192 -5999 1024 ) bricks/b_si_v 0 0 0 1.000000 1.000000 0 5 150 +} +{ +( 1568 8192 8192 ) ( 1568 -8192 8192 ) ( 1568 8192 -8192 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( -15512 1536 8192 ) ( 13160 1536 8192 ) ( -15512 1536 -8192 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 13160 1552 8192 ) ( -15512 1552 8192 ) ( -15512 1552 -8192 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 13160 -8192 384 ) ( 13160 8192 384 ) ( -15512 -8192 384 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 13160 8192 896 ) ( 13160 -8192 896 ) ( -15512 -8192 896 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( -13496 -4208 8192 ) ( 10360 4880 8192 ) ( 10360 4880 -8192 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +} +{ +( 1824 8192 8192 ) ( 1824 -8192 8192 ) ( 1824 8192 -8192 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( -15528 1536 8192 ) ( 12856 1536 8192 ) ( -15528 1536 -8192 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 12856 1552 8192 ) ( -15528 1552 8192 ) ( -15528 1552 -8192 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 12856 -8192 384 ) ( 12856 8192 384 ) ( -15528 -8192 384 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 12856 8192 896 ) ( 12856 -8192 896 ) ( -15528 -8192 896 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( -13396 -4326 8192 ) ( 10219 4761 8192 ) ( 10219 4761 -8192 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +} +{ +( -736 8192 8192 ) ( -736 -8192 8192 ) ( -736 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -512 -8192 8192 ) ( -512 8192 8192 ) ( -512 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 2240 8192 ) ( 8192 2240 8192 ) ( -8192 2240 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 2624 8192 ) ( -8192 2624 8192 ) ( -8192 2624 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 224 ) ( 8192 -8192 224 ) ( -8192 -8192 224 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -2240 8192 8192 ) ( -2240 -8192 8192 ) ( -2240 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -2176 -8192 8192 ) ( -2176 8192 8192 ) ( -2176 8192 -8192 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 448 ) ( 8192 8192 448 ) ( -8192 -8192 448 ) bricks/b_mf_v2 0 0 90 1.000000 1.000000 1 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -320 8192 6711 ) ( -320 -8192 6711 ) ( -320 8192 -6664 ) bricks/b_sr_c01 32 0 0 1.000000 1.000000 1 0 0 +( -256 -8192 6711 ) ( -256 8192 6711 ) ( -256 8192 -6664 ) bricks/b_sr_c01 32 0 0 1.000000 1.000000 1 0 0 +( -8192 1504 6711 ) ( 8192 1504 6711 ) ( -8192 1504 -6664 ) bricks/b_sr_c01 0 0 180 1.000000 1.000000 1 0 0 +( 8192 1568 6711 ) ( -8192 1568 6711 ) ( -8192 1568 -6664 ) bricks/b_sr_c01 -96 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/b_sr_c01 -96 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 768 ) ( 8192 -8192 768 ) ( -8192 -8192 768 ) bricks/b_sr_c01 -96 0 0 1.000000 1.000000 1 0 0 +} +{ +( 320 8192 8192 ) ( 320 -8192 8192 ) ( 320 8192 -8192 ) bricks/b_mf_v2a -16 0 0 1.000000 1.000000 1 1048576 0 +( 832 -8192 8192 ) ( 832 8192 8192 ) ( 832 8192 -8192 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1152 8192 ) ( 8192 1152 8192 ) ( -8192 1152 -8192 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1280 8192 ) ( -8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/b_mf_v2a -16 0 0 1.000000 1.000000 1 1048576 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 0 8192 8192 ) ( 0 -8192 8192 ) ( 0 8192 -8192 ) bricks/b_sr_20 64 -64 180 1.000000 1.000000 1 0 0 +( 64 -8192 8192 ) ( 64 8192 8192 ) ( 64 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 512 8192 ) ( 8192 512 8192 ) ( -8192 512 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 576 8192 ) ( -8192 576 8192 ) ( -8192 576 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 704 ) ( 8192 8192 704 ) ( -8192 -8192 704 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 832 ) ( 8192 -8192 832 ) ( -8192 -8192 832 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 0 8192 8192 ) ( 0 -8192 8192 ) ( 0 8192 -8192 ) bricks/b_sr_20 64 -64 180 1.000000 1.000000 1 0 0 +( 576 -8192 8192 ) ( 576 8192 8192 ) ( 576 8192 -8192 ) bricks/b_si_v 64 -64 180 1.000000 1.000000 1 0 0 +( -8192 512 8192 ) ( 8192 512 8192 ) ( -8192 512 -8192 ) bricks/b_si_v 64 -64 180 1.000000 1.000000 1 0 0 +( 8192 576 8192 ) ( -8192 576 8192 ) ( -8192 576 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 832 ) ( 8192 8192 832 ) ( -8192 -8192 832 ) bricks/b_si_v 64 -64 180 1.000000 1.000000 1 0 0 +( 8192 8192 960 ) ( 8192 -8192 960 ) ( -8192 -8192 960 ) bricks/b_si_v 64 -64 180 1.000000 1.000000 1 0 0 +} +{ +( 64 8192 8192 ) ( 64 -8192 8192 ) ( 64 8192 -8192 ) bricks/b_si_v 0 0 0 1.000000 1.000000 1 0 0 +( 576 -8192 8192 ) ( 576 8192 8192 ) ( 576 8192 -8192 ) bricks/b_si_v 0 0 0 1.000000 1.000000 1 0 0 +( -8192 512 8192 ) ( 8192 512 8192 ) ( -8192 512 -8192 ) bricks/b_si_v 0 0 0 1.000000 1.000000 1 0 0 +( 8192 576 8192 ) ( -8192 576 8192 ) ( -8192 576 -8192 ) bricks/b_si_v 64 -64 0 -1.000000 1.000000 1 0 0 +( 8192 -8192 704 ) ( 8192 8192 704 ) ( -8192 -8192 704 ) bricks/b_si_v 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 832 ) ( 8192 -8192 832 ) ( -8192 -8192 832 ) bricks/b_si_v 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2208 19433 16000 ) ( 2208 -21527 16000 ) ( 2208 19433 -16768 ) wood/wd_st_m3 0 0 0 1.000000 1.000000 1 0 0 +( 2272 -21527 16000 ) ( 2272 19433 16000 ) ( 2272 19433 -16768 ) wood/wd_st_m3 0 0 0 1.000000 1.000000 1 0 0 +( -8192 688 16000 ) ( 8192 688 16000 ) ( -8192 688 -16768 ) wood/wd_st_m3 48 0 0 1.000000 1.000000 1 0 0 +( 8192 698 16000 ) ( -8192 698 16000 ) ( -8192 698 -16768 ) wood/wd_st_m3 0 0 0 1.500000 1.000000 1 0 0 +( 8192 -21527 384 ) ( 8192 19433 384 ) ( -8192 -21527 384 ) wood/wd_st_m3 0 0 0 1.000000 1.000000 1 0 0 +( 8192 19433 640 ) ( 8192 -21527 640 ) ( -8192 -21527 640 ) wood/wd_st_m3 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 336 14486 8192 ) ( 336 -15552 8192 ) ( 336 14486 -8192 ) bricks/b_mf_v2 -16 16 0 1.000000 1.000000 1 1048576 0 +( 528 -15552 8192 ) ( 528 14486 8192 ) ( 528 14486 -8192 ) bricks/b_mf_v2 -16 16 0 1.000000 1.000000 1 1048576 0 +( -8967 640 8192 ) ( 8906 640 8192 ) ( -8967 640 -8192 ) bricks/b_mf_v2 -16 15 180 1.000000 1.000000 1 1048576 0 +( 8906 992 8192 ) ( -8967 992 8192 ) ( -8967 992 -8192 ) bricks/b_mf_v2 -16 15 180 1.000000 1.000000 1 1048576 0 +( 8906 -15552 232 ) ( 8906 14486 232 ) ( -8967 -15552 232 ) bricks/b_mf_v2 -16 40 90 1.000000 1.000000 1 1048576 0 +( 8906 14486 320 ) ( 8906 -15552 320 ) ( -8967 -15552 320 ) bricks/c_sr_m2b 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 512 12840 8192 ) ( 512 -13627 8192 ) ( 512 12840 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 528 -13627 8192 ) ( 528 12840 8192 ) ( 528 12840 -8192 ) bricks/b_mf_v2 0 16 180 1.000000 1.000000 1 1048576 0 +( -8192 640 8192 ) ( 8192 640 8192 ) ( -8192 640 -8192 ) bricks/b_mf_v2 40 16 180 1.000000 1.000000 1 1048576 0 +( 8192 976 8192 ) ( -8192 976 8192 ) ( -8192 976 -8192 ) bricks/b_mf_v2 40 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -13627 296 ) ( 8192 12840 296 ) ( -8192 -13627 296 ) bricks/b_mf_v2 40 23 180 1.000000 1.000000 1 1048576 0 +( 8192 12840 512 ) ( 8192 -13627 512 ) ( -8192 -13627 512 ) bricks/b_mf_v2 40 23 180 1.000000 1.000000 1 1048576 0 +} +{ +( 336 8336 8192 ) ( 336 -8048 8192 ) ( 336 8336 -8192 ) bricks/b_mf_v2 -32 16 0 1.000000 1.000000 1 1048576 0 +( 512 -8048 8192 ) ( 512 8336 8192 ) ( 512 8336 -8192 ) bricks/b_mf_v2 -32 16 0 1.000000 1.000000 1 1048576 0 +( -8192 976 8192 ) ( 8192 976 8192 ) ( -8192 976 -8192 ) bricks/b_mf_v2 -16 16 180 1.000000 1.000000 1 1048576 0 +( 8192 992 8192 ) ( -8192 992 8192 ) ( -8192 992 -8192 ) bricks/b_mf_v2 -16 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8048 232 ) ( 8192 8336 232 ) ( -8192 -8048 232 ) bricks/b_mf_v2 -32 40 90 1.000000 1.000000 1 1048576 0 +( 8192 8336 512 ) ( 8192 -8048 512 ) ( -8192 -8048 512 ) bricks/b_mf_v2 -32 40 90 1.000000 1.000000 1 1048576 0 +} +{ +( 1632 2288 8192 ) ( 1632 -1808 8192 ) ( 1632 2288 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1728 -1808 8192 ) ( 1728 2288 8192 ) ( 1728 2288 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 256 8192 ) ( 8192 256 8192 ) ( -8192 256 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 320 8192 ) ( -8192 320 8192 ) ( -8192 320 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -1808 640 ) ( 8192 2288 640 ) ( -8192 -1808 640 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 2288 960 ) ( 8192 -1808 960 ) ( -8192 -1808 960 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2112 2288 8192 ) ( 2112 -1808 8192 ) ( 2112 2288 -8192 ) bricks/b_sr_c27 0 64 0 1.000000 1.000000 1 0 0 +( 2184 -1808 8192 ) ( 2184 2288 8192 ) ( 2184 2288 -8192 ) bricks/b_sr_c27 0 64 0 1.000000 1.000000 1 0 0 +( -8192 256 8192 ) ( 8192 256 8192 ) ( -8192 256 -8192 ) bricks/b_sr_c27 64 64 0 1.000000 1.000000 1 0 0 +( 8192 320 8192 ) ( -8192 320 8192 ) ( -8192 320 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -1808 640 ) ( 8192 2288 640 ) ( -8192 -1808 640 ) bricks/b_sr_c27 64 0 0 1.000000 1.000000 1 0 0 +( 8192 2288 960 ) ( 8192 -1808 960 ) ( -8192 -1808 960 ) bricks/b_sr_c27 64 0 0 1.000000 1.000000 1 0 0 +} +{ +( -960 8192 8192 ) ( -960 -8192 8192 ) ( -960 8192 -8192 ) metals/mt_sr_v16 0 0 90 1.000000 1.000000 1 8388608 0 +( -928 -8192 8192 ) ( -928 8192 8192 ) ( -928 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1080 8192 ) ( 8192 1080 8192 ) ( -8192 1080 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1088 8192 ) ( -8192 1088 8192 ) ( -8192 1088 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -960 8192 8192 ) ( -960 -8192 8192 ) ( -960 8192 -8192 ) metals/mt_sr_v18 0 0 0 1.000000 1.000000 1 8388608 0 +( -928 -8192 8192 ) ( -928 8192 8192 ) ( -928 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 944 8192 ) ( 8192 944 8192 ) ( -8192 944 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1080 8192 ) ( -8192 1080 8192 ) ( -8192 1080 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 240 ) ( 8192 8192 240 ) ( -8192 -8192 240 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -960 8192 8192 ) ( -960 -8192 8192 ) ( -960 8192 -8192 ) bricks/b_mf_v2a 64 0 0 1.000000 1.000000 1 0 0 +( -928 -8192 8192 ) ( -928 8192 8192 ) ( -928 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1088 8192 ) ( 8192 1088 8192 ) ( -8192 1088 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1280 8192 ) ( -8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1096 8192 8192 ) ( -1096 -8192 8192 ) ( -1096 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -1088 -8192 8192 ) ( -1088 8192 8192 ) ( -1088 8192 -8192 ) metals/mt_sr_v18 0 0 0 1.000000 1.000000 1 8388608 0 +( -8192 960 8192 ) ( 8192 960 8192 ) ( -8192 960 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1088 8192 ) ( -8192 1088 8192 ) ( -8192 1088 -8192 ) metals/mt_sr_v16 0 0 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 240 ) ( 8192 8192 240 ) ( -8192 -8192 240 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1280 8192 8192 ) ( -1280 -8192 8192 ) ( -1280 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -1096 -8192 8192 ) ( -1096 8192 8192 ) ( -1096 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1024 8192 ) ( 8192 1024 8192 ) ( -8192 1024 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1088 8192 ) ( -8192 1088 8192 ) ( -8192 1088 -8192 ) bricks/b_mf_v2a 64 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1088 8192 8192 ) ( -1088 -8192 8192 ) ( -1088 8192 -8192 ) bricks/c_sr_m2c -264 -192 180 1.000000 1.000000 1 67108864 0 +( -960 -8192 8192 ) ( -960 8192 8192 ) ( -960 8192 -8192 ) bricks/c_sr_m2c -264 -192 180 1.000000 1.000000 1 67108864 0 +( -8192 1072 8192 ) ( 8192 1072 8192 ) ( -8192 1072 -8192 ) metals/mt_sr_v18 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 1088 8192 ) ( -8192 1088 8192 ) ( -8192 1088 -8192 ) bricks/c_sr_m2c -264 -192 180 1.000000 1.000000 1 67108864 0 +( 8192 -8192 240 ) ( 8192 8192 240 ) ( -8192 -8192 240 ) bricks/c_sr_m2c -264 -192 180 1.000000 1.000000 1 67108864 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) metals/mt_pv_m16k 0 0 90 1.000000 1.000000 1 16777216 0 +} +{ +( 1280 7748 8192 ) ( 1280 -7672 8192 ) ( 1280 7748 -8192 ) metals/mt_sr_v16 32 16 0 1.000000 1.000000 1 8390656 0 +( 1504 -7672 8192 ) ( 1504 7748 8192 ) ( 1504 7748 -8192 ) metals/mt_sr_v16 32 16 0 1.000000 1.000000 1 8390656 0 +( -7561 640 8192 ) ( 7731 640 8192 ) ( -7561 640 -8192 ) metals/mt_sr_v16 32 16 0 1.000000 1.000000 1 8390656 0 +( 7731 896 8192 ) ( -7561 896 8192 ) ( -7561 896 -8192 ) metals/mt_sr_v16 -64 16 0 1.000000 1.000000 1 8390656 0 +( 7731 -7672 768 ) ( 7731 7748 768 ) ( -7561 -7672 768 ) metals/mt_sr_v13 0 0 0 1.000000 1.000000 1 8388608 0 +( 7731 7748 792 ) ( 7731 -7672 792 ) ( -7561 -7672 792 ) floors/rf_sr_m2 0 0 0 2.000000 2.000000 1 2097152 0 +} +{ +( 1280 10709 8192 ) ( 1280 -11136 8192 ) ( 1280 10709 -8192 ) metals/mt_sr_v16 32 16 0 1.000000 1.000000 1 8390656 0 +( 1504 -11136 8192 ) ( 1504 10709 8192 ) ( 1504 10709 -8192 ) metals/mt_sr_v16 32 16 0 1.000000 1.000000 1 8390656 0 +( -7561 576 8192 ) ( 7731 576 8192 ) ( -7561 576 -8192 ) metals/mt_sr_v16 -64 16 0 1.000000 1.000000 1 8390656 0 +( 7731 640 8192 ) ( -7561 640 8192 ) ( -7561 640 -8192 ) metals/mt_sr_v16 32 16 0 1.000000 1.000000 1 8390656 0 +( 7731 -11136 768 ) ( 7731 10709 768 ) ( -7561 -11136 768 ) metals/mt_sr_v13 0 0 0 1.000000 1.000000 1 8388608 0 +( 7731 10709 792 ) ( 7731 -11136 792 ) ( -7561 -11136 792 ) floors/rf_sr_m2 0 0 0 2.000000 2.000000 1 2097152 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( 2624 -8192 8192 ) ( 2624 8192 8192 ) ( 2624 8192 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( -8192 384 8192 ) ( 8192 384 8192 ) ( -8192 384 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( 8192 688 8192 ) ( -8192 688 8192 ) ( -8192 688 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 -8192 240 ) ( 8192 8192 240 ) ( -8192 -8192 240 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 67108864 0 +} +{ +( 2624 8192 8192 ) ( 2624 -8192 8192 ) ( 2624 8192 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( 2752 -8192 8192 ) ( 2752 8192 8192 ) ( 2752 8192 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 688 8192 ) ( -8192 688 8192 ) ( -8192 688 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 -8192 240 ) ( 8192 8192 240 ) ( -8192 -8192 240 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 67108864 0 +( -4320 7264 8192 ) ( 7264 -4320 8192 ) ( 7264 -4320 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( -8192 192 8192 ) ( 8192 192 8192 ) ( -8192 192 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 320 8192 ) ( -8192 320 8192 ) ( -8192 320 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 240 ) ( 8192 8192 240 ) ( -8192 -8192 240 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 67108864 0 +( 7264 -4320 8192 ) ( -4320 7264 8192 ) ( 7264 -4320 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +} +{ +( 1784 8192 8192 ) ( 1784 -8192 8192 ) ( 1784 8192 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( 2184 -8192 8192 ) ( 2184 8192 8192 ) ( 2184 8192 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( -8192 128 8192 ) ( 8192 128 8192 ) ( -8192 128 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 704 8192 ) ( -8192 704 8192 ) ( -8192 704 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 -8192 240 ) ( 8192 8192 240 ) ( -8192 -8192 240 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +} +{ +( 1472 8192 8192 ) ( 1472 -8192 8192 ) ( 1472 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 1784 -8192 8192 ) ( 1784 8192 8192 ) ( 1784 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -7950 512 8192 ) ( 8024 512 8192 ) ( -7950 512 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8024 536 8192 ) ( -7950 536 8192 ) ( -7950 536 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8024 -8192 384 ) ( 8024 8192 384 ) ( -7950 -8192 384 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8024 8192 512 ) ( 8024 -8192 512 ) ( -7950 -8192 512 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 888 8192 8192 ) ( 888 -8192 8192 ) ( 888 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 904 -8192 8192 ) ( 904 8192 8192 ) ( 904 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 896 8192 ) ( 8192 896 8192 ) ( -8192 896 -8192 ) common/li_sr_m20 8 16 0 1.000000 1.000000 1 1 50000 +( 8192 960 8192 ) ( -8192 960 8192 ) ( -8192 960 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 16 ) ( 8192 -8192 16 ) ( -8192 -8192 16 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 904 8192 8192 ) ( 904 -8192 8192 ) ( 904 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 960 -8192 8192 ) ( 960 8192 8192 ) ( 960 8192 -8192 ) bricks/c_pv_m2 0 -1 180 1.000000 1.000000 1 0 0 +( -8192 896 8192 ) ( 8192 896 8192 ) ( -8192 896 -8192 ) bricks/c_pv_m2 0 -1 180 1.000000 1.000000 1 0 0 +( 8192 960 8192 ) ( -8192 960 8192 ) ( -8192 960 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 16 ) ( 8192 -8192 16 ) ( -8192 -8192 16 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 888 -8192 8192 ) ( 888 8192 8192 ) ( 888 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 896 8192 ) ( 8192 896 8192 ) ( -8192 896 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 960 8192 ) ( -8192 960 8192 ) ( -8192 960 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 16 ) ( 8192 -8192 16 ) ( -8192 -8192 16 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 960 -8192 8192 ) ( 960 8192 8192 ) ( 960 8192 -8192 ) bricks/c_pv_m2 0 -1 180 1.000000 1.000000 1 0 0 +( -8192 896 8192 ) ( 8192 896 8192 ) ( -8192 896 -8192 ) bricks/c_pv_m2 0 -1 180 1.000000 1.000000 1 0 0 +( 8192 960 8192 ) ( -8192 960 8192 ) ( -8192 960 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 16 ) ( 8192 8192 16 ) ( -8192 -8192 16 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 48 ) ( 8192 -8192 48 ) ( -8192 -8192 48 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 768 8192 8192 ) ( 768 -8192 8192 ) ( 768 8192 -8192 ) bricks/b_mf_v2 -16 16 0 1.000000 1.000000 1 1048576 0 +( 832 -8192 8192 ) ( 832 8192 8192 ) ( 832 8192 -8192 ) bricks/c_pv_m2 0 -1 180 1.000000 1.000000 1 0 0 +( -8192 704 8192 ) ( 8192 704 8192 ) ( -8192 704 -8192 ) bricks/b_mf_v2 32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 960 8192 ) ( -8192 960 8192 ) ( -8192 960 -8192 ) bricks/b_mf_v2 32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/b_mf_v2 32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 8192 48 ) ( 8192 -8192 48 ) ( -8192 -8192 48 ) bricks/b_mf_v2 32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 768 8192 8192 ) ( 768 -8192 8192 ) ( 768 8192 -8192 ) bricks/b_mf_v2 -16 16 0 1.000000 1.000000 1 1048576 0 +( 832 -8192 8192 ) ( 832 8192 8192 ) ( 832 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 640 8192 ) ( 8192 640 8192 ) ( -8192 640 -8192 ) bricks/b_mf_v2 32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 704 8192 ) ( -8192 704 8192 ) ( -8192 704 -8192 ) bricks/b_mf_v2 32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/b_mf_v2 -16 -7 90 1.000000 1.000000 1 1048576 0 +( 8192 8192 48 ) ( 8192 -8192 48 ) ( -8192 -8192 48 ) bricks/b_mf_v2 32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) bricks/b_mf_v2 -32 16 90 1.000000 1.000000 1 1048576 0 +( 960 -8192 8192 ) ( 960 8192 8192 ) ( 960 8192 -8192 ) bricks/b_mf_v2 -32 16 90 1.000000 1.000000 1 1048576 0 +( -8192 704 8192 ) ( 8192 704 8192 ) ( -8192 704 -8192 ) bricks/b_mf_v2 -32 16 90 1.000000 1.000000 1 1048576 0 +( 8192 896 8192 ) ( -8192 896 8192 ) ( -8192 896 -8192 ) bricks/b_mf_v2 -32 16 90 1.000000 1.000000 1 1048576 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_mf_v2 -32 16 90 1.000000 1.000000 1 1048576 0 +} +{ +( 896 8192 8192 ) ( 896 -8192 8192 ) ( 896 8192 -8192 ) props/box_sr_m11 0 0 0 0.500000 0.500000 1 134217728 0 +( 928 -8192 8192 ) ( 928 8192 8192 ) ( 928 8192 -8192 ) props/box_sr_m11 0 0 0 0.500000 0.500000 1 134217728 0 +( -8192 704 8192 ) ( 8192 704 8192 ) ( -8192 704 -8192 ) props/box_sr_m11 0 0 0 0.500000 0.500000 1 134217728 0 +( 8192 736 8192 ) ( -8192 736 8192 ) ( -8192 736 -8192 ) props/box_sr_m11 0 0 0 0.500000 0.500000 1 134217728 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) props/box_sr_m11 0 0 0 0.500000 0.500000 1 134217728 0 +( 8192 8192 32 ) ( 8192 -8192 32 ) ( -8192 -8192 32 ) props/box_sr_m11 0 0 0 0.500000 0.500000 1 134217728 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) props/box_sr_m11 0 0 0 0.500000 0.500000 1 134217728 0 +( 864 -8192 8192 ) ( 864 8192 8192 ) ( 864 8192 -8192 ) props/box_sr_m11 0 0 0 0.500000 0.500000 1 134217728 0 +( -8192 864 8192 ) ( 8192 864 8192 ) ( -8192 864 -8192 ) props/box_sr_m11 0 0 0 0.500000 0.500000 1 134217728 0 +( 8192 896 8192 ) ( -8192 896 8192 ) ( -8192 896 -8192 ) props/box_sr_m11 0 0 0 0.500000 0.500000 1 134217728 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) props/box_sr_m11 0 0 0 0.500000 0.500000 1 134217728 0 +( 8192 8192 32 ) ( 8192 -8192 32 ) ( -8192 -8192 32 ) props/box_sr_m11 0 0 0 0.500000 0.500000 1 134217728 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) props/box_sr_m11 0 0 0 1.000000 1.000000 1 134217728 0 +( 896 -8192 8192 ) ( 896 8192 8192 ) ( 896 8192 -8192 ) props/box_sr_m11 0 0 0 1.000000 1.000000 1 134217728 0 +( -8192 704 8192 ) ( 8192 704 8192 ) ( -8192 704 -8192 ) props/box_sr_m11 0 0 0 1.000000 1.000000 1 134217728 0 +( 8192 768 8192 ) ( -8192 768 8192 ) ( -8192 768 -8192 ) props/box_sr_m11 0 0 0 1.000000 1.000000 1 134217728 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) props/box_sr_m11 0 0 0 1.000000 1.000000 1 134217728 0 +( 8192 8192 64 ) ( 8192 -8192 64 ) ( -8192 -8192 64 ) props/box_sr_m11 0 0 0 1.000000 1.000000 1 134217728 0 +} +{ +( 944 8192 8192 ) ( 944 -8192 8192 ) ( 944 8192 -8192 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 8390656 0 +( 960 -8192 8192 ) ( 960 8192 8192 ) ( 960 8192 -8192 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 8390656 0 +( -8192 704 8192 ) ( 8192 704 8192 ) ( -8192 704 -8192 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 896 8192 ) ( -8192 896 8192 ) ( -8192 896 -8192 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 -8192 -8 ) ( 8192 8192 -8 ) ( -8192 -8192 -8 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 8192 0 ) ( 8192 -8192 0 ) ( -8192 -8192 0 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 16777216 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 8390656 0 +( 944 -8192 8192 ) ( 944 8192 8192 ) ( 944 8192 -8192 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 8390656 0 +( -8192 704 8192 ) ( 8192 704 8192 ) ( -8192 704 -8192 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 896 8192 ) ( -8192 896 8192 ) ( -8192 896 -8192 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 -8192 -8 ) ( 8192 8192 -8 ) ( -8192 -8192 -8 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 8192 0 ) ( 8192 -8192 0 ) ( -8192 -8192 0 ) bricks/c_sr_m2c -384 64 90 1.000000 1.000000 1 67108864 0 +} +{ +( 768 5360 1733 ) ( 768 -4880 1733 ) ( 768 5360 -1657 ) bricks/b_mf_v2 -16 16 0 1.000000 1.000000 1 1048576 0 +( 832 -4880 1733 ) ( 832 5360 1733 ) ( 832 5360 -1657 ) bricks/b_mf_v2 -16 16 0 1.000000 1.000000 1 1048576 0 +( -8192 640 1733 ) ( 8192 640 1733 ) ( -8192 640 -1657 ) bricks/b_mf_v2 32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 960 1733 ) ( -8192 960 1733 ) ( -8192 960 -1657 ) bricks/b_mf_v2 32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -4880 48 ) ( 8192 5360 48 ) ( -8192 -4880 48 ) bricks/b_mf_v2 32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 5360 144 ) ( 8192 -4880 144 ) ( -8192 -4880 144 ) bricks/b_mf_v2 -16 -7 90 1.000000 1.000000 1 1048576 0 +} +{ +( 896 8192 8192 ) ( 896 -8192 8192 ) ( 896 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 960 -8192 8192 ) ( 960 8192 8192 ) ( 960 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 960 8192 ) ( 8192 960 8192 ) ( -8192 960 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 1280 8192 ) ( -8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 48 ) ( 8192 8192 48 ) ( -8192 -8192 48 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 960 -8192 8192 ) ( 960 8192 8192 ) ( 960 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 896 8192 ) ( 8192 896 8192 ) ( -8192 896 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 960 8192 ) ( -8192 960 8192 ) ( -8192 960 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 48 ) ( 8192 8192 48 ) ( -8192 -8192 48 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 896 8192 8192 ) ( 896 -8192 8192 ) ( 896 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 960 -8192 8192 ) ( 960 8192 8192 ) ( 960 8192 -8192 ) bricks/c_pv_m2 0 -1 180 1.000000 1.000000 1 0 0 +( -8192 960 8192 ) ( 8192 960 8192 ) ( -8192 960 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1280 8192 ) ( -8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 48 ) ( 8192 -8192 48 ) ( -8192 -8192 48 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 896 -8192 8192 ) ( 896 8192 8192 ) ( 896 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 640 8192 ) ( 8192 640 8192 ) ( -8192 640 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 704 8192 ) ( -8192 704 8192 ) ( -8192 704 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 48 ) ( 8192 8192 48 ) ( -8192 -8192 48 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 896 -8192 8192 ) ( 896 8192 8192 ) ( 896 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 640 8192 ) ( 8192 640 8192 ) ( -8192 640 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 704 8192 ) ( -8192 704 8192 ) ( -8192 704 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 48 ) ( 8192 -8192 48 ) ( -8192 -8192 48 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 896 8192 8192 ) ( 896 -8192 8192 ) ( 896 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 960 -8192 8192 ) ( 960 8192 8192 ) ( 960 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 256 8192 ) ( 8192 256 8192 ) ( -8192 256 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 704 8192 ) ( -8192 704 8192 ) ( -8192 704 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 48 ) ( 8192 8192 48 ) ( -8192 -8192 48 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 896 8192 8192 ) ( 896 -8192 8192 ) ( 896 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 960 -8192 8192 ) ( 960 8192 8192 ) ( 960 8192 -8192 ) bricks/c_pv_m2 0 -1 180 1.000000 1.000000 1 0 0 +( -8192 256 8192 ) ( 8192 256 8192 ) ( -8192 256 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 704 8192 ) ( -8192 704 8192 ) ( -8192 704 -8192 ) bricks/c_pv_m2 0 -1 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 48 ) ( 8192 -8192 48 ) ( -8192 -8192 48 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1632 8192 8192 ) ( -1632 -8192 8192 ) ( -1632 8192 -8192 ) props/box_sr_m6 0 0 0 0.500000 0.500000 1 134217728 0 +( -1600 -8192 8192 ) ( -1600 8192 8192 ) ( -1600 8192 -8192 ) props/box_sr_m6 0 0 0 0.500000 0.500000 1 134217728 0 +( -8192 1472 8192 ) ( 8192 1472 8192 ) ( -8192 1472 -8192 ) props/box_sr_m6 0 0 0 0.500000 0.500000 1 134217728 0 +( 8192 1504 8192 ) ( -8192 1504 8192 ) ( -8192 1504 -8192 ) props/box_sr_m6 0 0 0 0.500000 0.500000 1 134217728 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) props/box_sr_m6 0 32 0 0.500000 0.500000 1 134217728 0 +( 8192 8192 288 ) ( 8192 -8192 288 ) ( -8192 -8192 288 ) props/box_sr_m5 0 0 0 0.500000 0.500000 1 134217728 0 +} +{ +( -1096 8192 8192 ) ( -1096 -8192 8192 ) ( -1096 8192 -8192 ) bricks/b_mf_v2 80 -64 0 1.000000 1.000000 1 0 0 +( -960 -8192 8192 ) ( -960 8192 8192 ) ( -960 8192 -8192 ) bricks/b_mf_v2 80 -64 0 1.000000 1.000000 1 0 0 +( -8644 944 8192 ) ( 8764 944 8192 ) ( -8644 944 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8764 960 8192 ) ( -8644 960 8192 ) ( -8644 960 -8192 ) metals/mt_sr_v18 0 0 0 1.000000 1.000000 1 8388608 0 +( 8764 -8192 240 ) ( 8764 8192 240 ) ( -8644 -8192 240 ) bricks/b_mf_v2 64 -80 0 1.000000 1.000000 1 0 0 +( 8764 8192 384 ) ( 8764 -8192 384 ) ( -8644 -8192 384 ) bricks/b_mf_v2 64 -80 0 1.000000 1.000000 1 0 0 +} +{ +( -1352 8192 8192 ) ( -1352 -8192 8192 ) ( -1352 8192 -8192 ) metals/mt_sr_v16 -41 -9 90 0.750000 0.750000 1 8388608 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) metals/mt_sr_v16 -41 -9 90 0.750000 0.750000 1 8388608 0 +( -8192 2608 8192 ) ( 8192 2608 8192 ) ( -8192 2608 -8192 ) metals/mt_sr_v16 -42 1 90 0.750000 0.750000 1 8388608 0 +( 8192 2624 8192 ) ( -8192 2624 8192 ) ( -8192 2624 -8192 ) metals/mt_sr_v16 -42 1 90 0.750000 0.750000 1 8388608 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) metals/mt_sr_v16 -31 -20 90 0.750000 0.750000 1 8388608 0 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) metals/mt_sr_v16 -31 -20 90 0.750000 0.750000 1 8388608 0 +} +{ +( -1352 8192 8192 ) ( -1352 -8192 8192 ) ( -1352 8192 -8192 ) metals/mt_sr_v16 -42 -10 90 0.750000 0.750000 1 8388608 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) metals/mt_sr_v16 -42 -10 90 0.750000 0.750000 1 8388608 0 +( -8192 2296 8192 ) ( 8192 2296 8192 ) ( -8192 2296 -8192 ) metals/mt_sr_v16 -42 2 90 0.750000 0.750000 1 8388608 0 +( 8192 2312 8192 ) ( -8192 2312 8192 ) ( -8192 2312 -8192 ) metals/mt_sr_v16 -42 2 90 0.750000 0.750000 1 8388608 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) metals/mt_sr_v16 0 -20 90 0.750000 0.750000 1 8388608 0 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) metals/mt_sr_v16 0 -20 90 0.750000 0.750000 1 8388608 0 +} +{ +( -752 8192 8192 ) ( -752 -8192 8192 ) ( -752 8192 -8192 ) metals/mt_sr_v16 0 -10 90 0.750000 0.750000 1 8388608 0 +( -736 -8192 8192 ) ( -736 8192 8192 ) ( -736 8192 -8192 ) metals/mt_sr_v16 0 -10 90 0.750000 0.750000 1 8388608 0 +( -8192 2608 8192 ) ( 8192 2608 8192 ) ( -8192 2608 -8192 ) metals/mt_sr_v16 0 -8 90 0.750000 0.750000 1 8388608 0 +( 8192 2624 8192 ) ( -8192 2624 8192 ) ( -8192 2624 -8192 ) metals/mt_sr_v16 0 -8 90 0.750000 0.750000 1 8388608 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) metals/mt_sr_v16 -55 -7 90 1.000000 1.000000 1 8390656 0 +( 8192 8192 224 ) ( 8192 -8192 224 ) ( -8192 -8192 224 ) metals/mt_sr_v16 -55 -7 90 1.000000 1.000000 1 8390656 0 +} +{ +( 1584 8048 8192 ) ( 1584 -8336 8192 ) ( 1584 8048 -8192 ) props/box_sr_m6 42 -22 0 0.750000 0.750000 1 134217728 0 +( 1632 -8336 8192 ) ( 1632 8048 8192 ) ( 1632 8048 -8192 ) props/box_sr_m6 42 -22 0 0.750000 0.750000 1 134217728 0 +( -8176 352 8192 ) ( 8208 352 8192 ) ( -8176 352 -8192 ) props/box_sr_m6 22 -22 0 0.750000 0.750000 1 134217728 0 +( 8208 400 8192 ) ( -8176 400 8192 ) ( -8176 400 -8192 ) props/box_sr_m5 0 -22 0 0.750000 0.750000 1 134217728 0 +( 8208 -8336 560 ) ( 8208 8048 560 ) ( -8176 -8336 560 ) props/box_sr_m5 0 -16 0 0.750000 0.750000 1 134217728 0 +( 8208 8048 608 ) ( 8208 -8336 608 ) ( -8176 -8336 608 ) props/box_sr_m5 0 22 0 0.750000 0.750000 1 134217728 0 +} +{ +( 1568 8320 8192 ) ( 1568 -8064 8192 ) ( 1568 8320 -8192 ) props/box_sr_m6 32 -16 0 1.000000 1.000000 1 134217728 0 +( 1632 -8064 8192 ) ( 1632 8320 8192 ) ( 1632 8320 -8192 ) props/box_sr_m6 32 -16 0 1.000000 1.000000 1 134217728 0 +( -8160 480 8192 ) ( 8224 480 8192 ) ( -8160 480 -8192 ) props/box_sr_m6 32 -16 0 1.000000 1.000000 1 134217728 0 +( 8224 544 8192 ) ( -8160 544 8192 ) ( -8160 544 -8192 ) props/box_sr_m6 0 -16 0 1.000000 1.000000 1 134217728 0 +( 8224 -8064 560 ) ( 8224 8320 560 ) ( -8160 -8064 560 ) props/box_sr_m6 0 -48 0 1.000000 1.000000 1 134217728 0 +( 8224 8320 624 ) ( 8224 -8064 624 ) ( -8160 -8064 624 ) props/box_sr_m5 32 -32 0 1.000000 1.000000 1 134217728 0 +} +{ +( 1280 4687 12359 ) ( 1280 -4188 12359 ) ( 1280 4687 -12961 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 1344 -4188 12359 ) ( 1344 4687 12359 ) ( 1344 4687 -12961 ) props2/dragon_vz -32 48 0 1.000000 1.000000 +( -1877 440 12359 ) ( 3584 440 12359 ) ( -1877 440 -12961 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 3584 544 12359 ) ( -1877 544 12359 ) ( -1877 544 -12961 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 3584 -4188 552 ) ( 3584 4687 552 ) ( -1877 -4188 552 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 3584 4687 688 ) ( 3584 -4188 688 ) ( -1877 -4188 688 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1280 8192 8192 ) ( 1280 -8192 8192 ) ( 1280 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 1632 -8192 8192 ) ( 1632 8192 8192 ) ( 1632 8192 -8192 ) bricks/b_sr_c31 0 0 0 1.000000 1.000000 1 0 0 +( -8192 320 8192 ) ( 8192 320 8192 ) ( -8192 320 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 352 8192 ) ( -8192 352 8192 ) ( -8192 352 -8192 ) bricks/b_sr_c31 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 552 ) ( 8192 8192 552 ) ( -8192 -8192 552 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 640 ) ( 8192 -8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1280 8192 8192 ) ( 1280 -8192 8192 ) ( 1280 8192 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 1632 -8192 8192 ) ( 1632 8192 8192 ) ( 1632 8192 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( -8192 352 8192 ) ( 8192 352 8192 ) ( -8192 352 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 544 8192 ) ( -8192 544 8192 ) ( -8192 544 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 704 ) ( 8192 8192 704 ) ( -8192 -8192 704 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 0 8388608 0 +( 8192 8192 768 ) ( 8192 -8192 768 ) ( -8192 -8192 768 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1280 8192 8192 ) ( 1280 -8192 8192 ) ( 1280 8192 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 1632 -8192 8192 ) ( 1632 8192 8192 ) ( 1632 8192 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( -8192 320 8192 ) ( 8192 320 8192 ) ( -8192 320 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 352 8192 ) ( -8192 352 8192 ) ( -8192 352 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 640 ) ( 8192 8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 768 ) ( 8192 -8192 768 ) ( -8192 -8192 768 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1280 8192 8192 ) ( 1280 -8192 8192 ) ( 1280 8192 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 1632 -8192 8192 ) ( 1632 8192 8192 ) ( 1632 8192 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( -8192 544 8192 ) ( 8192 544 8192 ) ( -8192 544 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 576 8192 ) ( -8192 576 8192 ) ( -8192 576 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 640 ) ( 8192 8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 768 ) ( 8192 -8192 768 ) ( -8192 -8192 768 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1280 8192 8192 ) ( 1280 -8192 8192 ) ( 1280 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 1632 -8192 8192 ) ( 1632 8192 8192 ) ( 1632 8192 -8192 ) bricks/b_sr_c31 0 0 0 1.000000 1.000000 1 0 0 +( -8192 544 8192 ) ( 8192 544 8192 ) ( -8192 544 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 576 8192 ) ( -8192 576 8192 ) ( -8192 576 -8192 ) bricks/b_sr_c31 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 552 ) ( 8192 8192 552 ) ( -8192 -8192 552 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 640 ) ( 8192 -8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1280 8192 8192 ) ( 1280 -8192 8192 ) ( 1280 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1336 -8192 8192 ) ( 1336 8192 8192 ) ( 1336 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1344 8192 ) ( 8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1408 8192 ) ( -8192 1408 8192 ) ( -8192 1408 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 640 ) ( 8192 8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 960 ) ( 8192 -8192 960 ) ( -8192 -8192 960 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1336 8192 8192 ) ( 1336 -8192 8192 ) ( 1336 8192 -8192 ) props/w_sr_m2a 0 0 0 1.000000 1.000000 +( 1464 -8192 8192 ) ( 1464 8192 8192 ) ( 1464 8192 -8192 ) props/w_sr_m2a 0 0 0 1.000000 1.000000 +( -8192 1352 8192 ) ( 8192 1352 8192 ) ( -8192 1352 -8192 ) props/w_sr_m2a 4 64 0 2.000000 2.000000 0 0 600 +( 8192 1408 8192 ) ( -8192 1408 8192 ) ( -8192 1408 -8192 ) props/w_sr_m2a 0 0 0 1.000000 1.000000 +( 8192 -8192 640 ) ( 8192 8192 640 ) ( -8192 -8192 640 ) props/w_sr_m2a 0 0 0 1.000000 1.000000 +( 8192 8192 896 ) ( 8192 -8192 896 ) ( -8192 -8192 896 ) props/w_sr_m2a 0 0 0 1.000000 1.000000 +} +{ +( 1464 8192 8192 ) ( 1464 -8192 8192 ) ( 1464 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1512 -8192 8192 ) ( 1512 8192 8192 ) ( 1512 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1344 8192 ) ( 8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 640 ) ( 8192 8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 960 ) ( 8192 -8192 960 ) ( -8192 -8192 960 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1336 8192 8192 ) ( 1336 -8192 8192 ) ( 1336 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1464 -8192 8192 ) ( 1464 8192 8192 ) ( 1464 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1344 8192 ) ( 8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1408 8192 ) ( -8192 1408 8192 ) ( -8192 1408 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 896 ) ( 8192 8192 896 ) ( -8192 -8192 896 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 960 ) ( 8192 -8192 960 ) ( -8192 -8192 960 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1280 8192 8192 ) ( 1280 -8192 8192 ) ( 1280 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1512 -8192 8192 ) ( 1512 8192 8192 ) ( 1512 8192 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1344 8192 ) ( 8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 552 ) ( 8192 8192 552 ) ( -8192 -8192 552 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 640 ) ( 8192 -8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1216 8192 8192 ) ( 1216 -8192 8192 ) ( 1216 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 1280 -8192 8192 ) ( 1280 8192 8192 ) ( 1280 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 320 8192 ) ( 8192 320 8192 ) ( -8192 320 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 1344 8192 ) ( -8192 1344 8192 ) ( -8192 1344 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 960 ) ( 8192 8192 960 ) ( -8192 -8192 960 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 1024 ) ( 8192 -8192 1024 ) ( -8192 -8192 1024 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 1216 5909 8192 ) ( 1216 -5013 8192 ) ( 1216 5909 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 1512 -5013 8192 ) ( 1512 5909 8192 ) ( 1512 5909 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1344 8192 ) ( 8192 1344 8192 ) ( -8192 1344 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1856 8192 ) ( -8192 1856 8192 ) ( -8192 1856 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -5013 960 ) ( 8192 5909 960 ) ( -8192 -5013 960 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 5909 1024 ) ( 8192 -5013 1024 ) ( -8192 -5013 1024 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( -224 8208 139392 ) ( -224 -8176 139392 ) ( -224 8208 -139136 ) floors/dr_pv_m4 -32 0 0 1.000000 1.000000 0 8388609 50 +( -96 -8176 139392 ) ( -96 8208 139392 ) ( -96 8208 -139136 ) floors/dr_pv_m4 -32 0 0 1.000000 1.000000 0 8388609 50 +( -8192 2080 139392 ) ( 8192 2080 139392 ) ( -8192 2080 -139136 ) floors/dr_pv_m4 -32 0 0 1.000000 1.000000 0 8388609 50 +( 8192 2096 139392 ) ( -8192 2096 139392 ) ( -8192 2096 -139136 ) floors/dr_pv_m4 -32 0 0 1.000000 1.000000 0 8388609 50 +( 8192 -8176 -8 ) ( 8192 8208 -8 ) ( -8192 -8176 -8 ) floors/dr_pv_m4 -32 0 0 1.000000 1.000000 0 8388609 50 +( 8192 8208 128 ) ( 8192 -8176 128 ) ( -8192 -8176 128 ) floors/dr_pv_m4 -32 0 90 1.000000 1.000000 0 8388609 50 +} +{ +( -256 8394 8192 ) ( -256 -8487 8192 ) ( -256 8394 -8192 ) bricks/s_sr_m12ab 0 0 0 1.500000 1.500000 1 0 0 +( 320 -8487 8192 ) ( 320 8394 8192 ) ( 320 8394 -8192 ) bricks/s_sr_m12ab 0 0 0 1.500000 1.500000 1 0 0 +( -8192 1536 8192 ) ( 8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/s_sr_m12ab 0 0 0 1.500000 1.500000 1 0 0 +( 8192 2080 8192 ) ( -8192 2080 8192 ) ( -8192 2080 -8192 ) bricks/s_sr_m12ab 0 0 0 1.500000 1.500000 1 0 0 +( 8192 -8487 -8 ) ( 8192 8394 -8 ) ( -8192 -8487 -8 ) bricks/s_sr_m12ab 0 0 0 1.500000 1.500000 1 0 0 +( 8192 8394 0 ) ( 8192 -8487 0 ) ( -8192 -8487 0 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( -576 14144 114848 ) ( -576 -18624 114848 ) ( -576 14144 -114528 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -560 -18624 114848 ) ( -560 14144 114848 ) ( -560 14144 -114528 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 0 8390656 0 +( -8192 1984 114848 ) ( 8192 1984 114848 ) ( -8192 1984 -114528 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 0 8390656 0 +( 8192 2240 114848 ) ( -8192 2240 114848 ) ( -8192 2240 -114528 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 0 8390656 0 +( 8192 -18624 48 ) ( 8192 14144 48 ) ( -8192 -18624 48 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 0 8390656 0 +( 8192 14144 160 ) ( 8192 -18624 160 ) ( -8192 -18624 160 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 0 16777216 0 +} +{ +( -1536 8192 8192 ) ( -1536 -8192 8192 ) ( -1536 8192 -8192 ) bricks/s_sr_m12ab 0 -136 0 2.000000 2.000000 1 0 0 +( -576 -8192 8192 ) ( -576 8192 8192 ) ( -576 8192 -8192 ) bricks/s_sr_m12ab 0 -136 0 2.000000 2.000000 1 0 0 +( -8192 1984 8192 ) ( 8192 1984 8192 ) ( -8192 1984 -8192 ) bricks/s_sr_m12ab 0 -136 0 2.000000 2.000000 1 0 0 +( 8192 2624 8192 ) ( -8192 2624 8192 ) ( -8192 2624 -8192 ) bricks/s_sr_m12ab 0 -136 0 2.000000 2.000000 1 0 0 +( 8192 -8192 -8 ) ( 8192 8192 -8 ) ( -8192 -8192 -8 ) bricks/s_sr_m12ab 0 -136 0 2.000000 2.000000 1 0 0 +( 8192 8192 0 ) ( 8192 -8192 0 ) ( -8192 -8192 0 ) bricks/s_sr_m12ab 0 -136 0 2.000000 2.000000 1 67108864 0 +} +{ +( 848 8192 8192 ) ( 848 -8192 8192 ) ( 848 8192 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( -8192 1344 8192 ) ( 8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 1472 8192 ) ( -8192 1472 8192 ) ( -8192 1472 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 -8192 240 ) ( 8192 8192 240 ) ( -8192 -8192 240 ) bricks/c_sr_m2b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) bricks/c_sr_m2c -224 -64 180 -1.000000 1.000000 1 67108864 0 +( -5792 -5792 8192 ) ( 5792 5792 8192 ) ( 5792 5792 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 848 -8192 8192 ) ( 848 8192 8192 ) ( 848 8192 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( -8192 1344 8192 ) ( 8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 1472 8192 ) ( -8192 1472 8192 ) ( -8192 1472 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 -8192 240 ) ( 8192 8192 240 ) ( -8192 -8192 240 ) bricks/c_sr_m2b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 16777216 0 +} +{ +( 320 8192 8192 ) ( 320 -8192 8192 ) ( 320 8192 -8192 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 832 -8192 8192 ) ( 832 8192 8192 ) ( 832 8192 -8192 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( -8192 1280 8192 ) ( 8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 240 ) ( 8192 8192 240 ) ( -8192 -8192 240 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) bricks/c_sr_m2c 112 0 0 2.000000 2.000000 1 0 0 +} +{ +( 1776 960 240 ) ( 1776 832 240 ) ( 1776 832 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 1776 832 240 ) ( 1344 832 240 ) ( 1344 832 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 1776 960 240 ) ( 1776 960 256 ) ( 1472 960 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 1776 832 240 ) ( 1776 960 240 ) ( 1472 960 240 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 1776 960 256 ) ( 1776 832 256 ) ( 1344 832 256 ) bricks/c_sr_m2c 32 -64 180 -1.000000 1.000000 1 67108864 0 +( 1344 832 240 ) ( 1472 960 240 ) ( 1472 960 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +} +{ +( 1776 832 240 ) ( 1776 960 240 ) ( 1776 960 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 1792 960 240 ) ( 1792 832 240 ) ( 1792 832 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 1792 832 240 ) ( 1776 832 240 ) ( 1776 832 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 1776 960 240 ) ( 1792 960 240 ) ( 1792 960 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 1776 832 240 ) ( 1792 832 240 ) ( 1792 960 240 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 1776 960 256 ) ( 1792 960 256 ) ( 1792 832 256 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 16777216 0 +} +{ +( 848 8192 8192 ) ( 848 -8192 8192 ) ( 848 8192 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( -8192 1344 8192 ) ( 8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 1472 8192 ) ( -8192 1472 8192 ) ( -8192 1472 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 -8 ) ( 8192 8192 -8 ) ( -8192 -8192 -8 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 0 ) ( 8192 -8192 0 ) ( -8192 -8192 0 ) bricks/c_sr_m2c 0 64 180 -1.000000 1.000000 1 67108864 0 +( -5984 -5600 8192 ) ( 5600 5984 8192 ) ( 5600 5984 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 848 -8192 8192 ) ( 848 8192 8192 ) ( 848 8192 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( -8192 1344 8192 ) ( 8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 1472 8192 ) ( -8192 1472 8192 ) ( -8192 1472 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 -8 ) ( 8192 8192 -8 ) ( -8192 -8192 -8 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 0 ) ( 8192 -8192 0 ) ( -8192 -8192 0 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 16777216 0 +} +{ +( -528 8192 8192 ) ( -528 -8192 8192 ) ( -528 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -512 -8192 8192 ) ( -512 8192 8192 ) ( -512 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1328 8192 ) ( 8192 1328 8192 ) ( -8192 1328 -8192 ) bricks/b_sr_20 0 48 0 1.000000 1.000000 1 0 0 +( 8192 1456 8192 ) ( -8192 1456 8192 ) ( -8192 1456 -8192 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 8390656 0 +} +{ +( -832 8192 8192 ) ( -832 -8192 8192 ) ( -832 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -528 -8192 8192 ) ( -528 8192 8192 ) ( -528 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1328 8192 ) ( 8192 1328 8192 ) ( -8192 1328 -8192 ) bricks/b_sr_20 0 48 0 1.000000 1.000000 1 0 0 +( 8192 1456 8192 ) ( -8192 1456 8192 ) ( -8192 1456 -8192 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) bricks/c_sr_m2c -112 -80 0 1.000000 1.000000 1 67108864 0 +} +{ +( -512 8192 8192 ) ( -512 -8192 8192 ) ( -512 8192 -8192 ) bricks/c_sr_m2c 112 -2 0 2.000000 2.000000 1 0 0 +( -272 -8192 8192 ) ( -272 8192 8192 ) ( -272 8192 -8192 ) bricks/c_pv_18a 0 128 0 2.000000 2.000000 1 0 0 +( -8741 1216 8192 ) ( 8814 1216 8192 ) ( -8741 1216 -8192 ) bricks/c_sr_m2c 112 -2 0 2.000000 2.000000 1 0 0 +( 8814 1536 8192 ) ( -8741 1536 8192 ) ( -8741 1536 -8192 ) bricks/c_sr_m2c 112 -2 0 2.000000 2.000000 1 0 0 +( 8814 -8192 0 ) ( 8814 8192 0 ) ( -8741 -8192 0 ) bricks/c_sr_m2c 112 -2 0 2.000000 2.000000 1 0 0 +( 8814 8192 256 ) ( 8814 -8192 256 ) ( -8741 -8192 256 ) bricks/c_sr_m2c 112 -2 0 2.000000 2.000000 1 0 0 +} +{ +( -960 8192 8192 ) ( -960 -8192 8192 ) ( -960 8192 -8192 ) bricks/s_sr_m12ab 0 -136 0 2.000000 2.000000 1 0 0 +( -832 -8192 8192 ) ( -832 8192 8192 ) ( -832 8192 -8192 ) bricks/s_sr_m12ab 0 -136 0 2.000000 2.000000 1 0 0 +( -8192 1328 8192 ) ( 8192 1328 8192 ) ( -8192 1328 -8192 ) bricks/s_sr_m12ab 0 -136 0 2.000000 2.000000 1 0 0 +( 8192 1456 8192 ) ( -8192 1456 8192 ) ( -8192 1456 -8192 ) bricks/s_sr_m12ab 0 -136 0 2.000000 2.000000 1 0 0 +( 8192 -8192 240 ) ( 8192 8192 240 ) ( -8192 -8192 240 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) bricks/c_sr_m2c -112 -208 0 1.000000 1.000000 1 0 0 +} +{ +( -632 8192 8192 ) ( -632 -8192 8192 ) ( -632 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -576 -8192 8192 ) ( -576 8192 8192 ) ( -576 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1936 8192 ) ( 8192 1936 8192 ) ( -8192 1936 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1952 8192 ) ( -8192 1952 8192 ) ( -8192 1952 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 640 ) ( 8192 -8192 640 ) ( -8192 -8192 640 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -648 8192 8192 ) ( -648 -8192 8192 ) ( -648 8192 -8192 ) metals/mt_sr_v13 64 -64 0 3.000000 3.000000 0 8388608 0 +( -632 -8192 8192 ) ( -632 8192 8192 ) ( -632 8192 -8192 ) metals/mt_sr_v13 64 -64 0 3.000000 3.000000 0 8388608 0 +( -8192 1936 8192 ) ( 8192 1936 8192 ) ( -8192 1936 -8192 ) metals/mt_sr_v13 64 -64 0 3.000000 3.000000 0 8388608 0 +( 8192 1952 8192 ) ( -8192 1952 8192 ) ( -8192 1952 -8192 ) metals/mt_sr_v13 64 -64 0 3.000000 3.000000 0 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 8 16 0 3.000000 3.000000 0 8388608 0 +( 8192 8192 640 ) ( 8192 -8192 640 ) ( -8192 -8192 640 ) metals/mt_sr_v13 64 -64 0 3.000000 3.000000 0 8388608 0 +} +{ +( -704 8192 8192 ) ( -704 -8192 8192 ) ( -704 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -648 -8192 8192 ) ( -648 8192 8192 ) ( -648 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1936 8192 ) ( 8192 1936 8192 ) ( -8192 1936 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1952 8192 ) ( -8192 1952 8192 ) ( -8192 1952 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 640 ) ( 8192 -8192 640 ) ( -8192 -8192 640 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -704 1968 240 ) ( -704 1968 384 ) ( -704 1792 384 ) bricks/b_mf_v2 0 -128 0 2.000000 2.000000 +( -448 1968 240 ) ( -448 1792 240 ) ( -448 1792 384 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -704 1968 240 ) ( -448 1968 240 ) ( -448 1968 384 ) bricks/b_mf_v2 0 -128 0 2.000000 2.000000 +( -704 1792 240 ) ( -448 1792 240 ) ( -448 1968 240 ) bricks/b_mf_v2 0 -128 0 2.000000 2.000000 +( -704 1968 384 ) ( -448 1968 384 ) ( -448 1792 384 ) bricks/b_mf_v2 -8 -64 90 1.000000 1.000000 +( -448 1792 240 ) ( -704 1792 240 ) ( -704 1792 384 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 +} +{ +( -1416 8192 8192 ) ( -1416 -8192 8192 ) ( -1416 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1400 -8192 8192 ) ( -1400 8192 8192 ) ( -1400 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1944 8192 ) ( 8192 1944 8192 ) ( -8192 1944 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1960 8192 ) ( -8192 1960 8192 ) ( -8192 1960 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) common/li_sr_ml5 8 24 0 1.000000 1.000000 1 1 15000 +( 8192 8192 160 ) ( 8192 -8192 160 ) ( -8192 -8192 160 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1416 8192 8192 ) ( -1416 -8192 8192 ) ( -1416 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1400 -8192 8192 ) ( -1400 8192 8192 ) ( -1400 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1920 8192 ) ( 8192 1920 8192 ) ( -8192 1920 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1944 8192 ) ( -8192 1944 8192 ) ( -8192 1944 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 160 ) ( 8192 -8192 160 ) ( -8192 -8192 160 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1416 8192 8192 ) ( -1416 -8192 8192 ) ( -1416 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -1400 -8192 8192 ) ( -1400 8192 8192 ) ( -1400 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1960 8192 ) ( 8192 1960 8192 ) ( -8192 1960 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1984 8192 ) ( -8192 1984 8192 ) ( -8192 1984 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 160 ) ( 8192 -8192 160 ) ( -8192 -8192 160 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1400 8192 8192 ) ( -1400 -8192 8192 ) ( -1400 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1920 8192 ) ( 8192 1920 8192 ) ( -8192 1920 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1984 8192 ) ( -8192 1984 8192 ) ( -8192 1984 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 160 ) ( 8192 -8192 160 ) ( -8192 -8192 160 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1536 8192 8192 ) ( -1536 -8192 8192 ) ( -1536 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -1416 -8192 8192 ) ( -1416 8192 8192 ) ( -1416 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1920 8192 ) ( 8192 1920 8192 ) ( -8192 1920 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1984 8192 ) ( -8192 1984 8192 ) ( -8192 1984 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 160 ) ( 8192 -8192 160 ) ( -8192 -8192 160 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1264 8192 8192 ) ( -1264 -8192 8192 ) ( -1264 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 +( -1256 -8192 8192 ) ( -1256 8192 8192 ) ( -1256 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 +( -8192 2616 8192 ) ( 8192 2616 8192 ) ( -8192 2616 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 +( 8192 2624 8192 ) ( -8192 2624 8192 ) ( -8192 2624 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 +( 5152 8192 6432 ) ( 5152 -8192 6432 ) ( -6432 -8192 -5152 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 +} +{ +( -1264 8192 8192 ) ( -1264 -8192 8192 ) ( -1264 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 +( -1256 -8192 8192 ) ( -1256 8192 8192 ) ( -1256 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 +( -8192 2496 8192 ) ( 8192 2496 8192 ) ( -8192 2496 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 +( 8192 2504 8192 ) ( -8192 2504 8192 ) ( -8192 2504 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 +( 5152 8192 6432 ) ( 5152 -8192 6432 ) ( -6432 -8192 -5152 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 +} +{ +( -576 8192 8192 ) ( -576 -8192 8192 ) ( -576 8192 -8192 ) common/li_sr_m14 8 8 0 1.000000 1.000000 1 1 40000 +( -560 -8192 8192 ) ( -560 8192 8192 ) ( -560 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -2480 2040 8192 ) ( 1616 2040 8192 ) ( -2480 2040 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 1616 2056 8192 ) ( -2480 2056 8192 ) ( -2480 2056 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 1616 -8192 8 ) ( 1616 8192 8 ) ( -2480 -8192 8 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 1616 8192 24 ) ( 1616 -8192 24 ) ( -2480 -8192 24 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -576 8192 8192 ) ( -576 -8192 8192 ) ( -576 8192 -8192 ) bricks/c_pv_m2 15 -1 0 1.000000 1.000000 1 0 0 +( -560 -8192 8192 ) ( -560 8192 8192 ) ( -560 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -2480 2040 8192 ) ( 1616 2040 8192 ) ( -2480 2040 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 1616 2056 8192 ) ( -2480 2056 8192 ) ( -2480 2056 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 1616 -8192 24 ) ( 1616 8192 24 ) ( -2480 -8192 24 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 1616 8192 48 ) ( 1616 -8192 48 ) ( -2480 -8192 48 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -576 22217 8192 ) ( -576 -31616 8192 ) ( -576 22217 -8192 ) bricks/c_pv_m2 15 -1 0 1.000000 1.000000 1 0 0 +( -560 -31616 8192 ) ( -560 22217 8192 ) ( -560 22217 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -2480 2056 8192 ) ( 1616 2056 8192 ) ( -2480 2056 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 1616 2240 8192 ) ( -2480 2240 8192 ) ( -2480 2240 -8192 ) bricks/c_pv_m2 15 -1 0 1.000000 1.000000 1 0 0 +( 1616 -31616 8 ) ( 1616 22217 8 ) ( -2480 -31616 8 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 1616 22217 48 ) ( 1616 -31616 48 ) ( -2480 -31616 48 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -576 8192 8192 ) ( -576 -8192 8192 ) ( -576 8192 -8192 ) bricks/c_pv_m2 15 -1 0 1.000000 1.000000 1 0 0 +( -560 -8192 8192 ) ( -560 8192 8192 ) ( -560 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -2480 1984 8192 ) ( 1616 1984 8192 ) ( -2480 1984 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 1616 2040 8192 ) ( -2480 2040 8192 ) ( -2480 2040 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 1616 -8192 8 ) ( 1616 8192 8 ) ( -2480 -8192 8 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 1616 8192 48 ) ( 1616 -8192 48 ) ( -2480 -8192 48 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -576 1984 160 ) ( -576 2240 160 ) ( -576 2240 224 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -448 2240 160 ) ( -448 1984 160 ) ( -448 1984 224 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -448 1984 160 ) ( -576 1984 160 ) ( -576 1984 224 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -576 2240 160 ) ( -448 2240 160 ) ( -448 2240 224 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -576 1984 160 ) ( -448 1984 160 ) ( -448 2240 160 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( -576 2240 224 ) ( -448 2240 224 ) ( -448 1984 224 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -800 8192 8192 ) ( -800 -8192 8192 ) ( -800 8192 -8192 ) common/li_sr_m14 8 8 0 1.000000 1.000000 1 1 40000 +( -736 -8192 8192 ) ( -736 8192 8192 ) ( -736 8192 -8192 ) common/li_sr_m14 8 8 0 1.000000 1.000000 1 1 40000 +( -8192 2200 8192 ) ( 8192 2200 8192 ) ( -8192 2200 -8192 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2216 8192 ) ( -8192 2216 8192 ) ( -8192 2216 -8192 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 8 ) ( 8192 8192 8 ) ( -8192 -8192 8 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 24 ) ( 8192 -8192 24 ) ( -8192 -8192 24 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -800 8192 8192 ) ( -800 -8192 8192 ) ( -800 8192 -8192 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( -736 -8192 8192 ) ( -736 8192 8192 ) ( -736 8192 -8192 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( -8192 2176 8192 ) ( 8192 2176 8192 ) ( -8192 2176 -8192 ) metals/mt_sr_v20 -32 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2200 8192 ) ( -8192 2200 8192 ) ( -8192 2200 -8192 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 8 ) ( 8192 8192 8 ) ( -8192 -8192 8 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 24 ) ( 8192 -8192 24 ) ( -8192 -8192 24 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -800 8192 8192 ) ( -800 -8192 8192 ) ( -800 8192 -8192 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( -736 -8192 8192 ) ( -736 8192 8192 ) ( -736 8192 -8192 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( -8192 2216 8192 ) ( 8192 2216 8192 ) ( -8192 2216 -8192 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2240 8192 ) ( -8192 2240 8192 ) ( -8192 2240 -8192 ) metals/mt_sr_v20 -32 0 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 8 ) ( 8192 8192 8 ) ( -8192 -8192 8 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 24 ) ( 8192 -8192 24 ) ( -8192 -8192 24 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -800 8192 8192 ) ( -800 -8192 8192 ) ( -800 8192 -8192 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( -736 -8192 8192 ) ( -736 8192 8192 ) ( -736 8192 -8192 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( -8192 2432 8192 ) ( 8192 2432 8192 ) ( -8192 2432 -8192 ) metals/mt_sr_v20 -32 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2456 8192 ) ( -8192 2456 8192 ) ( -8192 2456 -8192 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 8 ) ( 8192 8192 8 ) ( -8192 -8192 8 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 24 ) ( 8192 -8192 24 ) ( -8192 -8192 24 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -800 8192 8192 ) ( -800 -8192 8192 ) ( -800 8192 -8192 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( -736 -8192 8192 ) ( -736 8192 8192 ) ( -736 8192 -8192 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( -8192 2472 8192 ) ( 8192 2472 8192 ) ( -8192 2472 -8192 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2496 8192 ) ( -8192 2496 8192 ) ( -8192 2496 -8192 ) metals/mt_sr_v20 -32 0 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 8 ) ( 8192 8192 8 ) ( -8192 -8192 8 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 24 ) ( 8192 -8192 24 ) ( -8192 -8192 24 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -800 8192 8192 ) ( -800 -8192 8192 ) ( -800 8192 -8192 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( -736 -8192 8192 ) ( -736 8192 8192 ) ( -736 8192 -8192 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( -8192 2432 8192 ) ( 8192 2432 8192 ) ( -8192 2432 -8192 ) metals/mt_sr_v20 -32 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2496 8192 ) ( -8192 2496 8192 ) ( -8192 2496 -8192 ) metals/mt_sr_v20 -32 0 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 24 ) ( 8192 8192 24 ) ( -8192 -8192 24 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -800 8192 8192 ) ( -800 -8192 8192 ) ( -800 8192 -8192 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( -736 -8192 8192 ) ( -736 8192 8192 ) ( -736 8192 -8192 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( -8192 2176 8192 ) ( 8192 2176 8192 ) ( -8192 2176 -8192 ) metals/mt_sr_v20 -32 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2240 8192 ) ( -8192 2240 8192 ) ( -8192 2240 -8192 ) metals/mt_sr_v20 -32 0 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 24 ) ( 8192 8192 24 ) ( -8192 -8192 24 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) metals/mt_sr_v20 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -800 8192 8192 ) ( -800 -8192 8192 ) ( -800 8192 -8192 ) metals/mt_sr_v21 64 -120 0 1.000000 1.000000 1 8388608 0 +( -736 -8192 8192 ) ( -736 8192 8192 ) ( -736 8192 -8192 ) metals/mt_sr_v21 64 -120 0 1.000000 1.000000 1 8388608 0 +( -8192 2432 8192 ) ( 8192 2432 8192 ) ( -8192 2432 -8192 ) metals/mt_sr_v21 64 -120 0 1.000000 1.000000 1 8388608 0 +( 8192 2496 8192 ) ( -8192 2496 8192 ) ( -8192 2496 -8192 ) metals/mt_sr_v21 64 -120 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) metals/mt_sr_v21 64 -120 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 8 ) ( 8192 -8192 8 ) ( -8192 -8192 8 ) metals/mt_sr_v21 64 -120 0 1.000000 1.000000 1 8388608 0 +} +{ +( -800 8192 8192 ) ( -800 -8192 8192 ) ( -800 8192 -8192 ) metals/mt_sr_v21 64 -120 0 1.000000 1.000000 1 8388608 0 +( -736 -8192 8192 ) ( -736 8192 8192 ) ( -736 8192 -8192 ) metals/mt_sr_v21 64 -120 0 1.000000 1.000000 1 8388608 0 +( -8192 2176 8192 ) ( 8192 2176 8192 ) ( -8192 2176 -8192 ) metals/mt_sr_v21 64 -120 0 1.000000 1.000000 1 8388608 0 +( 8192 2240 8192 ) ( -8192 2240 8192 ) ( -8192 2240 -8192 ) metals/mt_sr_v21 64 -120 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) metals/mt_sr_v21 64 -120 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 8 ) ( 8192 -8192 8 ) ( -8192 -8192 8 ) metals/mt_sr_v21 64 -120 0 1.000000 1.000000 1 8388608 0 +} +{ +( -1224 8192 8156 ) ( -1224 -8192 8156 ) ( -1224 8192 -8154 ) metals/mt_sr_v16 0 -10 90 0.750000 0.750000 1 8388608 0 +( -1208 -8192 8156 ) ( -1208 8192 8156 ) ( -1208 8192 -8154 ) metals/mt_sr_v16 0 -10 90 0.750000 0.750000 1 8388608 0 +( -8192 2152 8156 ) ( 8192 2152 8156 ) ( -8192 2152 -8154 ) metals/mt_sr_v16 0 13 90 0.750000 0.750000 1 8388608 0 +( 8192 2168 8156 ) ( -8192 2168 8156 ) ( -8192 2168 -8154 ) metals/mt_sr_v16 0 13 90 0.750000 0.750000 1 8388608 0 +( 8192 -8192 1 ) ( 8192 8192 1 ) ( -8192 -8192 1 ) metals/mt_sr_v16 127 1 180 1.000000 1.000000 1 8390656 0 +( 8192 8192 224 ) ( 8192 -8192 224 ) ( -8192 -8192 224 ) metals/mt_sr_v16 127 1 180 1.000000 1.000000 1 8390656 0 +} +{ +( -968 8192 8156 ) ( -968 -8192 8156 ) ( -968 8192 -8154 ) metals/mt_sr_v16 0 -10 90 0.750000 0.750000 1 8388608 0 +( -952 -8192 8156 ) ( -952 8192 8156 ) ( -952 8192 -8154 ) metals/mt_sr_v16 0 -10 90 0.750000 0.750000 1 8388608 0 +( -8192 2152 8156 ) ( 8192 2152 8156 ) ( -8192 2152 -8154 ) metals/mt_sr_v16 0 23 90 0.750000 0.750000 1 8388608 0 +( 8192 2168 8156 ) ( -8192 2168 8156 ) ( -8192 2168 -8154 ) metals/mt_sr_v16 0 23 90 0.750000 0.750000 1 8388608 0 +( 8192 -8192 1 ) ( 8192 8192 1 ) ( -8192 -8192 1 ) metals/mt_sr_v16 127 0 180 1.000000 1.000000 1 8390656 0 +( 8192 8192 224 ) ( 8192 -8192 224 ) ( -8192 -8192 224 ) metals/mt_sr_v16 127 0 180 1.000000 1.000000 1 8390656 0 +} +{ +( -1368 8192 8156 ) ( -1368 -8192 8156 ) ( -1368 8192 -8154 ) metals/mt_sr_v16 0 -10 90 0.750000 0.750000 1 8388608 0 +( -1352 -8192 8156 ) ( -1352 8192 8156 ) ( -1352 8192 -8154 ) metals/mt_sr_v16 0 -10 90 0.750000 0.750000 1 8388608 0 +( -8192 2488 8156 ) ( 8192 2488 8156 ) ( -8192 2488 -8154 ) metals/mt_sr_v16 0 13 90 0.750000 0.750000 1 8388608 0 +( 8192 2504 8156 ) ( -8192 2504 8156 ) ( -8192 2504 -8154 ) metals/mt_sr_v16 0 13 90 0.750000 0.750000 1 8388608 0 +( 8192 -8192 1 ) ( 8192 8192 1 ) ( -8192 -8192 1 ) metals/mt_sr_v16 -64 1 90 1.000000 1.000000 1 8390656 0 +( 8192 8192 224 ) ( 8192 -8192 224 ) ( -8192 -8192 224 ) metals/mt_sr_v16 -64 1 90 1.000000 1.000000 1 8390656 0 +} +{ +( -1368 8192 8156 ) ( -1368 -8192 8156 ) ( -1368 8192 -8154 ) metals/mt_sr_v16 0 -10 90 0.750000 0.750000 1 8388608 0 +( -1352 -8192 8156 ) ( -1352 8192 8156 ) ( -1352 8192 -8154 ) metals/mt_sr_v16 0 -10 90 0.750000 0.750000 1 8388608 0 +( -8192 2296 8156 ) ( 8192 2296 8156 ) ( -8192 2296 -8154 ) metals/mt_sr_v16 0 13 90 0.750000 0.750000 1 8388608 0 +( 8192 2312 8156 ) ( -8192 2312 8156 ) ( -8192 2312 -8154 ) metals/mt_sr_v16 0 13 90 0.750000 0.750000 1 8388608 0 +( 8192 -8192 1 ) ( 8192 8192 1 ) ( -8192 -8192 1 ) metals/mt_sr_v16 0 -10 90 0.750000 0.750000 1 8388608 0 +( 8192 8192 224 ) ( 8192 -8192 224 ) ( -8192 -8192 224 ) metals/mt_sr_v16 0 -10 90 0.750000 0.750000 1 8388608 0 +} +{ +( -1528 8192 8192 ) ( -1528 -8192 8192 ) ( -1528 8192 -8192 ) metals/mt_sr_v16 0 -8 90 1.000000 1.000000 1 8390656 0 +( -1352 -8192 8192 ) ( -1352 8192 8192 ) ( -1352 8192 -8192 ) metals/mt_sr_v16 0 -8 90 1.000000 1.000000 1 8390656 0 +( -8192 2488 8192 ) ( 8192 2488 8192 ) ( -8192 2488 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 2504 8192 ) ( -8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 -8192 224 ) ( 8192 8192 224 ) ( -8192 -8192 224 ) metals/mt_sr_v16 0 5 180 1.000000 1.000000 1 8388608 0 +( 8192 8192 248 ) ( 8192 -8192 248 ) ( -8192 -8192 248 ) metals/mt_sr_v16 0 5 180 1.000000 1.000000 1 8388608 0 +} +{ +( -1528 8192 8192 ) ( -1528 -8192 8192 ) ( -1528 8192 -8192 ) metals/mt_sr_v16 0 -8 90 1.000000 1.000000 1 8390656 0 +( -1352 -8192 8192 ) ( -1352 8192 8192 ) ( -1352 8192 -8192 ) metals/mt_sr_v16 0 -8 90 1.000000 1.000000 1 8390656 0 +( -8192 2296 8192 ) ( 8192 2296 8192 ) ( -8192 2296 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 2312 8192 ) ( -8192 2312 8192 ) ( -8192 2312 -8192 ) metals/mt_sr_v16 0 0 180 1.000000 1.000000 1 8390656 0 +( 8192 -8192 224 ) ( 8192 8192 224 ) ( -8192 -8192 224 ) metals/mt_sr_v16 0 5 180 1.000000 1.000000 1 8388608 0 +( 8192 8192 248 ) ( 8192 -8192 248 ) ( -8192 -8192 248 ) metals/mt_sr_v16 0 5 180 1.000000 1.000000 1 8388608 0 +} +{ +( -1224 8192 8192 ) ( -1224 -8192 8192 ) ( -1224 8192 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( -1208 -8192 8192 ) ( -1208 8192 8192 ) ( -1208 8192 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( -8192 1992 8192 ) ( 8192 1992 8192 ) ( -8192 1992 -8192 ) metals/mt_sr_v16 0 24 90 1.000000 1.000000 1 8390656 0 +( 8192 2168 8192 ) ( -8192 2168 8192 ) ( -8192 2168 -8192 ) metals/mt_sr_v16 0 24 90 1.000000 1.000000 1 8390656 0 +( 8192 -8192 224 ) ( 8192 8192 224 ) ( -8192 -8192 224 ) metals/mt_sr_v16 0 5 90 1.000000 1.000000 1 8388608 0 +( 8192 8192 248 ) ( 8192 -8192 248 ) ( -8192 -8192 248 ) metals/mt_sr_v16 0 5 90 1.000000 1.000000 1 8388608 0 +} +{ +( -968 8192 8192 ) ( -968 -8192 8192 ) ( -968 8192 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( -952 -8192 8192 ) ( -952 8192 8192 ) ( -952 8192 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( -8192 1992 8192 ) ( 8192 1992 8192 ) ( -8192 1992 -8192 ) metals/mt_sr_v16 0 24 90 1.000000 1.000000 1 8390656 0 +( 8192 2168 8192 ) ( -8192 2168 8192 ) ( -8192 2168 -8192 ) metals/mt_sr_v16 0 24 90 1.000000 1.000000 1 8390656 0 +( 8192 -8192 224 ) ( 8192 8192 224 ) ( -8192 -8192 224 ) metals/mt_sr_v16 0 5 90 1.000000 1.000000 1 8388608 0 +( 8192 8192 248 ) ( 8192 -8192 248 ) ( -8192 -8192 248 ) metals/mt_sr_v16 0 5 90 1.000000 1.000000 1 8388608 0 +} +{ +( -1528 8192 8192 ) ( -1528 -8192 8192 ) ( -1528 8192 -8192 ) metals/mt_sr_v18 0 -64 0 2.000000 2.000000 1 0 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) metals/mt_sr_v21 0 -64 0 1.000000 1.000000 1 8388608 0 +( -8192 2176 8192 ) ( 8192 2176 8192 ) ( -8192 2176 -8192 ) metals/mt_sr_v18 0 -64 0 2.000000 2.000000 1 0 0 +( 8192 2624 8192 ) ( -8192 2624 8192 ) ( -8192 2624 -8192 ) metals/mt_sr_v18 0 -64 0 2.000000 2.000000 1 0 0 +( 8192 -8192 448 ) ( 8192 8192 448 ) ( -8192 -8192 448 ) metals/mt_sr_v12 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) metals/mt_sr_v18 0 -64 0 2.000000 2.000000 1 0 0 +} +{ +( -1528 8192 8192 ) ( -1528 -8192 8192 ) ( -1528 8192 -8192 ) metals/mt_sr_v12 0 0 0 1.000000 1.000000 1 8388608 0 +( -832 -8192 8192 ) ( -832 8192 8192 ) ( -832 8192 -8192 ) metals/mt_sr_v12 0 0 0 1.000000 1.000000 1 8388608 0 +( -8192 1984 8192 ) ( 8192 1984 8192 ) ( -8192 1984 -8192 ) metals/mt_sr_v12 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2176 8192 ) ( -8192 2176 8192 ) ( -8192 2176 -8192 ) metals/mt_sr_v21 0 -64 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 448 ) ( 8192 8192 448 ) ( -8192 -8192 448 ) metals/mt_sr_v12 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) metals/mt_sr_v12 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -512 8192 8192 ) ( -512 -8192 8192 ) ( -512 8192 -8192 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( -448 -8192 8192 ) ( -448 8192 8192 ) ( -448 8192 -8192 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( -8192 2240 8192 ) ( 8192 2240 8192 ) ( -8192 2240 -8192 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( 8192 2624 8192 ) ( -8192 2624 8192 ) ( -8192 2624 -8192 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( 8192 8192 224 ) ( 8192 -8192 224 ) ( -8192 -8192 224 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +} +{ +( -736 8192 8192 ) ( -736 -8192 8192 ) ( -736 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -704 -8192 8192 ) ( -704 8192 8192 ) ( -704 8192 -8192 ) props/safe_w 0 0 0 1.000000 1.000000 +( -1801 2240 8192 ) ( 539 2240 8192 ) ( -1801 2240 -8192 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( 539 2624 8192 ) ( -1801 2624 8192 ) ( -1801 2624 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 539 -8192 48 ) ( 539 8192 48 ) ( -1801 -8192 48 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 539 8192 128 ) ( 539 -8192 128 ) ( -1801 -8192 128 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -736 8192 8192 ) ( -736 -8192 8192 ) ( -736 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -512 -8192 8192 ) ( -512 8192 8192 ) ( -512 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 2240 8192 ) ( 8192 2240 8192 ) ( -8192 2240 -8192 ) bricks/c_pv_m2 15 -1 0 1.000000 1.000000 1 0 0 +( 8192 2624 8192 ) ( -8192 2624 8192 ) ( -8192 2624 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 48 ) ( 8192 -8192 48 ) ( -8192 -8192 48 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -8192 2616 8192 ) ( 8192 2616 8192 ) ( -8192 2616 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 2624 8192 ) ( -8192 2624 8192 ) ( -8192 2624 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 -8192 224 ) ( 8192 8192 224 ) ( -8192 -8192 224 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8388608 0 +( -7776 -3808 8192 ) ( 3808 7776 8192 ) ( 3808 7776 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( -5248 6336 8192 ) ( 6336 -5248 8192 ) ( 6336 -5248 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +} +{ +( -1536 8192 8192 ) ( -1536 -8192 8192 ) ( -1536 8192 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( -1528 -8192 8192 ) ( -1528 8192 8192 ) ( -1528 8192 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 -8192 224 ) ( 8192 8192 224 ) ( -8192 -8192 224 ) metals/mt_sr_v16 0 0 90 1.000000 1.000000 1 8388608 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) metals/mt_sr_v16 0 0 90 1.000000 1.000000 1 8388608 0 +( -7552 -4032 8192 ) ( 4032 7552 8192 ) ( 4032 7552 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( 6336 -5248 8192 ) ( -5248 6336 8192 ) ( 6336 -5248 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +} +{ +( -8192 1984 8192 ) ( 8192 1984 8192 ) ( -8192 1984 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 1992 8192 ) ( -8192 1992 8192 ) ( -8192 1992 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 -8192 224 ) ( 8192 8192 224 ) ( -8192 -8192 224 ) metals/mt_sr_v16 0 0 180 1.000000 1.000000 1 8388608 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) metals/mt_sr_v16 0 0 180 1.000000 1.000000 1 8388608 0 +( 6400 -5184 8192 ) ( -5184 6400 8192 ) ( -5184 6400 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( 4032 7552 8192 ) ( -7552 -4032 8192 ) ( 4032 7552 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +} +{ +( -776 8192 8192 ) ( -776 -8192 8192 ) ( -776 8192 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( -768 -8192 8192 ) ( -768 8192 8192 ) ( -768 8192 -8192 ) metals/mt_sr_v16 0 0 90 1.000000 1.000000 1 8390656 0 +( 8192 -8192 224 ) ( 8192 8192 224 ) ( -8192 -8192 224 ) metals/mt_sr_v16 0 32 270 1.000000 1.000000 1 8388608 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) metals/mt_sr_v16 0 32 270 1.000000 1.000000 1 8388608 0 +( -5184 6400 8192 ) ( 6400 -5184 8192 ) ( -5184 6400 -8192 ) metals/mt_sr_v16 0 0 90 1.000000 1.000000 1 8390656 0 +( 4320 7264 8192 ) ( -7264 -4320 8192 ) ( -7264 -4320 -8192 ) metals/mt_sr_v16 0 0 90 1.000000 1.000000 1 8390656 0 +} +{ +( -1352 8192 8192 ) ( -1352 -8192 8192 ) ( -1352 8192 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 224 ) ( 8192 8192 224 ) ( -8192 -8192 224 ) metals/mt_sr_v16 0 0 270 1.000000 1.000000 1 8388608 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) metals/mt_sr_v16 0 0 270 1.000000 1.000000 1 8388608 0 +( -7552 -4032 8192 ) ( 4032 7552 8192 ) ( 4032 7552 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( 3808 7776 8192 ) ( -7776 -3808 8192 ) ( 3808 7776 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +} +{ +( -8192 2168 8192 ) ( 8192 2168 8192 ) ( -8192 2168 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 2176 8192 ) ( -8192 2176 8192 ) ( -8192 2176 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +( 8192 -8192 224 ) ( 8192 8192 224 ) ( -8192 -8192 224 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8388608 0 +( -7264 -4320 8192 ) ( 4320 7264 8192 ) ( -7264 -4320 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( 4032 7552 8192 ) ( -7552 -4032 8192 ) ( 4032 7552 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +} +{ +( -1536 8192 8192 ) ( -1536 -8192 8192 ) ( -1536 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -704 -8192 8192 ) ( -704 8192 8192 ) ( -704 8192 -8192 ) bricks/b_mf_v2a 64 0 0 1.000000 1.000000 1 0 0 +( -8192 1920 8192 ) ( 8192 1920 8192 ) ( -8192 1920 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1984 8192 ) ( -8192 1984 8192 ) ( -8192 1984 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 224 ) ( 8192 8192 224 ) ( -8192 -8192 224 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1600 8192 8192 ) ( -1600 -8192 8192 ) ( -1600 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -1536 -8192 8192 ) ( -1536 8192 8192 ) ( -1536 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1920 8192 ) ( 8192 1920 8192 ) ( -8192 1920 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 2688 8192 ) ( -8192 2688 8192 ) ( -8192 2688 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 224 ) ( 8192 8192 224 ) ( -8192 -8192 224 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1536 8192 8192 ) ( -1536 -8192 8192 ) ( -1536 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -32 -8192 8192 ) ( -32 8192 8192 ) ( -32 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -10737 2624 8192 ) ( 11912 2624 8192 ) ( -10737 2624 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 11912 2688 8192 ) ( -10737 2688 8192 ) ( -10737 2688 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 11912 -8192 224 ) ( 11912 8192 224 ) ( -10737 -8192 224 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 11912 8192 448 ) ( 11912 -8192 448 ) ( -10737 -8192 448 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1600 8192 8192 ) ( -1600 -8192 8192 ) ( -1600 8192 -8192 ) metals/mt_sr_v18 0 0 0 1.000000 1.000000 1 0 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( -8192 2176 8192 ) ( 8192 2176 8192 ) ( -8192 2176 -8192 ) metals/mt_sr_v18 0 0 0 1.000000 1.000000 1 0 0 +( 8192 2624 8192 ) ( -8192 2624 8192 ) ( -8192 2624 -8192 ) metals/mt_sr_v18 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 576 ) ( 8192 8192 576 ) ( -8192 -8192 576 ) metals/mt_sr_v18 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 640 ) ( 8192 -8192 640 ) ( -8192 -8192 640 ) metals/mt_sr_v18 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1536 8192 8192 ) ( -1536 -8192 8192 ) ( -1536 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -448 -8192 8192 ) ( -448 8192 8192 ) ( -448 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 2624 8192 ) ( 8192 2624 8192 ) ( -8192 2624 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 2688 8192 ) ( -8192 2688 8192 ) ( -8192 2688 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 576 ) ( 8192 8192 576 ) ( -8192 -8192 576 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 640 ) ( 8192 -8192 640 ) ( -8192 -8192 640 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -832 8192 8192 ) ( -832 -8192 8192 ) ( -832 8192 -8192 ) metals/mt_sr_v21 64 -64 0 1.000000 1.000000 1 8388608 0 +( -512 -8192 8192 ) ( -512 8192 8192 ) ( -512 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1984 8192 ) ( 8192 1984 8192 ) ( -8192 1984 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 2624 8192 ) ( -8192 2624 8192 ) ( -8192 2624 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 448 ) ( 8192 8192 448 ) ( -8192 -8192 448 ) metals/mt_sr_v12 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -832 8192 8192 ) ( -832 -8192 8192 ) ( -832 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( -512 -8192 8192 ) ( -512 8192 8192 ) ( -512 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1984 8192 ) ( 8192 1984 8192 ) ( -8192 1984 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 2624 8192 ) ( -8192 2624 8192 ) ( -8192 2624 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 576 ) ( 8192 8192 576 ) ( -8192 -8192 576 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 640 ) ( 8192 -8192 640 ) ( -8192 -8192 640 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1536 8192 8192 ) ( -1536 -8192 8192 ) ( -1536 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -832 -8192 8192 ) ( -832 8192 8192 ) ( -832 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1920 8192 ) ( 8192 1920 8192 ) ( -8192 1920 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 2176 8192 ) ( -8192 2176 8192 ) ( -8192 2176 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 576 ) ( 8192 8192 576 ) ( -8192 -8192 576 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 640 ) ( 8192 -8192 640 ) ( -8192 -8192 640 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1536 8192 8192 ) ( -1536 -8192 8192 ) ( -1536 8192 -8192 ) bricks/b_mf_v2 64 0 0 1.000000 1.000000 1 0 0 +( -512 -8192 8192 ) ( -512 8192 8192 ) ( -512 8192 -8192 ) bricks/b_mf_v2 64 0 0 1.000000 1.000000 1 0 0 +( -8192 1984 8192 ) ( 8192 1984 8192 ) ( -8192 1984 -8192 ) bricks/b_mf_v2 64 0 0 1.000000 1.000000 1 0 0 +( 8192 2624 8192 ) ( -8192 2624 8192 ) ( -8192 2624 -8192 ) bricks/b_mf_v2 64 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 640 ) ( 8192 8192 640 ) ( -8192 -8192 640 ) props/w_sr_m2a 0 0 0 1.000000 1.000000 1 1 200 +( 8192 8192 704 ) ( 8192 -8192 704 ) ( -8192 -8192 704 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -512 6529 8192 ) ( -512 -5387 8192 ) ( -512 6529 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -448 -5387 8192 ) ( -448 6529 8192 ) ( -448 6529 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1968 8192 ) ( 8192 1968 8192 ) ( -8192 1968 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 2480 8192 ) ( -8192 2480 8192 ) ( -8192 2480 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -5387 224 ) ( 8192 6529 224 ) ( -8192 -5387 224 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 6529 640 ) ( 8192 -5387 640 ) ( -8192 -5387 640 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -704 8192 8192 ) ( -704 -8192 8192 ) ( -704 8192 -8192 ) bricks/b_mf_v2a 64 0 0 1.000000 1.000000 1 0 0 +( -512 -8192 8192 ) ( -512 8192 8192 ) ( -512 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -23552 1920 8192 ) ( 25600 1920 8192 ) ( -23552 1920 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 25600 1984 8192 ) ( -23552 1984 8192 ) ( -23552 1984 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 25600 -8192 224 ) ( 25600 8192 224 ) ( -23552 -8192 224 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 25600 8192 640 ) ( 25600 -8192 640 ) ( -23552 -8192 640 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -704 8192 8192 ) ( -704 -8192 8192 ) ( -704 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -576 -8192 8192 ) ( -576 8192 8192 ) ( -576 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1792 8192 ) ( 8192 1792 8192 ) ( -8192 1792 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1936 8192 ) ( -8192 1936 8192 ) ( -8192 1936 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -736 8192 8192 ) ( -736 -8192 8192 ) ( -736 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -704 -8192 8192 ) ( -704 8192 8192 ) ( -704 8192 -8192 ) bricks/b_mf_v2a 64 0 0 1.000000 1.000000 1 0 0 +( -8192 1824 8192 ) ( 8192 1824 8192 ) ( -8192 1824 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1920 8192 ) ( -8192 1920 8192 ) ( -8192 1920 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1032 8192 8192 ) ( -1032 -8192 8192 ) ( -1032 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -1016 -8192 8192 ) ( -1016 8192 8192 ) ( -1016 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1736 8192 ) ( 8192 1736 8192 ) ( -8192 1736 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1792 8192 ) ( -8192 1792 8192 ) ( -8192 1792 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -1032 8192 8192 ) ( -1032 -8192 8192 ) ( -1032 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -1016 -8192 8192 ) ( -1016 8192 8192 ) ( -1016 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1720 8192 ) ( 8192 1720 8192 ) ( -8192 1720 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1736 8192 ) ( -8192 1736 8192 ) ( -8192 1736 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) common/li_sr_m19 8 8 0 1.000000 1.000000 1 1 18000 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1032 8192 8192 ) ( -1032 -8192 8192 ) ( -1032 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -1016 -8192 8192 ) ( -1016 8192 8192 ) ( -1016 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1664 8192 ) ( 8192 1664 8192 ) ( -8192 1664 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1720 8192 ) ( -8192 1720 8192 ) ( -8192 1720 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -1088 8192 8192 ) ( -1088 -8192 8192 ) ( -1088 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -1032 -8192 8192 ) ( -1032 8192 8192 ) ( -1032 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1664 8192 ) ( 8192 1664 8192 ) ( -8192 1664 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1792 8192 ) ( -8192 1792 8192 ) ( -8192 1792 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -1088 8192 8192 ) ( -1088 -8192 8192 ) ( -1088 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -960 -8192 8192 ) ( -960 8192 8192 ) ( -960 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1456 8192 ) ( 8192 1456 8192 ) ( -8192 1456 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1664 8192 ) ( -8192 1664 8192 ) ( -8192 1664 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -936 8192 8192 ) ( -936 -8192 8192 ) ( -936 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -320 -8192 8192 ) ( -320 8192 8192 ) ( -320 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -13352 1640 8192 ) ( 14683 1640 8192 ) ( -13352 1640 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 14683 1664 8192 ) ( -13352 1664 8192 ) ( -13352 1664 -8192 ) bricks/b_mf_v2a 64 0 0 1.000000 1.000000 1 0 0 +( 14683 -8192 256 ) ( 14683 8192 256 ) ( -13352 -8192 256 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 14683 8192 384 ) ( 14683 -8192 384 ) ( -13352 -8192 384 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1120 8192 8192 ) ( -1120 -8192 8192 ) ( -1120 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -704 -8192 8192 ) ( -704 8192 8192 ) ( -704 8192 -8192 ) bricks/b_mf_v2a 64 0 0 1.000000 1.000000 1 0 0 +( -8192 1792 8192 ) ( 8192 1792 8192 ) ( -8192 1792 -8192 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1824 8192 ) ( -8192 1824 8192 ) ( -8192 1824 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -960 8192 8192 ) ( -960 -8192 8192 ) ( -960 8192 -8192 ) bricks/b_mf_v2a 64 0 0 1.000000 1.000000 1 0 0 +( -936 -8192 8192 ) ( -936 8192 8192 ) ( -936 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1504 8192 ) ( 8192 1504 8192 ) ( -8192 1504 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1664 8192 ) ( -8192 1664 8192 ) ( -8192 1664 -8192 ) bricks/b_mf_v2a 64 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -960 1664 256 ) ( -320 1664 256 ) ( -320 1664 240 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( -448 1792 256 ) ( -1088 1792 256 ) ( -1088 1792 240 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( -960 1664 240 ) ( -320 1664 240 ) ( -448 1792 240 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( -1088 1792 256 ) ( -448 1792 256 ) ( -320 1664 256 ) bricks/c_sr_m2c -200 -128 0 -1.000000 1.000000 1 67108864 0 +( -320 1664 240 ) ( -320 1664 256 ) ( -448 1792 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( -1088 1792 240 ) ( -1088 1792 256 ) ( -960 1664 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +} +{ +( -1088 8192 8192 ) ( -1088 -8192 8192 ) ( -1088 8192 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( -960 -8192 8192 ) ( -960 8192 8192 ) ( -960 8192 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 -8192 240 ) ( 8192 8192 240 ) ( -8192 -8192 240 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) bricks/c_sr_m2c -136 -192 90 1.000000 1.000000 1 67108864 0 +( -5728 5856 8192 ) ( 5856 -5728 8192 ) ( 5856 -5728 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 6144 -5440 8192 ) ( -5440 6144 8192 ) ( 6144 -5440 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +} +{ +( -1600 8192 8192 ) ( -1600 -8192 8192 ) ( -1600 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -1536 -8192 8192 ) ( -1536 8192 8192 ) ( -1536 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1920 8192 ) ( 8192 1920 8192 ) ( -8192 1920 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 2688 8192 ) ( -8192 2688 8192 ) ( -8192 2688 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 160 ) ( 8192 8192 160 ) ( -8192 -8192 160 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 224 ) ( 8192 -8192 224 ) ( -8192 -8192 224 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1600 8192 8192 ) ( -1600 -8192 8192 ) ( -1600 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -1536 -8192 8192 ) ( -1536 8192 8192 ) ( -1536 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1920 8192 ) ( 8192 1920 8192 ) ( -8192 1920 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 2688 8192 ) ( -8192 2688 8192 ) ( -8192 2688 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 160 ) ( 8192 -8192 160 ) ( -8192 -8192 160 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1600 8192 8192 ) ( -1600 -8192 8192 ) ( -1600 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -1536 -8192 8192 ) ( -1536 8192 8192 ) ( -1536 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1920 8192 ) ( 8192 1920 8192 ) ( -8192 1920 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 2688 8192 ) ( -8192 2688 8192 ) ( -8192 2688 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1472 8192 8192 ) ( -1472 -8192 8192 ) ( -1472 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1856 8192 ) ( 8192 1856 8192 ) ( -8192 1856 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1920 8192 ) ( -8192 1920 8192 ) ( -8192 1920 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1536 8192 8192 ) ( -1536 -8192 8192 ) ( -1536 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -448 -8192 8192 ) ( -448 8192 8192 ) ( -448 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 2624 8192 ) ( 8192 2624 8192 ) ( -8192 2624 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 2688 8192 ) ( -8192 2688 8192 ) ( -8192 2688 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 160 ) ( 8192 -8192 160 ) ( -8192 -8192 160 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1536 8192 8192 ) ( -1536 -8192 8192 ) ( -1536 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -448 -8192 8192 ) ( -448 8192 8192 ) ( -448 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 2624 8192 ) ( 8192 2624 8192 ) ( -8192 2624 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 2688 8192 ) ( -8192 2688 8192 ) ( -8192 2688 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 160 ) ( 8192 8192 160 ) ( -8192 -8192 160 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 224 ) ( 8192 -8192 224 ) ( -8192 -8192 224 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1536 8192 8192 ) ( -1536 -8192 8192 ) ( -1536 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -512 -8192 8192 ) ( -512 8192 8192 ) ( -512 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1920 8192 ) ( 8192 1920 8192 ) ( -8192 1920 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1984 8192 ) ( -8192 1984 8192 ) ( -8192 1984 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 160 ) ( 8192 8192 160 ) ( -8192 -8192 160 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 224 ) ( 8192 -8192 224 ) ( -8192 -8192 224 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -560 -8192 8192 ) ( -560 8192 8192 ) ( -560 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -7797 1920 8192 ) ( 7642 1920 8192 ) ( -7797 1920 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 7642 1984 8192 ) ( -7797 1984 8192 ) ( -7797 1984 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 7642 -8192 128 ) ( 7642 8192 128 ) ( -7797 -8192 128 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 7642 8192 160 ) ( 7642 -8192 160 ) ( -7797 -8192 160 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1280 8192 8192 ) ( -1280 -8192 8192 ) ( -1280 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -560 -8192 8192 ) ( -560 8192 8192 ) ( -560 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -7760 1920 8192 ) ( 7600 1920 8192 ) ( -7760 1920 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 7600 1984 8192 ) ( -7760 1984 8192 ) ( -7760 1984 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 7600 -8192 0 ) ( 7600 8192 0 ) ( -7760 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 7600 8192 128 ) ( 7600 -8192 128 ) ( -7760 -8192 128 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1256 8192 8192 ) ( -1256 -8192 8192 ) ( -1256 8192 -8192 ) metals/mt_sr_v16 0 9 270 1.000000 1.000000 1 8388608 0 +( -768 -8192 8192 ) ( -768 8192 8192 ) ( -768 8192 -8192 ) metals/m_mf_v2a -8 0 0 1.000000 1.000000 1 8388608 0 +( -8192 2496 8192 ) ( 8192 2496 8192 ) ( -8192 2496 -8192 ) metals/mt_sr_v16 0 4 27 1.000000 1.000000 1 8388608 0 +( 8192 2504 8192 ) ( -8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_sr_v16 0 4 27 1.000000 1.000000 1 8388608 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) metals/m_mf_v2a 0 8 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) metals/mt_sr_v16 0 9 0 1.000000 1.000000 1 8388608 0 +( 7051 -8192 4204 ) ( 7051 8192 4204 ) ( -7549 8192 -3228 ) metals/m_pv_v4 56 88 90 1.000000 1.000000 1 8388608 0 +( 6999 8192 4298 ) ( 6999 -8192 4298 ) ( -7549 -8192 -3235 ) metals/mt_sr_v16 0 9 0 1.000000 1.000000 1 8388608 0 +} +{ +( -1248 8192 8192 ) ( -1248 -8192 8192 ) ( -1248 8192 -8192 ) metals/mt_sr_v16 32 -16 0 1.000000 1.000000 1 8388608 0 +( -8192 2504 8192 ) ( 8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2616 8192 ) ( -8192 2616 8192 ) ( -8192 2616 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 16 ) ( 8192 -8192 16 ) ( -8192 -8192 16 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 7077 -8191 4162 ) ( 7077 8191 4162 ) ( -7576 8191 -3164 ) metals/m_pv_v4 68 0 90 1.000000 1.000000 1 8388608 0 +} +{ +( -1216 8192 8192 ) ( -1216 -8192 8192 ) ( -1216 8192 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8388608 0 +( -8192 2504 8192 ) ( 8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2616 8192 ) ( -8192 2616 8192 ) ( -8192 2616 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 32 ) ( 8192 -8192 32 ) ( -8192 -8192 32 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 7077 -8191 4162 ) ( 7077 8191 4162 ) ( -7576 8191 -3164 ) metals/m_pv_v4 68 0 90 1.000000 1.000000 1 8388608 0 +} +{ +( -1184 8192 8192 ) ( -1184 -8192 8192 ) ( -1184 8192 -8192 ) metals/mt_sr_v16 -32 -16 0 1.000000 1.000000 1 8388608 0 +( -8192 2504 8192 ) ( 8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2616 8192 ) ( -8192 2616 8192 ) ( -8192 2616 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 48 ) ( 8192 -8192 48 ) ( -8192 -8192 48 ) metals/mt_pv_v4b 16 8 0 1.000000 1.000000 1 8388608 0 +( 7077 -8191 4162 ) ( 7077 8191 4162 ) ( -7576 8191 -3164 ) metals/m_pv_v4 68 0 90 1.000000 1.000000 1 8388608 0 +} +{ +( -1152 8192 8192 ) ( -1152 -8192 8192 ) ( -1152 8192 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8388608 0 +( -8192 2504 8192 ) ( 8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2616 8192 ) ( -8192 2616 8192 ) ( -8192 2616 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 64 ) ( 8192 -8192 64 ) ( -8192 -8192 64 ) metals/mt_pv_v4b 16 8 0 1.000000 1.000000 1 8388608 0 +( 7077 -8191 4162 ) ( 7077 8191 4162 ) ( -7576 8191 -3164 ) metals/m_pv_v4 68 0 90 1.000000 1.000000 1 8388608 0 +} +{ +( -1120 8192 8192 ) ( -1120 -8192 8192 ) ( -1120 8192 -8192 ) metals/mt_sr_v16 32 -16 0 1.000000 1.000000 1 8388608 0 +( -8192 2504 8192 ) ( 8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2616 8192 ) ( -8192 2616 8192 ) ( -8192 2616 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 80 ) ( 8192 -8192 80 ) ( -8192 -8192 80 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 7077 -8191 4162 ) ( 7077 8191 4162 ) ( -7576 8191 -3164 ) metals/m_pv_v4 68 0 90 1.000000 1.000000 1 8388608 0 +} +{ +( -1088 8192 8192 ) ( -1088 -8192 8192 ) ( -1088 8192 -8192 ) metals/mt_sr_v16 -16 0 0 1.000000 1.000000 1 8388608 0 +( -8192 2504 8192 ) ( 8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2616 8192 ) ( -8192 2616 8192 ) ( -8192 2616 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 96 ) ( 8192 -8192 96 ) ( -8192 -8192 96 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 7077 -8191 4162 ) ( 7077 8191 4162 ) ( -7576 8191 -3164 ) metals/m_pv_v4 68 0 90 1.000000 1.000000 1 8388608 0 +} +{ +( -1056 8192 8192 ) ( -1056 -8192 8192 ) ( -1056 8192 -8192 ) metals/mt_sr_v16 64 -16 0 1.000000 1.000000 1 8388608 0 +( -8192 2504 8192 ) ( 8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2616 8192 ) ( -8192 2616 8192 ) ( -8192 2616 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 112 ) ( 8192 -8192 112 ) ( -8192 -8192 112 ) metals/mt_pv_v4b 16 8 0 1.000000 1.000000 1 8388608 0 +( 7077 -8191 4162 ) ( 7077 8191 4162 ) ( -7576 8191 -3164 ) metals/m_pv_v4 68 0 90 1.000000 1.000000 1 8388608 0 +} +{ +( -1024 8192 8192 ) ( -1024 -8192 8192 ) ( -1024 8192 -8192 ) metals/mt_sr_v16 -16 0 0 1.000000 1.000000 1 8388608 0 +( -8192 2504 8192 ) ( 8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2616 8192 ) ( -8192 2616 8192 ) ( -8192 2616 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) metals/mt_pv_v4b 16 8 0 1.000000 1.000000 1 8388608 0 +( 7077 -8191 4162 ) ( 7077 8191 4162 ) ( -7576 8191 -3164 ) metals/m_pv_v4 68 0 90 1.000000 1.000000 1 8388608 0 +} +{ +( -992 8192 8192 ) ( -992 -8192 8192 ) ( -992 8192 -8192 ) metals/mt_sr_v16 -32 -16 0 1.000000 1.000000 1 8388608 0 +( -8192 2504 8192 ) ( 8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2616 8192 ) ( -8192 2616 8192 ) ( -8192 2616 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 7077 -8191 4162 ) ( 7077 8191 4162 ) ( -7576 8191 -3164 ) metals/m_pv_v4 68 0 90 1.000000 1.000000 1 8388608 0 +} +{ +( -960 8192 8192 ) ( -960 -8192 8192 ) ( -960 8192 -8192 ) metals/mt_sr_v16 -48 0 0 1.000000 1.000000 1 8388608 0 +( -8192 2504 8192 ) ( 8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2616 8192 ) ( -8192 2616 8192 ) ( -8192 2616 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 160 ) ( 8192 -8192 160 ) ( -8192 -8192 160 ) metals/mt_pv_v4b 16 8 0 1.000000 1.000000 1 8388608 0 +( 7077 -8191 4162 ) ( 7077 8191 4162 ) ( -7576 8191 -3164 ) metals/m_pv_v4 68 0 90 1.000000 1.000000 1 8388608 0 +} +{ +( -928 8192 8192 ) ( -928 -8192 8192 ) ( -928 8192 -8192 ) metals/mt_sr_v16 16 -16 0 1.000000 1.000000 1 8388608 0 +( -8192 2504 8192 ) ( 8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2616 8192 ) ( -8192 2616 8192 ) ( -8192 2616 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 176 ) ( 8192 -8192 176 ) ( -8192 -8192 176 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 7077 -8191 4162 ) ( 7077 8191 4162 ) ( -7576 8191 -3164 ) metals/m_pv_v4 68 0 90 1.000000 1.000000 1 8388608 0 +} +{ +( -896 8192 8192 ) ( -896 -8192 8192 ) ( -896 8192 -8192 ) metals/mt_sr_v16 -16 0 0 1.000000 1.000000 1 8388608 0 +( -8192 2504 8192 ) ( 8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2616 8192 ) ( -8192 2616 8192 ) ( -8192 2616 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 7077 -8191 4162 ) ( 7077 8191 4162 ) ( -7576 8191 -3164 ) metals/m_pv_v4 68 0 90 1.000000 1.000000 1 8388608 0 +} +{ +( -864 8192 8192 ) ( -864 -8192 8192 ) ( -864 8192 -8192 ) metals/mt_sr_v16 64 -16 0 1.000000 1.000000 1 8388608 0 +( -8192 2504 8192 ) ( 8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2616 8192 ) ( -8192 2616 8192 ) ( -8192 2616 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 208 ) ( 8192 -8192 208 ) ( -8192 -8192 208 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 7077 -8191 4162 ) ( 7077 8191 4162 ) ( -7576 8191 -3164 ) metals/m_pv_v4 68 0 90 1.000000 1.000000 1 8388608 0 +} +{ +( -832 8192 8192 ) ( -832 -8192 8192 ) ( -832 8192 -8192 ) metals/mt_sr_v16 -48 0 0 1.000000 1.000000 1 8388608 0 +( -8192 2504 8192 ) ( 8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2616 8192 ) ( -8192 2616 8192 ) ( -8192 2616 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 224 ) ( 8192 -8192 224 ) ( -8192 -8192 224 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 7077 -8191 4162 ) ( 7077 8191 4162 ) ( -7576 8191 -3164 ) metals/m_pv_v4 68 0 90 1.000000 1.000000 1 8388608 0 +} +{ +( -800 8192 8192 ) ( -800 -8192 8192 ) ( -800 8192 -8192 ) metals/mt_sr_v16 64 -16 0 1.000000 1.000000 1 8388608 0 +( -8192 2504 8192 ) ( 8192 2504 8192 ) ( -8192 2504 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 2616 8192 ) ( -8192 2616 8192 ) ( -8192 2616 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +( 7077 -8191 4162 ) ( 7077 8191 4162 ) ( -7576 8191 -3164 ) metals/m_pv_v4 68 0 90 1.000000 1.000000 1 8388608 0 +} +{ +( -1256 8192 8192 ) ( -1256 -8192 8192 ) ( -1256 8192 -8192 ) metals/mt_sr_v16 0 23 90 1.000000 1.000000 1 8388608 0 +( -768 -8192 8192 ) ( -768 8192 8192 ) ( -768 8192 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( -8192 2616 8192 ) ( 8192 2616 8192 ) ( -8192 2616 -8192 ) metals/mt_sr_v16 0 4 27 1.000000 1.000000 1 8388608 0 +( 8192 2624 8192 ) ( -8192 2624 8192 ) ( -8192 2624 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) metals/mt_sr_v16 0 23 180 1.000000 1.000000 1 8388608 0 +( 7051 -8192 4204 ) ( 7051 8192 4204 ) ( -7549 8192 -3228 ) metals/m_pv_v4 64 344 90 1.000000 1.000000 1 8388608 0 +( 6999 8192 4298 ) ( 6999 -8192 4298 ) ( -7549 -8192 -3235 ) metals/mt_sr_v16 0 23 180 1.000000 1.000000 1 8388608 0 +} +{ +( -1536 8192 8192 ) ( -1536 -8192 8192 ) ( -1536 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -448 -8192 8192 ) ( -448 8192 8192 ) ( -448 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 2624 8192 ) ( 8192 2624 8192 ) ( -8192 2624 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 2688 8192 ) ( -8192 2688 8192 ) ( -8192 2688 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -512 8192 8192 ) ( -512 -8192 8192 ) ( -512 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -448 -8192 8192 ) ( -448 8192 8192 ) ( -448 8192 -8192 ) bricks/c_pv_m2 15 -1 0 1.000000 1.000000 1 0 0 +( -8192 2240 8192 ) ( 8192 2240 8192 ) ( -8192 2240 -8192 ) bricks/c_pv_m2 15 -1 0 1.000000 1.000000 1 0 0 +( 8192 2624 8192 ) ( -8192 2624 8192 ) ( -8192 2624 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 48 ) ( 8192 -8192 48 ) ( -8192 -8192 48 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -768 1984 224 ) ( -768 2624 224 ) ( -768 2624 256 ) metals/m_pv_v4a 0 0 90 2.000000 2.000000 1 8388608 0 +( -512 2624 224 ) ( -512 1984 224 ) ( -512 1984 256 ) metals/m_pv_v4a 0 0 0 2.000000 2.000000 1 8388608 0 +( -512 1984 224 ) ( -768 1984 224 ) ( -768 1984 256 ) metals/m_pv_v4a 0 0 0 2.000000 2.000000 1 8388608 0 +( -768 2624 224 ) ( -512 2624 224 ) ( -512 2624 256 ) metals/m_pv_v4a 0 0 0 2.000000 2.000000 1 8388608 0 +( -768 1984 224 ) ( -512 1984 224 ) ( -512 2624 224 ) metals/m_pv_v4a 0 0 0 2.000000 2.000000 1 8388608 0 +( -768 2624 256 ) ( -512 2624 256 ) ( -512 1984 256 ) metals/m_pv_v4a 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -1472 8192 8192 ) ( -1472 -8192 8192 ) ( -1472 8192 -8192 ) bricks/c_sr_m2c -112 64 270 1.000000 1.000000 1 0 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) bricks/c_sr_m2c -112 64 270 1.000000 1.000000 1 0 0 +( -8192 1968 8192 ) ( 8192 1968 8192 ) ( -8192 1968 -8192 ) bricks/c_sr_m2c -112 64 270 1.000000 1.000000 1 0 0 +( 8192 1984 8192 ) ( -8192 1984 8192 ) ( -8192 1984 -8192 ) bricks/c_sr_m2c -112 64 270 1.000000 1.000000 1 0 0 +( 8192 -8192 -8 ) ( 8192 8192 -8 ) ( -8192 -8192 -8 ) bricks/c_sr_m2c -112 64 270 1.000000 1.000000 1 0 0 +( 8192 8192 0 ) ( 8192 -8192 0 ) ( -8192 -8192 0 ) metals/mt_pv_m16k 0 0 90 1.000000 1.000000 1 16777216 0 +} +{ +( -1472 8192 8192 ) ( -1472 -8192 8192 ) ( -1472 8192 -8192 ) bricks/c_sr_m2c -112 64 270 1.000000 1.000000 1 0 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) bricks/c_sr_m2c -112 64 270 1.000000 1.000000 1 0 0 +( 8192 1968 8192 ) ( -8192 1968 8192 ) ( -8192 1968 -8192 ) bricks/c_sr_m2c -112 64 270 1.000000 1.000000 1 0 0 +( 8192 -8192 -8 ) ( 8192 8192 -8 ) ( -8192 -8192 -8 ) bricks/c_sr_m2c -112 64 270 1.000000 1.000000 1 0 0 +( 8192 8192 0 ) ( 8192 -8192 0 ) ( -8192 -8192 0 ) bricks/c_sr_m2c -240 64 90 -1.000000 1.000000 1 67108864 0 +( -5600 5984 8192 ) ( 5984 -5600 8192 ) ( 5984 -5600 -8192 ) bricks/c_sr_m2c -112 64 270 1.000000 1.000000 1 0 0 +} +{ +( -1536 8192 8192 ) ( -1536 -8192 8192 ) ( -1536 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -1472 -8192 8192 ) ( -1472 8192 8192 ) ( -1472 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1920 8192 ) ( 8192 1920 8192 ) ( -8192 1920 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1984 8192 ) ( -8192 1984 8192 ) ( -8192 1984 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1664 8192 ) ( 8192 1664 8192 ) ( -8192 1664 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1984 8192 ) ( -8192 1984 8192 ) ( -8192 1984 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1656 8192 8192 ) ( -1656 -8192 8192 ) ( -1656 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1416 -8192 8192 ) ( -1416 8192 8192 ) ( -1416 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1784 8192 ) ( 8192 1784 8192 ) ( -8192 1784 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1800 8192 ) ( -8192 1800 8192 ) ( -8192 1800 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1672 8192 8192 ) ( -1672 -8192 8192 ) ( -1672 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1656 -8192 8192 ) ( -1656 8192 8192 ) ( -1656 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1784 8192 ) ( 8192 1784 8192 ) ( -8192 1784 -8192 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +( 8192 1800 8192 ) ( -8192 1800 8192 ) ( -8192 1800 -8192 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) common/li_sr_ml5 8 24 0 1.000000 1.000000 1 1 15000 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 32 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1928 8192 8192 ) ( -1928 -8192 8192 ) ( -1928 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1672 -8192 8192 ) ( -1672 8192 8192 ) ( -1672 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1784 8192 ) ( 8192 1784 8192 ) ( -8192 1784 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1800 8192 ) ( -8192 1800 8192 ) ( -8192 1800 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1416 8192 8192 ) ( -1416 -8192 8192 ) ( -1416 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1400 -8192 8192 ) ( -1400 8192 8192 ) ( -1400 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1784 8192 ) ( 8192 1784 8192 ) ( -8192 1784 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1800 8192 ) ( -8192 1800 8192 ) ( -8192 1800 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) common/li_sr_ml5 8 24 0 1.000000 1.000000 1 1 10000 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1400 8192 8192 ) ( -1400 -8192 8192 ) ( -1400 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1784 8192 ) ( 8192 1784 8192 ) ( -8192 1784 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1800 8192 ) ( -8192 1800 8192 ) ( -8192 1800 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1944 8192 8192 ) ( -1944 -8192 8192 ) ( -1944 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1928 -8192 8192 ) ( -1928 8192 8192 ) ( -1928 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1784 8192 ) ( 8192 1784 8192 ) ( -8192 1784 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1800 8192 ) ( -8192 1800 8192 ) ( -8192 1800 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) common/li_sr_ml5 8 24 0 1.000000 1.000000 1 1 15000 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -2000 8192 8192 ) ( -2000 -8192 8192 ) ( -2000 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1944 -8192 8192 ) ( -1944 8192 8192 ) ( -1944 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1784 8192 ) ( 8192 1784 8192 ) ( -8192 1784 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1800 8192 ) ( -8192 1800 8192 ) ( -8192 1800 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -2000 8192 8192 ) ( -2000 -8192 8192 ) ( -2000 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1728 8192 ) ( 8192 1728 8192 ) ( -8192 1728 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1784 8192 ) ( -8192 1784 8192 ) ( -8192 1784 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -2000 8192 8192 ) ( -2000 -8192 8192 ) ( -2000 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1800 8192 ) ( 8192 1800 8192 ) ( -8192 1800 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1856 8192 ) ( -8192 1856 8192 ) ( -8192 1856 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -2000 8192 8192 ) ( -2000 -8192 8192 ) ( -2000 8192 -8192 ) bricks/c_sr_m2c 0 64 180 1.000000 1.000000 1 0 0 +( -1872 -8192 8192 ) ( -1872 8192 8192 ) ( -1872 8192 -8192 ) bricks/c_sr_m2c 0 64 180 1.000000 1.000000 1 0 0 +( -8192 1584 8192 ) ( 8192 1584 8192 ) ( -8192 1584 -8192 ) bricks/c_sr_m2c 0 64 180 1.000000 1.000000 1 0 0 +( 8192 -8192 -8 ) ( 8192 8192 -8 ) ( -8192 -8192 -8 ) bricks/c_sr_m2c 0 64 180 1.000000 1.000000 1 0 0 +( 8192 8192 0 ) ( 8192 -8192 0 ) ( -8192 -8192 0 ) bricks/c_sr_m2c 0 -48 90 -1.000000 1.000000 1 67108864 0 +( 5720 -5864 8192 ) ( -5864 5720 8192 ) ( -5864 5720 -8192 ) bricks/c_sr_m2c 0 64 180 1.000000 1.000000 1 0 0 +} +{ +( -2000 8192 8192 ) ( -2000 -8192 8192 ) ( -2000 8192 -8192 ) bricks/c_sr_m2c 0 64 180 1.000000 1.000000 1 0 0 +( -1872 -8192 8192 ) ( -1872 8192 8192 ) ( -1872 8192 -8192 ) bricks/c_sr_m2c 0 64 180 1.000000 1.000000 1 0 0 +( -8192 1568 8192 ) ( 8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/c_sr_m2c 0 64 180 1.000000 1.000000 1 0 0 +( 8192 1584 8192 ) ( -8192 1584 8192 ) ( -8192 1584 -8192 ) bricks/c_sr_m2c 0 64 180 1.000000 1.000000 1 0 0 +( 8192 -8192 -8 ) ( 8192 8192 -8 ) ( -8192 -8192 -8 ) bricks/c_sr_m2c 0 64 180 1.000000 1.000000 1 0 0 +( 8192 8192 0 ) ( 8192 -8192 0 ) ( -8192 -8192 0 ) metals/mt_pv_m16k 0 0 270 1.000000 1.000000 1 16777216 0 +} +{ +( -2000 8192 8192 ) ( -2000 -8192 8192 ) ( -2000 8192 -8192 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( -1872 -8192 8192 ) ( -1872 8192 8192 ) ( -1872 8192 -8192 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( -8192 1632 8192 ) ( 8192 1632 8192 ) ( -8192 1632 -8192 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 1728 8192 ) ( -8192 1728 8192 ) ( -8192 1728 -8192 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( -1792 8192 8192 ) ( -1792 -8192 8192 ) ( -1792 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1664 8192 ) ( 8192 1664 8192 ) ( -8192 1664 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1728 8192 ) ( -8192 1728 8192 ) ( -8192 1728 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1872 8192 8192 ) ( -1872 -8192 8192 ) ( -1872 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -1792 -8192 8192 ) ( -1792 8192 8192 ) ( -1792 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1632 8192 ) ( 8192 1632 8192 ) ( -8192 1632 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1728 8192 ) ( -8192 1728 8192 ) ( -8192 1728 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -2048 8192 8192 ) ( -2048 -8192 8192 ) ( -2048 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -1472 -8192 8192 ) ( -1472 8192 8192 ) ( -1472 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1856 8192 ) ( 8192 1856 8192 ) ( -8192 1856 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1920 8192 ) ( -8192 1920 8192 ) ( -8192 1920 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -2048 8192 8192 ) ( -2048 -8192 8192 ) ( -2048 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -2000 -8192 8192 ) ( -2000 8192 8192 ) ( -2000 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1632 8192 ) ( 8192 1632 8192 ) ( -8192 1632 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1856 8192 ) ( -8192 1856 8192 ) ( -8192 1856 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -8192 1728 8192 ) ( 8192 1728 8192 ) ( -8192 1728 -8192 ) bricks/c_sr_m2c 0 64 180 1.000000 1.000000 1 0 0 +( 8192 1856 8192 ) ( -8192 1856 8192 ) ( -8192 1856 -8192 ) bricks/c_sr_m2c 0 64 180 1.000000 1.000000 1 0 0 +( 8192 -8192 -8 ) ( 8192 8192 -8 ) ( -8192 -8192 -8 ) bricks/c_sr_m2c 0 64 180 1.000000 1.000000 1 0 0 +( 8192 8192 0 ) ( 8192 -8192 0 ) ( -8192 -8192 0 ) bricks/c_sr_m2c -112 64 0 1.000000 1.000000 1 67108864 0 +( 5984 -5600 8192 ) ( -5600 5984 8192 ) ( 5984 -5600 -8192 ) bricks/c_sr_m2c 0 64 180 1.000000 1.000000 1 0 0 +( -5864 5720 8192 ) ( 5720 -5864 8192 ) ( -5864 5720 -8192 ) bricks/c_sr_m2c 0 64 180 1.000000 1.000000 1 0 0 +} +{ +( -2240 8192 8192 ) ( -2240 -8192 8192 ) ( -2240 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -2000 -8192 8192 ) ( -2000 8192 8192 ) ( -2000 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1568 8192 ) ( 8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1632 8192 ) ( -8192 1632 8192 ) ( -8192 1632 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1872 8192 8192 ) ( -1872 -8192 8192 ) ( -1872 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1568 8192 ) ( 8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1632 8192 ) ( -8192 1632 8192 ) ( -8192 1632 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -848 8192 8192 ) ( -848 -8192 8192 ) ( -848 8192 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( -832 -8192 8192 ) ( -832 8192 8192 ) ( -832 8192 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( -8192 352 8192 ) ( 8192 352 8192 ) ( -8192 352 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 480 8192 ) ( -8192 480 8192 ) ( -8192 480 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 -8 ) ( 8192 8192 -8 ) ( -8192 -8192 -8 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 0 ) ( 8192 -8192 0 ) ( -8192 -8192 0 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 16777216 0 +} +{ +( -848 -8192 8192 ) ( -848 8192 8192 ) ( -848 8192 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( -8192 352 8192 ) ( 8192 352 8192 ) ( -8192 352 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 480 8192 ) ( -8192 480 8192 ) ( -8192 480 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 -8 ) ( 8192 8192 -8 ) ( -8192 -8192 -8 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 0 ) ( 8192 -8192 0 ) ( -8192 -8192 0 ) bricks/c_sr_m2c -32 32 180 1.000000 1.000000 1 67108864 0 +( 5008 6576 8192 ) ( -6576 -5008 8192 ) ( -6576 -5008 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( -1760 8192 8192 ) ( -1760 -8192 8192 ) ( -1760 8192 -8192 ) bricks/c_pv_18a -8 -24 0 2.500000 2.500000 1 0 0 +( -1696 -8192 8192 ) ( -1696 8192 8192 ) ( -1696 8192 -8192 ) bricks/c_pv_18a -8 -24 0 2.500000 2.500000 1 0 0 +( -8192 992 8192 ) ( 8192 992 8192 ) ( -8192 992 -8192 ) bricks/c_pv_18a -8 -24 0 2.500000 2.500000 1 0 0 +( 8192 1056 8192 ) ( -8192 1056 8192 ) ( -8192 1056 -8192 ) bricks/c_pv_18a -8 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/c_pv_18a -8 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a -8 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1760 8192 8192 ) ( -1760 -8192 8192 ) ( -1760 8192 -8192 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( -1696 -8192 8192 ) ( -1696 8192 8192 ) ( -1696 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 1504 8192 ) ( 8192 1504 8192 ) ( -8192 1504 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1760 8192 8192 ) ( -1760 -8192 8192 ) ( -1760 8192 -8192 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( -1696 -8192 8192 ) ( -1696 8192 8192 ) ( -1696 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 1248 8192 ) ( 8192 1248 8192 ) ( -8192 1248 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 1312 8192 ) ( -8192 1312 8192 ) ( -8192 1312 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1760 8192 8192 ) ( -1760 -8192 8192 ) ( -1760 8192 -8192 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( -1696 -8192 8192 ) ( -1696 8192 8192 ) ( -1696 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 800 8192 ) ( -8192 800 8192 ) ( -8192 800 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1984 8192 8192 ) ( -1984 -8192 8192 ) ( -1984 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -1760 -8192 8192 ) ( -1760 8192 8192 ) ( -1760 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 800 8192 ) ( -8192 800 8192 ) ( -8192 800 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 512 ) ( 8192 8192 512 ) ( -8192 -8192 512 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1984 8192 8192 ) ( -1984 -8192 8192 ) ( -1984 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -1760 -8192 8192 ) ( -1760 8192 8192 ) ( -1760 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 992 8192 ) ( 8192 992 8192 ) ( -8192 992 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 1056 8192 ) ( -8192 1056 8192 ) ( -8192 1056 -8192 ) bricks/c_pv_18a 104 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 512 ) ( 8192 8192 512 ) ( -8192 -8192 512 ) bricks/c_pv_18a 0 40 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1984 8192 8192 ) ( -1984 -8192 8192 ) ( -1984 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -1760 -8192 8192 ) ( -1760 8192 8192 ) ( -1760 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 1248 8192 ) ( 8192 1248 8192 ) ( -8192 1248 -8192 ) bricks/c_pv_18a 104 -24 0 2.500000 2.500000 1 0 0 +( 8192 1312 8192 ) ( -8192 1312 8192 ) ( -8192 1312 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 512 ) ( 8192 8192 512 ) ( -8192 -8192 512 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1984 8192 8192 ) ( -1984 -8192 8192 ) ( -1984 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -1760 -8192 8192 ) ( -1760 8192 8192 ) ( -1760 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 1504 8192 ) ( 8192 1504 8192 ) ( -8192 1504 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 512 ) ( 8192 8192 512 ) ( -8192 -8192 512 ) bricks/c_pv_18a 0 40 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1536 8192 8192 ) ( -1536 -8192 8192 ) ( -1536 8192 -8192 ) props/box_sr_m6 32 0 0 1.000000 1.000000 1 134217728 0 +( -1472 -8192 8192 ) ( -1472 8192 8192 ) ( -1472 8192 -8192 ) props/box_sr_m6 -32 0 0 1.000000 1.000000 1 134217728 0 +( -8192 1376 8192 ) ( 8192 1376 8192 ) ( -8192 1376 -8192 ) props/box_sr_m6 0 0 0 1.000000 1.000000 1 134217728 0 +( 8192 1504 8192 ) ( -8192 1504 8192 ) ( -8192 1504 -8192 ) props/box_sr_m6 32 0 0 1.000000 1.000000 1 134217728 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) props/box_sr_m6 0 32 0 1.000000 1.000000 1 134217728 0 +( 8192 8192 320 ) ( 8192 -8192 320 ) ( -8192 -8192 320 ) props/box_sr_m5 0 32 0 1.000000 1.000000 1 134217728 0 +} +{ +( -1536 8192 8192 ) ( -1536 -8192 8192 ) ( -1536 8192 -8192 ) props/box_sr_m6 32 0 0 1.000000 1.000000 1 134217728 0 +( -1472 -8192 8192 ) ( -1472 8192 8192 ) ( -1472 8192 -8192 ) props/box_sr_m6 -32 0 0 1.000000 1.000000 1 134217728 0 +( -8192 1440 8192 ) ( 8192 1440 8192 ) ( -8192 1440 -8192 ) props/box_sr_m6 0 0 0 1.000000 1.000000 1 134217728 0 +( 8192 1504 8192 ) ( -8192 1504 8192 ) ( -8192 1504 -8192 ) props/box_sr_m6 32 0 0 1.000000 1.000000 1 134217728 0 +( 8192 -8192 320 ) ( 8192 8192 320 ) ( -8192 -8192 320 ) props/box_sr_m6 32 0 0 1.000000 1.000000 1 134217728 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) props/box_sr_m5 0 32 0 1.000000 1.000000 1 134217728 0 +} +{ +( -1536 8192 8192 ) ( -1536 -8192 8192 ) ( -1536 8192 -8192 ) props/box_sr_m6 32 0 0 1.000000 1.000000 1 134217728 0 +( -1472 -8192 8192 ) ( -1472 8192 8192 ) ( -1472 8192 -8192 ) props/box_sr_m6 -32 0 0 1.000000 1.000000 1 134217728 0 +( -8192 1504 8192 ) ( 8192 1504 8192 ) ( -8192 1504 -8192 ) props/box_sr_m6 32 0 0 1.000000 1.000000 1 134217728 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) props/box_sr_m6 0 0 0 1.000000 1.000000 1 134217728 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) props/box_sr_m6 0 32 0 1.000000 1.000000 1 134217728 0 +( 8192 8192 320 ) ( 8192 -8192 320 ) ( -8192 -8192 320 ) props/box_sr_m5 0 32 0 1.000000 1.000000 1 134217728 0 +} +{ +( -1600 8192 8192 ) ( -1600 -8192 8192 ) ( -1600 8192 -8192 ) props/box_sr_m6 32 0 0 1.000000 1.000000 1 134217728 0 +( -1536 -8192 8192 ) ( -1536 8192 8192 ) ( -1536 8192 -8192 ) props/box_sr_m6 32 0 0 1.000000 1.000000 1 134217728 0 +( -8192 1440 8192 ) ( 8192 1440 8192 ) ( -8192 1440 -8192 ) props/box_sr_m6 0 0 0 1.000000 1.000000 1 134217728 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) props/box_sr_m6 0 0 0 1.000000 1.000000 1 134217728 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) props/box_sr_m6 0 32 0 1.000000 1.000000 1 134217728 0 +( 8192 8192 320 ) ( 8192 -8192 320 ) ( -8192 -8192 320 ) props/box_sr_m5 0 32 0 1.000000 1.000000 1 134217728 0 +} +{ +( -1568 8192 8192 ) ( -1568 -8192 8192 ) ( -1568 8192 -8192 ) props/box_sr_m6 -32 0 0 1.000000 1.000000 1 134217728 0 +( -1504 -8192 8192 ) ( -1504 8192 8192 ) ( -1504 8192 -8192 ) props/box_sr_m6 32 0 0 1.000000 1.000000 1 134217728 0 +( -8192 1504 8192 ) ( 8192 1504 8192 ) ( -8192 1504 -8192 ) props/box_sr_m6 -32 0 0 1.000000 1.000000 1 134217728 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) props/box_sr_m6 -32 0 0 1.000000 1.000000 1 134217728 0 +( 8192 -8192 320 ) ( 8192 8192 320 ) ( -8192 -8192 320 ) props/box_sr_m6 -32 32 0 1.000000 1.000000 1 134217728 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) props/box_sr_m5 -32 32 0 1.000000 1.000000 1 134217728 0 +} +{ +( -1664 8192 8192 ) ( -1664 -8192 8192 ) ( -1664 8192 -8192 ) props/box_sr_m6 -32 0 0 1.000000 1.000000 1 134217728 0 +( -1600 -8192 8192 ) ( -1600 8192 8192 ) ( -1600 8192 -8192 ) props/box_sr_m6 0 0 0 1.000000 1.000000 1 134217728 0 +( -8192 1504 8192 ) ( 8192 1504 8192 ) ( -8192 1504 -8192 ) props/box_sr_m6 0 0 0 1.000000 1.000000 1 134217728 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) props/box_sr_m6 0 0 0 1.000000 1.000000 1 134217728 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) props/box_sr_m6 0 32 0 1.000000 1.000000 1 134217728 0 +( 8192 8192 320 ) ( 8192 -8192 320 ) ( -8192 -8192 320 ) props/box_sr_m5 0 32 0 1.000000 1.000000 1 134217728 0 +} +{ +( -1656 8192 8192 ) ( -1656 -8192 8192 ) ( -1656 8192 -8192 ) props/box_sr_m5 -10 22 0 0.750000 0.750000 1 134217728 0 +( -1608 -8192 8192 ) ( -1608 8192 8192 ) ( -1608 8192 -8192 ) props/box_sr_m5 -10 22 0 0.750000 0.750000 1 134217728 0 +( -8192 968 8192 ) ( 8192 968 8192 ) ( -8192 968 -8192 ) props/box_sr_m6 -8 0 0 1.000000 1.000000 1 134217728 0 +( 8192 1016 8192 ) ( -8192 1016 8192 ) ( -8192 1016 -8192 ) props/box_sr_m5 -32 22 0 0.750000 0.750000 1 134217728 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) props/box_sr_m6 -8 8 0 1.000000 1.000000 1 134217728 0 +( 8192 8192 304 ) ( 8192 -8192 304 ) ( -8192 -8192 304 ) props/box_sr_m5 -32 10 0 0.750000 0.750000 1 134217728 0 +} +{ +( -1664 8192 8192 ) ( -1664 -8192 8192 ) ( -1664 8192 -8192 ) props/box_sr_m6 -8 0 0 1.000000 1.000000 1 134217728 0 +( -1600 -8192 8192 ) ( -1600 8192 8192 ) ( -1600 8192 -8192 ) props/box_sr_m6 -8 0 0 1.000000 1.000000 1 134217728 0 +( -8192 904 8192 ) ( 8192 904 8192 ) ( -8192 904 -8192 ) props/box_sr_m6 0 0 0 1.000000 1.000000 1 134217728 0 +( 8192 968 8192 ) ( -8192 968 8192 ) ( -8192 968 -8192 ) props/box_sr_m6 0 0 0 1.000000 1.000000 1 134217728 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) props/box_sr_m6 0 8 0 1.000000 1.000000 1 134217728 0 +( 8192 8192 320 ) ( 8192 -8192 320 ) ( -8192 -8192 320 ) props/box_sr_m5 0 8 0 1.000000 1.000000 1 134217728 0 +} +{ +( -1472 8192 8192 ) ( -1472 -8192 8192 ) ( -1472 8192 -8192 ) props/box_sr_m6 32 0 0 1.000000 1.000000 1 134217728 0 +( -1408 -8192 8192 ) ( -1408 8192 8192 ) ( -1408 8192 -8192 ) props/box_sr_m6 32 0 0 1.000000 1.000000 1 134217728 0 +( -8192 800 8192 ) ( 8192 800 8192 ) ( -8192 800 -8192 ) props/box_sr_m6 0 0 0 1.000000 1.000000 1 134217728 0 +( 8192 928 8192 ) ( -8192 928 8192 ) ( -8192 928 -8192 ) props/box_sr_m6 0 0 0 1.000000 1.000000 1 134217728 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) props/box_sr_m6 0 -32 0 1.000000 1.000000 1 134217728 0 +( 8192 8192 320 ) ( 8192 -8192 320 ) ( -8192 -8192 320 ) props/box_sr_m5 0 -32 0 1.000000 1.000000 1 134217728 0 +} +{ +( -1536 8192 8192 ) ( -1536 -8192 8192 ) ( -1536 8192 -8192 ) props/box_sr_m6 32 0 0 1.000000 1.000000 1 134217728 0 +( -1472 -8192 8192 ) ( -1472 8192 8192 ) ( -1472 8192 -8192 ) props/box_sr_m6 32 0 0 1.000000 1.000000 1 134217728 0 +( -8192 800 8192 ) ( 8192 800 8192 ) ( -8192 800 -8192 ) props/box_sr_m6 0 0 0 1.000000 1.000000 1 134217728 0 +( 8192 864 8192 ) ( -8192 864 8192 ) ( -8192 864 -8192 ) props/box_sr_m6 0 0 0 1.000000 1.000000 1 134217728 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) props/box_sr_m6 0 -32 0 1.000000 1.000000 1 134217728 0 +( 8192 8192 320 ) ( 8192 -8192 320 ) ( -8192 -8192 320 ) props/box_sr_m5 0 -32 0 1.000000 1.000000 1 134217728 0 +} +{ +( 8192 -8192 320 ) ( 8192 8192 320 ) ( -8192 -8192 320 ) props/box_sr_m6 -13 -59 321 1.000000 0.999903 1 134217728 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) props/box_sr_m5 -8 -31 321 1.000000 1.000000 1 134217728 0 +( 4031 7333 8192 ) ( -6630 -5106 8192 ) ( -6630 -5106 -8192 ) props/box_sr_m6 35 0 0 0.770000 1.000000 1 134217728 0 +( 5945 -5645 8190 ) ( -6384 5143 8190 ) ( -6321 5215 -8193 ) props/box_sr_m6 -2 0 0 0.770000 1.000000 1 134217728 0 +( -6437 5077 8192 ) ( 6002 -5585 8192 ) ( 6002 -5585 -8192 ) props/box_sr_m6 50 0 0 0.770000 1.000000 1 134217728 0 +( -6581 -5148 8192 ) ( 4080 7291 8192 ) ( 4080 7291 -8192 ) props/box_sr_m6 25 0 0 0.770000 1.000000 1 134217728 0 +} +{ +( -1664 8192 8192 ) ( -1664 -8192 8192 ) ( -1664 8192 -8192 ) props/box_sr_m6 -8 0 0 1.000000 1.000000 1 134217728 0 +( -1600 -8192 8192 ) ( -1600 8192 8192 ) ( -1600 8192 -8192 ) props/box_sr_m6 -8 0 0 1.000000 1.000000 1 134217728 0 +( -8192 840 8192 ) ( 8192 840 8192 ) ( -8192 840 -8192 ) props/box_sr_m6 0 0 0 1.000000 1.000000 1 134217728 0 +( 8192 904 8192 ) ( -8192 904 8192 ) ( -8192 904 -8192 ) props/box_sr_m6 0 0 0 1.000000 1.000000 1 134217728 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) props/box_sr_m6 0 8 0 1.000000 1.000000 1 134217728 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) props/box_sr_m5 0 8 0 1.000000 1.000000 1 134217728 0 +} +{ +( -1728 8192 8192 ) ( -1728 -8192 8192 ) ( -1728 8192 -8192 ) props/box_sr_m6 -32 0 0 1.000000 1.000000 1 134217728 0 +( -1664 -8192 8192 ) ( -1664 8192 8192 ) ( -1664 8192 -8192 ) props/box_sr_m6 -32 0 0 1.000000 1.000000 1 134217728 0 +( -8192 864 8192 ) ( 8192 864 8192 ) ( -8192 864 -8192 ) props/box_sr_m6 0 0 0 1.000000 1.000000 1 134217728 0 +( 8192 992 8192 ) ( -8192 992 8192 ) ( -8192 992 -8192 ) props/box_sr_m6 0 0 0 1.000000 1.000000 1 134217728 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) props/box_sr_m6 0 32 0 1.000000 1.000000 1 134217728 0 +( 8192 8192 320 ) ( 8192 -8192 320 ) ( -8192 -8192 320 ) props/box_sr_m5 0 32 0 1.000000 1.000000 1 134217728 0 +} +{ +( -1400 8192 8192 ) ( -1400 -8192 8192 ) ( -1400 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -1336 -8192 8192 ) ( -1336 8192 8192 ) ( -1336 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 992 8192 ) ( 8192 992 8192 ) ( -8192 992 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 1056 8192 ) ( -8192 1056 8192 ) ( -8192 1056 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1408 8192 8192 ) ( -1408 -8192 8192 ) ( -1408 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 1504 8192 ) ( 8192 1504 8192 ) ( -8192 1504 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 32 ) ( 8192 8192 32 ) ( -8192 -8192 32 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1408 8192 8192 ) ( -1408 -8192 8192 ) ( -1408 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 1248 8192 ) ( 8192 1248 8192 ) ( -8192 1248 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 1312 8192 ) ( -8192 1312 8192 ) ( -8192 1312 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 32 ) ( 8192 8192 32 ) ( -8192 -8192 32 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1288 8192 8192 ) ( -1288 -8192 8192 ) ( -1288 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -1272 -8192 8192 ) ( -1272 8192 8192 ) ( -1272 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1144 8192 ) ( 8192 1144 8192 ) ( -8192 1144 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1160 8192 ) ( -8192 1160 8192 ) ( -8192 1160 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) common/li_sr_m19 8 8 0 1.000000 1.000000 1 1 15000 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1288 8192 8192 ) ( -1288 -8192 8192 ) ( -1288 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -1272 -8192 8192 ) ( -1272 8192 8192 ) ( -1272 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1088 8192 ) ( 8192 1088 8192 ) ( -8192 1088 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1144 8192 ) ( -8192 1144 8192 ) ( -8192 1144 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -1288 8192 8192 ) ( -1288 -8192 8192 ) ( -1288 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -1272 -8192 8192 ) ( -1272 8192 8192 ) ( -1272 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1160 8192 ) ( 8192 1160 8192 ) ( -8192 1160 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1216 8192 ) ( -8192 1216 8192 ) ( -8192 1216 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -1272 8192 8192 ) ( -1272 -8192 8192 ) ( -1272 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -1088 -8192 8192 ) ( -1088 8192 8192 ) ( -1088 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1088 8192 ) ( 8192 1088 8192 ) ( -8192 1088 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1216 8192 ) ( -8192 1216 8192 ) ( -8192 1216 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -1328 8192 8192 ) ( -1328 -8192 8192 ) ( -1328 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -1288 -8192 8192 ) ( -1288 8192 8192 ) ( -1288 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1088 8192 ) ( 8192 1088 8192 ) ( -8192 1088 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1216 8192 ) ( -8192 1216 8192 ) ( -8192 1216 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1024 8192 ) ( 8192 1024 8192 ) ( -8192 1024 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1088 8192 ) ( -8192 1088 8192 ) ( -8192 1088 -8192 ) bricks/b_mf_v2a 64 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1216 8192 ) ( 8192 1216 8192 ) ( -8192 1216 -8192 ) bricks/b_mf_v2a 64 0 0 1.000000 1.000000 1 0 0 +( 8192 1280 8192 ) ( -8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1024 8192 ) ( -8192 1024 8192 ) ( -8192 1024 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1280 8192 ) ( 8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1280 8192 8192 ) ( -1280 -8192 8192 ) ( -1280 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -1120 -8192 8192 ) ( -1120 8192 8192 ) ( -1120 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1216 8192 ) ( 8192 1216 8192 ) ( -8192 1216 -8192 ) bricks/b_mf_v2a 64 0 0 1.000000 1.000000 1 0 0 +( 8192 1280 8192 ) ( -8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 8390656 0 +( -1328 -8192 8192 ) ( -1328 8192 8192 ) ( -1328 8192 -8192 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 8390656 0 +( -8192 1088 8192 ) ( 8192 1088 8192 ) ( -8192 1088 -8192 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 1216 8192 ) ( -8192 1216 8192 ) ( -8192 1216 -8192 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 -8192 240 ) ( 8192 8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 8390656 0 +} +{ +( -1328 8192 8192 ) ( -1328 -8192 8192 ) ( -1328 8192 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( -8192 1088 8192 ) ( 8192 1088 8192 ) ( -8192 1088 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 1216 8192 ) ( -8192 1216 8192 ) ( -8192 1216 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 -8192 240 ) ( 8192 8192 240 ) ( -8192 -8192 240 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) bricks/c_sr_m2c -9 -192 0 -1.000000 1.000000 1 67108864 0 +( 5856 -5728 8192 ) ( -5728 5856 8192 ) ( 5856 -5728 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +} +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +( -1328 -8192 8192 ) ( -1328 8192 8192 ) ( -1328 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1088 8192 ) ( 8192 1088 8192 ) ( -8192 1088 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1216 8192 ) ( -8192 1216 8192 ) ( -8192 1216 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -2592 8192 8192 ) ( -2592 -8192 8192 ) ( -2592 8192 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( -2560 -8192 8192 ) ( -2560 8192 8192 ) ( -2560 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -8192 672 8192 ) ( 8192 672 8192 ) ( -8192 672 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( 8192 1632 8192 ) ( -8192 1632 8192 ) ( -8192 1632 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( 8192 -8192 192 ) ( 8192 8192 192 ) ( -8192 -8192 192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( -2560 8192 8192 ) ( -2560 -8192 8192 ) ( -2560 8192 -8192 ) common/li_sr_v17 32 0 0 1.000000 1.000000 1 132 0 +( -2240 -8192 8192 ) ( -2240 8192 8192 ) ( -2240 8192 -8192 ) common/li_sr_v17 32 0 0 1.000000 1.000000 1 132 0 +( -8192 672 8192 ) ( 8192 672 8192 ) ( -8192 672 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( 8192 704 8192 ) ( -8192 704 8192 ) ( -8192 704 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 -8192 192 ) ( 8192 8192 192 ) ( -8192 -8192 192 ) common/li_sr_v17 0 -32 0 1.000000 1.000000 1 132 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) common/li_sr_v17 0 -32 0 1.000000 1.000000 1 132 0 +} +{ +( -2560 8192 8192 ) ( -2560 -8192 8192 ) ( -2560 8192 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( -2240 -8192 8192 ) ( -2240 8192 8192 ) ( -2240 8192 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( -8192 1600 8192 ) ( 8192 1600 8192 ) ( -8192 1600 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 1632 8192 ) ( -8192 1632 8192 ) ( -8192 1632 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( 8192 -8192 192 ) ( 8192 8192 192 ) ( -8192 -8192 192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( -2560 8192 8192 ) ( -2560 -8192 8192 ) ( -2560 8192 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( -2240 -8192 8192 ) ( -2240 8192 8192 ) ( -2240 8192 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( -8192 672 8192 ) ( 8192 672 8192 ) ( -8192 672 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( 8192 1632 8192 ) ( -8192 1632 8192 ) ( -8192 1632 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( 8192 -8192 512 ) ( 8192 8192 512 ) ( -8192 -8192 512 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( -2560 8192 8192 ) ( -2560 -8192 8192 ) ( -2560 8192 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( -2240 -8192 8192 ) ( -2240 8192 8192 ) ( -2240 8192 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( -8192 672 8192 ) ( 8192 672 8192 ) ( -8192 672 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( 8192 1632 8192 ) ( -8192 1632 8192 ) ( -8192 1632 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +} +{ +( -1504 8192 8192 ) ( -1504 -8192 8192 ) ( -1504 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) wood/wd_st_m7s 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1216 8192 ) ( 8192 1216 8192 ) ( -8192 1216 -8192 ) wood/wd_st_m7s 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1344 8192 ) ( -8192 1344 8192 ) ( -8192 1344 -8192 ) wood/wd_st_m7s 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 192 ) ( 8192 8192 192 ) ( -8192 -8192 192 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) wood/wd_st_m7s 0 0 0 1.000000 1.000000 1 134217728 0 +} +{ +( -1792 8192 8192 ) ( -1792 -8192 8192 ) ( -1792 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( -1632 -8192 8192 ) ( -1632 8192 8192 ) ( -1632 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1216 8192 ) ( 8192 1216 8192 ) ( -8192 1216 -8192 ) wood/wd_st_m7s 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1344 8192 ) ( -8192 1344 8192 ) ( -8192 1344 -8192 ) wood/wd_st_m7s 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 192 ) ( 8192 8192 192 ) ( -8192 -8192 192 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) wood/wd_st_m7s 0 0 0 1.000000 1.000000 1 134217728 0 +} +{ +( -1792 8192 8192 ) ( -1792 -8192 8192 ) ( -1792 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) wood/wd_st_m7s 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1344 8192 ) ( 8192 1344 8192 ) ( -8192 1344 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) wood/wd_st_m7s 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 192 ) ( 8192 8192 192 ) ( -8192 -8192 192 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) wood/wd_st_m7s 0 0 0 1.000000 1.000000 1 134217728 0 +} +{ +( -1792 8192 8192 ) ( -1792 -8192 8192 ) ( -1792 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) wood/wd_st_m7s 0 0 0 1.000000 1.000000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) wood/wd_st_m7s 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1216 8192 ) ( -8192 1216 8192 ) ( -8192 1216 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 192 ) ( 8192 8192 192 ) ( -8192 -8192 192 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) wood/wd_st_m7s 0 0 0 1.000000 1.000000 1 134217728 0 +} +{ +( -2176 8192 8192 ) ( -2176 -8192 8192 ) ( -2176 8192 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( -2112 -8192 8192 ) ( -2112 8192 8192 ) ( -2112 8192 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 -8 ) ( 8192 8192 -8 ) ( -8192 -8192 -8 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 0 ) ( 8192 -8192 0 ) ( -8192 -8192 0 ) bricks/c_sr_m9c 0 -64 270 1.000000 1.000000 1 67108864 0 +( -7248 -4336 8192 ) ( 4336 7248 8192 ) ( 4336 7248 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( -2112 8192 8192 ) ( -2112 -8192 8192 ) ( -2112 8192 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( -8192 800 8192 ) ( 8192 800 8192 ) ( -8192 800 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 -8 ) ( 8192 8192 -8 ) ( -8192 -8192 -8 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 0 ) ( 8192 -8192 0 ) ( -8192 -8192 0 ) wood/wd_st_m7s 0 0 0 1.000000 1.000000 1 134217728 0 +} +{ +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 800 8192 ) ( -8192 800 8192 ) ( -8192 800 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 -8 ) ( 8192 8192 -8 ) ( -8192 -8192 -8 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 0 ) ( 8192 -8192 0 ) ( -8192 -8192 0 ) bricks/c_sr_m9c 0 -32 0 1.000000 1.000000 1 67108864 0 +( 4336 7248 8192 ) ( -7248 -4336 8192 ) ( 4336 7248 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( -1328 8192 8192 ) ( -1328 -8192 8192 ) ( -1328 8192 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( -8192 832 8192 ) ( 8192 832 8192 ) ( -8192 832 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 960 8192 ) ( -8192 960 8192 ) ( -8192 960 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 -8 ) ( 8192 8192 -8 ) ( -8192 -8192 -8 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 0 ) ( 8192 -8192 0 ) ( -8192 -8192 0 ) bricks/c_sr_m2c 0 64 180 1.000000 1.000000 1 67108864 0 +( -6816 -4768 8192 ) ( 4768 6816 8192 ) ( 4768 6816 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( -1328 -8192 8192 ) ( -1328 8192 8192 ) ( -1328 8192 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( -8192 832 8192 ) ( 8192 832 8192 ) ( -8192 832 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 960 8192 ) ( -8192 960 8192 ) ( -8192 960 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 -8 ) ( 8192 8192 -8 ) ( -8192 -8192 -8 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 0 ) ( 8192 -8192 0 ) ( -8192 -8192 0 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 1 16777216 0 +} +{ +( -1696 8192 8192 ) ( -1696 -8192 8192 ) ( -1696 8192 -8192 ) metals/mt_pv_m16l 0 0 90 1.000000 1.000000 1 0 0 +( -1400 -8192 8192 ) ( -1400 8192 8192 ) ( -1400 8192 -8192 ) metals/mt_pv_m16l 0 0 90 1.000000 1.000000 1 0 0 +( -8192 1008 8192 ) ( 8192 1008 8192 ) ( -8192 1008 -8192 ) metals/mt_pv_m16l 0 0 90 1.000000 1.000000 1 0 0 +( 8192 1040 8192 ) ( -8192 1040 8192 ) ( -8192 1040 -8192 ) metals/mt_pv_m16l 0 0 90 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) metals/mt_pv_m16l 0 0 90 1.000000 1.000000 1 0 0 +( 8192 8192 16 ) ( 8192 -8192 16 ) ( -8192 -8192 16 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1744 8192 8192 ) ( -1744 -8192 8192 ) ( -1744 8192 -8192 ) metals/mt_pv_m16l 0 0 90 1.000000 1.000000 1 0 0 +( -1712 -8192 8192 ) ( -1712 8192 8192 ) ( -1712 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1056 8192 ) ( 8192 1056 8192 ) ( -8192 1056 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1248 8192 ) ( -8192 1248 8192 ) ( -8192 1248 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 16 ) ( 8192 -8192 16 ) ( -8192 -8192 16 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -1744 8192 8192 ) ( -1744 -8192 8192 ) ( -1744 8192 -8192 ) metals/mt_pv_m16l 0 0 90 1.000000 1.000000 1 0 0 +( -1712 -8192 8192 ) ( -1712 8192 8192 ) ( -1712 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1312 8192 ) ( 8192 1312 8192 ) ( -8192 1312 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1504 8192 ) ( -8192 1504 8192 ) ( -8192 1504 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 16 ) ( 8192 -8192 16 ) ( -8192 -8192 16 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1712 8192 8192 ) ( -1712 -8192 8192 ) ( -1712 8192 -8192 ) metals/mt_pv_m16l 0 0 90 1.000000 1.000000 1 0 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1040 8192 ) ( 8192 1040 8192 ) ( -8192 1040 -8192 ) metals/mt_pv_m16l 0 0 90 1.000000 1.000000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 32 ) ( 8192 -8192 32 ) ( -8192 -8192 32 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -1760 8192 8192 ) ( -1760 -8192 8192 ) ( -1760 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -1696 -8192 8192 ) ( -1696 8192 8192 ) ( -1696 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 800 8192 ) ( -8192 800 8192 ) ( -8192 800 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1760 8192 8192 ) ( -1760 -8192 8192 ) ( -1760 8192 -8192 ) bricks/c_pv_18a 16 -128 0 2.500000 2.500000 1 0 0 +( -1696 -8192 8192 ) ( -1696 8192 8192 ) ( -1696 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 992 8192 ) ( 8192 992 8192 ) ( -8192 992 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 1056 8192 ) ( -8192 1056 8192 ) ( -8192 1056 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1760 8192 8192 ) ( -1760 -8192 8192 ) ( -1760 8192 -8192 ) bricks/c_pv_18a 16 -128 0 2.500000 2.500000 1 0 0 +( -1696 -8192 8192 ) ( -1696 8192 8192 ) ( -1696 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 1248 8192 ) ( 8192 1248 8192 ) ( -8192 1248 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 1312 8192 ) ( -8192 1312 8192 ) ( -8192 1312 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1760 8192 8192 ) ( -1760 -8192 8192 ) ( -1760 8192 -8192 ) bricks/c_pv_18a 16 -128 0 2.500000 2.500000 1 0 0 +( -1696 -8192 8192 ) ( -1696 8192 8192 ) ( -1696 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 1504 8192 ) ( 8192 1504 8192 ) ( -8192 1504 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1408 8192 8192 ) ( -1408 -8192 8192 ) ( -1408 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 800 8192 ) ( -8192 800 8192 ) ( -8192 800 -8192 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 192 ) ( 8192 8192 192 ) ( -8192 -8192 192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1408 8192 8192 ) ( -1408 -8192 8192 ) ( -1408 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 800 8192 ) ( -8192 800 8192 ) ( -8192 800 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1408 8192 8192 ) ( -1408 -8192 8192 ) ( -1408 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 800 8192 ) ( -8192 800 8192 ) ( -8192 800 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1400 8192 8192 ) ( -1400 -8192 8192 ) ( -1400 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -1336 -8192 8192 ) ( -1336 8192 8192 ) ( -1336 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 992 8192 ) ( 8192 992 8192 ) ( -8192 992 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 1056 8192 ) ( -8192 1056 8192 ) ( -8192 1056 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1408 8192 8192 ) ( -1408 -8192 8192 ) ( -1408 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 992 8192 ) ( 8192 992 8192 ) ( -8192 992 -8192 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( 8192 1056 8192 ) ( -8192 1056 8192 ) ( -8192 1056 -8192 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 192 ) ( 8192 8192 192 ) ( -8192 -8192 192 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1408 8192 8192 ) ( -1408 -8192 8192 ) ( -1408 8192 -8192 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 1248 8192 ) ( 8192 1248 8192 ) ( -8192 1248 -8192 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( 8192 1312 8192 ) ( -8192 1312 8192 ) ( -8192 1312 -8192 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 192 ) ( 8192 8192 192 ) ( -8192 -8192 192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1408 8192 8192 ) ( -1408 -8192 8192 ) ( -1408 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 1248 8192 ) ( 8192 1248 8192 ) ( -8192 1248 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 1312 8192 ) ( -8192 1312 8192 ) ( -8192 1312 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1408 8192 8192 ) ( -1408 -8192 8192 ) ( -1408 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 1504 8192 ) ( 8192 1504 8192 ) ( -8192 1504 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1408 8192 8192 ) ( -1408 -8192 8192 ) ( -1408 8192 -8192 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( -1344 -8192 8192 ) ( -1344 8192 8192 ) ( -1344 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 1504 8192 ) ( 8192 1504 8192 ) ( -8192 1504 -8192 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 192 ) ( 8192 8192 192 ) ( -8192 -8192 192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -2240 8192 8192 ) ( -2240 -8192 8192 ) ( -2240 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -2176 -8192 8192 ) ( -2176 8192 8192 ) ( -2176 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -2240 3318 1892 ) ( -2240 -1723 1892 ) ( -2240 3318 -1692 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -2176 -1723 1892 ) ( -2176 3318 1892 ) ( -2176 3318 -1692 ) props2/blanco_sign2 0 0 0 1.000000 1.000000 +( -8192 1024 1892 ) ( 8192 1024 1892 ) ( -8192 1024 -1692 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1280 1892 ) ( -8192 1280 1892 ) ( -8192 1280 -1692 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -1723 100 ) ( 8192 3318 100 ) ( -8192 -1723 100 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 3318 128 ) ( 8192 -1723 128 ) ( -8192 -1723 128 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -2240 8192 8192 ) ( -2240 -8192 8192 ) ( -2240 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -2176 -8192 8192 ) ( -2176 8192 8192 ) ( -2176 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1472 8192 ) ( 8192 1472 8192 ) ( -8192 1472 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -2240 8192 8192 ) ( -2240 -8192 8192 ) ( -2240 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -2176 -8192 8192 ) ( -2176 8192 8192 ) ( -2176 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 192 ) ( 8192 8192 192 ) ( -8192 -8192 192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 0 0 90 1.000000 1.000000 1 0 0 +} +{ +( -2240 8192 8192 ) ( -2240 -8192 8192 ) ( -2240 8192 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 0 0 +( -2176 -8192 8192 ) ( -2176 8192 8192 ) ( -2176 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 512 ) ( 8192 8192 512 ) ( -8192 -8192 512 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -2240 8192 8192 ) ( -2240 -8192 8192 ) ( -2240 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -2176 -8192 8192 ) ( -2176 8192 8192 ) ( -2176 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 832 8192 ) ( -8192 832 8192 ) ( -8192 832 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -2112 8192 8192 ) ( -2112 -8192 8192 ) ( -2112 8192 -8192 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( -2080 -8192 8192 ) ( -2080 8192 8192 ) ( -2080 8192 -8192 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( -8192 1504 8192 ) ( 8192 1504 8192 ) ( -8192 1504 -8192 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( 3622 -8192 7592 ) ( 3622 8192 7592 ) ( -6612 8192 -5201 ) bricks/c_pv_18a 0 40 0 2.500000 2.500000 1 0 0 +} +{ +( -2080 8192 8192 ) ( -2080 -8192 8192 ) ( -2080 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -2048 -8192 8192 ) ( -2048 8192 8192 ) ( -2048 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 1504 8192 ) ( 8192 1504 8192 ) ( -8192 1504 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 5582 -8192 6210 ) ( 5582 8192 6210 ) ( -7525 8192 -3619 ) bricks/c_pv_18a 0 40 0 2.500000 2.500000 1 0 0 +} +{ +( -2048 8192 8192 ) ( -2048 -8192 8192 ) ( -2048 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -2016 -8192 8192 ) ( -2016 8192 8192 ) ( -2016 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 1504 8192 ) ( 8192 1504 8192 ) ( -8192 1504 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 6722 -8191 4873 ) ( 6722 8191 4873 ) ( -7931 8191 -2453 ) bricks/c_pv_18a 0 40 0 2.500000 2.500000 1 0 0 +} +{ +( -2016 8192 8192 ) ( -2016 -8192 8192 ) ( -2016 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -1984 -8192 8192 ) ( -1984 8192 8192 ) ( -1984 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 1504 8192 ) ( 8192 1504 8192 ) ( -8192 1504 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 7710 -8191 2935 ) ( 7710 8191 2935 ) ( -8184 8191 -1038 ) bricks/c_pv_18a 0 40 0 2.500000 2.500000 1 0 0 +} +{ +( -2176 8192 8192 ) ( -2176 -8192 8192 ) ( -2176 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -2112 -8192 8192 ) ( -2112 8192 8192 ) ( -2112 8192 -8192 ) bricks/c_pv_18a 8 -24 0 2.500000 2.500000 1 0 0 +( -8192 1504 8192 ) ( 8192 1504 8192 ) ( -8192 1504 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -2176 8192 8192 ) ( -2176 -8192 8192 ) ( -2176 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -2112 -8192 8192 ) ( -2112 8192 8192 ) ( -2112 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 800 8192 ) ( -8192 800 8192 ) ( -8192 800 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -2016 8192 8192 ) ( -2016 -8192 8192 ) ( -2016 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -1984 -8192 8192 ) ( -1984 8192 8192 ) ( -1984 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 800 8192 ) ( -8192 800 8192 ) ( -8192 800 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 7710 -8191 2935 ) ( 7710 8191 2935 ) ( -8184 8191 -1038 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -2048 8192 8192 ) ( -2048 -8192 8192 ) ( -2048 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -2016 -8192 8192 ) ( -2016 8192 8192 ) ( -2016 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 800 8192 ) ( -8192 800 8192 ) ( -8192 800 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 6722 -8191 4873 ) ( 6722 8191 4873 ) ( -7931 8191 -2453 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -2080 8192 8192 ) ( -2080 -8192 8192 ) ( -2080 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -2048 -8192 8192 ) ( -2048 8192 8192 ) ( -2048 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 800 8192 ) ( -8192 800 8192 ) ( -8192 800 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 5582 -8192 6210 ) ( 5582 8192 6210 ) ( -7525 8192 -3619 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -2112 8192 8192 ) ( -2112 -8192 8192 ) ( -2112 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -2080 -8192 8192 ) ( -2080 8192 8192 ) ( -2080 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 800 8192 ) ( -8192 800 8192 ) ( -8192 800 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 3622 -8192 7592 ) ( 3622 8192 7592 ) ( -6612 8192 -5201 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -2176 8192 8192 ) ( -2176 -8192 8192 ) ( -2176 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -2112 -8192 8192 ) ( -2112 8192 8192 ) ( -2112 8192 -8192 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( -8192 1248 8192 ) ( 8192 1248 8192 ) ( -8192 1248 -8192 ) bricks/c_pv_18a 104 -24 0 2.500000 2.500000 1 0 0 +( 8192 1312 8192 ) ( -8192 1312 8192 ) ( -8192 1312 -8192 ) bricks/c_pv_18a 8 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -2016 8192 8192 ) ( -2016 -8192 8192 ) ( -2016 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -1984 -8192 8192 ) ( -1984 8192 8192 ) ( -1984 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 1248 8192 ) ( 8192 1248 8192 ) ( -8192 1248 -8192 ) bricks/c_pv_18a 104 -24 0 2.500000 2.500000 1 0 0 +( 8192 1312 8192 ) ( -8192 1312 8192 ) ( -8192 1312 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 7710 -8191 2935 ) ( 7710 8191 2935 ) ( -8184 8191 -1038 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -2048 8192 8192 ) ( -2048 -8192 8192 ) ( -2048 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -2016 -8192 8192 ) ( -2016 8192 8192 ) ( -2016 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 1248 8192 ) ( 8192 1248 8192 ) ( -8192 1248 -8192 ) bricks/c_pv_18a 104 -24 0 2.500000 2.500000 1 0 0 +( 8192 1312 8192 ) ( -8192 1312 8192 ) ( -8192 1312 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 6722 -8191 4873 ) ( 6722 8191 4873 ) ( -7931 8191 -2453 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -2080 8192 8192 ) ( -2080 -8192 8192 ) ( -2080 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -2048 -8192 8192 ) ( -2048 8192 8192 ) ( -2048 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 1248 8192 ) ( 8192 1248 8192 ) ( -8192 1248 -8192 ) bricks/c_pv_18a 104 -24 0 2.500000 2.500000 1 0 0 +( 8192 1312 8192 ) ( -8192 1312 8192 ) ( -8192 1312 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 5582 -8192 6210 ) ( 5582 8192 6210 ) ( -7525 8192 -3619 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -2112 8192 8192 ) ( -2112 -8192 8192 ) ( -2112 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -2080 -8192 8192 ) ( -2080 8192 8192 ) ( -2080 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 1248 8192 ) ( 8192 1248 8192 ) ( -8192 1248 -8192 ) bricks/c_pv_18a 104 -24 0 2.500000 2.500000 1 0 0 +( 8192 1312 8192 ) ( -8192 1312 8192 ) ( -8192 1312 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 3622 -8192 7592 ) ( 3622 8192 7592 ) ( -6612 8192 -5201 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -2112 8192 8192 ) ( -2112 -8192 8192 ) ( -2112 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -2080 -8192 8192 ) ( -2080 8192 8192 ) ( -2080 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 992 8192 ) ( 8192 992 8192 ) ( -8192 992 -8192 ) bricks/c_pv_18a 104 -24 0 2.500000 2.500000 1 0 0 +( 8192 1056 8192 ) ( -8192 1056 8192 ) ( -8192 1056 -8192 ) bricks/c_pv_18a 104 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 3622 -8192 7592 ) ( 3622 8192 7592 ) ( -6612 8192 -5201 ) bricks/c_pv_18a 0 40 0 2.500000 2.500000 1 0 0 +} +{ +( -2080 8192 8192 ) ( -2080 -8192 8192 ) ( -2080 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -2048 -8192 8192 ) ( -2048 8192 8192 ) ( -2048 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 992 8192 ) ( 8192 992 8192 ) ( -8192 992 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 1056 8192 ) ( -8192 1056 8192 ) ( -8192 1056 -8192 ) bricks/c_pv_18a 104 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 5582 -8192 6210 ) ( 5582 8192 6210 ) ( -7525 8192 -3619 ) bricks/c_pv_18a 0 40 0 2.500000 2.500000 1 0 0 +} +{ +( -2048 8192 8192 ) ( -2048 -8192 8192 ) ( -2048 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -2016 -8192 8192 ) ( -2016 8192 8192 ) ( -2016 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 992 8192 ) ( 8192 992 8192 ) ( -8192 992 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 1056 8192 ) ( -8192 1056 8192 ) ( -8192 1056 -8192 ) bricks/c_pv_18a 104 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 6722 -8191 4873 ) ( 6722 8191 4873 ) ( -7931 8191 -2453 ) bricks/c_pv_18a 0 40 0 2.500000 2.500000 1 0 0 +} +{ +( -2016 8192 8192 ) ( -2016 -8192 8192 ) ( -2016 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -1984 -8192 8192 ) ( -1984 8192 8192 ) ( -1984 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8192 992 8192 ) ( 8192 992 8192 ) ( -8192 992 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 1056 8192 ) ( -8192 1056 8192 ) ( -8192 1056 -8192 ) bricks/c_pv_18a 104 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 7710 -8191 2935 ) ( 7710 8191 2935 ) ( -8184 8191 -1038 ) bricks/c_pv_18a 0 40 0 2.500000 2.500000 1 0 0 +} +{ +( -2176 8192 8192 ) ( -2176 -8192 8192 ) ( -2176 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -2112 -8192 8192 ) ( -2112 8192 8192 ) ( -2112 8192 -8192 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( -8192 992 8192 ) ( 8192 992 8192 ) ( -8192 992 -8192 ) bricks/c_pv_18a 104 -24 0 2.500000 2.500000 1 0 0 +( 8192 1056 8192 ) ( -8192 1056 8192 ) ( -8192 1056 -8192 ) bricks/c_pv_18a 104 -24 0 2.500000 2.500000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -2240 8192 8192 ) ( -2240 -8192 8192 ) ( -2240 8192 -8192 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( -8192 1568 8192 ) ( 8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1632 8192 ) ( -8192 1632 8192 ) ( -8192 1632 -8192 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( -2240 8192 8192 ) ( -2240 -8192 8192 ) ( -2240 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1568 8192 ) ( 8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1632 8192 ) ( -8192 1632 8192 ) ( -8192 1632 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 192 ) ( 8192 8192 192 ) ( -8192 -8192 192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -2240 8192 8192 ) ( -2240 -8192 8192 ) ( -2240 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 672 8192 ) ( 8192 672 8192 ) ( -8192 672 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 736 8192 ) ( -8192 736 8192 ) ( -8192 736 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -2240 8192 8192 ) ( -2240 -8192 8192 ) ( -2240 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 672 8192 ) ( 8192 672 8192 ) ( -8192 672 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 736 8192 ) ( -8192 736 8192 ) ( -8192 736 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 192 ) ( 8192 8192 192 ) ( -8192 -8192 192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -2240 8192 8192 ) ( -2240 -8192 8192 ) ( -2240 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -2176 -8192 8192 ) ( -2176 8192 8192 ) ( -2176 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1216 8192 ) ( 8192 1216 8192 ) ( -8192 1216 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1344 8192 ) ( -8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -2240 8192 8192 ) ( -2240 -8192 8192 ) ( -2240 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -2176 -8192 8192 ) ( -2176 8192 8192 ) ( -2176 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 960 8192 ) ( 8192 960 8192 ) ( -8192 960 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1088 8192 ) ( -8192 1088 8192 ) ( -8192 1088 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -2240 8192 8192 ) ( -2240 -8192 8192 ) ( -2240 8192 -8192 ) bricks/c_mf_v7d 0 0 0 1.000000 1.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) bricks/c_mf_v7d 0 0 0 1.000000 1.000000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) bricks/c_mf_v7d 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1632 8192 ) ( -8192 1632 8192 ) ( -8192 1632 -8192 ) bricks/c_mf_v7d 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 576 ) ( 8192 8192 576 ) ( -8192 -8192 576 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 592 ) ( 8192 -8192 592 ) ( -8192 -8192 592 ) bricks/c_mf_v7d 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -2240 8192 8192 ) ( -2240 -8192 8192 ) ( -2240 8192 -8192 ) metals/mt_sr_v16 -32 0 0 1.000000 1.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) metals/mt_sr_v16 -32 0 0 1.000000 1.000000 1 0 0 +( -8192 672 8192 ) ( 8192 672 8192 ) ( -8192 672 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 0 0 +( 8192 736 8192 ) ( -8192 736 8192 ) ( -8192 736 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 512 ) ( 8192 8192 512 ) ( -8192 -8192 512 ) metals/mt_sr_v16 0 32 0 1.000000 1.000000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) metals/mt_sr_v16 0 32 0 1.000000 1.000000 1 0 0 +} +{ +( -2240 8192 8192 ) ( -2240 -8192 8192 ) ( -2240 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 672 8192 ) ( 8192 672 8192 ) ( -8192 672 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 736 8192 ) ( -8192 736 8192 ) ( -8192 736 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -2240 8192 8192 ) ( -2240 -8192 8192 ) ( -2240 8192 -8192 ) metals/mt_sr_v16 32 0 0 1.000000 1.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) metals/mt_sr_v16 32 0 0 1.000000 1.000000 1 0 0 +( -8192 1568 8192 ) ( 8192 1568 8192 ) ( -8192 1568 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1632 8192 ) ( -8192 1632 8192 ) ( -8192 1632 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 512 ) ( 8192 8192 512 ) ( -8192 -8192 512 ) metals/mt_sr_v16 0 -32 0 1.000000 1.000000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) metals/mt_sr_v16 0 -32 0 1.000000 1.000000 1 0 0 +} +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 512 ) ( 8192 8192 512 ) ( -8192 -8192 512 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1024 8192 ) ( 8192 1024 8192 ) ( -8192 1024 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1568 8192 ) ( -8192 1568 8192 ) ( -8192 1568 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1144 8192 8192 ) ( -1144 -8192 8192 ) ( -1144 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1088 -8192 8192 ) ( -1088 8192 8192 ) ( -1088 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 656 8192 ) ( 8192 656 8192 ) ( -8192 656 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 672 8192 ) ( -8192 672 8192 ) ( -8192 672 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1160 8192 8192 ) ( -1160 -8192 8192 ) ( -1160 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1144 -8192 8192 ) ( -1144 8192 8192 ) ( -1144 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 656 8192 ) ( 8192 656 8192 ) ( -8192 656 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 672 8192 ) ( -8192 672 8192 ) ( -8192 672 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) common/li_sr_ml5 8 16 0 1.000000 1.000000 1 1 10000 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1216 8192 8192 ) ( -1216 -8192 8192 ) ( -1216 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1160 -8192 8192 ) ( -1160 8192 8192 ) ( -1160 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 656 8192 ) ( 8192 656 8192 ) ( -8192 656 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 672 8192 ) ( -8192 672 8192 ) ( -8192 672 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1216 8192 8192 ) ( -1216 -8192 8192 ) ( -1216 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1088 -8192 8192 ) ( -1088 8192 8192 ) ( -1088 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 480 8192 ) ( 8192 480 8192 ) ( -8192 480 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 656 8192 ) ( -8192 656 8192 ) ( -8192 656 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1216 8192 8192 ) ( -1216 -8192 8192 ) ( -1216 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1088 -8192 8192 ) ( -1088 8192 8192 ) ( -1088 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 672 8192 ) ( 8192 672 8192 ) ( -8192 672 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 832 8192 ) ( -8192 832 8192 ) ( -8192 832 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1160 8192 8192 ) ( -1160 -8192 8192 ) ( -1160 8192 -8192 ) bricks/b_sr_20 -16 0 0 1.000000 1.000000 1 0 0 +( -1144 -8192 8192 ) ( -1144 8192 8192 ) ( -1144 8192 -8192 ) bricks/b_sr_20 -16 0 0 1.000000 1.000000 1 0 0 +( -8192 880 8192 ) ( 8192 880 8192 ) ( -8192 880 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 896 8192 ) ( -8192 896 8192 ) ( -8192 896 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) common/li_sr_ml5 8 16 0 1.000000 1.000000 1 1 15000 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 16 0 1.000000 1.000000 1 0 0 +} +{ +( -1160 8192 8192 ) ( -1160 -8192 8192 ) ( -1160 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1144 -8192 8192 ) ( -1144 8192 8192 ) ( -1144 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 832 8192 ) ( 8192 832 8192 ) ( -8192 832 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 880 8192 ) ( -8192 880 8192 ) ( -8192 880 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1160 8192 8192 ) ( -1160 -8192 8192 ) ( -1160 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1144 -8192 8192 ) ( -1144 8192 8192 ) ( -1144 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 896 8192 ) ( 8192 896 8192 ) ( -8192 896 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 960 8192 ) ( -8192 960 8192 ) ( -8192 960 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1144 8192 8192 ) ( -1144 -8192 8192 ) ( -1144 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1088 -8192 8192 ) ( -1088 8192 8192 ) ( -1088 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 832 8192 ) ( 8192 832 8192 ) ( -8192 832 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 960 8192 ) ( -8192 960 8192 ) ( -8192 960 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1280 8192 8192 ) ( -1280 -8192 8192 ) ( -1280 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1160 -8192 8192 ) ( -1160 8192 8192 ) ( -1160 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 832 8192 ) ( 8192 832 8192 ) ( -8192 832 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 960 8192 ) ( -8192 960 8192 ) ( -8192 960 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1160 8192 8192 ) ( -1160 -8192 8192 ) ( -1160 8192 -8192 ) common/li_sr_m14 8 8 0 1.000000 1.000000 1 1 10000 +( -1144 -8192 8192 ) ( -1144 8192 8192 ) ( -1144 8192 -8192 ) common/li_sr_m14 8 8 0 1.000000 1.000000 1 1 10000 +( -8192 408 8192 ) ( 8192 408 8192 ) ( -8192 408 -8192 ) common/li_sr_m14 8 8 0 1.000000 1.000000 1 1 10000 +( 8192 424 8192 ) ( -8192 424 8192 ) ( -8192 424 -8192 ) common/li_sr_m14 8 8 0 1.000000 1.000000 1 1 10000 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) common/li_sr_ml5 8 24 0 1.000000 1.000000 1 1 12000 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) common/li_sr_m14 8 8 0 1.000000 1.000000 1 1 10000 +} +{ +( -1160 8192 8192 ) ( -1160 -8192 8192 ) ( -1160 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1144 -8192 8192 ) ( -1144 8192 8192 ) ( -1144 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 424 8192 ) ( 8192 424 8192 ) ( -8192 424 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 480 8192 ) ( -8192 480 8192 ) ( -8192 480 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1160 8192 8192 ) ( -1160 -8192 8192 ) ( -1160 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1144 -8192 8192 ) ( -1144 8192 8192 ) ( -1144 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 352 8192 ) ( 8192 352 8192 ) ( -8192 352 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 408 8192 ) ( -8192 408 8192 ) ( -8192 408 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1216 8192 8192 ) ( -1216 -8192 8192 ) ( -1216 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1160 -8192 8192 ) ( -1160 8192 8192 ) ( -1160 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 352 8192 ) ( 8192 352 8192 ) ( -8192 352 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 480 8192 ) ( -8192 480 8192 ) ( -8192 480 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -904 8192 16256 ) ( -904 -8192 16256 ) ( -904 8192 -16512 ) common/li_sr_m14 8 8 0 1.000000 1.000000 1 1 10000 +( -888 -8192 16256 ) ( -888 8192 16256 ) ( -888 8192 -16512 ) common/li_sr_m14 8 8 0 1.000000 1.000000 1 1 10000 +( -8192 408 16256 ) ( 8192 408 16256 ) ( -8192 408 -16512 ) common/li_sr_m14 8 8 0 1.000000 1.000000 1 1 10000 +( 8192 424 16256 ) ( -8192 424 16256 ) ( -8192 424 -16512 ) common/li_sr_m14 8 8 0 1.000000 1.000000 1 1 10000 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) common/li_sr_ml5 8 24 0 1.000000 1.000000 1 1 12000 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) common/li_sr_m14 8 8 0 1.000000 1.000000 1 1 10000 +} +{ +( -904 8192 8192 ) ( -904 -8192 8192 ) ( -904 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -888 -8192 8192 ) ( -888 8192 8192 ) ( -888 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 352 8192 ) ( 8192 352 8192 ) ( -8192 352 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 408 8192 ) ( -8192 408 8192 ) ( -8192 408 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -904 8192 16256 ) ( -904 -8192 16256 ) ( -904 8192 -16512 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -888 -8192 16256 ) ( -888 8192 16256 ) ( -888 8192 -16512 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 424 16256 ) ( 8192 424 16256 ) ( -8192 424 -16512 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 480 16256 ) ( -8192 480 16256 ) ( -8192 480 -16512 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1144 8192 8192 ) ( -1144 -8192 8192 ) ( -1144 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -904 -8192 8192 ) ( -904 8192 8192 ) ( -904 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 352 8192 ) ( 8192 352 8192 ) ( -8192 352 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 480 8192 ) ( -8192 480 8192 ) ( -8192 480 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( -1024 -8192 8192 ) ( -1024 8192 8192 ) ( -1024 8192 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( -8192 960 8192 ) ( 8192 960 8192 ) ( -8192 960 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 1024 8192 ) ( -8192 1024 8192 ) ( -8192 1024 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( -1280 -8192 8192 ) ( -1280 8192 8192 ) ( -1280 8192 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( -8192 736 8192 ) ( 8192 736 8192 ) ( -8192 736 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 832 8192 ) ( -8192 832 8192 ) ( -8192 832 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1280 8192 8192 ) ( -1280 -8192 8192 ) ( -1280 8192 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( -1216 -8192 8192 ) ( -1216 8192 8192 ) ( -1216 8192 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( -8192 320 8192 ) ( 8192 320 8192 ) ( -8192 320 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 832 8192 ) ( -8192 832 8192 ) ( -8192 832 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1216 8192 8192 ) ( -1216 -8192 8192 ) ( -1216 8192 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( -896 -8192 8192 ) ( -896 8192 8192 ) ( -896 8192 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( -8192 320 8192 ) ( 8192 320 8192 ) ( -8192 320 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 352 8192 ) ( -8192 352 8192 ) ( -8192 352 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1088 8192 8192 ) ( -1088 -8192 8192 ) ( -1088 8192 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( -1024 -8192 8192 ) ( -1024 8192 8192 ) ( -1024 8192 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( -8192 512 8192 ) ( 8192 512 8192 ) ( -8192 512 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 960 8192 ) ( -8192 960 8192 ) ( -8192 960 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1088 8192 8192 ) ( -1088 -8192 8192 ) ( -1088 8192 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( -896 -8192 8192 ) ( -896 8192 8192 ) ( -896 8192 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( -8192 480 8192 ) ( 8192 480 8192 ) ( -8192 480 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 512 8192 ) ( -8192 512 8192 ) ( -8192 512 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1216 8192 8192 ) ( -1216 -8192 8192 ) ( -1216 8192 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( -1088 -8192 8192 ) ( -1088 8192 8192 ) ( -1088 8192 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 -8 ) ( 8192 8192 -8 ) ( -8192 -8192 -8 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 0 ) ( 8192 -8192 0 ) ( -8192 -8192 0 ) bricks/c_sr_m2c 0 -64 90 -1.000000 1.000000 1 67108864 0 +( -6576 -5008 8192 ) ( 5008 6576 8192 ) ( -6576 -5008 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 4768 6816 8192 ) ( -6816 -4768 8192 ) ( 4768 6816 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( -896 23616 8192 ) ( -896 -25536 8192 ) ( -896 23616 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( -832 -25536 8192 ) ( -832 23616 8192 ) ( -832 23616 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( -8192 480 8192 ) ( 8192 480 8192 ) ( -8192 480 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 576 8192 ) ( -8192 576 8192 ) ( -8192 576 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 -25536 0 ) ( 8192 23616 0 ) ( -8192 -25536 0 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 23616 128 ) ( 8192 -25536 128 ) ( -8192 -25536 128 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +} +{ +( -896 39552 8192 ) ( -896 -42368 8192 ) ( -896 39552 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( -832 -42368 8192 ) ( -832 39552 8192 ) ( -832 39552 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( -8192 192 8192 ) ( 8192 192 8192 ) ( -8192 192 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 352 8192 ) ( -8192 352 8192 ) ( -8192 352 -8192 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 -42368 0 ) ( 8192 39552 0 ) ( -8192 -42368 0 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +( 8192 39552 128 ) ( 8192 -42368 128 ) ( -8192 -42368 128 ) bricks/c_pv_m2 -16 0 0 1.000000 1.000000 1 0 0 +} +{ +( 656 8192 8192 ) ( 656 -8192 8192 ) ( 656 8192 -8192 ) bricks/b_sr_20 32 16 180 1.000000 1.000000 1 0 0 +( 832 -8192 8192 ) ( 832 8192 8192 ) ( 832 8192 -8192 ) bricks/b_sr_20 8 16 0 1.000000 1.000000 1 0 0 +( -8192 1088 8192 ) ( 8192 1088 8192 ) ( -8192 1088 -8192 ) bricks/b_sr_20 32 16 180 1.000000 1.000000 1 0 0 +( 8192 1256 8192 ) ( -8192 1256 8192 ) ( -8192 1256 -8192 ) bricks/b_sr_20 32 16 180 1.000000 1.000000 1 0 0 +( 8192 -8192 512 ) ( 8192 8192 512 ) ( -8192 -8192 512 ) bricks/b_mf_v2 -16 16 0 1.000000 1.000000 1 1048576 0 +( 8192 8192 560 ) ( 8192 -8192 560 ) ( -8192 -8192 560 ) floors/rf_sr_m2 0 0 0 2.000000 2.000000 1 2097152 0 +} +{ +( 344 4112 8192 ) ( 344 -2634 8192 ) ( 344 4112 -8192 ) bricks/b_sr_20 8 16 0 1.000000 1.000000 1 0 0 +( 656 -2634 8192 ) ( 656 4112 8192 ) ( 656 4112 -8192 ) bricks/b_sr_20 32 16 180 1.000000 1.000000 1 0 0 +( -8192 976 8192 ) ( 8192 976 8192 ) ( -8192 976 -8192 ) bricks2/c_pv_m1 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1256 8192 ) ( -8192 1256 8192 ) ( -8192 1256 -8192 ) bricks/b_sr_20 32 16 180 1.000000 1.000000 1 0 0 +( 8192 -2634 512 ) ( 8192 4112 512 ) ( -8192 -2634 512 ) bricks/c_sr_m2b 0 0 0 2.000000 2.000000 1 0 0 +( 8192 4112 560 ) ( 8192 -2634 560 ) ( -8192 -2634 560 ) floors/rf_sr_m2 0 0 0 2.000000 2.000000 1 2097152 0 +} +{ +( 1456 8192 8192 ) ( 1456 -8192 8192 ) ( 1456 8192 -8192 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( 1768 -8192 8192 ) ( 1768 8192 8192 ) ( 1768 8192 -8192 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( -8446 576 8192 ) ( 8369 576 8192 ) ( -8446 576 -8192 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( 8369 896 8192 ) ( -8446 896 8192 ) ( -8446 896 -8192 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( 8369 -8192 512 ) ( 8369 8192 512 ) ( -8446 -8192 512 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( 8369 8192 560 ) ( 8369 -8192 560 ) ( -8446 -8192 560 ) floors/rf_sr_m2 -1 17 0 2.000000 2.000000 1 2097152 0 +} +{ +( 1280 8192 8192 ) ( 1280 -8192 8192 ) ( 1280 8192 -8192 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( 1768 -8192 8192 ) ( 1768 8192 8192 ) ( 1768 8192 -8192 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( -8350 896 8192 ) ( 8307 896 8192 ) ( -8350 896 -8192 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( 8307 1128 8192 ) ( -8350 1128 8192 ) ( -8350 1128 -8192 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( 8307 -8192 512 ) ( 8307 8192 512 ) ( -8350 -8192 512 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( 8307 8192 560 ) ( 8307 -8192 560 ) ( -8350 -8192 560 ) floors/rf_sr_m2 -1 17 0 2.000000 2.000000 1 2097152 0 +} +{ +( 1216 8192 8192 ) ( 1216 -8192 8192 ) ( 1216 8192 -8192 ) bricks/b_si_v 0 0 0 20.000000 20.000000 +( 2880 -8192 8192 ) ( 2880 8192 8192 ) ( 2880 8192 -8192 ) bricks/b_si_v 0 0 0 20.000000 20.000000 +( -8192 1152 8192 ) ( 8192 1152 8192 ) ( -8192 1152 -8192 ) bricks/b_si_v 0 0 0 20.000000 20.000000 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/b_si_v 0 0 0 20.000000 20.000000 +( 8192 -8192 1024 ) ( 8192 8192 1024 ) ( -8192 -8192 1024 ) common/li_sr_m14 0 0 0 20.000000 20.000000 0 5 200 +( 8192 8192 1088 ) ( 8192 -8192 1088 ) ( -8192 -8192 1088 ) bricks/b_si_v 0 0 0 20.000000 20.000000 +} +{ +( 1216 6950 8192 ) ( 1216 -6543 8192 ) ( 1216 6950 -8192 ) bricks/b_si_v 0 0 0 20.000000 20.000000 +( 2880 -6543 8192 ) ( 2880 6950 8192 ) ( 2880 6950 -8192 ) bricks/b_si_v 0 0 0 20.000000 20.000000 +( -8192 256 8192 ) ( 8192 256 8192 ) ( -8192 256 -8192 ) bricks/b_si_v 0 0 0 20.000000 20.000000 +( 8192 1152 8192 ) ( -8192 1152 8192 ) ( -8192 1152 -8192 ) bricks/b_si_v 0 0 0 20.000000 20.000000 +( 8192 -6543 1024 ) ( 8192 6950 1024 ) ( -8192 -6543 1024 ) common/li_sr_m14 0 0 0 20.000000 20.000000 0 5 350 +( 8192 6950 1088 ) ( 8192 -6543 1088 ) ( -8192 -6543 1088 ) bricks/b_si_v 0 0 0 20.000000 20.000000 +} +{ +( 1216 4864 8192 ) ( 1216 -3328 8192 ) ( 1216 4864 -8192 ) bricks/b_si_v 0 0 0 20.000000 20.000000 +( 2880 -3328 8192 ) ( 2880 4864 8192 ) ( 2880 4864 -8192 ) bricks/b_si_v 0 0 0 20.000000 20.000000 +( -8192 1536 8192 ) ( 8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/b_si_v 0 0 0 20.000000 20.000000 +( 8192 1856 8192 ) ( -8192 1856 8192 ) ( -8192 1856 -8192 ) bricks/b_si_v 0 0 0 20.000000 20.000000 +( 8192 -3328 1024 ) ( 8192 4864 1024 ) ( -8192 -3328 1024 ) common/li_sr_m14 0 0 0 20.000000 20.000000 0 5 150 +( 8192 4864 1088 ) ( 8192 -3328 1088 ) ( -8192 -3328 1088 ) bricks/b_si_v 0 0 0 20.000000 20.000000 +} +{ +( 2672 8192 8192 ) ( 2672 -8192 8192 ) ( 2672 8192 -8192 ) props/fire_v1 32 -24 0 1.000000 1.000000 1 8388608 0 +( 2676 -8192 8192 ) ( 2676 8192 8192 ) ( 2676 8192 -8192 ) props/fire_v1 32 -24 0 1.000000 1.000000 1 8388608 0 +( -8192 680 8192 ) ( 8192 680 8192 ) ( -8192 680 -8192 ) props/fire_v1 32 -24 0 0.500000 0.500000 1 8388608 0 +( 8192 684 8192 ) ( -8192 684 8192 ) ( -8192 684 -8192 ) props/fire_v1 60 -24 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 320 ) ( 8192 8192 320 ) ( -8192 -8192 320 ) props/fire_v1 60 -24 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 340 ) ( 8192 -8192 340 ) ( -8192 -8192 340 ) props/fire_v1 60 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( 2672 8192 8192 ) ( 2672 -8192 8192 ) ( 2672 8192 -8192 ) props/fire_v1 88 -24 0 1.000000 1.000000 1 8388608 0 +( 2704 -8192 8192 ) ( 2704 8192 8192 ) ( 2704 8192 -8192 ) props/fire_v1 88 -24 0 1.000000 1.000000 1 8388608 0 +( -8192 684 8192 ) ( 8192 684 8192 ) ( -8192 684 -8192 ) props/house_v1 28 -24 0 0.500000 0.500000 1 2097152 0 +( 8192 688 8192 ) ( -8192 688 8192 ) ( -8192 688 -8192 ) props/house_v1 28 -32 0 1.000000 1.000000 1 2097152 0 +( 8192 -8192 304 ) ( 8192 8192 304 ) ( -8192 -8192 304 ) props/fire_v1 32 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 344 ) ( 8192 -8192 344 ) ( -8192 -8192 344 ) props/fire_v1 32 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( 2672 8192 8192 ) ( 2672 -8192 8192 ) ( 2672 8192 -8192 ) props/fire_v1 32 -24 0 1.000000 1.000000 1 8388608 0 +( 2704 -8192 8192 ) ( 2704 8192 8192 ) ( 2704 8192 -8192 ) props/fire_v1 32 -24 0 1.000000 1.000000 1 8388608 0 +( -8192 680 8192 ) ( 8192 680 8192 ) ( -8192 680 -8192 ) props/fire_v1 32 -24 0 0.500000 0.500000 1 8388608 0 +( 8192 684 8192 ) ( -8192 684 8192 ) ( -8192 684 -8192 ) props/fire_v1 32 -24 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 340 ) ( 8192 8192 340 ) ( -8192 -8192 340 ) props/fire_v1 32 -24 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 344 ) ( 8192 -8192 344 ) ( -8192 -8192 344 ) props/fire_v1 32 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( 2700 8192 8192 ) ( 2700 -8192 8192 ) ( 2700 8192 -8192 ) props/fire_v1 32 -24 0 1.000000 1.000000 1 8388608 0 +( 2704 -8192 8192 ) ( 2704 8192 8192 ) ( 2704 8192 -8192 ) props/fire_v1 32 -24 0 1.000000 1.000000 1 8388608 0 +( -8192 680 8192 ) ( 8192 680 8192 ) ( -8192 680 -8192 ) props/fire_v1 32 -24 0 0.500000 0.500000 1 8388608 0 +( 8192 684 8192 ) ( -8192 684 8192 ) ( -8192 684 -8192 ) props/fire_v1 32 -24 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 320 ) ( 8192 8192 320 ) ( -8192 -8192 320 ) props/fire_v1 32 -24 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 340 ) ( 8192 -8192 340 ) ( -8192 -8192 340 ) props/fire_v1 32 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( 2672 8192 8192 ) ( 2672 -8192 8192 ) ( 2672 8192 -8192 ) props/fire_v1 88 -24 0 1.000000 1.000000 1 8388608 0 +( 2704 -8192 8192 ) ( 2704 8192 8192 ) ( 2704 8192 -8192 ) props/fire_v1 88 -24 0 1.000000 1.000000 1 8388608 0 +( -8192 680 8192 ) ( 8192 680 8192 ) ( -8192 680 -8192 ) props/fire_v1 32 -24 0 0.500000 0.500000 1 8388608 0 +( 8192 684 8192 ) ( -8192 684 8192 ) ( -8192 684 -8192 ) props/fire_v1 32 -24 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 304 ) ( 8192 8192 304 ) ( -8192 -8192 304 ) props/fire_v1 32 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 320 ) ( 8192 -8192 320 ) ( -8192 -8192 320 ) props/fire_v1 32 -24 0 1.000000 1.000000 1 8388608 0 +} +{ +( 2504 8192 8192 ) ( 2504 -8192 8192 ) ( 2504 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 2560 -8192 8192 ) ( 2560 8192 8192 ) ( 2560 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( -8192 688 8192 ) ( 8192 688 8192 ) ( -8192 688 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 704 8192 ) ( -8192 704 8192 ) ( -8192 704 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 264 ) ( 8192 8192 264 ) ( -8192 -8192 264 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 280 ) ( 8192 -8192 280 ) ( -8192 -8192 280 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2488 8192 8192 ) ( 2488 -8192 8192 ) ( 2488 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 2504 -8192 8192 ) ( 2504 8192 8192 ) ( 2504 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( -8192 688 8192 ) ( 8192 688 8192 ) ( -8192 688 -8192 ) common/li_sr_m14 8 8 0 1.000000 1.000000 1 1 50000 +( 8192 704 8192 ) ( -8192 704 8192 ) ( -8192 704 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 264 ) ( 8192 8192 264 ) ( -8192 -8192 264 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 280 ) ( 8192 -8192 280 ) ( -8192 -8192 280 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2456 8192 8192 ) ( 2456 -8192 8192 ) ( 2456 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 2488 -8192 8192 ) ( 2488 8192 8192 ) ( 2488 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( -8192 688 8192 ) ( 8192 688 8192 ) ( -8192 688 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 704 8192 ) ( -8192 704 8192 ) ( -8192 704 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 264 ) ( 8192 8192 264 ) ( -8192 -8192 264 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 280 ) ( 8192 -8192 280 ) ( -8192 -8192 280 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2456 8192 8192 ) ( 2456 -8192 8192 ) ( 2456 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 2560 -8192 8192 ) ( 2560 8192 8192 ) ( 2560 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( -8192 688 8192 ) ( 8192 688 8192 ) ( -8192 688 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 704 8192 ) ( -8192 704 8192 ) ( -8192 704 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 280 ) ( 8192 8192 280 ) ( -8192 -8192 280 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2456 8192 8192 ) ( 2456 -8192 8192 ) ( 2456 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 2560 -8192 8192 ) ( 2560 8192 8192 ) ( 2560 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( -8192 688 8192 ) ( 8192 688 8192 ) ( -8192 688 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 704 8192 ) ( -8192 704 8192 ) ( -8192 704 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 264 ) ( 8192 -8192 264 ) ( -8192 -8192 264 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2192 8192 8192 ) ( 2192 -8192 8192 ) ( 2192 8192 -8192 ) props/box_sr_m11 16 0 0 1.000000 1.000000 1 134217728 0 +( 2256 -8192 8192 ) ( 2256 8192 8192 ) ( 2256 8192 -8192 ) props/box_sr_m11 16 0 0 1.000000 1.000000 1 134217728 0 +( -8192 560 8192 ) ( 8192 560 8192 ) ( -8192 560 -8192 ) props/box_sr_m11 48 0 0 1.000000 1.000000 1 134217728 0 +( 8192 624 8192 ) ( -8192 624 8192 ) ( -8192 624 -8192 ) props/box_sr_m11 48 0 0 1.000000 1.000000 1 134217728 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) props/box_sr_m11 48 -16 0 1.000000 1.000000 1 134217728 0 +( 8192 8192 320 ) ( 8192 -8192 320 ) ( -8192 -8192 320 ) props/box_sr_m11 16 0 0 1.000000 1.000000 1 134217728 0 +} +{ +( 2192 8192 8192 ) ( 2192 -8192 8192 ) ( 2192 8192 -8192 ) props/box_sr_m11 16 0 0 1.000000 1.000000 1 134217728 0 +( 2256 -8192 8192 ) ( 2256 8192 8192 ) ( 2256 8192 -8192 ) props/box_sr_m10 16 0 0 1.000000 1.000000 1 134217728 0 +( -8192 560 8192 ) ( 8192 560 8192 ) ( -8192 560 -8192 ) props/box_sr_m10 48 0 0 1.000000 1.000000 1 134217728 0 +( 8192 624 8192 ) ( -8192 624 8192 ) ( -8192 624 -8192 ) props/box_sr_m11 48 0 0 1.000000 1.000000 1 134217728 0 +( 8192 -8192 320 ) ( 8192 8192 320 ) ( -8192 -8192 320 ) props/box_sr_m11 16 0 0 1.000000 1.000000 1 134217728 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) props/box_sr_m10 48 -16 0 1.000000 1.000000 1 134217728 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 2192 -8192 8192 ) ( 2192 8192 8192 ) ( 2192 8192 -8192 ) common/li_sr_m14 0 8 0 1.000000 1.000000 1 1 40000 +( -8192 496 8192 ) ( 8192 496 8192 ) ( -8192 496 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 512 8192 ) ( -8192 512 8192 ) ( -8192 512 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 264 ) ( 8192 8192 264 ) ( -8192 -8192 264 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 280 ) ( 8192 -8192 280 ) ( -8192 -8192 280 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) props2/dragon_vz 0 0 0 1.000000 1.000000 +( 2192 -8192 8192 ) ( 2192 8192 8192 ) ( 2192 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 384 8192 ) ( 8192 384 8192 ) ( -8192 384 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 496 8192 ) ( -8192 496 8192 ) ( -8192 496 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 264 ) ( 8192 8192 264 ) ( -8192 -8192 264 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 280 ) ( 8192 -8192 280 ) ( -8192 -8192 280 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) props2/dragon_vz 0 0 0 1.000000 1.000000 +( 2192 -8192 8192 ) ( 2192 8192 8192 ) ( 2192 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 384 8192 ) ( 8192 384 8192 ) ( -8192 384 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 512 8192 ) ( -8192 512 8192 ) ( -8192 512 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 280 ) ( 8192 8192 280 ) ( -8192 -8192 280 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 2192 -8192 8192 ) ( 2192 8192 8192 ) ( 2192 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 384 8192 ) ( 8192 384 8192 ) ( -8192 384 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 512 8192 ) ( -8192 512 8192 ) ( -8192 512 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 264 ) ( 8192 -8192 264 ) ( -8192 -8192 264 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 2192 -8192 8192 ) ( 2192 8192 8192 ) ( 2192 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 320 8192 ) ( 8192 320 8192 ) ( -8192 320 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 384 8192 ) ( -8192 384 8192 ) ( -8192 384 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 2192 -8192 8192 ) ( 2192 8192 8192 ) ( 2192 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 512 8192 ) ( 8192 512 8192 ) ( -8192 512 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 688 8192 ) ( -8192 688 8192 ) ( -8192 688 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2256 8192 8192 ) ( 2256 -8192 8192 ) ( 2256 8192 -8192 ) props/box_sr_m11 -48 0 0 1.000000 1.000000 1 134217728 0 +( 2320 -8192 8192 ) ( 2320 8192 8192 ) ( 2320 8192 -8192 ) props/box_sr_m10 -48 0 0 1.000000 1.000000 1 134217728 0 +( -8192 624 8192 ) ( 8192 624 8192 ) ( -8192 624 -8192 ) props/box_sr_m10 -16 0 0 1.000000 1.000000 1 134217728 0 +( 8192 688 8192 ) ( -8192 688 8192 ) ( -8192 688 -8192 ) props/box_sr_m11 -16 0 0 1.000000 1.000000 1 134217728 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) props/box_sr_m11 -16 48 0 1.000000 1.000000 1 134217728 0 +( 8192 8192 320 ) ( 8192 -8192 320 ) ( -8192 -8192 320 ) props/box_sr_m10 -16 48 0 1.000000 1.000000 1 134217728 0 +} +{ +( 2192 8192 8192 ) ( 2192 -8192 8192 ) ( 2192 8192 -8192 ) props/box_sr_m11 -48 0 0 1.000000 1.000000 1 134217728 0 +( 2256 -8192 8192 ) ( 2256 8192 8192 ) ( 2256 8192 -8192 ) props/box_sr_m11 -48 0 0 1.000000 1.000000 1 134217728 0 +( -8192 624 8192 ) ( 8192 624 8192 ) ( -8192 624 -8192 ) props/box_sr_m11 48 0 0 1.000000 1.000000 1 134217728 0 +( 8192 688 8192 ) ( -8192 688 8192 ) ( -8192 688 -8192 ) props/box_sr_m11 48 0 0 1.000000 1.000000 1 134217728 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) props/box_sr_m11 48 48 0 1.000000 1.000000 1 134217728 0 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) props/box_sr_m11 48 48 0 1.000000 1.000000 1 134217728 0 +} +{ +( -8192 536 8192 ) ( 8192 536 8192 ) ( -8192 536 -8192 ) metals/mt_sr_v24 16 -2 180 1.000000 1.000000 1 8388608 0 +( 8192 664 8192 ) ( -8192 664 8192 ) ( -8192 664 -8192 ) metals/mt_sr_v24 16 -2 180 1.000000 1.000000 1 8388608 0 +( 8192 -8192 728 ) ( 8192 8192 728 ) ( -8192 -8192 728 ) common/li_pv_v2 -24 8 90 1.000000 1.000000 1 1 5000 +( 8192 8192 736 ) ( 8192 -8192 736 ) ( -8192 -8192 736 ) metals/mt_sr_v24 16 6 180 1.000000 1.000000 1 8388608 0 +( 5362 8191 6477 ) ( 5362 -8191 6477 ) ( -1964 -8191 -8176 ) metals/mt_sr_v24 -40 -3 180 1.000000 1.000000 1 8388608 0 +( -1369 -8191 8474 ) ( -1369 8191 8474 ) ( 5957 8191 -6179 ) metals/mt_sr_v24 -40 -3 180 1.000000 1.000000 1 8388608 0 +} +{ +( 2494 8192 8192 ) ( 2494 -8192 8192 ) ( 2494 8192 -8192 ) sprites/win_bars 28 0 180 0.199951 0.200012 268435586 4096 0 +( 2498 -8192 8192 ) ( 2498 8192 8192 ) ( 2498 8192 -8192 ) sprites/win_bars 28 0 180 0.199951 0.200012 268435586 4096 0 +( -8192 656 8192 ) ( 8192 656 8192 ) ( -8192 656 -8192 ) sprites/win_bars 10 0 180 0.199707 0.200012 268435586 4096 0 +( 8192 660 8192 ) ( -8192 660 8192 ) ( -8192 660 -8192 ) sprites/win_bars 10 0 180 0.199707 0.200012 268435586 4096 0 +( 8192 -8192 736 ) ( 8192 8192 736 ) ( -8192 -8192 736 ) metals/mt_sr_v24 16 6 180 1.000000 1.000000 268435586 8388608 0 +( 8192 8192 768 ) ( 8192 -8192 768 ) ( -8192 -8192 768 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 268435586 0 0 +} +{ +( 2494 8192 8192 ) ( 2494 -8192 8192 ) ( 2494 8192 -8192 ) sprites/win_bars 17 0 180 0.200195 0.200012 268435586 4096 0 +( 2498 -8192 8192 ) ( 2498 8192 8192 ) ( 2498 8192 -8192 ) sprites/win_bars 17 0 180 0.200195 0.200012 268435586 4096 0 +( -8192 540 8192 ) ( 8192 540 8192 ) ( -8192 540 -8192 ) sprites/win_bars 10 0 180 0.199707 0.200012 268435586 4096 0 +( 8192 544 8192 ) ( -8192 544 8192 ) ( -8192 544 -8192 ) sprites/win_bars 10 0 180 0.199707 0.200012 268435586 4096 0 +( 8192 -8192 736 ) ( 8192 8192 736 ) ( -8192 -8192 736 ) metals/mt_sr_v24 16 6 180 1.000000 1.000000 268435586 8388608 0 +( 8192 8192 768 ) ( 8192 -8192 768 ) ( -8192 -8192 768 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 268435586 0 0 +} +{ +( 2358 8192 8192 ) ( 2358 -8192 8192 ) ( 2358 8192 -8192 ) metals/mt_sr_v16 0 22 90 1.000000 1.000000 1 8388608 0 +( 2378 -8192 8192 ) ( 2378 8192 8192 ) ( 2378 8192 -8192 ) metals/mt_pv_m16bc 8 8 0 1.000000 1.000000 1 8390656 0 +( -8192 512 8192 ) ( 8192 512 8192 ) ( -8192 512 -8192 ) metals/mt_pv_m16bc 0 8 0 1.000000 1.000000 1 8390656 0 +( 8192 516 8192 ) ( -8192 516 8192 ) ( -8192 516 -8192 ) metals/mt_sr_v16 0 22 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 680 ) ( 8192 8192 680 ) ( -8192 -8192 680 ) metals/mt_sr_v16 0 22 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 728 ) ( 8192 -8192 728 ) ( -8192 -8192 728 ) metals/mt_sr_v16 0 22 0 1.000000 1.000000 1 8388608 0 +} +{ +( 2230 8192 8192 ) ( 2230 -8192 8192 ) ( 2230 8192 -8192 ) metals/mt_sr_v16 0 22 90 1.000000 1.000000 1 8388608 0 +( 2250 -8192 8192 ) ( 2250 8192 8192 ) ( 2250 8192 -8192 ) metals/mt_sr_v16 0 22 90 1.000000 1.000000 1 8388608 0 +( -8192 512 8192 ) ( 8192 512 8192 ) ( -8192 512 -8192 ) metals/mt_pv_m16bc 0 8 0 1.000000 1.000000 1 8390656 0 +( 8192 516 8192 ) ( -8192 516 8192 ) ( -8192 516 -8192 ) metals/mt_sr_v16 0 22 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 680 ) ( 8192 8192 680 ) ( -8192 -8192 680 ) metals/mt_sr_v16 0 22 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 728 ) ( 8192 -8192 728 ) ( -8192 -8192 728 ) metals/mt_sr_v16 0 22 0 1.000000 1.000000 1 8388608 0 +} +{ +( 2230 8192 8192 ) ( 2230 -8192 8192 ) ( 2230 8192 -8192 ) metals/mt_sr_v16 0 22 90 1.000000 1.000000 1 8388608 0 +( 2250 -8192 8192 ) ( 2250 8192 8192 ) ( 2250 8192 -8192 ) metals/mt_sr_v16 0 22 90 1.000000 1.000000 1 8388608 0 +( -8192 684 8192 ) ( 8192 684 8192 ) ( -8192 684 -8192 ) metals/mt_sr_v16 0 22 90 1.000000 1.000000 1 8388608 0 +( 8192 688 8192 ) ( -8192 688 8192 ) ( -8192 688 -8192 ) metals/mt_pv_m16bc 0 8 0 1.000000 1.000000 1 8390656 0 +( 8192 -8192 680 ) ( 8192 8192 680 ) ( -8192 -8192 680 ) metals/mt_sr_v16 0 22 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 728 ) ( 8192 -8192 728 ) ( -8192 -8192 728 ) metals/mt_sr_v16 0 22 0 1.000000 1.000000 1 8388608 0 +} +{ +( 2302 8192 8192 ) ( 2302 -8192 8192 ) ( 2302 8192 -8192 ) sprites/win_bars -47 0 180 0.200195 0.200012 268435586 4096 0 +( 2306 -8192 8192 ) ( 2306 8192 8192 ) ( 2306 8192 -8192 ) sprites/win_bars -47 0 180 0.200195 0.200012 268435586 4096 0 +( -8192 540 8192 ) ( 8192 540 8192 ) ( -8192 540 -8192 ) sprites/win_bars 9 0 180 0.199707 0.200012 268435586 4096 0 +( 8192 544 8192 ) ( -8192 544 8192 ) ( -8192 544 -8192 ) sprites/win_bars 9 0 180 0.199707 0.200012 268435586 4096 0 +( 8192 -8192 736 ) ( 8192 8192 736 ) ( -8192 -8192 736 ) metals/mt_sr_v24 16 7 180 1.000000 1.000000 268435586 8388608 0 +( 8192 8192 768 ) ( 8192 -8192 768 ) ( -8192 -8192 768 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 268435586 0 0 +} +{ +( 2302 8192 8192 ) ( 2302 -8192 8192 ) ( 2302 8192 -8192 ) sprites/win_bars -36 0 180 0.199951 0.200012 268435586 4096 0 +( 2306 -8192 8192 ) ( 2306 8192 8192 ) ( 2306 8192 -8192 ) sprites/win_bars -36 0 180 0.199951 0.200012 268435586 4096 0 +( -8192 656 8192 ) ( 8192 656 8192 ) ( -8192 656 -8192 ) sprites/win_bars 9 0 180 0.199707 0.200012 268435586 4096 0 +( 8192 660 8192 ) ( -8192 660 8192 ) ( -8192 660 -8192 ) sprites/win_bars 9 0 180 0.199707 0.200012 268435586 4096 0 +( 8192 -8192 736 ) ( 8192 8192 736 ) ( -8192 -8192 736 ) metals/mt_sr_v24 16 7 180 1.000000 1.000000 268435586 8388608 0 +( 8192 8192 768 ) ( 8192 -8192 768 ) ( -8192 -8192 768 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 268435586 0 0 +} +{ +( -8192 536 8192 ) ( 8192 536 8192 ) ( -8192 536 -8192 ) metals/mt_sr_v24 16 -3 180 1.000000 1.000000 1 8388608 0 +( 8192 664 8192 ) ( -8192 664 8192 ) ( -8192 664 -8192 ) metals/mt_sr_v24 16 -3 180 1.000000 1.000000 1 8388608 0 +( 8192 -8192 728 ) ( 8192 8192 728 ) ( -8192 -8192 728 ) common/li_pv_v2 -103 7 270 1.000000 1.000000 1 1 5000 +( 8192 8192 736 ) ( 8192 -8192 736 ) ( -8192 -8192 736 ) metals/mt_sr_v24 16 7 180 1.000000 1.000000 1 8388608 0 +( 5209 8191 6554 ) ( 5209 -8191 6554 ) ( -2117 -8191 -8099 ) metals/mt_sr_v24 -40 -3 180 1.000000 1.000000 1 8388608 0 +( -1522 -8191 8397 ) ( -1522 8191 8397 ) ( 5804 8191 -6256 ) metals/mt_sr_v24 -40 -3 180 1.000000 1.000000 1 8388608 0 +} +{ +( 2196 8192 8192 ) ( 2196 -8192 8192 ) ( 2196 8192 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8388608 0 +( 2428 -8192 8192 ) ( 2428 8192 8192 ) ( 2428 8192 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8388608 0 +( -8192 572 8192 ) ( 8192 572 8192 ) ( -8192 572 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8388608 0 +( 8192 576 8192 ) ( -8192 576 8192 ) ( -8192 576 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 544 ) ( 8192 8192 544 ) ( -8192 -8192 544 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 560 ) ( 8192 -8192 560 ) ( -8192 -8192 560 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8388608 0 +} +{ +( 2196 8192 8192 ) ( 2196 -8192 8192 ) ( 2196 8192 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8388608 0 +( 2428 -8192 8192 ) ( 2428 8192 8192 ) ( 2428 8192 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8388608 0 +( -8192 512 8192 ) ( 8192 512 8192 ) ( -8192 512 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8388608 0 +( 8192 516 8192 ) ( -8192 516 8192 ) ( -8192 516 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 544 ) ( 8192 8192 544 ) ( -8192 -8192 544 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 560 ) ( 8192 -8192 560 ) ( -8192 -8192 560 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8388608 0 +} +{ +( 2192 8192 8192 ) ( 2192 -8192 8192 ) ( 2192 8192 -8192 ) metals/mt_sr_v16 0 0 90 1.000000 1.000000 1 8390656 0 +( 2196 -8192 8192 ) ( 2196 8192 8192 ) ( 2196 8192 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( -8192 512 8192 ) ( 8192 512 8192 ) ( -8192 512 -8192 ) metals/mt_sr_v16 0 0 90 1.000000 1.000000 1 8390656 0 +( 8192 576 8192 ) ( -8192 576 8192 ) ( -8192 576 -8192 ) metals/mt_sr_v16 0 0 90 1.000000 1.000000 1 8390656 0 +( 8192 -8192 544 ) ( 8192 8192 544 ) ( -8192 -8192 544 ) metals/mt_sr_v16 0 0 90 1.000000 1.000000 1 8390656 0 +( 8192 8192 560 ) ( 8192 -8192 560 ) ( -8192 -8192 560 ) metals/mt_sr_v16 0 0 90 1.000000 1.000000 1 8390656 0 +} +{ +( 2428 8192 8192 ) ( 2428 -8192 8192 ) ( 2428 8192 -8192 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 0 8388608 0 +( 2432 -8192 8192 ) ( 2432 8192 8192 ) ( 2432 8192 -8192 ) metals/mt_pv_m16bc 0 0 0 1.000000 1.000000 1 8390656 0 +( -8192 512 8192 ) ( 8192 512 8192 ) ( -8192 512 -8192 ) metals/mt_pv_m16bc 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 576 8192 ) ( -8192 576 8192 ) ( -8192 576 -8192 ) metals/mt_pv_m16bc 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 -8192 544 ) ( 8192 8192 544 ) ( -8192 -8192 544 ) metals/mt_sr_v16 0 0 90 1.000000 1.000000 1 8390656 0 +( 8192 8192 560 ) ( 8192 -8192 560 ) ( -8192 -8192 560 ) metals/mt_sr_v16 0 0 90 1.000000 1.000000 1 8390656 0 +} +{ +( 2358 8192 8192 ) ( 2358 -8192 8192 ) ( 2358 8192 -8192 ) metals/mt_sr_v16 0 22 90 1.000000 1.000000 1 8388608 0 +( 2378 -8192 8192 ) ( 2378 8192 8192 ) ( 2378 8192 -8192 ) metals/mt_sr_v16 0 22 90 1.000000 1.000000 1 8388608 0 +( -8192 684 8192 ) ( 8192 684 8192 ) ( -8192 684 -8192 ) metals/mt_sr_v16 0 22 90 1.000000 1.000000 1 8388608 0 +( 8192 688 8192 ) ( -8192 688 8192 ) ( -8192 688 -8192 ) metals/mt_pv_m16bc 0 8 0 1.000000 1.000000 1 8390656 0 +( 8192 -8192 680 ) ( 8192 8192 680 ) ( -8192 -8192 680 ) metals/mt_sr_v16 0 22 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 728 ) ( 8192 -8192 728 ) ( -8192 -8192 728 ) metals/mt_sr_v16 0 22 0 1.000000 1.000000 1 8388608 0 +} +{ +( 2360 8192 8192 ) ( 2360 -8192 8192 ) ( 2360 8192 -8192 ) metals/mt_sr_v16 0 97 0 1.000000 1.000000 1 8388608 0 +( 2376 -8192 8192 ) ( 2376 8192 8192 ) ( 2376 8192 -8192 ) metals/mt_sr_v16 0 97 0 1.000000 1.000000 1 8388608 0 +( -8192 516 8192 ) ( 8192 516 8192 ) ( -8192 516 -8192 ) metals/mt_pv_m16bc 0 8 0 1.000000 1.000000 1 8390656 0 +( 8192 684 8192 ) ( -8192 684 8192 ) ( -8192 684 -8192 ) metals/mt_pv_m16bc 0 8 0 1.000000 1.000000 1 8390656 0 +( 8192 -8192 720 ) ( 8192 8192 720 ) ( -8192 -8192 720 ) metals/mt_sr_v16 0 22 90 1.000000 1.000000 1 8388608 0 +( 8192 8192 724 ) ( 8192 -8192 724 ) ( -8192 -8192 724 ) metals/mt_sr_v16 0 22 90 1.000000 1.000000 1 8388608 0 +} +{ +( 2360 8192 8192 ) ( 2360 -8192 8192 ) ( 2360 8192 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8388608 0 +( 2376 -8192 8192 ) ( 2376 8192 8192 ) ( 2376 8192 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8388608 0 +( -8192 516 8192 ) ( 8192 516 8192 ) ( -8192 516 -8192 ) metals/mt_pv_m16bc 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 684 8192 ) ( -8192 684 8192 ) ( -8192 684 -8192 ) metals/mt_pv_m16bc 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 -8192 684 ) ( 8192 8192 684 ) ( -8192 -8192 684 ) metals/mt_sr_v16 0 22 90 1.000000 1.000000 1 8388608 0 +( 8192 8192 688 ) ( 8192 -8192 688 ) ( -8192 -8192 688 ) metals/mt_sr_v16 0 22 90 1.000000 1.000000 1 8388608 0 +} +{ +( 2232 8192 8192 ) ( 2232 -8192 8192 ) ( 2232 8192 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8388608 0 +( 2248 -8192 8192 ) ( 2248 8192 8192 ) ( 2248 8192 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8388608 0 +( -8192 516 8192 ) ( 8192 516 8192 ) ( -8192 516 -8192 ) metals/mt_pv_m16bc 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 684 8192 ) ( -8192 684 8192 ) ( -8192 684 -8192 ) metals/mt_pv_m16bc 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 -8192 684 ) ( 8192 8192 684 ) ( -8192 -8192 684 ) metals/mt_sr_v16 0 22 90 1.000000 1.000000 1 8388608 0 +( 8192 8192 688 ) ( 8192 -8192 688 ) ( -8192 -8192 688 ) metals/mt_sr_v16 0 22 90 1.000000 1.000000 1 8388608 0 +} +{ +( 2232 8192 8192 ) ( 2232 -8192 8192 ) ( 2232 8192 -8192 ) metals/mt_sr_v16 0 97 0 1.000000 1.000000 1 8388608 0 +( 2248 -8192 8192 ) ( 2248 8192 8192 ) ( 2248 8192 -8192 ) metals/mt_sr_v16 0 97 0 1.000000 1.000000 1 8388608 0 +( -8192 516 8192 ) ( 8192 516 8192 ) ( -8192 516 -8192 ) metals/mt_pv_m16bc 0 8 0 1.000000 1.000000 1 8390656 0 +( 8192 684 8192 ) ( -8192 684 8192 ) ( -8192 684 -8192 ) metals/mt_pv_m16bc 0 8 0 1.000000 1.000000 1 8390656 0 +( 8192 -8192 720 ) ( 8192 8192 720 ) ( -8192 -8192 720 ) metals/mt_sr_v16 0 22 90 1.000000 1.000000 1 8388608 0 +( 8192 8192 724 ) ( 8192 -8192 724 ) ( -8192 -8192 724 ) metals/mt_sr_v16 0 22 90 1.000000 1.000000 1 8388608 0 +} +{ +( 1216 8192 8192 ) ( 1216 -8192 8192 ) ( 1216 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1280 -8192 8192 ) ( 1280 8192 8192 ) ( 1280 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 320 8192 ) ( 8192 320 8192 ) ( -8192 320 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 896 8192 ) ( -8192 896 8192 ) ( -8192 896 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 792 ) ( 8192 8192 792 ) ( -8192 -8192 792 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 960 ) ( 8192 -8192 960 ) ( -8192 -8192 960 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1216 8192 8192 ) ( 1216 -8192 8192 ) ( 1216 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1280 -8192 8192 ) ( 1280 8192 8192 ) ( 1280 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 896 8192 ) ( 8192 896 8192 ) ( -8192 896 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 960 8192 ) ( -8192 960 8192 ) ( -8192 960 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 640 ) ( 8192 8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 960 ) ( 8192 -8192 960 ) ( -8192 -8192 960 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 896 -8192 8192 ) ( 896 8192 8192 ) ( 896 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1088 8192 ) ( 8192 1088 8192 ) ( -8192 1088 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 896 ) ( 8192 8192 896 ) ( -8192 -8192 896 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 960 ) ( 8192 -8192 960 ) ( -8192 -8192 960 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 896 -8192 8192 ) ( 896 8192 8192 ) ( 896 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 576 8192 ) ( 8192 576 8192 ) ( -8192 576 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1088 8192 ) ( -8192 1088 8192 ) ( -8192 1088 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 792 ) ( 8192 8192 792 ) ( -8192 -8192 792 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 960 ) ( 8192 -8192 960 ) ( -8192 -8192 960 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 832 3648 6326 ) ( 832 -1813 6326 ) ( 832 3648 -5867 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 896 -1813 6326 ) ( 896 3648 6326 ) ( 896 3648 -5867 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1280 6326 ) ( 8192 1280 6326 ) ( -8192 1280 -5867 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1344 6326 ) ( -8192 1344 6326 ) ( -8192 1344 -5867 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -1813 640 ) ( 8192 3648 640 ) ( -8192 -1813 640 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 3648 896 ) ( 8192 -1813 896 ) ( -8192 -1813 896 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2192 8192 8192 ) ( 2192 -8192 8192 ) ( 2192 8192 -8192 ) metals/mt_sr_v16 0 16 90 1.000000 1.000000 1 8390656 0 +( 2208 -8192 8192 ) ( 2208 8192 8192 ) ( 2208 8192 -8192 ) metals/mt_sr_v16 0 48 90 1.000000 1.000000 1 8388608 0 +( -8192 384 8192 ) ( 8192 384 8192 ) ( -8192 384 -8192 ) metals/mt_sr_v16 0 16 90 1.000000 1.000000 1 8390656 0 +( 8192 400 8192 ) ( -8192 400 8192 ) ( -8192 400 -8192 ) metals/mt_sr_v16 0 32 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_c21 24 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 528 ) ( 8192 -8192 528 ) ( -8192 -8192 528 ) bricks/b_sr_c21 24 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2544 8192 8192 ) ( 2544 -8192 8192 ) ( 2544 8192 -8192 ) metals/mt_sr_v16 0 16 90 1.000000 1.000000 1 8388608 0 +( 2560 -8192 8192 ) ( 2560 8192 8192 ) ( 2560 8192 -8192 ) bricks/b_sr_c21 -16 0 0 1.000000 1.000000 1 0 0 +( -8192 672 8192 ) ( 8192 672 8192 ) ( -8192 672 -8192 ) metals/mt_sr_v16 0 16 90 1.000000 1.000000 1 8388608 0 +( 8192 688 8192 ) ( -8192 688 8192 ) ( -8192 688 -8192 ) bricks/b_sr_c21 -8 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_c21 -8 32 0 1.000000 1.000000 1 0 0 +( 8192 8192 528 ) ( 8192 -8192 528 ) ( -8192 -8192 528 ) bricks/b_sr_c21 -8 32 0 1.000000 1.000000 1 0 0 +} +{ +( 2560 8192 8192 ) ( 2560 -8192 8192 ) ( 2560 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 2752 -8192 8192 ) ( 2752 8192 8192 ) ( 2752 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 688 8192 ) ( 8192 688 8192 ) ( -8192 688 -8192 ) bricks/b_sr_20ag 0 -2 0 1.000000 1.000000 1 0 0 +( 8192 704 8192 ) ( -8192 704 8192 ) ( -8192 704 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2752 8192 8192 ) ( 2752 -8192 8192 ) ( 2752 8192 -8192 ) bricks/b_sr_20ag 0 -2 0 1.000000 1.000000 1 0 0 +( 2768 -8192 8192 ) ( 2768 8192 8192 ) ( 2768 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( -8192 128 8192 ) ( 8192 128 8192 ) ( -8192 128 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 688 8192 ) ( -8192 688 8192 ) ( -8192 688 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2752 8192 8192 ) ( 2752 -8192 8192 ) ( 2752 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2768 -8192 8192 ) ( 2768 8192 8192 ) ( 2768 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( -8192 128 8192 ) ( 8192 128 8192 ) ( -8192 128 -8192 ) bricks/b_sr_20ag -16 0 0 1.000000 1.000000 1 0 0 +( 8192 688 8192 ) ( -8192 688 8192 ) ( -8192 688 -8192 ) bricks/b_sr_20ag -16 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 640 ) ( 8192 -8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_20ag -16 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2482 4369 8192 ) ( 2482 -3823 8192 ) ( 2482 4369 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 536936448 128 0 +( 2510 -3823 8192 ) ( 2510 4369 8192 ) ( 2510 4369 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 536936448 128 0 +( -5817 546 8192 ) ( 6926 546 8192 ) ( -5817 546 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 536936448 128 0 +( 6926 548 8192 ) ( -5817 548 8192 ) ( -5817 548 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 536936448 128 0 +( 6926 -3823 256 ) ( 6926 4369 256 ) ( -5817 -3823 256 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 536936448 128 0 +( 6926 4369 560 ) ( 6926 -3823 560 ) ( -5817 -3823 560 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 536936448 128 0 +} +{ +( -8192 544 8192 ) ( 8192 544 8192 ) ( -8192 544 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 546 8192 ) ( -8192 546 8192 ) ( -8192 546 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 504 ) ( 8192 8192 504 ) ( -8192 -8192 504 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 508 ) ( 8192 -8192 508 ) ( -8192 -8192 508 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( -1460 8428 8192 ) ( 5866 -6225 8192 ) ( 5866 -6225 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( -1873 -8222 8192 ) ( 5453 6431 8192 ) ( 5453 6431 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -8192 544 8192 ) ( 8192 544 8192 ) ( -8192 544 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 546 8192 ) ( -8192 546 8192 ) ( -8192 546 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 532 ) ( 8192 8192 532 ) ( -8192 -8192 532 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 536 ) ( 8192 -8192 536 ) ( -8192 -8192 536 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( -1460 8428 8192 ) ( 5866 -6225 8192 ) ( 5866 -6225 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( -1873 -8222 8192 ) ( 5453 6431 8192 ) ( 5453 6431 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -8192 544 8192 ) ( 8192 544 8192 ) ( -8192 544 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 546 8192 ) ( -8192 546 8192 ) ( -8192 546 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 476 ) ( 8192 8192 476 ) ( -8192 -8192 476 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 480 ) ( 8192 -8192 480 ) ( -8192 -8192 480 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( -1460 8428 8192 ) ( 5866 -6225 8192 ) ( 5866 -6225 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( -1873 -8222 8192 ) ( 5453 6431 8192 ) ( 5453 6431 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -8192 544 8192 ) ( 8192 544 8192 ) ( -8192 544 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 546 8192 ) ( -8192 546 8192 ) ( -8192 546 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 448 ) ( 8192 8192 448 ) ( -8192 -8192 448 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 452 ) ( 8192 -8192 452 ) ( -8192 -8192 452 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( -1460 8428 8192 ) ( 5866 -6225 8192 ) ( 5866 -6225 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( -1873 -8222 8192 ) ( 5453 6431 8192 ) ( 5453 6431 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -8192 544 8192 ) ( 8192 544 8192 ) ( -8192 544 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 546 8192 ) ( -8192 546 8192 ) ( -8192 546 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 420 ) ( 8192 8192 420 ) ( -8192 -8192 420 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 424 ) ( 8192 -8192 424 ) ( -8192 -8192 424 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( -1460 8428 8192 ) ( 5866 -6225 8192 ) ( 5866 -6225 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( -1873 -8222 8192 ) ( 5453 6431 8192 ) ( 5453 6431 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -8192 544 8192 ) ( 8192 544 8192 ) ( -8192 544 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 546 8192 ) ( -8192 546 8192 ) ( -8192 546 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 392 ) ( 8192 8192 392 ) ( -8192 -8192 392 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 396 ) ( 8192 -8192 396 ) ( -8192 -8192 396 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( -1460 8428 8192 ) ( 5866 -6225 8192 ) ( 5866 -6225 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( -1873 -8222 8192 ) ( 5453 6431 8192 ) ( 5453 6431 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -8192 544 8192 ) ( 8192 544 8192 ) ( -8192 544 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 546 8192 ) ( -8192 546 8192 ) ( -8192 546 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 364 ) ( 8192 8192 364 ) ( -8192 -8192 364 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 368 ) ( 8192 -8192 368 ) ( -8192 -8192 368 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( -1460 8428 8192 ) ( 5866 -6225 8192 ) ( 5866 -6225 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( -1873 -8222 8192 ) ( 5453 6431 8192 ) ( 5453 6431 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -8192 544 8192 ) ( 8192 544 8192 ) ( -8192 544 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 546 8192 ) ( -8192 546 8192 ) ( -8192 546 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 336 ) ( 8192 8192 336 ) ( -8192 -8192 336 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 340 ) ( 8192 -8192 340 ) ( -8192 -8192 340 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( -1460 8428 8192 ) ( 5866 -6225 8192 ) ( 5866 -6225 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( -1873 -8222 8192 ) ( 5453 6431 8192 ) ( 5453 6431 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -8192 544 8192 ) ( 8192 544 8192 ) ( -8192 544 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 546 8192 ) ( -8192 546 8192 ) ( -8192 546 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 308 ) ( 8192 8192 308 ) ( -8192 -8192 308 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 312 ) ( 8192 -8192 312 ) ( -8192 -8192 312 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( -1460 8428 8192 ) ( 5866 -6225 8192 ) ( 5866 -6225 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( -1873 -8222 8192 ) ( 5453 6431 8192 ) ( 5453 6431 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -8192 544 8192 ) ( 8192 544 8192 ) ( -8192 544 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 546 8192 ) ( -8192 546 8192 ) ( -8192 546 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 280 ) ( 8192 8192 280 ) ( -8192 -8192 280 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 284 ) ( 8192 -8192 284 ) ( -8192 -8192 284 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( -1460 8428 8192 ) ( 5866 -6225 8192 ) ( 5866 -6225 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( -1873 -8222 8192 ) ( 5453 6431 8192 ) ( 5453 6431 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -8192 544 8192 ) ( 8192 544 8192 ) ( -8192 544 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 548 8192 ) ( -8192 548 8192 ) ( -8192 548 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 552 ) ( 8192 -8192 552 ) ( -8192 -8192 552 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 5895 -6211 8192 ) ( -1431 8443 8192 ) ( -1431 8443 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 5453 6431 8192 ) ( -1873 -8222 8192 ) ( 5453 6431 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -8192 544 8192 ) ( 8192 544 8192 ) ( -8192 544 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 548 8192 ) ( -8192 548 8192 ) ( -8192 548 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 552 ) ( 8192 -8192 552 ) ( -8192 -8192 552 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 5866 -6225 8192 ) ( -1460 8428 8192 ) ( 5866 -6225 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +( 5425 6446 8192 ) ( -1901 -8207 8192 ) ( -1901 -8207 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( 2432 8192 8192 ) ( 2432 -8192 8192 ) ( 2432 8192 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8390656 0 +( 2560 -8192 8192 ) ( 2560 8192 8192 ) ( 2560 8192 -8192 ) bricks/c_sr_m2c -8 0 90 1.000000 1.000000 1 0 0 +( -8192 656 8192 ) ( 8192 656 8192 ) ( -8192 656 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8390656 0 +( 8192 688 8192 ) ( -8192 688 8192 ) ( -8192 688 -8192 ) bricks/c_sr_m2c -8 0 90 1.000000 1.000000 1 0 0 +( 8192 -8192 528 ) ( 8192 8192 528 ) ( -8192 -8192 528 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 560 ) ( 8192 -8192 560 ) ( -8192 -8192 560 ) bricks/c_sr_m2c 8 0 90 1.000000 1.000000 1 0 0 +} +{ +( 2536 8192 8192 ) ( 2536 -8192 8192 ) ( 2536 8192 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8390656 0 +( 2560 -8192 8192 ) ( 2560 8192 8192 ) ( 2560 8192 -8192 ) bricks/c_sr_m2c -8 0 90 1.000000 1.000000 1 0 0 +( -8192 544 8192 ) ( 8192 544 8192 ) ( -8192 544 -8192 ) bricks/c_sr_m2c -8 0 90 1.000000 1.000000 1 0 0 +( 8192 656 8192 ) ( -8192 656 8192 ) ( -8192 656 -8192 ) bricks/c_sr_m2c -8 0 90 1.000000 1.000000 1 0 0 +( 8192 -8192 528 ) ( 8192 8192 528 ) ( -8192 -8192 528 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 560 ) ( 8192 -8192 560 ) ( -8192 -8192 560 ) bricks/c_sr_m2c 8 0 90 1.000000 1.000000 1 0 0 +} +{ +( 2432 8192 8192 ) ( 2432 -8192 8192 ) ( 2432 8192 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8388608 0 +( 2456 -8192 8192 ) ( 2456 8192 8192 ) ( 2456 8192 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8390656 0 +( -8192 544 8192 ) ( 8192 544 8192 ) ( -8192 544 -8192 ) bricks/c_sr_m2c -8 0 90 1.000000 1.000000 1 0 0 +( 8192 656 8192 ) ( -8192 656 8192 ) ( -8192 656 -8192 ) bricks/c_sr_m2c -8 0 90 1.000000 1.000000 1 0 0 +( 8192 -8192 528 ) ( 8192 8192 528 ) ( -8192 -8192 528 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 560 ) ( 8192 -8192 560 ) ( -8192 -8192 560 ) bricks/c_sr_m2c 8 0 90 1.000000 1.000000 1 0 0 +} +{ +( 2192 8192 10068 ) ( 2192 -8192 10068 ) ( 2192 8192 -10412 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2432 -8192 10068 ) ( 2432 8192 10068 ) ( 2432 8192 -10412 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 480 10068 ) ( 8192 480 10068 ) ( -8192 480 -10412 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 512 10068 ) ( -8192 512 10068 ) ( -8192 512 -10412 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 528 ) ( 8192 8192 528 ) ( -8192 -8192 528 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 0 8388608 0 +( 8192 8192 688 ) ( 8192 -8192 688 ) ( -8192 -8192 688 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2192 8192 8192 ) ( 2192 -8192 8192 ) ( 2192 8192 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 2560 -8192 8192 ) ( 2560 8192 8192 ) ( 2560 8192 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( -8192 384 8192 ) ( 8192 384 8192 ) ( -8192 384 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 512 8192 ) ( -8192 512 8192 ) ( -8192 512 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 688 ) ( 8192 8192 688 ) ( -8192 -8192 688 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 768 ) ( 8192 -8192 768 ) ( -8192 -8192 768 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2432 3603 8192 ) ( 2432 -2950 8192 ) ( 2432 3603 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8390656 0 +( 2560 -2950 8192 ) ( 2560 3603 8192 ) ( 2560 3603 -8192 ) floors/rf_sr_m2 -24 -32 90 1.000000 1.000000 1 2097152 0 +( -8192 480 8192 ) ( 8192 480 8192 ) ( -8192 480 -8192 ) floors/rf_sr_m2 -24 -32 90 1.000000 1.000000 1 2097152 0 +( 8192 544 8192 ) ( -8192 544 8192 ) ( -8192 544 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8390656 0 +( 8192 -2950 528 ) ( 8192 3603 528 ) ( -8192 -2950 528 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 0 0 +( 8192 3603 560 ) ( 8192 -2950 560 ) ( -8192 -2950 560 ) bricks/c_sr_m2c 8 0 90 1.000000 1.000000 1 0 0 +} +{ +( 2200 6240 8192 ) ( 2200 -6048 8192 ) ( 2200 6240 -8192 ) floors/rf_sr_m2 -24 -32 90 1.000000 1.000000 1 2097152 0 +( 2752 -6048 8192 ) ( 2752 6240 8192 ) ( 2752 6240 -8192 ) floors/rf_sr_m2 -24 -32 90 1.000000 1.000000 1 2097152 0 +( -22526 384 8192 ) ( 16457 384 8192 ) ( -22526 384 -8192 ) floors/rf_sr_m2 -24 -32 90 1.000000 1.000000 1 2097152 0 +( 16457 480 8192 ) ( -22526 480 8192 ) ( -22526 480 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8390656 0 +( 16457 -6048 528 ) ( 16457 6240 528 ) ( -22526 -6048 528 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 0 0 +( 16457 6240 560 ) ( 16457 -6048 560 ) ( -22526 -6048 560 ) bricks/c_sr_m2c -24 -16 0 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2192 -8192 8192 ) ( 2192 8192 8192 ) ( 2192 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 352 8192 ) ( 8192 352 8192 ) ( -8192 352 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 384 8192 ) ( -8192 384 8192 ) ( -8192 384 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 536 ) ( 8192 8192 536 ) ( -8192 -8192 536 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 688 ) ( 8192 -8192 688 ) ( -8192 -8192 688 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 384 8192 ) ( 8192 384 8192 ) ( -8192 384 -8192 ) bricks/b_sr_20 -8 0 0 1.000000 1.000000 1 0 0 +( 8192 480 8192 ) ( -8192 480 8192 ) ( -8192 480 -8192 ) bricks/b_sr_20 -8 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 536 ) ( 8192 8192 536 ) ( -8192 -8192 536 ) bricks/b_sr_20 -8 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 560 ) ( 8192 -8192 560 ) ( -8192 -8192 560 ) metals/mt_pv_m16k -8 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( 2560 3835 8192 ) ( 2560 -3036 8192 ) ( 2560 3835 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 2624 -3036 8192 ) ( 2624 3835 8192 ) ( 2624 3835 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( -1024 480 8192 ) ( 4437 480 8192 ) ( -1024 480 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 4437 688 8192 ) ( -1024 688 8192 ) ( -1024 688 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 4437 -3036 640 ) ( 4437 3835 640 ) ( -1024 -3036 640 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 4437 3835 768 ) ( 4437 -3036 768 ) ( -1024 -3036 768 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2192 8192 8192 ) ( 2192 -8192 8192 ) ( 2192 8192 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 2752 -8192 8192 ) ( 2752 8192 8192 ) ( 2752 8192 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( -13610 192 8192 ) ( 11322 192 8192 ) ( -13610 192 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 11322 384 8192 ) ( -13610 384 8192 ) ( -13610 384 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 11322 -8192 640 ) ( 11322 8192 640 ) ( -13610 -8192 640 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 11322 8192 768 ) ( 11322 -8192 768 ) ( -13610 -8192 768 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2560 5287 4711 ) ( 2560 -4755 4711 ) ( 2560 5287 -4364 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2624 -4755 4711 ) ( 2624 5287 4711 ) ( 2624 5287 -4364 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -1024 384 4711 ) ( 4437 384 4711 ) ( -1024 384 -4364 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 4437 688 4711 ) ( -1024 688 4711 ) ( -1024 688 -4364 ) metals/mt_sr_v13 0 0 0 1.000000 1.000000 1 0 0 +( 4437 -4755 384 ) ( 4437 5287 384 ) ( -1024 -4755 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 0 0 +( 4437 5287 528 ) ( 4437 -4755 528 ) ( -1024 -4755 528 ) metals/mt_sr_v13 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2192 8192 8076 ) ( 2192 -8192 8076 ) ( 2192 8192 -8056 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2752 -8192 8076 ) ( 2752 8192 8076 ) ( 2752 8192 -8056 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -13610 192 8076 ) ( 11322 192 8076 ) ( -13610 192 -8056 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 11322 384 8076 ) ( -13610 384 8076 ) ( -13610 384 -8056 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 11322 -8192 384 ) ( 11322 8192 384 ) ( -13610 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 0 0 +( 11322 8192 640 ) ( 11322 -8192 640 ) ( -13610 -8192 640 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2560 8192 8192 ) ( 2560 -8192 8192 ) ( 2560 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2624 -8192 8192 ) ( 2624 8192 8192 ) ( 2624 8192 -8192 ) props2/dragon_vz -5 -2 0 1.000000 1.000000 +( -8192 504 8192 ) ( 8192 504 8192 ) ( -8192 504 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 688 8192 ) ( -8192 688 8192 ) ( -8192 688 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2560 8192 8192 ) ( 2560 -8192 8192 ) ( 2560 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2624 -8192 8192 ) ( 2624 8192 8192 ) ( 2624 8192 -8192 ) bricks/b_sr_20ag 0 -2 0 1.000000 1.000000 1 0 0 +( -8192 384 8192 ) ( 8192 384 8192 ) ( -8192 384 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 408 8192 ) ( -8192 408 8192 ) ( -8192 408 -8192 ) bricks/b_sr_20ag 0 -2 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2752 10667 6408 ) ( 2752 -11281 6408 ) ( 2752 10667 -5880 ) metals/mt_sr_v16 32 16 0 1.000000 1.000000 0 8388608 0 +( 2816 -11281 6408 ) ( 2816 10667 6408 ) ( 2816 10667 -5880 ) bricks/b_sr_c05 0 256 0 1.000000 1.000000 +( -5990 840 6408 ) ( 7117 840 6408 ) ( -5990 840 -5880 ) bricks/b_sr_c05 0 256 0 1.000000 1.000000 +( 7117 1408 6408 ) ( -5990 1408 6408 ) ( -5990 1408 -5880 ) bricks/b_sr_c05 0 256 0 1.000000 1.000000 +( 7117 -11281 768 ) ( 7117 10667 768 ) ( -5990 -11281 768 ) bricks/b_sr_22 0 8 0 1.000000 1.000000 +( 7117 10667 792 ) ( 7117 -11281 792 ) ( -5990 -11281 792 ) floors/rf_sr_m2 0 -3 0 2.000000 2.000000 0 2097152 0 +} +{ +( 2752 10077 7596 ) ( 2752 -10775 7596 ) ( 2752 10077 -7527 ) bricks/b_sr_c31 0 -72 0 1.000000 1.000000 1 0 0 +( 2816 -10775 7596 ) ( 2816 10077 7596 ) ( 2816 10077 -7527 ) bricks/b_sr_c31 0 -72 0 1.000000 1.000000 1 0 0 +( -8192 720 7596 ) ( 8192 720 7596 ) ( -8192 720 -7527 ) bricks/b_sr_c31 0 -72 0 1.000000 1.000000 1 0 0 +( 8192 1280 7596 ) ( -8192 1280 7596 ) ( -8192 1280 -7527 ) bricks/b_sr_c31 0 -72 0 1.000000 1.000000 1 0 0 +( 8192 -10775 448 ) ( 8192 10077 448 ) ( -8192 -10775 448 ) bricks/b_sr_c31 0 -72 0 1.000000 1.000000 1 0 0 +( 8192 10077 544 ) ( 8192 -10775 544 ) ( -8192 -10775 544 ) bricks/b_sr_c31 0 -72 0 1.000000 1.000000 1 0 0 +} +{ +( 2192 8192 8192 ) ( 2192 -8192 8192 ) ( 2192 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2624 -8192 8192 ) ( 2624 8192 8192 ) ( 2624 8192 -8192 ) bricks/b_sr_20ag 0 -2 0 1.000000 1.000000 1 0 0 +( -8192 320 8192 ) ( 8192 320 8192 ) ( -8192 320 -8192 ) bricks/b_sr_20ag 0 -2 0 1.000000 1.000000 1 0 0 +( 8192 384 8192 ) ( -8192 384 8192 ) ( -8192 384 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1720 8208 8192 ) ( 1720 -8176 8192 ) ( 1720 8208 -8192 ) props/box_sr_m6 -16 0 0 1.000000 1.000000 1 134217728 0 +( 1784 -8176 8192 ) ( 1784 8208 8192 ) ( 1784 8208 -8192 ) props/box_sr_m6 -16 0 0 1.000000 1.000000 1 134217728 0 +( -3208 1232 8192 ) ( 4984 1232 8192 ) ( -3208 1232 -8192 ) props/box_sr_m6 8 0 0 1.000000 1.000000 1 134217728 0 +( 4984 1296 8192 ) ( -3208 1296 8192 ) ( -3208 1296 -8192 ) props/box_sr_m6 -16 0 0 1.000000 1.000000 1 134217728 0 +( 4984 -8176 256 ) ( 4984 8208 256 ) ( -3208 -8176 256 ) props/box_sr_m6 -16 0 0 1.000000 1.000000 1 134217728 0 +( 4984 8208 320 ) ( 4984 -8176 320 ) ( -3208 -8176 320 ) props/box_sr_m5 8 16 0 1.000000 1.000000 1 134217728 0 +} +{ +( 1656 8208 8192 ) ( 1656 -8176 8192 ) ( 1656 8208 -8192 ) props/box_sr_m6 -16 0 0 1.000000 1.000000 1 134217728 0 +( 1720 -8176 8192 ) ( 1720 8208 8192 ) ( 1720 8208 -8192 ) props/box_sr_m6 -16 0 0 1.000000 1.000000 1 134217728 0 +( -8136 1232 8192 ) ( 8248 1232 8192 ) ( -8136 1232 -8192 ) props/box_sr_m6 -16 0 0 1.000000 1.000000 1 134217728 0 +( 8248 1360 8192 ) ( -8136 1360 8192 ) ( -8136 1360 -8192 ) props/box_sr_m6 8 0 0 1.000000 1.000000 1 134217728 0 +( 8248 -8176 256 ) ( 8248 8208 256 ) ( -8136 -8176 256 ) props/box_sr_m6 -16 0 0 1.000000 1.000000 1 134217728 0 +( 8248 8208 320 ) ( 8248 -8176 320 ) ( -8136 -8176 320 ) props/box_sr_m6 8 16 0 1.000000 1.000000 1 134217728 0 +} +{ +( 1656 8208 8192 ) ( 1656 -8176 8192 ) ( 1656 8208 -8192 ) props/box_sr_m6 -16 0 0 1.000000 1.000000 1 134217728 0 +( 1720 -8176 8192 ) ( 1720 8208 8192 ) ( 1720 8208 -8192 ) props/box_sr_m6 -16 0 0 1.000000 1.000000 1 134217728 0 +( -3240 1168 8192 ) ( 4952 1168 8192 ) ( -3240 1168 -8192 ) props/box_sr_m6 8 0 0 1.000000 1.000000 1 134217728 0 +( 4952 1232 8192 ) ( -3240 1232 8192 ) ( -3240 1232 -8192 ) props/box_sr_m6 -16 0 0 1.000000 1.000000 1 134217728 0 +( 4952 -8176 256 ) ( 4952 8208 256 ) ( -3240 -8176 256 ) props/box_sr_m6 -16 0 0 1.000000 1.000000 1 134217728 0 +( 4952 8208 320 ) ( 4952 -8176 320 ) ( -3240 -8176 320 ) props/box_sr_m6 -16 0 0 1.000000 1.000000 1 134217728 0 +} +{ +( 1656 8208 8192 ) ( 1656 -8176 8192 ) ( 1656 8208 -8192 ) props/box_sr_m6 -16 0 0 1.000000 1.000000 1 134217728 0 +( 1720 -8176 8192 ) ( 1720 8208 8192 ) ( 1720 8208 -8192 ) props/box_sr_m6 -16 0 0 1.000000 1.000000 1 134217728 0 +( -3240 1168 8192 ) ( 4952 1168 8192 ) ( -3240 1168 -8192 ) props/box_sr_m6 8 0 0 1.000000 1.000000 1 134217728 0 +( 4952 1296 8192 ) ( -3240 1296 8192 ) ( -3240 1296 -8192 ) props/box_sr_m6 8 0 0 1.000000 1.000000 1 134217728 0 +( 4952 -8176 320 ) ( 4952 8208 320 ) ( -3240 -8176 320 ) props/box_sr_m6 -16 0 0 1.000000 1.000000 1 134217728 0 +( 4952 8208 384 ) ( 4952 -8176 384 ) ( -3240 -8176 384 ) props/box_sr_m5 8 16 0 1.000000 1.000000 1 134217728 0 +} +{ +( 2456 8192 8192 ) ( 2456 -8192 8192 ) ( 2456 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2624 -8192 8192 ) ( 2624 8192 8192 ) ( 2624 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -3587 704 8192 ) ( 5712 704 8192 ) ( -3587 704 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 5712 840 8192 ) ( -3587 840 8192 ) ( -3587 840 -8192 ) bricks/b_sr_c31 0 -72 0 1.000000 1.000000 1 0 0 +( 5712 -8192 488 ) ( 5712 8192 488 ) ( -3587 -8192 488 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 5712 8192 552 ) ( 5712 -8192 552 ) ( -3587 -8192 552 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 2192 -8192 8192 ) ( 2192 8192 8192 ) ( 2192 8192 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( -8192 352 8192 ) ( 8192 352 8192 ) ( -8192 352 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 480 8192 ) ( -8192 480 8192 ) ( -8192 480 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 688 ) ( 8192 8192 688 ) ( -8192 -8192 688 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 768 ) ( 8192 -8192 768 ) ( -8192 -8192 768 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1776 8792 8192 ) ( 1776 -8821 8192 ) ( 1776 8792 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 1792 -8821 8192 ) ( 1792 8792 8192 ) ( 1792 8792 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 1305 192 8192 ) ( 2104 192 8192 ) ( 1305 192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2104 536 8192 ) ( 1305 536 8192 ) ( 1305 536 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2104 -8821 384 ) ( 2104 8792 384 ) ( 1305 -8821 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2104 8792 448 ) ( 2104 -8821 448 ) ( 1305 -8821 448 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1776 8192 8192 ) ( 1776 -8192 8192 ) ( 1776 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 1792 -8192 8192 ) ( 1792 8192 8192 ) ( 1792 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 1293 192 8192 ) ( 2112 192 8192 ) ( 1293 192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 2112 288 8192 ) ( 1293 288 8192 ) ( 1293 288 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 2112 -8192 256 ) ( 2112 8192 256 ) ( 1293 -8192 256 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 2112 8192 384 ) ( 2112 -8192 384 ) ( 1293 -8192 384 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1472 10136 8192 ) ( 1472 -10344 8192 ) ( 1472 10136 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 1792 -10344 8192 ) ( 1792 10136 8192 ) ( 1792 10136 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( -8192 416 8192 ) ( 8192 416 8192 ) ( -8192 416 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 536 8192 ) ( -8192 536 8192 ) ( -8192 536 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -10344 256 ) ( 8192 10136 256 ) ( -8192 -10344 256 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 10136 384 ) ( 8192 -10344 384 ) ( -8192 -10344 384 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1456 288 320 ) ( 1456 296 320 ) ( 1456 297 328 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 288 320 ) ( 1792 288 328 ) ( 1792 297 328 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 288 320 ) ( 1456 288 320 ) ( 1456 288 328 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1456 288 320 ) ( 1792 288 320 ) ( 1792 296 320 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1456 297 328 ) ( 1792 297 328 ) ( 1792 288 328 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1456 296 320 ) ( 1792 296 320 ) ( 1792 297 328 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1456 288 328 ) ( 1456 297 328 ) ( 1456 299 336 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 288 328 ) ( 1792 288 336 ) ( 1792 299 336 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 288 328 ) ( 1456 288 328 ) ( 1456 288 336 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1456 288 328 ) ( 1792 288 328 ) ( 1792 297 328 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1456 299 336 ) ( 1792 299 336 ) ( 1792 288 336 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1456 297 328 ) ( 1792 297 328 ) ( 1792 299 336 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1456 288 336 ) ( 1456 299 336 ) ( 1456 302 344 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 288 336 ) ( 1792 288 344 ) ( 1792 302 344 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 288 336 ) ( 1456 288 336 ) ( 1456 288 344 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1456 288 336 ) ( 1792 288 336 ) ( 1792 299 336 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1456 302 344 ) ( 1792 302 344 ) ( 1792 288 344 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1456 299 336 ) ( 1792 299 336 ) ( 1792 302 344 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1456 8192 8192 ) ( 1456 -8192 8192 ) ( 1456 8192 -8192 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 -8192 8192 ) ( 1792 8192 8192 ) ( 1792 8192 -8192 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( -8192 288 8192 ) ( 8192 288 8192 ) ( -8192 288 -8192 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 344 ) ( 8192 8192 344 ) ( -8192 -8192 344 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 8192 8192 352 ) ( 8192 -8192 352 ) ( -8192 -8192 352 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 8192 4404 6907 ) ( -8192 4404 6907 ) ( -8192 -4279 -6985 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1456 288 352 ) ( 1456 307 352 ) ( 1456 314 359 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 288 352 ) ( 1792 288 359 ) ( 1792 314 359 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 288 352 ) ( 1456 288 352 ) ( 1456 288 359 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1456 288 352 ) ( 1792 288 352 ) ( 1792 307 352 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1456 314 359 ) ( 1792 314 359 ) ( 1792 288 359 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1456 307 352 ) ( 1792 307 352 ) ( 1792 314 359 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1456 288 365 ) ( 1456 322 365 ) ( 1456 322 384 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 322 365 ) ( 1792 288 365 ) ( 1792 288 384 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 288 365 ) ( 1456 288 365 ) ( 1456 288 384 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1456 322 365 ) ( 1792 322 365 ) ( 1792 322 384 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1456 288 365 ) ( 1792 288 365 ) ( 1792 322 365 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1456 322 384 ) ( 1792 322 384 ) ( 1792 288 384 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +} +{ +( 1456 322 365 ) ( 1456 326 367 ) ( 1456 326 384 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 326 367 ) ( 1792 322 365 ) ( 1792 322 384 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 322 365 ) ( 1456 322 365 ) ( 1456 322 384 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1456 326 367 ) ( 1792 326 367 ) ( 1792 326 384 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1456 326 384 ) ( 1792 326 384 ) ( 1792 322 384 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1456 322 365 ) ( 1792 322 365 ) ( 1792 326 367 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1456 330 369 ) ( 1456 330 384 ) ( 1456 326 384 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 326 367 ) ( 1792 326 384 ) ( 1792 330 384 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1456 326 367 ) ( 1456 326 384 ) ( 1792 326 384 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1792 330 369 ) ( 1792 330 384 ) ( 1456 330 384 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1792 330 384 ) ( 1792 326 384 ) ( 1456 326 384 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1792 326 367 ) ( 1792 330 369 ) ( 1456 330 369 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1456 8192 8192 ) ( 1456 -8192 8192 ) ( 1456 8192 -8192 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 -8192 8192 ) ( 1792 8192 8192 ) ( 1792 8192 -8192 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( -8192 344 8192 ) ( 8192 344 8192 ) ( -8192 344 -8192 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 8192 352 8192 ) ( -8192 352 8192 ) ( -8192 352 -8192 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 372 ) ( 8192 8192 372 ) ( -8192 -8192 372 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +} +{ +( 1456 8192 8192 ) ( 1456 -8192 8192 ) ( 1456 8192 -8192 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 -8192 8192 ) ( 1792 8192 8192 ) ( 1792 8192 -8192 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( -8192 336 8192 ) ( 8192 336 8192 ) ( -8192 336 -8192 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 8192 344 8192 ) ( -8192 344 8192 ) ( -8192 344 -8192 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 8192 -8169 -692 ) ( 8192 8088 1340 ) ( -8192 8088 1340 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1456 8192 8192 ) ( 1456 -8192 8192 ) ( 1456 8192 -8192 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 -8192 8192 ) ( 1792 8192 8192 ) ( 1792 8192 -8192 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( -8192 330 8192 ) ( 8192 330 8192 ) ( -8192 330 -8192 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 8192 336 8192 ) ( -8192 336 8192 ) ( -8192 336 -8192 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 8192 -7849 -2357 ) ( 8192 7693 2823 ) ( -8192 7693 2823 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1456 288 359 ) ( 1456 314 359 ) ( 1456 322 365 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 288 359 ) ( 1792 288 365 ) ( 1792 322 365 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 288 359 ) ( 1456 288 359 ) ( 1456 288 365 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1456 288 359 ) ( 1792 288 359 ) ( 1792 314 359 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1456 322 365 ) ( 1792 322 365 ) ( 1792 288 365 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1456 314 359 ) ( 1792 314 359 ) ( 1792 322 365 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1456 416 359 ) ( 1456 416 365 ) ( 1456 382 365 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 416 359 ) ( 1792 390 359 ) ( 1792 382 365 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1456 416 359 ) ( 1792 416 359 ) ( 1792 416 365 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1456 390 359 ) ( 1792 390 359 ) ( 1792 416 359 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1456 416 365 ) ( 1792 416 365 ) ( 1792 382 365 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1456 382 365 ) ( 1792 382 365 ) ( 1792 390 359 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1456 374 369 ) ( 1456 374 384 ) ( 1456 368 384 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 368 371 ) ( 1792 368 384 ) ( 1792 374 384 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1456 368 371 ) ( 1456 368 384 ) ( 1792 368 384 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1792 374 369 ) ( 1792 374 384 ) ( 1456 374 384 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1792 374 384 ) ( 1792 368 384 ) ( 1456 368 384 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1792 368 371 ) ( 1792 374 369 ) ( 1456 374 369 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1456 368 371 ) ( 1456 368 384 ) ( 1456 360 384 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 360 372 ) ( 1792 360 384 ) ( 1792 368 384 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1456 360 372 ) ( 1456 360 384 ) ( 1792 360 384 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1792 368 371 ) ( 1792 368 384 ) ( 1456 368 384 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1792 368 384 ) ( 1792 360 384 ) ( 1456 360 384 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1792 360 372 ) ( 1792 368 371 ) ( 1456 368 371 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1456 8192 8192 ) ( 1456 -8192 8192 ) ( 1456 8192 -8192 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 -8192 8192 ) ( 1792 8192 8192 ) ( 1792 8192 -8192 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( -8192 352 8192 ) ( 8192 352 8192 ) ( -8192 352 -8192 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 8192 360 8192 ) ( -8192 360 8192 ) ( -8192 360 -8192 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 372 ) ( 8192 8192 372 ) ( -8192 -8192 372 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +} +{ +( 1456 374 369 ) ( 1456 378 367 ) ( 1456 378 384 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 378 367 ) ( 1792 374 369 ) ( 1792 374 384 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 374 369 ) ( 1456 374 369 ) ( 1456 374 384 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1456 378 367 ) ( 1792 378 367 ) ( 1792 378 384 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1456 378 384 ) ( 1792 378 384 ) ( 1792 374 384 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1456 374 369 ) ( 1792 374 369 ) ( 1792 378 367 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1456 378 367 ) ( 1456 382 365 ) ( 1456 382 384 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 382 365 ) ( 1792 378 367 ) ( 1792 378 384 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 378 367 ) ( 1456 378 367 ) ( 1456 378 384 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1456 382 365 ) ( 1792 382 365 ) ( 1792 382 384 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1456 382 384 ) ( 1792 382 384 ) ( 1792 378 384 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1456 378 367 ) ( 1792 378 367 ) ( 1792 382 365 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1456 8192 8192 ) ( 1456 -8192 8192 ) ( 1456 8192 -8192 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 -8192 8192 ) ( 1792 8192 8192 ) ( 1792 8192 -8192 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( -8192 382 8192 ) ( 8192 382 8192 ) ( -8192 382 -8192 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 8192 416 8192 ) ( -8192 416 8192 ) ( -8192 416 -8192 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 365 ) ( 8192 8192 365 ) ( -8192 -8192 365 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +} +{ +( 1456 416 352 ) ( 1456 416 359 ) ( 1456 390 359 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 416 352 ) ( 1792 397 352 ) ( 1792 390 359 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1456 416 352 ) ( 1792 416 352 ) ( 1792 416 359 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1456 397 352 ) ( 1792 397 352 ) ( 1792 416 352 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1456 416 359 ) ( 1792 416 359 ) ( 1792 390 359 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1792 397 352 ) ( 1456 397 352 ) ( 1456 390 359 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1456 8192 8192 ) ( 1456 -8192 8192 ) ( 1456 8192 -8192 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 -8192 8192 ) ( 1792 8192 8192 ) ( 1792 8192 -8192 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 8192 416 8192 ) ( -8192 416 8192 ) ( -8192 416 -8192 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 344 ) ( 8192 8192 344 ) ( -8192 -8192 344 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 8192 8192 352 ) ( 8192 -8192 352 ) ( -8192 -8192 352 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( -8192 -3898 7224 ) ( 8192 -3898 7224 ) ( 8192 4785 -6669 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1456 8192 8192 ) ( 1456 -8192 8192 ) ( 1456 8192 -8192 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 -8192 8192 ) ( 1792 8192 8192 ) ( 1792 8192 -8192 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 8192 416 8192 ) ( -8192 416 8192 ) ( -8192 416 -8192 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 336 ) ( 8192 8192 336 ) ( -8192 -8192 336 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 8192 8192 344 ) ( 8192 -8192 344 ) ( -8192 -8192 344 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( -8192 -2410 7844 ) ( 8192 -2410 7844 ) ( 8192 3341 -7495 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1456 416 336 ) ( 1456 405 336 ) ( 1456 407 328 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 407 328 ) ( 1792 405 336 ) ( 1792 416 336 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 416 328 ) ( 1792 416 336 ) ( 1456 416 336 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1792 407 328 ) ( 1792 416 328 ) ( 1456 416 328 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1792 416 336 ) ( 1792 405 336 ) ( 1456 405 336 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1456 407 328 ) ( 1456 405 336 ) ( 1792 405 336 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1456 416 320 ) ( 1456 416 328 ) ( 1456 407 328 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1792 416 320 ) ( 1792 408 320 ) ( 1792 407 328 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 1 0 0 +( 1456 416 320 ) ( 1792 416 320 ) ( 1792 416 328 ) bricks/b_sr_25 -64 0 180 1.000000 1.000000 1 0 0 +( 1456 408 320 ) ( 1792 408 320 ) ( 1792 416 320 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1456 416 328 ) ( 1792 416 328 ) ( 1792 407 328 ) bricks/b_sr_25 -32 1 90 1.000000 1.000000 1 0 0 +( 1792 408 320 ) ( 1456 408 320 ) ( 1456 407 328 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1776 8192 8192 ) ( 1776 -8192 8192 ) ( 1776 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2192 -8192 8192 ) ( 2192 8192 8192 ) ( 2192 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -3935 192 8192 ) ( 5747 192 8192 ) ( -3935 192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 5747 512 8192 ) ( -3935 512 8192 ) ( -3935 512 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 5747 -8192 448 ) ( 5747 8192 448 ) ( -3935 -8192 448 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 5747 8192 512 ) ( 5747 -8192 512 ) ( -3935 -8192 512 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1032 8192 8192 ) ( 1032 -8192 8192 ) ( 1032 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 1088 -8192 8192 ) ( 1088 8192 8192 ) ( 1088 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 448 8192 ) ( 8192 448 8192 ) ( -8192 448 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 1344 8192 ) ( -8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 1032 8192 8192 ) ( 1032 -8192 8192 ) ( 1032 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 1088 -8192 8192 ) ( 1088 8192 8192 ) ( 1088 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 288 8192 ) ( 8192 288 8192 ) ( -8192 288 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 448 8192 ) ( -8192 448 8192 ) ( -8192 448 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 1408 3648 8192 ) ( 1408 -3179 8192 ) ( 1408 3648 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 1456 -3179 8192 ) ( 1456 3648 8192 ) ( 1456 3648 -8192 ) bricks/b_sr_20 -23 0 0 1.000000 1.000000 +( -5792 288 8192 ) ( 6496 288 8192 ) ( -5792 288 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 6496 448 8192 ) ( -5792 448 8192 ) ( -5792 448 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 6496 -3179 256 ) ( 6496 3648 256 ) ( -5792 -3179 256 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 6496 3648 384 ) ( 6496 -3179 384 ) ( -5792 -3179 384 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1088 8192 8192 ) ( 1088 -8192 8192 ) ( 1088 8192 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 1456 -8192 8192 ) ( 1456 8192 8192 ) ( 1456 8192 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( -7805 288 8192 ) ( 7896 288 8192 ) ( -7805 288 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 7896 416 8192 ) ( -7805 416 8192 ) ( -7805 416 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 7896 -8192 240 ) ( 7896 8192 240 ) ( -7805 -8192 240 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 7896 8192 256 ) ( 7896 -8192 256 ) ( -7805 -8192 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +} +{ +( 960 8192 8192 ) ( 960 -8192 8192 ) ( 960 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 1792 -8192 8192 ) ( 1792 8192 8192 ) ( 1792 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 256 8192 ) ( 8192 256 8192 ) ( -8192 256 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 288 8192 ) ( -8192 288 8192 ) ( -8192 288 -8192 ) bricks/c_pv_m2 0 -1 180 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 48 ) ( 8192 -8192 48 ) ( -8192 -8192 48 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 960 8192 8192 ) ( 960 -8192 8192 ) ( 960 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 1792 -8192 8192 ) ( 1792 8192 8192 ) ( 1792 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 256 8192 ) ( 8192 256 8192 ) ( -8192 256 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 288 8192 ) ( -8192 288 8192 ) ( -8192 288 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 48 ) ( 8192 8192 48 ) ( -8192 -8192 48 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 1088 8192 8192 ) ( 1088 -8192 8192 ) ( 1088 8192 -8192 ) bricks/c_pv_m2 0 -1 180 1.000000 1.000000 1 0 0 +( 1592 -8192 8192 ) ( 1592 8192 8192 ) ( 1592 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 416 8192 ) ( 8192 416 8192 ) ( -8192 416 -8192 ) bricks/c_pv_m2 0 -1 180 1.000000 1.000000 1 0 0 +( 8192 448 8192 ) ( -8192 448 8192 ) ( -8192 448 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 48 ) ( 8192 -8192 48 ) ( -8192 -8192 48 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1432 8192 8192 ) ( 1432 -8192 8192 ) ( 1432 8192 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( 1456 -8192 8192 ) ( 1456 8192 8192 ) ( 1456 8192 -8192 ) bricks/s_sr_m12ab 0 -248 0 2.000000 2.000000 1 0 0 +( -8192 288 8192 ) ( 8192 288 8192 ) ( -8192 288 -8192 ) bricks/s_sr_m12ab 168 -248 0 2.000000 2.000000 1 0 0 +( 8192 416 8192 ) ( -8192 416 8192 ) ( -8192 416 -8192 ) bricks/s_sr_m12ab 168 -248 0 2.000000 2.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/s_sr_m12ab 168 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 16 ) ( 8192 -8192 16 ) ( -8192 -8192 16 ) bricks/c_sr_m2c -544 32 0 1.000000 1.000000 1 67108864 0 +} +{ +( 1456 8192 8192 ) ( 1456 -8192 8192 ) ( 1456 8192 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( 1480 -8192 8192 ) ( 1480 8192 8192 ) ( 1480 8192 -8192 ) bricks/s_sr_m12ab 0 -240 0 2.000000 2.000000 1 0 0 +( -8192 288 8192 ) ( 8192 288 8192 ) ( -8192 288 -8192 ) bricks/s_sr_m12ab 156 -240 0 2.000000 2.000000 1 0 0 +( 8192 416 8192 ) ( -8192 416 8192 ) ( -8192 416 -8192 ) bricks/s_sr_m12ab 156 -240 0 2.000000 2.000000 1 0 0 +( 8192 -8192 16 ) ( 8192 8192 16 ) ( -8192 -8192 16 ) bricks/s_sr_m12ab 156 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 32 ) ( 8192 -8192 32 ) ( -8192 -8192 32 ) bricks/c_sr_m2c -528 32 0 1.000000 1.000000 1 67108864 0 +} +{ +( 1480 8192 8192 ) ( 1480 -8192 8192 ) ( 1480 8192 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( 1504 -8192 8192 ) ( 1504 8192 8192 ) ( 1504 8192 -8192 ) bricks/s_sr_m12ab 0 -232 0 2.000000 2.000000 1 0 0 +( -8192 288 8192 ) ( 8192 288 8192 ) ( -8192 288 -8192 ) bricks/s_sr_m12ab 144 -232 0 2.000000 2.000000 1 0 0 +( 8192 416 8192 ) ( -8192 416 8192 ) ( -8192 416 -8192 ) bricks/s_sr_m12ab 144 -232 0 2.000000 2.000000 1 0 0 +( 8192 -8192 32 ) ( 8192 8192 32 ) ( -8192 -8192 32 ) bricks/s_sr_m12ab 144 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 48 ) ( 8192 -8192 48 ) ( -8192 -8192 48 ) bricks/c_sr_m2c -528 32 0 1.000000 1.000000 1 67108864 0 +} +{ +( 1504 8192 8192 ) ( 1504 -8192 8192 ) ( 1504 8192 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( 1528 -8192 8192 ) ( 1528 8192 8192 ) ( 1528 8192 -8192 ) bricks/s_sr_m12ab 0 -224 0 2.000000 2.000000 1 0 0 +( -8192 288 8192 ) ( 8192 288 8192 ) ( -8192 288 -8192 ) bricks/s_sr_m12ab 132 -224 0 2.000000 2.000000 1 0 0 +( 8192 416 8192 ) ( -8192 416 8192 ) ( -8192 416 -8192 ) bricks/s_sr_m12ab 132 -224 0 2.000000 2.000000 1 0 0 +( 8192 -8192 48 ) ( 8192 8192 48 ) ( -8192 -8192 48 ) bricks/s_sr_m12ab 132 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 64 ) ( 8192 -8192 64 ) ( -8192 -8192 64 ) bricks/c_sr_m2c -528 32 0 1.000000 1.000000 1 67108864 0 +} +{ +( 1528 8192 8192 ) ( 1528 -8192 8192 ) ( 1528 8192 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( 1552 -8192 8192 ) ( 1552 8192 8192 ) ( 1552 8192 -8192 ) bricks/s_sr_m12ab 0 -216 0 2.000000 2.000000 1 0 0 +( -8192 288 8192 ) ( 8192 288 8192 ) ( -8192 288 -8192 ) bricks/s_sr_m12ab 120 -216 0 2.000000 2.000000 1 0 0 +( 8192 416 8192 ) ( -8192 416 8192 ) ( -8192 416 -8192 ) bricks/s_sr_m12ab 120 -216 0 2.000000 2.000000 1 0 0 +( 8192 -8192 64 ) ( 8192 8192 64 ) ( -8192 -8192 64 ) bricks/s_sr_m12ab 120 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 80 ) ( 8192 -8192 80 ) ( -8192 -8192 80 ) bricks/c_sr_m2c -528 32 0 1.000000 1.000000 1 67108864 0 +} +{ +( 1552 8192 8192 ) ( 1552 -8192 8192 ) ( 1552 8192 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( 1576 -8192 8192 ) ( 1576 8192 8192 ) ( 1576 8192 -8192 ) bricks/s_sr_m12ab 0 -208 0 2.000000 2.000000 1 0 0 +( -8192 288 8192 ) ( 8192 288 8192 ) ( -8192 288 -8192 ) bricks/s_sr_m12ab 108 -208 0 2.000000 2.000000 1 0 0 +( 8192 416 8192 ) ( -8192 416 8192 ) ( -8192 416 -8192 ) bricks/s_sr_m12ab 108 -208 0 2.000000 2.000000 1 0 0 +( 8192 -8192 80 ) ( 8192 8192 80 ) ( -8192 -8192 80 ) bricks/s_sr_m12ab 108 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 96 ) ( 8192 -8192 96 ) ( -8192 -8192 96 ) bricks/c_sr_m2c -528 32 0 1.000000 1.000000 1 67108864 0 +} +{ +( 1576 8192 8192 ) ( 1576 -8192 8192 ) ( 1576 8192 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( 1600 -8192 8192 ) ( 1600 8192 8192 ) ( 1600 8192 -8192 ) bricks/s_sr_m12ab 0 -200 0 2.000000 2.000000 1 0 0 +( -8192 288 8192 ) ( 8192 288 8192 ) ( -8192 288 -8192 ) bricks/s_sr_m12ab 96 -200 0 2.000000 2.000000 1 0 0 +( 8192 416 8192 ) ( -8192 416 8192 ) ( -8192 416 -8192 ) bricks/s_sr_m12ab 96 -200 0 2.000000 2.000000 1 0 0 +( 8192 -8192 96 ) ( 8192 8192 96 ) ( -8192 -8192 96 ) bricks/s_sr_m12ab 96 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 112 ) ( 8192 -8192 112 ) ( -8192 -8192 112 ) bricks/c_sr_m2c -528 32 0 1.000000 1.000000 1 67108864 0 +} +{ +( 1600 8192 8192 ) ( 1600 -8192 8192 ) ( 1600 8192 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( 1624 -8192 8192 ) ( 1624 8192 8192 ) ( 1624 8192 -8192 ) bricks/s_sr_m12ab 0 -192 0 2.000000 2.000000 1 0 0 +( -8192 288 8192 ) ( 8192 288 8192 ) ( -8192 288 -8192 ) bricks/s_sr_m12ab 84 -192 0 2.000000 2.000000 1 0 0 +( 8192 416 8192 ) ( -8192 416 8192 ) ( -8192 416 -8192 ) bricks/s_sr_m12ab 84 -192 0 2.000000 2.000000 1 0 0 +( 8192 -8192 112 ) ( 8192 8192 112 ) ( -8192 -8192 112 ) bricks/s_sr_m12ab 84 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/c_sr_m2c -520 32 0 1.000000 1.000000 1 67108864 0 +} +{ +( 1624 8192 8192 ) ( 1624 -8192 8192 ) ( 1624 8192 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( 1648 -8192 8192 ) ( 1648 8192 8192 ) ( 1648 8192 -8192 ) bricks/s_sr_m12ab 0 -184 0 2.000000 2.000000 1 0 0 +( -8192 288 8192 ) ( 8192 288 8192 ) ( -8192 288 -8192 ) bricks/s_sr_m12ab 72 -184 0 2.000000 2.000000 1 0 0 +( 8192 416 8192 ) ( -8192 416 8192 ) ( -8192 416 -8192 ) bricks/s_sr_m12ab 72 -184 0 2.000000 2.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/s_sr_m12ab 72 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/c_sr_m2c -520 32 0 1.000000 1.000000 1 67108864 0 +} +{ +( 1648 8192 8192 ) ( 1648 -8192 8192 ) ( 1648 8192 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( 1672 -8192 8192 ) ( 1672 8192 8192 ) ( 1672 8192 -8192 ) bricks/s_sr_m12ab 0 -176 0 2.000000 2.000000 1 0 0 +( -8192 288 8192 ) ( 8192 288 8192 ) ( -8192 288 -8192 ) bricks/s_sr_m12ab 60 -176 0 2.000000 2.000000 1 0 0 +( 8192 416 8192 ) ( -8192 416 8192 ) ( -8192 416 -8192 ) bricks/s_sr_m12ab 60 -176 0 2.000000 2.000000 1 0 0 +( 8192 -8192 144 ) ( 8192 8192 144 ) ( -8192 -8192 144 ) bricks/s_sr_m12ab 60 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 160 ) ( 8192 -8192 160 ) ( -8192 -8192 160 ) bricks/c_sr_m2c -520 32 0 1.000000 1.000000 1 67108864 0 +} +{ +( 1672 8192 8192 ) ( 1672 -8192 8192 ) ( 1672 8192 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( 1696 -8192 8192 ) ( 1696 8192 8192 ) ( 1696 8192 -8192 ) bricks/s_sr_m12ab 0 -168 0 2.000000 2.000000 1 0 0 +( -8192 288 8192 ) ( 8192 288 8192 ) ( -8192 288 -8192 ) bricks/s_sr_m12ab 48 -168 0 2.000000 2.000000 1 0 0 +( 8192 416 8192 ) ( -8192 416 8192 ) ( -8192 416 -8192 ) bricks/s_sr_m12ab 48 -168 0 2.000000 2.000000 1 0 0 +( 8192 -8192 160 ) ( 8192 8192 160 ) ( -8192 -8192 160 ) bricks/s_sr_m12ab 48 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 176 ) ( 8192 -8192 176 ) ( -8192 -8192 176 ) bricks/c_sr_m2c -520 32 0 1.000000 1.000000 1 67108864 0 +} +{ +( 1696 8192 8192 ) ( 1696 -8192 8192 ) ( 1696 8192 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( 1720 -8192 8192 ) ( 1720 8192 8192 ) ( 1720 8192 -8192 ) bricks/s_sr_m12ab 0 -160 0 2.000000 2.000000 1 0 0 +( -8192 288 8192 ) ( 8192 288 8192 ) ( -8192 288 -8192 ) bricks/s_sr_m12ab 36 -160 0 2.000000 2.000000 1 0 0 +( 8192 416 8192 ) ( -8192 416 8192 ) ( -8192 416 -8192 ) bricks/s_sr_m12ab 36 -160 0 2.000000 2.000000 1 0 0 +( 8192 -8192 176 ) ( 8192 8192 176 ) ( -8192 -8192 176 ) bricks/s_sr_m12ab 36 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) bricks/c_sr_m2c -512 32 0 1.000000 1.000000 1 67108864 0 +} +{ +( 1720 8192 8192 ) ( 1720 -8192 8192 ) ( 1720 8192 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( 1744 -8192 8192 ) ( 1744 8192 8192 ) ( 1744 8192 -8192 ) bricks/s_sr_m12ab 0 -152 0 2.000000 2.000000 1 0 0 +( -8192 288 8192 ) ( 8192 288 8192 ) ( -8192 288 -8192 ) bricks/s_sr_m12ab 24 -152 0 2.000000 2.000000 1 0 0 +( 8192 416 8192 ) ( -8192 416 8192 ) ( -8192 416 -8192 ) bricks/s_sr_m12ab 24 -152 0 2.000000 2.000000 1 0 0 +( 8192 -8192 192 ) ( 8192 8192 192 ) ( -8192 -8192 192 ) bricks/s_sr_m12ab 24 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 208 ) ( 8192 -8192 208 ) ( -8192 -8192 208 ) bricks/c_sr_m2c -512 32 0 1.000000 1.000000 1 67108864 0 +} +{ +( 1744 8192 8192 ) ( 1744 -8192 8192 ) ( 1744 8192 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( 1768 -8192 8192 ) ( 1768 8192 8192 ) ( 1768 8192 -8192 ) bricks/s_sr_m12ab 0 -144 0 2.000000 2.000000 1 0 0 +( -8192 288 8192 ) ( 8192 288 8192 ) ( -8192 288 -8192 ) bricks/s_sr_m12ab 12 -144 0 2.000000 2.000000 1 0 0 +( 8192 416 8192 ) ( -8192 416 8192 ) ( -8192 416 -8192 ) bricks/s_sr_m12ab 12 -144 0 2.000000 2.000000 1 0 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) bricks/s_sr_m12ab 12 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 224 ) ( 8192 -8192 224 ) ( -8192 -8192 224 ) bricks/c_sr_m2c -512 32 0 1.000000 1.000000 1 67108864 0 +} +{ +( 1768 8192 8192 ) ( 1768 -8192 8192 ) ( 1768 8192 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( 1792 -8192 8192 ) ( 1792 8192 8192 ) ( 1792 8192 -8192 ) bricks/s_sr_m12ab 0 -136 0 2.000000 2.000000 1 0 0 +( -8192 288 8192 ) ( 8192 288 8192 ) ( -8192 288 -8192 ) bricks/s_sr_m12ab 0 -136 0 2.000000 2.000000 1 0 0 +( 8192 416 8192 ) ( -8192 416 8192 ) ( -8192 416 -8192 ) bricks/s_sr_m12ab 0 -136 0 2.000000 2.000000 1 0 0 +( 8192 -8192 224 ) ( 8192 8192 224 ) ( -8192 -8192 224 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) bricks/c_sr_m2c -512 32 0 1.000000 1.000000 1 67108864 0 +} +{ +( 1432 -8192 8192 ) ( 1432 8192 8192 ) ( 1432 8192 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( -8192 288 8192 ) ( 8192 288 8192 ) ( -8192 288 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 416 8192 ) ( -8192 416 8192 ) ( -8192 416 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 -8 ) ( 8192 8192 -8 ) ( -8192 -8192 -8 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 0 ) ( 8192 -8192 0 ) ( -8192 -8192 0 ) bricks/c_sr_m2c -32 -32 180 -1.000000 1.000000 1 67108864 0 +( 6128 5456 8192 ) ( -5456 -6128 8192 ) ( -5456 -6128 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 1016 8192 8192 ) ( 1016 -8192 8192 ) ( 1016 8192 -8192 ) bricks/b_mf_v2 -32 16 90 1.000000 1.000000 1 1048576 0 +( 1032 -8192 8192 ) ( 1032 8192 8192 ) ( 1032 8192 -8192 ) bricks/b_mf_v2 -32 16 90 1.000000 1.000000 1 1048576 0 +( -8192 288 8192 ) ( 8192 288 8192 ) ( -8192 288 -8192 ) bricks/b_mf_v2 -32 16 90 1.000000 1.000000 1 1048576 0 +( 8192 344 8192 ) ( -8192 344 8192 ) ( -8192 344 -8192 ) bricks/b_mf_v2 -32 16 90 1.000000 1.000000 1 1048576 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_mf_v2 -32 16 90 1.000000 1.000000 1 1048576 0 +} +{ +( 1016 8192 8192 ) ( 1016 -8192 8192 ) ( 1016 8192 -8192 ) bricks/b_mf_v2 -64 13 180 1.000000 1.000000 1 1048576 0 +( 1032 -8192 8192 ) ( 1032 8192 8192 ) ( 1032 8192 -8192 ) bricks/b_mf_v2 -64 13 180 1.000000 1.000000 1 1048576 0 +( -8192 344 8192 ) ( 8192 344 8192 ) ( -8192 344 -8192 ) bricks/b_mf_v2 -32 15 180 1.000000 1.000000 1 1048576 0 +( 8192 360 8192 ) ( -8192 360 8192 ) ( -8192 360 -8192 ) bricks/b_mf_v2 -32 15 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) common/li_sr_m19 8 -8 0 1.000000 1.000000 1 1 20000 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_mf_v2 -29 -16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 1016 8192 8192 ) ( 1016 -8192 8192 ) ( 1016 8192 -8192 ) bricks/b_mf_v2 -64 14 180 1.000000 1.000000 1 1048576 0 +( 1032 -8192 8192 ) ( 1032 8192 8192 ) ( 1032 8192 -8192 ) bricks/b_mf_v2 -64 14 180 1.000000 1.000000 1 1048576 0 +( -8192 600 8192 ) ( 8192 600 8192 ) ( -8192 600 -8192 ) bricks/b_mf_v2 -32 15 180 1.000000 1.000000 1 1048576 0 +( 8192 616 8192 ) ( -8192 616 8192 ) ( -8192 616 -8192 ) bricks/b_mf_v2 -32 15 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) common/li_sr_m19 8 -8 0 1.000000 1.000000 1 1 15000 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_mf_v2 -30 -16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 1016 8192 8192 ) ( 1016 -8192 8192 ) ( 1016 8192 -8192 ) bricks/b_mf_v2 -32 16 90 1.000000 1.000000 1 1048576 0 +( 1032 -8192 8192 ) ( 1032 8192 8192 ) ( 1032 8192 -8192 ) bricks/b_mf_v2 -32 16 90 1.000000 1.000000 1 1048576 0 +( -8192 360 8192 ) ( 8192 360 8192 ) ( -8192 360 -8192 ) bricks/b_mf_v2 -32 16 90 1.000000 1.000000 1 1048576 0 +( 8192 600 8192 ) ( -8192 600 8192 ) ( -8192 600 -8192 ) bricks/b_mf_v2 -32 16 90 1.000000 1.000000 1 1048576 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_mf_v2 -32 16 90 1.000000 1.000000 1 1048576 0 +} +{ +( 1016 8192 8192 ) ( 1016 -8192 8192 ) ( 1016 8192 -8192 ) bricks/b_mf_v2 -32 16 90 1.000000 1.000000 1 1048576 0 +( 1032 -8192 8192 ) ( 1032 8192 8192 ) ( 1032 8192 -8192 ) bricks/b_mf_v2 -32 16 90 1.000000 1.000000 1 1048576 0 +( -8192 616 8192 ) ( 8192 616 8192 ) ( -8192 616 -8192 ) bricks/b_mf_v2 -32 16 90 1.000000 1.000000 1 1048576 0 +( 8192 824 8192 ) ( -8192 824 8192 ) ( -8192 824 -8192 ) bricks/b_mf_v2 -32 16 90 1.000000 1.000000 1 1048576 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_mf_v2 -32 16 90 1.000000 1.000000 1 1048576 0 +} +{ +( 1016 8192 8192 ) ( 1016 -8192 8192 ) ( 1016 8192 -8192 ) bricks/b_mf_v2 -96 15 180 1.000000 1.000000 1 1048576 0 +( 1032 -8192 8192 ) ( 1032 8192 8192 ) ( 1032 8192 -8192 ) bricks/b_mf_v2 -96 15 180 1.000000 1.000000 1 1048576 0 +( -8192 824 8192 ) ( 8192 824 8192 ) ( -8192 824 -8192 ) bricks/b_mf_v2 -32 15 180 1.000000 1.000000 1 1048576 0 +( 8192 840 8192 ) ( -8192 840 8192 ) ( -8192 840 -8192 ) bricks/b_mf_v2 -32 15 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) common/li_sr_m19 8 -8 0 1.000000 1.000000 1 2147483648 10000 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_mf_v2 -31 -48 180 1.000000 1.000000 1 1048576 0 +} +{ +( 1456 1520 8192 ) ( 1456 -821 8192 ) ( 1456 1520 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 1792 -821 8192 ) ( 1792 1520 8192 ) ( 1792 1520 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( -8691 408 8192 ) ( 8512 408 8192 ) ( -8691 408 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( 8512 432 8192 ) ( -8691 432 8192 ) ( -8691 432 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8512 -821 240 ) ( 8512 1520 240 ) ( -8691 -821 240 ) bricks/c_mf_v7d 0 -128 0 2.000000 2.000000 +( 8512 1520 256 ) ( 8512 -821 256 ) ( -8691 -821 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +} +{ +( 1456 1424 8192 ) ( 1456 -917 8192 ) ( 1456 1424 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 1792 -917 8192 ) ( 1792 1424 8192 ) ( 1792 1424 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( -8691 272 8192 ) ( 8512 272 8192 ) ( -8691 272 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8512 296 8192 ) ( -8691 296 8192 ) ( -8691 296 -8192 ) bricks/b_rc_v23 0 0 0 1.000000 1.000000 1 0 0 +( 8512 -917 240 ) ( 8512 1424 240 ) ( -8691 -917 240 ) bricks/c_mf_v7d 0 -128 0 2.000000 2.000000 +( 8512 1424 256 ) ( 8512 -917 256 ) ( -8691 -917 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_20 64 0 0 1.000000 1.000000 1 0 0 +( 2192 -8192 8192 ) ( 2192 8192 8192 ) ( 2192 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 352 8192 ) ( 8192 352 8192 ) ( -8192 352 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 480 8192 ) ( -8192 480 8192 ) ( -8192 480 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 536 ) ( 8192 -8192 536 ) ( -8192 -8192 536 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2400 8192 8192 ) ( 2400 -8192 8192 ) ( 2400 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2456 -8192 8192 ) ( 2456 8192 8192 ) ( 2456 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 688 8192 ) ( 8192 688 8192 ) ( -8192 688 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 704 8192 ) ( -8192 704 8192 ) ( -8192 704 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 640 ) ( 8192 -8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2272 8192 8192 ) ( 2272 -8192 8192 ) ( 2272 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2336 -8192 8192 ) ( 2336 8192 8192 ) ( 2336 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 688 8192 ) ( 8192 688 8192 ) ( -8192 688 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 704 8192 ) ( -8192 704 8192 ) ( -8192 704 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 640 ) ( 8192 -8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2208 -8192 8192 ) ( 2208 8192 8192 ) ( 2208 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 688 8192 ) ( 8192 688 8192 ) ( -8192 688 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 704 8192 ) ( -8192 704 8192 ) ( -8192 704 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 640 ) ( 8192 -8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_20 64 0 0 1.000000 1.000000 1 0 0 +( 2192 -8192 8192 ) ( 2192 8192 8192 ) ( 2192 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 128 8192 ) ( 8192 128 8192 ) ( -8192 128 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 352 8192 ) ( -8192 352 8192 ) ( -8192 352 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 640 ) ( 8192 -8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 2192 -8192 8192 ) ( 2192 8192 8192 ) ( 2192 8192 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( -8192 128 8192 ) ( 8192 128 8192 ) ( -8192 128 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 352 8192 ) ( -8192 352 8192 ) ( -8192 352 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 640 ) ( 8192 8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 768 ) ( 8192 -8192 768 ) ( -8192 -8192 768 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2192 -8192 8192 ) ( 2192 8192 8192 ) ( 2192 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 480 8192 ) ( 8192 480 8192 ) ( -8192 480 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 688 8192 ) ( -8192 688 8192 ) ( -8192 688 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 640 ) ( 8192 -8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 2192 -8192 8192 ) ( 2192 8192 8192 ) ( 2192 8192 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( -8192 480 8192 ) ( 8192 480 8192 ) ( -8192 480 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 688 8192 ) ( -8192 688 8192 ) ( -8192 688 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 640 ) ( 8192 8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 768 ) ( 8192 -8192 768 ) ( -8192 -8192 768 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2752 8192 8192 ) ( 2752 -8192 8192 ) ( 2752 8192 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 2816 -8192 8192 ) ( 2816 8192 8192 ) ( 2816 8192 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( -8192 128 8192 ) ( 8192 128 8192 ) ( -8192 128 -8192 ) bricks/b_sr_20b -16 0 0 1.000000 1.000000 1 0 0 +( 8192 688 8192 ) ( -8192 688 8192 ) ( -8192 688 -8192 ) bricks/b_sr_20b -16 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 640 ) ( 8192 8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_20b -16 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 768 ) ( 8192 -8192 768 ) ( -8192 -8192 768 ) bricks/b_sr_20b -16 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2456 8192 8192 ) ( 2456 -8192 8192 ) ( 2456 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2624 -8192 8192 ) ( 2624 8192 8192 ) ( 2624 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -3587 688 8192 ) ( 5712 688 8192 ) ( -3587 688 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 5712 704 8192 ) ( -3587 704 8192 ) ( -3587 704 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 5712 -8192 448 ) ( 5712 8192 448 ) ( -3587 -8192 448 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 5712 8192 688 ) ( 5712 -8192 688 ) ( -3587 -8192 688 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2456 71976 9677 ) ( 2456 -83672 9677 ) ( 2456 71976 -9984 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 2816 -83672 9677 ) ( 2816 71976 9677 ) ( 2816 71976 -9984 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( -8192 688 9677 ) ( 8192 688 9677 ) ( -8192 688 -9984 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 840 9677 ) ( -8192 840 9677 ) ( -8192 840 -9984 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -83672 672 ) ( 8192 71976 672 ) ( -8192 -83672 672 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 71976 768 ) ( 8192 -83672 768 ) ( -8192 -83672 768 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 2456 -8192 8192 ) ( 2456 8192 8192 ) ( 2456 8192 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( -8192 688 8192 ) ( 8192 688 8192 ) ( -8192 688 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 704 8192 ) ( -8192 704 8192 ) ( -8192 704 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 640 ) ( 8192 8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 768 ) ( 8192 -8192 768 ) ( -8192 -8192 768 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2192 8192 8192 ) ( 2192 -8192 8192 ) ( 2192 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2752 -8192 8192 ) ( 2752 8192 8192 ) ( 2752 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 128 8192 ) ( 8192 128 8192 ) ( -8192 128 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 192 8192 ) ( -8192 192 8192 ) ( -8192 192 -8192 ) bricks/b_sr_20ag 0 -2 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2192 8192 8192 ) ( 2192 -8192 8192 ) ( 2192 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2752 -8192 8192 ) ( 2752 8192 8192 ) ( 2752 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 128 8192 ) ( 8192 128 8192 ) ( -8192 128 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 192 8192 ) ( -8192 192 8192 ) ( -8192 192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 640 ) ( 8192 -8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1536 8192 7200 ) ( 1536 -8192 7200 ) ( 1536 8192 -7136 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 2064 -8192 7200 ) ( 2064 8192 7200 ) ( 2064 8192 -7136 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1536 7200 ) ( 8192 1536 7200 ) ( -8192 1536 -7136 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1552 7200 ) ( -8192 1552 7200 ) ( -8192 1552 -7136 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 368 ) ( 8192 -8192 368 ) ( -8192 -8192 368 ) bricks/c_sr_m2a 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 1536 1488 256 ) ( 1536 1536 256 ) ( 1536 1536 368 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 1536 1488 256 ) ( 1536 1488 368 ) ( 2032 1488 368 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 1536 1536 256 ) ( 2080 1536 256 ) ( 2080 1536 368 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 1536 1536 256 ) ( 1536 1488 256 ) ( 2032 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 1536 1488 368 ) ( 1536 1536 368 ) ( 2080 1536 368 ) bricks/c_sr_m2a 0 0 0 2.000000 2.000000 1 0 0 +( 2080 1536 256 ) ( 2032 1488 256 ) ( 2032 1488 368 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2032 1488 256 ) ( 2032 1488 368 ) ( 2032 1232 368 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 2080 1280 256 ) ( 2080 1280 368 ) ( 2080 1536 368 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 2032 1232 256 ) ( 2080 1280 256 ) ( 2080 1536 256 ) bricks/c_pv_m2 48 -63 90 1.000000 1.000000 1 0 0 +( 2032 1488 368 ) ( 2080 1536 368 ) ( 2080 1280 368 ) bricks/c_sr_m2a 0 0 0 2.000000 2.000000 1 0 0 +( 2080 1280 256 ) ( 2032 1232 256 ) ( 2032 1232 368 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 2032 1488 256 ) ( 2080 1536 256 ) ( 2080 1536 368 ) bricks/c_pv_m2 64 0 180 1.000000 1.000000 1 0 0 +} +{ +( 2432 1280 256 ) ( 2432 1232 256 ) ( 2432 1232 368 ) bricks/c_pv_m2 48 0 0 1.000000 1.000000 1 0 0 +( 2432 1232 256 ) ( 2032 1232 256 ) ( 2032 1232 368 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 2432 1280 256 ) ( 2432 1280 368 ) ( 2080 1280 368 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 2432 1232 256 ) ( 2432 1280 256 ) ( 2080 1280 256 ) bricks/c_pv_m2 48 -63 90 1.000000 1.000000 1 0 0 +( 2432 1280 368 ) ( 2432 1232 368 ) ( 2032 1232 368 ) bricks/c_sr_m2a 0 0 0 2.000000 2.000000 1 0 0 +( 2032 1232 256 ) ( 2080 1280 256 ) ( 2080 1280 368 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1216 7936 2968 ) ( 1216 -8448 2968 ) ( 1216 7936 -1475 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( 2880 -8448 2968 ) ( 2880 7936 2968 ) ( 2880 7936 -1475 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( -8568 1856 2968 ) ( 8471 1856 2968 ) ( -8568 1856 -1475 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( 8471 1920 2968 ) ( -8568 1920 2968 ) ( -8568 1920 -1475 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( 8471 -8448 896 ) ( 8471 7936 896 ) ( -8568 -8448 896 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +( 8471 7936 1024 ) ( 8471 -8448 1024 ) ( -8568 -8448 1024 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( 2144 8192 8192 ) ( 2144 -8192 8192 ) ( 2144 8192 -8192 ) bricks/b_sr_20 0 -32 0 1.000000 1.000000 1 0 0 +( 2400 -8192 8192 ) ( 2400 8192 8192 ) ( 2400 8192 -8192 ) bricks/b_sr_20 0 -32 0 1.000000 1.000000 1 0 0 +( -8192 1288 8192 ) ( 8192 1288 8192 ) ( -8192 1288 -8192 ) props/w_sr_m2a 24 19 0 1.420000 1.500000 1 0 0 +( 8192 1344 8192 ) ( -8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/b_sr_20 0 -32 0 1.000000 1.000000 1 0 0 +( 8192 -8192 480 ) ( 8192 8192 480 ) ( -8192 -8192 480 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 608 ) ( 8192 -8192 608 ) ( -8192 -8192 608 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2144 8192 9477 ) ( 2144 -8192 9477 ) ( 2144 8192 -9637 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( 2400 -8192 9477 ) ( 2400 8192 9477 ) ( 2400 8192 -9637 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( -8192 1280 9477 ) ( 8192 1280 9477 ) ( -8192 1280 -9637 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( 8192 1344 9477 ) ( -8192 1344 9477 ) ( -8192 1344 -9637 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( 8192 -8192 368 ) ( 8192 8192 368 ) ( -8192 -8192 368 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( 8192 8192 480 ) ( 8192 -8192 480 ) ( -8192 -8192 480 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +} +{ +( 2144 8192 8192 ) ( 2144 -8192 8192 ) ( 2144 8192 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( 2400 -8192 8192 ) ( 2400 8192 8192 ) ( 2400 8192 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( -8192 1280 8192 ) ( 8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( 8192 1344 8192 ) ( -8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( 8192 -8192 608 ) ( 8192 8192 608 ) ( -8192 -8192 608 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( 8192 8192 640 ) ( 8192 -8192 640 ) ( -8192 -8192 640 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +} +{ +( 2400 8192 8664 ) ( 2400 -8192 8664 ) ( 2400 8192 -8744 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( 2816 -8192 8664 ) ( 2816 8192 8664 ) ( 2816 8192 -8744 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( -8192 1280 8664 ) ( 8192 1280 8664 ) ( -8192 1280 -8744 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( 8192 1344 8664 ) ( -8192 1344 8664 ) ( -8192 1344 -8744 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( 8192 -8192 368 ) ( 8192 8192 368 ) ( -8192 -8192 368 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( 8192 8192 640 ) ( 8192 -8192 640 ) ( -8192 -8192 640 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +} +{ +( 2080 8192 8664 ) ( 2080 -8192 8664 ) ( 2080 8192 -8744 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( 2144 -8192 8664 ) ( 2144 8192 8664 ) ( 2144 8192 -8744 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( -8192 1280 8664 ) ( 8192 1280 8664 ) ( -8192 1280 -8744 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( 8192 1344 8664 ) ( -8192 1344 8664 ) ( -8192 1344 -8744 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( 8192 -8192 368 ) ( 8192 8192 368 ) ( -8192 -8192 368 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( 8192 8192 640 ) ( 8192 -8192 640 ) ( -8192 -8192 640 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +} +{ +( 2080 8192 8664 ) ( 2080 -8192 8664 ) ( 2080 8192 -8744 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( 2816 -8192 8664 ) ( 2816 8192 8664 ) ( 2816 8192 -8744 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( -8192 1344 8664 ) ( 8192 1344 8664 ) ( -8192 1344 -8744 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( 8192 1728 8664 ) ( -8192 1728 8664 ) ( -8192 1728 -8744 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( 8192 -8192 368 ) ( 8192 8192 368 ) ( -8192 -8192 368 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +( 8192 8192 640 ) ( 8192 -8192 640 ) ( -8192 -8192 640 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 +} +{ +( 2096 7767 8192 ) ( 2096 -8162 8192 ) ( 2096 7767 -8192 ) bricks/b_pv_v1b 0 -64 0 1.000000 1.000000 1 0 0 +( 2816 -8162 8192 ) ( 2816 7767 8192 ) ( 2816 7767 -8192 ) bricks/b_pv_v1b 0 -64 0 1.000000 1.000000 1 0 0 +( -23905 1296 8192 ) ( 17056 1296 8192 ) ( -23905 1296 -8192 ) bricks/b_pv_v1b 32 -62 0 1.000000 1.000000 1 0 0 +( 17056 1856 8192 ) ( -23905 1856 8192 ) ( -23905 1856 -8192 ) bricks/b_pv_v1b 32 -62 180 1.000000 1.000000 1 0 0 +( 17056 -8162 832 ) ( 17056 7767 832 ) ( -23905 -8162 832 ) bricks/b_pv_v1b 0 -32 90 1.000000 1.000000 1 0 0 +( 17056 7767 960 ) ( 17056 -8162 960 ) ( -23905 -8162 960 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( 2096 7767 3776 ) ( 2096 -8162 3776 ) ( 2096 7767 -2778 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 2816 -8162 3776 ) ( 2816 7767 3776 ) ( 2816 7767 -2778 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( -23905 1296 3776 ) ( 17056 1296 3776 ) ( -23905 1296 -2778 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 17056 1856 3776 ) ( -23905 1856 3776 ) ( -23905 1856 -2778 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 17056 -8162 704 ) ( 17056 7767 704 ) ( -23905 -8162 704 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +( 17056 7767 832 ) ( 17056 -8162 832 ) ( -23905 -8162 832 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +} +{ +( 2080 10167 8192 ) ( 2080 -10898 8192 ) ( 2080 10167 -8192 ) bricks/b_pv_v1b 0 -32 0 1.000000 1.000000 +( 2816 -10898 8192 ) ( 2816 10167 8192 ) ( 2816 10167 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +( -8192 1280 8192 ) ( 8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/b_pv_v1b 0 -32 0 1.000000 1.000000 +( 8192 1856 8192 ) ( -8192 1856 8192 ) ( -8192 1856 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +( 8192 -10898 640 ) ( 8192 10167 640 ) ( -8192 -10898 640 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +( 8192 10167 704 ) ( 8192 -10898 704 ) ( -8192 -10898 704 ) floors/rf_sr_m2 0 -3 0 2.000000 2.000000 0 2097152 0 +} +{ +( 1952 5234 8176 ) ( 1952 -3868 8176 ) ( 1952 5234 -8208 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( 2080 -3868 8176 ) ( 2080 5234 8176 ) ( 2080 5234 -8208 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( -8192 1536 8176 ) ( 8192 1536 8176 ) ( -8192 1536 -8208 ) props2/dragon_vx -16 -16 0 1.000000 1.000000 +( 8192 1856 8176 ) ( -8192 1856 8176 ) ( -8192 1856 -8208 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( 8192 -3868 368 ) ( 8192 5234 368 ) ( -8192 -3868 368 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( 8192 5234 496 ) ( 8192 -3868 496 ) ( -8192 -3868 496 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +} +{ +( 1952 5234 8560 ) ( 1952 -3868 8560 ) ( 1952 5234 -8643 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 2096 -3868 8560 ) ( 2096 5234 8560 ) ( 2096 5234 -8643 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( -9460 1536 8560 ) ( 8972 1536 8560 ) ( -9460 1536 -8643 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8972 1856 8560 ) ( -9460 1856 8560 ) ( -9460 1856 -8643 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8972 -3868 496 ) ( 8972 5234 496 ) ( -9460 -3868 496 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +( 8972 5234 832 ) ( 8972 -3868 832 ) ( -9460 -3868 832 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +} +{ +( 1952 5234 8192 ) ( 1952 -3868 8192 ) ( 1952 5234 -8192 ) bricks/b_pv_v1b 0 -64 0 1.000000 1.000000 1 0 0 +( 2096 -3868 8192 ) ( 2096 5234 8192 ) ( 2096 5234 -8192 ) bricks/b_pv_v1b 0 -64 0 1.000000 1.000000 1 0 0 +( -9460 1536 8192 ) ( 8972 1536 8192 ) ( -9460 1536 -8192 ) bricks/b_pv_v1b 32 -63 0 1.000000 1.000000 1 0 0 +( 8972 1856 8192 ) ( -9460 1856 8192 ) ( -9460 1856 -8192 ) bricks/b_pv_v1b 32 -63 180 1.000000 1.000000 1 0 0 +( 8972 -3868 832 ) ( 8972 5234 832 ) ( -9460 -3868 832 ) bricks/b_pv_v1b 0 -32 90 1.000000 1.000000 1 0 0 +( 8972 5234 960 ) ( 8972 -3868 960 ) ( -9460 -3868 960 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( 1696 5234 8192 ) ( 1696 -3868 8192 ) ( 1696 5234 -8192 ) bricks/b_pv_v1b 0 -64 0 1.000000 1.000000 1 0 0 +( 1824 -3868 8192 ) ( 1824 5234 8192 ) ( 1824 5234 -8192 ) bricks/b_pv_v1b 0 -64 0 1.000000 1.000000 1 0 0 +( -8192 1536 8192 ) ( 8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/b_pv_v1b 32 -63 0 1.000000 1.000000 1 0 0 +( 8192 1856 8192 ) ( -8192 1856 8192 ) ( -8192 1856 -8192 ) bricks/b_pv_v1b 32 -63 180 1.000000 1.000000 1 0 0 +( 8192 -3868 832 ) ( 8192 5234 832 ) ( -8192 -3868 832 ) bricks/b_pv_v1b 0 -32 90 1.000000 1.000000 1 0 0 +( 8192 5234 960 ) ( 8192 -3868 960 ) ( -8192 -3868 960 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( 1696 8192 8560 ) ( 1696 -8192 8560 ) ( 1696 8192 -8643 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 1824 -8192 8560 ) ( 1824 8192 8560 ) ( 1824 8192 -8643 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1536 8560 ) ( 8192 1536 8560 ) ( -8192 1536 -8643 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1856 8560 ) ( -8192 1856 8560 ) ( -8192 1856 -8643 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 496 ) ( 8192 8192 496 ) ( -8192 -8192 496 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 832 ) ( 8192 -8192 832 ) ( -8192 -8192 832 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +} +{ +( 1696 8192 8176 ) ( 1696 -8192 8176 ) ( 1696 8192 -8208 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( 1824 -8192 8176 ) ( 1824 8192 8176 ) ( 1824 8192 -8208 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( -8192 1536 8176 ) ( 8192 1536 8176 ) ( -8192 1536 -8208 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( 8192 1856 8176 ) ( -8192 1856 8176 ) ( -8192 1856 -8208 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( 8192 -8192 368 ) ( 8192 8192 368 ) ( -8192 -8192 368 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( 8192 8192 496 ) ( 8192 -8192 496 ) ( -8192 -8192 496 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +} +{ +( 1824 5157 8192 ) ( 1824 -3738 8192 ) ( 1824 5157 -8192 ) bricks/b_pv_v1b 0 -63 180 1.000000 1.000000 1 0 0 +( 1952 -3738 8192 ) ( 1952 5157 8192 ) ( 1952 5157 -8192 ) bricks/b_pv_v1b 0 -63 180 1.000000 1.000000 1 0 0 +( -8192 1552 8192 ) ( 8192 1552 8192 ) ( -8192 1552 -8192 ) bricks/b_pv_v1b -32 -64 0 1.000000 1.000000 1 0 0 +( 8192 1856 8192 ) ( -8192 1856 8192 ) ( -8192 1856 -8192 ) bricks/b_pv_v1b -32 -64 0 1.000000 1.000000 1 0 0 +( 8192 -3738 896 ) ( 8192 5157 896 ) ( -8192 -3738 896 ) bricks/b_pv_v1a 8 -63 0 1.000000 1.000000 1 0 0 +( 8192 5157 960 ) ( 8192 -3738 960 ) ( -8192 -3738 960 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( 1824 8192 9120 ) ( 1824 -8192 9120 ) ( 1824 8192 -9312 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 1952 -8192 9120 ) ( 1952 8192 9120 ) ( 1952 8192 -9312 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1552 9120 ) ( 8192 1552 9120 ) ( -8192 1552 -9312 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1856 9120 ) ( -8192 1856 9120 ) ( -8192 1856 -9312 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 624 ) ( 8192 8192 624 ) ( -8192 -8192 624 ) bricks/b_pv_v1a 8 -63 0 1.000000 1.000000 1 0 0 +( 8192 8192 768 ) ( 8192 -8192 768 ) ( -8192 -8192 768 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +} +{ +( 1824 8192 8192 ) ( 1824 -8192 8192 ) ( 1824 8192 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 1856 -8192 8192 ) ( 1856 8192 8192 ) ( 1856 8192 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1552 8192 ) ( 8192 1552 8192 ) ( -8192 1552 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1856 8192 ) ( -8192 1856 8192 ) ( -8192 1856 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 768 ) ( 8192 8192 768 ) ( -8192 -8192 768 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 896 ) ( 8192 -8192 896 ) ( -8192 -8192 896 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +} +{ +( 1920 8192 8192 ) ( 1920 -8192 8192 ) ( 1920 8192 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 1952 -8192 8192 ) ( 1952 8192 8192 ) ( 1952 8192 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1552 8192 ) ( 8192 1552 8192 ) ( -8192 1552 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1856 8192 ) ( -8192 1856 8192 ) ( -8192 1856 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 768 ) ( 8192 8192 768 ) ( -8192 -8192 768 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 896 ) ( 8192 -8192 896 ) ( -8192 -8192 896 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +} +{ +( 1856 8192 8192 ) ( 1856 -8192 8192 ) ( 1856 8192 -8192 ) bricks/b_pv_v1a 0 -63 180 1.000000 1.000000 1 0 0 +( 1920 -8192 8192 ) ( 1920 8192 8192 ) ( 1920 8192 -8192 ) bricks/b_pv_v1a 0 -63 180 1.000000 1.000000 1 0 0 +( -8192 1560 8192 ) ( 8192 1560 8192 ) ( -8192 1560 -8192 ) props/w_sr_m6e -32 0 0 1.000000 1.000000 1 1 1000 +( 8192 1856 8192 ) ( -8192 1856 8192 ) ( -8192 1856 -8192 ) bricks/b_pv_v1a -32 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 768 ) ( 8192 8192 768 ) ( -8192 -8192 768 ) bricks/b_pv_v1a -127 31 270 1.000000 1.000000 1 0 0 +( 8192 8192 896 ) ( 8192 -8192 896 ) ( -8192 -8192 896 ) bricks/b_pv_v1a -127 31 270 1.000000 1.000000 1 0 0 +} +{ +( 1856 8363 8176 ) ( 1856 -8464 8176 ) ( 1856 8363 -8208 ) wood/wd_st_m3 -32 0 0 1.000000 1.000000 1 0 0 +( 1920 -8464 8176 ) ( 1920 8363 8176 ) ( 1920 8363 -8208 ) wood/wd_st_m3 -32 0 0 1.000000 1.000000 1 0 0 +( -8192 1552 8176 ) ( 8192 1552 8176 ) ( -8192 1552 -8208 ) wood/wd_st_m3 -32 0 0 1.000000 1.000000 1 0 0 +( 8192 1856 8176 ) ( -8192 1856 8176 ) ( -8192 1856 -8208 ) wood/wd_st_m3 -32 0 0 1.000000 1.000000 1 0 0 +( 8192 -8464 496 ) ( 8192 8363 496 ) ( -8192 -8464 496 ) wood/wd_st_m3 -32 0 0 1.000000 1.000000 1 0 0 +( 8192 8363 624 ) ( 8192 -8464 624 ) ( -8192 -8464 624 ) wood/wd_st_m3 -32 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1920 8192 8176 ) ( 1920 -8192 8176 ) ( 1920 8192 -8208 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 1952 -8192 8176 ) ( 1952 8192 8176 ) ( 1952 8192 -8208 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1552 8176 ) ( 8192 1552 8176 ) ( -8192 1552 -8208 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1856 8176 ) ( -8192 1856 8176 ) ( -8192 1856 -8208 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 496 ) ( 8192 8192 496 ) ( -8192 -8192 496 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 624 ) ( 8192 -8192 624 ) ( -8192 -8192 624 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +} +{ +( 1824 8192 8176 ) ( 1824 -8192 8176 ) ( 1824 8192 -8208 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 1856 -8192 8176 ) ( 1856 8192 8176 ) ( 1856 8192 -8208 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1552 8176 ) ( 8192 1552 8176 ) ( -8192 1552 -8208 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1856 8176 ) ( -8192 1856 8176 ) ( -8192 1856 -8208 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 496 ) ( 8192 8192 496 ) ( -8192 -8192 496 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 624 ) ( 8192 -8192 624 ) ( -8192 -8192 624 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +} +{ +( 1824 8192 8176 ) ( 1824 -8192 8176 ) ( 1824 8192 -8208 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( 1952 -8192 8176 ) ( 1952 8192 8176 ) ( 1952 8192 -8208 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( -8192 1552 8176 ) ( 8192 1552 8176 ) ( -8192 1552 -8208 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( 8192 1856 8176 ) ( -8192 1856 8176 ) ( -8192 1856 -8208 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( 8192 -8192 368 ) ( 8192 8192 368 ) ( -8192 -8192 368 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( 8192 8192 496 ) ( 8192 -8192 496 ) ( -8192 -8192 496 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +} +{ +( 1568 8192 8176 ) ( 1568 -8192 8176 ) ( 1568 8192 -8208 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( 1696 -8192 8176 ) ( 1696 8192 8176 ) ( 1696 8192 -8208 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( -8192 1552 8176 ) ( 8192 1552 8176 ) ( -8192 1552 -8208 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( 8192 1856 8176 ) ( -8192 1856 8176 ) ( -8192 1856 -8208 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( 8192 -8192 368 ) ( 8192 8192 368 ) ( -8192 -8192 368 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( 8192 8192 496 ) ( 8192 -8192 496 ) ( -8192 -8192 496 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +} +{ +( 1568 8192 8176 ) ( 1568 -8192 8176 ) ( 1568 8192 -8208 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 1600 -8192 8176 ) ( 1600 8192 8176 ) ( 1600 8192 -8208 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1552 8176 ) ( 8192 1552 8176 ) ( -8192 1552 -8208 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1856 8176 ) ( -8192 1856 8176 ) ( -8192 1856 -8208 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 496 ) ( 8192 8192 496 ) ( -8192 -8192 496 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 624 ) ( 8192 -8192 624 ) ( -8192 -8192 624 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +} +{ +( 1664 8192 8176 ) ( 1664 -8192 8176 ) ( 1664 8192 -8208 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 1696 -8192 8176 ) ( 1696 8192 8176 ) ( 1696 8192 -8208 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1552 8176 ) ( 8192 1552 8176 ) ( -8192 1552 -8208 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1856 8176 ) ( -8192 1856 8176 ) ( -8192 1856 -8208 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 496 ) ( 8192 8192 496 ) ( -8192 -8192 496 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 624 ) ( 8192 -8192 624 ) ( -8192 -8192 624 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +} +{ +( 1600 8192 8176 ) ( 1600 -8192 8176 ) ( 1600 8192 -8208 ) bricks/b_pv_v1a 0 -63 180 1.000000 1.000000 1 0 0 +( 1664 -8192 8176 ) ( 1664 8192 8176 ) ( 1664 8192 -8208 ) bricks/b_pv_v1a 0 -63 180 1.000000 1.000000 1 0 0 +( -8192 1560 8176 ) ( 8192 1560 8176 ) ( -8192 1560 -8208 ) props/w_sr_m6d -32 -16 0 1.000000 1.000000 1 1 1000 +( 8192 1856 8176 ) ( -8192 1856 8176 ) ( -8192 1856 -8208 ) bricks/b_pv_v1a -32 -63 0 1.000000 1.000000 1 0 0 +( 8192 -8192 496 ) ( 8192 8192 496 ) ( -8192 -8192 496 ) bricks/b_pv_v1a -127 31 270 1.000000 1.000000 1 0 0 +( 8192 8192 624 ) ( 8192 -8192 624 ) ( -8192 -8192 624 ) bricks/b_pv_v1a -127 31 270 1.000000 1.000000 1 0 0 +} +{ +( 1600 8363 8192 ) ( 1600 -8464 8192 ) ( 1600 8363 -8192 ) bricks/b_pv_v1a 0 -63 180 1.000000 1.000000 1 0 0 +( 1664 -8464 8192 ) ( 1664 8363 8192 ) ( 1664 8363 -8192 ) bricks/b_pv_v1a 0 -63 180 1.000000 1.000000 1 0 0 +( -8192 1552 8192 ) ( 8192 1552 8192 ) ( -8192 1552 -8192 ) wood/wd_st_m3 -32 0 0 1.000000 1.000000 1 0 0 +( 8192 1856 8192 ) ( -8192 1856 8192 ) ( -8192 1856 -8192 ) bricks/b_pv_v1a -32 -63 0 1.000000 1.000000 1 0 0 +( 8192 -8464 768 ) ( 8192 8363 768 ) ( -8192 -8464 768 ) bricks/b_pv_v1a -127 31 270 1.000000 1.000000 1 0 0 +( 8192 8363 896 ) ( 8192 -8464 896 ) ( -8192 -8464 896 ) bricks/b_pv_v1a -127 31 270 1.000000 1.000000 1 0 0 +} +{ +( 1664 8192 8192 ) ( 1664 -8192 8192 ) ( 1664 8192 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 1696 -8192 8192 ) ( 1696 8192 8192 ) ( 1696 8192 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1552 8192 ) ( 8192 1552 8192 ) ( -8192 1552 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1856 8192 ) ( -8192 1856 8192 ) ( -8192 1856 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 768 ) ( 8192 8192 768 ) ( -8192 -8192 768 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 896 ) ( 8192 -8192 896 ) ( -8192 -8192 896 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +} +{ +( 1568 8192 8192 ) ( 1568 -8192 8192 ) ( 1568 8192 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 1600 -8192 8192 ) ( 1600 8192 8192 ) ( 1600 8192 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1552 8192 ) ( 8192 1552 8192 ) ( -8192 1552 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1856 8192 ) ( -8192 1856 8192 ) ( -8192 1856 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 768 ) ( 8192 8192 768 ) ( -8192 -8192 768 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 896 ) ( 8192 -8192 896 ) ( -8192 -8192 896 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +} +{ +( 1568 8192 9120 ) ( 1568 -8192 9120 ) ( 1568 8192 -9312 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 1696 -8192 9120 ) ( 1696 8192 9120 ) ( 1696 8192 -9312 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1552 9120 ) ( 8192 1552 9120 ) ( -8192 1552 -9312 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1856 9120 ) ( -8192 1856 9120 ) ( -8192 1856 -9312 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 624 ) ( 8192 8192 624 ) ( -8192 -8192 624 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 768 ) ( 8192 -8192 768 ) ( -8192 -8192 768 ) bricks/b_pv_v1a 8 -63 0 1.000000 1.000000 1 0 0 +} +{ +( 1568 5157 8192 ) ( 1568 -3738 8192 ) ( 1568 5157 -8192 ) bricks/b_pv_v1b 0 -63 180 1.000000 1.000000 1 0 0 +( 1696 -3738 8192 ) ( 1696 5157 8192 ) ( 1696 5157 -8192 ) bricks/b_pv_v1b 0 -63 180 1.000000 1.000000 1 0 0 +( -8192 1552 8192 ) ( 8192 1552 8192 ) ( -8192 1552 -8192 ) bricks/b_pv_v1b -32 -63 0 1.000000 1.000000 1 0 0 +( 8192 1856 8192 ) ( -8192 1856 8192 ) ( -8192 1856 -8192 ) bricks/b_pv_v1b -32 -63 0 1.000000 1.000000 1 0 0 +( 8192 -3738 896 ) ( 8192 5157 896 ) ( -8192 -3738 896 ) bricks/b_pv_v1a 8 -63 0 1.000000 1.000000 1 0 0 +( 8192 5157 960 ) ( 8192 -3738 960 ) ( -8192 -3738 960 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( 1280 8192 8176 ) ( 1280 -8192 8176 ) ( 1280 8192 -8208 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( 1568 -8192 8176 ) ( 1568 8192 8176 ) ( 1568 8192 -8208 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( -8192 1536 8176 ) ( 8192 1536 8176 ) ( -8192 1536 -8208 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( 8192 1856 8176 ) ( -8192 1856 8176 ) ( -8192 1856 -8208 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( 8192 -8192 368 ) ( 8192 8192 368 ) ( -8192 -8192 368 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +( 8192 8192 496 ) ( 8192 -8192 496 ) ( -8192 -8192 496 ) bricks/b_pv_v1e 0 -16 0 1.000000 1.000000 1 0 0 +} +{ +( 1280 8192 8560 ) ( 1280 -8192 8560 ) ( 1280 8192 -8643 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 1568 -8192 8560 ) ( 1568 8192 8560 ) ( 1568 8192 -8643 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1536 8560 ) ( 8192 1536 8560 ) ( -8192 1536 -8643 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1856 8560 ) ( -8192 1856 8560 ) ( -8192 1856 -8643 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 496 ) ( 8192 8192 496 ) ( -8192 -8192 496 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 832 ) ( 8192 -8192 832 ) ( -8192 -8192 832 ) bricks/b_pv_v1a 0 -64 0 1.000000 1.000000 1 0 0 +} +{ +( 1280 5234 8192 ) ( 1280 -3868 8192 ) ( 1280 5234 -8192 ) bricks/b_pv_v1b 0 -64 0 1.000000 1.000000 1 0 0 +( 1568 -3868 8192 ) ( 1568 5234 8192 ) ( 1568 5234 -8192 ) bricks/b_pv_v1b 0 -64 0 1.000000 1.000000 1 0 0 +( -8192 1536 8192 ) ( 8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/b_pv_v1b 32 -63 0 1.000000 1.000000 1 0 0 +( 8192 1856 8192 ) ( -8192 1856 8192 ) ( -8192 1856 -8192 ) bricks/b_pv_v1b 32 -63 180 1.000000 1.000000 1 0 0 +( 8192 -3868 832 ) ( 8192 5234 832 ) ( -8192 -3868 832 ) bricks/b_pv_v1b 0 -32 90 1.000000 1.000000 1 0 0 +( 8192 5234 960 ) ( 8192 -3868 960 ) ( -8192 -3868 960 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 132 0 +} +{ +( 2432 8192 8192 ) ( 2432 -8192 8192 ) ( 2432 8192 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 2496 -8192 8192 ) ( 2496 8192 8192 ) ( 2496 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 704 8192 ) ( 8192 704 8192 ) ( -8192 704 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1264 8192 ) ( -8192 1264 8192 ) ( -8192 1264 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 304 ) ( 8192 8192 304 ) ( -8192 -8192 304 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 360 ) ( 8192 -8192 360 ) ( -8192 -8192 360 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2440 8192 8192 ) ( 2440 -8192 8192 ) ( 2440 8192 -8192 ) props/w_sr_ba9 0 40 0 1.000000 1.000000 1 0 800 +( 2496 -8192 8192 ) ( 2496 8192 8192 ) ( 2496 8192 -8192 ) bricks/b_sr_c27 0 -8 0 1.000000 1.000000 1 0 0 +( -8192 768 8192 ) ( 8192 768 8192 ) ( -8192 768 -8192 ) bricks/b_sr_c27 0 -8 0 1.000000 1.000000 1 0 0 +( 8192 1216 8192 ) ( -8192 1216 8192 ) ( -8192 1216 -8192 ) bricks/b_sr_c27 0 -8 0 1.000000 1.000000 1 0 0 +( 8192 -8192 360 ) ( 8192 8192 360 ) ( -8192 -8192 360 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 424 ) ( 8192 -8192 424 ) ( -8192 -8192 424 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2432 8192 8192 ) ( 2432 -8192 8192 ) ( 2432 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 2496 -8192 8192 ) ( 2496 8192 8192 ) ( 2496 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 768 8192 ) ( 8192 768 8192 ) ( -8192 768 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1216 8192 ) ( -8192 1216 8192 ) ( -8192 1216 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 424 ) ( 8192 8192 424 ) ( -8192 -8192 424 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2432 8192 8192 ) ( 2432 -8192 8192 ) ( 2432 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 2496 -8192 8192 ) ( 2496 8192 8192 ) ( 2496 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 704 8192 ) ( 8192 704 8192 ) ( -8192 704 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 768 8192 ) ( -8192 768 8192 ) ( -8192 768 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 360 ) ( 8192 8192 360 ) ( -8192 -8192 360 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2432 8192 8192 ) ( 2432 -8192 8192 ) ( 2432 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 2496 -8192 8192 ) ( 2496 8192 8192 ) ( 2496 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1216 8192 ) ( 8192 1216 8192 ) ( -8192 1216 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1280 8192 ) ( -8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 360 ) ( 8192 8192 360 ) ( -8192 -8192 360 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2496 8192 8192 ) ( 2496 -8192 8192 ) ( 2496 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 2752 -8192 8192 ) ( 2752 8192 8192 ) ( 2752 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 720 8192 ) ( 8192 720 8192 ) ( -8192 720 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1280 8192 ) ( -8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 296 ) ( 8192 8192 296 ) ( -8192 -8192 296 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2456 8192 8192 ) ( 2456 -8192 8192 ) ( 2456 8192 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 1 8390656 0 +( 2752 -8192 8192 ) ( 2752 8192 8192 ) ( 2752 8192 -8192 ) bricks/b_sr_20 0 0 0 0.500000 0.500000 1 67108864 0 +( -8192 840 8192 ) ( 8192 840 8192 ) ( -8192 840 -8192 ) bricks/b_sr_20 0 0 0 0.500000 0.500000 1 67108864 0 +( 8192 1280 8192 ) ( -8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/b_sr_20 0 0 0 0.500000 0.500000 1 67108864 0 +( 8192 -8192 448 ) ( 8192 8192 448 ) ( -8192 -8192 448 ) bricks/c_sr_m2b 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 488 ) ( 8192 -8192 488 ) ( -8192 -8192 488 ) bricks/s_sr_m1a 0 0 0 1.000000 1.000000 1 4194304 0 +} +{ +( 2432 8192 8192 ) ( 2432 -8192 8192 ) ( 2432 8192 -8192 ) bricks/c_pv_m2 0 -1 0 1.000000 1.000000 1 0 0 +( 2752 -8192 8192 ) ( 2752 8192 8192 ) ( 2752 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 704 8192 ) ( 8192 704 8192 ) ( -8192 704 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1280 8192 ) ( -8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 304 ) ( 8192 -8192 304 ) ( -8192 -8192 304 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2432 8192 8192 ) ( 2432 -8192 8192 ) ( 2432 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 2456 -8192 8192 ) ( 2456 8192 8192 ) ( 2456 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 704 8192 ) ( 8192 704 8192 ) ( -8192 704 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 1280 8192 ) ( -8192 1280 8192 ) ( -8192 1280 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 448 ) ( 8192 8192 448 ) ( -8192 -8192 448 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) metals/mt_sr_v16 0 0 270 2.000000 2.000000 1 8388608 0 +} +{ +( 2304 8192 8192 ) ( 2304 -8192 8192 ) ( 2304 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 2456 -8192 8192 ) ( 2456 8192 8192 ) ( 2456 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( -8192 688 8192 ) ( 8192 688 8192 ) ( -8192 688 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 704 8192 ) ( -8192 704 8192 ) ( -8192 704 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 2304 -8192 8192 ) ( 2304 8192 8192 ) ( 2304 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( -8192 688 8192 ) ( 8192 688 8192 ) ( -8192 688 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 704 8192 ) ( -8192 704 8192 ) ( -8192 704 -8192 ) props2/dragon_vz 0 0 0 -1.000000 1.000000 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1728 2288 8192 ) ( 1728 -1808 8192 ) ( 1728 2288 -8192 ) wood/wd_st_m3 0 0 0 1.000000 1.000000 1 0 0 +( 1856 -1808 8192 ) ( 1856 2288 8192 ) ( 1856 2288 -8192 ) wood/wd_st_m3 0 0 0 1.000000 1.000000 1 0 0 +( -8192 256 8192 ) ( 8192 256 8192 ) ( -8192 256 -8192 ) wood/wd_st_m3 0 0 0 1.000000 1.000000 1 0 0 +( 8192 320 8192 ) ( -8192 320 8192 ) ( -8192 320 -8192 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +( 8192 -1808 640 ) ( 8192 2288 640 ) ( -8192 -1808 640 ) wood/wd_st_m3 0 0 0 1.000000 1.000000 1 0 0 +( 8192 2288 896 ) ( 8192 -1808 896 ) ( -8192 -1808 896 ) wood/wd_st_m3 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1984 2288 8192 ) ( 1984 -1808 8192 ) ( 1984 2288 -8192 ) props/w_sr_m2a -32 64 0 1.000000 1.000000 +( 2112 -1808 8192 ) ( 2112 2288 8192 ) ( 2112 2288 -8192 ) props/w_sr_m2a -32 64 0 1.000000 1.000000 +( -8192 256 8192 ) ( 8192 256 8192 ) ( -8192 256 -8192 ) props/w_sr_m2a -32 64 0 1.000000 1.000000 +( 8192 318 8192 ) ( -8192 318 8192 ) ( -8192 318 -8192 ) props/w_sr_m2a -32 64 0 2.000000 2.000000 +( 8192 -1808 640 ) ( 8192 2288 640 ) ( -8192 -1808 640 ) props/w_sr_m2a -32 64 0 1.000000 1.000000 +( 8192 2288 896 ) ( 8192 -1808 896 ) ( -8192 -1808 896 ) props/w_sr_m2a -32 64 0 1.000000 1.000000 +} +{ +( 1856 2288 8192 ) ( 1856 -1808 8192 ) ( 1856 2288 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1984 -1808 8192 ) ( 1984 2288 8192 ) ( 1984 2288 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 256 8192 ) ( 8192 256 8192 ) ( -8192 256 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 320 8192 ) ( -8192 320 8192 ) ( -8192 320 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -1808 640 ) ( 8192 2288 640 ) ( -8192 -1808 640 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 2288 896 ) ( 8192 -1808 896 ) ( -8192 -1808 896 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1728 2288 8192 ) ( 1728 -1808 8192 ) ( 1728 2288 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 2112 -1808 8192 ) ( 2112 2288 8192 ) ( 2112 2288 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 256 8192 ) ( 8192 256 8192 ) ( -8192 256 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 320 8192 ) ( -8192 320 8192 ) ( -8192 320 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -1808 896 ) ( 8192 2288 896 ) ( -8192 -1808 896 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 2288 960 ) ( 8192 -1808 960 ) ( -8192 -1808 960 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1632 2288 8192 ) ( 1632 -1808 8192 ) ( 1632 2288 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 2184 -1808 8192 ) ( 2184 2288 8192 ) ( 2184 2288 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 256 8192 ) ( 8192 256 8192 ) ( -8192 256 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 320 8192 ) ( -8192 320 8192 ) ( -8192 320 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -1808 552 ) ( 8192 2288 552 ) ( -8192 -1808 552 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 2288 640 ) ( 8192 -1808 640 ) ( -8192 -1808 640 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2184 2288 8192 ) ( 2184 -1808 8192 ) ( 2184 2288 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 2816 -1808 8192 ) ( 2816 2288 8192 ) ( 2816 2288 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 256 8192 ) ( 8192 256 8192 ) ( -8192 256 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 320 8192 ) ( -8192 320 8192 ) ( -8192 320 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -1808 552 ) ( 8192 2288 552 ) ( -8192 -1808 552 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 2288 960 ) ( 8192 -1808 960 ) ( -8192 -1808 960 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1216 1304 8192 ) ( 1216 -744 8192 ) ( 1216 1304 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1632 -744 8192 ) ( 1632 1304 8192 ) ( 1632 1304 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 288 8192 ) ( 8192 288 8192 ) ( -8192 288 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 320 8192 ) ( -8192 320 8192 ) ( -8192 320 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -744 552 ) ( 8192 1304 552 ) ( -8192 -744 552 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1304 960 ) ( 8192 -744 960 ) ( -8192 -744 960 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1216 2288 8192 ) ( 1216 -1808 8192 ) ( 1216 2288 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 2816 -1808 8192 ) ( 2816 2288 8192 ) ( 2816 2288 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( -8192 256 8192 ) ( 8192 256 8192 ) ( -8192 256 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 320 8192 ) ( -8192 320 8192 ) ( -8192 320 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -1808 960 ) ( 8192 2288 960 ) ( -8192 -1808 960 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 2288 1024 ) ( 8192 -1808 1024 ) ( -8192 -1808 1024 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 1472 8192 8192 ) ( 1472 -8192 8192 ) ( 1472 8192 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 1760 -8192 8192 ) ( 1760 8192 8192 ) ( 1760 8192 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( -7449 512 8192 ) ( 7675 512 8192 ) ( -7449 512 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 7675 536 8192 ) ( -7449 536 8192 ) ( -7449 536 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 7675 -8192 256 ) ( 7675 8192 256 ) ( -7449 -8192 256 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 7675 8192 304 ) ( 7675 -8192 304 ) ( -7449 -8192 304 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1728 9120 8192 ) ( 1728 -9250 8192 ) ( 1728 9120 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 1792 -9250 8192 ) ( 1792 9120 8192 ) ( 1792 9120 -8192 ) bricks/c_pv_m2 -40 -1 0 1.000000 1.000000 1 0 0 +( -9609 536 8192 ) ( 9115 536 8192 ) ( -9609 536 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 9115 832 8192 ) ( -9609 832 8192 ) ( -9609 832 -8192 ) bricks/c_pv_m2 -8 -1 0 1.000000 1.000000 1 0 0 +( 9115 -9250 256 ) ( 9115 9120 256 ) ( -9609 -9250 256 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 9115 9120 304 ) ( 9115 -9250 304 ) ( -9609 -9250 304 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1728 9120 8192 ) ( 1728 -9250 8192 ) ( 1728 9120 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 1792 -9250 8192 ) ( 1792 9120 8192 ) ( 1792 9120 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -9609 536 8192 ) ( 9115 536 8192 ) ( -9609 536 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 9115 832 8192 ) ( -9609 832 8192 ) ( -9609 832 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 9115 -9250 304 ) ( 9115 9120 304 ) ( -9609 -9250 304 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 9115 9120 416 ) ( 9115 -9250 416 ) ( -9609 -9250 416 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1632 8192 8192 ) ( 1632 -8192 8192 ) ( 1632 8192 -8192 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( 1768 -8192 8192 ) ( 1768 8192 8192 ) ( 1768 8192 -8192 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( -2931 512 8192 ) ( 4806 512 8192 ) ( -2931 512 -8192 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( 4806 576 8192 ) ( -2931 576 8192 ) ( -2931 576 -8192 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( 4806 -8192 512 ) ( 4806 8192 512 ) ( -2931 -8192 512 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( 4806 8192 560 ) ( 4806 -8192 560 ) ( -2931 -8192 560 ) floors/rf_sr_m2 -1 17 0 2.000000 2.000000 1 2097152 0 +} +{ +( 1632 5632 8192 ) ( 1632 -5291 8192 ) ( 1632 5632 -8192 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( 2192 -5291 8192 ) ( 2192 5632 8192 ) ( 2192 5632 -8192 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( -5969 256 8192 ) ( 6918 256 8192 ) ( -5969 256 -8192 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( 6918 512 8192 ) ( -5969 512 8192 ) ( -5969 512 -8192 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( 6918 -5291 512 ) ( 6918 5632 512 ) ( -5969 -5291 512 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 6918 5632 560 ) ( 6918 -5291 560 ) ( -5969 -5291 560 ) floors/rf_sr_m2 -1 17 0 2.000000 2.000000 1 2097152 0 +} +{ +( 1784 536 384 ) ( 1784 536 512 ) ( 1784 512 512 ) bricks/b_sr_20 64 0 0 1.000000 1.000000 1 0 0 +( 2184 512 384 ) ( 2184 512 512 ) ( 2184 536 512 ) bricks/b_sr_20 64 0 0 1.000000 1.000000 1 0 0 +( 1784 512 384 ) ( 1784 512 512 ) ( 2184 512 512 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2184 536 384 ) ( 2184 536 512 ) ( 1784 536 512 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 2184 512 384 ) ( 2184 536 384 ) ( 1784 536 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2184 536 512 ) ( 2184 512 512 ) ( 1784 512 512 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2184 536 512 ) ( 2184 512 512 ) ( 2184 512 576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 2184 512 512 ) ( 1768 512 512 ) ( 1768 512 576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 2184 536 512 ) ( 2184 536 576 ) ( 1792 536 576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 2184 512 512 ) ( 2184 536 512 ) ( 1792 536 512 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 2184 536 576 ) ( 2184 512 576 ) ( 1768 512 576 ) metals/mt_sr_v16 52 44 180 2.000000 -2.000000 1 8388608 0 +( 1768 512 512 ) ( 1792 536 512 ) ( 1792 536 576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 1776 8192 8192 ) ( 1776 -8192 8192 ) ( 1776 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2192 -8192 8192 ) ( 2192 8192 8192 ) ( 2192 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -3808 128 8192 ) ( 5659 128 8192 ) ( -3808 128 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 5659 192 8192 ) ( -3808 192 8192 ) ( -3808 192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 5659 -8192 384 ) ( 5659 8192 384 ) ( -3808 -8192 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 5659 8192 512 ) ( 5659 -8192 512 ) ( -3808 -8192 512 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1776 8192 8192 ) ( 1776 -8192 8192 ) ( 1776 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 2192 -8192 8192 ) ( 2192 8192 8192 ) ( 2192 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -3808 128 8192 ) ( 5659 128 8192 ) ( -3808 128 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 5659 192 8192 ) ( -3808 192 8192 ) ( -3808 192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 5659 -8192 256 ) ( 5659 8192 256 ) ( -3808 -8192 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 5659 8192 384 ) ( 5659 -8192 384 ) ( -3808 -8192 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 2184 7974 8192 ) ( 2184 -7967 8192 ) ( 2184 7974 -8192 ) metals/mt_sr_v16 32 16 0 1.000000 1.000000 1 8390656 0 +( 2816 -7967 8192 ) ( 2816 7974 8192 ) ( 2816 7974 -8192 ) metals/mt_sr_v16 32 16 0 1.000000 1.000000 1 8390656 0 +( -7920 128 8192 ) ( 8059 128 8192 ) ( -7920 128 -8192 ) metals/mt_sr_v16 32 16 0 1.000000 1.000000 1 8390656 0 +( 8059 704 8192 ) ( -7920 704 8192 ) ( -7920 704 -8192 ) metals/mt_sr_v16 32 16 0 1.000000 1.000000 1 8390656 0 +( 8059 -7967 768 ) ( 8059 7974 768 ) ( -7920 -7967 768 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 0 0 +( 8059 7974 792 ) ( 8059 -7967 792 ) ( -7920 -7967 792 ) floors/rf_sr_m2 0 -3 0 2.000000 2.000000 1 2097152 0 +} +{ +( 1280 7729 8192 ) ( 1280 -7691 8192 ) ( 1280 7729 -8192 ) metals/mt_sr_v16 32 16 0 1.000000 1.000000 1 8390656 0 +( 1632 -7691 8192 ) ( 1632 7729 8192 ) ( 1632 7729 -8192 ) metals/mt_sr_v16 32 16 0 1.000000 1.000000 1 8390656 0 +( -7780 320 8192 ) ( 7891 320 8192 ) ( -7780 320 -8192 ) metals/mt_sr_v16 32 16 0 1.000000 1.000000 1 8390656 0 +( 7891 576 8192 ) ( -7780 576 8192 ) ( -7780 576 -8192 ) metals/mt_sr_v16 32 16 0 1.000000 1.000000 1 8390656 0 +( 7891 -7691 768 ) ( 7891 7729 768 ) ( -7780 -7691 768 ) metals/mt_sr_v13 0 0 0 1.000000 1.000000 1 8388608 0 +( 7891 7729 792 ) ( 7891 -7691 792 ) ( -7780 -7691 792 ) floors/rf_sr_m2 0 0 0 2.000000 2.000000 1 2097152 0 +} +{ +( 1536 1024 304 ) ( 1536 1152 304 ) ( 1536 1152 416 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1728 1152 304 ) ( 1728 1024 304 ) ( 1728 1024 416 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1728 1024 304 ) ( 1536 1024 304 ) ( 1536 1024 416 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 1536 1152 304 ) ( 1728 1152 304 ) ( 1728 1152 416 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 1536 1024 304 ) ( 1728 1024 304 ) ( 1728 1152 304 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1536 1152 416 ) ( 1728 1152 416 ) ( 1728 1024 416 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1728 9600 8192 ) ( 1728 -10061 8192 ) ( 1728 9600 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1792 -10061 8192 ) ( 1792 9600 8192 ) ( 1792 9600 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -9609 960 8192 ) ( 9115 960 8192 ) ( -9609 960 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 9115 1152 8192 ) ( -9609 1152 8192 ) ( -9609 1152 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 9115 -10061 304 ) ( 9115 9600 304 ) ( -9609 -10061 304 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 9115 9600 416 ) ( 9115 -10061 416 ) ( -9609 -10061 416 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1536 8192 8192 ) ( 1536 -8192 8192 ) ( 1536 8192 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 1728 -8192 8192 ) ( 1728 8192 8192 ) ( 1728 8192 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( -8192 1024 8192 ) ( 8192 1024 8192 ) ( -8192 1024 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 8192 1152 8192 ) ( -8192 1152 8192 ) ( -8192 1152 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 304 ) ( 8192 -8192 304 ) ( -8192 -8192 304 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1728 9600 8192 ) ( 1728 -10061 8192 ) ( 1728 9600 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 1792 -10061 8192 ) ( 1792 9600 8192 ) ( 1792 9600 -8192 ) bricks/c_pv_m2 -40 -1 0 1.000000 1.000000 1 0 0 +( -9609 960 8192 ) ( 9115 960 8192 ) ( -9609 960 -8192 ) bricks/c_pv_m2 -40 -1 0 1.000000 1.000000 1 0 0 +( 9115 1152 8192 ) ( -9609 1152 8192 ) ( -9609 1152 -8192 ) bricks/c_pv_m2 -40 -1 0 1.000000 1.000000 1 0 0 +( 9115 -10061 256 ) ( 9115 9600 256 ) ( -9609 -10061 256 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 9115 9600 304 ) ( 9115 -10061 304 ) ( -9609 -10061 304 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1664 8192 8192 ) ( 1664 -8192 8192 ) ( 1664 8192 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 1728 -8192 8192 ) ( 1728 8192 8192 ) ( 1728 8192 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( -8192 576 8192 ) ( 8192 576 8192 ) ( -8192 576 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 8192 768 8192 ) ( -8192 768 8192 ) ( -8192 768 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 304 ) ( 8192 -8192 304 ) ( -8192 -8192 304 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1664 8192 8192 ) ( 1664 -8192 8192 ) ( 1664 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 1728 -8192 8192 ) ( 1728 8192 8192 ) ( 1728 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 576 8192 ) ( 8192 576 8192 ) ( -8192 576 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 768 8192 ) ( -8192 768 8192 ) ( -8192 768 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 304 ) ( 8192 8192 304 ) ( -8192 -8192 304 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1728 5760 10752 ) ( 1728 -5163 10752 ) ( 1728 5760 -11093 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 1792 -5163 10752 ) ( 1792 5760 10752 ) ( 1792 5760 -11093 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 1 0 0 +( -9609 832 10752 ) ( 9115 832 10752 ) ( -9609 832 -11093 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 9115 960 10752 ) ( -9609 960 10752 ) ( -9609 960 -11093 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 9115 -5163 384 ) ( 9115 5760 384 ) ( -9609 -5163 384 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 9115 5760 512 ) ( 9115 -5163 512 ) ( -9609 -5163 512 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1704 8192 8192 ) ( 1704 -8192 8192 ) ( 1704 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 1728 -8192 8192 ) ( 1728 8192 8192 ) ( 1728 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 768 8192 ) ( 8192 768 8192 ) ( -8192 768 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1024 8192 ) ( -8192 1024 8192 ) ( -8192 1024 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 448 ) ( 8192 8192 448 ) ( -8192 -8192 448 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1704 8192 8192 ) ( 1704 -8192 8192 ) ( 1704 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1728 -8192 8192 ) ( 1728 8192 8192 ) ( 1728 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 768 8192 ) ( 8192 768 8192 ) ( -8192 768 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1024 8192 ) ( -8192 1024 8192 ) ( -8192 1024 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1216 8192 8192 ) ( 1216 -8192 8192 ) ( 1216 8192 -8192 ) props/w_sr_m2a 0 0 0 1.000000 1.000000 +( 1272 -8192 8192 ) ( 1272 8192 8192 ) ( 1272 8192 -8192 ) props/w_sr_m2a 0 64 0 2.000000 2.000000 +( -8192 960 8192 ) ( 8192 960 8192 ) ( -8192 960 -8192 ) props/w_sr_m2a 0 0 0 1.000000 1.000000 +( 8192 1088 8192 ) ( -8192 1088 8192 ) ( -8192 1088 -8192 ) props/w_sr_m2a 0 0 0 1.000000 1.000000 +( 8192 -8192 640 ) ( 8192 8192 640 ) ( -8192 -8192 640 ) props/w_sr_m2a 0 0 0 1.000000 1.000000 +( 8192 8192 896 ) ( 8192 -8192 896 ) ( -8192 -8192 896 ) props/w_sr_m2a 0 0 0 1.000000 1.000000 +} +{ +( 1216 8192 8192 ) ( 1216 -8192 8192 ) ( 1216 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1280 -8192 8192 ) ( 1280 8192 8192 ) ( 1280 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1088 8192 ) ( 8192 1088 8192 ) ( -8192 1088 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1152 8192 ) ( -8192 1152 8192 ) ( -8192 1152 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 640 ) ( 8192 8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 896 ) ( 8192 -8192 896 ) ( -8192 -8192 896 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1280 8192 8192 ) ( 1280 -8192 8192 ) ( 1280 8192 -8192 ) bricks/b_sr_20b -64 40 0 1.000000 1.000000 1 0 0 +( 1504 -8192 8192 ) ( 1504 8192 8192 ) ( 1504 8192 -8192 ) bricks/b_sr_c31 0 0 0 1.000000 1.000000 1 0 0 +( -43744 576 8192 ) ( 32715 576 8192 ) ( -43744 576 -8192 ) bricks/b_sr_20 -96 0 0 1.000000 1.000000 1 0 0 +( 32715 896 8192 ) ( -43744 896 8192 ) ( -43744 896 -8192 ) bricks/b_sr_c31 0 0 0 1.000000 1.000000 1 0 0 +( 32715 -8192 552 ) ( 32715 8192 552 ) ( -43744 -8192 552 ) bricks/b_sr_20 -96 -64 0 1.000000 1.000000 1 0 0 +( 32715 8192 640 ) ( 32715 -8192 640 ) ( -43744 -8192 640 ) bricks/b_sr_20 -96 -64 0 1.000000 1.000000 1 0 0 +} +{ +( 1280 8192 8192 ) ( 1280 -8192 8192 ) ( 1280 8192 -8192 ) bricks/b_sr_20b -64 40 0 1.000000 1.000000 1 0 0 +( 1504 -8192 8192 ) ( 1504 8192 8192 ) ( 1504 8192 -8192 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( -43744 576 8192 ) ( 32715 576 8192 ) ( -43744 576 -8192 ) bricks/b_sr_20b -96 0 0 1.000000 1.000000 1 0 0 +( 32715 896 8192 ) ( -43744 896 8192 ) ( -43744 896 -8192 ) bricks/b_sr_20b -96 0 0 1.000000 1.000000 1 0 0 +( 32715 -8192 640 ) ( 32715 8192 640 ) ( -43744 -8192 640 ) bricks/b_sr_20b -96 -64 0 1.000000 1.000000 1 0 0 +( 32715 8192 768 ) ( 32715 -8192 768 ) ( -43744 -8192 768 ) bricks/b_sr_20b -96 -64 0 1.000000 1.000000 1 0 0 +} +{ +( 1536 8192 8192 ) ( 1536 -8192 8192 ) ( 1536 8192 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 1792 -8192 8192 ) ( 1792 8192 8192 ) ( 1792 8192 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( -11434 1152 8192 ) ( 10410 1152 8192 ) ( -11434 1152 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 10410 1728 8192 ) ( -11434 1728 8192 ) ( -11434 1728 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 10410 -8192 240 ) ( 10410 8192 240 ) ( -11434 -8192 240 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 10410 8192 256 ) ( 10410 -8192 256 ) ( -11434 -8192 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +} +{ +( 1280 8192 8192 ) ( 1280 -8192 8192 ) ( 1280 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1472 -8192 8192 ) ( 1472 8192 8192 ) ( 1472 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1472 8192 ) ( 8192 1472 8192 ) ( -8192 1472 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 304 ) ( 8192 8192 304 ) ( -8192 -8192 304 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 1280 -8192 8192 ) ( 1280 8192 8192 ) ( 1280 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1472 8192 ) ( 8192 1472 8192 ) ( -8192 1472 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 304 ) ( 8192 8192 304 ) ( -8192 -8192 304 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1512 8192 8192 ) ( 1512 -8192 8192 ) ( 1512 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 1536 -8192 8192 ) ( 1536 8192 8192 ) ( 1536 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 512 ) ( 8192 8192 512 ) ( -8192 -8192 512 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) metals/mt_sr_v16 -65 0 270 2.000000 2.000000 1 8388608 0 +( -5600 -5984 8192 ) ( 5984 5600 8192 ) ( 5984 5600 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 1280 8192 8192 ) ( 1280 -8192 8192 ) ( 1280 8192 -8192 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( 1512 -8192 8192 ) ( 1512 8192 8192 ) ( 1512 8192 -8192 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( -8192 1128 8192 ) ( 8192 1128 8192 ) ( -8192 1128 -8192 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( 8192 1552 8192 ) ( -8192 1552 8192 ) ( -8192 1552 -8192 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( 8192 -8192 512 ) ( 8192 8192 512 ) ( -8192 -8192 512 ) floors/rf_sr_m2 -16 -32 90 1.000000 1.000000 1 2097152 0 +( 8192 8192 560 ) ( 8192 -8192 560 ) ( -8192 -8192 560 ) floors/rf_sr_m2 -1 17 0 2.000000 2.000000 1 2097152 0 +} +{ +( 1216 8192 8192 ) ( 1216 -8192 8192 ) ( 1216 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1280 -8192 8192 ) ( 1280 8192 8192 ) ( 1280 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 960 8192 ) ( 8192 960 8192 ) ( -8192 960 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1280 8192 ) ( -8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 896 ) ( 8192 8192 896 ) ( -8192 -8192 896 ) bricks/b_sr_c27 0 0 270 1.000000 1.000000 1 0 0 +( 8192 8192 960 ) ( 8192 -8192 960 ) ( -8192 -8192 960 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1216 8192 8192 ) ( 1216 -8192 8192 ) ( 1216 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1280 -8192 8192 ) ( 1280 8192 8192 ) ( 1280 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1472 8192 ) ( 8192 1472 8192 ) ( -8192 1472 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 640 ) ( 8192 8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 896 ) ( 8192 -8192 896 ) ( -8192 -8192 896 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1216 8192 8192 ) ( 1216 -8192 8192 ) ( 1216 8192 -8192 ) props/w_sr_m1a -32 0 0 1.000000 1.000000 1 0 0 +( 1272 -8192 8192 ) ( 1272 8192 8192 ) ( 1272 8192 -8192 ) props/w_sr_m1a -32 0 0 1.000000 1.000000 1 0 0 +( -8192 1344 8192 ) ( 8192 1344 8192 ) ( -8192 1344 -8192 ) props/w_sr_m1a -32 0 0 1.000000 1.000000 1 0 0 +( 8192 1472 8192 ) ( -8192 1472 8192 ) ( -8192 1472 -8192 ) props/w_sr_m1a -32 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 640 ) ( 8192 8192 640 ) ( -8192 -8192 640 ) props/w_sr_m1a -32 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 896 ) ( 8192 -8192 896 ) ( -8192 -8192 896 ) props/w_sr_m1a -32 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1216 8192 8192 ) ( 1216 -8192 8192 ) ( 1216 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1280 -8192 8192 ) ( 1280 8192 8192 ) ( 1280 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1280 8192 ) ( 8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1344 8192 ) ( -8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 640 ) ( 8192 8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 960 ) ( 8192 -8192 960 ) ( -8192 -8192 960 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1216 8192 8192 ) ( 1216 -8192 8192 ) ( 1216 8192 -8192 ) props/w_sr_m2a 0 0 0 1.000000 1.000000 +( 1272 -8192 8192 ) ( 1272 8192 8192 ) ( 1272 8192 -8192 ) props/w_sr_m2a 0 64 0 2.000000 2.000000 0 1 0 +( -8192 1152 8192 ) ( 8192 1152 8192 ) ( -8192 1152 -8192 ) props/w_sr_m2a 0 0 0 1.000000 1.000000 +( 8192 1280 8192 ) ( -8192 1280 8192 ) ( -8192 1280 -8192 ) props/w_sr_m2a 0 0 0 1.000000 1.000000 +( 8192 -8192 640 ) ( 8192 8192 640 ) ( -8192 -8192 640 ) props/w_sr_m2a 0 0 0 1.000000 1.000000 +( 8192 8192 896 ) ( 8192 -8192 896 ) ( -8192 -8192 896 ) props/w_sr_m2a 0 0 0 1.000000 1.000000 +} +{ +( 1216 8192 8192 ) ( 1216 -8192 8192 ) ( 1216 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1280 -8192 8192 ) ( 1280 8192 8192 ) ( 1280 8192 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( -8192 896 8192 ) ( 8192 896 8192 ) ( -8192 896 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1344 8192 ) ( -8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 552 ) ( 8192 8192 552 ) ( -8192 -8192 552 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 640 ) ( 8192 -8192 640 ) ( -8192 -8192 640 ) bricks/b_sr_c27 0 0 270 1.000000 1.000000 1 0 0 +} +{ +( 1512 1128 512 ) ( 1512 1128 576 ) ( 1768 1128 576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 1792 1152 512 ) ( 1792 1152 576 ) ( 1536 1152 576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 1536 1152 512 ) ( 1512 1128 512 ) ( 1768 1128 512 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 1512 1128 576 ) ( 1536 1152 576 ) ( 1792 1152 576 ) metals/mt_sr_v16 -1 0 0 -2.000000 2.000000 1 8388608 0 +( 1792 1152 512 ) ( 1768 1128 512 ) ( 1768 1128 576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 1512 1128 512 ) ( 1536 1152 512 ) ( 1536 1152 576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 1768 1128 512 ) ( 1768 1128 576 ) ( 1768 512 576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 1792 536 512 ) ( 1792 536 576 ) ( 1792 1152 576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 1768 512 512 ) ( 1792 536 512 ) ( 1792 1152 512 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 1768 1128 576 ) ( 1792 1152 576 ) ( 1792 536 576 ) metals/mt_sr_v16 192 256 270 2.000000 2.000000 1 8388608 0 +( 1792 536 512 ) ( 1768 512 512 ) ( 1768 512 576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 1768 1128 512 ) ( 1792 1152 512 ) ( 1792 1152 576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 1792 8192 8192 ) ( 1792 -8192 8192 ) ( 1792 8192 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 2752 -8192 8192 ) ( 2752 8192 8192 ) ( 2752 8192 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( -7508 704 8192 ) ( 7852 704 8192 ) ( -7508 704 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 7852 1728 8192 ) ( -7508 1728 8192 ) ( -7508 1728 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 7852 -8192 240 ) ( 7852 8192 240 ) ( -7508 -8192 240 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 7852 8192 256 ) ( 7852 -8192 256 ) ( -7508 -8192 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +} +{ +( 1672 8192 8192 ) ( 1672 -8192 8192 ) ( 1672 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1704 -8192 8192 ) ( 1704 8192 8192 ) ( 1704 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 832 8192 ) ( 8192 832 8192 ) ( -8192 832 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 960 8192 ) ( -8192 960 8192 ) ( -8192 960 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1656 8192 8192 ) ( 1656 -8192 8192 ) ( 1656 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1672 -8192 8192 ) ( 1672 8192 8192 ) ( 1672 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 832 8192 ) ( 8192 832 8192 ) ( -8192 832 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 888 8192 ) ( -8192 888 8192 ) ( -8192 888 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1656 8192 8192 ) ( 1656 -8192 8192 ) ( 1656 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1672 -8192 8192 ) ( 1672 8192 8192 ) ( 1672 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 904 8192 ) ( 8192 904 8192 ) ( -8192 904 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 960 8192 ) ( -8192 960 8192 ) ( -8192 960 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1656 8192 8192 ) ( 1656 -8192 8192 ) ( 1656 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1672 -8192 8192 ) ( 1672 8192 8192 ) ( 1672 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 888 8192 ) ( 8192 888 8192 ) ( -8192 888 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 904 8192 ) ( -8192 904 8192 ) ( -8192 904 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) common/li_sr_m19 -8 8 0 1.000000 1.000000 1 1 20000 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1472 8192 8192 ) ( 1472 -8192 8192 ) ( 1472 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1656 -8192 8192 ) ( 1656 8192 8192 ) ( 1656 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 832 8192 ) ( 8192 832 8192 ) ( -8192 832 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 960 8192 ) ( -8192 960 8192 ) ( -8192 960 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1344 8192 8192 ) ( 1344 -8192 8192 ) ( 1344 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1400 -8192 8192 ) ( 1400 8192 8192 ) ( 1400 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1144 8192 ) ( 8192 1144 8192 ) ( -8192 1144 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1160 8192 ) ( -8192 1160 8192 ) ( -8192 1160 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1344 8192 8192 ) ( 1344 -8192 8192 ) ( 1344 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1472 -8192 8192 ) ( 1472 8192 8192 ) ( 1472 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1160 8192 ) ( 8192 1160 8192 ) ( -8192 1160 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1344 8192 ) ( -8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1416 8192 8192 ) ( 1416 -8192 8192 ) ( 1416 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1472 -8192 8192 ) ( 1472 8192 8192 ) ( 1472 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1144 8192 ) ( 8192 1144 8192 ) ( -8192 1144 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1160 8192 ) ( -8192 1160 8192 ) ( -8192 1160 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1416 8192 8192 ) ( 1416 -8192 8192 ) ( 1416 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1472 -8192 8192 ) ( 1472 8192 8192 ) ( 1472 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 888 8192 ) ( 8192 888 8192 ) ( -8192 888 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 904 8192 ) ( -8192 904 8192 ) ( -8192 904 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1344 8192 8192 ) ( 1344 -8192 8192 ) ( 1344 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1472 -8192 8192 ) ( 1472 8192 8192 ) ( 1472 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 904 8192 ) ( 8192 904 8192 ) ( -8192 904 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1144 8192 ) ( -8192 1144 8192 ) ( -8192 1144 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1344 8192 8192 ) ( 1344 -8192 8192 ) ( 1344 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1400 -8192 8192 ) ( 1400 8192 8192 ) ( 1400 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 888 8192 ) ( 8192 888 8192 ) ( -8192 888 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 904 8192 ) ( -8192 904 8192 ) ( -8192 904 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1400 8192 8192 ) ( 1400 -8192 8192 ) ( 1400 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1416 -8192 8192 ) ( 1416 8192 8192 ) ( 1416 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 888 8192 ) ( 8192 888 8192 ) ( -8192 888 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 904 8192 ) ( -8192 904 8192 ) ( -8192 904 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) common/li_sr_m19 8 8 0 1.000000 1.000000 1 1 20000 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1344 8192 8192 ) ( 1344 -8192 8192 ) ( 1344 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1472 -8192 8192 ) ( 1472 8192 8192 ) ( 1472 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 832 8192 ) ( 8192 832 8192 ) ( -8192 832 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 888 8192 ) ( -8192 888 8192 ) ( -8192 888 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1536 8192 8192 ) ( 1536 -8192 8192 ) ( 1536 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1728 -8192 8192 ) ( 1728 8192 8192 ) ( 1728 8192 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( -8192 960 8192 ) ( 8192 960 8192 ) ( -8192 960 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1024 8192 ) ( -8192 1024 8192 ) ( -8192 1024 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 304 ) ( 8192 8192 304 ) ( -8192 -8192 304 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1536 8192 8192 ) ( 1536 -8192 8192 ) ( 1536 8192 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 1728 -8192 8192 ) ( 1728 8192 8192 ) ( 1728 8192 -8192 ) bricks/c_pv_m2 -40 -1 0 1.000000 1.000000 1 0 0 +( -8192 960 8192 ) ( 8192 960 8192 ) ( -8192 960 -8192 ) bricks/c_pv_m2 -40 -1 0 1.000000 1.000000 1 0 0 +( 8192 1024 8192 ) ( -8192 1024 8192 ) ( -8192 1024 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 304 ) ( 8192 -8192 304 ) ( -8192 -8192 304 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1280 8192 8192 ) ( 1280 -8192 8192 ) ( 1280 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1728 -8192 8192 ) ( 1728 8192 8192 ) ( 1728 8192 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( -8192 768 8192 ) ( 8192 768 8192 ) ( -8192 768 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 832 8192 ) ( -8192 832 8192 ) ( -8192 832 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 304 ) ( 8192 8192 304 ) ( -8192 -8192 304 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1280 8192 8192 ) ( 1280 -8192 8192 ) ( 1280 8192 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 1728 -8192 8192 ) ( 1728 8192 8192 ) ( 1728 8192 -8192 ) bricks/c_pv_m2 -40 -1 180 1.000000 1.000000 1 0 0 +( -8192 768 8192 ) ( 8192 768 8192 ) ( -8192 768 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 8192 832 8192 ) ( -8192 832 8192 ) ( -8192 832 -8192 ) bricks/c_pv_m2 -40 -1 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 304 ) ( 8192 -8192 304 ) ( -8192 -8192 304 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +} +{ +( 256 8192 8192 ) ( 256 -8192 8192 ) ( 256 8192 -8192 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 320 -8192 8192 ) ( 320 8192 8192 ) ( 320 8192 -8192 ) bricks/c_pv_18a 0 168 270 2.000000 2.000000 1 0 0 +( -8192 640 8192 ) ( 8192 640 8192 ) ( -8192 640 -8192 ) bricks/c_pv_18a 0 152 270 2.000000 2.000000 1 0 0 +( 8192 768 8192 ) ( -8192 768 8192 ) ( -8192 768 -8192 ) bricks/c_pv_18a 0 152 270 2.000000 2.000000 1 0 0 +( 8192 -8192 192 ) ( 8192 8192 192 ) ( -8192 -8192 192 ) bricks/c_pv_18a 0 152 270 2.000000 2.000000 1 0 0 +( 6545 8192 4925 ) ( 6545 -8192 4925 ) ( -6561 -8192 -4904 ) bricks/c_pv_18a 80 188 270 2.000000 2.000000 1 0 0 +} +{ +( 256 8192 8192 ) ( 256 -8192 8192 ) ( 256 8192 -8192 ) props/w_sr_m6d 0 -64 0 1.000000 1.000000 1 0 0 +( 320 -8192 8192 ) ( 320 8192 8192 ) ( 320 8192 -8192 ) props/w_sr_m6d 0 -32 0 1.000000 1.000000 1 1 400 +( -8192 640 8192 ) ( 8192 640 8192 ) ( -8192 640 -8192 ) props/w_sr_m6d 0 -32 0 1.000000 1.000000 1 1 400 +( 8192 768 8192 ) ( -8192 768 8192 ) ( -8192 768 -8192 ) props/w_sr_m6d 0 -32 0 1.000000 1.000000 1 1 400 +( 8192 -8192 64 ) ( 8192 8192 64 ) ( -8192 -8192 64 ) props/w_sr_m6d 0 -32 0 1.000000 1.000000 1 1 400 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) props/w_sr_m6d 0 -32 0 1.000000 1.000000 1 1 400 +} +{ +( 1400 8192 8192 ) ( 1400 -8192 8192 ) ( 1400 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1416 -8192 8192 ) ( 1416 8192 8192 ) ( 1416 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1144 8192 ) ( 8192 1144 8192 ) ( -8192 1144 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1160 8192 ) ( -8192 1160 8192 ) ( -8192 1160 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) common/li_sr_m19 8 8 0 1.000000 1.000000 1 1 20000 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1192 8192 8192 ) ( 1192 -8192 8192 ) ( 1192 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1400 -8192 8192 ) ( 1400 8192 8192 ) ( 1400 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1400 8192 ) ( 8192 1400 8192 ) ( -8192 1400 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1416 8192 ) ( -8192 1416 8192 ) ( -8192 1416 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1176 8192 8192 ) ( 1176 -8192 8192 ) ( 1176 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1192 -8192 8192 ) ( 1192 8192 8192 ) ( 1192 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1400 8192 ) ( 8192 1400 8192 ) ( -8192 1400 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1416 8192 ) ( -8192 1416 8192 ) ( -8192 1416 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) common/li_sr_m19 8 8 0 1.000000 1.000000 1 1 10000 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 968 8192 8192 ) ( 968 -8192 8192 ) ( 968 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1176 -8192 8192 ) ( 1176 8192 8192 ) ( 1176 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1400 8192 ) ( 8192 1400 8192 ) ( -8192 1400 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1416 8192 ) ( -8192 1416 8192 ) ( -8192 1416 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1400 8192 8192 ) ( 1400 -8192 8192 ) ( 1400 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1416 -8192 8192 ) ( 1416 8192 8192 ) ( 1416 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1400 8192 ) ( 8192 1400 8192 ) ( -8192 1400 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1416 8192 ) ( -8192 1416 8192 ) ( -8192 1416 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) common/li_sr_m19 8 8 0 1.000000 1.000000 1 1 18000 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1416 8192 8192 ) ( 1416 -8192 8192 ) ( 1416 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1472 -8192 8192 ) ( 1472 8192 8192 ) ( 1472 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1400 8192 ) ( 8192 1400 8192 ) ( -8192 1400 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1416 8192 ) ( -8192 1416 8192 ) ( -8192 1416 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 952 8192 8192 ) ( 952 -8192 8192 ) ( 952 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 968 -8192 8192 ) ( 968 8192 8192 ) ( 968 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1400 8192 ) ( 8192 1400 8192 ) ( -8192 1400 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1416 8192 ) ( -8192 1416 8192 ) ( -8192 1416 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) common/li_sr_m19 8 8 0 1.000000 1.000000 1 1 20000 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 848 8192 8192 ) ( 848 -8192 8192 ) ( 848 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 952 -8192 8192 ) ( 952 8192 8192 ) ( 952 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1400 8192 ) ( 8192 1400 8192 ) ( -8192 1400 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1416 8192 ) ( -8192 1416 8192 ) ( -8192 1416 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 848 8192 8192 ) ( 848 -8192 8192 ) ( 848 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1472 -8192 8192 ) ( 1472 8192 8192 ) ( 1472 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1344 8192 ) ( 8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1400 8192 ) ( -8192 1400 8192 ) ( -8192 1400 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 848 8192 8192 ) ( 848 -8192 8192 ) ( 848 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1472 -8192 8192 ) ( 1472 8192 8192 ) ( 1472 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1416 8192 ) ( 8192 1416 8192 ) ( -8192 1416 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1472 8192 ) ( -8192 1472 8192 ) ( -8192 1472 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 1280 -8192 8192 ) ( 1280 8192 8192 ) ( 1280 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1280 8192 ) ( 8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1344 8192 ) ( -8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 304 ) ( 8192 8192 304 ) ( -8192 -8192 304 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) bricks/c_pv_m2 -40 -1 0 1.000000 1.000000 1 0 0 +( 1280 -8192 8192 ) ( 1280 8192 8192 ) ( 1280 8192 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( -8192 1280 8192 ) ( 8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 8192 1344 8192 ) ( -8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/c_pv_m2 -40 -1 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 304 ) ( 8192 -8192 304 ) ( -8192 -8192 304 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) bricks/c_pv_m2 -40 -1 180 1.000000 1.000000 1 0 0 +( 1472 -8192 8192 ) ( 1472 8192 8192 ) ( 1472 8192 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( -8192 1472 8192 ) ( 8192 1472 8192 ) ( -8192 1472 -8192 ) bricks/c_pv_m2 -40 -1 0 1.000000 1.000000 1 0 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 304 ) ( 8192 -8192 304 ) ( -8192 -8192 304 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1472 8192 8192 ) ( 1472 -8192 8192 ) ( 1472 8192 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 1536 -8192 8192 ) ( 1536 8192 8192 ) ( 1536 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 960 8192 ) ( 8192 960 8192 ) ( -8192 960 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 304 ) ( 8192 8192 304 ) ( -8192 -8192 304 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 416 ) ( 8192 -8192 416 ) ( -8192 -8192 416 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1472 8192 8192 ) ( 1472 -8192 8192 ) ( 1472 8192 -8192 ) bricks/c_pv_m2 -40 -1 0 1.000000 1.000000 1 0 0 +( 1536 -8192 8192 ) ( 1536 8192 8192 ) ( 1536 8192 -8192 ) bricks/c_pv_m2 -40 -1 0 1.000000 1.000000 1 0 0 +( -8192 960 8192 ) ( 8192 960 8192 ) ( -8192 960 -8192 ) bricks/c_pv_m2 -40 -1 0 1.000000 1.000000 1 0 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 304 ) ( 8192 -8192 304 ) ( -8192 -8192 304 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1280 8192 8192 ) ( 1280 -8192 8192 ) ( 1280 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 1344 -8192 8192 ) ( 1344 8192 8192 ) ( 1344 8192 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( -8192 832 8192 ) ( 8192 832 8192 ) ( -8192 832 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1344 8192 ) ( -8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 304 ) ( 8192 8192 304 ) ( -8192 -8192 304 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1280 8192 8192 ) ( 1280 -8192 8192 ) ( 1280 8192 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 1344 -8192 8192 ) ( 1344 8192 8192 ) ( 1344 8192 -8192 ) bricks/c_pv_m2 -40 -1 0 1.000000 1.000000 1 0 0 +( -8192 832 8192 ) ( 8192 832 8192 ) ( -8192 832 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 8192 1344 8192 ) ( -8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 304 ) ( 8192 -8192 304 ) ( -8192 -8192 304 ) bricks/c_pv_m2 -40 0 0 1.000000 1.000000 1 0 0 +} +{ +( 832 13184 8192 ) ( 832 -15488 8192 ) ( 832 13184 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 848 -15488 8192 ) ( 848 13184 8192 ) ( 848 13184 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1088 8192 ) ( 8192 1088 8192 ) ( -8192 1088 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -15488 384 ) ( 8192 13184 384 ) ( -8192 -15488 384 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 13184 640 ) ( 8192 -15488 640 ) ( -8192 -15488 640 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1344 8192 8192 ) ( 1344 -8192 8192 ) ( 1344 8192 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 1472 -8192 8192 ) ( 1472 8192 8192 ) ( 1472 8192 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 -8192 240 ) ( 8192 8192 240 ) ( -8192 -8192 240 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) bricks/c_sr_m2c 32 -64 90 1.000000 1.000000 1 67108864 0 +( -5536 -6048 8192 ) ( 6048 5536 8192 ) ( -5536 -6048 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 5792 5792 8192 ) ( -5792 -5792 8192 ) ( 5792 5792 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +} +{ +( -600 8192 8192 ) ( -600 -8192 8192 ) ( -600 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -528 -8192 8192 ) ( -528 8192 8192 ) ( -528 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1384 8192 ) ( 8192 1384 8192 ) ( -8192 1384 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1400 8192 ) ( -8192 1400 8192 ) ( -8192 1400 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -616 8192 8192 ) ( -616 -8192 8192 ) ( -616 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -600 -8192 8192 ) ( -600 8192 8192 ) ( -600 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1384 8192 ) ( 8192 1384 8192 ) ( -8192 1384 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1400 8192 ) ( -8192 1400 8192 ) ( -8192 1400 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) common/li_sr_m19 8 8 0 1.000000 1.000000 1 1 20000 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -824 8192 8192 ) ( -824 -8192 8192 ) ( -824 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -616 -8192 8192 ) ( -616 8192 8192 ) ( -616 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1384 8192 ) ( 8192 1384 8192 ) ( -8192 1384 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1400 8192 ) ( -8192 1400 8192 ) ( -8192 1400 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -840 8192 8192 ) ( -840 -8192 8192 ) ( -840 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -824 -8192 8192 ) ( -824 8192 8192 ) ( -824 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1384 8192 ) ( 8192 1384 8192 ) ( -8192 1384 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1400 8192 ) ( -8192 1400 8192 ) ( -8192 1400 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) common/li_sr_m19 8 8 0 1.000000 1.000000 1 1 15000 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -960 8192 8192 ) ( -960 -8192 8192 ) ( -960 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -840 -8192 8192 ) ( -840 8192 8192 ) ( -840 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1384 8192 ) ( 8192 1384 8192 ) ( -8192 1384 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1400 8192 ) ( -8192 1400 8192 ) ( -8192 1400 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -1032 8192 8192 ) ( -1032 -8192 8192 ) ( -1032 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -1016 -8192 8192 ) ( -1016 8192 8192 ) ( -1016 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1400 8192 ) ( 8192 1400 8192 ) ( -8192 1400 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1456 8192 ) ( -8192 1456 8192 ) ( -8192 1456 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -960 8192 8192 ) ( -960 -8192 8192 ) ( -960 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -832 -8192 8192 ) ( -832 8192 8192 ) ( -832 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1400 8192 ) ( 8192 1400 8192 ) ( -8192 1400 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1456 8192 ) ( -8192 1456 8192 ) ( -8192 1456 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -1032 8192 8192 ) ( -1032 -8192 8192 ) ( -1032 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -1016 -8192 8192 ) ( -1016 8192 8192 ) ( -1016 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1328 8192 ) ( 8192 1328 8192 ) ( -8192 1328 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1384 8192 ) ( -8192 1384 8192 ) ( -8192 1384 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -960 8192 8192 ) ( -960 -8192 8192 ) ( -960 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -832 -8192 8192 ) ( -832 8192 8192 ) ( -832 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1328 8192 ) ( 8192 1328 8192 ) ( -8192 1328 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1384 8192 ) ( -8192 1384 8192 ) ( -8192 1384 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -1032 8192 8192 ) ( -1032 -8192 8192 ) ( -1032 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -1016 -8192 8192 ) ( -1016 8192 8192 ) ( -1016 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1384 8192 ) ( 8192 1384 8192 ) ( -8192 1384 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1400 8192 ) ( -8192 1400 8192 ) ( -8192 1400 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) common/li_sr_m19 8 8 0 1.000000 1.000000 1 1 18000 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1032 8192 8192 ) ( -1032 -8192 8192 ) ( -1032 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -1016 -8192 8192 ) ( -1016 8192 8192 ) ( -1016 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1088 8192 ) ( 8192 1088 8192 ) ( -8192 1088 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1144 8192 ) ( -8192 1144 8192 ) ( -8192 1144 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1032 8192 8192 ) ( -1032 -8192 8192 ) ( -1032 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -1016 -8192 8192 ) ( -1016 8192 8192 ) ( -1016 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1160 8192 ) ( 8192 1160 8192 ) ( -8192 1160 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1328 8192 ) ( -8192 1328 8192 ) ( -8192 1328 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -1016 8192 8192 ) ( -1016 -8192 8192 ) ( -1016 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -960 -8192 8192 ) ( -960 8192 8192 ) ( -960 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1088 8192 ) ( 8192 1088 8192 ) ( -8192 1088 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1456 8192 ) ( -8192 1456 8192 ) ( -8192 1456 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -1088 8192 8192 ) ( -1088 -8192 8192 ) ( -1088 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -1032 -8192 8192 ) ( -1032 8192 8192 ) ( -1032 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1088 8192 ) ( 8192 1088 8192 ) ( -8192 1088 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1456 8192 ) ( -8192 1456 8192 ) ( -8192 1456 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -832 8192 8192 ) ( -832 -8192 8192 ) ( -832 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -528 -8192 8192 ) ( -528 8192 8192 ) ( -528 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1280 8192 ) ( 8192 1280 8192 ) ( -8192 1280 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1384 8192 ) ( -8192 1384 8192 ) ( -8192 1384 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -832 8192 8192 ) ( -832 -8192 8192 ) ( -832 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -528 -8192 8192 ) ( -528 8192 8192 ) ( -528 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1400 8192 ) ( 8192 1400 8192 ) ( -8192 1400 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1504 8192 ) ( -8192 1504 8192 ) ( -8192 1504 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -528 8192 6240 ) ( -528 -8192 6240 ) ( -528 8192 -6048 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -512 -8192 6240 ) ( -512 8192 6240 ) ( -512 8192 -6048 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1280 6240 ) ( 8192 1280 6240 ) ( -8192 1280 -6048 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1504 6240 ) ( -8192 1504 6240 ) ( -8192 1504 -6048 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -960 8192 8192 ) ( -960 -8192 8192 ) ( -960 8192 -8192 ) bricks/b_mf_v2a 64 0 0 1.000000 1.000000 1 0 0 +( -512 -8192 8192 ) ( -512 8192 8192 ) ( -512 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1280 8192 ) ( 8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1328 8192 ) ( -8192 1328 8192 ) ( -8192 1328 -8192 ) bricks/b_mf_v2a 64 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -960 8192 8192 ) ( -960 -8192 8192 ) ( -960 8192 -8192 ) bricks/b_mf_v2a 64 0 0 1.000000 1.000000 1 0 0 +( -512 -8192 8192 ) ( -512 8192 8192 ) ( -512 8192 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1456 8192 ) ( 8192 1456 8192 ) ( -8192 1456 -8192 ) bricks/b_mf_v2a 64 0 0 1.000000 1.000000 1 0 0 +( 8192 1504 8192 ) ( -8192 1504 8192 ) ( -8192 1504 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1120 8192 8192 ) ( -1120 -8192 8192 ) ( -1120 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -1088 -8192 8192 ) ( -1088 8192 8192 ) ( -1088 8192 -8192 ) bricks/b_mf_v2a 64 0 0 1.000000 1.000000 1 0 0 +( -8192 1216 8192 ) ( 8192 1216 8192 ) ( -8192 1216 -8192 ) bricks/b_mf_v2a 64 0 0 1.000000 1.000000 1 0 0 +( 8192 1792 8192 ) ( -8192 1792 8192 ) ( -8192 1792 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -304 2176 128 ) ( -304 2176 640 ) ( -304 2064 640 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( -64 2064 128 ) ( -64 2064 640 ) ( -64 2176 640 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( -304 2064 128 ) ( -304 2064 640 ) ( -64 2064 640 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( -64 2176 128 ) ( -64 2176 640 ) ( -304 2176 640 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -64 2064 128 ) ( -64 2176 128 ) ( -304 2176 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( -64 2176 640 ) ( -64 2064 640 ) ( -304 2064 640 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +} +{ +( -256 2709 8192 ) ( -256 984 8192 ) ( -256 2709 -8192 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( -224 984 8192 ) ( -224 2709 8192 ) ( -224 2709 -8192 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( -8192 2064 8192 ) ( 8192 2064 8192 ) ( -8192 2064 -8192 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( 8192 2096 8192 ) ( -8192 2096 8192 ) ( -8192 2096 -8192 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( 8192 984 48 ) ( 8192 2709 48 ) ( -8192 984 48 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( 8192 2709 128 ) ( 8192 984 128 ) ( -8192 984 128 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +} +{ +( -256 2709 8192 ) ( -256 984 8192 ) ( -256 2709 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -224 984 8192 ) ( -224 2709 8192 ) ( -224 2709 -8192 ) bricks/c_pv_m2 15 -1 0 1.000000 1.000000 1 0 0 +( -8192 2064 8192 ) ( 8192 2064 8192 ) ( -8192 2064 -8192 ) bricks/c_pv_m2 0 -1 0 1.000000 1.000000 1 0 0 +( 8192 2096 8192 ) ( -8192 2096 8192 ) ( -8192 2096 -8192 ) bricks/c_pv_m2 0 -1 0 1.000000 1.000000 1 0 0 +( 8192 984 0 ) ( 8192 2709 0 ) ( -8192 984 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 2709 48 ) ( 8192 984 48 ) ( -8192 984 48 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -96 2518 8192 ) ( -96 1304 8192 ) ( -96 2518 -8192 ) bricks/c_pv_m2 15 -1 0 1.000000 1.000000 1 0 0 +( -64 1304 8192 ) ( -64 2518 8192 ) ( -64 2518 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 2064 8192 ) ( 8192 2064 8192 ) ( -8192 2064 -8192 ) bricks/c_pv_m2 15 -1 0 1.000000 1.000000 1 0 0 +( 8192 2096 8192 ) ( -8192 2096 8192 ) ( -8192 2096 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1304 0 ) ( 8192 2518 0 ) ( -8192 1304 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 2518 48 ) ( 8192 1304 48 ) ( -8192 1304 48 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -96 2518 8192 ) ( -96 1304 8192 ) ( -96 2518 -8192 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( -64 1304 8192 ) ( -64 2518 8192 ) ( -64 2518 -8192 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( -8192 2064 8192 ) ( 8192 2064 8192 ) ( -8192 2064 -8192 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( 8192 2096 8192 ) ( -8192 2096 8192 ) ( -8192 2096 -8192 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( 8192 1304 48 ) ( 8192 2518 48 ) ( -8192 1304 48 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( 8192 2518 128 ) ( 8192 1304 128 ) ( -8192 1304 128 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +} +{ +( 1016 8192 8192 ) ( 1016 -8192 8192 ) ( 1016 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 1032 -8192 8192 ) ( 1032 8192 8192 ) ( 1032 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 1016 8192 ) ( 8192 1016 8192 ) ( -8192 1016 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 1032 8192 ) ( -8192 1032 8192 ) ( -8192 1032 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) common/li_sr_m19 8 8 0 1.000000 1.000000 1 1 20000 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 1016 8192 8192 ) ( 1016 -8192 8192 ) ( 1016 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 1032 -8192 8192 ) ( 1032 8192 8192 ) ( 1032 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 840 8192 ) ( 8192 840 8192 ) ( -8192 840 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 1016 8192 ) ( -8192 1016 8192 ) ( -8192 1016 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 1016 8192 8192 ) ( 1016 -8192 8192 ) ( 1016 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 1032 -8192 8192 ) ( 1032 8192 8192 ) ( 1032 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 1032 8192 ) ( 8192 1032 8192 ) ( -8192 1032 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 1208 8192 ) ( -8192 1208 8192 ) ( -8192 1208 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 1016 8192 8192 ) ( 1016 -8192 8192 ) ( 1016 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 1032 -8192 8192 ) ( 1032 8192 8192 ) ( 1032 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 1208 8192 ) ( 8192 1208 8192 ) ( -8192 1208 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 1224 8192 ) ( -8192 1224 8192 ) ( -8192 1224 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) common/li_sr_m19 8 8 0 1.000000 1.000000 1 1 18000 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 1016 8192 8192 ) ( 1016 -8192 8192 ) ( 1016 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 1032 -8192 8192 ) ( 1032 8192 8192 ) ( 1032 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 1224 8192 ) ( 8192 1224 8192 ) ( -8192 1224 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 1344 8192 ) ( -8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 960 8192 8192 ) ( 960 -8192 8192 ) ( 960 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 1016 -8192 8192 ) ( 1016 8192 8192 ) ( 1016 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 288 8192 ) ( 8192 288 8192 ) ( -8192 288 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 1344 8192 ) ( -8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 1032 8192 8192 ) ( 1032 -8192 8192 ) ( 1032 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 1088 -8192 8192 ) ( 1088 8192 8192 ) ( 1088 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 1400 8192 ) ( 8192 1400 8192 ) ( -8192 1400 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 1416 8192 ) ( -8192 1416 8192 ) ( -8192 1416 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 1016 8192 8192 ) ( 1016 -8192 8192 ) ( 1016 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 1032 -8192 8192 ) ( 1032 8192 8192 ) ( 1032 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 1400 8192 ) ( 8192 1400 8192 ) ( -8192 1400 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 1416 8192 ) ( -8192 1416 8192 ) ( -8192 1416 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) common/li_sr_m19 8 8 0 1.000000 1.000000 1 1 8000 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 904 8192 8192 ) ( 904 -8192 8192 ) ( 904 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 1016 -8192 8192 ) ( 1016 8192 8192 ) ( 1016 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 1400 8192 ) ( 8192 1400 8192 ) ( -8192 1400 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 1416 8192 ) ( -8192 1416 8192 ) ( -8192 1416 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 888 8192 8192 ) ( 888 -8192 8192 ) ( 888 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 904 -8192 8192 ) ( 904 8192 8192 ) ( 904 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 1400 8192 ) ( 8192 1400 8192 ) ( -8192 1400 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 1416 8192 ) ( -8192 1416 8192 ) ( -8192 1416 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) common/li_sr_m19 8 8 0 1.000000 1.000000 1 1 20000 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 848 8192 8192 ) ( 848 -8192 8192 ) ( 848 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 888 -8192 8192 ) ( 888 8192 8192 ) ( 888 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 1400 8192 ) ( 8192 1400 8192 ) ( -8192 1400 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 1416 8192 ) ( -8192 1416 8192 ) ( -8192 1416 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 848 8192 8192 ) ( 848 -8192 8192 ) ( 848 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 1088 -8192 8192 ) ( 1088 8192 8192 ) ( 1088 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 1344 8192 ) ( 8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 1400 8192 ) ( -8192 1400 8192 ) ( -8192 1400 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 848 8192 8192 ) ( 848 -8192 8192 ) ( 848 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 1088 -8192 8192 ) ( 1088 8192 8192 ) ( 1088 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 1416 8192 ) ( 8192 1416 8192 ) ( -8192 1416 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 1472 8192 ) ( -8192 1472 8192 ) ( -8192 1472 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) bricks/c_pv_m2 0 -1 180 1.000000 1.000000 1 0 0 +( 960 -8192 8192 ) ( 960 8192 8192 ) ( 960 8192 -8192 ) bricks/c_pv_m2 0 -1 180 1.000000 1.000000 1 0 0 +( -8192 1280 8192 ) ( 8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1344 8192 ) ( -8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/c_pv_m2 0 -1 180 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 48 ) ( 8192 -8192 48 ) ( -8192 -8192 48 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 960 -8192 8192 ) ( 960 8192 8192 ) ( 960 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 1280 8192 ) ( 8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 1344 8192 ) ( -8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 48 ) ( 8192 8192 48 ) ( -8192 -8192 48 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) bricks/c_pv_m2 0 -1 180 1.000000 1.000000 1 0 0 +( 1088 -8192 8192 ) ( 1088 8192 8192 ) ( 1088 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1472 8192 ) ( 8192 1472 8192 ) ( -8192 1472 -8192 ) bricks/c_pv_m2 0 -1 0 1.000000 1.000000 1 0 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 48 ) ( 8192 -8192 48 ) ( -8192 -8192 48 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 1088 -8192 8192 ) ( 1088 8192 8192 ) ( 1088 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 1472 8192 ) ( 8192 1472 8192 ) ( -8192 1472 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 48 ) ( 8192 8192 48 ) ( -8192 -8192 48 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 1088 8192 8192 ) ( 1088 -8192 8192 ) ( 1088 8192 -8192 ) bricks/c_pv_m2 0 -1 180 1.000000 1.000000 1 0 0 +( 1152 -8192 8192 ) ( 1152 8192 8192 ) ( 1152 8192 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -8192 448 8192 ) ( 8192 448 8192 ) ( -8192 448 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 48 ) ( 8192 -8192 48 ) ( -8192 -8192 48 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1088 8192 8192 ) ( 1088 -8192 8192 ) ( 1088 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 1152 -8192 8192 ) ( 1152 8192 8192 ) ( 1152 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 448 8192 ) ( 8192 448 8192 ) ( -8192 448 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 48 ) ( 8192 8192 48 ) ( -8192 -8192 48 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( 960 8192 8192 ) ( 960 -8192 8192 ) ( 960 8192 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 1088 -8192 8192 ) ( 1088 8192 8192 ) ( 1088 8192 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 -8 ) ( 8192 8192 -8 ) ( -8192 -8192 -8 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 0 ) ( 8192 -8192 0 ) ( -8192 -8192 0 ) bricks/c_sr_m2c -384 64 90 1.000000 1.000000 1 67108864 0 +( -5456 -6128 8192 ) ( 6128 5456 8192 ) ( -5456 -6128 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 5600 5984 8192 ) ( -5984 -5600 8192 ) ( 5600 5984 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 848 -8192 8192 ) ( 848 8192 8192 ) ( 848 8192 -8192 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( -8192 1344 8192 ) ( 8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 1472 8192 ) ( -8192 1472 8192 ) ( -8192 1472 -8192 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 176 8192 8192 ) ( 176 -8192 8192 ) ( 176 8192 -8192 ) common/li_sr_v17 -24 48 0 20.000000 20.000000 1 132 0 +( 184 -8192 8192 ) ( 184 8192 8192 ) ( 184 8192 -8192 ) common/li_sr_v17 -24 48 0 20.000000 20.000000 1 132 0 +( -8232 896 8192 ) ( 8152 896 8192 ) ( -8232 896 -8192 ) common/li_sr_v17 -22 48 0 20.000000 20.000000 1 132 0 +( 8152 920 8192 ) ( -8232 920 8192 ) ( -8232 920 -8192 ) common/li_sr_v17 -22 48 0 20.000000 20.000000 1 132 0 +( 8152 -8192 1008 ) ( 8152 8192 1008 ) ( -8232 -8192 1008 ) common/li_sr_v17 -22 48 0 20.000000 20.000000 1 132 0 +( 8152 8192 1024 ) ( 8152 -8192 1024 ) ( -8232 -8192 1024 ) common/li_sr_v17 -22 48 0 20.000000 20.000000 1 132 0 +} +{ +( 184 8192 8192 ) ( 184 -8192 8192 ) ( 184 8192 -8192 ) common/li_sr_v17 -24 48 0 20.000000 20.000000 1 132 0 +( 200 -8192 8192 ) ( 200 8192 8192 ) ( 200 8192 -8192 ) common/li_sr_v17 -24 48 0 20.000000 20.000000 1 132 0 +( -8232 912 8192 ) ( 8152 912 8192 ) ( -8232 912 -8192 ) common/li_sr_v17 -22 48 0 20.000000 20.000000 1 132 0 +( 8152 920 8192 ) ( -8232 920 8192 ) ( -8232 920 -8192 ) common/li_sr_v17 -22 48 0 20.000000 20.000000 1 132 0 +( 8152 -8192 1008 ) ( 8152 8192 1008 ) ( -8232 -8192 1008 ) common/li_sr_v17 -22 48 0 20.000000 20.000000 1 132 0 +( 8152 8192 1024 ) ( 8152 -8192 1024 ) ( -8232 -8192 1024 ) common/li_sr_v17 -22 48 0 20.000000 20.000000 1 132 0 +} +{ +( 176 8192 8192 ) ( 176 -8192 8192 ) ( 176 8192 -8192 ) common/li_sr_v17 -24 48 0 20.000000 20.000000 1 132 0 +( 208 -8192 8192 ) ( 208 8192 8192 ) ( 208 8192 -8192 ) common/li_sr_v17 -24 48 0 20.000000 20.000000 1 132 0 +( -8232 896 8192 ) ( 8152 896 8192 ) ( -8232 896 -8192 ) common/li_sr_v17 -22 48 0 20.000000 20.000000 1 132 0 +( 8152 920 8192 ) ( -8232 920 8192 ) ( -8232 920 -8192 ) common/li_sr_v17 -22 48 0 20.000000 20.000000 1 132 0 +( 8152 -8192 1000 ) ( 8152 8192 1000 ) ( -8232 -8192 1000 ) common/li_sr_v17 -22 48 0 20.000000 20.000000 1 132 0 +( 8152 8192 1008 ) ( 8152 -8192 1008 ) ( -8232 -8192 1008 ) common/li_sr_v17 -22 48 0 20.000000 20.000000 1 132 0 +} +{ +( -832 8192 7995 ) ( -832 -8192 7995 ) ( -832 8192 -7989 ) bricks/b_sr_c01 0 0 180 1.000000 1.000000 1 0 0 +( -448 -8192 7995 ) ( -448 8192 7995 ) ( -448 8192 -7989 ) bricks/b_sr_c01 0 0 180 1.000000 1.000000 1 0 0 +( -8192 1504 7995 ) ( 8192 1504 7995 ) ( -8192 1504 -7989 ) bricks/b_sr_20 0 0 180 1.000000 1.000000 1 0 0 +( 8192 1520 7995 ) ( -8192 1520 7995 ) ( -8192 1520 -7989 ) bricks/b_sr_c01 0 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/b_sr_c01 0 0 180 1.000000 1.000000 1 0 0 +( 8192 8192 768 ) ( 8192 -8192 768 ) ( -8192 -8192 768 ) metals/mt_pv_m16k 0 0 270 1.000000 1.000000 1 8388608 0 +} +{ +( 304 8579 8192 ) ( 304 -8716 8192 ) ( 304 8579 -8192 ) metals/mt_sr_mn8 16 -31 180 1.000000 1.000000 1 8388608 0 +( 320 -8716 8192 ) ( 320 8579 8192 ) ( 320 8579 -8192 ) wood/wd_sr_m9 24 -96 0 1.000000 1.000000 1 134217728 0 +( -8192 1232 8192 ) ( 8192 1232 8192 ) ( -8192 1232 -8192 ) metals/mt_sr_mn8 16 -31 180 1.000000 1.000000 1 8388608 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) metals/mt_sr_mn8 16 -31 180 1.000000 1.000000 1 8388608 0 +( 8192 -8716 240 ) ( 8192 8579 240 ) ( -8192 -8716 240 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8579 256 ) ( 8192 -8716 256 ) ( -8192 -8716 256 ) metals/mt_sr_v16 0 30 90 1.000000 1.000000 1 8390656 0 +} +{ +( -256 8579 8192 ) ( -256 -8716 8192 ) ( -256 8579 -8192 ) metals/mt_sr_v13 0 0 0 1.000000 1.000000 1 0 0 +( 304 -8716 8192 ) ( 304 8579 8192 ) ( 304 8579 -8192 ) metals/mt_sr_v13 0 0 0 1.000000 1.000000 1 0 0 +( -7956 1232 8192 ) ( 7973 1232 8192 ) ( -7956 1232 -8192 ) metals/mt_sr_v13 0 0 0 1.000000 1.000000 1 0 0 +( 7973 1536 8192 ) ( -7956 1536 8192 ) ( -7956 1536 -8192 ) metals/mt_sr_v13 0 0 0 1.000000 1.000000 1 0 0 +( 7973 -8716 240 ) ( 7973 8579 240 ) ( -7956 -8716 240 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 7973 8579 256 ) ( 7973 -8716 256 ) ( -7956 -8716 256 ) wood/wd_sr_m3b 0 0 0 1.000000 1.000000 1 134217728 0 +} +{ +( -272 8192 8192 ) ( -272 -8192 8192 ) ( -272 8192 -8192 ) wood/wd_sr_m9 24 -96 0 1.000000 1.000000 1 134217728 0 +( -256 -8192 8192 ) ( -256 8192 8192 ) ( -256 8192 -8192 ) metals/mt_sr_mn8 16 -31 180 1.000000 1.000000 1 8388608 0 +( -8176 1232 8192 ) ( 8208 1232 8192 ) ( -8176 1232 -8192 ) metals/mt_sr_mn8 16 -31 180 1.000000 1.000000 1 8388608 0 +( 8208 1520 8192 ) ( -8176 1520 8192 ) ( -8176 1520 -8192 ) metals/mt_sr_mn8 16 -31 180 1.000000 1.000000 1 8388608 0 +( 8208 -8192 240 ) ( 8208 8192 240 ) ( -8176 -8192 240 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 0 0 +( 8208 8192 256 ) ( 8208 -8192 256 ) ( -8176 -8192 256 ) metals/mt_sr_v16 0 22 90 1.000000 1.000000 1 8388608 0 +} +{ +( -832 8192 10880 ) ( -832 -8192 10880 ) ( -832 8192 -11648 ) props/w_sr_m4a 64 128 0 1.000000 1.000000 1 1 300 +( -384 -8192 10880 ) ( -384 8192 10880 ) ( -384 8192 -11648 ) props/w_sr_m2a 81 -48 0 1.550000 1.550000 1 1 100 +( -8192 640 10880 ) ( 8192 640 10880 ) ( -8192 640 -11648 ) props/w_sr_m4a 64 128 0 1.000000 1.000000 1 1 300 +( 8192 1216 10880 ) ( -8192 1216 10880 ) ( -8192 1216 -11648 ) props/w_sr_m4a 64 128 0 1.000000 1.000000 1 1 300 +( 8192 -8192 320 ) ( 8192 8192 320 ) ( -8192 -8192 320 ) props/w_sr_m4a 64 128 0 1.000000 1.000000 1 1 300 +( 8192 8192 496 ) ( 8192 -8192 496 ) ( -8192 -8192 496 ) props/w_sr_m4a 64 128 0 1.000000 1.000000 1 1 300 +} +{ +( 608 8192 8192 ) ( 608 -8192 8192 ) ( 608 8192 -8192 ) bricks/b_sr_20b -64 0 0 1.000000 1.000000 1 0 0 +( 896 -8192 8192 ) ( 896 8192 8192 ) ( 896 8192 -8192 ) bricks/b_sr_20b -64 40 0 1.000000 1.000000 1 0 0 +( -52192 576 8192 ) ( 46112 576 8192 ) ( -52192 576 -8192 ) bricks/b_sr_20b -64 0 0 1.000000 1.000000 1 0 0 +( 46112 1088 8192 ) ( -52192 1088 8192 ) ( -52192 1088 -8192 ) bricks/b_sr_20b -64 0 0 1.000000 1.000000 1 0 0 +( 46112 -8192 640 ) ( 46112 8192 640 ) ( -52192 -8192 640 ) bricks/b_sr_20b -64 0 0 1.000000 1.000000 1 0 0 +( 46112 8192 768 ) ( 46112 -8192 768 ) ( -52192 -8192 768 ) bricks/b_sr_20b -64 0 0 1.000000 1.000000 1 0 0 +} +{ +( 608 8192 8192 ) ( 608 -8192 8192 ) ( 608 8192 -8192 ) bricks/b_sr_20 -64 0 0 1.000000 1.000000 1 0 0 +( 896 -8192 8192 ) ( 896 8192 8192 ) ( 896 8192 -8192 ) bricks/b_sr_20b -64 40 0 1.000000 1.000000 1 0 0 +( -52192 576 8192 ) ( 46112 576 8192 ) ( -52192 576 -8192 ) bricks/b_sr_20 -64 0 0 1.000000 1.000000 1 0 0 +( 46112 1088 8192 ) ( -52192 1088 8192 ) ( -52192 1088 -8192 ) bricks/b_sr_20 -64 0 0 1.000000 1.000000 1 0 0 +( 46112 -8192 560 ) ( 46112 8192 560 ) ( -52192 -8192 560 ) bricks/b_sr_20 -64 0 0 1.000000 1.000000 1 0 0 +( 46112 8192 640 ) ( 46112 -8192 640 ) ( -52192 -8192 640 ) bricks/b_sr_20 -64 0 0 1.000000 1.000000 1 0 0 +} +{ +( 200 8192 8192 ) ( 200 -8192 8192 ) ( 200 8192 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 208 -8192 8192 ) ( 208 8192 8192 ) ( 208 8192 -8192 ) metals/mt_sr_mn6 16 31 270 1.000000 1.000000 1 8388608 0 +( -8192 1512 8192 ) ( 8192 1512 8192 ) ( -8192 1512 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 1528 8192 ) ( -8192 1528 8192 ) ( -8192 1528 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) metals/mt_sr_mn6 -16 23 180 1.000000 1.000000 1 8388608 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16bc 0 -15 180 1.000000 1.000000 1 8388608 0 +} +{ +( 184 8192 8192 ) ( 184 -8192 8192 ) ( 184 8192 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 200 -8192 8192 ) ( 200 8192 8192 ) ( 200 8192 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( -8192 1512 8192 ) ( 8192 1512 8192 ) ( -8192 1512 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 1528 8192 ) ( -8192 1528 8192 ) ( -8192 1528 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) common/li_sr_ml5 8 8 0 1.000000 1.000000 1 1 35000 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16bc 0 -15 180 1.000000 1.000000 1 8388608 0 +} +{ +( 176 8192 8192 ) ( 176 -8192 8192 ) ( 176 8192 -8192 ) metals/mt_sr_mn6 16 31 270 1.000000 1.000000 1 8388608 0 +( 184 -8192 8192 ) ( 184 8192 8192 ) ( 184 8192 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( -8192 1512 8192 ) ( 8192 1512 8192 ) ( -8192 1512 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 1528 8192 ) ( -8192 1528 8192 ) ( -8192 1528 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) metals/mt_sr_mn6 -16 23 180 1.000000 1.000000 1 8388608 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16bc 0 -15 180 1.000000 1.000000 1 8388608 0 +} +{ +( 176 8192 8192 ) ( 176 -8192 8192 ) ( 176 8192 -8192 ) metals/mt_sr_mn6 16 31 270 1.000000 1.000000 1 8388608 0 +( 208 -8192 8192 ) ( 208 8192 8192 ) ( 208 8192 -8192 ) metals/mt_sr_mn6 16 31 270 1.000000 1.000000 1 8388608 0 +( -8192 1504 8192 ) ( 8192 1504 8192 ) ( -8192 1504 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 1512 8192 ) ( -8192 1512 8192 ) ( -8192 1512 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) metals/mt_sr_mn6 -16 23 180 1.000000 1.000000 1 8388608 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16bc 0 -15 180 1.000000 1.000000 1 8388608 0 +} +{ +( 176 8192 8192 ) ( 176 -8192 8192 ) ( 176 8192 -8192 ) metals/mt_sr_mn6 16 31 270 1.000000 1.000000 1 8388608 0 +( 208 -8192 8192 ) ( 208 8192 8192 ) ( 208 8192 -8192 ) metals/mt_sr_mn6 16 31 270 1.000000 1.000000 1 8388608 0 +( -8192 1528 8192 ) ( 8192 1528 8192 ) ( -8192 1528 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) metals/mt_sr_mn6 16 31 270 1.000000 1.000000 1 8388608 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) metals/mt_sr_mn6 -16 23 180 1.000000 1.000000 1 8388608 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16bc 0 -15 180 1.000000 1.000000 1 8388608 0 +} +{ +( 176 8192 8192 ) ( 176 -8192 8192 ) ( 176 8192 -8192 ) metals/mt_sr_mn6 16 31 270 1.000000 1.000000 1 8388608 0 +( 208 -8192 8192 ) ( 208 8192 8192 ) ( 208 8192 -8192 ) metals/mt_sr_mn6 16 31 270 1.000000 1.000000 1 8388608 0 +( -8192 1248 8192 ) ( 8192 1248 8192 ) ( -8192 1248 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 1504 8192 ) ( -8192 1504 8192 ) ( -8192 1504 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) metals/mt_sr_mn6 -16 23 180 1.000000 1.000000 1 8388608 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16bc 0 -15 180 1.000000 1.000000 1 8388608 0 +} +{ +( 184 8192 8192 ) ( 184 -8192 8192 ) ( 184 8192 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 200 -8192 8192 ) ( 200 8192 8192 ) ( 200 8192 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( -8192 1224 8192 ) ( 8192 1224 8192 ) ( -8192 1224 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 1240 8192 ) ( -8192 1240 8192 ) ( -8192 1240 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) common/li_sr_ml5 8 8 0 1.000000 1.000000 1 1 35000 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16bc 0 -15 180 1.000000 1.000000 1 8388608 0 +} +{ +( 200 8192 8192 ) ( 200 -8192 8192 ) ( 200 8192 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 208 -8192 8192 ) ( 208 8192 8192 ) ( 208 8192 -8192 ) metals/mt_sr_mn6 16 31 270 1.000000 1.000000 1 8388608 0 +( -8192 1224 8192 ) ( 8192 1224 8192 ) ( -8192 1224 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 1240 8192 ) ( -8192 1240 8192 ) ( -8192 1240 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) metals/mt_sr_mn6 -16 23 180 1.000000 1.000000 1 8388608 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16bc 0 -15 180 1.000000 1.000000 1 8388608 0 +} +{ +( 176 8192 8192 ) ( 176 -8192 8192 ) ( 176 8192 -8192 ) metals/mt_sr_mn6 16 31 270 1.000000 1.000000 1 8388608 0 +( 184 -8192 8192 ) ( 184 8192 8192 ) ( 184 8192 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( -8192 1224 8192 ) ( 8192 1224 8192 ) ( -8192 1224 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 1240 8192 ) ( -8192 1240 8192 ) ( -8192 1240 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) metals/mt_sr_mn6 -16 23 180 1.000000 1.000000 1 8388608 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16bc 0 -15 180 1.000000 1.000000 1 8388608 0 +} +{ +( 176 8192 8192 ) ( 176 -8192 8192 ) ( 176 8192 -8192 ) metals/mt_sr_mn6 16 31 270 1.000000 1.000000 1 8388608 0 +( 208 -8192 8192 ) ( 208 8192 8192 ) ( 208 8192 -8192 ) metals/mt_sr_mn6 16 31 270 1.000000 1.000000 1 8388608 0 +( -8192 1240 8192 ) ( 8192 1240 8192 ) ( -8192 1240 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 1248 8192 ) ( -8192 1248 8192 ) ( -8192 1248 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) metals/mt_sr_mn6 -16 23 180 1.000000 1.000000 1 8388608 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16bc 0 -15 180 1.000000 1.000000 1 8388608 0 +} +{ +( 176 8192 8192 ) ( 176 -8192 8192 ) ( 176 8192 -8192 ) metals/mt_sr_mn6 16 31 270 1.000000 1.000000 1 8388608 0 +( 208 -8192 8192 ) ( 208 8192 8192 ) ( 208 8192 -8192 ) metals/mt_sr_mn6 16 31 270 1.000000 1.000000 1 8388608 0 +( -8192 1216 8192 ) ( 8192 1216 8192 ) ( -8192 1216 -8192 ) metals/mt_sr_mn6 16 31 270 1.000000 1.000000 1 8388608 0 +( 8192 1224 8192 ) ( -8192 1224 8192 ) ( -8192 1224 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) metals/mt_sr_mn6 -16 23 180 1.000000 1.000000 1 8388608 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16bc 0 -15 180 1.000000 1.000000 1 8388608 0 +} +{ +( -120 8192 8192 ) ( -120 -8192 8192 ) ( -120 8192 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( -112 -8192 8192 ) ( -112 8192 8192 ) ( -112 8192 -8192 ) metals/mt_sr_mn6 16 -7 90 1.000000 1.000000 1 8388608 0 +( -8192 1512 8192 ) ( 8192 1512 8192 ) ( -8192 1512 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 1528 8192 ) ( -8192 1528 8192 ) ( -8192 1528 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) metals/mt_sr_mn6 16 23 180 1.000000 1.000000 1 8388608 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16bc 0 -14 180 1.000000 1.000000 1 8388608 0 +} +{ +( -136 8192 8192 ) ( -136 -8192 8192 ) ( -136 8192 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( -120 -8192 8192 ) ( -120 8192 8192 ) ( -120 8192 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( -8192 1512 8192 ) ( 8192 1512 8192 ) ( -8192 1512 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 1528 8192 ) ( -8192 1528 8192 ) ( -8192 1528 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) common/li_sr_ml5 8 8 0 1.000000 1.000000 1 1 35000 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16bc 0 -14 180 1.000000 1.000000 1 8388608 0 +} +{ +( -144 8192 8192 ) ( -144 -8192 8192 ) ( -144 8192 -8192 ) metals/mt_sr_mn6 16 -7 90 1.000000 1.000000 1 8388608 0 +( -136 -8192 8192 ) ( -136 8192 8192 ) ( -136 8192 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( -8192 1512 8192 ) ( 8192 1512 8192 ) ( -8192 1512 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 1528 8192 ) ( -8192 1528 8192 ) ( -8192 1528 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) metals/mt_sr_mn6 16 23 180 1.000000 1.000000 1 8388608 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16bc 0 -14 180 1.000000 1.000000 1 8388608 0 +} +{ +( -144 8192 8192 ) ( -144 -8192 8192 ) ( -144 8192 -8192 ) metals/mt_sr_mn6 16 -7 90 1.000000 1.000000 1 8388608 0 +( -112 -8192 8192 ) ( -112 8192 8192 ) ( -112 8192 -8192 ) metals/mt_sr_mn6 16 -7 90 1.000000 1.000000 1 8388608 0 +( -8192 1504 8192 ) ( 8192 1504 8192 ) ( -8192 1504 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 1512 8192 ) ( -8192 1512 8192 ) ( -8192 1512 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) metals/mt_sr_mn6 16 23 180 1.000000 1.000000 1 8388608 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16bc 0 -14 180 1.000000 1.000000 1 8388608 0 +} +{ +( -144 8192 8192 ) ( -144 -8192 8192 ) ( -144 8192 -8192 ) metals/mt_sr_mn6 16 -7 90 1.000000 1.000000 1 8388608 0 +( -112 -8192 8192 ) ( -112 8192 8192 ) ( -112 8192 -8192 ) metals/mt_sr_mn6 16 -7 90 1.000000 1.000000 1 8388608 0 +( -8192 1528 8192 ) ( 8192 1528 8192 ) ( -8192 1528 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) metals/mt_sr_mn6 16 -14 180 1.000000 1.000000 1 8388608 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) metals/mt_sr_mn6 16 23 180 1.000000 1.000000 1 8388608 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16bc 0 -14 180 1.000000 1.000000 1 8388608 0 +} +{ +( -144 8192 8192 ) ( -144 -8192 8192 ) ( -144 8192 -8192 ) metals/mt_sr_mn6 16 -7 90 1.000000 1.000000 1 8388608 0 +( -112 -8192 8192 ) ( -112 8192 8192 ) ( -112 8192 -8192 ) metals/mt_sr_mn6 16 -7 90 1.000000 1.000000 1 8388608 0 +( -8192 1248 8192 ) ( 8192 1248 8192 ) ( -8192 1248 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 1504 8192 ) ( -8192 1504 8192 ) ( -8192 1504 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) metals/mt_sr_mn6 16 23 180 1.000000 1.000000 1 8388608 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16bc 0 -14 180 1.000000 1.000000 1 8388608 0 +} +{ +( -120 8192 8192 ) ( -120 -8192 8192 ) ( -120 8192 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( -112 -8192 8192 ) ( -112 8192 8192 ) ( -112 8192 -8192 ) metals/mt_sr_mn6 16 -7 90 1.000000 1.000000 1 8388608 0 +( -8192 1224 8192 ) ( 8192 1224 8192 ) ( -8192 1224 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 1240 8192 ) ( -8192 1240 8192 ) ( -8192 1240 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) metals/mt_sr_mn6 16 23 180 1.000000 1.000000 1 8388608 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16bc 0 -14 180 1.000000 1.000000 1 8388608 0 +} +{ +( -136 8192 8192 ) ( -136 -8192 8192 ) ( -136 8192 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( -120 -8192 8192 ) ( -120 8192 8192 ) ( -120 8192 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( -8192 1224 8192 ) ( 8192 1224 8192 ) ( -8192 1224 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 1240 8192 ) ( -8192 1240 8192 ) ( -8192 1240 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) common/li_sr_ml5 8 8 0 1.000000 1.000000 1 1 35000 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16bc 0 -14 180 1.000000 1.000000 1 8388608 0 +} +{ +( -144 8192 8192 ) ( -144 -8192 8192 ) ( -144 8192 -8192 ) metals/mt_sr_mn6 16 -7 90 1.000000 1.000000 1 8388608 0 +( -136 -8192 8192 ) ( -136 8192 8192 ) ( -136 8192 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( -8192 1224 8192 ) ( 8192 1224 8192 ) ( -8192 1224 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 1240 8192 ) ( -8192 1240 8192 ) ( -8192 1240 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) metals/mt_sr_mn6 16 23 180 1.000000 1.000000 1 8388608 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16bc 0 -14 180 1.000000 1.000000 1 8388608 0 +} +{ +( -144 8192 8192 ) ( -144 -8192 8192 ) ( -144 8192 -8192 ) metals/mt_sr_mn6 16 -7 90 1.000000 1.000000 1 8388608 0 +( -112 -8192 8192 ) ( -112 8192 8192 ) ( -112 8192 -8192 ) metals/mt_sr_mn6 16 -7 90 1.000000 1.000000 1 8388608 0 +( -8192 1216 8192 ) ( 8192 1216 8192 ) ( -8192 1216 -8192 ) metals/mt_sr_mn6 16 31 270 1.000000 1.000000 1 8388608 0 +( 8192 1224 8192 ) ( -8192 1224 8192 ) ( -8192 1224 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) metals/mt_sr_mn6 16 23 180 1.000000 1.000000 1 8388608 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16bc 0 -14 180 1.000000 1.000000 1 8388608 0 +} +{ +( -144 8192 8192 ) ( -144 -8192 8192 ) ( -144 8192 -8192 ) metals/mt_sr_mn6 16 -7 90 1.000000 1.000000 1 8388608 0 +( -112 -8192 8192 ) ( -112 8192 8192 ) ( -112 8192 -8192 ) metals/mt_sr_mn6 16 -7 90 1.000000 1.000000 1 8388608 0 +( -8192 1240 8192 ) ( 8192 1240 8192 ) ( -8192 1240 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 1248 8192 ) ( -8192 1248 8192 ) ( -8192 1248 -8192 ) metals/mt_sr_mn6 15 -7 90 1.000000 1.000000 1 8388608 0 +( 8192 -8192 208 ) ( 8192 8192 208 ) ( -8192 -8192 208 ) metals/mt_sr_mn6 16 23 180 1.000000 1.000000 1 8388608 0 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) metals/mt_pv_m16bc 0 -14 180 1.000000 1.000000 1 8388608 0 +} +{ +( -832 8192 5216 ) ( -832 -8192 5216 ) ( -832 8192 -5024 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -384 -8192 5216 ) ( -384 8192 5216 ) ( -384 8192 -5024 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1216 5216 ) ( 8192 1216 5216 ) ( -8192 1216 -5024 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1280 5216 ) ( -8192 1280 5216 ) ( -8192 1280 -5024 ) bricks/b_mf_v2 0 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 496 ) ( 8192 -8192 496 ) ( -8192 -8192 496 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -832 8686 8064 ) ( -832 -8869 8064 ) ( -832 8686 -8320 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( -512 -8869 8064 ) ( -512 8686 8064 ) ( -512 8686 -8320 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1280 8064 ) ( 8192 1280 8064 ) ( -8192 1280 -8320 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 1520 8064 ) ( -8192 1520 8064 ) ( -8192 1520 -8320 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8869 576 ) ( 8192 8686 576 ) ( -8192 -8869 576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8686 640 ) ( 8192 -8869 640 ) ( -8192 -8869 640 ) floors/rf_sr_m2 0 0 0 5.000000 5.000000 1 2097152 0 +} +{ +( -832 8192 2027 ) ( -832 -8192 2027 ) ( -832 8192 -1614 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -384 -8192 2027 ) ( -384 8192 2027 ) ( -384 8192 -1614 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 640 2027 ) ( 8192 640 2027 ) ( -8192 640 -1614 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1216 2027 ) ( -8192 1216 2027 ) ( -8192 1216 -1614 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 8192 320 ) ( 8192 -8192 320 ) ( -8192 -8192 320 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -832 7616 9936 ) ( -832 -7403 9936 ) ( -832 7616 -10544 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -384 -7403 9936 ) ( -384 7616 9936 ) ( -384 7616 -10544 ) bricks/b_mf_v2 -8 0 0 1.000000 1.000000 1 0 0 +( -8192 576 9936 ) ( 8192 576 9936 ) ( -8192 576 -10544 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1280 9936 ) ( -8192 1280 9936 ) ( -8192 1280 -10544 ) bricks/b_mf_v2 0 0 180 1.000000 1.000000 1 0 0 +( 8192 -7403 496 ) ( 8192 7616 496 ) ( -8192 -7403 496 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 7616 576 ) ( 8192 -7403 576 ) ( -8192 -7403 576 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -832 4416 4853 ) ( -832 -3776 4853 ) ( -832 4416 -4599 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -384 -3776 4853 ) ( -384 4416 4853 ) ( -384 4416 -4599 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 576 4853 ) ( 8192 576 4853 ) ( -8192 576 -4599 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 640 4853 ) ( -8192 640 4853 ) ( -8192 640 -4599 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -3776 256 ) ( 8192 4416 256 ) ( -8192 -3776 256 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 4416 496 ) ( 8192 -3776 496 ) ( -8192 -3776 496 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -888 10192 8192 ) ( -888 -10288 8192 ) ( -888 10192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -832 -10288 8192 ) ( -832 10192 8192 ) ( -832 10192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 192 8192 ) ( 8192 192 8192 ) ( -8192 192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 592 8192 ) ( -8192 592 8192 ) ( -8192 592 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -10288 128 ) ( 8192 10192 128 ) ( -8192 -10288 128 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8192 10192 960 ) ( 8192 -10288 960 ) ( -8192 -10288 960 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -848 13984 15424 ) ( -848 -15318 15424 ) ( -848 13984 -17344 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -832 -15318 15424 ) ( -832 13984 15424 ) ( -832 13984 -17344 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 592 15424 ) ( 8192 592 15424 ) ( -8192 592 -17344 ) metals/mt_pv_m16l 0 0 0 1.000000 1.000000 1 0 0 +( 8192 2080 15424 ) ( -8192 2080 15424 ) ( -8192 2080 -17344 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -15318 576 ) ( 8192 13984 576 ) ( -8192 -15318 576 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 13984 960 ) ( 8192 -15318 960 ) ( -8192 -15318 960 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -832 7558 21504 ) ( -832 -7337 21504 ) ( -832 7558 -22187 ) bricks/c_pv_18a 0 128 0 2.000000 2.000000 +( -384 -7337 21504 ) ( -384 7558 21504 ) ( -384 7558 -22187 ) bricks/c_pv_18a 0 128 0 2.000000 2.000000 +( -8192 576 21504 ) ( 8192 576 21504 ) ( -8192 576 -22187 ) bricks/c_pv_18a 0 128 0 2.000000 2.000000 +( 8192 1216 21504 ) ( -8192 1216 21504 ) ( -8192 1216 -22187 ) bricks/c_pv_18a 0 128 0 2.000000 2.000000 +( 8192 -7337 0 ) ( 8192 7558 0 ) ( -8192 -7337 0 ) bricks/c_pv_18a 0 128 0 2.000000 2.000000 +( 8192 7558 256 ) ( 8192 -7337 256 ) ( -8192 -7337 256 ) bricks/c_pv_18a 0 128 0 2.000000 2.000000 +} +{ +( -848 11430 8192 ) ( -848 -11586 8192 ) ( -848 11430 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( -832 -11586 8192 ) ( -832 11430 8192 ) ( -832 11430 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( -2672 192 8192 ) ( 1424 192 8192 ) ( -2672 192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 1424 2080 8192 ) ( -2672 2080 8192 ) ( -2672 2080 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 1424 -11586 960 ) ( 1424 11430 960 ) ( -2672 -11586 960 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 1424 11430 1024 ) ( 1424 -11586 1024 ) ( -2672 -11586 1024 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 592 8976 8192 ) ( 592 -9456 8192 ) ( 592 8976 -8192 ) bricks/b_pv_v1e 0 -64 0 1.000000 1.000000 1 0 0 +( 960 -9456 8192 ) ( 960 8976 8192 ) ( 960 8976 -8192 ) bricks/b_pv_v1e 0 -64 0 1.000000 1.000000 1 0 0 +( -8192 1920 8192 ) ( 8192 1920 8192 ) ( -8192 1920 -8192 ) bricks/b_pv_v1e 0 -64 0 1.000000 1.000000 1 0 0 +( 8192 2064 8192 ) ( -8192 2064 8192 ) ( -8192 2064 -8192 ) bricks/b_pv_v1e 0 -64 0 1.000000 1.000000 1 0 0 +( 8192 -9456 448 ) ( 8192 8976 448 ) ( -8192 -9456 448 ) bricks/b_pv_v1e 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8976 576 ) ( 8192 -9456 576 ) ( -8192 -9456 576 ) bricks/b_pv_v1e 0 1 270 1.000000 1.000000 1 0 0 +} +{ +( -272 8192 8192 ) ( -272 -8192 8192 ) ( -272 8192 -8192 ) bricks/b_sr_c09 0 0 0 1.000000 1.000000 1 0 0 +( -256 -8192 8192 ) ( -256 8192 8192 ) ( -256 8192 -8192 ) bricks/b_sr_c09 52 16 0 1.000000 1.000000 1 0 0 +( -8192 1616 8192 ) ( 8192 1616 8192 ) ( -8192 1616 -8192 ) bricks/b_sr_c09 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1984 8192 ) ( -8192 1984 8192 ) ( -8192 1984 -8192 ) bricks/b_sr_c09 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_c09 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 656 ) ( 8192 -8192 656 ) ( -8192 -8192 656 ) bricks/b_sr_c09 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -288 2064 0 ) ( -288 2064 128 ) ( -288 1504 128 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( -256 1504 0 ) ( -256 1504 128 ) ( -256 2064 128 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -288 1504 0 ) ( -288 1504 128 ) ( -256 1504 128 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 1 0 0 +( -256 2064 0 ) ( -256 2064 128 ) ( -288 2064 128 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( -256 1504 0 ) ( -256 2064 0 ) ( -288 2064 0 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( -256 2064 128 ) ( -256 1504 128 ) ( -288 1504 128 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -832 1381 8192 ) ( -832 -960 8192 ) ( -832 1381 -8192 ) bricks/b_sr_c26d 64 0 0 1.000000 1.000000 1 0 0 +( 0 -960 8192 ) ( 0 1381 8192 ) ( 0 1381 -8192 ) bricks/b_sr_c26d 64 0 0 1.000000 1.000000 1 0 0 +( -8192 192 8192 ) ( 8192 192 8192 ) ( -8192 192 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 8192 256 8192 ) ( -8192 256 8192 ) ( -8192 256 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -960 0 ) ( 8192 1381 0 ) ( -8192 -960 0 ) bricks/b_sr_c26d 0 -64 0 1.000000 1.000000 1 0 0 +( 8192 1381 128 ) ( 8192 -960 128 ) ( -8192 -960 128 ) bricks/b_sr_c26d 0 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -832 7780 9088 ) ( -832 -7580 9088 ) ( -832 7780 -9637 ) bricks/b_sr_c15 0 0 0 1.000000 1.000000 1 0 0 +( -256 -7580 9088 ) ( -256 7780 9088 ) ( -256 7780 -9637 ) bricks/b_sr_c06 99 0 0 1.000000 1.000000 1 0 0 +( -285952 1600 9088 ) ( 303872 1600 9088 ) ( -285952 1600 -9637 ) bricks/b_sr_c15 0 0 0 1.000000 1.000000 1 0 0 +( 303872 2080 9088 ) ( -285952 2080 9088 ) ( -285952 2080 -9637 ) bricks/b_sr_20 32 -32 0 1.000000 1.000000 1 0 0 +( 303872 -7580 768 ) ( 303872 7780 768 ) ( -285952 -7580 768 ) bricks/b_sr_c15 0 0 0 1.000000 1.000000 1 0 0 +( 303872 7780 896 ) ( 303872 -7580 896 ) ( -285952 -7580 896 ) floors/rf_sr_m2 0 0 0 5.000000 5.000000 1 0 0 +} +{ +( -832 1381 16064 ) ( -832 -960 16064 ) ( -832 1381 -16704 ) bricks/b_sr_c27 32 0 0 1.000000 1.000000 1 0 0 +( -752 -960 16064 ) ( -752 1381 16064 ) ( -752 1381 -16704 ) bricks/b_sr_c27 32 0 0 1.000000 1.000000 1 0 0 +( -19232 192 16064 ) ( 21728 192 16064 ) ( -19232 192 -16704 ) bricks/b_sr_c27 128 0 0 1.000000 1.000000 1 0 0 +( 21728 256 16064 ) ( -19232 256 16064 ) ( -19232 256 -16704 ) bricks/b_sr_c27 128 0 0 1.000000 1.000000 1 0 0 +( 21728 -960 128 ) ( 21728 1381 128 ) ( -19232 -960 128 ) bricks/b_sr_c27 128 -32 0 1.000000 1.000000 1 0 0 +( 21728 1381 256 ) ( 21728 -960 256 ) ( -19232 -960 256 ) bricks/b_sr_c27 128 -32 0 1.000000 1.000000 1 0 0 +} +{ +( -80 1381 16064 ) ( -80 -960 16064 ) ( -80 1381 -16704 ) bricks/b_sr_c27 64 0 0 1.000000 1.000000 1 0 0 +( 0 -960 16064 ) ( 0 1381 16064 ) ( 0 1381 -16704 ) bricks/b_sr_c27 64 0 0 1.000000 1.000000 1 0 0 +( -20480 192 16064 ) ( 20480 192 16064 ) ( -20480 192 -16704 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 20480 256 16064 ) ( -20480 256 16064 ) ( -20480 256 -16704 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 20480 -960 128 ) ( 20480 1381 128 ) ( -20480 -960 128 ) bricks/b_sr_c27 0 -64 0 1.000000 1.000000 1 0 0 +( 20480 1381 256 ) ( 20480 -960 256 ) ( -20480 -960 256 ) bricks/b_sr_c27 0 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -368 1381 16064 ) ( -368 -960 16064 ) ( -368 1381 -16704 ) props/w_sr_m6d 63 -81 180 1.000000 1.000000 0 1 400 +( -80 -960 16064 ) ( -80 1381 16064 ) ( -80 1381 -16704 ) props/w_sr_m6d 63 -81 180 1.000000 1.000000 0 1 400 +( -3752 192 16064 ) ( 3621 192 16064 ) ( -3752 192 -16704 ) props/w_sr_m6d 0 -17 0 1.000000 1.000000 0 1 400 +( 3621 256 16064 ) ( -3752 256 16064 ) ( -3752 256 -16704 ) props/w_sr_m6d 7 0 0 1.120000 1.000000 0 1 500 +( 3621 -960 128 ) ( 3621 1381 128 ) ( -3752 -960 128 ) props/w_sr_m6d 63 0 270 1.000000 1.000000 0 1 400 +( 3621 1381 256 ) ( 3621 -960 256 ) ( -3752 -960 256 ) props/w_sr_m6d 63 0 270 1.000000 1.000000 0 1 400 +} +{ +( 1088 8192 8192 ) ( 1088 -8192 8192 ) ( 1088 8192 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 1280 -8192 8192 ) ( 1280 8192 8192 ) ( 1280 8192 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( -8192 1024 8192 ) ( 8192 1024 8192 ) ( -8192 1024 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 1280 8192 ) ( -8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 -8192 240 ) ( 8192 8192 240 ) ( -8192 -8192 240 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +} +{ +( 832 8192 8192 ) ( 832 -8192 8192 ) ( 832 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 1088 -8192 8192 ) ( 1088 8192 8192 ) ( 1088 8192 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( -8192 1216 8192 ) ( 8192 1216 8192 ) ( -8192 1216 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 1280 8192 ) ( -8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 8192 480 ) ( 8192 -8192 480 ) ( -8192 -8192 480 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +} +{ +( -64 6915 1800 ) ( -64 -5157 1800 ) ( -64 6915 -1272 ) props2/blanco_sign2 88 0 0 -0.900000 1.000000 +( -32 -5157 1800 ) ( -32 6915 1800 ) ( -32 6915 -1272 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( -470 2400 1800 ) ( 349 2400 1800 ) ( -470 2400 -1272 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( 349 2624 1800 ) ( -470 2624 1800 ) ( -470 2624 -1272 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( 349 -5157 348 ) ( 349 6915 348 ) ( -470 -5157 348 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( 349 6915 384 ) ( 349 -5157 384 ) ( -470 -5157 384 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +} +{ +( -832 2207 8384 ) ( -832 1825 8384 ) ( -832 2207 -8000 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 960 1825 8384 ) ( 960 2207 8384 ) ( 960 2207 -8000 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( -12527 2064 8384 ) ( 11618 2064 8384 ) ( -12527 2064 -8000 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 11618 2080 8384 ) ( -12527 2080 8384 ) ( -12527 2080 -8000 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 11618 1825 960 ) ( 11618 2207 960 ) ( -12527 1825 960 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 11618 2207 1024 ) ( 11618 1825 1024 ) ( -12527 1825 1024 ) floors/rf_sr_m2 0 14 180 2.000000 2.000000 1 2097152 0 +} +{ +( 600 8128 8192 ) ( 600 -8256 8192 ) ( 600 8128 -8192 ) props/w_sr_m6e 0 -64 0 1.000000 1.000000 1 0 0 +( 960 -8256 8192 ) ( 960 8128 8192 ) ( 960 8128 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1888 8192 ) ( 8192 1888 8192 ) ( -8192 1888 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1952 8192 ) ( -8192 1952 8192 ) ( -8192 1952 -8192 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8256 832 ) ( 8192 8128 832 ) ( -8192 -8256 832 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8128 960 ) ( 8192 -8256 960 ) ( -8192 -8256 960 ) bricks/b_pv_v1a 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 592 8128 8192 ) ( 592 -8256 8192 ) ( 592 8128 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 960 -8256 8192 ) ( 960 8128 8192 ) ( 960 8128 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( -8192 1856 8192 ) ( 8192 1856 8192 ) ( -8192 1856 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 1888 8192 ) ( -8192 1888 8192 ) ( -8192 1888 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 -8256 832 ) ( 8192 8128 832 ) ( -8192 -8256 832 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 8128 960 ) ( 8192 -8256 960 ) ( -8192 -8256 960 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +} +{ +( 592 8128 8192 ) ( 592 -8256 8192 ) ( 592 8128 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 960 -8256 8192 ) ( 960 8128 8192 ) ( 960 8128 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( -8192 1952 8192 ) ( 8192 1952 8192 ) ( -8192 1952 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 1984 8192 ) ( -8192 1984 8192 ) ( -8192 1984 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 -8256 832 ) ( 8192 8128 832 ) ( -8192 -8256 832 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 8128 960 ) ( 8192 -8256 960 ) ( -8192 -8256 960 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +} +{ +( 592 8128 8192 ) ( 592 -8256 8192 ) ( 592 8128 -8192 ) wood/wd_st_m3 32 -36 0 1.500000 1.500000 1 0 0 +( 960 -8256 8192 ) ( 960 8128 8192 ) ( 960 8128 -8192 ) wood/wd_st_m3 -24 -64 0 1.000000 1.000000 1 0 0 +( -8192 1632 8192 ) ( 8192 1632 8192 ) ( -8192 1632 -8192 ) wood/wd_st_m3 -24 -64 0 1.000000 1.000000 1 0 0 +( 8192 1696 8192 ) ( -8192 1696 8192 ) ( -8192 1696 -8192 ) wood/wd_st_m3 -24 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8256 832 ) ( 8192 8128 832 ) ( -8192 -8256 832 ) wood/wd_st_m3 -24 -64 0 1.000000 1.000000 1 0 0 +( 8192 8128 960 ) ( 8192 -8256 960 ) ( -8192 -8256 960 ) wood/wd_st_m3 -24 -64 0 1.000000 1.000000 1 0 0 +} +{ +( 592 8128 8192 ) ( 592 -8256 8192 ) ( 592 8128 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 960 -8256 8192 ) ( 960 8128 8192 ) ( 960 8128 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( -8192 1600 8192 ) ( 8192 1600 8192 ) ( -8192 1600 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 1632 8192 ) ( -8192 1632 8192 ) ( -8192 1632 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 -8256 832 ) ( 8192 8128 832 ) ( -8192 -8256 832 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 8128 960 ) ( 8192 -8256 960 ) ( -8192 -8256 960 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +} +{ +( 592 8128 8192 ) ( 592 -8256 8192 ) ( 592 8128 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 960 -8256 8192 ) ( 960 8128 8192 ) ( 960 8128 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( -8192 1696 8192 ) ( 8192 1696 8192 ) ( -8192 1696 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 1728 8192 ) ( -8192 1728 8192 ) ( -8192 1728 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 -8256 832 ) ( 8192 8128 832 ) ( -8192 -8256 832 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 8128 960 ) ( 8192 -8256 960 ) ( -8192 -8256 960 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +} +{ +( 592 8128 15552 ) ( 592 -8256 15552 ) ( 592 8128 -17216 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 960 -8256 15552 ) ( 960 8128 15552 ) ( 960 8128 -17216 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( -8192 1856 15552 ) ( 8192 1856 15552 ) ( -8192 1856 -17216 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 1984 15552 ) ( -8192 1984 15552 ) ( -8192 1984 -17216 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 -8256 576 ) ( 8192 8128 576 ) ( -8192 -8256 576 ) bricks/b_pv_v1 0 0 270 1.000000 1.000000 +( 8192 8128 832 ) ( 8192 -8256 832 ) ( -8192 -8256 832 ) bricks/b_pv_v1 0 0 270 1.000000 1.000000 +} +{ +( 592 8128 15552 ) ( 592 -8256 15552 ) ( 592 8128 -17216 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 960 -8256 15552 ) ( 960 8128 15552 ) ( 960 8128 -17216 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( -8192 1600 15552 ) ( 8192 1600 15552 ) ( -8192 1600 -17216 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 1728 15552 ) ( -8192 1728 15552 ) ( -8192 1728 -17216 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 -8256 576 ) ( 8192 8128 576 ) ( -8192 -8256 576 ) bricks/b_pv_v1 0 0 270 1.000000 1.000000 +( 8192 8128 832 ) ( 8192 -8256 832 ) ( -8192 -8256 832 ) bricks/b_pv_v1 0 0 270 1.000000 1.000000 +} +{ +( -64 6325 8192 ) ( -64 -5280 8192 ) ( -64 6325 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 960 -5280 8192 ) ( 960 6325 8192 ) ( 960 6325 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1792 8192 ) ( 8192 1792 8192 ) ( -8192 1792 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 2064 8192 ) ( -8192 2064 8192 ) ( -8192 2064 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -5280 0 ) ( 8192 6325 0 ) ( -8192 -5280 0 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 6325 128 ) ( 8192 -5280 128 ) ( -8192 -5280 128 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -64 6325 8192 ) ( -64 -5280 8192 ) ( -64 6325 -8192 ) bricks/b_sr_20 0 0 180 1.000000 1.000000 1 0 0 +( 960 -5280 8192 ) ( 960 6325 8192 ) ( 960 6325 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1792 8192 ) ( 8192 1792 8192 ) ( -8192 1792 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 2064 8192 ) ( -8192 2064 8192 ) ( -8192 2064 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -5280 128 ) ( 8192 6325 128 ) ( -8192 -5280 128 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 6325 256 ) ( 8192 -5280 256 ) ( -8192 -5280 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -64 1744 256 ) ( -64 2064 256 ) ( -64 2064 416 ) bricks/b_sr_20 0 0 180 1.000000 1.000000 1 0 0 +( 320 2064 256 ) ( 320 1744 256 ) ( 320 1744 416 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 320 1744 256 ) ( -64 1744 256 ) ( -64 1744 416 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -64 2064 256 ) ( 320 2064 256 ) ( 320 2064 416 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -64 1744 256 ) ( 320 1744 256 ) ( 320 2064 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -64 2064 416 ) ( 320 2064 416 ) ( 320 1744 416 ) wood/wd_st_m7 0 -13 0 2.000000 2.000000 1 0 0 +} +{ +( 576 3904 8192 ) ( 576 -1216 8192 ) ( 576 3904 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 960 -1216 8192 ) ( 960 3904 8192 ) ( 960 3904 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( -8192 1984 8192 ) ( 8192 1984 8192 ) ( -8192 1984 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 2064 8192 ) ( -8192 2064 8192 ) ( -8192 2064 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 -1216 576 ) ( 8192 3904 576 ) ( -8192 -1216 576 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 3904 896 ) ( 8192 -1216 896 ) ( -8192 -1216 896 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +} +{ +( 576 4288 8192 ) ( 576 -1856 8192 ) ( 576 4288 -8192 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( 960 -1856 8192 ) ( 960 4288 8192 ) ( 960 4288 -8192 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( -8192 1984 8192 ) ( 8192 1984 8192 ) ( -8192 1984 -8192 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( 8192 2080 8192 ) ( -8192 2080 8192 ) ( -8192 2080 -8192 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( 8192 -1856 896 ) ( 8192 4288 896 ) ( -8192 -1856 896 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( 8192 4288 1024 ) ( 8192 -1856 1024 ) ( -8192 -1856 1024 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +} +{ +( -848 8192 8192 ) ( -848 -8192 8192 ) ( -848 8192 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 133 500 +( 640 -8192 8192 ) ( 640 8192 8192 ) ( 640 8192 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 133 500 +( -7916 192 8192 ) ( 7956 192 8192 ) ( -7916 192 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 133 500 +( 7956 1984 8192 ) ( -7916 1984 8192 ) ( -7916 1984 -8192 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 133 500 +( 7956 -8192 1024 ) ( 7956 8192 1024 ) ( -7916 -8192 1024 ) common/li_sr_m14 64 0 0 20.000000 20.000000 0 5 350 +( 7956 8192 1088 ) ( 7956 -8192 1088 ) ( -7916 -8192 1088 ) common/li_sr_v17 0 0 0 1.000000 1.000000 1 133 500 +} +{ +( 592 8128 8192 ) ( 592 -8256 8192 ) ( 592 8128 -8192 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( 960 -8256 8192 ) ( 960 8128 8192 ) ( 960 8128 -8192 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( -8192 1856 8192 ) ( 8192 1856 8192 ) ( -8192 1856 -8192 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( 8192 1984 8192 ) ( -8192 1984 8192 ) ( -8192 1984 -8192 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( 8192 -8256 960 ) ( 8192 8128 960 ) ( -8192 -8256 960 ) bricks/b_pv_v1b 0 0 270 1.000000 1.000000 +( 8192 8128 1024 ) ( 8192 -8256 1024 ) ( -8192 -8256 1024 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +} +{ +( 576 8192 8192 ) ( 576 -8192 8192 ) ( 576 8192 -8192 ) bricks/b_pv_v1e 0 -64 0 1.000000 1.000000 1 0 0 +( 960 -8192 8192 ) ( 960 8192 8192 ) ( 960 8192 -8192 ) bricks/b_pv_v1e 0 -64 0 1.000000 1.000000 1 0 0 +( -8192 1792 8192 ) ( 8192 1792 8192 ) ( -8192 1792 -8192 ) bricks/b_pv_v1e 0 -64 0 1.000000 1.000000 1 0 0 +( 8192 1920 8192 ) ( -8192 1920 8192 ) ( -8192 1920 -8192 ) bricks/b_pv_v1e 0 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 448 ) ( 8192 8192 448 ) ( -8192 -8192 448 ) bricks/b_pv_v1e 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/b_pv_v1e 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 576 8128 6733 ) ( 576 -8256 6733 ) ( 576 8128 -6374 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 960 -8256 6733 ) ( 960 8128 6733 ) ( 960 8128 -6374 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( -8192 1728 6733 ) ( 8192 1728 6733 ) ( -8192 1728 -6374 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 1856 6733 ) ( -8192 1856 6733 ) ( -8192 1856 -6374 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 -8256 640 ) ( 8192 8128 640 ) ( -8192 -8256 640 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 8128 896 ) ( 8192 -8256 896 ) ( -8192 -8256 896 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +} +{ +( 576 8128 8192 ) ( 576 -8256 8192 ) ( 576 8128 -8192 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( 960 -8256 8192 ) ( 960 8128 8192 ) ( 960 8128 -8192 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( -8192 1728 8192 ) ( 8192 1728 8192 ) ( -8192 1728 -8192 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( 8192 1856 8192 ) ( -8192 1856 8192 ) ( -8192 1856 -8192 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( 8192 -8256 896 ) ( 8192 8128 896 ) ( -8192 -8256 896 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( 8192 8128 1024 ) ( 8192 -8256 1024 ) ( -8192 -8256 1024 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +} +{ +( 592 11392 8192 ) ( 592 -13184 8192 ) ( 592 11392 -8192 ) bricks/b_pv_v1 0 -64 0 1.000000 1.000000 +( 960 -13184 8192 ) ( 960 11392 8192 ) ( 960 11392 -8192 ) bricks/b_pv_v1 0 -64 0 1.000000 1.000000 +( -8192 1600 8192 ) ( 8192 1600 8192 ) ( -8192 1600 -8192 ) bricks/b_pv_v1 0 -64 0 1.000000 1.000000 +( 8192 1792 8192 ) ( -8192 1792 8192 ) ( -8192 1792 -8192 ) bricks/b_pv_v1 0 -64 0 1.000000 1.000000 +( 8192 -13184 448 ) ( 8192 11392 448 ) ( -8192 -13184 448 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 11392 576 ) ( 8192 -13184 576 ) ( -8192 -13184 576 ) bricks/b_pv_v1 0 0 270 1.000000 1.000000 +} +{ +( 592 8128 8192 ) ( 592 -8256 8192 ) ( 592 8128 -8192 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( 960 -8256 8192 ) ( 960 8128 8192 ) ( 960 8128 -8192 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( -8192 1600 8192 ) ( 8192 1600 8192 ) ( -8192 1600 -8192 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( 8192 1728 8192 ) ( -8192 1728 8192 ) ( -8192 1728 -8192 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( 8192 -8256 960 ) ( 8192 8128 960 ) ( -8192 -8256 960 ) bricks/b_pv_v1b 0 0 270 1.000000 1.000000 +( 8192 8128 1024 ) ( 8192 -8256 1024 ) ( -8192 -8256 1024 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +} +{ +( 576 4864 8192 ) ( 576 -3328 8192 ) ( 576 4864 -8192 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( 960 -3328 8192 ) ( 960 4864 8192 ) ( 960 4864 -8192 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( -8192 1536 8192 ) ( 8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( 8192 1600 8192 ) ( -8192 1600 8192 ) ( -8192 1600 -8192 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( 8192 -3328 896 ) ( 8192 4864 896 ) ( -8192 -3328 896 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +( 8192 4864 1024 ) ( 8192 -3328 1024 ) ( -8192 -3328 1024 ) bricks/b_pv_v1b 0 0 0 1.000000 1.000000 +} +{ +( 576 4864 8192 ) ( 576 -3328 8192 ) ( 576 4864 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 960 -3328 8192 ) ( 960 4864 8192 ) ( 960 4864 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( -8192 1536 8192 ) ( 8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 1600 8192 ) ( -8192 1600 8192 ) ( -8192 1600 -8192 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 -3328 576 ) ( 8192 4864 576 ) ( -8192 -3328 576 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 4864 896 ) ( 8192 -3328 896 ) ( -8192 -3328 896 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +} +{ +( 576 4864 6288 ) ( 576 -3328 6288 ) ( 576 4864 -6000 ) bricks/b_pv_v1 0 -64 0 1.000000 1.000000 +( 960 -3328 6288 ) ( 960 4864 6288 ) ( 960 4864 -6000 ) bricks/b_pv_v1 0 -64 0 1.000000 1.000000 +( -8192 1536 6288 ) ( 8192 1536 6288 ) ( -8192 1536 -6000 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 1600 6288 ) ( -8192 1600 6288 ) ( -8192 1600 -6000 ) bricks/b_pv_v1 0 -64 0 1.000000 1.000000 +( 8192 -3328 480 ) ( 8192 4864 480 ) ( -8192 -3328 480 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +( 8192 4864 576 ) ( 8192 -3328 576 ) ( -8192 -3328 576 ) bricks/b_pv_v1 0 0 0 1.000000 1.000000 +} +{ +( 832 8256 8192 ) ( 832 -8128 8192 ) ( 832 8256 -8192 ) props/w_sr_m2a -26 64 0 1.300000 2.000000 1 0 0 +( 896 -8128 8192 ) ( 896 8256 8192 ) ( 896 8256 -8192 ) props/w_sr_m2a 57 64 0 1.300000 2.000000 1 0 0 +( -8192 1344 8192 ) ( 8192 1344 8192 ) ( -8192 1344 -8192 ) props/w_sr_m2a 8 64 0 1.300000 2.000000 1 0 0 +( 8192 1472 8192 ) ( -8192 1472 8192 ) ( -8192 1472 -8192 ) props/w_sr_m2a 8 64 0 1.300000 2.000000 1 0 0 +( 8192 -8128 640 ) ( 8192 8256 640 ) ( -8192 -8128 640 ) props/w_sr_m2a 8 32 0 1.300000 2.000000 1 0 0 +( 8192 8256 896 ) ( 8192 -8128 896 ) ( -8192 -8128 896 ) props/w_sr_m2a 8 32 0 1.300000 2.000000 1 0 0 +} +{ +( 832 4864 8192 ) ( 832 -3328 8192 ) ( 832 4864 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 896 -3328 8192 ) ( 896 4864 8192 ) ( 896 4864 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1472 8192 ) ( 8192 1472 8192 ) ( -8192 1472 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -3328 640 ) ( 8192 4864 640 ) ( -8192 -3328 640 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 4864 896 ) ( 8192 -3328 896 ) ( -8192 -3328 896 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 320 8192 8192 ) ( 320 -8192 8192 ) ( 320 8192 -8192 ) bricks/b_mf_v2 -16 0 0 1.000000 1.000000 1 1048576 0 +( 832 -8192 8192 ) ( 832 8192 8192 ) ( 832 8192 -8192 ) bricks/b_mf_v2 -16 16 0 1.000000 1.000000 1 1048576 0 +( -8192 1152 8192 ) ( 8192 1152 8192 ) ( -8192 1152 -8192 ) bricks/b_mf_v2 -16 16 0 1.000000 1.000000 1 1048576 0 +( 8192 1280 8192 ) ( -8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/b_mf_v2 -16 0 0 1.000000 1.000000 1 1048576 0 +( 8192 -8192 48 ) ( 8192 8192 48 ) ( -8192 -8192 48 ) bricks/b_mf_v2 -16 16 0 1.000000 1.000000 1 1048576 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_mf_v2 -16 16 0 1.000000 1.000000 1 1048576 0 +} +{ +( 832 -8192 8192 ) ( 832 8192 8192 ) ( 832 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( -8192 1256 8192 ) ( 8192 1256 8192 ) ( -8192 1256 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1280 8192 ) ( -8192 1280 8192 ) ( -8192 1280 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 512 ) ( 8192 8192 512 ) ( -8192 -8192 512 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( -4992 6592 8192 ) ( 6592 -4992 8192 ) ( 6592 -4992 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 128 8192 8192 ) ( 128 -8192 8192 ) ( 128 8192 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 896 -8192 8192 ) ( 896 8192 8192 ) ( 896 8192 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( -12352 512 8192 ) ( 12224 512 8192 ) ( -12352 512 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 12224 576 8192 ) ( -12352 576 8192 ) ( -12352 576 -8192 ) bricks/b_sr_c31 0 0 0 1.000000 1.000000 1 0 0 +( 12224 -8192 0 ) ( 12224 8192 0 ) ( -12352 -8192 0 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 12224 8192 128 ) ( 12224 -8192 128 ) ( -12352 -8192 128 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 0 8192 8192 ) ( 0 -8192 8192 ) ( 0 8192 -8192 ) bricks/b_sr_c31 0 0 0 1.000000 1.000000 1 0 0 +( 128 -8192 8192 ) ( 128 8192 8192 ) ( 128 8192 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( -8192 512 8192 ) ( 8192 512 8192 ) ( -8192 512 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 8192 576 8192 ) ( -8192 576 8192 ) ( -8192 576 -8192 ) bricks/b_sr_c31 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 0 6912 8192 ) ( 0 -6741 8192 ) ( 0 6912 -8192 ) bricks/b_sr_c31 0 0 0 1.000000 1.000000 1 0 0 +( 896 -6741 8192 ) ( 896 6912 8192 ) ( 896 6912 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( -11469 192 8192 ) ( 11469 192 8192 ) ( -11469 192 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 11469 512 8192 ) ( -11469 512 8192 ) ( -11469 512 -8192 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 11469 -6741 0 ) ( 11469 6912 0 ) ( -11469 -6741 0 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +( 11469 6912 128 ) ( 11469 -6741 128 ) ( -11469 -6741 128 ) bricks/b_sr_c26d 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 0 8192 8192 ) ( 0 -8192 8192 ) ( 0 8192 -8192 ) bricks/b_sr_20 64 -64 180 1.000000 1.000000 1 0 0 +( 576 -8192 8192 ) ( 576 8192 8192 ) ( 576 8192 -8192 ) bricks/b_sr_20 64 -64 180 1.000000 1.000000 1 0 0 +( -8192 512 8192 ) ( 8192 512 8192 ) ( -8192 512 -8192 ) bricks/b_sr_20 64 -64 180 1.000000 1.000000 1 0 0 +( 8192 576 8192 ) ( -8192 576 8192 ) ( -8192 576 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 224 ) ( 8192 8192 224 ) ( -8192 -8192 224 ) bricks/b_sr_20 64 -64 180 1.000000 1.000000 1 0 0 +( 8192 8192 704 ) ( 8192 -8192 704 ) ( -8192 -8192 704 ) bricks/b_sr_20 64 -64 180 1.000000 1.000000 1 0 0 +} +{ +( 576 8192 8192 ) ( 576 -8192 8192 ) ( 576 8192 -8192 ) bricks/b_sr_20 64 -64 180 1.000000 1.000000 1 0 0 +( 832 -8192 8192 ) ( 832 8192 8192 ) ( 832 8192 -8192 ) bricks/b_sr_20 64 -64 180 1.000000 1.000000 1 0 0 +( -8192 512 8192 ) ( 8192 512 8192 ) ( -8192 512 -8192 ) bricks/b_sr_20 64 -64 180 1.000000 1.000000 1 0 0 +( 8192 576 8192 ) ( -8192 576 8192 ) ( -8192 576 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 224 ) ( 8192 8192 224 ) ( -8192 -8192 224 ) bricks/b_sr_20 64 -64 180 1.000000 1.000000 1 0 0 +( 8192 8192 960 ) ( 8192 -8192 960 ) ( -8192 -8192 960 ) bricks/b_sr_20 64 -64 180 1.000000 1.000000 1 0 0 +} +{ +( 0 7997 8192 ) ( 0 -7988 8192 ) ( 0 7997 -8192 ) bricks/b_sr_20 64 -64 180 1.000000 1.000000 1 0 0 +( 896 -7988 8192 ) ( 896 7997 8192 ) ( 896 7997 -8192 ) bricks/b_sr_20 64 -64 180 1.000000 1.000000 1 0 0 +( -8822 192 8192 ) ( 8822 192 8192 ) ( -8822 192 -8192 ) bricks/b_sr_20 64 -64 180 1.000000 1.000000 1 0 0 +( 8822 512 8192 ) ( -8822 512 8192 ) ( -8822 512 -8192 ) bricks/b_sr_20 64 -64 180 1.000000 1.000000 1 0 0 +( 8822 -7988 224 ) ( 8822 7997 224 ) ( -8822 -7988 224 ) bricks/b_sr_20 64 -64 180 1.000000 1.000000 1 0 0 +( 8822 7997 960 ) ( 8822 -7988 960 ) ( -8822 -7988 960 ) bricks/b_sr_20 64 -64 180 1.000000 1.000000 1 0 0 +} +{ +( 608 7961 8192 ) ( 608 -7926 8192 ) ( 608 7961 -8192 ) metals/mt_sr_v16 0 -20 0 2.000000 2.000000 1 8388608 0 +( 896 -7926 8192 ) ( 896 7961 8192 ) ( 896 7961 -8192 ) metals/mt_sr_v16 96 16 0 1.000000 1.000000 1 8390656 0 +( -9932 576 8192 ) ( 9728 576 8192 ) ( -9932 576 -8192 ) metals/mt_sr_v16 96 16 0 1.000000 1.000000 1 8390656 0 +( 9728 1088 8192 ) ( -9932 1088 8192 ) ( -9932 1088 -8192 ) metals/mt_sr_v16 0 -20 0 2.000000 2.000000 1 8388608 0 +( 9728 -7926 767 ) ( 9728 7961 767 ) ( -9932 -7926 767 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 9728 7961 792 ) ( 9728 -7926 792 ) ( -9932 -7926 792 ) floors/rf_sr_m2 1 -19 90 2.000000 2.000000 1 2097152 0 +} +{ +( 0 4091 8192 ) ( 0 -3471 8192 ) ( 0 4091 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 896 -3471 8192 ) ( 896 4091 8192 ) ( 896 4091 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8822 192 8192 ) ( 8822 192 8192 ) ( -8822 192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8822 576 8192 ) ( -8822 576 8192 ) ( -8822 576 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8822 -3471 128 ) ( 8822 4091 128 ) ( -8822 -3471 128 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8822 4091 224 ) ( 8822 -3471 224 ) ( -8822 -3471 224 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 320 8192 4288 ) ( 320 -8192 4288 ) ( 320 8192 -3904 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 384 -8192 4288 ) ( 384 8192 4288 ) ( 384 8192 -3904 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1600 4288 ) ( 8192 1600 4288 ) ( -8192 1600 -3904 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1664 4288 ) ( -8192 1664 4288 ) ( -8192 1664 -3904 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 416 ) ( 8192 -8192 416 ) ( -8192 -8192 416 ) floors/rf_sr_m2 0 -13 0 2.000000 2.000000 1 2097152 0 +} +{ +( 320 8192 7386 ) ( 320 -8192 7386 ) ( 320 8192 -7360 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 384 -8192 7386 ) ( 384 8192 7386 ) ( 384 8192 -7360 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1536 7386 ) ( 8192 1536 7386 ) ( -8192 1536 -7360 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1600 7386 ) ( -8192 1600 7386 ) ( -8192 1600 -7360 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 416 ) ( 8192 -8192 416 ) ( -8192 -8192 416 ) floors/rf_sr_m2 0 -13 0 2.000000 2.000000 1 2097152 0 +} +{ +( 320 8192 7386 ) ( 320 -8192 7386 ) ( 320 8192 -7360 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 384 -8192 7386 ) ( 384 8192 7386 ) ( 384 8192 -7360 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1664 7386 ) ( 8192 1664 7386 ) ( -8192 1664 -7360 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1728 7386 ) ( -8192 1728 7386 ) ( -8192 1728 -7360 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 416 ) ( 8192 -8192 416 ) ( -8192 -8192 416 ) floors/rf_sr_m2 0 -13 0 2.000000 2.000000 1 2097152 0 +} +{ +( 320 8192 8192 ) ( 320 -8192 8192 ) ( 320 8192 -8192 ) wood/wd_st_m3 -4 0 0 1.500000 1.500000 1 0 0 +( 384 -8192 8192 ) ( 384 8192 8192 ) ( 384 8192 -8192 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +( -8192 1600 8192 ) ( 8192 1600 8192 ) ( -8192 1600 -8192 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +( 8192 1664 8192 ) ( -8192 1664 8192 ) ( -8192 1664 -8192 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 64 ) ( 8192 8192 64 ) ( -8192 -8192 64 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +} +{ +( 320 8192 8192 ) ( 320 -8192 8192 ) ( 320 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 384 -8192 8192 ) ( 384 8192 8192 ) ( 384 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1600 8192 ) ( 8192 1600 8192 ) ( -8192 1600 -8192 ) bricks/b_sr_20 64 0 180 1.000000 1.000000 1 0 0 +( 8192 1664 8192 ) ( -8192 1664 8192 ) ( -8192 1664 -8192 ) bricks/b_sr_20 64 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 192 ) ( 8192 8192 192 ) ( -8192 -8192 192 ) bricks/b_sr_20 0 -63 90 1.000000 1.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_20 0 -63 90 1.000000 1.000000 1 0 0 +} +{ +( 328 8192 8192 ) ( 328 -8192 8192 ) ( 328 8192 -8192 ) props/w_sr_m6d 0 0 0 1.000000 1.000000 1 0 0 +( 384 -8192 8192 ) ( 384 8192 8192 ) ( 384 8192 -8192 ) props/w_sr_m6d 0 0 0 1.000000 1.000000 1 1 400 +( -8192 1600 8192 ) ( 8192 1600 8192 ) ( -8192 1600 -8192 ) props/w_sr_m6d 0 0 180 1.000000 1.000000 1 1 400 +( 8192 1664 8192 ) ( -8192 1664 8192 ) ( -8192 1664 -8192 ) props/w_sr_m6d 0 0 180 1.000000 1.000000 1 1 400 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) props/w_sr_m6d 0 -63 90 1.000000 1.000000 1 1 400 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) props/w_sr_m6d 0 -63 90 1.000000 1.000000 1 1 400 +} +{ +( 384 8192 8192 ) ( 384 -8192 8192 ) ( 384 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 832 -8192 8192 ) ( 832 8192 8192 ) ( 832 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1536 8192 ) ( 8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1728 8192 ) ( -8192 1728 8192 ) ( -8192 1728 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) floors/rf_sr_m2s 0 -11 0 2.000000 2.000000 0 2097152 0 +} +{ +( 320 3849 8192 ) ( 320 -1527 8192 ) ( 320 3849 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 960 -1527 8192 ) ( 960 3849 8192 ) ( 960 3849 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1728 8192 ) ( 8192 1728 8192 ) ( -8192 1728 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 2064 8192 ) ( -8192 2064 8192 ) ( -8192 2064 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -1527 256 ) ( 8192 3849 256 ) ( -8192 -1527 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 3849 448 ) ( 8192 -1527 448 ) ( -8192 -1527 448 ) floors/rf_sr_m2 0 -13 0 2.000000 2.000000 1 2097152 0 +} +{ +( 384 8192 8192 ) ( 384 -8192 8192 ) ( 384 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 960 -8192 8192 ) ( 960 8192 8192 ) ( 960 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1536 8192 ) ( 8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1728 8192 ) ( -8192 1728 8192 ) ( -8192 1728 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 320 8192 8192 ) ( 320 -8192 8192 ) ( 320 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 384 -8192 8192 ) ( 384 8192 8192 ) ( 384 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1600 8192 ) ( 8192 1600 8192 ) ( -8192 1600 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1664 8192 ) ( -8192 1664 8192 ) ( -8192 1664 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 64 ) ( 8192 -8192 64 ) ( -8192 -8192 64 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 320 8192 8192 ) ( 320 -8192 8192 ) ( 320 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 384 -8192 8192 ) ( 384 8192 8192 ) ( 384 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1536 8192 ) ( 8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1600 8192 ) ( -8192 1600 8192 ) ( -8192 1600 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 320 8192 8192 ) ( 320 -8192 8192 ) ( 320 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 384 -8192 8192 ) ( 384 8192 8192 ) ( 384 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1664 8192 ) ( 8192 1664 8192 ) ( -8192 1664 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1728 8192 ) ( -8192 1728 8192 ) ( -8192 1728 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 384 8192 8192 ) ( 384 -8192 8192 ) ( 384 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 960 -8192 8192 ) ( 960 8192 8192 ) ( 960 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1536 8192 ) ( 8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1728 8192 ) ( -8192 1728 8192 ) ( -8192 1728 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 192 8192 8192 ) ( 192 -8192 8192 ) ( 192 8192 -8192 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +( 256 -8192 8192 ) ( 256 8192 8192 ) ( 256 8192 -8192 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +( -8192 1728 8192 ) ( 8192 1728 8192 ) ( -8192 1728 -8192 ) wood/wd_st_m3 32 -36 0 1.500000 1.500000 1 0 0 +( 8192 1792 8192 ) ( -8192 1792 8192 ) ( -8192 1792 -8192 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +} +{ +( 192 35664 8192 ) ( 192 -50352 8192 ) ( 192 35664 -8192 ) bricks/b_sr_v23a 0 64 0 2.000000 2.000000 +( 256 -50352 8192 ) ( 256 35664 8192 ) ( 256 35664 -8192 ) bricks/b_sr_20 0 64 0 1.000000 1.000000 +( -8192 1728 8192 ) ( 8192 1728 8192 ) ( -8192 1728 -8192 ) bricks/b_sr_20 -64 64 0 1.000000 1.000000 +( 8192 2064 8192 ) ( -8192 2064 8192 ) ( -8192 2064 -8192 ) bricks/b_sr_20 -64 64 0 1.000000 1.000000 +( 8192 -50352 384 ) ( 8192 35664 384 ) ( -8192 -50352 384 ) bricks/b_sr_20 -64 0 0 1.000000 1.000000 +( 8192 35664 448 ) ( 8192 -50352 448 ) ( -8192 -50352 448 ) floors/rf_sr_m2 0 -13 0 2.000000 2.000000 0 2097152 0 +} +{ +( 0 3344 4288 ) ( 0 -752 4288 ) ( 0 3344 -3904 ) bricks/b_sr_20 0 64 0 1.000000 1.000000 1 0 0 +( 64 -752 4288 ) ( 64 3344 4288 ) ( 64 3344 -3904 ) bricks/b_sr_20 0 64 0 1.000000 1.000000 1 0 0 +( -8192 1728 4288 ) ( 8192 1728 4288 ) ( -8192 1728 -3904 ) bricks/b_sr_20 0 64 0 1.000000 1.000000 1 0 0 +( 8192 1744 4288 ) ( -8192 1744 4288 ) ( -8192 1744 -3904 ) bricks/b_sr_20 0 64 0 1.000000 1.000000 1 0 0 +( 8192 -752 384 ) ( 8192 3344 384 ) ( -8192 -752 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 3344 416 ) ( 8192 -752 416 ) ( -8192 -752 416 ) floors/rf_sr_m2 0 -13 0 2.000000 2.000000 1 2097152 0 +} +{ +( 0 8192 8192 ) ( 0 -8192 8192 ) ( 0 8192 -8192 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +( 64 -8192 8192 ) ( 64 8192 8192 ) ( 64 8192 -8192 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +( -8192 1728 8192 ) ( 8192 1728 8192 ) ( -8192 1728 -8192 ) wood/wd_st_m3 -4 0 0 1.500000 1.500000 1 0 0 +( 8192 1792 8192 ) ( -8192 1792 8192 ) ( -8192 1792 -8192 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +} +{ +( 256 8192 12225 ) ( 256 -8192 12225 ) ( 256 8192 -12352 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 320 -8192 12225 ) ( 320 8192 12225 ) ( 320 8192 -12352 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1728 12225 ) ( 8192 1728 12225 ) ( -8192 1728 -12352 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1792 12225 ) ( -8192 1792 12225 ) ( -8192 1792 -12352 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 128 ) ( 8192 8192 128 ) ( -8192 -8192 128 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 608 ) ( 8192 -8192 608 ) ( -8192 -8192 608 ) floors/rf_sr_m2 0 -13 0 2.000000 2.000000 1 2097152 0 +} +{ +( 192 8192 8192 ) ( 192 -8192 8192 ) ( 192 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 256 -8192 8192 ) ( 256 8192 8192 ) ( 256 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1728 8192 ) ( 8192 1728 8192 ) ( -8192 1728 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1792 8192 ) ( -8192 1792 8192 ) ( -8192 1792 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 192 ) ( 8192 8192 192 ) ( -8192 -8192 192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 64 3344 12225 ) ( 64 -752 12225 ) ( 64 3344 -12352 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 192 -752 12225 ) ( 192 3344 12225 ) ( 192 3344 -12352 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1728 12225 ) ( 8192 1728 12225 ) ( -8192 1728 -12352 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1744 12225 ) ( -8192 1744 12225 ) ( -8192 1744 -12352 ) bricks/b_sr_v23a 0 64 0 10.000000 10.000000 1 0 0 +( 8192 -752 128 ) ( 8192 3344 128 ) ( -8192 -752 128 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 3344 608 ) ( 8192 -752 608 ) ( -8192 -752 608 ) floors/rf_sr_m2 0 -13 0 2.000000 2.000000 1 2097152 0 +} +{ +( 0 8192 8192 ) ( 0 -8192 8192 ) ( 0 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 64 -8192 8192 ) ( 64 8192 8192 ) ( 64 8192 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1728 8192 ) ( 8192 1728 8192 ) ( -8192 1728 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1792 8192 ) ( -8192 1792 8192 ) ( -8192 1792 -8192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 192 ) ( 8192 8192 192 ) ( -8192 -8192 192 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 256 ) ( 8192 -8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -64 1728 128 ) ( -64 1792 128 ) ( -64 1792 288 ) bricks/b_sr_20 0 0 180 1.000000 1.000000 1 0 0 +( 0 1792 128 ) ( 0 1728 128 ) ( 0 1728 288 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 0 1728 128 ) ( -64 1728 128 ) ( -64 1728 288 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -64 1792 128 ) ( 0 1792 128 ) ( 0 1792 288 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -64 1728 128 ) ( 0 1728 128 ) ( 0 1792 128 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( -64 1792 288 ) ( 0 1792 288 ) ( 0 1728 288 ) floors/rf_sr_m2 0 -13 0 2.000000 2.000000 1 2097152 0 +} +{ +( 256 8192 8192 ) ( 256 -8192 8192 ) ( 256 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 960 -8192 8192 ) ( 960 8192 8192 ) ( 960 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1728 8192 ) ( 8192 1728 8192 ) ( -8192 1728 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1792 8192 ) ( -8192 1792 8192 ) ( -8192 1792 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 192 8192 8192 ) ( 192 -8192 8192 ) ( 192 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 256 -8192 8192 ) ( 256 8192 8192 ) ( 256 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1728 8192 ) ( 8192 1728 8192 ) ( -8192 1728 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1792 8192 ) ( -8192 1792 8192 ) ( -8192 1792 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 64 ) ( 8192 -8192 64 ) ( -8192 -8192 64 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 64 8192 8192 ) ( 64 -8192 8192 ) ( 64 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 192 -8192 8192 ) ( 192 8192 8192 ) ( 192 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1728 8192 ) ( 8192 1728 8192 ) ( -8192 1728 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1792 8192 ) ( -8192 1792 8192 ) ( -8192 1792 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 0 8192 8192 ) ( 0 -8192 8192 ) ( 0 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 64 -8192 8192 ) ( 64 8192 8192 ) ( 64 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1728 8192 ) ( 8192 1728 8192 ) ( -8192 1728 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1792 8192 ) ( -8192 1792 8192 ) ( -8192 1792 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 64 ) ( 8192 -8192 64 ) ( -8192 -8192 64 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -64 8192 8192 ) ( -64 -8192 8192 ) ( -64 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 0 -8192 8192 ) ( 0 8192 8192 ) ( 0 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( -8192 1728 8192 ) ( 8192 1728 8192 ) ( -8192 1728 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1792 8192 ) ( -8192 1792 8192 ) ( -8192 1792 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 128 ) ( 8192 -8192 128 ) ( -8192 -8192 128 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 832 6074 8192 ) ( 832 -5097 8192 ) ( 832 6074 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 896 -5097 8192 ) ( 896 6074 8192 ) ( 896 6074 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( -8192 576 8192 ) ( 8192 576 8192 ) ( -8192 576 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -5097 960 ) ( 8192 6074 960 ) ( -8192 -5097 960 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 6074 1024 ) ( 8192 -5097 1024 ) ( -8192 -5097 1024 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 320 1536 480 ) ( 320 1536 416 ) ( 320 1728 416 ) bricks/b_sr_23 16 -16 0 1.000000 1.000000 1 0 0 +( 336 1744 480 ) ( 336 1744 416 ) ( 336 1552 416 ) bricks/b_sr_21 0 0 0 1.000000 1.000000 1 0 0 +( 336 1744 416 ) ( 320 1728 416 ) ( 320 1536 416 ) bricks/b_sr_22 0 0 90 1.000000 1.000000 1 0 0 +( 336 1552 480 ) ( 320 1536 480 ) ( 320 1728 480 ) bricks/b_sr_22 0 0 270 1.000000 1.000000 1 0 0 +( 320 1536 480 ) ( 336 1552 480 ) ( 336 1552 416 ) bricks/b_sr_23 0 -16 0 1.000000 1.000000 1 0 0 +( 336 1744 480 ) ( 320 1728 480 ) ( 320 1728 416 ) bricks/b_sr_21 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( 1296 1552 416 ) ( 1296 1536 416 ) ( 1296 1536 480 ) bricks/b_sr_20 96 64 0 1.000000 1.000000 1 0 0 +( 1296 1536 416 ) ( 320 1536 416 ) ( 320 1536 480 ) bricks/b_sr_23 8 -16 0 1.000000 1.000000 1 0 0 +( 1296 1552 416 ) ( 1296 1552 480 ) ( 336 1552 480 ) bricks/b_sr_21 0 0 0 1.000000 1.000000 1 0 0 +( 1296 1536 416 ) ( 1296 1552 416 ) ( 336 1552 416 ) bricks/b_sr_22 0 0 0 1.000000 1.000000 1 0 0 +( 1296 1552 480 ) ( 1296 1536 480 ) ( 320 1536 480 ) bricks/b_sr_22 0 0 0 1.000000 1.000000 1 0 0 +( 320 1536 416 ) ( 336 1552 416 ) ( 336 1552 480 ) bricks/b_sr_21 32 0 0 1.000000 1.000000 1 0 0 +} +{ +( 320 8192 8192 ) ( 320 -8192 8192 ) ( 320 8192 -8192 ) bricks/s_sr_m12ab 0 0 0 1.500000 1.500000 1 0 0 +( 832 -8192 8192 ) ( 832 8192 8192 ) ( 832 8192 -8192 ) bricks/s_sr_m12ab 0 0 0 1.500000 1.500000 1 0 0 +( -8192 1280 8192 ) ( 8192 1280 8192 ) ( -8192 1280 -8192 ) bricks/s_sr_m12ab 0 0 0 1.500000 1.500000 1 0 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/s_sr_m12ab 0 0 0 1.500000 1.500000 1 0 0 +( 8192 -8192 -8 ) ( 8192 8192 -8 ) ( -8192 -8192 -8 ) bricks/s_sr_m12ab 0 0 0 1.500000 1.500000 1 0 0 +( 8192 8192 0 ) ( 8192 -8192 0 ) ( -8192 -8192 0 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 256 8192 8192 ) ( 256 -8192 8192 ) ( 256 8192 -8192 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 320 -8192 8192 ) ( 320 8192 8192 ) ( 320 8192 -8192 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( -8192 640 8192 ) ( 8192 640 8192 ) ( -8192 640 -8192 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 8192 1152 8192 ) ( -8192 1152 8192 ) ( -8192 1152 -8192 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 8192 8192 64 ) ( 8192 -8192 64 ) ( -8192 -8192 64 ) bricks/c_pv_18a 92 228 90 2.000000 2.000000 1 0 0 +} +{ +( 256 8192 8192 ) ( 256 -8192 8192 ) ( 256 8192 -8192 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 320 -8192 8192 ) ( 320 8192 8192 ) ( 320 8192 -8192 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( -8192 1152 8192 ) ( 8192 1152 8192 ) ( -8192 1152 -8192 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 8192 1216 8192 ) ( -8192 1216 8192 ) ( -8192 1216 -8192 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 8192 8192 64 ) ( 8192 -8192 64 ) ( -8192 -8192 64 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +} +{ +( 256 8192 8192 ) ( 256 -8192 8192 ) ( 256 8192 -8192 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 320 -8192 8192 ) ( 320 8192 8192 ) ( 320 8192 -8192 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( -8192 576 8192 ) ( 8192 576 8192 ) ( -8192 576 -8192 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 8192 640 8192 ) ( -8192 640 8192 ) ( -8192 640 -8192 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 8192 -8192 0 ) ( 8192 8192 0 ) ( -8192 -8192 0 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 8192 8192 64 ) ( 8192 -8192 64 ) ( -8192 -8192 64 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +} +{ +( 256 640 64 ) ( 256 640 332 ) ( 256 576 332 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 320 576 64 ) ( 320 576 356 ) ( 320 640 356 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 256 576 64 ) ( 256 576 332 ) ( 320 576 356 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 320 640 64 ) ( 320 640 356 ) ( 256 640 332 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 320 576 64 ) ( 320 640 64 ) ( 256 640 64 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 320 640 356 ) ( 320 576 356 ) ( 256 576 332 ) bricks/c_pv_18a 40 168 270 2.000000 2.000000 1 0 0 +} +{ +( 320 8192 8192 ) ( 320 -8192 8192 ) ( 320 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 344 -8192 8192 ) ( 344 8192 8192 ) ( 344 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 576 8192 ) ( 8192 576 8192 ) ( -8192 576 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 512 ) ( 8192 8192 512 ) ( -8192 -8192 512 ) bricks/c_sr_m2b 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) metals/mt_sr_v16 0 0 270 2.000000 2.000000 1 8388608 0 +( 6592 -4992 8192 ) ( -4992 6592 8192 ) ( 6592 -4992 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 320 8192 8192 ) ( 320 -8192 8192 ) ( 320 8192 -8192 ) bricks/b_mf_v2a -16 0 0 1.000000 1.000000 1 1048576 0 +( 336 -8192 8192 ) ( 336 8192 8192 ) ( 336 8192 -8192 ) bricks/b_mf_v2 -16 16 0 1.000000 1.000000 1 1048576 0 +( -8192 640 8192 ) ( 8192 640 8192 ) ( -8192 640 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 768 8192 ) ( -8192 768 8192 ) ( -8192 768 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 480 ) ( 8192 8192 480 ) ( -8192 -8192 480 ) bricks/b_mf_v2 -16 63 90 1.000000 1.000000 1 1048576 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) bricks/b_mf_v2 -16 56 90 1.000000 1.000000 1 1048576 0 +} +{ +( 320 8192 8192 ) ( 320 -8192 8192 ) ( 320 8192 -8192 ) bricks/b_mf_v2a -16 0 0 1.000000 1.000000 1 1048576 0 +( 336 -8192 8192 ) ( 336 8192 8192 ) ( 336 8192 -8192 ) bricks/b_mf_v2 -16 16 0 1.000000 1.000000 1 1048576 0 +( -8192 832 8192 ) ( 8192 832 8192 ) ( -8192 832 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 960 8192 ) ( -8192 960 8192 ) ( -8192 960 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 480 ) ( 8192 8192 480 ) ( -8192 -8192 480 ) bricks/b_mf_v2 -16 56 90 1.000000 1.000000 1 1048576 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) bricks/b_mf_v2 -16 56 90 1.000000 1.000000 1 1048576 0 +} +{ +( 320 8192 8192 ) ( 320 -8192 8192 ) ( 320 8192 -8192 ) bricks/b_mf_v2a -16 0 0 1.000000 1.000000 1 1048576 0 +( 336 -8192 8192 ) ( 336 8192 8192 ) ( 336 8192 -8192 ) bricks/b_mf_v2 -16 16 0 1.000000 1.000000 1 1048576 0 +( -8192 1024 8192 ) ( 8192 1024 8192 ) ( -8192 1024 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 1152 8192 ) ( -8192 1152 8192 ) ( -8192 1152 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 480 ) ( 8192 8192 480 ) ( -8192 -8192 480 ) bricks/b_mf_v2 -16 56 90 1.000000 1.000000 1 1048576 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) bricks/b_mf_v2 -16 56 90 1.000000 1.000000 1 1048576 0 +} +{ +( 320 8192 992 ) ( 320 -8192 992 ) ( 320 8192 -32 ) bricks/b_mf_v2a -16 0 0 1.000000 1.000000 1 1048576 0 +( 640 -8192 992 ) ( 640 8192 992 ) ( 640 8192 -32 ) bricks/b_mf_v2 -16 16 0 1.000000 1.000000 1 1048576 0 +( -5000 576 992 ) ( 5240 576 992 ) ( -5000 576 -32 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 5240 640 992 ) ( -5000 640 992 ) ( -5000 640 -32 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 5240 -8192 480 ) ( 5240 8192 480 ) ( -5000 -8192 480 ) bricks/b_mf_v2 -16 56 90 1.000000 1.000000 1 1048576 0 +( 5240 8192 512 ) ( 5240 -8192 512 ) ( -5000 -8192 512 ) bricks/b_mf_v2 -16 56 90 1.000000 1.000000 1 1048576 0 +} +{ +( 320 768 480 ) ( 320 832 480 ) ( 320 832 512 ) bricks/b_mf_v2a -16 0 0 1.000000 1.000000 1 1048576 0 +( 336 832 480 ) ( 336 768 480 ) ( 336 768 512 ) bricks/b_mf_v2 -16 16 0 1.000000 1.000000 1 1048576 0 +( 336 768 480 ) ( 320 768 480 ) ( 320 768 512 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 320 832 480 ) ( 336 832 480 ) ( 336 832 512 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 320 768 480 ) ( 336 768 480 ) ( 336 832 480 ) bricks/b_mf_v2 -16 56 90 1.000000 1.000000 1 1048576 0 +( 320 832 512 ) ( 336 832 512 ) ( 336 768 512 ) bricks/b_mf_v2 -16 56 90 1.000000 1.000000 1 1048576 0 +} +{ +( 320 960 480 ) ( 320 1024 480 ) ( 320 1024 512 ) bricks/b_mf_v2a -16 0 0 1.000000 1.000000 1 1048576 0 +( 336 1024 480 ) ( 336 960 480 ) ( 336 960 512 ) bricks/b_mf_v2 -16 16 0 1.000000 1.000000 1 1048576 0 +( 336 960 480 ) ( 320 960 480 ) ( 320 960 512 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 320 1024 480 ) ( 336 1024 480 ) ( 336 1024 512 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 320 960 480 ) ( 336 960 480 ) ( 336 1024 480 ) bricks/b_mf_v2 -16 56 90 1.000000 1.000000 1 1048576 0 +( 320 1024 512 ) ( 336 1024 512 ) ( 336 960 512 ) bricks/b_mf_v2 -16 56 90 1.000000 1.000000 1 1048576 0 +} +{ +( 320 640 232 ) ( 320 768 232 ) ( 320 768 352 ) bricks/b_mf_v2 -16 0 0 1.000000 1.000000 1 1048576 0 +( 336 768 232 ) ( 336 640 232 ) ( 336 640 352 ) bricks/b_mf_v2 -16 16 0 1.000000 1.000000 1 1048576 0 +( 336 640 232 ) ( 320 640 232 ) ( 320 640 352 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 320 768 232 ) ( 336 768 232 ) ( 336 768 352 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 320 640 232 ) ( 336 640 232 ) ( 336 768 232 ) bricks/b_mf_v2 -16 56 90 1.000000 1.000000 1 1048576 0 +( 320 768 352 ) ( 336 768 352 ) ( 336 640 352 ) bricks/b_mf_v2 -16 63 90 1.000000 1.000000 1 1048576 0 +} +{ +( 320 8192 8192 ) ( 320 -8192 8192 ) ( 320 8192 -8192 ) bricks/b_mf_v2 -16 0 0 1.000000 1.000000 1 1048576 0 +( 336 -8192 8192 ) ( 336 8192 8192 ) ( 336 8192 -8192 ) bricks/b_mf_v2 -16 16 0 1.000000 1.000000 1 1048576 0 +( -8192 832 8192 ) ( 8192 832 8192 ) ( -8192 832 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 960 8192 ) ( -8192 960 8192 ) ( -8192 960 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 232 ) ( 8192 8192 232 ) ( -8192 -8192 232 ) bricks/b_mf_v2 -16 56 90 1.000000 1.000000 1 1048576 0 +( 8192 8192 352 ) ( 8192 -8192 352 ) ( -8192 -8192 352 ) bricks/b_mf_v2 -16 56 90 1.000000 1.000000 1 1048576 0 +} +{ +( 320 8192 8192 ) ( 320 -8192 8192 ) ( 320 8192 -8192 ) props/w_sr_m6d 0 -32 0 1.000000 1.000000 1 0 0 +( 324 -8192 8192 ) ( 324 8192 8192 ) ( 324 8192 -8192 ) props/w_sr_m6d 0 -32 0 1.000000 1.000000 1 1 250 +( -1808 832 8192 ) ( 2288 832 8192 ) ( -1808 832 -8192 ) props/w_sr_m6d 0 -32 0 1.000000 1.000000 1 1 400 +( 2288 960 8192 ) ( -1808 960 8192 ) ( -1808 960 -8192 ) props/w_sr_m6d 0 -32 0 1.000000 1.000000 1 1 400 +( 2288 -8192 352 ) ( 2288 8192 352 ) ( -1808 -8192 352 ) props/w_sr_m6d 0 -32 0 1.000000 1.000000 1 1 400 +( 2288 8192 480 ) ( 2288 -8192 480 ) ( -1808 -8192 480 ) props/w_sr_m6d 0 -32 0 1.000000 1.000000 1 1 400 +} +{ +( 320 8192 8192 ) ( 320 -8192 8192 ) ( 320 8192 -8192 ) props/w_sr_m6e -32 -32 0 1.000000 1.000000 1 0 0 +( 336 -8192 8192 ) ( 336 8192 8192 ) ( 336 8192 -8192 ) props/w_sr_m6d -16 -32 0 1.000000 1.000000 1 1 400 +( -8192 1024 8192 ) ( 8192 1024 8192 ) ( -8192 1024 -8192 ) props/w_sr_m6d -32 -31 180 1.000000 1.000000 1 1 400 +( 8192 1088 8192 ) ( -8192 1088 8192 ) ( -8192 1088 -8192 ) props/w_sr_m6d -32 -31 180 1.000000 1.000000 1 1 400 +( 8192 -8192 352 ) ( 8192 8192 352 ) ( -8192 -8192 352 ) props/w_sr_m6d -16 -64 90 1.000000 1.000000 1 1 400 +( 8192 8192 480 ) ( 8192 -8192 480 ) ( -8192 -8192 480 ) props/w_sr_m6d -16 -64 90 1.000000 1.000000 1 1 400 +} +{ +( 320 8192 8192 ) ( 320 -8192 8192 ) ( 320 8192 -8192 ) props/w_sr_m6d 0 -32 0 1.000000 1.000000 1 0 0 +( 336 -8192 8192 ) ( 336 8192 8192 ) ( 336 8192 -8192 ) props/w_sr_m6d 0 -32 0 1.000000 1.000000 1 1 400 +( -8192 1088 8192 ) ( 8192 1088 8192 ) ( -8192 1088 -8192 ) props/w_sr_m6d 0 -32 0 1.000000 1.000000 1 1 400 +( 8192 1152 8192 ) ( -8192 1152 8192 ) ( -8192 1152 -8192 ) props/w_sr_m6d 0 -32 0 1.000000 1.000000 1 1 400 +( 8192 -8192 352 ) ( 8192 8192 352 ) ( -8192 -8192 352 ) props/w_sr_m6d 0 -32 0 1.000000 1.000000 1 1 400 +( 8192 8192 480 ) ( 8192 -8192 480 ) ( -8192 -8192 480 ) props/w_sr_m6d 0 -32 0 1.000000 1.000000 1 1 400 +} +{ +( 256 8192 8192 ) ( 256 -8192 8192 ) ( 256 8192 -8192 ) props/w_sr_m6e 0 -64 0 1.000000 1.000000 1 0 0 +( 320 -8192 8192 ) ( 320 8192 8192 ) ( 320 8192 -8192 ) props/w_sr_m6d -16 -64 0 1.000000 1.000000 1 1 400 +( -8192 832 8192 ) ( 8192 832 8192 ) ( -8192 832 -8192 ) props/w_sr_m6d -32 -63 180 1.000000 1.000000 1 1 400 +( 8192 896 8192 ) ( -8192 896 8192 ) ( -8192 896 -8192 ) props/w_sr_m6d -32 -63 180 1.000000 1.000000 1 1 400 +( 8192 -8192 64 ) ( 8192 8192 64 ) ( -8192 -8192 64 ) props/w_sr_m6d -16 -24 90 1.000000 1.000000 1 1 400 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) props/w_sr_m6d -16 -24 90 1.000000 1.000000 1 1 400 +} +{ +( 256 8192 8192 ) ( 256 -8192 8192 ) ( 256 8192 -8192 ) props/w_sr_m6d 0 -64 0 1.000000 1.000000 1 0 0 +( 320 -8192 8192 ) ( 320 8192 8192 ) ( 320 8192 -8192 ) props/w_sr_m6d -16 -64 0 1.000000 1.000000 1 1 400 +( -8192 896 8192 ) ( 8192 896 8192 ) ( -8192 896 -8192 ) props/w_sr_m6d -32 -63 180 1.000000 1.000000 1 1 400 +( 8192 960 8192 ) ( -8192 960 8192 ) ( -8192 960 -8192 ) props/w_sr_m6d -32 -63 180 1.000000 1.000000 1 1 400 +( 8192 -8192 64 ) ( 8192 8192 64 ) ( -8192 -8192 64 ) props/w_sr_m6d -16 -24 90 1.000000 1.000000 1 1 400 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) props/w_sr_m6d -16 -24 90 1.000000 1.000000 1 1 400 +} +{ +( 320 8192 8192 ) ( 320 -8192 8192 ) ( 320 8192 -8192 ) bricks/b_mf_v2 -16 0 0 1.000000 1.000000 1 1048576 0 +( 336 -8192 8192 ) ( 336 8192 8192 ) ( 336 8192 -8192 ) bricks/b_mf_v2 -16 16 0 1.000000 1.000000 1 1048576 0 +( -8192 1024 8192 ) ( 8192 1024 8192 ) ( -8192 1024 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 1152 8192 ) ( -8192 1152 8192 ) ( -8192 1152 -8192 ) bricks/b_mf_v2 -32 16 180 1.000000 1.000000 1 1048576 0 +( 8192 -8192 232 ) ( 8192 8192 232 ) ( -8192 -8192 232 ) bricks/b_mf_v2 -16 56 90 1.000000 1.000000 1 1048576 0 +( 8192 8192 352 ) ( 8192 -8192 352 ) ( -8192 -8192 352 ) bricks/b_mf_v2 -16 56 90 1.000000 1.000000 1 1048576 0 +} +{ +( 256 832 64 ) ( 256 832 332 ) ( 256 768 332 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 320 768 64 ) ( 320 768 356 ) ( 320 832 356 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 256 768 64 ) ( 256 768 332 ) ( 320 768 356 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 320 832 64 ) ( 320 832 356 ) ( 256 832 332 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 320 768 64 ) ( 320 832 64 ) ( 256 832 64 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 320 832 356 ) ( 320 768 356 ) ( 256 768 332 ) bricks/c_pv_18a 0 168 270 2.000000 2.000000 1 0 0 +} +{ +( 256 8192 8192 ) ( 256 -8192 8192 ) ( 256 8192 -8192 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 320 -8192 8192 ) ( 320 8192 8192 ) ( 320 8192 -8192 ) bricks/c_pv_18a 0 168 270 2.000000 2.000000 1 0 0 +( -8192 832 8192 ) ( 8192 832 8192 ) ( -8192 832 -8192 ) bricks/c_pv_18a 0 152 270 2.000000 2.000000 1 0 0 +( 8192 960 8192 ) ( -8192 960 8192 ) ( -8192 960 -8192 ) bricks/c_pv_18a 0 152 270 2.000000 2.000000 1 0 0 +( 8192 -8192 192 ) ( 8192 8192 192 ) ( -8192 -8192 192 ) bricks/c_pv_18a 0 152 270 2.000000 2.000000 1 0 0 +( 6545 8192 4925 ) ( 6545 -8192 4925 ) ( -6561 -8192 -4904 ) bricks/c_pv_18a 48 192 270 2.000000 2.000000 1 0 0 +} +{ +( 256 8192 8192 ) ( 256 -8192 8192 ) ( 256 8192 -8192 ) props/w_sr_m6d 0 -64 0 1.000000 1.000000 1 0 0 +( 320 -8192 8192 ) ( 320 8192 8192 ) ( 320 8192 -8192 ) props/w_sr_m6d 0 -32 0 1.000000 1.000000 1 1 400 +( -8192 1024 8192 ) ( 8192 1024 8192 ) ( -8192 1024 -8192 ) props/w_sr_m6d 0 -32 0 1.000000 1.000000 1 1 400 +( 8192 1152 8192 ) ( -8192 1152 8192 ) ( -8192 1152 -8192 ) props/w_sr_m6d 0 -32 0 1.000000 1.000000 1 1 400 +( 8192 -8192 64 ) ( 8192 8192 64 ) ( -8192 -8192 64 ) props/w_sr_m6d 0 -32 0 1.000000 1.000000 1 1 400 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) props/w_sr_m6d 0 -32 0 1.000000 1.000000 1 1 400 +} +{ +( 256 8192 8192 ) ( 256 -8192 8192 ) ( 256 8192 -8192 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 320 -8192 8192 ) ( 320 8192 8192 ) ( 320 8192 -8192 ) bricks/c_pv_18a 0 168 270 2.000000 2.000000 1 0 0 +( -8192 1024 8192 ) ( 8192 1024 8192 ) ( -8192 1024 -8192 ) bricks/c_pv_18a 0 152 270 2.000000 2.000000 1 0 0 +( 8192 1152 8192 ) ( -8192 1152 8192 ) ( -8192 1152 -8192 ) bricks/c_pv_18a 0 152 270 2.000000 2.000000 1 0 0 +( 8192 -8192 192 ) ( 8192 8192 192 ) ( -8192 -8192 192 ) bricks/c_pv_18a 0 152 270 2.000000 2.000000 1 0 0 +( 6545 8192 4925 ) ( 6545 -8192 4925 ) ( -6561 -8192 -4904 ) bricks/c_pv_18a -7 0 270 2.000000 2.000000 1 0 0 +} +{ +( 256 1024 64 ) ( 256 1024 332 ) ( 256 960 332 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 320 960 64 ) ( 320 960 356 ) ( 320 1024 356 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 256 960 64 ) ( 256 960 332 ) ( 320 960 356 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 320 1024 64 ) ( 320 1024 356 ) ( 256 1024 332 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 320 960 64 ) ( 320 1024 64 ) ( 256 1024 64 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 320 1024 356 ) ( 320 960 356 ) ( 256 960 332 ) bricks/c_pv_18a 0 168 270 2.000000 2.000000 1 0 0 +} +{ +( 256 1216 64 ) ( 256 1216 332 ) ( 256 1152 332 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 320 1152 64 ) ( 320 1152 356 ) ( 320 1216 356 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 256 1152 64 ) ( 256 1152 332 ) ( 320 1152 356 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 320 1216 64 ) ( 320 1216 356 ) ( 256 1216 332 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 320 1152 64 ) ( 320 1216 64 ) ( 256 1216 64 ) bricks/c_pv_18a 0 -64 0 2.000000 2.000000 1 0 0 +( 320 1216 356 ) ( 320 1152 356 ) ( 256 1152 332 ) bricks/c_pv_18a 0 168 270 2.000000 2.000000 1 0 0 +} +{ +( 192 8192 8192 ) ( 192 -8192 8192 ) ( 192 8192 -8192 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +( 256 -8192 8192 ) ( 256 8192 8192 ) ( 256 8192 -8192 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +( -8192 1728 8192 ) ( 8192 1728 8192 ) ( -8192 1728 -8192 ) wood/wd_st_m3 28 0 0 1.500000 1.500000 1 0 0 +( 8192 1792 8192 ) ( -8192 1792 8192 ) ( -8192 1792 -8192 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 64 ) ( 8192 8192 64 ) ( -8192 -8192 64 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +} +{ +( 0 8192 8192 ) ( 0 -8192 8192 ) ( 0 8192 -8192 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +( 64 -8192 8192 ) ( 64 8192 8192 ) ( 64 8192 -8192 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +( -8192 1736 8192 ) ( 8192 1736 8192 ) ( -8192 1736 -8192 ) props/w_sr_m6e 0 -64 0 1.000000 1.000000 1 2147483648 400 +( 8192 1792 8192 ) ( -8192 1792 8192 ) ( -8192 1792 -8192 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 64 ) ( 8192 8192 64 ) ( -8192 -8192 64 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 1 0 0 +} +{ +( -832 8256 8192 ) ( -832 -8128 8192 ) ( -832 8256 -8192 ) bricks/s_sr_m1a 0 0 0 1.500000 1.500000 1 4194304 0 +( -384 -8128 8192 ) ( -384 8256 8192 ) ( -384 8256 -8192 ) bricks/s_sr_m1a 0 0 0 1.500000 1.500000 1 4194304 0 +( -8192 192 8192 ) ( 8192 192 8192 ) ( -8192 192 -8192 ) bricks/s_sr_m1a 0 0 0 1.500000 1.500000 1 4194304 0 +( 8192 576 8192 ) ( -8192 576 8192 ) ( -8192 576 -8192 ) bricks/s_sr_m1a 0 0 0 1.500000 1.500000 1 4194304 0 +( 8192 -8128 -8 ) ( 8192 8256 -8 ) ( -8192 -8128 -8 ) bricks/s_sr_m1a 0 0 0 1.500000 1.500000 1 4194304 0 +( 8192 8256 0 ) ( 8192 -8128 0 ) ( -8192 -8128 0 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 0 8192 8192 ) ( 0 -8192 8192 ) ( 0 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 896 -8192 8192 ) ( 896 8192 8192 ) ( 896 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( -8822 192 8192 ) ( 8822 192 8192 ) ( -8822 192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8822 576 8192 ) ( -8822 576 8192 ) ( -8822 576 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 8822 -8192 960 ) ( 8822 8192 960 ) ( -8822 -8192 960 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 8822 8192 1024 ) ( 8822 -8192 1024 ) ( -8822 -8192 1024 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( -272 8192 8192 ) ( -272 -8192 8192 ) ( -272 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( 320 -8192 8192 ) ( 320 8192 8192 ) ( 320 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 0 0 +( -7968 1216 8192 ) ( 7985 1216 8192 ) ( -7968 1216 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 7985 1232 8192 ) ( -7968 1232 8192 ) ( -7968 1232 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 7985 -8192 240 ) ( 7985 8192 240 ) ( -7968 -8192 240 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 7985 8192 288 ) ( 7985 -8192 288 ) ( -7968 -8192 288 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -256 1536 240 ) ( -256 1552 240 ) ( -256 1552 288 ) metals/mt_sr_v16 -8 0 0 2.000000 2.000000 1 0 0 +( 320 1552 240 ) ( 320 1536 240 ) ( 320 1536 288 ) metals/mt_sr_v16 -8 0 0 2.000000 2.000000 1 0 0 +( 320 1536 240 ) ( -256 1536 240 ) ( -256 1536 288 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( -256 1552 240 ) ( 320 1552 240 ) ( 320 1552 288 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( -256 1536 240 ) ( 320 1536 240 ) ( 320 1552 240 ) metals/mt_sr_v13 0 8 0 2.000000 2.000000 1 8388608 0 +( -256 1552 288 ) ( 320 1552 288 ) ( 320 1536 288 ) metals/mt_sr_v16 0 8 0 2.000000 2.000000 1 8388608 0 +} +{ +( 176 8192 8192 ) ( 176 -8192 8192 ) ( 176 8192 -8192 ) metals/mt_sr_mn6 16 0 0 1.000000 1.000000 1 8388608 0 +( 208 -8192 8192 ) ( 208 8192 8192 ) ( 208 8192 -8192 ) metals/mt_sr_mn6 16 0 0 1.000000 1.000000 1 8388608 0 +( -8192 1456 8192 ) ( 8192 1456 8192 ) ( -8192 1456 -8192 ) metals/mt_sr_mn6 -16 0 180 1.000000 1.000000 1 8388608 0 +( 8192 1488 8192 ) ( -8192 1488 8192 ) ( -8192 1488 -8192 ) metals/mt_sr_mn6 -16 0 180 1.000000 1.000000 1 8388608 0 +( 8192 -8192 64 ) ( 8192 8192 64 ) ( -8192 -8192 64 ) metals/mt_sr_mn6 17 0 90 1.000000 1.000000 1 8388608 0 +( 8192 8192 208 ) ( 8192 -8192 208 ) ( -8192 -8192 208 ) metals/mt_sr_mn6 17 0 90 1.000000 1.000000 1 8388608 0 +} +{ +( 176 8192 8192 ) ( 176 -8192 8192 ) ( 176 8192 -8192 ) metals/mt_sr_mn6 -16 0 0 1.000000 1.000000 1 8388608 0 +( 208 -8192 8192 ) ( 208 8192 8192 ) ( 208 8192 -8192 ) metals/mt_sr_mn6 -16 0 180 1.000000 1.000000 1 8388608 0 +( -8192 1264 8192 ) ( 8192 1264 8192 ) ( -8192 1264 -8192 ) metals/mt_sr_mn6 -16 0 180 1.000000 1.000000 1 8388608 0 +( 8192 1296 8192 ) ( -8192 1296 8192 ) ( -8192 1296 -8192 ) metals/mt_sr_mn6 -16 0 180 1.000000 1.000000 1 8388608 0 +( 8192 -8192 64 ) ( 8192 8192 64 ) ( -8192 -8192 64 ) metals/mt_sr_mn6 17 0 90 1.000000 1.000000 1 8388608 0 +( 8192 8192 208 ) ( 8192 -8192 208 ) ( -8192 -8192 208 ) metals/mt_sr_mn6 17 0 90 1.000000 1.000000 1 8388608 0 +} +{ +( -144 8192 8192 ) ( -144 -8192 8192 ) ( -144 8192 -8192 ) metals/mt_sr_mn6 -16 0 180 1.000000 1.000000 1 8388608 0 +( -112 -8192 8192 ) ( -112 8192 8192 ) ( -112 8192 -8192 ) metals/mt_sr_mn6 -16 0 180 1.000000 1.000000 1 8388608 0 +( -8192 1264 8192 ) ( 8192 1264 8192 ) ( -8192 1264 -8192 ) metals/mt_sr_mn6 16 0 180 1.000000 1.000000 1 8388608 0 +( 8192 1296 8192 ) ( -8192 1296 8192 ) ( -8192 1296 -8192 ) metals/mt_sr_mn6 16 0 180 1.000000 1.000000 1 8388608 0 +( 8192 -8192 64 ) ( 8192 8192 64 ) ( -8192 -8192 64 ) metals/mt_sr_mn6 16 -31 90 1.000000 1.000000 1 8388608 0 +( 8192 8192 208 ) ( 8192 -8192 208 ) ( -8192 -8192 208 ) metals/mt_sr_mn6 16 -31 90 1.000000 1.000000 1 8388608 0 +} +{ +( -144 8192 8192 ) ( -144 -8192 8192 ) ( -144 8192 -8192 ) metals/mt_sr_mn6 16 0 0 1.000000 1.000000 1 8388608 0 +( -112 -8192 8192 ) ( -112 8192 8192 ) ( -112 8192 -8192 ) metals/mt_sr_mn6 16 0 0 1.000000 1.000000 1 8388608 0 +( -8192 1456 8192 ) ( 8192 1456 8192 ) ( -8192 1456 -8192 ) metals/mt_sr_mn6 16 0 180 1.000000 1.000000 1 8388608 0 +( 8192 1488 8192 ) ( -8192 1488 8192 ) ( -8192 1488 -8192 ) metals/mt_sr_mn6 16 0 180 1.000000 1.000000 1 8388608 0 +( 8192 -8192 64 ) ( 8192 8192 64 ) ( -8192 -8192 64 ) metals/mt_sr_mn6 16 -31 90 1.000000 1.000000 1 8388608 0 +( 8192 8192 208 ) ( 8192 -8192 208 ) ( -8192 -8192 208 ) metals/mt_sr_mn6 16 -31 90 1.000000 1.000000 1 8388608 0 +} +{ +( -384 7889 8192 ) ( -384 -7750 8192 ) ( -384 7889 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 320 -7750 8192 ) ( 320 7889 8192 ) ( 320 7889 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( -8192 192 8192 ) ( 8192 192 8192 ) ( -8192 192 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 1536 8192 ) ( -8192 1536 8192 ) ( -8192 1536 -8192 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -7750 -8 ) ( 8192 7889 -8 ) ( -8192 -7750 -8 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 8192 7889 0 ) ( 8192 -7750 0 ) ( -8192 -7750 0 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 592 1728 640 ) ( -64 1728 640 ) ( -64 2064 640 ) floors/rf_sr_m2 0 -32 0 2.000000 2.000000 0 2097152 0 +( 592 2064 608 ) ( -64 2064 608 ) ( -64 1728 608 ) bricks/b_sr_v26 0 -32 0 5.000000 5.000000 +( 592 1728 640 ) ( 592 2064 640 ) ( 592 2064 608 ) bricks/b_sr_c06 0 -32 0 1.000000 1.000000 +( -64 1728 608 ) ( -64 2064 608 ) ( -64 2064 640 ) bricks/b_sr_c06 0 0 0 1.000000 1.000000 +( -64 1728 640 ) ( 592 1728 640 ) ( 592 1728 608 ) bricks/b_sr_c06 0 0 0 1.000000 1.000000 +( -64 2064 608 ) ( 592 2064 608 ) ( 592 2064 640 ) bricks/b_sr_c06 0 -32 0 1.000000 1.000000 +} +{ +( -64 2064 608 ) ( -48 2064 608 ) ( -48 1744 608 ) bricks/b_sr_20 0 -32 0 1.000000 1.000000 +( -64 1728 416 ) ( -48 1744 416 ) ( -48 2064 416 ) bricks/b_sr_20 0 -32 0 1.000000 1.000000 +( -48 1744 416 ) ( -48 1744 608 ) ( -48 2064 608 ) bricks/b_sr_v23a 0 64 0 2.000000 2.000000 +( -64 2064 416 ) ( -64 2064 608 ) ( -64 1728 608 ) bricks/b_sr_20 0 -32 0 1.000000 1.000000 +( -64 1728 416 ) ( -64 1728 608 ) ( -48 1744 608 ) bricks/b_sr_20 0 -32 0 1.000000 1.000000 +( -48 2064 416 ) ( -48 2064 608 ) ( -64 2064 608 ) bricks/b_sr_20 0 -32 0 1.000000 1.000000 +} +{ +( 2624 840 488 ) ( 2736 840 488 ) ( 2736 824 488 ) metals/mt_pv_m16k 8 8 90 1.000000 1.000000 0 8390656 0 +( 2624 824 448 ) ( 2736 824 448 ) ( 2736 840 448 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 0 8390656 0 +( 2624 840 488 ) ( 2624 824 488 ) ( 2624 824 448 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 0 8390656 0 +( 2736 840 448 ) ( 2736 824 448 ) ( 2736 824 488 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 0 8390656 0 +( 2736 840 488 ) ( 2624 840 488 ) ( 2624 840 448 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 0 8390656 0 +( 2736 824 448 ) ( 2624 824 448 ) ( 2624 824 488 ) metals/mt_pv_m16k 0 0 0 1.000000 1.000000 0 8390656 0 +} +{ +( 2736 840 552 ) ( 2752 840 552 ) ( 2752 320 552 ) bricks/b_sr_c31 0 -72 0 1.000000 1.000000 +( 2736 320 384 ) ( 2752 320 384 ) ( 2752 840 384 ) metals/mt_sr_v13 0 -72 0 2.000000 2.000000 0 8388608 0 +( 2736 840 552 ) ( 2736 320 552 ) ( 2736 320 384 ) bricks/b_sr_20 0 -72 0 1.000000 1.000000 +( 2752 840 384 ) ( 2752 320 384 ) ( 2752 320 552 ) bricks/b_sr_c31 0 -72 0 1.000000 1.000000 +( 2752 840 552 ) ( 2736 840 552 ) ( 2736 840 384 ) bricks/b_sr_c31 0 -72 0 1.000000 1.000000 +( 2752 320 384 ) ( 2736 320 384 ) ( 2736 320 552 ) bricks/b_sr_c31 0 -72 0 1.000000 1.000000 +} +{ +( 2624 824 488 ) ( 2736 824 488 ) ( 2736 384 488 ) bricks/c_sr_m2c 32 32 90 1.000000 0.900000 +( 2624 384 384 ) ( 2736 384 384 ) ( 2736 824 384 ) metals/mt_sr_v13 32 64 0 2.000000 2.000000 0 8388608 0 +( 2624 824 488 ) ( 2624 384 488 ) ( 2624 384 384 ) bricks/c_sr_m2c 32 64 0 1.000000 1.000000 +( 2736 824 384 ) ( 2736 384 384 ) ( 2736 384 488 ) bricks/c_sr_m2c 32 64 0 1.000000 1.000000 +( 2736 824 488 ) ( 2624 824 488 ) ( 2624 824 384 ) bricks/c_sr_m2c 32 64 0 1.000000 1.000000 +( 2736 384 384 ) ( 2624 384 384 ) ( 2624 384 488 ) bricks/c_sr_m2c 32 64 0 1.000000 1.000000 +} +{ +( 2624 480 560 ) ( 2624 480 488 ) ( 2624 720 488 ) bricks/c_sr_m2c 0 0 0 1.000000 1.000000 +( 2736 720 488 ) ( 2736 480 488 ) ( 2736 480 560 ) bricks/c_sr_m2c 0 0 0 1.000000 1.000000 +( 2736 480 560 ) ( 2624 480 560 ) ( 2624 720 488 ) bricks/c_sr_m2c 0 32 90 1.000000 0.900000 +( 2624 480 488 ) ( 2736 480 488 ) ( 2736 720 488 ) bricks/c_sr_m2c 0 0 0 1.000000 1.000000 +( 2624 480 560 ) ( 2736 480 560 ) ( 2736 480 488 ) bricks/c_sr_m2c 0 0 0 1.000000 1.000000 +} +{ +( 2736 648 672 ) ( 2624 648 672 ) ( 2624 840 672 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 +( 2736 840 640 ) ( 2624 840 640 ) ( 2624 752 640 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 +( 2624 752 640 ) ( 2624 840 640 ) ( 2624 840 672 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 +( 2736 648 672 ) ( 2736 840 672 ) ( 2736 840 640 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 +( 2624 840 640 ) ( 2736 840 640 ) ( 2736 840 672 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 +( 2624 648 672 ) ( 2736 648 672 ) ( 2736 752 640 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 0 8388608 0 +} +{ +( 2624 648 768 ) ( 2736 648 768 ) ( 2736 544 768 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2624 544 672 ) ( 2736 544 672 ) ( 2736 648 672 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 0 8388608 0 +( 2624 648 768 ) ( 2624 544 768 ) ( 2624 544 672 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2736 648 672 ) ( 2736 544 672 ) ( 2736 544 768 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2736 648 768 ) ( 2624 648 768 ) ( 2624 648 672 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2736 544 672 ) ( 2624 544 672 ) ( 2624 544 768 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 +} +{ +( 2736 640 768 ) ( 2752 640 768 ) ( 2752 320 768 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2736 320 672 ) ( 2752 320 672 ) ( 2752 640 672 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2736 640 768 ) ( 2736 320 768 ) ( 2736 320 672 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 +( 2752 640 672 ) ( 2752 320 672 ) ( 2752 320 768 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2752 640 768 ) ( 2736 640 768 ) ( 2736 640 672 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2752 320 672 ) ( 2736 320 672 ) ( 2736 320 768 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +} +{ +( 2560 688 640 ) ( 2624 688 640 ) ( 2624 480 640 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2560 480 512 ) ( 2624 480 512 ) ( 2624 688 512 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2560 688 640 ) ( 2560 480 640 ) ( 2560 480 512 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2624 688 512 ) ( 2624 480 512 ) ( 2624 480 640 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2624 688 640 ) ( 2560 688 640 ) ( 2560 688 512 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2624 480 512 ) ( 2560 480 512 ) ( 2560 480 640 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +} +{ +( 1536 1488 368 ) ( 1656 1488 368 ) ( 1656 1152 368 ) bricks/c_sr_m2a 0 0 0 2.000000 2.000000 +( 1536 1152 256 ) ( 1656 1152 256 ) ( 1656 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1536 1488 368 ) ( 1536 1152 368 ) ( 1536 1152 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1656 1488 256 ) ( 1656 1152 256 ) ( 1656 1152 368 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1656 1488 368 ) ( 1536 1488 368 ) ( 1536 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1656 1152 256 ) ( 1536 1152 256 ) ( 1536 1152 368 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +} +{ +( 1688 1488 368 ) ( 1688 1392 368 ) ( 1656 1392 368 ) bricks/c_sr_m2a 0 0 0 2.000000 2.000000 +( 1688 1392 256 ) ( 1688 1488 256 ) ( 1656 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1656 1392 368 ) ( 1656 1392 256 ) ( 1656 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1688 1392 256 ) ( 1688 1392 368 ) ( 1688 1488 368 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1656 1488 368 ) ( 1656 1488 256 ) ( 1688 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1656 1392 256 ) ( 1656 1392 368 ) ( 1688 1392 368 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +} +{ +( 1720 1488 352 ) ( 1720 1392 352 ) ( 1688 1392 352 ) bricks/c_sr_m2a 0 0 0 2.000000 2.000000 +( 1720 1392 256 ) ( 1720 1488 256 ) ( 1688 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1688 1392 352 ) ( 1688 1392 256 ) ( 1688 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1720 1392 256 ) ( 1720 1392 352 ) ( 1720 1488 352 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1688 1488 352 ) ( 1688 1488 256 ) ( 1720 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1688 1392 256 ) ( 1688 1392 352 ) ( 1720 1392 352 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +} +{ +( 1752 1488 336 ) ( 1752 1392 336 ) ( 1720 1392 336 ) bricks/c_sr_m2a 0 0 0 2.000000 2.000000 +( 1752 1392 256 ) ( 1752 1488 256 ) ( 1720 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1720 1392 336 ) ( 1720 1392 256 ) ( 1720 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1752 1392 256 ) ( 1752 1392 336 ) ( 1752 1488 336 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1720 1488 336 ) ( 1720 1488 256 ) ( 1752 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1720 1392 256 ) ( 1720 1392 336 ) ( 1752 1392 336 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +} +{ +( 1784 1488 320 ) ( 1784 1392 320 ) ( 1752 1392 320 ) bricks/c_sr_m2a 0 0 0 2.000000 2.000000 +( 1784 1392 256 ) ( 1784 1488 256 ) ( 1752 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1752 1392 320 ) ( 1752 1392 256 ) ( 1752 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1784 1392 256 ) ( 1784 1392 320 ) ( 1784 1488 320 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1752 1488 320 ) ( 1752 1488 256 ) ( 1784 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1752 1392 256 ) ( 1752 1392 320 ) ( 1784 1392 320 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +} +{ +( 1816 1488 304 ) ( 1816 1392 304 ) ( 1784 1392 304 ) bricks/c_sr_m2a 0 0 0 2.000000 2.000000 +( 1816 1392 256 ) ( 1816 1488 256 ) ( 1784 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1784 1392 304 ) ( 1784 1392 256 ) ( 1784 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1816 1392 256 ) ( 1816 1392 304 ) ( 1816 1488 304 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1784 1488 304 ) ( 1784 1488 256 ) ( 1816 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1784 1392 256 ) ( 1784 1392 304 ) ( 1816 1392 304 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +} +{ +( 1848 1488 288 ) ( 1848 1392 288 ) ( 1816 1392 288 ) bricks/c_sr_m2a 0 0 0 2.000000 2.000000 +( 1848 1392 256 ) ( 1848 1488 256 ) ( 1816 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1816 1392 288 ) ( 1816 1392 256 ) ( 1816 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1848 1392 256 ) ( 1848 1392 288 ) ( 1848 1488 288 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1816 1488 288 ) ( 1816 1488 256 ) ( 1848 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1816 1392 256 ) ( 1816 1392 288 ) ( 1848 1392 288 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +} +{ +( 1880 1488 272 ) ( 1880 1392 272 ) ( 1848 1392 272 ) bricks/c_sr_m2a 0 0 0 2.000000 2.000000 +( 1880 1392 256 ) ( 1880 1488 256 ) ( 1848 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1848 1392 272 ) ( 1848 1392 256 ) ( 1848 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1880 1392 256 ) ( 1880 1392 272 ) ( 1880 1488 272 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1848 1488 272 ) ( 1848 1488 256 ) ( 1880 1488 256 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( 1848 1392 256 ) ( 1848 1392 272 ) ( 1880 1392 272 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +} +{ +( -256 1984 64 ) ( -192 1984 64 ) ( -192 1856 64 ) props/box_sr_m6 0 0 0 1.000000 1.000000 0 134217728 0 +( -256 1856 0 ) ( -192 1856 0 ) ( -192 1984 0 ) props/box_sr_m6 0 0 0 1.000000 1.000000 0 134217728 0 +( -256 1984 64 ) ( -256 1856 64 ) ( -256 1856 0 ) props/box_sr_m6 0 0 0 1.000000 1.000000 0 134217728 0 +( -192 1984 0 ) ( -192 1856 0 ) ( -192 1856 64 ) props/box_sr_m6 0 0 0 1.000000 1.000000 0 134217728 0 +( -192 1984 64 ) ( -256 1984 64 ) ( -256 1984 0 ) props/box_sr_m6 0 0 0 1.000000 1.000000 0 134217728 0 +( -192 1856 0 ) ( -256 1856 0 ) ( -256 1856 64 ) props/box_sr_m6 0 0 0 1.000000 1.000000 0 134217728 0 +} +{ +( -128 1792 128 ) ( -64 1792 128 ) ( -64 1728 128 ) props/box_sr_m6 0 0 0 1.000000 1.000000 0 134217728 0 +( -128 1728 0 ) ( -64 1728 0 ) ( -64 1792 0 ) props/box_sr_m6 0 0 0 1.000000 1.000000 0 134217728 0 +( -128 1792 128 ) ( -128 1728 128 ) ( -128 1728 0 ) props/box_sr_m6 0 0 0 1.000000 1.000000 0 134217728 0 +( -64 1792 0 ) ( -64 1728 0 ) ( -64 1728 128 ) props/box_sr_m6 0 0 0 1.000000 1.000000 0 134217728 0 +( -64 1792 128 ) ( -128 1792 128 ) ( -128 1792 0 ) props/box_sr_m6 0 0 0 1.000000 1.000000 0 134217728 0 +( -64 1728 0 ) ( -128 1728 0 ) ( -128 1728 128 ) props/box_sr_m6 0 0 0 1.000000 1.000000 0 134217728 0 +} +{ +( 320 2064 608 ) ( 592 2064 608 ) ( 592 1728 608 ) bricks/b_sr_20 0 -32 0 1.000000 1.000000 +( 320 1728 448 ) ( 592 1728 448 ) ( 592 2064 448 ) bricks/b_sr_20 0 -32 0 1.000000 1.000000 +( 592 2064 448 ) ( 592 1728 448 ) ( 592 1728 608 ) bricks/b_sr_20 0 -32 0 1.000000 1.000000 +( 320 2064 608 ) ( 320 1728 608 ) ( 320 1728 448 ) bricks/b_sr_20 0 -32 0 1.000000 1.000000 +( 592 1728 448 ) ( 320 1728 448 ) ( 320 1728 608 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 592 2064 608 ) ( 320 2064 608 ) ( 320 2064 448 ) bricks/b_sr_20 0 -32 0 1.000000 1.000000 +} +{ +( -432 624 256 ) ( -368 624 256 ) ( -368 560 256 ) bricks/c_pv_18a 0 128 0 2.000000 2.000000 +( -432 560 0 ) ( -368 560 0 ) ( -368 624 0 ) bricks/c_pv_18a 0 128 0 2.000000 2.000000 +( -432 624 256 ) ( -432 560 256 ) ( -432 560 0 ) bricks/c_pv_18a 0 128 0 2.000000 2.000000 +( -368 624 0 ) ( -368 560 0 ) ( -368 560 256 ) bricks/c_pv_18a 0 128 0 2.000000 2.000000 +( -368 624 256 ) ( -432 624 256 ) ( -432 624 0 ) bricks/c_pv_18a 0 128 0 2.000000 2.000000 +( -368 560 0 ) ( -432 560 0 ) ( -432 560 256 ) bricks/c_pv_18a 0 128 0 2.000000 2.000000 +} +{ +( -432 624 576 ) ( -368 624 576 ) ( -368 560 576 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -432 560 256 ) ( -368 560 256 ) ( -368 624 256 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -432 624 576 ) ( -432 560 576 ) ( -432 560 256 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -368 624 256 ) ( -368 560 256 ) ( -368 560 576 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -368 624 576 ) ( -432 624 576 ) ( -432 624 256 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -368 560 256 ) ( -432 560 256 ) ( -432 560 576 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +} +{ +( -432 624 640 ) ( -368 624 640 ) ( -368 560 640 ) floors/rf_sr_m2 0 0 0 5.000000 5.000000 0 2097152 0 +( -432 560 576 ) ( -368 560 576 ) ( -368 624 576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +( -432 624 640 ) ( -432 560 640 ) ( -432 560 576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +( -368 624 576 ) ( -368 560 576 ) ( -368 560 640 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +( -368 624 640 ) ( -432 624 640 ) ( -432 624 576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +( -368 560 576 ) ( -432 560 576 ) ( -432 560 640 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +} +{ +( 1776 960 384 ) ( 1792 960 384 ) ( 1792 832 384 ) common/0_skip 0 0 0 1.000000 1.000000 0 640 0 +( 1776 832 256 ) ( 1792 832 256 ) ( 1792 960 256 ) common/0_skip 0 0 0 1.000000 1.000000 0 640 0 +( 1776 960 384 ) ( 1776 832 384 ) ( 1776 832 256 ) common/0_skip 0 0 0 1.000000 1.000000 0 640 0 +( 1792 960 256 ) ( 1792 832 256 ) ( 1792 832 384 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 1792 960 384 ) ( 1776 960 384 ) ( 1776 960 256 ) common/0_skip 0 0 0 1.000000 1.000000 0 640 0 +( 1792 832 256 ) ( 1776 832 256 ) ( 1776 832 384 ) common/0_skip 0 0 0 1.000000 1.000000 0 640 0 +} +{ +( 576 1600 480 ) ( 960 1600 480 ) ( 960 1552 480 ) bricks/b_pv_v1 0 64 0 1.000000 1.000000 +( 576 1552 448 ) ( 960 1552 448 ) ( 960 1600 448 ) bricks/b_pv_v1 0 64 0 1.000000 1.000000 +( 576 1600 480 ) ( 576 1552 480 ) ( 576 1552 448 ) bricks/b_pv_v1 0 64 0 1.000000 1.000000 +( 960 1600 448 ) ( 960 1552 448 ) ( 960 1552 480 ) bricks/b_pv_v1 0 64 0 1.000000 1.000000 +( 960 1600 480 ) ( 576 1600 480 ) ( 576 1600 448 ) bricks/b_pv_v1 0 64 0 1.000000 1.000000 +( 960 1552 448 ) ( 576 1552 448 ) ( 576 1552 480 ) bricks/b_pv_v1 0 64 0 1.000000 1.000000 +} +{ +( 336 1728 448 ) ( 384 1728 448 ) ( 384 1552 448 ) floors/rf_sr_m2s 0 -11 0 2.000000 2.000000 0 2097152 0 +( 336 1552 416 ) ( 384 1552 416 ) ( 384 1728 416 ) floors/rf_sr_m2 0 0 0 1.000000 1.000000 0 2097152 0 +( 336 1728 448 ) ( 336 1552 448 ) ( 336 1552 416 ) floors/rf_sr_m2 0 0 0 1.000000 1.000000 0 2097152 0 +( 384 1728 416 ) ( 384 1552 416 ) ( 384 1552 448 ) floors/rf_sr_m2 0 0 0 1.000000 1.000000 0 2097152 0 +( 384 1728 448 ) ( 336 1728 448 ) ( 336 1728 416 ) floors/rf_sr_m2 0 0 0 1.000000 1.000000 0 2097152 0 +( 384 1552 416 ) ( 336 1552 416 ) ( 336 1552 448 ) floors/rf_sr_m2 0 0 0 1.000000 1.000000 0 2097152 0 +} +{ +( -832 256 352 ) ( 0 256 352 ) ( 0 192 352 ) bricks/b_sr_c27 0 -64 0 1.000000 1.000000 +( -832 192 256 ) ( 0 192 256 ) ( 0 256 256 ) bricks/b_sr_c27 0 -64 0 1.000000 1.000000 +( -832 256 352 ) ( -832 192 352 ) ( -832 192 256 ) bricks/b_sr_c27 64 0 0 1.000000 1.000000 +( 0 256 256 ) ( 0 192 256 ) ( 0 192 352 ) bricks/b_sr_c27 64 0 0 1.000000 1.000000 +( 0 256 352 ) ( -832 256 352 ) ( -832 256 256 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 +( 0 192 256 ) ( -832 192 256 ) ( -832 192 352 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 +} +{ +( 512 976 560 ) ( 656 976 560 ) ( 656 880 560 ) floors/rf_sr_m2 0 0 0 2.000000 2.000000 0 2097152 0 +( 512 880 512 ) ( 656 880 512 ) ( 656 976 512 ) floors/rf_sr_m2 0 0 0 1.000000 1.000000 0 2097152 0 +( 512 976 560 ) ( 512 880 560 ) ( 512 880 512 ) bricks2/c_pv_m1 0 0 0 1.000000 1.000000 +( 656 976 512 ) ( 656 880 512 ) ( 656 880 560 ) floors/rf_sr_m2 0 0 0 1.000000 1.000000 0 2097152 0 +( 656 976 560 ) ( 512 976 560 ) ( 512 976 512 ) floors/rf_sr_m2 0 0 0 1.000000 1.000000 0 2097152 0 +( 656 880 512 ) ( 512 880 512 ) ( 512 880 560 ) floors/rf_sr_m2 0 0 0 1.000000 1.000000 0 2097152 0 +} +{ +( 344 880 560 ) ( 656 880 560 ) ( 656 576 560 ) floors/rf_sr_m2 0 0 0 2.000000 2.000000 0 2097152 0 +( 344 576 512 ) ( 656 576 512 ) ( 656 880 512 ) bricks/c_sr_m2b 0 0 0 2.000000 2.000000 +( 344 880 560 ) ( 344 576 560 ) ( 344 576 512 ) floors/rf_sr_m2 0 0 0 1.000000 1.000000 0 2097152 0 +( 656 880 512 ) ( 656 576 512 ) ( 656 576 560 ) floors/rf_sr_m2 0 0 0 1.000000 1.000000 0 2097152 0 +( 656 880 560 ) ( 344 880 560 ) ( 344 880 512 ) bricks2/c_pv_m1 0 0 0 1.000000 1.000000 +( 656 576 512 ) ( 344 576 512 ) ( 344 576 560 ) floors/rf_sr_m2 0 0 0 1.000000 1.000000 0 2097152 0 +} +{ +( 344 976 560 ) ( 416 976 560 ) ( 416 880 560 ) floors/rf_sr_m2 0 0 0 2.000000 2.000000 0 2097152 0 +( 344 880 512 ) ( 416 880 512 ) ( 416 976 512 ) bricks/c_sr_m2b 0 0 0 2.000000 2.000000 +( 344 976 560 ) ( 344 880 560 ) ( 344 880 512 ) floors/rf_sr_m2 0 0 0 1.000000 1.000000 0 2097152 0 +( 416 976 512 ) ( 416 880 512 ) ( 416 880 560 ) bricks2/c_pv_m1 0 0 0 1.000000 1.000000 +( 416 976 560 ) ( 344 976 560 ) ( 344 976 512 ) floors/rf_sr_m2 0 0 0 1.000000 1.000000 0 2097152 0 +( 416 880 512 ) ( 344 880 512 ) ( 344 880 560 ) floors/rf_sr_m2 0 0 0 1.000000 1.000000 0 2097152 0 +} +{ +( -384 736 0 ) ( -384 1216 0 ) ( -384 1216 240 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 1216 240 ) ( -272 1216 0 ) ( -272 736 0 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 736 0 ) ( -384 736 0 ) ( -384 1216 240 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 1216 0 ) ( -272 1216 0 ) ( -272 1216 240 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 736 0 ) ( -272 736 0 ) ( -272 1216 0 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +} +{ +( -384 768 16 ) ( -384 736 16 ) ( -384 736 0 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 736 0 ) ( -272 736 16 ) ( -272 768 16 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 768 16 ) ( -384 768 16 ) ( -384 736 0 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 736 16 ) ( -272 736 16 ) ( -272 736 0 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 768 16 ) ( -272 768 16 ) ( -272 736 16 ) bricks/c_sr_m2c 0 0 0 2.000000 2.000000 +} +{ +( -384 800 32 ) ( -384 768 32 ) ( -384 768 16 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 768 16 ) ( -272 768 32 ) ( -272 800 32 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 800 32 ) ( -384 800 32 ) ( -384 768 16 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 768 32 ) ( -272 768 32 ) ( -272 768 16 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 800 32 ) ( -272 800 32 ) ( -272 768 32 ) bricks/c_sr_m2c 0 0 0 2.000000 2.000000 +} +{ +( -384 864 64 ) ( -384 832 64 ) ( -384 832 48 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 832 48 ) ( -272 832 64 ) ( -272 864 64 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 864 64 ) ( -384 864 64 ) ( -384 832 48 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 832 64 ) ( -272 832 64 ) ( -272 832 48 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 864 64 ) ( -272 864 64 ) ( -272 832 64 ) bricks/c_sr_m2c 0 0 0 2.000000 2.000000 +} +{ +( -384 832 48 ) ( -384 800 48 ) ( -384 800 32 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 800 32 ) ( -272 800 48 ) ( -272 832 48 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 832 48 ) ( -384 832 48 ) ( -384 800 32 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 800 48 ) ( -272 800 48 ) ( -272 800 32 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 832 48 ) ( -272 832 48 ) ( -272 800 48 ) bricks/c_sr_m2c 0 0 0 2.000000 2.000000 +} +{ +( -384 992 128 ) ( -384 960 128 ) ( -384 960 112 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 960 112 ) ( -272 960 128 ) ( -272 992 128 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 992 128 ) ( -384 992 128 ) ( -384 960 112 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 960 128 ) ( -272 960 128 ) ( -272 960 112 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 992 128 ) ( -272 992 128 ) ( -272 960 128 ) bricks/c_sr_m2c 0 0 0 2.000000 2.000000 +} +{ +( -384 960 112 ) ( -384 928 112 ) ( -384 928 96 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 928 96 ) ( -272 928 112 ) ( -272 960 112 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 960 112 ) ( -384 960 112 ) ( -384 928 96 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 928 112 ) ( -272 928 112 ) ( -272 928 96 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 960 112 ) ( -272 960 112 ) ( -272 928 112 ) bricks/c_sr_m2c 0 0 0 2.000000 2.000000 +} +{ +( -384 928 96 ) ( -384 896 96 ) ( -384 896 80 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 896 80 ) ( -272 896 96 ) ( -272 928 96 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 928 96 ) ( -384 928 96 ) ( -384 896 80 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 896 96 ) ( -272 896 96 ) ( -272 896 80 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 928 96 ) ( -272 928 96 ) ( -272 896 96 ) bricks/c_sr_m2c 0 0 0 2.000000 2.000000 +} +{ +( -384 896 80 ) ( -384 864 80 ) ( -384 864 64 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 864 64 ) ( -272 864 80 ) ( -272 896 80 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 896 80 ) ( -384 896 80 ) ( -384 864 64 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 864 80 ) ( -272 864 80 ) ( -272 864 64 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 896 80 ) ( -272 896 80 ) ( -272 864 80 ) bricks/c_sr_m2c 0 0 0 2.000000 2.000000 +} +{ +( -384 1216 240 ) ( -384 1184 240 ) ( -384 1184 224 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 1184 224 ) ( -272 1184 240 ) ( -272 1216 240 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 1216 240 ) ( -384 1216 240 ) ( -384 1184 224 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 1184 240 ) ( -272 1184 240 ) ( -272 1184 224 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 1216 240 ) ( -272 1216 240 ) ( -272 1184 240 ) bricks/c_sr_m2c 0 0 0 2.000000 2.000000 +} +{ +( -384 1184 224 ) ( -384 1152 224 ) ( -384 1152 208 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 1152 208 ) ( -272 1152 224 ) ( -272 1184 224 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 1184 224 ) ( -384 1184 224 ) ( -384 1152 208 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 1152 224 ) ( -272 1152 224 ) ( -272 1152 208 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 1184 224 ) ( -272 1184 224 ) ( -272 1152 224 ) bricks/c_sr_m2c 0 0 0 2.000000 2.000000 +} +{ +( -384 1152 208 ) ( -384 1120 208 ) ( -384 1120 192 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 1120 192 ) ( -272 1120 208 ) ( -272 1152 208 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 1152 208 ) ( -384 1152 208 ) ( -384 1120 192 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 1120 208 ) ( -272 1120 208 ) ( -272 1120 192 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 1152 208 ) ( -272 1152 208 ) ( -272 1120 208 ) bricks/c_sr_m2c 0 0 0 2.000000 2.000000 +} +{ +( -384 1120 192 ) ( -384 1088 192 ) ( -384 1088 176 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 1088 176 ) ( -272 1088 192 ) ( -272 1120 192 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 1120 192 ) ( -384 1120 192 ) ( -384 1088 176 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 1088 192 ) ( -272 1088 192 ) ( -272 1088 176 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 1120 192 ) ( -272 1120 192 ) ( -272 1088 192 ) bricks/c_sr_m2c 0 0 0 2.000000 2.000000 +} +{ +( -384 1088 176 ) ( -384 1056 176 ) ( -384 1056 160 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 1056 160 ) ( -272 1056 176 ) ( -272 1088 176 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 1088 176 ) ( -384 1088 176 ) ( -384 1056 160 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 1056 176 ) ( -272 1056 176 ) ( -272 1056 160 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 1088 176 ) ( -272 1088 176 ) ( -272 1056 176 ) bricks/c_sr_m2c 0 0 0 2.000000 2.000000 +} +{ +( -384 1056 160 ) ( -384 1024 160 ) ( -384 1024 144 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 1024 144 ) ( -272 1024 160 ) ( -272 1056 160 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 1056 160 ) ( -384 1056 160 ) ( -384 1024 144 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 1024 160 ) ( -272 1024 160 ) ( -272 1024 144 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 1056 160 ) ( -272 1056 160 ) ( -272 1024 160 ) bricks/c_sr_m2c 0 0 0 2.000000 2.000000 +} +{ +( -384 1024 144 ) ( -384 992 144 ) ( -384 992 128 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 992 128 ) ( -272 992 144 ) ( -272 1024 144 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -272 1024 144 ) ( -384 1024 144 ) ( -384 992 128 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 992 144 ) ( -272 992 144 ) ( -272 992 128 ) bricks/c_pv_18a 0 0 0 1.000000 1.000000 +( -384 1024 144 ) ( -272 1024 144 ) ( -272 992 144 ) bricks/c_sr_m2c 0 0 0 2.000000 2.000000 +} +{ +( -432 1296 640 ) ( -368 1296 640 ) ( -368 1232 640 ) floors/rf_sr_m2 0 0 0 5.000000 5.000000 0 2097152 0 +( -432 1232 576 ) ( -368 1232 576 ) ( -368 1296 576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +( -432 1296 640 ) ( -432 1232 640 ) ( -432 1232 576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +( -368 1296 576 ) ( -368 1232 576 ) ( -368 1232 640 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +( -368 1296 640 ) ( -432 1296 640 ) ( -432 1296 576 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +( -368 1232 576 ) ( -432 1232 576 ) ( -432 1232 640 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +} +{ +( -432 1296 576 ) ( -368 1296 576 ) ( -368 1232 576 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -432 1232 256 ) ( -368 1232 256 ) ( -368 1296 256 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -432 1296 256 ) ( -432 1296 576 ) ( -432 1232 576 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -368 1232 256 ) ( -368 1232 576 ) ( -368 1296 576 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -368 1296 256 ) ( -368 1296 576 ) ( -432 1296 576 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -432 1232 256 ) ( -432 1232 576 ) ( -368 1232 576 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +} +{ +( 2456 3057 6408 ) ( 2456 -2198 6408 ) ( 2456 3057 -5880 ) metals/mt_sr_v16 32 16 0 1.000000 1.000000 0 8388608 0 +( 2816 -2198 6408 ) ( 2816 3057 6408 ) ( 2816 3057 -5880 ) bricks/b_sr_c05 0 256 0 1.000000 1.000000 +( -46720 704 6408 ) ( 27008 704 6408 ) ( -46720 704 -5880 ) bricks/b_sr_c05 0 256 0 1.000000 1.000000 +( 27008 840 6408 ) ( -46720 840 6408 ) ( -46720 840 -5880 ) metals/mt_sr_v16 32 16 0 1.000000 1.000000 0 8388608 0 +( 27008 -2198 768 ) ( 27008 3057 768 ) ( -46720 -2198 768 ) bricks/b_sr_22 0 8 0 1.000000 1.000000 +( 27008 3057 792 ) ( 27008 -2198 792 ) ( -46720 -2198 792 ) floors/rf_sr_m2 0 -3 0 2.000000 2.000000 0 2097152 0 +} +{ +( 2752 10331 6784 ) ( 2752 -10819 6784 ) ( 2752 10331 -6323 ) bricks/b_sr_20b 0 0 0 1.000000 1.000000 1 0 0 +( 2816 -10819 6784 ) ( 2816 10331 6784 ) ( 2816 10331 -6323 ) bricks/b_sr_20b 0 40 0 1.000000 1.000000 1 0 0 +( -8192 840 6784 ) ( 8192 840 6784 ) ( -8192 840 -6323 ) bricks/b_sr_20b 0 40 0 1.000000 1.000000 1 0 0 +( 8192 1408 6784 ) ( -8192 1408 6784 ) ( -8192 1408 -6323 ) bricks/b_sr_20b 0 40 0 1.000000 1.000000 1 0 0 +( 8192 -10819 672 ) ( 8192 10331 672 ) ( -8192 -10819 672 ) bricks/b_sr_20b 0 40 0 1.000000 1.000000 1 0 0 +( 8192 10331 768 ) ( 8192 -10819 768 ) ( -8192 -10819 768 ) bricks/b_sr_20b 0 40 0 1.000000 1.000000 1 0 0 +} +{ +( 2760 1216 672 ) ( 2816 1216 672 ) ( 2816 896 672 ) pvglass/pv_g10 0 0 0 1.000000 1.000000 +( 2760 896 544 ) ( 2816 896 544 ) ( 2816 1216 544 ) pvglass/pv_g10 0 0 0 1.000000 1.000000 +( 2760 1216 672 ) ( 2760 896 672 ) ( 2760 896 544 ) pvglass/pv_g10 0 32 0 1.000000 1.000000 0 1 500 +( 2816 1216 544 ) ( 2816 896 544 ) ( 2816 896 672 ) pvglass/pv_g10 0 0 0 1.000000 1.000000 +( 2816 1216 672 ) ( 2760 1216 672 ) ( 2760 1216 544 ) pvglass/pv_g10 0 0 0 1.000000 1.000000 +( 2816 896 544 ) ( 2760 896 544 ) ( 2760 896 672 ) pvglass/pv_g10 0 0 0 1.000000 1.000000 +} +{ +( -576 2240 8 ) ( -560 2240 8 ) ( -560 1984 8 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( -576 1984 0 ) ( -560 1984 0 ) ( -560 2240 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( -576 2240 8 ) ( -576 1984 8 ) ( -576 1984 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( -560 2240 0 ) ( -560 1984 0 ) ( -560 1984 8 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( -560 2240 8 ) ( -576 2240 8 ) ( -576 2240 0 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +( -560 1984 0 ) ( -576 1984 0 ) ( -576 1984 8 ) bricks/c_pv_m2 0 0 0 1.000000 1.000000 +} +{ +( 2456 840 672 ) ( 2624 840 672 ) ( 2624 704 672 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2456 704 552 ) ( 2624 704 552 ) ( 2624 840 552 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2456 840 672 ) ( 2456 704 672 ) ( 2456 704 552 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2624 840 552 ) ( 2624 704 552 ) ( 2624 704 672 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2624 840 672 ) ( 2456 840 672 ) ( 2456 840 552 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2624 704 552 ) ( 2456 704 552 ) ( 2456 704 672 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +} +{ +( 2736 840 672 ) ( 2752 840 672 ) ( 2752 384 672 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2736 384 552 ) ( 2752 384 552 ) ( 2752 840 552 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2736 840 672 ) ( 2736 384 672 ) ( 2736 384 552 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2752 840 552 ) ( 2752 384 552 ) ( 2752 384 672 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2752 840 672 ) ( 2736 840 672 ) ( 2736 840 552 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2752 384 552 ) ( 2736 384 552 ) ( 2736 384 672 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +} +{ +( 1536 1392 576 ) ( 2096 1392 576 ) ( 2096 1376 576 ) common/0_hint 0 0 0 1.000000 1.000000 0 256 0 +( 1536 1376 256 ) ( 2096 1376 256 ) ( 2096 1392 256 ) common/0_hint 0 0 0 1.000000 1.000000 0 256 0 +( 1536 1392 576 ) ( 1536 1376 576 ) ( 1536 1376 256 ) common/0_hint 0 0 0 1.000000 1.000000 0 256 0 +( 2096 1392 256 ) ( 2096 1376 256 ) ( 2096 1376 576 ) common/0_hint 0 0 0 1.000000 1.000000 0 256 0 +( 2096 1392 576 ) ( 1536 1392 576 ) ( 1536 1392 256 ) common/0_hint 0 0 0 1.000000 1.000000 0 256 0 +( 2096 1376 256 ) ( 1536 1376 256 ) ( 1536 1376 576 ) common/0_hint 0 0 0 1.000000 1.000000 0 256 0 +} +{ +( 1808 261 384 ) ( 1792 261 384 ) ( 1792 461 384 ) common/0_skip 0 13 0 1.000000 1.000000 0 640 0 +( 1808 461 256 ) ( 1792 461 256 ) ( 1792 261 256 ) common/0_skip 0 13 0 1.000000 1.000000 0 640 0 +( 1808 261 384 ) ( 1808 461 384 ) ( 1808 461 256 ) common/0_skip -13 0 0 1.000000 1.000000 0 640 0 +( 1792 261 256 ) ( 1792 461 256 ) ( 1792 461 384 ) common/0_hint -13 0 0 1.000000 1.000000 0 384 0 +( 1792 261 384 ) ( 1808 261 384 ) ( 1808 261 256 ) common/0_skip 0 0 0 1.000000 1.000000 0 640 0 +( 1792 461 256 ) ( 1808 461 256 ) ( 1808 461 384 ) common/0_skip 0 0 0 1.000000 1.000000 0 640 0 +} +{ +( 2168 352 384 ) ( 2184 352 384 ) ( 2184 152 384 ) common/0_skip 0 0 0 1.000000 1.000000 0 640 0 +( 2168 152 256 ) ( 2184 152 256 ) ( 2184 352 256 ) common/0_skip 0 0 0 1.000000 1.000000 0 640 0 +( 2168 352 384 ) ( 2168 152 384 ) ( 2168 152 256 ) common/0_skip 0 0 0 1.000000 1.000000 0 640 0 +( 2184 352 256 ) ( 2184 152 256 ) ( 2184 152 384 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 2184 352 384 ) ( 2168 352 384 ) ( 2168 352 256 ) common/0_skip 0 0 0 1.000000 1.000000 0 640 0 +( 2184 152 256 ) ( 2168 152 256 ) ( 2168 152 384 ) common/0_skip 0 0 0 1.000000 1.000000 0 640 0 +} +{ +( 2624 824 640 ) ( 2624 840 640 ) ( 2744 840 640 ) common/0_skip 0 0 0 1.000000 1.000000 0 640 0 +( 2744 824 488 ) ( 2744 840 488 ) ( 2624 840 488 ) common/0_skip 0 0 0 1.000000 1.000000 0 640 0 +( 2624 824 640 ) ( 2744 824 640 ) ( 2744 824 488 ) common/0_skip 0 0 0 1.000000 1.000000 0 640 0 +( 2624 840 488 ) ( 2744 840 488 ) ( 2744 840 640 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 2624 840 640 ) ( 2624 824 640 ) ( 2624 824 488 ) common/0_skip 0 0 0 1.000000 1.000000 0 640 0 +( 2744 840 488 ) ( 2744 824 488 ) ( 2744 824 640 ) common/0_skip 0 0 0 1.000000 1.000000 0 640 0 +} +{ +( 2201 384 688 ) ( 2185 384 688 ) ( 2185 480 688 ) common/0_skip 0 0 0 1.000000 1.000000 0 640 0 +( 2201 480 560 ) ( 2185 480 560 ) ( 2185 384 560 ) common/0_skip 0 0 0 1.000000 1.000000 0 640 0 +( 2201 384 688 ) ( 2201 480 688 ) ( 2201 480 560 ) common/0_skip 0 0 0 1.000000 1.000000 0 640 0 +( 2185 384 560 ) ( 2185 480 560 ) ( 2185 480 688 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 2185 384 688 ) ( 2201 384 688 ) ( 2201 384 560 ) common/0_skip 0 0 0 1.000000 1.000000 0 640 0 +( 2185 480 560 ) ( 2201 480 560 ) ( 2201 480 688 ) common/0_skip 0 0 0 1.000000 1.000000 0 640 0 +} +{ +( -1032 8192 8192 ) ( -1032 -8192 8192 ) ( -1032 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -1016 -8192 8192 ) ( -1016 8192 8192 ) ( -1016 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1144 8192 ) ( 8192 1144 8192 ) ( -8192 1144 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1160 8192 ) ( -8192 1160 8192 ) ( -8192 1160 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) common/li_sr_m19 8 8 0 1.000000 1.000000 1 1 15000 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( 2752 896 672 ) ( 2816 896 672 ) ( 2816 840 672 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2752 840 544 ) ( 2816 840 544 ) ( 2816 896 544 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2752 896 672 ) ( 2752 840 672 ) ( 2752 840 544 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2816 896 544 ) ( 2816 840 544 ) ( 2816 840 672 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2816 896 672 ) ( 2752 896 672 ) ( 2752 896 544 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2816 840 544 ) ( 2752 840 544 ) ( 2752 840 672 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +} +{ +( 2752 1280 672 ) ( 2816 1280 672 ) ( 2816 1216 672 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2752 1216 544 ) ( 2816 1216 544 ) ( 2816 1280 544 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2752 1280 672 ) ( 2752 1216 672 ) ( 2752 1216 544 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2816 1280 544 ) ( 2816 1216 544 ) ( 2816 1216 672 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2816 1280 672 ) ( 2752 1280 672 ) ( 2752 1280 544 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 2816 1216 544 ) ( 2752 1216 544 ) ( 2752 1216 672 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +} +{ +( 1344 544 560 ) ( 1632 544 560 ) ( 1632 352 560 ) floors/rf_sr_m2 -1 17 0 2.000000 2.000000 0 2097152 0 +( 1344 352 512 ) ( 1632 352 512 ) ( 1632 544 512 ) floors/rf_sr_m2 0 0 0 1.000000 1.000000 0 2097152 0 +( 1344 544 560 ) ( 1344 352 560 ) ( 1344 352 512 ) floors/rf_sr_m2 0 0 0 1.000000 1.000000 0 2097152 0 +( 1632 544 512 ) ( 1632 352 512 ) ( 1632 352 560 ) floors/rf_sr_m2 0 0 0 1.000000 1.000000 0 2097152 0 +( 1632 544 560 ) ( 1344 544 560 ) ( 1344 544 512 ) floors/rf_sr_m2 0 0 0 1.000000 1.000000 0 2097152 0 +( 1632 352 512 ) ( 1344 352 512 ) ( 1344 352 560 ) floors/rf_sr_m2 0 0 0 1.000000 1.000000 0 2097152 0 +} +{ +( -1544 1144 512 ) ( -1544 1144 514 ) ( -1544 1160 514 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 1144 514 ) ( -1544 1144 512 ) ( -1552 1144 507 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1552 1160 507 ) ( -1544 1160 512 ) ( -1544 1160 514 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 1160 512 ) ( -1552 1160 507 ) ( -1552 1144 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1544 1144 514 ) ( -1552 1144 507 ) ( -1552 1160 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( -1544 1144 514 ) ( -1544 1144 512 ) ( -1544 1136 507 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 1144 512 ) ( -1544 1144 514 ) ( -1552 1144 507 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1552 1144 507 ) ( -1544 1144 514 ) ( -1544 1136 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1544 1136 507 ) ( -1544 1144 512 ) ( -1552 1144 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( -1544 1144 512 ) ( -1544 1144 514 ) ( -1544 1136 507 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 1144 512 ) ( -1528 1136 507 ) ( -1528 1144 514 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 1144 514 ) ( -1544 1144 512 ) ( -1528 1144 512 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 1144 512 ) ( -1544 1136 507 ) ( -1528 1136 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1544 1136 507 ) ( -1544 1144 514 ) ( -1528 1144 514 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( -1528 1144 514 ) ( -1528 1136 507 ) ( -1528 1144 512 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1520 1144 507 ) ( -1528 1144 514 ) ( -1528 1144 512 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 1136 507 ) ( -1520 1144 507 ) ( -1528 1144 512 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1520 1144 507 ) ( -1528 1136 507 ) ( -1528 1144 514 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( -1544 1160 514 ) ( -1544 1168 507 ) ( -1544 1160 512 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 1160 512 ) ( -1552 1160 507 ) ( -1544 1160 514 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 1160 514 ) ( -1552 1160 507 ) ( -1544 1168 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1544 1160 512 ) ( -1544 1168 507 ) ( -1552 1160 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( -1544 1168 507 ) ( -1544 1160 514 ) ( -1544 1160 512 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 1160 514 ) ( -1528 1168 507 ) ( -1528 1160 512 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 1160 514 ) ( -1528 1160 512 ) ( -1544 1160 512 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 1168 507 ) ( -1544 1160 512 ) ( -1528 1160 512 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1544 1160 514 ) ( -1544 1168 507 ) ( -1528 1168 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( -1537 7936 8192 ) ( -1537 -8448 8192 ) ( -1537 7936 -8192 ) metals/mt_sr_v24 0 -24 0 1.000000 1.000000 1 8388608 0 +( -1535 -8448 8192 ) ( -1535 7936 8192 ) ( -1535 7936 -8192 ) metals/mt_sr_v24 0 -24 0 1.000000 1.000000 1 8388608 0 +( -8192 1151 8192 ) ( 8192 1151 8192 ) ( -8192 1151 -8192 ) metals/mt_sr_v24 -32 -24 0 1.000000 1.000000 1 8388608 0 +( 8192 1153 8192 ) ( -8192 1153 8192 ) ( -8192 1153 -8192 ) metals/mt_sr_v24 -32 -24 0 1.000000 1.000000 1 8388608 0 +( 8192 -8448 516 ) ( 8192 7936 516 ) ( -8192 -8448 516 ) metals/mt_sr_v24 -16 56 0 1.000000 1.000000 1 8388608 0 +( 8192 7936 574 ) ( 8192 -8448 574 ) ( -8192 -8448 574 ) metals/mt_sr_v24 -32 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -1528 1144 514 ) ( -1528 1144 512 ) ( -1528 1160 512 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 1144 512 ) ( -1528 1144 514 ) ( -1520 1144 507 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 1160 512 ) ( -1520 1160 507 ) ( -1528 1160 514 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1520 1160 507 ) ( -1528 1160 512 ) ( -1528 1144 512 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1520 1144 507 ) ( -1528 1144 514 ) ( -1528 1160 514 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( -1528 1160 512 ) ( -1528 1168 507 ) ( -1528 1160 514 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 1160 514 ) ( -1520 1160 507 ) ( -1528 1160 512 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 1160 514 ) ( -1528 1168 507 ) ( -1520 1160 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1528 1160 512 ) ( -1520 1160 507 ) ( -1528 1168 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( -1544 890 512 ) ( -1544 890 514 ) ( -1544 906 514 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 890 514 ) ( -1544 890 512 ) ( -1552 890 507 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1552 906 507 ) ( -1544 906 512 ) ( -1544 906 514 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 906 512 ) ( -1552 906 507 ) ( -1552 890 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1544 890 514 ) ( -1552 890 507 ) ( -1552 906 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( -1544 890 514 ) ( -1544 890 512 ) ( -1544 882 507 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 890 512 ) ( -1544 890 514 ) ( -1552 890 507 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1552 890 507 ) ( -1544 890 514 ) ( -1544 882 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1544 882 507 ) ( -1544 890 512 ) ( -1552 890 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( -1544 890 512 ) ( -1544 890 514 ) ( -1544 882 507 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 890 512 ) ( -1528 882 507 ) ( -1528 890 514 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 890 514 ) ( -1544 890 512 ) ( -1528 890 512 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 890 512 ) ( -1544 882 507 ) ( -1528 882 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1544 882 507 ) ( -1544 890 514 ) ( -1528 890 514 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( -1528 890 514 ) ( -1528 882 507 ) ( -1528 890 512 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1520 890 507 ) ( -1528 890 514 ) ( -1528 890 512 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 882 507 ) ( -1520 890 507 ) ( -1528 890 512 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1520 890 507 ) ( -1528 882 507 ) ( -1528 890 514 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( -1544 906 514 ) ( -1544 914 507 ) ( -1544 906 512 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 906 512 ) ( -1552 906 507 ) ( -1544 906 514 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 906 514 ) ( -1552 906 507 ) ( -1544 914 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1544 906 512 ) ( -1544 914 507 ) ( -1552 906 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( -1544 914 507 ) ( -1544 906 514 ) ( -1544 906 512 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 906 514 ) ( -1528 914 507 ) ( -1528 906 512 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 906 514 ) ( -1528 906 512 ) ( -1544 906 512 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 914 507 ) ( -1544 906 512 ) ( -1528 906 512 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1544 906 514 ) ( -1544 914 507 ) ( -1528 914 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( -1537 7682 8192 ) ( -1537 -8702 8192 ) ( -1537 7682 -8192 ) metals/mt_sr_v24 0 -24 0 1.000000 1.000000 1 8388608 0 +( -1535 -8702 8192 ) ( -1535 7682 8192 ) ( -1535 7682 -8192 ) metals/mt_sr_v24 0 -24 0 1.000000 1.000000 1 8388608 0 +( -8192 897 8192 ) ( 8192 897 8192 ) ( -8192 897 -8192 ) metals/mt_sr_v24 -32 -24 0 1.000000 1.000000 1 8388608 0 +( 8192 899 8192 ) ( -8192 899 8192 ) ( -8192 899 -8192 ) metals/mt_sr_v24 -32 -24 0 1.000000 1.000000 1 8388608 0 +( 8192 -8702 516 ) ( 8192 7682 516 ) ( -8192 -8702 516 ) metals/mt_sr_v24 -16 56 0 1.000000 1.000000 1 8388608 0 +( 8192 7682 574 ) ( 8192 -8702 574 ) ( -8192 -8702 574 ) metals/mt_sr_v24 -32 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -1528 890 514 ) ( -1528 890 512 ) ( -1528 906 512 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 890 512 ) ( -1528 890 514 ) ( -1520 890 507 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 906 512 ) ( -1520 906 507 ) ( -1528 906 514 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1520 906 507 ) ( -1528 906 512 ) ( -1528 890 512 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1520 890 507 ) ( -1528 890 514 ) ( -1528 906 514 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( -1528 906 512 ) ( -1528 914 507 ) ( -1528 906 514 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 906 514 ) ( -1520 906 507 ) ( -1528 906 512 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 906 514 ) ( -1528 914 507 ) ( -1520 906 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1528 906 512 ) ( -1520 906 507 ) ( -1528 914 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( 0 1736 576 ) ( 64 1736 576 ) ( 64 1733 576 ) props/w_sr_m6b 0 0 0 1.000000 1.000000 +( 0 1733 512 ) ( 64 1733 512 ) ( 64 1736 512 ) wood/wd_sy_m1b 0 0 90 2.000000 2.000000 +( 0 1736 576 ) ( 0 1733 576 ) ( 0 1733 512 ) props/w_sr_m6b 0 0 0 1.000000 1.000000 +( 64 1736 512 ) ( 64 1733 512 ) ( 64 1733 576 ) props/w_sr_m6b 0 0 0 1.000000 1.000000 +( 64 1736 576 ) ( 0 1736 576 ) ( 0 1736 512 ) props/w_sr_m6b 0 0 0 1.000000 1.000000 +( 64 1733 512 ) ( 0 1733 512 ) ( 0 1733 576 ) props/w_sr_m6b 0 0 0 1.000000 1.000000 +} +{ +( 0 1744 608 ) ( 0 1728 608 ) ( -64 1728 608 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 0 1728 416 ) ( 0 1744 416 ) ( -48 1744 416 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( -64 1728 608 ) ( -64 1728 416 ) ( -48 1744 416 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 0 1728 416 ) ( 0 1728 608 ) ( 0 1744 608 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( -48 1744 608 ) ( -48 1744 416 ) ( 0 1744 416 ) bricks/b_sr_v23a 0 64 0 10.000000 10.000000 +( -64 1728 416 ) ( -64 1728 608 ) ( 0 1728 608 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +} +{ +( 0 1744 608 ) ( 64 1744 608 ) ( 64 1728 608 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 0 1728 576 ) ( 64 1728 576 ) ( 64 1744 576 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 0 1744 608 ) ( 0 1728 608 ) ( 0 1728 576 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 64 1744 576 ) ( 64 1728 576 ) ( 64 1728 608 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 64 1744 608 ) ( 0 1744 608 ) ( 0 1744 576 ) bricks/b_sr_v23a 0 64 0 10.000000 10.000000 +( 64 1728 576 ) ( 0 1728 576 ) ( 0 1728 608 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +} +{ +( 0 1744 448 ) ( 64 1744 448 ) ( 64 1728 448 ) bricks/b_sr_22 0 0 0 1.000000 1.000000 +( 0 1728 416 ) ( 64 1728 416 ) ( 64 1744 416 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 0 1744 448 ) ( 0 1728 448 ) ( 0 1728 416 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 64 1744 416 ) ( 64 1728 416 ) ( 64 1728 448 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 64 1744 448 ) ( 0 1744 448 ) ( 0 1744 416 ) bricks/b_sr_v23a 0 64 0 10.000000 10.000000 +( 64 1728 416 ) ( 0 1728 416 ) ( 0 1728 448 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +} +{ +( 192 35664 8384 ) ( 192 -50352 8384 ) ( 192 35664 -8000 ) bricks/b_sr_v23a 0 64 0 2.000000 2.000000 +( 256 -50352 8384 ) ( 256 35664 8384 ) ( 256 35664 -8000 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 0 134217728 0 +( -8192 1728 8384 ) ( 8192 1728 8384 ) ( -8192 1728 -8000 ) wood/wd_st_m3 32 -36 0 1.500000 1.500000 0 134217728 0 +( 8192 2064 8384 ) ( -8192 2064 8384 ) ( -8192 2064 -8000 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 0 134217728 0 +( 8192 -50352 448 ) ( 8192 35664 448 ) ( -8192 -50352 448 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 0 134217728 0 +( 8192 35664 576 ) ( 8192 -50352 576 ) ( -8192 -50352 576 ) wood/wd_st_m3 12 0 0 1.000000 1.000000 0 134217728 0 +} +{ +( 192 2064 608 ) ( 256 2064 608 ) ( 256 1728 608 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 192 1728 576 ) ( 256 1728 576 ) ( 256 2064 576 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 192 2064 608 ) ( 192 1728 608 ) ( 192 1728 576 ) bricks/b_sr_v23a 0 64 0 2.000000 2.000000 +( 256 2064 576 ) ( 256 1728 576 ) ( 256 1728 608 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 256 2064 608 ) ( 192 2064 608 ) ( 192 2064 576 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 256 1728 576 ) ( 192 1728 576 ) ( 192 1728 608 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +} +{ +( -64 1744 416 ) ( 0 1744 416 ) ( 0 1728 416 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( -64 1728 288 ) ( 0 1728 288 ) ( 0 1744 288 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( -64 1744 416 ) ( -64 1728 416 ) ( -64 1728 288 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 0 1744 288 ) ( 0 1728 288 ) ( 0 1728 416 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 0 1744 416 ) ( -64 1744 416 ) ( -64 1744 288 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 0 1728 288 ) ( -64 1728 288 ) ( -64 1728 416 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +} +{ +( -48 2064 608 ) ( 320 2064 608 ) ( 320 2048 608 ) bricks/b_sr_c06 0 0 0 1.000000 1.000000 +( -48 2048 384 ) ( 320 2048 384 ) ( 320 2064 384 ) bricks/b_sr_c06 0 0 0 1.000000 1.000000 +( -48 2064 608 ) ( -48 2048 608 ) ( -48 2048 384 ) bricks/b_sr_c06 0 0 0 1.000000 1.000000 +( 320 2064 384 ) ( 320 2048 384 ) ( 320 2048 608 ) bricks/b_sr_c06 0 0 0 1.000000 1.000000 +( 320 2064 608 ) ( -48 2064 608 ) ( -48 2064 384 ) bricks/b_sr_c06 0 0 0 1.000000 1.000000 +( 320 2048 384 ) ( -48 2048 384 ) ( -48 2048 608 ) bricks/b_sr_v23a 0 64 0 2.000000 2.000000 +} +{ +( 0 1744 576 ) ( 64 1744 576 ) ( 64 1736 576 ) props/w_sr_m6b 0 0 0 1.000000 1.000000 +( 0 1736 496 ) ( 64 1736 496 ) ( 64 1744 496 ) wood/wd_sy_m1b 0 0 90 2.000000 2.000000 +( 0 1744 576 ) ( 0 1736 576 ) ( 0 1736 496 ) props/w_sr_m6b 0 0 0 1.000000 1.000000 +( 64 1744 496 ) ( 64 1736 496 ) ( 64 1736 576 ) props/w_sr_m6b 0 0 0 1.000000 1.000000 +( 64 1744 576 ) ( 0 1744 576 ) ( 0 1744 496 ) props/w_sr_m6b 0 0 0 10.000000 10.000000 +( 64 1736 496 ) ( 0 1736 496 ) ( 0 1736 576 ) props/w_sr_m6b 0 -16 0 1.000000 1.000000 +} +{ +( -832 704 768 ) ( -416 704 768 ) ( -416 608 768 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -832 608 640 ) ( -416 608 640 ) ( -416 704 640 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -832 704 768 ) ( -832 608 768 ) ( -832 608 640 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -416 704 640 ) ( -416 608 640 ) ( -416 608 768 ) bricks/b_mf_v2 -151 0 0 1.000000 1.000000 +( -416 704 768 ) ( -832 704 768 ) ( -832 704 640 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -416 608 640 ) ( -832 608 640 ) ( -832 608 768 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +} +{ +( -832 1152 768 ) ( -416 1152 768 ) ( -416 704 768 ) bricks/b_sr_c17 0 0 0 1.000000 1.000000 +( -832 704 640 ) ( -416 704 640 ) ( -416 1152 640 ) bricks/b_sr_c17 0 0 0 1.000000 1.000000 +( -832 1152 768 ) ( -832 704 768 ) ( -832 704 640 ) bricks/b_sr_c17 0 0 0 1.000000 1.000000 +( -416 1152 640 ) ( -416 704 640 ) ( -416 704 768 ) props2/blanco_sign3 -151 0 0 1.000000 1.000000 +( -416 1152 768 ) ( -832 1152 768 ) ( -832 1152 640 ) bricks/b_sr_c17 0 0 0 1.000000 1.000000 +( -416 704 640 ) ( -832 704 640 ) ( -832 704 768 ) bricks/b_sr_c17 0 0 0 1.000000 1.000000 +} +{ +( -832 1248 832 ) ( -416 1248 832 ) ( -416 608 832 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -832 608 768 ) ( -416 608 768 ) ( -416 1248 768 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -832 1248 832 ) ( -832 608 832 ) ( -832 608 768 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -416 1248 768 ) ( -416 608 768 ) ( -416 608 832 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -416 1248 832 ) ( -832 1248 832 ) ( -832 1248 768 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -416 608 768 ) ( -832 608 768 ) ( -832 608 832 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +} +{ +( -832 1504 832 ) ( -544 1504 832 ) ( -544 1248 832 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -832 1248 640 ) ( -544 1248 640 ) ( -544 1504 640 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -832 1504 832 ) ( -832 1248 832 ) ( -832 1248 640 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -544 1504 640 ) ( -544 1248 640 ) ( -544 1248 832 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -544 1504 832 ) ( -832 1504 832 ) ( -832 1504 640 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -544 1248 640 ) ( -832 1248 640 ) ( -832 1248 832 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +} +{ +( -832 9552 8064 ) ( -832 -9562 8064 ) ( -832 9552 -8320 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( -400 -9562 8064 ) ( -400 9552 8064 ) ( -400 9552 -8320 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( -7929 592 8064 ) ( 7870 592 8064 ) ( -7929 592 -8320 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 7870 1264 8064 ) ( -7929 1264 8064 ) ( -7929 1264 -8320 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 1 8388608 0 +( 7870 -9562 832 ) ( 7870 9552 832 ) ( -7929 -9562 832 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 0 0 +( 7870 9552 896 ) ( 7870 -9562 896 ) ( -7929 -9562 896 ) floors/rf_sr_m2 0 0 0 5.000000 5.000000 1 0 0 +} +{ +( -448 640 832 ) ( -400 640 832 ) ( -400 592 832 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -448 592 640 ) ( -400 592 640 ) ( -400 640 640 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -448 640 832 ) ( -448 592 832 ) ( -448 592 640 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -400 640 640 ) ( -400 592 640 ) ( -400 592 832 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -400 640 832 ) ( -448 640 832 ) ( -448 640 640 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -400 592 640 ) ( -448 592 640 ) ( -448 592 832 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +} +{ +( -448 1264 832 ) ( -400 1264 832 ) ( -400 1216 832 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -448 1216 640 ) ( -400 1216 640 ) ( -400 1264 640 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -448 1264 832 ) ( -448 1216 832 ) ( -448 1216 640 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -400 1264 640 ) ( -400 1216 640 ) ( -400 1216 832 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -400 1264 832 ) ( -448 1264 832 ) ( -448 1264 640 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -400 1216 640 ) ( -448 1216 640 ) ( -448 1216 832 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +} +{ +( -832 1664 896 ) ( -512 1664 896 ) ( -512 1248 896 ) floors/rf_sr_m2 0 0 0 5.000000 5.000000 0 2097152 0 +( -832 1248 832 ) ( -512 1248 832 ) ( -512 1664 832 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 0 8388608 0 +( -832 1664 896 ) ( -832 1248 896 ) ( -832 1248 832 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +( -512 1664 832 ) ( -512 1248 832 ) ( -512 1248 896 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +( -512 1664 896 ) ( -832 1664 896 ) ( -832 1664 832 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +( -512 1248 832 ) ( -832 1248 832 ) ( -832 1248 896 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +} +{ +( 320 1024 480 ) ( 336 1024 480 ) ( 336 960 480 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( 320 960 288 ) ( 336 960 288 ) ( 336 1024 288 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( 320 1024 480 ) ( 320 960 480 ) ( 320 960 288 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( 336 1024 288 ) ( 336 960 288 ) ( 336 960 480 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( 336 1024 480 ) ( 320 1024 480 ) ( 320 1024 288 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( 336 960 288 ) ( 320 960 288 ) ( 320 960 480 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +} +{ +( 320 832 480 ) ( 336 832 480 ) ( 336 768 480 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( 320 768 320 ) ( 336 768 320 ) ( 336 832 320 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( 320 832 480 ) ( 320 768 480 ) ( 320 768 320 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( 336 832 320 ) ( 336 768 320 ) ( 336 768 480 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( 336 832 480 ) ( 320 832 480 ) ( 320 832 320 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( 336 768 320 ) ( 320 768 320 ) ( 320 768 480 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +} +{ +( 320 7488 8288 ) ( 320 -8896 8288 ) ( 320 7488 -8096 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 336 -8896 8288 ) ( 336 7488 8288 ) ( 336 7488 -8096 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( -8704 640 8288 ) ( 7680 640 8288 ) ( -8704 640 -8096 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 7680 768 8288 ) ( -8704 768 8288 ) ( -8704 768 -8096 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 7680 -8896 352 ) ( 7680 7488 352 ) ( -8704 -8896 352 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 7680 7488 480 ) ( 7680 -8896 480 ) ( -8704 -8896 480 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +} +{ +( 6368 6016 560 ) ( 6368 -6272 560 ) ( -5920 6016 560 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 6368 -6272 544 ) ( 6368 6016 544 ) ( -5920 6016 544 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 6368 880 9584 ) ( 6368 880 -6800 ) ( -5920 880 9584 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 6368 976 -6800 ) ( 6368 976 9584 ) ( -5920 976 9584 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 416 -6272 -6800 ) ( 416 6016 -6800 ) ( 416 -6272 9584 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 512 6016 -6800 ) ( 512 -6272 -6800 ) ( 512 -6272 9584 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +} +{ +( -448 2160 240 ) ( -448 2160 256 ) ( -448 1792 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( -320 1664 240 ) ( -320 1664 256 ) ( -320 2160 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( -448 1792 240 ) ( -320 1664 240 ) ( -320 2160 240 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( -448 2160 256 ) ( -320 2160 256 ) ( -320 1664 256 ) bricks/c_sr_m2c -7 64 90 1.000000 1.000000 1 67108864 0 +( -320 1664 240 ) ( -448 1792 240 ) ( -448 1792 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +( -448 2160 240 ) ( -320 2160 240 ) ( -320 2160 256 ) bricks/s_sr_m12ab 0 -128 0 2.000000 2.000000 1 0 0 +} +{ +( -1016 8192 8192 ) ( -1016 -8192 8192 ) ( -1016 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -648 -8192 8192 ) ( -648 8192 8192 ) ( -648 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1664 8192 ) ( 8192 1664 8192 ) ( -8192 1664 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1792 8192 ) ( -8192 1792 8192 ) ( -8192 1792 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -448 2176 384 ) ( -304 2176 384 ) ( -304 2176 640 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -304 1984 384 ) ( -448 1984 384 ) ( -448 1984 640 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -448 1984 384 ) ( -448 2176 384 ) ( -448 2176 640 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -304 2176 384 ) ( -304 1984 384 ) ( -304 1984 640 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -448 2176 384 ) ( -448 1984 384 ) ( -304 1984 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -448 1984 640 ) ( -448 2176 640 ) ( -304 2176 640 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( 6080 1736 8192 ) ( -10304 1736 8192 ) ( 6080 1736 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -10304 1720 8192 ) ( 6080 1720 8192 ) ( 6080 1720 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -448 9280 8192 ) ( -448 -7104 8192 ) ( -448 9280 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -392 -7104 8192 ) ( -392 9280 8192 ) ( -392 9280 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -10304 -7104 384 ) ( 6080 -7104 384 ) ( -10304 9280 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 6080 -7104 400 ) ( -10304 -7104 400 ) ( -10304 9280 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( 6080 1736 8192 ) ( -10304 1736 8192 ) ( 6080 1736 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -10304 1720 8192 ) ( 6080 1720 8192 ) ( 6080 1720 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -376 9280 8192 ) ( -376 -7104 8192 ) ( -376 9280 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -320 -7104 8192 ) ( -320 9280 8192 ) ( -320 9280 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -10304 -7104 384 ) ( 6080 -7104 384 ) ( -10304 9280 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 6080 -7104 400 ) ( -10304 -7104 400 ) ( -10304 9280 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( 6080 1736 8192 ) ( -10304 1736 8192 ) ( 6080 1736 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -10304 1720 8192 ) ( 6080 1720 8192 ) ( 6080 1720 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -392 9280 8192 ) ( -392 -7104 8192 ) ( -392 9280 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -376 -7104 8192 ) ( -376 9280 8192 ) ( -376 9280 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -10304 -7104 384 ) ( 6080 -7104 384 ) ( -10304 9280 384 ) common/li_sr_m19 8 8 0 1.000000 1.000000 1 1 18000 +( 6080 -7104 400 ) ( -10304 -7104 400 ) ( -10304 9280 400 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -448 1720 400 ) ( -320 1720 400 ) ( -320 1664 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 0 8388608 0 +( -448 1664 384 ) ( -320 1664 384 ) ( -320 1720 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 0 8388608 0 +( -448 1720 400 ) ( -448 1664 400 ) ( -448 1664 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 0 8388608 0 +( -320 1720 384 ) ( -320 1664 384 ) ( -320 1664 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 0 8388608 0 +( -320 1720 400 ) ( -448 1720 400 ) ( -448 1720 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 0 8388608 0 +( -320 1664 384 ) ( -448 1664 384 ) ( -448 1664 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 0 8388608 0 +} +{ +( 12100 -8448 704 ) ( 12100 7936 704 ) ( -8892 7936 704 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 12100 1280 15660 ) ( 12100 1280 -9122 ) ( -8892 1280 15660 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 12100 1296 -9122 ) ( 12100 1296 15660 ) ( -8892 1296 15660 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 2096 -8448 -9122 ) ( 2096 7936 -9122 ) ( 2096 -8448 15660 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 2752 7936 -9122 ) ( 2752 -8448 -9122 ) ( 2752 -8448 15660 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 12100 6130 11720 ) ( 12100 -2957 -8898 ) ( -8892 -2957 -8898 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +} +{ +( -7648 -2124 704 ) ( 8736 -2124 704 ) ( 8736 5556 704 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 2080 -2124 15660 ) ( 2080 -2124 -9122 ) ( 2080 5556 15660 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 2096 -2124 -9122 ) ( 2096 -2124 15660 ) ( 2096 5556 15660 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( -7648 1536 -9122 ) ( 8736 1536 -9122 ) ( -7648 1536 15660 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 8736 1296 -9122 ) ( -7648 1296 -9122 ) ( -7648 1296 15660 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 6930 -2124 11720 ) ( -2157 -2124 -8898 ) ( -2157 5556 -8898 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +} +{ +( 0 8120 8320 ) ( 0 -8264 8320 ) ( 0 8120 -8064 ) metals/mt_mf_v1c 0 0 0 4.000000 4.000000 1 8390656 0 +( 256 -8264 8320 ) ( 256 8120 8320 ) ( 256 8120 -8064 ) metals/mt_mf_v1c 0 0 0 4.000000 4.000000 1 8390656 0 +( -8192 1784 8320 ) ( 8192 1784 8320 ) ( -8192 1784 -8064 ) props/sg_sr_2a 0 32 0 2.000000 2.000000 1 0 0 +( 8192 1792 8320 ) ( -8192 1792 8320 ) ( -8192 1792 -8064 ) metals/mt_mf_v1c 0 0 0 4.000000 4.000000 1 8390656 0 +( 8192 -8264 704 ) ( 8192 8120 704 ) ( -8192 -8264 704 ) metals/mt_pv_m16bc 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 8120 832 ) ( 8192 -8264 832 ) ( -8192 -8264 832 ) metals/mt_mf_v1c 0 0 0 4.000000 4.000000 1 8390656 0 +} +{ +( 0 8120 8320 ) ( 0 -8264 8320 ) ( 0 8120 -8064 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( 256 -8264 8320 ) ( 256 8120 8320 ) ( 256 8120 -8064 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( -8192 1752 8320 ) ( 8192 1752 8320 ) ( -8192 1752 -8064 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 1 8390656 0 +( 8192 1792 8320 ) ( -8192 1792 8320 ) ( -8192 1792 -8064 ) metals/mt_mf_v1c 0 0 0 4.000000 4.000000 1 8390656 0 +( 8192 -8264 696 ) ( 8192 8120 696 ) ( -8192 -8264 696 ) metals/mt_mf_v1c 0 0 0 4.000000 4.000000 1 8390656 0 +( 8192 8120 704 ) ( 8192 -8264 704 ) ( -8192 -8264 704 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( 256 8120 4453 ) ( 256 -8264 4453 ) ( 256 8120 -3612 ) metals/mt_mf_v1c 0 0 0 4.000000 4.000000 1 8390656 0 +( 264 -8264 4453 ) ( 264 8120 4453 ) ( 264 8120 -3612 ) metals/mt_mf_v1c 0 0 0 4.000000 4.000000 1 8390656 0 +( -8192 1776 4453 ) ( 8192 1776 4453 ) ( -8192 1776 -3612 ) metals/mt_mf_v1c 1 0 0 4.000000 4.000000 1 8390656 0 +( 8192 1784 4453 ) ( -8192 1784 4453 ) ( -8192 1784 -3612 ) metals/mt_mf_v1c 1 0 0 4.000000 4.000000 1 8390656 0 +( 8192 -8264 641 ) ( 8192 8120 641 ) ( -8192 -8264 641 ) metals/mt_mf_v1c 1 0 0 4.000000 4.000000 1 8390656 0 +( 8192 8120 704 ) ( 8192 -8264 704 ) ( -8192 -8264 704 ) metals/mt_mf_v1c 1 0 0 4.000000 4.000000 1 8390656 0 +} +{ +( -8 8120 4453 ) ( -8 -8264 4453 ) ( -8 8120 -3612 ) metals/mt_mf_v1c 0 0 0 4.000000 4.000000 1 8390656 0 +( 0 -8264 4453 ) ( 0 8120 4453 ) ( 0 8120 -3612 ) metals/mt_mf_v1c 0 0 0 4.000000 4.000000 1 8390656 0 +( -8192 1776 4453 ) ( 8192 1776 4453 ) ( -8192 1776 -3612 ) metals/mt_mf_v1c -1 0 0 4.000000 4.000000 1 8390656 0 +( 8192 1784 4453 ) ( -8192 1784 4453 ) ( -8192 1784 -3612 ) metals/mt_mf_v1c -1 0 0 4.000000 4.000000 1 8390656 0 +( 8192 -8264 641 ) ( 8192 8120 641 ) ( -8192 -8264 641 ) metals/mt_mf_v1c -1 0 0 4.000000 4.000000 1 8390656 0 +( 8192 8120 704 ) ( 8192 -8264 704 ) ( -8192 -8264 704 ) metals/mt_mf_v1c -1 0 0 4.000000 4.000000 1 8390656 0 +} +{ +( -6452 972 21505 ) ( 9932 972 21505 ) ( -6452 972 -23178 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( 9932 976 21505 ) ( -6452 976 21505 ) ( -6452 976 -23178 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 472 -9648 21505 ) ( 472 6736 21505 ) ( 472 -9648 -23178 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( 468 6736 21505 ) ( 468 -9648 21505 ) ( 468 -9648 -23178 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( 9932 6736 320 ) ( -6452 6736 320 ) ( 9932 -9648 320 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( -6452 6736 560 ) ( 9932 6736 560 ) ( 9932 -9648 560 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( -6452 972 21505 ) ( 9932 972 21505 ) ( -6452 972 -23178 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( 9932 976 21505 ) ( -6452 976 21505 ) ( -6452 976 -23178 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 500 -9648 21505 ) ( 500 6736 21505 ) ( 500 -9648 -23178 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( 496 6736 21505 ) ( 496 -9648 21505 ) ( 496 -9648 -23178 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( 9932 6736 320 ) ( -6452 6736 320 ) ( 9932 -9648 320 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( -6452 6736 560 ) ( 9932 6736 560 ) ( 9932 -9648 560 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 472 974 560 ) ( 496 974 560 ) ( 496 970 560 ) metals/m_mf_v2 0 0 0 1.000000 1.000000 536936448 128 0 +( 472 970 320 ) ( 496 970 320 ) ( 496 974 320 ) metals/m_mf_v2 0 0 0 1.000000 1.000000 536936448 128 0 +( 472 974 560 ) ( 472 970 560 ) ( 472 970 320 ) metals/m_mf_v2 0 0 0 1.000000 1.000000 536936448 128 0 +( 496 974 320 ) ( 496 970 320 ) ( 496 970 560 ) metals/m_mf_v2 0 0 0 1.000000 1.000000 536936448 128 0 +( 496 974 560 ) ( 472 974 560 ) ( 472 974 320 ) metals/m_mf_v2 0 0 0 1.000000 1.000000 536936448 128 0 +( 496 970 320 ) ( 472 970 320 ) ( 472 970 560 ) metals/m_mf_v2 0 0 0 1.000000 1.000000 536936448 128 0 +} +{ +( 1652 11008 1024 ) ( 1652 -5376 1024 ) ( -2956 -5376 1024 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 1652 1280 -73920 ) ( 1652 1280 50262 ) ( -2956 1280 -73920 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 1652 1264 50262 ) ( 1652 1264 -73920 ) ( -2956 1264 -73920 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( -544 11008 50262 ) ( -544 -5376 50262 ) ( -544 11008 -73920 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( -400 -5376 50262 ) ( -400 11008 50262 ) ( -400 11008 -73920 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 1652 -3570 -54177 ) ( 1652 5517 49139 ) ( -2956 5517 49139 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +} +{ +( 9344 -8984 1024 ) ( -7040 -8984 1024 ) ( -7040 12520 1024 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( -384 -8984 -73883 ) ( -384 -8984 50238 ) ( -384 12520 -73883 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( -400 -8984 50238 ) ( -400 -8984 -73883 ) ( -400 12520 -73883 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 9344 1264 50238 ) ( -7040 1264 50238 ) ( 9344 1264 -73883 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( -7040 592 50238 ) ( 9344 592 50238 ) ( 9344 592 -73883 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( -5234 -8984 -54150 ) ( 3853 -8984 49115 ) ( 3853 12520 49115 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +} +{ +( -30496 1536 14880 ) ( 43232 1536 14880 ) ( -30496 1536 -15840 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 43232 1552 14880 ) ( -30496 1552 14880 ) ( -30496 1552 -15840 ) common/0_hint 0 0 0 1.000000 1.000000 0 384 0 +( 320 -7488 14880 ) ( 320 8896 14880 ) ( 320 -7488 -15840 ) common/0_hint 32 0 0 1.000000 1.000000 0 384 0 +( -256 8896 14880 ) ( -256 -7488 14880 ) ( -256 -7488 -15840 ) common/0_hint 32 0 0 1.000000 1.000000 0 384 0 +( 43232 8896 0 ) ( -30496 8896 0 ) ( 43232 -7488 0 ) common/0_hint 0 -32 0 1.000000 1.000000 0 384 0 +( -30496 8896 240 ) ( 43232 8896 240 ) ( 43232 -7488 240 ) common/0_hint 0 -32 0 1.000000 1.000000 0 384 0 +} +{ +( -1544 1144 514 ) ( -1544 1144 512 ) ( -1544 1160 512 ) metals/mt_pv_m16bc -16 -24 0 1.000000 1.000000 1 8390656 0 +( -1528 1160 514 ) ( -1528 1160 512 ) ( -1528 1144 512 ) metals/mt_pv_m16bc -16 -24 0 1.000000 1.000000 1 8390656 0 +( -1528 1144 514 ) ( -1528 1144 512 ) ( -1544 1144 512 ) metals/mt_pv_m16bc -16 -24 0 1.000000 1.000000 1 8390656 0 +( -1544 1160 514 ) ( -1544 1160 512 ) ( -1528 1160 512 ) metals/mt_pv_m16bc -16 -24 0 1.000000 1.000000 1 8390656 0 +( -1544 1160 512 ) ( -1544 1144 512 ) ( -1528 1144 512 ) common/li_sr_m19a -8 8 0 1.000000 1.000000 1 1 15000 +( -1544 1144 514 ) ( -1544 1160 514 ) ( -1528 1160 514 ) metals/mt_sr_v24 -32 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -1544 890 514 ) ( -1544 890 512 ) ( -1544 906 512 ) metals/mt_pv_m16bc -16 -24 0 1.000000 1.000000 1 8390656 0 +( -1528 906 514 ) ( -1528 906 512 ) ( -1528 890 512 ) metals/mt_pv_m16bc -16 -24 0 1.000000 1.000000 1 8390656 0 +( -1528 890 514 ) ( -1528 890 512 ) ( -1544 890 512 ) metals/mt_pv_m16bc -16 -24 0 1.000000 1.000000 1 8390656 0 +( -1544 906 514 ) ( -1544 906 512 ) ( -1528 906 512 ) metals/mt_pv_m16bc -16 -24 0 1.000000 1.000000 1 8390656 0 +( -1544 906 512 ) ( -1544 890 512 ) ( -1528 890 512 ) common/li_sr_m19a -8 8 0 1.000000 1.000000 1 1 15000 +( -1544 890 514 ) ( -1544 906 514 ) ( -1528 906 514 ) metals/mt_sr_v24 -32 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -6992 7916 1023 ) ( 9392 7916 1023 ) ( 9392 -6932 1023 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 2736 7916 -70978 ) ( 2736 7916 48327 ) ( 2736 -6932 -70978 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 2752 7916 48327 ) ( 2752 7916 -70978 ) ( 2752 -6932 -70978 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( -6992 840 48327 ) ( 9392 840 48327 ) ( -6992 840 -70978 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 9392 1304 48327 ) ( -6992 1304 48327 ) ( -6992 1304 -70978 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 7586 7916 -52011 ) ( -1501 7916 47248 ) ( -1501 -6932 47248 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +} +{ +( 2304 8144 8192 ) ( 2304 -8240 8192 ) ( 2304 8144 -8192 ) props/box_sr_m6 -16 0 0 1.000000 1.000000 1 134217728 0 +( 2368 -8240 8192 ) ( 2368 8144 8192 ) ( 2368 8144 -8192 ) props/box_sr_m6 0 0 0 1.000000 1.000000 1 134217728 0 +( -2624 1168 8192 ) ( 5568 1168 8192 ) ( -2624 1168 -8192 ) props/box_sr_m6 0 0 0 1.000000 1.000000 1 134217728 0 +( 5568 1232 8192 ) ( -2624 1232 8192 ) ( -2624 1232 -8192 ) props/box_sr_m6 0 0 0 1.000000 1.000000 1 134217728 0 +( 5568 -8240 256 ) ( 5568 8144 256 ) ( -2624 -8240 256 ) props/box_sr_m6 0 0 0 1.000000 1.000000 1 134217728 0 +( 5568 8144 320 ) ( 5568 -8240 320 ) ( -2624 -8240 320 ) props/box_sr_m5 0 16 0 1.000000 1.000000 1 134217728 0 +} +{ +( -448 2176 256 ) ( -320 2176 256 ) ( -320 2160 256 ) metals/mt_pv_m16k 0 0 90 1.000000 1.000000 0 8390656 0 +( -448 2160 240 ) ( -320 2160 240 ) ( -320 2176 240 ) metals/mt_pv_m16k 0 0 90 1.000000 1.000000 0 8390656 0 +( -448 2176 256 ) ( -448 2160 256 ) ( -448 2160 240 ) metals/mt_pv_m16k 0 0 90 1.000000 1.000000 0 8390656 0 +( -320 2176 240 ) ( -320 2160 240 ) ( -320 2160 256 ) metals/mt_pv_m16k 0 0 90 1.000000 1.000000 0 8390656 0 +( -320 2176 256 ) ( -448 2176 256 ) ( -448 2176 240 ) metals/mt_pv_m16k 0 0 90 1.000000 1.000000 0 8390656 0 +( -320 2160 240 ) ( -448 2160 240 ) ( -448 2160 256 ) metals/mt_pv_m16k 0 0 90 1.000000 1.000000 0 8390656 0 +} +{ +( -512 2751 8192 ) ( -512 2378 8192 ) ( -512 2751 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -448 2378 8192 ) ( -448 2751 8192 ) ( -448 2751 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 2608 8192 ) ( 8192 2608 8192 ) ( -8192 2608 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 2624 8192 ) ( -8192 2624 8192 ) ( -8192 2624 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 2378 224 ) ( 8192 2751 224 ) ( -8192 2378 224 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 2751 640 ) ( 8192 2378 640 ) ( -8192 2378 640 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -512 2608 256 ) ( -448 2608 256 ) ( -448 2480 256 ) bricks/c_sr_m9c -16 0 270 1.000000 1.000000 +( -512 2480 224 ) ( -448 2480 224 ) ( -448 2608 224 ) bricks/c_sr_mb1v 0 0 0 1.000000 1.000000 +( -512 2608 256 ) ( -512 2480 256 ) ( -512 2480 224 ) bricks/c_sr_mb1v 0 0 0 1.000000 1.000000 +( -448 2608 224 ) ( -448 2480 224 ) ( -448 2480 256 ) bricks/c_sr_mb1v 0 0 0 1.000000 1.000000 +( -448 2608 256 ) ( -512 2608 256 ) ( -512 2608 224 ) bricks/c_sr_mb1v 0 0 0 1.000000 1.000000 +( -448 2480 224 ) ( -512 2480 224 ) ( -512 2480 256 ) bricks/c_sr_mb1v 0 0 0 1.000000 1.000000 +} +{ +( -448 2624 608 ) ( -48 2624 608 ) ( -48 2176 608 ) metals/mt_sr_v12 0 0 0 2.000000 2.000000 0 8388608 0 +( -448 2176 544 ) ( -48 2176 544 ) ( -48 2624 544 ) metals/mt_sr_v12 0 0 0 2.000000 2.000000 0 8388608 0 +( -448 2624 608 ) ( -448 2176 608 ) ( -448 2176 544 ) metals/mt_sr_v12 0 0 0 2.000000 2.000000 0 8388608 0 +( -48 2624 544 ) ( -48 2176 544 ) ( -48 2176 608 ) metals/mt_sr_v12 0 0 0 2.000000 2.000000 0 8388608 0 +( -48 2624 608 ) ( -448 2624 608 ) ( -448 2624 544 ) metals/mt_sr_v12 0 0 0 2.000000 2.000000 0 8388608 0 +( -48 2176 544 ) ( -448 2176 544 ) ( -448 2176 608 ) metals/mt_sr_v12 0 0 0 2.000000 2.000000 0 8388608 0 +} +{ +( -512 2608 608 ) ( -448 2608 608 ) ( -448 2480 608 ) metals/mt_sr_v12 0 0 0 2.000000 2.000000 0 8388608 0 +( -512 2480 544 ) ( -448 2480 544 ) ( -448 2608 544 ) metals/mt_sr_v12 0 0 0 2.000000 2.000000 0 8388608 0 +( -512 2608 608 ) ( -512 2480 608 ) ( -512 2480 544 ) metals/mt_sr_v12 0 0 0 2.000000 2.000000 0 8388608 0 +( -448 2608 544 ) ( -448 2480 544 ) ( -448 2480 608 ) metals/mt_sr_v12 0 0 0 2.000000 2.000000 0 8388608 0 +( -448 2608 608 ) ( -512 2608 608 ) ( -512 2608 544 ) metals/mt_sr_v12 0 0 0 2.000000 2.000000 0 8388608 0 +( -448 2480 544 ) ( -512 2480 544 ) ( -512 2480 608 ) metals/mt_sr_v12 0 0 0 2.000000 2.000000 0 8388608 0 +} +{ +( -64 11206 1803 ) ( -64 -12938 1803 ) ( -64 11206 -928 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( -48 -12938 1803 ) ( -48 11206 1803 ) ( -48 11206 -928 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( -268 2176 1803 ) ( 143 2176 1803 ) ( -268 2176 -928 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( 143 2624 1803 ) ( -268 2624 1803 ) ( -268 2624 -928 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +( 143 -12938 512 ) ( 143 11206 512 ) ( -268 -12938 512 ) bricks/b_mf_v2 128 32 90 1.000000 1.000000 1 0 0 +( 143 11206 544 ) ( 143 -12938 544 ) ( -268 -12938 544 ) bricks/b_mf_v2 128 32 0 1.000000 1.000000 1 0 0 +} +{ +( -64 2624 512 ) ( -48 2624 512 ) ( -48 2560 512 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -64 2560 448 ) ( -48 2560 448 ) ( -48 2624 448 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -64 2624 512 ) ( -64 2560 512 ) ( -64 2560 448 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -48 2624 448 ) ( -48 2560 448 ) ( -48 2560 512 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -48 2624 512 ) ( -64 2624 512 ) ( -64 2624 448 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -48 2560 448 ) ( -64 2560 448 ) ( -64 2560 512 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +} +{ +( -64 2240 512 ) ( -48 2240 512 ) ( -48 2176 512 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -64 2176 448 ) ( -48 2176 448 ) ( -48 2240 448 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -64 2240 512 ) ( -64 2176 512 ) ( -64 2176 448 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -48 2240 448 ) ( -48 2176 448 ) ( -48 2176 512 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -48 2240 512 ) ( -64 2240 512 ) ( -64 2240 448 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -48 2176 448 ) ( -64 2176 448 ) ( -64 2176 512 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +} +{ +( -64 2432 512 ) ( -48 2432 512 ) ( -48 2368 512 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -64 2368 448 ) ( -48 2368 448 ) ( -48 2432 448 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -64 2432 512 ) ( -64 2368 512 ) ( -64 2368 448 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -48 2432 448 ) ( -48 2368 448 ) ( -48 2368 512 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -48 2432 512 ) ( -64 2432 512 ) ( -64 2432 448 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -48 2368 448 ) ( -64 2368 448 ) ( -64 2368 512 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +} +{ +( -96 2624 543 ) ( -32 2624 543 ) ( -32 2576 543 ) bricks/c_pv_18a 0 32 0 2.000000 2.000000 +( -96 2576 255 ) ( -32 2576 255 ) ( -32 2624 255 ) bricks/c_pv_18a 0 32 0 2.000000 2.000000 +( -96 2624 543 ) ( -96 2576 543 ) ( -96 2576 255 ) bricks/c_pv_18a 0 32 0 2.000000 2.000000 +( -32 2624 255 ) ( -32 2576 255 ) ( -32 2576 543 ) bricks/c_pv_18a 0 32 0 2.000000 2.000000 +( -32 2624 543 ) ( -96 2624 543 ) ( -96 2624 255 ) bricks/c_pv_18a 0 32 0 2.000000 2.000000 +( -32 2576 255 ) ( -96 2576 255 ) ( -96 2576 543 ) bricks/c_pv_18a 0 32 0 2.000000 2.000000 +} +{ +( -96 2416 544 ) ( -64 2416 544 ) ( -64 2384 544 ) bricks/c_pv_18a 0 32 0 2.000000 2.000000 +( -96 2384 256 ) ( -64 2384 256 ) ( -64 2416 256 ) bricks/c_pv_18a 0 32 0 2.000000 2.000000 +( -96 2416 544 ) ( -96 2384 544 ) ( -96 2384 256 ) bricks/c_pv_18a 0 32 0 2.000000 2.000000 +( -64 2416 256 ) ( -64 2384 256 ) ( -64 2384 544 ) bricks/c_pv_18a 0 32 0 2.000000 2.000000 +( -64 2416 544 ) ( -96 2416 544 ) ( -96 2416 256 ) bricks/c_pv_18a 0 32 0 2.000000 2.000000 +( -64 2384 256 ) ( -96 2384 256 ) ( -96 2384 544 ) bricks/c_pv_18a 0 32 0 2.000000 2.000000 +} +{ +( -96 2224 543 ) ( -64 2224 543 ) ( -64 2176 543 ) bricks/c_pv_18a 0 32 0 2.000000 2.000000 +( -96 2176 256 ) ( -64 2176 256 ) ( -64 2224 256 ) bricks/c_pv_18a 0 32 0 2.000000 2.000000 +( -96 2224 543 ) ( -96 2176 543 ) ( -96 2176 256 ) bricks/c_pv_18a 0 32 0 2.000000 2.000000 +( -64 2224 256 ) ( -64 2176 256 ) ( -64 2176 543 ) bricks/c_pv_18a 0 32 0 2.000000 2.000000 +( -64 2224 543 ) ( -96 2224 543 ) ( -96 2224 256 ) bricks/c_pv_18a 0 32 0 2.000000 2.000000 +( -64 2176 256 ) ( -96 2176 256 ) ( -96 2176 543 ) bricks/c_pv_18a 0 32 0 2.000000 2.000000 +} +{ +( -512 2608 560 ) ( -448 2608 560 ) ( -448 2480 560 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -512 2480 384 ) ( -448 2480 384 ) ( -448 2608 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 0 8388608 0 +( -512 2608 560 ) ( -512 2480 560 ) ( -512 2480 384 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -448 2608 384 ) ( -448 2480 384 ) ( -448 2480 560 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -448 2608 560 ) ( -512 2608 560 ) ( -512 2608 384 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -448 2480 384 ) ( -512 2480 384 ) ( -512 2480 560 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +} +{ +( -448 2432 320 ) ( -256 2432 320 ) ( -256 2368 320 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +( -448 2368 256 ) ( -256 2368 256 ) ( -256 2432 256 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +( -448 2432 320 ) ( -448 2368 320 ) ( -448 2368 256 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +( -256 2432 256 ) ( -256 2368 256 ) ( -256 2368 320 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +( -256 2432 320 ) ( -448 2432 320 ) ( -448 2432 256 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +( -256 2368 256 ) ( -448 2368 256 ) ( -448 2368 320 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +} +{ +( -336 2368 320 ) ( -272 2368 320 ) ( -272 2304 320 ) props/box_sr_m8 16 0 0 1.000000 1.000000 0 134217728 0 +( -336 2304 256 ) ( -272 2304 256 ) ( -272 2368 256 ) props/box_sr_m8 16 0 0 1.000000 1.000000 0 134217728 0 +( -336 2368 320 ) ( -336 2304 320 ) ( -336 2304 256 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +( -272 2368 256 ) ( -272 2304 256 ) ( -272 2304 320 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +( -272 2368 320 ) ( -336 2368 320 ) ( -336 2368 256 ) props/box_sr_m8 16 0 0 1.000000 1.000000 0 134217728 0 +( -272 2304 256 ) ( -336 2304 256 ) ( -336 2304 320 ) props/box_sr_m8 16 0 0 1.000000 1.000000 0 134217728 0 +} +{ +( -448 2432 384 ) ( -320 2432 384 ) ( -320 2368 384 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +( -448 2368 320 ) ( -320 2368 320 ) ( -320 2432 320 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +( -448 2432 384 ) ( -448 2368 384 ) ( -448 2368 320 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +( -320 2432 320 ) ( -320 2368 320 ) ( -320 2368 384 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +( -320 2432 384 ) ( -448 2432 384 ) ( -448 2432 320 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +( -320 2368 320 ) ( -448 2368 320 ) ( -448 2368 384 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +} +{ +( -2320 8192 8192 ) ( -2320 -8192 8192 ) ( -2320 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -2288 -8192 8192 ) ( -2288 8192 8192 ) ( -2288 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -8192 1136 8192 ) ( 8192 1136 8192 ) ( -8192 1136 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 1144 8192 ) ( -8192 1144 8192 ) ( -8192 1144 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 -8192 400 ) ( 8192 8192 400 ) ( -8192 -8192 400 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +} +{ +( -2328 8192 8192 ) ( -2328 -8192 8192 ) ( -2328 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -2320 -8192 8192 ) ( -2320 8192 8192 ) ( -2320 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -8192 1136 8192 ) ( 8192 1136 8192 ) ( -8192 1136 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 1168 8192 ) ( -8192 1168 8192 ) ( -8192 1168 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 -8192 400 ) ( 8192 8192 400 ) ( -8192 -8192 400 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +} +{ +( -2320 8192 8192 ) ( -2320 -8192 8192 ) ( -2320 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -2288 -8192 8192 ) ( -2288 8192 8192 ) ( -2288 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -8192 1160 8192 ) ( 8192 1160 8192 ) ( -8192 1160 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 1168 8192 ) ( -8192 1168 8192 ) ( -8192 1168 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 -8192 400 ) ( 8192 8192 400 ) ( -8192 -8192 400 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +} +{ +( -2328 8192 8192 ) ( -2328 -8192 8192 ) ( -2328 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -2288 -8192 8192 ) ( -2288 8192 8192 ) ( -2288 8192 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( -8192 1136 8192 ) ( 8192 1136 8192 ) ( -8192 1136 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 1168 8192 ) ( -8192 1168 8192 ) ( -8192 1168 -8192 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_pv_v4b 0 0 0 20.000000 20.000000 1 0 0 +} +{ +( -96 -2392 8200 ) ( -96 9896 8200 ) ( -96 -2392 -8184 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( -128 9896 8200 ) ( -128 -2392 8200 ) ( -128 -2392 -8184 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( 5984 2624 8200 ) ( -10400 2624 8200 ) ( 5984 2624 -8184 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( -10400 2576 8200 ) ( 5984 2576 8200 ) ( 5984 2576 -8184 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( -10400 -2392 584 ) ( -10400 9896 584 ) ( 5984 9896 584 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( -5830 9896 7600 ) ( -5830 -2392 7600 ) ( 4404 -2392 -5193 ) bricks/c_pv_18a 0 32 0 2.500000 2.500000 1 0 0 +} +{ +( -128 -2392 8200 ) ( -128 9896 8200 ) ( -128 -2392 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -160 9896 8200 ) ( -160 -2392 8200 ) ( -160 -2392 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 5984 2624 8200 ) ( -10400 2624 8200 ) ( 5984 2624 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 2576 8200 ) ( 5984 2576 8200 ) ( 5984 2576 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 -2392 584 ) ( -10400 9896 584 ) ( 5984 9896 584 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -7790 9896 6218 ) ( -7790 -2392 6218 ) ( 5317 -2392 -3611 ) bricks/c_pv_18a 32 0 90 2.500000 2.500000 1 0 0 +} +{ +( -160 -2392 8200 ) ( -160 9896 8200 ) ( -160 -2392 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -192 9896 8200 ) ( -192 -2392 8200 ) ( -192 -2392 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 5984 2624 8200 ) ( -10400 2624 8200 ) ( 5984 2624 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 2576 8200 ) ( 5984 2576 8200 ) ( 5984 2576 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 -2392 584 ) ( -10400 9896 584 ) ( 5984 9896 584 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8930 9895 4881 ) ( -8930 -2391 4881 ) ( 5723 -2391 -2445 ) bricks/c_pv_18a 32 2 90 2.500000 2.500000 1 0 0 +} +{ +( -192 -2392 8200 ) ( -192 9896 8200 ) ( -192 -2392 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -224 9896 8200 ) ( -224 -2392 8200 ) ( -224 -2392 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 5984 2624 8200 ) ( -10400 2624 8200 ) ( 5984 2624 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 2576 8200 ) ( 5984 2576 8200 ) ( 5984 2576 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 -2392 584 ) ( -10400 9896 584 ) ( 5984 9896 584 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -9918 9895 2943 ) ( -9918 -2391 2943 ) ( 5976 -2391 -1030 ) bricks/c_pv_18a 32 2 90 2.500000 2.500000 1 0 0 +} +{ +( -224 -2392 8200 ) ( -224 9896 8200 ) ( -224 -2392 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -448 9896 8200 ) ( -448 -2392 8200 ) ( -448 -2392 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 5984 2624 8200 ) ( -10400 2624 8200 ) ( 5984 2624 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 2576 8200 ) ( 5984 2576 8200 ) ( 5984 2576 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 9896 520 ) ( -10400 -2392 520 ) ( 5984 9896 520 ) bricks/c_pv_18a 32 2 90 2.500000 2.500000 1 0 0 +( -10400 -2392 584 ) ( -10400 9896 584 ) ( 5984 9896 584 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -96 -928 8200 ) ( -96 7264 8200 ) ( -96 -928 -8184 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( -128 7264 8200 ) ( -128 -928 8200 ) ( -128 -928 -8184 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( 5984 2416 8200 ) ( -10400 2416 8200 ) ( 5984 2416 -8184 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( -10400 2384 8200 ) ( 5984 2384 8200 ) ( 5984 2384 -8184 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( -10400 -928 584 ) ( -10400 7264 584 ) ( 5984 7264 584 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( -5830 7264 7600 ) ( -5830 -928 7600 ) ( 4404 -928 -5193 ) bricks/c_pv_18a 0 32 0 2.500000 2.500000 1 0 0 +} +{ +( -128 -928 8200 ) ( -128 7264 8200 ) ( -128 -928 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -160 7264 8200 ) ( -160 -928 8200 ) ( -160 -928 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 5984 2416 8200 ) ( -10400 2416 8200 ) ( 5984 2416 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 2384 8200 ) ( 5984 2384 8200 ) ( 5984 2384 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 -928 584 ) ( -10400 7264 584 ) ( 5984 7264 584 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -7790 7264 6218 ) ( -7790 -928 6218 ) ( 5317 -928 -3611 ) bricks/c_pv_18a 32 0 90 2.500000 2.500000 1 0 0 +} +{ +( -160 -928 8200 ) ( -160 7264 8200 ) ( -160 -928 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -192 7264 8200 ) ( -192 -928 8200 ) ( -192 -928 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 5984 2416 8200 ) ( -10400 2416 8200 ) ( 5984 2416 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 2384 8200 ) ( 5984 2384 8200 ) ( 5984 2384 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 -928 584 ) ( -10400 7264 584 ) ( 5984 7264 584 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8930 7264 4881 ) ( -8930 -928 4881 ) ( 5723 -928 -2445 ) bricks/c_pv_18a 32 0 90 2.500000 2.500000 1 0 0 +} +{ +( -192 -928 8200 ) ( -192 7264 8200 ) ( -192 -928 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -224 7264 8200 ) ( -224 -928 8200 ) ( -224 -928 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 5984 2416 8200 ) ( -10400 2416 8200 ) ( 5984 2416 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 2384 8200 ) ( 5984 2384 8200 ) ( 5984 2384 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 -928 584 ) ( -10400 7264 584 ) ( 5984 7264 584 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -9918 7264 2943 ) ( -9918 -928 2943 ) ( 5976 -928 -1030 ) bricks/c_pv_18a 32 0 90 2.500000 2.500000 1 0 0 +} +{ +( -224 -928 8200 ) ( -224 7264 8200 ) ( -224 -928 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -448 7264 8200 ) ( -448 -928 8200 ) ( -448 -928 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 5984 2416 8200 ) ( -10400 2416 8200 ) ( 5984 2416 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 2384 8200 ) ( 5984 2384 8200 ) ( 5984 2384 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 7264 520 ) ( -10400 -928 520 ) ( 5984 7264 520 ) bricks/c_pv_18a 32 0 90 2.500000 2.500000 1 0 0 +( -10400 -928 584 ) ( -10400 7264 584 ) ( 5984 7264 584 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -160 -2792 8200 ) ( -160 9496 8200 ) ( -160 -2792 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -192 9496 8200 ) ( -192 -2792 8200 ) ( -192 -2792 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 5984 2224 8200 ) ( -10400 2224 8200 ) ( 5984 2224 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 2176 8200 ) ( 5984 2176 8200 ) ( 5984 2176 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 -2792 584 ) ( -10400 9496 584 ) ( 5984 9496 584 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -8930 9495 4881 ) ( -8930 -2791 4881 ) ( 5723 -2791 -2445 ) bricks/c_pv_18a 0 32 90 2.500000 2.500000 1 0 0 +} +{ +( -128 -2792 8200 ) ( -128 9496 8200 ) ( -128 -2792 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -160 9496 8200 ) ( -160 -2792 8200 ) ( -160 -2792 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 5984 2224 8200 ) ( -10400 2224 8200 ) ( 5984 2224 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 2176 8200 ) ( 5984 2176 8200 ) ( 5984 2176 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 -2792 584 ) ( -10400 9496 584 ) ( 5984 9496 584 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -7790 9496 6218 ) ( -7790 -2792 6218 ) ( 5317 -2792 -3611 ) bricks/c_pv_18a 0 32 90 2.500000 2.500000 1 0 0 +} +{ +( -96 -2792 8200 ) ( -96 9496 8200 ) ( -96 -2792 -8184 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( -128 9496 8200 ) ( -128 -2792 8200 ) ( -128 -2792 -8184 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( 5984 2224 8200 ) ( -10400 2224 8200 ) ( 5984 2224 -8184 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( -10400 2176 8200 ) ( 5984 2176 8200 ) ( 5984 2176 -8184 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( -10400 -2792 584 ) ( -10400 9496 584 ) ( 5984 9496 584 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 1 0 0 +( -5830 9496 7600 ) ( -5830 -2792 7600 ) ( 4404 -2792 -5193 ) bricks/c_pv_18a 0 32 0 2.500000 2.500000 1 0 0 +} +{ +( -192 -2792 8200 ) ( -192 9496 8200 ) ( -192 -2792 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -224 9496 8200 ) ( -224 -2792 8200 ) ( -224 -2792 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 5984 2224 8200 ) ( -10400 2224 8200 ) ( 5984 2224 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 2176 8200 ) ( 5984 2176 8200 ) ( 5984 2176 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 -2792 584 ) ( -10400 9496 584 ) ( 5984 9496 584 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -9918 9495 2943 ) ( -9918 -2791 2943 ) ( 5976 -2791 -1030 ) bricks/c_pv_18a 0 32 90 2.500000 2.500000 1 0 0 +} +{ +( -224 -2792 8200 ) ( -224 9496 8200 ) ( -224 -2792 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -448 9496 8200 ) ( -448 -2792 8200 ) ( -448 -2792 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( 5984 2224 8200 ) ( -10400 2224 8200 ) ( 5984 2224 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 2176 8200 ) ( 5984 2176 8200 ) ( 5984 2176 -8184 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +( -10400 9496 520 ) ( -10400 -2792 520 ) ( 5984 9496 520 ) bricks/c_pv_18a 0 32 90 2.500000 2.500000 1 0 0 +( -10400 -2792 584 ) ( -10400 9496 584 ) ( 5984 9496 584 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 1 0 0 +} +{ +( -48 2240 512 ) ( 128 2240 512 ) ( 128 2176 512 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +( -48 2176 448 ) ( 128 2176 448 ) ( 128 2240 448 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +( -48 2240 512 ) ( -48 2176 512 ) ( -48 2176 448 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +( 128 2240 448 ) ( 128 2176 448 ) ( 128 2176 512 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +( 128 2240 512 ) ( -48 2240 512 ) ( -48 2240 448 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +( 128 2176 448 ) ( -48 2176 448 ) ( -48 2176 512 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +} +{ +( -48 2624 512 ) ( 128 2624 512 ) ( 128 2560 512 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +( -48 2560 448 ) ( 128 2560 448 ) ( 128 2624 448 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +( -48 2624 512 ) ( -48 2560 512 ) ( -48 2560 448 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +( 128 2624 448 ) ( 128 2560 448 ) ( 128 2560 512 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +( 128 2624 512 ) ( -48 2624 512 ) ( -48 2624 448 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +( 128 2560 448 ) ( -48 2560 448 ) ( -48 2560 512 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +} +{ +( -48 2624 448 ) ( 128 2624 448 ) ( 128 2176 448 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +( -48 2176 432 ) ( 128 2176 432 ) ( 128 2624 432 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +( -48 2624 448 ) ( -48 2176 448 ) ( -48 2176 432 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +( 128 2624 432 ) ( 128 2176 432 ) ( 128 2176 448 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +( 128 2624 448 ) ( -48 2624 448 ) ( -48 2624 432 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +( 128 2176 432 ) ( -48 2176 432 ) ( -48 2176 448 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +} +{ +( -48 2624 544 ) ( 128 2624 544 ) ( 128 2176 544 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +( -48 2176 512 ) ( 128 2176 512 ) ( 128 2624 512 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +( -48 2624 544 ) ( -48 2176 544 ) ( -48 2176 512 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +( 128 2624 512 ) ( 128 2176 512 ) ( 128 2176 544 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +( 128 2624 544 ) ( -48 2624 544 ) ( -48 2624 512 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +( 128 2176 512 ) ( -48 2176 512 ) ( -48 2176 544 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +} +{ +( 128 2624 544 ) ( 144 2624 544 ) ( 144 2176 544 ) common/0_sky1 0 0 0 1.000000 1.000000 0 132 0 +( 128 2176 432 ) ( 144 2176 432 ) ( 144 2624 432 ) common/0_sky1 0 0 0 1.000000 1.000000 0 132 0 +( 128 2624 544 ) ( 128 2176 544 ) ( 128 2176 432 ) metals/mt_sr_v16 0 0 0 5.000000 5.000000 0 8388608 0 +( 144 2624 432 ) ( 144 2176 432 ) ( 144 2176 544 ) common/0_sky1 0 0 0 1.000000 1.000000 0 132 0 +( 144 2624 544 ) ( 128 2624 544 ) ( 128 2624 432 ) common/0_sky1 0 0 0 1.000000 1.000000 0 132 0 +( 144 2176 432 ) ( 128 2176 432 ) ( 128 2176 544 ) common/0_sky1 0 0 0 1.000000 1.000000 0 132 0 +} +{ +( -96 2624 256 ) ( -32 2624 256 ) ( -32 2176 256 ) bricks/c_sr_m9c 0 0 90 1.000000 1.000000 +( -96 2176 224 ) ( -32 2176 224 ) ( -32 2624 224 ) bricks/c_sr_m9c 0 0 0 1.000000 1.000000 +( -96 2624 256 ) ( -96 2176 256 ) ( -96 2176 224 ) bricks/c_sr_m9c 0 0 0 1.000000 1.000000 +( -32 2624 224 ) ( -32 2176 224 ) ( -32 2176 256 ) bricks/c_sr_m9c 0 0 0 1.000000 1.000000 +( -32 2624 256 ) ( -96 2624 256 ) ( -96 2624 224 ) bricks/c_sr_m9c 0 0 0 1.000000 1.000000 +( -32 2176 224 ) ( -96 2176 224 ) ( -96 2176 256 ) bricks/c_sr_m9c 0 0 0 1.000000 1.000000 +} +{ +( -448 6488 16640 ) ( -448 -3069 16640 ) ( -448 6488 -16128 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( -96 -3069 16640 ) ( -96 6488 16640 ) ( -96 6488 -16128 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( -3235 2176 16640 ) ( 4275 2176 16640 ) ( -3235 2176 -16128 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 4275 2624 16640 ) ( -3235 2624 16640 ) ( -3235 2624 -16128 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 4275 -3069 240 ) ( 4275 6488 240 ) ( -3235 -3069 240 ) bricks/s_sr_m12ab 0 0 0 2.000000 2.000000 1 0 0 +( 4275 6488 256 ) ( 4275 -3069 256 ) ( -3235 -3069 256 ) wood/wd_st_m7s 0 0 0 1.000000 1.000000 1 134217728 0 +} +{ +( -160 2624 320 ) ( -96 2624 320 ) ( -96 2560 320 ) props/box_sr_m8 -32 0 0 1.000000 1.000000 0 134217728 0 +( -160 2560 256 ) ( -96 2560 256 ) ( -96 2624 256 ) props/box_sr_m8 -32 0 0 1.000000 1.000000 0 134217728 0 +( -160 2624 320 ) ( -160 2560 320 ) ( -160 2560 256 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +( -96 2624 256 ) ( -96 2560 256 ) ( -96 2560 320 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +( -96 2624 320 ) ( -160 2624 320 ) ( -160 2624 256 ) props/box_sr_m8 -32 0 0 1.000000 1.000000 0 134217728 0 +( -96 2560 256 ) ( -160 2560 256 ) ( -160 2560 320 ) props/box_sr_m8 -32 0 0 1.000000 1.000000 0 134217728 0 +} +{ +( -1544 1400 514 ) ( -1544 1400 512 ) ( -1544 1416 512 ) metals/mt_pv_m16bc -16 -24 0 1.000000 1.000000 1 8390656 0 +( -1528 1416 514 ) ( -1528 1416 512 ) ( -1528 1400 512 ) metals/mt_pv_m16bc -16 -24 0 1.000000 1.000000 1 8390656 0 +( -1528 1400 514 ) ( -1528 1400 512 ) ( -1544 1400 512 ) metals/mt_pv_m16bc -16 -24 0 1.000000 1.000000 1 8390656 0 +( -1544 1416 514 ) ( -1544 1416 512 ) ( -1528 1416 512 ) metals/mt_pv_m16bc -16 -24 0 1.000000 1.000000 1 8390656 0 +( -1544 1416 512 ) ( -1544 1400 512 ) ( -1528 1400 512 ) common/li_sr_m19a -8 8 0 1.000000 1.000000 1 1 15000 +( -1544 1400 514 ) ( -1544 1416 514 ) ( -1528 1416 514 ) metals/mt_sr_v24 -32 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -1544 1400 512 ) ( -1544 1400 514 ) ( -1544 1416 514 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 1400 514 ) ( -1544 1400 512 ) ( -1552 1400 507 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1552 1416 507 ) ( -1544 1416 512 ) ( -1544 1416 514 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 1416 512 ) ( -1552 1416 507 ) ( -1552 1400 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1544 1400 514 ) ( -1552 1400 507 ) ( -1552 1416 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( -1544 1400 514 ) ( -1544 1400 512 ) ( -1544 1392 507 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 1400 512 ) ( -1544 1400 514 ) ( -1552 1400 507 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1552 1400 507 ) ( -1544 1400 514 ) ( -1544 1392 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1544 1392 507 ) ( -1544 1400 512 ) ( -1552 1400 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( -1544 1400 512 ) ( -1544 1400 514 ) ( -1544 1392 507 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 1400 512 ) ( -1528 1392 507 ) ( -1528 1400 514 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 1400 514 ) ( -1544 1400 512 ) ( -1528 1400 512 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 1400 512 ) ( -1544 1392 507 ) ( -1528 1392 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1544 1392 507 ) ( -1544 1400 514 ) ( -1528 1400 514 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( -1528 1400 514 ) ( -1528 1392 507 ) ( -1528 1400 512 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1520 1400 507 ) ( -1528 1400 514 ) ( -1528 1400 512 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 1392 507 ) ( -1520 1400 507 ) ( -1528 1400 512 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1520 1400 507 ) ( -1528 1392 507 ) ( -1528 1400 514 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( -1544 1416 514 ) ( -1544 1424 507 ) ( -1544 1416 512 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 1416 512 ) ( -1552 1416 507 ) ( -1544 1416 514 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 1416 514 ) ( -1552 1416 507 ) ( -1544 1424 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1544 1416 512 ) ( -1544 1424 507 ) ( -1552 1416 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( -1544 1424 507 ) ( -1544 1416 514 ) ( -1544 1416 512 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 1416 514 ) ( -1528 1424 507 ) ( -1528 1416 512 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 1416 514 ) ( -1528 1416 512 ) ( -1544 1416 512 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1544 1424 507 ) ( -1544 1416 512 ) ( -1528 1416 512 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1544 1416 514 ) ( -1544 1424 507 ) ( -1528 1424 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( -1537 8192 8192 ) ( -1537 -8192 8192 ) ( -1537 8192 -8192 ) metals/mt_sr_v24 0 -24 0 1.000000 1.000000 1 8388608 0 +( -1535 -8192 8192 ) ( -1535 8192 8192 ) ( -1535 8192 -8192 ) metals/mt_sr_v24 0 -24 0 1.000000 1.000000 1 8388608 0 +( -8192 1407 8192 ) ( 8192 1407 8192 ) ( -8192 1407 -8192 ) metals/mt_sr_v24 -32 -24 0 1.000000 1.000000 1 8388608 0 +( 8192 1409 8192 ) ( -8192 1409 8192 ) ( -8192 1409 -8192 ) metals/mt_sr_v24 -32 -24 0 1.000000 1.000000 1 8388608 0 +( 8192 -8192 516 ) ( 8192 8192 516 ) ( -8192 -8192 516 ) metals/mt_sr_v24 -16 56 0 1.000000 1.000000 1 8388608 0 +( 8192 8192 574 ) ( 8192 -8192 574 ) ( -8192 -8192 574 ) metals/mt_sr_v24 -32 0 0 1.000000 1.000000 1 8388608 0 +} +{ +( -1528 1400 514 ) ( -1528 1400 512 ) ( -1528 1416 512 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 1400 512 ) ( -1528 1400 514 ) ( -1520 1400 507 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 1416 512 ) ( -1520 1416 507 ) ( -1528 1416 514 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1520 1416 507 ) ( -1528 1416 512 ) ( -1528 1400 512 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1520 1400 507 ) ( -1528 1400 514 ) ( -1528 1416 514 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( -1528 1416 512 ) ( -1528 1424 507 ) ( -1528 1416 514 ) metals/mt_sr_v24 -32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 1416 514 ) ( -1520 1416 507 ) ( -1528 1416 512 ) metals/mt_sr_v24 32 44 0 0.500000 0.500000 1 8388608 0 +( -1528 1416 514 ) ( -1528 1424 507 ) ( -1520 1416 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +( -1528 1416 512 ) ( -1520 1416 507 ) ( -1528 1424 507 ) metals/mt_sr_v24 32 32 0 0.500000 0.500000 1 8388608 0 +} +{ +( 2256 6416 6208 ) ( 2256 -5872 6208 ) ( 2256 6416 -6080 ) props/box_sr_m6 22 21 0 0.750000 0.750000 1 134217728 0 +( 2304 -5872 6208 ) ( 2304 6416 6208 ) ( 2304 6416 -6080 ) props/box_sr_m6 22 21 0 0.750000 0.750000 1 134217728 0 +( -1440 1184 6208 ) ( 4704 1184 6208 ) ( -1440 1184 -6080 ) props/box_sr_m6 0 21 0 0.750000 0.750000 1 134217728 0 +( 4704 1232 6208 ) ( -1440 1232 6208 ) ( -1440 1232 -6080 ) props/box_sr_m6 22 21 0 0.750000 0.750000 1 134217728 0 +( 4704 -5872 256 ) ( 4704 6416 256 ) ( -1440 -5872 256 ) props/box_sr_m6 22 21 0 0.750000 0.750000 1 134217728 0 +( 4704 6416 304 ) ( 4704 -5872 304 ) ( -1440 -5872 304 ) props/box_sr_m5 0 -21 0 0.750000 0.750000 1 134217728 0 +} +{ +( 1792 672 384 ) ( 1844 672 384 ) ( 1844 512 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 1792 512 256 ) ( 1844 512 256 ) ( 1844 672 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 1792 672 384 ) ( 1792 512 384 ) ( 1792 512 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 1844 672 256 ) ( 1844 512 256 ) ( 1844 512 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 1844 672 384 ) ( 1792 672 384 ) ( 1792 672 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 1844 512 256 ) ( 1792 512 256 ) ( 1792 512 384 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +} +{ +( 2152 672 384 ) ( 2184 672 384 ) ( 2184 512 384 ) bricks/b_sr_20 -112 128 0 1.000000 1.000000 +( 2152 512 256 ) ( 2184 512 256 ) ( 2184 672 256 ) bricks/b_sr_20 -112 128 0 1.000000 1.000000 +( 2152 672 384 ) ( 2152 512 384 ) ( 2152 512 256 ) bricks/b_sr_20 -128 128 0 1.000000 1.000000 +( 2184 672 256 ) ( 2184 512 256 ) ( 2184 512 384 ) bricks/b_sr_20 -128 128 0 1.000000 1.000000 +( 2184 672 384 ) ( 2152 672 384 ) ( 2152 672 256 ) bricks/b_sr_20 -112 128 0 1.000000 1.000000 +( 2184 512 256 ) ( 2152 512 256 ) ( 2152 512 384 ) bricks/b_sr_20 -112 128 0 1.000000 1.000000 +} +{ +( 1972 672 384 ) ( 2024 672 384 ) ( 2024 512 384 ) bricks/b_sr_20 -56 128 0 1.000000 1.000000 +( 1972 512 256 ) ( 2024 512 256 ) ( 2024 672 256 ) bricks/b_sr_20 -56 128 0 1.000000 1.000000 +( 1972 672 384 ) ( 1972 512 384 ) ( 1972 512 256 ) bricks/b_sr_20 -128 128 0 1.000000 1.000000 +( 2024 672 256 ) ( 2024 512 256 ) ( 2024 512 384 ) bricks/b_sr_20 -128 128 0 1.000000 1.000000 +( 2024 672 384 ) ( 1972 672 384 ) ( 1972 672 256 ) bricks/b_sr_20 -56 128 0 1.000000 1.000000 +( 2024 512 256 ) ( 1972 512 256 ) ( 1972 512 384 ) bricks/b_sr_20 -56 128 0 1.000000 1.000000 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( -8192 192 8192 ) ( 8192 192 8192 ) ( -8192 192 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 200 8192 ) ( -8192 200 8192 ) ( -8192 200 -8192 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 8192 320 ) ( 8192 -8192 320 ) ( -8192 -8192 320 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( -8192 192 8192 ) ( 8192 192 8192 ) ( -8192 192 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 320 ) ( 8192 8192 320 ) ( -8192 -8192 320 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 8192 328 ) ( 8192 -8192 328 ) ( -8192 -8192 328 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8191 1173 8109 ) ( -8191 1173 8109 ) ( -8191 -858 -8148 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( -8192 192 8192 ) ( 8192 192 8192 ) ( -8192 192 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 328 ) ( 8192 8192 328 ) ( -8192 -8192 328 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 8192 336 ) ( 8192 -8192 336 ) ( -8192 -8192 336 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8191 2098 7919 ) ( -8191 2098 7919 ) ( -8191 -1874 -7975 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( -8192 192 8192 ) ( 8192 192 8192 ) ( -8192 192 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 336 ) ( 8192 8192 336 ) ( -8192 -8192 336 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 8192 344 ) ( 8192 -8192 344 ) ( -8192 -8192 344 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 2943 7645 ) ( -8192 2943 7645 ) ( -8192 -2808 -7695 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( -8192 192 8192 ) ( 8192 192 8192 ) ( -8192 192 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 344 ) ( 8192 8192 344 ) ( -8192 -8192 344 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 8192 352 ) ( 8192 -8192 352 ) ( -8192 -8192 352 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 4335 6950 ) ( -8192 4335 6950 ) ( -8192 -4348 -6942 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( -8192 192 8192 ) ( 8192 192 8192 ) ( -8192 192 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 352 ) ( 8192 8192 352 ) ( -8192 -8192 352 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 8192 359 ) ( 8192 -8192 359 ) ( -8192 -8192 359 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 5722 5863 ) ( -8192 5722 5863 ) ( -8192 -5863 -5722 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( -8192 192 8192 ) ( 8192 192 8192 ) ( -8192 192 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 359 ) ( 8192 8192 359 ) ( -8192 -8192 359 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 8192 365 ) ( 8192 -8192 365 ) ( -8192 -8192 365 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 -6647 -4790 ) ( 8192 6459 5040 ) ( -8192 6459 5040 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( -8192 226 8192 ) ( 8192 226 8192 ) ( -8192 226 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 230 8192 ) ( -8192 230 8192 ) ( -8192 230 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 -7427 -3461 ) ( 8192 7226 3865 ) ( -8192 7226 3865 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( -8192 192 8192 ) ( 8192 192 8192 ) ( -8192 192 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 226 8192 ) ( -8192 226 8192 ) ( -8192 226 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 365 ) ( 8192 8192 365 ) ( -8192 -8192 365 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( -8192 230 8192 ) ( 8192 230 8192 ) ( -8192 230 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 234 8192 ) ( -8192 234 8192 ) ( -8192 234 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 -7427 -3461 ) ( 8192 7226 3865 ) ( -8192 7226 3865 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( -8192 240 8192 ) ( 8192 240 8192 ) ( -8192 240 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 248 8192 ) ( -8192 248 8192 ) ( -8192 248 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 -8170 -680 ) ( 8192 8086 1351 ) ( -8192 8086 1351 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( -8192 248 8192 ) ( 8192 248 8192 ) ( -8192 248 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 256 8192 ) ( -8192 256 8192 ) ( -8192 256 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 372 ) ( 8192 8192 372 ) ( -8192 -8192 372 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( -8192 234 8192 ) ( 8192 234 8192 ) ( -8192 234 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 240 8192 ) ( -8192 240 8192 ) ( -8192 240 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 -7858 -2328 ) ( 8192 7684 2852 ) ( -8192 7684 2852 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( -8192 256 8192 ) ( 8192 256 8192 ) ( -8192 256 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 264 8192 ) ( -8192 264 8192 ) ( -8192 264 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 372 ) ( 8192 8192 372 ) ( -8192 -8192 372 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( -8192 264 8192 ) ( 8192 264 8192 ) ( -8192 264 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 272 8192 ) ( -8192 272 8192 ) ( -8192 272 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 -8078 1414 ) ( 8192 8178 -617 ) ( -8192 8178 -617 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( -8192 272 8192 ) ( 8192 272 8192 ) ( -8192 272 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 278 8192 ) ( -8192 278 8192 ) ( -8192 278 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 -7633 3006 ) ( 8192 7910 -2175 ) ( -8192 7910 -2175 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( -8192 282 8192 ) ( 8192 282 8192 ) ( -8192 282 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 286 8192 ) ( -8192 286 8192 ) ( -8192 286 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 -7123 4069 ) ( 8192 7530 -3257 ) ( -8192 7530 -3257 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 8192 320 8192 ) ( -8192 320 8192 ) ( -8192 320 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 359 ) ( 8192 8192 359 ) ( -8192 -8192 359 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 8192 365 ) ( 8192 -8192 365 ) ( -8192 -8192 365 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 -6275 5286 ) ( 8192 6831 -4544 ) ( -8192 6831 -4544 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( -8192 278 8192 ) ( 8192 278 8192 ) ( -8192 278 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 282 8192 ) ( -8192 282 8192 ) ( -8192 282 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 -7123 4069 ) ( 8192 7530 -3257 ) ( -8192 7530 -3257 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( -8192 286 8192 ) ( 8192 286 8192 ) ( -8192 286 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 320 8192 ) ( -8192 320 8192 ) ( -8192 320 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 365 ) ( 8192 8192 365 ) ( -8192 -8192 365 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 8192 384 ) ( 8192 -8192 384 ) ( -8192 -8192 384 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 8192 320 8192 ) ( -8192 320 8192 ) ( -8192 320 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 352 ) ( 8192 8192 352 ) ( -8192 -8192 352 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 8192 359 ) ( 8192 -8192 359 ) ( -8192 -8192 359 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( -8192 -5466 6119 ) ( 8192 -5466 6119 ) ( 8192 6119 -5466 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 8192 320 8192 ) ( -8192 320 8192 ) ( -8192 320 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 344 ) ( 8192 8192 344 ) ( -8192 -8192 344 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 8192 352 ) ( 8192 -8192 352 ) ( -8192 -8192 352 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( -8192 -3967 7180 ) ( 8192 -3967 7180 ) ( 8192 4716 -6712 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 8192 320 8192 ) ( -8192 320 8192 ) ( -8192 320 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 336 ) ( 8192 8192 336 ) ( -8192 -8192 336 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 8192 344 ) ( 8192 -8192 344 ) ( -8192 -8192 344 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( -8192 -2495 7813 ) ( 8192 -2495 7813 ) ( 8192 3257 -7527 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 8192 320 8192 ) ( -8192 320 8192 ) ( -8192 320 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 320 ) ( 8192 8192 320 ) ( -8192 -8192 320 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 8192 328 ) ( 8192 -8192 328 ) ( -8192 -8192 328 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( -8191 -669 8172 ) ( 8191 -669 8172 ) ( 8191 1362 -8085 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 8192 320 8192 ) ( -8192 320 8192 ) ( -8192 320 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 328 ) ( 8192 8192 328 ) ( -8192 -8192 328 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 8192 336 ) ( 8192 -8192 336 ) ( -8192 -8192 336 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( -8191 -1616 8039 ) ( 8191 -1616 8039 ) ( 8191 2356 -7854 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +} +{ +( 2184 8192 8192 ) ( 2184 -8192 8192 ) ( 2184 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( 2200 -8192 8192 ) ( 2200 8192 8192 ) ( 2200 8192 -8192 ) bricks/b_sr_25 64 0 0 1.000000 1.000000 1 0 0 +( -8192 312 8192 ) ( 8192 312 8192 ) ( -8192 312 -8192 ) bricks/b_sr_21 0 -4 90 1.000000 1.000000 1 0 0 +( 8192 320 8192 ) ( -8192 320 8192 ) ( -8192 320 -8192 ) bricks/b_sr_25 80 0 180 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +( 8192 8192 320 ) ( 8192 -8192 320 ) ( -8192 -8192 320 ) bricks/b_sr_25 64 -15 90 1.000000 1.000000 1 0 0 +} +{ +( 1792 672 416 ) ( 2184 672 416 ) ( 2184 536 416 ) floors/rf_sr_m2 0 3 0 2.000000 2.000000 0 2097152 0 +( 1792 536 384 ) ( 2184 536 384 ) ( 2184 672 384 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 0 8388608 0 +( 1792 672 416 ) ( 1792 536 416 ) ( 1792 536 384 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 0 8388608 0 +( 2184 672 384 ) ( 2184 536 384 ) ( 2184 536 416 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 0 8388608 0 +( 2184 672 416 ) ( 1792 672 416 ) ( 1792 672 384 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 0 8388608 0 +( 2184 536 384 ) ( 1792 536 384 ) ( 1792 536 416 ) metals/mt_sr_v16 0 0 0 1.000000 1.000000 0 8388608 0 +} +{ +( 1536 8192 8192 ) ( 1536 -8192 8192 ) ( 1536 8192 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( 1540 -8192 8192 ) ( 1540 8192 8192 ) ( 1540 8192 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( -8192 1168 8192 ) ( 8192 1168 8192 ) ( -8192 1168 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( 8192 1172 8192 ) ( -8192 1172 8192 ) ( -8192 1172 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 432 ) ( 8192 8192 432 ) ( -8192 -8192 432 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 568 ) ( 8192 -8192 568 ) ( -8192 -8192 568 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 1536 8192 8192 ) ( 1536 -8192 8192 ) ( 1536 8192 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( 1540 -8192 8192 ) ( 1540 8192 8192 ) ( 1540 8192 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( -8192 1196 8192 ) ( 8192 1196 8192 ) ( -8192 1196 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( 8192 1200 8192 ) ( -8192 1200 8192 ) ( -8192 1200 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 432 ) ( 8192 8192 432 ) ( -8192 -8192 432 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 568 ) ( 8192 -8192 568 ) ( -8192 -8192 568 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 1536 8192 8192 ) ( 1536 -8192 8192 ) ( 1536 8192 -8192 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 268435586 8388608 0 +( 1538 -8192 8192 ) ( 1538 8192 8192 ) ( 1538 8192 -8192 ) sprites/rail_c2 0 0 90 1.000000 1.000000 268435586 4096 0 +( -8192 1172 8192 ) ( 8192 1172 8192 ) ( -8192 1172 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 268435586 0 0 +( 8192 1196 8192 ) ( -8192 1196 8192 ) ( -8192 1196 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 268435586 0 0 +( 8192 -8192 316 ) ( 8192 8192 316 ) ( -8192 -8192 316 ) sprites/rail_c2 0 0 0 1.000000 1.000000 268435586 0 0 +( 8192 8192 560 ) ( 8192 -8192 560 ) ( -8192 -8192 560 ) sprites/rail_c2 40 64 0 1.000000 1.000000 268435586 4096 0 +} +{ +( 1536 8192 8192 ) ( 1536 -8192 8192 ) ( 1536 8192 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( 1540 -8192 8192 ) ( 1540 8192 8192 ) ( 1540 8192 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( -8192 1168 8192 ) ( 8192 1168 8192 ) ( -8192 1168 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( 8192 1172 8192 ) ( -8192 1172 8192 ) ( -8192 1172 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 312 ) ( 8192 8192 312 ) ( -8192 -8192 312 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 432 ) ( 8192 -8192 432 ) ( -8192 -8192 432 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 1536 8192 8192 ) ( 1536 -8192 8192 ) ( 1536 8192 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( 1540 -8192 8192 ) ( 1540 8192 8192 ) ( 1540 8192 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( -8192 1196 8192 ) ( 8192 1196 8192 ) ( -8192 1196 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( 8192 1200 8192 ) ( -8192 1200 8192 ) ( -8192 1200 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( 8192 -8192 312 ) ( 8192 8192 312 ) ( -8192 -8192 312 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +( 8192 8192 432 ) ( 8192 -8192 432 ) ( -8192 -8192 432 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 1 0 0 +} +{ +( 1536 8192 8192 ) ( 1536 -8192 8192 ) ( 1536 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 536936448 128 0 +( 1542 -8192 8192 ) ( 1542 8192 8192 ) ( 1542 8192 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 536936448 128 0 +( -8192 1168 8192 ) ( 8192 1168 8192 ) ( -8192 1168 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 536936448 128 0 +( 8192 1200 8192 ) ( -8192 1200 8192 ) ( -8192 1200 -8192 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 536936448 128 0 +( 8192 -8192 288 ) ( 8192 8192 288 ) ( -8192 -8192 288 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 536936448 128 0 +( 8192 8192 568 ) ( 8192 -8192 568 ) ( -8192 -8192 568 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 536936448 128 0 +} +{ +( 5756 10336 1024 ) ( 5756 -6048 1024 ) ( -8068 -6048 1024 ) common/0_clip -24 -8 0 1.000000 1.000000 65536 128 0 +( 5756 608 -73920 ) ( 5756 608 50261 ) ( -8068 608 -73920 ) common/0_clip -16 32 0 1.000000 1.000000 65536 128 0 +( 5756 592 50261 ) ( 5756 592 -73920 ) ( -8068 592 -73920 ) common/0_clip -16 32 0 1.000000 1.000000 65536 128 0 +( -832 10336 50261 ) ( -832 -6048 50261 ) ( -832 10336 -73920 ) common/0_clip 0 32 0 1.000000 1.000000 65536 128 0 +( -400 -6048 50261 ) ( -400 10336 50261 ) ( -400 10336 -73920 ) common/0_clip 0 32 0 1.000000 1.000000 65536 128 0 +( 5756 -4242 -54177 ) ( 5756 4845 49139 ) ( -8068 4845 49139 ) common/0_clip -16 32 0 1.000000 1.000000 65536 128 0 +} +{ +( -1582 1222 256 ) ( -1554 1222 256 ) ( -1554 1218 256 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536936448 128 0 +( -1582 1218 32 ) ( -1554 1218 32 ) ( -1554 1222 32 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536936448 128 0 +( -1582 1222 256 ) ( -1582 1218 256 ) ( -1582 1218 32 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536936448 128 0 +( -1554 1222 32 ) ( -1554 1218 32 ) ( -1554 1218 256 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536936448 128 0 +( -1554 1222 256 ) ( -1582 1222 256 ) ( -1582 1222 32 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536936448 128 0 +( -1554 1218 32 ) ( -1582 1218 32 ) ( -1582 1218 256 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536936448 128 0 +} +{ +( -6028 600 8192 ) ( 10356 600 8192 ) ( -6028 600 -8192 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 10356 672 8192 ) ( -6028 672 8192 ) ( -6028 672 -8192 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1972 -46092 8192 ) ( 1972 27636 8192 ) ( 1972 -46092 -8192 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1964 27636 8192 ) ( 1964 -46092 8192 ) ( 1964 -46092 -8192 ) bricks/b_sr_20 0 -12 0 1.000000 1.000000 +( 10356 27636 256 ) ( -6028 27636 256 ) ( 10356 -46092 256 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( -6028 27636 320 ) ( 10356 27636 320 ) ( 10356 -46092 320 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +} +{ +( 1972 512 320 ) ( 1964 512 320 ) ( 1963 512 328 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1972 672 320 ) ( 1972 672 328 ) ( 1963 672 328 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1972 672 320 ) ( 1972 512 320 ) ( 1972 512 328 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1964 672 320 ) ( 1964 512 320 ) ( 1972 512 320 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1963 512 328 ) ( 1963 672 328 ) ( 1972 672 328 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1964 512 320 ) ( 1964 672 320 ) ( 1963 672 328 ) bricks/b_sr_20 0 -12 0 1.000000 1.000000 +} +{ +( 1972 512 328 ) ( 1963 512 328 ) ( 1961 512 336 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1972 672 328 ) ( 1972 672 336 ) ( 1961 672 336 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1972 672 328 ) ( 1972 512 328 ) ( 1972 512 336 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1963 672 328 ) ( 1963 512 328 ) ( 1972 512 328 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1961 512 336 ) ( 1961 672 336 ) ( 1972 672 336 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1963 512 328 ) ( 1963 672 328 ) ( 1961 672 336 ) bricks/b_sr_20 0 -12 0 1.000000 1.000000 +} +{ +( 1961 512 336 ) ( 1958 512 344 ) ( 1972 512 344 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1972 672 344 ) ( 1958 672 344 ) ( 1961 672 336 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1972 512 336 ) ( 1972 512 344 ) ( 1972 672 344 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1961 512 336 ) ( 1972 512 336 ) ( 1972 672 336 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1958 672 344 ) ( 1972 672 344 ) ( 1972 512 344 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1961 672 336 ) ( 1958 672 344 ) ( 1958 512 344 ) bricks/b_sr_20 0 -12 0 1.000000 1.000000 +} +{ +( 1958 512 344 ) ( 1953 512 352 ) ( 1972 512 352 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1972 672 352 ) ( 1953 672 352 ) ( 1958 672 344 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1972 512 344 ) ( 1972 512 352 ) ( 1972 672 352 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1958 512 344 ) ( 1972 512 344 ) ( 1972 672 344 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1953 672 352 ) ( 1972 672 352 ) ( 1972 512 352 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1958 672 344 ) ( 1953 672 352 ) ( 1953 512 352 ) bricks/b_sr_20 0 -12 0 1.000000 1.000000 +} +{ +( 1972 512 352 ) ( 1953 512 352 ) ( 1946 512 359 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1972 672 352 ) ( 1972 672 359 ) ( 1946 672 359 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1972 672 352 ) ( 1972 512 352 ) ( 1972 512 359 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1953 672 352 ) ( 1953 512 352 ) ( 1972 512 352 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1946 512 359 ) ( 1946 672 359 ) ( 1972 672 359 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1953 512 352 ) ( 1953 672 352 ) ( 1946 672 359 ) bricks/b_sr_20 0 -12 90 1.000000 1.000000 +} +{ +( -6028 512 8192 ) ( 10356 512 8192 ) ( -6028 512 -8192 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 10356 672 8192 ) ( -6028 672 8192 ) ( -6028 672 -8192 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1972 -103248 8192 ) ( 1972 60592 8192 ) ( 1972 -103248 -8192 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 10356 60592 359 ) ( -6028 60592 359 ) ( 10356 -103248 359 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( -6028 60592 365 ) ( 10356 60592 365 ) ( 10356 -103248 365 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 8811 60592 -4790 ) ( -4295 60592 5040 ) ( -4295 -103248 5040 ) bricks/b_sr_20 -12 -8 90 1.000000 1.000000 +} +{ +( 1934 512 367 ) ( 1934 512 384 ) ( 1938 512 384 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1938 672 365 ) ( 1938 672 384 ) ( 1934 672 384 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1938 512 365 ) ( 1938 512 384 ) ( 1938 672 384 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1934 672 367 ) ( 1934 672 384 ) ( 1934 512 384 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1934 672 384 ) ( 1938 672 384 ) ( 1938 512 384 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1934 512 367 ) ( 1938 512 365 ) ( 1938 672 365 ) bricks/b_sr_20 -12 -8 90 1.000000 1.000000 +} +{ +( -6028 512 8192 ) ( 10356 512 8192 ) ( -6028 512 -8192 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 10356 672 8192 ) ( -6028 672 8192 ) ( -6028 672 -8192 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1972 -103248 8192 ) ( 1972 60592 8192 ) ( 1972 -103248 -8192 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1938 60592 8192 ) ( 1938 -103248 8192 ) ( 1938 -103248 -8192 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 10356 60592 365 ) ( -6028 60592 365 ) ( 10356 -103248 365 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( -6028 60592 384 ) ( 10356 60592 384 ) ( 10356 -103248 384 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +} +{ +( 1930 512 369 ) ( 1930 512 384 ) ( 1934 512 384 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1934 672 367 ) ( 1934 672 384 ) ( 1930 672 384 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1934 512 367 ) ( 1934 512 384 ) ( 1934 672 384 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1930 672 369 ) ( 1930 672 384 ) ( 1930 512 384 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1930 672 384 ) ( 1934 672 384 ) ( 1934 512 384 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1930 512 369 ) ( 1934 512 367 ) ( 1934 672 367 ) bricks/b_sr_20 -12 -8 90 1.000000 1.000000 +} +{ +( 1924 512 371 ) ( 1916 512 372 ) ( 1916 512 384 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1916 672 372 ) ( 1924 672 371 ) ( 1924 672 384 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1924 672 371 ) ( 1924 512 371 ) ( 1924 512 384 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1916 512 372 ) ( 1916 672 372 ) ( 1916 672 384 ) bricks/b_sr_20 56 128 180 1.000000 1.000000 +( 1916 512 384 ) ( 1916 672 384 ) ( 1924 672 384 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1916 672 372 ) ( 1916 512 372 ) ( 1924 512 371 ) bricks/b_sr_20 -12 -8 90 1.000000 1.000000 +} +{ +( -6028 512 8192 ) ( 10356 512 8192 ) ( -6028 512 -8192 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 10356 672 8192 ) ( -6028 672 8192 ) ( -6028 672 -8192 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1916 -103248 8192 ) ( 1916 60592 8192 ) ( 1916 -103248 -8192 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1908 60592 8192 ) ( 1908 -103248 8192 ) ( 1908 -103248 -8192 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 10356 60592 372 ) ( -6028 60592 372 ) ( 10356 -103248 372 ) bricks/b_sr_20 -12 -8 90 1.000000 1.000000 +( -6028 60592 384 ) ( 10356 60592 384 ) ( 10356 -103248 384 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +} +{ +( -6028 512 8192 ) ( 10356 512 8192 ) ( -6028 512 -8192 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 10356 672 8192 ) ( -6028 672 8192 ) ( -6028 672 -8192 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1930 -103248 8192 ) ( 1930 60592 8192 ) ( 1930 -103248 -8192 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1924 60592 8192 ) ( 1924 -103248 8192 ) ( 1924 -103248 -8192 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( -6028 60592 384 ) ( 10356 60592 384 ) ( 10356 -103248 384 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 10022 60592 -2328 ) ( -5520 60592 2852 ) ( -5520 -103248 2852 ) bricks/b_sr_20 -12 -8 90 1.000000 1.000000 +} +{ +( -6028 512 8192 ) ( 10356 512 8192 ) ( -6028 512 -8192 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 10356 672 8192 ) ( -6028 672 8192 ) ( -6028 672 -8192 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1908 -103248 8192 ) ( 1908 60592 8192 ) ( 1908 -103248 -8192 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1900 60592 8192 ) ( 1900 -103248 8192 ) ( 1900 -103248 -8192 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 10356 60592 372 ) ( -6028 60592 372 ) ( 10356 -103248 372 ) bricks/b_sr_20 -12 -8 90 1.000000 1.000000 +( -6028 60592 384 ) ( 10356 60592 384 ) ( 10356 -103248 384 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +} +{ +( 1892 512 384 ) ( 1900 512 384 ) ( 1900 512 372 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1900 672 384 ) ( 1892 672 384 ) ( 1892 672 371 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1900 512 384 ) ( 1900 672 384 ) ( 1900 672 372 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1892 672 384 ) ( 1892 512 384 ) ( 1892 512 371 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1900 672 384 ) ( 1900 512 384 ) ( 1892 512 384 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1900 512 372 ) ( 1900 672 372 ) ( 1892 672 371 ) bricks/b_sr_20 -12 -8 90 1.000000 1.000000 +} +{ +( 1886 512 369 ) ( 1886 512 384 ) ( 1892 512 384 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1892 672 371 ) ( 1892 672 384 ) ( 1886 672 384 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1892 512 371 ) ( 1892 512 384 ) ( 1892 672 384 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1886 672 369 ) ( 1886 672 384 ) ( 1886 512 384 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1886 672 384 ) ( 1892 672 384 ) ( 1892 512 384 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1886 512 369 ) ( 1892 512 371 ) ( 1892 672 371 ) bricks/b_sr_20 -12 -8 90 1.000000 1.000000 +} +{ +( 1878 512 365 ) ( 1878 512 384 ) ( 1882 512 384 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1882 672 367 ) ( 1882 672 384 ) ( 1878 672 384 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1882 512 367 ) ( 1882 512 384 ) ( 1882 672 384 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1878 672 365 ) ( 1878 672 384 ) ( 1878 512 384 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1878 672 384 ) ( 1882 672 384 ) ( 1882 512 384 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1878 512 365 ) ( 1882 512 367 ) ( 1882 672 367 ) bricks/b_sr_20 -12 -8 90 1.000000 1.000000 +} +{ +( 1844 512 359 ) ( 1844 512 365 ) ( 1878 512 365 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1844 672 359 ) ( 1870 672 359 ) ( 1878 672 365 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1844 512 359 ) ( 1844 672 359 ) ( 1844 672 365 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1844 672 359 ) ( 1844 512 359 ) ( 1870 512 359 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1844 512 365 ) ( 1844 672 365 ) ( 1878 672 365 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1870 672 359 ) ( 1870 512 359 ) ( 1878 512 365 ) bricks/b_sr_20 -12 -8 90 1.000000 1.000000 +} +{ +( 1886 512 369 ) ( 1882 512 367 ) ( 1882 512 384 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1882 672 367 ) ( 1886 672 369 ) ( 1886 672 384 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1886 672 369 ) ( 1886 512 369 ) ( 1886 512 384 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1882 512 367 ) ( 1882 672 367 ) ( 1882 672 384 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1882 512 384 ) ( 1882 672 384 ) ( 1886 672 384 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1882 672 367 ) ( 1882 512 367 ) ( 1886 512 369 ) bricks/b_sr_20 -12 -8 90 1.000000 1.000000 +} +{ +( 1878 512 384 ) ( 1878 512 365 ) ( 1844 512 365 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1844 672 384 ) ( 1844 672 365 ) ( 1878 672 365 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1878 672 384 ) ( 1878 672 365 ) ( 1878 512 365 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1844 512 384 ) ( 1844 512 365 ) ( 1844 672 365 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1878 672 365 ) ( 1844 672 365 ) ( 1844 512 365 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1878 512 384 ) ( 1844 512 384 ) ( 1844 672 384 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +} +{ +( 1844 512 359 ) ( 1870 512 359 ) ( 1863 512 352 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1863 672 352 ) ( 1870 672 359 ) ( 1844 672 359 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1844 672 352 ) ( 1844 672 359 ) ( 1844 512 359 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1844 512 352 ) ( 1863 512 352 ) ( 1863 672 352 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1844 672 359 ) ( 1870 672 359 ) ( 1870 512 359 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1863 512 352 ) ( 1870 512 359 ) ( 1870 672 359 ) bricks/b_sr_20 0 -12 90 1.000000 1.000000 +} +{ +( 1863 512 352 ) ( 1858 512 344 ) ( 1844 512 344 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1863 672 352 ) ( 1844 672 352 ) ( 1844 672 344 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1844 672 352 ) ( 1844 512 352 ) ( 1844 512 344 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1858 512 344 ) ( 1858 672 344 ) ( 1844 672 344 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1863 672 352 ) ( 1863 512 352 ) ( 1844 512 352 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1863 512 352 ) ( 1863 672 352 ) ( 1858 672 344 ) bricks/b_sr_20 0 -12 0 1.000000 1.000000 +} +{ +( 1844 512 344 ) ( 1858 512 344 ) ( 1855 512 336 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1855 672 336 ) ( 1858 672 344 ) ( 1844 672 344 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1844 672 336 ) ( 1844 672 344 ) ( 1844 512 344 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1844 512 336 ) ( 1855 512 336 ) ( 1855 672 336 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1844 672 344 ) ( 1858 672 344 ) ( 1858 512 344 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1855 512 336 ) ( 1858 512 344 ) ( 1858 672 344 ) bricks/b_sr_20 0 -12 0 1.000000 1.000000 +} +{ +( 1844 512 320 ) ( 1844 512 328 ) ( 1853 512 328 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1844 672 320 ) ( 1852 672 320 ) ( 1853 672 328 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1844 512 320 ) ( 1844 672 320 ) ( 1844 672 328 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1844 672 320 ) ( 1844 512 320 ) ( 1852 512 320 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1844 512 328 ) ( 1844 672 328 ) ( 1853 672 328 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1852 672 320 ) ( 1852 512 320 ) ( 1853 512 328 ) bricks/b_sr_20 0 -12 0 1.000000 1.000000 +} +{ +( 1844 512 328 ) ( 1844 512 336 ) ( 1855 512 336 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1844 672 328 ) ( 1853 672 328 ) ( 1855 672 336 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1844 512 328 ) ( 1844 672 328 ) ( 1844 672 336 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1844 672 328 ) ( 1844 512 328 ) ( 1853 512 328 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1844 512 336 ) ( 1844 672 336 ) ( 1855 672 336 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1853 672 328 ) ( 1853 512 328 ) ( 1855 512 336 ) bricks/b_sr_20 0 -12 0 1.000000 1.000000 +} +{ +( 1852 512 256 ) ( 1844 512 256 ) ( 1844 512 320 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1844 672 256 ) ( 1852 672 256 ) ( 1852 672 320 ) bricks/b_sr_25 -52 -128 0 1.000000 1.000000 1 0 0 +( 1852 672 256 ) ( 1852 512 256 ) ( 1852 512 320 ) bricks/b_sr_20 0 -12 0 1.000000 1.000000 +( 1844 512 256 ) ( 1844 672 256 ) ( 1844 672 320 ) bricks/b_sr_25 56 128 180 1.000000 1.000000 1 0 0 +( 1844 672 256 ) ( 1844 512 256 ) ( 1852 512 256 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +( 1844 512 320 ) ( 1844 672 320 ) ( 1852 672 320 ) bricks/b_sr_25 52 -115 90 1.000000 1.000000 1 0 0 +} +{ +( -6028 512 8192 ) ( 10356 512 8192 ) ( -6028 512 -8192 ) bricks/b_sr_25 -52 0 0 1.000000 1.000000 1 0 0 +( 10356 584 8192 ) ( -6028 584 8192 ) ( -6028 584 -8192 ) bricks/b_sr_25 -52 0 0 1.000000 1.000000 1 0 0 +( 1972 -46180 8192 ) ( 1972 27548 8192 ) ( 1972 -46180 -8192 ) bricks/b_sr_25 96 0 180 1.000000 1.000000 1 0 0 +( 1964 27548 8192 ) ( 1964 -46180 8192 ) ( 1964 -46180 -8192 ) bricks/b_sr_20 -40 -12 0 1.000000 1.000000 +( 10356 27548 256 ) ( -6028 27548 256 ) ( 10356 -46180 256 ) bricks/b_sr_25 -116 13 90 1.000000 1.000000 1 0 0 +( -6028 27548 320 ) ( 10356 27548 320 ) ( 10356 -46180 320 ) bricks/b_sr_25 -116 13 90 1.000000 1.000000 1 0 0 +} +{ +( -6028 584 6224 ) ( 10356 584 6224 ) ( -6028 584 -6064 ) bricks/b_sr_25 -52 0 0 1.000000 1.000000 1 0 0 +( 10356 600 6224 ) ( -6028 600 6224 ) ( -6028 600 -6064 ) bricks/b_sr_25 -52 0 0 1.000000 1.000000 1 0 0 +( 1972 -9792 6224 ) ( 1972 6592 6224 ) ( 1972 -9792 -6064 ) bricks/b_sr_25 112 0 180 1.000000 1.000000 1 0 0 +( 1964 6592 6224 ) ( 1964 -9792 6224 ) ( 1964 -9792 -6064 ) bricks/b_sr_20 -56 -12 0 1.000000 1.000000 +( 10356 6592 272 ) ( -6028 6592 272 ) ( 10356 -9792 272 ) bricks/b_sr_25 -4 13 90 1.000000 1.000000 1 0 0 +( -6028 6592 320 ) ( 10356 6592 320 ) ( 10356 -9792 320 ) bricks/b_sr_25 -4 13 90 1.000000 1.000000 1 0 0 +} +{ +( 1964 600 272 ) ( 1972 600 272 ) ( 1972 584 272 ) common/li_sr_m14 0 0 0 1.000000 1.000000 0 1 10000 +( 1964 584 256 ) ( 1972 584 256 ) ( 1972 600 256 ) common/li_sr_m14 0 0 0 1.000000 1.000000 0 1 10000 +( 1964 600 272 ) ( 1964 584 272 ) ( 1964 584 256 ) common/li_sr_m14 8 0 0 1.000000 1.000000 0 1 10000 +( 1972 600 256 ) ( 1972 584 256 ) ( 1972 584 272 ) common/li_sr_m14 0 0 0 1.000000 1.000000 0 1 10000 +( 1972 600 272 ) ( 1964 600 272 ) ( 1964 600 256 ) common/li_sr_m14 0 0 0 1.000000 1.000000 0 1 10000 +( 1972 584 256 ) ( 1964 584 256 ) ( 1964 584 272 ) common/li_sr_m14 0 0 0 1.000000 1.000000 0 1 10000 +} +{ +( -5848 512 8192 ) ( 10536 512 8192 ) ( -5848 512 -8192 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 10536 672 8192 ) ( -5848 672 8192 ) ( -5848 672 -8192 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2152 -103248 8192 ) ( 2152 60592 8192 ) ( 2152 -103248 -8192 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2144 60592 8192 ) ( 2144 -103248 8192 ) ( 2144 -103248 -8192 ) bricks/b_sr_20 64 -12 0 1.000000 1.000000 +( 10536 60592 256 ) ( -5848 60592 256 ) ( 10536 -103248 256 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( -5848 60592 320 ) ( 10536 60592 320 ) ( 10536 -103248 320 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +} +{ +( 2152 512 320 ) ( 2144 512 320 ) ( 2143 512 328 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2152 672 320 ) ( 2152 672 328 ) ( 2143 672 328 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2152 672 320 ) ( 2152 512 320 ) ( 2152 512 328 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2144 672 320 ) ( 2144 512 320 ) ( 2152 512 320 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2143 512 328 ) ( 2143 672 328 ) ( 2152 672 328 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2144 512 320 ) ( 2144 672 320 ) ( 2143 672 328 ) bricks/b_sr_20 64 -12 0 1.000000 1.000000 +} +{ +( 2152 512 328 ) ( 2143 512 328 ) ( 2141 512 336 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2152 672 328 ) ( 2152 672 336 ) ( 2141 672 336 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2152 672 328 ) ( 2152 512 328 ) ( 2152 512 336 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2143 672 328 ) ( 2143 512 328 ) ( 2152 512 328 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2141 512 336 ) ( 2141 672 336 ) ( 2152 672 336 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2143 512 328 ) ( 2143 672 328 ) ( 2141 672 336 ) bricks/b_sr_20 64 -12 0 1.000000 1.000000 +} +{ +( 2152 512 336 ) ( 2141 512 336 ) ( 2138 512 344 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2152 672 336 ) ( 2152 672 344 ) ( 2138 672 344 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2152 672 336 ) ( 2152 512 336 ) ( 2152 512 344 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2141 672 336 ) ( 2141 512 336 ) ( 2152 512 336 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2138 512 344 ) ( 2138 672 344 ) ( 2152 672 344 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2141 512 336 ) ( 2141 672 336 ) ( 2138 672 344 ) bricks/b_sr_20 64 -12 0 1.000000 1.000000 +} +{ +( 2152 512 344 ) ( 2138 512 344 ) ( 2133 512 352 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2152 672 344 ) ( 2152 672 352 ) ( 2133 672 352 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2152 672 344 ) ( 2152 512 344 ) ( 2152 512 352 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2138 672 344 ) ( 2138 512 344 ) ( 2152 512 344 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2133 512 352 ) ( 2133 672 352 ) ( 2152 672 352 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2138 512 344 ) ( 2138 672 344 ) ( 2133 672 352 ) bricks/b_sr_20 64 -12 0 1.000000 1.000000 +} +{ +( 2152 512 352 ) ( 2133 512 352 ) ( 2126 512 359 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2152 672 352 ) ( 2152 672 359 ) ( 2126 672 359 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2152 672 352 ) ( 2152 512 352 ) ( 2152 512 359 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2133 672 352 ) ( 2133 512 352 ) ( 2152 512 352 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2126 512 359 ) ( 2126 672 359 ) ( 2152 672 359 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2133 512 352 ) ( 2133 672 352 ) ( 2126 672 359 ) bricks/b_sr_20 64 -12 90 1.000000 1.000000 +} +{ +( 2152 512 359 ) ( 2126 512 359 ) ( 2118 512 365 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2152 672 359 ) ( 2152 672 365 ) ( 2118 672 365 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2152 672 359 ) ( 2152 512 359 ) ( 2152 512 365 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2126 672 359 ) ( 2126 512 359 ) ( 2152 512 359 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2118 512 365 ) ( 2118 672 365 ) ( 2152 672 365 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2118 672 365 ) ( 2118 512 365 ) ( 2126 512 359 ) bricks/b_sr_20 -12 -28 90 1.000000 1.000000 +} +{ +( 2118 512 365 ) ( 2114 512 367 ) ( 2114 512 384 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2114 672 367 ) ( 2118 672 365 ) ( 2118 672 384 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2118 672 365 ) ( 2118 512 365 ) ( 2118 512 384 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2114 512 367 ) ( 2114 672 367 ) ( 2114 672 384 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2114 512 384 ) ( 2114 672 384 ) ( 2118 672 384 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2114 672 367 ) ( 2114 512 367 ) ( 2118 512 365 ) bricks/b_sr_20 -12 -28 90 1.000000 1.000000 +} +{ +( -5848 512 8192 ) ( 10536 512 8192 ) ( -5848 512 -8192 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 10536 672 8192 ) ( -5848 672 8192 ) ( -5848 672 -8192 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2152 -103248 8192 ) ( 2152 60592 8192 ) ( 2152 -103248 -8192 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2118 60592 8192 ) ( 2118 -103248 8192 ) ( 2118 -103248 -8192 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 10536 60592 365 ) ( -5848 60592 365 ) ( 10536 -103248 365 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( -5848 60592 384 ) ( 10536 60592 384 ) ( 10536 -103248 384 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +} +{ +( 2114 512 367 ) ( 2110 512 369 ) ( 2110 512 384 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2110 672 369 ) ( 2114 672 367 ) ( 2114 672 384 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2114 672 367 ) ( 2114 512 367 ) ( 2114 512 384 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2110 512 369 ) ( 2110 672 369 ) ( 2110 672 384 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2110 512 384 ) ( 2110 672 384 ) ( 2114 672 384 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2110 672 369 ) ( 2110 512 369 ) ( 2114 512 367 ) bricks/b_sr_20 -12 -28 90 1.000000 1.000000 +} +{ +( 2104 512 371 ) ( 2096 512 372 ) ( 2096 512 384 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2096 672 372 ) ( 2104 672 371 ) ( 2104 672 384 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2104 672 371 ) ( 2104 512 371 ) ( 2104 512 384 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2096 512 372 ) ( 2096 672 372 ) ( 2096 672 384 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2096 512 384 ) ( 2096 672 384 ) ( 2104 672 384 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2096 672 372 ) ( 2096 512 372 ) ( 2104 512 371 ) bricks/b_sr_20 -12 -28 90 1.000000 1.000000 +} +{ +( -5848 512 8192 ) ( 10536 512 8192 ) ( -5848 512 -8192 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 10536 672 8192 ) ( -5848 672 8192 ) ( -5848 672 -8192 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2096 -103248 8192 ) ( 2096 60592 8192 ) ( 2096 -103248 -8192 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2088 60592 8192 ) ( 2088 -103248 8192 ) ( 2088 -103248 -8192 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 10536 60592 372 ) ( -5848 60592 372 ) ( 10536 -103248 372 ) bricks/b_sr_20 -12 -28 90 1.000000 1.000000 +( -5848 60592 384 ) ( 10536 60592 384 ) ( 10536 -103248 384 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +} +{ +( 2110 512 369 ) ( 2104 512 371 ) ( 2104 512 384 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2104 672 371 ) ( 2110 672 369 ) ( 2110 672 384 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2110 672 369 ) ( 2110 512 369 ) ( 2110 512 384 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2104 512 371 ) ( 2104 672 371 ) ( 2104 672 384 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2104 512 384 ) ( 2104 672 384 ) ( 2110 672 384 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2104 672 371 ) ( 2104 512 371 ) ( 2110 512 369 ) bricks/b_sr_20 -12 -28 90 1.000000 1.000000 +} +{ +( 2088 512 372 ) ( 2080 512 372 ) ( 2080 512 384 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2080 672 372 ) ( 2088 672 372 ) ( 2088 672 384 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2088 672 372 ) ( 2088 512 372 ) ( 2088 512 384 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2080 512 372 ) ( 2080 672 372 ) ( 2080 672 384 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2080 672 372 ) ( 2080 512 372 ) ( 2088 512 372 ) bricks/b_sr_20 -12 -28 90 1.000000 1.000000 +( 2080 512 384 ) ( 2080 672 384 ) ( 2088 672 384 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +} +{ +( 2072 512 371 ) ( 2072 512 384 ) ( 2080 512 384 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2080 672 372 ) ( 2080 672 384 ) ( 2072 672 384 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2080 512 372 ) ( 2080 512 384 ) ( 2080 672 384 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2072 672 371 ) ( 2072 672 384 ) ( 2072 512 384 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2072 672 384 ) ( 2080 672 384 ) ( 2080 512 384 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2072 512 371 ) ( 2080 512 372 ) ( 2080 672 372 ) bricks/b_sr_20 -12 -28 90 1.000000 1.000000 +} +{ +( 2066 512 369 ) ( 2066 512 384 ) ( 2072 512 384 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2072 672 371 ) ( 2072 672 384 ) ( 2066 672 384 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2072 512 371 ) ( 2072 512 384 ) ( 2072 672 384 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2066 672 369 ) ( 2066 672 384 ) ( 2066 512 384 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2066 672 384 ) ( 2072 672 384 ) ( 2072 512 384 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2066 512 369 ) ( 2072 512 371 ) ( 2072 672 371 ) bricks/b_sr_20 -12 -28 90 1.000000 1.000000 +} +{ +( 2062 512 367 ) ( 2058 512 365 ) ( 2058 512 384 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2058 672 365 ) ( 2062 672 367 ) ( 2062 672 384 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2062 672 367 ) ( 2062 512 367 ) ( 2062 512 384 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2058 512 365 ) ( 2058 672 365 ) ( 2058 672 384 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2058 512 384 ) ( 2058 672 384 ) ( 2062 672 384 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2058 672 365 ) ( 2058 512 365 ) ( 2062 512 367 ) bricks/b_sr_20 -12 -28 90 1.000000 1.000000 +} +{ +( 2024 512 359 ) ( 2024 512 365 ) ( 2058 512 365 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2024 672 359 ) ( 2050 672 359 ) ( 2058 672 365 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2024 512 359 ) ( 2024 672 359 ) ( 2024 672 365 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2024 672 359 ) ( 2024 512 359 ) ( 2050 512 359 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2024 512 365 ) ( 2024 672 365 ) ( 2058 672 365 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2050 672 359 ) ( 2050 512 359 ) ( 2058 512 365 ) bricks/b_sr_20 -12 -28 90 1.000000 1.000000 +} +{ +( 2066 512 369 ) ( 2062 512 367 ) ( 2062 512 384 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2062 672 367 ) ( 2066 672 369 ) ( 2066 672 384 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2066 672 369 ) ( 2066 512 369 ) ( 2066 512 384 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2062 512 367 ) ( 2062 672 367 ) ( 2062 672 384 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2062 512 384 ) ( 2062 672 384 ) ( 2066 672 384 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2062 672 367 ) ( 2062 512 367 ) ( 2066 512 369 ) bricks/b_sr_20 -12 -28 90 1.000000 1.000000 +} +{ +( -5848 512 8192 ) ( 10536 512 8192 ) ( -5848 512 -8192 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 10536 672 8192 ) ( -5848 672 8192 ) ( -5848 672 -8192 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2058 -103248 8192 ) ( 2058 60592 8192 ) ( 2058 -103248 -8192 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2024 60592 8192 ) ( 2024 -103248 8192 ) ( 2024 -103248 -8192 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 10536 60592 365 ) ( -5848 60592 365 ) ( 10536 -103248 365 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( -5848 60592 384 ) ( 10536 60592 384 ) ( 10536 -103248 384 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +} +{ +( 2024 512 352 ) ( 2024 512 359 ) ( 2050 512 359 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2024 672 352 ) ( 2043 672 352 ) ( 2050 672 359 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2024 512 352 ) ( 2024 672 352 ) ( 2024 672 359 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2024 672 352 ) ( 2024 512 352 ) ( 2043 512 352 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2024 512 359 ) ( 2024 672 359 ) ( 2050 672 359 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2043 672 352 ) ( 2043 512 352 ) ( 2050 512 359 ) bricks/b_sr_20 64 -12 90 1.000000 1.000000 +} +{ +( 2024 512 344 ) ( 2024 512 352 ) ( 2043 512 352 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2024 672 344 ) ( 2038 672 344 ) ( 2043 672 352 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2024 512 344 ) ( 2024 672 344 ) ( 2024 672 352 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2024 672 344 ) ( 2024 512 344 ) ( 2038 512 344 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2024 512 352 ) ( 2024 672 352 ) ( 2043 672 352 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2038 672 344 ) ( 2038 512 344 ) ( 2043 512 352 ) bricks/b_sr_20 64 -12 0 1.000000 1.000000 +} +{ +( 2024 512 336 ) ( 2024 512 344 ) ( 2038 512 344 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2024 672 336 ) ( 2035 672 336 ) ( 2038 672 344 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2024 512 336 ) ( 2024 672 336 ) ( 2024 672 344 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2024 672 336 ) ( 2024 512 336 ) ( 2035 512 336 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2024 512 344 ) ( 2024 672 344 ) ( 2038 672 344 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2035 672 336 ) ( 2035 512 336 ) ( 2038 512 344 ) bricks/b_sr_20 64 -12 0 1.000000 1.000000 +} +{ +( 2024 512 320 ) ( 2024 512 328 ) ( 2033 512 328 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2024 672 320 ) ( 2032 672 320 ) ( 2033 672 328 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2024 512 320 ) ( 2024 672 320 ) ( 2024 672 328 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2024 672 320 ) ( 2024 512 320 ) ( 2032 512 320 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2024 512 328 ) ( 2024 672 328 ) ( 2033 672 328 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2032 672 320 ) ( 2032 512 320 ) ( 2033 512 328 ) bricks/b_sr_20 64 -12 0 1.000000 1.000000 +} +{ +( 2024 512 328 ) ( 2024 512 336 ) ( 2035 512 336 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2024 672 328 ) ( 2033 672 328 ) ( 2035 672 336 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2024 512 328 ) ( 2024 672 328 ) ( 2024 672 336 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 2024 672 328 ) ( 2024 512 328 ) ( 2033 512 328 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2024 512 336 ) ( 2024 672 336 ) ( 2035 672 336 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( 2033 672 328 ) ( 2033 512 328 ) ( 2035 512 336 ) bricks/b_sr_20 64 -12 0 1.000000 1.000000 +} +{ +( -5848 512 8192 ) ( 10536 512 8192 ) ( -5848 512 -8192 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 10536 584 8192 ) ( -5848 584 8192 ) ( -5848 584 -8192 ) bricks/b_sr_25 24 0 0 1.000000 1.000000 1 0 0 +( 2032 -46180 8192 ) ( 2032 27548 8192 ) ( 2032 -46180 -8192 ) bricks/b_sr_20 64 -12 0 1.000000 1.000000 +( 2024 27548 8192 ) ( 2024 -46180 8192 ) ( 2024 -46180 -8192 ) bricks/b_sr_25 56 0 180 1.000000 1.000000 1 0 0 +( 10536 27548 256 ) ( -5848 27548 256 ) ( 10536 -46180 256 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +( -5848 27548 320 ) ( 10536 27548 320 ) ( 10536 -46180 320 ) bricks/b_sr_25 -76 -39 90 1.000000 1.000000 1 0 0 +} +{ +( 2024 600 256 ) ( 2024 600 320 ) ( 2032 600 320 ) bricks/b_sr_25 -104 128 0 1.000000 1.000000 1 0 0 +( 2032 672 256 ) ( 2032 672 320 ) ( 2024 672 320 ) bricks/b_sr_25 -104 128 0 1.000000 1.000000 1 0 0 +( 2032 600 256 ) ( 2032 600 320 ) ( 2032 672 320 ) bricks/b_sr_20 -24 116 0 1.000000 1.000000 +( 2024 672 256 ) ( 2024 672 320 ) ( 2024 600 320 ) bricks/b_sr_25 16 -128 180 1.000000 1.000000 1 0 0 +( 2024 600 256 ) ( 2032 600 256 ) ( 2032 672 256 ) bricks/b_sr_25 -36 -39 90 1.000000 1.000000 1 0 0 +( 2024 672 320 ) ( 2032 672 320 ) ( 2032 600 320 ) bricks/b_sr_25 -36 -39 90 1.000000 1.000000 1 0 0 +} +{ +( 2024 600 272 ) ( 2032 600 272 ) ( 2032 600 320 ) bricks/b_sr_25 -112 0 0 1.000000 1.000000 1 0 0 +( 2032 584 272 ) ( 2024 584 272 ) ( 2024 584 320 ) bricks/b_sr_25 -112 0 0 1.000000 1.000000 1 0 0 +( 2024 584 272 ) ( 2024 600 272 ) ( 2024 600 320 ) bricks/b_sr_25 -16 0 180 1.000000 1.000000 1 0 0 +( 2032 600 272 ) ( 2032 584 272 ) ( 2032 584 320 ) bricks/b_sr_20 -56 116 0 1.000000 1.000000 +( 2024 600 272 ) ( 2024 584 272 ) ( 2032 584 272 ) bricks/b_sr_25 -4 -47 90 1.000000 1.000000 1 0 0 +( 2024 584 320 ) ( 2024 600 320 ) ( 2032 600 320 ) bricks/b_sr_25 -4 -47 90 1.000000 1.000000 1 0 0 +} +{ +( 2032 584 272 ) ( 2024 584 272 ) ( 2024 600 272 ) common/li_sr_m14 -12 0 0 1.000000 1.000000 0 1 10000 +( 2032 600 256 ) ( 2024 600 256 ) ( 2024 584 256 ) common/li_sr_m14 -12 0 0 1.000000 1.000000 0 1 10000 +( 2032 584 272 ) ( 2032 600 272 ) ( 2032 600 256 ) common/li_sr_m14 8 0 0 1.000000 1.000000 0 1 10000 +( 2024 584 256 ) ( 2024 600 256 ) ( 2024 600 272 ) common/li_sr_m14 0 0 0 1.000000 1.000000 0 1 10000 +( 2024 584 272 ) ( 2032 584 272 ) ( 2032 584 256 ) common/li_sr_m14 -12 0 0 1.000000 1.000000 0 1 10000 +( 2024 600 256 ) ( 2032 600 256 ) ( 2032 600 272 ) common/li_sr_m14 -12 0 0 1.000000 1.000000 0 1 10000 +} +{ +( 6970 10584 1024 ) ( 6970 -5800 1024 ) ( -2502 -5800 1024 ) common/0_clip 0 32 0 1.000000 1.000000 65536 128 0 +( 6970 856 -70977 ) ( 6970 856 48327 ) ( -2502 856 -70977 ) common/0_clip -24 1 0 1.000000 1.000000 65536 128 0 +( 6970 840 48327 ) ( 6970 840 -70977 ) ( -2502 840 -70977 ) common/0_clip -24 1 0 1.000000 1.000000 65536 128 0 +( 2456 10584 48327 ) ( 2456 -5800 48327 ) ( 2456 10584 -70977 ) common/0_clip -8 1 0 1.000000 1.000000 65536 128 0 +( 2752 -5800 48327 ) ( 2752 10584 48327 ) ( 2752 10584 -70977 ) common/0_clip -8 1 0 1.000000 1.000000 65536 128 0 +( 6970 -3994 -52009 ) ( 6970 5093 47250 ) ( -2502 5093 47250 ) common/0_clip -24 1 0 1.000000 1.000000 65536 128 0 +} +{ +( -7288 2778 1024 ) ( 9096 2778 1024 ) ( 9096 -1574 1024 ) common/0_clip 28 4 0 1.000000 1.000000 65536 128 0 +( 2440 2778 -70977 ) ( 2440 2778 48327 ) ( 2440 -1574 -70977 ) common/0_clip -4 1 0 1.000000 1.000000 65536 128 0 +( 2456 2778 48327 ) ( 2456 2778 -70977 ) ( 2456 -1574 -70977 ) common/0_clip -4 1 0 1.000000 1.000000 65536 128 0 +( -7288 704 48327 ) ( 9096 704 48327 ) ( -7288 704 -70977 ) common/0_clip 28 1 0 1.000000 1.000000 65536 128 0 +( 9096 840 48327 ) ( -7288 840 48327 ) ( -7288 840 -70977 ) common/0_clip 28 1 0 1.000000 1.000000 65536 128 0 +( 7290 2778 -52009 ) ( -1797 2778 47250 ) ( -1797 -1574 47250 ) common/0_clip -4 1 0 1.000000 1.000000 65536 128 0 +} +{ +( 6210 10448 1024 ) ( 6210 -5936 1024 ) ( -2238 -5936 1024 ) common/0_clip 0 8 0 1.000000 1.000000 65536 128 0 +( 6210 720 -70977 ) ( 6210 720 48327 ) ( -2238 720 -70977 ) common/0_clip 0 1 0 1.000000 1.000000 65536 128 0 +( 6210 704 48327 ) ( 6210 704 -70977 ) ( -2238 704 -70977 ) common/0_clip 0 1 0 1.000000 1.000000 65536 128 0 +( 2184 10448 48327 ) ( 2184 -5936 48327 ) ( 2184 10448 -70977 ) common/0_clip -8 1 0 1.000000 1.000000 65536 128 0 +( 2448 -5936 48327 ) ( 2448 10448 48327 ) ( 2448 10448 -70977 ) common/0_clip -8 1 0 1.000000 1.000000 65536 128 0 +( 6210 -4130 -52009 ) ( 6210 4957 47250 ) ( -2238 4957 47250 ) common/0_clip 0 1 0 1.000000 1.000000 65536 128 0 +} +{ +( -7560 6176 1023 ) ( 8824 6176 1023 ) ( 8824 -6112 1023 ) common/0_clip 12 -4 0 1.000000 1.000000 65536 128 0 +( 2168 6176 -70978 ) ( 2168 6176 48326 ) ( 2168 -6112 -70978 ) common/0_clip 4 0 0 1.000000 1.000000 65536 128 0 +( 2184 6176 48326 ) ( 2184 6176 -70978 ) ( 2184 -6112 -70978 ) common/0_clip 4 0 0 1.000000 1.000000 65536 128 0 +( -7560 320 48326 ) ( 8824 320 48326 ) ( -7560 320 -70978 ) common/0_clip 12 0 0 1.000000 1.000000 65536 128 0 +( 8824 704 48326 ) ( -7560 704 48326 ) ( -7560 704 -70978 ) common/0_clip 12 0 0 1.000000 1.000000 65536 128 0 +( 7018 6176 -52011 ) ( -2069 6176 47248 ) ( -2069 -6112 47248 ) common/0_clip 4 0 0 1.000000 1.000000 65536 128 0 +} +{ +( 2428 8192 8192 ) ( 2428 -8192 8192 ) ( 2428 8192 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 536870913 0 0 +( 2432 -8192 8192 ) ( 2432 8192 8192 ) ( 2432 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 536870913 0 0 +( -8192 1240 8192 ) ( 8192 1240 8192 ) ( -8192 1240 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 536870913 0 0 +( 8192 1244 8192 ) ( -8192 1244 8192 ) ( -8192 1244 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 536870913 0 0 +( 8192 -8192 424 ) ( 8192 8192 424 ) ( -8192 -8192 424 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 536870913 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 536870913 0 0 +} +{ +( 2428 8192 8192 ) ( 2428 -8192 8192 ) ( 2428 8192 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 536870913 0 0 +( 2432 -8192 8192 ) ( 2432 8192 8192 ) ( 2432 8192 -8192 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 536870913 0 0 +( -8192 1268 8192 ) ( 8192 1268 8192 ) ( -8192 1268 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 536870913 0 0 +( 8192 1272 8192 ) ( -8192 1272 8192 ) ( -8192 1272 -8192 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 536870913 0 0 +( 8192 -8192 424 ) ( 8192 8192 424 ) ( -8192 -8192 424 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 536870913 0 0 +( 8192 8192 512 ) ( 8192 -8192 512 ) ( -8192 -8192 512 ) metals/m_mf_v2 0 0 0 2.000000 2.000000 536870913 0 0 +} +{ +( -5008 672 4773 ) ( 11376 672 4773 ) ( -5008 672 -4590 ) metals/m_mf_v2 55 48 0 2.000000 2.000000 1 0 0 +( 11376 676 4773 ) ( -5008 676 4773 ) ( -5008 676 -4590 ) metals/m_mf_v2 55 48 0 2.000000 2.000000 1 0 0 +( 2016 -9056 4773 ) ( 2016 7328 4773 ) ( 2016 -9056 -4590 ) metals/m_mf_v2 -31 48 0 2.000000 2.000000 1 0 0 +( 2012 7328 4773 ) ( 2012 -9056 4773 ) ( 2012 -9056 -4590 ) metals/m_mf_v2 -31 48 0 2.000000 2.000000 1 0 0 +( 11376 7328 338 ) ( -5008 7328 338 ) ( 11376 -9056 338 ) metals/m_mf_v2 -39 -63 0 2.000000 2.000000 1 0 0 +( -5008 7328 416 ) ( 11376 7328 416 ) ( 11376 -9056 416 ) metals/m_mf_v2 -39 -63 0 2.000000 2.000000 1 0 0 +} +{ +( -5008 672 4773 ) ( 11376 672 4773 ) ( -5008 672 -4590 ) metals/m_mf_v2 55 48 0 2.000000 2.000000 1 0 0 +( 11376 676 4773 ) ( -5008 676 4773 ) ( -5008 676 -4590 ) metals/m_mf_v2 55 48 0 2.000000 2.000000 1 0 0 +( 1988 -9056 4773 ) ( 1988 7328 4773 ) ( 1988 -9056 -4590 ) metals/m_mf_v2 -31 48 0 2.000000 2.000000 1 0 0 +( 1984 7328 4773 ) ( 1984 -9056 4773 ) ( 1984 -9056 -4590 ) metals/m_mf_v2 -31 48 0 2.000000 2.000000 1 0 0 +( 11376 7328 338 ) ( -5008 7328 338 ) ( 11376 -9056 338 ) metals/m_mf_v2 -39 -63 0 2.000000 2.000000 1 0 0 +( -5008 7328 416 ) ( 11376 7328 416 ) ( 11376 -9056 416 ) metals/m_mf_v2 -39 -63 0 2.000000 2.000000 1 0 0 +} +{ +( -5008 672 4773 ) ( 11376 672 4773 ) ( -5008 672 -4590 ) metals/m_mf_v2 55 48 0 2.000000 2.000000 1 0 0 +( 11376 676 4773 ) ( -5008 676 4773 ) ( -5008 676 -4590 ) metals/m_mf_v2 55 48 0 2.000000 2.000000 1 0 0 +( 2016 -9056 4773 ) ( 2016 7328 4773 ) ( 2016 -9056 -4590 ) metals/m_mf_v2 -31 48 0 2.000000 2.000000 1 0 0 +( 2012 7328 4773 ) ( 2012 -9056 4773 ) ( 2012 -9056 -4590 ) metals/m_mf_v2 -31 48 0 2.000000 2.000000 1 0 0 +( 11376 7328 270 ) ( -5008 7328 270 ) ( 11376 -9056 270 ) metals/m_mf_v2 -39 -63 0 2.000000 2.000000 1 0 0 +( -5008 7328 338 ) ( 11376 7328 338 ) ( 11376 -9056 338 ) metals/m_mf_v2 -39 -63 0 2.000000 2.000000 1 0 0 +} +{ +( -5008 672 4773 ) ( 11376 672 4773 ) ( -5008 672 -4590 ) metals/m_mf_v2 55 48 0 2.000000 2.000000 1 0 0 +( 11376 676 4773 ) ( -5008 676 4773 ) ( -5008 676 -4590 ) metals/m_mf_v2 55 48 0 2.000000 2.000000 1 0 0 +( 1988 -9056 4773 ) ( 1988 7328 4773 ) ( 1988 -9056 -4590 ) metals/m_mf_v2 -31 48 0 2.000000 2.000000 1 0 0 +( 1984 7328 4773 ) ( 1984 -9056 4773 ) ( 1984 -9056 -4590 ) metals/m_mf_v2 -31 48 0 2.000000 2.000000 1 0 0 +( 11376 7328 270 ) ( -5008 7328 270 ) ( 11376 -9056 270 ) metals/m_mf_v2 -39 -63 0 2.000000 2.000000 1 0 0 +( -5008 7328 338 ) ( 11376 7328 338 ) ( 11376 -9056 338 ) metals/m_mf_v2 -39 -63 0 2.000000 2.000000 1 0 0 +} +{ +( -3256 674 4773 ) ( 9032 674 4773 ) ( -3256 674 -4590 ) bricks/b_sr_20ag 109 96 0 1.000000 1.000000 536936448 128 0 +( 9032 678 4773 ) ( -3256 678 4773 ) ( -3256 678 -4590 ) bricks/b_sr_20ag 109 96 0 1.000000 1.000000 536936448 128 0 +( 2012 -5812 4773 ) ( 2012 5112 4773 ) ( 2012 -5812 -4590 ) bricks/b_sr_20ag -59 96 0 1.000000 1.000000 536936448 128 0 +( 1988 5112 4773 ) ( 1988 -5812 4773 ) ( 1988 -5812 -4590 ) bricks/b_sr_20ag -59 96 0 1.000000 1.000000 536936448 128 0 +( 9032 5112 256 ) ( -3256 5112 256 ) ( 9032 -5812 256 ) bricks/b_sr_20ag -77 -127 0 1.000000 1.000000 536936448 128 0 +( -3256 5112 416 ) ( 9032 5112 416 ) ( 9032 -5812 416 ) bricks/b_sr_20ag -77 -127 0 1.000000 1.000000 536936448 128 0 +} +{ +( 1794 5816 4933 ) ( 1794 -6472 4933 ) ( 1794 5816 -4430 ) bricks/b_sr_20ag 48 128 0 1.000000 1.000000 536936448 128 0 +( 1798 -6472 4933 ) ( 1798 5816 4933 ) ( 1798 5816 -4430 ) bricks/b_sr_20ag 48 128 0 1.000000 1.000000 536936448 128 0 +( -4692 548 4933 ) ( 6232 548 4933 ) ( -4692 548 -4430 ) bricks/b_sr_20ag 64 128 0 1.000000 1.000000 536936448 128 0 +( 6232 572 4933 ) ( -4692 572 4933 ) ( -4692 572 -4430 ) bricks/b_sr_20ag 64 128 0 1.000000 1.000000 536936448 128 0 +( 6232 -6472 416 ) ( 6232 5816 416 ) ( -4692 -6472 416 ) bricks/b_sr_20ag 128 -112 0 1.000000 1.000000 536936448 128 0 +( 6232 5816 576 ) ( 6232 -6472 576 ) ( -4692 -6472 576 ) bricks/b_sr_20ag 128 -112 0 1.000000 1.000000 536936448 128 0 +} +{ +( -632 8192 8192 ) ( -632 -8192 8192 ) ( -632 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -448 -8192 8192 ) ( -448 8192 8192 ) ( -448 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -25472 1664 8192 ) ( 28361 1664 8192 ) ( -25472 1664 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 28361 1792 8192 ) ( -25472 1792 8192 ) ( -25472 1792 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 28361 -8192 384 ) ( 28361 8192 384 ) ( -25472 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 28361 8192 400 ) ( 28361 -8192 400 ) ( -25472 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -648 8192 8192 ) ( -648 -8192 8192 ) ( -648 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -632 -8192 8192 ) ( -632 8192 8192 ) ( -632 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1664 8192 ) ( 8192 1664 8192 ) ( -8192 1664 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1720 8192 ) ( -8192 1720 8192 ) ( -8192 1720 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -648 8192 8192 ) ( -648 -8192 8192 ) ( -648 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -632 -8192 8192 ) ( -632 8192 8192 ) ( -632 8192 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( -8192 1736 8192 ) ( 8192 1736 8192 ) ( -8192 1736 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 1792 8192 ) ( -8192 1792 8192 ) ( -8192 1792 -8192 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 8388608 0 +} +{ +( -648 8192 8192 ) ( -648 -8192 8192 ) ( -648 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -632 -8192 8192 ) ( -632 8192 8192 ) ( -632 8192 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( -8192 1720 8192 ) ( 8192 1720 8192 ) ( -8192 1720 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 1736 8192 ) ( -8192 1736 8192 ) ( -8192 1736 -8192 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +( 8192 -8192 384 ) ( 8192 8192 384 ) ( -8192 -8192 384 ) common/li_sr_m19 8 8 0 1.000000 1.000000 1 1 18000 +( 8192 8192 400 ) ( 8192 -8192 400 ) ( -8192 -8192 400 ) bricks/b_mf_v2 64 -64 0 1.000000 1.000000 1 0 0 +} +{ +( 6080 1968 8192 ) ( -10304 1968 8192 ) ( 6080 1968 -8192 ) metals/mt_sr_v13 -67 0 0 2.000000 2.000000 1 8388608 0 +( -10304 1736 8192 ) ( 6080 1736 8192 ) ( 6080 1736 -8192 ) metals/mt_sr_v13 -67 0 0 2.000000 2.000000 1 8388608 0 +( -448 33288 8192 ) ( -448 -34588 8192 ) ( -448 33288 -8192 ) metals/mt_sr_v13 -71 0 0 2.000000 2.000000 1 8388608 0 +( -320 -34588 8192 ) ( -320 33288 8192 ) ( -320 33288 -8192 ) metals/mt_sr_v13 -71 0 0 2.000000 2.000000 1 8388608 0 +( -10304 -34588 384 ) ( 6080 -34588 384 ) ( -10304 33288 384 ) metals/mt_sr_v13 -83 55 0 2.000000 2.000000 1 8388608 0 +( 6080 -34588 400 ) ( -10304 -34588 400 ) ( -10304 33288 400 ) metals/mt_sr_v13 -83 55 0 2.000000 2.000000 1 8388608 0 +} +{ +( 6080 1984 8192 ) ( -10304 1984 8192 ) ( 6080 1984 -8192 ) metals/mt_sr_v13 -67 0 0 2.000000 2.000000 1 8388608 0 +( -10304 1968 8192 ) ( 6080 1968 8192 ) ( 6080 1968 -8192 ) metals/mt_sr_v13 -67 0 0 2.000000 2.000000 1 8388608 0 +( -448 9528 8192 ) ( -448 -6856 8192 ) ( -448 9528 -8192 ) metals/mt_sr_v13 -95 0 0 2.000000 2.000000 1 8388608 0 +( -392 -6856 8192 ) ( -392 9528 8192 ) ( -392 9528 -8192 ) metals/mt_sr_v13 -95 0 0 2.000000 2.000000 1 8388608 0 +( -10304 -6856 384 ) ( 6080 -6856 384 ) ( -10304 9528 384 ) metals/mt_sr_v13 -83 79 0 2.000000 2.000000 1 8388608 0 +( 6080 -6856 400 ) ( -10304 -6856 400 ) ( -10304 9528 400 ) metals/mt_sr_v13 -83 79 0 2.000000 2.000000 1 8388608 0 +} +{ +( 6080 1984 8192 ) ( -10304 1984 8192 ) ( 6080 1984 -8192 ) metals/mt_sr_v13 -67 0 0 2.000000 2.000000 1 8388608 0 +( -10304 1968 8192 ) ( 6080 1968 8192 ) ( 6080 1968 -8192 ) metals/mt_sr_v13 -67 0 0 2.000000 2.000000 1 8388608 0 +( -376 9528 8192 ) ( -376 -6856 8192 ) ( -376 9528 -8192 ) metals/mt_sr_v13 -95 0 0 2.000000 2.000000 1 8388608 0 +( -320 -6856 8192 ) ( -320 9528 8192 ) ( -320 9528 -8192 ) metals/mt_sr_v13 -95 0 0 2.000000 2.000000 1 8388608 0 +( -10304 -6856 384 ) ( 6080 -6856 384 ) ( -10304 9528 384 ) metals/mt_sr_v13 -83 79 0 2.000000 2.000000 1 8388608 0 +( 6080 -6856 400 ) ( -10304 -6856 400 ) ( -10304 9528 400 ) metals/mt_sr_v13 -83 79 0 2.000000 2.000000 1 8388608 0 +} +{ +( 6080 1984 8192 ) ( -10304 1984 8192 ) ( 6080 1984 -8192 ) bricks/b_mf_v2 -69 -64 0 1.000000 1.000000 1 0 0 +( -10304 1968 8192 ) ( 6080 1968 8192 ) ( 6080 1968 -8192 ) bricks/b_mf_v2 -69 -64 0 1.000000 1.000000 1 0 0 +( -392 9528 8192 ) ( -392 -6856 8192 ) ( -392 9528 -8192 ) bricks/b_mf_v2 -125 -64 0 1.000000 1.000000 1 0 0 +( -376 -6856 8192 ) ( -376 9528 8192 ) ( -376 9528 -8192 ) bricks/b_mf_v2 -125 -64 0 1.000000 1.000000 1 0 0 +( -10304 -6856 384 ) ( 6080 -6856 384 ) ( -10304 9528 384 ) common/li_sr_m19 8 0 0 1.000000 1.000000 1 1 18000 +( 6080 -6856 400 ) ( -10304 -6856 400 ) ( -10304 9528 400 ) bricks/b_mf_v2 -101 93 0 1.000000 1.000000 1 0 0 +} +{ +( -768 2176 168 ) ( -752 2176 168 ) ( -752 2172 164 ) metals/mt_pv_m16b 128 128 0 1.000000 1.000000 0 8390656 0 +( -752 2176 0 ) ( -768 2176 0 ) ( -768 2172 4 ) metals/mt_pv_m16b 128 128 0 1.000000 1.000000 0 8390656 0 +( -768 2176 0 ) ( -768 2176 168 ) ( -768 2172 164 ) metals/mt_pv_m16b -128 0 0 1.000000 1.000000 0 8390656 0 +( -752 2176 168 ) ( -752 2176 0 ) ( -752 2172 4 ) metals/mt_pv_m16b -128 0 0 1.000000 1.000000 0 8390656 0 +( -768 2176 168 ) ( -768 2176 0 ) ( -752 2176 0 ) metals/mt_pv_m16b 128 0 0 1.000000 1.000000 0 8390656 0 +( -752 2172 164 ) ( -752 2172 4 ) ( -768 2172 4 ) metals/mt_pv_m16b 128 0 0 1.000000 1.000000 0 8390656 0 +} +{ +( -752 2056 4 ) ( -768 2056 4 ) ( -768 2172 4 ) metals/mt_pv_m16b 128 124 0 1.000000 1.000000 0 8390656 0 +( -752 2176 0 ) ( -768 2176 0 ) ( -768 2052 0 ) metals/mt_pv_m16b 128 124 0 1.000000 1.000000 0 8390656 0 +( -768 2052 0 ) ( -768 2176 0 ) ( -768 2172 4 ) metals/mt_pv_m16b -124 -92 0 1.000000 1.000000 0 8390656 0 +( -752 2056 4 ) ( -752 2172 4 ) ( -752 2176 0 ) metals/mt_pv_m16b -124 -92 0 1.000000 1.000000 0 8390656 0 +( -768 2176 0 ) ( -752 2176 0 ) ( -752 2172 4 ) metals/mt_pv_m16b 128 -92 0 1.000000 1.000000 0 8390656 0 +( -768 2056 4 ) ( -752 2056 4 ) ( -752 2052 0 ) metals/mt_pv_m16b 128 -92 0 1.000000 1.000000 0 8390656 0 +} +{ +( -768 2056 166 ) ( -752 2056 166 ) ( -752 2052 166 ) metals/mt_pv_m16b 0 8 0 1.000000 1.000000 0 8390656 0 +( -768 2052 0 ) ( -752 2052 0 ) ( -752 2056 2 ) metals/mt_pv_m16b 0 8 0 1.000000 1.000000 0 8390656 0 +( -768 2056 2 ) ( -768 2056 166 ) ( -768 2052 166 ) metals/mt_pv_m16b -8 0 0 1.000000 1.000000 0 8390656 0 +( -752 2056 166 ) ( -752 2056 2 ) ( -752 2052 0 ) metals/mt_pv_m16b -8 0 0 1.000000 1.000000 0 8390656 0 +( -752 2056 2 ) ( -752 2056 166 ) ( -768 2056 166 ) metals/mt_pv_m16b 0 0 0 1.000000 1.000000 0 8390656 0 +( -768 2052 0 ) ( -768 2052 166 ) ( -752 2052 166 ) metals/mt_pv_m16b 0 0 0 1.000000 1.000000 0 8390656 0 +} +{ +( -768 2052 116 ) ( -752 2052 116 ) ( -752 1988 116 ) metals/mt_pv_m16b 128 54 0 1.000000 1.000000 0 8390656 0 +( -768 1988 112 ) ( -752 1988 112 ) ( -752 2052 112 ) metals/mt_pv_m16b 128 54 0 1.000000 1.000000 0 8390656 0 +( -768 2052 112 ) ( -768 2052 116 ) ( -768 1988 116 ) metals/mt_pv_m16b -54 20 0 1.000000 1.000000 0 8390656 0 +( -752 1988 112 ) ( -752 1988 116 ) ( -752 2052 116 ) metals/mt_pv_m16b -54 20 0 1.000000 1.000000 0 8390656 0 +( -752 2052 112 ) ( -752 2052 116 ) ( -768 2052 116 ) metals/mt_pv_m16b 128 20 0 1.000000 1.000000 0 8390656 0 +( -768 1988 112 ) ( -768 1988 116 ) ( -752 1988 116 ) metals/mt_pv_m16b 128 20 0 1.000000 1.000000 0 8390656 0 +} +{ +( -752 1986 168 ) ( -768 1986 168 ) ( -768 1990 164 ) metals/mt_pv_m16b 128 68 0 1.000000 1.000000 0 8390656 0 +( -752 1990 0 ) ( -768 1990 0 ) ( -768 1986 0 ) metals/mt_pv_m16b 128 70 0 1.000000 1.000000 0 8390656 0 +( -768 1986 168 ) ( -768 1986 0 ) ( -768 1990 0 ) metals/mt_pv_m16b -70 0 0 1.000000 1.000000 0 8390656 0 +( -752 1986 0 ) ( -752 1986 168 ) ( -752 1990 164 ) metals/mt_pv_m16b -70 0 0 1.000000 1.000000 0 8390656 0 +( -768 1990 164 ) ( -768 1990 0 ) ( -752 1990 0 ) metals/mt_pv_m16b 128 0 0 1.000000 1.000000 0 8390656 0 +( -752 1986 168 ) ( -752 1986 0 ) ( -768 1986 0 ) metals/mt_pv_m16b 128 0 0 1.000000 1.000000 0 8390656 0 +} +{ +( 9231 -2156 1024 ) ( -7153 -2156 1024 ) ( -7153 5524 1024 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( -497 -2156 -58938 ) ( -497 -2156 40419 ) ( -497 5524 -58938 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( -513 -2156 40419 ) ( -513 -2156 -58938 ) ( -513 5524 -58938 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( 9231 1504 40419 ) ( -7153 1504 40419 ) ( 9231 1504 -58938 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( -7153 1264 40419 ) ( 9231 1264 40419 ) ( 9231 1264 -58938 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +( -5347 -2156 -43142 ) ( 3740 -2156 39521 ) ( 3740 5524 39521 ) common/0_clip 0 0 0 1.000000 1.000000 65536 128 0 +} +{ +( 2320 6316 6208 ) ( 2320 -5972 6208 ) ( 2320 6316 -6080 ) props/box_w_m1 -20 20 0 0.750000 0.750000 0 134217728 0 +( 2368 -5972 6208 ) ( 2368 6316 6208 ) ( 2368 6316 -6080 ) props/box_w_m1 -20 20 0 0.750000 0.750000 0 134217728 0 +( -5516 640 6208 ) ( 6772 640 6208 ) ( -5516 640 -6080 ) props/box_w_m1 -20 20 0 0.750000 0.750000 0 134217728 0 +( 6772 688 6208 ) ( -5516 688 6208 ) ( -5516 688 -6080 ) props/box_w_m1 -20 20 0 0.750000 0.750000 0 134217728 0 +( 6772 -5972 256 ) ( 6772 6316 256 ) ( -5516 -5972 256 ) props/box_w_m1 -20 20 0 0.750000 0.750000 0 134217728 0 +( 6772 6316 304 ) ( 6772 -5972 304 ) ( -5516 -5972 304 ) props/box_w_m2 -20 20 0 0.750000 0.750000 0 134217728 0 +} +{ +( -800 8192 8192 ) ( -800 -8192 8192 ) ( -800 8192 -8192 ) common/li_sr_m14 8 8 0 1.000000 1.000000 1 1 60000 +( -736 -8192 8192 ) ( -736 8192 8192 ) ( -736 8192 -8192 ) common/li_sr_m10 0 0 0 1.000000 1.000000 1 1 10000 +( -8192 2456 8192 ) ( 8192 2456 8192 ) ( -8192 2456 -8192 ) common/li_sr_m10 0 0 0 1.000000 1.000000 1 1 10000 +( 8192 2472 8192 ) ( -8192 2472 8192 ) ( -8192 2472 -8192 ) common/li_sr_m10 0 0 0 1.000000 1.000000 1 1 10000 +( 8192 -8192 8 ) ( 8192 8192 8 ) ( -8192 -8192 8 ) common/li_sr_m10 0 0 0 1.000000 1.000000 1 1 10000 +( 8192 8192 24 ) ( 8192 -8192 24 ) ( -8192 -8192 24 ) common/li_sr_m10 0 0 0 1.000000 1.000000 1 1 10000 +} +{ +( -768 1984 168 ) ( -768 2176 168 ) ( -752 2176 168 ) metals/mt_pv_m16b 128 50 0 1.000000 1.000000 0 8390656 0 +( -768 2172 164 ) ( -768 1988 164 ) ( -752 1988 164 ) metals/mt_pv_m16b 128 50 0 1.000000 1.000000 0 8390656 0 +( -768 1988 164 ) ( -768 2172 164 ) ( -768 2176 168 ) metals/mt_pv_m16b -50 72 0 1.000000 1.000000 0 8390656 0 +( -752 2172 164 ) ( -752 1988 164 ) ( -752 1984 168 ) metals/mt_pv_m16b -50 72 0 1.000000 1.000000 0 8390656 0 +( -768 2172 164 ) ( -752 2172 164 ) ( -752 2176 168 ) metals/mt_pv_m16b 128 72 0 1.000000 1.000000 0 8390656 0 +( -752 1988 164 ) ( -768 1988 164 ) ( -768 1984 168 ) metals/mt_pv_m16b 128 72 0 1.000000 1.000000 0 8390656 0 +} +{ +( 320 640 480 ) ( 640 640 480 ) ( 640 576 480 ) bricks/b_mf_v2 0 -64 0 1.000000 1.000000 +( 320 576 0 ) ( 640 576 0 ) ( 640 640 0 ) bricks/b_mf_v2 0 -64 0 1.000000 1.000000 +( 320 640 480 ) ( 320 576 480 ) ( 320 576 0 ) bricks/b_mf_v2 64 128 0 1.000000 1.000000 +( 640 640 0 ) ( 640 576 0 ) ( 640 576 480 ) bricks/b_mf_v2 64 128 0 1.000000 1.000000 +( 640 640 480 ) ( 320 640 480 ) ( 320 640 0 ) bricks/b_mf_v2 0 128 0 1.000000 1.000000 +( 640 576 0 ) ( 320 576 0 ) ( 320 576 480 ) bricks/b_mf_v2 0 128 0 1.000000 1.000000 +} +{ +( -768 2304 320 ) ( -768 2432 320 ) ( -704 2432 320 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +( -704 2304 256 ) ( -704 2432 256 ) ( -768 2432 256 ) props/box_sr_m8 0 -32 0 1.000000 1.000000 0 134217728 0 +( -768 2304 320 ) ( -704 2304 320 ) ( -704 2304 256 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +( -768 2432 256 ) ( -704 2432 256 ) ( -704 2432 320 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +( -768 2432 320 ) ( -768 2304 320 ) ( -768 2304 256 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +( -704 2432 256 ) ( -704 2304 256 ) ( -704 2304 320 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +} +{ +( -576 2080 320 ) ( -576 2144 320 ) ( -512 2144 320 ) props/box_sr_m8 0 -32 0 1.000000 1.000000 0 134217728 0 +( -512 2080 256 ) ( -512 2144 256 ) ( -576 2144 256 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +( -576 2080 320 ) ( -512 2080 320 ) ( -512 2080 256 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +( -576 2144 256 ) ( -512 2144 256 ) ( -512 2144 320 ) props/box_sr_m8 0 0 0 1.000000 1.000000 0 134217728 0 +( -576 2144 320 ) ( -576 2080 320 ) ( -576 2080 256 ) props/box_sr_m8 32 0 0 1.000000 1.000000 0 134217728 0 +( -512 2144 256 ) ( -512 2080 256 ) ( -512 2080 320 ) props/box_sr_m8 32 0 0 1.000000 1.000000 0 134217728 0 +} +{ +( -352 2480 304 ) ( -304 2480 304 ) ( -304 2432 304 ) props/box_sr_m8 22 -22 0 0.750000 0.750000 0 134217728 0 +( -352 2432 256 ) ( -304 2432 256 ) ( -304 2480 256 ) props/box_sr_m8 0 22 0 0.750000 0.750000 0 134217728 0 +( -352 2480 304 ) ( -352 2432 304 ) ( -352 2432 256 ) props/box_sr_m8 22 22 0 0.750000 0.750000 0 134217728 0 +( -304 2480 256 ) ( -304 2432 256 ) ( -304 2432 304 ) props/box_sr_m8 22 22 0 0.750000 0.750000 0 134217728 0 +( -304 2480 304 ) ( -352 2480 304 ) ( -352 2480 256 ) props/box_sr_m8 22 22 0 0.750000 0.750000 0 134217728 0 +( -304 2432 256 ) ( -352 2432 256 ) ( -352 2432 304 ) props/box_sr_m8 0 22 0 0.750000 0.750000 0 134217728 0 +} +{ +( -576 2176 224 ) ( -576 1984 224 ) ( -768 1984 224 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -576 1984 168 ) ( -576 2176 168 ) ( -768 2176 168 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 0 8388608 0 +( -768 1984 224 ) ( -768 1984 168 ) ( -768 2176 168 ) bricks/b_mf_v2 0 12 0 1.000000 1.000000 +( -576 1984 168 ) ( -576 1984 224 ) ( -576 2176 224 ) bricks/b_mf_v2 0 12 0 1.000000 1.000000 +( -768 2176 224 ) ( -768 2176 168 ) ( -576 2176 168 ) bricks/b_mf_v2 0 12 0 1.000000 1.000000 +( -768 1984 168 ) ( -768 1984 224 ) ( -576 1984 224 ) bricks/b_mf_v2 0 12 0 1.000000 1.000000 +} +{ +( -736 2240 224 ) ( -576 2240 224 ) ( -576 2176 224 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -736 2176 168 ) ( -576 2176 168 ) ( -576 2240 168 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 0 8388608 0 +( -736 2240 224 ) ( -736 2176 224 ) ( -736 2176 168 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -576 2240 168 ) ( -576 2176 168 ) ( -576 2176 224 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -576 2240 224 ) ( -736 2240 224 ) ( -736 2240 168 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -576 2176 168 ) ( -736 2176 168 ) ( -736 2176 224 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +} +{ +( -734 -3520 8600 ) ( -734 12864 8600 ) ( -734 -3520 -7784 ) common/li_sr_m14 8 -16 0 1.000000 1.000000 1 1 60000 +( -768 12864 8600 ) ( -768 -3520 8600 ) ( -768 -3520 -7784 ) common/li_sr_m10 16 -8 0 1.000000 1.000000 1 1 10000 +( 3193 2216 8600 ) ( -5511 2216 8600 ) ( 3193 2216 -7784 ) metals/mt_sr_v20 6 -8 0 1.000000 1.000000 0 8388608 0 +( -5511 2200 8600 ) ( 3193 2200 8600 ) ( 3193 2200 -7784 ) metals/mt_sr_v20 6 -8 0 1.000000 1.000000 0 8388608 0 +( -5511 12864 416 ) ( -5511 -3520 416 ) ( 3193 12864 416 ) metals/mt_sr_v20 6 -16 0 1.000000 1.000000 0 8388608 0 +( -5511 -3520 432 ) ( -5511 12864 432 ) ( 3193 12864 432 ) common/li_sr_m10 6 -16 0 1.000000 1.000000 1 1 10000 +} +{ +( -734 -3264 8600 ) ( -734 13120 8600 ) ( -734 -3264 -7784 ) common/li_sr_m14 -8 -16 0 1.000000 1.000000 1 1 60000 +( -768 13120 8600 ) ( -768 -3264 8600 ) ( -768 -3264 -7784 ) common/li_sr_m10 0 -8 0 1.000000 1.000000 1 1 10000 +( 3193 2472 8600 ) ( -5511 2472 8600 ) ( 3193 2472 -7784 ) metals/mt_sr_v20 6 -8 0 1.000000 1.000000 0 8388608 0 +( -5511 2456 8600 ) ( 3193 2456 8600 ) ( 3193 2456 -7784 ) metals/mt_sr_v20 6 -8 0 1.000000 1.000000 0 8388608 0 +( -5511 13120 416 ) ( -5511 -3264 416 ) ( 3193 13120 416 ) metals/mt_sr_v20 6 48 0 1.000000 1.000000 0 8388608 0 +( -5511 -3264 432 ) ( -5511 13120 432 ) ( 3193 13120 432 ) common/li_sr_m10 -10 0 0 1.000000 1.000000 1 1 10000 +} +{ +( -1008 8256 8192 ) ( -1008 -8128 8192 ) ( -1008 8256 -8192 ) props/box_sr_m5 33 -42 0 0.750000 0.750000 1 134217728 0 +( -960 -8128 8192 ) ( -960 8256 8192 ) ( -960 8256 -8192 ) props/box_sr_m5 33 -42 0 0.750000 0.750000 1 134217728 0 +( -7544 1032 8192 ) ( 8840 1032 8192 ) ( -7544 1032 -8192 ) props/box_sr_m5 0 -41 0 0.750000 0.750000 0 134217728 0 +( 8840 1080 8192 ) ( -7544 1080 8192 ) ( -7544 1080 -8192 ) props/box_sr_m5 0 -42 0 0.750000 0.750000 0 134217728 0 +( 8840 -8128 256 ) ( 8840 8256 256 ) ( -7544 -8128 256 ) props/box_sr_m6 48 -56 0 1.000000 1.000000 1 134217728 0 +( 8840 8256 304 ) ( 8840 -8128 304 ) ( -7544 -8128 304 ) props/box_sr_m5 0 -33 0 0.750000 0.750000 1 134217728 0 +} +{ +( -64 2576 448 ) ( -32 2576 448 ) ( -32 2224 448 ) bricks/b_mf_v2 128 64 0 1.000000 1.000000 +( -64 2224 384 ) ( -32 2224 384 ) ( -32 2576 384 ) bricks/b_mf_v2 128 64 0 1.000000 1.000000 +( -64 2576 448 ) ( -64 2224 448 ) ( -64 2224 384 ) bricks/b_mf_v2 -64 64 0 1.000000 1.000000 +( -32 2576 384 ) ( -32 2224 384 ) ( -32 2224 448 ) bricks/b_mf_v2 -64 64 0 1.000000 1.000000 +( -32 2576 448 ) ( -64 2576 448 ) ( -64 2576 384 ) bricks/b_mf_v2 128 64 0 1.000000 1.000000 +( -32 2224 384 ) ( -64 2224 384 ) ( -64 2224 448 ) bricks/b_mf_v2 128 64 0 1.000000 1.000000 +} +{ +( -832 1248 768 ) ( -416 1248 768 ) ( -416 1152 768 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -832 1152 640 ) ( -416 1152 640 ) ( -416 1248 640 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -832 1248 768 ) ( -832 1152 768 ) ( -832 1152 640 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -416 1248 640 ) ( -416 1152 640 ) ( -416 1152 768 ) bricks/b_mf_v2 -151 0 0 1.000000 1.000000 +( -416 1248 768 ) ( -832 1248 768 ) ( -832 1248 640 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -416 1152 640 ) ( -832 1152 640 ) ( -832 1152 768 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +} +{ +( 1280 440 688 ) ( 1344 440 688 ) ( 1344 352 688 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 +( 1280 352 552 ) ( 1344 352 552 ) ( 1344 440 552 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 +( 1280 440 688 ) ( 1280 352 688 ) ( 1280 352 552 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 +( 1344 440 552 ) ( 1344 352 552 ) ( 1344 352 688 ) bricks/b_sr_20ag -32 48 0 1.000000 1.000000 +( 1344 440 688 ) ( 1280 440 688 ) ( 1280 440 552 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 +( 1344 352 552 ) ( 1280 352 552 ) ( 1280 352 688 ) bricks/b_sr_20ag 0 0 0 1.000000 1.000000 +} +{ +( 1280 544 712 ) ( 1344 544 712 ) ( 1344 352 712 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 1280 352 688 ) ( 1344 352 688 ) ( 1344 544 688 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 1280 544 712 ) ( 1280 352 712 ) ( 1280 352 688 ) bricks/b_sr_20 0 -80 0 1.000000 1.000000 +( 1344 544 688 ) ( 1344 352 688 ) ( 1344 352 712 ) bricks/b_sr_20 0 -80 0 1.000000 1.000000 +( 1344 544 712 ) ( 1280 544 712 ) ( 1280 544 688 ) bricks/b_sr_20 0 -80 0 1.000000 1.000000 +( 1344 352 688 ) ( 1280 352 688 ) ( 1280 352 712 ) bricks/b_sr_20 0 -80 0 1.000000 1.000000 +} +{ +( -320 2176 384 ) ( -304 2176 384 ) ( -304 1648 384 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -320 1648 256 ) ( -304 1648 256 ) ( -304 2176 256 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -320 2176 384 ) ( -320 1648 384 ) ( -320 1648 256 ) bricks/b_mf_v2a 0 0 0 1.000000 1.000000 +( -304 2176 256 ) ( -304 1648 256 ) ( -304 1648 384 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -304 2176 384 ) ( -320 2176 384 ) ( -320 2176 256 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -304 1648 256 ) ( -320 1648 256 ) ( -320 1648 384 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +} +{ +( 832 8064 8192 ) ( 832 -8320 8192 ) ( 832 8064 -8192 ) props/w_sr_m2a 41 64 0 1.300000 2.000000 1 0 0 +( 896 -8320 8192 ) ( 896 8064 8192 ) ( 896 8064 -8192 ) props/w_sr_m2a -51 64 0 1.300000 2.000000 1 0 0 +( -8192 1152 8192 ) ( 8192 1152 8192 ) ( -8192 1152 -8192 ) props/w_sr_m2a -120 64 0 1.300000 2.000000 1 0 0 +( 8192 1280 8192 ) ( -8192 1280 8192 ) ( -8192 1280 -8192 ) props/w_sr_m2a -120 64 0 1.300000 2.000000 1 0 0 +( 8192 -8320 640 ) ( 8192 8064 640 ) ( -8192 -8320 640 ) props/w_sr_m2a -120 64 0 1.300000 2.000000 1 0 0 +( 8192 8064 896 ) ( 8192 -8320 896 ) ( -8192 -8320 896 ) props/w_sr_m2a -120 64 0 1.300000 2.000000 1 0 0 +} +{ +( 832 3456 6326 ) ( 832 -2005 6326 ) ( 832 3456 -5867 ) bricks/b_sr_c27 -64 0 0 1.000000 1.000000 1 0 0 +( 896 -2005 6326 ) ( 896 3456 6326 ) ( 896 3456 -5867 ) bricks/b_sr_c27 -64 0 0 1.000000 1.000000 1 0 0 +( -8192 1088 6326 ) ( 8192 1088 6326 ) ( -8192 1088 -5867 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1152 6326 ) ( -8192 1152 6326 ) ( -8192 1152 -5867 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -2005 640 ) ( 8192 3456 640 ) ( -8192 -2005 640 ) bricks/b_sr_c27 0 64 0 1.000000 1.000000 1 0 0 +( 8192 3456 896 ) ( 8192 -2005 896 ) ( -8192 -2005 896 ) bricks/b_sr_c27 0 64 0 1.000000 1.000000 1 0 0 +} +{ +( 1792 496 384 ) ( 1792 512 384 ) ( 2168 512 384 ) common/0_skip -8 -8 0 1.000000 1.000000 0 640 0 +( 2168 496 256 ) ( 2168 512 256 ) ( 1792 512 256 ) common/0_skip -8 -8 0 1.000000 1.000000 0 640 0 +( 1792 496 384 ) ( 2168 496 384 ) ( 2168 496 256 ) common/0_skip -24 32 0 1.000000 1.000000 0 640 0 +( 1792 512 256 ) ( 2168 512 256 ) ( 2168 512 384 ) common/0_hint -24 32 0 1.000000 1.000000 0 384 0 +( 1792 512 384 ) ( 1792 496 384 ) ( 1792 496 256 ) common/0_skip -8 32 0 1.000000 1.000000 0 640 0 +( 2168 512 256 ) ( 2168 496 256 ) ( 2168 496 384 ) common/0_skip -8 32 0 1.000000 1.000000 0 640 0 +} +{ +( 1352 440 640 ) ( 1432 440 640 ) ( 1432 360 640 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +( 1432 360 640 ) ( 1428 364 636 ) ( 1352 364 636 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +( 1352 440 640 ) ( 1352 436 636 ) ( 1428 436 636 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +( 1352 360 640 ) ( 1352 364 636 ) ( 1352 436 636 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +( 1432 440 640 ) ( 1428 436 636 ) ( 1428 364 636 ) props/safe_w -39 -37 0 1.500000 1.500000 0 8388608 0 +( 1352 364 636 ) ( 1428 364 636 ) ( 1428 436 636 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +} +{ +( 1432 360 560 ) ( 1432 440 560 ) ( 1352 440 560 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +( 1352 364 564 ) ( 1428 364 564 ) ( 1432 360 560 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +( 1428 436 564 ) ( 1352 436 564 ) ( 1352 440 560 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +( 1352 436 564 ) ( 1352 364 564 ) ( 1352 360 560 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +( 1428 364 564 ) ( 1428 436 564 ) ( 1432 440 560 ) props/safe_w -39 -37 0 1.500000 1.500000 0 8388608 0 +( 1428 436 564 ) ( 1428 364 564 ) ( 1352 364 564 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +} +{ +( 1352 360 560 ) ( 1352 360 640 ) ( 1432 360 640 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +( 1352 364 564 ) ( 1352 364 636 ) ( 1352 360 640 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +( 1432 360 640 ) ( 1428 364 636 ) ( 1428 364 564 ) props/safe_w -39 -37 0 1.500000 1.500000 0 8388608 0 +( 1352 364 636 ) ( 1428 364 636 ) ( 1432 360 640 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +( 1432 360 560 ) ( 1428 364 564 ) ( 1352 364 564 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +( 1428 364 564 ) ( 1428 364 636 ) ( 1352 364 636 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +} +{ +( 1432 440 560 ) ( 1432 440 640 ) ( 1352 440 640 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +( 1352 440 640 ) ( 1352 436 636 ) ( 1352 436 564 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +( 1428 436 564 ) ( 1428 436 636 ) ( 1432 440 640 ) props/safe_w -39 -37 0 1.500000 1.500000 0 8388608 0 +( 1432 440 640 ) ( 1428 436 636 ) ( 1352 436 636 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +( 1352 436 564 ) ( 1428 436 564 ) ( 1432 440 560 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +( 1352 436 564 ) ( 1352 436 636 ) ( 1428 436 636 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +} +{ +( 1352 436 564 ) ( 1352 436 636 ) ( 1352 364 636 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +( 1352 436 636 ) ( 1356 436 636 ) ( 1356 364 636 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +( 1352 364 564 ) ( 1356 364 564 ) ( 1356 436 564 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +( 1352 364 564 ) ( 1352 364 636 ) ( 1356 364 636 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +( 1352 436 564 ) ( 1356 436 564 ) ( 1356 436 636 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +( 1356 364 564 ) ( 1356 364 636 ) ( 1356 436 636 ) props/safe_w 0 0 0 1.500000 1.500000 0 8388608 0 +} +{ +( -2240 1152 100 ) ( -2240 1152 -2 ) ( -2240 1248 100 ) props2/blanco_sign2 0 4 0 1.000000 1.000000 +( -2176 1152 -2 ) ( -2176 1152 100 ) ( -2176 1248 100 ) props2/blanco_sign2 0 0 0 1.000000 1.000000 +( -2240 1152 100 ) ( -2176 1152 100 ) ( -2176 1152 -2 ) props2/blanco_sign2 0 4 0 1.000000 1.000000 +( -2176 1152 100 ) ( -2240 1152 100 ) ( -2240 1248 100 ) props2/blanco_sign2 0 0 0 1.000000 1.000000 +( -2176 1248 100 ) ( -2240 1248 100 ) ( -2240 1152 -2 ) props2/blanco_sign2 0 4 0 1.000000 1.000000 +} +{ +( -2176 1056 100 ) ( -2176 1152 100 ) ( -2176 1152 -2 ) props2/blanco_sign2 0 0 0 1.000000 1.000000 +( -2240 1056 100 ) ( -2240 1152 -2 ) ( -2240 1152 100 ) props2/blanco_sign2 0 4 0 1.000000 1.000000 +( -2240 1152 -2 ) ( -2176 1152 -2 ) ( -2176 1152 100 ) props2/blanco_sign2 0 4 0 1.000000 1.000000 +( -2176 1056 100 ) ( -2240 1056 100 ) ( -2240 1152 100 ) props2/blanco_sign2 0 0 0 1.000000 1.000000 +( -2176 1152 -2 ) ( -2240 1152 -2 ) ( -2240 1056 100 ) props2/blanco_sign2 0 4 0 1.000000 1.000000 +} +{ +( -2176 1056 100 ) ( -2176 1152 -2 ) ( -2176 1056 0 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -2240 1056 0 ) ( -2240 1152 -2 ) ( -2240 1056 100 ) bricks/b_mf_v2 0 4 0 1.000000 1.000000 +( -2240 1056 0 ) ( -2240 1056 100 ) ( -2176 1056 100 ) bricks/b_mf_v2 256 4 0 1.000000 1.000000 +( -2176 1056 0 ) ( -2176 1152 -2 ) ( -2240 1152 -2 ) bricks/b_mf_v2 256 0 0 1.000000 1.000000 +( -2176 1152 -2 ) ( -2176 1056 100 ) ( -2240 1056 100 ) bricks/b_mf_v2 256 4 0 1.000000 1.000000 +} +{ +( -2240 1248 100 ) ( -2240 1152 -2 ) ( -2240 1248 0 ) bricks/b_mf_v2 -96 0 0 1.000000 1.000000 +( -2176 1248 0 ) ( -2176 1152 -2 ) ( -2176 1248 100 ) bricks/b_mf_v2 -96 4 0 1.000000 1.000000 +( -2176 1248 0 ) ( -2176 1248 100 ) ( -2240 1248 100 ) bricks/b_mf_v2 0 4 0 1.000000 1.000000 +( -2240 1248 0 ) ( -2240 1152 -2 ) ( -2176 1152 -2 ) bricks/b_mf_v2 0 96 0 1.000000 1.000000 +( -2240 1152 -2 ) ( -2240 1248 100 ) ( -2176 1248 100 ) bricks/b_mf_v2 0 4 0 1.000000 1.000000 +} +{ +( -2240 1568 128 ) ( -2176 1568 128 ) ( -2176 1280 128 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -2240 1280 0 ) ( -2176 1280 0 ) ( -2176 1568 0 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -2240 1568 128 ) ( -2240 1280 128 ) ( -2240 1280 0 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -2176 1568 0 ) ( -2176 1280 0 ) ( -2176 1280 128 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -2176 1568 128 ) ( -2240 1568 128 ) ( -2240 1568 0 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -2176 1280 0 ) ( -2240 1280 0 ) ( -2240 1280 128 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +} +{ +( -2240 1024 128 ) ( -2176 1024 128 ) ( -2176 736 128 ) bricks/b_mf_v2 0 -32 0 1.000000 1.000000 +( -2240 736 0 ) ( -2176 736 0 ) ( -2176 1024 0 ) bricks/b_mf_v2 0 -32 0 1.000000 1.000000 +( -2240 1024 128 ) ( -2240 736 128 ) ( -2240 736 0 ) bricks/b_mf_v2 32 0 0 1.000000 1.000000 +( -2176 1024 0 ) ( -2176 736 0 ) ( -2176 736 128 ) bricks/b_mf_v2 32 0 0 1.000000 1.000000 +( -2176 1024 128 ) ( -2240 1024 128 ) ( -2240 1024 0 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -2176 736 0 ) ( -2240 736 0 ) ( -2240 736 128 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +} +{ +( -32 2416 348 ) ( -32 2496 348 ) ( -32 2496 256 ) props2/blanco_sign2 88 0 0 0.900000 1.000000 +( -64 2416 348 ) ( -64 2496 256 ) ( -64 2496 348 ) props2/blanco_sign2 88 0 0 -0.900000 1.000000 +( -64 2496 256 ) ( -32 2496 256 ) ( -32 2496 348 ) props2/blanco_sign2 88 0 0 0.900000 1.000000 +( -32 2416 348 ) ( -64 2416 348 ) ( -64 2496 348 ) props2/blanco_sign2 88 0 0 0.900000 1.000000 +( -32 2496 256 ) ( -64 2496 256 ) ( -64 2416 348 ) props2/blanco_sign2 88 0 0 0.900000 1.000000 +} +{ +( -64 2496 348 ) ( -64 2496 256 ) ( -64 2576 348 ) props2/blanco_sign2 88 0 0 -0.900000 1.000000 +( -32 2496 256 ) ( -32 2496 348 ) ( -32 2576 348 ) props2/blanco_sign2 88 4 0 0.900000 1.000000 +( -64 2496 348 ) ( -32 2496 348 ) ( -32 2496 256 ) props2/blanco_sign2 88 8 0 0.900000 1.000000 +( -32 2496 348 ) ( -64 2496 348 ) ( -64 2576 348 ) props2/blanco_sign2 88 96 0 0.900000 1.000000 +( -32 2576 348 ) ( -64 2576 348 ) ( -64 2496 256 ) props2/blanco_sign2 88 8 0 0.900000 1.000000 +} +{ +( -64 2576 256 ) ( -64 2576 348 ) ( -64 2496 256 ) bricks/b_mf_v2 88 0 0 -0.900000 1.000000 +( -32 2576 348 ) ( -32 2576 256 ) ( -32 2496 256 ) bricks/b_mf_v2 -168 4 0 0.900000 1.000000 +( -64 2576 256 ) ( -32 2576 256 ) ( -32 2576 348 ) bricks/b_mf_v2 -168 8 0 0.900000 1.000000 +( -32 2576 256 ) ( -64 2576 256 ) ( -64 2496 256 ) bricks/b_mf_v2 -168 96 0 0.900000 1.000000 +( -32 2496 256 ) ( -64 2496 256 ) ( -64 2576 348 ) bricks/b_mf_v2 -168 8 0 0.900000 1.000000 +} +{ +( -32 2416 256 ) ( -32 2416 348 ) ( -32 2496 256 ) bricks/b_mf_v2 -1 0 0 -0.900000 1.000000 +( -64 2416 348 ) ( -64 2416 256 ) ( -64 2496 256 ) bricks/b_mf_v2 -79 4 0 0.900000 1.000000 +( -32 2416 256 ) ( -64 2416 256 ) ( -64 2416 348 ) bricks/b_mf_v2 -40 8 0 0.900000 1.000000 +( -64 2416 256 ) ( -32 2416 256 ) ( -32 2496 256 ) bricks/b_mf_v2 -40 16 0 0.900000 1.000000 +( -64 2496 256 ) ( -32 2496 256 ) ( -32 2416 348 ) bricks/b_mf_v2 -40 8 0 0.900000 1.000000 +} +{ +( -64 6078 1800 ) ( -64 -4269 1800 ) ( -64 6078 -1272 ) props2/blanco_sign2 -125 0 0 -0.900000 1.000000 +( -32 -4269 1800 ) ( -32 6078 1800 ) ( -32 6078 -1272 ) bricks/b_mf_v2 64 32 0 1.000000 1.000000 1 0 0 +( -470 2208 1800 ) ( 349 2208 1800 ) ( -470 2208 -1272 ) bricks/b_mf_v2 -128 32 0 1.000000 1.000000 1 0 0 +( 349 2400 1800 ) ( -470 2400 1800 ) ( -470 2400 -1272 ) bricks/b_mf_v2 -128 32 0 1.000000 1.000000 1 0 0 +( 349 -4269 348 ) ( 349 6078 348 ) ( -470 -4269 348 ) bricks/b_mf_v2 -128 -32 0 1.000000 1.000000 1 0 0 +( 349 6078 384 ) ( 349 -4269 384 ) ( -470 -4269 384 ) bricks/b_mf_v2 -128 -32 0 1.000000 1.000000 1 0 0 +} +{ +( -64 2304 348 ) ( -64 2304 256 ) ( -64 2384 348 ) props2/blanco_sign2 -125 0 0 -0.900000 1.000000 +( -32 2304 256 ) ( -32 2304 348 ) ( -32 2384 348 ) props2/blanco_sign2 45 4 0 0.900000 1.000000 +( -64 2304 348 ) ( -32 2304 348 ) ( -32 2304 256 ) props2/blanco_sign2 -168 8 0 0.900000 1.000000 +( -32 2304 348 ) ( -64 2304 348 ) ( -64 2384 348 ) props2/blanco_sign2 -168 -96 0 0.900000 1.000000 +( -32 2384 348 ) ( -64 2384 348 ) ( -64 2304 256 ) props2/blanco_sign2 -168 8 0 0.900000 1.000000 +} +{ +( -32 2224 348 ) ( -32 2304 348 ) ( -32 2304 256 ) props2/blanco_sign2 45 0 0 0.900000 1.000000 +( -64 2224 348 ) ( -64 2304 256 ) ( -64 2304 348 ) props2/blanco_sign2 -125 0 0 -0.900000 1.000000 +( -64 2304 256 ) ( -32 2304 256 ) ( -32 2304 348 ) props2/blanco_sign2 -168 0 0 0.900000 1.000000 +( -32 2224 348 ) ( -64 2224 348 ) ( -64 2304 348 ) props2/blanco_sign2 -168 -64 0 0.900000 1.000000 +( -32 2304 256 ) ( -64 2304 256 ) ( -64 2224 348 ) props2/blanco_sign2 -168 0 0 0.900000 1.000000 +} +{ +( -32 2224 256 ) ( -32 2224 348 ) ( -32 2304 256 ) bricks/b_mf_v2 -86 0 0 -0.900000 1.000000 +( -64 2224 348 ) ( -64 2224 256 ) ( -64 2304 256 ) bricks/b_mf_v2 6 4 0 0.900000 1.000000 +( -32 2224 256 ) ( -64 2224 256 ) ( -64 2224 348 ) bricks/b_mf_v2 -40 8 0 0.900000 1.000000 +( -64 2224 256 ) ( -32 2224 256 ) ( -32 2304 256 ) bricks/b_mf_v2 -40 -48 0 0.900000 1.000000 +( -64 2304 256 ) ( -32 2304 256 ) ( -32 2224 348 ) bricks/b_mf_v2 -40 8 0 0.900000 1.000000 +} +{ +( -64 2384 256 ) ( -64 2384 348 ) ( -64 2304 256 ) bricks/b_mf_v2 -125 0 0 -0.900000 1.000000 +( -32 2384 348 ) ( -32 2384 256 ) ( -32 2304 256 ) bricks/b_mf_v2 45 4 0 0.900000 1.000000 +( -64 2384 256 ) ( -32 2384 256 ) ( -32 2384 348 ) bricks/b_mf_v2 -40 8 0 0.900000 1.000000 +( -32 2384 256 ) ( -64 2384 256 ) ( -64 2304 256 ) bricks/b_mf_v2 -40 -96 0 0.900000 1.000000 +( -32 2304 256 ) ( -64 2304 256 ) ( -64 2384 348 ) bricks/b_mf_v2 -40 8 0 0.900000 1.000000 +} +{ +( 1456 296 320 ) ( 1792 296 320 ) ( 1792 288 320 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 1456 288 256 ) ( 1792 288 256 ) ( 1792 296 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 1456 296 320 ) ( 1456 288 320 ) ( 1456 288 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 1792 296 256 ) ( 1792 288 256 ) ( 1792 288 320 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 +( 1792 296 320 ) ( 1456 296 320 ) ( 1456 296 256 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +( 1792 288 256 ) ( 1456 288 256 ) ( 1456 288 320 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 +} +{ +( 1456 416 320 ) ( 1792 416 320 ) ( 1792 408 320 ) bricks/b_sr_20 128 120 0 1.000000 1.000000 +( 1456 408 256 ) ( 1792 408 256 ) ( 1792 416 256 ) bricks/b_sr_20 128 120 0 1.000000 1.000000 +( 1456 416 320 ) ( 1456 408 320 ) ( 1456 408 256 ) bricks/b_sr_20 -120 0 0 1.000000 1.000000 +( 1792 416 256 ) ( 1792 408 256 ) ( 1792 408 320 ) bricks/b_sr_25 -32 0 0 1.000000 1.000000 +( 1792 416 320 ) ( 1456 416 320 ) ( 1456 416 256 ) bricks/b_sr_20 128 0 0 1.000000 1.000000 +( 1792 408 256 ) ( 1456 408 256 ) ( 1456 408 320 ) bricks/b_sr_20 128 0 0 1.000000 1.000000 +} +{ +( -32 2408 512 ) ( 128 2408 512 ) ( 128 2392 512 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +( -32 2392 448 ) ( 128 2392 448 ) ( 128 2408 448 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +( -32 2408 512 ) ( -32 2392 512 ) ( -32 2392 448 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +( 128 2408 448 ) ( 128 2392 448 ) ( 128 2392 512 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +( 128 2408 512 ) ( -32 2408 512 ) ( -32 2408 448 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +( 128 2392 448 ) ( -32 2392 448 ) ( -32 2392 512 ) metals/mt_sr_v16 0 0 0 2.000000 2.000000 0 8388608 0 +} +{ +( -276 7966 8192 ) ( -276 -8418 8192 ) ( -276 7966 -8192 ) common/li_sr_v17 -13 48 0 20.000000 20.000000 1 132 0 +( -268 -8418 8192 ) ( -268 7966 8192 ) ( -268 7966 -8192 ) common/li_sr_v17 -13 48 0 20.000000 20.000000 1 132 0 +( -8388 1944 8192 ) ( 7996 1944 8192 ) ( -8388 1944 -8192 ) common/li_sr_v17 -14 48 0 20.000000 20.000000 1 132 0 +( 7996 1958 8192 ) ( -8388 1958 8192 ) ( -8388 1958 -8192 ) common/li_sr_v17 -14 48 0 20.000000 20.000000 1 132 0 +( 7996 -8418 1000 ) ( 7996 7966 1000 ) ( -8388 -8418 1000 ) common/li_sr_v17 -14 37 0 20.000000 20.000000 1 132 0 +( 7996 7966 1024 ) ( 7996 -8418 1024 ) ( -8388 -8418 1024 ) common/li_sr_v17 -14 37 0 20.000000 20.000000 1 132 0 +} +{ +( -268 1942 1000 ) ( -268 1958 1000 ) ( -268 1958 1004 ) common/li_sr_v17 -13 48 0 20.000000 20.000000 1 132 0 +( -252 1958 1000 ) ( -252 1942 1000 ) ( -252 1942 1004 ) common/li_sr_v17 -13 48 0 20.000000 20.000000 1 132 0 +( -252 1942 1000 ) ( -268 1942 1000 ) ( -268 1942 1004 ) common/li_sr_v17 -14 48 0 20.000000 20.000000 1 132 0 +( -268 1958 1000 ) ( -252 1958 1000 ) ( -252 1958 1004 ) common/li_sr_v17 -14 48 0 20.000000 20.000000 1 132 0 +( -268 1942 1000 ) ( -252 1942 1000 ) ( -252 1958 1000 ) common/li_sr_v17 -14 37 0 20.000000 20.000000 1 132 0 +( -268 1958 1004 ) ( -252 1958 1004 ) ( -252 1942 1004 ) common/li_sr_v17 -14 37 0 20.000000 20.000000 1 132 0 +} +{ +( -252 7966 8192 ) ( -252 -8418 8192 ) ( -252 7966 -8192 ) common/li_sr_v17 -13 48 0 20.000000 20.000000 1 132 0 +( -244 -8418 8192 ) ( -244 7966 8192 ) ( -244 7966 -8192 ) common/li_sr_v17 -13 48 0 20.000000 20.000000 1 132 0 +( -8388 1946 8192 ) ( 7996 1946 8192 ) ( -8388 1946 -8192 ) common/li_sr_v17 -14 48 0 20.000000 20.000000 1 132 0 +( 7996 1966 8192 ) ( -8388 1966 8192 ) ( -8388 1966 -8192 ) common/li_sr_v17 -14 48 0 20.000000 20.000000 1 132 0 +( 7996 -8418 1000 ) ( 7996 7966 1000 ) ( -8388 -8418 1000 ) common/li_sr_v17 -14 37 0 20.000000 20.000000 1 132 0 +( 7996 7966 1024 ) ( 7996 -8418 1024 ) ( -8388 -8418 1024 ) common/li_sr_v17 -14 37 0 20.000000 20.000000 1 132 0 +} +{ +( -276 7966 8192 ) ( -276 -8418 8192 ) ( -276 7966 -8192 ) common/li_sr_v17 -13 48 0 20.000000 20.000000 1 132 0 +( -252 -8418 8192 ) ( -252 7966 8192 ) ( -252 7966 -8192 ) common/li_sr_v17 -13 48 0 20.000000 20.000000 1 132 0 +( -8388 1958 8192 ) ( 7996 1958 8192 ) ( -8388 1958 -8192 ) common/li_sr_v17 -14 48 0 20.000000 20.000000 1 132 0 +( 7996 1966 8192 ) ( -8388 1966 8192 ) ( -8388 1966 -8192 ) common/li_sr_v17 -14 48 0 20.000000 20.000000 1 132 0 +( 7996 -8418 1000 ) ( 7996 7966 1000 ) ( -8388 -8418 1000 ) common/li_sr_v17 -14 37 0 20.000000 20.000000 1 132 0 +( 7996 7966 1024 ) ( 7996 -8418 1024 ) ( -8388 -8418 1024 ) common/li_sr_v17 -14 37 0 20.000000 20.000000 1 132 0 +} +{ +( 64 1784 1000 ) ( 64 1808 1000 ) ( 64 1808 1008 ) common/li_sr_v17 -22 48 0 20.000000 20.000000 1 132 0 +( 96 1808 1000 ) ( 96 1784 1000 ) ( 96 1784 1008 ) common/li_sr_v17 -22 48 0 20.000000 20.000000 1 132 0 +( 96 1784 1000 ) ( 64 1784 1000 ) ( 64 1784 1008 ) common/li_sr_v17 -23 48 0 20.000000 20.000000 1 132 0 +( 64 1808 1000 ) ( 96 1808 1000 ) ( 96 1808 1008 ) common/li_sr_v17 -23 48 0 20.000000 20.000000 1 132 0 +( 64 1784 1000 ) ( 96 1784 1000 ) ( 96 1808 1000 ) common/li_sr_v17 -23 46 0 20.000000 20.000000 1 132 0 +( 64 1808 1008 ) ( 96 1808 1008 ) ( 96 1784 1008 ) common/li_sr_v17 -23 46 0 20.000000 20.000000 1 132 0 +} +{ +( 88 7095 8192 ) ( 88 -6559 8192 ) ( 88 7095 -8192 ) common/li_sr_v17 -22 48 0 20.000000 20.000000 1 132 0 +( 96 -6559 8192 ) ( 96 7095 8192 ) ( 96 7095 -8192 ) common/li_sr_v17 -22 48 0 20.000000 20.000000 1 132 0 +( -8208 1788 8192 ) ( 8176 1788 8192 ) ( -8208 1788 -8192 ) common/li_sr_v17 -23 48 0 20.000000 20.000000 1 132 0 +( 8176 1808 8192 ) ( -8208 1808 8192 ) ( -8208 1808 -8192 ) common/li_sr_v17 -23 48 0 20.000000 20.000000 1 132 0 +( 8176 -6559 1008 ) ( 8176 7095 1008 ) ( -8208 -6559 1008 ) common/li_sr_v17 -23 46 0 20.000000 20.000000 1 132 0 +( 8176 7095 1024 ) ( 8176 -6559 1024 ) ( -8208 -6559 1024 ) common/li_sr_v17 -23 46 0 20.000000 20.000000 1 132 0 +} +{ +( 64 8152 8192 ) ( 64 -8232 8192 ) ( 64 8152 -8192 ) common/li_sr_v17 -22 48 0 20.000000 20.000000 1 132 0 +( 72 -8232 8192 ) ( 72 8152 8192 ) ( 72 8152 -8192 ) common/li_sr_v17 -22 48 0 20.000000 20.000000 1 132 0 +( -8208 1784 8192 ) ( 8176 1784 8192 ) ( -8208 1784 -8192 ) common/li_sr_v17 -23 48 0 20.000000 20.000000 1 132 0 +( 8176 1808 8192 ) ( -8208 1808 8192 ) ( -8208 1808 -8192 ) common/li_sr_v17 -23 48 0 20.000000 20.000000 1 132 0 +( 8176 -8232 1008 ) ( 8176 8152 1008 ) ( -8208 -8232 1008 ) common/li_sr_v17 -23 46 0 20.000000 20.000000 1 132 0 +( 8176 8152 1024 ) ( 8176 -8232 1024 ) ( -8208 -8232 1024 ) common/li_sr_v17 -23 46 0 20.000000 20.000000 1 132 0 +} +{ +( 72 8152 8192 ) ( 72 -8232 8192 ) ( 72 8152 -8192 ) common/li_sr_v17 -22 48 0 20.000000 20.000000 1 132 0 +( 88 -8232 8192 ) ( 88 8152 8192 ) ( 88 8152 -8192 ) common/li_sr_v17 -22 48 0 20.000000 20.000000 1 132 0 +( -8208 1800 8192 ) ( 8176 1800 8192 ) ( -8208 1800 -8192 ) common/li_sr_v17 -23 48 0 20.000000 20.000000 1 132 0 +( 8176 1808 8192 ) ( -8208 1808 8192 ) ( -8208 1808 -8192 ) common/li_sr_v17 -23 48 0 20.000000 20.000000 1 132 0 +( 8176 -8232 1008 ) ( 8176 8152 1008 ) ( -8208 -8232 1008 ) common/li_sr_v17 -23 46 0 20.000000 20.000000 1 132 0 +( 8176 8152 1024 ) ( 8176 -8232 1024 ) ( -8208 -8232 1024 ) common/li_sr_v17 -23 46 0 20.000000 20.000000 1 132 0 +} +{ +( 2676 1278 544 ) ( 2684 1278 544 ) ( 2684 1276 544 ) metals/mt_sr_mn8 -8 60 0 0.500000 0.500000 0 8388608 0 +( 2676 1276 532 ) ( 2684 1276 532 ) ( 2684 1278 532 ) metals/mt_sr_mn8 -8 28 0 0.500000 0.500000 0 8388608 0 +( 2676 1278 544 ) ( 2676 1276 544 ) ( 2676 1276 532 ) props/fire_v1 -27 -46 0 1.000000 1.000000 0 8388608 0 +( 2684 1278 532 ) ( 2684 1276 532 ) ( 2684 1276 544 ) props/fire_v1 -27 -46 0 2.000000 2.000000 0 8388608 0 +( 2684 1278 544 ) ( 2676 1278 544 ) ( 2676 1278 532 ) metals/mt_sr_mn8 -8 -14 0 0.500000 0.500000 0 8388608 0 +( 2684 1276 532 ) ( 2676 1276 532 ) ( 2676 1276 544 ) metals/mt_sr_mn8 0 32 0 0.500000 0.500000 0 8388608 0 +} +{ +( 2674 1280 551 ) ( 2686 1280 551 ) ( 2686 1278 551 ) metals/mt_sr_v16 -4 31 0 2.000000 2.000000 0 8388608 0 +( 2674 1278 528 ) ( 2686 1278 528 ) ( 2686 1280 528 ) metals/mt_sr_mn8 -8 32 0 0.500000 0.500000 0 8388608 0 +( 2674 1280 551 ) ( 2674 1278 551 ) ( 2674 1278 528 ) metals/mt_sr_mn8 0 24 0 0.500000 0.500000 0 8388608 0 +( 2686 1280 528 ) ( 2686 1278 528 ) ( 2686 1278 551 ) metals/mt_sr_mn8 0 24 0 0.500000 0.500000 0 8388608 0 +( 2686 1280 551 ) ( 2674 1280 551 ) ( 2674 1280 528 ) metals/mt_sr_mn8 -8 26 0 0.500000 0.500000 0 8388608 0 +( 2686 1278 528 ) ( 2674 1278 528 ) ( 2674 1278 551 ) props/fire_v1 -52 -20 0 2.000000 2.000000 0 8388608 0 +} +{ +( 2686 1280 551 ) ( 2688 1280 551 ) ( 2688 1276 551 ) metals/mt_sr_v16 -116 31 0 2.000000 2.000000 0 8388608 0 +( 2686 1276 528 ) ( 2688 1276 528 ) ( 2688 1280 528 ) metals/mt_sr_v16 -116 31 0 2.000000 2.000000 0 8388608 0 +( 2686 1280 551 ) ( 2686 1276 551 ) ( 2686 1276 528 ) props/fire_v1 0 64 0 2.000000 2.000000 0 8388608 0 +( 2688 1280 528 ) ( 2688 1276 528 ) ( 2688 1276 551 ) metals/mt_sr_v16 -95 -6 0 2.000000 2.000000 0 8388608 0 +( 2688 1280 551 ) ( 2686 1280 551 ) ( 2686 1280 528 ) metals/mt_sr_mn8 -24 26 0 0.500000 0.500000 0 8388608 0 +( 2688 1276 528 ) ( 2686 1276 528 ) ( 2686 1276 551 ) metals/mt_sr_mn8 0 32 0 0.500000 0.500000 0 8388608 0 +} +{ +( 2674 1278 532 ) ( 2686 1278 532 ) ( 2686 1276 532 ) props/fire_v1 -4 27 0 2.000000 2.000000 0 8388608 0 +( 2674 1276 528 ) ( 2686 1276 528 ) ( 2686 1278 528 ) metals/mt_sr_v16 -4 27 0 2.000000 2.000000 0 8388608 0 +( 2674 1278 532 ) ( 2674 1276 532 ) ( 2674 1276 528 ) metals/mt_sr_mn8 -28 24 0 0.500000 0.500000 0 8388608 0 +( 2686 1278 528 ) ( 2686 1276 528 ) ( 2686 1276 532 ) metals/mt_sr_mn8 -28 24 0 0.500000 0.500000 0 8388608 0 +( 2686 1278 532 ) ( 2674 1278 532 ) ( 2674 1278 528 ) metals/mt_sr_mn8 -8 26 0 0.500000 0.500000 0 8388608 0 +( 2686 1276 528 ) ( 2674 1276 528 ) ( 2674 1276 532 ) metals/mt_sr_mn8 0 32 0 0.500000 0.500000 0 8388608 0 +} +{ +( 2674 1278 551 ) ( 2686 1278 551 ) ( 2686 1276 551 ) metals/mt_sr_v16 -4 27 0 2.000000 2.000000 0 8388608 0 +( 2674 1276 544 ) ( 2686 1276 544 ) ( 2686 1278 544 ) props/fire_v1 -4 59 0 1.000000 1.000000 0 8388608 0 +( 2674 1278 551 ) ( 2674 1276 551 ) ( 2674 1276 544 ) metals/mt_sr_mn8 -28 2 0 0.500000 0.500000 0 8388608 0 +( 2686 1278 544 ) ( 2686 1276 544 ) ( 2686 1276 551 ) metals/mt_sr_mn8 -28 2 0 0.500000 0.500000 0 8388608 0 +( 2686 1278 551 ) ( 2674 1278 551 ) ( 2674 1278 544 ) metals/mt_sr_mn8 -8 4 0 0.500000 0.500000 0 8388608 0 +( 2686 1276 544 ) ( 2674 1276 544 ) ( 2674 1276 551 ) metals/mt_sr_mn8 0 32 0 0.500000 0.500000 0 8388608 0 +} +{ +( 2672 1280 551 ) ( 2674 1280 551 ) ( 2674 1276 551 ) metals/mt_sr_v16 -124 31 0 2.000000 2.000000 0 8388608 0 +( 2672 1276 528 ) ( 2674 1276 528 ) ( 2674 1280 528 ) metals/mt_sr_v16 -124 31 0 2.000000 2.000000 0 8388608 0 +( 2672 1280 551 ) ( 2672 1276 551 ) ( 2672 1276 528 ) metals/mt_sr_v16 -95 -6 0 2.000000 2.000000 0 8388608 0 +( 2674 1280 528 ) ( 2674 1276 528 ) ( 2674 1276 551 ) props/fire_v1 64 64 0 1.000000 1.000000 0 8388608 0 +( 2674 1280 551 ) ( 2672 1280 551 ) ( 2672 1280 528 ) metals/mt_sr_mn8 0 26 0 0.500000 0.500000 0 8388608 0 +( 2674 1276 528 ) ( 2672 1276 528 ) ( 2672 1276 551 ) metals/mt_sr_mn8 0 32 0 0.500000 0.500000 0 8388608 0 +} +{ +( 1998 1486 1000 ) ( 1998 1486 1008 ) ( 1998 1458 1008 ) common/li_sr_v17 -6 48 0 1.000000 1.000000 1 132 0 +( 2030 1462 1000 ) ( 2030 1462 1008 ) ( 2030 1486 1008 ) common/li_sr_v17 -6 48 0 1.000000 1.000000 1 132 0 +( 1998 1458 1000 ) ( 1998 1458 1008 ) ( 2030 1462 1008 ) common/li_sr_v17 2 48 0 1.000000 1.000000 1 132 0 +( 2030 1486 1000 ) ( 2030 1486 1008 ) ( 1998 1486 1008 ) common/li_sr_v17 2 48 0 1.000000 1.000000 1 132 0 +( 2030 1462 1000 ) ( 2030 1486 1000 ) ( 1998 1486 1000 ) common/li_sr_v17 2 6 0 1.000000 1.000000 1 132 0 +( 2030 1486 1008 ) ( 2030 1462 1008 ) ( 1998 1458 1008 ) common/li_sr_v17 2 6 0 1.000000 1.000000 1 132 0 +} +{ +( 2022 6536 8192 ) ( 2022 -5752 8192 ) ( 2022 6536 -8192 ) common/li_sr_v17 -6 64 0 1.000000 1.000000 1 132 0 +( 2030 -5752 8192 ) ( 2030 6536 8192 ) ( 2030 6536 -8192 ) common/li_sr_v17 -6 64 0 1.000000 1.000000 1 132 0 +( -8218 1466 8192 ) ( 8166 1466 8192 ) ( -8218 1466 -8192 ) common/li_sr_v17 2 64 0 1.000000 1.000000 1 132 0 +( 8166 1478 8192 ) ( -8218 1478 8192 ) ( -8218 1478 -8192 ) common/li_sr_v17 2 64 0 1.000000 1.000000 1 132 0 +( 8166 -5752 1008 ) ( 8166 6536 1008 ) ( -8218 -5752 1008 ) common/li_sr_v17 2 6 0 1.000000 1.000000 1 132 0 +( 8166 6536 1024 ) ( 8166 -5752 1024 ) ( -8218 -5752 1024 ) common/li_sr_v17 2 6 0 1.000000 1.000000 1 132 0 +} +{ +( 1998 1458 1008 ) ( 1998 1478 1008 ) ( 1998 1478 1024 ) common/li_sr_v17 -6 64 0 1.000000 1.000000 1 132 0 +( 2006 1478 1008 ) ( 2006 1460 1008 ) ( 2006 1460 1024 ) common/li_sr_v17 -6 64 0 1.000000 1.000000 1 132 0 +( 2006 1460 1008 ) ( 1998 1458 1008 ) ( 1998 1458 1024 ) common/li_sr_v17 2 64 0 1.000000 1.000000 1 132 0 +( 1998 1478 1008 ) ( 2006 1478 1008 ) ( 2006 1478 1024 ) common/li_sr_v17 2 64 0 1.000000 1.000000 1 132 0 +( 1998 1458 1008 ) ( 2006 1460 1008 ) ( 2006 1478 1008 ) common/li_sr_v17 2 6 0 1.000000 1.000000 1 132 0 +( 1998 1478 1024 ) ( 2006 1478 1024 ) ( 2006 1460 1024 ) common/li_sr_v17 2 6 0 1.000000 1.000000 1 132 0 +} +{ +( 1998 8222 8192 ) ( 1998 -8162 8192 ) ( 1998 8222 -8192 ) common/li_sr_v17 -6 64 0 1.000000 1.000000 1 132 0 +( 2030 -8162 8192 ) ( 2030 8222 8192 ) ( 2030 8222 -8192 ) common/li_sr_v17 -6 64 0 1.000000 1.000000 1 132 0 +( -8218 1478 8192 ) ( 8166 1478 8192 ) ( -8218 1478 -8192 ) common/li_sr_v17 2 64 0 1.000000 1.000000 1 132 0 +( 8166 1486 8192 ) ( -8218 1486 8192 ) ( -8218 1486 -8192 ) common/li_sr_v17 2 64 0 1.000000 1.000000 1 132 0 +( 8166 -8162 1008 ) ( 8166 8222 1008 ) ( -8218 -8162 1008 ) common/li_sr_v17 2 6 0 1.000000 1.000000 1 132 0 +( 8166 8222 1024 ) ( 8166 -8162 1024 ) ( -8218 -8162 1024 ) common/li_sr_v17 2 6 0 1.000000 1.000000 1 132 0 +} +{ +( -192 2048 144 ) ( -192 2064 144 ) ( -192 2064 152 ) metals/mt_pv_m16b 0 0 0 1.000000 1.000000 0 8390656 0 +( -128 2064 152 ) ( -128 2064 144 ) ( -128 2048 144 ) metals/mt_pv_m16b 0 0 0 1.000000 1.000000 0 8390656 0 +( -128 2048 144 ) ( -192 2048 144 ) ( -192 2064 152 ) metals/mt_pv_m16b 0 0 0 1.000000 1.000000 0 8390656 0 +( -192 2064 144 ) ( -128 2064 144 ) ( -128 2064 152 ) metals/mt_pv_m16b 0 0 0 1.000000 1.000000 0 8390656 0 +( -192 2048 144 ) ( -128 2048 144 ) ( -128 2064 144 ) common/li_pv_v4a 0 0 0 1.000000 1.000000 0 1 8000 +} +{ +( -2160 864 144 ) ( -2176 864 144 ) ( -2176 864 152 ) metals/mt_pv_m16b -105 0 0 1.000000 1.000000 0 8390656 0 +( -2176 928 152 ) ( -2176 928 144 ) ( -2160 928 144 ) metals/mt_pv_m16b -105 0 0 1.000000 1.000000 0 8390656 0 +( -2160 928 144 ) ( -2160 864 144 ) ( -2176 864 152 ) metals/mt_pv_m16b 85 123 0 1.000000 1.000000 0 8390656 0 +( -2176 864 144 ) ( -2176 928 144 ) ( -2176 928 152 ) metals/mt_pv_m16b 67 0 0 1.000000 1.000000 0 8390656 0 +( -2160 864 144 ) ( -2160 928 144 ) ( -2176 928 144 ) common/li_pv_v4a 32 0 90 1.000000 1.000000 0 1 15000 +} +{ +( -2160 1120 144 ) ( -2176 1120 144 ) ( -2176 1120 152 ) metals/mt_pv_m16b 23 0 0 1.000000 1.000000 0 8390656 0 +( -2176 1184 152 ) ( -2176 1184 144 ) ( -2160 1184 144 ) metals/mt_pv_m16b 23 0 0 1.000000 1.000000 0 8390656 0 +( -2160 1184 144 ) ( -2160 1120 144 ) ( -2176 1120 152 ) metals/mt_pv_m16b 85 123 0 1.000000 1.000000 0 8390656 0 +( -2176 1120 144 ) ( -2176 1184 144 ) ( -2176 1184 152 ) metals/mt_pv_m16b -61 0 0 1.000000 1.000000 0 8390656 0 +( -2160 1120 144 ) ( -2160 1184 144 ) ( -2176 1184 144 ) common/li_pv_v4a 32 0 90 1.000000 1.000000 0 1 15000 +} +{ +( -2160 1376 144 ) ( -2176 1376 144 ) ( -2176 1376 152 ) metals/mt_pv_m16b 23 0 0 1.000000 1.000000 0 8390656 0 +( -2176 1440 152 ) ( -2176 1440 144 ) ( -2160 1440 144 ) metals/mt_pv_m16b 23 0 0 1.000000 1.000000 0 8390656 0 +( -2160 1440 144 ) ( -2160 1376 144 ) ( -2176 1376 152 ) metals/mt_pv_m16b 85 123 0 1.000000 1.000000 0 8390656 0 +( -2176 1376 144 ) ( -2176 1440 144 ) ( -2176 1440 152 ) metals/mt_pv_m16b -61 0 0 1.000000 1.000000 0 8390656 0 +( -2160 1376 144 ) ( -2160 1440 144 ) ( -2176 1440 144 ) common/li_pv_v4a 32 0 90 1.000000 1.000000 0 1 15000 +} +{ +( -80 2336 408 ) ( -64 2336 408 ) ( -64 2336 416 ) metals/mt_pv_m16b -19 8 0 1.000000 1.000000 0 8390656 0 +( -64 2272 416 ) ( -64 2272 408 ) ( -80 2272 408 ) metals/mt_pv_m16b -19 8 0 1.000000 1.000000 0 8390656 0 +( -80 2272 408 ) ( -80 2336 408 ) ( -64 2336 416 ) metals/mt_pv_m16b 43 -5 0 1.000000 1.000000 0 8390656 0 +( -64 2336 408 ) ( -64 2272 408 ) ( -64 2272 416 ) metals/mt_pv_m16b 67 8 0 1.000000 1.000000 0 8390656 0 +( -80 2336 408 ) ( -80 2272 408 ) ( -64 2272 408 ) common/li_pv_v4a 32 0 90 1.000000 1.000000 0 1 15000 +} +{ +( -80 2528 408 ) ( -64 2528 408 ) ( -64 2528 416 ) metals/mt_pv_m16b -19 8 0 1.000000 1.000000 0 8390656 0 +( -64 2464 416 ) ( -64 2464 408 ) ( -80 2464 408 ) metals/mt_pv_m16b -19 8 0 1.000000 1.000000 0 8390656 0 +( -80 2464 408 ) ( -80 2528 408 ) ( -64 2528 416 ) metals/mt_pv_m16b -85 59 0 1.000000 1.000000 0 8390656 0 +( -64 2528 408 ) ( -64 2464 408 ) ( -64 2464 416 ) metals/mt_pv_m16b -125 8 0 1.000000 1.000000 0 8390656 0 +( -80 2528 408 ) ( -80 2464 408 ) ( -64 2464 408 ) common/li_pv_v4a -32 0 90 1.000000 1.000000 0 1 15000 +} +{ +( 0 320 0 ) ( 0 320 268 ) ( -64 320 268 ) bricks/c_pv_18a 32 -96 0 2.000000 2.000000 1 0 0 +( -64 256 0 ) ( -64 256 292 ) ( 0 256 292 ) bricks/c_pv_18a 32 -96 0 2.000000 2.000000 1 0 0 +( -64 320 0 ) ( -64 320 268 ) ( -64 256 292 ) bricks/c_pv_18a 32 -96 0 2.000000 2.000000 1 0 0 +( 0 256 0 ) ( 0 256 292 ) ( 0 320 268 ) bricks/c_pv_18a 32 -96 0 2.000000 2.000000 1 0 0 +( -64 256 0 ) ( 0 256 0 ) ( 0 320 0 ) bricks/c_pv_18a 32 32 0 2.000000 2.000000 1 0 0 +( 0 256 292 ) ( -64 256 292 ) ( -64 320 268 ) bricks/c_pv_18a -120 8 270 2.000000 2.000000 1 0 0 +} +{ +( -768 320 -4 ) ( -768 320 264 ) ( -832 320 264 ) bricks/c_pv_18a 32 -98 0 2.000000 2.000000 1 0 0 +( -832 256 -4 ) ( -832 256 288 ) ( -768 256 288 ) bricks/c_pv_18a 32 -98 0 2.000000 2.000000 1 0 0 +( -832 320 -4 ) ( -832 320 264 ) ( -832 256 288 ) bricks/c_pv_18a 32 -98 0 2.000000 2.000000 1 0 0 +( -768 256 -4 ) ( -768 256 288 ) ( -768 320 264 ) bricks/c_pv_18a 32 -98 0 2.000000 2.000000 1 0 0 +( -832 256 -4 ) ( -768 256 -4 ) ( -768 320 -4 ) bricks/c_pv_18a 32 32 0 2.000000 2.000000 1 0 0 +( -768 256 288 ) ( -832 256 288 ) ( -832 320 264 ) bricks/c_pv_18a -120 -120 270 2.000000 2.000000 1 0 0 +} +{ +( -384 320 0 ) ( -384 320 268 ) ( -448 320 268 ) bricks/c_pv_18a 96 -96 0 2.000000 2.000000 1 0 0 +( -448 256 0 ) ( -448 256 292 ) ( -384 256 292 ) bricks/c_pv_18a 96 -96 0 2.000000 2.000000 1 0 0 +( -448 320 0 ) ( -448 320 268 ) ( -448 256 292 ) bricks/c_pv_18a -96 -96 0 2.000000 2.000000 1 0 0 +( -384 256 0 ) ( -384 256 292 ) ( -384 320 268 ) bricks/c_pv_18a -96 -96 0 2.000000 2.000000 1 0 0 +( -448 256 0 ) ( -384 256 0 ) ( -384 320 0 ) bricks/c_pv_18a 96 32 0 2.000000 2.000000 1 0 0 +( -384 256 292 ) ( -448 256 292 ) ( -448 320 268 ) bricks/c_pv_18a 8 -184 270 2.000000 2.000000 1 0 0 +} +{ +( -752 1381 16064 ) ( -752 -960 16064 ) ( -752 1381 -16704 ) props/w_sr_m6d -65 -81 180 1.000000 1.000000 0 1 400 +( -464 -960 16064 ) ( -464 1381 16064 ) ( -464 1381 -16704 ) props/w_sr_m6d -65 -81 180 1.000000 1.000000 0 1 400 +( -4136 192 16064 ) ( 3237 192 16064 ) ( -4136 192 -16704 ) props/w_sr_m6d 0 -17 0 1.000000 1.000000 0 1 400 +( 3237 256 16064 ) ( -4136 256 16064 ) ( -4136 256 -16704 ) props/w_sr_m6d -34 0 0 1.120000 1.000000 0 0 600 +( 3237 -960 128 ) ( 3237 1381 128 ) ( -4136 -960 128 ) props/w_sr_m6d -65 0 270 1.000000 1.000000 0 1 400 +( 3237 1381 256 ) ( 3237 -960 256 ) ( -4136 -960 256 ) props/w_sr_m6d -65 0 270 1.000000 1.000000 0 1 400 +} +{ +( -464 1381 16064 ) ( -464 -960 16064 ) ( -464 1381 -16704 ) bricks/b_sr_c27 64 0 0 1.000000 1.000000 1 0 0 +( -368 -960 16064 ) ( -368 1381 16064 ) ( -368 1381 -16704 ) bricks/b_sr_c27 64 0 0 1.000000 1.000000 1 0 0 +( -24944 192 16064 ) ( 24208 192 16064 ) ( -24944 192 -16704 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 24208 256 16064 ) ( -24944 256 16064 ) ( -24944 256 -16704 ) bricks/b_sr_c27 0 0 0 1.000000 1.000000 1 0 0 +( 24208 -960 128 ) ( 24208 1381 128 ) ( -24944 -960 128 ) bricks/b_sr_c27 0 -64 0 1.000000 1.000000 1 0 0 +( 24208 1381 256 ) ( 24208 -960 256 ) ( -24944 -960 256 ) bricks/b_sr_c27 0 -64 0 1.000000 1.000000 1 0 0 +} +{ +( -1152 2496 128 ) ( -1024 2496 128 ) ( -1024 2368 128 ) props/box_sr_m6s 0 0 0 1.000000 1.000000 0 134217728 0 +( -1152 2368 0 ) ( -1024 2368 0 ) ( -1024 2496 0 ) props/box_sr_m6s 0 0 0 1.000000 1.000000 0 134217728 0 +( -1152 2496 128 ) ( -1152 2368 128 ) ( -1152 2368 0 ) props/box_sr_m6sa 0 0 0 1.000000 1.000000 0 134217728 0 +( -1024 2496 0 ) ( -1024 2368 0 ) ( -1024 2368 128 ) props/box_sr_m6sa 0 0 0 1.000000 1.000000 0 134217728 0 +( -1024 2496 128 ) ( -1152 2496 128 ) ( -1152 2496 0 ) props/box_sr_m6sa 0 0 0 1.000000 1.000000 0 134217728 0 +( -1024 2368 0 ) ( -1152 2368 0 ) ( -1152 2368 128 ) props/box_sr_m6sa 0 0 0 1.000000 1.000000 0 134217728 0 +} +{ +( 2336 19433 16000 ) ( 2336 -21527 16000 ) ( 2336 19433 -16768 ) wood/wd_st_m3 0 0 0 1.000000 1.000000 1 0 0 +( 2400 -21527 16000 ) ( 2400 19433 16000 ) ( 2400 19433 -16768 ) wood/wd_st_m3 0 0 0 1.000000 1.000000 1 0 0 +( -8064 688 16000 ) ( 8320 688 16000 ) ( -8064 688 -16768 ) wood/wd_st_m3 48 0 0 1.000000 1.000000 1 0 0 +( 8320 698 16000 ) ( -8064 698 16000 ) ( -8064 698 -16768 ) wood/wd_st_m3 0 0 0 1.500000 1.000000 1 0 0 +( 8320 -21527 384 ) ( 8320 19433 384 ) ( -8064 -21527 384 ) wood/wd_st_m3 0 0 0 1.000000 1.000000 1 0 0 +( 8320 19433 640 ) ( 8320 -21527 640 ) ( -8064 -21527 640 ) wood/wd_st_m3 0 0 0 1.000000 1.000000 1 0 0 +} +{ +( -1446 2621 318 ) ( -1434 2621 318 ) ( -1434 2619 318 ) metals/mt_sr_v16 8 -6 0 2.000000 2.000000 0 8388608 0 +( -1446 2619 311 ) ( -1434 2619 311 ) ( -1434 2621 311 ) metals/m_mf_v2a 8 26 0 2.000000 2.000000 0 8388608 0 +( -1446 2621 318 ) ( -1446 2619 318 ) ( -1446 2619 311 ) metals/mt_sr_mn8 6 -16 0 0.500000 0.500000 0 8388608 0 +( -1434 2621 311 ) ( -1434 2619 311 ) ( -1434 2619 318 ) metals/mt_sr_mn8 6 -16 0 0.500000 0.500000 0 8388608 0 +( -1434 2621 318 ) ( -1446 2621 318 ) ( -1446 2621 311 ) metals/mt_sr_mn8 8 -14 0 0.500000 0.500000 0 8388608 0 +( -1434 2619 311 ) ( -1446 2619 311 ) ( -1446 2619 318 ) metals/mt_sr_mn8 16 14 0 0.500000 0.500000 0 8388608 0 +} +{ +( -1444 2621 311 ) ( -1436 2621 311 ) ( -1436 2619 311 ) metals/mt_sr_mn8 8 -6 0 0.500000 0.500000 0 8388608 0 +( -1444 2619 299 ) ( -1436 2619 299 ) ( -1436 2621 299 ) metals/mt_sr_mn8 8 26 0 0.500000 0.500000 0 8388608 0 +( -1444 2621 311 ) ( -1444 2619 311 ) ( -1444 2619 299 ) metals/m_mf_v2a 6 -34 0 2.000000 2.000000 0 8388608 0 +( -1436 2621 299 ) ( -1436 2619 299 ) ( -1436 2619 311 ) metals/m_mf_v2a 6 -34 0 2.000000 2.000000 0 8388608 0 +( -1436 2621 311 ) ( -1444 2621 311 ) ( -1444 2621 299 ) metals/mt_sr_mn8 8 -32 0 0.500000 0.500000 0 8388608 0 +( -1436 2619 299 ) ( -1444 2619 299 ) ( -1444 2619 311 ) metals/mt_sr_mn8 16 14 0 0.500000 0.500000 0 8388608 0 +} +{ +( -1446 2623 318 ) ( -1434 2623 318 ) ( -1434 2621 318 ) metals/mt_sr_v16 8 -2 0 2.000000 2.000000 0 8388608 0 +( -1446 2621 295 ) ( -1434 2621 295 ) ( -1434 2623 295 ) metals/mt_sr_mn8 8 30 0 0.500000 0.500000 0 8388608 0 +( -1446 2623 318 ) ( -1446 2621 318 ) ( -1446 2621 295 ) metals/mt_sr_mn8 2 6 0 0.500000 0.500000 0 8388608 0 +( -1434 2623 295 ) ( -1434 2621 295 ) ( -1434 2621 318 ) metals/mt_sr_mn8 2 6 0 0.500000 0.500000 0 8388608 0 +( -1434 2623 318 ) ( -1446 2623 318 ) ( -1446 2623 295 ) metals/mt_sr_mn8 8 8 0 0.500000 0.500000 0 8388608 0 +( -1434 2621 295 ) ( -1446 2621 295 ) ( -1446 2621 318 ) metals/m_mf_v2a 24 -8 0 2.000000 2.000000 0 8388608 0 +} +{ +( -1446 2621 299 ) ( -1434 2621 299 ) ( -1434 2619 299 ) metals/m_mf_v2a 8 -6 0 2.000000 2.000000 0 8388608 0 +( -1446 2619 295 ) ( -1434 2619 295 ) ( -1434 2621 295 ) metals/mt_sr_v16 8 26 0 2.000000 2.000000 0 8388608 0 +( -1446 2621 299 ) ( -1446 2619 299 ) ( -1446 2619 295 ) metals/mt_sr_mn8 6 6 0 0.500000 0.500000 0 8388608 0 +( -1434 2621 295 ) ( -1434 2619 295 ) ( -1434 2619 299 ) metals/mt_sr_mn8 6 6 0 0.500000 0.500000 0 8388608 0 +( -1434 2621 299 ) ( -1446 2621 299 ) ( -1446 2621 295 ) metals/mt_sr_mn8 8 8 0 0.500000 0.500000 0 8388608 0 +( -1434 2619 295 ) ( -1446 2619 295 ) ( -1446 2619 299 ) metals/mt_sr_mn8 16 14 0 0.500000 0.500000 0 8388608 0 +} +{ +( -1448 2623 318 ) ( -1446 2623 318 ) ( -1446 2619 318 ) metals/mt_sr_v16 16 -2 0 2.000000 2.000000 0 8388608 0 +( -1448 2619 295 ) ( -1446 2619 295 ) ( -1446 2623 295 ) metals/mt_sr_v16 16 30 0 2.000000 2.000000 0 8388608 0 +( -1448 2623 318 ) ( -1448 2619 318 ) ( -1448 2619 295 ) metals/mt_sr_v16 2 6 0 2.000000 2.000000 0 8388608 0 +( -1446 2623 295 ) ( -1446 2619 295 ) ( -1446 2619 318 ) metals/m_mf_v2a 2 6 0 2.000000 2.000000 0 8388608 0 +( -1446 2623 318 ) ( -1448 2623 318 ) ( -1448 2623 295 ) metals/mt_sr_mn8 16 8 0 0.500000 0.500000 0 8388608 0 +( -1446 2619 295 ) ( -1448 2619 295 ) ( -1448 2619 318 ) metals/mt_sr_mn8 16 14 0 0.500000 0.500000 0 8388608 0 +} +{ +( -1434 2623 318 ) ( -1432 2623 318 ) ( -1432 2619 318 ) metals/mt_sr_v16 24 -2 0 2.000000 2.000000 0 8388608 0 +( -1434 2619 295 ) ( -1432 2619 295 ) ( -1432 2623 295 ) metals/mt_sr_v16 24 30 0 2.000000 2.000000 0 8388608 0 +( -1434 2623 318 ) ( -1434 2619 318 ) ( -1434 2619 295 ) metals/m_mf_v2a 2 6 0 2.000000 2.000000 0 8388608 0 +( -1432 2623 295 ) ( -1432 2619 295 ) ( -1432 2619 318 ) metals/mt_sr_v16 2 6 0 2.000000 2.000000 0 8388608 0 +( -1432 2623 318 ) ( -1434 2623 318 ) ( -1434 2623 295 ) metals/mt_sr_mn8 24 8 0 0.500000 0.500000 0 8388608 0 +( -1432 2619 295 ) ( -1434 2619 295 ) ( -1434 2619 318 ) metals/mt_sr_mn8 16 14 0 0.500000 0.500000 0 8388608 0 +} +{ +( -674 1986 63 ) ( -686 1986 63 ) ( -686 1988 63 ) metals/mt_sr_v16 12 -2 0 2.000000 2.000000 0 8388608 0 +( -674 1988 56 ) ( -686 1988 56 ) ( -686 1986 56 ) metals/m_mf_v2a -52 31 0 2.000000 2.000000 0 8388608 0 +( -674 1986 63 ) ( -674 1988 63 ) ( -674 1988 56 ) metals/mt_sr_mn8 20 -14 0 0.500000 0.500000 0 8388608 0 +( -686 1986 56 ) ( -686 1988 56 ) ( -686 1988 63 ) metals/mt_sr_mn8 20 -14 0 0.500000 0.500000 0 8388608 0 +( -686 1986 63 ) ( -674 1986 63 ) ( -674 1986 56 ) metals/mt_sr_mn8 -8 -12 0 0.500000 0.500000 0 8388608 0 +( -686 1988 56 ) ( -674 1988 56 ) ( -674 1988 63 ) metals/mt_sr_mn8 0 -48 0 0.500000 0.500000 0 8388608 0 +} +{ +( -676 1986 56 ) ( -684 1986 56 ) ( -684 1988 56 ) metals/mt_sr_mn8 -8 -52 0 0.500000 0.500000 0 8388608 0 +( -676 1988 44 ) ( -684 1988 44 ) ( -684 1986 44 ) metals/mt_sr_mn8 -8 -20 0 0.500000 0.500000 0 8388608 0 +( -676 1986 56 ) ( -676 1988 56 ) ( -676 1988 44 ) metals/m_mf_v2a 2 -34 0 2.000000 2.000000 0 8388608 0 +( -684 1986 44 ) ( -684 1988 44 ) ( -684 1988 56 ) metals/m_mf_v2a 2 -34 0 2.000000 2.000000 0 8388608 0 +( -684 1986 56 ) ( -676 1986 56 ) ( -676 1986 44 ) metals/mt_sr_mn8 -8 -30 0 0.500000 0.500000 0 8388608 0 +( -684 1988 44 ) ( -676 1988 44 ) ( -676 1988 56 ) metals/mt_sr_mn8 0 -48 0 0.500000 0.500000 0 8388608 0 +} +{ +( -674 1984 63 ) ( -686 1984 63 ) ( -686 1986 63 ) metals/mt_sr_v16 12 3 0 2.000000 2.000000 0 8388608 0 +( -674 1986 40 ) ( -686 1986 40 ) ( -686 1984 40 ) metals/mt_sr_mn8 -8 -16 0 0.500000 0.500000 0 8388608 0 +( -674 1984 63 ) ( -674 1986 63 ) ( -674 1986 40 ) metals/mt_sr_mn8 16 8 0 0.500000 0.500000 0 8388608 0 +( -686 1984 40 ) ( -686 1986 40 ) ( -686 1986 63 ) metals/mt_sr_mn8 16 8 0 0.500000 0.500000 0 8388608 0 +( -686 1984 63 ) ( -674 1984 63 ) ( -674 1984 40 ) metals/mt_sr_mn8 -8 10 0 0.500000 0.500000 0 8388608 0 +( -686 1986 40 ) ( -674 1986 40 ) ( -674 1986 63 ) metals/m_mf_v2a -36 -8 0 2.000000 2.000000 0 8388608 0 +} +{ +( -674 1986 44 ) ( -686 1986 44 ) ( -686 1988 44 ) metals/m_mf_v2a -52 -2 0 2.000000 2.000000 0 8388608 0 +( -674 1988 40 ) ( -686 1988 40 ) ( -686 1986 40 ) metals/mt_sr_v16 12 -2 0 2.000000 2.000000 0 8388608 0 +( -674 1986 44 ) ( -674 1988 44 ) ( -674 1988 40 ) metals/mt_sr_mn8 20 8 0 0.500000 0.500000 0 8388608 0 +( -686 1986 40 ) ( -686 1988 40 ) ( -686 1988 44 ) metals/mt_sr_mn8 20 8 0 0.500000 0.500000 0 8388608 0 +( -686 1986 44 ) ( -674 1986 44 ) ( -674 1986 40 ) metals/mt_sr_mn8 -8 10 0 0.500000 0.500000 0 8388608 0 +( -686 1988 40 ) ( -674 1988 40 ) ( -674 1988 44 ) metals/mt_sr_mn8 0 -48 0 0.500000 0.500000 0 8388608 0 +} +{ +( -672 1984 63 ) ( -674 1984 63 ) ( -674 1988 63 ) metals/mt_sr_v16 20 3 0 2.000000 2.000000 0 8388608 0 +( -672 1988 40 ) ( -674 1988 40 ) ( -674 1984 40 ) metals/mt_sr_v16 20 3 0 2.000000 2.000000 0 8388608 0 +( -672 1984 63 ) ( -672 1988 63 ) ( -672 1988 40 ) metals/mt_sr_v16 -67 -26 0 2.000000 2.000000 0 8388608 0 +( -674 1984 40 ) ( -674 1988 40 ) ( -674 1988 63 ) metals/m_mf_v2a -3 -58 0 2.000000 2.000000 0 8388608 0 +( -674 1984 63 ) ( -672 1984 63 ) ( -672 1984 40 ) metals/mt_sr_mn8 0 10 0 0.500000 0.500000 0 8388608 0 +( -674 1988 40 ) ( -672 1988 40 ) ( -672 1988 63 ) metals/mt_sr_mn8 0 -48 0 0.500000 0.500000 0 8388608 0 +} +{ +( -686 1984 63 ) ( -688 1984 63 ) ( -688 1988 63 ) metals/mt_sr_v16 28 3 0 2.000000 2.000000 0 8388608 0 +( -686 1988 40 ) ( -688 1988 40 ) ( -688 1984 40 ) metals/mt_sr_v16 28 3 0 2.000000 2.000000 0 8388608 0 +( -686 1984 63 ) ( -686 1988 63 ) ( -686 1988 40 ) metals/m_mf_v2a -3 -58 0 2.000000 2.000000 0 8388608 0 +( -688 1984 40 ) ( -688 1988 40 ) ( -688 1988 63 ) metals/mt_sr_v16 -67 -26 0 2.000000 2.000000 0 8388608 0 +( -688 1984 63 ) ( -686 1984 63 ) ( -686 1984 40 ) metals/mt_sr_mn8 -24 10 0 0.500000 0.500000 0 8388608 0 +( -688 1988 40 ) ( -686 1988 40 ) ( -686 1988 63 ) metals/mt_sr_mn8 0 -48 0 0.500000 0.500000 0 8388608 0 +} +{ +( -656 8192 8192 ) ( -656 -8192 8192 ) ( -656 8192 -8192 ) props/safe_w -128 0 0 1.000000 1.000000 +( -576 -8192 8192 ) ( -576 8192 8192 ) ( -576 8192 -8192 ) bricks/c_pv_m2 -128 0 0 1.000000 1.000000 1 0 0 +( -3319 2240 8192 ) ( 2533 2240 8192 ) ( -3319 2240 -8192 ) bricks/b_mf_v2 -128 32 0 1.000000 1.000000 1 0 0 +( 2533 2624 8192 ) ( -3319 2624 8192 ) ( -3319 2624 -8192 ) bricks/c_pv_m2 -128 0 0 1.000000 1.000000 1 0 0 +( 2533 -8192 48 ) ( 2533 8192 48 ) ( -3319 -8192 48 ) bricks/c_pv_m2 -128 128 0 1.000000 1.000000 1 0 0 +( 2533 8192 128 ) ( 2533 -8192 128 ) ( -3319 -8192 128 ) bricks/c_pv_m2 -128 128 0 1.000000 1.000000 1 0 0 +} +{ +( -704 2624 64 ) ( -656 2624 64 ) ( -656 2240 64 ) props/safe_w 0 0 0 1.000000 1.000000 +( -704 2240 48 ) ( -656 2240 48 ) ( -656 2624 48 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -704 2624 64 ) ( -704 2240 64 ) ( -704 2240 48 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -656 2624 48 ) ( -656 2240 48 ) ( -656 2240 64 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -656 2624 64 ) ( -704 2624 64 ) ( -704 2624 48 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +( -656 2240 48 ) ( -704 2240 48 ) ( -704 2240 64 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 +} +{ +( -704 2624 128 ) ( -656 2624 128 ) ( -656 2240 128 ) bricks/b_mf_v2 128 128 0 1.000000 1.000000 +( -704 2240 112 ) ( -656 2240 112 ) ( -656 2624 112 ) props/safe_w 128 128 0 1.000000 1.000000 +( -704 2624 128 ) ( -704 2240 128 ) ( -704 2240 112 ) bricks/b_mf_v2 -128 64 0 1.000000 1.000000 +( -656 2624 112 ) ( -656 2240 112 ) ( -656 2240 128 ) bricks/b_mf_v2 -128 64 0 1.000000 1.000000 +( -656 2624 128 ) ( -704 2624 128 ) ( -704 2624 112 ) bricks/b_mf_v2 128 64 0 1.000000 1.000000 +( -656 2240 112 ) ( -704 2240 112 ) ( -704 2240 128 ) bricks/b_mf_v2 128 64 0 1.000000 1.000000 +} +{ +( -704 2624 112 ) ( -656 2624 112 ) ( -656 2288 112 ) props/safe_w 0 0 0 1.000000 1.000000 +( -704 2288 64 ) ( -656 2288 64 ) ( -656 2624 64 ) props/safe_w 0 0 0 1.000000 1.000000 +( -704 2624 112 ) ( -704 2288 112 ) ( -704 2288 64 ) props/safe_w 0 0 0 1.000000 1.000000 +( -656 2624 64 ) ( -656 2288 64 ) ( -656 2288 112 ) props/safe_w 0 0 0 1.000000 1.000000 +( -656 2624 112 ) ( -704 2624 112 ) ( -704 2624 64 ) props/safe_w 0 0 0 1.000000 1.000000 +( -656 2288 64 ) ( -704 2288 64 ) ( -704 2288 112 ) props/safe_w 0 0 0 1.000000 1.000000 +} +{ +( -701 2241 112 ) ( -725 2199 112 ) ( -729 2201 112 ) props/safe_w 60 -25 0 0.400000 0.400000 +( -705 2243 64 ) ( -729 2201 64 ) ( -725 2199 64 ) props/safe_w 60 -25 0 0.400000 0.400000 +( -701 2241 112 ) ( -705 2243 112 ) ( -705 2243 64 ) props/safe_w 55 28 0 0.400000 0.400000 +( -725 2199 64 ) ( -729 2201 64 ) ( -729 2201 112 ) props/safe_w 55 28 0 0.400000 0.400000 +( -725 2199 112 ) ( -701 2241 112 ) ( -701 2241 64 ) props/safe_w 30 28 0 0.400000 0.400000 +( -729 2201 64 ) ( -705 2243 64 ) ( -705 2243 112 ) props/safe -19 28 0 -0.400000 0.400000 +} +{ +( -688 2232 120 ) ( -688 2240 120 ) ( -688 2240 128 ) metals/mt_pv_m16b 77 104 0 1.000000 1.000000 0 8390656 0 +( -672 2240 128 ) ( -672 2240 120 ) ( -672 2232 120 ) metals/mt_pv_m16b 77 104 0 1.000000 1.000000 0 8390656 0 +( -672 2232 120 ) ( -688 2232 120 ) ( -688 2240 128 ) metals/mt_pv_m16b 11 43 0 1.000000 1.000000 0 8390656 0 +( -688 2240 120 ) ( -672 2240 120 ) ( -672 2240 128 ) metals/mt_pv_m16b 19 104 0 1.000000 1.000000 0 8390656 0 +( -688 2232 120 ) ( -672 2232 120 ) ( -672 2240 120 ) common/li_pv_v4a 63 0 0 0.250000 0.500000 0 1 20000 +} +{ +( -452 542 100 ) ( -452 542 129 ) ( -437 542 129 ) props/barrel_v4 -26 61 -180 0.750000 -0.750000 0 8388608 0 +( -461 546 6 ) ( -461 546 35 ) ( -452 536 35 ) props/barrel_v4 -60 61 -180 0.750000 -0.750000 0 8388608 0 +( -466 557 6 ) ( -466 557 35 ) ( -466 543 35 ) props/barrel_v4 -4 61 -180 0.750000 -0.750000 0 8388608 0 +( -461 569 6 ) ( -461 569 35 ) ( -471 559 35 ) props/barrel_v4 -3 61 -180 0.750000 -0.750000 0 8388608 0 +( -450 573 6 ) ( -450 573 35 ) ( -464 573 35 ) props/barrel_v4 -21 61 -180 0.750000 -0.750000 0 8388608 0 +( -439 569 100 ) ( -439 569 129 ) ( -449 579 129 ) props/barrel_v4 -60 61 -180 0.750000 -0.750000 0 8388608 0 +( -435 556 100 ) ( -435 556 129 ) ( -435 570 129 ) props/barrel_v4 50 61 -180 0.750000 -0.750000 0 8388608 0 +( -439 546 100 ) ( -439 546 129 ) ( -429 556 129 ) props/barrel_v4 -3 61 -180 0.750000 -0.750000 0 8388608 0 +( -450 538 34 ) ( -470 557 34 ) ( -430 557 34 ) bricks/s_sr_m6 -24 6 -180 0.500000 0.500000 0 4194304 0 +( -461 546 2 ) ( -456 540 2 ) ( -436 566 2 ) props/barrel_v4 -60 4 -180 0.750000 0.750000 0 8388608 0 +} +{ +( -443 573 50 ) ( -443 573 2 ) ( -435 565 2 ) props/barrel_v4 -60 61 -180 0.750000 -0.750000 0 8388608 0 +( -437 564 2 ) ( -437 564 50 ) ( -435 565 50 ) props/barrel_v4 10 61 -180 0.750000 -0.750000 0 8388608 0 +( -427 557 50 ) ( -450 535 50 ) ( -473 557 50 ) props/dump_m3 -24 -26 -180 0.500000 0.500000 0 8388608 0 +( -444 571 50 ) ( -444 571 2 ) ( -443 573 2 ) props/barrel_v4 -3 61 -180 0.750000 -0.750000 0 8388608 0 +( -437 564 50 ) ( -437 564 2 ) ( -444 571 2 ) props/barrel_v4 -60 61 -180 0.750000 -0.750000 0 8388608 0 +( -446 573 34 ) ( -440 567 34 ) ( -442 572 34 ) props/barrel_v4 -60 4 -180 0.750000 0.750000 0 8388608 0 +} +{ +( -435 550 2 ) ( -435 550 50 ) ( -435 565 50 ) props/barrel_v4 50 61 -180 0.750000 -0.750000 0 8388608 0 +( -435 550 50 ) ( -435 550 2 ) ( -437 551 2 ) props/barrel_v4 -60 61 -180 0.750000 -0.750000 0 8388608 0 +( -427 557 50 ) ( -450 535 50 ) ( -473 557 50 ) props/dump_m3 -24 -26 -180 0.500000 0.500000 0 8388608 0 +( -435 565 2 ) ( -435 565 50 ) ( -437 564 50 ) props/barrel_v4 10 61 -180 0.750000 -0.750000 0 8388608 0 +( -437 557 129 ) ( -437 557 100 ) ( -437 571 129 ) props/barrel_v4 42 61 -180 0.750000 -0.750000 0 8388608 0 +( -452 567 34 ) ( -447 561 34 ) ( -442 572 34 ) props/barrel_v4 -60 4 -180 0.750000 0.750000 0 8388608 0 +} +{ +( -439 546 106 ) ( -439 546 138 ) ( -427 557 138 ) props/barrel_v4 -3 61 -180 0.750000 -0.750000 0 8388608 0 +( -427 557 50 ) ( -450 535 50 ) ( -473 557 50 ) props/dump_m3 -24 -26 -180 0.500000 0.500000 0 8388608 0 +( -444 544 2 ) ( -444 544 50 ) ( -443 542 50 ) props/barrel_v4 -10 61 -180 0.750000 -0.750000 0 8388608 0 +( -437 551 50 ) ( -437 551 2 ) ( -435 550 2 ) props/barrel_v4 -60 61 -180 0.750000 -0.750000 0 8388608 0 +( -444 544 50 ) ( -444 544 2 ) ( -437 551 2 ) props/barrel_v4 -3 61 -180 0.750000 -0.750000 0 8388608 0 +( -460 559 34 ) ( -454 553 34 ) ( -449 565 34 ) props/barrel_v4 -60 4 -180 0.750000 0.750000 0 8388608 0 +} +{ +( -457 542 2 ) ( -457 542 50 ) ( -443 542 50 ) props/barrel_v4 -26 61 -180 0.750000 -0.750000 0 8388608 0 +( -457 542 50 ) ( -457 542 2 ) ( -456 544 2 ) props/barrel_v4 -3 61 -180 0.750000 -0.750000 0 8388608 0 +( -443 542 2 ) ( -443 542 50 ) ( -444 544 50 ) props/barrel_v4 -10 61 -180 0.750000 -0.750000 0 8388608 0 +( -427 557 50 ) ( -450 535 50 ) ( -473 557 50 ) props/dump_m3 -24 -26 -180 0.500000 0.500000 0 8388608 0 +( -449 544 129 ) ( -449 544 100 ) ( -435 544 129 ) props/barrel_v4 -2 61 -180 0.750000 -0.750000 0 8388608 0 +( -467 552 34 ) ( -461 546 34 ) ( -456 557 34 ) props/barrel_v4 -60 4 -180 0.750000 0.750000 0 8388608 0 +} +{ +( -461 546 2 ) ( -461 546 34 ) ( -450 535 34 ) props/barrel_v4 -60 61 -180 0.750000 -0.750000 0 8388608 0 +( -464 551 2 ) ( -464 551 50 ) ( -466 550 50 ) props/barrel_v4 10 61 -180 0.750000 -0.750000 0 8388608 0 +( -427 557 50 ) ( -450 535 50 ) ( -473 557 50 ) props/dump_m3 -24 -26 -180 0.500000 0.500000 0 8388608 0 +( -456 544 50 ) ( -456 544 2 ) ( -457 542 2 ) props/barrel_v4 -3 61 -180 0.750000 -0.750000 0 8388608 0 +( -464 551 50 ) ( -464 551 2 ) ( -456 544 2 ) props/barrel_v4 -10 61 -180 0.750000 -0.750000 0 8388608 0 +( -467 552 34 ) ( -461 546 34 ) ( -463 550 34 ) props/barrel_v4 -60 4 -180 0.750000 0.750000 0 8388608 0 +} +{ +( -466 565 2 ) ( -466 565 50 ) ( -466 550 50 ) props/barrel_v4 -4 61 -180 0.750000 -0.750000 0 8388608 0 +( -466 565 50 ) ( -466 565 2 ) ( -464 564 2 ) props/barrel_v4 -60 61 -180 0.750000 -0.750000 0 8388608 0 +( -427 557 50 ) ( -450 535 50 ) ( -473 557 50 ) props/dump_m3 -24 -26 -180 0.500000 0.500000 0 8388608 0 +( -466 550 2 ) ( -466 550 50 ) ( -464 551 50 ) props/barrel_v4 10 61 -180 0.750000 -0.750000 0 8388608 0 +( -464 558 35 ) ( -464 558 6 ) ( -464 544 35 ) props/barrel_v4 4 61 -180 0.750000 -0.750000 0 8388608 0 +( -467 552 34 ) ( -461 546 34 ) ( -456 557 34 ) props/barrel_v4 -60 4 -180 0.750000 0.750000 0 8388608 0 +} +{ +( -461 569 2 ) ( -461 569 34 ) ( -473 557 34 ) props/barrel_v4 -3 61 -180 0.750000 -0.750000 0 8388608 0 +( -456 571 2 ) ( -456 571 50 ) ( -457 573 50 ) props/barrel_v4 -10 61 -180 0.750000 -0.750000 0 8388608 0 +( -427 557 50 ) ( -450 535 50 ) ( -473 557 50 ) props/dump_m3 -24 -26 -180 0.500000 0.500000 0 8388608 0 +( -464 564 50 ) ( -464 564 2 ) ( -466 565 2 ) props/barrel_v4 -60 61 -180 0.750000 -0.750000 0 8388608 0 +( -456 571 50 ) ( -456 571 2 ) ( -464 564 2 ) props/barrel_v4 -3 61 -180 0.750000 -0.750000 0 8388608 0 +( -460 559 34 ) ( -454 553 34 ) ( -449 565 34 ) props/barrel_v4 -60 4 -180 0.750000 0.750000 0 8388608 0 +} +{ +( -443 573 2 ) ( -443 573 50 ) ( -457 573 50 ) props/barrel_v4 -21 61 -180 0.750000 -0.750000 0 8388608 0 +( -443 573 50 ) ( -443 573 2 ) ( -444 571 2 ) props/barrel_v4 -3 61 -180 0.750000 -0.750000 0 8388608 0 +( -427 557 50 ) ( -450 535 50 ) ( -473 557 50 ) props/dump_m3 -24 -26 -180 0.500000 0.500000 0 8388608 0 +( -457 573 2 ) ( -457 573 50 ) ( -456 571 50 ) props/barrel_v4 -10 61 -180 0.750000 -0.750000 0 8388608 0 +( -444 571 50 ) ( -444 571 2 ) ( -456 571 2 ) props/barrel_v4 -45 61 -180 0.750000 -0.750000 0 8388608 0 +( -452 567 34 ) ( -447 561 34 ) ( -442 572 34 ) props/barrel_v4 -60 4 -180 0.750000 0.750000 0 8388608 0 +} +{ +( -704 2240 6 ) ( -702 2240 6 ) ( -702 2238 6 ) props/dump_m4 0 0 0 1.000000 1.000000 0 8388608 0 +( -704 2238 1 ) ( -702 2238 1 ) ( -702 2240 1 ) props/dump_m4 0 0 0 1.000000 1.000000 0 8388608 0 +( -704 2240 6 ) ( -704 2238 6 ) ( -704 2238 1 ) props/dump_m4 0 0 0 1.000000 1.000000 0 8388608 0 +( -702 2240 1 ) ( -702 2238 1 ) ( -702 2238 6 ) props/dump_m4 0 0 0 1.000000 1.000000 0 8388608 0 +( -702 2240 6 ) ( -704 2240 6 ) ( -704 2240 1 ) props/dump_m4 0 0 0 1.000000 1.000000 0 8388608 0 +( -702 2238 1 ) ( -704 2238 1 ) ( -704 2238 6 ) props/dump_m4 0 0 0 1.000000 1.000000 0 8388608 0 +} +{ +( -674 2224 8 ) ( -674 2184 8 ) ( -672 2184 6 ) props/dump_m4 -48 30 0 1.000000 1.000000 0 8388608 0 +( -672 2224 36 ) ( -672 2192 36 ) ( -712 2192 36 ) props/dump_m4 -24 32 0 1.000000 1.000000 0 8388608 0 +( -672 2224 22 ) ( -712 2224 22 ) ( -712 2224 6 ) props/dump_m4 -24 6 0 1.000000 1.000000 0 8388608 0 +( -674 2184 8 ) ( -674 2224 8 ) ( -674 2224 36 ) props/dump_m4 -32 6 0 1.000000 1.000000 0 8388608 0 +( -712 2184 22 ) ( -672 2184 22 ) ( -672 2184 6 ) props/dump_m4 -24 6 0 1.000000 1.000000 0 8388608 0 +( -672 2224 6 ) ( -672 2184 6 ) ( -672 2184 34 ) props/dump_m4 -32 6 0 1.000000 1.000000 0 8388608 0 +} +{ +( -674 2184 36 ) ( -702 2184 36 ) ( -702 2224 36 ) props/filec_m1 -62 26 0 0.900000 0.750000 0 8388608 0 +( -674 2224 8 ) ( -702 2224 8 ) ( -702 2184 8 ) props/filec_m1 -62 26 0 0.900000 0.750000 0 8388608 0 +( -674 2184 36 ) ( -674 2224 36 ) ( -674 2224 8 ) props/filec_m1 -18 2 0 0.900000 0.750000 0 8388608 0 +( -702 2184 8 ) ( -702 2224 8 ) ( -702 2224 36 ) props/filec_m1 -18 2 0 0.900000 0.750000 0 8388608 0 +( -702 2184 36 ) ( -674 2184 36 ) ( -674 2184 8 ) props/filec_m1 -49 2 0 0.900000 0.750000 0 8388608 0 +( -702 2224 8 ) ( -674 2224 8 ) ( -674 2224 36 ) props/filec_m1 -62 2 0 0.900000 0.750000 0 8388608 0 +} +{ +( -704 2272 36 ) ( -704 2176 36 ) ( -512 2176 36 ) props/dump_m4 -24 32 0 1.000000 1.000000 0 8388608 0 +( -512 2176 40 ) ( -704 2176 40 ) ( -704 2272 40 ) props/filec_m2 -32 24 0 1.000000 1.000000 0 8388608 0 +( -576 2176 72 ) ( -576 2272 72 ) ( -576 2272 8 ) props/filec_m2 -16 8 0 1.000000 1.000000 0 8388608 0 +( -512 2240 72 ) ( -704 2240 72 ) ( -704 2240 8 ) props/filec_m2 -32 8 0 1.000000 1.000000 0 8388608 0 +( -704 2184 72 ) ( -512 2184 72 ) ( -512 2184 8 ) props/filec_m2 -32 8 0 1.000000 1.000000 0 8388608 0 +( -704 2236 36 ) ( -704 2240 36 ) ( -704 2238 40 ) props/filec_m2 -8 8 0 1.000000 1.000000 0 8388608 0 +} +{ +( -578 2224 8 ) ( -578 2184 8 ) ( -576 2184 6 ) props/dump_m4 -48 30 0 1.000000 1.000000 0 8388608 0 +( -576 2224 36 ) ( -576 2192 36 ) ( -616 2192 36 ) props/dump_m4 -24 32 0 1.000000 1.000000 0 8388608 0 +( -576 2224 22 ) ( -616 2224 22 ) ( -616 2224 6 ) props/dump_m4 -24 6 0 1.000000 1.000000 0 8388608 0 +( -614 2184 22 ) ( -574 2184 22 ) ( -574 2184 6 ) props/dump_m4 -24 6 0 1.000000 1.000000 0 8388608 0 +( -576 2192 22 ) ( -576 2224 22 ) ( -576 2224 6 ) props/dump_m4 -32 6 0 1.000000 1.000000 0 8388608 0 +( -578 2184 10 ) ( -578 2224 10 ) ( -578 2224 36 ) props/dump_m4 -32 6 0 1.000000 1.000000 0 8388608 0 +} +{ +( -616 2192 6 ) ( -576 2192 6 ) ( -576 2224 6 ) props/dump_m4 -24 32 0 1.000000 1.000000 0 8388608 0 +( -578 2224 22 ) ( -618 2224 22 ) ( -618 2224 6 ) props/dump_m4 -24 6 0 1.000000 1.000000 0 8388608 0 +( -616 2184 22 ) ( -576 2184 22 ) ( -576 2184 6 ) props/dump_m4 -24 6 0 1.000000 1.000000 0 8388608 0 +( -578 2184 8 ) ( -578 2224 8 ) ( -576 2224 6 ) props/dump_m4 -8 10 0 1.000000 1.000000 0 8388608 0 +( -606 2224 8 ) ( -606 2184 8 ) ( -608 2184 6 ) props/dump_m4 -64 52 0 1.000000 1.000000 0 8388608 0 +( -578 2224 8 ) ( -578 2184 8 ) ( -606 2184 8 ) props/dump_m4 -24 32 0 1.000000 1.000000 0 8388608 0 +} +{ +( -606 2184 8 ) ( -606 2224 8 ) ( -608 2224 6 ) props/dump_m4 -48 30 0 1.000000 1.000000 0 8388608 0 +( -576 2224 36 ) ( -576 2192 36 ) ( -616 2192 36 ) props/dump_m4 -24 32 0 1.000000 1.000000 0 8388608 0 +( -576 2224 22 ) ( -616 2224 22 ) ( -616 2224 6 ) props/dump_m4 -24 6 0 1.000000 1.000000 0 8388608 0 +( -608 2224 22 ) ( -608 2192 22 ) ( -608 2192 6 ) props/dump_m4 -32 6 0 1.000000 1.000000 0 8388608 0 +( -616 2184 22 ) ( -576 2184 22 ) ( -576 2184 6 ) props/dump_m4 -24 6 0 1.000000 1.000000 0 8388608 0 +( -606 2224 8 ) ( -606 2184 8 ) ( -606 2184 34 ) props/dump_m4 -32 6 0 1.000000 1.000000 0 8388608 0 +} +{ +( -578 2184 36 ) ( -606 2184 36 ) ( -606 2224 36 ) props/filec_m1 -20 26 0 0.900000 0.750000 0 8388608 0 +( -578 2224 8 ) ( -606 2224 8 ) ( -606 2184 8 ) props/filec_m1 -20 26 0 0.900000 0.750000 0 8388608 0 +( -578 2184 36 ) ( -578 2224 36 ) ( -578 2224 8 ) props/filec_m1 -18 2 0 0.900000 0.750000 0 8388608 0 +( -606 2184 8 ) ( -606 2224 8 ) ( -606 2224 36 ) props/filec_m1 -18 2 0 0.900000 0.750000 0 8388608 0 +( -606 2184 36 ) ( -578 2184 36 ) ( -578 2184 8 ) props/filec_m1 -28 2 0 0.900000 0.750000 0 8388608 0 +( -606 2224 8 ) ( -578 2224 8 ) ( -578 2224 36 ) props/filec_m1 -20 2 0 0.900000 0.750000 0 8388608 0 +} +{ +( -712 2192 6 ) ( -672 2192 6 ) ( -672 2224 6 ) props/dump_m4 -24 32 0 1.000000 1.000000 0 8388608 0 +( -674 2224 22 ) ( -714 2224 22 ) ( -714 2224 6 ) props/dump_m4 -24 6 0 1.000000 1.000000 0 8388608 0 +( -712 2184 22 ) ( -672 2184 22 ) ( -672 2184 6 ) props/dump_m4 -24 6 0 1.000000 1.000000 0 8388608 0 +( -674 2184 8 ) ( -674 2224 8 ) ( -672 2224 6 ) props/dump_m4 -8 10 0 1.000000 1.000000 0 8388608 0 +( -702 2224 8 ) ( -702 2184 8 ) ( -704 2184 6 ) props/dump_m4 -64 52 0 1.000000 1.000000 0 8388608 0 +( -674 2224 8 ) ( -674 2184 8 ) ( -702 2184 8 ) props/dump_m4 -24 32 0 1.000000 1.000000 0 8388608 0 +} +{ +( -704 2224 6 ) ( -704 2184 6 ) ( -702 2184 8 ) props/dump_m4 -48 30 0 1.000000 1.000000 0 8388608 0 +( -702 2224 36 ) ( -702 2184 36 ) ( -704 2184 36 ) props/dump_m4 -24 32 0 1.000000 1.000000 0 8388608 0 +( -702 2224 8 ) ( -702 2224 36 ) ( -704 2224 36 ) props/dump_m4 -24 6 0 1.000000 1.000000 0 8388608 0 +( -704 2224 6 ) ( -704 2224 36 ) ( -704 2184 36 ) props/dump_m4 -32 6 0 1.000000 1.000000 0 8388608 0 +( -704 2184 6 ) ( -704 2184 36 ) ( -702 2184 36 ) props/dump_m4 -24 6 0 1.000000 1.000000 0 8388608 0 +( -702 2184 8 ) ( -702 2184 36 ) ( -702 2224 36 ) props/dump_m4 -32 6 0 1.000000 1.000000 0 8388608 0 +} +{ +( -704 2240 36 ) ( -576 2240 36 ) ( -576 2224 36 ) props/dump_m4 0 0 0 1.000000 1.000000 0 8388608 0 +( -704 2224 6 ) ( -576 2224 6 ) ( -576 2240 6 ) props/dump_m4 0 0 0 1.000000 1.000000 0 8388608 0 +( -704 2240 36 ) ( -704 2224 36 ) ( -704 2224 6 ) props/dump_m4 0 0 0 1.000000 1.000000 0 8388608 0 +( -576 2240 6 ) ( -576 2224 6 ) ( -576 2224 36 ) props/dump_m4 0 0 0 1.000000 1.000000 0 8388608 0 +( -576 2240 36 ) ( -704 2240 36 ) ( -704 2240 6 ) props/dump_m4 0 0 0 1.000000 1.000000 0 8388608 0 +( -576 2224 6 ) ( -704 2224 6 ) ( -704 2224 36 ) props/dump_m4 0 0 0 1.000000 1.000000 0 8388608 0 +} +{ +( -704 2186 6 ) ( -702 2186 6 ) ( -702 2184 6 ) props/dump_m4 63 10 0 1.000000 1.000000 0 8388608 0 +( -704 2184 1 ) ( -702 2184 1 ) ( -702 2186 1 ) props/dump_m4 63 10 0 1.000000 1.000000 0 8388608 0 +( -704 2186 6 ) ( -704 2184 6 ) ( -704 2184 1 ) props/dump_m4 -10 0 0 1.000000 1.000000 0 8388608 0 +( -702 2186 1 ) ( -702 2184 1 ) ( -702 2184 6 ) props/dump_m4 -10 0 0 1.000000 1.000000 0 8388608 0 +( -702 2186 6 ) ( -704 2186 6 ) ( -704 2186 1 ) props/dump_m4 63 0 0 1.000000 1.000000 0 8388608 0 +( -702 2184 1 ) ( -704 2184 1 ) ( -704 2184 6 ) props/dump_m4 63 0 0 1.000000 1.000000 0 8388608 0 +} +{ +( -578 2186 6 ) ( -576 2186 6 ) ( -576 2184 6 ) props/dump_m4 -63 10 0 1.000000 1.000000 0 8388608 0 +( -578 2184 1 ) ( -576 2184 1 ) ( -576 2186 1 ) props/dump_m4 -63 10 0 1.000000 1.000000 0 8388608 0 +( -578 2186 6 ) ( -578 2184 6 ) ( -578 2184 1 ) props/dump_m4 -10 0 0 1.000000 1.000000 0 8388608 0 +( -576 2186 1 ) ( -576 2184 1 ) ( -576 2184 6 ) props/dump_m4 -10 0 0 1.000000 1.000000 0 8388608 0 +( -576 2186 6 ) ( -578 2186 6 ) ( -578 2186 1 ) props/dump_m4 -63 0 0 1.000000 1.000000 0 8388608 0 +( -576 2184 1 ) ( -578 2184 1 ) ( -578 2184 6 ) props/dump_m4 -63 0 0 1.000000 1.000000 0 8388608 0 +} +{ +( -578 2240 6 ) ( -576 2240 6 ) ( -576 2238 6 ) props/dump_m4 -62 64 0 1.000000 1.000000 0 8388608 0 +( -578 2238 1 ) ( -576 2238 1 ) ( -576 2240 1 ) props/dump_m4 -62 64 0 1.000000 1.000000 0 8388608 0 +( -578 2240 6 ) ( -578 2238 6 ) ( -578 2238 1 ) props/dump_m4 -64 0 0 1.000000 1.000000 0 8388608 0 +( -576 2240 1 ) ( -576 2238 1 ) ( -576 2238 6 ) props/dump_m4 -64 0 0 1.000000 1.000000 0 8388608 0 +( -576 2240 6 ) ( -578 2240 6 ) ( -578 2240 1 ) props/dump_m4 -62 0 0 1.000000 1.000000 0 8388608 0 +( -576 2238 1 ) ( -578 2238 1 ) ( -578 2238 6 ) props/dump_m4 -62 0 0 1.000000 1.000000 0 8388608 0 +} +{ +( -832 3846 8192 ) ( -832 -1069 8192 ) ( -832 3846 -8192 ) common/li_sr_v17 0 0 0 20.000000 20.000000 1 133 0 +( 640 -1069 8192 ) ( 640 3846 8192 ) ( 640 3846 -8192 ) common/li_sr_v17 0 0 0 20.000000 20.000000 1 133 0 +( -7824 1984 8192 ) ( 7877 1984 8192 ) ( -7824 1984 -8192 ) common/li_sr_v17 0 0 0 20.000000 20.000000 1 133 0 +( 7877 2080 8192 ) ( -7824 2080 8192 ) ( -7824 2080 -8192 ) common/li_sr_v17 0 0 0 20.000000 20.000000 1 133 0 +( 7877 -1069 1024 ) ( 7877 3846 1024 ) ( -7824 -1069 1024 ) common/li_sr_m14 64 128 0 20.000000 20.000000 0 5 200 +( 7877 3846 1088 ) ( 7877 -1069 1088 ) ( -7824 -1069 1088 ) common/li_sr_v17 0 0 0 20.000000 20.000000 1 133 0 +} +} +{ +"classname" "func_wall" +{ +( -1350 8192 8192 ) ( -1350 -8192 8192 ) ( -1350 8192 -8192 ) sprites/win_bars 0 0 0 1.000000 1.000000 128 4096 0 +( -1346 -8192 8192 ) ( -1346 8192 8192 ) ( -1346 8192 -8192 ) sprites/win_bars 0 0 0 1.000000 1.000000 128 4096 0 +( -8192 2312 8192 ) ( 8192 2312 8192 ) ( -8192 2312 -8192 ) sprites/win_bars 0 0 0 1.000000 1.000000 128 4096 0 +( 8192 2608 8192 ) ( -8192 2608 8192 ) ( -8192 2608 -8192 ) sprites/win_bars 0 0 0 1.000000 1.000000 128 4096 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) sprites/win_bars 0 0 0 1.000000 1.000000 128 4096 0 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) sprites/win_bars 0 0 0 1.000000 1.000000 128 4096 0 +} +} +{ +"classname" "info_player_deathmatch" +"angle" "270" +"style" "2" +"origin" "-1440 1544 280" +} +{ +"classname" "ammo_flametank" +"origin" "-1648 856 400" +} +{ +"classname" "item_armor_jacket" +"origin" "2224 592 400" +} +{ +"classname" "item_armor_jacket" +"angle" "270" +"origin" "-2152 832 16" +} +{ +"classname" "hmg_mod_cooling" +"angle" "315" +"origin" "232 608 16" +} +{ +"classname" "ammo_flametank" +"angle" "270" +"origin" "-742 552 78" +} +{ +"classname" "info_player_deathmatch" +"angle" "315" +"style" "2" +"origin" "-1512 2600 24" +} +{ +"classname" "info_player_deathmatch" +"angle" "180" +"style" "2" +"origin" "-138 2588 356" +} +{ +"classname" "item_armor_legs_heavy" +"angle" "270" +"origin" "-96 1760 152" +} +{ +"classname" "item_armor_jacket" +"origin" "792 1312 16" +} +{ +"classname" "item_armor_legs" +"origin" "-1504 1408 336" +} +{ +"classname" "item_armor_jacket_heavy" +"angle" "90" +"origin" "-416 2460 280" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-192 1024 144" +} +{ +"classname" "junior" +"_color" "1.000000 0.682353 0.368627" +"light" "450" +"origin" "-2112 1408 264" +} +{ +"classname" "func_wall" +{ +( -2240 8192 8192 ) ( -2240 -8192 8192 ) ( -2240 8192 -8192 ) props/w_sr_m2a -64 42 0 1.000000 1.500000 1 0 0 +( -2208 -8192 8192 ) ( -2208 8192 8192 ) ( -2208 8192 -8192 ) props/w_sr_m2a -32 42 0 1.000000 1.500000 1 1 500 +( -8192 832 8192 ) ( 8192 832 8192 ) ( -8192 832 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 960 8192 ) ( -8192 960 8192 ) ( -8192 960 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 0 0 90 1.000000 1.000000 1 0 0 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) bricks/b_mf_v2 0 0 90 1.000000 1.000000 1 0 0 +} +{ +( -2240 8192 8192 ) ( -2240 -8192 8192 ) ( -2240 8192 -8192 ) props/w_sr_m2a -64 42 0 1.000000 1.500000 1 0 0 +( -2208 -8192 8192 ) ( -2208 8192 8192 ) ( -2208 8192 -8192 ) props/w_sr_m2a -64 42 0 1.000000 1.500000 1 1 500 +( -8192 1088 8192 ) ( 8192 1088 8192 ) ( -8192 1088 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1216 8192 ) ( -8192 1216 8192 ) ( -8192 1216 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 0 0 90 1.000000 1.000000 1 0 0 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) bricks/b_mf_v2 0 0 90 1.000000 1.000000 1 0 0 +} +{ +( -2240 8192 8192 ) ( -2240 -8192 8192 ) ( -2240 8192 -8192 ) props/w_sr_m2a -64 42 0 1.000000 1.500000 1 0 0 +( -2208 -8192 8192 ) ( -2208 8192 8192 ) ( -2208 8192 -8192 ) props/w_sr_m2a -32 42 0 1.000000 1.500000 1 1 500 +( -8192 1344 8192 ) ( 8192 1344 8192 ) ( -8192 1344 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 1472 8192 ) ( -8192 1472 8192 ) ( -8192 1472 -8192 ) bricks/b_mf_v2 0 0 0 1.000000 1.000000 1 0 0 +( 8192 -8192 256 ) ( 8192 8192 256 ) ( -8192 -8192 256 ) bricks/b_mf_v2 0 0 90 1.000000 1.000000 1 0 0 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) bricks/b_mf_v2 0 0 90 1.000000 1.000000 1 0 0 +} +} +{ +"classname" "ammo_rockets" +"origin" "-2144 1344 32" +} +{ +"classname" "weapon_shotgun" +"angle" "135" +"origin" "2408 728 272" +} +{ +"classname" "item_armor_legs" +"origin" "1768 1256 336" +} +{ +"classname" "item_health_sm" +"origin" "2144 496 272" +} +{ +"classname" "weapon_tommygun" +"origin" "2288 656 336" +} +{ +"classname" "pistol_mod_reload" +"origin" "2496 672 576" +} +{ +"classname" "ammo_cylinder" +"origin" "1530 600 576" +} +{ +"classname" "item_health_lg" +"origin" "2148 562 436" +} +{ +"classname" "ammo_rockets" +"origin" "288 1240 16" +} +{ +"classname" "pistol_mod_rof" +"origin" "-600 2592 272" +} +{ +"classname" "item_health_sm" +"origin" "-488 1480 272" +} +{ +"classname" "weapon_tommygun" +"angle" "90" +"origin" "792 1312 272" +} +{ +"classname" "weapon_shotgun" +"angle" "90" +"origin" "-608 2016 272" +} +{ +"classname" "item_health_sm" +"origin" "-1026 2560 16" +} +{ +"classname" "item_health_lg" +"origin" "-1760 960 272" +} +{ +"classname" "ammo_rockets" +"origin" "-1376 832 272" +} +{ +"classname" "ammo_shells" +"origin" "-544 2048 272" +} +{ +"classname" "item_health_lg" +"origin" "480 784 336" +} +{ +"classname" "ammo_grenades" +"origin" "528 608 576" +} +{ +"classname" "ammo_flametank" +"origin" "2502 998 504" +} +{ +"classname" "item_health_lg" +"origin" "944 720 48" +} +{ +"classname" "pistol_mod_damage" +"origin" "-1632 1536 336" +} +{ +"classname" "item_health_lg" +"origin" "1308 1272 576" +} +{ +"classname" "ammo_rockets" +"origin" "2264 544 576" +} +{ +"classname" "ammo_rockets" +"origin" "2224 544 576" +} +{ +"classname" "weapon_flamethrower" +"origin" "2502 1046 504" +} +{ +"classname" "ammo_cylinder" +"origin" "80 1376 16" +} +{ +"classname" "weapon_tommygun" +"origin" "32 1376 16" +} +{ +"classname" "ammo_cylinder" +"origin" "-1488 1536 48" +} +{ +"classname" "weapon_tommygun" +"origin" "-1536 1536 48" +} +{ +"classname" "weapon_bazooka" +"origin" "-224 2032 32" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "128" +"light" "5" +"dmg" "2" +"origin" "-128 1232 207" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "64" +"light" "5" +"origin" "-864 2080 444" +} +{ +"classname" "junior" +"light" "400" +"_color" "0.914894 1.000000 0.893617" +"origin" "1632 1552 560" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.961538 0.897436" +"origin" "2496 600 680" +} +{ +"classname" "junior" +"light" "1000" +"_color" "1.000000 0.682353 0.368627" +"origin" "2048 1024 888" +} +{ +"classname" "junior" +"light" "1000" +"_color" "1.000000 0.682353 0.368627" +"origin" "32 1376 888" +} +{ +"classname" "info_player_deathmatch" +"style" "1" +"origin" "1312 928 588" +} +{ +"classname" "light" +"_color" "0.286581 0.172626 0.179059" +"light" "100" +"origin" "896 856 24" +} +{ +"classname" "info_player_deathmatch" +"angle" "135" +"style" "2" +"origin" "-1440 770 24" +} +{ +"classname" "info_player_deathmatch" +"angle" "180" +"origin" "-736 2272 288" +} +{ +"classname" "info_player_deathmatch" +"angle" "180" +"style" "2" +"origin" "-768 2560 24" +} +{ +"classname" "info_player_deathmatch" +"angle" "180" +"style" "2" +"origin" "-1440 768 280" +} +{ +"classname" "info_player_deathmatch" +"angle" "129" +"style" "1" +"origin" "2352 736 288" +} +{ +"classname" "info_player_deathmatch" +"angle" "225" +"origin" "288 1696 24" +} +{ +"classname" "info_player_deathmatch" +"angle" "319" +"style" "1" +"origin" "1312 1314 584" +} +{ +"classname" "info_player_deathmatch" +"angle" "45" +"style" "1" +"origin" "1824 224 280" +} +{ +"classname" "info_player_deathmatch" +"style" "1" +"origin" "1752 1320 280" +} +{ +"classname" "info_player_deathmatch" +"angle" "270" +"style" "1" +"origin" "2688 656 280" +} +{ +"classname" "light" +"light" "600" +"_color" "1.000000 0.725490 0.4509804545" +"origin" "-1088 2400 600" +} +{ +"classname" "func_wall" +{ +( -1589 8192 8192 ) ( -1589 -8192 8192 ) ( -1589 8192 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( -1583 -8192 8192 ) ( -1583 8192 8192 ) ( -1583 8192 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( -8192 1216 8192 ) ( 8192 1216 8192 ) ( -8192 1216 -8192 ) metals/m_mf_v2a 0 0 0 2.000000 2.000000 0 8388608 0 +( 8192 1221 8192 ) ( -8192 1221 8192 ) ( -8192 1221 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 -8192 32 ) ( 8192 8192 32 ) ( -8192 -8192 32 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 8192 252 ) ( 8192 -8192 252 ) ( -8192 -8192 252 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 1904 8206 8192 ) ( -5422 -6447 8192 ) ( -5422 -6447 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 2884 -7716 8192 ) ( -4442 6937 8192 ) ( -4442 6937 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +} +{ +( -1553 8192 8192 ) ( -1553 -8192 8192 ) ( -1553 8192 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( -1547 -8192 8192 ) ( -1547 8192 8192 ) ( -1547 8192 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( -8192 1216 8192 ) ( 8192 1216 8192 ) ( -8192 1216 -8192 ) metals/m_mf_v2a 0 0 0 2.000000 2.000000 0 8388608 0 +( 8192 1221 8192 ) ( -8192 1221 8192 ) ( -8192 1221 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 -8192 32 ) ( 8192 8192 32 ) ( -8192 -8192 32 ) metals/mt_pv_v4b 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 8192 252 ) ( 8192 -8192 252 ) ( -8192 -8192 252 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 2913 -7702 8192 ) ( -4413 6952 8192 ) ( -4413 6952 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 1933 8192 8192 ) ( -5393 -6462 8192 ) ( -5393 -6462 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +} +{ +( -1583 8192 8192 ) ( -1583 -8192 8192 ) ( -1583 8192 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( -1553 -8192 8192 ) ( -1553 8192 8192 ) ( -1553 8192 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( -8192 1217 8192 ) ( 8192 1217 8192 ) ( -8192 1217 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 1218 8192 ) ( -8192 1218 8192 ) ( -8192 1218 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 -8192 56 ) ( 8192 8192 56 ) ( -8192 -8192 56 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 8192 60 ) ( 8192 -8192 60 ) ( -8192 -8192 60 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +} +{ +( -1583 8192 8192 ) ( -1583 -8192 8192 ) ( -1583 8192 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( -1553 -8192 8192 ) ( -1553 8192 8192 ) ( -1553 8192 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( -8192 1217 8192 ) ( 8192 1217 8192 ) ( -8192 1217 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 1218 8192 ) ( -8192 1218 8192 ) ( -8192 1218 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 -8192 84 ) ( 8192 8192 84 ) ( -8192 -8192 84 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 8192 88 ) ( 8192 -8192 88 ) ( -8192 -8192 88 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +} +{ +( -1583 8192 8192 ) ( -1583 -8192 8192 ) ( -1583 8192 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( -1553 -8192 8192 ) ( -1553 8192 8192 ) ( -1553 8192 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( -8192 1217 8192 ) ( 8192 1217 8192 ) ( -8192 1217 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 1218 8192 ) ( -8192 1218 8192 ) ( -8192 1218 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 -8192 112 ) ( 8192 8192 112 ) ( -8192 -8192 112 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 8192 116 ) ( 8192 -8192 116 ) ( -8192 -8192 116 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +} +{ +( -1583 8192 8192 ) ( -1583 -8192 8192 ) ( -1583 8192 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( -1553 -8192 8192 ) ( -1553 8192 8192 ) ( -1553 8192 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( -8192 1217 8192 ) ( 8192 1217 8192 ) ( -8192 1217 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 1218 8192 ) ( -8192 1218 8192 ) ( -8192 1218 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 -8192 140 ) ( 8192 8192 140 ) ( -8192 -8192 140 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 8192 144 ) ( 8192 -8192 144 ) ( -8192 -8192 144 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +} +{ +( -1583 8192 8192 ) ( -1583 -8192 8192 ) ( -1583 8192 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( -1553 -8192 8192 ) ( -1553 8192 8192 ) ( -1553 8192 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( -8192 1217 8192 ) ( 8192 1217 8192 ) ( -8192 1217 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 1218 8192 ) ( -8192 1218 8192 ) ( -8192 1218 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 -8192 168 ) ( 8192 8192 168 ) ( -8192 -8192 168 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 8192 172 ) ( 8192 -8192 172 ) ( -8192 -8192 172 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +} +{ +( -1583 8192 8192 ) ( -1583 -8192 8192 ) ( -1583 8192 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( -1553 -8192 8192 ) ( -1553 8192 8192 ) ( -1553 8192 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( -8192 1217 8192 ) ( 8192 1217 8192 ) ( -8192 1217 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 1218 8192 ) ( -8192 1218 8192 ) ( -8192 1218 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 -8192 196 ) ( 8192 8192 196 ) ( -8192 -8192 196 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 8192 200 ) ( 8192 -8192 200 ) ( -8192 -8192 200 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +} +{ +( -1583 8192 8192 ) ( -1583 -8192 8192 ) ( -1583 8192 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( -1553 -8192 8192 ) ( -1553 8192 8192 ) ( -1553 8192 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( -8192 1217 8192 ) ( 8192 1217 8192 ) ( -8192 1217 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 1218 8192 ) ( -8192 1218 8192 ) ( -8192 1218 -8192 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 -8192 224 ) ( 8192 8192 224 ) ( -8192 -8192 224 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +( 8192 8192 228 ) ( 8192 -8192 228 ) ( -8192 -8192 228 ) metals/m_mf_v2a 0 0 0 1.000000 1.000000 536870913 8388608 0 +} +} +{ +"classname" "light" +"light" "125" +"_color" "1.000000 0.807843 0.615686" +"origin" "-1152 888 24" +} +{ +"classname" "light" +"light" "200" +"_color" "0.309111 0.294698 0.274791" +"origin" "2304 616 560" +} +{ +"classname" "light" +"light" "175" +"_color" "0.346676 0.316942 0.245113" +"origin" "2252 504 304" +} +{ +"classname" "light" +"light" "125" +"_color" "0.268290 0.246676 0.207736" +"origin" "896 1408 40" +} +{ +"classname" "light" +"light" "200" +"_color" "1.000000 0.811688 0.616883" +"origin" "-128 1232 144" +} +{ +"classname" "info_player_start" +"origin" "-328 1384 280" +} +{ +"classname" "light" +"_color" "0.268290 0.246676 0.207736" +"light" "200" +"origin" "192 1232 144" +} +{ +"classname" "light" +"_color" "0.268290 0.246676 0.207736" +"light" "200" +"origin" "-128 1520 144" +} +{ +"classname" "light" +"light" "200" +"_color" "0.268290 0.246676 0.207736" +"origin" "192 1520 144" +} +{ +"classname" "light" +"spawnflags" "8" +"_color" "1.000000 0.682353 0.368627" +"light" "1300" +"origin" "192 904 1016" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 237 ) ( 8192 8192 237 ) ( -8192 -8192 237 ) common/li_sr_ml5 8 24 0 0.800000 0.800000 1 1 15000 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8191 4700 6808 ) ( -8191 4700 6808 ) ( -8191 -2626 -7845 ) metals/mt_pv_m16bc 8 -17 0 1.000000 1.000000 1 8390656 0 +( -8191 -2447 7935 ) ( 8191 -2447 7935 ) ( 8191 4879 -6719 ) metals/mt_pv_m16bc 8 -17 0 1.000000 1.000000 1 8390656 0 +( 4188 -8191 7064 ) ( 4188 8191 7064 ) ( -3138 8191 -7589 ) metals/mt_pv_m16bc 2 8 90 1.000000 1.000000 1 8390656 0 +( -2959 8191 7679 ) ( -2959 -8191 7679 ) ( 4367 -8191 -6975 ) metals/mt_pv_m16bc 2 7 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "light" +"light" "125" +"_color" "0.610869 0.573457 0.428217" +"origin" "768 1408 160" +} +{ +"classname" "junior" +"_color" "1.000000 0.941935 0.703226" +"light" "300" +"origin" "768 1408 128" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 237 ) ( 8192 8192 237 ) ( -8192 -8192 237 ) common/li_sr_ml5 8 24 0 0.800000 0.800000 1 1 15000 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8191 4700 6808 ) ( -8191 4700 6808 ) ( -8191 -2626 -7845 ) metals/mt_pv_m16bc 8 -17 0 1.000000 1.000000 1 8390656 0 +( -8191 -2447 7935 ) ( 8191 -2447 7935 ) ( 8191 4879 -6719 ) metals/mt_pv_m16bc 8 -17 0 1.000000 1.000000 1 8390656 0 +( 3983 -8191 7167 ) ( 3983 8191 7167 ) ( -3343 8191 -7487 ) metals/mt_pv_m16bc 1 8 90 1.000000 1.000000 1 8390656 0 +( -3164 8191 7576 ) ( -3164 -8191 7576 ) ( 4162 -8191 -7077 ) metals/mt_pv_m16bc 1 7 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "light" +"_color" "0.610869 0.573457 0.428217" +"light" "125" +"origin" "512 1408 160" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.941935 0.703226" +"origin" "512 1408 128" +} +{ +"classname" "light" +"_color" "0.610869 0.573457 0.428217" +"light" "150" +"origin" "768 1408 48" +} +{ +"classname" "light" +"light" "200" +"_color" "0.610869 0.573457 0.428217" +"origin" "512 1408 72" +} +{ +"classname" "light" +"_color" "0.268290 0.246676 0.207736" +"light" "80" +"origin" "1024 1408 40" +} +{ +"classname" "light" +"light" "125" +"_color" "0.268290 0.246676 0.207736" +"origin" "1024 1216 40" +} +{ +"classname" "light" +"light" "125" +"_color" "0.268290 0.246676 0.207736" +"origin" "-608 1392 312" +} +{ +"classname" "light" +"_color" "0.268290 0.246676 0.207736" +"light" "125" +"origin" "-832 1392 312" +} +{ +"classname" "light" +"light" "125" +"_color" "0.268290 0.246676 0.207736" +"origin" "-1024 1392 312" +} +{ +"classname" "light" +"_color" "0.268290 0.246676 0.207736" +"light" "125" +"origin" "960 1408 312" +} +{ +"classname" "light" +"light" "125" +"_color" "0.268290 0.246676 0.207736" +"origin" "1184 1408 312" +} +{ +"classname" "light" +"_color" "0.268290 0.246676 0.207736" +"light" "125" +"origin" "1408 1408 312" +} +{ +"classname" "light" +"light" "125" +"_color" "0.268290 0.246676 0.207736" +"origin" "1408 1152 312" +} +{ +"classname" "light" +"_color" "0.268290 0.246676 0.207736" +"light" "125" +"origin" "1024 1024 40" +} +{ +"classname" "light" +"_color" "0.268290 0.246676 0.207736" +"light" "125" +"origin" "1408 896 312" +} +{ +"classname" "light" +"light" "125" +"_color" "0.268290 0.246676 0.207736" +"origin" "1664 896 312" +} +{ +"classname" "light" +"_color" "0.268290 0.246676 0.207736" +"light" "125" +"origin" "1024 608 40" +} +{ +"classname" "light" +"light" "125" +"_color" "0.268290 0.246676 0.207736" +"origin" "1024 352 40" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 237 ) ( 8192 8192 237 ) ( -8192 -8192 237 ) common/li_sr_ml5 8 32 0 0.800000 0.800000 1 1 15000 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8191 3855 7231 ) ( -8191 3855 7231 ) ( -8191 -3471 -7423 ) metals/mt_pv_m16bc 8 -17 0 1.000000 1.000000 1 8390656 0 +( -8191 -3292 7512 ) ( 8191 -3292 7512 ) ( 8191 4034 -7141 ) metals/mt_pv_m16bc 8 -17 0 1.000000 1.000000 1 8390656 0 +( 4495 -8191 6911 ) ( 4495 8191 6911 ) ( -2831 8191 -7743 ) metals/mt_pv_m16bc 0 8 90 1.000000 1.000000 1 8390656 0 +( -2652 8191 7832 ) ( -2652 -8191 7832 ) ( 4674 -8191 -6821 ) metals/mt_pv_m16bc 0 7 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "light" +"light" "125" +"_color" "0.610869 0.573457 0.428217" +"origin" "1152 352 160" +} +{ +"classname" "junior" +"_color" "1.000000 0.941935 0.703226" +"light" "350" +"origin" "1152 352 112" +} +{ +"classname" "light" +"_color" "0.610869 0.573457 0.428217" +"light" "150" +"origin" "1152 352 48" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 237 ) ( 8192 8192 237 ) ( -8192 -8192 237 ) common/li_sr_ml5 8 32 0 0.800000 0.800000 1 1 15000 +( 8192 8192 240 ) ( 8192 -8192 240 ) ( -8192 -8192 240 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8191 3855 7231 ) ( -8191 3855 7231 ) ( -8191 -3471 -7423 ) metals/mt_pv_m16bc -24 -17 0 1.000000 1.000000 1 8390656 0 +( -8191 -3292 7512 ) ( 8191 -3292 7512 ) ( 8191 4034 -7141 ) metals/mt_pv_m16bc -24 -17 0 1.000000 1.000000 1 8390656 0 +( 4700 -8191 6808 ) ( 4700 8191 6808 ) ( -2626 8191 -7845 ) metals/mt_pv_m16bc 0 8 90 1.000000 1.000000 1 8390656 0 +( -2447 8191 7935 ) ( -2447 -8191 7935 ) ( 4879 -8191 -6719 ) metals/mt_pv_m16bc 0 7 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "light" +"_color" "0.610869 0.573457 0.428217" +"light" "150" +"origin" "1408 352 160" +} +{ +"classname" "junior" +"light" "350" +"_color" "1.000000 0.941935 0.703226" +"origin" "1408 352 176" +} +{ +"classname" "light" +"light" "150" +"_color" "0.610869 0.573457 0.428217" +"origin" "1408 352 48" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 369 ) ( 8192 8192 369 ) ( -8192 -8192 369 ) common/li_sr_ml5 8 16 0 0.800000 0.800000 1 1 5000 +( 8192 8192 372 ) ( 8192 -8192 372 ) ( -8192 -8192 372 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8191 3802 7257 ) ( -8191 3802 7257 ) ( -8191 -3524 -7396 ) metals/mt_pv_m16bc 8 18 0 1.000000 1.000000 1 8390656 0 +( -8191 -3239 7539 ) ( 8191 -3239 7539 ) ( 8191 4087 -7115 ) metals/mt_pv_m16bc 8 18 0 1.000000 1.000000 1 8390656 0 +( 4749 -8191 6783 ) ( 4749 8191 6783 ) ( -2577 8191 -7870 ) metals/mt_pv_m16bc -4 7 90 1.000000 1.000000 1 8390656 0 +( -2292 8191 8012 ) ( -2292 -8191 8012 ) ( 5034 -8191 -6641 ) metals/mt_pv_m16bc -4 6 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "junior" +"_color" "1.000000 0.941935 0.703226" +"light" "300" +"origin" "1536 352 324" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 369 ) ( 8192 8192 369 ) ( -8192 -8192 369 ) common/li_sr_ml5 8 16 0 0.800000 0.800000 1 1 15000 +( 8192 8192 372 ) ( 8192 -8192 372 ) ( -8192 -8192 372 ) bricks/b_sr_20 0 0 0 1.000000 1.000000 1 0 0 +( 8191 3802 7257 ) ( -8191 3802 7257 ) ( -8191 -3524 -7396 ) metals/mt_pv_m16bc -24 18 0 1.000000 1.000000 1 8390656 0 +( -8191 -3239 7539 ) ( 8191 -3239 7539 ) ( 8191 4087 -7115 ) metals/mt_pv_m16bc -24 18 0 1.000000 1.000000 1 8390656 0 +( 4903 -8191 6707 ) ( 4903 8191 6707 ) ( -2423 8191 -7947 ) metals/mt_pv_m16bc -3 7 90 1.000000 1.000000 1 8390656 0 +( -2138 8191 8089 ) ( -2138 -8191 8089 ) ( 5188 -8191 -6564 ) metals/mt_pv_m16bc -3 6 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "light" +"_color" "0.610869 0.573457 0.428217" +"light" "150" +"origin" "1728 352 292" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.941935 0.703226" +"origin" "1728 352 340" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 377 ) ( 8192 8192 377 ) ( -8192 -8192 377 ) common/li_sr_ml5 0 8 0 0.800000 0.800000 1 1 15000 +( 8192 8192 380 ) ( 8192 -8192 380 ) ( -8192 -8192 380 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 0 0 +( 8191 3722 7297 ) ( -8191 3722 7297 ) ( -8191 -3604 -7356 ) metals/mt_pv_m16bc -24 25 0 1.000000 1.000000 1 8390656 0 +( -8191 -3313 7502 ) ( 8191 -3313 7502 ) ( 8191 4013 -7151 ) metals/mt_pv_m16bc -24 25 0 1.000000 1.000000 1 8390656 0 +( 5335 -8191 6491 ) ( 5335 8191 6491 ) ( -1991 8191 -8163 ) metals/mt_pv_m16bc -11 6 90 1.000000 1.000000 1 8390656 0 +( -1700 8191 8308 ) ( -1700 -8191 8308 ) ( 5626 -8191 -6345 ) metals/mt_pv_m16bc -11 5 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "light" +"light" "125" +"_color" "0.610869 0.573457 0.428217" +"origin" "2272 256 304" +} +{ +"classname" "junior" +"_color" "1.000000 0.941935 0.703226" +"light" "300" +"origin" "2272 256 352" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 377 ) ( 8192 8192 377 ) ( -8192 -8192 377 ) common/li_sr_ml5 8 8 0 0.800000 0.800000 1 1 15000 +( 8192 8192 380 ) ( 8192 -8192 380 ) ( -8192 -8192 380 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 0 0 +( 8191 3722 7297 ) ( -8191 3722 7297 ) ( -8191 -3604 -7356 ) metals/mt_pv_m16bc 8 25 0 1.000000 1.000000 1 8390656 0 +( -8191 -3313 7502 ) ( 8191 -3313 7502 ) ( 8191 4013 -7151 ) metals/mt_pv_m16bc 8 25 0 1.000000 1.000000 1 8390656 0 +( 5668 -8191 6324 ) ( 5668 8191 6324 ) ( -1658 8191 -8329 ) metals/mt_pv_m16bc -11 6 90 1.000000 1.000000 1 8390656 0 +( -1367 8191 8475 ) ( -1367 -8191 8475 ) ( 5959 -8191 -6179 ) metals/mt_pv_m16bc -11 5 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "light" +"_color" "0.610869 0.573457 0.428217" +"light" "125" +"origin" "2688 256 304" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.941935 0.703226" +"origin" "2688 256 352" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 377 ) ( 8192 8192 377 ) ( -8192 -8192 377 ) common/li_sr_ml5 0 8 0 0.800000 0.800000 1 1 15000 +( 8192 8192 380 ) ( 8192 -8192 380 ) ( -8192 -8192 380 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 0 0 +( 8191 3722 7297 ) ( -8191 3722 7297 ) ( -8191 -3604 -7356 ) metals/mt_pv_m16bc 8 25 0 1.000000 1.000000 1 8390656 0 +( -8191 -3313 7502 ) ( 8191 -3313 7502 ) ( 8191 4013 -7151 ) metals/mt_pv_m16bc 8 25 0 1.000000 1.000000 1 8390656 0 +( 5489 -8191 6414 ) ( 5489 8191 6414 ) ( -1837 8191 -8239 ) metals/mt_pv_m16bc -11 6 90 1.000000 1.000000 1 8390656 0 +( -1546 8191 8385 ) ( -1546 -8191 8385 ) ( 5780 -8191 -6268 ) metals/mt_pv_m16bc -11 5 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "light" +"light" "125" +"_color" "0.610869 0.573457 0.428217" +"origin" "2464 256 304" +} +{ +"classname" "junior" +"_color" "1.000000 0.941935 0.703226" +"light" "300" +"origin" "2464 256 352" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 377 ) ( 8192 8192 377 ) ( -8192 -8192 377 ) common/li_sr_ml5 0 2 0 0.800000 0.800000 1 1 15000 +( 8192 8192 380 ) ( 8192 -8192 380 ) ( -8192 -8192 380 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 0 0 +( 8191 3882 7217 ) ( -8191 3882 7217 ) ( -8191 -3444 -7436 ) metals/mt_pv_m16bc 8 25 0 1.000000 1.000000 1 8390656 0 +( -8191 -3153 7582 ) ( 8191 -3153 7582 ) ( 8191 4173 -7071 ) metals/mt_pv_m16bc 8 25 0 1.000000 1.000000 1 8390656 0 +( 5591 -8191 6363 ) ( 5591 8191 6363 ) ( -1735 8191 -8291 ) metals/mt_pv_m16bc -10 -1 90 1.000000 1.000000 1 8390656 0 +( -1444 8191 8436 ) ( -1444 -8191 8436 ) ( 5882 -8191 -6217 ) metals/mt_pv_m16bc -10 -3 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "light" +"light" "125" +"_color" "0.610869 0.573457 0.428217" +"origin" "2592 456 304" +} +{ +"classname" "junior" +"_color" "1.000000 0.941935 0.703226" +"light" "300" +"origin" "2592 456 352" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 377 ) ( 8192 8192 377 ) ( -8192 -8192 377 ) common/li_sr_ml5 8 10 0 0.800000 0.800000 1 1 15000 +( 8192 8192 380 ) ( 8192 -8192 380 ) ( -8192 -8192 380 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 0 0 +( 8191 4010 7153 ) ( -8191 4010 7153 ) ( -8191 -3316 -7500 ) metals/mt_pv_m16bc 8 25 0 1.000000 1.000000 1 8390656 0 +( -8191 -3025 7646 ) ( 8191 -3025 7646 ) ( 8191 4301 -7007 ) metals/mt_pv_m16bc 8 25 0 1.000000 1.000000 1 8390656 0 +( 5668 -8191 6324 ) ( 5668 8191 6324 ) ( -1658 8191 -8329 ) metals/mt_pv_m16bc -9 -1 90 1.000000 1.000000 1 8390656 0 +( -1367 8191 8475 ) ( -1367 -8191 8475 ) ( 5959 -8191 -6179 ) metals/mt_pv_m16bc -9 -3 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "light" +"_color" "0.610869 0.573457 0.428217" +"light" "125" +"origin" "2688 616 304" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.941935 0.703226" +"origin" "2688 616 352" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 445 ) ( 8192 8192 445 ) ( -8192 -8192 445 ) common/li_sr_ml5 8 16 0 0.800000 0.800000 1 1 20000 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 1 0 0 +( 8191 3772 7272 ) ( -8191 3772 7272 ) ( -8191 -3554 -7381 ) metals/mt_pv_m16bc -24 28 0 1.000000 1.000000 1 8390656 0 +( -8191 -3209 7554 ) ( 8191 -3209 7554 ) ( 8191 4117 -7099 ) metals/mt_pv_m16bc -24 28 0 1.000000 1.000000 1 8390656 0 +( 5077 -8191 6619 ) ( 5077 8191 6619 ) ( -2249 8191 -8034 ) metals/mt_pv_m16bc -14 -26 90 1.000000 1.000000 1 8390656 0 +( -1903 8191 8207 ) ( -1903 -8191 8207 ) ( 5423 -8191 -6447 ) metals/mt_pv_m16bc -14 -27 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "light" +"_color" "0.610869 0.573457 0.428217" +"light" "250" +"origin" "1984 352 344" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.941935 0.703226" +"origin" "1984 352 360" +} +{ +"classname" "light" +"_color" "0.346676 0.316942 0.245113" +"light" "175" +"origin" "2496 600 304" +} +{ +"classname" "light" +"_color" "0.309111 0.294698 0.274791" +"light" "150" +"origin" "2304 616 472" +} +{ +"classname" "light" +"_color" "1.000000 0.807843 0.615686" +"light" "125" +"origin" "-1152 416 24" +} +{ +"classname" "light" +"light" "125" +"_color" "1.000000 0.807843 0.615686" +"origin" "-896 416 24" +} +{ +"classname" "light" +"_color" "1.000000 0.807843 0.615686" +"light" "125" +"origin" "-1152 664 24" +} +{ +"classname" "light" +"_cone" "10" +"_color" "1.000000 0.725490 0.450980" +"light" "775" +"origin" "-2304 896 472" +} +{ +"classname" "light" +"_color" "1.000000 0.725490 0.450980" +"light" "775" +"origin" "-2304 1408 472" +} +{ +"classname" "light" +"light" "125" +"_color" "0.268290 0.246676 0.207736" +"origin" "-1280 1152 312" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 189 ) ( 8192 8192 189 ) ( -8192 -8192 189 ) common/li_sr_ml5 0 8 0 0.800000 0.800000 1 1 15000 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8191 4514 6901 ) ( -8191 4514 6901 ) ( -8191 -2812 -7752 ) metals/mt_pv_m16bc 8 -2 0 1.000000 1.000000 1 8390656 0 +( -8191 -2671 7823 ) ( 8191 -2671 7823 ) ( 8191 4655 -6831 ) metals/mt_pv_m16bc 8 -2 0 1.000000 1.000000 1 8390656 0 +( 2338 -8191 7989 ) ( 2338 8191 7989 ) ( -4988 8191 -6664 ) metals/mt_pv_m16bc 17 6 90 1.000000 1.000000 1 8390656 0 +( -4847 8191 6735 ) ( -4847 -8191 6735 ) ( 2479 -8191 -7919 ) metals/mt_pv_m16bc 17 5 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "light" +"_color" "0.610869 0.573457 0.428217" +"light" "200" +"origin" "-1568 1152 112" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.941935 0.703226" +"origin" "-1568 1152 160" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 189 ) ( 8192 8192 189 ) ( -8192 -8192 189 ) common/li_sr_ml5 0 8 0 0.800000 0.800000 1 1 15000 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8191 4719 6799 ) ( -8191 4719 6799 ) ( -8191 -2607 -7855 ) metals/mt_pv_m16bc 8 -2 0 1.000000 1.000000 1 8390656 0 +( -8191 -2466 7925 ) ( 8191 -2466 7925 ) ( 8191 4860 -6728 ) metals/mt_pv_m16bc 8 -2 0 1.000000 1.000000 1 8390656 0 +( 2338 -8191 7989 ) ( 2338 8191 7989 ) ( -4988 8191 -6664 ) metals/mt_pv_m16bc 17 -26 90 1.000000 1.000000 1 8390656 0 +( -4847 8191 6735 ) ( -4847 -8191 6735 ) ( 2479 -8191 -7919 ) metals/mt_pv_m16bc 17 -27 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "light" +"light" "200" +"_color" "0.610869 0.573457 0.428217" +"origin" "-1568 1408 112" +} +{ +"classname" "junior" +"_color" "1.000000 0.941935 0.703226" +"light" "300" +"origin" "-1568 1408 160" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 189 ) ( 8192 8192 189 ) ( -8192 -8192 189 ) common/li_sr_ml5 0 8 0 0.800000 0.800000 1 1 15000 +( 8192 8192 192 ) ( 8192 -8192 192 ) ( -8192 -8192 192 ) bricks/c_mf_v7d -6 38 0 2.000000 2.000000 1 0 0 +( 8191 4309 7003 ) ( -8191 4309 7003 ) ( -8191 -3017 -7650 ) metals/mt_pv_m16bc 8 -2 0 1.000000 1.000000 1 8390656 0 +( -8191 -2876 7720 ) ( 8191 -2876 7720 ) ( 8191 4450 -6933 ) metals/mt_pv_m16bc 8 -2 0 1.000000 1.000000 1 8390656 0 +( 2338 -8191 7989 ) ( 2338 8191 7989 ) ( -4988 8191 -6664 ) metals/mt_pv_m16bc 16 6 90 1.000000 1.000000 1 8390656 0 +( -4847 8191 6735 ) ( -4847 -8191 6735 ) ( 2479 -8191 -7919 ) metals/mt_pv_m16bc 16 5 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "light" +"light" "200" +"_color" "0.610869 0.573457 0.428217" +"origin" "-1568 896 112" +} +{ +"classname" "junior" +"_color" "1.000000 0.941935 0.703226" +"light" "300" +"origin" "-1568 896 160" +} +{ +"classname" "light" +"light" "250" +"_color" "0.314936 0.289997 0.257475" +"origin" "-1536 1152 344" +} +{ +"classname" "light" +"_color" "0.607001 0.490349 0.374525" +"light" "125" +"origin" "-1936 1792 56" +} +{ +"classname" "light" +"light" "100" +"_color" "0.607001 0.490349 0.374525" +"origin" "-1408 1792 56" +} +{ +"classname" "light" +"_color" "0.607001 0.490349 0.374525" +"light" "125" +"origin" "-1664 1792 56" +} +{ +"classname" "light" +"_color" "0.268290 0.246676 0.207736" +"light" "150" +"origin" "-1016 1728 312" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 221 ) ( 8192 8192 221 ) ( -8192 -8192 221 ) common/li_sr_ml5 0 8 0 0.800000 0.800000 1 1 15000 +( 8192 8192 224 ) ( 8192 -8192 224 ) ( -8192 -8192 224 ) metals/mt_sr_v16 0 5 180 1.000000 1.000000 1 8388608 0 +( 8191 5423 6447 ) ( -8191 5423 6447 ) ( -8191 -1903 -8207 ) metals/mt_pv_m16bc 8 29 0 1.000000 1.000000 1 8390656 0 +( -8191 -1737 8290 ) ( 8191 -1737 8290 ) ( 8191 5589 -6363 ) metals/mt_pv_m16bc 8 29 0 1.000000 1.000000 1 8390656 0 +( 2428 -8191 7944 ) ( 2428 8191 7944 ) ( -4898 8191 -6709 ) metals/mt_pv_m16bc -14 5 90 1.000000 1.000000 1 8390656 0 +( -4732 8191 6792 ) ( -4732 -8191 6792 ) ( 2594 -8191 -7861 ) metals/mt_pv_m16bc -14 4 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "light" +"_color" "0.607001 0.490349 0.374525" +"light" "250" +"origin" "-1440 2304 144" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.811688 0.616883" +"origin" "-1440 2304 160" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 221 ) ( 8192 8192 221 ) ( -8192 -8192 221 ) common/li_sr_ml5 0 8 0 0.800000 0.800000 1 1 15000 +( 8192 8192 224 ) ( 8192 -8192 224 ) ( -8192 -8192 224 ) metals/mt_sr_v16 0 5 180 1.000000 1.000000 1 8388608 0 +( 8191 5577 6370 ) ( -8191 5577 6370 ) ( -8191 -1749 -8283 ) metals/mt_pv_m16bc 8 29 0 1.000000 1.000000 1 8390656 0 +( -8191 -1583 8367 ) ( 8191 -1583 8367 ) ( 8191 5743 -6287 ) metals/mt_pv_m16bc 8 29 0 1.000000 1.000000 1 8390656 0 +( 2428 -8191 7944 ) ( 2428 8191 7944 ) ( -4898 8191 -6709 ) metals/mt_pv_m16bc -13 -27 90 1.000000 1.000000 1 8390656 0 +( -4732 8191 6792 ) ( -4732 -8191 6792 ) ( 2594 -8191 -7861 ) metals/mt_pv_m16bc -13 -28 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "light" +"light" "250" +"_color" "0.607001 0.490349 0.374525" +"origin" "-1419 2494 144" +} +{ +"classname" "junior" +"_color" "1.000000 0.811688 0.616883" +"light" "300" +"origin" "-1440 2496 160" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 221 ) ( 8192 8192 221 ) ( -8192 -8192 221 ) common/li_sr_ml5 8 0 0 0.800000 0.800000 1 1 15000 +( 8192 8192 224 ) ( 8192 -8192 224 ) ( -8192 -8192 224 ) metals/mt_sr_v16 0 5 90 1.000000 1.000000 1 8388608 0 +( 8191 5244 6536 ) ( -8191 5244 6536 ) ( -8191 -2082 -8117 ) metals/mt_pv_m16bc 8 29 0 1.000000 1.000000 1 8390656 0 +( -8191 -1916 8200 ) ( 8191 -1916 8200 ) ( 8191 5410 -6453 ) metals/mt_pv_m16bc 8 29 0 1.000000 1.000000 1 8390656 0 +( 2607 -8191 7855 ) ( 2607 8191 7855 ) ( -4719 8191 -6799 ) metals/mt_pv_m16bc -13 5 90 1.000000 1.000000 1 8390656 0 +( -4553 8191 6882 ) ( -4553 -8191 6882 ) ( 2773 -8191 -7771 ) metals/mt_pv_m16bc -13 4 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "light" +"_color" "0.607001 0.490349 0.374525" +"light" "250" +"origin" "-1216 2080 144" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.811688 0.616883" +"origin" "-1216 2080 160" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 221 ) ( 8192 8192 221 ) ( -8192 -8192 221 ) common/li_sr_ml5 8 0 0 0.800000 0.800000 1 1 15000 +( 8192 8192 224 ) ( 8192 -8192 224 ) ( -8192 -8192 224 ) metals/mt_sr_v16 0 5 90 1.000000 1.000000 1 8388608 0 +( 8191 5244 6536 ) ( -8191 5244 6536 ) ( -8191 -2082 -8117 ) metals/mt_pv_m16bc 8 29 0 1.000000 1.000000 1 8390656 0 +( -8191 -1916 8200 ) ( 8191 -1916 8200 ) ( 8191 5410 -6453 ) metals/mt_pv_m16bc 8 29 0 1.000000 1.000000 1 8390656 0 +( 2812 -8191 7752 ) ( 2812 8191 7752 ) ( -4514 8191 -6901 ) metals/mt_pv_m16bc -13 5 90 1.000000 1.000000 1 8390656 0 +( -4348 8191 6984 ) ( -4348 -8191 6984 ) ( 2978 -8191 -7669 ) metals/mt_pv_m16bc -13 4 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "light" +"light" "250" +"_color" "0.607001 0.490349 0.374525" +"origin" "-960 2080 144" +} +{ +"classname" "junior" +"_color" "1.000000 0.811688 0.616883" +"light" "300" +"origin" "-960 2080 160" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 445 ) ( 8192 8192 445 ) ( -8192 -8192 445 ) common/li_sr_ml5 0 0 0 0.800000 0.800000 1 1 15000 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) metals/mt_sr_v12 0 0 0 2.000000 2.000000 1 8388608 0 +( 8191 5154 6581 ) ( -8191 5154 6581 ) ( -8191 -2172 -8072 ) metals/mt_pv_m16bc -24 28 0 1.000000 1.000000 1 8390656 0 +( -8191 -1826 8245 ) ( 8191 -1826 8245 ) ( 8191 5500 -6408 ) metals/mt_pv_m16bc -24 28 0 1.000000 1.000000 1 8390656 0 +( 2799 -8191 7759 ) ( 2799 8191 7759 ) ( -4527 8191 -6895 ) metals/mt_pv_m16bc -13 4 90 1.000000 1.000000 1 8390656 0 +( -4181 8191 7067 ) ( -4181 -8191 7067 ) ( 3145 -8191 -7586 ) metals/mt_pv_m16bc -13 3 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "light" +"_color" "0.607001 0.490349 0.374525" +"light" "250" +"origin" "-864 2080 328" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.811688 0.616883" +"origin" "-864 2080 380" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 445 ) ( 8192 8192 445 ) ( -8192 -8192 445 ) common/li_sr_ml5 0 0 0 0.800000 0.800000 1 1 15000 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) metals/mt_sr_v12 0 0 0 2.000000 2.000000 1 8388608 0 +( 8191 5513 6402 ) ( -8191 5513 6402 ) ( -8191 -1813 -8251 ) metals/mt_pv_m16bc 8 28 0 1.000000 1.000000 1 8390656 0 +( -8191 -1468 8424 ) ( 8191 -1468 8424 ) ( 8191 5858 -6229 ) metals/mt_pv_m16bc 8 28 0 1.000000 1.000000 1 8390656 0 +( 2338 -8191 7989 ) ( 2338 8191 7989 ) ( -4988 8191 -6664 ) metals/mt_pv_m16bc -13 4 90 1.000000 1.000000 1 8390656 0 +( -4642 8191 6837 ) ( -4642 -8191 6837 ) ( 2684 -8191 -7816 ) metals/mt_pv_m16bc -13 3 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "light" +"_color" "0.607001 0.490349 0.374525" +"light" "200" +"origin" "-1440 2528 328" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.811688 0.616883" +"origin" "-1440 2528 380" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 445 ) ( 8192 8192 445 ) ( -8192 -8192 445 ) common/li_sr_ml5 0 0 0 0.800000 0.800000 1 1 15000 +( 8192 8192 448 ) ( 8192 -8192 448 ) ( -8192 -8192 448 ) metals/mt_sr_v12 0 0 0 2.000000 2.000000 1 8388608 0 +( 8191 5154 6581 ) ( -8191 5154 6581 ) ( -8191 -2172 -8072 ) metals/mt_pv_m16bc 8 28 0 1.000000 1.000000 1 8390656 0 +( -8191 -1826 8245 ) ( 8191 -1826 8245 ) ( 8191 5500 -6408 ) metals/mt_pv_m16bc 8 28 0 1.000000 1.000000 1 8390656 0 +( 2338 -8191 7989 ) ( 2338 8191 7989 ) ( -4988 8191 -6664 ) metals/mt_pv_m16bc -13 4 90 1.000000 1.000000 1 8390656 0 +( -4642 8191 6837 ) ( -4642 -8191 6837 ) ( 2684 -8191 -7816 ) metals/mt_pv_m16bc -13 3 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "light" +"_color" "0.607001 0.490349 0.374525" +"light" "200" +"origin" "-1440 2080 328" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.811688 0.616883" +"origin" "-1440 2080 380" +} +{ +"classname" "light" +"_color" "1.000000 0.909091 0.704545" +"light" "225" +"origin" "-864 2208 16" +} +{ +"classname" "light" +"light" "150" +"_color" "0.346676 0.316942 0.245113" +"origin" "-714 2208 16" +} +{ +"classname" "light" +"_color" "0.346676 0.316942 0.245113" +"light" "200" +"origin" "-632 2048 16" +} +{ +"classname" "light" +"_color" "0.346676 0.316942 0.245113" +"light" "100" +"origin" "-960 2504 80" +} +{ +"classname" "light" +"_color" "0.607001 0.490349 0.374525" +"light" "150" +"origin" "-1408 1952 56" +} +{ +"classname" "junior" +"_color" "1.000000 0.682353 0.368627" +"light" "700" +"origin" "32 1952 1000" +} +{ +"classname" "junior" +"light" "400" +"_color" "0.833333 0.958333 1.000000" +"origin" "-704 416 184" +} +{ +"classname" "junior" +"_color" "1.000000 0.682353 0.368627" +"light" "800" +"origin" "-384 416 568" +} +{ +"classname" "junior" +"_color" "1.000000 0.811688 0.616883" +"light" "400" +"origin" "-128 1232 160" +} +{ +"classname" "junior" +"light" "400" +"_color" "1.000000 0.811688 0.616883" +"origin" "-128 1520 160" +} +{ +"classname" "junior" +"light" "400" +"_color" "1.000000 0.811688 0.616883" +"origin" "192 1232 160" +} +{ +"classname" "junior" +"_color" "1.000000 0.811688 0.616883" +"light" "400" +"origin" "192 1520 160" +} +{ +"classname" "junior" +"light" "800" +"_color" "1.000000 0.682353 0.368627" +"origin" "-40 416 568" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "300" +"origin" "896 1408 96" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.911765 0.764706" +"origin" "1024 1408 96" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "300" +"origin" "1024 1216 96" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.911765 0.764706" +"origin" "1024 1024 96" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.911765 0.764706" +"origin" "1024 608 96" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "300" +"origin" "1024 352 96" +} +{ +"classname" "junior" +"light" "400" +"_color" "1.000000 0.602740 0.616438" +"origin" "896 888 8" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.911765 0.764706" +"origin" "960 1408 360" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "300" +"origin" "1184 1408 360" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.911765 0.764706" +"origin" "1408 1408 360" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "300" +"origin" "1408 1152 360" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.911765 0.764706" +"origin" "1408 896 360" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "300" +"origin" "1664 896 360" +} +{ +"classname" "junior" +"_color" "1.000000 0.909091 0.704545" +"light" "300" +"origin" "2200 504 272" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.909091 0.704545" +"origin" "2496 680 272" +} +{ +"classname" "junior" +"_color" "1.000000 0.961538 0.897436" +"light" "300" +"origin" "2304 600 680" +} +{ +"classname" "junior" +"_color" "1.000000 0.909091 0.704545" +"light" "300" +"origin" "-728 2208 16" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.909091 0.704545" +"origin" "-584 2048 16" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.909091 0.704545" +"origin" "-808 2208 16" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.811688 0.616883" +"origin" "-1408 1952 104" +} +{ +"classname" "junior" +"_color" "1.000000 0.811688 0.616883" +"light" "300" +"origin" "-1408 1792 104" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.811688 0.616883" +"origin" "-1664 1792 104" +} +{ +"classname" "junior" +"_color" "1.000000 0.811688 0.616883" +"light" "300" +"origin" "-1936 1792 104" +} +{ +"classname" "junior" +"_color" "1.000000 0.811688 0.616883" +"light" "300" +"origin" "-896 416 96" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.811688 0.616883" +"origin" "-1152 416 96" +} +{ +"classname" "junior" +"_color" "1.000000 0.811688 0.616883" +"light" "300" +"origin" "-1152 664 96" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.811688 0.616883" +"origin" "-1152 888 96" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "300" +"origin" "-1280 1152 360" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "300" +"origin" "-1024 1392 360" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.911765 0.764706" +"origin" "-1024 1728 360" +} +{ +"classname" "junior" +"_color" "1.000000 0.682353 0.368627" +"light" "800" +"origin" "-1088 2400 432" +} +{ +"classname" "junior" +"light" "200" +"_color" "1.000000 0.909091 0.704545" +"origin" "-944 2504 80" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.911765 0.764706" +"origin" "-832 1392 360" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "300" +"origin" "-608 1392 360" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "5" +"health" "64" +"origin" "-1440 2080 444" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "64" +"light" "5" +"origin" "-1440 2528 444" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "64" +"origin" "-1440 2496 220" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"health" "64" +"light" "5" +"origin" "-1440 2304 220" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "64" +"origin" "-1216 2080 220" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"health" "64" +"light" "5" +"origin" "-960 2080 220" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "64" +"origin" "-1568 896 188" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "64" +"light" "5" +"dmg" "2" +"origin" "-1568 1152 188" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "64" +"origin" "-1568 1408 188" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "48" +"light" "5" +"dmg" "2" +"origin" "-1936 1792 127" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "48" +"origin" "-1664 1792 127" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "48" +"light" "5" +"dmg" "2" +"origin" "-1408 1792 127" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "48" +"origin" "-1408 1952 127" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "40" +"light" "5" +"dmg" "2" +"origin" "-802 2208 16" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "40" +"light" "5" +"dmg" "2" +"origin" "-735 2208 16" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "40" +"origin" "-576 2048 16" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "5" +"health" "40" +"dmg" "2" +"origin" "-1024 1728 383" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"health" "32" +"light" "5" +"origin" "-1024 1392 383" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "5" +"health" "32" +"dmg" "2" +"origin" "-832 1392 383" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"health" "32" +"light" "5" +"origin" "-608 1392 383" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"health" "40" +"light" "5" +"origin" "-1280 1152 383" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "5" +"health" "40" +"dmg" "2" +"origin" "-1152 888 127" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"health" "40" +"light" "5" +"origin" "-1152 664 127" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "5" +"health" "40" +"dmg" "2" +"origin" "-1152 416 127" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"health" "40" +"light" "5" +"origin" "-896 416 127" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "128" +"origin" "-128 1520 207" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "128" +"origin" "192 1232 207" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "128" +"light" "5" +"dmg" "2" +"origin" "192 1520 207" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "64" +"light" "5" +"dmg" "2" +"origin" "512 1408 236" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "64" +"origin" "768 1408 236" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "5" +"health" "32" +"dmg" "2" +"origin" "960 1408 383" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"health" "32" +"light" "5" +"origin" "1184 1408 383" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "5" +"health" "32" +"dmg" "2" +"origin" "1408 1408 383" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"health" "40" +"light" "5" +"origin" "1408 1152 383" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "5" +"health" "32" +"dmg" "2" +"origin" "1408 896 383" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"health" "32" +"light" "5" +"origin" "1664 896 383" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "40" +"light" "5" +"dmg" "2" +"origin" "896 1408 127" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "40" +"origin" "1024 1408 127" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "40" +"light" "5" +"dmg" "2" +"origin" "1024 1216 127" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "40" +"origin" "1024 1024 127" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "3" +"light" "5" +"health" "40" +"origin" "896 895 8" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "40" +"origin" "1024 608 127" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "40" +"light" "5" +"dmg" "2" +"origin" "1024 352 127" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "64" +"origin" "1152 352 236" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "64" +"light" "5" +"dmg" "2" +"origin" "1408 352 236" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "64" +"light" "5" +"dmg" "2" +"origin" "1728 352 368" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "64" +"origin" "1984 352 444" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "48" +"light" "5" +"dmg" "2" +"origin" "2272 256 376" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "48" +"origin" "2464 256 376" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "48" +"light" "5" +"dmg" "2" +"origin" "2688 256 376" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "48" +"origin" "2688 616 376" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "48" +"light" "5" +"dmg" "2" +"origin" "2592 456 376" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "40" +"origin" "2193 504 272" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "40" +"light" "5" +"dmg" "2" +"origin" "2496 687 272" +} +{ +"classname" "info_player_intermission" +"angle" "225" +"angles" "0 45 0" +"origin" "808 1512 24" +} +{ +"classname" "ammo_cylinder" +"origin" "-1584 1536 48" +} +{ +"classname" "ammo_flametank" +"origin" "2502 1094 504" +} +{ +"classname" "item_health_lg" +"origin" "192 608 96" +} +{ +"classname" "item_health_lg" +"origin" "480 736 336" +} +{ +"classname" "ammo_shells" +"origin" "-544 2016 272" +} +{ +"classname" "ammo_rockets" +"origin" "-1376 880 272" +} +{ +"classname" "item_health_lg" +"origin" "-1760 920 272" +} +{ +"classname" "ammo_cylinder" +"origin" "798 1122 578" +} +{ +"classname" "ammo_cylinder" +"origin" "798 1170 578" +} +{ +"classname" "ammo_rockets" +"origin" "576 608 576" +} +{ +"classname" "item_health_sm" +"origin" "-986 2560 16" +} +{ +"classname" "item_health_sm" +"origin" "-946 2560 16" +} +{ +"classname" "ammo_shells" +"origin" "-448 1480 272" +} +{ +"classname" "item_health_lg" +"origin" "2108 562 436" +} +{ +"classname" "ammo_grenades" +"origin" "1688 1192 400" +} +{ +"classname" "ammo_cylinder" +"origin" "1570 600 576" +} +{ +"classname" "ammo_shells" +"origin" "2144 456 272" +} +{ +"classname" "ammo_cylinder" +"origin" "-16 1376 16" +} +{ +"classname" "junior" +"_color" "1.000000 0.682353 0.368627" +"light" "450" +"origin" "-2112 1152 264" +} +{ +"classname" "junior" +"_color" "1.000000 0.682353 0.368627" +"light" "450" +"origin" "-2112 896 264" +} +{ +"classname" "light" +"light" "50" +"_color" "1.000000 0.725490 0.450980" +"origin" "-2080 896 136" +} +{ +"classname" "light" +"_color" "1.000000 0.725490 0.450980" +"light" "50" +"origin" "-2080 1152 136" +} +{ +"classname" "light" +"light" "50" +"_color" "1.000000 0.725490 0.450980" +"origin" "-2080 1408 136" +} +{ +"classname" "light" +"light" "150" +"_color" "0.610869 0.573457 0.428217" +"origin" "1536 352 236" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "0 1024 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "192 1024 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-192 1216 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "0 1216 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "192 1216 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-192 832 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "0 832 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "192 832 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-192 640 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "0 640 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "192 640 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-192 1536 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "0 1536 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "192 1536 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-192 448 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-384 416 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-576 416 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-768 416 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "-256 832 336" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "-64 1216 400" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "128 1216 400" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "-256 1024 336" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "-256 1216 400" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "-64 1536 400" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "128 1536 400" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "-240 1536 400" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "-384 1376 400" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "456 1688 528" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "448 1536 528" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "448 1344 528" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "576 1408 528" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "768 1408 528" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "448 1216 656" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "448 1024 656" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "448 832 656" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "448 640 656" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "704 1216 656" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "352 1408 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "576 1408 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "768 1408 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "896 1408 112" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "1024 608 112" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/lightf_hum2" +"origin" "896 872 16" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "1024 352 112" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "1152 352 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "1408 352 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "1536 352 256" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "1728 352 320" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "1856 384 320" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "1984 384 320" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "2112 384 320" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "1864 644 320" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "1984 640 320" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "2112 640 320" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "1856 896 384" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "2080 896 384" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "2304 896 384" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "1856 1152 384" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "2080 1152 384" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "2304 1152 384" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "1920 1408 448" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "1664 1408 448" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-608 1392 368" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-832 1392 368" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1024 1392 368" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1024 1728 368" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-768 1728 368" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1280 1152 368" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1536 1152 368" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1536 1408 368" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1536 896 368" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-1728 1152 368" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-1728 1408 368" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-1728 896 368" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-1920 1152 128" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-1920 1408 128" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-1920 896 128" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1568 1152 128" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1568 1408 128" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1568 896 128" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1152 888 112" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1152 664 112" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1152 416 112" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-896 416 112" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "498 760 416" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "192 1024 400" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "192 832 400" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-600 2176 104" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-960 2080 104" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-736 2080 104" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1216 2080 104" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1440 2080 104" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1440 2304 104" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1216 2304 104" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-960 2304 104" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-960 2504 104" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1440 2496 104" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1408 1896 104" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1504 1792 104" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1664 1792 104" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1936 1792 104" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1792 1792 104" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1936 1600 104" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-1240 2560 144" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-976 2560 256" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-672 2560 376" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-672 2336 376" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-960 2080 376" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-1216 2080 376" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-1440 2304 376" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-1440 2080 376" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-1440 2304 376" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-1440 2496 376" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-1216 2304 376" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "-960 2304 376" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "792 1408 360" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "960 1408 360" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "1184 1408 360" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "1408 1408 360" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "1408 1152 360" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "1408 896 360" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "1664 896 360" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "2496 960 592" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "2496 1216 592" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "2688 960 592" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "2688 1216 592" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "1496 1184 648" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "1344 1280 648" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "1552 1472 648" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "1344 1056 648" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "1536 1088 648" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "1728 1088 648" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "1568 896 648" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "1760 896 648" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "1616 720 648" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "1760 672 648" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "1760 480 648" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "1920 448 648" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"origin" "2112 448 648" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "2304 448 648" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "2496 448 648" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "2432 544 648" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "2240 552 648" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "2240 648 552" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "2520 640 552" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "2368 656 408" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "2240 448 344" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "2432 448 344" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "2592 456 344" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "2688 616 344" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "2688 256 344" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "2464 256 344" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "2272 256 344" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "1024 832 112" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "1024 1024 112" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "1024 1216 112" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "1024 1408 112" +} +{ +"classname" "item_armor_jacket_heavy" +"angle" "180" +"origin" "384 960 336" +} +{ +"classname" "item_armor_helmet" +"origin" "-414 2344 272" +} +{ +"classname" "ammo_grenades" +"origin" "-1568 1472 336" +} +{ +"classname" "ammo_308" +"origin" "1696 1256 400" +} +{ +"classname" "item_pack" +"angle" "180" +"origin" "-224 1888 224" +} +{ +"classname" "info_player_intermission" +"angle" "225" +"angles" "0 45 0" +"origin" "808 1512 280" +} +{ +"classname" "info_player_deathmatch" +"angle" "135" +"origin" "2536 408 584" +} +{ +"classname" "info_player_deathmatch" +"angle" "315" +"style" "2" +"origin" "-2152 1480 24" +} +{ +"classname" "ammo_flametank" +"angle" "270" +"origin" "-710 552 78" +} +{ +"classname" "ammo_308" +"origin" "-760 2320 16" +} +{ +"classname" "ammo_308" +"origin" "-480 1312 272" +} +{ +"classname" "junior" +"light" "700" +"_color" "1.000000 0.682353 0.368627" +"origin" "352 2024 1000" +} +{ +"classname" "ammo_308" +"origin" "-760 2360 16" +} +{ +"classname" "light" +"_color" "0.909091 1.000000 0.954545" +"light" "150" +"origin" "-1088 2344 208" +} +{ +"classname" "ammo_grenades" +"origin" "-1616 888 400" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "2688 1088 832" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "2688 832 832" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "2688 640 896" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "2688 448 896" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "2432 640 896" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "2432 448 896" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "2240 640 896" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "2240 448 896" +} +{ +"classname" "light" +"_color" "0.911765 1.000000 0.911765" +"light" "125" +"origin" "-128 344 576" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/fire_sm" +"origin" "-81 348 80" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow" +"origin" "1578 448 670" +} +{ +"classname" "ammo_308" +"origin" "550 1698 626" +} +{ +"classname" "weapon_heavymachinegun" +"angle" "180" +"origin" "502 1704 626" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "48" +"origin" "2690 446 762" +} +{ +"classname" "junior" +"_color" "1.000000 0.941935 0.703226" +"light" "300" +"origin" "2690 446 734" +} +{ +"classname" "light" +"light" "150" +"_color" "0.610869 0.573457 0.428217" +"origin" "2690 446 686" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8386 -8178 764 ) ( 8386 8206 764 ) ( -7998 -8178 764 ) common/li_sr_ml5 6 6 0 0.800000 0.800000 1 1 15000 +( 8386 8206 767 ) ( 8386 -8178 767 ) ( -7998 -8178 767 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 0 0 +( 8385 3754 7367 ) ( -7997 3754 7367 ) ( -7997 -3572 -7286 ) metals/mt_pv_m16bc -24 11 0 1.000000 1.000000 1 8390656 0 +( -7997 -3035 7713 ) ( 8385 -3035 7713 ) ( 8385 4291 -6940 ) metals/mt_pv_m16bc -24 11 0 1.000000 1.000000 1 8390656 0 +( 5585 -8177 6542 ) ( 5585 8205 6542 ) ( -1741 8205 -8112 ) metals/mt_pv_m16bc -30 -10 90 1.000000 1.000000 1 8390656 0 +( -1203 8205 8538 ) ( -1203 -8177 8538 ) ( 6123 -8177 -6115 ) metals/mt_pv_m16bc -30 -11 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8376 -8032 668 ) ( 8376 8352 668 ) ( -8008 -8032 668 ) common/li_sr_ml5 2 -4 0 0.800000 0.800000 1 1 15000 +( 8376 8352 671 ) ( 8376 -8032 671 ) ( -8008 -8032 671 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 0 0 +( 8375 3900 7271 ) ( -8007 3900 7271 ) ( -8007 -3426 -7382 ) metals/mt_pv_m16bc -24 11 0 1.000000 1.000000 1 8390656 0 +( -8007 -2889 7617 ) ( 8375 -2889 7617 ) ( 8375 4437 -7036 ) metals/mt_pv_m16bc -24 11 0 1.000000 1.000000 1 8390656 0 +( 5575 -8031 6446 ) ( 5575 8351 6446 ) ( -1751 8351 -8208 ) metals/mt_pv_m16bc -30 -10 90 1.000000 1.000000 1 8390656 0 +( -1213 8351 8442 ) ( -1213 -8031 8442 ) ( 6113 -8031 -6211 ) metals/mt_pv_m16bc -30 -11 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "48" +"origin" "2680 592 666" +} +{ +"classname" "junior" +"_color" "1.000000 0.941935 0.703226" +"light" "300" +"origin" "2680 592 638" +} +{ +"classname" "light" +"light" "150" +"_color" "0.610869 0.573457 0.428217" +"origin" "2680 592 590" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.911765 0.764706" +"origin" "-1024 1152 360" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "5" +"health" "40" +"dmg" "2" +"origin" "-1024 1152 383" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybglow2" +"origin" "-1024 1152 368" +} +{ +"classname" "light" +"_color" "0.268290 0.246676 0.207736" +"light" "150" +"origin" "-1024 1152 312" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.911765 0.764706" +"origin" "-1026 1022 336" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/lightf_broke" +"origin" "-1026 1022 344" +} +{ +"classname" "light" +"style" "10" +"_color" "0.268290 0.246676 0.207736" +"light" "150" +"origin" "-1026 1022 338" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "64" +"light" "5" +"dmg" "2" +"origin" "-1536 1152 510" +} +{ +"classname" "junior" +"light" "400" +"_color" "1.000000 0.912500 0.812500" +"origin" "-1536 1152 464" +} +{ +"classname" "light" +"light" "250" +"_color" "0.314936 0.289997 0.257475" +"origin" "-1536 1152 424" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "64" +"light" "5" +"dmg" "2" +"origin" "-1536 898 510" +} +{ +"classname" "junior" +"light" "400" +"_color" "1.000000 0.912500 0.812500" +"origin" "-1536 898 464" +} +{ +"classname" "light" +"light" "250" +"_color" "0.314936 0.289997 0.257475" +"origin" "-1536 898 424" +} +{ +"classname" "light" +"style" "3" +"light" "200" +"_color" "0.667 0.667 1.000" +"origin" "16 1984 464" +} +{ +"classname" "light" +"light" "150" +"_color" "0.268290 0.246676 0.207736" +"origin" "-384 1728 312" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "300" +"origin" "-384 1728 360" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"health" "40" +"light" "5" +"origin" "-384 1728 383" +} +{ +"classname" "func_wall" +{ +( 32 8120 8320 ) ( 32 -8264 8320 ) ( 32 8120 -8064 ) metals/mt_pv_m16bc 0 0 0 2.000000 2.000000 1 8390656 0 +( 40 -8264 8320 ) ( 40 8120 8320 ) ( 40 8120 -8064 ) metals/mt_pv_m16bc 0 0 0 2.000000 2.000000 1 8390656 0 +( -8192 1776 8320 ) ( 8192 1776 8320 ) ( -8192 1776 -8064 ) metals/mt_pv_m16bc 0 0 0 2.000000 2.000000 1 8390656 0 +( 8192 1784 8320 ) ( -8192 1784 8320 ) ( -8192 1784 -8064 ) props/sg_sr_2a 0 32 0 2.000000 2.000000 1 0 0 +( 8192 -8264 824 ) ( 8192 8120 824 ) ( -8192 -8264 824 ) common/li_sr_m19 0 0 0 0.500000 0.500000 1 1 25000 +( 8192 8120 832 ) ( 8192 -8264 832 ) ( -8192 -8264 832 ) metals/mt_mf_v1c 0 0 0 4.000000 4.000000 1 8390656 0 +} +{ +( 124 8120 8320 ) ( 124 -8264 8320 ) ( 124 8120 -8064 ) metals/mt_pv_m16bc 0 0 0 1.000000 1.000000 1 8390656 0 +( 132 -8264 8320 ) ( 132 8120 8320 ) ( 132 8120 -8064 ) metals/mt_pv_m16bc 0 0 0 2.000000 2.000000 1 8390656 0 +( -8192 1776 8320 ) ( 8192 1776 8320 ) ( -8192 1776 -8064 ) metals/mt_pv_m16bc 0 0 0 2.000000 2.000000 1 8390656 0 +( 8192 1784 8320 ) ( -8192 1784 8320 ) ( -8192 1784 -8064 ) props/sg_sr_2a 0 32 0 2.000000 2.000000 1 0 0 +( 8192 -8264 824 ) ( 8192 8120 824 ) ( -8192 -8264 824 ) common/li_sr_m19 -8 0 0 0.500000 0.500000 1 1 25000 +( 8192 8120 832 ) ( 8192 -8264 832 ) ( -8192 -8264 832 ) metals/mt_mf_v1c 0 0 0 4.000000 4.000000 1 8390656 0 +} +{ +( 204 8120 8320 ) ( 204 -8264 8320 ) ( 204 8120 -8064 ) metals/mt_pv_m16bc 0 0 0 2.000000 2.000000 1 8390656 0 +( 212 -8264 8320 ) ( 212 8120 8320 ) ( 212 8120 -8064 ) metals/mt_pv_m16bc 0 0 0 2.000000 2.000000 1 8390656 0 +( -8192 1776 8320 ) ( 8192 1776 8320 ) ( -8192 1776 -8064 ) metals/mt_pv_m16bc 0 0 0 2.000000 2.000000 1 8390656 0 +( 8192 1784 8320 ) ( -8192 1784 8320 ) ( -8192 1784 -8064 ) props/sg_sr_2a 0 32 0 2.000000 2.000000 1 0 0 +( 8192 -8264 824 ) ( 8192 8120 824 ) ( -8192 -8264 824 ) common/li_sr_m19 -8 0 0 0.500000 0.500000 1 1 25000 +( 8192 8120 832 ) ( 8192 -8264 832 ) ( -8192 -8264 832 ) metals/mt_mf_v1c 0 0 0 4.000000 4.000000 1 8390656 0 +} +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.911765 0.764706" +"origin" "208 1776 816" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "300" +"origin" "128 1776 816" +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.911765 0.764706" +"origin" "36 1776 816" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "5" +"health" "40" +"origin" "36 1780 823" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "40" +"light" "5" +"origin" "128 1780 823" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "5" +"health" "40" +"origin" "208 1780 823" +} +{ +"classname" "dm_cashspawn" +"angle" "270" +"type" "cashroll" +"speed" "400" +"origin" "32 1748 488" +} +{ +"classname" "dm_safebag" +"style" "1" +"origin" "1392 400 576" +} +{ +"classname" "light" +"light" "775" +"_color" "1.000000 0.725490 0.450980" +"origin" "-2304 1152 472" +} +{ +"classname" "light" +"light" "600" +"_color" "1.000000 0.725490 0.450980" +"origin" "16 2440 504" +} +{ +"classname" "func_wall" +{ +( -952 8192 8192 ) ( -952 -8192 8192 ) ( -952 8192 -8192 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 268435584 8392704 0 +( -776 -8192 8192 ) ( -776 8192 8192 ) ( -776 8192 -8192 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 268435584 8392704 0 +( -8192 1992 8192 ) ( 8192 1992 8192 ) ( -8192 1992 -8192 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 268435584 8392704 0 +( 8192 2168 8192 ) ( -8192 2168 8192 ) ( -8192 2168 -8192 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 268435584 8392704 0 +( 8192 -8192 232 ) ( 8192 8192 232 ) ( -8192 -8192 232 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 268435584 8392704 0 +( 8192 8192 248 ) ( 8192 -8192 248 ) ( -8192 -8192 248 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 268435584 8392704 0 +} +} +{ +"classname" "func_wall" +{ +( -1208 8192 8192 ) ( -1208 -8192 8192 ) ( -1208 8192 -8192 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 128 8392704 0 +( -968 -8192 8192 ) ( -968 8192 8192 ) ( -968 8192 -8192 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 128 8392704 0 +( -8192 1992 8192 ) ( 8192 1992 8192 ) ( -8192 1992 -8192 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 128 8392704 0 +( 8192 2168 8192 ) ( -8192 2168 8192 ) ( -8192 2168 -8192 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 128 8392704 0 +( 8192 -8192 232 ) ( 8192 8192 232 ) ( -8192 -8192 232 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 128 8392704 0 +( 8192 8192 248 ) ( 8192 -8192 248 ) ( -8192 -8192 248 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 128 8392704 0 +} +} +{ +"classname" "func_wall" +{ +( -1528 2168 248 ) ( -1528 1992 248 ) ( -1528 1992 232 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 128 8392704 0 +( -1224 1992 248 ) ( -1224 2168 248 ) ( -1224 2168 232 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 128 8392704 0 +( -1528 1992 248 ) ( -1224 1992 248 ) ( -1224 1992 232 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 128 8392704 0 +( -1224 2168 248 ) ( -1528 2168 248 ) ( -1528 2168 232 ) sprites/alfa_v1 0 0 0 1.000000 1.000000 128 16781312 0 +( 8200 -8192 232 ) ( 8200 8192 232 ) ( -8184 -8192 232 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 128 8392704 0 +( 8192 8192 248 ) ( 8192 -8192 248 ) ( -8192 -8192 248 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 128 8392704 0 +} +} +{ +"classname" "func_wall" +{ +( -1528 8192 8192 ) ( -1528 -8192 8192 ) ( -1528 8192 -8192 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 128 8392704 0 +( -1352 -8192 8192 ) ( -1352 8192 8192 ) ( -1352 8192 -8192 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 128 8392704 0 +( -8192 2168 8192 ) ( 8192 2168 8192 ) ( -8192 2168 -8192 ) sprites/alfa_v1 0 0 0 1.000000 1.000000 128 16781312 0 +( 8192 2296 8192 ) ( -8192 2296 8192 ) ( -8192 2296 -8192 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 128 8392704 0 +( 8200 -8192 232 ) ( 8200 8192 232 ) ( -8184 -8192 232 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 128 8392704 0 +( 8192 8192 248 ) ( 8192 -8192 248 ) ( -8192 -8192 248 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 128 8392704 0 +} +} +{ +"classname" "func_wall" +{ +( -1528 8192 8192 ) ( -1528 -8192 8192 ) ( -1528 8192 -8192 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 268435584 8392704 0 +( -1352 -8192 8192 ) ( -1352 8192 8192 ) ( -1352 8192 -8192 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 268435584 8392704 0 +( -8192 2312 8192 ) ( 8192 2312 8192 ) ( -8192 2312 -8192 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 268435584 8392704 0 +( 8192 2488 8192 ) ( -8192 2488 8192 ) ( -8192 2488 -8192 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 268435584 8392704 0 +( 8192 -8192 232 ) ( 8192 8192 232 ) ( -8192 -8192 232 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 268435584 8392704 0 +( 8192 8192 248 ) ( 8192 -8192 248 ) ( -8192 -8192 248 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 268435584 8392704 0 +} +} +{ +"classname" "func_wall" +{ +( -1528 8192 8192 ) ( -1528 -8192 8192 ) ( -1528 8192 -8192 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 128 8392704 0 +( -1352 -8192 8192 ) ( -1352 8192 8192 ) ( -1352 8192 -8192 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 128 8392704 0 +( -8192 2504 8192 ) ( 8192 2504 8192 ) ( -8192 2504 -8192 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 128 8392704 0 +( 8192 2616 8192 ) ( -8192 2616 8192 ) ( -8192 2616 -8192 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 128 8392704 0 +( 8192 -8192 232 ) ( 8192 8192 232 ) ( -8192 -8192 232 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 128 8392704 0 +( 8192 8192 248 ) ( 8192 -8192 248 ) ( -8192 -8192 248 ) sprites/mb_grate_2 0 0 0 0.750000 0.750000 128 8392704 0 +} +} +{ +"classname" "func_wall" +{ +( -48 2560 512 ) ( -32 2560 512 ) ( -32 2240 512 ) pvglass/pv_g6 0 0 0 1.000000 1.000000 1 0 0 +( -48 2240 448 ) ( -32 2240 448 ) ( -32 2560 448 ) pvglass/pv_g6 0 0 0 1.000000 1.000000 1 0 0 +( -48 2560 512 ) ( -48 2240 512 ) ( -48 2240 448 ) pvglass/pv_g6 0 0 0 1.000000 1.000000 1 1 500 +( -32 2560 448 ) ( -32 2240 448 ) ( -32 2240 512 ) pvglass/pv_g6 0 0 0 1.000000 1.000000 1 0 0 +( -32 2560 512 ) ( -48 2560 512 ) ( -48 2560 448 ) pvglass/pv_g6 0 0 0 1.000000 1.000000 1 0 0 +( -32 2240 448 ) ( -48 2240 448 ) ( -48 2240 512 ) pvglass/pv_g6 0 0 0 1.000000 1.000000 1 0 0 +} +} +{ +"classname" "junior" +"_color" "1.000000 0.682353 0.368627" +"light" "450" +"origin" "-112 2496 448" +} +{ +"classname" "junior" +"_color" "1.000000 0.682353 0.368627" +"light" "450" +"origin" "-112 2304 448" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "64" +"light" "5" +"dmg" "2" +"origin" "-1536 1408 510" +} +{ +"classname" "junior" +"light" "400" +"_color" "1.000000 0.912500 0.812500" +"origin" "-1536 1408 464" +} +{ +"classname" "light" +"light" "250" +"_color" "0.314936 0.289997 0.257475" +"origin" "-1536 1408 424" +} +{ +"classname" "func_wall" +{ +( 2196 8192 8192 ) ( 2196 -8192 8192 ) ( 2196 8192 -8192 ) metals/mt_sr_v16 0 0 90 1.000000 1.000000 128 8390656 0 +( 2428 -8192 8192 ) ( 2428 8192 8192 ) ( 2428 8192 -8192 ) metals/mt_pv_m16bc 0 0 0 1.000000 1.000000 128 8390656 0 +( -8192 516 8192 ) ( 8192 516 8192 ) ( -8192 516 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 128 8388608 0 +( 8192 572 8192 ) ( -8192 572 8192 ) ( -8192 572 -8192 ) metals/mt_sr_v16 0 16 0 1.000000 1.000000 128 8388608 0 +( 8192 -8192 544 ) ( 8192 8192 544 ) ( -8192 -8192 544 ) sprites/mb_grate_2 0 0 0 0.500000 0.500000 128 8392704 0 +( 8192 8192 560 ) ( 8192 -8192 560 ) ( -8192 -8192 560 ) sprites/mb_grate_2 0 0 0 0.500000 0.500000 128 8392704 0 +} +} +{ +"classname" "weapon_flamethrower" +"origin" "-496 288 32" +} +{ +"classname" "func_wall" +{ +( 1792 7568 9545 ) ( 1792 -8816 9545 ) ( 1792 7568 -9730 ) metals/m_mf_v2 24 64 0 2.000000 2.000000 1 0 0 +( 1796 -8816 9545 ) ( 1796 7568 9545 ) ( 1796 7568 -9730 ) metals/m_mf_v2 24 64 0 2.000000 2.000000 1 0 0 +( -7936 572 9545 ) ( 8448 572 9545 ) ( -7936 572 -9730 ) metals/m_mf_v2 32 64 0 2.000000 2.000000 1 0 0 +( 8448 576 9545 ) ( -7936 576 9545 ) ( -7936 576 -9730 ) metals/m_mf_v2 32 64 0 2.000000 2.000000 1 0 0 +( 8448 -8816 416 ) ( 8448 7568 416 ) ( -7936 -8816 416 ) metals/m_mf_v2 64 -56 0 2.000000 2.000000 1 0 0 +( 8448 7568 576 ) ( 8448 -8816 576 ) ( -7936 -8816 576 ) metals/m_mf_v2 64 -56 0 2.000000 2.000000 1 0 0 +} +{ +( 1792 7568 5433 ) ( 1792 -8816 5433 ) ( 1792 7568 -5004 ) sprites/rail_c2 -128 48 90 1.000000 1.000000 128 16781312 0 +( 1794 -8816 5433 ) ( 1794 7568 5433 ) ( 1794 7568 -5004 ) sprites/rail_c2 -128 48 90 1.000000 1.000000 128 4096 0 +( -7936 548 5433 ) ( 8448 548 5433 ) ( -7936 548 -5004 ) sprites/rail_c2 -128 42 90 1.000000 1.000000 128 16781312 0 +( 8448 572 5433 ) ( -7936 572 5433 ) ( -7936 572 -5004 ) sprites/rail_c2 -128 42 90 1.000000 1.000000 128 16781312 0 +( 8448 -8816 416 ) ( 8448 7568 416 ) ( -7936 -8816 416 ) sprites/rail_c2 -128 42 90 1.000000 1.000000 128 0 0 +( 8448 7568 571 ) ( 8448 -8816 571 ) ( -7936 -8816 571 ) sprites/rail_c2 -128 42 90 1.000000 1.000000 128 4096 0 +} +{ +( 1792 7568 9545 ) ( 1792 -8816 9545 ) ( 1792 7568 -9730 ) metals/m_mf_v2 24 64 0 2.000000 2.000000 1 0 0 +( 1796 -8816 9545 ) ( 1796 7568 9545 ) ( 1796 7568 -9730 ) metals/m_mf_v2 24 64 0 2.000000 2.000000 1 0 0 +( -7936 544 9545 ) ( 8448 544 9545 ) ( -7936 544 -9730 ) metals/m_mf_v2 32 64 0 2.000000 2.000000 1 0 0 +( 8448 548 9545 ) ( -7936 548 9545 ) ( -7936 548 -9730 ) metals/m_mf_v2 32 64 0 2.000000 2.000000 1 0 0 +( 8448 -8816 416 ) ( 8448 7568 416 ) ( -7936 -8816 416 ) metals/m_mf_v2 64 -56 0 2.000000 2.000000 1 0 0 +( 8448 7568 576 ) ( 8448 -8816 576 ) ( -7936 -8816 576 ) metals/m_mf_v2 64 -56 0 2.000000 2.000000 1 0 0 +} +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"health" "40" +"light" "5" +"origin" "-640 1728 383" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "300" +"origin" "-640 1728 360" +} +{ +"classname" "light" +"light" "150" +"_color" "0.268290 0.246676 0.207736" +"origin" "-648 1728 312" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"health" "40" +"light" "5" +"origin" "-384 1976 384" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "300" +"origin" "-384 1976 360" +} +{ +"classname" "light" +"light" "150" +"_color" "0.268290 0.246676 0.207736" +"origin" "-384 1976 312" +} +{ +"classname" "ammo_rockets" +"angle" "37" +"origin" "2056 1296 448" +} +{ +"classname" "ammo_rockets" +"angle" "141" +"origin" "2096 1256 456" +} +{ +"classname" "func_wall" +{ +( -6452 974 22509 ) ( 9932 974 22509 ) ( -6452 974 -24303 ) sprites/rail_c2 16 0 90 1.000000 1.000000 128 4096 0 +( 9932 976 22509 ) ( -6452 976 22509 ) ( -6452 976 -24303 ) sprites/rail_c2 16 0 90 1.000000 1.000000 128 16781312 0 +( 496 -9648 22509 ) ( 496 6736 22509 ) ( 496 -9648 -24303 ) sprites/rail_c2 16 0 90 1.000000 1.000000 128 16781312 0 +( 472 6736 22509 ) ( 472 -9648 22509 ) ( 472 -9648 -24303 ) sprites/rail_c2 16 0 90 1.000000 1.000000 128 16781312 0 +( 9932 6736 320 ) ( -6452 6736 320 ) ( 9932 -9648 320 ) sprites/rail_c2 16 0 90 1.000000 1.000000 128 4096 0 +( -6452 6736 560 ) ( 9932 6736 560 ) ( 9932 -9648 560 ) sprites/rail_c2 16 0 90 1.000000 1.000000 128 4096 0 +} +} +{ +"classname" "func_wall" +{ +( 2428 8192 8192 ) ( 2428 -8192 8192 ) ( 2428 8192 -8192 ) sprites/rail_c2 16 0 90 1.000000 1.000000 128 4096 0 +( 2430 -8192 8192 ) ( 2430 8192 8192 ) ( 2430 8192 -8192 ) sprites/rail_c2 16 0 90 1.000000 1.000000 128 16781312 0 +( -8194 1244 8192 ) ( 8190 1244 8192 ) ( -8194 1244 -8192 ) sprites/rail_c2 16 0 90 1.000000 1.000000 128 16781312 0 +( 8190 1268 8192 ) ( -8194 1268 8192 ) ( -8194 1268 -8192 ) sprites/rail_c2 16 0 90 1.000000 1.000000 128 16781312 0 +( 8190 -8192 426 ) ( 8190 8192 426 ) ( -8194 -8192 426 ) sprites/rail_c2 16 0 90 1.000000 1.000000 128 4096 0 +( 8190 8192 510 ) ( 8190 -8192 510 ) ( -8194 -8192 510 ) sprites/rail_c2 16 0 90 1.000000 1.000000 128 4096 0 +} +} +{ +"classname" "func_wall" +{ +( 2364 8192 8192 ) ( 2364 -8192 8192 ) ( 2364 8192 -8192 ) sprites/rail_v2 4 -16 0 1.000000 1.000000 128 4096 0 +( 2372 -8192 8192 ) ( 2372 8192 8192 ) ( 2372 8192 -8192 ) sprites/rail_v2 4 -16 0 1.000000 1.000000 128 4096 0 +( -8192 516 8192 ) ( 8192 516 8192 ) ( -8192 516 -8192 ) sprites/rail_v2 4 -16 90 1.000000 1.000000 128 16781312 0 +( 8192 684 8192 ) ( -8192 684 8192 ) ( -8192 684 -8192 ) sprites/rail_v2 4 -16 90 1.000000 1.000000 128 16781312 0 +( 8192 -8192 688 ) ( 8192 8192 688 ) ( -8192 -8192 688 ) sprites/rail_v2 4 -16 90 1.000000 1.000000 128 16781312 0 +( 8192 8192 720 ) ( 8192 -8192 720 ) ( -8192 -8192 720 ) sprites/rail_v2 4 -16 90 1.000000 1.000000 128 16781312 0 +} +} +{ +"classname" "func_wall" +{ +( 2236 8192 8192 ) ( 2236 -8192 8192 ) ( 2236 8192 -8192 ) sprites/rail_v2 4 -16 0 1.000000 1.000000 128 4096 0 +( 2244 -8192 8192 ) ( 2244 8192 8192 ) ( 2244 8192 -8192 ) sprites/rail_v2 4 -16 0 1.000000 1.000000 128 4096 0 +( -8192 516 8192 ) ( 8192 516 8192 ) ( -8192 516 -8192 ) sprites/rail_v2 4 -16 90 1.000000 1.000000 128 16781312 0 +( 8192 684 8192 ) ( -8192 684 8192 ) ( -8192 684 -8192 ) sprites/rail_v2 4 -16 90 1.000000 1.000000 128 16781312 0 +( 8192 -8192 688 ) ( 8192 8192 688 ) ( -8192 -8192 688 ) sprites/rail_v2 4 -16 90 1.000000 1.000000 128 16781312 0 +( 8192 8192 720 ) ( 8192 -8192 720 ) ( -8192 -8192 720 ) sprites/rail_v2 4 -16 90 1.000000 1.000000 128 16781312 0 +} +} +{ +"classname" "item_health_lg" +"origin" "2400 1206 282" +} +{ +"classname" "func_wall" +{ +( -964 8192 8192 ) ( -964 -8192 8192 ) ( -964 8192 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( -956 -8192 8192 ) ( -956 8192 8192 ) ( -956 8192 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( -8192 2504 8192 ) ( 8192 2504 8192 ) ( -8192 2504 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( 8192 2624 8192 ) ( -8192 2624 8192 ) ( -8192 2624 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( 8192 -8192 480 ) ( 8192 8192 480 ) ( -8192 -8192 480 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( 8192 8192 544 ) ( 8192 -8192 544 ) ( -8192 -8192 544 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +} +} +{ +"classname" "func_wall" +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) sprites/rail_v1 0 32 0 1.000000 1.000000 128 4096 0 +( -832 -8192 8192 ) ( -832 8192 8192 ) ( -832 8192 -8192 ) sprites/rail_v1 0 32 0 1.000000 1.000000 128 4096 0 +( -8192 2492 8192 ) ( 8192 2492 8192 ) ( -8192 2492 -8192 ) sprites/rail_v1 0 32 0 1.000000 1.000000 128 4096 0 +( 8192 2500 8192 ) ( -8192 2500 8192 ) ( -8192 2500 -8192 ) sprites/rail_v1 0 32 0 1.000000 1.000000 128 4096 0 +( 8192 -8192 480 ) ( 8192 8192 480 ) ( -8192 -8192 480 ) sprites/rail_v1 0 32 0 1.000000 1.000000 128 4096 0 +( 8192 8192 544 ) ( 8192 -8192 544 ) ( -8192 -8192 544 ) sprites/rail_v1 0 32 0 1.000000 1.000000 128 4096 0 +} +} +{ +"classname" "func_wall" +{ +( -1344 8192 8192 ) ( -1344 -8192 8192 ) ( -1344 8192 -8192 ) sprites/rail_v1 0 32 0 1.000000 1.000000 128 4096 0 +( -832 -8192 8192 ) ( -832 8192 8192 ) ( -832 8192 -8192 ) sprites/rail_v1 0 32 0 1.000000 1.000000 128 4096 0 +( -8192 2300 8192 ) ( 8192 2300 8192 ) ( -8192 2300 -8192 ) sprites/rail_v1 0 32 0 1.000000 1.000000 128 4096 0 +( 8192 2308 8192 ) ( -8192 2308 8192 ) ( -8192 2308 -8192 ) sprites/rail_v1 0 32 0 1.000000 1.000000 128 4096 0 +( 8192 -8192 480 ) ( 8192 8192 480 ) ( -8192 -8192 480 ) sprites/rail_v1 0 32 0 1.000000 1.000000 128 4096 0 +( 8192 8192 544 ) ( 8192 -8192 544 ) ( -8192 -8192 544 ) sprites/rail_v1 0 32 0 1.000000 1.000000 128 4096 0 +} +} +{ +"classname" "func_wall" +{ +( -964 8192 8192 ) ( -964 -8192 8192 ) ( -964 8192 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( -956 -8192 8192 ) ( -956 8192 8192 ) ( -956 8192 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( -8192 2176 8192 ) ( 8192 2176 8192 ) ( -8192 2176 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( 8192 2296 8192 ) ( -8192 2296 8192 ) ( -8192 2296 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( 8192 -8192 480 ) ( 8192 8192 480 ) ( -8192 -8192 480 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( 8192 8192 544 ) ( 8192 -8192 544 ) ( -8192 -8192 544 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +} +} +{ +"classname" "func_wall" +{ +( -1220 8192 8192 ) ( -1220 -8192 8192 ) ( -1220 8192 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( -1212 -8192 8192 ) ( -1212 8192 8192 ) ( -1212 8192 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( -8192 2176 8192 ) ( 8192 2176 8192 ) ( -8192 2176 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( 8192 2296 8192 ) ( -8192 2296 8192 ) ( -8192 2296 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( 8192 -8192 480 ) ( 8192 8192 480 ) ( -8192 -8192 480 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( 8192 8192 544 ) ( 8192 -8192 544 ) ( -8192 -8192 544 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +} +} +{ +"classname" "func_wall" +{ +( -1220 8192 8192 ) ( -1220 -8192 8192 ) ( -1220 8192 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( -1212 -8192 8192 ) ( -1212 8192 8192 ) ( -1212 8192 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( -8192 2312 8192 ) ( 8192 2312 8192 ) ( -8192 2312 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( 8192 2488 8192 ) ( -8192 2488 8192 ) ( -8192 2488 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( 8192 -8192 480 ) ( 8192 8192 480 ) ( -8192 -8192 480 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( 8192 8192 544 ) ( 8192 -8192 544 ) ( -8192 -8192 544 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +} +} +{ +"classname" "func_wall" +{ +( -1220 8192 8192 ) ( -1220 -8192 8192 ) ( -1220 8192 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( -1212 -8192 8192 ) ( -1212 8192 8192 ) ( -1212 8192 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( -8192 2504 8192 ) ( 8192 2504 8192 ) ( -8192 2504 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( 8192 2624 8192 ) ( -8192 2624 8192 ) ( -8192 2624 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( 8192 -8192 480 ) ( 8192 8192 480 ) ( -8192 -8192 480 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( 8192 8192 544 ) ( 8192 -8192 544 ) ( -8192 -8192 544 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +} +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "40" +"origin" "-801 2464 16" +} +{ +"classname" "junior" +"_color" "1.000000 0.909091 0.704545" +"light" "300" +"origin" "-808 2464 16" +} +{ +"classname" "light" +"light" "225" +"_color" "1.000000 0.909091 0.704545" +"origin" "-864 2464 16" +} +{ +"classname" "junior" +"light" "200" +"_color" "0.833333 0.958333 1.000000" +"origin" "1948 592 268" +} +{ +"classname" "junior" +"light" "200" +"_color" "0.833333 0.958333 1.000000" +"origin" "2046 592 266" +} +{ +"classname" "item_health_lg" +"origin" "-344 1688 288" +} +{ +"classname" "weapon_grenadelauncher" +"origin" "-982 988 278" +} +{ +"classname" "ammo_grenades" +"origin" "-1058 988 280" +} +{ +"classname" "item_health_lg" +"angle" "279" +"origin" "-87 2491 276" +} +{ +"classname" "ammo_grenades" +"origin" "-84 2306 278" +} +{ +"classname" "info_player_deathmatch" +"angle" "183" +"style" "1" +"origin" "2472 888 552" +} +{ +"classname" "info_player_deathmatch" +"angle" "319" +"style" "1" +"origin" "1560 1504 416" +} +{ +"classname" "info_player_deathmatch" +"style" "1" +"origin" "1824 640 440" +} +{ +"classname" "func_wall" +{ +( -5008 672 4773 ) ( 11376 672 4773 ) ( -5008 672 -4590 ) metals/mt_sr_v16 119 16 0 2.000000 2.000000 268435584 8388608 0 +( 11376 674 4773 ) ( -5008 674 4773 ) ( -5008 674 -4590 ) sprites/rail_c2 -96 26 90 1.000000 1.000000 268435584 4096 0 +( 2012 -9056 4773 ) ( 2012 7328 4773 ) ( 2012 -9056 -4590 ) metals/m_mf_v2 -31 48 0 2.000000 2.000000 268435584 0 0 +( 1988 7328 4773 ) ( 1988 -9056 4773 ) ( 1988 -9056 -4590 ) metals/m_mf_v2 -31 48 0 2.000000 2.000000 268435584 0 0 +( 11376 7328 272 ) ( -5008 7328 272 ) ( 11376 -9056 272 ) sprites/rail_c2 -77 -61 0 1.000000 1.000000 268435584 0 0 +( -5008 7328 411 ) ( 11376 7328 411 ) ( 11376 -9056 411 ) sprites/rail_c2 -37 -61 0 1.000000 1.000000 268435584 4096 0 +} +} +{ +"classname" "func_wall" +{ +( -964 8192 8192 ) ( -964 -8192 8192 ) ( -964 8192 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( -956 -8192 8192 ) ( -956 8192 8192 ) ( -956 8192 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( -8192 2312 8192 ) ( 8192 2312 8192 ) ( -8192 2312 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( 8192 2488 8192 ) ( -8192 2488 8192 ) ( -8192 2488 -8192 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( 8192 -8192 480 ) ( 8192 8192 480 ) ( -8192 -8192 480 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +( 8192 8192 544 ) ( 8192 -8192 544 ) ( -8192 -8192 544 ) sprites/rail_v1 -64 32 0 1.000000 1.000000 128 4096 0 +} +} +{ +"classname" "func_wall" +{ +( -1696 8192 8192 ) ( -1696 -8192 8192 ) ( -1696 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 128 0 0 +( -1408 -8192 8192 ) ( -1408 8192 8192 ) ( -1408 8192 -8192 ) bricks/c_pv_18a 16 -24 0 2.500000 2.500000 128 0 0 +( -8192 1272 8192 ) ( 8192 1272 8192 ) ( -8192 1272 -8192 ) sprites/rail_v4 16 0 0 1.000000 1.000000 128 4096 0 +( 8192 1288 8192 ) ( -8192 1288 8192 ) ( -8192 1288 -8192 ) sprites/rail_v4 16 0 0 1.000000 1.000000 128 4096 0 +( 8192 -8192 512 ) ( 8192 8192 512 ) ( -8192 -8192 512 ) sprites/rail_c2 56 0 0 2.000000 2.000000 128 4096 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 128 0 0 +} +} +{ +"classname" "func_wall" +{ +( -1696 8192 8192 ) ( -1696 -8192 8192 ) ( -1696 8192 -8192 ) bricks/c_pv_18a -8 -24 0 2.500000 2.500000 128 0 0 +( -1408 -8192 8192 ) ( -1408 8192 8192 ) ( -1408 8192 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 128 0 0 +( -8192 1016 8192 ) ( 8192 1016 8192 ) ( -8192 1016 -8192 ) sprites/rail_v4 16 0 0 1.000000 1.000000 128 4096 0 +( 8192 1032 8192 ) ( -8192 1032 8192 ) ( -8192 1032 -8192 ) sprites/rail_v4 16 0 0 1.000000 1.000000 128 4096 0 +( 8192 -8192 512 ) ( 8192 8192 512 ) ( -8192 -8192 512 ) sprites/rail_c2 56 0 0 2.000000 2.000000 128 4096 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 128 0 0 +} +} +{ +"classname" "func_wall" +{ +( -1736 8192 8192 ) ( -1736 -8192 8192 ) ( -1736 8192 -8192 ) sprites/rail_v4 96 0 0 0.800000 1.000000 128 4096 0 +( -1720 -8192 8192 ) ( -1720 8192 8192 ) ( -1720 8192 -8192 ) sprites/rail_v4 96 0 0 0.800000 1.000000 128 4096 0 +( -8192 1312 8192 ) ( 8192 1312 8192 ) ( -8192 1312 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 128 0 0 +( 8192 1504 8192 ) ( -8192 1504 8192 ) ( -8192 1504 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 128 0 0 +( 8192 -8192 512 ) ( 8192 8192 512 ) ( -8192 -8192 512 ) sprites/rail_c2 8 -32 90 2.000000 2.000000 128 4096 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 128 0 0 +} +} +{ +"classname" "func_wall" +{ +( -1736 8192 8192 ) ( -1736 -8192 8192 ) ( -1736 8192 -8192 ) sprites/rail_v4 32 0 0 0.800000 1.000000 128 4096 0 +( -1720 -8192 8192 ) ( -1720 8192 8192 ) ( -1720 8192 -8192 ) sprites/rail_v4 32 0 0 0.800000 1.000000 128 4096 0 +( -8192 1056 8192 ) ( 8192 1056 8192 ) ( -8192 1056 -8192 ) bricks/c_pv_18a -8 -24 0 2.500000 2.500000 128 0 0 +( 8192 1248 8192 ) ( -8192 1248 8192 ) ( -8192 1248 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 128 0 0 +( 8192 -8192 512 ) ( 8192 8192 512 ) ( -8192 -8192 512 ) sprites/rail_c2 8 -32 90 2.000000 2.000000 128 4096 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 128 0 0 +} +} +{ +"classname" "func_wall" +{ +( -1736 8192 8192 ) ( -1736 -8192 8192 ) ( -1736 8192 -8192 ) sprites/rail_v4 96 0 0 0.800000 1.000000 128 4096 0 +( -1720 -8192 8192 ) ( -1720 8192 8192 ) ( -1720 8192 -8192 ) sprites/rail_v4 96 0 0 0.800000 1.000000 128 4096 0 +( -8192 800 8192 ) ( 8192 800 8192 ) ( -8192 800 -8192 ) bricks/c_pv_18a 0 -24 0 2.500000 2.500000 128 0 0 +( 8192 992 8192 ) ( -8192 992 8192 ) ( -8192 992 -8192 ) bricks/c_pv_18a -8 -24 0 2.500000 2.500000 128 0 0 +( 8192 -8192 512 ) ( 8192 8192 512 ) ( -8192 -8192 512 ) sprites/rail_c2 8 -31 90 2.000000 2.000000 128 4096 0 +( 8192 8192 576 ) ( 8192 -8192 576 ) ( -8192 -8192 576 ) bricks/c_mf_v7d 0 0 0 2.000000 2.000000 128 0 0 +} +} +{ +"classname" "weapon_grenadelauncher" +"origin" "872 840 84" +} +{ +"classname" "ammo_grenades" +"origin" "912 720 86" +} +{ +"classname" "func_door_rotating" +"wait" "10" +"targetname" "safe2" +"distance" "80" +"sounds" "4" +{ +( -762 2052 112 ) ( -758 2052 112 ) ( -758 1988 112 ) floors/dr_pv_vv1d 56 0 0 1.000000 1.000000 0 8388608 0 +( -762 1988 0 ) ( -758 1988 0 ) ( -758 2052 0 ) floors/dr_pv_vv1d 56 0 0 1.000000 1.000000 0 8388608 0 +( -762 2052 112 ) ( -762 1988 112 ) ( -762 1988 0 ) floors/dr_pv_vv1d 60 0 0 1.000000 1.000000 0 8388608 0 +( -758 2052 0 ) ( -758 1988 0 ) ( -758 1988 112 ) floors/dr_pv_vv1d 60 0 0 1.000000 1.000000 0 8388608 0 +( -758 2052 112 ) ( -762 2052 112 ) ( -762 2052 0 ) floors/dr_pv_vv1d 56 0 0 1.000000 1.000000 0 8388608 0 +( -758 1988 0 ) ( -762 1988 0 ) ( -762 1988 112 ) floors/dr_pv_vv1d 56 0 0 1.000000 1.000000 0 8388608 0 +} +{ +( -768 1996 112 ) ( -752 1996 112 ) ( -752 1980 112 ) common/0_origin 0 0 0 1.000000 1.000000 16777216 128 0 +( -768 1980 0 ) ( -752 1980 0 ) ( -752 1996 0 ) common/0_origin 0 0 0 1.000000 1.000000 16777216 128 0 +( -768 1996 112 ) ( -768 1980 112 ) ( -768 1980 0 ) common/0_origin 0 0 0 1.000000 1.000000 16777216 128 0 +( -752 1996 0 ) ( -752 1980 0 ) ( -752 1980 112 ) common/0_origin 0 0 0 1.000000 1.000000 16777216 128 0 +( -752 1996 112 ) ( -768 1996 112 ) ( -768 1996 0 ) common/0_origin 0 0 0 1.000000 1.000000 16777216 128 0 +( -752 1980 0 ) ( -768 1980 0 ) ( -768 1980 112 ) common/0_origin 0 0 0 1.000000 1.000000 16777216 128 0 +} +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "250" +"origin" "336 896 416" +} +{ +"classname" "light" +"light" "200" +"_color" "1.000000 0.909091 0.704545" +"origin" "-670 2208 398" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "40" +"origin" "-734 2208 424" +} +{ +"classname" "junior" +"_color" "1.000000 0.909091 0.704545" +"light" "300" +"origin" "-726 2208 420" +} +{ +"classname" "light" +"light" "200" +"_color" "1.000000 0.909091 0.704545" +"origin" "-670 2464 398" +} +{ +"classname" "junior" +"_color" "1.000000 0.909091 0.704545" +"light" "300" +"origin" "-726 2464 420" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "40" +"origin" "-734 2464 424" +} +{ +"classname" "light" +"light" "600" +"_color" "1.000000 0.725490 0.450980" +"origin" "16 2360 504" +} +{ +"classname" "junior" +"light" "150" +"_color" "0.833333 0.958333 1.000000" +"origin" "2736 1128 608" +} +{ +"classname" "junior" +"light" "150" +"_color" "0.833333 0.958333 1.000000" +"origin" "2736 992 608" +} +{ +"classname" "light" +"light" "150" +"style" "0" +"_cone" "10" +"origin" "-824 2040 88" +} +{ +"classname" "ammo_rockets" +"origin" "-1464 2596 28" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"volume" "1" +"noise" "world/cheerhigh" +"origin" "32 1668 460" +} +{ +"classname" "dm_safebag" +"style" "2" +"origin" "-640 2208 58" +} +{ +"classname" "weapon_shotgun" +"origin" "-32 416 44" +} +{ +"classname" "ammo_shells" +"origin" "-28 464 44" +} +{ +"classname" "light" +"_color" "0.610869 0.573457 0.428217" +"light" "150" +"origin" "2072 592 268" +} +{ +"classname" "light" +"_color" "0.610869 0.573457 0.428217" +"light" "150" +"origin" "1920 592 268" +} +{ +"classname" "light" +"_color" "1.000 1.000 0.502" +"_cone" "10" +"style" "0" +"light" "150" +"origin" "1364 400 600" +} +{ +"classname" "func_door_rotating" +"spawnflags" "2" +"distance" "90" +"sounds" "1" +"dmg" "2" +"wait" "10" +"targetname" "safe1" +{ +( 1424 368 640 ) ( 1436 368 640 ) ( 1436 356 640 ) common/0_origin 0 0 0 1.000000 1.000000 16777216 128 0 +( 1424 356 560 ) ( 1436 356 560 ) ( 1436 368 560 ) common/0_origin 0 0 0 1.000000 1.000000 16777216 128 0 +( 1424 368 640 ) ( 1424 356 640 ) ( 1424 356 560 ) common/0_origin 0 0 0 1.000000 1.000000 16777216 128 0 +( 1436 368 560 ) ( 1436 356 560 ) ( 1436 356 640 ) common/0_origin 0 0 0 1.000000 1.000000 16777216 128 0 +( 1436 368 640 ) ( 1424 368 640 ) ( 1424 368 560 ) common/0_origin 0 0 0 1.000000 1.000000 16777216 128 0 +( 1436 356 560 ) ( 1424 356 560 ) ( 1424 356 640 ) common/0_origin 0 0 0 1.000000 1.000000 16777216 128 0 +} +{ +( 1432 440 640 ) ( 1432 360 640 ) ( 1428 364 636 ) props/safe_w 4 -63 0 1.000000 1.000000 +( 1432 360 560 ) ( 1432 440 560 ) ( 1428 436 564 ) props/safe_w 54 -36 0 1.000000 1.000000 +( 1428 364 636 ) ( 1428 364 564 ) ( 1428 436 564 ) props/safe_w 54 -36 0 1.000000 1.000000 +( 1432 360 560 ) ( 1432 360 640 ) ( 1432 440 640 ) props/safe 24 24 0 0.650000 0.650000 +( 1428 436 636 ) ( 1428 436 564 ) ( 1432 440 560 ) props/safe_w 4 -36 0 1.000000 1.000000 +( 1428 364 564 ) ( 1428 364 636 ) ( 1432 360 640 ) props/safe_w 54 -36 0 1.000000 1.000000 +} +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8126 -9250 357 ) ( 8126 7134 357 ) ( -8258 -9250 357 ) common/li_sr_ml5 10 -10 0 0.800000 0.800000 1 1 50 +( 8126 7134 360 ) ( 8126 -9250 360 ) ( -8258 -9250 360 ) metals/mt_sr_v16 34 7 90 1.000000 1.000000 1 8388608 0 +( 8125 4186 6672 ) ( -8257 4186 6672 ) ( -8257 -3140 -7981 ) metals/mt_pv_m16bc 10 5 0 1.000000 1.000000 1 8390656 0 +( -8257 -2974 8336 ) ( 8125 -2974 8336 ) ( 8125 4352 -6317 ) metals/mt_pv_m16bc 10 5 0 1.000000 1.000000 1 8390656 0 +( 2746 -9249 7888 ) ( 2746 7133 7888 ) ( -4580 7133 -6765 ) metals/mt_pv_m16bc -21 7 90 1.000000 1.000000 1 8390656 0 +( -4414 7133 7120 ) ( -4414 -9249 7120 ) ( 2912 -9249 -7533 ) metals/mt_pv_m16bc -21 6 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.941935 0.703226" +"origin" "1408 1328 712" +} +{ +"classname" "ammo_shells" +"origin" "1304 976 608" +} +{ +"classname" "light" +"style" "8" +"light" "100" +"_color" "0.400 0.400 1.000" +"origin" "16 2016 480" +} +{ +"classname" "light" +"_color" "1.000000 0.682353 0.368627" +"light" "1300" +"origin" "-260 1950 1016" +} +{ +"classname" "light" +"spawnflags" "8" +"light" "1300" +"_color" "1.000000 0.682353 0.368627" +"origin" "80 1792 1016" +} +{ +"classname" "func_button" +"angle" "-1" +"target" "safe1" +"lip" "14" +"wait" "10" +{ +( 2674 1278 544 ) ( 2676 1278 544 ) ( 2676 1273 544 ) metals/mt_sr_v16 -127 0 0 1.000000 1.000000 0 8388608 0 +( 2674 1273 542 ) ( 2676 1273 542 ) ( 2676 1278 542 ) metals/mt_sr_v16 -127 0 0 1.000000 1.000000 0 8388608 0 +( 2674 1278 544 ) ( 2674 1273 544 ) ( 2674 1273 542 ) metals/mt_sr_v16 0 -3 0 1.000000 1.000000 0 8388608 0 +( 2676 1278 542 ) ( 2676 1273 542 ) ( 2676 1273 544 ) metals/mt_sr_v16 0 -3 0 1.000000 1.000000 0 8388608 0 +( 2676 1278 544 ) ( 2674 1278 544 ) ( 2674 1278 542 ) metals/mt_sr_v16 -127 -3 0 1.000000 1.000000 0 8388608 0 +( 2676 1273 542 ) ( 2674 1273 542 ) ( 2674 1273 544 ) metals/mt_sr_v16 -127 -3 0 1.000000 1.000000 0 8388608 0 +} +{ +( 2676 1276 544 ) ( 2684 1276 544 ) ( 2684 1273 544 ) props/fire_v1 0 0 0 1.000000 1.000000 0 8388608 0 +( 2676 1273 542 ) ( 2684 1273 542 ) ( 2684 1276 542 ) props/fire_v1 0 0 0 1.000000 1.000000 0 8388608 0 +( 2676 1276 544 ) ( 2676 1273 544 ) ( 2676 1273 542 ) props/fire_v1 0 0 0 1.000000 1.000000 0 8388608 0 +( 2684 1276 542 ) ( 2684 1273 542 ) ( 2684 1273 544 ) props/fire_v1 0 0 0 1.000000 1.000000 0 8388608 0 +( 2684 1276 544 ) ( 2676 1276 544 ) ( 2676 1276 542 ) props/fire_v1 0 0 0 1.000000 1.000000 0 8388608 0 +( 2684 1273 542 ) ( 2676 1273 542 ) ( 2676 1273 544 ) props/fire_v1 0 0 0 1.000000 1.000000 0 8388608 0 +} +{ +( 2684 1278 544 ) ( 2686 1278 544 ) ( 2686 1273 544 ) metals/mt_sr_v16 -9 0 0 1.000000 1.000000 0 8388608 0 +( 2684 1273 542 ) ( 2686 1273 542 ) ( 2686 1278 542 ) metals/mt_sr_v16 -9 0 0 1.000000 1.000000 0 8388608 0 +( 2684 1278 544 ) ( 2684 1273 544 ) ( 2684 1273 542 ) metals/mt_sr_v16 0 -3 0 1.000000 1.000000 0 8388608 0 +( 2686 1278 542 ) ( 2686 1273 542 ) ( 2686 1273 544 ) metals/mt_sr_v16 0 -3 0 1.000000 1.000000 0 8388608 0 +( 2686 1278 544 ) ( 2684 1278 544 ) ( 2684 1278 542 ) metals/mt_sr_v16 -9 -3 0 1.000000 1.000000 0 8388608 0 +( 2686 1273 542 ) ( 2684 1273 542 ) ( 2684 1273 544 ) metals/mt_sr_v16 -9 -3 0 1.000000 1.000000 0 8388608 0 +} +} +{ +"classname" "light" +"spawnflags" "8" +"_color" "1.000000 0.682353 0.368627" +"light" "1300" +"origin" "2014 1470 1016" +} +{ +"classname" "light" +"_cone" "10" +"style" "0" +"light" "150" +"origin" "-160 2056 136" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "350" +"origin" "-160 2052 108" +} +{ +"classname" "light" +"_cone" "10" +"style" "0" +"light" "150" +"origin" "-2168 896 136" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "350" +"origin" "-2164 896 108" +} +{ +"classname" "light" +"_cone" "10" +"style" "0" +"light" "150" +"origin" "-2168 1152 136" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "350" +"origin" "-2164 1152 108" +} +{ +"classname" "light" +"_cone" "10" +"style" "0" +"light" "150" +"origin" "-2168 1408 136" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "350" +"origin" "-2164 1408 108" +} +{ +"classname" "light" +"_cone" "10" +"style" "0" +"light" "150" +"origin" "-72 2304 400" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "350" +"origin" "-76 2304 372" +} +{ +"classname" "light" +"_cone" "10" +"style" "0" +"light" "150" +"origin" "-72 2496 400" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "350" +"origin" "-76 2496 372" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "250" +"origin" "-288 272 160" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "250" +"origin" "-144 272 160" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "250" +"origin" "-534 270 154" +} +{ +"classname" "junior" +"_color" "1.000000 0.911765 0.764706" +"light" "250" +"origin" "-678 270 154" +} +{ +"classname" "ammo_rockets" +"origin" "-366 2344 428" +} +{ +"classname" "weapon_tommygun" +"angle" "90" +"origin" "-1128 2392 160" +} +{ +"classname" "ammo_grenades" +"origin" "-508 556 304" +} +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.725490 0.450980" +"origin" "-392 2334 312" +} +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.725490 0.450980" +"origin" "-416 2480 312" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"health" "64" +"light" "5" +"dmg" "2" +"origin" "1512 448 698" +} +{ +"classname" "junior" +"light" "200" +"_color" "1.000000 0.941935 0.703226" +"origin" "1512 448 670" +} +{ +"classname" "light" +"_color" "0.610869 0.573457 0.428217" +"light" "200" +"origin" "1512 448 622" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8152 -8192 699 ) ( 8152 8192 699 ) ( -8232 -8192 699 ) common/li_sr_ml5 7 8 0 0.800000 0.800000 1 1 15000 +( 8152 8192 702 ) ( 8152 -8192 702 ) ( -8232 -8192 702 ) metals/mt_sr_mn4 42 0 0 1.000000 1.000000 1 8388608 0 +( 8151 3756 7302 ) ( -8231 3756 7302 ) ( -8231 -3570 -7351 ) metals/mt_pv_m16bc 2 3 0 1.000000 1.000000 1 8390656 0 +( -8231 -3039 7661 ) ( 8151 -3039 7661 ) ( 8151 4287 -6993 ) metals/mt_pv_m16bc 2 3 0 1.000000 1.000000 1 8390656 0 +( 4599 -8191 6861 ) ( 4599 8191 6861 ) ( -2727 8191 -7793 ) metals/mt_pv_m16bc -22 -26 90 1.000000 1.000000 1 8390656 0 +( -2196 8191 8102 ) ( -2196 -8191 8102 ) ( 5130 -8191 -6551 ) metals/mt_pv_m16bc -22 -27 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "ammo_cylinder" +"origin" "-1044 2392 160" +} +{ +"classname" "func_button" +"angle" "-1" +"target" "safe2" +"lip" "14" +"wait" "10" +{ +( -1446 2621 311 ) ( -1444 2621 311 ) ( -1444 2616 311 ) metals/mt_sr_v16 25 -1 0 1.000000 1.000000 0 8388608 0 +( -1446 2616 309 ) ( -1444 2616 309 ) ( -1444 2621 309 ) metals/mt_sr_v16 25 -1 0 1.000000 1.000000 0 8388608 0 +( -1446 2621 311 ) ( -1446 2616 311 ) ( -1446 2616 309 ) metals/mt_sr_v16 -63 -12 0 1.000000 1.000000 0 8388608 0 +( -1444 2621 309 ) ( -1444 2616 309 ) ( -1444 2616 311 ) metals/mt_sr_v16 -63 -12 0 1.000000 1.000000 0 8388608 0 +( -1444 2621 311 ) ( -1446 2621 311 ) ( -1446 2621 309 ) metals/mt_sr_v16 25 -12 0 1.000000 1.000000 0 8388608 0 +( -1444 2616 309 ) ( -1446 2616 309 ) ( -1446 2616 311 ) metals/mt_sr_v16 25 -12 0 1.000000 1.000000 0 8388608 0 +} +{ +( -1444 2619 311 ) ( -1436 2619 311 ) ( -1436 2616 311 ) metals/m_mf_v2a 24 -1 0 2.000000 2.000000 0 8388608 0 +( -1444 2616 309 ) ( -1436 2616 309 ) ( -1436 2619 309 ) metals/m_mf_v2a 24 -1 0 2.000000 2.000000 0 8388608 0 +( -1444 2619 311 ) ( -1444 2616 311 ) ( -1444 2616 309 ) metals/m_mf_v2a 1 -38 0 2.000000 2.000000 0 8388608 0 +( -1436 2619 309 ) ( -1436 2616 309 ) ( -1436 2616 311 ) metals/m_mf_v2a 1 -38 0 2.000000 2.000000 0 8388608 0 +( -1436 2619 311 ) ( -1444 2619 311 ) ( -1444 2619 309 ) metals/m_mf_v2a 24 -38 0 2.000000 2.000000 0 8388608 0 +( -1436 2616 309 ) ( -1444 2616 309 ) ( -1444 2616 311 ) metals/m_mf_v2a 24 -38 0 2.000000 2.000000 0 8388608 0 +} +{ +( -1436 2621 311 ) ( -1434 2621 311 ) ( -1434 2616 311 ) metals/mt_sr_v16 15 -1 0 1.000000 1.000000 0 8388608 0 +( -1436 2616 309 ) ( -1434 2616 309 ) ( -1434 2621 309 ) metals/mt_sr_v16 15 -1 0 1.000000 1.000000 0 8388608 0 +( -1436 2621 311 ) ( -1436 2616 311 ) ( -1436 2616 309 ) metals/mt_sr_v16 -63 -12 0 1.000000 1.000000 0 8388608 0 +( -1434 2621 309 ) ( -1434 2616 309 ) ( -1434 2616 311 ) metals/mt_sr_v16 -63 -12 0 1.000000 1.000000 0 8388608 0 +( -1434 2621 311 ) ( -1436 2621 311 ) ( -1436 2621 309 ) metals/mt_sr_v16 15 -12 0 1.000000 1.000000 0 8388608 0 +( -1434 2616 309 ) ( -1436 2616 309 ) ( -1436 2616 311 ) metals/mt_sr_v16 15 -12 0 1.000000 1.000000 0 8388608 0 +} +} +{ +"classname" "func_button" +"angle" "-1" +"target" "safe2" +"lip" "14" +"wait" "10" +{ +( -674 1986 56 ) ( -676 1986 56 ) ( -676 1991 56 ) metals/mt_sr_v16 -95 -24 0 1.000000 1.000000 0 8388608 0 +( -674 1991 54 ) ( -676 1991 54 ) ( -676 1986 54 ) metals/mt_sr_v16 -95 -24 0 1.000000 1.000000 0 8388608 0 +( -674 1986 56 ) ( -674 1991 56 ) ( -674 1991 54 ) metals/mt_sr_v16 -72 -11 0 1.000000 1.000000 0 8388608 0 +( -676 1986 54 ) ( -676 1991 54 ) ( -676 1991 56 ) metals/mt_sr_v16 -72 -11 0 1.000000 1.000000 0 8388608 0 +( -676 1986 56 ) ( -674 1986 56 ) ( -674 1986 54 ) metals/mt_sr_v16 -95 -11 0 1.000000 1.000000 0 8388608 0 +( -676 1991 54 ) ( -674 1991 54 ) ( -674 1991 56 ) metals/mt_sr_v16 -95 -11 0 1.000000 1.000000 0 8388608 0 +} +{ +( -676 1988 56 ) ( -684 1988 56 ) ( -684 1991 56 ) metals/m_mf_v2a -36 4 0 2.000000 2.000000 0 8388608 0 +( -676 1991 54 ) ( -684 1991 54 ) ( -684 1988 54 ) metals/m_mf_v2a -36 4 0 2.000000 2.000000 0 8388608 0 +( -676 1988 56 ) ( -676 1991 56 ) ( -676 1991 54 ) metals/m_mf_v2a -4 -38 0 2.000000 2.000000 0 8388608 0 +( -684 1988 54 ) ( -684 1991 54 ) ( -684 1991 56 ) metals/m_mf_v2a -4 -38 0 2.000000 2.000000 0 8388608 0 +( -684 1988 56 ) ( -676 1988 56 ) ( -676 1988 54 ) metals/m_mf_v2a -36 -38 0 2.000000 2.000000 0 8388608 0 +( -684 1991 54 ) ( -676 1991 54 ) ( -676 1991 56 ) metals/m_mf_v2a -36 -38 0 2.000000 2.000000 0 8388608 0 +} +{ +( -684 1986 56 ) ( -686 1986 56 ) ( -686 1991 56 ) metals/mt_sr_v16 -105 -24 0 1.000000 1.000000 0 8388608 0 +( -684 1991 54 ) ( -686 1991 54 ) ( -686 1986 54 ) metals/mt_sr_v16 -105 -24 0 1.000000 1.000000 0 8388608 0 +( -684 1986 56 ) ( -684 1991 56 ) ( -684 1991 54 ) metals/mt_sr_v16 -72 -11 0 1.000000 1.000000 0 8388608 0 +( -686 1986 54 ) ( -686 1991 54 ) ( -686 1991 56 ) metals/mt_sr_v16 -72 -11 0 1.000000 1.000000 0 8388608 0 +( -686 1986 56 ) ( -684 1986 56 ) ( -684 1986 54 ) metals/mt_sr_v16 -105 -11 0 1.000000 1.000000 0 8388608 0 +( -686 1991 54 ) ( -684 1991 54 ) ( -684 1991 56 ) metals/mt_sr_v16 -105 -11 0 1.000000 1.000000 0 8388608 0 +} +} +{ +"classname" "junior" +"_color" "1.000000 0.941935 0.703226" +"light" "300" +"origin" "2496 432 656" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "48" +"origin" "2496 432 684" +} +{ +"classname" "light" +"light" "150" +"_color" "0.610869 0.573457 0.428217" +"origin" "2480 432 608" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 8192 -8192 685 ) ( 8192 8192 685 ) ( -8192 -8192 685 ) common/li_sr_ml5 24 68 0 0.800000 0.800000 1 1 15000 +( 8192 8192 688 ) ( 8192 -8192 688 ) ( -8192 -8192 688 ) metals/mt_sr_v13 0 0 0 2.000000 2.000000 1 0 0 +( 8191 3740 7288 ) ( -8191 3740 7288 ) ( -8191 -3586 -7365 ) metals/mt_pv_m16bc -24 11 0 1.000000 1.000000 1 8390656 0 +( -8191 -3049 7634 ) ( 8191 -3049 7634 ) ( 8191 4277 -7019 ) metals/mt_pv_m16bc -24 11 0 1.000000 1.000000 1 8390656 0 +( 5391 -8191 6463 ) ( 5391 8191 6463 ) ( -1935 8191 -8191 ) metals/mt_pv_m16bc -30 -10 90 1.000000 1.000000 1 8390656 0 +( -1397 8191 8459 ) ( -1397 -8191 8459 ) ( 5929 -8191 -6194 ) metals/mt_pv_m16bc -30 -11 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "junior" +"_color" "1.000000 0.941935 0.703226" +"light" "300" +"origin" "418 800 478" +} +{ +"classname" "lightflare" +"spawnflags" "2" +"dmg" "2" +"light" "5" +"health" "48" +"origin" "418 800 506" +} +{ +"classname" "light" +"light" "150" +"_color" "0.610869 0.573457 0.428217" +"origin" "418 800 430" +} +{ +"classname" "func_wall" +"spawnflags" "6" +{ +( 6114 -7824 507 ) ( 6114 8560 507 ) ( -10270 -7824 507 ) common/li_sr_ml5 14 0 0 0.800000 0.800000 1 1 15000 +( 6114 8560 510 ) ( 6114 -7824 510 ) ( -10270 -7824 510 ) metals/mt_sr_v13 15 56 0 2.000000 2.000000 1 0 0 +( 6113 4108 7110 ) ( -10269 4108 7110 ) ( -10269 -3218 -7543 ) metals/mt_pv_m16bc 6 25 0 1.000000 1.000000 1 8390656 0 +( -10269 -2681 7456 ) ( 6113 -2681 7456 ) ( 6113 4645 -7197 ) metals/mt_pv_m16bc 6 25 0 1.000000 1.000000 1 8390656 0 +( 3313 -7823 6285 ) ( 3313 8559 6285 ) ( -4013 8559 -8369 ) metals/mt_pv_m16bc -12 6 90 1.000000 1.000000 1 8390656 0 +( -3475 8559 8281 ) ( -3475 -7823 8281 ) ( 3851 -7823 -6372 ) metals/mt_pv_m16bc -12 5 90 1.000000 1.000000 1 8390656 0 +} +} +{ +"classname" "trigger_multiple" +"target" "safe1" +"delay" "0" +{ +( 1356 436 636 ) ( 1380 436 636 ) ( 1380 364 636 ) common/0_clip 0 0 0 1.000000 1.000000 196608 128 0 +( 1356 364 564 ) ( 1380 364 564 ) ( 1380 436 564 ) common/0_clip 0 0 0 1.000000 1.000000 196608 128 0 +( 1356 436 636 ) ( 1356 364 636 ) ( 1356 364 564 ) common/0_clip 0 0 0 1.000000 1.000000 196608 128 0 +( 1380 436 564 ) ( 1380 364 564 ) ( 1380 364 636 ) common/0_clip 0 0 0 1.000000 1.000000 196608 128 0 +( 1380 436 636 ) ( 1356 436 636 ) ( 1356 436 564 ) common/0_clip 0 0 0 1.000000 1.000000 196608 128 0 +( 1380 364 564 ) ( 1356 364 564 ) ( 1356 364 636 ) common/0_clip 0 0 0 1.000000 1.000000 196608 128 0 +} +} +{ +"classname" "light_fire_lg" +"spawnflags" "8" +"_color" "1.000000 0.431373 0.000000" +"style" "1" +"light" "400" +"origin" "-450 557 58" +} +{ +"classname" "target_speaker" +"spawnflags" "1" +"attenuation" "3" +"noise" "world/fire_sm" +"origin" "-450 546 58" +} +{ +"classname" "light" +"spawnflags" "8" +"light" "110" +"style" "1" +"_color" "1.000000 0.431373 0.000000" +"origin" "-416 524 90" +} +{ +"classname" "light" +"spawnflags" "8" +"light" "110" +"style" "1" +"_color" "1.000000 0.431373 0.000000" +"origin" "-484 524 90" +} +{ +"classname" "trigger_hurt_fire" +"dmg" "10" +{ +( -456 573 82 ) ( -435 561 82 ) ( -445 544 82 ) common/0_clip -31 -6 0 1.000000 1.000000 196608 128 0 +( -466 556 50 ) ( -445 544 50 ) ( -435 561 50 ) common/0_clip -31 -6 0 1.000000 1.000000 196608 128 0 +( -456 573 82 ) ( -466 556 82 ) ( -466 556 50 ) common/0_clip 6 0 0 1.000000 1.000000 196608 128 0 +( -435 561 50 ) ( -445 544 50 ) ( -445 544 82 ) common/0_clip 6 0 0 1.000000 1.000000 196608 128 0 +( -435 561 82 ) ( -456 573 82 ) ( -456 573 50 ) common/0_clip -31 0 0 1.000000 1.000000 196608 128 0 +( -445 544 50 ) ( -466 556 50 ) ( -466 556 82 ) common/0_clip -31 0 0 1.000000 1.000000 196608 128 0 +} +} +{ +"classname" "light" +"light" "200" +"_color" "1.000000 0.725490 0.4509804545" +"origin" "-1232 2548 184" +} +{ +"classname" "func_wall" +{ +( -762 2172 164 ) ( -758 2172 164 ) ( -758 2056 164 ) sprites/fenc_m 0 0 0 0.300000 0.300000 128 16781312 0 +( -762 2056 4 ) ( -758 2056 4 ) ( -758 2172 4 ) sprites/fenc_m 0 0 0 0.300000 0.300000 128 16781312 0 +( -762 2172 164 ) ( -762 2056 164 ) ( -762 2056 4 ) sprites/fenc_m 0 0 0 0.300000 0.300000 128 16781312 0 +( -758 2172 4 ) ( -758 2056 4 ) ( -758 2056 164 ) sprites/fenc_m 0 0 0 0.300000 0.300000 128 16781312 0 +( -758 2172 164 ) ( -762 2172 164 ) ( -762 2172 4 ) sprites/fenc_m 0 0 0 0.300000 0.300000 128 16781312 0 +( -758 2056 4 ) ( -762 2056 4 ) ( -762 2056 164 ) sprites/fenc_m 0 0 0 0.300000 0.300000 128 16781312 0 +} +} +{ +"classname" "dm_props_banner" +"angle" "270" +"style" "1" +"scale" ".5" +"origin" "2680 1272 600" +} +{ +"classname" "dm_props_banner" +"angle" "270" +"style" "2" +"scale" ".5" +"origin" "-1440 2616 362" +} diff --git a/examples/maps/rtpv20.map b/examples/maps/rtpv20.map new file mode 100644 index 0000000..d13716b --- /dev/null +++ b/examples/maps/rtpv20.map @@ -0,0 +1,49824 @@ +{ +"sky" "pv" +"classname" "worldspawn" +// brush 0 +{ +( -3752 -3500 544 ) ( -3672 -3624 544 ) ( -3646 -3603 576 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3672 -3624 592 ) ( -3672 -3624 544 ) ( -3752 -3500 544 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3752 -3500 592 ) ( -3752 -3500 544 ) ( -3646 -3603 576 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3752 -3652 576 ) ( -3646 -3624 576 ) ( -3646 -3680 576 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3718 -3522 576 ) ( -3708 -3516 544 ) ( -3728 -3528 544 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +} +// brush 1 +{ +( -3723 -3484 576 ) ( -3752 -3500 544 ) ( -3646 -3603 576 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3752 -3500 592 ) ( -3752 -3500 544 ) ( -3723 -3484 576 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3646 -3603 576 ) ( -3752 -3500 544 ) ( -3752 -3500 592 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3752 -3652 576 ) ( -3646 -3624 576 ) ( -3646 -3680 576 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3718 -3522 576 ) ( -3708 -3516 544 ) ( -3728 -3528 544 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +} +// brush 2 +{ +( -3723 -3484 576 ) ( -3752 -3500 544 ) ( -3646 -3603 576 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3646 -3603 576 ) ( -3752 -3500 544 ) ( -3752 -3500 592 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3752 -3652 576 ) ( -3646 -3624 576 ) ( -3646 -3680 576 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3682 -3578 576 ) ( -3692 -3584 552 ) ( -3672 -3572 552 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +} +// brush 3 +{ +( -3752 -3500 544 ) ( -3672 -3624 544 ) ( -3646 -3603 576 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3646 -3603 576 ) ( -3672 -3624 544 ) ( -3672 -3624 592 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3672 -3624 592 ) ( -3672 -3624 544 ) ( -3752 -3500 544 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3752 -3500 592 ) ( -3752 -3500 544 ) ( -3646 -3603 576 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3752 -3652 576 ) ( -3646 -3624 576 ) ( -3646 -3680 576 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3682 -3578 576 ) ( -3692 -3584 544 ) ( -3672 -3572 544 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +} +// brush 4 +{ +( -3752 -3500 544 ) ( -3672 -3624 544 ) ( -3646 -3603 576 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3672 -3624 592 ) ( -3672 -3624 544 ) ( -3752 -3500 544 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3752 -3652 576 ) ( -3646 -3624 576 ) ( -3646 -3680 576 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3718 -3522 576 ) ( -3728 -3528 544 ) ( -3708 -3516 544 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3682 -3578 576 ) ( -3672 -3572 544 ) ( -3692 -3584 544 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3708 -3554 576 ) ( -3728 -3524 544 ) ( -3688 -3584 544 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +} +// brush 5 +{ +( -3752 -3500 544 ) ( -3672 -3624 544 ) ( -3646 -3603 576 ) common/li_pv_v4a 30 -5 303 1 1 0 1 7000 +( -3752 -3500 592 ) ( -3752 -3500 544 ) ( -3646 -3603 576 ) common/li_pv_v4a 30 -5 303 1 1 0 1 7000 +( -3752 -3652 576 ) ( -3646 -3624 576 ) ( -3646 -3680 576 ) common/li_pv_v4a 30 -5 303 1 1 0 1 7000 +( -3718 -3522 576 ) ( -3728 -3528 544 ) ( -3708 -3516 544 ) common/li_pv_v4a 30 -5 303 1 1 0 1 7000 +( -3682 -3578 576 ) ( -3672 -3572 544 ) ( -3692 -3584 544 ) common/li_pv_v4a 30 -5 303 1 1 0 1 7000 +( -3708 -3554 576 ) ( -3688 -3584 544 ) ( -3728 -3524 544 ) common/li_pv_v4a 30 -5 303 1 1 0 1 7000 +} +// brush 6 +{ +( -3723 -3484 576 ) ( -3752 -3500 544 ) ( -3646 -3603 576 ) common/li_pv_v4a 30 -5 303 1 1 0 1 7000 +( -3646 -3603 576 ) ( -3752 -3500 544 ) ( -3752 -3500 592 ) common/li_pv_v4a 30 -5 303 1 1 0 1 7000 +( -3752 -3652 576 ) ( -3646 -3624 576 ) ( -3646 -3680 576 ) common/li_pv_v4a 30 -5 303 1 1 0 1 7000 +( -3718 -3522 576 ) ( -3728 -3528 544 ) ( -3708 -3516 544 ) common/li_pv_v4a 30 -5 303 1 1 0 1 7000 +( -3682 -3578 576 ) ( -3672 -3572 552 ) ( -3692 -3584 552 ) common/li_pv_v4a 30 -5 303 1 1 0 1 7000 +( -3692 -3547 576 ) ( -3712 -3516 552 ) ( -3672 -3578 552 ) common/li_pv_v4a 30 -5 303 1 1 0 1 7000 +} +// brush 7 +{ +( -3723 -3484 576 ) ( -3752 -3500 544 ) ( -3646 -3603 576 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3752 -3652 576 ) ( -3646 -3624 576 ) ( -3646 -3680 576 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3718 -3522 576 ) ( -3728 -3528 544 ) ( -3708 -3516 544 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3682 -3578 576 ) ( -3672 -3572 552 ) ( -3692 -3584 552 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +( -3692 -3547 576 ) ( -3672 -3578 552 ) ( -3712 -3516 552 ) bricks/c_tn_m1 33 4 303 1 1 0 0 0 +} +// brush 8 +{ +( -3340 -3457 576 ) ( -3368 -3384 544 ) ( -3393 -3404 576 ) bricks/c_tn_m1 0 6 135 1 1 0 0 0 +( -3393 -3404 576 ) ( -3368 -3384 544 ) ( -3368 -3384 592 ) bricks/c_tn_m1 0 6 135 1 1 0 0 0 +( -3340 -3272 576 ) ( -3340 -3296 576 ) ( -3393 -3284 576 ) bricks/c_tn_m1 0 6 135 1 1 0 0 0 +( -3388 -3400 544 ) ( -3336 -3452 544 ) ( -3362 -3426 576 ) bricks/c_tn_m1 0 6 135 1 1 0 0 0 +( -3328 -3442 576 ) ( -3320 -3432 570 ) ( -3336 -3452 570 ) bricks/c_tn_m1 0 6 135 1 1 0 0 0 +} +// brush 9 +{ +( -3320 -3432 544 ) ( -3368 -3384 544 ) ( -3340 -3457 576 ) bricks/c_tn_m1 0 6 135 1 1 0 0 0 +( -3368 -3384 592 ) ( -3368 -3384 544 ) ( -3320 -3432 544 ) bricks/c_tn_m1 0 6 135 1 1 0 0 0 +( -3320 -3432 592 ) ( -3320 -3432 544 ) ( -3340 -3457 576 ) bricks/c_tn_m1 0 6 135 1 1 0 0 0 +( -3320 -3272 576 ) ( -3320 -3296 576 ) ( -3368 -3284 576 ) bricks/c_tn_m1 0 6 135 1 1 0 0 0 +( -3326 -3436 544 ) ( -3372 -3390 544 ) ( -3349 -3413 576 ) bricks/c_tn_m1 0 6 135 1 1 0 0 0 +( -3378 -3392 576 ) ( -3388 -3400 544 ) ( -3368 -3384 544 ) bricks/c_tn_m1 0 6 135 1 1 0 0 0 +} +// brush 10 +{ +( -3340 -3457 576 ) ( -3368 -3384 544 ) ( -3393 -3404 576 ) common/li_pv_v4a 10 -1 135 1.080000 1 0 1 7000 +( -3393 -3404 576 ) ( -3368 -3384 544 ) ( -3368 -3384 592 ) common/li_pv_v4a 10 -1 135 1.080000 1 0 1 7000 +( -3340 -3272 576 ) ( -3340 -3296 576 ) ( -3393 -3284 576 ) common/li_pv_v4a 10 -1 135 1.080000 1 0 1 7000 +( -3336 -3452 544 ) ( -3388 -3400 544 ) ( -3362 -3426 576 ) common/li_pv_v4a 10 -1 135 1.080000 1 0 1 7000 +( -3372 -3390 544 ) ( -3326 -3436 544 ) ( -3349 -3413 576 ) common/li_pv_v4a 10 -1 135 1.080000 1 0 1 7000 +( -3328 -3442 576 ) ( -3320 -3432 551 ) ( -3336 -3452 551 ) common/li_pv_v4a 10 -1 135 1.080000 1 0 1 7000 +} +// brush 11 +{ +( -767 -3404 576 ) ( -840 -3432 544 ) ( -820 -3457 576 ) common/li_pv_v4a 18 1 225 1.080000 1 0 1 7000 +( -820 -3457 576 ) ( -840 -3432 544 ) ( -840 -3432 592 ) common/li_pv_v4a 18 1 225 1.080000 1 0 1 7000 +( -952 -3404 576 ) ( -928 -3404 576 ) ( -940 -3457 576 ) common/li_pv_v4a 18 1 225 1.080000 1 0 1 7000 +( -772 -3400 544 ) ( -824 -3452 544 ) ( -798 -3426 576 ) common/li_pv_v4a 18 1 225 1.080000 1 0 1 7000 +( -834 -3436 544 ) ( -788 -3390 544 ) ( -811 -3413 576 ) common/li_pv_v4a 18 1 225 1.080000 1 0 1 7000 +( -782 -3392 576 ) ( -792 -3384 551 ) ( -772 -3400 551 ) common/li_pv_v4a 18 1 225 1.080000 1 0 1 7000 +} +// brush 12 +{ +( -792 -3384 544 ) ( -840 -3432 544 ) ( -767 -3404 576 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -840 -3432 592 ) ( -840 -3432 544 ) ( -792 -3384 544 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -792 -3384 592 ) ( -792 -3384 544 ) ( -767 -3404 576 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -952 -3384 576 ) ( -928 -3384 576 ) ( -940 -3432 576 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -788 -3390 544 ) ( -834 -3436 544 ) ( -811 -3413 576 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -832 -3442 576 ) ( -824 -3452 544 ) ( -840 -3432 544 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +} +// brush 13 +{ +( -767 -3404 576 ) ( -840 -3432 544 ) ( -820 -3457 576 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -820 -3457 576 ) ( -840 -3432 544 ) ( -840 -3432 592 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -952 -3404 576 ) ( -928 -3404 576 ) ( -940 -3457 576 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -824 -3452 544 ) ( -772 -3400 544 ) ( -798 -3426 576 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -782 -3392 576 ) ( -792 -3384 570 ) ( -772 -3400 570 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +} +// brush 14 +{ +( -352 -3063 576 ) ( -320 -3060 544 ) ( -383 -2914 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -383 -2914 576 ) ( -320 -3060 544 ) ( -320 -3060 592 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -544 -3063 576 ) ( -600 -3063 576 ) ( -572 -2914 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -346 -2954 544 ) ( -372 -2960 544 ) ( -359 -2957 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +} +// brush 15 +{ +( -320 -3060 544 ) ( -352 -2904 544 ) ( -383 -2914 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -352 -2904 592 ) ( -352 -2904 544 ) ( -320 -3060 544 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -320 -3060 592 ) ( -320 -3060 544 ) ( -383 -2914 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -544 -3060 576 ) ( -600 -3060 576 ) ( -572 -2904 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -358 -3022 544 ) ( -330 -3016 544 ) ( -344 -3019 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +} +// brush 16 +{ +( -352 -3063 576 ) ( -320 -3060 544 ) ( -383 -2914 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -320 -3060 592 ) ( -320 -3060 544 ) ( -352 -3063 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -383 -2914 576 ) ( -320 -3060 544 ) ( -320 -3060 592 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -544 -3063 576 ) ( -600 -3063 576 ) ( -572 -2914 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -358 -3022 544 ) ( -330 -3016 544 ) ( -344 -3019 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +} +// brush 17 +{ +( -320 -3060 544 ) ( -352 -2904 544 ) ( -383 -2914 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -383 -2914 576 ) ( -352 -2904 544 ) ( -352 -2904 592 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -352 -2904 592 ) ( -352 -2904 544 ) ( -320 -3060 544 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -320 -3060 592 ) ( -320 -3060 544 ) ( -383 -2914 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -544 -3060 576 ) ( -600 -3060 576 ) ( -572 -2904 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -346 -2954 544 ) ( -372 -2960 544 ) ( -359 -2957 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +} +// brush 18 +{ +( -352 -3063 576 ) ( -320 -3060 544 ) ( -383 -2914 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -544 -3063 576 ) ( -600 -3063 576 ) ( -572 -2914 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -372 -2960 544 ) ( -346 -2954 544 ) ( -359 -2957 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -330 -3016 544 ) ( -358 -3022 544 ) ( -344 -3019 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -366 -2956 553 ) ( -350 -3030 553 ) ( -358 -2993 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +} +// brush 19 +{ +( -352 -3063 576 ) ( -320 -3060 544 ) ( -383 -2914 576 ) common/li_pv_v4a 1 -3 102 1 1 0 1 7000 +( -383 -2914 576 ) ( -320 -3060 544 ) ( -320 -3060 592 ) common/li_pv_v4a 1 -3 102 1 1 0 1 7000 +( -544 -3063 576 ) ( -600 -3063 576 ) ( -572 -2914 576 ) common/li_pv_v4a 1 -3 102 1 1 0 1 7000 +( -372 -2960 544 ) ( -346 -2954 544 ) ( -359 -2957 576 ) common/li_pv_v4a 1 -3 102 1 1 0 1 7000 +( -330 -3016 544 ) ( -358 -3022 544 ) ( -344 -3019 576 ) common/li_pv_v4a 1 -3 102 1 1 0 1 7000 +( -350 -3030 553 ) ( -366 -2956 553 ) ( -358 -2993 576 ) common/li_pv_v4a 1 -3 102 1 1 0 1 7000 +} +// brush 20 +{ +( -320 -3060 544 ) ( -352 -2904 544 ) ( -383 -2914 576 ) common/li_pv_v4a 1 -3 102 1 1 0 1 7000 +( -320 -3060 592 ) ( -320 -3060 544 ) ( -383 -2914 576 ) common/li_pv_v4a 1 -3 102 1 1 0 1 7000 +( -544 -3060 576 ) ( -600 -3060 576 ) ( -572 -2904 576 ) common/li_pv_v4a 1 -3 102 1 1 0 1 7000 +( -372 -2960 544 ) ( -346 -2954 544 ) ( -359 -2957 576 ) common/li_pv_v4a 1 -3 102 1 1 0 1 7000 +( -330 -3016 544 ) ( -358 -3022 544 ) ( -344 -3019 576 ) common/li_pv_v4a 1 -3 102 1 1 0 1 7000 +( -350 -2954 544 ) ( -336 -3020 544 ) ( -343 -2987 576 ) common/li_pv_v4a 1 -3 102 1 1 0 1 7000 +} +// brush 21 +{ +( -320 -3060 544 ) ( -352 -2904 544 ) ( -383 -2914 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -352 -2904 592 ) ( -352 -2904 544 ) ( -320 -3060 544 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -544 -3060 576 ) ( -600 -3060 576 ) ( -572 -2904 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -372 -2960 544 ) ( -346 -2954 544 ) ( -359 -2957 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -330 -3016 544 ) ( -358 -3022 544 ) ( -344 -3019 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +( -336 -3020 544 ) ( -350 -2954 544 ) ( -343 -2987 576 ) bricks/c_tn_m1 -65 -11 102 1 1 0 0 0 +} +// brush 22 +{ +( -724 -3816 544 ) ( -600 -3736 544 ) ( -621 -3710 576 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -600 -3736 592 ) ( -600 -3736 544 ) ( -724 -3816 544 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -724 -3816 592 ) ( -724 -3816 544 ) ( -621 -3710 576 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -572 -3816 576 ) ( -600 -3710 576 ) ( -544 -3710 576 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -702 -3782 576 ) ( -708 -3772 544 ) ( -696 -3792 544 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +} +// brush 23 +{ +( -740 -3787 576 ) ( -724 -3816 544 ) ( -621 -3710 576 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -724 -3816 592 ) ( -724 -3816 544 ) ( -740 -3787 576 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -621 -3710 576 ) ( -724 -3816 544 ) ( -724 -3816 592 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -572 -3816 576 ) ( -600 -3710 576 ) ( -544 -3710 576 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -702 -3782 576 ) ( -708 -3772 544 ) ( -696 -3792 544 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +} +// brush 24 +{ +( -740 -3787 576 ) ( -724 -3816 544 ) ( -621 -3710 576 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -621 -3710 576 ) ( -724 -3816 544 ) ( -724 -3816 592 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -572 -3816 576 ) ( -600 -3710 576 ) ( -544 -3710 576 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -646 -3746 576 ) ( -640 -3756 552 ) ( -652 -3736 552 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +} +// brush 25 +{ +( -724 -3816 544 ) ( -600 -3736 544 ) ( -621 -3710 576 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -621 -3710 576 ) ( -600 -3736 544 ) ( -600 -3736 592 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -600 -3736 592 ) ( -600 -3736 544 ) ( -724 -3816 544 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -724 -3816 592 ) ( -724 -3816 544 ) ( -621 -3710 576 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -572 -3816 576 ) ( -600 -3710 576 ) ( -544 -3710 576 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -646 -3746 576 ) ( -640 -3756 544 ) ( -652 -3736 544 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +} +// brush 26 +{ +( -724 -3816 544 ) ( -600 -3736 544 ) ( -621 -3710 576 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -600 -3736 592 ) ( -600 -3736 544 ) ( -724 -3816 544 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -572 -3816 576 ) ( -600 -3710 576 ) ( -544 -3710 576 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -702 -3782 576 ) ( -696 -3792 544 ) ( -708 -3772 544 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -646 -3746 576 ) ( -652 -3736 544 ) ( -640 -3756 544 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -670 -3772 576 ) ( -700 -3792 544 ) ( -640 -3752 544 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +} +// brush 27 +{ +( -724 -3816 544 ) ( -600 -3736 544 ) ( -621 -3710 576 ) common/li_pv_v4a 23 2 33 1 1 0 1 7000 +( -724 -3816 592 ) ( -724 -3816 544 ) ( -621 -3710 576 ) common/li_pv_v4a 23 2 33 1 1 0 1 7000 +( -572 -3816 576 ) ( -600 -3710 576 ) ( -544 -3710 576 ) common/li_pv_v4a 23 2 33 1 1 0 1 7000 +( -702 -3782 576 ) ( -696 -3792 544 ) ( -708 -3772 544 ) common/li_pv_v4a 23 2 33 1 1 0 1 7000 +( -646 -3746 576 ) ( -652 -3736 544 ) ( -640 -3756 544 ) common/li_pv_v4a 23 2 33 1 1 0 1 7000 +( -670 -3772 576 ) ( -640 -3752 544 ) ( -700 -3792 544 ) common/li_pv_v4a 23 2 33 1 1 0 1 7000 +} +// brush 28 +{ +( -740 -3787 576 ) ( -724 -3816 544 ) ( -621 -3710 576 ) common/li_pv_v4a 23 2 33 1 1 0 1 7000 +( -621 -3710 576 ) ( -724 -3816 544 ) ( -724 -3816 592 ) common/li_pv_v4a 23 2 33 1 1 0 1 7000 +( -572 -3816 576 ) ( -600 -3710 576 ) ( -544 -3710 576 ) common/li_pv_v4a 23 2 33 1 1 0 1 7000 +( -702 -3782 576 ) ( -696 -3792 544 ) ( -708 -3772 544 ) common/li_pv_v4a 23 2 33 1 1 0 1 7000 +( -646 -3746 576 ) ( -652 -3736 552 ) ( -640 -3756 552 ) common/li_pv_v4a 23 2 33 1 1 0 1 7000 +( -677 -3756 576 ) ( -708 -3776 552 ) ( -646 -3736 552 ) common/li_pv_v4a 23 2 33 1 1 0 1 7000 +} +// brush 29 +{ +( -740 -3787 576 ) ( -724 -3816 544 ) ( -621 -3710 576 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -572 -3816 576 ) ( -600 -3710 576 ) ( -544 -3710 576 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -702 -3782 576 ) ( -696 -3792 544 ) ( -708 -3772 544 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -646 -3746 576 ) ( -652 -3736 552 ) ( -640 -3756 552 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +( -677 -3756 576 ) ( -646 -3736 552 ) ( -708 -3776 552 ) bricks/c_tn_m1 -59 11 33 1 1 0 0 0 +} +// brush 30 +{ +( -2241 -834 576 ) ( -2304 -980 544 ) ( -2272 -983 576 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2304 -980 592 ) ( -2304 -980 544 ) ( -2241 -834 576 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2052 -834 576 ) ( -2024 -983 576 ) ( -2080 -983 576 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2265 -877 576 ) ( -2252 -880 544 ) ( -2278 -874 544 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +} +// brush 31 +{ +( -2241 -834 576 ) ( -2272 -824 544 ) ( -2304 -980 544 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2304 -980 544 ) ( -2272 -824 544 ) ( -2272 -824 592 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2241 -834 576 ) ( -2304 -980 544 ) ( -2304 -980 592 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2052 -824 576 ) ( -2024 -980 576 ) ( -2080 -980 576 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2280 -939 576 ) ( -2294 -936 544 ) ( -2266 -942 544 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +} +// brush 32 +{ +( -2241 -834 576 ) ( -2304 -980 544 ) ( -2272 -983 576 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2272 -983 576 ) ( -2304 -980 544 ) ( -2304 -980 592 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2304 -980 592 ) ( -2304 -980 544 ) ( -2241 -834 576 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2052 -834 576 ) ( -2024 -983 576 ) ( -2080 -983 576 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2280 -939 576 ) ( -2294 -936 544 ) ( -2266 -942 544 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +} +// brush 33 +{ +( -2241 -834 576 ) ( -2272 -824 544 ) ( -2304 -980 544 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2272 -824 592 ) ( -2272 -824 544 ) ( -2241 -834 576 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2304 -980 544 ) ( -2272 -824 544 ) ( -2272 -824 592 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2241 -834 576 ) ( -2304 -980 544 ) ( -2304 -980 592 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2052 -824 576 ) ( -2024 -980 576 ) ( -2080 -980 576 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2265 -877 576 ) ( -2252 -880 544 ) ( -2278 -874 544 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +} +// brush 34 +{ +( -2241 -834 576 ) ( -2304 -980 544 ) ( -2272 -983 576 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2052 -834 576 ) ( -2024 -983 576 ) ( -2080 -983 576 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2265 -877 576 ) ( -2278 -874 544 ) ( -2252 -880 544 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2280 -939 576 ) ( -2266 -942 544 ) ( -2294 -936 544 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2266 -913 576 ) ( -2274 -950 553 ) ( -2258 -876 553 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +} +// brush 35 +{ +( -2241 -834 576 ) ( -2304 -980 544 ) ( -2272 -983 576 ) common/li_pv_v4a 15 6 258 1 1 0 1 7000 +( -2304 -980 592 ) ( -2304 -980 544 ) ( -2241 -834 576 ) common/li_pv_v4a 15 6 258 1 1 0 1 7000 +( -2052 -834 576 ) ( -2024 -983 576 ) ( -2080 -983 576 ) common/li_pv_v4a 15 6 258 1 1 0 1 7000 +( -2265 -877 576 ) ( -2278 -874 544 ) ( -2252 -880 544 ) common/li_pv_v4a 15 6 258 1 1 0 1 7000 +( -2280 -939 576 ) ( -2266 -942 544 ) ( -2294 -936 544 ) common/li_pv_v4a 15 6 258 1 1 0 1 7000 +( -2266 -913 576 ) ( -2258 -876 553 ) ( -2274 -950 553 ) common/li_pv_v4a 15 6 258 1 1 0 1 7000 +} +// brush 36 +{ +( -2241 -834 576 ) ( -2272 -824 544 ) ( -2304 -980 544 ) common/li_pv_v4a 15 6 258 1 1 0 1 7000 +( -2241 -834 576 ) ( -2304 -980 544 ) ( -2304 -980 592 ) common/li_pv_v4a 15 6 258 1 1 0 1 7000 +( -2052 -824 576 ) ( -2024 -980 576 ) ( -2080 -980 576 ) common/li_pv_v4a 15 6 258 1 1 0 1 7000 +( -2265 -877 576 ) ( -2278 -874 544 ) ( -2252 -880 544 ) common/li_pv_v4a 15 6 258 1 1 0 1 7000 +( -2280 -939 576 ) ( -2266 -942 544 ) ( -2294 -936 544 ) common/li_pv_v4a 15 6 258 1 1 0 1 7000 +( -2281 -907 576 ) ( -2288 -940 544 ) ( -2274 -874 544 ) common/li_pv_v4a 15 6 258 1 1 0 1 7000 +} +// brush 37 +{ +( -2241 -834 576 ) ( -2272 -824 544 ) ( -2304 -980 544 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2304 -980 544 ) ( -2272 -824 544 ) ( -2272 -824 592 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2052 -824 576 ) ( -2024 -980 576 ) ( -2080 -980 576 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2265 -877 576 ) ( -2278 -874 544 ) ( -2252 -880 544 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2280 -939 576 ) ( -2266 -942 544 ) ( -2294 -936 544 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +( -2281 -907 576 ) ( -2274 -874 544 ) ( -2288 -940 544 ) bricks/c_tn_m1 64 -2 258 1 1 0 0 0 +} +// brush 38 +{ +( -2272 -1129 576 ) ( -2304 -1132 544 ) ( -2241 -1278 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2241 -1278 576 ) ( -2304 -1132 544 ) ( -2304 -1132 592 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2080 -1129 576 ) ( -2024 -1129 576 ) ( -2052 -1278 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2278 -1238 544 ) ( -2252 -1232 544 ) ( -2265 -1235 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +} +// brush 39 +{ +( -2304 -1132 544 ) ( -2272 -1288 544 ) ( -2241 -1278 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2272 -1288 592 ) ( -2272 -1288 544 ) ( -2304 -1132 544 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2304 -1132 592 ) ( -2304 -1132 544 ) ( -2241 -1278 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2080 -1132 576 ) ( -2024 -1132 576 ) ( -2052 -1288 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2266 -1170 544 ) ( -2294 -1176 544 ) ( -2280 -1173 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +} +// brush 40 +{ +( -2272 -1129 576 ) ( -2304 -1132 544 ) ( -2241 -1278 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2304 -1132 592 ) ( -2304 -1132 544 ) ( -2272 -1129 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2241 -1278 576 ) ( -2304 -1132 544 ) ( -2304 -1132 592 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2080 -1129 576 ) ( -2024 -1129 576 ) ( -2052 -1278 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2266 -1170 544 ) ( -2294 -1176 544 ) ( -2280 -1173 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +} +// brush 41 +{ +( -2304 -1132 544 ) ( -2272 -1288 544 ) ( -2241 -1278 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2241 -1278 576 ) ( -2272 -1288 544 ) ( -2272 -1288 592 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2272 -1288 592 ) ( -2272 -1288 544 ) ( -2304 -1132 544 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2304 -1132 592 ) ( -2304 -1132 544 ) ( -2241 -1278 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2080 -1132 576 ) ( -2024 -1132 576 ) ( -2052 -1288 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2278 -1238 544 ) ( -2252 -1232 544 ) ( -2265 -1235 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +} +// brush 42 +{ +( -2272 -1129 576 ) ( -2304 -1132 544 ) ( -2241 -1278 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2080 -1129 576 ) ( -2024 -1129 576 ) ( -2052 -1278 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2252 -1232 544 ) ( -2278 -1238 544 ) ( -2265 -1235 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2294 -1176 544 ) ( -2266 -1170 544 ) ( -2280 -1173 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2258 -1236 553 ) ( -2274 -1162 553 ) ( -2266 -1199 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +} +// brush 43 +{ +( -2272 -1129 576 ) ( -2304 -1132 544 ) ( -2241 -1278 576 ) common/li_pv_v4a -32 -2 282 1 1 0 1 7000 +( -2241 -1278 576 ) ( -2304 -1132 544 ) ( -2304 -1132 592 ) common/li_pv_v4a -32 -2 282 1 1 0 1 7000 +( -2080 -1129 576 ) ( -2024 -1129 576 ) ( -2052 -1278 576 ) common/li_pv_v4a -32 -2 282 1 1 0 1 7000 +( -2252 -1232 544 ) ( -2278 -1238 544 ) ( -2265 -1235 576 ) common/li_pv_v4a -32 -2 282 1 1 0 1 7000 +( -2294 -1176 544 ) ( -2266 -1170 544 ) ( -2280 -1173 576 ) common/li_pv_v4a -32 -2 282 1 1 0 1 7000 +( -2274 -1162 553 ) ( -2258 -1236 553 ) ( -2266 -1199 576 ) common/li_pv_v4a -32 -2 282 1 1 0 1 7000 +} +// brush 44 +{ +( -2304 -1132 544 ) ( -2272 -1288 544 ) ( -2241 -1278 576 ) common/li_pv_v4a -32 -2 282 1 1 0 1 7000 +( -2304 -1132 592 ) ( -2304 -1132 544 ) ( -2241 -1278 576 ) common/li_pv_v4a -32 -2 282 1 1 0 1 7000 +( -2080 -1132 576 ) ( -2024 -1132 576 ) ( -2052 -1288 576 ) common/li_pv_v4a -32 -2 282 1 1 0 1 7000 +( -2252 -1232 544 ) ( -2278 -1238 544 ) ( -2265 -1235 576 ) common/li_pv_v4a -32 -2 282 1 1 0 1 7000 +( -2294 -1176 544 ) ( -2266 -1170 544 ) ( -2280 -1173 576 ) common/li_pv_v4a -32 -2 282 1 1 0 1 7000 +( -2274 -1238 544 ) ( -2288 -1172 544 ) ( -2281 -1205 576 ) common/li_pv_v4a -32 -2 282 1 1 0 1 7000 +} +// brush 45 +{ +( -2304 -1132 544 ) ( -2272 -1288 544 ) ( -2241 -1278 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2272 -1288 592 ) ( -2272 -1288 544 ) ( -2304 -1132 544 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2080 -1132 576 ) ( -2024 -1132 576 ) ( -2052 -1288 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2252 -1232 544 ) ( -2278 -1238 544 ) ( -2265 -1235 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2294 -1176 544 ) ( -2266 -1170 544 ) ( -2280 -1173 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +( -2288 -1172 544 ) ( -2274 -1238 544 ) ( -2281 -1205 576 ) bricks/c_tn_m1 -11 -4 282 1 1.050000 0 0 0 +} +// brush 46 +{ +( -1216 1280 344 ) ( -1232 1280 344 ) ( -1232 1152 352 ) bricks/c_tn_m3 40 -49 356 1 1 0 0 0 +( -1232 1280 568 ) ( -1216 1280 568 ) ( -1216 1152 576 ) bricks/c_tn_m3 40 -49 356 1 1 0 0 0 +( -1216 1280 568 ) ( -1232 1280 568 ) ( -1232 1280 344 ) bricks/c_tn_m3 40 -49 356 1 1 0 0 0 +( -1232 1280 344 ) ( -1232 1280 568 ) ( -1232 1152 576 ) bricks/c_tn_m3 40 -49 356 1 1 0 0 0 +( -1232 1152 576 ) ( -1216 1152 576 ) ( -1216 1152 352 ) bricks/c_tn_m3 40 -49 356 1 1 0 0 0 +( -1216 1280 568 ) ( -1216 1280 344 ) ( -1216 1152 352 ) bricks/c_tn_m3 40 -49 356 1 1 0 0 0 +} +// brush 47 +{ +( -1216 1408 328 ) ( -1232 1408 328 ) ( -1232 1280 344 ) bricks/c_tn_m3 74 18 353 1 1 0 0 0 +( -1232 1408 552 ) ( -1216 1408 552 ) ( -1216 1280 568 ) bricks/c_tn_m3 74 18 353 1 1 0 0 0 +( -1216 1408 552 ) ( -1232 1408 552 ) ( -1232 1408 328 ) bricks/c_tn_m3 74 18 353 1 1 0 0 0 +( -1232 1408 328 ) ( -1232 1408 552 ) ( -1232 1280 568 ) bricks/c_tn_m3 74 18 353 1 1 0 0 0 +( -1232 1280 568 ) ( -1216 1280 568 ) ( -1216 1280 344 ) bricks/c_tn_m3 74 18 353 1 1 0 0 0 +( -1216 1408 552 ) ( -1216 1408 328 ) ( -1216 1280 344 ) bricks/c_tn_m3 74 18 353 1 1 0 0 0 +} +// brush 48 +{ +( -1216 1536 304 ) ( -1232 1536 304 ) ( -1232 1408 328 ) bricks/c_tn_m3 122 111 349 1 1 0 0 0 +( -1232 1536 528 ) ( -1216 1536 528 ) ( -1216 1408 552 ) bricks/c_tn_m3 122 111 349 1 1 0 0 0 +( -1216 1536 528 ) ( -1232 1536 528 ) ( -1232 1536 304 ) bricks/c_tn_m3 122 111 349 1 1 0 0 0 +( -1232 1536 304 ) ( -1232 1536 528 ) ( -1232 1408 552 ) bricks/c_tn_m3 122 111 349 1 1 0 0 0 +( -1232 1408 552 ) ( -1216 1408 552 ) ( -1216 1408 328 ) bricks/c_tn_m3 122 111 349 1 1 0 0 0 +( -1216 1536 528 ) ( -1216 1536 304 ) ( -1216 1408 328 ) bricks/c_tn_m3 122 111 349 1 1 0 0 0 +} +// brush 49 +{ +( -1216 1664 272 ) ( -1232 1664 272 ) ( -1232 1536 304 ) bricks/c_tn_m3 -91 -71 346 1 1 0 0 0 +( -1232 1664 496 ) ( -1216 1664 496 ) ( -1216 1536 528 ) bricks/c_tn_m3 -91 -71 346 1 1 0 0 0 +( -1216 1664 496 ) ( -1232 1664 496 ) ( -1232 1664 272 ) bricks/c_tn_m3 -91 -71 346 1 1 0 0 0 +( -1232 1664 272 ) ( -1232 1664 496 ) ( -1232 1536 528 ) bricks/c_tn_m3 -91 -71 346 1 1 0 0 0 +( -1232 1536 528 ) ( -1216 1536 528 ) ( -1216 1536 304 ) bricks/c_tn_m3 -91 -71 346 1 1 0 0 0 +( -1216 1664 496 ) ( -1216 1664 272 ) ( -1216 1536 304 ) bricks/c_tn_m3 -91 -71 346 1 1 0 0 0 +} +// brush 50 +{ +( -1216 1792 248 ) ( -1232 1792 248 ) ( -1232 1664 272 ) bricks/c_tn_m3 118 104 349 1 1 0 0 0 +( -1232 1792 472 ) ( -1216 1792 472 ) ( -1216 1664 496 ) bricks/c_tn_m3 118 104 349 1 1 0 0 0 +( -1216 1792 472 ) ( -1232 1792 472 ) ( -1232 1792 248 ) bricks/c_tn_m3 118 104 349 1 1 0 0 0 +( -1232 1792 248 ) ( -1232 1792 472 ) ( -1232 1664 496 ) bricks/c_tn_m3 118 104 349 1 1 0 0 0 +( -1232 1664 496 ) ( -1216 1664 496 ) ( -1216 1664 272 ) bricks/c_tn_m3 118 104 349 1 1 0 0 0 +( -1216 1792 472 ) ( -1216 1792 248 ) ( -1216 1664 272 ) bricks/c_tn_m3 118 104 349 1 1 0 0 0 +} +// brush 51 +{ +( -1216 1920 232 ) ( -1232 1920 232 ) ( -1232 1792 248 ) bricks/c_tn_m3 67 -17 353 1 1 0 0 0 +( -1232 1920 456 ) ( -1216 1920 456 ) ( -1216 1792 472 ) bricks/c_tn_m3 67 -17 353 1 1 0 0 0 +( -1216 1920 456 ) ( -1232 1920 456 ) ( -1232 1920 232 ) bricks/c_tn_m3 67 -17 353 1 1 0 0 0 +( -1232 1920 232 ) ( -1232 1920 456 ) ( -1232 1792 472 ) bricks/c_tn_m3 67 -17 353 1 1 0 0 0 +( -1232 1792 472 ) ( -1216 1792 472 ) ( -1216 1792 248 ) bricks/c_tn_m3 67 -17 353 1 1 0 0 0 +( -1216 1920 456 ) ( -1216 1920 232 ) ( -1216 1792 248 ) bricks/c_tn_m3 67 -17 353 1 1 0 0 0 +} +// brush 52 +{ +( -1216 2048 224 ) ( -1232 2048 224 ) ( -1232 1920 232 ) bricks/c_tn_m3 0 -115 356 1 1 0 0 0 +( -1232 2048 448 ) ( -1216 2048 448 ) ( -1216 1920 456 ) bricks/c_tn_m3 0 -115 356 1 1 0 0 0 +( -1216 2048 448 ) ( -1232 2048 448 ) ( -1232 2048 224 ) bricks/c_tn_m3 0 -115 356 1 1 0 0 0 +( -1232 2048 224 ) ( -1232 2048 448 ) ( -1232 1920 456 ) bricks/c_tn_m3 0 -115 356 1 1 0 0 0 +( -1232 1920 456 ) ( -1216 1920 456 ) ( -1216 1920 232 ) bricks/c_tn_m3 0 -115 356 1 1 0 0 0 +( -1216 2048 448 ) ( -1216 2048 224 ) ( -1216 1920 232 ) bricks/c_tn_m3 0 -115 356 1 1 0 0 0 +} +// brush 53 +{ +( -812 3176 416 ) ( -936 3096 416 ) ( -915 3070 448 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -936 3096 464 ) ( -936 3096 416 ) ( -812 3176 416 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -812 3176 464 ) ( -812 3176 416 ) ( -915 3070 448 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -964 3176 448 ) ( -936 3070 448 ) ( -992 3070 448 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -834 3142 448 ) ( -828 3132 416 ) ( -840 3152 416 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +} +// brush 54 +{ +( -796 3147 448 ) ( -812 3176 416 ) ( -915 3070 448 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -812 3176 464 ) ( -812 3176 416 ) ( -796 3147 448 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -915 3070 448 ) ( -812 3176 416 ) ( -812 3176 464 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -964 3176 448 ) ( -936 3070 448 ) ( -992 3070 448 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -834 3142 448 ) ( -828 3132 416 ) ( -840 3152 416 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +} +// brush 55 +{ +( -796 3147 448 ) ( -812 3176 416 ) ( -915 3070 448 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -915 3070 448 ) ( -812 3176 416 ) ( -812 3176 464 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -964 3176 448 ) ( -936 3070 448 ) ( -992 3070 448 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -890 3106 448 ) ( -896 3116 424 ) ( -884 3096 424 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +} +// brush 56 +{ +( -812 3176 416 ) ( -936 3096 416 ) ( -915 3070 448 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -915 3070 448 ) ( -936 3096 416 ) ( -936 3096 464 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -936 3096 464 ) ( -936 3096 416 ) ( -812 3176 416 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -812 3176 464 ) ( -812 3176 416 ) ( -915 3070 448 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -964 3176 448 ) ( -936 3070 448 ) ( -992 3070 448 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -890 3106 448 ) ( -896 3116 416 ) ( -884 3096 416 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +} +// brush 57 +{ +( -812 3176 416 ) ( -936 3096 416 ) ( -915 3070 448 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -936 3096 464 ) ( -936 3096 416 ) ( -812 3176 416 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -964 3176 448 ) ( -936 3070 448 ) ( -992 3070 448 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -834 3142 448 ) ( -840 3152 416 ) ( -828 3132 416 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -890 3106 448 ) ( -884 3096 416 ) ( -896 3116 416 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -866 3132 448 ) ( -836 3152 416 ) ( -896 3112 416 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +} +// brush 58 +{ +( -812 3176 416 ) ( -936 3096 416 ) ( -915 3070 448 ) common/li_pv_v4a -12 6 213 1 1 0 1 7000 +( -812 3176 464 ) ( -812 3176 416 ) ( -915 3070 448 ) common/li_pv_v4a -12 6 213 1 1 0 1 7000 +( -964 3176 448 ) ( -936 3070 448 ) ( -992 3070 448 ) common/li_pv_v4a -12 6 213 1 1 0 1 7000 +( -834 3142 448 ) ( -840 3152 416 ) ( -828 3132 416 ) common/li_pv_v4a -12 6 213 1 1 0 1 7000 +( -890 3106 448 ) ( -884 3096 416 ) ( -896 3116 416 ) common/li_pv_v4a -12 6 213 1 1 0 1 7000 +( -866 3132 448 ) ( -896 3112 416 ) ( -836 3152 416 ) common/li_pv_v4a -12 6 213 1 1 0 1 7000 +} +// brush 59 +{ +( -796 3147 448 ) ( -812 3176 416 ) ( -915 3070 448 ) common/li_pv_v4a -12 6 213 1 1 0 1 7000 +( -915 3070 448 ) ( -812 3176 416 ) ( -812 3176 464 ) common/li_pv_v4a -12 6 213 1 1 0 1 7000 +( -964 3176 448 ) ( -936 3070 448 ) ( -992 3070 448 ) common/li_pv_v4a -12 6 213 1 1 0 1 7000 +( -834 3142 448 ) ( -840 3152 416 ) ( -828 3132 416 ) common/li_pv_v4a -12 6 213 1 1 0 1 7000 +( -890 3106 448 ) ( -884 3096 424 ) ( -896 3116 424 ) common/li_pv_v4a -12 6 213 1 1 0 1 7000 +( -859 3116 448 ) ( -828 3136 424 ) ( -890 3096 424 ) common/li_pv_v4a -12 6 213 1 1 0 1 7000 +} +// brush 60 +{ +( -796 3147 448 ) ( -812 3176 416 ) ( -915 3070 448 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -964 3176 448 ) ( -936 3070 448 ) ( -992 3070 448 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -834 3142 448 ) ( -840 3152 416 ) ( -828 3132 416 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -890 3106 448 ) ( -884 3096 424 ) ( -896 3116 424 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +( -859 3116 448 ) ( -890 3096 424 ) ( -828 3136 424 ) bricks/c_tn_m1 61 -1 213 1 1 0 0 0 +} +// brush 61 +{ +( -769 2764 448 ) ( -696 2792 416 ) ( -716 2817 448 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( -716 2817 448 ) ( -696 2792 416 ) ( -696 2792 464 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( -584 2764 448 ) ( -608 2764 448 ) ( -596 2817 448 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( -712 2812 416 ) ( -764 2760 416 ) ( -738 2786 448 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( -754 2752 448 ) ( -744 2744 442 ) ( -764 2760 442 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +} +// brush 62 +{ +( -744 2744 416 ) ( -696 2792 416 ) ( -769 2764 448 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( -696 2792 464 ) ( -696 2792 416 ) ( -744 2744 416 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( -744 2744 464 ) ( -744 2744 416 ) ( -769 2764 448 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( -584 2744 448 ) ( -608 2744 448 ) ( -596 2792 448 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( -748 2750 416 ) ( -702 2796 416 ) ( -725 2773 448 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( -704 2802 448 ) ( -712 2812 416 ) ( -696 2792 416 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +} +// brush 63 +{ +( -769 2764 448 ) ( -696 2792 416 ) ( -716 2817 448 ) common/li_pv_v4a -29 -5 45 1.080000 1 0 0 0 +( -716 2817 448 ) ( -696 2792 416 ) ( -696 2792 464 ) common/li_pv_v4a -29 -5 45 1.080000 1 0 0 0 +( -584 2764 448 ) ( -608 2764 448 ) ( -596 2817 448 ) common/li_pv_v4a -29 -5 45 1.080000 1 0 0 0 +( -764 2760 416 ) ( -712 2812 416 ) ( -738 2786 448 ) common/li_pv_v4a -29 -5 45 1.080000 1 0 0 0 +( -702 2796 416 ) ( -748 2750 416 ) ( -725 2773 448 ) common/li_pv_v4a -29 -5 45 1.080000 1 0 0 0 +( -754 2752 448 ) ( -744 2744 423 ) ( -764 2760 423 ) common/li_pv_v4a -29 -5 45 1.080000 1 0 0 0 +} +// brush 64 +{ +( -44 -1 448 ) ( -72 72 416 ) ( -97 52 448 ) common/li_pv_v4a 34 8 135 1.080000 1 0 1 7000 +( -97 52 448 ) ( -72 72 416 ) ( -72 72 464 ) common/li_pv_v4a 34 8 135 1.080000 1 0 1 7000 +( -44 184 448 ) ( -44 160 448 ) ( -97 172 448 ) common/li_pv_v4a 34 8 135 1.080000 1 0 1 7000 +( -40 4 416 ) ( -92 56 416 ) ( -66 30 448 ) common/li_pv_v4a 34 8 135 1.080000 1 0 1 7000 +( -76 66 416 ) ( -30 20 416 ) ( -53 43 448 ) common/li_pv_v4a 34 8 135 1.080000 1 0 1 7000 +( -32 14 448 ) ( -24 24 423 ) ( -40 4 423 ) common/li_pv_v4a 34 8 135 1.080000 1 0 1 7000 +} +// brush 65 +{ +( -24 24 416 ) ( -72 72 416 ) ( -44 -1 448 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( -72 72 464 ) ( -72 72 416 ) ( -24 24 416 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( -24 24 464 ) ( -24 24 416 ) ( -44 -1 448 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( -24 184 448 ) ( -24 160 448 ) ( -72 172 448 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( -30 20 416 ) ( -76 66 416 ) ( -53 43 448 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( -82 64 448 ) ( -92 56 416 ) ( -72 72 416 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +} +// brush 66 +{ +( -44 -1 448 ) ( -72 72 416 ) ( -97 52 448 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( -97 52 448 ) ( -72 72 416 ) ( -72 72 464 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( -44 184 448 ) ( -44 160 448 ) ( -97 172 448 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( -92 56 416 ) ( -40 4 416 ) ( -66 30 448 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( -32 14 448 ) ( -24 24 442 ) ( -40 4 442 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +} +// brush 67 +{ +( 2707 -258 448 ) ( 2840 -344 416 ) ( 2728 -232 416 ) bricks/c_tn_m1 -176 -4 135 1 1 0 0 0 +( 2707 -258 448 ) ( 2728 -232 416 ) ( 2728 -232 464 ) bricks/c_tn_m1 -176 -4 135 1 1 0 0 0 +( 2728 -232 416 ) ( 2840 -344 416 ) ( 2840 -344 464 ) bricks/c_tn_m1 -176 -4 135 1 1 0 0 0 +( 2835 -354 464 ) ( 2835 -354 416 ) ( 2702 -268 448 ) bricks/c_tn_m1 -176 -4 135 1 1 0 0 0 +( 2840 -316 448 ) ( 2707 -344 448 ) ( 2707 -288 448 ) bricks/c_tn_m1 -176 -4 135 1 1 0 0 0 +( 2751 -278 448 ) ( 2756 -273 416 ) ( 2745 -284 416 ) bricks/c_tn_m1 -176 -4 135 1 1 0 0 0 +} +// brush 68 +{ +( 2814 -365 448 ) ( 2840 -344 416 ) ( 2707 -258 448 ) bricks/c_tn_m1 -176 -4 135 1 1 0 0 0 +( 2840 -344 464 ) ( 2840 -344 416 ) ( 2814 -365 448 ) bricks/c_tn_m1 -176 -4 135 1 1 0 0 0 +( 2840 -316 448 ) ( 2707 -344 448 ) ( 2707 -288 448 ) bricks/c_tn_m1 -176 -4 135 1 1 0 0 0 +( 2796 -323 448 ) ( 2790 -329 416 ) ( 2801 -318 416 ) bricks/c_tn_m1 -176 -4 135 1 1 0 0 0 +( 2806 -310 398 ) ( 2821 -325 398 ) ( 2813 -317 448 ) bricks/c_tn_m1 -176 -4 135 1 1 0 0 0 +} +// brush 69 +{ +( 2814 -365 448 ) ( 2840 -344 416 ) ( 2707 -258 448 ) common/li_pv_v4a 30 4 135 1 1 0 1 7000 +( 2840 -316 448 ) ( 2707 -344 448 ) ( 2707 -288 448 ) common/li_pv_v4a 30 4 135 1 1 0 1 7000 +( 2796 -323 448 ) ( 2801 -318 416 ) ( 2790 -329 416 ) common/li_pv_v4a 30 4 135 1 1 0 1 7000 +( 2751 -278 448 ) ( 2745 -284 425 ) ( 2756 -273 425 ) common/li_pv_v4a 30 4 135 1 1 0 1 7000 +( 2790 -329 416 ) ( 2778 -317 416 ) ( 2784 -323 448 ) common/li_pv_v4a 30 4 135 1 1 0 1 7000 +( 2756 -273 416 ) ( 2771 -288 416 ) ( 2763 -280 448 ) common/li_pv_v4a 30 4 135 1 1 0 1 7000 +} +// brush 70 +{ +( 2707 -258 448 ) ( 2840 -344 416 ) ( 2728 -232 416 ) bricks/c_tn_m1 -176 -4 135 1 1 0 0 0 +( 2728 -232 416 ) ( 2840 -344 416 ) ( 2840 -344 464 ) bricks/c_tn_m1 -176 -4 135 1 1 0 0 0 +( 2840 -316 448 ) ( 2707 -344 448 ) ( 2707 -288 448 ) bricks/c_tn_m1 -176 -4 135 1 1 0 0 0 +( 2796 -323 448 ) ( 2801 -318 416 ) ( 2790 -329 416 ) bricks/c_tn_m1 -176 -4 135 1 1 0 0 0 +( 2751 -278 448 ) ( 2745 -284 416 ) ( 2756 -273 416 ) bricks/c_tn_m1 -176 -4 135 1 1 0 0 0 +( 2760 -277 448 ) ( 2764 -281 416 ) ( 2756 -273 416 ) bricks/c_tn_m1 -176 -4 135 1 1 0 0 0 +} +// brush 71 +{ +( 2814 -365 448 ) ( 2840 -344 416 ) ( 2707 -258 448 ) bricks/c_tn_m1 -176 -4 135 1 1 0 0 0 +( 2840 -316 448 ) ( 2707 -344 448 ) ( 2707 -288 448 ) bricks/c_tn_m1 -176 -4 135 1 1 0 0 0 +( 2796 -323 448 ) ( 2801 -318 416 ) ( 2790 -329 416 ) bricks/c_tn_m1 -176 -4 135 1 1 0 0 0 +( 2751 -278 448 ) ( 2745 -284 425 ) ( 2756 -273 425 ) bricks/c_tn_m1 -176 -4 135 1 1 0 0 0 +( 2750 -289 448 ) ( 2745 -284 425 ) ( 2755 -294 425 ) bricks/c_tn_m1 -176 -4 135 1 1 0 0 0 +} +// brush 72 +{ +( 2707 -3454 448 ) ( 2728 -3480 416 ) ( 2814 -3347 448 ) bricks/c_tn_m1 42 -5 45 1 1 0 0 0 +( 2756 -3480 448 ) ( 2728 -3347 448 ) ( 2784 -3347 448 ) bricks/c_tn_m1 42 -5 45 1 1 0 0 0 +( 2749 -3436 448 ) ( 2754 -3441 416 ) ( 2743 -3430 416 ) bricks/c_tn_m1 42 -5 45 1 1 0 0 0 +( 2794 -3391 448 ) ( 2788 -3385 425 ) ( 2799 -3396 425 ) bricks/c_tn_m1 42 -5 45 1 1 0 0 0 +( 2783 -3390 448 ) ( 2788 -3385 425 ) ( 2778 -3395 425 ) bricks/c_tn_m1 42 -5 45 1 1 0 0 0 +} +// brush 73 +{ +( 2814 -3347 448 ) ( 2728 -3480 416 ) ( 2840 -3368 416 ) bricks/c_tn_m1 42 -5 45 1 1 0 0 0 +( 2840 -3368 416 ) ( 2728 -3480 416 ) ( 2728 -3480 464 ) bricks/c_tn_m1 42 -5 45 1 1 0 0 0 +( 2756 -3480 448 ) ( 2728 -3347 448 ) ( 2784 -3347 448 ) bricks/c_tn_m1 42 -5 45 1 1 0 0 0 +( 2749 -3436 448 ) ( 2754 -3441 416 ) ( 2743 -3430 416 ) bricks/c_tn_m1 42 -5 45 1 1 0 0 0 +( 2794 -3391 448 ) ( 2788 -3385 416 ) ( 2799 -3396 416 ) bricks/c_tn_m1 42 -5 45 1 1 0 0 0 +( 2795 -3400 448 ) ( 2791 -3404 416 ) ( 2799 -3396 416 ) bricks/c_tn_m1 42 -5 45 1 1 0 0 0 +} +// brush 74 +{ +( 2707 -3454 448 ) ( 2728 -3480 416 ) ( 2814 -3347 448 ) common/li_pv_v4a -26 3 45 1 1 0 1 7000 +( 2756 -3480 448 ) ( 2728 -3347 448 ) ( 2784 -3347 448 ) common/li_pv_v4a -26 3 45 1 1 0 1 7000 +( 2749 -3436 448 ) ( 2754 -3441 416 ) ( 2743 -3430 416 ) common/li_pv_v4a -26 3 45 1 1 0 1 7000 +( 2794 -3391 448 ) ( 2788 -3385 425 ) ( 2799 -3396 425 ) common/li_pv_v4a -26 3 45 1 1 0 1 7000 +( 2743 -3430 416 ) ( 2755 -3418 416 ) ( 2749 -3424 448 ) common/li_pv_v4a -26 3 45 1 1 0 1 7000 +( 2799 -3396 416 ) ( 2784 -3411 416 ) ( 2792 -3403 448 ) common/li_pv_v4a -26 3 45 1 1 0 1 7000 +} +// brush 75 +{ +( 2707 -3454 448 ) ( 2728 -3480 416 ) ( 2814 -3347 448 ) bricks/c_tn_m1 42 -5 45 1 1 0 0 0 +( 2728 -3480 464 ) ( 2728 -3480 416 ) ( 2707 -3454 448 ) bricks/c_tn_m1 42 -5 45 1 1 0 0 0 +( 2756 -3480 448 ) ( 2728 -3347 448 ) ( 2784 -3347 448 ) bricks/c_tn_m1 42 -5 45 1 1 0 0 0 +( 2749 -3436 448 ) ( 2743 -3430 416 ) ( 2754 -3441 416 ) bricks/c_tn_m1 42 -5 45 1 1 0 0 0 +( 2762 -3446 398 ) ( 2747 -3461 398 ) ( 2755 -3453 448 ) bricks/c_tn_m1 42 -5 45 1 1 0 0 0 +} +// brush 76 +{ +( 2814 -3347 448 ) ( 2728 -3480 416 ) ( 2840 -3368 416 ) bricks/c_tn_m1 42 -5 45 1 1 0 0 0 +( 2814 -3347 448 ) ( 2840 -3368 416 ) ( 2840 -3368 464 ) bricks/c_tn_m1 42 -5 45 1 1 0 0 0 +( 2840 -3368 416 ) ( 2728 -3480 416 ) ( 2728 -3480 464 ) bricks/c_tn_m1 42 -5 45 1 1 0 0 0 +( 2718 -3475 464 ) ( 2718 -3475 416 ) ( 2804 -3342 448 ) bricks/c_tn_m1 42 -5 45 1 1 0 0 0 +( 2756 -3480 448 ) ( 2728 -3347 448 ) ( 2784 -3347 448 ) bricks/c_tn_m1 42 -5 45 1 1 0 0 0 +( 2794 -3391 448 ) ( 2799 -3396 416 ) ( 2788 -3385 416 ) bricks/c_tn_m1 42 -5 45 1 1 0 0 0 +} +// brush 77 +{ +( 1984 -3216 232 ) ( 1984 -3632 232 ) ( 2112 -3632 240 ) bricks/c_tn_m3 -24 -148 4 1 1 0 0 0 +( 1984 -3264 440 ) ( 1984 -3248 440 ) ( 2112 -3248 448 ) bricks/c_tn_m3 -24 -148 4 1 1 0 0 0 +( 2112 -3264 448 ) ( 2112 -3248 448 ) ( 2112 -3248 240 ) bricks/c_tn_m3 -24 -148 4 1 1 0 0 0 +( 1984 -3248 248 ) ( 1984 -3248 232 ) ( 2112 -3248 240 ) bricks/c_tn_m3 -24 -148 4 1 1 0 0 0 +( 1984 -3248 440 ) ( 1984 -3264 440 ) ( 1984 -3264 232 ) bricks/c_tn_m3 -24 -148 4 1 1 0 0 0 +( 1200 -3264 232 ) ( 1184 -3264 232 ) ( 1192 -3264 256 ) bricks/c_tn_m3 -24 -148 4 1 1 0 0 0 +} +// brush 78 +{ +( 1856 -3216 216 ) ( 1856 -3632 216 ) ( 1984 -3632 232 ) bricks/c_tn_m3 -35 4 7 1 1 0 0 0 +( 1856 -3264 424 ) ( 1856 -3248 424 ) ( 1984 -3248 440 ) bricks/c_tn_m3 -35 4 7 1 1 0 0 0 +( 1984 -3264 440 ) ( 1984 -3248 440 ) ( 1984 -3248 232 ) bricks/c_tn_m3 -35 4 7 1 1 0 0 0 +( 1856 -3248 232 ) ( 1856 -3248 216 ) ( 1984 -3248 232 ) bricks/c_tn_m3 -35 4 7 1 1 0 0 0 +( 1856 -3248 424 ) ( 1856 -3264 424 ) ( 1856 -3264 216 ) bricks/c_tn_m3 -35 4 7 1 1 0 0 0 +( 1200 -3264 216 ) ( 1184 -3264 216 ) ( 1192 -3264 248 ) bricks/c_tn_m3 -35 4 7 1 1 0 0 0 +} +// brush 79 +{ +( 1728 -3216 192 ) ( 1728 -3632 192 ) ( 1856 -3632 216 ) bricks/c_tn_m3 -39 -127 11 1 1 0 0 0 +( 1856 -3248 424 ) ( 1856 -3264 424 ) ( 1728 -3264 400 ) bricks/c_tn_m3 -39 -127 11 1 1 0 0 0 +( 1856 -3264 424 ) ( 1856 -3248 424 ) ( 1856 -3248 216 ) bricks/c_tn_m3 -39 -127 11 1 1 0 0 0 +( 1728 -3248 208 ) ( 1728 -3248 192 ) ( 1856 -3248 216 ) bricks/c_tn_m3 -39 -127 11 1 1 0 0 0 +( 1728 -3248 400 ) ( 1728 -3264 400 ) ( 1728 -3264 192 ) bricks/c_tn_m3 -39 -127 11 1 1 0 0 0 +( 1200 -3264 192 ) ( 1184 -3264 192 ) ( 1192 -3264 232 ) bricks/c_tn_m3 -39 -127 11 1 1 0 0 0 +} +// brush 80 +{ +( 1600 -3216 160 ) ( 1600 -3632 160 ) ( 1728 -3632 192 ) bricks/c_tn_m3 -31 38 14 1 1 0 0 0 +( 1632 -3632 376 ) ( 1632 -3216 376 ) ( 1760 -3216 408 ) bricks/c_tn_m3 -31 38 14 1 1 0 0 0 +( 1728 -3664 208 ) ( 1728 -3248 208 ) ( 1728 -3248 192 ) bricks/c_tn_m3 -31 38 14 1 1 0 0 0 +( 1600 -3248 176 ) ( 1600 -3248 160 ) ( 1728 -3248 192 ) bricks/c_tn_m3 -31 38 14 1 1 0 0 0 +( 1600 -3248 176 ) ( 1600 -3664 176 ) ( 1600 -3664 160 ) bricks/c_tn_m3 -31 38 14 1 1 0 0 0 +( 1200 -3264 160 ) ( 1184 -3264 160 ) ( 1192 -3264 208 ) bricks/c_tn_m3 -31 38 14 1 1 0 0 0 +} +// brush 81 +{ +( 1280 -3216 64 ) ( 1280 -3632 64 ) ( 1600 -3632 160 ) bricks/c_tn_m3 -25 -45 17 1 1 0 0 0 +( 1280 -3632 272 ) ( 1280 -3216 272 ) ( 1600 -3216 368 ) bricks/c_tn_m3 -25 -45 17 1 1 0 0 0 +( 1600 -3664 176 ) ( 1600 -3248 176 ) ( 1600 -3248 160 ) bricks/c_tn_m3 -25 -45 17 1 1 0 0 0 +( 1280 -3248 84 ) ( 1280 -3248 68 ) ( 1600 -3248 160 ) bricks/c_tn_m3 -25 -45 17 1 1 0 0 0 +( 1280 -3248 80 ) ( 1280 -3664 80 ) ( 1280 -3664 64 ) bricks/c_tn_m3 -25 -45 17 1 1 0 0 0 +( 1200 -3264 64 ) ( 1184 -3264 64 ) ( 1192 -3264 176 ) bricks/c_tn_m3 -25 -45 17 1 1 0 0 0 +} +// brush 82 +{ +( 1152 -3216 32 ) ( 1152 -3632 32 ) ( 1280 -3632 64 ) bricks/c_tn_m3 -36 22 14 1 1 0 0 0 +( 1152 -3632 240 ) ( 1152 -3216 240 ) ( 1280 -3216 272 ) bricks/c_tn_m3 -36 22 14 1 1 0 0 0 +( 1280 -3664 80 ) ( 1280 -3248 80 ) ( 1280 -3248 64 ) bricks/c_tn_m3 -36 22 14 1 1 0 0 0 +( 1152 -3248 48 ) ( 1152 -3248 32 ) ( 1280 -3248 64 ) bricks/c_tn_m3 -36 22 14 1 1 0 0 0 +( 1152 -3248 48 ) ( 1152 -3664 48 ) ( 1152 -3664 32 ) bricks/c_tn_m3 -36 22 14 1 1 0 0 0 +( 1200 -3264 32 ) ( 1184 -3264 32 ) ( 1192 -3264 80 ) bricks/c_tn_m3 -36 22 14 1 1 0 0 0 +} +// brush 83 +{ +( 1024 -3216 8 ) ( 1024 -3632 8 ) ( 1152 -3632 32 ) bricks/c_tn_m3 -16 83 11 1 1 0 0 0 +( 1024 -3632 216 ) ( 1024 -3216 216 ) ( 1152 -3216 240 ) bricks/c_tn_m3 -16 83 11 1 1 0 0 0 +( 1152 -3664 48 ) ( 1152 -3248 48 ) ( 1152 -3248 32 ) bricks/c_tn_m3 -16 83 11 1 1 0 0 0 +( 1024 -3248 24 ) ( 1024 -3248 8 ) ( 1152 -3248 32 ) bricks/c_tn_m3 -16 83 11 1 1 0 0 0 +( 1024 -3248 24 ) ( 1024 -3664 24 ) ( 1024 -3664 8 ) bricks/c_tn_m3 -16 83 11 1 1 0 0 0 +( 1200 -3264 8 ) ( 1184 -3264 8 ) ( 1192 -3264 48 ) bricks/c_tn_m3 -16 83 11 1 1 0 0 0 +} +// brush 84 +{ +( 896 -3216 -8 ) ( 896 -3632 -8 ) ( 1024 -3632 8 ) bricks/c_tn_m3 -23 -102 7 1 1 0 0 0 +( 896 -3632 200 ) ( 896 -3216 200 ) ( 1024 -3216 216 ) bricks/c_tn_m3 -23 -102 7 1 1 0 0 0 +( 1024 -3664 24 ) ( 1024 -3248 24 ) ( 1024 -3248 8 ) bricks/c_tn_m3 -23 -102 7 1 1 0 0 0 +( 896 -3248 8 ) ( 896 -3248 -8 ) ( 1024 -3248 8 ) bricks/c_tn_m3 -23 -102 7 1 1 0 0 0 +( 896 -3248 8 ) ( 896 -3664 8 ) ( 896 -3664 -8 ) bricks/c_tn_m3 -23 -102 7 1 1 0 0 0 +( 1200 -3264 -8 ) ( 1184 -3264 -8 ) ( 1192 -3264 24 ) bricks/c_tn_m3 -23 -102 7 1 1 0 0 0 +} +// brush 85 +{ +( 768 -3216 -16 ) ( 768 -3632 -16 ) ( 896 -3632 -8 ) bricks/c_tn_m3 -10 -55 4 1 1 0 0 0 +( 768 -3632 192 ) ( 768 -3216 192 ) ( 896 -3216 200 ) bricks/c_tn_m3 -10 -55 4 1 1 0 0 0 +( 896 -3664 8 ) ( 896 -3248 8 ) ( 896 -3248 -8 ) bricks/c_tn_m3 -10 -55 4 1 1 0 0 0 +( 768 -3248 0 ) ( 768 -3248 -16 ) ( 896 -3248 -8 ) bricks/c_tn_m3 -10 -55 4 1 1 0 0 0 +( 768 -3248 0 ) ( 768 -3664 0 ) ( 768 -3664 -16 ) bricks/c_tn_m3 -10 -55 4 1 1 0 0 0 +( 1200 -3264 -16 ) ( 1184 -3264 -16 ) ( 1192 -3264 8 ) bricks/c_tn_m3 -10 -55 4 1 1 0 0 0 +} +// brush 86 +{ +( -555 -3296 192 ) ( -552 -3264 160 ) ( -638 -3279 192 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -552 -3264 208 ) ( -552 -3264 160 ) ( -555 -3296 192 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -638 -3279 192 ) ( -552 -3264 160 ) ( -552 -3264 208 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -660 -3296 192 ) ( -672 -3264 192 ) ( -648 -3264 192 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -563 -3279 192 ) ( -564 -3288 160 ) ( -562 -3270 160 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +} +// brush 87 +{ +( -552 -3264 160 ) ( -628 -3248 160 ) ( -638 -3279 192 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -628 -3248 208 ) ( -628 -3248 160 ) ( -552 -3264 160 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -552 -3264 160 ) ( -638 -3279 192 ) ( -638 -3279 208 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -660 -3279 192 ) ( -672 -3248 192 ) ( -648 -3248 192 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -563 -3279 192 ) ( -564 -3288 160 ) ( -562 -3270 160 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +} +// brush 88 +{ +( -552 -3264 160 ) ( -628 -3248 160 ) ( -638 -3279 192 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -628 -3248 208 ) ( -628 -3248 160 ) ( -552 -3264 160 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -638 -3279 192 ) ( -628 -3248 160 ) ( -628 -3248 208 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -552 -3264 160 ) ( -638 -3279 192 ) ( -638 -3279 208 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -660 -3279 192 ) ( -672 -3248 192 ) ( -648 -3248 192 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -626 -3266 192 ) ( -624 -3256 160 ) ( -628 -3276 160 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +} +// brush 89 +{ +( -555 -3296 192 ) ( -552 -3264 160 ) ( -638 -3279 192 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -638 -3279 192 ) ( -552 -3264 160 ) ( -552 -3264 208 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -660 -3296 192 ) ( -672 -3264 192 ) ( -648 -3264 192 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -626 -3266 192 ) ( -624 -3256 164 ) ( -628 -3276 164 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +} +// brush 90 +{ +( -555 -3296 192 ) ( -552 -3264 160 ) ( -638 -3279 192 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -638 -3279 192 ) ( -552 -3264 160 ) ( -552 -3264 208 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -660 -3296 192 ) ( -672 -3264 192 ) ( -648 -3264 192 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -563 -3279 192 ) ( -562 -3270 160 ) ( -564 -3288 160 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -626 -3266 192 ) ( -628 -3276 164 ) ( -624 -3256 164 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -594 -3282 192 ) ( -632 -3274 164 ) ( -556 -3290 164 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +} +// brush 91 +{ +( -552 -3264 160 ) ( -628 -3248 160 ) ( -638 -3279 192 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -552 -3264 160 ) ( -638 -3279 192 ) ( -638 -3279 208 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -660 -3279 192 ) ( -672 -3248 192 ) ( -648 -3248 192 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -626 -3266 192 ) ( -628 -3276 160 ) ( -624 -3256 160 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -594 -3282 192 ) ( -632 -3274 160 ) ( -556 -3290 160 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +} +// brush 92 +{ +( -555 -3296 192 ) ( -552 -3264 160 ) ( -638 -3279 192 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -638 -3279 192 ) ( -552 -3264 160 ) ( -552 -3264 208 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -660 -3296 192 ) ( -672 -3264 192 ) ( -648 -3264 192 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -563 -3279 192 ) ( -562 -3270 160 ) ( -564 -3288 160 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -591 -3264 192 ) ( -554 -3272 164 ) ( -628 -3256 164 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +} +// brush 93 +{ +( -552 -3264 160 ) ( -628 -3248 160 ) ( -638 -3279 192 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -628 -3248 208 ) ( -628 -3248 160 ) ( -552 -3264 160 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -552 -3264 160 ) ( -638 -3279 192 ) ( -638 -3279 208 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -660 -3279 192 ) ( -672 -3248 192 ) ( -648 -3248 192 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -563 -3279 192 ) ( -562 -3270 160 ) ( -564 -3288 160 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -626 -3266 192 ) ( -628 -3276 160 ) ( -624 -3256 160 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( -591 -3264 192 ) ( -554 -3272 160 ) ( -628 -3256 160 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +} +// brush 94 +{ +( -555 -3296 192 ) ( -552 -3264 160 ) ( -638 -3279 192 ) common/li_pv_v4a 2 5 168 1 1 0 1 9000 +( -638 -3279 192 ) ( -552 -3264 160 ) ( -552 -3264 208 ) common/li_pv_v4a 2 5 168 1 1 0 1 9000 +( -660 -3296 192 ) ( -672 -3264 192 ) ( -648 -3264 192 ) common/li_pv_v4a 2 5 168 1 1 0 1 9000 +( -563 -3279 192 ) ( -562 -3270 160 ) ( -564 -3288 160 ) common/li_pv_v4a 2 5 168 1 1 0 1 9000 +( -594 -3282 192 ) ( -556 -3290 164 ) ( -632 -3274 164 ) common/li_pv_v4a 2 5 168 1 1 0 1 9000 +( -591 -3264 192 ) ( -628 -3256 164 ) ( -554 -3272 164 ) common/li_pv_v4a 2 5 168 1 1 0 1 9000 +} +// brush 95 +{ +( -552 -3264 160 ) ( -628 -3248 160 ) ( -638 -3279 192 ) common/li_pv_v4a 2 5 168 1 1 0 1 9000 +( -552 -3264 160 ) ( -638 -3279 192 ) ( -638 -3279 208 ) common/li_pv_v4a 2 5 168 1 1 0 1 9000 +( -660 -3279 192 ) ( -672 -3248 192 ) ( -648 -3248 192 ) common/li_pv_v4a 2 5 168 1 1 0 1 9000 +( -626 -3266 192 ) ( -628 -3276 160 ) ( -624 -3256 160 ) common/li_pv_v4a 2 5 168 1 1 0 1 9000 +( -594 -3282 192 ) ( -556 -3290 160 ) ( -632 -3274 160 ) common/li_pv_v4a 2 5 168 1 1 0 1 9000 +( -591 -3264 192 ) ( -628 -3256 160 ) ( -554 -3272 160 ) common/li_pv_v4a 2 5 168 1 1 0 1 9000 +} +// brush 96 +{ +( -911 -3006 192 ) ( -896 -2920 160 ) ( -928 -2923 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -928 -2923 192 ) ( -896 -2920 160 ) ( -896 -2920 208 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -896 -2920 208 ) ( -896 -2920 160 ) ( -911 -3006 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -896 -3016 192 ) ( -896 -3040 192 ) ( -928 -3028 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -902 -2930 160 ) ( -920 -2932 160 ) ( -911 -2931 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +} +// brush 97 +{ +( -911 -3006 192 ) ( -880 -2996 160 ) ( -896 -2920 160 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -896 -2920 160 ) ( -880 -2996 160 ) ( -880 -2996 208 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -911 -3006 208 ) ( -911 -3006 192 ) ( -896 -2920 160 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -880 -3016 192 ) ( -880 -3040 192 ) ( -911 -3028 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -902 -2930 160 ) ( -920 -2932 160 ) ( -911 -2931 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +} +// brush 98 +{ +( -911 -3006 192 ) ( -880 -2996 160 ) ( -896 -2920 160 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -896 -2920 160 ) ( -880 -2996 160 ) ( -880 -2996 208 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -880 -2996 208 ) ( -880 -2996 160 ) ( -911 -3006 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -911 -3006 208 ) ( -911 -3006 192 ) ( -896 -2920 160 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -880 -3016 192 ) ( -880 -3040 192 ) ( -911 -3028 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -908 -2996 160 ) ( -888 -2992 160 ) ( -898 -2994 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +} +// brush 99 +{ +( -911 -3006 192 ) ( -896 -2920 160 ) ( -928 -2923 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -896 -2920 208 ) ( -896 -2920 160 ) ( -911 -3006 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -896 -3016 192 ) ( -896 -3040 192 ) ( -928 -3028 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -908 -2996 164 ) ( -888 -2992 164 ) ( -898 -2994 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +} +// brush 100 +{ +( -911 -3006 192 ) ( -896 -2920 160 ) ( -928 -2923 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -896 -2920 208 ) ( -896 -2920 160 ) ( -911 -3006 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -896 -3016 192 ) ( -896 -3040 192 ) ( -928 -3028 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -920 -2932 160 ) ( -902 -2930 160 ) ( -911 -2931 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -888 -2992 164 ) ( -908 -2996 164 ) ( -898 -2994 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -922 -2924 164 ) ( -906 -3000 164 ) ( -914 -2962 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +} +// brush 101 +{ +( -911 -3006 192 ) ( -880 -2996 160 ) ( -896 -2920 160 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -911 -3006 208 ) ( -911 -3006 192 ) ( -896 -2920 160 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -880 -3016 192 ) ( -880 -3040 192 ) ( -911 -3028 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -888 -2992 160 ) ( -908 -2996 160 ) ( -898 -2994 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -922 -2924 160 ) ( -906 -3000 160 ) ( -914 -2962 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +} +// brush 102 +{ +( -911 -3006 192 ) ( -896 -2920 160 ) ( -928 -2923 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -896 -2920 208 ) ( -896 -2920 160 ) ( -911 -3006 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -896 -3016 192 ) ( -896 -3040 192 ) ( -928 -3028 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -920 -2932 160 ) ( -902 -2930 160 ) ( -911 -2931 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -888 -2996 164 ) ( -904 -2922 164 ) ( -896 -2959 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +} +// brush 103 +{ +( -911 -3006 192 ) ( -880 -2996 160 ) ( -896 -2920 160 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -896 -2920 160 ) ( -880 -2996 160 ) ( -880 -2996 208 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -911 -3006 208 ) ( -911 -3006 192 ) ( -896 -2920 160 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -880 -3016 192 ) ( -880 -3040 192 ) ( -911 -3028 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -920 -2932 160 ) ( -902 -2930 160 ) ( -911 -2931 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -888 -2992 160 ) ( -908 -2996 160 ) ( -898 -2994 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +( -888 -2996 160 ) ( -904 -2922 160 ) ( -896 -2959 192 ) bricks/c_tn_m1 0 12 102 1 1 0 0 0 +} +// brush 104 +{ +( -911 -3006 192 ) ( -896 -2920 160 ) ( -928 -2923 192 ) common/li_pv_v4a 10 -5 282 1 1 0 1 9000 +( -896 -2920 208 ) ( -896 -2920 160 ) ( -911 -3006 192 ) common/li_pv_v4a 10 -5 282 1 1 0 1 9000 +( -896 -3016 192 ) ( -896 -3040 192 ) ( -928 -3028 192 ) common/li_pv_v4a 10 -5 282 1 1 0 1 9000 +( -920 -2932 160 ) ( -902 -2930 160 ) ( -911 -2931 192 ) common/li_pv_v4a 10 -5 282 1 1 0 1 9000 +( -906 -3000 164 ) ( -922 -2924 164 ) ( -914 -2962 192 ) common/li_pv_v4a 10 -5 282 1 1 0 1 9000 +( -904 -2922 164 ) ( -888 -2996 164 ) ( -896 -2959 192 ) common/li_pv_v4a 10 -5 282 1 1 0 1 9000 +} +// brush 105 +{ +( -911 -3006 192 ) ( -880 -2996 160 ) ( -896 -2920 160 ) common/li_pv_v4a 10 -5 282 1 1 0 1 9000 +( -911 -3006 208 ) ( -911 -3006 192 ) ( -896 -2920 160 ) common/li_pv_v4a 10 -5 282 1 1 0 1 9000 +( -880 -3016 192 ) ( -880 -3040 192 ) ( -911 -3028 192 ) common/li_pv_v4a 10 -5 282 1 1 0 1 9000 +( -888 -2992 160 ) ( -908 -2996 160 ) ( -898 -2994 192 ) common/li_pv_v4a 10 -5 282 1 1 0 1 9000 +( -906 -3000 160 ) ( -922 -2924 160 ) ( -914 -2962 192 ) common/li_pv_v4a 10 -5 282 1 1 0 1 9000 +( -904 -2922 160 ) ( -888 -2996 160 ) ( -896 -2959 192 ) common/li_pv_v4a 10 -5 282 1 1 0 1 9000 +} +// brush 106 +{ +( -1712 -2584 0 ) ( -1696 -2584 0 ) ( -1648 -2808 0 ) bricks/c_sr_mr5 0 11 282 1 1 0 0 0 +( -1696 -2584 -16 ) ( -1712 -2584 -16 ) ( -1664 -2816 -16 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1648 -2811 -32 ) ( -1648 -2811 192 ) ( -1632 -2806 192 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1680 -2580 192 ) ( -1680 -2580 -32 ) ( -1632 -2806 -32 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1680 -2580 -32 ) ( -1680 -2580 192 ) ( -1696 -2582 192 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1696 -2582 -32 ) ( -1696 -2582 192 ) ( -1648 -2811 192 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 107 +{ +( -1696 -2582 160 ) ( -1648 -2811 160 ) ( -1617 -2802 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -1648 -2811 208 ) ( -1648 -2811 160 ) ( -1696 -2582 160 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -1696 -2582 160 ) ( -1617 -2802 192 ) ( -1617 -2802 208 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -904 -2811 192 ) ( -920 -2811 192 ) ( -912 -2582 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -1652 -2660 160 ) ( -1674 -2666 160 ) ( -1663 -2663 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +} +// brush 108 +{ +( -1664 -2579 192 ) ( -1696 -2582 160 ) ( -1617 -2802 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -1696 -2582 208 ) ( -1696 -2582 160 ) ( -1664 -2579 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -1617 -2802 192 ) ( -1696 -2582 160 ) ( -1696 -2582 208 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -904 -2802 192 ) ( -920 -2802 192 ) ( -912 -2579 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -1652 -2660 160 ) ( -1674 -2666 160 ) ( -1663 -2663 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +} +// brush 109 +{ +( -1664 -2579 192 ) ( -1696 -2582 160 ) ( -1617 -2802 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -1617 -2802 192 ) ( -1696 -2582 160 ) ( -1696 -2582 208 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -904 -2802 192 ) ( -920 -2802 192 ) ( -912 -2579 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -1658 -2730 172 ) ( -1640 -2726 172 ) ( -1649 -2728 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +} +// brush 110 +{ +( -1696 -2582 160 ) ( -1648 -2811 160 ) ( -1617 -2802 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -1648 -2811 208 ) ( -1648 -2811 160 ) ( -1696 -2582 160 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -1617 -2802 192 ) ( -1648 -2811 160 ) ( -1648 -2811 208 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -1696 -2582 160 ) ( -1617 -2802 192 ) ( -1617 -2802 208 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -904 -2811 192 ) ( -920 -2811 192 ) ( -912 -2582 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -1658 -2730 160 ) ( -1640 -2726 160 ) ( -1649 -2728 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +} +// brush 111 +{ +( -1664 -2579 192 ) ( -1696 -2582 160 ) ( -1617 -2802 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -904 -2802 192 ) ( -920 -2802 192 ) ( -912 -2579 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -1674 -2666 160 ) ( -1652 -2660 160 ) ( -1663 -2663 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -1640 -2726 172 ) ( -1658 -2730 172 ) ( -1649 -2728 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -1640 -2726 172 ) ( -1654 -2660 172 ) ( -1647 -2693 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +} +// brush 112 +{ +( -1696 -2582 160 ) ( -1648 -2811 160 ) ( -1617 -2802 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -1648 -2811 208 ) ( -1648 -2811 160 ) ( -1696 -2582 160 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -904 -2811 192 ) ( -920 -2811 192 ) ( -912 -2582 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -1674 -2666 160 ) ( -1652 -2660 160 ) ( -1663 -2663 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -1640 -2726 160 ) ( -1658 -2730 160 ) ( -1649 -2728 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( -1672 -2660 160 ) ( -1656 -2732 160 ) ( -1664 -2696 192 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +} +// brush 113 +{ +( -1696 -2582 160 ) ( -1648 -2811 160 ) ( -1617 -2802 192 ) common/li_pv_v4a 20 -4 102 1 1 0 0 0 +( -1696 -2582 160 ) ( -1617 -2802 192 ) ( -1617 -2802 208 ) common/li_pv_v4a 20 -4 102 1 1 0 0 0 +( -904 -2811 192 ) ( -920 -2811 192 ) ( -912 -2582 192 ) common/li_pv_v4a 20 -4 102 1 1 0 0 0 +( -1674 -2666 160 ) ( -1652 -2660 160 ) ( -1663 -2663 192 ) common/li_pv_v4a 20 -4 102 1 1 0 0 0 +( -1640 -2726 160 ) ( -1658 -2730 160 ) ( -1649 -2728 192 ) common/li_pv_v4a 20 -4 102 1 1 0 0 0 +( -1656 -2732 160 ) ( -1672 -2660 160 ) ( -1664 -2696 192 ) common/li_pv_v4a 20 -4 102 1 1 0 0 0 +} +// brush 114 +{ +( -1664 -2579 192 ) ( -1696 -2582 160 ) ( -1617 -2802 192 ) common/li_pv_v4a 20 -4 102 1 1 0 0 0 +( -1617 -2802 192 ) ( -1696 -2582 160 ) ( -1696 -2582 208 ) common/li_pv_v4a 20 -4 102 1 1 0 0 0 +( -904 -2802 192 ) ( -920 -2802 192 ) ( -912 -2579 192 ) common/li_pv_v4a 20 -4 102 1 1 0 0 0 +( -1674 -2666 160 ) ( -1652 -2660 160 ) ( -1663 -2663 192 ) common/li_pv_v4a 20 -4 102 1 1 0 0 0 +( -1640 -2726 172 ) ( -1658 -2730 172 ) ( -1649 -2728 192 ) common/li_pv_v4a 20 -4 102 1 1 0 0 0 +( -1654 -2660 172 ) ( -1640 -2726 172 ) ( -1647 -2693 192 ) common/li_pv_v4a 20 -4 102 1 1 0 0 0 +} +// brush 115 +{ +( -1080 -3528 -16 ) ( -1072 -3512 -16 ) ( -1269 -3379 -16 ) bricks/c_sr_mr5 -43 -9 -90 1 -1 0 0 0 +( -1072 -3512 0 ) ( -1080 -3528 0 ) ( -1280 -3392 0 ) bricks/c_sr_mr5 0 7 326 1 1 0 0 0 +( -1269 -3379 16 ) ( -1269 -3379 -208 ) ( -1258 -3365 -208 ) bricks/c_sr_mr5 -43 -27 -180 1 1 0 0 0 +( -1064 -3498 -208 ) ( -1064 -3498 16 ) ( -1258 -3365 16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1072 -3513 -208 ) ( -1072 -3513 16 ) ( -1064 -3498 16 ) bricks/c_sr_mr5 -43 -27 -180 1 1 0 0 0 +( -1072 -3513 16 ) ( -1072 -3513 -208 ) ( -1269 -3379 -208 ) bricks/c_sr_mr5 25 -28 -180 1 1 0 0 0 +} +// brush 116 +{ +( -1269 -3379 208 ) ( -1269 -3379 160 ) ( -1248 -3353 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -1056 -3485 192 ) ( -1269 -3379 160 ) ( -1269 -3379 208 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -1248 -3353 192 ) ( -1269 -3379 160 ) ( -1056 -3485 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -904 -3485 192 ) ( -920 -3485 192 ) ( -912 -3353 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -1174 -3408 160 ) ( -1186 -3426 160 ) ( -1180 -3417 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +} +// brush 117 +{ +( -1072 -3513 208 ) ( -1072 -3513 160 ) ( -1269 -3379 160 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -1269 -3379 208 ) ( -1269 -3379 160 ) ( -1056 -3485 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -1269 -3379 160 ) ( -1072 -3513 160 ) ( -1056 -3485 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -904 -3513 192 ) ( -920 -3513 192 ) ( -912 -3379 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -1174 -3408 160 ) ( -1186 -3426 160 ) ( -1180 -3417 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +} +// brush 118 +{ +( -1072 -3513 208 ) ( -1072 -3513 160 ) ( -1269 -3379 160 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -1056 -3485 192 ) ( -1072 -3513 160 ) ( -1072 -3513 208 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -1269 -3379 208 ) ( -1269 -3379 160 ) ( -1056 -3485 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -1269 -3379 160 ) ( -1072 -3513 160 ) ( -1056 -3485 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -904 -3513 192 ) ( -920 -3513 192 ) ( -912 -3379 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -1134 -3464 160 ) ( -1122 -3446 160 ) ( -1128 -3455 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +} +// brush 119 +{ +( -1056 -3485 192 ) ( -1269 -3379 160 ) ( -1269 -3379 208 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -1248 -3353 192 ) ( -1269 -3379 160 ) ( -1056 -3485 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -904 -3485 192 ) ( -920 -3485 192 ) ( -912 -3353 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -1134 -3464 173 ) ( -1122 -3446 173 ) ( -1128 -3455 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +} +// brush 120 +{ +( -1248 -3353 192 ) ( -1269 -3379 160 ) ( -1056 -3485 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -904 -3485 192 ) ( -920 -3485 192 ) ( -912 -3353 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -1186 -3426 160 ) ( -1174 -3408 160 ) ( -1180 -3417 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -1122 -3446 173 ) ( -1134 -3464 173 ) ( -1128 -3455 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -1120 -3450 173 ) ( -1180 -3408 173 ) ( -1150 -3429 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +} +// brush 121 +{ +( -1072 -3513 208 ) ( -1072 -3513 160 ) ( -1269 -3379 160 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -1269 -3379 160 ) ( -1072 -3513 160 ) ( -1056 -3485 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -904 -3513 192 ) ( -920 -3513 192 ) ( -912 -3379 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -1186 -3426 160 ) ( -1174 -3408 160 ) ( -1180 -3417 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -1122 -3446 160 ) ( -1134 -3464 160 ) ( -1128 -3455 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +( -1188 -3422 160 ) ( -1128 -3464 160 ) ( -1158 -3443 192 ) bricks/c_tn_m1 -64 8 326 1 1 0 0 0 +} +// brush 122 +{ +( -1056 -3485 192 ) ( -1269 -3379 160 ) ( -1269 -3379 208 ) common/li_pv_v4a -28 -2 146 1 1 0 1 7000 +( -1248 -3353 192 ) ( -1269 -3379 160 ) ( -1056 -3485 192 ) common/li_pv_v4a -28 -2 146 1 1 0 1 7000 +( -904 -3485 192 ) ( -920 -3485 192 ) ( -912 -3353 192 ) common/li_pv_v4a -28 -2 146 1 1 0 1 7000 +( -1186 -3426 160 ) ( -1174 -3408 160 ) ( -1180 -3417 192 ) common/li_pv_v4a -28 -2 146 1 1 0 1 7000 +( -1122 -3446 173 ) ( -1134 -3464 173 ) ( -1128 -3455 192 ) common/li_pv_v4a -28 -2 146 1 1 0 1 7000 +( -1180 -3408 173 ) ( -1120 -3450 173 ) ( -1150 -3429 192 ) common/li_pv_v4a -28 -2 146 1 1 0 1 7000 +} +// brush 123 +{ +( -1269 -3379 208 ) ( -1269 -3379 160 ) ( -1056 -3485 192 ) common/li_pv_v4a -28 -2 146 1 1 0 1 7000 +( -1269 -3379 160 ) ( -1072 -3513 160 ) ( -1056 -3485 192 ) common/li_pv_v4a -28 -2 146 1 1 0 1 7000 +( -904 -3513 192 ) ( -920 -3513 192 ) ( -912 -3379 192 ) common/li_pv_v4a -28 -2 146 1 1 0 1 7000 +( -1186 -3426 160 ) ( -1174 -3408 160 ) ( -1180 -3417 192 ) common/li_pv_v4a -28 -2 146 1 1 0 1 7000 +( -1122 -3446 160 ) ( -1134 -3464 160 ) ( -1128 -3455 192 ) common/li_pv_v4a -28 -2 146 1 1 0 1 7000 +( -1128 -3464 160 ) ( -1188 -3422 160 ) ( -1158 -3443 192 ) common/li_pv_v4a -28 -2 146 1 1 0 1 7000 +} +// brush 124 +{ +( 2814 -1965 192 ) ( 2840 -1944 160 ) ( 2707 -1858 192 ) bricks/c_tn_m1 -140 8 135 1 1 0 0 0 +( 2840 -1916 192 ) ( 2707 -1944 192 ) ( 2707 -1888 192 ) bricks/c_tn_m1 -140 8 135 1 1 0 0 0 +( 2796 -1923 192 ) ( 2801 -1918 160 ) ( 2790 -1929 160 ) bricks/c_tn_m1 -140 8 135 1 1 0 0 0 +( 2751 -1878 192 ) ( 2745 -1884 169 ) ( 2756 -1873 169 ) bricks/c_tn_m1 -140 8 135 1 1 0 0 0 +( 2750 -1889 192 ) ( 2745 -1884 169 ) ( 2755 -1894 169 ) bricks/c_tn_m1 -140 8 135 1 1 0 0 0 +} +// brush 125 +{ +( 2707 -1858 192 ) ( 2840 -1944 160 ) ( 2728 -1832 160 ) bricks/c_tn_m1 -140 8 135 1 1 0 0 0 +( 2728 -1832 160 ) ( 2840 -1944 160 ) ( 2840 -1944 208 ) bricks/c_tn_m1 -140 8 135 1 1 0 0 0 +( 2840 -1916 192 ) ( 2707 -1944 192 ) ( 2707 -1888 192 ) bricks/c_tn_m1 -140 8 135 1 1 0 0 0 +( 2796 -1923 192 ) ( 2801 -1918 160 ) ( 2790 -1929 160 ) bricks/c_tn_m1 -140 8 135 1 1 0 0 0 +( 2751 -1878 192 ) ( 2745 -1884 160 ) ( 2756 -1873 160 ) bricks/c_tn_m1 -140 8 135 1 1 0 0 0 +( 2760 -1877 192 ) ( 2764 -1881 160 ) ( 2756 -1873 160 ) bricks/c_tn_m1 -140 8 135 1 1 0 0 0 +} +// brush 126 +{ +( 2814 -1965 192 ) ( 2840 -1944 160 ) ( 2707 -1858 192 ) common/li_pv_v4a 9 -1 135 1 1 0 1 7000 +( 2840 -1916 192 ) ( 2707 -1944 192 ) ( 2707 -1888 192 ) common/li_pv_v4a 9 -1 135 1 1 0 1 7000 +( 2796 -1923 192 ) ( 2801 -1918 160 ) ( 2790 -1929 160 ) common/li_pv_v4a 9 -1 135 1 1 0 1 7000 +( 2751 -1878 192 ) ( 2745 -1884 169 ) ( 2756 -1873 169 ) common/li_pv_v4a 9 -1 135 1 1 0 1 7000 +( 2790 -1929 160 ) ( 2778 -1917 160 ) ( 2784 -1923 192 ) common/li_pv_v4a 9 -1 135 1 1 0 1 7000 +( 2756 -1873 160 ) ( 2771 -1888 160 ) ( 2763 -1880 192 ) common/li_pv_v4a 9 -1 135 1 1 0 1 7000 +} +// brush 127 +{ +( 2814 -1965 192 ) ( 2840 -1944 160 ) ( 2707 -1858 192 ) bricks/c_tn_m1 -140 8 135 1 1 0 0 0 +( 2840 -1944 208 ) ( 2840 -1944 160 ) ( 2814 -1965 192 ) bricks/c_tn_m1 -140 8 135 1 1 0 0 0 +( 2840 -1916 192 ) ( 2707 -1944 192 ) ( 2707 -1888 192 ) bricks/c_tn_m1 -140 8 135 1 1 0 0 0 +( 2796 -1923 192 ) ( 2790 -1929 160 ) ( 2801 -1918 160 ) bricks/c_tn_m1 -140 8 135 1 1 0 0 0 +( 2806 -1910 142 ) ( 2821 -1925 142 ) ( 2813 -1917 192 ) bricks/c_tn_m1 -140 8 135 1 1 0 0 0 +} +// brush 128 +{ +( 2707 -1858 192 ) ( 2840 -1944 160 ) ( 2728 -1832 160 ) bricks/c_tn_m1 -140 8 135 1 1 0 0 0 +( 2707 -1858 192 ) ( 2728 -1832 160 ) ( 2728 -1832 208 ) bricks/c_tn_m1 -140 8 135 1 1 0 0 0 +( 2728 -1832 160 ) ( 2840 -1944 160 ) ( 2840 -1944 208 ) bricks/c_tn_m1 -140 8 135 1 1 0 0 0 +( 2835 -1954 208 ) ( 2835 -1954 160 ) ( 2702 -1868 192 ) bricks/c_tn_m1 -140 8 135 1 1 0 0 0 +( 2840 -1916 192 ) ( 2707 -1944 192 ) ( 2707 -1888 192 ) bricks/c_tn_m1 -140 8 135 1 1 0 0 0 +( 2751 -1878 192 ) ( 2756 -1873 160 ) ( 2745 -1884 160 ) bricks/c_tn_m1 -140 8 135 1 1 0 0 0 +} +// brush 129 +{ +( 2814 -3347 192 ) ( 2728 -3480 160 ) ( 2840 -3368 160 ) bricks/c_tn_m1 -184 -5 45 1 1 0 0 0 +( 2814 -3347 192 ) ( 2840 -3368 160 ) ( 2840 -3368 208 ) bricks/c_tn_m1 -184 -5 45 1 1 0 0 0 +( 2840 -3368 160 ) ( 2728 -3480 160 ) ( 2728 -3480 208 ) bricks/c_tn_m1 -184 -5 45 1 1 0 0 0 +( 2718 -3475 208 ) ( 2718 -3475 160 ) ( 2804 -3342 192 ) bricks/c_tn_m1 -184 -5 45 1 1 0 0 0 +( 2756 -3480 192 ) ( 2728 -3347 192 ) ( 2784 -3347 192 ) bricks/c_tn_m1 -184 -5 45 1 1 0 0 0 +( 2794 -3391 192 ) ( 2799 -3396 160 ) ( 2788 -3385 160 ) bricks/c_tn_m1 -184 -5 45 1 1 0 0 0 +} +// brush 130 +{ +( 2707 -3454 192 ) ( 2728 -3480 160 ) ( 2814 -3347 192 ) bricks/c_tn_m1 -184 -5 45 1 1 0 0 0 +( 2728 -3480 208 ) ( 2728 -3480 160 ) ( 2707 -3454 192 ) bricks/c_tn_m1 -184 -5 45 1 1 0 0 0 +( 2756 -3480 192 ) ( 2728 -3347 192 ) ( 2784 -3347 192 ) bricks/c_tn_m1 -184 -5 45 1 1 0 0 0 +( 2749 -3436 192 ) ( 2743 -3430 160 ) ( 2754 -3441 160 ) bricks/c_tn_m1 -184 -5 45 1 1 0 0 0 +( 2762 -3446 142 ) ( 2747 -3461 142 ) ( 2755 -3453 192 ) bricks/c_tn_m1 -184 -5 45 1 1 0 0 0 +} +// brush 131 +{ +( 2707 -3454 192 ) ( 2728 -3480 160 ) ( 2814 -3347 192 ) common/li_pv_v4a -26 3 45 1 1 0 1 7000 +( 2756 -3480 192 ) ( 2728 -3347 192 ) ( 2784 -3347 192 ) common/li_pv_v4a -26 3 45 1 1 0 1 7000 +( 2749 -3436 192 ) ( 2754 -3441 160 ) ( 2743 -3430 160 ) common/li_pv_v4a -26 3 45 1 1 0 1 7000 +( 2794 -3391 192 ) ( 2788 -3385 169 ) ( 2799 -3396 169 ) common/li_pv_v4a -26 3 45 1 1 0 1 7000 +( 2743 -3430 160 ) ( 2755 -3418 160 ) ( 2749 -3424 192 ) common/li_pv_v4a -26 3 45 1 1 0 1 7000 +( 2799 -3396 160 ) ( 2784 -3411 160 ) ( 2792 -3403 192 ) common/li_pv_v4a -26 3 45 1 1 0 1 7000 +} +// brush 132 +{ +( 2814 -3347 192 ) ( 2728 -3480 160 ) ( 2840 -3368 160 ) bricks/c_tn_m1 -184 -5 45 1 1 0 0 0 +( 2840 -3368 160 ) ( 2728 -3480 160 ) ( 2728 -3480 208 ) bricks/c_tn_m1 -184 -5 45 1 1 0 0 0 +( 2756 -3480 192 ) ( 2728 -3347 192 ) ( 2784 -3347 192 ) bricks/c_tn_m1 -184 -5 45 1 1 0 0 0 +( 2749 -3436 192 ) ( 2754 -3441 160 ) ( 2743 -3430 160 ) bricks/c_tn_m1 -184 -5 45 1 1 0 0 0 +( 2794 -3391 192 ) ( 2788 -3385 160 ) ( 2799 -3396 160 ) bricks/c_tn_m1 -184 -5 45 1 1 0 0 0 +( 2795 -3400 192 ) ( 2791 -3404 160 ) ( 2799 -3396 160 ) bricks/c_tn_m1 -184 -5 45 1 1 0 0 0 +} +// brush 133 +{ +( 2707 -3454 192 ) ( 2728 -3480 160 ) ( 2814 -3347 192 ) bricks/c_tn_m1 -184 -5 45 1 1 0 0 0 +( 2756 -3480 192 ) ( 2728 -3347 192 ) ( 2784 -3347 192 ) bricks/c_tn_m1 -184 -5 45 1 1 0 0 0 +( 2749 -3436 192 ) ( 2754 -3441 160 ) ( 2743 -3430 160 ) bricks/c_tn_m1 -184 -5 45 1 1 0 0 0 +( 2794 -3391 192 ) ( 2788 -3385 169 ) ( 2799 -3396 169 ) bricks/c_tn_m1 -184 -5 45 1 1 0 0 0 +( 2783 -3390 192 ) ( 2788 -3385 169 ) ( 2778 -3395 169 ) bricks/c_tn_m1 -184 -5 45 1 1 0 0 0 +} +// brush 134 +{ +( 768 -3616 -272 ) ( 768 -4032 -272 ) ( 896 -4032 -264 ) bricks/c_tn_m3 20 -53 4 1 1 0 0 0 +( 768 -4032 -64 ) ( 768 -3616 -64 ) ( 896 -3616 -56 ) bricks/c_tn_m3 20 -53 4 1 1 0 0 0 +( 896 -4064 -248 ) ( 896 -3648 -248 ) ( 896 -3648 -264 ) bricks/c_tn_m3 20 -53 4 1 1 0 0 0 +( 768 -3648 -256 ) ( 768 -3648 -272 ) ( 896 -3648 -264 ) bricks/c_tn_m3 20 -53 4 1 1 0 0 0 +( 768 -3648 -256 ) ( 768 -4064 -256 ) ( 768 -4064 -272 ) bricks/c_tn_m3 20 -53 4 1 1 0 0 0 +( 1200 -3664 -272 ) ( 1184 -3664 -272 ) ( 1192 -3664 -248 ) bricks/c_tn_m3 20 -53 4 1 1 0 0 0 +} +// brush 135 +{ +( 896 -3616 -264 ) ( 896 -4032 -264 ) ( 1024 -4032 -248 ) bricks/c_tn_m3 17 -99 7 1 1 0 0 0 +( 896 -4032 -56 ) ( 896 -3616 -56 ) ( 1024 -3616 -40 ) bricks/c_tn_m3 17 -99 7 1 1 0 0 0 +( 1024 -4064 -232 ) ( 1024 -3648 -232 ) ( 1024 -3648 -248 ) bricks/c_tn_m3 17 -99 7 1 1 0 0 0 +( 896 -3648 -248 ) ( 896 -3648 -264 ) ( 1024 -3648 -248 ) bricks/c_tn_m3 17 -99 7 1 1 0 0 0 +( 896 -3648 -248 ) ( 896 -4064 -248 ) ( 896 -4064 -264 ) bricks/c_tn_m3 17 -99 7 1 1 0 0 0 +( 1200 -3664 -264 ) ( 1184 -3664 -264 ) ( 1192 -3664 -232 ) bricks/c_tn_m3 17 -99 7 1 1 0 0 0 +} +// brush 136 +{ +( 1024 -3616 -248 ) ( 1024 -4032 -248 ) ( 1152 -4032 -224 ) bricks/c_tn_m3 33 88 11 1 1 0 0 0 +( 1024 -4032 -40 ) ( 1024 -3616 -40 ) ( 1152 -3616 -16 ) bricks/c_tn_m3 33 88 11 1 1 0 0 0 +( 1152 -4064 -208 ) ( 1152 -3648 -208 ) ( 1152 -3648 -224 ) bricks/c_tn_m3 33 88 11 1 1 0 0 0 +( 1024 -3648 -232 ) ( 1024 -3648 -248 ) ( 1152 -3648 -224 ) bricks/c_tn_m3 33 88 11 1 1 0 0 0 +( 1024 -3648 -232 ) ( 1024 -4064 -232 ) ( 1024 -4064 -248 ) bricks/c_tn_m3 33 88 11 1 1 0 0 0 +( 1200 -3664 -248 ) ( 1184 -3664 -248 ) ( 1192 -3664 -208 ) bricks/c_tn_m3 33 88 11 1 1 0 0 0 +} +// brush 137 +{ +( 1152 -3616 -224 ) ( 1152 -4032 -224 ) ( 1280 -4032 -192 ) bricks/c_tn_m3 -213 31 14 1 1 0 0 0 +( 1152 -4032 -16 ) ( 1152 -3616 -16 ) ( 1280 -3616 16 ) bricks/c_tn_m3 -213 31 14 1 1 0 0 0 +( 1280 -4064 -176 ) ( 1280 -3648 -176 ) ( 1280 -3648 -192 ) bricks/c_tn_m3 -213 31 14 1 1 0 0 0 +( 1152 -3648 -208 ) ( 1152 -3648 -224 ) ( 1280 -3648 -192 ) bricks/c_tn_m3 -213 31 14 1 1 0 0 0 +( 1152 -3648 -208 ) ( 1152 -4064 -208 ) ( 1152 -4064 -224 ) bricks/c_tn_m3 -213 31 14 1 1 0 0 0 +( 1200 -3664 -224 ) ( 1184 -3664 -224 ) ( 1192 -3664 -176 ) bricks/c_tn_m3 -213 31 14 1 1 0 0 0 +} +// brush 138 +{ +( 1280 -3616 -192 ) ( 1280 -4032 -192 ) ( 1600 -4032 -96 ) bricks/c_tn_m3 61 -32 17 1 1 0 0 0 +( 1280 -4032 16 ) ( 1280 -3616 16 ) ( 1600 -3616 112 ) bricks/c_tn_m3 61 -32 17 1 1 0 0 0 +( 1600 -4064 -80 ) ( 1600 -3648 -80 ) ( 1600 -3648 -96 ) bricks/c_tn_m3 61 -32 17 1 1 0 0 0 +( 1280 -3648 -172 ) ( 1280 -3648 -188 ) ( 1600 -3648 -96 ) bricks/c_tn_m3 61 -32 17 1 1 0 0 0 +( 1280 -3648 -176 ) ( 1280 -4064 -176 ) ( 1280 -4064 -192 ) bricks/c_tn_m3 61 -32 17 1 1 0 0 0 +( 1200 -3664 -192 ) ( 1184 -3664 -192 ) ( 1192 -3664 -80 ) bricks/c_tn_m3 61 -32 17 1 1 0 0 0 +} +// brush 139 +{ +( 1600 -3616 -96 ) ( 1600 -4032 -96 ) ( 1728 -4032 -64 ) bricks/c_tn_m3 37 48 14 1 1 0 0 0 +( 1632 -4032 120 ) ( 1632 -3616 120 ) ( 1760 -3616 152 ) bricks/c_tn_m3 37 48 14 1 1 0 0 0 +( 1728 -4064 -48 ) ( 1728 -3648 -48 ) ( 1728 -3648 -64 ) bricks/c_tn_m3 37 48 14 1 1 0 0 0 +( 1600 -3648 -80 ) ( 1600 -3648 -96 ) ( 1728 -3648 -64 ) bricks/c_tn_m3 37 48 14 1 1 0 0 0 +( 1600 -3648 -80 ) ( 1600 -4064 -80 ) ( 1600 -4064 -96 ) bricks/c_tn_m3 37 48 14 1 1 0 0 0 +( 1200 -3664 -96 ) ( 1184 -3664 -96 ) ( 1192 -3664 -48 ) bricks/c_tn_m3 37 48 14 1 1 0 0 0 +} +// brush 140 +{ +( 1728 -3616 -64 ) ( 1728 -4032 -64 ) ( 1856 -4032 -40 ) bricks/c_tn_m3 10 -122 11 1 1 0 0 0 +( 1856 -3648 168 ) ( 1856 -3664 168 ) ( 1728 -3664 144 ) bricks/c_tn_m3 10 -122 11 1 1 0 0 0 +( 1856 -3664 168 ) ( 1856 -3648 168 ) ( 1856 -3648 -40 ) bricks/c_tn_m3 10 -122 11 1 1 0 0 0 +( 1728 -3648 -48 ) ( 1728 -3648 -64 ) ( 1856 -3648 -40 ) bricks/c_tn_m3 10 -122 11 1 1 0 0 0 +( 1728 -3648 144 ) ( 1728 -3664 144 ) ( 1728 -3664 -64 ) bricks/c_tn_m3 10 -122 11 1 1 0 0 0 +( 1200 -3664 -64 ) ( 1184 -3664 -64 ) ( 1192 -3664 -24 ) bricks/c_tn_m3 10 -122 11 1 1 0 0 0 +} +// brush 141 +{ +( 1856 -3616 -40 ) ( 1856 -4032 -40 ) ( 1984 -4032 -24 ) bricks/c_tn_m3 -258 6 7 1 1 0 0 0 +( 1856 -3664 168 ) ( 1856 -3648 168 ) ( 1984 -3648 184 ) bricks/c_tn_m3 -258 6 7 1 1 0 0 0 +( 1984 -3664 184 ) ( 1984 -3648 184 ) ( 1984 -3648 -24 ) bricks/c_tn_m3 -258 6 7 1 1 0 0 0 +( 1856 -3648 -24 ) ( 1856 -3648 -40 ) ( 1984 -3648 -24 ) bricks/c_tn_m3 -258 6 7 1 1 0 0 0 +( 1856 -3648 168 ) ( 1856 -3664 168 ) ( 1856 -3664 -40 ) bricks/c_tn_m3 -258 6 7 1 1 0 0 0 +( 1200 -3664 -40 ) ( 1184 -3664 -40 ) ( 1192 -3664 -8 ) bricks/c_tn_m3 -258 6 7 1 1 0 0 0 +} +// brush 142 +{ +( 1984 -3616 -24 ) ( 1984 -4032 -24 ) ( 2112 -4032 -16 ) bricks/c_tn_m3 -5 108 4 1 1 0 0 0 +( 1984 -3664 184 ) ( 1984 -3648 184 ) ( 2112 -3648 192 ) bricks/c_tn_m3 -5 108 4 1 1 0 0 0 +( 2112 -3664 192 ) ( 2112 -3648 192 ) ( 2112 -3648 -16 ) bricks/c_tn_m3 -5 108 4 1 1 0 0 0 +( 1984 -3648 -8 ) ( 1984 -3648 -24 ) ( 2112 -3648 -16 ) bricks/c_tn_m3 -5 108 4 1 1 0 0 0 +( 1984 -3648 184 ) ( 1984 -3664 184 ) ( 1984 -3664 -24 ) bricks/c_tn_m3 -5 108 4 1 1 0 0 0 +( 1200 -3664 -24 ) ( 1184 -3664 -24 ) ( 1192 -3664 0 ) bricks/c_tn_m3 -5 108 4 1 1 0 0 0 +} +// brush 143 +{ +( -12 -3201 -64 ) ( -40 -3128 -96 ) ( -65 -3148 -64 ) common/li_pv_v4a -26 9 135 1.080000 1 0 1 7000 +( -65 -3148 -64 ) ( -40 -3128 -96 ) ( -40 -3128 -48 ) common/li_pv_v4a -26 9 135 1.080000 1 0 1 7000 +( -12 -3016 -64 ) ( -12 -3040 -64 ) ( -65 -3028 -64 ) common/li_pv_v4a -26 9 135 1.080000 1 0 1 7000 +( -8 -3196 -96 ) ( -60 -3144 -96 ) ( -34 -3170 -64 ) common/li_pv_v4a -26 9 135 1.080000 1 0 1 7000 +( -44 -3134 -96 ) ( 2 -3180 -96 ) ( -21 -3157 -64 ) common/li_pv_v4a -26 9 135 1.080000 1 0 1 7000 +( 0 -3186 -64 ) ( 8 -3176 -89 ) ( -8 -3196 -89 ) common/li_pv_v4a -26 9 135 1.080000 1 0 1 7000 +} +// brush 144 +{ +( 8 -3176 -96 ) ( -40 -3128 -96 ) ( -12 -3201 -64 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( -40 -3128 -48 ) ( -40 -3128 -96 ) ( 8 -3176 -96 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( 8 -3176 -48 ) ( 8 -3176 -96 ) ( -12 -3201 -64 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( 8 -3016 -64 ) ( 8 -3040 -64 ) ( -40 -3028 -64 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( 2 -3180 -96 ) ( -44 -3134 -96 ) ( -21 -3157 -64 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( -50 -3136 -64 ) ( -60 -3144 -96 ) ( -40 -3128 -96 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +} +// brush 145 +{ +( -12 -3201 -64 ) ( -40 -3128 -96 ) ( -65 -3148 -64 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( -65 -3148 -64 ) ( -40 -3128 -96 ) ( -40 -3128 -48 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( -12 -3016 -64 ) ( -12 -3040 -64 ) ( -65 -3028 -64 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( -60 -3144 -96 ) ( -8 -3196 -96 ) ( -34 -3170 -64 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( 0 -3186 -64 ) ( 8 -3176 -70 ) ( -8 -3196 -70 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +} +// brush 146 +{ +( 3539 -1086 -64 ) ( 3560 -1112 -96 ) ( 3646 -979 -64 ) bricks/c_tn_m1 -63 -6 45 1 1 0 0 0 +( 3588 -1112 -64 ) ( 3560 -979 -64 ) ( 3616 -979 -64 ) bricks/c_tn_m1 -63 -6 45 1 1 0 0 0 +( 3581 -1068 -64 ) ( 3586 -1073 -96 ) ( 3575 -1062 -96 ) bricks/c_tn_m1 -63 -6 45 1 1 0 0 0 +( 3626 -1023 -64 ) ( 3620 -1017 -87 ) ( 3631 -1028 -87 ) bricks/c_tn_m1 -63 -6 45 1 1 0 0 0 +( 3615 -1022 -64 ) ( 3620 -1017 -87 ) ( 3610 -1027 -87 ) bricks/c_tn_m1 -63 -6 45 1 1 0 0 0 +} +// brush 147 +{ +( 3646 -979 -64 ) ( 3560 -1112 -96 ) ( 3672 -1000 -96 ) bricks/c_tn_m1 -63 -6 45 1 1 0 0 0 +( 3672 -1000 -96 ) ( 3560 -1112 -96 ) ( 3560 -1112 -48 ) bricks/c_tn_m1 -63 -6 45 1 1 0 0 0 +( 3588 -1112 -64 ) ( 3560 -979 -64 ) ( 3616 -979 -64 ) bricks/c_tn_m1 -63 -6 45 1 1 0 0 0 +( 3581 -1068 -64 ) ( 3586 -1073 -96 ) ( 3575 -1062 -96 ) bricks/c_tn_m1 -63 -6 45 1 1 0 0 0 +( 3626 -1023 -64 ) ( 3620 -1017 -96 ) ( 3631 -1028 -96 ) bricks/c_tn_m1 -63 -6 45 1 1 0 0 0 +( 3627 -1032 -64 ) ( 3623 -1036 -96 ) ( 3631 -1028 -96 ) bricks/c_tn_m1 -63 -6 45 1 1 0 0 0 +} +// brush 148 +{ +( 3539 -1086 -64 ) ( 3560 -1112 -96 ) ( 3646 -979 -64 ) common/li_pv_v4a 16 2 45 1 1 0 1 7000 +( 3588 -1112 -64 ) ( 3560 -979 -64 ) ( 3616 -979 -64 ) common/li_pv_v4a 16 2 45 1 1 0 1 7000 +( 3581 -1068 -64 ) ( 3586 -1073 -96 ) ( 3575 -1062 -96 ) common/li_pv_v4a 16 2 45 1 1 0 1 7000 +( 3626 -1023 -64 ) ( 3620 -1017 -87 ) ( 3631 -1028 -87 ) common/li_pv_v4a 16 2 45 1 1 0 1 7000 +( 3575 -1062 -96 ) ( 3587 -1050 -96 ) ( 3581 -1056 -64 ) common/li_pv_v4a 16 2 45 1 1 0 1 7000 +( 3631 -1028 -96 ) ( 3616 -1043 -96 ) ( 3624 -1035 -64 ) common/li_pv_v4a 16 2 45 1 1 0 1 7000 +} +// brush 149 +{ +( 3539 -1086 -64 ) ( 3560 -1112 -96 ) ( 3646 -979 -64 ) bricks/c_tn_m1 -63 -6 45 1 1 0 0 0 +( 3560 -1112 -48 ) ( 3560 -1112 -96 ) ( 3539 -1086 -64 ) bricks/c_tn_m1 -63 -6 45 1 1 0 0 0 +( 3588 -1112 -64 ) ( 3560 -979 -64 ) ( 3616 -979 -64 ) bricks/c_tn_m1 -63 -6 45 1 1 0 0 0 +( 3581 -1068 -64 ) ( 3575 -1062 -96 ) ( 3586 -1073 -96 ) bricks/c_tn_m1 -63 -6 45 1 1 0 0 0 +( 3594 -1078 -114 ) ( 3579 -1093 -114 ) ( 3587 -1085 -64 ) bricks/c_tn_m1 -63 -6 45 1 1 0 0 0 +} +// brush 150 +{ +( 3646 -979 -64 ) ( 3560 -1112 -96 ) ( 3672 -1000 -96 ) bricks/c_tn_m1 -63 -6 45 1 1 0 0 0 +( 3646 -979 -64 ) ( 3672 -1000 -96 ) ( 3672 -1000 -48 ) bricks/c_tn_m1 -63 -6 45 1 1 0 0 0 +( 3672 -1000 -96 ) ( 3560 -1112 -96 ) ( 3560 -1112 -48 ) bricks/c_tn_m1 -63 -6 45 1 1 0 0 0 +( 3550 -1107 -48 ) ( 3550 -1107 -96 ) ( 3636 -974 -64 ) bricks/c_tn_m1 -63 -6 45 1 1 0 0 0 +( 3588 -1112 -64 ) ( 3560 -979 -64 ) ( 3616 -979 -64 ) bricks/c_tn_m1 -63 -6 45 1 1 0 0 0 +( 3626 -1023 -64 ) ( 3631 -1028 -96 ) ( 3620 -1017 -96 ) bricks/c_tn_m1 -63 -6 45 1 1 0 0 0 +} +// brush 151 +{ +( 3539 62 -64 ) ( 3672 -24 -96 ) ( 3560 88 -96 ) bricks/c_tn_m1 19 13 135 1 1 0 0 0 +( 3539 62 -64 ) ( 3560 88 -96 ) ( 3560 88 -48 ) bricks/c_tn_m1 19 13 135 1 1 0 0 0 +( 3560 88 -96 ) ( 3672 -24 -96 ) ( 3672 -24 -48 ) bricks/c_tn_m1 19 13 135 1 1 0 0 0 +( 3667 -34 -48 ) ( 3667 -34 -96 ) ( 3534 52 -64 ) bricks/c_tn_m1 19 13 135 1 1 0 0 0 +( 3672 4 -64 ) ( 3539 -24 -64 ) ( 3539 32 -64 ) bricks/c_tn_m1 19 13 135 1 1 0 0 0 +( 3583 42 -64 ) ( 3588 47 -96 ) ( 3577 36 -96 ) bricks/c_tn_m1 19 13 135 1 1 0 0 0 +} +// brush 152 +{ +( 3646 -45 -64 ) ( 3672 -24 -96 ) ( 3539 62 -64 ) bricks/c_tn_m1 19 13 135 1 1 0 0 0 +( 3672 -24 -48 ) ( 3672 -24 -96 ) ( 3646 -45 -64 ) bricks/c_tn_m1 19 13 135 1 1 0 0 0 +( 3672 4 -64 ) ( 3539 -24 -64 ) ( 3539 32 -64 ) bricks/c_tn_m1 19 13 135 1 1 0 0 0 +( 3628 -3 -64 ) ( 3622 -9 -96 ) ( 3633 2 -96 ) bricks/c_tn_m1 19 13 135 1 1 0 0 0 +( 3638 10 -114 ) ( 3653 -5 -114 ) ( 3645 3 -64 ) bricks/c_tn_m1 19 13 135 1 1 0 0 0 +} +// brush 153 +{ +( 3646 -45 -64 ) ( 3672 -24 -96 ) ( 3539 62 -64 ) common/li_pv_v4a 8 6 135 1 1 0 1 7000 +( 3672 4 -64 ) ( 3539 -24 -64 ) ( 3539 32 -64 ) common/li_pv_v4a 8 6 135 1 1 0 1 7000 +( 3628 -3 -64 ) ( 3633 2 -96 ) ( 3622 -9 -96 ) common/li_pv_v4a 8 6 135 1 1 0 1 7000 +( 3583 42 -64 ) ( 3577 36 -87 ) ( 3588 47 -87 ) common/li_pv_v4a 8 6 135 1 1 0 1 7000 +( 3622 -9 -96 ) ( 3610 3 -96 ) ( 3616 -3 -64 ) common/li_pv_v4a 8 6 135 1 1 0 1 7000 +( 3588 47 -96 ) ( 3603 32 -96 ) ( 3595 40 -64 ) common/li_pv_v4a 8 6 135 1 1 0 1 7000 +} +// brush 154 +{ +( 3539 62 -64 ) ( 3672 -24 -96 ) ( 3560 88 -96 ) bricks/c_tn_m1 19 13 135 1 1 0 0 0 +( 3560 88 -96 ) ( 3672 -24 -96 ) ( 3672 -24 -48 ) bricks/c_tn_m1 19 13 135 1 1 0 0 0 +( 3672 4 -64 ) ( 3539 -24 -64 ) ( 3539 32 -64 ) bricks/c_tn_m1 19 13 135 1 1 0 0 0 +( 3628 -3 -64 ) ( 3633 2 -96 ) ( 3622 -9 -96 ) bricks/c_tn_m1 19 13 135 1 1 0 0 0 +( 3583 42 -64 ) ( 3577 36 -96 ) ( 3588 47 -96 ) bricks/c_tn_m1 19 13 135 1 1 0 0 0 +( 3592 43 -64 ) ( 3596 39 -96 ) ( 3588 47 -96 ) bricks/c_tn_m1 19 13 135 1 1 0 0 0 +} +// brush 155 +{ +( 3646 -45 -64 ) ( 3672 -24 -96 ) ( 3539 62 -64 ) bricks/c_tn_m1 19 13 135 1 1 0 0 0 +( 3672 4 -64 ) ( 3539 -24 -64 ) ( 3539 32 -64 ) bricks/c_tn_m1 19 13 135 1 1 0 0 0 +( 3628 -3 -64 ) ( 3633 2 -96 ) ( 3622 -9 -96 ) bricks/c_tn_m1 19 13 135 1 1 0 0 0 +( 3583 42 -64 ) ( 3577 36 -87 ) ( 3588 47 -87 ) bricks/c_tn_m1 19 13 135 1 1 0 0 0 +( 3582 31 -64 ) ( 3577 36 -87 ) ( 3587 26 -87 ) bricks/c_tn_m1 19 13 135 1 1 0 0 0 +} +// brush 156 +{ +( -1281 3404 -64 ) ( -1208 3432 -96 ) ( -1228 3457 -64 ) bricks/c_tn_m1 0 17 45 1 1 0 0 0 +( -1228 3457 -64 ) ( -1208 3432 -96 ) ( -1208 3432 -48 ) bricks/c_tn_m1 0 17 45 1 1 0 0 0 +( -1096 3404 -64 ) ( -1120 3404 -64 ) ( -1108 3457 -64 ) bricks/c_tn_m1 0 17 45 1 1 0 0 0 +( -1224 3452 -96 ) ( -1276 3400 -96 ) ( -1250 3426 -64 ) bricks/c_tn_m1 0 17 45 1 1 0 0 0 +( -1266 3392 -64 ) ( -1256 3384 -70 ) ( -1276 3400 -70 ) bricks/c_tn_m1 0 17 45 1 1 0 0 0 +} +// brush 157 +{ +( -1256 3384 -96 ) ( -1208 3432 -96 ) ( -1281 3404 -64 ) bricks/c_tn_m1 0 17 45 1 1 0 0 0 +( -1208 3432 -48 ) ( -1208 3432 -96 ) ( -1256 3384 -96 ) bricks/c_tn_m1 0 17 45 1 1 0 0 0 +( -1256 3384 -48 ) ( -1256 3384 -96 ) ( -1281 3404 -64 ) bricks/c_tn_m1 0 17 45 1 1 0 0 0 +( -1096 3384 -64 ) ( -1120 3384 -64 ) ( -1108 3432 -64 ) bricks/c_tn_m1 0 17 45 1 1 0 0 0 +( -1260 3390 -96 ) ( -1214 3436 -96 ) ( -1237 3413 -64 ) bricks/c_tn_m1 0 17 45 1 1 0 0 0 +( -1216 3442 -64 ) ( -1224 3452 -96 ) ( -1208 3432 -96 ) bricks/c_tn_m1 0 17 45 1 1 0 0 0 +} +// brush 158 +{ +( -1281 3404 -64 ) ( -1208 3432 -96 ) ( -1228 3457 -64 ) common/li_pv_v4a 15 -7 45 1.080000 1 0 1 7000 +( -1228 3457 -64 ) ( -1208 3432 -96 ) ( -1208 3432 -48 ) common/li_pv_v4a 15 -7 45 1.080000 1 0 1 7000 +( -1096 3404 -64 ) ( -1120 3404 -64 ) ( -1108 3457 -64 ) common/li_pv_v4a 15 -7 45 1.080000 1 0 1 7000 +( -1276 3400 -96 ) ( -1224 3452 -96 ) ( -1250 3426 -64 ) common/li_pv_v4a 15 -7 45 1.080000 1 0 1 7000 +( -1214 3436 -96 ) ( -1260 3390 -96 ) ( -1237 3413 -64 ) common/li_pv_v4a 15 -7 45 1.080000 1 0 1 7000 +( -1266 3392 -64 ) ( -1256 3384 -89 ) ( -1276 3400 -89 ) common/li_pv_v4a 15 -7 45 1.080000 1 0 1 7000 +} +// brush 159 +{ +( 1612 3457 -64 ) ( 1640 3384 -96 ) ( 1665 3404 -64 ) common/li_pv_v4a -11 -7 315 1.080000 1 0 1 7000 +( 1665 3404 -64 ) ( 1640 3384 -96 ) ( 1640 3384 -48 ) common/li_pv_v4a -11 -7 315 1.080000 1 0 1 7000 +( 1612 3272 -64 ) ( 1612 3296 -64 ) ( 1665 3284 -64 ) common/li_pv_v4a -11 -7 315 1.080000 1 0 1 7000 +( 1608 3452 -96 ) ( 1660 3400 -96 ) ( 1634 3426 -64 ) common/li_pv_v4a -11 -7 315 1.080000 1 0 1 7000 +( 1644 3390 -96 ) ( 1598 3436 -96 ) ( 1621 3413 -64 ) common/li_pv_v4a -11 -7 315 1.080000 1 0 1 7000 +( 1600 3442 -64 ) ( 1592 3432 -89 ) ( 1608 3452 -89 ) common/li_pv_v4a -11 -7 315 1.080000 1 0 1 7000 +} +// brush 160 +{ +( 1592 3432 -96 ) ( 1640 3384 -96 ) ( 1612 3457 -64 ) bricks/c_tn_m1 0 0 315 1 1 0 0 0 +( 1640 3384 -48 ) ( 1640 3384 -96 ) ( 1592 3432 -96 ) bricks/c_tn_m1 0 0 315 1 1 0 0 0 +( 1592 3432 -48 ) ( 1592 3432 -96 ) ( 1612 3457 -64 ) bricks/c_tn_m1 0 0 315 1 1 0 0 0 +( 1592 3272 -64 ) ( 1592 3296 -64 ) ( 1640 3284 -64 ) bricks/c_tn_m1 0 0 315 1 1 0 0 0 +( 1598 3436 -96 ) ( 1644 3390 -96 ) ( 1621 3413 -64 ) bricks/c_tn_m1 0 0 315 1 1 0 0 0 +( 1650 3392 -64 ) ( 1660 3400 -96 ) ( 1640 3384 -96 ) bricks/c_tn_m1 0 0 315 1 1 0 0 0 +} +// brush 161 +{ +( 1612 3457 -64 ) ( 1640 3384 -96 ) ( 1665 3404 -64 ) bricks/c_tn_m1 0 0 315 1 1 0 0 0 +( 1665 3404 -64 ) ( 1640 3384 -96 ) ( 1640 3384 -48 ) bricks/c_tn_m1 0 0 315 1 1 0 0 0 +( 1612 3272 -64 ) ( 1612 3296 -64 ) ( 1665 3284 -64 ) bricks/c_tn_m1 0 0 315 1 1 0 0 0 +( 1660 3400 -96 ) ( 1608 3452 -96 ) ( 1634 3426 -64 ) bricks/c_tn_m1 0 0 315 1 1 0 0 0 +( 1600 3442 -64 ) ( 1592 3432 -70 ) ( 1608 3452 -70 ) bricks/c_tn_m1 0 0 315 1 1 0 0 0 +} +// brush 162 +{ +( 1918 3603 -64 ) ( 1944 3624 -96 ) ( 1811 3710 -64 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( 1944 3652 -64 ) ( 1811 3624 -64 ) ( 1811 3680 -64 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( 1900 3645 -64 ) ( 1905 3650 -96 ) ( 1894 3639 -96 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( 1855 3690 -64 ) ( 1849 3684 -87 ) ( 1860 3695 -87 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( 1854 3679 -64 ) ( 1849 3684 -87 ) ( 1859 3674 -87 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +} +// brush 163 +{ +( 1811 3710 -64 ) ( 1944 3624 -96 ) ( 1832 3736 -96 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( 1832 3736 -96 ) ( 1944 3624 -96 ) ( 1944 3624 -48 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( 1944 3652 -64 ) ( 1811 3624 -64 ) ( 1811 3680 -64 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( 1900 3645 -64 ) ( 1905 3650 -96 ) ( 1894 3639 -96 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( 1855 3690 -64 ) ( 1849 3684 -96 ) ( 1860 3695 -96 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( 1864 3691 -64 ) ( 1868 3687 -96 ) ( 1860 3695 -96 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +} +// brush 164 +{ +( 1918 3603 -64 ) ( 1944 3624 -96 ) ( 1811 3710 -64 ) common/li_pv_v4a -18 -8 135 1 1 0 1 7000 +( 1944 3652 -64 ) ( 1811 3624 -64 ) ( 1811 3680 -64 ) common/li_pv_v4a -18 -8 135 1 1 0 1 7000 +( 1900 3645 -64 ) ( 1905 3650 -96 ) ( 1894 3639 -96 ) common/li_pv_v4a -18 -8 135 1 1 0 1 7000 +( 1855 3690 -64 ) ( 1849 3684 -87 ) ( 1860 3695 -87 ) common/li_pv_v4a -18 -8 135 1 1 0 1 7000 +( 1894 3639 -96 ) ( 1882 3651 -96 ) ( 1888 3645 -64 ) common/li_pv_v4a -18 -8 135 1 1 0 1 7000 +( 1860 3695 -96 ) ( 1875 3680 -96 ) ( 1867 3688 -64 ) common/li_pv_v4a -18 -8 135 1 1 0 1 7000 +} +// brush 165 +{ +( 1918 3603 -64 ) ( 1944 3624 -96 ) ( 1811 3710 -64 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( 1944 3624 -48 ) ( 1944 3624 -96 ) ( 1918 3603 -64 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( 1944 3652 -64 ) ( 1811 3624 -64 ) ( 1811 3680 -64 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( 1900 3645 -64 ) ( 1894 3639 -96 ) ( 1905 3650 -96 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( 1910 3658 -114 ) ( 1925 3643 -114 ) ( 1917 3651 -64 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +} +// brush 166 +{ +( 1811 3710 -64 ) ( 1944 3624 -96 ) ( 1832 3736 -96 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( 1811 3710 -64 ) ( 1832 3736 -96 ) ( 1832 3736 -48 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( 1832 3736 -96 ) ( 1944 3624 -96 ) ( 1944 3624 -48 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( 1939 3614 -48 ) ( 1939 3614 -96 ) ( 1806 3700 -64 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( 1944 3652 -64 ) ( 1811 3624 -64 ) ( 1811 3680 -64 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +( 1855 3690 -64 ) ( 1860 3695 -96 ) ( 1849 3684 -96 ) bricks/c_tn_m1 0 0 135 1 1 0 0 0 +} +// brush 167 +{ +( 2160 2240 -272 ) ( 1744 2240 -272 ) ( 1744 2112 -264 ) bricks/c_tn_m3 0 118 357 1 1 0 0 0 +( 1744 2240 -64 ) ( 2160 2240 -64 ) ( 2160 2112 -56 ) bricks/c_tn_m3 0 118 357 1 1 0 0 0 +( 1712 2112 -248 ) ( 2128 2112 -248 ) ( 2128 2112 -264 ) bricks/c_tn_m3 0 118 357 1 1 0 0 0 +( 2128 2240 -256 ) ( 2128 2240 -272 ) ( 2128 2112 -264 ) bricks/c_tn_m3 0 118 357 1 1 0 0 0 +( 2128 2240 -256 ) ( 1712 2240 -256 ) ( 1712 2240 -272 ) bricks/c_tn_m3 0 118 357 1 1 0 0 0 +( 2112 1808 -272 ) ( 2112 1824 -272 ) ( 2112 1816 -248 ) bricks/c_tn_m3 0 118 357 1 1 0 0 0 +} +// brush 168 +{ +( 2160 2112 -264 ) ( 1744 2112 -264 ) ( 1744 1984 -248 ) bricks/c_tn_m3 6 10 353 1 1 0 0 0 +( 1744 2112 -56 ) ( 2160 2112 -56 ) ( 2160 1984 -40 ) bricks/c_tn_m3 6 10 353 1 1 0 0 0 +( 1712 1984 -232 ) ( 2128 1984 -232 ) ( 2128 1984 -248 ) bricks/c_tn_m3 6 10 353 1 1 0 0 0 +( 2128 2112 -248 ) ( 2128 2112 -264 ) ( 2128 1984 -248 ) bricks/c_tn_m3 6 10 353 1 1 0 0 0 +( 2128 2112 -248 ) ( 1712 2112 -248 ) ( 1712 2112 -264 ) bricks/c_tn_m3 6 10 353 1 1 0 0 0 +( 2112 1808 -264 ) ( 2112 1824 -264 ) ( 2112 1816 -232 ) bricks/c_tn_m3 6 10 353 1 1 0 0 0 +} +// brush 169 +{ +( 2160 1984 -248 ) ( 1744 1984 -248 ) ( 1744 1856 -224 ) bricks/c_tn_m3 34 -106 349 1 1 0 0 0 +( 1744 1984 -40 ) ( 2160 1984 -40 ) ( 2160 1856 -16 ) bricks/c_tn_m3 34 -106 349 1 1 0 0 0 +( 1712 1856 -208 ) ( 2128 1856 -208 ) ( 2128 1856 -224 ) bricks/c_tn_m3 34 -106 349 1 1 0 0 0 +( 2128 1984 -232 ) ( 2128 1984 -248 ) ( 2128 1856 -224 ) bricks/c_tn_m3 34 -106 349 1 1 0 0 0 +( 2128 1984 -232 ) ( 1712 1984 -232 ) ( 1712 1984 -248 ) bricks/c_tn_m3 34 -106 349 1 1 0 0 0 +( 2112 1808 -248 ) ( 2112 1824 -248 ) ( 2112 1816 -208 ) bricks/c_tn_m3 34 -106 349 1 1 0 0 0 +} +// brush 170 +{ +( 2160 1856 -224 ) ( 1744 1856 -224 ) ( 1744 1728 -192 ) bricks/c_tn_m3 46 -9 346 1 1 0 0 0 +( 1744 1856 -16 ) ( 2160 1856 -16 ) ( 2160 1728 16 ) bricks/c_tn_m3 46 -9 346 1 1 0 0 0 +( 1712 1728 -176 ) ( 2128 1728 -176 ) ( 2128 1728 -192 ) bricks/c_tn_m3 46 -9 346 1 1 0 0 0 +( 2128 1856 -208 ) ( 2128 1856 -224 ) ( 2128 1728 -192 ) bricks/c_tn_m3 46 -9 346 1 1 0 0 0 +( 2128 1856 -208 ) ( 1712 1856 -208 ) ( 1712 1856 -224 ) bricks/c_tn_m3 46 -9 346 1 1 0 0 0 +( 2112 1808 -224 ) ( 2112 1824 -224 ) ( 2112 1816 -176 ) bricks/c_tn_m3 46 -9 346 1 1 0 0 0 +} +// brush 171 +{ +( 2160 1728 -192 ) ( 1744 1728 -192 ) ( 1744 1408 -96 ) bricks/c_tn_m3 81 79 343 1 1 0 0 0 +( 1744 1728 16 ) ( 2160 1728 16 ) ( 2160 1408 112 ) bricks/c_tn_m3 81 79 343 1 1 0 0 0 +( 1712 1408 -80 ) ( 2128 1408 -80 ) ( 2128 1408 -96 ) bricks/c_tn_m3 81 79 343 1 1 0 0 0 +( 2128 1728 -172 ) ( 2128 1728 -188 ) ( 2128 1408 -96 ) bricks/c_tn_m3 81 79 343 1 1 0 0 0 +( 2128 1728 -176 ) ( 1712 1728 -176 ) ( 1712 1728 -192 ) bricks/c_tn_m3 81 79 343 1 1 0 0 0 +( 2112 1808 -192 ) ( 2112 1824 -192 ) ( 2112 1816 -80 ) bricks/c_tn_m3 81 79 343 1 1 0 0 0 +} +// brush 172 +{ +( 2160 1408 -96 ) ( 1744 1408 -96 ) ( 1744 1280 -64 ) bricks/c_tn_m3 60 8 346 1 1 0 0 0 +( 1744 1376 120 ) ( 2160 1376 120 ) ( 2160 1248 152 ) bricks/c_tn_m3 60 8 346 1 1 0 0 0 +( 1712 1280 -48 ) ( 2128 1280 -48 ) ( 2128 1280 -64 ) bricks/c_tn_m3 60 8 346 1 1 0 0 0 +( 2128 1408 -80 ) ( 2128 1408 -96 ) ( 2128 1280 -64 ) bricks/c_tn_m3 60 8 346 1 1 0 0 0 +( 2128 1408 -80 ) ( 1712 1408 -80 ) ( 1712 1408 -96 ) bricks/c_tn_m3 60 8 346 1 1 0 0 0 +( 2112 1808 -96 ) ( 2112 1824 -96 ) ( 2112 1816 -48 ) bricks/c_tn_m3 60 8 346 1 1 0 0 0 +} +// brush 173 +{ +( 2160 1280 -64 ) ( 1744 1280 -64 ) ( 1744 1152 -40 ) bricks/c_tn_m3 41 -60 349 1 1 0 0 0 +( 2128 1152 168 ) ( 2112 1152 168 ) ( 2112 1280 144 ) bricks/c_tn_m3 41 -60 349 1 1 0 0 0 +( 2112 1152 168 ) ( 2128 1152 168 ) ( 2128 1152 -40 ) bricks/c_tn_m3 41 -60 349 1 1 0 0 0 +( 2128 1280 -48 ) ( 2128 1280 -64 ) ( 2128 1152 -40 ) bricks/c_tn_m3 41 -60 349 1 1 0 0 0 +( 2128 1280 144 ) ( 2112 1280 144 ) ( 2112 1280 -64 ) bricks/c_tn_m3 41 -60 349 1 1 0 0 0 +( 2112 1808 -64 ) ( 2112 1824 -64 ) ( 2112 1816 -24 ) bricks/c_tn_m3 41 -60 349 1 1 0 0 0 +} +// brush 174 +{ +( 2160 1152 -40 ) ( 1744 1152 -40 ) ( 1744 1024 -24 ) bricks/c_tn_m3 27 117 353 1 1 0 0 0 +( 2112 1152 168 ) ( 2128 1152 168 ) ( 2128 1024 184 ) bricks/c_tn_m3 27 117 353 1 1 0 0 0 +( 2112 1024 184 ) ( 2128 1024 184 ) ( 2128 1024 -24 ) bricks/c_tn_m3 27 117 353 1 1 0 0 0 +( 2128 1152 -24 ) ( 2128 1152 -40 ) ( 2128 1024 -24 ) bricks/c_tn_m3 27 117 353 1 1 0 0 0 +( 2128 1152 168 ) ( 2112 1152 168 ) ( 2112 1152 -40 ) bricks/c_tn_m3 27 117 353 1 1 0 0 0 +( 2112 1808 -40 ) ( 2112 1824 -40 ) ( 2112 1816 -8 ) bricks/c_tn_m3 27 117 353 1 1 0 0 0 +} +// brush 175 +{ +( 2160 1024 -24 ) ( 1744 1024 -24 ) ( 1744 896 -16 ) bricks/c_tn_m3 14 62 356 1 1 0 0 0 +( 2112 1024 184 ) ( 2128 1024 184 ) ( 2128 896 192 ) bricks/c_tn_m3 14 62 356 1 1 0 0 0 +( 2112 896 192 ) ( 2128 896 192 ) ( 2128 896 -16 ) bricks/c_tn_m3 14 62 356 1 1 0 0 0 +( 2128 1024 -8 ) ( 2128 1024 -24 ) ( 2128 896 -16 ) bricks/c_tn_m3 14 62 356 1 1 0 0 0 +( 2128 1024 184 ) ( 2112 1024 184 ) ( 2112 1024 -24 ) bricks/c_tn_m3 14 62 356 1 1 0 0 0 +( 2112 1808 -24 ) ( 2112 1824 -24 ) ( 2112 1816 0 ) bricks/c_tn_m3 14 62 356 1 1 0 0 0 +} +// brush 176 +{ +( 1918 -147 192 ) ( 1832 -280 160 ) ( 1944 -168 160 ) bricks/c_tn_m1 0 12 45 1 1 0 0 0 +( 1918 -147 192 ) ( 1944 -168 160 ) ( 1944 -168 208 ) bricks/c_tn_m1 0 12 45 1 1 0 0 0 +( 1944 -168 160 ) ( 1832 -280 160 ) ( 1832 -280 208 ) bricks/c_tn_m1 0 12 45 1 1 0 0 0 +( 1822 -275 208 ) ( 1822 -275 160 ) ( 1908 -142 192 ) bricks/c_tn_m1 0 12 45 1 1 0 0 0 +( 1860 -280 192 ) ( 1832 -147 192 ) ( 1888 -147 192 ) bricks/c_tn_m1 0 12 45 1 1 0 0 0 +( 1898 -191 192 ) ( 1903 -196 160 ) ( 1892 -185 160 ) bricks/c_tn_m1 0 12 45 1 1 0 0 0 +} +// brush 177 +{ +( 1811 -254 192 ) ( 1832 -280 160 ) ( 1918 -147 192 ) bricks/c_tn_m1 0 12 45 1 1 0 0 0 +( 1832 -280 208 ) ( 1832 -280 160 ) ( 1811 -254 192 ) bricks/c_tn_m1 0 12 45 1 1 0 0 0 +( 1860 -280 192 ) ( 1832 -147 192 ) ( 1888 -147 192 ) bricks/c_tn_m1 0 12 45 1 1 0 0 0 +( 1853 -236 192 ) ( 1847 -230 160 ) ( 1858 -241 160 ) bricks/c_tn_m1 0 12 45 1 1 0 0 0 +( 1866 -246 142 ) ( 1851 -261 142 ) ( 1859 -253 192 ) bricks/c_tn_m1 0 12 45 1 1 0 0 0 +} +// brush 178 +{ +( 1811 -254 192 ) ( 1832 -280 160 ) ( 1918 -147 192 ) common/li_pv_v4a 9 4 45 1 1 0 1 7000 +( 1860 -280 192 ) ( 1832 -147 192 ) ( 1888 -147 192 ) common/li_pv_v4a 9 4 45 1 1 0 1 7000 +( 1853 -236 192 ) ( 1858 -241 160 ) ( 1847 -230 160 ) common/li_pv_v4a 9 4 45 1 1 0 1 7000 +( 1898 -191 192 ) ( 1892 -185 169 ) ( 1903 -196 169 ) common/li_pv_v4a 9 4 45 1 1 0 1 7000 +( 1847 -230 160 ) ( 1859 -218 160 ) ( 1853 -224 192 ) common/li_pv_v4a 9 4 45 1 1 0 1 7000 +( 1903 -196 160 ) ( 1888 -211 160 ) ( 1896 -203 192 ) common/li_pv_v4a 9 4 45 1 1 0 1 7000 +} +// brush 179 +{ +( 1918 -147 192 ) ( 1832 -280 160 ) ( 1944 -168 160 ) bricks/c_tn_m1 0 12 45 1 1 0 0 0 +( 1944 -168 160 ) ( 1832 -280 160 ) ( 1832 -280 208 ) bricks/c_tn_m1 0 12 45 1 1 0 0 0 +( 1860 -280 192 ) ( 1832 -147 192 ) ( 1888 -147 192 ) bricks/c_tn_m1 0 12 45 1 1 0 0 0 +( 1853 -236 192 ) ( 1858 -241 160 ) ( 1847 -230 160 ) bricks/c_tn_m1 0 12 45 1 1 0 0 0 +( 1898 -191 192 ) ( 1892 -185 160 ) ( 1903 -196 160 ) bricks/c_tn_m1 0 12 45 1 1 0 0 0 +( 1899 -200 192 ) ( 1895 -204 160 ) ( 1903 -196 160 ) bricks/c_tn_m1 0 12 45 1 1 0 0 0 +} +// brush 180 +{ +( 1811 -254 192 ) ( 1832 -280 160 ) ( 1918 -147 192 ) bricks/c_tn_m1 0 12 45 1 1 0 0 0 +( 1860 -280 192 ) ( 1832 -147 192 ) ( 1888 -147 192 ) bricks/c_tn_m1 0 12 45 1 1 0 0 0 +( 1853 -236 192 ) ( 1858 -241 160 ) ( 1847 -230 160 ) bricks/c_tn_m1 0 12 45 1 1 0 0 0 +( 1898 -191 192 ) ( 1892 -185 169 ) ( 1903 -196 169 ) bricks/c_tn_m1 0 12 45 1 1 0 0 0 +( 1887 -190 192 ) ( 1892 -185 169 ) ( 1882 -195 169 ) bricks/c_tn_m1 0 12 45 1 1 0 0 0 +} +// brush 181 +{ +( 1665 52 192 ) ( 1592 24 160 ) ( 1612 -1 192 ) bricks/c_tn_m1 0 -12 225 1 1 0 0 0 +( 1612 -1 192 ) ( 1592 24 160 ) ( 1592 24 208 ) bricks/c_tn_m1 0 -12 225 1 1 0 0 0 +( 1480 52 192 ) ( 1504 52 192 ) ( 1492 -1 192 ) bricks/c_tn_m1 0 -12 225 1 1 0 0 0 +( 1608 4 160 ) ( 1660 56 160 ) ( 1634 30 192 ) bricks/c_tn_m1 0 -12 225 1 1 0 0 0 +( 1650 64 192 ) ( 1640 72 186 ) ( 1660 56 186 ) bricks/c_tn_m1 0 -12 225 1 1 0 0 0 +} +// brush 182 +{ +( 1640 72 160 ) ( 1592 24 160 ) ( 1665 52 192 ) bricks/c_tn_m1 0 -12 225 1 1 0 0 0 +( 1592 24 208 ) ( 1592 24 160 ) ( 1640 72 160 ) bricks/c_tn_m1 0 -12 225 1 1 0 0 0 +( 1640 72 208 ) ( 1640 72 160 ) ( 1665 52 192 ) bricks/c_tn_m1 0 -12 225 1 1 0 0 0 +( 1480 72 192 ) ( 1504 72 192 ) ( 1492 24 192 ) bricks/c_tn_m1 0 -12 225 1 1 0 0 0 +( 1644 66 160 ) ( 1598 20 160 ) ( 1621 43 192 ) bricks/c_tn_m1 0 -12 225 1 1 0 0 0 +( 1600 14 192 ) ( 1608 4 160 ) ( 1592 24 160 ) bricks/c_tn_m1 0 -12 225 1 1 0 0 0 +} +// brush 183 +{ +( 1665 52 192 ) ( 1592 24 160 ) ( 1612 -1 192 ) common/li_pv_v4a -30 -3 225 1.080000 1 0 1 7000 +( 1612 -1 192 ) ( 1592 24 160 ) ( 1592 24 208 ) common/li_pv_v4a -30 -3 225 1.080000 1 0 1 7000 +( 1480 52 192 ) ( 1504 52 192 ) ( 1492 -1 192 ) common/li_pv_v4a -30 -3 225 1.080000 1 0 1 7000 +( 1660 56 160 ) ( 1608 4 160 ) ( 1634 30 192 ) common/li_pv_v4a -30 -3 225 1.080000 1 0 1 7000 +( 1598 20 160 ) ( 1644 66 160 ) ( 1621 43 192 ) common/li_pv_v4a -30 -3 225 1.080000 1 0 1 7000 +( 1650 64 192 ) ( 1640 72 167 ) ( 1660 56 167 ) common/li_pv_v4a -30 -3 225 1.080000 1 0 1 7000 +} +// brush 184 +{ +( -833 -564 192 ) ( -760 -536 160 ) ( -780 -511 192 ) common/li_pv_v4a -16 -7 225 1.080000 1 0 1 7000 +( -780 -511 192 ) ( -760 -536 160 ) ( -760 -536 208 ) common/li_pv_v4a -16 -7 225 1.080000 1 0 1 7000 +( -648 -564 192 ) ( -672 -564 192 ) ( -660 -511 192 ) common/li_pv_v4a -16 -7 225 1.080000 1 0 1 7000 +( -828 -568 160 ) ( -776 -516 160 ) ( -802 -542 192 ) common/li_pv_v4a -16 -7 225 1.080000 1 0 1 7000 +( -766 -532 160 ) ( -812 -578 160 ) ( -789 -555 192 ) common/li_pv_v4a -16 -7 225 1.080000 1 0 1 7000 +( -818 -576 192 ) ( -808 -584 167 ) ( -828 -568 167 ) common/li_pv_v4a -16 -7 225 1.080000 1 0 1 7000 +} +// brush 185 +{ +( -808 -584 160 ) ( -760 -536 160 ) ( -833 -564 192 ) bricks/c_tn_m1 0 -2 45 1 1 0 0 0 +( -760 -536 208 ) ( -760 -536 160 ) ( -808 -584 160 ) bricks/c_tn_m1 0 -2 45 1 1 0 0 0 +( -808 -584 208 ) ( -808 -584 160 ) ( -833 -564 192 ) bricks/c_tn_m1 0 -2 45 1 1 0 0 0 +( -648 -584 192 ) ( -672 -584 192 ) ( -660 -536 192 ) bricks/c_tn_m1 0 -2 45 1 1 0 0 0 +( -812 -578 160 ) ( -766 -532 160 ) ( -789 -555 192 ) bricks/c_tn_m1 0 -2 45 1 1 0 0 0 +( -768 -526 192 ) ( -776 -516 160 ) ( -760 -536 160 ) bricks/c_tn_m1 0 -2 45 1 1 0 0 0 +} +// brush 186 +{ +( -833 -564 192 ) ( -760 -536 160 ) ( -780 -511 192 ) bricks/c_tn_m1 0 -2 45 1 1 0 0 0 +( -780 -511 192 ) ( -760 -536 160 ) ( -760 -536 208 ) bricks/c_tn_m1 0 -2 45 1 1 0 0 0 +( -648 -564 192 ) ( -672 -564 192 ) ( -660 -511 192 ) bricks/c_tn_m1 0 -2 45 1 1 0 0 0 +( -776 -516 160 ) ( -828 -568 160 ) ( -802 -542 192 ) bricks/c_tn_m1 0 -2 45 1 1 0 0 0 +( -818 -576 192 ) ( -808 -584 186 ) ( -828 -568 186 ) bricks/c_tn_m1 0 -2 45 1 1 0 0 0 +} +// brush 187 +{ +( -1264 -2240 -32 ) ( -1280 -2240 -32 ) ( -1280 -2280 -32 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( -1280 -2280 0 ) ( -1280 -2240 0 ) ( -1264 -2240 0 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -1280 -2280 0 ) ( -1264 -2280 0 ) ( -1264 -2280 -32 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( -1264 -2280 0 ) ( -1264 -2240 0 ) ( -1264 -2240 -32 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1264 -2240 0 ) ( -1280 -2240 0 ) ( -1280 -2240 -32 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( -1280 -2240 0 ) ( -1280 -2280 0 ) ( -1280 -2280 -32 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +} +// brush 188 +{ +( -1312 -2240 -32 ) ( -1328 -2240 -32 ) ( -1328 -2280 -32 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( -1328 -2280 0 ) ( -1328 -2240 0 ) ( -1312 -2240 0 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -1328 -2280 0 ) ( -1312 -2280 0 ) ( -1312 -2280 -32 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( -1312 -2280 0 ) ( -1312 -2240 0 ) ( -1312 -2240 -32 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( -1312 -2240 0 ) ( -1328 -2240 0 ) ( -1328 -2240 -32 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( -1328 -2240 0 ) ( -1328 -2280 0 ) ( -1328 -2280 -32 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 189 +{ +( -1264 -2240 -32 ) ( -1328 -2240 -32 ) ( -1328 -2312 -32 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( -1328 -2312 0 ) ( -1328 -2240 0 ) ( -1264 -2240 0 ) bricks/c_sr_mr5 0 -10 112 1 1 0 0 0 +( -1308 -2320 -32 ) ( -1308 -2320 0 ) ( -1296 -2280 0 ) bricks/c_sr_mr5 -63 31 90 1 1 0 0 0 +( -1328 -2280 -32 ) ( -1328 -2280 0 ) ( -1308 -2320 0 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1328 -2280 -32 ) ( -1318 -2280 -32 ) ( -1323 -2280 0 ) bricks/c_sr_mr5 -63 31 90 1 1 0 0 0 +} +// brush 190 +{ +( -1264 -2312 -32 ) ( -1264 -2240 -32 ) ( -1328 -2240 -32 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( -1328 -2240 0 ) ( -1264 -2240 0 ) ( -1264 -2312 0 ) bricks/c_sr_mr5 0 -8 250 1 1 0 0 0 +( -1296 -2280 0 ) ( -1284 -2320 0 ) ( -1284 -2320 -32 ) bricks/c_sr_mr5 -63 31 90 1 1 0 0 0 +( -1284 -2320 0 ) ( -1264 -2280 0 ) ( -1264 -2280 -32 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1328 -2280 -32 ) ( -1318 -2280 -32 ) ( -1323 -2280 0 ) bricks/c_sr_mr5 -63 31 90 1 1 0 0 0 +} +// brush 191 +{ +( -1812 -511 320 ) ( -1784 -584 288 ) ( -1759 -564 320 ) bricks/c_tn_m1 0 -10 315 1 1 0 0 0 +( -1759 -564 320 ) ( -1784 -584 288 ) ( -1784 -584 336 ) bricks/c_tn_m1 0 -10 315 1 1 0 0 0 +( -1812 -696 320 ) ( -1812 -672 320 ) ( -1759 -684 320 ) bricks/c_tn_m1 0 -10 315 1 1 0 0 0 +( -1764 -568 288 ) ( -1816 -516 288 ) ( -1790 -542 320 ) bricks/c_tn_m1 0 -10 315 1 1 0 0 0 +( -1824 -526 320 ) ( -1832 -536 314 ) ( -1816 -516 314 ) bricks/c_tn_m1 0 -10 315 1 1 0 0 0 +} +// brush 192 +{ +( -1832 -536 288 ) ( -1784 -584 288 ) ( -1812 -511 320 ) bricks/c_tn_m1 0 -10 315 1 1 0 0 0 +( -1784 -584 336 ) ( -1784 -584 288 ) ( -1832 -536 288 ) bricks/c_tn_m1 0 -10 315 1 1 0 0 0 +( -1832 -536 336 ) ( -1832 -536 288 ) ( -1812 -511 320 ) bricks/c_tn_m1 0 -10 315 1 1 0 0 0 +( -1832 -696 320 ) ( -1832 -672 320 ) ( -1784 -684 320 ) bricks/c_tn_m1 0 -10 315 1 1 0 0 0 +( -1826 -532 288 ) ( -1780 -578 288 ) ( -1803 -555 320 ) bricks/c_tn_m1 0 -10 315 1 1 0 0 0 +( -1774 -576 320 ) ( -1764 -568 288 ) ( -1784 -584 288 ) bricks/c_tn_m1 0 -10 315 1 1 0 0 0 +} +// brush 193 +{ +( -1812 -511 320 ) ( -1784 -584 288 ) ( -1759 -564 320 ) common/li_pv_v4a 17 -2 315 1.080000 1 0 1 7000 +( -1759 -564 320 ) ( -1784 -584 288 ) ( -1784 -584 336 ) common/li_pv_v4a 17 -2 315 1.080000 1 0 1 7000 +( -1812 -696 320 ) ( -1812 -672 320 ) ( -1759 -684 320 ) common/li_pv_v4a 17 -2 315 1.080000 1 0 1 7000 +( -1816 -516 288 ) ( -1764 -568 288 ) ( -1790 -542 320 ) common/li_pv_v4a 17 -2 315 1.080000 1 0 1 7000 +( -1780 -578 288 ) ( -1826 -532 288 ) ( -1803 -555 320 ) common/li_pv_v4a 17 -2 315 1.080000 1 0 1 7000 +( -1824 -526 320 ) ( -1832 -536 295 ) ( -1816 -516 295 ) common/li_pv_v4a 17 -2 315 1.080000 1 0 1 7000 +} +// brush 194 +{ +( -3020 -1 320 ) ( -3048 72 288 ) ( -3073 52 320 ) common/li_pv_v4a 5 1 135 1.080000 1 0 1 7000 +( -3073 52 320 ) ( -3048 72 288 ) ( -3048 72 336 ) common/li_pv_v4a 5 1 135 1.080000 1 0 1 7000 +( -3020 184 320 ) ( -3020 160 320 ) ( -3073 172 320 ) common/li_pv_v4a 5 1 135 1.080000 1 0 1 7000 +( -3016 4 288 ) ( -3068 56 288 ) ( -3042 30 320 ) common/li_pv_v4a 5 1 135 1.080000 1 0 1 7000 +( -3052 66 288 ) ( -3006 20 288 ) ( -3029 43 320 ) common/li_pv_v4a 5 1 135 1.080000 1 0 1 7000 +( -3008 14 320 ) ( -3000 24 295 ) ( -3016 4 295 ) common/li_pv_v4a 5 1 135 1.080000 1 0 1 7000 +} +// brush 195 +{ +( -3000 24 288 ) ( -3048 72 288 ) ( -3020 -1 320 ) bricks/c_tn_m1 0 -8 135 1 1 0 0 0 +( -3048 72 336 ) ( -3048 72 288 ) ( -3000 24 288 ) bricks/c_tn_m1 0 -8 135 1 1 0 0 0 +( -3000 24 336 ) ( -3000 24 288 ) ( -3020 -1 320 ) bricks/c_tn_m1 0 -8 135 1 1 0 0 0 +( -3000 184 320 ) ( -3000 160 320 ) ( -3048 172 320 ) bricks/c_tn_m1 0 -8 135 1 1 0 0 0 +( -3006 20 288 ) ( -3052 66 288 ) ( -3029 43 320 ) bricks/c_tn_m1 0 -8 135 1 1 0 0 0 +( -3058 64 320 ) ( -3068 56 288 ) ( -3048 72 288 ) bricks/c_tn_m1 0 -8 135 1 1 0 0 0 +} +// brush 196 +{ +( -3020 -1 320 ) ( -3048 72 288 ) ( -3073 52 320 ) bricks/c_tn_m1 0 -8 135 1 1 0 0 0 +( -3073 52 320 ) ( -3048 72 288 ) ( -3048 72 336 ) bricks/c_tn_m1 0 -8 135 1 1 0 0 0 +( -3020 184 320 ) ( -3020 160 320 ) ( -3073 172 320 ) bricks/c_tn_m1 0 -8 135 1 1 0 0 0 +( -3068 56 288 ) ( -3016 4 288 ) ( -3042 30 320 ) bricks/c_tn_m1 0 -8 135 1 1 0 0 0 +( -3008 14 320 ) ( -3000 24 314 ) ( -3016 4 314 ) bricks/c_tn_m1 0 -8 135 1 1 0 0 0 +} +// brush 197 +{ +( -3168 2944 320 ) ( -3168 2987 320 ) ( -3136 2984 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 2328 320 ) ( -3136 2328 288 ) ( -3136 2288 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 2984 288 ) ( -3168 2987 320 ) ( -3168 2944 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 2984 320 ) ( -3168 2987 320 ) ( -3136 2984 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3160 2944 288 ) ( -3168 2944 288 ) ( -3164 2944 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 198 +{ +( -3073 3212 320 ) ( -3000 3240 288 ) ( -3020 3265 320 ) bricks/c_tn_m1 0 -4 45 1 1 0 0 0 +( -3020 3265 320 ) ( -3000 3240 288 ) ( -3000 3240 336 ) bricks/c_tn_m1 0 -4 45 1 1 0 0 0 +( -2888 3212 320 ) ( -2912 3212 320 ) ( -2900 3265 320 ) bricks/c_tn_m1 0 -4 45 1 1 0 0 0 +( -3016 3260 288 ) ( -3068 3208 288 ) ( -3042 3234 320 ) bricks/c_tn_m1 0 -4 45 1 1 0 0 0 +( -3058 3200 320 ) ( -3048 3192 314 ) ( -3068 3208 314 ) bricks/c_tn_m1 0 -4 45 1 1 0 0 0 +} +// brush 199 +{ +( -3048 3192 288 ) ( -3000 3240 288 ) ( -3073 3212 320 ) bricks/c_tn_m1 0 -4 45 1 1 0 0 0 +( -3000 3240 336 ) ( -3000 3240 288 ) ( -3048 3192 288 ) bricks/c_tn_m1 0 -4 45 1 1 0 0 0 +( -3048 3192 336 ) ( -3048 3192 288 ) ( -3073 3212 320 ) bricks/c_tn_m1 0 -4 45 1 1 0 0 0 +( -2888 3192 320 ) ( -2912 3192 320 ) ( -2900 3240 320 ) bricks/c_tn_m1 0 -4 45 1 1 0 0 0 +( -3052 3198 288 ) ( -3006 3244 288 ) ( -3029 3221 320 ) bricks/c_tn_m1 0 -4 45 1 1 0 0 0 +( -3008 3250 320 ) ( -3016 3260 288 ) ( -3000 3240 288 ) bricks/c_tn_m1 0 -4 45 1 1 0 0 0 +} +// brush 200 +{ +( -3073 3212 320 ) ( -3000 3240 288 ) ( -3020 3265 320 ) common/li_pv_v4a 30 5 45 1.050000 1 0 1 7000 +( -3020 3265 320 ) ( -3000 3240 288 ) ( -3000 3240 336 ) common/li_pv_v4a 30 5 45 1.050000 1 0 1 7000 +( -2888 3212 320 ) ( -2912 3212 320 ) ( -2900 3265 320 ) common/li_pv_v4a 30 5 45 1.050000 1 0 1 7000 +( -3068 3208 288 ) ( -3016 3260 288 ) ( -3042 3234 320 ) common/li_pv_v4a 30 5 45 1.050000 1 0 1 7000 +( -3006 3244 288 ) ( -3052 3198 288 ) ( -3029 3221 320 ) common/li_pv_v4a 30 5 45 1.050000 1 0 1 7000 +( -3058 3200 320 ) ( -3048 3192 295 ) ( -3068 3208 295 ) common/li_pv_v4a 30 5 45 1.050000 1 0 1 7000 +} +// brush 201 +{ +( -2484 3265 320 ) ( -2504 3240 288 ) ( -2431 3212 320 ) common/li_pv_v4a 28 1 315 1.050000 1 0 1 7000 +( -2504 3240 336 ) ( -2504 3240 288 ) ( -2484 3265 320 ) common/li_pv_v4a 28 1 315 1.050000 1 0 1 7000 +( -2604 3265 320 ) ( -2592 3212 320 ) ( -2616 3212 320 ) common/li_pv_v4a 28 1 315 1.050000 1 0 1 7000 +( -2462 3234 320 ) ( -2488 3260 288 ) ( -2436 3208 288 ) common/li_pv_v4a 28 1 315 1.050000 1 0 1 7000 +( -2475 3221 320 ) ( -2452 3198 288 ) ( -2498 3244 288 ) common/li_pv_v4a 28 1 315 1.050000 1 0 1 7000 +( -2436 3208 295 ) ( -2456 3192 295 ) ( -2446 3200 320 ) common/li_pv_v4a 28 1 315 1.050000 1 0 1 7000 +} +// brush 202 +{ +( -2431 3212 320 ) ( -2504 3240 288 ) ( -2456 3192 288 ) bricks/c_tn_m1 0 8 315 1 1 0 0 0 +( -2456 3192 288 ) ( -2504 3240 288 ) ( -2504 3240 336 ) bricks/c_tn_m1 0 8 315 1 1 0 0 0 +( -2431 3212 320 ) ( -2456 3192 288 ) ( -2456 3192 336 ) bricks/c_tn_m1 0 8 315 1 1 0 0 0 +( -2604 3240 320 ) ( -2592 3192 320 ) ( -2616 3192 320 ) bricks/c_tn_m1 0 8 315 1 1 0 0 0 +( -2475 3221 320 ) ( -2498 3244 288 ) ( -2452 3198 288 ) bricks/c_tn_m1 0 8 315 1 1 0 0 0 +( -2504 3240 288 ) ( -2488 3260 288 ) ( -2496 3250 320 ) bricks/c_tn_m1 0 8 315 1 1 0 0 0 +} +// brush 203 +{ +( -2484 3265 320 ) ( -2504 3240 288 ) ( -2431 3212 320 ) bricks/c_tn_m1 0 8 315 1 1 0 0 0 +( -2504 3240 336 ) ( -2504 3240 288 ) ( -2484 3265 320 ) bricks/c_tn_m1 0 8 315 1 1 0 0 0 +( -2604 3265 320 ) ( -2592 3212 320 ) ( -2616 3212 320 ) bricks/c_tn_m1 0 8 315 1 1 0 0 0 +( -2462 3234 320 ) ( -2436 3208 288 ) ( -2488 3260 288 ) bricks/c_tn_m1 0 8 315 1 1 0 0 0 +( -2436 3208 314 ) ( -2456 3192 314 ) ( -2446 3200 320 ) bricks/c_tn_m1 0 8 315 1 1 0 0 0 +} +// brush 204 +{ +( -2352 2944 112 ) ( -2368 2944 112 ) ( -2368 2816 120 ) bricks/c_sr_mr5 0 -1 -90 1 1 0 0 0 +( -2368 2944 128 ) ( -2352 2944 128 ) ( -2352 2816 136 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -2400 2816 136 ) ( -1984 2816 136 ) ( -1984 2816 120 ) bricks/c_sr_mr5 64 -2 -90 1 1 0 0 0 +( -1984 2944 128 ) ( -2400 2944 128 ) ( -2400 2944 112 ) bricks/c_sr_mr5 64 -2 -90 1 1 0 0 0 +( -2368 2944 112 ) ( -2368 2944 128 ) ( -2368 2816 136 ) bricks/c_sr_mr5 62 29 -90 1 1 0 0 0 +( -2352 2944 128 ) ( -2352 2944 112 ) ( -2352 2816 120 ) bricks/c_sr_mr5 0 10 357 1 1 0 0 0 +} +// brush 205 +{ +( -1984 3072 128 ) ( -1984 2944 128 ) ( -2352 2944 128 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -2352 2944 112 ) ( -1984 2944 112 ) ( -1984 3072 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2368 2982 128 ) ( -2368 2982 144 ) ( -2368 2944 144 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2352 2986 112 ) ( -2352 2986 128 ) ( -2368 2984 128 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -1984 2944 112 ) ( -2352 2944 112 ) ( -2352 2944 272 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2352 2986 128 ) ( -2352 2986 112 ) ( -2352 2944 112 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 206 +{ +( -1984 3072 320 ) ( -1984 2944 320 ) ( -2352 2944 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2384 2982 96 ) ( -2384 2982 112 ) ( -2384 2944 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2384 2982 176 ) ( -2384 2982 160 ) ( -2368 2984 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1984 2944 80 ) ( -2352 2944 80 ) ( -2352 2944 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2368 2944 112 ) ( -2368 2952 112 ) ( -2368 2948 96 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -4208 2944 112 ) ( -4176 2944 112 ) ( -4192 2984 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 207 +{ +( -2431 52 576 ) ( -2456 72 544 ) ( -2484 -1 576 ) bricks/c_tn_m1 0 4 225 1 1 0 0 0 +( -2456 72 592 ) ( -2456 72 544 ) ( -2431 52 576 ) bricks/c_tn_m1 0 4 225 1 1 0 0 0 +( -2431 172 576 ) ( -2484 160 576 ) ( -2484 184 576 ) bricks/c_tn_m1 0 4 225 1 1 0 0 0 +( -2462 30 576 ) ( -2488 4 544 ) ( -2436 56 544 ) bricks/c_tn_m1 0 4 225 1 1 0 0 0 +( -2488 4 570 ) ( -2504 24 570 ) ( -2496 14 576 ) bricks/c_tn_m1 0 4 225 1 1 0 0 0 +} +// brush 208 +{ +( -2484 -1 576 ) ( -2456 72 544 ) ( -2504 24 544 ) bricks/c_tn_m1 0 4 225 1 1 0 0 0 +( -2504 24 544 ) ( -2456 72 544 ) ( -2456 72 592 ) bricks/c_tn_m1 0 4 225 1 1 0 0 0 +( -2484 -1 576 ) ( -2504 24 544 ) ( -2504 24 592 ) bricks/c_tn_m1 0 4 225 1 1 0 0 0 +( -2456 172 576 ) ( -2504 160 576 ) ( -2504 184 576 ) bricks/c_tn_m1 0 4 225 1 1 0 0 0 +( -2475 43 576 ) ( -2452 66 544 ) ( -2498 20 544 ) bricks/c_tn_m1 0 4 225 1 1 0 0 0 +( -2456 72 544 ) ( -2436 56 544 ) ( -2446 64 576 ) bricks/c_tn_m1 0 4 225 1 1 0 0 0 +} +// brush 209 +{ +( -2431 52 576 ) ( -2456 72 544 ) ( -2484 -1 576 ) common/li_pv_v4a -5 -3 225 1.050000 1 0 1 7000 +( -2456 72 592 ) ( -2456 72 544 ) ( -2431 52 576 ) common/li_pv_v4a -5 -3 225 1.050000 1 0 1 7000 +( -2431 172 576 ) ( -2484 160 576 ) ( -2484 184 576 ) common/li_pv_v4a -5 -3 225 1.050000 1 0 1 7000 +( -2462 30 576 ) ( -2436 56 544 ) ( -2488 4 544 ) common/li_pv_v4a -5 -3 225 1.050000 1 0 1 7000 +( -2475 43 576 ) ( -2498 20 544 ) ( -2452 66 544 ) common/li_pv_v4a -5 -3 225 1.050000 1 0 1 7000 +( -2488 4 551 ) ( -2504 24 551 ) ( -2496 14 576 ) common/li_pv_v4a -5 -3 225 1.050000 1 0 1 7000 +} +// brush 210 +{ +( -3393 -564 576 ) ( -3368 -584 544 ) ( -3340 -511 576 ) common/li_pv_v4a -27 9 45 1.050000 1 0 1 7000 +( -3368 -584 592 ) ( -3368 -584 544 ) ( -3393 -564 576 ) common/li_pv_v4a -27 9 45 1.050000 1 0 1 7000 +( -3393 -684 576 ) ( -3340 -672 576 ) ( -3340 -696 576 ) common/li_pv_v4a -27 9 45 1.050000 1 0 1 7000 +( -3362 -542 576 ) ( -3388 -568 544 ) ( -3336 -516 544 ) common/li_pv_v4a -27 9 45 1.050000 1 0 1 7000 +( -3349 -555 576 ) ( -3326 -532 544 ) ( -3372 -578 544 ) common/li_pv_v4a -27 9 45 1.050000 1 0 1 7000 +( -3336 -516 551 ) ( -3320 -536 551 ) ( -3328 -526 576 ) common/li_pv_v4a -27 9 45 1.050000 1 0 1 7000 +} +// brush 211 +{ +( -3340 -511 576 ) ( -3368 -584 544 ) ( -3320 -536 544 ) bricks/c_tn_m1 0 16 45 1 1 0 0 0 +( -3320 -536 544 ) ( -3368 -584 544 ) ( -3368 -584 592 ) bricks/c_tn_m1 0 16 45 1 1 0 0 0 +( -3340 -511 576 ) ( -3320 -536 544 ) ( -3320 -536 592 ) bricks/c_tn_m1 0 16 45 1 1 0 0 0 +( -3368 -684 576 ) ( -3320 -672 576 ) ( -3320 -696 576 ) bricks/c_tn_m1 0 16 45 1 1 0 0 0 +( -3349 -555 576 ) ( -3372 -578 544 ) ( -3326 -532 544 ) bricks/c_tn_m1 0 16 45 1 1 0 0 0 +( -3368 -584 544 ) ( -3388 -568 544 ) ( -3378 -576 576 ) bricks/c_tn_m1 0 16 45 1 1 0 0 0 +} +// brush 212 +{ +( -3393 -564 576 ) ( -3368 -584 544 ) ( -3340 -511 576 ) bricks/c_tn_m1 0 16 45 1 1 0 0 0 +( -3368 -584 592 ) ( -3368 -584 544 ) ( -3393 -564 576 ) bricks/c_tn_m1 0 16 45 1 1 0 0 0 +( -3393 -684 576 ) ( -3340 -672 576 ) ( -3340 -696 576 ) bricks/c_tn_m1 0 16 45 1 1 0 0 0 +( -3362 -542 576 ) ( -3336 -516 544 ) ( -3388 -568 544 ) bricks/c_tn_m1 0 16 45 1 1 0 0 0 +( -3336 -516 570 ) ( -3320 -536 570 ) ( -3328 -526 576 ) bricks/c_tn_m1 0 16 45 1 1 0 0 0 +} +// brush 213 +{ +( -3436 -152 544 ) ( -3560 -232 544 ) ( -3539 -258 576 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3560 -232 592 ) ( -3560 -232 544 ) ( -3436 -152 544 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3436 -152 592 ) ( -3436 -152 544 ) ( -3539 -258 576 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3588 -152 576 ) ( -3560 -258 576 ) ( -3616 -258 576 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3458 -186 576 ) ( -3452 -196 544 ) ( -3464 -176 544 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +} +// brush 214 +{ +( -3420 -181 576 ) ( -3436 -152 544 ) ( -3539 -258 576 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3436 -152 592 ) ( -3436 -152 544 ) ( -3420 -181 576 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3539 -258 576 ) ( -3436 -152 544 ) ( -3436 -152 592 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3588 -152 576 ) ( -3560 -258 576 ) ( -3616 -258 576 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3458 -186 576 ) ( -3452 -196 544 ) ( -3464 -176 544 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +} +// brush 215 +{ +( -3420 -181 576 ) ( -3436 -152 544 ) ( -3539 -258 576 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3539 -258 576 ) ( -3436 -152 544 ) ( -3436 -152 592 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3588 -152 576 ) ( -3560 -258 576 ) ( -3616 -258 576 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3514 -222 576 ) ( -3520 -212 552 ) ( -3508 -232 552 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +} +// brush 216 +{ +( -3436 -152 544 ) ( -3560 -232 544 ) ( -3539 -258 576 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3539 -258 576 ) ( -3560 -232 544 ) ( -3560 -232 592 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3560 -232 592 ) ( -3560 -232 544 ) ( -3436 -152 544 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3436 -152 592 ) ( -3436 -152 544 ) ( -3539 -258 576 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3588 -152 576 ) ( -3560 -258 576 ) ( -3616 -258 576 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3514 -222 576 ) ( -3520 -212 544 ) ( -3508 -232 544 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +} +// brush 217 +{ +( -3436 -152 544 ) ( -3560 -232 544 ) ( -3539 -258 576 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3560 -232 592 ) ( -3560 -232 544 ) ( -3436 -152 544 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3588 -152 576 ) ( -3560 -258 576 ) ( -3616 -258 576 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3458 -186 576 ) ( -3464 -176 544 ) ( -3452 -196 544 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3514 -222 576 ) ( -3508 -232 544 ) ( -3520 -212 544 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3490 -196 576 ) ( -3460 -176 544 ) ( -3520 -216 544 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +} +// brush 218 +{ +( -3436 -152 544 ) ( -3560 -232 544 ) ( -3539 -258 576 ) common/li_pv_v4a 5 -8 213 1 1 0 1 7000 +( -3436 -152 592 ) ( -3436 -152 544 ) ( -3539 -258 576 ) common/li_pv_v4a 5 -8 213 1 1 0 1 7000 +( -3588 -152 576 ) ( -3560 -258 576 ) ( -3616 -258 576 ) common/li_pv_v4a 5 -8 213 1 1 0 1 7000 +( -3458 -186 576 ) ( -3464 -176 544 ) ( -3452 -196 544 ) common/li_pv_v4a 5 -8 213 1 1 0 1 7000 +( -3514 -222 576 ) ( -3508 -232 544 ) ( -3520 -212 544 ) common/li_pv_v4a 5 -8 213 1 1 0 1 7000 +( -3490 -196 576 ) ( -3520 -216 544 ) ( -3460 -176 544 ) common/li_pv_v4a 5 -8 213 1 1 0 1 7000 +} +// brush 219 +{ +( -3420 -181 576 ) ( -3436 -152 544 ) ( -3539 -258 576 ) common/li_pv_v4a 5 -8 213 1 1 0 1 7000 +( -3539 -258 576 ) ( -3436 -152 544 ) ( -3436 -152 592 ) common/li_pv_v4a 5 -8 213 1 1 0 1 7000 +( -3588 -152 576 ) ( -3560 -258 576 ) ( -3616 -258 576 ) common/li_pv_v4a 5 -8 213 1 1 0 1 7000 +( -3458 -186 576 ) ( -3464 -176 544 ) ( -3452 -196 544 ) common/li_pv_v4a 5 -8 213 1 1 0 1 7000 +( -3514 -222 576 ) ( -3508 -232 552 ) ( -3520 -212 552 ) common/li_pv_v4a 5 -8 213 1 1 0 1 7000 +( -3483 -212 576 ) ( -3452 -192 552 ) ( -3514 -232 552 ) common/li_pv_v4a 5 -8 213 1 1 0 1 7000 +} +// brush 220 +{ +( -3420 -181 576 ) ( -3436 -152 544 ) ( -3539 -258 576 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3588 -152 576 ) ( -3560 -258 576 ) ( -3616 -258 576 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3458 -186 576 ) ( -3464 -176 544 ) ( -3452 -196 544 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3514 -222 576 ) ( -3508 -232 552 ) ( -3520 -212 552 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +( -3483 -212 576 ) ( -3514 -232 552 ) ( -3452 -192 552 ) bricks/c_tn_m1 0 17 213 1 1 0 0 0 +} +// brush 221 +{ +( -3072 -3136 688 ) ( -3440 -3136 688 ) ( -3440 -3504 688 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3440 -3504 704 ) ( -3440 -3136 704 ) ( -3072 -3136 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3440 -3504 704 ) ( -3072 -3504 704 ) ( -3072 -3504 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3072 -3504 704 ) ( -3072 -3136 704 ) ( -3072 -3136 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3072 -3136 704 ) ( -3440 -3136 704 ) ( -3440 -3136 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3440 -3136 704 ) ( -3440 -3504 704 ) ( -3440 -3504 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3110 -3504 576 ) ( -3184 -3488 576 ) ( -3147 -3496 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3184 -3488 576 ) ( -3244 -3462 576 ) ( -3214 -3475 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3244 -3462 576 ) ( -3310 -3418 576 ) ( -3277 -3440 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3424 -3248 576 ) ( -3440 -3174 576 ) ( -3432 -3211 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3398 -3308 576 ) ( -3424 -3248 576 ) ( -3411 -3278 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3354 -3374 576 ) ( -3398 -3308 576 ) ( -3376 -3341 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3310 -3418 576 ) ( -3354 -3374 576 ) ( -3332 -3396 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 222 +{ +( -3232 -2008 576 ) ( -3232 -2328 576 ) ( -3184 -2328 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3184 -2328 640 ) ( -3232 -2328 640 ) ( -3232 -2008 640 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3184 -2328 576 ) ( -3184 -2328 616 ) ( -3184 -2008 616 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3424 -2016 576 ) ( -3424 -2016 616 ) ( -3424 -2336 616 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3204 -1184 640 ) ( -3224 -1136 576 ) ( -3184 -1232 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3312 -1056 640 ) ( -3400 -976 576 ) ( -3224 -1136 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3200 -1248 640 ) ( -3184 -1248 576 ) ( -3216 -1248 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 223 +{ +( -3184 -2328 640 ) ( -3232 -2328 640 ) ( -3232 -2008 640 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3184 -2328 576 ) ( -3184 -2328 616 ) ( -3184 -2008 616 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3424 -2016 576 ) ( -3424 -2016 616 ) ( -3424 -2336 616 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3200 -1248 640 ) ( -3216 -1248 576 ) ( -3184 -1248 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3184 -1360 608 ) ( -3424 -1248 576 ) ( -3424 -1472 640 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 224 +{ +( -2048 -3552 576 ) ( -2112 -3552 576 ) ( -2112 -3872 576 ) bricks/c_sr_mb1a 0 0 90 1 1 0 0 0 +( -2112 -3872 640 ) ( -2112 -3552 640 ) ( -2048 -3552 640 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -2048 -3872 704 ) ( -2048 -3552 704 ) ( -2048 -3552 576 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -2112 -3552 704 ) ( -2112 -3872 704 ) ( -2112 -3872 576 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -2112 -3808 704 ) ( -320 -3808 704 ) ( -2112 -3872 576 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -320 -3616 704 ) ( -2112 -3616 704 ) ( -320 -3552 576 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +} +// brush 225 +{ +( -3432 -3739 576 ) ( -3293 -3524 576 ) ( -3346 -3490 576 ) bricks/c_sr_mb1a -91 -10 -123 1.150240 1.000186 0 0 0 +( -3346 -3490 640 ) ( -3293 -3524 640 ) ( -3432 -3739 640 ) common/li_sr_v3 0 -8 237 1 1 0 132 0 +( -3346 -3490 704 ) ( -3486 -3704 704 ) ( -3486 -3704 576 ) bricks/c_sr_mb1a -178 0 -180 1 -1 0 0 0 +( -3503 -3734 704 ) ( -3449 -3769 704 ) ( -3449 -3769 576 ) bricks/c_sr_mb1a 96 0 0 1 1 0 0 0 +( -3432 -3739 704 ) ( -3293 -3524 704 ) ( -3293 -3524 576 ) bricks/c_sr_mb1a 48 0 -180 1 -1 0 0 0 +( -3276 -3498 704 ) ( -3330 -3463 704 ) ( -3330 -3463 576 ) bricks/c_sr_mb1a 96 0 0 1 1 0 0 0 +} +// brush 226 +{ +( -3643 -3551 576 ) ( -3428 -3412 576 ) ( -3463 -3358 576 ) bricks/c_sr_mb1a -40 -51 -146 1.000319 1.000114 0 0 0 +( -3463 -3358 640 ) ( -3428 -3412 640 ) ( -3643 -3551 640 ) common/li_sr_v3 0 24 214 1 1 0 132 0 +( -3463 -3358 704 ) ( -3677 -3498 704 ) ( -3677 -3498 576 ) bricks/c_sr_mb1a -139 0 -180 0.838379 -1 0 0 0 +( -3704 -3515 704 ) ( -3669 -3569 704 ) ( -3669 -3569 576 ) bricks/c_sr_mb1a 81 0 -180 0.838379 -1 0 0 0 +( -3643 -3551 704 ) ( -3428 -3412 704 ) ( -3428 -3412 576 ) bricks/c_sr_mb1a -110 0 -180 0.838867 -1 0 0 0 +( -3404 -3385 704 ) ( -3439 -3331 704 ) ( -3439 -3331 576 ) bricks/c_sr_mb1a -136 0 -180 0.838867 -1 0 0 0 +} +// brush 227 +{ +( -3456 -3072 576 ) ( -3808 -3072 576 ) ( -3808 -3136 576 ) bricks/c_sr_mb1a 0 64 0 1 1 0 0 0 +( -3808 -3136 640 ) ( -3808 -3072 640 ) ( -3456 -3072 640 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3808 -3136 640 ) ( -3456 -3136 640 ) ( -3456 -3136 576 ) bricks/c_sr_mb1 0 0 0 1 1 0 0 0 +( -3456 -3072 640 ) ( -3808 -3072 640 ) ( -3808 -3072 576 ) bricks/c_sr_mb1 0 0 0 1 1 0 0 0 +( -3744 -1480 704 ) ( -3744 -3784 704 ) ( -3808 -1472 576 ) bricks/c_sr_mb1 0 0 0 1 1 0 0 0 +( -3552 -3776 704 ) ( -3552 -1472 704 ) ( -3488 -3776 576 ) bricks/c_sr_mb1 0 0 0 1 1 0 0 0 +} +// brush 228 +{ +( -3456 -2752 576 ) ( -3808 -2752 576 ) ( -3808 -2816 576 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -3808 -2816 640 ) ( -3808 -2752 640 ) ( -3456 -2752 640 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3808 -2816 640 ) ( -3456 -2816 640 ) ( -3456 -2816 576 ) bricks/c_sr_mb1 0 0 0 1 1 0 0 0 +( -3456 -2752 640 ) ( -3808 -2752 640 ) ( -3808 -2752 576 ) bricks/c_sr_mb1 0 0 0 1 1 0 0 0 +( -3744 -1160 704 ) ( -3744 -3464 704 ) ( -3808 -1152 576 ) bricks/c_sr_mb1 0 0 0 1 1 0 0 0 +( -3552 -3456 704 ) ( -3552 -1152 704 ) ( -3488 -3456 576 ) bricks/c_sr_mb1 0 0 0 1 1 0 0 0 +} +// brush 229 +{ +( -2000 -3504 576 ) ( -2304 -3504 576 ) ( -2304 -3920 576 ) bricks/c_sr_mb1a 0 64 90 1 1 0 0 0 +( -1536 -3920 704 ) ( -1536 -3504 704 ) ( -1408 -3504 704 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1536 -3504 704 ) ( -1536 -3920 704 ) ( -1472 -3920 576 ) bricks/c_tn_m3 -128 -64 0 1 1 0 0 0 +( -1408 -3504 576 ) ( -1408 -3552 576 ) ( -1408 -3528 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1472 -3616 704 ) ( -3264 -3616 704 ) ( -1472 -3552 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3264 -3808 704 ) ( -1472 -3808 704 ) ( -3264 -3872 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 230 +{ +( -1808 -3504 576 ) ( -2112 -3504 576 ) ( -2112 -3920 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2112 -3920 592 ) ( -2112 -3504 592 ) ( -1808 -3504 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2112 -3920 592 ) ( -1808 -3920 592 ) ( -1808 -3920 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1808 -3504 592 ) ( -2112 -3504 592 ) ( -2112 -3504 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1088 -3504 576 ) ( -1088 -3528 576 ) ( -1088 -3516 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1408 -3544 576 ) ( -1408 -3496 576 ) ( -1408 -3520 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 231 +{ +( -1728 -3552 576 ) ( -1792 -3552 576 ) ( -1792 -3872 576 ) bricks/c_sr_mb1a 0 64 90 1 1 0 0 0 +( -1792 -3872 640 ) ( -1792 -3552 640 ) ( -1728 -3552 640 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1728 -3872 704 ) ( -1728 -3552 704 ) ( -1728 -3552 576 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -1792 -3552 704 ) ( -1792 -3872 704 ) ( -1792 -3872 576 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -1792 -3808 704 ) ( 0 -3808 704 ) ( -1792 -3872 576 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( 0 -3616 704 ) ( -1792 -3616 704 ) ( 0 -3552 576 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +} +// brush 232 +{ +( -2368 -3552 576 ) ( -2432 -3552 576 ) ( -2432 -3872 576 ) bricks/c_sr_mb1a 0 64 90 1 1 0 0 0 +( -2432 -3872 640 ) ( -2432 -3552 640 ) ( -2368 -3552 640 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -2368 -3872 704 ) ( -2368 -3552 704 ) ( -2368 -3552 576 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -2432 -3552 704 ) ( -2432 -3872 704 ) ( -2432 -3872 576 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -2432 -3808 704 ) ( -640 -3808 704 ) ( -2432 -3872 576 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -640 -3616 704 ) ( -2432 -3616 704 ) ( -640 -3552 576 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +} +// brush 233 +{ +( -2688 -3552 576 ) ( -2752 -3552 576 ) ( -2752 -3872 576 ) bricks/c_sr_mb1a 0 128 90 1 1 0 0 0 +( -2752 -3872 640 ) ( -2752 -3552 640 ) ( -2688 -3552 640 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -2688 -3872 704 ) ( -2688 -3552 704 ) ( -2688 -3552 576 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -2752 -3552 704 ) ( -2752 -3872 704 ) ( -2752 -3872 576 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -2752 -3808 704 ) ( -960 -3808 704 ) ( -2752 -3872 576 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -960 -3616 704 ) ( -2752 -3616 704 ) ( -960 -3552 576 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +} +// brush 234 +{ +( -3008 -3552 576 ) ( -3072 -3552 576 ) ( -3072 -3872 576 ) bricks/c_sr_mb1a 0 64 90 1 1 0 0 0 +( -3072 -3872 640 ) ( -3072 -3552 640 ) ( -3008 -3552 640 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3008 -3872 704 ) ( -3008 -3552 704 ) ( -3008 -3552 576 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -3072 -3552 704 ) ( -3072 -3872 704 ) ( -3072 -3872 576 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -3072 -3808 704 ) ( -1280 -3808 704 ) ( -3072 -3872 576 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -1280 -3616 704 ) ( -3072 -3616 704 ) ( -1280 -3552 576 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +} +// brush 235 +{ +( -3072 -3552 576 ) ( -1280 -3552 576 ) ( -1280 -3504 576 ) bricks/c_sr_mb1a 0 80 0 1 1 0 0 0 +( -1280 -3616 704 ) ( -3072 -3616 704 ) ( -3072 -3504 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -1280 -3504 592 ) ( -1448 -3504 592 ) ( -1448 -3504 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -1408 -3536 576 ) ( -1408 -3600 576 ) ( -1408 -3568 592 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3072 -3648 576 ) ( -3072 -3576 576 ) ( -3072 -3612 592 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3072 -3616 704 ) ( -1280 -3616 704 ) ( -1280 -3552 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 236 +{ +( -1280 -3872 576 ) ( -3072 -3872 576 ) ( -3072 -3920 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3072 -3808 704 ) ( -1280 -3808 704 ) ( -1280 -3920 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -1448 -3920 592 ) ( -1280 -3920 592 ) ( -1280 -3920 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -1408 -3536 576 ) ( -1408 -3600 576 ) ( -1408 -3568 592 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3072 -3648 576 ) ( -3072 -3576 576 ) ( -3072 -3612 592 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -1280 -3808 704 ) ( -3072 -3808 704 ) ( -3072 -3872 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 237 +{ +( -3184 -1640 640 ) ( -3232 -1640 640 ) ( -3232 -1960 640 ) metals/mt_sr_vc18 0 0 0 1 1 0 0 0 +( -3232 -1960 704 ) ( -3232 -1640 704 ) ( -3184 -1640 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3184 -1960 680 ) ( -3184 -1640 680 ) ( -3184 -1640 640 ) bricks/c_tn_m3 0 48 90 1 1 0 0 0 +( -3176 -960 680 ) ( -3224 -960 680 ) ( -3224 -960 640 ) bricks/c_tn_m3 0 48 90 1 1 0 0 0 +( -3424 -1632 680 ) ( -3424 -1952 680 ) ( -3424 -1952 640 ) bricks/c_tn_m3 0 48 90 1 1 0 0 0 +( -3272 -3136 640 ) ( -3448 -3136 640 ) ( -3360 -3136 704 ) bricks/c_tn_m3 0 48 90 1 1 0 0 0 +} +// brush 238 +{ +( -3456 -2432 576 ) ( -3808 -2432 576 ) ( -3808 -2496 576 ) bricks/c_sr_mb1a -32 64 0 1 1 0 0 0 +( -3808 -2496 640 ) ( -3808 -2432 640 ) ( -3456 -2432 640 ) common/li_sr_v3 -32 0 0 1 1 0 132 0 +( -3808 -2496 640 ) ( -3456 -2496 640 ) ( -3456 -2496 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +( -3456 -2432 640 ) ( -3808 -2432 640 ) ( -3808 -2432 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +( -3744 -840 704 ) ( -3744 -3144 704 ) ( -3808 -832 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +( -3552 -3136 704 ) ( -3552 -832 704 ) ( -3488 -3136 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +} +// brush 239 +{ +( -3456 -2112 576 ) ( -3808 -2112 576 ) ( -3808 -2176 576 ) bricks/c_sr_mb1a -32 128 0 1 1 0 0 0 +( -3808 -2176 640 ) ( -3808 -2112 640 ) ( -3456 -2112 640 ) common/li_sr_v3 -32 0 0 1 1 0 132 0 +( -3808 -2176 640 ) ( -3456 -2176 640 ) ( -3456 -2176 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +( -3456 -2112 640 ) ( -3808 -2112 640 ) ( -3808 -2112 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +( -3744 -840 704 ) ( -3744 -3144 704 ) ( -3808 -832 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +( -3552 -3136 704 ) ( -3552 -832 704 ) ( -3488 -3136 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +} +// brush 240 +{ +( -3456 -1792 576 ) ( -3808 -1792 576 ) ( -3808 -1856 576 ) bricks/c_sr_mb1a -32 64 0 1 1 0 0 0 +( -3808 -1856 640 ) ( -3808 -1792 640 ) ( -3456 -1792 640 ) common/li_sr_v3 -32 0 0 1 1 0 132 0 +( -3840 -1856 640 ) ( -3488 -1856 640 ) ( -3488 -1856 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +( -3456 -1792 640 ) ( -3808 -1792 640 ) ( -3808 -1792 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +( -3744 -840 704 ) ( -3744 -3144 704 ) ( -3808 -832 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +( -3552 -3136 704 ) ( -3552 -832 704 ) ( -3488 -3136 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +} +// brush 241 +{ +( -3456 -1472 576 ) ( -3808 -1472 576 ) ( -3808 -1536 576 ) bricks/c_sr_mb1a -32 128 0 1 1 0 0 0 +( -3808 -1536 640 ) ( -3808 -1472 640 ) ( -3456 -1472 640 ) common/li_sr_v3 -32 0 0 1 1 0 132 0 +( -3840 -1536 640 ) ( -3488 -1536 640 ) ( -3488 -1536 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +( -3456 -1472 640 ) ( -3808 -1472 640 ) ( -3808 -1472 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +( -3744 -840 704 ) ( -3744 -3144 704 ) ( -3808 -832 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +( -3552 -3136 704 ) ( -3552 -832 704 ) ( -3488 -3136 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +} +// brush 242 +{ +( -3232 -1960 640 ) ( -3232 -1640 640 ) ( -3184 -1640 640 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3184 -1960 616 ) ( -3184 -1640 616 ) ( -3184 -1640 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3424 -1632 616 ) ( -3424 -1952 616 ) ( -3424 -1952 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3184 -2720 576 ) ( -3216 -2720 576 ) ( -3200 -2720 640 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3424 -2496 640 ) ( -3424 -2720 576 ) ( -3184 -2608 608 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 243 +{ +( -3184 -1640 576 ) ( -3232 -1640 576 ) ( -3232 -1960 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3232 -1960 640 ) ( -3232 -1640 640 ) ( -3184 -1640 640 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3184 -1960 616 ) ( -3184 -1640 616 ) ( -3184 -1640 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3424 -1632 616 ) ( -3424 -1952 616 ) ( -3424 -1952 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3184 -2736 576 ) ( -3224 -2832 576 ) ( -3204 -2784 640 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3224 -2832 576 ) ( -3400 -2992 576 ) ( -3312 -2912 640 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3216 -2720 576 ) ( -3184 -2720 576 ) ( -3200 -2720 640 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 244 +{ +( -3184 -1640 576 ) ( -3232 -1640 576 ) ( -3232 -1960 576 ) bricks/c_tn_m3 0 -56 90 1 1 0 0 0 +( -3232 -1960 640 ) ( -3232 -1640 640 ) ( -3184 -1640 640 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3184 -1960 616 ) ( -3184 -1640 616 ) ( -3184 -1640 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3184 -1248 616 ) ( -3232 -1248 616 ) ( -3232 -1248 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3232 -1640 616 ) ( -3232 -1960 616 ) ( -3232 -1960 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +( -3184 -2720 576 ) ( -3232 -2720 576 ) ( -3208 -2720 640 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 245 +{ +( -3440 -1536 576 ) ( -3488 -1536 576 ) ( -3488 -1856 576 ) bricks/c_sr_mb1a 0 32 90 1 1 0 0 0 +( -3488 -1160 704 ) ( -3488 -840 704 ) ( -3424 -832 704 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3424 -1856 616 ) ( -3424 -1536 616 ) ( -3424 -1536 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3448 -832 616 ) ( -3496 -832 616 ) ( -3496 -832 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3488 -840 704 ) ( -3488 -1160 704 ) ( -3488 -1152 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3512 -1152 576 ) ( -3552 -1152 576 ) ( -3532 -1152 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 246 +{ +( -3440 -1536 576 ) ( -3488 -1536 576 ) ( -3488 -1856 576 ) bricks/c_sr_mb1a 0 -32 90 1 1 0 0 0 +( -3552 -3136 704 ) ( -3552 -832 704 ) ( -3424 -832 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3424 -1856 616 ) ( -3424 -1536 616 ) ( -3424 -1536 576 ) bricks/c_sr_mb1 -33 0 0 1 1 0 0 0 +( -3552 -832 704 ) ( -3552 -3136 704 ) ( -3488 -3136 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3464 -3136 576 ) ( -3576 -3136 576 ) ( -3520 -3136 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3552 -1152 576 ) ( -3512 -1152 576 ) ( -3532 -1152 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 247 +{ +( -3440 -832 576 ) ( -3856 -832 576 ) ( -3856 -1088 576 ) bricks/c_sr_mb1a 32 64 180 1 1 0 0 0 +( -3456 -1280 704 ) ( -3808 -1280 704 ) ( -3808 -1152 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3808 -1280 704 ) ( -3456 -1280 704 ) ( -3456 -1216 576 ) bricks/c_tn_m3 64 -64 0 1 1 0 0 0 +( -3808 -1152 576 ) ( -3752 -1152 576 ) ( -3780 -1152 704 ) bricks/c_sr_m2a 64 -64 0 1 1 0 0 0 +( -3552 -3136 704 ) ( -3552 -832 704 ) ( -3488 -3136 576 ) bricks/c_sr_m2a 64 -64 0 1 1 0 0 0 +( -3744 -840 704 ) ( -3744 -3144 704 ) ( -3808 -832 576 ) bricks/c_sr_m2a 64 -64 0 1 1 0 0 0 +} +// brush 248 +{ +( -3424 -1792 576 ) ( -3424 -1856 576 ) ( -3488 -1856 576 ) bricks/c_sr_mb2 -64 32 0 1 1 0 0 0 +( -3472 -1856 416 ) ( -3408 -1856 416 ) ( -3408 -1856 384 ) bricks/c_sr_mb2 -32 32 0 1 1 0 0 0 +( -3424 -1792 496 ) ( -3424 -1856 496 ) ( -3424 -1856 576 ) bricks/c_sr_mb2 -64 32 0 1 1 0 0 0 +( -3408 -1792 416 ) ( -3472 -1792 416 ) ( -3472 -1792 384 ) bricks/c_sr_mb2 -32 32 0 1 1 0 0 0 +( -3456 -1856 416 ) ( -3456 -1792 416 ) ( -3488 -1792 576 ) bricks/c_sr_mb2 -64 32 0 1 1 0 0 0 +( -3456 -1792 416 ) ( -3456 -1856 416 ) ( -3424 -1856 416 ) bricks/c_sr_mb2 -64 32 0 1 1 0 0 0 +} +// brush 249 +{ +( -3424 -1472 576 ) ( -3424 -1536 576 ) ( -3488 -1536 576 ) bricks/c_sr_mb2 -64 32 0 1 1 0 0 0 +( -3472 -1536 416 ) ( -3408 -1536 416 ) ( -3408 -1536 384 ) bricks/c_sr_mb2 -32 32 0 1 1 0 0 0 +( -3424 -1472 496 ) ( -3424 -1536 496 ) ( -3424 -1536 576 ) bricks/c_sr_mb2 -64 32 0 1 1 0 0 0 +( -3408 -1472 416 ) ( -3472 -1472 416 ) ( -3472 -1472 384 ) bricks/c_sr_mb2 -32 32 0 1 1 0 0 0 +( -3456 -1536 416 ) ( -3456 -1472 416 ) ( -3488 -1472 576 ) bricks/c_sr_mb2 -64 32 0 1 1 0 0 0 +( -3456 -1472 416 ) ( -3456 -1536 416 ) ( -3424 -1536 416 ) bricks/c_sr_mb2 -64 32 0 1 1 0 0 0 +} +// brush 250 +{ +( -3424 -2112 576 ) ( -3424 -2176 576 ) ( -3488 -2176 576 ) bricks/c_sr_mb2 -64 32 0 1 1 0 0 0 +( -3472 -2176 416 ) ( -3408 -2176 416 ) ( -3408 -2176 384 ) bricks/c_sr_mb2 -32 32 0 1 1 0 0 0 +( -3424 -2112 496 ) ( -3424 -2176 496 ) ( -3424 -2176 576 ) bricks/c_sr_mb2 -64 32 0 1 1 0 0 0 +( -3408 -2112 416 ) ( -3472 -2112 416 ) ( -3472 -2112 384 ) bricks/c_sr_mb2 -32 32 0 1 1 0 0 0 +( -3456 -2176 416 ) ( -3456 -2112 416 ) ( -3488 -2112 576 ) bricks/c_sr_mb2 -64 32 0 1 1 0 0 0 +( -3456 -2112 416 ) ( -3456 -2176 416 ) ( -3424 -2176 416 ) bricks/c_sr_mb2 -64 32 0 1 1 0 0 0 +} +// brush 251 +{ +( -3424 -2432 576 ) ( -3424 -2496 576 ) ( -3488 -2496 576 ) bricks/c_sr_mb2 -64 32 0 1 1 0 0 0 +( -3472 -2496 416 ) ( -3408 -2496 416 ) ( -3408 -2496 384 ) bricks/c_sr_mb2 -32 32 0 1 1 0 0 0 +( -3424 -2432 496 ) ( -3424 -2496 496 ) ( -3424 -2496 576 ) bricks/c_sr_mb2 -64 32 0 1 1 0 0 0 +( -3408 -2432 416 ) ( -3472 -2432 416 ) ( -3472 -2432 384 ) bricks/c_sr_mb2 -32 32 0 1 1 0 0 0 +( -3456 -2496 416 ) ( -3456 -2432 416 ) ( -3488 -2432 576 ) bricks/c_sr_mb2 -64 32 0 1 1 0 0 0 +( -3456 -2432 416 ) ( -3456 -2496 416 ) ( -3424 -2496 416 ) bricks/c_sr_mb2 -64 32 0 1 1 0 0 0 +} +// brush 252 +{ +( -3072 -3536 704 ) ( -3072 -3904 704 ) ( -3200 -3904 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3072 -3504 576 ) ( -3110 -3504 576 ) ( -3110 -3504 560 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3115 -3552 704 ) ( -3115 -3552 576 ) ( -3110 -3504 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3072 -3536 624 ) ( -3072 -3536 464 ) ( -3072 -3904 464 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3115 -3552 576 ) ( -3115 -3552 704 ) ( -3072 -3552 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3112 -1696 576 ) ( -3072 -1712 576 ) ( -3072 -1680 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 253 +{ +( -3168 -3520 704 ) ( -3168 -3888 704 ) ( -3296 -3888 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3110 -3504 640 ) ( -3184 -3488 640 ) ( -3184 -3488 624 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3198 -3535 704 ) ( -3198 -3535 576 ) ( -3184 -3488 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3115 -3552 576 ) ( -3115 -3552 704 ) ( -3110 -3504 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3115 -3552 704 ) ( -3115 -3552 576 ) ( -3198 -3535 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3188 -1696 576 ) ( -3110 -1712 576 ) ( -3110 -1680 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 254 +{ +( -3324 -3488 704 ) ( -3324 -3856 704 ) ( -3452 -3856 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3184 -3488 496 ) ( -3244 -3462 496 ) ( -3244 -3462 480 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3267 -3504 704 ) ( -3267 -3504 576 ) ( -3244 -3462 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3198 -3535 576 ) ( -3198 -3535 704 ) ( -3184 -3488 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3198 -3535 704 ) ( -3198 -3535 576 ) ( -3267 -3504 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3252 -1696 576 ) ( -3184 -1712 576 ) ( -3184 -1680 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 255 +{ +( -3456 -3432 704 ) ( -3456 -3800 704 ) ( -3584 -3800 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3244 -3462 640 ) ( -3310 -3418 640 ) ( -3310 -3418 624 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3340 -3457 704 ) ( -3340 -3457 576 ) ( -3310 -3418 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3267 -3504 576 ) ( -3267 -3504 704 ) ( -3244 -3462 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3267 -3504 704 ) ( -3267 -3504 576 ) ( -3340 -3457 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3320 -1696 576 ) ( -3244 -1712 576 ) ( -3244 -1680 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 256 +{ +( -3736 -3648 704 ) ( -3736 -3520 704 ) ( -3368 -3520 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3398 -3308 624 ) ( -3354 -3374 624 ) ( -3354 -3374 640 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3393 -3404 576 ) ( -3393 -3404 704 ) ( -3354 -3374 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3440 -3331 704 ) ( -3440 -3331 576 ) ( -3398 -3308 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3393 -3404 704 ) ( -3393 -3404 576 ) ( -3440 -3331 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3412 -1696 576 ) ( -3354 -1712 576 ) ( -3354 -1680 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 257 +{ +( -3792 -3516 704 ) ( -3792 -3388 704 ) ( -3424 -3388 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3424 -3248 560 ) ( -3398 -3308 560 ) ( -3398 -3308 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3440 -3331 576 ) ( -3440 -3331 704 ) ( -3398 -3308 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3471 -3262 704 ) ( -3471 -3262 576 ) ( -3424 -3248 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3440 -3331 704 ) ( -3440 -3331 576 ) ( -3471 -3262 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3440 -1696 576 ) ( -3398 -1712 576 ) ( -3398 -1680 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 258 +{ +( -3469 -3183 576 ) ( -3469 -3223 576 ) ( -3437 -3223 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3437 -3223 704 ) ( -3469 -3223 704 ) ( -3469 -3183 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3440 -3174 704 ) ( -3440 -3174 576 ) ( -3424 -3248 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3440 -3174 576 ) ( -3440 -3174 704 ) ( -3488 -3179 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3471 -3262 704 ) ( -3471 -3262 576 ) ( -3488 -3179 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3471 -3262 576 ) ( -3471 -3262 704 ) ( -3424 -3248 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 259 +{ +( -3472 -3136 576 ) ( -3472 -3176 576 ) ( -3440 -3176 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3440 -3176 704 ) ( -3472 -3176 704 ) ( -3472 -3136 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3440 -3176 704 ) ( -3440 -3136 704 ) ( -3440 -3136 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3440 -3136 704 ) ( -3472 -3136 704 ) ( -3472 -3136 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3488 -3179 576 ) ( -3488 -3179 704 ) ( -3440 -3174 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3488 -3176 576 ) ( -3488 -3144 576 ) ( -3488 -3160 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 260 +{ +( -3488 -3179 704 ) ( -3552 -3186 704 ) ( -3552 -3136 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3440 -3136 704 ) ( -3472 -3136 704 ) ( -3472 -3136 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3488 -3179 576 ) ( -3552 -3186 704 ) ( -3488 -3179 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3488 -3144 576 ) ( -3488 -3176 576 ) ( -3488 -3160 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3552 -3136 704 ) ( -3552 -3186 704 ) ( -3488 -3179 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 261 +{ +( -3488 -3179 704 ) ( -3533 -3279 704 ) ( -3552 -3186 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3552 -3186 704 ) ( -3488 -3179 576 ) ( -3488 -3179 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3552 -3186 704 ) ( -3533 -3279 704 ) ( -3488 -3179 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3488 -3179 576 ) ( -3533 -3279 704 ) ( -3488 -3179 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 262 +{ +( -3469 -3183 576 ) ( -3469 -3223 576 ) ( -3437 -3223 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3437 -3223 704 ) ( -3469 -3223 704 ) ( -3469 -3183 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3471 -3262 576 ) ( -3471 -3262 704 ) ( -3488 -3179 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3471 -3262 704 ) ( -3471 -3262 576 ) ( -3533 -3279 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3552 -3186 704 ) ( -3533 -3279 704 ) ( -3488 -3179 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3533 -3279 704 ) ( -3488 -3179 576 ) ( -3488 -3179 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 263 +{ +( -3471 -3262 704 ) ( -3496 -3362 704 ) ( -3533 -3279 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3533 -3279 704 ) ( -3471 -3262 576 ) ( -3471 -3262 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3496 -3362 704 ) ( -3471 -3262 576 ) ( -3533 -3279 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3471 -3262 704 ) ( -3471 -3262 576 ) ( -3496 -3362 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 264 +{ +( -3438 -3252 576 ) ( -3438 -3292 576 ) ( -3406 -3292 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3440 -3331 704 ) ( -3496 -3362 704 ) ( -3471 -3262 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3471 -3262 704 ) ( -3471 -3262 576 ) ( -3440 -3331 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3440 -3331 576 ) ( -3496 -3362 704 ) ( -3440 -3331 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3471 -3262 576 ) ( -3496 -3362 704 ) ( -3440 -3331 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3471 -3262 704 ) ( -3496 -3362 704 ) ( -3471 -3262 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 265 +{ +( -3391 -3325 576 ) ( -3391 -3365 576 ) ( -3359 -3365 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3393 -3404 704 ) ( -3444 -3443 704 ) ( -3424 -3335 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3440 -3331 704 ) ( -3440 -3331 576 ) ( -3393 -3404 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3393 -3404 576 ) ( -3444 -3443 704 ) ( -3393 -3404 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3393 -3404 576 ) ( -3440 -3331 576 ) ( -3444 -3443 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3444 -3443 704 ) ( -3440 -3331 576 ) ( -3440 -3331 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 266 +{ +( -3440 -3331 704 ) ( -3444 -3443 704 ) ( -3496 -3362 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3440 -3331 704 ) ( -3496 -3362 704 ) ( -3440 -3331 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3496 -3362 704 ) ( -3444 -3443 704 ) ( -3440 -3331 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3440 -3331 576 ) ( -3444 -3443 704 ) ( -3440 -3331 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 267 +{ +( -3656 -3772 704 ) ( -3656 -3644 704 ) ( -3288 -3644 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3354 -3374 480 ) ( -3310 -3418 480 ) ( -3310 -3418 496 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3340 -3457 576 ) ( -3340 -3457 704 ) ( -3310 -3418 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3393 -3404 704 ) ( -3393 -3404 576 ) ( -3354 -3374 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3340 -3457 704 ) ( -3340 -3457 576 ) ( -3393 -3404 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3368 -1696 576 ) ( -3310 -1712 576 ) ( -3310 -1680 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 268 +{ +( -3392 -3404 704 ) ( -3379 -3508 704 ) ( -3444 -3443 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3444 -3443 704 ) ( -3393 -3404 576 ) ( -3393 -3404 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3379 -3508 704 ) ( -3393 -3404 576 ) ( -3444 -3443 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3393 -3404 704 ) ( -3393 -3404 576 ) ( -3379 -3508 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 269 +{ +( -3338 -3378 576 ) ( -3338 -3418 576 ) ( -3306 -3418 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3340 -3457 704 ) ( -3379 -3508 704 ) ( -3387 -3384 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3393 -3404 704 ) ( -3393 -3404 576 ) ( -3340 -3457 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3340 -3457 576 ) ( -3379 -3508 704 ) ( -3340 -3457 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3340 -3457 576 ) ( -3393 -3404 576 ) ( -3379 -3508 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3379 -3508 704 ) ( -3393 -3404 576 ) ( -3393 -3404 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 270 +{ +( -3298 -3560 704 ) ( -3379 -3508 704 ) ( -3267 -3504 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3267 -3504 576 ) ( -3298 -3560 704 ) ( -3267 -3504 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3267 -3504 576 ) ( -3379 -3508 704 ) ( -3298 -3560 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3267 -3504 704 ) ( -3379 -3508 704 ) ( -3267 -3504 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 271 +{ +( -3301 -3423 576 ) ( -3301 -3455 576 ) ( -3261 -3455 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3271 -3488 704 ) ( -3379 -3508 704 ) ( -3340 -3457 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3340 -3457 576 ) ( -3267 -3504 576 ) ( -3267 -3504 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3340 -3457 704 ) ( -3379 -3508 704 ) ( -3340 -3457 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3379 -3508 704 ) ( -3267 -3504 576 ) ( -3340 -3457 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3267 -3504 704 ) ( -3267 -3504 576 ) ( -3379 -3508 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 272 +{ +( -3228 -3470 576 ) ( -3228 -3502 576 ) ( -3188 -3502 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3198 -3535 704 ) ( -3298 -3560 704 ) ( -3267 -3504 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3267 -3504 576 ) ( -3198 -3535 576 ) ( -3198 -3535 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3267 -3504 704 ) ( -3298 -3560 704 ) ( -3267 -3504 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3267 -3504 576 ) ( -3298 -3560 704 ) ( -3198 -3535 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3198 -3535 576 ) ( -3298 -3560 704 ) ( -3198 -3535 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 273 +{ +( -3215 -3597 704 ) ( -3298 -3560 704 ) ( -3198 -3535 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3198 -3535 704 ) ( -3198 -3535 576 ) ( -3215 -3597 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3215 -3597 704 ) ( -3198 -3535 576 ) ( -3298 -3560 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3298 -3560 704 ) ( -3198 -3535 576 ) ( -3198 -3535 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 274 +{ +( -3159 -3501 576 ) ( -3159 -3533 576 ) ( -3119 -3533 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3119 -3533 704 ) ( -3159 -3533 704 ) ( -3159 -3501 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3115 -3552 704 ) ( -3198 -3535 704 ) ( -3198 -3535 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3215 -3597 576 ) ( -3198 -3535 576 ) ( -3198 -3535 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3115 -3552 576 ) ( -3215 -3597 704 ) ( -3122 -3616 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3115 -3552 704 ) ( -3115 -3552 576 ) ( -3215 -3597 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 275 +{ +( -3122 -3616 704 ) ( -3215 -3597 704 ) ( -3115 -3552 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3115 -3552 704 ) ( -3115 -3552 576 ) ( -3122 -3616 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3115 -3552 576 ) ( -3215 -3597 704 ) ( -3122 -3616 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3115 -3552 704 ) ( -3215 -3597 704 ) ( -3115 -3552 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 276 +{ +( -3072 -3616 704 ) ( -3122 -3616 704 ) ( -3115 -3552 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3072 -3536 576 ) ( -3072 -3536 704 ) ( -3072 -3504 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3115 -3552 704 ) ( -3122 -3616 704 ) ( -3115 -3552 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3096 -3552 704 ) ( -3112 -3552 576 ) ( -3080 -3552 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3115 -3552 576 ) ( -3122 -3616 704 ) ( -3072 -3616 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 277 +{ +( -4240 -2952 576 ) ( -4240 -3136 576 ) ( -3824 -3136 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3824 -3136 704 ) ( -4240 -3136 704 ) ( -4240 -2952 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3808 -3209 576 ) ( -3808 -3209 704 ) ( -3808 -3136 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3856 -3214 704 ) ( -3856 -3214 496 ) ( -3856 -1920 496 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3808 -3209 704 ) ( -3808 -3209 576 ) ( -3856 -3214 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3856 -3136 496 ) ( -3848 -3136 496 ) ( -3852 -3136 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 278 +{ +( -3824 -3360 704 ) ( -3824 -3232 704 ) ( -3456 -3232 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3777 -3358 704 ) ( -3777 -3358 576 ) ( -3824 -3374 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3856 -3214 576 ) ( -3824 -3374 576 ) ( -3824 -3374 560 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3808 -3209 576 ) ( -3808 -3209 704 ) ( -3856 -3214 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3808 -3209 704 ) ( -3808 -3209 576 ) ( -3777 -3358 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3856 -3848 576 ) ( -3808 -3864 576 ) ( -3808 -3832 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 279 +{ +( -3792 -3516 704 ) ( -3792 -3388 704 ) ( -3424 -3388 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3723 -3484 704 ) ( -3723 -3484 576 ) ( -3766 -3508 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3824 -3374 576 ) ( -3766 -3508 576 ) ( -3766 -3508 560 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3777 -3358 576 ) ( -3777 -3358 704 ) ( -3824 -3374 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3777 -3358 704 ) ( -3777 -3358 576 ) ( -3723 -3484 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3824 -3848 576 ) ( -3752 -3864 576 ) ( -3752 -3832 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 280 +{ +( -3736 -3648 704 ) ( -3736 -3520 704 ) ( -3368 -3520 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3646 -3603 704 ) ( -3646 -3603 576 ) ( -3684 -3634 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3766 -3508 576 ) ( -3684 -3634 576 ) ( -3684 -3634 560 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3723 -3484 576 ) ( -3723 -3484 704 ) ( -3766 -3508 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3723 -3484 704 ) ( -3723 -3484 576 ) ( -3646 -3603 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3766 -3848 576 ) ( -3672 -3864 576 ) ( -3672 -3832 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 281 +{ +( -3684 -3736 704 ) ( -3684 -3634 704 ) ( -3560 -3634 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3646 -3603 704 ) ( -3646 -3603 576 ) ( -3539 -3710 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3539 -3710 704 ) ( -3539 -3710 576 ) ( -3570 -3748 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3684 -3634 720 ) ( -3570 -3748 720 ) ( -3570 -3748 560 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3646 -3603 576 ) ( -3646 -3603 704 ) ( -3684 -3634 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3684 -3848 576 ) ( -3560 -3864 576 ) ( -3560 -3832 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 282 +{ +( -3456 -3432 704 ) ( -3456 -3800 704 ) ( -3584 -3800 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3539 -3710 576 ) ( -3539 -3710 704 ) ( -3570 -3748 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3444 -3830 704 ) ( -3570 -3748 704 ) ( -3570 -3748 720 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3420 -3787 704 ) ( -3420 -3787 576 ) ( -3444 -3830 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3539 -3710 704 ) ( -3539 -3710 576 ) ( -3420 -3787 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3570 -3848 576 ) ( -3436 -3864 576 ) ( -3436 -3832 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 283 +{ +( -3324 -3488 704 ) ( -3324 -3856 704 ) ( -3452 -3856 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3420 -3787 576 ) ( -3420 -3787 704 ) ( -3444 -3830 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3310 -3888 704 ) ( -3444 -3830 704 ) ( -3444 -3830 720 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3294 -3841 704 ) ( -3294 -3841 576 ) ( -3310 -3888 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3420 -3787 704 ) ( -3420 -3787 576 ) ( -3294 -3841 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3444 -3848 576 ) ( -3304 -3864 576 ) ( -3304 -3832 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 284 +{ +( -3168 -3520 704 ) ( -3168 -3888 704 ) ( -3296 -3888 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3294 -3841 576 ) ( -3294 -3841 704 ) ( -3310 -3888 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3150 -3920 624 ) ( -3310 -3888 624 ) ( -3310 -3888 640 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3145 -3872 704 ) ( -3145 -3872 576 ) ( -3150 -3920 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3294 -3841 704 ) ( -3294 -3841 576 ) ( -3145 -3872 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3310 -3848 576 ) ( -3148 -3864 576 ) ( -3148 -3832 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 285 +{ +( -3072 -3536 704 ) ( -3072 -3904 704 ) ( -3200 -3904 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3145 -3872 576 ) ( -3145 -3872 704 ) ( -3150 -3920 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3072 -3920 624 ) ( -3150 -3920 624 ) ( -3150 -3920 640 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3072 -3536 768 ) ( -3072 -3536 608 ) ( -3072 -3904 608 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3145 -3872 704 ) ( -3145 -3872 576 ) ( -3072 -3872 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3150 -3848 576 ) ( -3072 -3864 576 ) ( -3072 -3832 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 286 +{ +( -3744 -3136 704 ) ( -3744 -3202 704 ) ( -3808 -3209 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3808 -3209 704 ) ( -3744 -3202 704 ) ( -3808 -3209 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3808 -3209 576 ) ( -3744 -3202 704 ) ( -3744 -3136 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3856 -3136 576 ) ( -3832 -3136 576 ) ( -3844 -3136 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3808 -3160 576 ) ( -3808 -3136 576 ) ( -3808 -3148 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 287 +{ +( -3744 -3202 704 ) ( -3716 -3337 704 ) ( -3777 -3358 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3777 -3358 576 ) ( -3716 -3337 704 ) ( -3744 -3202 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3777 -3358 704 ) ( -3716 -3337 704 ) ( -3777 -3358 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3777 -3358 576 ) ( -3744 -3202 704 ) ( -3777 -3358 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 288 +{ +( -3808 -3209 704 ) ( -3744 -3202 704 ) ( -3808 -3321 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3808 -3209 576 ) ( -3777 -3358 576 ) ( -3744 -3202 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3808 -3209 576 ) ( -3744 -3202 704 ) ( -3808 -3209 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3777 -3358 704 ) ( -3777 -3358 576 ) ( -3808 -3209 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3744 -3202 704 ) ( -3777 -3358 576 ) ( -3777 -3358 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 289 +{ +( -3777 -3358 704 ) ( -3716 -3337 704 ) ( -3746 -3507 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3777 -3358 576 ) ( -3723 -3484 576 ) ( -3716 -3337 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3777 -3358 576 ) ( -3716 -3337 704 ) ( -3777 -3358 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3723 -3484 704 ) ( -3723 -3484 576 ) ( -3777 -3358 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3716 -3337 704 ) ( -3723 -3484 576 ) ( -3723 -3484 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 290 +{ +( -3716 -3337 704 ) ( -3666 -3453 704 ) ( -3723 -3484 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3723 -3484 576 ) ( -3666 -3453 704 ) ( -3716 -3337 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3723 -3484 704 ) ( -3666 -3453 704 ) ( -3723 -3484 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3723 -3484 576 ) ( -3716 -3337 704 ) ( -3723 -3484 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 291 +{ +( -3646 -3603 704 ) ( -3666 -3453 704 ) ( -3596 -3562 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3596 -3562 704 ) ( -3666 -3453 704 ) ( -3646 -3603 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3646 -3603 704 ) ( -3596 -3562 704 ) ( -3646 -3603 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3646 -3603 576 ) ( -3666 -3453 704 ) ( -3646 -3603 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 292 +{ +( -3723 -3484 704 ) ( -3666 -3453 704 ) ( -3669 -3610 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3723 -3484 576 ) ( -3646 -3603 576 ) ( -3666 -3453 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3723 -3484 576 ) ( -3666 -3453 704 ) ( -3723 -3484 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3646 -3603 704 ) ( -3646 -3603 576 ) ( -3723 -3484 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3666 -3453 704 ) ( -3646 -3603 576 ) ( -3646 -3603 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 293 +{ +( -3546 -3733 704 ) ( -3389 -3730 704 ) ( -3420 -3787 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3389 -3730 704 ) ( -3539 -3710 576 ) ( -3420 -3787 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3420 -3787 704 ) ( -3389 -3730 704 ) ( -3420 -3787 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3420 -3787 576 ) ( -3539 -3710 576 ) ( -3539 -3710 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3539 -3710 704 ) ( -3539 -3710 576 ) ( -3389 -3730 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 294 +{ +( -3498 -3660 704 ) ( -3389 -3730 704 ) ( -3539 -3710 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3539 -3710 576 ) ( -3389 -3730 704 ) ( -3498 -3660 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3539 -3710 576 ) ( -3498 -3660 704 ) ( -3539 -3710 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3539 -3710 704 ) ( -3389 -3730 704 ) ( -3539 -3710 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 295 +{ +( -3420 -3787 704 ) ( -3389 -3730 704 ) ( -3273 -3780 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3273 -3780 704 ) ( -3389 -3730 704 ) ( -3420 -3787 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3420 -3787 576 ) ( -3389 -3730 704 ) ( -3420 -3787 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3420 -3787 704 ) ( -3273 -3780 704 ) ( -3420 -3787 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 296 +{ +( -3443 -3810 704 ) ( -3273 -3780 704 ) ( -3294 -3841 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3273 -3780 704 ) ( -3420 -3787 576 ) ( -3294 -3841 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3294 -3841 704 ) ( -3273 -3780 704 ) ( -3294 -3841 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3294 -3841 576 ) ( -3420 -3787 576 ) ( -3420 -3787 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3420 -3787 704 ) ( -3420 -3787 576 ) ( -3273 -3780 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 297 +{ +( -3257 -3872 704 ) ( -3138 -3808 704 ) ( -3145 -3872 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3138 -3808 704 ) ( -3294 -3841 576 ) ( -3145 -3872 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3145 -3872 704 ) ( -3138 -3808 704 ) ( -3145 -3872 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3145 -3872 576 ) ( -3294 -3841 576 ) ( -3294 -3841 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3294 -3841 704 ) ( -3294 -3841 576 ) ( -3138 -3808 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 298 +{ +( -3294 -3841 704 ) ( -3273 -3780 704 ) ( -3138 -3808 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3138 -3808 704 ) ( -3273 -3780 704 ) ( -3294 -3841 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3294 -3841 576 ) ( -3273 -3780 704 ) ( -3294 -3841 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3294 -3841 704 ) ( -3138 -3808 704 ) ( -3294 -3841 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 299 +{ +( -3145 -3872 704 ) ( -3138 -3808 704 ) ( -3072 -3808 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3145 -3872 576 ) ( -3138 -3808 704 ) ( -3145 -3872 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3072 -3808 704 ) ( -3138 -3808 704 ) ( -3145 -3872 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3072 -3908 704 ) ( -3072 -3896 576 ) ( -3072 -3920 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3084 -3872 704 ) ( -3072 -3872 576 ) ( -3096 -3872 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 300 +{ +( -3646 -3603 704 ) ( -3596 -3562 704 ) ( -3569 -3722 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3646 -3603 576 ) ( -3539 -3710 576 ) ( -3596 -3562 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3646 -3603 576 ) ( -3596 -3562 704 ) ( -3646 -3603 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3539 -3710 704 ) ( -3539 -3710 576 ) ( -3646 -3603 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3596 -3562 704 ) ( -3539 -3710 576 ) ( -3539 -3710 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 301 +{ +( -3596 -3562 704 ) ( -3498 -3660 704 ) ( -3539 -3710 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3539 -3710 576 ) ( -3498 -3660 704 ) ( -3596 -3562 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3539 -3710 704 ) ( -3498 -3660 704 ) ( -3539 -3710 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3539 -3710 576 ) ( -3596 -3562 704 ) ( -3539 -3710 704 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 302 +{ +( -3808 -3136 576 ) ( -3808 -832 576 ) ( -3904 -832 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3744 -840 704 ) ( -3744 -3144 704 ) ( -3904 -3136 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3752 -3136 616 ) ( -3704 -3136 616 ) ( -3704 -3136 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3744 -3144 704 ) ( -3744 -840 704 ) ( -3808 -832 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3792 -1152 616 ) ( -3840 -1152 616 ) ( -3840 -1152 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -3904 -1544 616 ) ( -3904 -1864 616 ) ( -3904 -1864 576 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 303 +{ +( 213 224 -64 ) ( 216 256 -96 ) ( 130 241 -64 ) common/li_pv_v4a 22 1 168 1 1 0 1 7000 +( 130 241 -64 ) ( 216 256 -96 ) ( 216 256 -48 ) common/li_pv_v4a 22 1 168 1 1 0 1 7000 +( 108 224 -64 ) ( 96 256 -64 ) ( 120 256 -64 ) common/li_pv_v4a 22 1 168 1 1 0 1 7000 +( 208 258 -96 ) ( 200 218 -96 ) ( 204 238 -64 ) common/li_pv_v4a 22 1 168 1 1 0 1 7000 +( 212 232 -93 ) ( 136 248 -93 ) ( 174 240 -64 ) common/li_pv_v4a 22 1 168 1 1 0 1 7000 +( 134 264 -93 ) ( 220 246 -93 ) ( 177 255 -64 ) common/li_pv_v4a 22 1 168 1 1 0 1 7000 +} +// brush 304 +{ +( 216 256 -96 ) ( 140 272 -96 ) ( 130 241 -64 ) common/li_pv_v4a 22 1 168 1 1 0 1 7000 +( 216 256 -96 ) ( 130 241 -64 ) ( 130 241 -48 ) common/li_pv_v4a 22 1 168 1 1 0 1 7000 +( 108 241 -64 ) ( 96 272 -64 ) ( 120 272 -64 ) common/li_pv_v4a 22 1 168 1 1 0 1 7000 +( 138 238 -96 ) ( 144 268 -96 ) ( 141 253 -64 ) common/li_pv_v4a 22 1 168 1 1 0 1 7000 +( 212 232 -96 ) ( 136 248 -96 ) ( 174 240 -64 ) common/li_pv_v4a 22 1 168 1 1 0 1 7000 +( 134 264 -96 ) ( 220 246 -96 ) ( 177 255 -64 ) common/li_pv_v4a 22 1 168 1 1 0 1 7000 +} +// brush 305 +{ +( -3539 -3710 576 ) ( -3560 -3736 544 ) ( -3436 -3816 544 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3436 -3816 544 ) ( -3560 -3736 544 ) ( -3560 -3736 592 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3539 -3710 576 ) ( -3436 -3816 544 ) ( -3436 -3816 592 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3616 -3710 576 ) ( -3560 -3710 576 ) ( -3588 -3816 576 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3464 -3792 544 ) ( -3452 -3772 544 ) ( -3458 -3782 576 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +} +// brush 306 +{ +( -3539 -3710 576 ) ( -3436 -3816 544 ) ( -3420 -3787 576 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3420 -3787 576 ) ( -3436 -3816 544 ) ( -3436 -3816 592 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3436 -3816 592 ) ( -3436 -3816 544 ) ( -3539 -3710 576 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3616 -3710 576 ) ( -3560 -3710 576 ) ( -3588 -3816 576 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3464 -3792 544 ) ( -3452 -3772 544 ) ( -3458 -3782 576 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +} +// brush 307 +{ +( -3539 -3710 576 ) ( -3436 -3816 544 ) ( -3420 -3787 576 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3436 -3816 592 ) ( -3436 -3816 544 ) ( -3539 -3710 576 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3616 -3710 576 ) ( -3560 -3710 576 ) ( -3588 -3816 576 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3508 -3736 552 ) ( -3520 -3756 552 ) ( -3514 -3746 576 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +} +// brush 308 +{ +( -3539 -3710 576 ) ( -3560 -3736 544 ) ( -3436 -3816 544 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3560 -3736 592 ) ( -3560 -3736 544 ) ( -3539 -3710 576 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3436 -3816 544 ) ( -3560 -3736 544 ) ( -3560 -3736 592 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3539 -3710 576 ) ( -3436 -3816 544 ) ( -3436 -3816 592 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3616 -3710 576 ) ( -3560 -3710 576 ) ( -3588 -3816 576 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3508 -3736 544 ) ( -3520 -3756 544 ) ( -3514 -3746 576 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +} +// brush 309 +{ +( -3539 -3710 576 ) ( -3560 -3736 544 ) ( -3436 -3816 544 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3436 -3816 544 ) ( -3560 -3736 544 ) ( -3560 -3736 592 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3616 -3710 576 ) ( -3560 -3710 576 ) ( -3588 -3816 576 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3452 -3772 544 ) ( -3464 -3792 544 ) ( -3458 -3782 576 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3520 -3756 544 ) ( -3508 -3736 544 ) ( -3514 -3746 576 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3520 -3752 544 ) ( -3460 -3792 544 ) ( -3490 -3772 576 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +} +// brush 310 +{ +( -3539 -3710 576 ) ( -3560 -3736 544 ) ( -3436 -3816 544 ) common/li_pv_v4a -9 7 147 1 1 0 1 7000 +( -3539 -3710 576 ) ( -3436 -3816 544 ) ( -3436 -3816 592 ) common/li_pv_v4a -9 7 147 1 1 0 1 7000 +( -3616 -3710 576 ) ( -3560 -3710 576 ) ( -3588 -3816 576 ) common/li_pv_v4a -9 7 147 1 1 0 1 7000 +( -3452 -3772 544 ) ( -3464 -3792 544 ) ( -3458 -3782 576 ) common/li_pv_v4a -9 7 147 1 1 0 1 7000 +( -3520 -3756 544 ) ( -3508 -3736 544 ) ( -3514 -3746 576 ) common/li_pv_v4a -9 7 147 1 1 0 1 7000 +( -3460 -3792 544 ) ( -3520 -3752 544 ) ( -3490 -3772 576 ) common/li_pv_v4a -9 7 147 1 1 0 1 7000 +} +// brush 311 +{ +( -3539 -3710 576 ) ( -3436 -3816 544 ) ( -3420 -3787 576 ) common/li_pv_v4a -9 7 147 1 1 0 1 7000 +( -3436 -3816 592 ) ( -3436 -3816 544 ) ( -3539 -3710 576 ) common/li_pv_v4a -9 7 147 1 1 0 1 7000 +( -3616 -3710 576 ) ( -3560 -3710 576 ) ( -3588 -3816 576 ) common/li_pv_v4a -9 7 147 1 1 0 1 7000 +( -3452 -3772 544 ) ( -3464 -3792 544 ) ( -3458 -3782 576 ) common/li_pv_v4a -9 7 147 1 1 0 1 7000 +( -3520 -3756 552 ) ( -3508 -3736 552 ) ( -3514 -3746 576 ) common/li_pv_v4a -9 7 147 1 1 0 1 7000 +( -3514 -3736 552 ) ( -3452 -3776 552 ) ( -3483 -3756 576 ) common/li_pv_v4a -9 7 147 1 1 0 1 7000 +} +// brush 312 +{ +( -3539 -3710 576 ) ( -3436 -3816 544 ) ( -3420 -3787 576 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3616 -3710 576 ) ( -3560 -3710 576 ) ( -3588 -3816 576 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3452 -3772 544 ) ( -3464 -3792 544 ) ( -3458 -3782 576 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3520 -3756 552 ) ( -3508 -3736 552 ) ( -3514 -3746 576 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +( -3452 -3776 552 ) ( -3514 -3736 552 ) ( -3483 -3756 576 ) bricks/c_tn_m1 0 17 327 1 1 134217728 0 0 +} +// brush 313 +{ +( -1120 1936 576 ) ( -1280 1936 576 ) ( -1280 1920 576 ) props/bld_rc_c5 -42 -40 0 1.500000 1.500000 0 0 0 +( -1280 1920 592 ) ( -1120 1920 592 ) ( -1120 1920 576 ) props/bld_rc_c5 -42 -40 0 1.500000 1.500000 0 0 0 +( -640 1920 592 ) ( -640 1936 592 ) ( -640 1936 576 ) props/bld_rc_c5 -42 -40 0 1.500000 1.500000 0 0 0 +( -1120 1936 592 ) ( -1280 1936 592 ) ( -1280 1936 576 ) props/bld_rc_c5 -42 -40 0 1.500000 1.500000 0 0 0 +( -1280 1936 592 ) ( -1280 1920 592 ) ( -1280 1920 576 ) props/bld_rc_c5 -42 -40 0 1.500000 1.500000 0 0 0 +( -1040 1920 1088 ) ( -1088 1920 1088 ) ( -1064 1936 1088 ) props/bld_rc_c5 -42 -40 0 1.500000 1.500000 0 0 0 +} +// brush 314 +{ +( -1280 1920 1408 ) ( -1280 1936 1408 ) ( -1120 1936 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1280 1920 592 ) ( -1120 1920 592 ) ( -1120 1920 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -640 1920 592 ) ( -640 1936 592 ) ( -640 1936 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1120 1936 592 ) ( -1280 1936 592 ) ( -1280 1936 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1280 1936 592 ) ( -1280 1920 592 ) ( -1280 1920 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1088 1920 1088 ) ( -1040 1920 1088 ) ( -1064 1936 1088 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 315 +{ +( -1264 3136 576 ) ( -1280 3136 576 ) ( -1280 2984 576 ) props/bld_sr_c2 106 -128 0 1.500000 1.500000 0 0 0 +( -1264 3120 1408 ) ( -1264 3120 576 ) ( -1264 2984 576 ) props/bld_sr_c2 106 -128 0 1.500000 1.500000 0 0 0 +( -1264 3120 576 ) ( -1264 3120 1408 ) ( -1280 3136 1408 ) props/bld_sr_c2 106 -128 0 1.500000 1.500000 0 0 0 +( -1280 3136 1408 ) ( -1280 2984 1408 ) ( -1280 2984 576 ) props/bld_sr_c2 106 -128 0 1.500000 1.500000 0 0 0 +( -1264 2752 576 ) ( -1280 2752 576 ) ( -1272 2752 1408 ) props/bld_sr_c2 106 -128 0 1.500000 1.500000 0 0 0 +( -1264 2752 960 ) ( -1280 2752 960 ) ( -1272 3136 960 ) props/bld_sr_c2 106 -128 0 1.500000 1.500000 0 0 0 +} +// brush 316 +{ +( -1280 2984 1408 ) ( -1280 3136 1408 ) ( -1264 3136 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1264 3120 1408 ) ( -1264 3120 576 ) ( -1264 2984 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1264 3120 576 ) ( -1264 3120 1408 ) ( -1280 3136 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1280 3136 1408 ) ( -1280 2984 1408 ) ( -1280 2984 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1264 2752 576 ) ( -1280 2752 576 ) ( -1272 2752 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1280 2752 960 ) ( -1264 2752 960 ) ( -1272 3136 960 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 317 +{ +( 1248 3448 576 ) ( 1056 3448 576 ) ( 1056 3440 576 ) props/bld_rc_c1 0 -80 0 1.500000 1.500000 0 0 0 +( -944 3440 576 ) ( -944 3440 1408 ) ( 1264 3440 1408 ) props/bld_rc_c1 0 -80 0 1.500000 1.500000 0 0 0 +( 1280 3456 1408 ) ( 1280 3456 576 ) ( 1264 3440 576 ) props/bld_rc_c1 0 -80 0 1.500000 1.500000 0 0 0 +( 1280 3456 576 ) ( 1280 3456 1408 ) ( 1056 3456 1408 ) props/bld_rc_c1 0 -80 0 1.500000 1.500000 0 0 0 +( 1152 3440 576 ) ( 1152 3456 576 ) ( 1152 3448 1408 ) props/bld_rc_c1 0 -80 0 1.500000 1.500000 0 0 0 +( 1208 3440 1024 ) ( 1152 3440 1024 ) ( 1180 3456 1024 ) props/bld_rc_c1 0 -80 0 1.500000 1.500000 0 0 0 +} +// brush 318 +{ +( 1056 3440 1408 ) ( 1056 3448 1408 ) ( 1248 3448 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -944 3440 576 ) ( -944 3440 1408 ) ( 1264 3440 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1280 3456 1408 ) ( 1280 3456 576 ) ( 1264 3440 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1280 3456 576 ) ( 1280 3456 1408 ) ( 1056 3456 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1152 3440 576 ) ( 1152 3456 576 ) ( 1152 3448 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1152 3440 1024 ) ( 1208 3440 1024 ) ( 1180 3456 1024 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 319 +{ +( 1248 3448 576 ) ( 1056 3448 576 ) ( 1056 3440 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1056 3440 1408 ) ( 1056 3448 1408 ) ( 1248 3448 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -944 3440 576 ) ( -944 3440 1408 ) ( 1264 3440 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1280 3456 576 ) ( 1280 3456 1408 ) ( 1056 3456 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 704 3440 576 ) ( 704 3456 576 ) ( 704 3448 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1152 3456 576 ) ( 1152 3440 576 ) ( 1152 3448 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 320 +{ +( -88 2968 576 ) ( -104 2968 576 ) ( -104 2952 576 ) bricks/c_sr_mb1b 32 0 180 0.250000 0.500000 0 0 0 +( -104 2952 624 ) ( -104 2968 624 ) ( -88 2968 624 ) bricks/c_sr_mb1b 32 0 180 0.250000 0.500000 0 0 0 +( -104 2952 640 ) ( -88 2952 640 ) ( -88 2952 632 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -88 2952 640 ) ( -88 2968 640 ) ( -88 2968 632 ) bricks/c_sr_mb1b 0 0 180 0.250000 0.500000 0 0 0 +( -88 2968 640 ) ( -104 2968 640 ) ( -104 2968 632 ) bricks/c_sr_mb1b 32 0 180 0.250000 0.500000 0 0 0 +( -104 2968 640 ) ( -104 2952 640 ) ( -104 2952 632 ) bricks/c_sr_mb1b 0 0 180 0.250000 0.500000 0 0 0 +} +// brush 321 +{ +( -88 2968 624 ) ( -104 2968 624 ) ( -104 2952 624 ) bricks/c_sr_mb1b 32 0 180 0.250000 0.500000 0 0 0 +( -104 2952 640 ) ( -104 2968 640 ) ( -88 2968 640 ) bricks/c_sr_mb1b 32 0 180 0.250000 0.500000 0 0 0 +( -104 2952 656 ) ( -88 2952 656 ) ( -88 2952 648 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -72 2952 656 ) ( -72 2968 656 ) ( -72 2968 648 ) bricks/c_sr_mb1b 32 0 180 0.250000 0.500000 0 0 0 +( -88 2968 656 ) ( -104 2968 656 ) ( -104 2968 648 ) bricks/c_sr_mb1b 32 0 180 0.250000 0.500000 0 0 0 +( -120 2952 656 ) ( -120 2936 656 ) ( -120 2936 648 ) bricks/c_sr_mb1b 32 0 180 0.250000 0.500000 0 0 0 +( -120 2952 632 ) ( -104 2952 624 ) ( -112 2968 628 ) bricks/c_sr_mb1b 0 0 270 0.250000 0.500000 0 0 0 +( -88 2952 624 ) ( -72 2952 632 ) ( -80 2968 628 ) bricks/c_sr_mb1b 0 0 90 0.250000 0.500000 0 0 0 +} +// brush 322 +{ +( -88 3192 624 ) ( -104 3192 624 ) ( -104 3176 624 ) bricks/c_sr_mb1b 32 0 180 0.250000 0.500000 0 0 0 +( -104 3176 640 ) ( -104 3192 640 ) ( -88 3192 640 ) bricks/c_sr_mb1b 32 0 180 0.250000 0.500000 0 0 0 +( -104 3176 656 ) ( -88 3176 656 ) ( -88 3176 648 ) bricks/c_sr_mb1b 32 0 180 0.250000 0.500000 0 0 0 +( -72 3176 656 ) ( -72 3192 656 ) ( -72 3192 648 ) bricks/c_sr_mb1b 32 0 180 0.250000 0.500000 0 0 0 +( -88 3192 656 ) ( -104 3192 656 ) ( -104 3192 648 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -120 3176 656 ) ( -120 3160 656 ) ( -120 3160 648 ) bricks/c_sr_mb1b 32 0 180 0.250000 0.500000 0 0 0 +( -120 3176 632 ) ( -104 3176 624 ) ( -112 3192 628 ) bricks/c_sr_mb1b 0 0 270 0.250000 0.500000 0 0 0 +( -88 3176 624 ) ( -72 3176 632 ) ( -80 3192 628 ) bricks/c_sr_mb1b 0 0 90 0.250000 0.500000 0 0 0 +} +// brush 323 +{ +( -88 3192 576 ) ( -104 3192 576 ) ( -104 3176 576 ) bricks/c_sr_mb1b 32 0 180 0.250000 0.500000 0 0 0 +( -104 3176 624 ) ( -104 3192 624 ) ( -88 3192 624 ) bricks/c_sr_mb1b 32 0 180 0.250000 0.500000 0 0 0 +( -104 3176 640 ) ( -88 3176 640 ) ( -88 3176 632 ) bricks/c_sr_mb1b 32 0 180 0.250000 0.500000 0 0 0 +( -88 3176 640 ) ( -88 3192 640 ) ( -88 3192 632 ) bricks/c_sr_mb1b 0 0 180 0.250000 0.500000 0 0 0 +( -88 3192 640 ) ( -104 3192 640 ) ( -104 3192 632 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -104 3192 640 ) ( -104 3176 640 ) ( -104 3176 632 ) bricks/c_sr_mb1b 0 0 180 0.250000 0.500000 0 0 0 +} +// brush 324 +{ +( -128 3392 640 ) ( -256 3392 640 ) ( -256 3328 640 ) bricks/c_sr_mb1 0 0 0 0.500000 0.500000 0 0 0 +( -256 3328 648 ) ( -256 3392 648 ) ( -128 3392 648 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -256 3328 648 ) ( -128 3328 648 ) ( -128 3328 640 ) bricks/c_sr_mr5 0 0 180 0.250000 0.250000 0 0 0 +( -64 3392 648 ) ( -64 3392 640 ) ( -128 3328 640 ) bricks/c_sr_mb2 0 0 0 0.250000 0.250000 0 0 0 +( -64 3392 640 ) ( -64 3392 648 ) ( -256 3392 648 ) bricks/c_sr_mb2 0 0 0 0.250000 0.250000 0 0 0 +( -256 3392 648 ) ( -256 3328 648 ) ( -256 3328 640 ) bricks/c_sr_mb2 0 0 0 0.250000 0.250000 0 0 0 +} +// brush 325 +{ +( -64 3088 640 ) ( -128 3088 640 ) ( -128 2624 640 ) bricks/c_sr_mb1 0 0 90 0.500000 0.500000 0 0 0 +( -128 2624 648 ) ( -128 3088 648 ) ( -64 3088 648 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -128 2624 1088 ) ( -64 2624 1088 ) ( -64 2624 640 ) bricks/c_sr_mb2 0 0 0 0.250000 0.250000 0 0 0 +( -64 2624 1088 ) ( -64 3088 1088 ) ( -64 3088 640 ) bricks/c_sr_mr5 0 0 180 0.250000 0.250000 0 0 0 +( -128 3328 648 ) ( -128 3328 640 ) ( -64 3392 640 ) bricks/c_sr_mb2 0 0 0 0.250000 0.250000 0 0 0 +( -128 3328 640 ) ( -128 3328 648 ) ( -128 2624 648 ) bricks/c_sr_mr5 0 0 180 0.250000 0.250000 0 0 0 +} +// brush 326 +{ +( 976 2224 1408 ) ( 776 2224 1408 ) ( 776 2032 1408 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +( 776 2032 1424 ) ( 776 2224 1424 ) ( 976 2224 1424 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +( 96 448 1424 ) ( 96 448 1408 ) ( -464 1008 1408 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +( 96 448 1408 ) ( 96 448 1424 ) ( 1664 2016 1424 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +( 1664 2016 1408 ) ( 1664 2016 1424 ) ( 832 2304 1424 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +( -464 1008 1424 ) ( -464 1008 1408 ) ( 832 2304 1408 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +} +// brush 327 +{ +( 1032 2496 1408 ) ( 832 2496 1408 ) ( 832 2304 1408 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +( 832 2304 1424 ) ( 832 2496 1424 ) ( 1032 2496 1424 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +( 1664 2016 1424 ) ( 1664 2016 1408 ) ( 832 2304 1408 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +( 1664 2016 1408 ) ( 1664 2016 1424 ) ( 1664 2496 1424 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +( 1032 2496 1424 ) ( 832 2496 1424 ) ( 832 2496 1408 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +( 832 2496 1424 ) ( 832 2304 1424 ) ( 832 2304 1408 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +} +// brush 328 +{ +( -928 2864 1408 ) ( -1280 2864 1408 ) ( -1280 2496 1408 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +( -1280 2496 1424 ) ( -1280 2864 1424 ) ( -928 2864 1424 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +( -1280 2496 1408 ) ( -928 2496 1408 ) ( -928 2496 576 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +( 1664 2408 1408 ) ( 1664 2776 1408 ) ( 1664 2776 576 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +( -904 3456 1408 ) ( -1256 3456 1408 ) ( -1256 3456 576 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +( -1280 2864 1408 ) ( -1280 2496 1408 ) ( -1280 2496 576 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +( 1280 3456 1408 ) ( 1664 3072 1408 ) ( 1472 3264 1424 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +( -1280 3136 1408 ) ( -960 3456 1408 ) ( -1120 3296 1424 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +} +// brush 329 +{ +( -928 2288 1408 ) ( -1280 2288 1408 ) ( -1280 1920 1408 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +( -1280 1920 1424 ) ( -1280 2288 1424 ) ( -928 2288 1424 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +( -1280 1920 1408 ) ( -928 1920 1408 ) ( -928 1920 576 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +( -640 1928 1408 ) ( -640 2296 1408 ) ( -640 2296 576 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +( -928 2496 1408 ) ( -1280 2496 1408 ) ( -1280 2496 576 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +( -1280 2288 1408 ) ( -1280 1920 1408 ) ( -1280 1920 576 ) common/li_sr_v3 0 0 0 1 1 0 133 800 +} +// brush 330 +{ +( -1024 2048 576 ) ( -1264 2048 576 ) ( -1264 1936 576 ) props/bld_rc_c1 0 -64 0 2 2 0 0 0 +( -1264 1936 1408 ) ( -1264 2048 1408 ) ( -1024 2048 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1264 1936 1088 ) ( -1024 1936 1088 ) ( -1024 1936 576 ) props/bld_rc_c1 0 -64 0 2 2 0 0 0 +( -1024 1936 1088 ) ( -1024 2048 1088 ) ( -1024 2048 576 ) props/bld_rc_c1 0 -64 0 2 2 0 0 0 +( -1024 2112 1088 ) ( -1264 2112 1088 ) ( -1264 2112 576 ) props/bld_rc_c1 0 -64 0 2 2 0 0 0 +( -1264 2048 1088 ) ( -1264 1936 1088 ) ( -1264 1936 576 ) props/bld_rc_c1 0 -64 0 2 2 0 0 0 +} +// brush 331 +{ +( -1152 2496 576 ) ( -1264 2496 576 ) ( -1264 2240 576 ) props/bld_rc_c1 0 32 0 2 2 0 0 0 +( -1264 2240 1088 ) ( -1264 2496 1088 ) ( -1152 2496 1088 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1256 2112 1088 ) ( -1144 2112 1088 ) ( -1144 2112 576 ) props/bld_rc_c1 0 32 0 2 2 0 0 0 +( -1152 2240 1088 ) ( -1152 2496 1088 ) ( -1152 2496 576 ) props/bld_rc_c1 0 32 0 2 2 0 0 0 +( -1152 2496 1088 ) ( -1264 2496 1088 ) ( -1264 2496 576 ) props/bld_rc_c1 0 32 0 2 2 0 0 0 +( -1264 2496 1088 ) ( -1264 2240 1088 ) ( -1264 2240 576 ) props/bld_rc_c1 0 32 0 2 2 0 0 0 +} +// brush 332 +{ +( -1280 2984 1408 ) ( -1280 3136 1408 ) ( -1264 3136 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1264 3120 1408 ) ( -1264 3120 576 ) ( -1264 2984 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1280 3136 1408 ) ( -1280 2984 1408 ) ( -1280 2984 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1280 2752 576 ) ( -1264 2752 576 ) ( -1272 2752 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1256 2496 576 ) ( -1288 2496 576 ) ( -1272 2496 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1280 2496 960 ) ( -1264 2496 960 ) ( -1272 2752 960 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 333 +{ +( -1264 3136 576 ) ( -1280 3136 576 ) ( -1280 2984 576 ) props/bld_rc_c3 64 -32 0 2 2 0 0 0 +( -1264 3120 1408 ) ( -1264 3120 576 ) ( -1264 2984 576 ) props/bld_rc_c3 64 -32 0 2 2 0 0 0 +( -1280 3136 1408 ) ( -1280 2984 1408 ) ( -1280 2984 576 ) props/bld_rc_c3 64 -32 0 2 2 0 0 0 +( -1280 2752 576 ) ( -1264 2752 576 ) ( -1272 2752 1408 ) props/bld_rc_c3 64 -32 0 2 2 0 0 0 +( -1256 2496 576 ) ( -1288 2496 576 ) ( -1272 2496 1408 ) props/bld_rc_c3 64 -32 0 2 2 0 0 0 +( -1264 2496 960 ) ( -1280 2496 960 ) ( -1272 2752 960 ) props/bld_rc_c3 64 -32 0 2 2 0 0 0 +} +// brush 334 +{ +( -1264 3136 576 ) ( -1280 3136 576 ) ( -1280 2984 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1280 2984 1408 ) ( -1280 3136 1408 ) ( -1264 3136 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1232 1936 1408 ) ( -1216 1936 1408 ) ( -1216 1936 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1264 3120 1408 ) ( -1264 3120 576 ) ( -1264 2984 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1280 3136 1408 ) ( -1280 2984 1408 ) ( -1280 2984 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1288 2496 576 ) ( -1256 2496 576 ) ( -1272 2496 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 335 +{ +( -1152 3008 576 ) ( -1264 3008 576 ) ( -1264 2752 576 ) props/bld_rc_c10 8 32 0 2 2 0 0 0 +( -1264 2752 1088 ) ( -1264 3008 1088 ) ( -1152 3008 1088 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1264 2752 1088 ) ( -1152 2752 1088 ) ( -1152 2752 576 ) props/bld_rc_c10 -32 32 0 2 2 0 0 0 +( -1088 2752 1088 ) ( -1088 3008 1088 ) ( -1088 3008 576 ) props/bld_rc_c10 8 32 0 2 2 0 0 0 +( -1152 3008 1088 ) ( -1264 3008 1088 ) ( -1264 3008 576 ) props/bld_rc_c10 8 32 0 2 2 0 0 0 +( -1264 3008 1088 ) ( -1264 2752 1088 ) ( -1264 2752 576 ) props/bld_rc_c10 8 32 0 2 2 0 0 0 +} +// brush 336 +{ +( -960 3400 576 ) ( -1160 3400 576 ) ( -1160 3160 576 ) props/bld_sr_c2 74 32 0 2 2 0 0 0 +( -1160 3160 1088 ) ( -1160 3400 1088 ) ( -960 3400 1088 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1152 3072 1088 ) ( -952 3072 1088 ) ( -952 3072 576 ) props/bld_sr_c2 74 32 0 2 2 0 0 0 +( -960 3160 1088 ) ( -960 3400 1088 ) ( -960 3400 576 ) props/bld_sr_c2 22 32 0 2 2 0 0 0 +( -1264 3400 1088 ) ( -1264 3160 1088 ) ( -1264 3160 576 ) props/bld_sr_c2 74 32 0 2 2 0 0 0 +( -1264 3120 576 ) ( -960 3424 576 ) ( -1112 3272 1280 ) props/bld_sr_c2 74 32 0 2 2 0 0 0 +} +// brush 337 +{ +( -640 3440 576 ) ( -840 3440 576 ) ( -840 3200 576 ) props/bld_rc_c11 32 -128 0 2 2 0 0 0 +( -840 3200 1280 ) ( -840 3440 1280 ) ( -640 3440 1280 ) common/li_sr_v3 64 0 0 1 1 0 132 0 +( -816 3264 1088 ) ( -616 3264 1088 ) ( -616 3264 576 ) props/bld_rc_c11 32 -128 0 2 2 0 0 0 +( -640 3200 1088 ) ( -640 3440 1088 ) ( -640 3440 576 ) props/bld_rc_c11 -64 -128 0 2 2 0 0 0 +( -640 3440 1088 ) ( -840 3440 1088 ) ( -840 3440 576 ) props/bld_rc_c11 32 -128 0 2 2 0 0 0 +( -896 3440 1088 ) ( -896 3200 1088 ) ( -896 3200 576 ) props/bld_rc_c11 -64 -128 0 2 2 0 0 0 +} +// brush 338 +{ +( -256 3440 576 ) ( -456 3440 576 ) ( -456 3200 576 ) props/bld_rc_c11 -32 -128 0 2 2 0 0 0 +( -456 3200 1280 ) ( -456 3440 1280 ) ( -256 3440 1280 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -432 3264 1088 ) ( -232 3264 1088 ) ( -232 3264 576 ) props/bld_rc_c11 -32 -128 0 2 2 0 0 0 +( -256 3200 1088 ) ( -256 3440 1088 ) ( -256 3440 576 ) props/bld_rc_c11 -64 -128 0 2 2 0 0 0 +( -256 3440 1088 ) ( -456 3440 1088 ) ( -456 3440 576 ) props/bld_rc_c11 -32 -128 0 2 2 0 0 0 +( -512 3440 1088 ) ( -512 3200 1088 ) ( -512 3200 576 ) props/bld_rc_c11 -64 -128 0 2 2 0 0 0 +} +// brush 339 +{ +( 0 3440 576 ) ( -200 3440 576 ) ( -200 3200 576 ) props/bld_sr_c1a -32 -24 0 2 2 0 0 0 +( -200 3200 960 ) ( -200 3440 960 ) ( 0 3440 960 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -184 3392 1088 ) ( 16 3392 1088 ) ( 16 3392 576 ) props/bld_sr_c1a -32 -24 0 2 2 0 0 0 +( 0 3200 1088 ) ( 0 3440 1088 ) ( 0 3440 576 ) props/bld_sr_c1a -32 -24 0 2 2 0 0 0 +( 0 3440 1088 ) ( -200 3440 1088 ) ( -200 3440 576 ) props/bld_sr_c1a -32 -24 0 2 2 0 0 0 +( -256 3440 1088 ) ( -256 3200 1088 ) ( -256 3200 576 ) props/bld_sr_c1a -32 -24 0 2 2 0 0 0 +} +// brush 340 +{ +( 128 3440 576 ) ( -72 3440 576 ) ( -72 3200 576 ) props/bld_rc_c4 2 64 0 2 2 0 0 0 +( -72 3200 1040 ) ( -72 3440 1040 ) ( 128 3440 1040 ) common/li_sr_v3 2 0 0 1 1 0 132 0 +( -64 3264 1088 ) ( 136 3264 1088 ) ( 136 3264 576 ) props/bld_rc_c4 4 64 0 2 2 0 0 0 +( 128 3200 1088 ) ( 128 3440 1088 ) ( 128 3440 576 ) props/bld_rc_c4 2 64 0 2 2 0 0 0 +( 128 3440 1088 ) ( -72 3440 1088 ) ( -72 3440 576 ) props/bld_rc_c4 2 64 0 2 2 0 0 0 +( 0 3440 1088 ) ( 0 3200 1088 ) ( 0 3200 576 ) props/bld_rc_c4 2 64 0 2 2 0 0 0 +} +// brush 341 +{ +( 384 3440 576 ) ( 184 3440 576 ) ( 184 3200 576 ) props/bld_rc_c4 0 64 0 2 2 0 0 0 +( 184 3200 1152 ) ( 184 3440 1152 ) ( 384 3440 1152 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 192 3328 1088 ) ( 392 3328 1088 ) ( 392 3328 576 ) props/bld_rc_c4 0 64 0 2 2 0 0 0 +( 384 3200 1088 ) ( 384 3440 1088 ) ( 384 3440 576 ) props/bld_rc_c4 0 64 0 2 2 0 0 0 +( 384 3440 1088 ) ( 184 3440 1088 ) ( 184 3440 576 ) props/bld_rc_c4 0 64 0 2 2 0 0 0 +( 128 3440 1088 ) ( 128 3200 1088 ) ( 128 3200 576 ) props/bld_rc_c4 0 64 0 2 2 0 0 0 +} +// brush 342 +{ +( 1248 3448 576 ) ( 1056 3448 576 ) ( 1056 3440 576 ) props/bld_rc_c5 32 32 0 2 2 0 0 0 +( -944 3440 576 ) ( -944 3440 1408 ) ( 1264 3440 1408 ) props/bld_rc_c5 32 32 0 2 2 0 0 0 +( 1280 3456 576 ) ( 1280 3456 1408 ) ( 1056 3456 1408 ) props/bld_rc_c5 32 32 0 2 2 0 0 0 +( 704 3456 576 ) ( 704 3440 576 ) ( 704 3448 1408 ) props/bld_rc_c5 32 32 0 2 2 0 0 0 +( 384 3440 576 ) ( 384 3456 576 ) ( 384 3448 1408 ) props/bld_rc_c5 32 32 0 2 2 0 0 0 +( 480 3440 1088 ) ( 432 3440 1088 ) ( 456 3456 1088 ) props/bld_rc_c5 32 32 0 2 2 0 0 0 +} +// brush 343 +{ +( 1056 3440 1408 ) ( 1056 3448 1408 ) ( 1248 3448 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -944 3440 576 ) ( -944 3440 1408 ) ( 1264 3440 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1280 3456 576 ) ( 1280 3456 1408 ) ( 1056 3456 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 704 3456 576 ) ( 704 3440 576 ) ( 704 3448 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 384 3440 576 ) ( 384 3456 576 ) ( 384 3448 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 432 3440 1088 ) ( 480 3440 1088 ) ( 456 3456 1088 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 344 +{ +( 1248 3448 576 ) ( 1056 3448 576 ) ( 1056 3440 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1056 3440 1408 ) ( 1056 3448 1408 ) ( 1248 3448 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -944 3440 576 ) ( -944 3440 1408 ) ( 1264 3440 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1280 3456 576 ) ( 1280 3456 1408 ) ( 1056 3456 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -944 3440 1408 ) ( -944 3440 576 ) ( -960 3456 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 384 3456 576 ) ( 384 3440 576 ) ( 384 3448 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 345 +{ +( 896 3440 576 ) ( 696 3440 576 ) ( 696 3200 576 ) props/bld_sr_c2 32 -128 0 2 2 0 0 0 +( 696 3200 1280 ) ( 696 3440 1280 ) ( 896 3440 1280 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 696 3200 1088 ) ( 896 3200 1088 ) ( 896 3200 576 ) props/bld_sr_c2 32 -128 0 2 2 0 0 0 +( 896 3200 1088 ) ( 896 3440 1088 ) ( 896 3440 576 ) props/bld_sr_c2 32 -128 0 2 2 0 0 0 +( 896 3440 1088 ) ( 696 3440 1088 ) ( 696 3440 576 ) props/bld_sr_c2 32 -128 0 2 2 0 0 0 +( 640 3440 1088 ) ( 640 3200 1088 ) ( 640 3200 576 ) props/bld_sr_c2 96 -128 0 2 2 0 0 0 +} +// brush 346 +{ +( 1152 3440 576 ) ( 896 3440 576 ) ( 896 3336 576 ) props/bld_rc_c8a 32 32 0 2 2 0 0 0 +( 896 3336 1088 ) ( 896 3440 1088 ) ( 1152 3440 1088 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 896 3328 1216 ) ( 1152 3328 1216 ) ( 1152 3328 576 ) props/bld_rc_c8a 32 32 0 2 2 0 0 0 +( 1152 3336 1216 ) ( 1152 3440 1216 ) ( 1152 3440 576 ) props/bld_rc_c8a 32 32 0 2 2 0 0 0 +( 1152 3440 1216 ) ( 896 3440 1216 ) ( 896 3440 576 ) props/bld_rc_c8a 32 32 0 2 2 0 0 0 +( 896 3440 1216 ) ( 896 3336 1216 ) ( 896 3336 576 ) props/bld_rc_c8a 32 32 0 2 2 0 0 0 +} +// brush 347 +{ +( 1664 2080 576 ) ( 1648 2080 576 ) ( 1648 2048 576 ) props/bld_rc_c10 -80 -128 0 1.500000 1.500000 0 0 0 +( 1664 2016 1408 ) ( 1664 2016 576 ) ( 1648 2032 576 ) props/bld_rc_c10 -80 -128 0 1.500000 1.500000 0 0 0 +( 1664 2016 576 ) ( 1664 2016 1408 ) ( 1664 2080 1408 ) props/bld_rc_c10 -80 -128 0 1.500000 1.500000 0 0 0 +( 1648 3056 1408 ) ( 1648 3056 576 ) ( 1664 3072 576 ) props/bld_rc_c10 -80 -128 0 1.500000 1.500000 0 0 0 +( 1648 3056 576 ) ( 1648 3056 1408 ) ( 1648 2032 1408 ) props/bld_rc_c10 -80 -128 0 1.500000 1.500000 0 0 0 +( 1672 2016 960 ) ( 1648 2016 960 ) ( 1660 3072 960 ) props/bld_rc_c10 -80 -128 0 1.500000 1.500000 0 0 0 +} +// brush 348 +{ +( 1648 2048 1408 ) ( 1648 2080 1408 ) ( 1664 2080 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1664 2016 1408 ) ( 1664 2016 576 ) ( 1648 2032 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1664 2016 576 ) ( 1664 2016 1408 ) ( 1664 2080 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1648 3056 1408 ) ( 1648 3056 576 ) ( 1664 3072 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1648 3056 576 ) ( 1648 3056 1408 ) ( 1648 2032 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1648 2016 960 ) ( 1672 2016 960 ) ( 1660 3072 960 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 349 +{ +( 1512 3360 576 ) ( 1248 3360 576 ) ( 1248 3064 576 ) props/bld_rc_c3 64 96 0 2 2 0 0 0 +( 1248 3064 1216 ) ( 1248 3360 1216 ) ( 1512 3360 1216 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1472 3008 576 ) ( 1472 3008 1024 ) ( 1648 3056 1024 ) props/bld_rc_c3 0 96 0 2 2 0 0 0 +( 1648 3056 576 ) ( 1648 3056 1024 ) ( 1264 3440 1024 ) props/bld_rc_c3 64 96 0 2 2 0 0 0 +( 1216 3264 1024 ) ( 1216 3264 576 ) ( 1264 3440 576 ) props/bld_rc_c3 64 96 0 2 2 0 0 0 +( 1472 3008 1024 ) ( 1472 3008 576 ) ( 1216 3264 576 ) props/bld_rc_c3 64 96 0 2 2 0 0 0 +} +// brush 350 +{ +( 1648 2688 576 ) ( 1536 2688 576 ) ( 1536 2376 576 ) props/bld_rc_c1 0 64 0 2 2 0 0 0 +( 1536 2376 1152 ) ( 1536 2688 1152 ) ( 1648 2688 1152 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1536 2368 1280 ) ( 1648 2368 1280 ) ( 1648 2368 576 ) props/bld_rc_c1 4 64 0 2 2 0 0 0 +( 1648 2376 1280 ) ( 1648 2688 1280 ) ( 1648 2688 576 ) props/bld_rc_c1 0 64 0 2 2 0 0 0 +( 1656 2624 1280 ) ( 1544 2624 1280 ) ( 1544 2624 576 ) props/bld_rc_c1 4 64 0 2 2 0 0 0 +( 1536 2672 1280 ) ( 1536 2360 1280 ) ( 1536 2360 576 ) props/bld_rc_c1 0 64 0 2 2 0 0 0 +} +// brush 351 +{ +( 1648 2936 576 ) ( 1536 2936 576 ) ( 1536 2624 576 ) props/bld_rc_c1 0 0 0 2 2 0 0 0 +( 1536 2624 1024 ) ( 1536 2936 1024 ) ( 1648 2936 1024 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1536 2624 1280 ) ( 1648 2624 1280 ) ( 1648 2624 576 ) props/bld_rc_c1 0 0 0 2 2 0 0 0 +( 1648 2624 1280 ) ( 1648 2936 1280 ) ( 1648 2936 576 ) props/bld_rc_c1 0 0 0 2 2 0 0 0 +( 1656 2880 1280 ) ( 1544 2880 1280 ) ( 1544 2880 576 ) props/bld_rc_c1 0 0 0 2 2 0 0 0 +( 1472 2928 1280 ) ( 1472 2616 1280 ) ( 1472 2616 576 ) props/bld_rc_c1 0 0 0 2 2 0 0 0 +} +// brush 352 +{ +( 1648 2432 576 ) ( 1536 2432 576 ) ( 1536 2120 576 ) props/bld_rc_c1 0 0 0 2 2 0 0 0 +( 1536 2120 1024 ) ( 1536 2432 1024 ) ( 1648 2432 1024 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1536 2112 1280 ) ( 1648 2112 1280 ) ( 1648 2112 576 ) props/bld_rc_c1 0 0 0 2 2 0 0 0 +( 1648 2120 1280 ) ( 1648 2432 1280 ) ( 1648 2432 576 ) props/bld_rc_c1 0 0 0 2 2 0 0 0 +( 1656 2368 1280 ) ( 1544 2368 1280 ) ( 1544 2368 576 ) props/bld_rc_c1 0 0 0 2 2 0 0 0 +( 1472 2424 1280 ) ( 1472 2112 1280 ) ( 1472 2112 576 ) props/bld_rc_c1 0 0 0 2 2 0 0 0 +} +// brush 353 +{ +( 1352 2152 576 ) ( 1264 2152 576 ) ( 1264 2024 576 ) props/bld_rc_c4 28 130 0 2 2 0 0 0 +( 1264 2024 1280 ) ( 1264 2152 1280 ) ( 1352 2152 1280 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1176 1896 1216 ) ( 1176 1896 576 ) ( 1096 1976 576 ) props/bld_rc_c4 -20 130 0 2 2 0 0 0 +( 1504 1888 576 ) ( 1504 1888 1216 ) ( 1616 2000 1216 ) props/bld_rc_c4 28 130 0 2 2 0 0 0 +( 1408 2112 576 ) ( 1408 2112 1216 ) ( 1328 2192 1216 ) props/bld_rc_c4 -6 130 0 2 2 0 0 0 +( 1328 2032 1216 ) ( 1328 2032 576 ) ( 1440 2144 576 ) props/bld_rc_c4 28 130 0 2 2 0 0 0 +} +// brush 354 +{ +( 1376 1752 576 ) ( 1296 1752 576 ) ( 1296 1672 576 ) props/bld_rc_c2 -64 0 0 2 2 0 0 0 +( 760 1112 1408 ) ( 760 1112 576 ) ( 688 1040 576 ) props/bld_rc_c2 -64 0 0 2 2 0 0 0 +( 1368 1752 576 ) ( 1368 1752 1408 ) ( 1296 1680 1408 ) props/bld_rc_c2 -64 0 0 2 2 0 0 0 +( 1104 1456 576 ) ( 1088 1472 576 ) ( 1096 1464 1408 ) props/bld_rc_c2 -64 0 0 2 2 0 0 0 +( 1344 1728 576 ) ( 1360 1712 576 ) ( 1352 1720 1408 ) props/bld_rc_c2 -64 0 0 2 2 0 0 0 +( 1128 1456 1152 ) ( 1088 1456 1152 ) ( 1108 1728 1152 ) props/bld_rc_c2 -64 0 0 2 2 0 0 0 +} +// brush 355 +{ +( 1296 1672 1408 ) ( 1296 1752 1408 ) ( 1376 1752 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 760 1112 1408 ) ( 760 1112 576 ) ( 688 1040 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1368 1752 576 ) ( 1368 1752 1408 ) ( 1296 1680 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1104 1456 576 ) ( 1088 1472 576 ) ( 1096 1464 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1344 1728 576 ) ( 1360 1712 576 ) ( 1352 1720 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1088 1456 1152 ) ( 1128 1456 1152 ) ( 1108 1728 1152 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 356 +{ +( 1376 1752 576 ) ( 1296 1752 576 ) ( 1296 1672 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1296 1672 1408 ) ( 1296 1752 1408 ) ( 1376 1752 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 760 1112 1408 ) ( 760 1112 576 ) ( 688 1040 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1664 2016 576 ) ( 1664 2016 1408 ) ( 1648 2032 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1368 1752 576 ) ( 1368 1752 1408 ) ( 1296 1680 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1360 1712 576 ) ( 1344 1728 576 ) ( 1352 1720 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 357 +{ +( 1376 1752 576 ) ( 1296 1752 576 ) ( 1296 1672 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1296 1672 1408 ) ( 1296 1752 1408 ) ( 1376 1752 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 96 448 1408 ) ( 96 448 576 ) ( 80 464 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 760 1112 1408 ) ( 760 1112 576 ) ( 688 1040 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1368 1752 576 ) ( 1368 1752 1408 ) ( 1296 1680 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1088 1472 576 ) ( 1104 1456 576 ) ( 1096 1464 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 358 +{ +( 776 1576 576 ) ( 688 1576 576 ) ( 688 1448 576 ) props/bld_sr_c2 0 -64 0 2 2 0 0 0 +( 688 1448 1408 ) ( 688 1576 1408 ) ( 776 1576 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 600 1320 1216 ) ( 600 1320 576 ) ( 520 1400 576 ) props/bld_sr_c2 4 -64 0 2 2 0 0 0 +( 928 1312 576 ) ( 928 1312 1216 ) ( 1040 1424 1216 ) props/bld_sr_c2 0 -64 0 2 2 0 0 0 +( 912 1648 576 ) ( 912 1648 1216 ) ( 832 1728 1216 ) props/bld_sr_c2 -28 -64 0 2 2 0 0 0 +( 752 1456 1216 ) ( 752 1456 576 ) ( 864 1568 576 ) props/bld_sr_c2 0 -64 0 2 2 0 0 0 +} +// brush 359 +{ +( 456 1256 576 ) ( 368 1256 576 ) ( 368 1128 576 ) props/bld_rc_c10 -96 -8 0 2 2 0 0 0 +( 368 1128 1024 ) ( 368 1256 1024 ) ( 456 1256 1024 ) props/bld_rc_c10 -96 -8 0 2 2 0 0 0 +( 280 1000 1216 ) ( 280 1000 576 ) ( 200 1080 576 ) props/bld_rc_c10 -96 -8 0 2 2 0 0 0 +( 608 992 576 ) ( 608 992 1216 ) ( 720 1104 1216 ) props/bld_rc_c10 -96 -8 0 2 2 0 0 0 +( 592 1328 576 ) ( 592 1328 1216 ) ( 512 1408 1216 ) props/bld_rc_c10 -120 -8 0 2 2 0 0 0 +( 536 1048 1216 ) ( 536 1048 576 ) ( 648 1160 576 ) props/bld_rc_c10 -96 -8 0 2 2 0 0 0 +} +// brush 360 +{ +( 72 1000 576 ) ( -16 1000 576 ) ( -16 872 576 ) props/bld_sr_c1a 0 48 0 1 1 0 0 0 +( -16 872 1072 ) ( -16 1000 1072 ) ( 72 1000 1072 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -144 720 1216 ) ( -144 720 576 ) ( -224 800 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 224 736 576 ) ( 224 736 1216 ) ( 336 848 1216 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -104 744 576 ) ( -104 744 1216 ) ( -184 824 1216 ) props/bld_sr_c1a 0 48 0 1 1 0 0 0 +( 64 840 1216 ) ( 64 840 576 ) ( 176 952 576 ) props/bld_sr_c1a -8 48 0 0.500000 1 0 0 0 +} +// brush 361 +{ +( 136 936 576 ) ( 48 936 576 ) ( 48 808 576 ) props/bld_rc_c1 -14 62 0 2 2 0 0 0 +( 48 808 1152 ) ( 48 936 1152 ) ( 136 936 1152 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -40 680 1216 ) ( -40 680 576 ) ( -120 760 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 288 672 576 ) ( 288 672 1216 ) ( 400 784 1216 ) props/bld_rc_c1 -14 62 0 2 2 0 0 0 +( 272 1008 576 ) ( 272 1008 1216 ) ( 192 1088 1216 ) props/bld_rc_c1 -30 62 0 2.200000 2 0 0 0 +( 128 816 1216 ) ( 128 816 576 ) ( 240 928 576 ) props/bld_rc_c1 -14 62 0 2 2 0 0 0 +} +// brush 362 +{ +( -136 1208 576 ) ( -224 1208 576 ) ( -224 1080 576 ) props/bld_rc_c11 8 128 0 2 2 0 0 0 +( -224 1080 1280 ) ( -224 1208 1280 ) ( -136 1208 1280 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -352 928 1216 ) ( -352 928 576 ) ( -432 1008 576 ) props/bld_rc_c11 8 128 0 2 2 0 0 0 +( 16 944 576 ) ( 16 944 1216 ) ( 128 1056 1216 ) props/bld_rc_c11 8 128 0 2 2 0 0 0 +( -280 984 576 ) ( -280 984 1216 ) ( -360 1064 1216 ) props/bld_rc_c11 8 128 0 2 2 0 0 0 +( -256 1184 1216 ) ( -256 1184 576 ) ( -144 1296 576 ) props/bld_rc_c11 8 128 0 2 2 0 0 0 +} +// brush 363 +{ +( 120 1464 576 ) ( 32 1464 576 ) ( 32 1336 576 ) props/bld_rc_c2 32 120 0 1.500000 2 0 0 0 +( 32 1336 1280 ) ( 32 1464 1280 ) ( 120 1464 1280 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 40 1304 1216 ) ( 40 1304 576 ) ( -40 1384 576 ) props/bld_rc_c2 10 120 0 1.750000 2 0 0 0 +( 144 1280 576 ) ( 144 1280 1216 ) ( 256 1392 1216 ) props/bld_rc_c2 26 120 0 1.500000 2 0 0 0 +( 160 1440 576 ) ( 160 1440 1216 ) ( 80 1520 1216 ) props/bld_rc_c2 22 120 0 1.750000 2 0 0 0 +( 0 1440 1216 ) ( 0 1440 576 ) ( 112 1552 576 ) props/bld_rc_c2 32 120 0 1.500000 2 0 0 0 +} +// brush 364 +{ +( -8 1336 576 ) ( -96 1336 576 ) ( -96 1208 576 ) props/bld_rc_c2 16 120 0 2 2 0 0 0 +( -96 1208 1064 ) ( -96 1336 1064 ) ( -8 1336 1064 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -224 1056 1216 ) ( -224 1056 576 ) ( -304 1136 576 ) props/bld_rc_c2 16 120 0 2 2 0 0 0 +( -48 1232 576 ) ( -48 1232 1216 ) ( 64 1344 1216 ) props/bld_rc_c2 16 120 0 2 2 0 0 0 +( 32 1312 576 ) ( 32 1312 1216 ) ( -48 1392 1216 ) props/bld_rc_c2 16 120 0 2 2 0 0 0 +( -128 1312 1216 ) ( -128 1312 576 ) ( -16 1424 576 ) props/bld_rc_c2 16 120 0 2 2 0 0 0 +} +// brush 365 +{ +( 832 2296 576 ) ( 752 2296 576 ) ( 752 2216 576 ) props/bld_rc_c1 8 -64 0 2 2 0 0 0 +( 752 2216 1408 ) ( 752 2296 1408 ) ( 832 2296 1408 ) props/bld_rc_c1 8 -64 0 2 2 0 0 0 +( 216 1656 1408 ) ( 216 1656 576 ) ( 144 1584 576 ) props/bld_rc_c1 8 -64 0 2 2 0 0 0 +( 824 2296 576 ) ( 824 2296 1408 ) ( 752 2224 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 376 1864 576 ) ( 392 1848 576 ) ( 384 1856 1408 ) props/bld_rc_c1 8 -64 0 2 2 0 0 0 +( 144 1584 576 ) ( 128 1600 576 ) ( 136 1592 1408 ) props/bld_rc_c1 8 -64 0 2 2 0 0 0 +} +// brush 366 +{ +( 832 2296 576 ) ( 752 2296 576 ) ( 752 2216 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 752 2216 1408 ) ( 752 2296 1408 ) ( 832 2296 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -448 992 1408 ) ( -448 992 576 ) ( -464 1008 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 216 1656 1408 ) ( 216 1656 576 ) ( 144 1584 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 824 2296 576 ) ( 824 2296 1408 ) ( 752 2224 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 128 1600 576 ) ( 144 1584 576 ) ( 136 1592 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 367 +{ +( 832 2296 576 ) ( 752 2296 576 ) ( 752 2216 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 752 2216 1408 ) ( 752 2296 1408 ) ( 832 2296 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 216 1656 1408 ) ( 216 1656 576 ) ( 144 1584 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 848 2288 576 ) ( 848 2288 1408 ) ( 832 2304 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 824 2296 576 ) ( 824 2296 1408 ) ( 752 2224 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 408 1832 576 ) ( 392 1848 576 ) ( 400 1840 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 368 +{ +( 376 1720 576 ) ( 288 1720 576 ) ( 288 1592 576 ) props/bld_rc_c4 -8 24 0 2 2 0 0 0 +( 288 1592 1064 ) ( 288 1720 1064 ) ( 376 1720 1064 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 160 1440 1216 ) ( 160 1440 576 ) ( 80 1520 576 ) props/bld_rc_c4 -8 24 0 2 2 0 0 0 +( 336 1616 576 ) ( 336 1616 1216 ) ( 448 1728 1216 ) props/bld_rc_c4 -8 24 0 2 2 0 0 0 +( 416 1696 576 ) ( 416 1696 1216 ) ( 336 1776 1216 ) props/bld_rc_c4 -8 24 0 2 2 0 0 0 +( 256 1696 1216 ) ( 256 1696 576 ) ( 368 1808 576 ) props/bld_rc_c4 -8 24 0 2 2 0 0 0 +} +// brush 369 +{ +( 632 1976 576 ) ( 544 1976 576 ) ( 544 1848 576 ) props/bld_rc_c7 -12 130 0 2 2 0 0 0 +( 544 1848 1280 ) ( 544 1976 1280 ) ( 632 1976 1280 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 416 1696 1216 ) ( 416 1696 576 ) ( 336 1776 576 ) props/bld_rc_c7 -12 130 0 2 2 0 0 0 +( 664 1800 576 ) ( 664 1800 1216 ) ( 776 1912 1216 ) props/bld_rc_c7 -12 130 0 2 2 0 0 0 +( 672 1952 576 ) ( 672 1952 1216 ) ( 592 2032 1216 ) props/bld_rc_c7 -12 130 0 2 2 0 0 0 +( 512 1952 1216 ) ( 512 1952 576 ) ( 624 2064 576 ) props/bld_rc_c7 -12 130 0 2 2 0 0 0 +} +// brush 370 +{ +( 960 2368 576 ) ( 840 2368 576 ) ( 840 2240 576 ) props/bld_sr_c3 62 98 0 2 2 0 0 0 +( 840 2240 1216 ) ( 840 2368 1216 ) ( 960 2368 1216 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 704 1984 576 ) ( 704 1984 1408 ) ( 960 2240 1408 ) props/bld_sr_c3 62 98 0 2 2 0 0 0 +( 960 2240 1408 ) ( 960 2368 1408 ) ( 960 2368 576 ) props/bld_sr_c3 64 98 0 2 2 0 0 0 +( 624 2064 576 ) ( 624 2064 1216 ) ( 704 1984 1216 ) props/bld_sr_c3 62 98 0 2 2 0 0 0 +( 848 2288 576 ) ( 960 2288 576 ) ( 904 2288 1408 ) props/bld_sr_c3 62 98 0 2 2 0 0 0 +( 624 2064 1216 ) ( 624 2064 576 ) ( 848 2288 576 ) props/bld_sr_c3 62 98 0 2 2 0 0 0 +} +// brush 371 +{ +( 960 2368 576 ) ( 840 2368 576 ) ( 840 2240 576 ) props/bld_sr_c3 62 98 0 2 2 0 0 0 +( 840 2240 1216 ) ( 840 2368 1216 ) ( 960 2368 1216 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 960 2240 1408 ) ( 960 2368 1408 ) ( 960 2368 576 ) props/bld_sr_c3 38 98 0 2 2 0 0 0 +( 704 2368 1408 ) ( 704 2368 576 ) ( 960 2368 576 ) props/bld_sr_c3 62 98 0 2 2 0 0 0 +( 848 2368 576 ) ( 848 2368 1408 ) ( 848 1984 1408 ) props/bld_sr_c3 62 98 0 2 2 0 0 0 +( 960 2288 576 ) ( 848 2288 576 ) ( 904 2288 1408 ) props/bld_sr_c3 62 98 0 2 2 0 0 0 +} +// brush 372 +{ +( 896 2624 576 ) ( 640 2624 576 ) ( 640 2536 576 ) props/bld_rc_c6 32 -64 0 2 2 0 0 0 +( 640 2536 1408 ) ( 640 2624 1408 ) ( 896 2624 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 648 2368 1408 ) ( 904 2368 1408 ) ( 904 2368 576 ) props/bld_rc_c6 32 -64 0 2 2 0 0 0 +( 896 2536 1408 ) ( 896 2624 1408 ) ( 896 2624 576 ) props/bld_rc_c6 0 -64 0 2 2 0 0 0 +( 896 2624 1408 ) ( 640 2624 1408 ) ( 640 2624 576 ) props/bld_rc_c6 32 -64 0 2 2 0 0 0 +( 640 2624 1408 ) ( 640 2536 1408 ) ( 640 2536 576 ) props/bld_rc_c6 32 -64 0 2 2 0 0 0 +} +// brush 373 +{ +( 1024 2688 576 ) ( 512 2688 576 ) ( 512 2512 576 ) props/bld_rc_c1 0 40 0 2 2 0 0 0 +( 512 2512 1088 ) ( 512 2688 1088 ) ( 1024 2688 1088 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 512 2512 1024 ) ( 1024 2512 1024 ) ( 1024 2512 576 ) props/bld_rc_c1 0 40 0 2 2 0 0 0 +( 640 2472 1024 ) ( 640 2648 1024 ) ( 640 2648 576 ) props/bld_rc_c1 0 40 0 2 2 0 0 0 +( 1040 2816 1024 ) ( 528 2816 1024 ) ( 528 2816 576 ) props/bld_rc_c1 0 40 0 2 2 0 0 0 +( 512 2688 1024 ) ( 512 2512 1024 ) ( 512 2512 576 ) props/bld_rc_c1 0 40 0 2 2 0 0 0 +} +// brush 374 +{ +( 704 2688 576 ) ( 192 2688 576 ) ( 192 2512 576 ) props/bld_sr_c2 -16 96 0 2 2 0 0 0 +( 192 2512 1216 ) ( 192 2688 1216 ) ( 704 2688 1216 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 192 2512 1024 ) ( 704 2512 1024 ) ( 704 2512 576 ) props/bld_sr_c2 -16 96 0 2 2 0 0 0 +( 512 2496 1024 ) ( 512 2672 1024 ) ( 512 2672 576 ) props/bld_sr_c2 -16 96 0 2 2 0 0 0 +( 704 2688 1024 ) ( 192 2688 1024 ) ( 192 2688 576 ) props/bld_sr_c2 -16 96 0 2 2 0 0 0 +( 192 2688 1024 ) ( 192 2512 1024 ) ( 192 2512 576 ) props/bld_sr_c2 -16 96 0 2 2 0 0 0 +} +// brush 375 +{ +( 216 2880 576 ) ( -64 2880 576 ) ( -64 2624 576 ) props/bld_rc_c4 0 0 0 2 2 0 0 0 +( -64 2624 1024 ) ( -64 2880 1024 ) ( 216 2880 1024 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -56 2512 1408 ) ( 224 2512 1408 ) ( 224 2512 576 ) props/bld_rc_c4 0 0 0 2 2 0 0 0 +( 192 2624 1408 ) ( 192 2880 1408 ) ( 192 2880 576 ) props/bld_rc_c4 0 0 0 2 2 0 0 0 +( 216 2880 1408 ) ( -64 2880 1408 ) ( -64 2880 576 ) props/bld_rc_c4 0 0 0 2 2 0 0 0 +( -64 2880 1408 ) ( -64 2624 1408 ) ( -64 2624 576 ) props/bld_rc_c4 0 0 0 2 2 0 0 0 +} +// brush 376 +{ +( 64 2624 576 ) ( -384 2624 576 ) ( -384 2520 576 ) props/bld_rc_c8a -16 -64 0 2 2 0 0 0 +( -384 2520 1408 ) ( -384 2624 1408 ) ( 64 2624 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -384 2512 1408 ) ( 64 2512 1408 ) ( 64 2512 576 ) props/bld_rc_c8a -16 -64 0 2 2 0 0 0 +( 64 2520 1408 ) ( 64 2624 1408 ) ( 64 2624 576 ) props/bld_rc_c8a -16 -64 0 2 2 0 0 0 +( 64 2624 1408 ) ( -384 2624 1408 ) ( -384 2624 576 ) props/bld_rc_c8a -16 -64 0 2 2 0 0 0 +( -384 2624 1408 ) ( -384 2520 1408 ) ( -384 2520 576 ) props/bld_rc_c8a -16 -64 0 2 2 0 0 0 +} +// brush 377 +{ +( -448 2752 576 ) ( -640 2752 576 ) ( -640 2520 576 ) props/bld_rc_c2 40 0 0 2 2 0 0 0 +( -640 2520 1152 ) ( -640 2752 1152 ) ( -448 2752 1152 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -640 2512 1152 ) ( -448 2512 1152 ) ( -448 2512 576 ) props/bld_rc_c2 40 0 0 2 2 0 0 0 +( -384 2520 1152 ) ( -384 2752 1152 ) ( -384 2752 576 ) props/bld_rc_c2 40 0 0 2 2 0 0 0 +( -448 2816 1152 ) ( -640 2816 1152 ) ( -640 2816 576 ) props/bld_rc_c2 32 0 0 2 2 0 0 0 +( -640 2752 1152 ) ( -640 2520 1152 ) ( -640 2520 576 ) props/bld_rc_c2 40 0 0 2 2 0 0 0 +} +// brush 378 +{ +( -656 2624 576 ) ( -832 2624 576 ) ( -832 2432 576 ) props/bld_rc_c2 -40 0 0 2 2 0 0 0 +( -832 2432 1152 ) ( -832 2624 1152 ) ( -656 2624 1152 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -832 2432 1024 ) ( -656 2432 1024 ) ( -656 2432 576 ) props/bld_rc_c2 -40 0 0 2 2 0 0 0 +( -640 2432 1024 ) ( -640 2624 1024 ) ( -640 2624 576 ) props/bld_rc_c2 -40 0 0 2 2 0 0 0 +( -648 2624 1024 ) ( -824 2624 1024 ) ( -824 2624 576 ) props/bld_rc_c2 40 0 0 2 2 0 0 0 +( -832 2624 1024 ) ( -832 2432 1024 ) ( -832 2432 576 ) props/bld_rc_c2 -40 0 0 2 2 0 0 0 +} +// brush 379 +{ +( -656 2048 576 ) ( -896 2048 576 ) ( -896 1928 576 ) props/bld_rc_c10 64 0 0 2 2 0 0 0 +( -896 1928 1216 ) ( -896 2048 1216 ) ( -656 2048 1216 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -896 1928 1216 ) ( -656 1928 1216 ) ( -656 1928 768 ) props/bld_rc_c10 64 96 0 2 2 0 0 0 +( -656 1928 1216 ) ( -656 2048 1216 ) ( -656 2048 768 ) props/bld_rc_c10 64 96 0 2 2 0 0 0 +( -656 2048 1216 ) ( -896 2048 1216 ) ( -896 2048 768 ) props/bld_rc_c10 134 96 0 2 2 0 0 0 +( -960 2048 1216 ) ( -960 1928 1216 ) ( -960 1928 768 ) props/bld_rc_c10 -2 96 0 2 2 0 0 0 +} +// brush 380 +{ +( -656 2368 576 ) ( -768 2368 576 ) ( -768 2048 576 ) props/bld_rc_c1 0 0 0 2 2 0 0 0 +( -768 2048 1024 ) ( -768 2368 1024 ) ( -656 2368 1024 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -768 2048 1408 ) ( -656 2048 1408 ) ( -656 2048 576 ) props/bld_rc_c1 0 0 0 2 2 0 0 0 +( -656 2048 1408 ) ( -656 2368 1408 ) ( -656 2368 576 ) props/bld_rc_c1 0 0 0 2 2 0 0 0 +( -656 2368 1408 ) ( -768 2368 1408 ) ( -768 2368 576 ) props/bld_rc_c1 0 0 0 2 2 0 0 0 +( -768 2368 1408 ) ( -768 2048 1408 ) ( -768 2048 576 ) props/bld_rc_c1 0 0 0 2 2 0 0 0 +} +// brush 381 +{ +( -952 3448 576 ) ( -1024 3448 576 ) ( -1024 3352 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1024 3352 1408 ) ( -1024 3448 1408 ) ( -952 3448 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1016 3368 576 ) ( -1016 3368 1408 ) ( -944 3440 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -944 3440 576 ) ( -944 3440 1408 ) ( -960 3456 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1032 3384 1408 ) ( -1032 3384 576 ) ( -960 3456 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1264 3120 1408 ) ( -1264 3120 576 ) ( -1280 3136 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 382 +{ +( 1648 3136 576 ) ( 1592 3136 576 ) ( 1592 3080 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1592 3080 1408 ) ( 1592 3136 1408 ) ( 1648 3136 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1648 3056 576 ) ( 1648 3056 1408 ) ( 1664 3072 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1600 3136 1408 ) ( 1600 3136 576 ) ( 1664 3072 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1264 3440 576 ) ( 1264 3440 1408 ) ( 1248 3424 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1584 3120 576 ) ( 1584 3120 1408 ) ( 1648 3056 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 383 +{ +( 1360 1768 576 ) ( 1280 1768 576 ) ( 1280 1688 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1280 1688 1408 ) ( 1280 1768 1408 ) ( 1360 1768 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 80 464 1408 ) ( 80 464 576 ) ( 64 480 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 744 1128 1408 ) ( 744 1128 576 ) ( 672 1056 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 856 2296 576 ) ( 856 2296 1408 ) ( 784 2224 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -432 1008 576 ) ( -408 984 576 ) ( -420 996 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 384 +{ +( 848 2512 576 ) ( 832 2512 576 ) ( 832 2304 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 832 2304 1408 ) ( 832 2512 1408 ) ( 848 2512 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 848 2304 1408 ) ( 848 2512 1408 ) ( 848 2512 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 848 2512 1408 ) ( 832 2512 1408 ) ( 832 2512 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 832 2512 1408 ) ( 832 2304 1408 ) ( 832 2304 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 848 2288 576 ) ( 832 2304 576 ) ( 840 2296 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 385 +{ +( -512 2512 576 ) ( -656 2512 576 ) ( -656 2496 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -656 2496 1408 ) ( -656 2512 1408 ) ( -512 2512 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -656 2496 1408 ) ( -512 2496 1408 ) ( -512 2496 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 832 2496 1408 ) ( 832 2512 1408 ) ( 832 2512 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -512 2512 1408 ) ( -656 2512 1408 ) ( -656 2512 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -656 2512 1408 ) ( -656 2496 1408 ) ( -656 2496 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 386 +{ +( -640 2496 576 ) ( -656 2496 576 ) ( -656 1936 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -656 1936 1408 ) ( -656 2496 1408 ) ( -640 2496 1408 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -656 1936 1408 ) ( -640 1936 1408 ) ( -640 1936 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -640 1936 1408 ) ( -640 2496 1408 ) ( -640 2496 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -640 2496 1408 ) ( -656 2496 1408 ) ( -656 2496 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -656 2496 1408 ) ( -656 1936 1408 ) ( -656 1936 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 387 +{ +( 1494 2074 560 ) ( 1542 2074 560 ) ( 1542 2124 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1542 2124 576 ) ( 1542 2074 576 ) ( 1494 2074 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1462 2124 576 ) ( 1462 2124 560 ) ( 1606 2124 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1462 2124 560 ) ( 1462 2124 576 ) ( 1380 1998 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1380 1998 560 ) ( 1380 1998 576 ) ( 1606 1998 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1664 2074 576 ) ( 1664 2124 576 ) ( 1664 2124 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1650 2002 560 ) ( 1646 1998 560 ) ( 1648 2000 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 388 +{ +( 1442 1962 560 ) ( 1356 1962 560 ) ( 1356 1896 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1356 1896 576 ) ( 1356 1962 576 ) ( 1442 1962 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1456 1808 576 ) ( 1456 1808 560 ) ( 1324 1940 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1540 1892 576 ) ( 1540 1892 560 ) ( 1456 1808 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1324 1940 576 ) ( 1324 1940 560 ) ( 1380 1998 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1652 1998 560 ) ( 1664 1998 560 ) ( 1658 1998 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 389 +{ +( -36 580 560 ) ( 32 580 560 ) ( 32 604 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 32 604 576 ) ( 32 580 576 ) ( -36 580 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -36 580 560 ) ( 8 624 560 ) ( 8 624 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 108 460 576 ) ( 152 504 576 ) ( 152 504 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -36 580 576 ) ( -8 552 576 ) ( -8 552 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1324 1940 560 ) ( 1340 1924 560 ) ( 1332 1932 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 390 +{ +( 1552 2208 560 ) ( 1600 2208 560 ) ( 1600 2258 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1600 2258 576 ) ( 1600 2208 576 ) ( 1552 2208 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1600 2258 576 ) ( 1552 2258 576 ) ( 1552 2258 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1462 2124 576 ) ( 1462 2124 560 ) ( 1520 2258 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1462 2124 560 ) ( 1462 2124 576 ) ( 1600 2124 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1664 2210 576 ) ( 1664 2260 576 ) ( 1664 2260 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 391 +{ +( 1552 2368 560 ) ( 1600 2368 560 ) ( 1600 2418 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1600 2418 576 ) ( 1600 2368 576 ) ( 1552 2368 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1600 2418 576 ) ( 1552 2418 576 ) ( 1552 2418 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1520 2258 576 ) ( 1520 2258 560 ) ( 1552 2418 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1520 2258 560 ) ( 1520 2258 576 ) ( 1600 2258 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1664 2370 576 ) ( 1664 2420 576 ) ( 1664 2420 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 392 +{ +( 1664 2574 560 ) ( 1552 2574 560 ) ( 1552 2418 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1552 2418 576 ) ( 1552 2574 576 ) ( 1664 2574 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1552 2418 576 ) ( 1664 2418 576 ) ( 1664 2418 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1664 2418 576 ) ( 1664 2574 576 ) ( 1664 2574 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1664 2574 576 ) ( 1552 2574 576 ) ( 1552 2574 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1552 2574 576 ) ( 1552 2418 576 ) ( 1552 2418 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 393 +{ +( 1600 2574 560 ) ( 1600 2624 560 ) ( 1552 2624 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1552 2624 576 ) ( 1600 2624 576 ) ( 1600 2574 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1552 2574 560 ) ( 1552 2574 576 ) ( 1600 2574 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1552 2574 560 ) ( 1520 2734 560 ) ( 1520 2734 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1600 2734 576 ) ( 1520 2734 576 ) ( 1520 2734 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1664 2572 560 ) ( 1664 2572 576 ) ( 1664 2622 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 394 +{ +( 1600 2734 560 ) ( 1600 2784 560 ) ( 1552 2784 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1552 2784 576 ) ( 1600 2784 576 ) ( 1600 2734 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1552 2734 560 ) ( 1552 2734 576 ) ( 1600 2734 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1520 2734 560 ) ( 1462 2868 560 ) ( 1462 2868 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1600 2868 576 ) ( 1462 2868 576 ) ( 1462 2868 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1664 2732 560 ) ( 1664 2732 576 ) ( 1664 2782 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 395 +{ +( 1600 2868 560 ) ( 1600 2918 560 ) ( 1552 2918 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1552 2918 576 ) ( 1600 2918 576 ) ( 1600 2868 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1600 2868 560 ) ( 1462 2868 560 ) ( 1462 2868 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1380 2994 560 ) ( 1380 2994 576 ) ( 1462 2868 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1380 2994 576 ) ( 1380 2994 560 ) ( 1664 3072 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1664 3072 576 ) ( 1664 3072 560 ) ( 1664 2872 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 396 +{ +( 1190 3280 560 ) ( 1190 3328 560 ) ( 1140 3328 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1140 3328 576 ) ( 1190 3328 576 ) ( 1190 3280 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1140 3456 576 ) ( 1140 3190 576 ) ( 1140 3190 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1266 3108 560 ) ( 1140 3190 560 ) ( 1140 3190 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1266 3108 576 ) ( 1280 3456 576 ) ( 1280 3456 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1140 3456 560 ) ( 1280 3456 560 ) ( 1280 3456 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 397 +{ +( 1056 3280 560 ) ( 1056 3328 560 ) ( 1006 3328 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1006 3328 576 ) ( 1056 3328 576 ) ( 1056 3280 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1006 3328 576 ) ( 1006 3280 576 ) ( 1006 3280 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1140 3190 576 ) ( 1140 3190 560 ) ( 1006 3248 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1140 3190 560 ) ( 1140 3190 576 ) ( 1140 3328 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1064 3456 576 ) ( 1014 3456 576 ) ( 1014 3456 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 398 +{ +( 896 3280 560 ) ( 896 3328 560 ) ( 846 3328 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 846 3328 576 ) ( 896 3328 576 ) ( 896 3280 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 846 3328 576 ) ( 846 3280 576 ) ( 846 3280 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1006 3248 576 ) ( 1006 3248 560 ) ( 846 3280 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1006 3248 560 ) ( 1006 3248 576 ) ( 1006 3328 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 896 3456 576 ) ( 846 3456 576 ) ( 846 3456 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 399 +{ +( 1546 3090 560 ) ( 1546 3218 560 ) ( 1330 3218 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1330 3218 576 ) ( 1546 3218 576 ) ( 1546 3090 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1380 2994 560 ) ( 1266 3108 560 ) ( 1266 3108 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1280 3456 576 ) ( 1266 3108 576 ) ( 1266 3108 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1664 3072 560 ) ( 1664 3072 576 ) ( 1280 3456 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1664 3072 576 ) ( 1664 3072 560 ) ( 1380 2994 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 400 +{ +( -336 3456 560 ) ( -528 3456 560 ) ( -528 3280 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -528 3280 576 ) ( -528 3456 576 ) ( -336 3456 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -528 3280 576 ) ( -336 3280 576 ) ( -336 3280 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 846 3216 576 ) ( 846 3392 576 ) ( 846 3392 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -336 3456 576 ) ( -528 3456 576 ) ( -528 3456 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -526 3455 576 ) ( -526 3279 576 ) ( -526 3279 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 401 +{ +( -1010 3218 560 ) ( -1226 3218 560 ) ( -1226 3090 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1226 3090 576 ) ( -1226 3218 576 ) ( -1010 3218 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -946 3108 576 ) ( -946 3108 560 ) ( -1060 2994 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -946 3108 560 ) ( -946 3108 576 ) ( -960 3456 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -960 3456 560 ) ( -960 3456 576 ) ( -1280 3136 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1060 2994 576 ) ( -1060 2994 560 ) ( -1280 3136 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 402 +{ +( -526 3328 560 ) ( -576 3328 560 ) ( -576 3280 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -576 3280 576 ) ( -576 3328 576 ) ( -526 3328 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -526 3280 560 ) ( -526 3280 576 ) ( -526 3328 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -526 3280 560 ) ( -686 3248 560 ) ( -686 3248 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -686 3328 576 ) ( -686 3248 576 ) ( -686 3248 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -526 3456 560 ) ( -526 3456 576 ) ( -576 3456 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 403 +{ +( -686 3328 560 ) ( -736 3328 560 ) ( -736 3280 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -736 3280 576 ) ( -736 3328 576 ) ( -686 3328 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -686 3280 560 ) ( -686 3280 576 ) ( -686 3328 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -686 3248 560 ) ( -820 3190 560 ) ( -820 3190 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -820 3328 576 ) ( -820 3190 576 ) ( -820 3190 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -694 3456 560 ) ( -694 3456 576 ) ( -744 3456 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 404 +{ +( -820 3328 560 ) ( -870 3328 560 ) ( -870 3280 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -870 3280 576 ) ( -870 3328 576 ) ( -820 3328 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -820 3190 560 ) ( -820 3190 576 ) ( -820 3456 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -820 3190 576 ) ( -820 3190 560 ) ( -946 3108 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -960 3456 560 ) ( -960 3456 576 ) ( -946 3108 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -960 3456 576 ) ( -960 3456 560 ) ( -820 3456 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 405 +{ +( -1232 2918 560 ) ( -1280 2918 560 ) ( -1280 2868 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1280 2868 576 ) ( -1280 2918 576 ) ( -1232 2918 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1142 2868 576 ) ( -1142 2868 560 ) ( -1280 2868 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1142 2868 560 ) ( -1142 2868 576 ) ( -1060 2994 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1060 2994 560 ) ( -1060 2994 576 ) ( -1280 3136 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1280 2918 576 ) ( -1280 2868 576 ) ( -1280 2868 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 406 +{ +( -1232 2784 560 ) ( -1280 2784 560 ) ( -1280 2734 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1280 2734 576 ) ( -1280 2784 576 ) ( -1232 2784 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1280 2734 576 ) ( -1232 2734 576 ) ( -1232 2734 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1142 2868 576 ) ( -1142 2868 560 ) ( -1200 2734 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1142 2868 560 ) ( -1142 2868 576 ) ( -1280 2868 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1280 2784 576 ) ( -1280 2734 576 ) ( -1280 2734 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 407 +{ +( -1232 2624 560 ) ( -1280 2624 560 ) ( -1280 2574 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1280 2574 576 ) ( -1280 2624 576 ) ( -1232 2624 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1280 2574 576 ) ( -1232 2574 576 ) ( -1232 2574 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1200 2734 576 ) ( -1200 2734 560 ) ( -1232 2574 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1200 2734 560 ) ( -1200 2734 576 ) ( -1280 2734 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1280 2624 576 ) ( -1280 2574 576 ) ( -1280 2574 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 408 +{ +( -1232 2576 560 ) ( -1280 2576 560 ) ( -1280 2048 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1280 2048 576 ) ( -1280 2576 576 ) ( -1232 2576 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1280 2048 576 ) ( -1232 2048 576 ) ( -1232 2048 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1232 2048 576 ) ( -1232 2576 576 ) ( -1232 2576 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1232 2574 576 ) ( -1280 2574 576 ) ( -1280 2574 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1280 2576 576 ) ( -1280 2048 576 ) ( -1280 2048 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 409 +{ +( -776 2496 560 ) ( -816 2496 560 ) ( -816 2048 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -816 2048 576 ) ( -816 2496 576 ) ( -776 2496 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -816 2048 576 ) ( -776 2048 576 ) ( -776 2048 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -640 2056 576 ) ( -640 2504 576 ) ( -640 2504 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -776 2496 576 ) ( -816 2496 576 ) ( -816 2496 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -816 2496 576 ) ( -816 2048 576 ) ( -816 2048 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 410 +{ +( 872 2496 560 ) ( 832 2496 560 ) ( 832 2304 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 832 2304 576 ) ( 832 2496 576 ) ( 872 2496 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 872 2496 576 ) ( 832 2496 576 ) ( 832 2496 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 832 2496 576 ) ( 832 2304 576 ) ( 832 2304 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1024 2496 560 ) ( 832 2304 560 ) ( 928 2400 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 411 +{ +( -308 944 560 ) ( -332 944 560 ) ( -332 876 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -332 876 576 ) ( -332 944 576 ) ( -308 944 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -288 920 576 ) ( -288 920 560 ) ( -332 876 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -408 1064 560 ) ( -408 1064 576 ) ( -452 1020 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -360 904 560 ) ( -360 904 576 ) ( -332 876 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1024 2496 560 ) ( 1046 2496 560 ) ( 1035 2496 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1136 2496 560 ) ( 1136 2458 560 ) ( 1136 2477 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1136 2458 560 ) ( 1120 2384 560 ) ( 1128 2421 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1120 2384 560 ) ( 1094 2324 560 ) ( 1107 2354 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1094 2324 560 ) ( 1050 2258 560 ) ( 1072 2291 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 412 +{ +( -384 2864 560 ) ( -816 2864 560 ) ( -816 2496 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -816 2496 576 ) ( -816 2864 576 ) ( -384 2864 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -816 2496 576 ) ( -384 2496 576 ) ( -384 2496 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1136 2400 576 ) ( 1136 2768 576 ) ( 1136 2768 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -384 2864 576 ) ( -816 2864 576 ) ( -816 2864 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -816 2864 576 ) ( -816 2496 576 ) ( -816 2496 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -816 2534 560 ) ( -800 2608 560 ) ( -808 2571 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -800 2608 560 ) ( -774 2668 560 ) ( -787 2638 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -774 2668 560 ) ( -730 2734 560 ) ( -752 2701 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -560 2848 560 ) ( -486 2864 560 ) ( -523 2856 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -620 2822 560 ) ( -560 2848 560 ) ( -590 2835 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -686 2778 560 ) ( -620 2822 560 ) ( -653 2800 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -730 2734 560 ) ( -686 2778 560 ) ( -708 2756 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 806 2864 560 ) ( 880 2848 560 ) ( 843 2856 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 880 2848 560 ) ( 940 2822 560 ) ( 910 2835 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 940 2822 560 ) ( 1006 2778 560 ) ( 973 2800 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1120 2608 560 ) ( 1136 2534 560 ) ( 1128 2571 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1094 2668 560 ) ( 1120 2608 560 ) ( 1107 2638 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1050 2734 560 ) ( 1094 2668 560 ) ( 1072 2701 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1006 2778 560 ) ( 1050 2734 560 ) ( 1028 2756 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 413 +{ +( -816 2048 560 ) ( -1232 2048 560 ) ( -1232 1984 560 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1232 1984 576 ) ( -1232 2048 576 ) ( -816 2048 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1232 1920 576 ) ( -816 1920 576 ) ( -816 1920 448 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -640 1984 576 ) ( -640 2048 576 ) ( -640 2048 448 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -816 2048 576 ) ( -1232 2048 576 ) ( -1232 2048 448 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1280 2040 576 ) ( -1280 1976 576 ) ( -1280 1976 448 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 414 +{ +( -784 2112 448 ) ( -1232 2112 448 ) ( -1232 2064 448 ) bricks/c_sr_mb1a 0 64 0 1 1 0 0 0 +( -1232 2176 576 ) ( -784 2176 576 ) ( -784 2064 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -16 2048 464 ) ( 752 2048 464 ) ( 752 2048 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -784 2176 576 ) ( -1232 2176 576 ) ( -1232 2112 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -928 2048 576 ) ( -928 2496 576 ) ( -864 2048 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1120 2496 576 ) ( -1120 2048 576 ) ( -1184 2496 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +} +// brush 415 +{ +( 8 624 448 ) ( -288 920 448 ) ( -328 880 448 ) bricks/c_sr_mb1a 32 46 315 1 1.050000 0 0 0 +( -204 972 576 ) ( 92 676 576 ) ( -36 580 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 92 676 576 ) ( -204 972 576 ) ( -284 924 448 ) bricks/c_tn_m3 -123 213 315 1 0.750000 0 0 0 +( -36 580 576 ) ( -36 580 448 ) ( -332 876 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1112 2160 576 ) ( -248 800 576 ) ( 1064 2200 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -112 664 576 ) ( 1248 2024 576 ) ( -72 616 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 416 +{ +( 1133 2181 576 ) ( 1108 2156 576 ) ( 1028 2236 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1006 2214 368 ) ( 1006 2214 352 ) ( 1050 2258 352 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1088 2224 448 ) ( 1088 2224 576 ) ( 1050 2258 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1064 2200 448 ) ( 1088 2224 448 ) ( 1050 2258 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1112 2152 448 ) ( 1032 2232 448 ) ( 1072 2192 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1088 2224 448 ) ( 1064 2200 448 ) ( 1076 2212 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 417 +{ +( 1088 2224 576 ) ( 1135 2183 576 ) ( 1108 2156 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1088 2224 448 ) ( 1135 2183 576 ) ( 1088 2224 576 ) bricks/c_tn_m3 -27 64 0 0.710000 1 0 0 0 +( 1108 2156 576 ) ( 1135 2183 576 ) ( 1088 2224 448 ) bricks/c_tn_m3 -27 64 0 0.710000 1 0 0 0 +( 1108 2156 576 ) ( 1064 2200 448 ) ( 1064 2200 576 ) bricks/c_tn_m3 -27 64 0 0.710000 1 0 0 0 +( 1064 2200 576 ) ( 1064 2200 448 ) ( 1088 2224 448 ) bricks/c_tn_m3 -27 64 0 0.710000 1 0 0 0 +} +// brush 418 +{ +( 24 704 448 ) ( 24 848 448 ) ( -136 848 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1112 2160 576 ) ( -248 800 576 ) ( -336 880 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -48 592 464 ) ( -48 592 448 ) ( -320 864 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -288 920 448 ) ( -288 920 464 ) ( -328 880 464 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1128 2136 448 ) ( 1192 2072 448 ) ( 1160 2104 464 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -248 800 576 ) ( 1112 2160 576 ) ( 1064 2200 448 ) bricks/c_tn_m3 -27 64 0 0.710000 1 0 0 0 +} +// brush 419 +{ +( 1288 1976 448 ) ( -72 616 448 ) ( -32 584 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -112 664 576 ) ( 1248 2024 576 ) ( 1328 1944 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -48 592 464 ) ( -48 592 448 ) ( -320 864 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 8 624 464 ) ( 8 624 448 ) ( -32 584 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1128 2136 448 ) ( 1192 2072 448 ) ( 1160 2104 464 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1248 2024 576 ) ( -112 664 576 ) ( -72 616 448 ) bricks/c_tn_m3 33 64 0 0.710000 1 0 0 0 +} +// brush 420 +{ +( 1064 2112 576 ) ( 1432 2112 576 ) ( 1432 1984 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1050 2258 512 ) ( 1050 2258 496 ) ( 1094 2324 496 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1088 2224 576 ) ( 1088 2224 448 ) ( 1050 2258 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1094 2324 448 ) ( 1136 2301 448 ) ( 1136 2301 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1088 2224 448 ) ( 1088 2224 576 ) ( 1136 2301 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1050 3952 448 ) ( 1050 3920 448 ) ( 1108 3936 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 421 +{ +( 1120 2244 576 ) ( 1488 2244 576 ) ( 1488 2116 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1094 2324 448 ) ( 1094 2324 432 ) ( 1120 2384 432 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1094 2324 576 ) ( 1136 2301 576 ) ( 1136 2301 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1120 2384 448 ) ( 1167 2370 448 ) ( 1167 2370 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1167 2370 448 ) ( 1136 2301 448 ) ( 1136 2301 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1094 3952 448 ) ( 1094 3920 448 ) ( 1136 3936 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 422 +{ +( 1133 2409 448 ) ( 1165 2409 448 ) ( 1165 2449 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1165 2449 576 ) ( 1165 2409 576 ) ( 1133 2409 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1120 2384 448 ) ( 1136 2458 448 ) ( 1136 2458 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1184 2453 576 ) ( 1136 2458 576 ) ( 1136 2458 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1184 2453 448 ) ( 1167 2370 448 ) ( 1167 2370 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1120 2384 576 ) ( 1167 2370 576 ) ( 1167 2370 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 423 +{ +( 1136 2456 448 ) ( 1168 2456 448 ) ( 1168 2496 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1168 2496 576 ) ( 1168 2456 576 ) ( 1136 2456 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1136 2496 448 ) ( 1136 2496 576 ) ( 1136 2456 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1184 2539 448 ) ( 1184 2539 576 ) ( 1136 2534 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1136 2458 576 ) ( 1184 2453 576 ) ( 1184 2453 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1184 2539 576 ) ( 1184 2539 448 ) ( 1184 2453 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 424 +{ +( 1184 2539 576 ) ( 1248 2546 576 ) ( 1248 2446 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1184 2539 448 ) ( 1248 2546 576 ) ( 1184 2539 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1184 2453 576 ) ( 1248 2446 576 ) ( 1184 2453 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1184 2472 576 ) ( 1184 2456 448 ) ( 1184 2488 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1248 2446 576 ) ( 1248 2546 576 ) ( 1184 2539 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 425 +{ +( 1248 2446 576 ) ( 1229 2353 576 ) ( 1184 2453 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1184 2453 576 ) ( 1184 2453 448 ) ( 1248 2446 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1184 2453 448 ) ( 1229 2353 576 ) ( 1248 2446 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1184 2453 576 ) ( 1229 2353 576 ) ( 1184 2453 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 426 +{ +( 1133 2409 448 ) ( 1165 2409 448 ) ( 1165 2449 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1165 2449 576 ) ( 1165 2409 576 ) ( 1133 2409 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1184 2453 576 ) ( 1167 2370 576 ) ( 1167 2370 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1229 2353 448 ) ( 1167 2370 448 ) ( 1167 2370 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1184 2453 448 ) ( 1229 2353 576 ) ( 1248 2446 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1184 2453 576 ) ( 1184 2453 448 ) ( 1229 2353 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 427 +{ +( 1229 2353 576 ) ( 1192 2270 576 ) ( 1167 2370 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1167 2370 576 ) ( 1167 2370 448 ) ( 1229 2353 576 ) bricks/c_tn_m3 16 64 0 1 1 0 0 0 +( 1229 2353 576 ) ( 1167 2370 448 ) ( 1192 2270 576 ) bricks/c_tn_m3 16 64 0 1 1 0 0 0 +( 1192 2270 576 ) ( 1167 2370 448 ) ( 1167 2370 576 ) bricks/c_tn_m3 16 64 0 1 1 0 0 0 +} +// brush 428 +{ +( 1167 2370 576 ) ( 1192 2270 576 ) ( 1136 2301 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1136 2301 448 ) ( 1167 2370 448 ) ( 1167 2370 576 ) bricks/c_tn_m3 16 64 0 1 1 0 0 0 +( 1136 2301 576 ) ( 1192 2270 576 ) ( 1136 2301 448 ) bricks/c_tn_m3 16 64 0 1 1 0 0 0 +( 1136 2301 448 ) ( 1192 2270 576 ) ( 1167 2370 448 ) bricks/c_tn_m3 16 64 0 1 1 0 0 0 +( 1167 2370 448 ) ( 1192 2270 576 ) ( 1167 2370 576 ) bricks/c_tn_m3 16 64 0 1 1 0 0 0 +} +// brush 429 +{ +( 1136 2301 576 ) ( 1135 2183 576 ) ( 1088 2224 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1088 2224 576 ) ( 1088 2224 448 ) ( 1136 2301 448 ) bricks/c_tn_m3 16 64 0 1 1 0 0 0 +( 1088 2224 576 ) ( 1135 2183 576 ) ( 1088 2224 448 ) bricks/c_tn_m3 16 64 0 1 1 0 0 0 +( 1088 2224 448 ) ( 1135 2183 576 ) ( 1136 2301 448 ) bricks/c_tn_m3 16 64 0 1 1 0 0 0 +( 1136 2301 448 ) ( 1135 2183 576 ) ( 1136 2301 576 ) bricks/c_tn_m3 16 64 0 1 1 0 0 0 +} +// brush 430 +{ +( 1192 2270 576 ) ( 1135 2183 576 ) ( 1136 2301 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1136 2301 448 ) ( 1192 2270 576 ) ( 1136 2301 576 ) bricks/c_tn_m3 16 64 0 1 1 0 0 0 +( 1136 2301 448 ) ( 1135 2183 576 ) ( 1192 2270 576 ) bricks/c_tn_m3 16 64 0 1 1 0 0 0 +( 1136 2301 576 ) ( 1135 2183 576 ) ( 1136 2301 448 ) bricks/c_tn_m3 16 64 0 1 1 0 0 0 +} +// brush 431 +{ +( 1520 2496 448 ) ( 1936 2496 448 ) ( 1936 2680 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1936 2680 576 ) ( 1936 2496 576 ) ( 1520 2496 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1504 2496 576 ) ( 1504 2423 576 ) ( 1504 2423 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1552 2574 576 ) ( 1552 2574 448 ) ( 1552 2418 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1552 2418 448 ) ( 1504 2423 448 ) ( 1504 2423 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1552 2574 448 ) ( 1552 2574 576 ) ( 1504 2569 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 432 +{ +( 1152 2400 576 ) ( 1520 2400 576 ) ( 1520 2272 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1520 2258 448 ) ( 1473 2274 448 ) ( 1473 2274 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1520 2258 432 ) ( 1520 2258 448 ) ( 1552 2418 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1552 2418 576 ) ( 1504 2423 576 ) ( 1504 2423 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1473 2274 448 ) ( 1504 2423 448 ) ( 1504 2423 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1504 1800 448 ) ( 1504 1768 448 ) ( 1552 1784 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 433 +{ +( 1120 2244 576 ) ( 1488 2244 576 ) ( 1488 2116 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1462 2124 448 ) ( 1419 2148 448 ) ( 1419 2148 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1462 2124 432 ) ( 1462 2124 448 ) ( 1520 2258 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1520 2258 576 ) ( 1473 2274 576 ) ( 1473 2274 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1419 2148 448 ) ( 1473 2274 448 ) ( 1473 2274 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1448 1800 448 ) ( 1448 1768 448 ) ( 1520 1784 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 434 +{ +( 1064 2112 576 ) ( 1432 2112 576 ) ( 1432 1984 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1341 2029 448 ) ( 1341 2029 576 ) ( 1380 1998 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1380 1998 432 ) ( 1380 1998 448 ) ( 1462 2124 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1462 2124 576 ) ( 1419 2148 576 ) ( 1419 2148 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1341 2029 576 ) ( 1341 2029 448 ) ( 1419 2148 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1368 1800 448 ) ( 1368 1768 448 ) ( 1462 1784 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 435 +{ +( 1243 2019 576 ) ( 1292 2068 576 ) ( 1380 1998 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1292 2068 576 ) ( 1243 2019 576 ) ( 1288 1976 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1324 1940 448 ) ( 1324 1940 576 ) ( 1380 1998 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1341 2029 576 ) ( 1341 2029 448 ) ( 1380 1998 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1256 1800 448 ) ( 1256 1768 448 ) ( 1380 1784 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1324 1940 576 ) ( 1324 1940 448 ) ( 1288 1976 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 436 +{ +( 1440 2430 576 ) ( 1440 2562 576 ) ( 1504 2569 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1504 2423 448 ) ( 1440 2430 576 ) ( 1504 2423 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1504 2569 448 ) ( 1440 2562 576 ) ( 1440 2430 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1504 2569 576 ) ( 1440 2562 576 ) ( 1504 2569 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1504 2484 576 ) ( 1504 2496 448 ) ( 1504 2472 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 437 +{ +( 1473 2274 576 ) ( 1412 2295 576 ) ( 1440 2430 576 ) common/li_sr_v3 -9 0 0 1 1 0 132 0 +( 1440 2430 576 ) ( 1412 2295 576 ) ( 1473 2274 448 ) bricks/c_tn_m3 -9 64 0 1 1 0 0 0 +( 1473 2274 448 ) ( 1412 2295 576 ) ( 1473 2274 576 ) bricks/c_tn_m3 -9 64 0 1 1 0 0 0 +( 1473 2274 576 ) ( 1440 2430 576 ) ( 1473 2274 448 ) bricks/c_tn_m3 -9 64 0 1 1 0 0 0 +} +// brush 438 +{ +( 1504 2311 576 ) ( 1440 2430 576 ) ( 1504 2423 576 ) common/li_sr_v3 -9 0 0 1 1 0 132 0 +( 1440 2430 576 ) ( 1473 2274 448 ) ( 1504 2423 448 ) bricks/c_tn_m3 -9 64 0 1 1 0 0 0 +( 1504 2423 576 ) ( 1440 2430 576 ) ( 1504 2423 448 ) bricks/c_tn_m3 -9 64 0 1 1 0 0 0 +( 1504 2423 448 ) ( 1473 2274 448 ) ( 1473 2274 576 ) bricks/c_tn_m3 -9 64 0 1 1 0 0 0 +( 1473 2274 576 ) ( 1473 2274 448 ) ( 1440 2430 576 ) bricks/c_tn_m3 -9 64 0 1 1 0 0 0 +} +// brush 439 +{ +( 1442 2125 576 ) ( 1412 2295 576 ) ( 1473 2274 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1412 2295 576 ) ( 1419 2148 448 ) ( 1473 2274 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1473 2274 576 ) ( 1412 2295 576 ) ( 1473 2274 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1473 2274 448 ) ( 1419 2148 448 ) ( 1419 2148 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1419 2148 576 ) ( 1419 2148 448 ) ( 1412 2295 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 440 +{ +( 1419 2148 576 ) ( 1362 2179 576 ) ( 1412 2295 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1412 2295 576 ) ( 1362 2179 576 ) ( 1419 2148 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1419 2148 448 ) ( 1362 2179 576 ) ( 1419 2148 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1419 2148 576 ) ( 1412 2295 576 ) ( 1419 2148 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 441 +{ +( 1341 2029 576 ) ( 1292 2068 576 ) ( 1362 2179 576 ) common/li_sr_v3 -18 0 0 1 1 0 132 0 +( 1362 2179 576 ) ( 1292 2068 576 ) ( 1341 2029 450 ) bricks/c_tn_m3 -18 64 0 1 1 0 0 0 +( 1341 2029 450 ) ( 1292 2068 576 ) ( 1341 2029 576 ) bricks/c_tn_m3 -18 64 0 1 1 0 0 0 +( 1341 2029 448 ) ( 1341 2029 576 ) ( 1362 2179 576 ) bricks/c_tn_m3 -18 64 0 1 1 0 0 0 +} +// brush 442 +{ +( 1365 2022 576 ) ( 1362 2179 576 ) ( 1419 2148 576 ) common/li_sr_v3 -18 0 0 1 1 0 132 0 +( 1362 2179 576 ) ( 1342 2029 448 ) ( 1419 2148 448 ) bricks/c_tn_m3 -18 64 0 1 1 0 0 0 +( 1419 2148 576 ) ( 1362 2179 576 ) ( 1419 2148 448 ) bricks/c_tn_m3 -18 64 0 1 1 0 0 0 +( 1341 2029 448 ) ( 1341 2029 576 ) ( 1419 2148 576 ) bricks/c_tn_m3 -18 64 0 1 1 0 0 0 +( 1341 2029 576 ) ( 1341 2029 448 ) ( 1362 2179 576 ) bricks/c_tn_m3 -18 64 0 1 1 0 0 0 +} +// brush 443 +{ +( 768 2896 576 ) ( 768 3264 576 ) ( 896 3264 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 768 2864 448 ) ( 806 2864 448 ) ( 806 2864 432 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 811 2912 576 ) ( 811 2912 448 ) ( 806 2864 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 768 2896 496 ) ( 768 2896 336 ) ( 768 3264 336 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 811 2912 448 ) ( 811 2912 576 ) ( 768 2912 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 808 1056 448 ) ( 768 1072 448 ) ( 768 1040 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 444 +{ +( 864 2880 576 ) ( 864 3248 576 ) ( 992 3248 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 806 2864 512 ) ( 880 2848 512 ) ( 880 2848 496 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 894 2895 576 ) ( 894 2895 448 ) ( 880 2848 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 811 2912 448 ) ( 811 2912 576 ) ( 806 2864 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 811 2912 576 ) ( 811 2912 448 ) ( 894 2895 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 884 1056 448 ) ( 806 1072 448 ) ( 806 1040 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 445 +{ +( 1020 2848 576 ) ( 1020 3216 576 ) ( 1148 3216 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 880 2848 368 ) ( 940 2822 368 ) ( 940 2822 352 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 963 2864 576 ) ( 963 2864 448 ) ( 940 2822 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 894 2895 448 ) ( 894 2895 576 ) ( 880 2848 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 894 2895 576 ) ( 894 2895 448 ) ( 963 2864 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 948 1056 448 ) ( 880 1072 448 ) ( 880 1040 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 446 +{ +( 1152 2792 576 ) ( 1152 3160 576 ) ( 1280 3160 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 940 2822 512 ) ( 1006 2778 512 ) ( 1006 2778 496 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1036 2817 576 ) ( 1036 2817 448 ) ( 1006 2778 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 963 2864 448 ) ( 963 2864 576 ) ( 940 2822 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 963 2864 576 ) ( 963 2864 448 ) ( 1036 2817 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1016 1056 448 ) ( 940 1072 448 ) ( 940 1040 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 447 +{ +( 1432 3008 576 ) ( 1432 2880 576 ) ( 1064 2880 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1094 2668 496 ) ( 1050 2734 496 ) ( 1050 2734 512 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1089 2764 448 ) ( 1089 2764 576 ) ( 1050 2734 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1136 2691 576 ) ( 1136 2691 448 ) ( 1094 2668 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1089 2764 576 ) ( 1089 2764 448 ) ( 1136 2691 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1108 1056 448 ) ( 1050 1072 448 ) ( 1050 1040 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 448 +{ +( 1488 2876 576 ) ( 1488 2748 576 ) ( 1120 2748 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1120 2608 432 ) ( 1094 2668 432 ) ( 1094 2668 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1136 2691 448 ) ( 1136 2691 576 ) ( 1094 2668 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1167 2622 576 ) ( 1167 2622 448 ) ( 1120 2608 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1136 2691 576 ) ( 1136 2691 448 ) ( 1167 2622 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1136 1056 448 ) ( 1094 1072 448 ) ( 1094 1040 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 449 +{ +( 1165 2543 448 ) ( 1165 2583 448 ) ( 1133 2583 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1133 2583 576 ) ( 1165 2583 576 ) ( 1165 2543 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1136 2534 576 ) ( 1136 2534 448 ) ( 1120 2608 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1136 2534 448 ) ( 1136 2534 576 ) ( 1184 2539 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1167 2622 576 ) ( 1167 2622 448 ) ( 1184 2539 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1167 2622 448 ) ( 1167 2622 576 ) ( 1120 2608 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 450 +{ +( 1184 2539 576 ) ( 1229 2639 576 ) ( 1248 2546 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1248 2546 576 ) ( 1184 2539 448 ) ( 1184 2539 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1248 2546 576 ) ( 1229 2639 576 ) ( 1184 2539 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1184 2539 448 ) ( 1229 2639 576 ) ( 1184 2539 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 451 +{ +( 1165 2543 448 ) ( 1165 2583 448 ) ( 1133 2583 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1133 2583 576 ) ( 1165 2583 576 ) ( 1165 2543 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1167 2622 448 ) ( 1167 2622 576 ) ( 1184 2539 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1167 2622 576 ) ( 1167 2622 448 ) ( 1229 2639 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1248 2546 576 ) ( 1229 2639 576 ) ( 1184 2539 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1229 2639 576 ) ( 1184 2539 448 ) ( 1184 2539 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 452 +{ +( 1167 2622 576 ) ( 1192 2722 576 ) ( 1229 2639 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1229 2639 576 ) ( 1167 2622 448 ) ( 1167 2622 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1192 2722 576 ) ( 1167 2622 448 ) ( 1229 2639 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1167 2622 576 ) ( 1167 2622 448 ) ( 1192 2722 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 453 +{ +( 1134 2612 448 ) ( 1134 2652 448 ) ( 1102 2652 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1136 2691 576 ) ( 1192 2722 576 ) ( 1167 2622 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1167 2622 576 ) ( 1167 2622 448 ) ( 1136 2691 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1136 2691 448 ) ( 1192 2722 576 ) ( 1136 2691 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1167 2622 448 ) ( 1192 2722 576 ) ( 1136 2691 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1167 2622 576 ) ( 1192 2722 576 ) ( 1167 2622 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 454 +{ +( 1087 2685 448 ) ( 1087 2725 448 ) ( 1055 2725 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1089 2764 576 ) ( 1140 2803 576 ) ( 1120 2695 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1136 2691 576 ) ( 1136 2691 448 ) ( 1089 2764 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1089 2764 448 ) ( 1140 2803 576 ) ( 1089 2764 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1089 2764 448 ) ( 1136 2691 448 ) ( 1140 2803 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1140 2803 576 ) ( 1136 2691 448 ) ( 1136 2691 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 455 +{ +( 1136 2691 576 ) ( 1140 2803 576 ) ( 1192 2722 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1136 2691 576 ) ( 1192 2722 576 ) ( 1136 2691 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1192 2722 576 ) ( 1140 2803 576 ) ( 1136 2691 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1136 2691 448 ) ( 1140 2803 576 ) ( 1136 2691 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 456 +{ +( 1352 3132 576 ) ( 1352 3004 576 ) ( 984 3004 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1050 2734 352 ) ( 1006 2778 352 ) ( 1006 2778 368 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1036 2817 448 ) ( 1036 2817 576 ) ( 1006 2778 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1089 2764 576 ) ( 1089 2764 448 ) ( 1050 2734 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1036 2817 576 ) ( 1036 2817 448 ) ( 1089 2764 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1064 1056 448 ) ( 1006 1072 448 ) ( 1006 1040 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 457 +{ +( 1088 2764 576 ) ( 1075 2868 576 ) ( 1140 2803 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1140 2803 576 ) ( 1089 2764 448 ) ( 1089 2764 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1075 2868 576 ) ( 1089 2764 448 ) ( 1140 2803 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1089 2764 576 ) ( 1089 2764 448 ) ( 1075 2868 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 458 +{ +( 1034 2738 448 ) ( 1034 2778 448 ) ( 1002 2778 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1036 2817 576 ) ( 1075 2868 576 ) ( 1083 2744 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1089 2764 576 ) ( 1089 2764 448 ) ( 1036 2817 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1036 2817 448 ) ( 1075 2868 576 ) ( 1036 2817 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1036 2817 448 ) ( 1089 2764 448 ) ( 1075 2868 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1075 2868 576 ) ( 1089 2764 448 ) ( 1089 2764 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 459 +{ +( 994 2920 576 ) ( 1075 2868 576 ) ( 963 2864 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 963 2864 448 ) ( 994 2920 576 ) ( 963 2864 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 963 2864 448 ) ( 1075 2868 576 ) ( 994 2920 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 963 2864 576 ) ( 1075 2868 576 ) ( 963 2864 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 460 +{ +( 997 2783 448 ) ( 997 2815 448 ) ( 957 2815 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 967 2848 576 ) ( 1075 2868 576 ) ( 1036 2817 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1036 2817 448 ) ( 963 2864 448 ) ( 963 2864 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1036 2817 576 ) ( 1075 2868 576 ) ( 1036 2817 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1075 2868 576 ) ( 963 2864 448 ) ( 1036 2817 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 963 2864 576 ) ( 963 2864 448 ) ( 1075 2868 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 461 +{ +( 924 2830 448 ) ( 924 2862 448 ) ( 884 2862 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 894 2895 576 ) ( 994 2920 576 ) ( 963 2864 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 963 2864 448 ) ( 894 2895 448 ) ( 894 2895 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 963 2864 576 ) ( 994 2920 576 ) ( 963 2864 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 963 2864 448 ) ( 994 2920 576 ) ( 894 2895 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 894 2895 448 ) ( 994 2920 576 ) ( 894 2895 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 462 +{ +( 911 2957 576 ) ( 994 2920 576 ) ( 894 2895 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 894 2895 576 ) ( 894 2895 448 ) ( 911 2957 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 911 2957 576 ) ( 894 2895 448 ) ( 994 2920 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 994 2920 576 ) ( 894 2895 448 ) ( 894 2895 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 463 +{ +( 855 2861 448 ) ( 855 2893 448 ) ( 815 2893 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 815 2893 576 ) ( 855 2893 576 ) ( 855 2861 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 811 2912 576 ) ( 894 2895 576 ) ( 894 2895 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 911 2957 448 ) ( 894 2895 448 ) ( 894 2895 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 811 2912 448 ) ( 911 2957 576 ) ( 818 2976 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 811 2912 576 ) ( 811 2912 448 ) ( 911 2957 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 464 +{ +( 818 2976 576 ) ( 911 2957 576 ) ( 811 2912 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 811 2912 576 ) ( 811 2912 448 ) ( 818 2976 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 811 2912 448 ) ( 911 2957 576 ) ( 818 2976 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 811 2912 576 ) ( 911 2957 576 ) ( 811 2912 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 465 +{ +( 768 2976 576 ) ( 818 2976 576 ) ( 811 2912 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 768 2896 448 ) ( 768 2896 576 ) ( 768 2864 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 811 2912 576 ) ( 818 2976 576 ) ( 811 2912 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 792 2912 576 ) ( 808 2912 448 ) ( 776 2912 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 811 2912 448 ) ( 818 2976 576 ) ( 768 2976 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 466 +{ +( 1520 2720 576 ) ( 1520 2592 576 ) ( 1152 2592 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1473 2718 576 ) ( 1473 2718 448 ) ( 1520 2734 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1552 2574 448 ) ( 1520 2734 448 ) ( 1520 2734 432 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1504 2569 448 ) ( 1504 2569 576 ) ( 1552 2574 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1504 2569 576 ) ( 1504 2569 448 ) ( 1473 2718 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1552 3208 448 ) ( 1504 3224 448 ) ( 1504 3192 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 467 +{ +( 1488 2876 576 ) ( 1488 2748 576 ) ( 1120 2748 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1419 2844 576 ) ( 1419 2844 448 ) ( 1462 2868 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1520 2734 448 ) ( 1462 2868 448 ) ( 1462 2868 432 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1473 2718 448 ) ( 1473 2718 576 ) ( 1520 2734 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1473 2718 576 ) ( 1473 2718 448 ) ( 1419 2844 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1520 3208 448 ) ( 1448 3224 448 ) ( 1448 3192 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 468 +{ +( 1432 3008 576 ) ( 1432 2880 576 ) ( 1064 2880 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1342 2963 576 ) ( 1342 2963 448 ) ( 1380 2994 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1462 2868 448 ) ( 1380 2994 448 ) ( 1380 2994 432 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1419 2844 448 ) ( 1419 2844 576 ) ( 1462 2868 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1419 2844 576 ) ( 1419 2844 448 ) ( 1342 2963 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1462 3208 448 ) ( 1368 3224 448 ) ( 1368 3192 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 469 +{ +( 1380 3096 576 ) ( 1380 2994 576 ) ( 1256 2994 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1342 2963 576 ) ( 1342 2963 448 ) ( 1235 3070 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1235 3070 576 ) ( 1235 3070 448 ) ( 1266 3108 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1380 2994 592 ) ( 1266 3108 592 ) ( 1266 3108 432 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1342 2963 448 ) ( 1342 2963 576 ) ( 1380 2994 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1380 3208 448 ) ( 1256 3224 448 ) ( 1256 3192 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 470 +{ +( 1152 2792 576 ) ( 1152 3160 576 ) ( 1280 3160 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1235 3070 448 ) ( 1235 3070 576 ) ( 1266 3108 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1140 3190 576 ) ( 1266 3108 576 ) ( 1266 3108 592 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1116 3147 576 ) ( 1116 3147 448 ) ( 1140 3190 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1235 3070 576 ) ( 1235 3070 448 ) ( 1116 3147 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1266 3208 448 ) ( 1132 3224 448 ) ( 1132 3192 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 471 +{ +( 1020 2848 576 ) ( 1020 3216 576 ) ( 1148 3216 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1116 3147 448 ) ( 1116 3147 576 ) ( 1140 3190 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1006 3248 576 ) ( 1140 3190 576 ) ( 1140 3190 592 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 990 3201 576 ) ( 990 3201 448 ) ( 1006 3248 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1116 3147 576 ) ( 1116 3147 448 ) ( 990 3201 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1140 3208 448 ) ( 1000 3224 448 ) ( 1000 3192 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 472 +{ +( 864 2880 576 ) ( 864 3248 576 ) ( 992 3248 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 990 3201 448 ) ( 990 3201 576 ) ( 1006 3248 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 846 3280 496 ) ( 1006 3248 496 ) ( 1006 3248 512 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 841 3232 576 ) ( 841 3232 448 ) ( 846 3280 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 990 3201 576 ) ( 990 3201 448 ) ( 841 3232 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1006 3208 448 ) ( 844 3224 448 ) ( 844 3192 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 473 +{ +( 768 2896 576 ) ( 768 3264 576 ) ( 896 3264 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 841 3232 448 ) ( 841 3232 576 ) ( 846 3280 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 768 3280 496 ) ( 846 3280 496 ) ( 846 3280 512 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 768 2896 640 ) ( 768 2896 480 ) ( 768 3264 480 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 841 3232 576 ) ( 841 3232 448 ) ( 768 3232 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 846 3208 448 ) ( 768 3224 448 ) ( 768 3192 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 474 +{ +( 1440 2562 576 ) ( 1412 2697 576 ) ( 1473 2718 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1473 2718 448 ) ( 1412 2697 576 ) ( 1440 2562 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1473 2718 576 ) ( 1412 2697 576 ) ( 1473 2718 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1473 2718 448 ) ( 1440 2562 576 ) ( 1473 2718 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 475 +{ +( 1504 2569 576 ) ( 1440 2562 576 ) ( 1504 2681 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1504 2569 448 ) ( 1473 2718 448 ) ( 1440 2562 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1504 2569 448 ) ( 1440 2562 576 ) ( 1504 2569 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1473 2718 576 ) ( 1473 2718 448 ) ( 1504 2569 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1440 2562 576 ) ( 1473 2718 448 ) ( 1473 2718 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 476 +{ +( 1473 2718 576 ) ( 1412 2697 576 ) ( 1442 2867 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1473 2718 448 ) ( 1419 2844 448 ) ( 1412 2697 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1473 2718 448 ) ( 1412 2697 576 ) ( 1473 2718 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1419 2844 576 ) ( 1419 2844 448 ) ( 1473 2718 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1412 2697 576 ) ( 1419 2844 448 ) ( 1419 2844 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 477 +{ +( 1412 2697 576 ) ( 1362 2813 576 ) ( 1419 2844 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1419 2844 448 ) ( 1362 2813 576 ) ( 1412 2697 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1419 2844 576 ) ( 1362 2813 576 ) ( 1419 2844 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1419 2844 448 ) ( 1412 2697 576 ) ( 1419 2844 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 478 +{ +( 1342 2963 576 ) ( 1362 2813 576 ) ( 1292 2922 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1292 2922 576 ) ( 1362 2813 576 ) ( 1342 2963 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1342 2963 576 ) ( 1292 2922 576 ) ( 1342 2963 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1342 2963 448 ) ( 1362 2813 576 ) ( 1342 2963 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 479 +{ +( 1419 2844 576 ) ( 1362 2813 576 ) ( 1365 2970 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1419 2844 448 ) ( 1342 2963 448 ) ( 1362 2813 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1419 2844 448 ) ( 1362 2813 576 ) ( 1419 2844 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1342 2963 576 ) ( 1342 2963 448 ) ( 1419 2844 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1362 2813 576 ) ( 1342 2963 448 ) ( 1342 2963 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 480 +{ +( 1242 3093 576 ) ( 1085 3090 576 ) ( 1116 3147 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1085 3090 576 ) ( 1235 3070 448 ) ( 1116 3147 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1116 3147 576 ) ( 1085 3090 576 ) ( 1116 3147 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1116 3147 448 ) ( 1235 3070 448 ) ( 1235 3070 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1235 3070 576 ) ( 1235 3070 448 ) ( 1085 3090 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 481 +{ +( 1194 3020 576 ) ( 1085 3090 576 ) ( 1235 3070 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1235 3070 448 ) ( 1085 3090 576 ) ( 1194 3020 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1235 3070 448 ) ( 1194 3020 576 ) ( 1235 3070 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1235 3070 576 ) ( 1085 3090 576 ) ( 1235 3070 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 482 +{ +( 1116 3147 576 ) ( 1085 3090 576 ) ( 969 3140 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 969 3140 576 ) ( 1085 3090 576 ) ( 1116 3147 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1116 3147 448 ) ( 1085 3090 576 ) ( 1116 3147 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1116 3147 576 ) ( 969 3140 576 ) ( 1116 3147 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 483 +{ +( 1139 3170 576 ) ( 969 3140 576 ) ( 990 3201 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 969 3140 576 ) ( 1116 3147 448 ) ( 990 3201 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 990 3201 576 ) ( 969 3140 576 ) ( 990 3201 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 990 3201 448 ) ( 1116 3147 448 ) ( 1116 3147 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1116 3147 576 ) ( 1116 3147 448 ) ( 969 3140 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 484 +{ +( 953 3232 576 ) ( 834 3168 576 ) ( 841 3232 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 834 3168 576 ) ( 990 3201 448 ) ( 841 3232 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 841 3232 576 ) ( 834 3168 576 ) ( 841 3232 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 841 3232 448 ) ( 990 3201 448 ) ( 990 3201 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 990 3201 576 ) ( 990 3201 448 ) ( 834 3168 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 485 +{ +( 990 3201 576 ) ( 969 3140 576 ) ( 834 3168 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 834 3168 576 ) ( 969 3140 576 ) ( 990 3201 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 990 3201 448 ) ( 969 3140 576 ) ( 990 3201 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 990 3201 576 ) ( 834 3168 576 ) ( 990 3201 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 486 +{ +( 841 3232 576 ) ( 834 3168 576 ) ( 768 3168 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 841 3232 448 ) ( 834 3168 576 ) ( 841 3232 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 768 3168 576 ) ( 834 3168 576 ) ( 841 3232 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 768 3268 576 ) ( 768 3256 448 ) ( 768 3280 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 780 3232 576 ) ( 768 3232 448 ) ( 792 3232 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 487 +{ +( 1342 2963 576 ) ( 1292 2922 576 ) ( 1265 3082 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1342 2963 448 ) ( 1235 3070 448 ) ( 1292 2922 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1342 2963 448 ) ( 1292 2922 576 ) ( 1342 2963 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1235 3070 576 ) ( 1235 3070 448 ) ( 1342 2963 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1292 2922 576 ) ( 1235 3070 448 ) ( 1235 3070 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 488 +{ +( 1292 2922 576 ) ( 1194 3020 576 ) ( 1235 3070 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 1235 3070 448 ) ( 1194 3020 576 ) ( 1292 2922 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1235 3070 576 ) ( 1194 3020 576 ) ( 1235 3070 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 1235 3070 448 ) ( 1292 2922 576 ) ( 1235 3070 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 489 +{ +( -874 3020 576 ) ( -972 2922 576 ) ( -1022 2963 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1022 2963 448 ) ( -972 2922 576 ) ( -874 3020 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -1022 2963 576 ) ( -972 2922 576 ) ( -1022 2963 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -1022 2963 448 ) ( -874 3020 576 ) ( -1022 2963 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 490 +{ +( -915 3070 576 ) ( -874 3020 576 ) ( -1034 2993 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -915 3070 448 ) ( -1022 2963 448 ) ( -874 3020 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -915 3070 448 ) ( -874 3020 576 ) ( -915 3070 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -1022 2963 576 ) ( -1022 2963 448 ) ( -915 3070 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -874 3020 576 ) ( -1022 2963 448 ) ( -1022 2963 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 491 +{ +( -1184 2569 576 ) ( -1120 2562 576 ) ( -1120 2496 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1184 2569 448 ) ( -1120 2562 576 ) ( -1184 2569 576 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1120 2496 576 ) ( -1120 2562 576 ) ( -1184 2569 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1220 2496 576 ) ( -1208 2496 448 ) ( -1232 2496 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1184 2508 576 ) ( -1184 2496 448 ) ( -1184 2520 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +} +// brush 492 +{ +( -1153 2718 576 ) ( -1092 2697 576 ) ( -1120 2562 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1120 2562 576 ) ( -1092 2697 576 ) ( -1153 2718 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1153 2718 448 ) ( -1092 2697 576 ) ( -1153 2718 576 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1153 2718 576 ) ( -1120 2562 576 ) ( -1153 2718 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +} +// brush 493 +{ +( -1184 2681 576 ) ( -1120 2562 576 ) ( -1184 2569 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1120 2562 576 ) ( -1153 2718 448 ) ( -1184 2569 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1184 2569 576 ) ( -1120 2562 576 ) ( -1184 2569 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1184 2569 448 ) ( -1153 2718 448 ) ( -1153 2718 576 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1153 2718 576 ) ( -1153 2718 448 ) ( -1120 2562 576 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +} +// brush 494 +{ +( -1122 2867 576 ) ( -1092 2697 576 ) ( -1153 2718 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1092 2697 576 ) ( -1099 2844 448 ) ( -1153 2718 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1153 2718 576 ) ( -1092 2697 576 ) ( -1153 2718 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1153 2718 448 ) ( -1099 2844 448 ) ( -1099 2844 576 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1099 2844 576 ) ( -1099 2844 448 ) ( -1092 2697 576 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +} +// brush 495 +{ +( -1099 2844 576 ) ( -1042 2813 576 ) ( -1092 2697 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1092 2697 576 ) ( -1042 2813 576 ) ( -1099 2844 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1099 2844 448 ) ( -1042 2813 576 ) ( -1099 2844 576 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1099 2844 576 ) ( -1092 2697 576 ) ( -1099 2844 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +} +// brush 496 +{ +( -972 2922 576 ) ( -1042 2813 576 ) ( -1022 2963 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1022 2963 448 ) ( -1042 2813 576 ) ( -972 2922 576 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1022 2963 448 ) ( -972 2922 576 ) ( -1022 2963 576 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1022 2963 576 ) ( -1042 2813 576 ) ( -1022 2963 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +} +// brush 497 +{ +( -1045 2970 576 ) ( -1042 2813 576 ) ( -1099 2844 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1042 2813 576 ) ( -1022 2963 448 ) ( -1099 2844 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1099 2844 576 ) ( -1042 2813 576 ) ( -1099 2844 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1099 2844 448 ) ( -1022 2963 448 ) ( -1022 2963 576 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1022 2963 576 ) ( -1022 2963 448 ) ( -1042 2813 576 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +} +// brush 498 +{ +( -796 3147 576 ) ( -765 3090 576 ) ( -922 3093 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -796 3147 448 ) ( -915 3070 448 ) ( -765 3090 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -796 3147 448 ) ( -765 3090 576 ) ( -796 3147 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -915 3070 576 ) ( -915 3070 448 ) ( -796 3147 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -765 3090 576 ) ( -915 3070 448 ) ( -915 3070 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 499 +{ +( -915 3070 576 ) ( -765 3090 576 ) ( -874 3020 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -874 3020 576 ) ( -765 3090 576 ) ( -915 3070 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -915 3070 576 ) ( -874 3020 576 ) ( -915 3070 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -915 3070 448 ) ( -765 3090 576 ) ( -915 3070 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 500 +{ +( -649 3140 576 ) ( -765 3090 576 ) ( -796 3147 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -796 3147 448 ) ( -765 3090 576 ) ( -649 3140 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -796 3147 576 ) ( -765 3090 576 ) ( -796 3147 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -796 3147 448 ) ( -649 3140 576 ) ( -796 3147 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 501 +{ +( -670 3201 576 ) ( -649 3140 576 ) ( -819 3170 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -670 3201 448 ) ( -796 3147 448 ) ( -649 3140 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -670 3201 448 ) ( -649 3140 576 ) ( -670 3201 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -796 3147 576 ) ( -796 3147 448 ) ( -670 3201 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -649 3140 576 ) ( -796 3147 448 ) ( -796 3147 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 502 +{ +( -521 3232 576 ) ( -514 3168 576 ) ( -633 3232 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -521 3232 448 ) ( -670 3201 448 ) ( -514 3168 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -521 3232 448 ) ( -514 3168 576 ) ( -521 3232 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -670 3201 576 ) ( -670 3201 448 ) ( -521 3232 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -514 3168 576 ) ( -670 3201 448 ) ( -670 3201 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 503 +{ +( -514 3168 576 ) ( -649 3140 576 ) ( -670 3201 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -670 3201 448 ) ( -649 3140 576 ) ( -514 3168 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -670 3201 576 ) ( -649 3140 576 ) ( -670 3201 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -670 3201 448 ) ( -514 3168 576 ) ( -670 3201 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 504 +{ +( -448 3168 576 ) ( -514 3168 576 ) ( -521 3232 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -521 3232 576 ) ( -514 3168 576 ) ( -521 3232 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -521 3232 448 ) ( -514 3168 576 ) ( -448 3168 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -448 3280 448 ) ( -448 3256 448 ) ( -448 3268 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -472 3232 448 ) ( -448 3232 448 ) ( -460 3232 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 505 +{ +( -448 3232 448 ) ( 768 3232 448 ) ( 768 3280 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 768 3168 576 ) ( -448 3168 576 ) ( -448 3280 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( 768 2880 464 ) ( 768 3296 464 ) ( 768 3296 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -264 3280 464 ) ( -448 3280 464 ) ( -448 3280 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -448 3168 576 ) ( 768 3168 576 ) ( 768 3232 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -448 3256 448 ) ( -448 3280 448 ) ( -448 3268 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 506 +{ +( -848 2496 576 ) ( -1216 2496 576 ) ( -1216 2624 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1184 2569 448 ) ( -1184 2569 576 ) ( -1232 2574 576 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1232 2496 496 ) ( -1232 2574 496 ) ( -1232 2574 512 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -848 2496 640 ) ( -848 2496 480 ) ( -1216 2496 480 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1184 2569 576 ) ( -1184 2569 448 ) ( -1184 2496 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1160 2574 448 ) ( -1176 2496 448 ) ( -1144 2496 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +} +// brush 507 +{ +( -832 2592 576 ) ( -1200 2592 576 ) ( -1200 2720 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1153 2718 448 ) ( -1153 2718 576 ) ( -1200 2734 576 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1232 2574 496 ) ( -1200 2734 496 ) ( -1200 2734 512 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1184 2569 576 ) ( -1184 2569 448 ) ( -1232 2574 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1153 2718 576 ) ( -1153 2718 448 ) ( -1184 2569 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1160 2734 448 ) ( -1176 2572 448 ) ( -1144 2572 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +} +// brush 508 +{ +( -800 2748 576 ) ( -1168 2748 576 ) ( -1168 2876 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1099 2844 448 ) ( -1099 2844 576 ) ( -1142 2868 576 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1200 2734 576 ) ( -1142 2868 576 ) ( -1142 2868 592 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1153 2718 576 ) ( -1153 2718 448 ) ( -1200 2734 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1099 2844 576 ) ( -1099 2844 448 ) ( -1153 2718 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1160 2868 448 ) ( -1176 2728 448 ) ( -1144 2728 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +} +// brush 509 +{ +( -744 2880 576 ) ( -1112 2880 576 ) ( -1112 3008 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1022 2963 448 ) ( -1022 2963 576 ) ( -1060 2994 576 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1142 2868 576 ) ( -1060 2994 576 ) ( -1060 2994 592 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1099 2844 576 ) ( -1099 2844 448 ) ( -1142 2868 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1022 2963 576 ) ( -1022 2963 448 ) ( -1099 2844 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1160 2994 448 ) ( -1176 2860 448 ) ( -1144 2860 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +} +// brush 510 +{ +( -1048 3108 576 ) ( -946 3108 576 ) ( -946 2984 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -915 3070 576 ) ( -915 3070 448 ) ( -1022 2963 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1022 2963 576 ) ( -1022 2963 448 ) ( -1060 2994 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -946 3108 592 ) ( -1060 2994 592 ) ( -1060 2994 432 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -915 3070 448 ) ( -915 3070 576 ) ( -946 3108 576 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1160 3108 448 ) ( -1176 2984 448 ) ( -1144 2984 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +} +// brush 511 +{ +( -960 3160 576 ) ( -832 3160 576 ) ( -832 2792 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -915 3070 576 ) ( -915 3070 448 ) ( -946 3108 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -820 3190 448 ) ( -946 3108 448 ) ( -946 3108 432 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -796 3147 448 ) ( -796 3147 576 ) ( -820 3190 576 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -796 3147 576 ) ( -796 3147 448 ) ( -915 3070 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1160 3190 448 ) ( -1176 3096 448 ) ( -1144 3096 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +} +// brush 512 +{ +( -828 3216 576 ) ( -700 3216 576 ) ( -700 2848 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -796 3147 576 ) ( -796 3147 448 ) ( -820 3190 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -686 3248 448 ) ( -820 3190 448 ) ( -820 3190 432 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -670 3201 448 ) ( -670 3201 576 ) ( -686 3248 576 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -670 3201 576 ) ( -670 3201 448 ) ( -796 3147 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1160 3248 448 ) ( -1176 3176 448 ) ( -1144 3176 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +} +// brush 513 +{ +( -672 3248 576 ) ( -544 3248 576 ) ( -544 2880 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -670 3201 576 ) ( -670 3201 448 ) ( -686 3248 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -526 3280 448 ) ( -686 3248 448 ) ( -686 3248 432 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -521 3232 448 ) ( -521 3232 576 ) ( -526 3280 576 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -521 3232 576 ) ( -521 3232 448 ) ( -670 3201 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1160 3280 448 ) ( -1176 3232 448 ) ( -1144 3232 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +} +// brush 514 +{ +( -264 3664 448 ) ( -448 3664 448 ) ( -448 3248 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -448 3248 576 ) ( -448 3664 576 ) ( -264 3664 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -521 3232 448 ) ( -521 3232 576 ) ( -448 3232 576 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -526 3280 576 ) ( -526 3280 368 ) ( 768 3280 368 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -521 3232 576 ) ( -521 3232 448 ) ( -526 3280 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -448 3280 368 ) ( -448 3272 368 ) ( -448 3276 576 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +} +// brush 515 +{ +( -264 3664 240 ) ( -448 3664 240 ) ( -448 3248 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -448 3248 448 ) ( -448 3664 448 ) ( -264 3664 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -448 3264 256 ) ( -264 3264 256 ) ( -264 3264 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 846 3280 448 ) ( 846 3280 240 ) ( 844 3264 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -526 3280 448 ) ( -526 3280 240 ) ( 846 3280 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -526 3280 240 ) ( -526 3280 448 ) ( -524 3264 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 516 +{ +( -1184 2048 448 ) ( -1184 2496 448 ) ( -1232 2496 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1120 2496 576 ) ( -1120 2048 576 ) ( -1232 2048 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1232 1280 464 ) ( -1232 512 464 ) ( -1232 512 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1112 2048 448 ) ( -1232 2048 448 ) ( -1172 2048 464 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1120 2048 576 ) ( -1120 2496 576 ) ( -1184 2496 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1232 2496 448 ) ( -1216 2496 448 ) ( -1224 2496 576 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +} +// brush 517 +{ +( -816 1280 448 ) ( -1232 1280 448 ) ( -1232 512 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -928 2048 576 ) ( -928 2496 576 ) ( -816 2496 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -816 512 464 ) ( -816 1280 464 ) ( -816 1280 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -856 2496 464 ) ( -1272 2496 464 ) ( -1272 2496 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -1112 2048 448 ) ( -1232 2048 448 ) ( -1172 2048 464 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +( -928 2496 576 ) ( -928 2048 576 ) ( -864 2048 448 ) bricks/c_tn_m3 -32 64 0 1 1 0 0 0 +} +// brush 518 +{ +( -928 2496 576 ) ( -928 2546 576 ) ( -864 2539 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -848 2496 448 ) ( -848 2496 576 ) ( -816 2496 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -864 2539 576 ) ( -928 2546 576 ) ( -864 2539 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -864 2520 576 ) ( -864 2536 448 ) ( -864 2504 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -864 2539 448 ) ( -928 2546 576 ) ( -928 2496 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 519 +{ +( -928 2546 576 ) ( -909 2639 576 ) ( -864 2539 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -864 2539 576 ) ( -864 2539 448 ) ( -928 2546 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -864 2539 448 ) ( -909 2639 576 ) ( -928 2546 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -864 2539 576 ) ( -909 2639 576 ) ( -864 2539 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 520 +{ +( -813 2583 448 ) ( -845 2583 448 ) ( -845 2543 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -845 2543 576 ) ( -845 2583 576 ) ( -813 2583 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -864 2539 576 ) ( -847 2622 576 ) ( -847 2622 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -909 2639 448 ) ( -847 2622 448 ) ( -847 2622 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -864 2539 448 ) ( -909 2639 576 ) ( -928 2546 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -864 2539 576 ) ( -864 2539 448 ) ( -909 2639 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 521 +{ +( -909 2639 576 ) ( -872 2722 576 ) ( -847 2622 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -847 2622 576 ) ( -847 2622 448 ) ( -909 2639 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -909 2639 576 ) ( -847 2622 448 ) ( -872 2722 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -872 2722 576 ) ( -847 2622 448 ) ( -847 2622 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 522 +{ +( -782 2652 448 ) ( -814 2652 448 ) ( -814 2612 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -847 2622 576 ) ( -872 2722 576 ) ( -816 2691 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -816 2691 448 ) ( -847 2622 448 ) ( -847 2622 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -816 2691 576 ) ( -872 2722 576 ) ( -816 2691 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -816 2691 448 ) ( -872 2722 576 ) ( -847 2622 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -847 2622 448 ) ( -872 2722 576 ) ( -847 2622 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 523 +{ +( -735 2725 448 ) ( -767 2725 448 ) ( -767 2685 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -800 2695 576 ) ( -820 2803 576 ) ( -769 2764 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -769 2764 448 ) ( -816 2691 448 ) ( -816 2691 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -769 2764 576 ) ( -820 2803 576 ) ( -769 2764 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -820 2803 576 ) ( -816 2691 448 ) ( -769 2764 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -816 2691 576 ) ( -816 2691 448 ) ( -820 2803 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 524 +{ +( -872 2722 576 ) ( -820 2803 576 ) ( -816 2691 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -816 2691 448 ) ( -872 2722 576 ) ( -816 2691 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -816 2691 448 ) ( -820 2803 576 ) ( -872 2722 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -816 2691 576 ) ( -820 2803 576 ) ( -816 2691 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 525 +{ +( -690 2762 448 ) ( -730 2762 448 ) ( -730 2730 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -769 2764 576 ) ( -820 2803 576 ) ( -696 2811 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -716 2817 576 ) ( -716 2817 448 ) ( -769 2764 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -769 2764 448 ) ( -820 2803 576 ) ( -769 2764 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -769 2764 448 ) ( -716 2817 448 ) ( -820 2803 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -820 2803 576 ) ( -716 2817 448 ) ( -716 2817 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 526 +{ +( -716 2816 576 ) ( -820 2803 576 ) ( -755 2868 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -755 2868 576 ) ( -716 2817 448 ) ( -716 2817 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -820 2803 576 ) ( -716 2817 448 ) ( -755 2868 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -716 2817 576 ) ( -716 2817 448 ) ( -820 2803 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 527 +{ +( -1084 3080 576 ) ( -956 3080 576 ) ( -956 2712 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -686 2778 352 ) ( -730 2734 352 ) ( -730 2734 368 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -769 2764 448 ) ( -769 2764 576 ) ( -730 2734 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -716 2817 576 ) ( -716 2817 448 ) ( -686 2778 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -769 2764 576 ) ( -769 2764 448 ) ( -716 2817 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 992 2792 448 ) ( 976 2734 448 ) ( 1008 2734 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 528 +{ +( -643 2864 576 ) ( -755 2868 576 ) ( -674 2920 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -643 2864 576 ) ( -674 2920 576 ) ( -643 2864 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -674 2920 576 ) ( -755 2868 576 ) ( -643 2864 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -643 2864 448 ) ( -755 2868 576 ) ( -643 2864 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 529 +{ +( -637 2815 448 ) ( -677 2815 448 ) ( -677 2783 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -716 2817 576 ) ( -755 2868 576 ) ( -647 2848 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -643 2864 576 ) ( -643 2864 448 ) ( -716 2817 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -716 2817 448 ) ( -755 2868 576 ) ( -716 2817 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -716 2817 448 ) ( -643 2864 448 ) ( -755 2868 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -755 2868 576 ) ( -643 2864 448 ) ( -643 2864 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 530 +{ +( -564 2862 448 ) ( -604 2862 448 ) ( -604 2830 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -643 2864 576 ) ( -674 2920 576 ) ( -574 2895 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -574 2895 576 ) ( -574 2895 448 ) ( -643 2864 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -643 2864 448 ) ( -674 2920 576 ) ( -643 2864 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -574 2895 448 ) ( -674 2920 576 ) ( -643 2864 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -574 2895 576 ) ( -674 2920 576 ) ( -574 2895 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 531 +{ +( -574 2895 576 ) ( -674 2920 576 ) ( -591 2957 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -591 2957 576 ) ( -574 2895 448 ) ( -574 2895 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -674 2920 576 ) ( -574 2895 448 ) ( -591 2957 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -574 2895 576 ) ( -574 2895 448 ) ( -674 2920 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 532 +{ +( -495 2893 448 ) ( -535 2893 448 ) ( -535 2861 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -535 2861 576 ) ( -535 2893 576 ) ( -495 2893 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -574 2895 448 ) ( -574 2895 576 ) ( -491 2912 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -574 2895 576 ) ( -574 2895 448 ) ( -591 2957 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -498 2976 576 ) ( -591 2957 576 ) ( -491 2912 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -591 2957 576 ) ( -491 2912 448 ) ( -491 2912 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 533 +{ +( -491 2912 576 ) ( -591 2957 576 ) ( -498 2976 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -498 2976 576 ) ( -491 2912 448 ) ( -491 2912 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -498 2976 576 ) ( -591 2957 576 ) ( -491 2912 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -491 2912 448 ) ( -591 2957 576 ) ( -491 2912 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 534 +{ +( -491 2912 576 ) ( -498 2976 576 ) ( -448 2976 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -448 2864 576 ) ( -448 2896 576 ) ( -448 2896 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -491 2912 448 ) ( -498 2976 576 ) ( -491 2912 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -456 2912 448 ) ( -488 2912 448 ) ( -472 2912 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -448 2976 576 ) ( -498 2976 576 ) ( -491 2912 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 535 +{ +( -448 2896 448 ) ( -488 2896 448 ) ( -488 2864 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -488 2864 576 ) ( -488 2896 576 ) ( -448 2896 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -488 2864 576 ) ( -448 2864 576 ) ( -448 2864 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -448 2864 576 ) ( -448 2896 576 ) ( -448 2896 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -491 2912 448 ) ( -491 2912 576 ) ( -486 2864 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -488 2912 448 ) ( -456 2912 448 ) ( -472 2912 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 536 +{ +( -495 2893 448 ) ( -535 2893 448 ) ( -535 2861 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -535 2861 576 ) ( -535 2893 576 ) ( -495 2893 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -486 2864 576 ) ( -486 2864 448 ) ( -560 2848 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -486 2864 448 ) ( -486 2864 576 ) ( -491 2912 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -574 2895 576 ) ( -574 2895 448 ) ( -491 2912 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -574 2895 448 ) ( -574 2895 576 ) ( -560 2848 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 537 +{ +( -828 3216 576 ) ( -700 3216 576 ) ( -700 2848 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -560 2848 432 ) ( -620 2822 432 ) ( -620 2822 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -643 2864 448 ) ( -643 2864 576 ) ( -620 2822 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -574 2895 576 ) ( -574 2895 448 ) ( -560 2848 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -643 2864 576 ) ( -643 2864 448 ) ( -574 2895 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 992 2864 448 ) ( 976 2822 448 ) ( 1008 2822 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 538 +{ +( -960 3160 576 ) ( -832 3160 576 ) ( -832 2792 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -620 2822 496 ) ( -686 2778 496 ) ( -686 2778 512 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -716 2817 448 ) ( -716 2817 576 ) ( -686 2778 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -643 2864 576 ) ( -643 2864 448 ) ( -620 2822 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -716 2817 576 ) ( -716 2817 448 ) ( -643 2864 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 992 2836 448 ) ( 976 2778 448 ) ( 1008 2778 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 539 +{ +( -744 2880 576 ) ( -1112 2880 576 ) ( -1112 3008 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -774 2668 512 ) ( -730 2734 512 ) ( -730 2734 496 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -769 2764 576 ) ( -769 2764 448 ) ( -730 2734 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -816 2691 448 ) ( -816 2691 576 ) ( -774 2668 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -816 2691 576 ) ( -816 2691 448 ) ( -769 2764 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 992 2744 448 ) ( 976 2668 448 ) ( 1008 2668 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 540 +{ +( -800 2748 576 ) ( -1168 2748 576 ) ( -1168 2876 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -800 2608 368 ) ( -774 2668 368 ) ( -774 2668 352 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -816 2691 576 ) ( -816 2691 448 ) ( -774 2668 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -847 2622 448 ) ( -847 2622 576 ) ( -800 2608 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -847 2622 576 ) ( -847 2622 448 ) ( -816 2691 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 992 2676 448 ) ( 976 2608 448 ) ( 1008 2608 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 541 +{ +( -832 2592 576 ) ( -1200 2592 576 ) ( -1200 2720 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -816 2534 512 ) ( -800 2608 512 ) ( -800 2608 496 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -847 2622 576 ) ( -847 2622 448 ) ( -800 2608 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -864 2539 448 ) ( -864 2539 576 ) ( -816 2534 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -864 2539 576 ) ( -864 2539 448 ) ( -847 2622 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 992 2612 448 ) ( 976 2534 448 ) ( 1008 2534 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 542 +{ +( -848 2496 576 ) ( -1216 2496 576 ) ( -1216 2624 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -816 2496 448 ) ( -816 2534 448 ) ( -816 2534 432 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -864 2539 576 ) ( -864 2539 448 ) ( -816 2534 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -848 2496 496 ) ( -848 2496 336 ) ( -1216 2496 336 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -864 2539 448 ) ( -864 2539 576 ) ( -864 2496 576 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 992 2536 448 ) ( 976 2496 448 ) ( 1008 2496 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 543 +{ +( 768 2912 448 ) ( -448 2912 448 ) ( -448 2864 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -440 2976 576 ) ( 776 2976 576 ) ( 768 2864 576 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -448 2864 464 ) ( -264 2864 464 ) ( -264 2864 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 768 2880 464 ) ( 768 3296 464 ) ( 768 3296 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -448 3280 464 ) ( -448 2864 464 ) ( -448 2864 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( 776 2976 576 ) ( -440 2976 576 ) ( -448 2912 448 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 544 +{ +( 2112 244 192 ) ( 2080 247 192 ) ( 2080 288 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 744 192 ) ( 2112 1096 192 ) ( 2112 1096 176 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 288 192 ) ( 2080 247 192 ) ( 2112 244 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2096 288 160 ) ( 2128 288 160 ) ( 2112 288 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 244 160 ) ( 2080 247 192 ) ( 2112 244 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 545 +{ +( 2112 500 192 ) ( 2080 503 192 ) ( 2080 576 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 848 192 ) ( 2112 1200 192 ) ( 2112 1200 176 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 576 192 ) ( 2080 503 192 ) ( 2112 500 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 608 160 ) ( 2112 608 160 ) ( 2096 608 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 352 160 ) ( 2080 352 160 ) ( 2092 352 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 546 +{ +( 2112 500 192 ) ( 2080 503 192 ) ( 2080 576 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 576 192 ) ( 2080 503 192 ) ( 2112 500 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 288 160 ) ( 2088 288 160 ) ( 2096 288 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 352 160 ) ( 2104 352 160 ) ( 2092 352 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2088 352 160 ) ( 2088 336 160 ) ( 2088 344 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 547 +{ +( 2112 500 192 ) ( 2080 503 192 ) ( 2080 576 192 ) common/li_pv_v4a 32 8 90 1 1 0 0 0 +( 2080 576 192 ) ( 2080 503 192 ) ( 2112 500 160 ) common/li_pv_v4a 32 8 90 1 1 0 0 0 +( 2104 288 160 ) ( 2088 288 160 ) ( 2096 288 192 ) common/li_pv_v4a 32 8 90 1 1 0 0 0 +( 2080 352 160 ) ( 2104 352 160 ) ( 2092 352 192 ) common/li_pv_v4a 32 8 90 1 1 0 0 0 +( 2088 336 160 ) ( 2088 352 160 ) ( 2088 344 192 ) common/li_pv_v4a 32 8 90 1 1 0 0 0 +( 2104 352 160 ) ( 2104 336 160 ) ( 2104 344 192 ) common/li_pv_v4a 32 8 90 1 1 0 0 0 +} +// brush 548 +{ +( 2112 500 192 ) ( 2080 503 192 ) ( 2080 576 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 848 192 ) ( 2112 1200 192 ) ( 2112 1200 176 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 576 192 ) ( 2080 503 192 ) ( 2112 500 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 288 160 ) ( 2088 288 160 ) ( 2096 288 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 352 160 ) ( 2104 352 160 ) ( 2092 352 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 336 160 ) ( 2104 352 160 ) ( 2104 344 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 549 +{ +( 2112 820 192 ) ( 2080 823 192 ) ( 2080 896 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1168 192 ) ( 2112 1520 192 ) ( 2112 1520 176 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 896 192 ) ( 2080 823 192 ) ( 2112 820 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 608 160 ) ( 2088 608 160 ) ( 2096 608 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 672 160 ) ( 2104 672 160 ) ( 2092 672 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 656 160 ) ( 2104 672 160 ) ( 2104 664 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 550 +{ +( 2112 820 192 ) ( 2080 823 192 ) ( 2080 896 192 ) common/li_pv_v4a 32 8 90 1 1 0 0 0 +( 2080 896 192 ) ( 2080 823 192 ) ( 2112 820 160 ) common/li_pv_v4a 32 8 90 1 1 0 0 0 +( 2104 608 160 ) ( 2088 608 160 ) ( 2096 608 192 ) common/li_pv_v4a 32 8 90 1 1 0 0 0 +( 2080 672 160 ) ( 2104 672 160 ) ( 2092 672 192 ) common/li_pv_v4a 32 8 90 1 1 0 0 0 +( 2088 656 160 ) ( 2088 672 160 ) ( 2088 664 192 ) common/li_pv_v4a 32 8 90 1 1 0 0 0 +( 2104 672 160 ) ( 2104 656 160 ) ( 2104 664 192 ) common/li_pv_v4a 32 8 90 1 1 0 0 0 +} +// brush 551 +{ +( 2112 820 192 ) ( 2080 823 192 ) ( 2080 896 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 896 192 ) ( 2080 823 192 ) ( 2112 820 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 608 160 ) ( 2088 608 160 ) ( 2096 608 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 672 160 ) ( 2104 672 160 ) ( 2092 672 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2088 672 160 ) ( 2088 656 160 ) ( 2088 664 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 552 +{ +( 2112 820 192 ) ( 2080 823 192 ) ( 2080 896 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1168 192 ) ( 2112 1520 192 ) ( 2112 1520 176 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 896 192 ) ( 2080 823 192 ) ( 2112 820 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 896 160 ) ( 2112 896 160 ) ( 2096 896 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 672 160 ) ( 2080 672 160 ) ( 2092 672 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 553 +{ +( 1760 288 192 ) ( 1760 277 192 ) ( 1728 280 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 464 192 ) ( 1728 464 160 ) ( 1728 504 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 280 160 ) ( 1760 277 192 ) ( 1760 288 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1744 288 192 ) ( 1728 288 160 ) ( 1760 288 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 280 192 ) ( 1760 277 192 ) ( 1728 280 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 554 +{ +( 1760 576 192 ) ( 1760 533 192 ) ( 1728 536 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 536 192 ) ( 1728 536 160 ) ( 1728 576 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 536 160 ) ( 1760 533 192 ) ( 1760 576 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1744 608 192 ) ( 1728 608 160 ) ( 1760 608 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 352 176 ) ( 1728 352 192 ) ( 1760 352 184 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 555 +{ +( 1760 608 192 ) ( 1760 565 192 ) ( 1728 568 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 568 192 ) ( 1728 568 160 ) ( 1728 608 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 568 160 ) ( 1760 565 192 ) ( 1760 608 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1752 288 160 ) ( 1728 288 160 ) ( 1740 288 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 352 192 ) ( 1728 352 176 ) ( 1760 352 184 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1736 352 160 ) ( 1736 336 160 ) ( 1736 344 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 556 +{ +( 1760 608 192 ) ( 1760 565 192 ) ( 1728 568 192 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1728 568 160 ) ( 1760 565 192 ) ( 1760 608 192 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1752 288 160 ) ( 1728 288 160 ) ( 1740 288 192 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1728 352 192 ) ( 1728 352 176 ) ( 1760 352 184 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1736 336 160 ) ( 1736 352 160 ) ( 1736 344 192 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1752 352 168 ) ( 1752 344 168 ) ( 1752 348 192 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 557 +{ +( 1760 608 192 ) ( 1760 565 192 ) ( 1728 568 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 568 160 ) ( 1760 565 192 ) ( 1760 608 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1752 288 160 ) ( 1728 288 160 ) ( 1740 288 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 352 192 ) ( 1728 352 176 ) ( 1760 352 184 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1752 344 168 ) ( 1752 352 168 ) ( 1752 348 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 558 +{ +( 1760 928 192 ) ( 1760 885 192 ) ( 1728 888 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 888 160 ) ( 1760 885 192 ) ( 1760 928 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1752 608 160 ) ( 1728 608 160 ) ( 1740 608 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 672 192 ) ( 1728 672 176 ) ( 1760 672 184 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1752 664 168 ) ( 1752 672 168 ) ( 1752 668 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 559 +{ +( 1760 928 192 ) ( 1760 885 192 ) ( 1728 888 192 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1728 888 160 ) ( 1760 885 192 ) ( 1760 928 192 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1752 608 160 ) ( 1728 608 160 ) ( 1740 608 192 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1728 672 192 ) ( 1728 672 176 ) ( 1760 672 184 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1736 656 160 ) ( 1736 672 160 ) ( 1736 664 192 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1752 672 168 ) ( 1752 664 168 ) ( 1752 668 192 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 560 +{ +( 1760 928 192 ) ( 1760 885 192 ) ( 1728 888 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 888 192 ) ( 1728 888 160 ) ( 1728 928 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 888 160 ) ( 1760 885 192 ) ( 1760 928 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1752 608 160 ) ( 1728 608 160 ) ( 1740 608 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 672 192 ) ( 1728 672 176 ) ( 1760 672 184 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1736 672 160 ) ( 1736 656 160 ) ( 1736 664 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 561 +{ +( 1760 896 192 ) ( 1760 853 192 ) ( 1728 856 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 856 192 ) ( 1728 856 160 ) ( 1728 896 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 856 160 ) ( 1760 853 192 ) ( 1760 896 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1744 896 192 ) ( 1728 896 160 ) ( 1760 896 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 672 176 ) ( 1728 672 192 ) ( 1760 672 184 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 562 +{ +( -1376 3104 -64 ) ( -1376 3448 -64 ) ( -1344 3448 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 3104 -64 ) ( -1344 3104 -64 ) ( -1344 3104 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1344 3104 -64 ) ( -1344 3448 -64 ) ( -1344 3448 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 3104 -64 ) ( -1344 3104 -96 ) ( -1360 3448 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 3168 -96 ) ( -1352 3168 -96 ) ( -1364 3168 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1352 3152 -96 ) ( -1352 3168 -96 ) ( -1352 3160 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 563 +{ +( -1376 3104 -64 ) ( -1376 3448 -64 ) ( -1344 3448 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1376 3104 -64 ) ( -1344 3104 -64 ) ( -1344 3104 -96 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1376 3104 -64 ) ( -1344 3104 -96 ) ( -1360 3448 -80 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1376 3168 -96 ) ( -1352 3168 -96 ) ( -1364 3168 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1368 3152 -96 ) ( -1368 3168 -96 ) ( -1368 3160 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1352 3168 -96 ) ( -1352 3152 -96 ) ( -1352 3160 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 564 +{ +( -1376 3104 -64 ) ( -1376 3448 -64 ) ( -1344 3448 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 3104 -64 ) ( -1344 3104 -64 ) ( -1344 3104 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 3104 -64 ) ( -1344 3104 -96 ) ( -1360 3448 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 3168 -96 ) ( -1352 3168 -96 ) ( -1364 3168 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1368 3168 -96 ) ( -1368 3152 -96 ) ( -1368 3160 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 565 +{ +( -1728 3104 -64 ) ( -1728 3296 -64 ) ( -1696 3296 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 3104 -96 ) ( -1696 3104 -64 ) ( -1712 3296 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 3168 -96 ) ( -1696 3168 -96 ) ( -1712 3168 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 3104 -96 ) ( -1728 3104 -96 ) ( -1712 3104 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1704 3160 -88 ) ( -1704 3168 -88 ) ( -1704 3164 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 566 +{ +( -1728 3104 -64 ) ( -1728 3296 -64 ) ( -1696 3296 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1728 3104 -96 ) ( -1696 3104 -64 ) ( -1712 3296 -80 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1728 3168 -96 ) ( -1696 3168 -96 ) ( -1712 3168 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1696 3104 -96 ) ( -1728 3104 -96 ) ( -1712 3104 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1720 3152 -96 ) ( -1720 3168 -96 ) ( -1720 3160 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1704 3168 -88 ) ( -1704 3160 -88 ) ( -1704 3164 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 567 +{ +( -1728 3104 -64 ) ( -1728 3296 -64 ) ( -1696 3296 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 3296 -64 ) ( -1728 3104 -64 ) ( -1728 3104 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 3104 -96 ) ( -1696 3104 -64 ) ( -1712 3296 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 3168 -96 ) ( -1696 3168 -96 ) ( -1712 3168 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 3104 -96 ) ( -1728 3104 -96 ) ( -1712 3104 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1720 3168 -96 ) ( -1720 3152 -96 ) ( -1720 3160 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 568 +{ +( -1665 1634 -64 ) ( -1696 1624 -96 ) ( -1611 1508 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1611 1508 -64 ) ( -1696 1624 -96 ) ( -1696 1624 -48 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1696 1340 -64 ) ( -1611 1368 -64 ) ( -1611 1312 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1646 1530 -96 ) ( -1624 1540 -96 ) ( -1635 1535 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +} +// brush 569 +{ +( -1696 1624 -96 ) ( -1640 1492 -96 ) ( -1611 1508 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1611 1508 -64 ) ( -1640 1492 -96 ) ( -1640 1492 -48 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1640 1492 -48 ) ( -1640 1492 -96 ) ( -1696 1624 -96 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1696 1624 -48 ) ( -1696 1624 -96 ) ( -1611 1508 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1696 1340 -64 ) ( -1611 1368 -64 ) ( -1611 1312 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1646 1530 -96 ) ( -1624 1540 -96 ) ( -1635 1535 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +} +// brush 570 +{ +( -1696 1624 -96 ) ( -1640 1492 -96 ) ( -1611 1508 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1640 1492 -48 ) ( -1640 1492 -96 ) ( -1696 1624 -96 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1696 1624 -48 ) ( -1696 1624 -96 ) ( -1611 1508 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1696 1340 -64 ) ( -1611 1368 -64 ) ( -1611 1312 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1656 1596 -96 ) ( -1678 1586 -96 ) ( -1667 1591 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +} +// brush 571 +{ +( -1665 1634 -64 ) ( -1696 1624 -96 ) ( -1611 1508 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1696 1624 -48 ) ( -1696 1624 -96 ) ( -1665 1634 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1611 1508 -64 ) ( -1696 1624 -96 ) ( -1696 1624 -48 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1696 1340 -64 ) ( -1611 1368 -64 ) ( -1611 1312 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1656 1596 -96 ) ( -1678 1586 -96 ) ( -1667 1591 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +} +// brush 572 +{ +( -1665 1634 -64 ) ( -1696 1624 -96 ) ( -1611 1508 -64 ) common/li_pv_v4a 4 -5 293 1 1 0 1 7000 +( -1611 1508 -64 ) ( -1696 1624 -96 ) ( -1696 1624 -48 ) common/li_pv_v4a 4 -5 293 1 1 0 1 7000 +( -1696 1340 -64 ) ( -1611 1368 -64 ) ( -1611 1312 -64 ) common/li_pv_v4a 4 -5 293 1 1 0 1 7000 +( -1624 1540 -96 ) ( -1646 1530 -96 ) ( -1635 1535 -64 ) common/li_pv_v4a 4 -5 293 1 1 0 1 7000 +( -1678 1586 -96 ) ( -1656 1596 -96 ) ( -1667 1591 -64 ) common/li_pv_v4a 4 -5 293 1 1 0 1 7000 +( -1656 1596 -86 ) ( -1628 1530 -86 ) ( -1642 1563 -64 ) common/li_pv_v4a 4 -5 293 1 1 0 1 7000 +} +// brush 573 +{ +( -1665 1634 -64 ) ( -1696 1624 -96 ) ( -1611 1508 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1696 1340 -64 ) ( -1611 1368 -64 ) ( -1611 1312 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1624 1540 -96 ) ( -1646 1530 -96 ) ( -1635 1535 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1678 1586 -96 ) ( -1656 1596 -96 ) ( -1667 1591 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1628 1530 -86 ) ( -1656 1596 -86 ) ( -1642 1563 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +} +// brush 574 +{ +( -1696 1624 -96 ) ( -1640 1492 -96 ) ( -1611 1508 -64 ) common/li_pv_v4a 4 -5 293 1 1 0 1 7000 +( -1696 1624 -48 ) ( -1696 1624 -96 ) ( -1611 1508 -64 ) common/li_pv_v4a 4 -5 293 1 1 0 1 7000 +( -1696 1340 -64 ) ( -1611 1368 -64 ) ( -1611 1312 -64 ) common/li_pv_v4a 4 -5 293 1 1 0 1 7000 +( -1624 1540 -96 ) ( -1646 1530 -96 ) ( -1635 1535 -64 ) common/li_pv_v4a 4 -5 293 1 1 0 1 7000 +( -1678 1586 -96 ) ( -1656 1596 -96 ) ( -1667 1591 -64 ) common/li_pv_v4a 4 -5 293 1 1 0 1 7000 +( -1646 1530 -96 ) ( -1674 1596 -96 ) ( -1660 1563 -64 ) common/li_pv_v4a 4 -5 293 1 1 0 1 7000 +} +// brush 575 +{ +( -1696 1624 -96 ) ( -1640 1492 -96 ) ( -1611 1508 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1640 1492 -48 ) ( -1640 1492 -96 ) ( -1696 1624 -96 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1696 1340 -64 ) ( -1611 1368 -64 ) ( -1611 1312 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1624 1540 -96 ) ( -1646 1530 -96 ) ( -1635 1535 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1678 1586 -96 ) ( -1656 1596 -96 ) ( -1667 1591 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +( -1674 1596 -96 ) ( -1646 1530 -96 ) ( -1660 1563 -64 ) bricks/c_tn_m1 15 2 293 1 1 0 0 0 +} +// brush 576 +{ +( 1280 3872 -64 ) ( 1280 3904 -64 ) ( 1520 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1520 3904 -64 ) ( 1280 3904 -64 ) ( 1280 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 3904 -64 ) ( 1280 3872 -64 ) ( 1280 3872 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 3904 -96 ) ( 1280 3872 -64 ) ( 1520 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1344 3904 -96 ) ( 1344 3888 -96 ) ( 1344 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1304 3896 -96 ) ( 1280 3896 -96 ) ( 1292 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 577 +{ +( 1280 3872 -64 ) ( 1280 3904 -64 ) ( 1520 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 3904 -64 ) ( 1280 3872 -64 ) ( 1280 3872 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 3904 -96 ) ( 1280 3872 -64 ) ( 1520 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1344 3904 -96 ) ( 1344 3888 -96 ) ( 1344 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 3880 -88 ) ( 1296 3880 -88 ) ( 1288 3880 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 578 +{ +( 1280 3872 -64 ) ( 1280 3904 -64 ) ( 1520 3904 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1280 3904 -64 ) ( 1280 3872 -64 ) ( 1280 3872 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1280 3904 -96 ) ( 1280 3872 -64 ) ( 1520 3888 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1344 3904 -96 ) ( 1344 3888 -96 ) ( 1344 3896 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1280 3896 -96 ) ( 1304 3896 -96 ) ( 1292 3896 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1296 3880 -88 ) ( 1280 3880 -88 ) ( 1288 3880 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 579 +{ +( 960 3872 -64 ) ( 960 3904 -64 ) ( 1200 3904 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 960 3904 -64 ) ( 960 3872 -64 ) ( 960 3872 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 960 3904 -96 ) ( 960 3872 -64 ) ( 1200 3888 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1024 3904 -96 ) ( 1024 3888 -96 ) ( 1024 3896 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 960 3896 -96 ) ( 984 3896 -96 ) ( 972 3896 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 976 3880 -88 ) ( 960 3880 -88 ) ( 968 3880 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 580 +{ +( 960 3872 -64 ) ( 960 3904 -64 ) ( 1200 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 960 3904 -64 ) ( 960 3872 -64 ) ( 960 3872 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 960 3904 -96 ) ( 960 3872 -64 ) ( 1200 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1024 3904 -96 ) ( 1024 3888 -96 ) ( 1024 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 960 3880 -88 ) ( 976 3880 -88 ) ( 968 3880 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 581 +{ +( 960 3872 -64 ) ( 960 3904 -64 ) ( 1200 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1200 3904 -64 ) ( 960 3904 -64 ) ( 960 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 960 3904 -64 ) ( 960 3872 -64 ) ( 960 3872 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 960 3904 -96 ) ( 960 3872 -64 ) ( 1200 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1024 3904 -96 ) ( 1024 3888 -96 ) ( 1024 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 984 3896 -96 ) ( 960 3896 -96 ) ( 972 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 582 +{ +( 960 3872 -64 ) ( 960 3904 -64 ) ( 1200 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 3872 -64 ) ( 1280 3904 -64 ) ( 1280 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1200 3904 -64 ) ( 960 3904 -64 ) ( 960 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 960 3904 -96 ) ( 960 3872 -64 ) ( 1200 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1024 3888 -96 ) ( 1024 3904 -96 ) ( 1024 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 583 +{ +( 640 3872 -64 ) ( 640 3904 -64 ) ( 880 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 960 3872 -64 ) ( 960 3904 -64 ) ( 960 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 880 3904 -64 ) ( 640 3904 -64 ) ( 640 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 640 3904 -96 ) ( 640 3872 -64 ) ( 880 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 704 3888 -96 ) ( 704 3904 -96 ) ( 704 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 584 +{ +( 640 3872 -64 ) ( 640 3904 -64 ) ( 880 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 880 3904 -64 ) ( 640 3904 -64 ) ( 640 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 640 3904 -64 ) ( 640 3872 -64 ) ( 640 3872 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 640 3904 -96 ) ( 640 3872 -64 ) ( 880 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 704 3904 -96 ) ( 704 3888 -96 ) ( 704 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 664 3896 -96 ) ( 640 3896 -96 ) ( 652 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 585 +{ +( 640 3872 -64 ) ( 640 3904 -64 ) ( 880 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 640 3904 -64 ) ( 640 3872 -64 ) ( 640 3872 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 640 3904 -96 ) ( 640 3872 -64 ) ( 880 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 704 3904 -96 ) ( 704 3888 -96 ) ( 704 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 640 3880 -88 ) ( 656 3880 -88 ) ( 648 3880 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 586 +{ +( 640 3872 -64 ) ( 640 3904 -64 ) ( 880 3904 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 640 3904 -64 ) ( 640 3872 -64 ) ( 640 3872 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 640 3904 -96 ) ( 640 3872 -64 ) ( 880 3888 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 704 3904 -96 ) ( 704 3888 -96 ) ( 704 3896 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 640 3896 -96 ) ( 664 3896 -96 ) ( 652 3896 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 656 3880 -88 ) ( 640 3880 -88 ) ( 648 3880 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 587 +{ +( 320 3872 -64 ) ( 320 3904 -64 ) ( 560 3904 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 320 3904 -64 ) ( 320 3872 -64 ) ( 320 3872 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 320 3904 -96 ) ( 320 3872 -64 ) ( 560 3888 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 384 3904 -96 ) ( 384 3888 -96 ) ( 384 3896 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 320 3896 -96 ) ( 344 3896 -96 ) ( 332 3896 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 336 3880 -88 ) ( 320 3880 -88 ) ( 328 3880 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 588 +{ +( 320 3872 -64 ) ( 320 3904 -64 ) ( 560 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 320 3904 -64 ) ( 320 3872 -64 ) ( 320 3872 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 320 3904 -96 ) ( 320 3872 -64 ) ( 560 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 384 3904 -96 ) ( 384 3888 -96 ) ( 384 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 320 3880 -88 ) ( 336 3880 -88 ) ( 328 3880 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 589 +{ +( 320 3872 -64 ) ( 320 3904 -64 ) ( 560 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 560 3904 -64 ) ( 320 3904 -64 ) ( 320 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 320 3904 -64 ) ( 320 3872 -64 ) ( 320 3872 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 320 3904 -96 ) ( 320 3872 -64 ) ( 560 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 384 3904 -96 ) ( 384 3888 -96 ) ( 384 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 344 3896 -96 ) ( 320 3896 -96 ) ( 332 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 590 +{ +( 320 3872 -64 ) ( 320 3904 -64 ) ( 560 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 640 3872 -64 ) ( 640 3904 -64 ) ( 640 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 560 3904 -64 ) ( 320 3904 -64 ) ( 320 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 320 3904 -96 ) ( 320 3872 -64 ) ( 560 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 384 3888 -96 ) ( 384 3904 -96 ) ( 384 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 591 +{ +( 0 3872 -64 ) ( 0 3904 -64 ) ( 240 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 320 3872 -64 ) ( 320 3904 -64 ) ( 320 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 240 3904 -64 ) ( 0 3904 -64 ) ( 0 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 0 3904 -96 ) ( 0 3872 -64 ) ( 240 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 64 3888 -96 ) ( 64 3904 -96 ) ( 64 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 592 +{ +( 0 3872 -64 ) ( 0 3904 -64 ) ( 240 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 240 3904 -64 ) ( 0 3904 -64 ) ( 0 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 0 3904 -64 ) ( 0 3872 -64 ) ( 0 3872 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 0 3904 -96 ) ( 0 3872 -64 ) ( 240 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 64 3904 -96 ) ( 64 3888 -96 ) ( 64 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 24 3896 -96 ) ( 0 3896 -96 ) ( 12 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 593 +{ +( 0 3872 -64 ) ( 0 3904 -64 ) ( 240 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 0 3904 -64 ) ( 0 3872 -64 ) ( 0 3872 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 0 3904 -96 ) ( 0 3872 -64 ) ( 240 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 64 3904 -96 ) ( 64 3888 -96 ) ( 64 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 0 3880 -88 ) ( 16 3880 -88 ) ( 8 3880 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 594 +{ +( 0 3872 -64 ) ( 0 3904 -64 ) ( 240 3904 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 0 3904 -64 ) ( 0 3872 -64 ) ( 0 3872 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 0 3904 -96 ) ( 0 3872 -64 ) ( 240 3888 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 64 3904 -96 ) ( 64 3888 -96 ) ( 64 3896 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 0 3896 -96 ) ( 24 3896 -96 ) ( 12 3896 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 16 3880 -88 ) ( 0 3880 -88 ) ( 8 3880 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 595 +{ +( -320 3872 -64 ) ( -320 3904 -64 ) ( -80 3904 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -320 3904 -64 ) ( -320 3872 -64 ) ( -320 3872 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -320 3904 -96 ) ( -320 3872 -64 ) ( -80 3888 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -256 3904 -96 ) ( -256 3888 -96 ) ( -256 3896 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -320 3896 -96 ) ( -296 3896 -96 ) ( -308 3896 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -304 3880 -88 ) ( -320 3880 -88 ) ( -312 3880 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 596 +{ +( -320 3872 -64 ) ( -320 3904 -64 ) ( -80 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -320 3904 -64 ) ( -320 3872 -64 ) ( -320 3872 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -320 3904 -96 ) ( -320 3872 -64 ) ( -80 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -256 3904 -96 ) ( -256 3888 -96 ) ( -256 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -320 3880 -88 ) ( -304 3880 -88 ) ( -312 3880 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 597 +{ +( -320 3872 -64 ) ( -320 3904 -64 ) ( -80 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -80 3904 -64 ) ( -320 3904 -64 ) ( -320 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -320 3904 -64 ) ( -320 3872 -64 ) ( -320 3872 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -320 3904 -96 ) ( -320 3872 -64 ) ( -80 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -256 3904 -96 ) ( -256 3888 -96 ) ( -256 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -296 3896 -96 ) ( -320 3896 -96 ) ( -308 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 598 +{ +( -320 3872 -64 ) ( -320 3904 -64 ) ( -80 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 0 3872 -64 ) ( 0 3904 -64 ) ( 0 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -80 3904 -64 ) ( -320 3904 -64 ) ( -320 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -320 3904 -96 ) ( -320 3872 -64 ) ( -80 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -256 3888 -96 ) ( -256 3904 -96 ) ( -256 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 599 +{ +( -640 3872 -64 ) ( -640 3904 -64 ) ( -400 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -320 3872 -64 ) ( -320 3904 -64 ) ( -320 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -400 3904 -64 ) ( -640 3904 -64 ) ( -640 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -640 3904 -96 ) ( -640 3872 -64 ) ( -400 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -576 3888 -96 ) ( -576 3904 -96 ) ( -576 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 600 +{ +( -640 3872 -64 ) ( -640 3904 -64 ) ( -400 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -400 3904 -64 ) ( -640 3904 -64 ) ( -640 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -640 3904 -64 ) ( -640 3872 -64 ) ( -640 3872 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -640 3904 -96 ) ( -640 3872 -64 ) ( -400 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -576 3904 -96 ) ( -576 3888 -96 ) ( -576 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -616 3896 -96 ) ( -640 3896 -96 ) ( -628 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 601 +{ +( -640 3872 -64 ) ( -640 3904 -64 ) ( -400 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -640 3904 -64 ) ( -640 3872 -64 ) ( -640 3872 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -640 3904 -96 ) ( -640 3872 -64 ) ( -400 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -576 3904 -96 ) ( -576 3888 -96 ) ( -576 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -640 3880 -88 ) ( -624 3880 -88 ) ( -632 3880 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 602 +{ +( -640 3872 -64 ) ( -640 3904 -64 ) ( -400 3904 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -640 3904 -64 ) ( -640 3872 -64 ) ( -640 3872 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -640 3904 -96 ) ( -640 3872 -64 ) ( -400 3888 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -576 3904 -96 ) ( -576 3888 -96 ) ( -576 3896 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -640 3896 -96 ) ( -616 3896 -96 ) ( -628 3896 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -624 3880 -88 ) ( -640 3880 -88 ) ( -632 3880 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 603 +{ +( -960 3872 -64 ) ( -960 3904 -64 ) ( -720 3904 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -960 3904 -64 ) ( -960 3872 -64 ) ( -960 3872 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -960 3904 -96 ) ( -960 3872 -64 ) ( -720 3888 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -896 3904 -96 ) ( -896 3888 -96 ) ( -896 3896 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -960 3896 -96 ) ( -936 3896 -96 ) ( -948 3896 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -944 3880 -88 ) ( -960 3880 -88 ) ( -952 3880 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 604 +{ +( -960 3872 -64 ) ( -960 3904 -64 ) ( -720 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -960 3904 -64 ) ( -960 3872 -64 ) ( -960 3872 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -960 3904 -96 ) ( -960 3872 -64 ) ( -720 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -896 3904 -96 ) ( -896 3888 -96 ) ( -896 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -960 3880 -88 ) ( -944 3880 -88 ) ( -952 3880 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 605 +{ +( -960 3872 -64 ) ( -960 3904 -64 ) ( -720 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -720 3904 -64 ) ( -960 3904 -64 ) ( -960 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -960 3904 -64 ) ( -960 3872 -64 ) ( -960 3872 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -960 3904 -96 ) ( -960 3872 -64 ) ( -720 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -896 3904 -96 ) ( -896 3888 -96 ) ( -896 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -936 3896 -96 ) ( -960 3896 -96 ) ( -948 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 606 +{ +( -960 3872 -64 ) ( -960 3904 -64 ) ( -720 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -640 3872 -64 ) ( -640 3904 -64 ) ( -640 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -720 3904 -64 ) ( -960 3904 -64 ) ( -960 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -960 3904 -96 ) ( -960 3872 -64 ) ( -720 3888 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -896 3888 -96 ) ( -896 3904 -96 ) ( -896 3896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 607 +{ +( 1280 3520 -64 ) ( 1280 3552 -64 ) ( 1464 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 3552 -64 ) ( 1280 3520 -64 ) ( 1280 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 3552 -64 ) ( 1280 3520 -96 ) ( 1464 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1344 3552 -96 ) ( 1344 3536 -96 ) ( 1344 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1312 3544 -96 ) ( 1280 3544 -96 ) ( 1296 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 608 +{ +( 1280 3520 -64 ) ( 1280 3552 -64 ) ( 1464 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 3520 -64 ) ( 1464 3520 -64 ) ( 1464 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 3552 -64 ) ( 1280 3520 -64 ) ( 1280 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 3552 -64 ) ( 1280 3520 -96 ) ( 1464 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1344 3552 -96 ) ( 1344 3536 -96 ) ( 1344 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 3528 -96 ) ( 1328 3528 -96 ) ( 1304 3528 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 609 +{ +( 1280 3520 -64 ) ( 1280 3552 -64 ) ( 1464 3552 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1280 3552 -64 ) ( 1280 3520 -64 ) ( 1280 3520 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1280 3552 -64 ) ( 1280 3520 -96 ) ( 1464 3536 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1344 3552 -96 ) ( 1344 3536 -96 ) ( 1344 3544 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1280 3544 -96 ) ( 1312 3544 -96 ) ( 1296 3544 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1328 3528 -96 ) ( 1280 3528 -96 ) ( 1304 3528 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 610 +{ +( 960 3520 -64 ) ( 960 3552 -64 ) ( 1144 3552 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 960 3552 -64 ) ( 960 3520 -64 ) ( 960 3520 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 960 3552 -64 ) ( 960 3520 -96 ) ( 1144 3536 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1024 3552 -96 ) ( 1024 3536 -96 ) ( 1024 3544 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 960 3544 -96 ) ( 992 3544 -96 ) ( 976 3544 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1008 3528 -96 ) ( 960 3528 -96 ) ( 984 3528 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 611 +{ +( 960 3520 -64 ) ( 960 3552 -64 ) ( 1144 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 960 3520 -64 ) ( 1144 3520 -64 ) ( 1144 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 960 3552 -64 ) ( 960 3520 -64 ) ( 960 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 960 3552 -64 ) ( 960 3520 -96 ) ( 1144 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1024 3552 -96 ) ( 1024 3536 -96 ) ( 1024 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 960 3528 -96 ) ( 1008 3528 -96 ) ( 984 3528 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 612 +{ +( 960 3520 -64 ) ( 960 3552 -64 ) ( 1144 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 960 3552 -64 ) ( 960 3520 -64 ) ( 960 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 960 3552 -64 ) ( 960 3520 -96 ) ( 1144 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1024 3552 -96 ) ( 1024 3536 -96 ) ( 1024 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 992 3544 -96 ) ( 960 3544 -96 ) ( 976 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 613 +{ +( 960 3520 -64 ) ( 960 3552 -64 ) ( 1144 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 960 3520 -64 ) ( 1144 3520 -64 ) ( 1144 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 3520 -64 ) ( 1280 3552 -64 ) ( 1280 3552 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 960 3552 -64 ) ( 960 3520 -96 ) ( 1144 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1024 3536 -96 ) ( 1024 3552 -96 ) ( 1024 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 614 +{ +( 640 3520 -64 ) ( 640 3552 -64 ) ( 824 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 640 3520 -64 ) ( 824 3520 -64 ) ( 824 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 960 3520 -64 ) ( 960 3552 -64 ) ( 960 3552 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 640 3552 -64 ) ( 640 3520 -96 ) ( 824 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 704 3536 -96 ) ( 704 3552 -96 ) ( 704 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 615 +{ +( 640 3520 -64 ) ( 640 3552 -64 ) ( 824 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 640 3552 -64 ) ( 640 3520 -64 ) ( 640 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 640 3552 -64 ) ( 640 3520 -96 ) ( 824 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 704 3552 -96 ) ( 704 3536 -96 ) ( 704 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 672 3544 -96 ) ( 640 3544 -96 ) ( 656 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 616 +{ +( 640 3520 -64 ) ( 640 3552 -64 ) ( 824 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 640 3520 -64 ) ( 824 3520 -64 ) ( 824 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 640 3552 -64 ) ( 640 3520 -64 ) ( 640 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 640 3552 -64 ) ( 640 3520 -96 ) ( 824 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 704 3552 -96 ) ( 704 3536 -96 ) ( 704 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 640 3528 -96 ) ( 688 3528 -96 ) ( 664 3528 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 617 +{ +( 640 3520 -64 ) ( 640 3552 -64 ) ( 824 3552 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 640 3552 -64 ) ( 640 3520 -64 ) ( 640 3520 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 640 3552 -64 ) ( 640 3520 -96 ) ( 824 3536 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 704 3552 -96 ) ( 704 3536 -96 ) ( 704 3544 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 640 3544 -96 ) ( 672 3544 -96 ) ( 656 3544 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 688 3528 -96 ) ( 640 3528 -96 ) ( 664 3528 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 618 +{ +( 320 3520 -64 ) ( 320 3552 -64 ) ( 504 3552 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 320 3552 -64 ) ( 320 3520 -64 ) ( 320 3520 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 320 3552 -64 ) ( 320 3520 -96 ) ( 504 3536 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 384 3552 -96 ) ( 384 3536 -96 ) ( 384 3544 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 320 3544 -96 ) ( 352 3544 -96 ) ( 336 3544 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 368 3528 -96 ) ( 320 3528 -96 ) ( 344 3528 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 619 +{ +( 320 3520 -64 ) ( 320 3552 -64 ) ( 504 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 320 3520 -64 ) ( 504 3520 -64 ) ( 504 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 320 3552 -64 ) ( 320 3520 -64 ) ( 320 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 320 3552 -64 ) ( 320 3520 -96 ) ( 504 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 384 3552 -96 ) ( 384 3536 -96 ) ( 384 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 320 3528 -96 ) ( 368 3528 -96 ) ( 344 3528 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 620 +{ +( 320 3520 -64 ) ( 320 3552 -64 ) ( 504 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 320 3552 -64 ) ( 320 3520 -64 ) ( 320 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 320 3552 -64 ) ( 320 3520 -96 ) ( 504 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 384 3552 -96 ) ( 384 3536 -96 ) ( 384 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 352 3544 -96 ) ( 320 3544 -96 ) ( 336 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 621 +{ +( 320 3520 -64 ) ( 320 3552 -64 ) ( 504 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 320 3520 -64 ) ( 504 3520 -64 ) ( 504 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 640 3520 -64 ) ( 640 3552 -64 ) ( 640 3552 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 320 3552 -64 ) ( 320 3520 -96 ) ( 504 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 384 3536 -96 ) ( 384 3552 -96 ) ( 384 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 622 +{ +( 0 3520 -64 ) ( 0 3552 -64 ) ( 184 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 0 3520 -64 ) ( 184 3520 -64 ) ( 184 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 320 3520 -64 ) ( 320 3552 -64 ) ( 320 3552 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 0 3552 -64 ) ( 0 3520 -96 ) ( 184 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 64 3536 -96 ) ( 64 3552 -96 ) ( 64 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 623 +{ +( 0 3520 -64 ) ( 0 3552 -64 ) ( 184 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 0 3552 -64 ) ( 0 3520 -64 ) ( 0 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 0 3552 -64 ) ( 0 3520 -96 ) ( 184 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 64 3552 -96 ) ( 64 3536 -96 ) ( 64 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 32 3544 -96 ) ( 0 3544 -96 ) ( 16 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 624 +{ +( 0 3520 -64 ) ( 0 3552 -64 ) ( 184 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 0 3520 -64 ) ( 184 3520 -64 ) ( 184 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 0 3552 -64 ) ( 0 3520 -64 ) ( 0 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 0 3552 -64 ) ( 0 3520 -96 ) ( 184 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 64 3552 -96 ) ( 64 3536 -96 ) ( 64 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 0 3528 -96 ) ( 48 3528 -96 ) ( 24 3528 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 625 +{ +( 0 3520 -64 ) ( 0 3552 -64 ) ( 184 3552 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 0 3552 -64 ) ( 0 3520 -64 ) ( 0 3520 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 0 3552 -64 ) ( 0 3520 -96 ) ( 184 3536 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 64 3552 -96 ) ( 64 3536 -96 ) ( 64 3544 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 0 3544 -96 ) ( 32 3544 -96 ) ( 16 3544 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 48 3528 -96 ) ( 0 3528 -96 ) ( 24 3528 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 626 +{ +( -320 3520 -64 ) ( -320 3552 -64 ) ( -136 3552 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -320 3552 -64 ) ( -320 3520 -64 ) ( -320 3520 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -320 3552 -64 ) ( -320 3520 -96 ) ( -136 3536 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -256 3552 -96 ) ( -256 3536 -96 ) ( -256 3544 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -320 3544 -96 ) ( -288 3544 -96 ) ( -304 3544 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -272 3528 -96 ) ( -320 3528 -96 ) ( -296 3528 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 627 +{ +( -320 3520 -64 ) ( -320 3552 -64 ) ( -136 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -320 3520 -64 ) ( -136 3520 -64 ) ( -136 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -320 3552 -64 ) ( -320 3520 -64 ) ( -320 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -320 3552 -64 ) ( -320 3520 -96 ) ( -136 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -256 3552 -96 ) ( -256 3536 -96 ) ( -256 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -320 3528 -96 ) ( -272 3528 -96 ) ( -296 3528 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 628 +{ +( -320 3520 -64 ) ( -320 3552 -64 ) ( -136 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -320 3552 -64 ) ( -320 3520 -64 ) ( -320 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -320 3552 -64 ) ( -320 3520 -96 ) ( -136 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -256 3552 -96 ) ( -256 3536 -96 ) ( -256 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -288 3544 -96 ) ( -320 3544 -96 ) ( -304 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 629 +{ +( -320 3520 -64 ) ( -320 3552 -64 ) ( -136 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -320 3520 -64 ) ( -136 3520 -64 ) ( -136 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 0 3520 -64 ) ( 0 3552 -64 ) ( 0 3552 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -320 3552 -64 ) ( -320 3520 -96 ) ( -136 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -256 3536 -96 ) ( -256 3552 -96 ) ( -256 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 630 +{ +( -640 3520 -64 ) ( -640 3552 -64 ) ( -456 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -640 3520 -64 ) ( -456 3520 -64 ) ( -456 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -320 3520 -64 ) ( -320 3552 -64 ) ( -320 3552 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -640 3552 -64 ) ( -640 3520 -96 ) ( -456 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -576 3536 -96 ) ( -576 3552 -96 ) ( -576 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 631 +{ +( -640 3520 -64 ) ( -640 3552 -64 ) ( -456 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -640 3552 -64 ) ( -640 3520 -64 ) ( -640 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -640 3552 -64 ) ( -640 3520 -96 ) ( -456 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -576 3552 -96 ) ( -576 3536 -96 ) ( -576 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -608 3544 -96 ) ( -640 3544 -96 ) ( -624 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 632 +{ +( -640 3520 -64 ) ( -640 3552 -64 ) ( -456 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -640 3520 -64 ) ( -456 3520 -64 ) ( -456 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -640 3552 -64 ) ( -640 3520 -64 ) ( -640 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -640 3552 -64 ) ( -640 3520 -96 ) ( -456 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -576 3552 -96 ) ( -576 3536 -96 ) ( -576 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -640 3528 -96 ) ( -592 3528 -96 ) ( -616 3528 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 633 +{ +( -640 3520 -64 ) ( -640 3552 -64 ) ( -456 3552 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -640 3552 -64 ) ( -640 3520 -64 ) ( -640 3520 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -640 3552 -64 ) ( -640 3520 -96 ) ( -456 3536 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -576 3552 -96 ) ( -576 3536 -96 ) ( -576 3544 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -640 3544 -96 ) ( -608 3544 -96 ) ( -624 3544 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -592 3528 -96 ) ( -640 3528 -96 ) ( -616 3528 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 634 +{ +( -960 3520 -64 ) ( -960 3552 -64 ) ( -776 3552 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -960 3552 -64 ) ( -960 3520 -64 ) ( -960 3520 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -960 3552 -64 ) ( -960 3520 -96 ) ( -776 3536 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -896 3552 -96 ) ( -896 3536 -96 ) ( -896 3544 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -960 3544 -96 ) ( -928 3544 -96 ) ( -944 3544 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -912 3528 -96 ) ( -960 3528 -96 ) ( -936 3528 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 635 +{ +( -960 3520 -64 ) ( -960 3552 -64 ) ( -776 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -960 3520 -64 ) ( -776 3520 -64 ) ( -776 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -960 3552 -64 ) ( -960 3520 -64 ) ( -960 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -960 3552 -64 ) ( -960 3520 -96 ) ( -776 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -896 3552 -96 ) ( -896 3536 -96 ) ( -896 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -960 3528 -96 ) ( -912 3528 -96 ) ( -936 3528 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 636 +{ +( -960 3520 -64 ) ( -960 3552 -64 ) ( -776 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -960 3552 -64 ) ( -960 3520 -64 ) ( -960 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -960 3552 -64 ) ( -960 3520 -96 ) ( -776 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -896 3552 -96 ) ( -896 3536 -96 ) ( -896 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -928 3544 -96 ) ( -960 3544 -96 ) ( -944 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 637 +{ +( -960 3520 -64 ) ( -960 3552 -64 ) ( -776 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -960 3520 -64 ) ( -776 3520 -64 ) ( -776 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -640 3520 -64 ) ( -640 3552 -64 ) ( -640 3552 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -960 3552 -64 ) ( -960 3520 -96 ) ( -776 3536 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -896 3536 -96 ) ( -896 3552 -96 ) ( -896 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 638 +{ +( 2080 3168 -64 ) ( 2080 3209 -64 ) ( 2112 3212 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2088 3168 -64 ) ( 2120 3168 -64 ) ( 2120 3168 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 2984 -64 ) ( 2112 3216 -64 ) ( 2112 3216 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 3212 -96 ) ( 2080 3209 -64 ) ( 2080 3168 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 3212 -64 ) ( 2080 3209 -64 ) ( 2112 3212 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 639 +{ +( 2080 2880 -64 ) ( 2080 3112 -64 ) ( 2112 3112 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 2880 -64 ) ( 2112 3112 -64 ) ( 2112 3112 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 3168 -64 ) ( 2080 3168 -64 ) ( 2080 3168 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 2880 -64 ) ( 2112 2880 -96 ) ( 2096 3168 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2096 3104 -96 ) ( 2080 3104 -96 ) ( 2088 3104 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 3160 -96 ) ( 2104 3168 -96 ) ( 2104 3164 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 640 +{ +( 2080 2880 -64 ) ( 2080 3112 -64 ) ( 2112 3112 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2112 3168 -64 ) ( 2080 3168 -64 ) ( 2080 3168 -96 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2080 2880 -64 ) ( 2112 2880 -96 ) ( 2096 3168 -80 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2096 3104 -96 ) ( 2080 3104 -96 ) ( 2088 3104 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2088 3160 -96 ) ( 2088 3168 -96 ) ( 2088 3164 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2104 3168 -96 ) ( 2104 3160 -96 ) ( 2104 3164 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 641 +{ +( 2080 2880 -64 ) ( 2080 3112 -64 ) ( 2112 3112 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 3168 -64 ) ( 2080 3168 -64 ) ( 2080 3168 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 2880 -64 ) ( 2112 2880 -96 ) ( 2096 3168 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2096 3104 -96 ) ( 2080 3104 -96 ) ( 2088 3104 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2088 3168 -96 ) ( 2088 3160 -96 ) ( 2088 3164 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 642 +{ +( 2080 2880 -64 ) ( 2080 3112 -64 ) ( 2112 3112 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 2848 -64 ) ( 2112 2848 -64 ) ( 2112 2848 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 2880 -64 ) ( 2112 3112 -64 ) ( 2112 3112 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 2880 -64 ) ( 2112 2880 -96 ) ( 2096 3168 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 3104 -96 ) ( 2096 3104 -96 ) ( 2088 3104 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 643 +{ +( 2080 2560 -64 ) ( 2080 2792 -64 ) ( 2112 2792 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 2528 -64 ) ( 2112 2528 -64 ) ( 2112 2528 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 2560 -64 ) ( 2112 2792 -64 ) ( 2112 2792 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 2560 -64 ) ( 2112 2560 -96 ) ( 2096 2848 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 2784 -96 ) ( 2096 2784 -96 ) ( 2088 2784 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 644 +{ +( 2080 2560 -64 ) ( 2080 2792 -64 ) ( 2112 2792 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 2848 -64 ) ( 2080 2848 -64 ) ( 2080 2848 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 2560 -64 ) ( 2112 2560 -96 ) ( 2096 2848 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2096 2784 -96 ) ( 2080 2784 -96 ) ( 2088 2784 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2088 2848 -96 ) ( 2088 2840 -96 ) ( 2088 2844 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 645 +{ +( 2080 2560 -64 ) ( 2080 2792 -64 ) ( 2112 2792 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2112 2848 -64 ) ( 2080 2848 -64 ) ( 2080 2848 -96 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2080 2560 -64 ) ( 2112 2560 -96 ) ( 2096 2848 -80 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2096 2784 -96 ) ( 2080 2784 -96 ) ( 2088 2784 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2088 2840 -96 ) ( 2088 2848 -96 ) ( 2088 2844 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2104 2848 -96 ) ( 2104 2840 -96 ) ( 2104 2844 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 646 +{ +( 2080 2560 -64 ) ( 2080 2792 -64 ) ( 2112 2792 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 2560 -64 ) ( 2112 2792 -64 ) ( 2112 2792 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 2848 -64 ) ( 2080 2848 -64 ) ( 2080 2848 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 2560 -64 ) ( 2112 2560 -96 ) ( 2096 2848 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2096 2784 -96 ) ( 2080 2784 -96 ) ( 2088 2784 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 2840 -96 ) ( 2104 2848 -96 ) ( 2104 2844 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 647 +{ +( 2080 2240 -64 ) ( 2080 2472 -64 ) ( 2112 2472 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 2240 -64 ) ( 2112 2472 -64 ) ( 2112 2472 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 2528 -64 ) ( 2080 2528 -64 ) ( 2080 2528 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 2240 -64 ) ( 2112 2240 -96 ) ( 2096 2528 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2096 2464 -96 ) ( 2080 2464 -96 ) ( 2088 2464 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 2520 -96 ) ( 2104 2528 -96 ) ( 2104 2524 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 648 +{ +( 2080 2240 -64 ) ( 2080 2472 -64 ) ( 2112 2472 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2112 2528 -64 ) ( 2080 2528 -64 ) ( 2080 2528 -96 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2080 2240 -64 ) ( 2112 2240 -96 ) ( 2096 2528 -80 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2096 2464 -96 ) ( 2080 2464 -96 ) ( 2088 2464 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2088 2520 -96 ) ( 2088 2528 -96 ) ( 2088 2524 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2104 2528 -96 ) ( 2104 2520 -96 ) ( 2104 2524 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 649 +{ +( 2080 2240 -64 ) ( 2080 2472 -64 ) ( 2112 2472 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 2528 -64 ) ( 2080 2528 -64 ) ( 2080 2528 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 2240 -64 ) ( 2112 2240 -96 ) ( 2096 2528 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2096 2464 -96 ) ( 2080 2464 -96 ) ( 2088 2464 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2088 2528 -96 ) ( 2088 2520 -96 ) ( 2088 2524 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 650 +{ +( 2080 2240 -64 ) ( 2080 2472 -64 ) ( 2112 2472 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 2240 -64 ) ( 2112 2240 -64 ) ( 2112 2240 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 2240 -64 ) ( 2112 2472 -64 ) ( 2112 2472 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 2240 -64 ) ( 2112 2240 -96 ) ( 2096 2528 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 2464 -96 ) ( 2096 2464 -96 ) ( 2088 2464 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 651 +{ +( 1728 3176 -64 ) ( 1760 3179 -64 ) ( 1760 3168 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1720 3168 -56 ) ( 1752 3168 -56 ) ( 1752 3168 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 3040 -56 ) ( 1728 2920 -56 ) ( 1728 2920 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 3168 -64 ) ( 1760 3179 -64 ) ( 1728 3176 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 3176 -96 ) ( 1760 3179 -64 ) ( 1728 3176 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 652 +{ +( 1728 2848 -64 ) ( 1728 2968 -64 ) ( 1760 2968 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 3168 -56 ) ( 1728 3168 -56 ) ( 1728 3168 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2848 -96 ) ( 1760 2848 -64 ) ( 1744 2968 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 3104 -96 ) ( 1728 3104 -96 ) ( 1744 3104 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1752 3160 -88 ) ( 1752 3168 -88 ) ( 1752 3164 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 653 +{ +( 1728 2848 -64 ) ( 1728 2968 -64 ) ( 1760 2968 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1760 3168 -56 ) ( 1728 3168 -56 ) ( 1728 3168 -96 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1728 2848 -96 ) ( 1760 2848 -64 ) ( 1744 2968 -80 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1760 3104 -96 ) ( 1728 3104 -96 ) ( 1744 3104 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1736 3152 -96 ) ( 1736 3168 -96 ) ( 1736 3160 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1752 3168 -88 ) ( 1752 3160 -88 ) ( 1752 3164 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 654 +{ +( 1728 2848 -64 ) ( 1728 2968 -64 ) ( 1760 2968 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 3168 -56 ) ( 1728 3168 -56 ) ( 1728 3168 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2968 -56 ) ( 1728 2848 -56 ) ( 1728 2848 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2848 -96 ) ( 1760 2848 -64 ) ( 1744 2968 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 3104 -96 ) ( 1728 3104 -96 ) ( 1744 3104 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1736 3168 -96 ) ( 1736 3152 -96 ) ( 1736 3160 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 655 +{ +( 1728 2848 -64 ) ( 1728 2968 -64 ) ( 1760 2968 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2848 -56 ) ( 1760 2848 -56 ) ( 1760 2848 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2968 -56 ) ( 1728 2848 -56 ) ( 1728 2848 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2848 -96 ) ( 1760 2848 -64 ) ( 1744 2968 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 3104 -96 ) ( 1760 3104 -96 ) ( 1744 3104 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 656 +{ +( 1728 2528 -64 ) ( 1728 2648 -64 ) ( 1760 2648 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2528 -56 ) ( 1760 2528 -56 ) ( 1760 2528 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2648 -56 ) ( 1728 2528 -56 ) ( 1728 2528 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2528 -96 ) ( 1760 2528 -64 ) ( 1744 2648 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2784 -96 ) ( 1760 2784 -96 ) ( 1744 2784 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 657 +{ +( 1728 2528 -64 ) ( 1728 2648 -64 ) ( 1760 2648 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 2848 -56 ) ( 1728 2848 -56 ) ( 1728 2848 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2648 -56 ) ( 1728 2528 -56 ) ( 1728 2528 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2528 -96 ) ( 1760 2528 -64 ) ( 1744 2648 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 2784 -96 ) ( 1728 2784 -96 ) ( 1744 2784 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1736 2848 -96 ) ( 1736 2832 -96 ) ( 1736 2840 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 658 +{ +( 1728 2528 -64 ) ( 1728 2648 -64 ) ( 1760 2648 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1760 2848 -56 ) ( 1728 2848 -56 ) ( 1728 2848 -96 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1728 2528 -96 ) ( 1760 2528 -64 ) ( 1744 2648 -80 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1760 2784 -96 ) ( 1728 2784 -96 ) ( 1744 2784 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1736 2832 -96 ) ( 1736 2848 -96 ) ( 1736 2840 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1752 2848 -88 ) ( 1752 2840 -88 ) ( 1752 2844 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 659 +{ +( 1728 2528 -64 ) ( 1728 2648 -64 ) ( 1760 2648 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 2848 -56 ) ( 1728 2848 -56 ) ( 1728 2848 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2528 -96 ) ( 1760 2528 -64 ) ( 1744 2648 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 2784 -96 ) ( 1728 2784 -96 ) ( 1744 2784 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1752 2840 -88 ) ( 1752 2848 -88 ) ( 1752 2844 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 660 +{ +( 1728 2208 -64 ) ( 1728 2328 -64 ) ( 1760 2328 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 2528 -56 ) ( 1728 2528 -56 ) ( 1728 2528 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2208 -96 ) ( 1760 2208 -64 ) ( 1744 2328 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 2464 -96 ) ( 1728 2464 -96 ) ( 1744 2464 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1752 2520 -88 ) ( 1752 2528 -88 ) ( 1752 2524 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 661 +{ +( 1728 2208 -64 ) ( 1728 2328 -64 ) ( 1760 2328 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1760 2528 -56 ) ( 1728 2528 -56 ) ( 1728 2528 -96 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1728 2208 -96 ) ( 1760 2208 -64 ) ( 1744 2328 -80 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1760 2464 -96 ) ( 1728 2464 -96 ) ( 1744 2464 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1736 2512 -96 ) ( 1736 2528 -96 ) ( 1736 2520 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 1752 2528 -88 ) ( 1752 2520 -88 ) ( 1752 2524 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 662 +{ +( 1728 2208 -64 ) ( 1728 2328 -64 ) ( 1760 2328 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 2528 -56 ) ( 1728 2528 -56 ) ( 1728 2528 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2328 -56 ) ( 1728 2208 -56 ) ( 1728 2208 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2208 -96 ) ( 1760 2208 -64 ) ( 1744 2328 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 2464 -96 ) ( 1728 2464 -96 ) ( 1744 2464 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1736 2528 -96 ) ( 1736 2512 -96 ) ( 1736 2520 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 663 +{ +( 1728 2208 -64 ) ( 1728 2328 -64 ) ( 1760 2328 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2240 -56 ) ( 1760 2240 -56 ) ( 1760 2240 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2328 -56 ) ( 1728 2208 -56 ) ( 1728 2208 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2208 -96 ) ( 1760 2208 -64 ) ( 1744 2328 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2464 -96 ) ( 1760 2464 -96 ) ( 1744 2464 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 664 +{ +( -1728 2784 -64 ) ( -1728 2976 -64 ) ( -1696 2976 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 3104 -64 ) ( -1728 3104 -64 ) ( -1728 3104 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2976 -64 ) ( -1728 2784 -64 ) ( -1728 2784 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2784 -96 ) ( -1696 2784 -64 ) ( -1712 2976 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 2848 -96 ) ( -1728 2848 -96 ) ( -1712 2848 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 665 +{ +( -1728 2784 -64 ) ( -1728 2976 -64 ) ( -1696 2976 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2976 -64 ) ( -1728 2784 -64 ) ( -1728 2784 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2784 -96 ) ( -1696 2784 -64 ) ( -1712 2976 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2848 -96 ) ( -1696 2848 -96 ) ( -1712 2848 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 2784 -96 ) ( -1728 2784 -96 ) ( -1712 2784 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1720 2848 -96 ) ( -1720 2832 -96 ) ( -1720 2840 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 666 +{ +( -1728 2784 -64 ) ( -1728 2976 -64 ) ( -1696 2976 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1728 2784 -96 ) ( -1696 2784 -64 ) ( -1712 2976 -80 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1728 2848 -96 ) ( -1696 2848 -96 ) ( -1712 2848 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1696 2784 -96 ) ( -1728 2784 -96 ) ( -1712 2784 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1720 2832 -96 ) ( -1720 2848 -96 ) ( -1720 2840 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1704 2848 -88 ) ( -1704 2840 -88 ) ( -1704 2844 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 667 +{ +( -1728 2784 -64 ) ( -1728 2976 -64 ) ( -1696 2976 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2784 -96 ) ( -1696 2784 -64 ) ( -1712 2976 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2848 -96 ) ( -1696 2848 -96 ) ( -1712 2848 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 2784 -96 ) ( -1728 2784 -96 ) ( -1712 2784 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1704 2840 -88 ) ( -1704 2848 -88 ) ( -1704 2844 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 668 +{ +( -1728 2464 -64 ) ( -1728 2656 -64 ) ( -1696 2656 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2464 -96 ) ( -1696 2464 -64 ) ( -1712 2656 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2528 -96 ) ( -1696 2528 -96 ) ( -1712 2528 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 2464 -96 ) ( -1728 2464 -96 ) ( -1712 2464 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1704 2520 -88 ) ( -1704 2528 -88 ) ( -1704 2524 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 669 +{ +( -1728 2464 -64 ) ( -1728 2656 -64 ) ( -1696 2656 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1728 2464 -96 ) ( -1696 2464 -64 ) ( -1712 2656 -80 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1728 2528 -96 ) ( -1696 2528 -96 ) ( -1712 2528 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1696 2464 -96 ) ( -1728 2464 -96 ) ( -1712 2464 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1720 2512 -96 ) ( -1720 2528 -96 ) ( -1720 2520 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1704 2528 -88 ) ( -1704 2520 -88 ) ( -1704 2524 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 670 +{ +( -1728 2464 -64 ) ( -1728 2656 -64 ) ( -1696 2656 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2656 -64 ) ( -1728 2464 -64 ) ( -1728 2464 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2464 -96 ) ( -1696 2464 -64 ) ( -1712 2656 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2528 -96 ) ( -1696 2528 -96 ) ( -1712 2528 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 2464 -96 ) ( -1728 2464 -96 ) ( -1712 2464 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1720 2528 -96 ) ( -1720 2512 -96 ) ( -1720 2520 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 671 +{ +( -1728 2464 -64 ) ( -1728 2656 -64 ) ( -1696 2656 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 2784 -64 ) ( -1728 2784 -64 ) ( -1728 2784 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2656 -64 ) ( -1728 2464 -64 ) ( -1728 2464 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2464 -96 ) ( -1696 2464 -64 ) ( -1712 2656 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 2528 -96 ) ( -1728 2528 -96 ) ( -1712 2528 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 672 +{ +( -1728 2144 -64 ) ( -1728 2336 -64 ) ( -1696 2336 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 2464 -64 ) ( -1728 2464 -64 ) ( -1728 2464 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2336 -64 ) ( -1728 2144 -64 ) ( -1728 2144 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2144 -96 ) ( -1696 2144 -64 ) ( -1712 2336 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 2208 -96 ) ( -1728 2208 -96 ) ( -1712 2208 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 673 +{ +( -1728 2144 -64 ) ( -1728 2336 -64 ) ( -1696 2336 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2336 -64 ) ( -1728 2144 -64 ) ( -1728 2144 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2144 -96 ) ( -1696 2144 -64 ) ( -1712 2336 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2208 -96 ) ( -1696 2208 -96 ) ( -1712 2208 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 2144 -96 ) ( -1728 2144 -96 ) ( -1712 2144 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1720 2208 -96 ) ( -1720 2192 -96 ) ( -1720 2200 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 674 +{ +( -1728 2144 -64 ) ( -1728 2336 -64 ) ( -1696 2336 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1728 2144 -96 ) ( -1696 2144 -64 ) ( -1712 2336 -80 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1728 2208 -96 ) ( -1696 2208 -96 ) ( -1712 2208 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1696 2144 -96 ) ( -1728 2144 -96 ) ( -1712 2144 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1720 2192 -96 ) ( -1720 2208 -96 ) ( -1720 2200 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1704 2208 -88 ) ( -1704 2200 -88 ) ( -1704 2204 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 675 +{ +( -1728 2144 -64 ) ( -1728 2336 -64 ) ( -1696 2336 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2144 -96 ) ( -1696 2144 -64 ) ( -1712 2336 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2208 -96 ) ( -1696 2208 -96 ) ( -1712 2208 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 2144 -96 ) ( -1728 2144 -96 ) ( -1712 2144 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1704 2200 -88 ) ( -1704 2208 -88 ) ( -1704 2204 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 676 +{ +( -1728 1856 -64 ) ( -1728 2048 -64 ) ( -1696 2048 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 1856 -96 ) ( -1696 1856 -64 ) ( -1712 2048 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 1920 -96 ) ( -1696 1920 -96 ) ( -1712 1920 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 1856 -96 ) ( -1728 1856 -96 ) ( -1712 1856 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1704 1912 -88 ) ( -1704 1920 -88 ) ( -1704 1916 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 677 +{ +( -1728 1856 -64 ) ( -1728 2048 -64 ) ( -1696 2048 -64 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1728 1856 -96 ) ( -1696 1856 -64 ) ( -1712 2048 -80 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1728 1920 -96 ) ( -1696 1920 -96 ) ( -1712 1920 -64 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1696 1856 -96 ) ( -1728 1856 -96 ) ( -1712 1856 -64 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1720 1904 -96 ) ( -1720 1920 -96 ) ( -1720 1912 -64 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1704 1920 -88 ) ( -1704 1912 -88 ) ( -1704 1916 -64 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 678 +{ +( -1728 1856 -64 ) ( -1728 2048 -64 ) ( -1696 2048 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2048 -64 ) ( -1728 1856 -64 ) ( -1728 1856 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 1856 -96 ) ( -1696 1856 -64 ) ( -1712 2048 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 1920 -96 ) ( -1696 1920 -96 ) ( -1712 1920 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 1856 -96 ) ( -1728 1856 -96 ) ( -1712 1856 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1720 1920 -96 ) ( -1720 1904 -96 ) ( -1720 1912 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 679 +{ +( -1696 1856 -64 ) ( -1696 1783 -64 ) ( -1728 1780 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 1780 -64 ) ( -1696 1783 -64 ) ( -1728 1780 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2048 -64 ) ( -1728 1856 -64 ) ( -1728 1856 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 1780 -96 ) ( -1696 1783 -64 ) ( -1696 1856 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 1856 -96 ) ( -1696 1856 -96 ) ( -1712 1856 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 680 +{ +( -1728 1824 -64 ) ( -1728 2016 -64 ) ( -1696 2016 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 2144 -64 ) ( -1728 2144 -64 ) ( -1728 2144 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 2016 -64 ) ( -1728 1824 -64 ) ( -1728 1824 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1728 1824 -96 ) ( -1696 1824 -64 ) ( -1712 2016 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 1920 -96 ) ( -1728 1920 -96 ) ( -1712 1920 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 681 +{ +( -1376 2784 -64 ) ( -1376 3128 -64 ) ( -1344 3128 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1344 2784 -64 ) ( -1344 3128 -64 ) ( -1344 3128 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1344 3104 -64 ) ( -1376 3104 -64 ) ( -1376 3104 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 2784 -64 ) ( -1344 2784 -96 ) ( -1360 3128 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1352 2848 -96 ) ( -1376 2848 -96 ) ( -1364 2848 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 682 +{ +( -1376 2784 -64 ) ( -1376 3128 -64 ) ( -1344 3128 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 2784 -64 ) ( -1344 2784 -64 ) ( -1344 2784 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 2784 -64 ) ( -1344 2784 -96 ) ( -1360 3128 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 2848 -96 ) ( -1352 2848 -96 ) ( -1364 2848 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1368 2848 -96 ) ( -1368 2832 -96 ) ( -1368 2840 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 683 +{ +( -1376 2784 -64 ) ( -1376 3128 -64 ) ( -1344 3128 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1376 2784 -64 ) ( -1344 2784 -64 ) ( -1344 2784 -96 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1376 2784 -64 ) ( -1344 2784 -96 ) ( -1360 3128 -80 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1376 2848 -96 ) ( -1352 2848 -96 ) ( -1364 2848 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1368 2832 -96 ) ( -1368 2848 -96 ) ( -1368 2840 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1352 2848 -96 ) ( -1352 2832 -96 ) ( -1352 2840 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 684 +{ +( -1376 2784 -64 ) ( -1376 3128 -64 ) ( -1344 3128 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 2784 -64 ) ( -1344 2784 -64 ) ( -1344 2784 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1344 2784 -64 ) ( -1344 3128 -64 ) ( -1344 3128 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 2784 -64 ) ( -1344 2784 -96 ) ( -1360 3128 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 2848 -96 ) ( -1352 2848 -96 ) ( -1364 2848 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1352 2832 -96 ) ( -1352 2848 -96 ) ( -1352 2840 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 685 +{ +( -1376 2464 -64 ) ( -1376 2808 -64 ) ( -1344 2808 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 2464 -64 ) ( -1344 2464 -64 ) ( -1344 2464 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1344 2464 -64 ) ( -1344 2808 -64 ) ( -1344 2808 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 2464 -64 ) ( -1344 2464 -96 ) ( -1360 2808 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 2528 -96 ) ( -1352 2528 -96 ) ( -1364 2528 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1352 2512 -96 ) ( -1352 2528 -96 ) ( -1352 2520 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 686 +{ +( -1376 2464 -64 ) ( -1376 2808 -64 ) ( -1344 2808 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1376 2464 -64 ) ( -1344 2464 -64 ) ( -1344 2464 -96 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1376 2464 -64 ) ( -1344 2464 -96 ) ( -1360 2808 -80 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1376 2528 -96 ) ( -1352 2528 -96 ) ( -1364 2528 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1368 2512 -96 ) ( -1368 2528 -96 ) ( -1368 2520 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1352 2528 -96 ) ( -1352 2512 -96 ) ( -1352 2520 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 687 +{ +( -1376 2464 -64 ) ( -1376 2808 -64 ) ( -1344 2808 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 2464 -64 ) ( -1344 2464 -64 ) ( -1344 2464 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 2464 -64 ) ( -1344 2464 -96 ) ( -1360 2808 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 2528 -96 ) ( -1352 2528 -96 ) ( -1364 2528 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1368 2528 -96 ) ( -1368 2512 -96 ) ( -1368 2520 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 688 +{ +( -1376 2464 -64 ) ( -1376 2808 -64 ) ( -1344 2808 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1344 2464 -64 ) ( -1344 2808 -64 ) ( -1344 2808 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1344 2784 -64 ) ( -1376 2784 -64 ) ( -1376 2784 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 2464 -64 ) ( -1344 2464 -96 ) ( -1360 2808 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1352 2528 -96 ) ( -1376 2528 -96 ) ( -1364 2528 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 689 +{ +( -1376 2144 -64 ) ( -1376 2488 -64 ) ( -1344 2488 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1344 2144 -64 ) ( -1344 2488 -64 ) ( -1344 2488 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1344 2464 -64 ) ( -1376 2464 -64 ) ( -1376 2464 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 2144 -64 ) ( -1344 2144 -96 ) ( -1360 2488 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1352 2208 -96 ) ( -1376 2208 -96 ) ( -1364 2208 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 690 +{ +( -1376 2144 -64 ) ( -1376 2488 -64 ) ( -1344 2488 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 2144 -64 ) ( -1344 2144 -64 ) ( -1344 2144 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 2144 -64 ) ( -1344 2144 -96 ) ( -1360 2488 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 2208 -96 ) ( -1352 2208 -96 ) ( -1364 2208 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1368 2208 -96 ) ( -1368 2192 -96 ) ( -1368 2200 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 691 +{ +( -1376 2144 -64 ) ( -1376 2488 -64 ) ( -1344 2488 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1376 2144 -64 ) ( -1344 2144 -64 ) ( -1344 2144 -96 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1376 2144 -64 ) ( -1344 2144 -96 ) ( -1360 2488 -80 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1376 2208 -96 ) ( -1352 2208 -96 ) ( -1364 2208 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1368 2192 -96 ) ( -1368 2208 -96 ) ( -1368 2200 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -1352 2208 -96 ) ( -1352 2192 -96 ) ( -1352 2200 -64 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 692 +{ +( -1376 2144 -64 ) ( -1376 2488 -64 ) ( -1344 2488 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 2144 -64 ) ( -1344 2144 -64 ) ( -1344 2144 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1344 2144 -64 ) ( -1344 2488 -64 ) ( -1344 2488 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 2144 -64 ) ( -1344 2144 -96 ) ( -1360 2488 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 2208 -96 ) ( -1352 2208 -96 ) ( -1364 2208 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1352 2192 -96 ) ( -1352 2208 -96 ) ( -1352 2200 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 693 +{ +( -1376 1856 -64 ) ( -1376 2200 -64 ) ( -1344 2200 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 1856 -64 ) ( -1344 1856 -64 ) ( -1344 1856 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1344 1856 -64 ) ( -1344 2200 -64 ) ( -1344 2200 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 1856 -64 ) ( -1344 1856 -96 ) ( -1360 2200 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 1920 -96 ) ( -1352 1920 -96 ) ( -1364 1920 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1352 1904 -96 ) ( -1352 1920 -96 ) ( -1352 1912 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 694 +{ +( -1376 1856 -64 ) ( -1376 2200 -64 ) ( -1344 2200 -64 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1376 1856 -64 ) ( -1344 1856 -64 ) ( -1344 1856 -96 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1376 1856 -64 ) ( -1344 1856 -96 ) ( -1360 2200 -80 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1376 1920 -96 ) ( -1352 1920 -96 ) ( -1364 1920 -64 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1368 1904 -96 ) ( -1368 1920 -96 ) ( -1368 1912 -64 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1352 1920 -96 ) ( -1352 1904 -96 ) ( -1352 1912 -64 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 695 +{ +( -1376 1856 -64 ) ( -1376 2200 -64 ) ( -1344 2200 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 1856 -64 ) ( -1344 1856 -64 ) ( -1344 1856 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 1856 -64 ) ( -1344 1856 -96 ) ( -1360 2200 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 1920 -96 ) ( -1352 1920 -96 ) ( -1364 1920 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1368 1920 -96 ) ( -1368 1904 -96 ) ( -1368 1912 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 696 +{ +( -1376 1824 -64 ) ( -1376 2168 -64 ) ( -1344 2168 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1344 1824 -64 ) ( -1344 2168 -64 ) ( -1344 2168 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1344 2144 -64 ) ( -1376 2144 -64 ) ( -1376 2144 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1376 1824 -64 ) ( -1344 1824 -96 ) ( -1360 2168 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1352 1920 -96 ) ( -1376 1920 -96 ) ( -1364 1920 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 697 +{ +( 3198 -113 -64 ) ( 3188 -144 -96 ) ( 3267 -144 -64 ) common/li_pv_v4a -29 5 336 1 1 0 0 7000 +( 3267 -144 -64 ) ( 3188 -144 -96 ) ( 3188 -144 -48 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3188 -376 -64 ) ( 3188 -352 -64 ) ( 3267 -364 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3197 -130 -64 ) ( 3194 -137 -96 ) ( 3200 -123 -96 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3229 -136 -64 ) ( 3200 -123 -95 ) ( 3258 -149 -95 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3223 -150 -64 ) ( 3252 -163 -95 ) ( 3194 -137 -95 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 698 +{ +( 3188 -144 -96 ) ( 3252 -172 -96 ) ( 3267 -144 -64 ) common/li_pv_v4a -29 5 336 1 1 0 0 7000 +( 3188 -144 -48 ) ( 3188 -144 -96 ) ( 3267 -144 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3188 -376 -64 ) ( 3188 -352 -64 ) ( 3267 -364 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3255 -156 -64 ) ( 3258 -149 -96 ) ( 3252 -163 -96 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3229 -136 -64 ) ( 3200 -123 -96 ) ( 3258 -149 -96 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3223 -150 -64 ) ( 3252 -163 -96 ) ( 3194 -137 -96 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 699 +{ +( 3440 -317 -64 ) ( 3440 -396 -96 ) ( 3471 -386 -64 ) common/li_pv_v4a -31 -2 294 1 1 0 0 7000 +( 3440 -396 -48 ) ( 3440 -396 -96 ) ( 3440 -317 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3220 -317 -64 ) ( 3232 -396 -64 ) ( 3208 -396 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3461 -384 -96 ) ( 3447 -390 -96 ) ( 3454 -387 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3435 -326 -95 ) ( 3461 -384 -95 ) ( 3448 -355 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3447 -390 -95 ) ( 3421 -332 -95 ) ( 3434 -361 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 700 +{ +( 3440 -317 -64 ) ( 3412 -332 -96 ) ( 3440 -396 -96 ) common/li_pv_v4a -31 -2 294 1 1 0 0 7000 +( 3440 -317 -64 ) ( 3440 -396 -96 ) ( 3440 -396 -48 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3220 -317 -64 ) ( 3232 -396 -64 ) ( 3208 -396 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3421 -332 -96 ) ( 3435 -326 -96 ) ( 3428 -329 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3435 -326 -96 ) ( 3461 -384 -96 ) ( 3448 -355 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3447 -390 -96 ) ( 3421 -332 -96 ) ( 3434 -361 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 701 +{ +( 3471 -638 -64 ) ( 3440 -628 -96 ) ( 3440 -707 -64 ) common/li_pv_v4a -8 -2 246 1 1 0 0 7000 +( 3440 -707 -64 ) ( 3440 -628 -96 ) ( 3440 -628 -48 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3208 -628 -64 ) ( 3232 -628 -64 ) ( 3220 -707 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3454 -637 -64 ) ( 3447 -634 -96 ) ( 3461 -640 -96 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3448 -669 -64 ) ( 3461 -640 -95 ) ( 3435 -698 -95 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3434 -663 -64 ) ( 3421 -692 -95 ) ( 3447 -634 -95 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 702 +{ +( 3440 -628 -96 ) ( 3412 -692 -96 ) ( 3440 -707 -64 ) common/li_pv_v4a -8 -2 246 1 1 0 0 7000 +( 3440 -628 -48 ) ( 3440 -628 -96 ) ( 3440 -707 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3208 -628 -64 ) ( 3232 -628 -64 ) ( 3220 -707 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3428 -695 -64 ) ( 3435 -698 -96 ) ( 3421 -692 -96 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3448 -669 -64 ) ( 3461 -640 -96 ) ( 3435 -698 -96 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3434 -663 -64 ) ( 3421 -692 -96 ) ( 3447 -634 -96 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 703 +{ +( 3267 -880 -64 ) ( 3188 -880 -96 ) ( 3198 -911 -64 ) common/li_pv_v4a -3 -3 204 1 1 0 0 7000 +( 3188 -880 -48 ) ( 3188 -880 -96 ) ( 3267 -880 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3267 -660 -64 ) ( 3188 -672 -64 ) ( 3188 -648 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3200 -901 -96 ) ( 3194 -887 -96 ) ( 3197 -894 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3258 -875 -95 ) ( 3200 -901 -95 ) ( 3229 -888 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3194 -887 -95 ) ( 3252 -861 -95 ) ( 3223 -874 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 704 +{ +( 3267 -880 -64 ) ( 3252 -852 -96 ) ( 3188 -880 -96 ) common/li_pv_v4a -3 -3 204 1 1 0 0 7000 +( 3267 -880 -64 ) ( 3188 -880 -96 ) ( 3188 -880 -48 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3267 -660 -64 ) ( 3188 -672 -64 ) ( 3188 -648 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3252 -861 -96 ) ( 3258 -875 -96 ) ( 3255 -868 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3258 -875 -96 ) ( 3200 -901 -96 ) ( 3229 -888 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 3194 -887 -96 ) ( 3252 -861 -96 ) ( 3223 -874 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 705 +{ +( 1277 -1296 -64 ) ( 1356 -1296 -96 ) ( 1346 -1265 -64 ) common/li_pv_v4a -6 1 24 1 1 0 0 7000 +( 1356 -1296 -48 ) ( 1356 -1296 -96 ) ( 1277 -1296 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 1277 -1516 -64 ) ( 1356 -1504 -64 ) ( 1356 -1528 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 1344 -1275 -96 ) ( 1350 -1289 -96 ) ( 1347 -1282 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 1286 -1301 -95 ) ( 1344 -1275 -95 ) ( 1315 -1288 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 1350 -1289 -95 ) ( 1292 -1315 -95 ) ( 1321 -1302 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 706 +{ +( 1277 -1296 -64 ) ( 1292 -1324 -96 ) ( 1356 -1296 -96 ) common/li_pv_v4a -6 1 24 1 1 0 0 7000 +( 1277 -1296 -64 ) ( 1356 -1296 -96 ) ( 1356 -1296 -48 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 1277 -1516 -64 ) ( 1356 -1504 -64 ) ( 1356 -1528 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 1292 -1315 -96 ) ( 1286 -1301 -96 ) ( 1289 -1308 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 1286 -1301 -96 ) ( 1344 -1275 -96 ) ( 1315 -1288 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 1350 -1289 -96 ) ( 1292 -1315 -96 ) ( 1321 -1302 -64 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 707 +{ +( 2435 -3248 192 ) ( 2356 -3248 160 ) ( 2366 -3279 192 ) common/li_pv_v4a 1 -2 204 1 1 0 0 7000 +( 2356 -3248 208 ) ( 2356 -3248 160 ) ( 2435 -3248 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2435 -3028 192 ) ( 2356 -3040 192 ) ( 2356 -3016 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2368 -3269 160 ) ( 2362 -3255 160 ) ( 2365 -3262 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2426 -3243 161 ) ( 2368 -3269 161 ) ( 2397 -3256 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2362 -3255 161 ) ( 2420 -3229 161 ) ( 2391 -3242 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 708 +{ +( 2435 -3248 192 ) ( 2420 -3220 160 ) ( 2356 -3248 160 ) common/li_pv_v4a 1 -2 204 1 1 0 0 7000 +( 2435 -3248 192 ) ( 2356 -3248 160 ) ( 2356 -3248 208 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2435 -3028 192 ) ( 2356 -3040 192 ) ( 2356 -3016 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2420 -3229 160 ) ( 2426 -3243 160 ) ( 2423 -3236 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2426 -3243 160 ) ( 2368 -3269 160 ) ( 2397 -3256 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2362 -3255 160 ) ( 2420 -3229 160 ) ( 2391 -3242 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 709 +{ +( 2639 -3006 192 ) ( 2608 -2996 160 ) ( 2608 -3075 192 ) common/li_pv_v4a -14 -6 246 1 1 0 0 7000 +( 2608 -3075 192 ) ( 2608 -2996 160 ) ( 2608 -2996 208 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2376 -2996 192 ) ( 2400 -2996 192 ) ( 2388 -3075 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2622 -3005 192 ) ( 2615 -3002 160 ) ( 2629 -3008 160 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2616 -3037 192 ) ( 2629 -3008 161 ) ( 2603 -3066 161 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2602 -3031 192 ) ( 2589 -3060 161 ) ( 2615 -3002 161 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 710 +{ +( 2608 -2996 160 ) ( 2580 -3060 160 ) ( 2608 -3075 192 ) common/li_pv_v4a -14 -6 246 1 1 0 0 7000 +( 2608 -2996 208 ) ( 2608 -2996 160 ) ( 2608 -3075 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2376 -2996 192 ) ( 2400 -2996 192 ) ( 2388 -3075 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2596 -3063 192 ) ( 2603 -3066 160 ) ( 2589 -3060 160 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2616 -3037 192 ) ( 2629 -3008 160 ) ( 2603 -3066 160 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2602 -3031 192 ) ( 2589 -3060 160 ) ( 2615 -3002 160 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 711 +{ +( 2608 -2237 192 ) ( 2608 -2316 160 ) ( 2639 -2306 192 ) common/li_pv_v4a 26 -7 294 1 1 0 0 7000 +( 2608 -2316 208 ) ( 2608 -2316 160 ) ( 2608 -2237 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2388 -2237 192 ) ( 2400 -2316 192 ) ( 2376 -2316 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2629 -2304 160 ) ( 2615 -2310 160 ) ( 2622 -2307 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2603 -2246 161 ) ( 2629 -2304 161 ) ( 2616 -2275 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2615 -2310 161 ) ( 2589 -2252 161 ) ( 2602 -2281 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 712 +{ +( 2608 -2237 192 ) ( 2580 -2252 160 ) ( 2608 -2316 160 ) common/li_pv_v4a 26 -7 294 1 1 0 0 7000 +( 2608 -2237 192 ) ( 2608 -2316 160 ) ( 2608 -2316 208 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2388 -2237 192 ) ( 2400 -2316 192 ) ( 2376 -2316 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2589 -2252 160 ) ( 2603 -2246 160 ) ( 2596 -2249 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2603 -2246 160 ) ( 2629 -2304 160 ) ( 2616 -2275 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2615 -2310 160 ) ( 2589 -2252 160 ) ( 2602 -2281 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 713 +{ +( 2366 -2033 192 ) ( 2356 -2064 160 ) ( 2435 -2064 192 ) common/li_pv_v4a 13 -7 336 1 1 0 0 7000 +( 2435 -2064 192 ) ( 2356 -2064 160 ) ( 2356 -2064 208 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2356 -2296 192 ) ( 2356 -2272 192 ) ( 2435 -2284 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2365 -2050 192 ) ( 2362 -2057 160 ) ( 2368 -2043 160 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2397 -2056 192 ) ( 2368 -2043 161 ) ( 2426 -2069 161 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2391 -2070 192 ) ( 2420 -2083 161 ) ( 2362 -2057 161 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 714 +{ +( 2356 -2064 160 ) ( 2420 -2092 160 ) ( 2435 -2064 192 ) common/li_pv_v4a 13 -7 336 1 1 0 0 7000 +( 2356 -2064 208 ) ( 2356 -2064 160 ) ( 2435 -2064 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2356 -2296 192 ) ( 2356 -2272 192 ) ( 2435 -2284 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2423 -2076 192 ) ( 2426 -2069 160 ) ( 2420 -2083 160 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2397 -2056 192 ) ( 2368 -2043 160 ) ( 2426 -2069 160 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2391 -2070 192 ) ( 2420 -2083 160 ) ( 2362 -2057 160 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 715 +{ +( 1853 -2064 192 ) ( 1932 -2064 160 ) ( 1922 -2033 192 ) common/li_pv_v4a -28 -7 24 1 1 0 0 7000 +( 1932 -2064 208 ) ( 1932 -2064 160 ) ( 1853 -2064 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 1853 -2284 192 ) ( 1932 -2272 192 ) ( 1932 -2296 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 1920 -2043 160 ) ( 1926 -2057 160 ) ( 1923 -2050 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 1862 -2069 161 ) ( 1920 -2043 161 ) ( 1891 -2056 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 1926 -2057 161 ) ( 1868 -2083 161 ) ( 1897 -2070 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 716 +{ +( 1853 -2064 192 ) ( 1868 -2092 160 ) ( 1932 -2064 160 ) common/li_pv_v4a -28 -7 24 1 1 0 0 7000 +( 1853 -2064 192 ) ( 1932 -2064 160 ) ( 1932 -2064 208 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 1853 -2284 192 ) ( 1932 -2272 192 ) ( 1932 -2296 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 1868 -2083 160 ) ( 1862 -2069 160 ) ( 1865 -2076 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 1862 -2069 160 ) ( 1920 -2043 160 ) ( 1891 -2056 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 1926 -2057 160 ) ( 1868 -2083 160 ) ( 1897 -2070 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 717 +{ +( 2366 -433 448 ) ( 2356 -464 416 ) ( 2435 -464 448 ) common/li_pv_v4a -24 1 156 1 1 0 0 7000 +( 2435 -464 448 ) ( 2356 -464 416 ) ( 2356 -464 464 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2356 -696 448 ) ( 2356 -672 448 ) ( 2435 -684 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2365 -450 448 ) ( 2362 -457 416 ) ( 2368 -443 416 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2397 -456 448 ) ( 2368 -443 417 ) ( 2426 -469 417 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2391 -470 448 ) ( 2420 -483 417 ) ( 2362 -457 417 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 718 +{ +( 2356 -464 416 ) ( 2420 -492 416 ) ( 2435 -464 448 ) common/li_pv_v4a -24 1 156 1 1 0 0 7000 +( 2356 -464 464 ) ( 2356 -464 416 ) ( 2435 -464 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2356 -696 448 ) ( 2356 -672 448 ) ( 2435 -684 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2423 -476 448 ) ( 2426 -469 416 ) ( 2420 -483 416 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2397 -456 448 ) ( 2368 -443 416 ) ( 2426 -469 416 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2391 -470 448 ) ( 2420 -483 416 ) ( 2362 -457 416 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 719 +{ +( 2608 -637 448 ) ( 2608 -716 416 ) ( 2639 -706 448 ) common/li_pv_v4a 16 4 294 1 1 0 0 7000 +( 2608 -716 464 ) ( 2608 -716 416 ) ( 2608 -637 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2388 -637 448 ) ( 2400 -716 448 ) ( 2376 -716 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2629 -704 416 ) ( 2615 -710 416 ) ( 2622 -707 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2603 -646 417 ) ( 2629 -704 417 ) ( 2616 -675 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2615 -710 417 ) ( 2589 -652 417 ) ( 2602 -681 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 720 +{ +( 2608 -637 448 ) ( 2580 -652 416 ) ( 2608 -716 416 ) common/li_pv_v4a 16 4 294 1 1 0 0 7000 +( 2608 -637 448 ) ( 2608 -716 416 ) ( 2608 -716 464 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2388 -637 448 ) ( 2400 -716 448 ) ( 2376 -716 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2589 -652 416 ) ( 2603 -646 416 ) ( 2596 -649 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2603 -646 416 ) ( 2629 -704 416 ) ( 2616 -675 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2615 -710 416 ) ( 2589 -652 416 ) ( 2602 -681 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 721 +{ +( 2639 -3006 448 ) ( 2608 -2996 416 ) ( 2608 -3075 448 ) common/li_pv_v4a -15 -6 246 1 1 0 0 7000 +( 2608 -3075 448 ) ( 2608 -2996 416 ) ( 2608 -2996 464 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2376 -2996 448 ) ( 2400 -2996 448 ) ( 2388 -3075 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2622 -3005 448 ) ( 2615 -3002 416 ) ( 2629 -3008 416 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2616 -3037 448 ) ( 2629 -3008 417 ) ( 2603 -3066 417 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2602 -3031 448 ) ( 2589 -3060 417 ) ( 2615 -3002 417 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 722 +{ +( 2608 -2996 416 ) ( 2580 -3060 416 ) ( 2608 -3075 448 ) common/li_pv_v4a -15 -6 246 1 1 0 0 7000 +( 2608 -2996 464 ) ( 2608 -2996 416 ) ( 2608 -3075 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2376 -2996 448 ) ( 2400 -2996 448 ) ( 2388 -3075 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2596 -3063 448 ) ( 2603 -3066 416 ) ( 2589 -3060 416 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2616 -3037 448 ) ( 2629 -3008 416 ) ( 2603 -3066 416 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2602 -3031 448 ) ( 2589 -3060 416 ) ( 2615 -3002 416 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 723 +{ +( 2112 -3296 448 ) ( 2112 -3264 448 ) ( 2280 -3264 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 -3264 416 ) ( 2112 -3296 448 ) ( 2280 -3280 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2176 -3280 416 ) ( 2176 -3264 416 ) ( 2176 -3272 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2240 -3264 416 ) ( 2240 -3280 416 ) ( 2240 -3272 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2176 -3288 416 ) ( 2192 -3288 416 ) ( 2184 -3288 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2184 -3296 424 ) ( 2176 -3296 424 ) ( 2180 -3296 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 724 +{ +( 2112 -3296 448 ) ( 2112 -3264 448 ) ( 2280 -3264 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2280 -3264 448 ) ( 2112 -3264 448 ) ( 2112 -3264 400 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 -3264 416 ) ( 2112 -3296 448 ) ( 2280 -3280 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2176 -3280 416 ) ( 2176 -3264 416 ) ( 2176 -3272 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2240 -3264 416 ) ( 2240 -3280 416 ) ( 2240 -3272 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2192 -3272 416 ) ( 2176 -3272 416 ) ( 2184 -3272 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 725 +{ +( 2280 -3264 448 ) ( 2283 -3296 448 ) ( 2240 -3296 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2280 -3264 416 ) ( 2283 -3296 448 ) ( 2280 -3264 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2280 -3264 448 ) ( 2112 -3264 448 ) ( 2112 -3264 400 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2240 -3296 448 ) ( 2283 -3296 448 ) ( 2280 -3264 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2240 -3280 416 ) ( 2240 -3264 416 ) ( 2240 -3272 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 726 +{ +( 2112 -3296 448 ) ( 2112 -3264 448 ) ( 2280 -3264 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2280 -3264 448 ) ( 2112 -3264 448 ) ( 2112 -3264 400 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 -3264 448 ) ( 2112 -3296 448 ) ( 2112 -3296 400 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 -3264 416 ) ( 2112 -3296 448 ) ( 2280 -3280 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2176 -3264 416 ) ( 2176 -3280 416 ) ( 2176 -3272 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 727 +{ +( 2435 -3248 448 ) ( 2356 -3248 416 ) ( 2366 -3279 448 ) common/li_pv_v4a 2 -2 204 1 1 0 0 7000 +( 2356 -3248 464 ) ( 2356 -3248 416 ) ( 2435 -3248 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2435 -3028 448 ) ( 2356 -3040 448 ) ( 2356 -3016 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2368 -3269 416 ) ( 2362 -3255 416 ) ( 2365 -3262 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2426 -3243 417 ) ( 2368 -3269 417 ) ( 2397 -3256 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2362 -3255 417 ) ( 2420 -3229 417 ) ( 2391 -3242 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 728 +{ +( 2435 -3248 448 ) ( 2420 -3220 416 ) ( 2356 -3248 416 ) common/li_pv_v4a 2 -2 204 1 1 0 0 7000 +( 2435 -3248 448 ) ( 2356 -3248 416 ) ( 2356 -3248 464 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2435 -3028 448 ) ( 2356 -3040 448 ) ( 2356 -3016 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2420 -3229 416 ) ( 2426 -3243 416 ) ( 2423 -3236 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2426 -3243 416 ) ( 2368 -3269 416 ) ( 2397 -3256 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 2362 -3255 416 ) ( 2420 -3229 416 ) ( 2391 -3242 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 729 +{ +( 3008 -1280 -64 ) ( 3008 -1248 -64 ) ( 3112 -1248 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3072 -1288 -64 ) ( 3072 -1256 -64 ) ( 3072 -1256 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3008 -1248 -64 ) ( 3008 -1280 -64 ) ( 3008 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3008 -1248 -64 ) ( 3008 -1280 -96 ) ( 3112 -1264 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3032 -1256 -96 ) ( 3008 -1256 -96 ) ( 3020 -1256 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 730 +{ +( 3008 -1280 -64 ) ( 3008 -1248 -64 ) ( 3112 -1248 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3008 -1280 -64 ) ( 3112 -1280 -64 ) ( 3112 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3072 -1288 -64 ) ( 3072 -1256 -64 ) ( 3072 -1256 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3008 -1248 -64 ) ( 3008 -1280 -64 ) ( 3008 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3008 -1248 -64 ) ( 3008 -1280 -96 ) ( 3112 -1264 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3008 -1272 -96 ) ( 3032 -1272 -96 ) ( 3020 -1272 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 731 +{ +( 3008 -1280 -64 ) ( 3008 -1248 -64 ) ( 3112 -1248 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 3072 -1288 -64 ) ( 3072 -1256 -64 ) ( 3072 -1256 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 3008 -1248 -64 ) ( 3008 -1280 -64 ) ( 3008 -1280 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 3008 -1248 -64 ) ( 3008 -1280 -96 ) ( 3112 -1264 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 3008 -1256 -96 ) ( 3032 -1256 -96 ) ( 3020 -1256 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 3032 -1272 -96 ) ( 3008 -1272 -96 ) ( 3020 -1272 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 732 +{ +( 2752 -1280 -64 ) ( 2752 -1248 -64 ) ( 2856 -1248 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2816 -1288 -64 ) ( 2816 -1256 -64 ) ( 2816 -1256 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2752 -1248 -64 ) ( 2752 -1280 -64 ) ( 2752 -1280 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2752 -1248 -64 ) ( 2752 -1280 -96 ) ( 2856 -1264 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2752 -1256 -96 ) ( 2776 -1256 -96 ) ( 2764 -1256 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2776 -1272 -96 ) ( 2752 -1272 -96 ) ( 2764 -1272 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 733 +{ +( 2752 -1280 -64 ) ( 2752 -1248 -64 ) ( 2856 -1248 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2752 -1280 -64 ) ( 2856 -1280 -64 ) ( 2856 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2816 -1288 -64 ) ( 2816 -1256 -64 ) ( 2816 -1256 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2752 -1248 -64 ) ( 2752 -1280 -64 ) ( 2752 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2752 -1248 -64 ) ( 2752 -1280 -96 ) ( 2856 -1264 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2752 -1272 -96 ) ( 2776 -1272 -96 ) ( 2764 -1272 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 734 +{ +( 2752 -1280 -64 ) ( 2752 -1248 -64 ) ( 2856 -1248 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2816 -1288 -64 ) ( 2816 -1256 -64 ) ( 2816 -1256 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2752 -1248 -64 ) ( 2752 -1280 -64 ) ( 2752 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2752 -1248 -64 ) ( 2752 -1280 -96 ) ( 2856 -1264 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2776 -1256 -96 ) ( 2752 -1256 -96 ) ( 2764 -1256 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 735 +{ +( 2816 -1280 -64 ) ( 2816 -1248 -64 ) ( 2920 -1248 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2816 -1280 -64 ) ( 2920 -1280 -64 ) ( 2920 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3008 -1296 -64 ) ( 3008 -1264 -64 ) ( 3008 -1264 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2816 -1248 -64 ) ( 2816 -1280 -64 ) ( 2816 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2816 -1248 -64 ) ( 2816 -1280 -96 ) ( 2920 -1264 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 736 +{ +( 2496 -1280 -64 ) ( 2496 -1248 -64 ) ( 2600 -1248 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2496 -1280 -64 ) ( 2600 -1280 -64 ) ( 2600 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2752 -1288 -64 ) ( 2752 -1256 -64 ) ( 2752 -1256 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2496 -1248 -64 ) ( 2496 -1280 -64 ) ( 2496 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2496 -1248 -64 ) ( 2496 -1280 -96 ) ( 2600 -1264 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 737 +{ +( 2432 -1280 -64 ) ( 2432 -1248 -64 ) ( 2536 -1248 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2496 -1288 -64 ) ( 2496 -1256 -64 ) ( 2496 -1256 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2432 -1248 -64 ) ( 2432 -1280 -64 ) ( 2432 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2432 -1248 -64 ) ( 2432 -1280 -96 ) ( 2536 -1264 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2456 -1256 -96 ) ( 2432 -1256 -96 ) ( 2444 -1256 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 738 +{ +( 2432 -1280 -64 ) ( 2432 -1248 -64 ) ( 2536 -1248 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2432 -1280 -64 ) ( 2536 -1280 -64 ) ( 2536 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2496 -1288 -64 ) ( 2496 -1256 -64 ) ( 2496 -1256 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2432 -1248 -64 ) ( 2432 -1280 -64 ) ( 2432 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2432 -1248 -64 ) ( 2432 -1280 -96 ) ( 2536 -1264 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2432 -1272 -96 ) ( 2456 -1272 -96 ) ( 2444 -1272 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 739 +{ +( 2432 -1280 -64 ) ( 2432 -1248 -64 ) ( 2536 -1248 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2496 -1288 -64 ) ( 2496 -1256 -64 ) ( 2496 -1256 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2432 -1248 -64 ) ( 2432 -1280 -64 ) ( 2432 -1280 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2432 -1248 -64 ) ( 2432 -1280 -96 ) ( 2536 -1264 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2432 -1256 -96 ) ( 2456 -1256 -96 ) ( 2444 -1256 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2456 -1272 -96 ) ( 2432 -1272 -96 ) ( 2444 -1272 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 740 +{ +( 2112 -1280 -64 ) ( 2112 -1248 -64 ) ( 2216 -1248 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2176 -1288 -64 ) ( 2176 -1256 -64 ) ( 2176 -1256 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2112 -1248 -64 ) ( 2112 -1280 -64 ) ( 2112 -1280 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2112 -1248 -64 ) ( 2112 -1280 -96 ) ( 2216 -1264 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2112 -1256 -96 ) ( 2136 -1256 -96 ) ( 2124 -1256 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2136 -1272 -96 ) ( 2112 -1272 -96 ) ( 2124 -1272 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 741 +{ +( 2112 -1280 -64 ) ( 2112 -1248 -64 ) ( 2216 -1248 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2112 -1280 -64 ) ( 2216 -1280 -64 ) ( 2216 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2176 -1288 -64 ) ( 2176 -1256 -64 ) ( 2176 -1256 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2112 -1248 -64 ) ( 2112 -1280 -64 ) ( 2112 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2112 -1248 -64 ) ( 2112 -1280 -96 ) ( 2216 -1264 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2112 -1272 -96 ) ( 2136 -1272 -96 ) ( 2124 -1272 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 742 +{ +( 2112 -1280 -64 ) ( 2112 -1248 -64 ) ( 2216 -1248 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2176 -1288 -64 ) ( 2176 -1256 -64 ) ( 2176 -1256 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2112 -1248 -64 ) ( 2112 -1280 -64 ) ( 2112 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2112 -1248 -64 ) ( 2112 -1280 -96 ) ( 2216 -1264 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2136 -1256 -96 ) ( 2112 -1256 -96 ) ( 2124 -1256 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 743 +{ +( 2176 -1280 -64 ) ( 2176 -1248 -64 ) ( 2280 -1248 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2176 -1280 -64 ) ( 2280 -1280 -64 ) ( 2280 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2432 -1288 -64 ) ( 2432 -1256 -64 ) ( 2432 -1256 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2176 -1248 -64 ) ( 2176 -1280 -64 ) ( 2176 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2176 -1248 -64 ) ( 2176 -1280 -96 ) ( 2280 -1264 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 744 +{ +( 1856 -1280 -64 ) ( 1856 -1248 -64 ) ( 1960 -1248 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -1280 -64 ) ( 1960 -1280 -64 ) ( 1960 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2112 -1288 -64 ) ( 2112 -1256 -64 ) ( 2112 -1256 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -1248 -64 ) ( 1856 -1280 -64 ) ( 1856 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -1248 -64 ) ( 1856 -1280 -96 ) ( 1960 -1264 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 745 +{ +( 1792 -1280 -64 ) ( 1792 -1248 -64 ) ( 1896 -1248 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -1288 -64 ) ( 1856 -1256 -64 ) ( 1856 -1256 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1792 -1248 -64 ) ( 1792 -1280 -64 ) ( 1792 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1792 -1248 -64 ) ( 1792 -1280 -96 ) ( 1896 -1264 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1816 -1256 -96 ) ( 1792 -1256 -96 ) ( 1804 -1256 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 746 +{ +( 1792 -1280 -64 ) ( 1792 -1248 -64 ) ( 1896 -1248 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1792 -1280 -64 ) ( 1896 -1280 -64 ) ( 1896 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -1288 -64 ) ( 1856 -1256 -64 ) ( 1856 -1256 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1792 -1248 -64 ) ( 1792 -1280 -64 ) ( 1792 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1792 -1248 -64 ) ( 1792 -1280 -96 ) ( 1896 -1264 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1792 -1272 -96 ) ( 1816 -1272 -96 ) ( 1804 -1272 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 747 +{ +( 1792 -1280 -64 ) ( 1792 -1248 -64 ) ( 1896 -1248 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1856 -1288 -64 ) ( 1856 -1256 -64 ) ( 1856 -1256 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1792 -1248 -64 ) ( 1792 -1280 -64 ) ( 1792 -1280 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1792 -1248 -64 ) ( 1792 -1280 -96 ) ( 1896 -1264 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1792 -1256 -96 ) ( 1816 -1256 -96 ) ( 1804 -1256 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1816 -1272 -96 ) ( 1792 -1272 -96 ) ( 1804 -1272 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 748 +{ +( 1472 -1280 -64 ) ( 1472 -1248 -64 ) ( 1576 -1248 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1536 -1288 -64 ) ( 1536 -1256 -64 ) ( 1536 -1256 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1472 -1248 -64 ) ( 1472 -1280 -64 ) ( 1472 -1280 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1472 -1248 -64 ) ( 1472 -1280 -96 ) ( 1576 -1264 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1472 -1256 -96 ) ( 1496 -1256 -96 ) ( 1484 -1256 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1496 -1272 -96 ) ( 1472 -1272 -96 ) ( 1484 -1272 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 749 +{ +( 1472 -1280 -64 ) ( 1472 -1248 -64 ) ( 1576 -1248 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1472 -1280 -64 ) ( 1576 -1280 -64 ) ( 1576 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1536 -1288 -64 ) ( 1536 -1256 -64 ) ( 1536 -1256 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1472 -1248 -64 ) ( 1472 -1280 -64 ) ( 1472 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1472 -1248 -64 ) ( 1472 -1280 -96 ) ( 1576 -1264 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1472 -1272 -96 ) ( 1496 -1272 -96 ) ( 1484 -1272 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 750 +{ +( 1472 -1280 -64 ) ( 1472 -1248 -64 ) ( 1576 -1248 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1536 -1288 -64 ) ( 1536 -1256 -64 ) ( 1536 -1256 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1472 -1248 -64 ) ( 1472 -1280 -64 ) ( 1472 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1472 -1248 -64 ) ( 1472 -1280 -96 ) ( 1576 -1264 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1496 -1256 -96 ) ( 1472 -1256 -96 ) ( 1484 -1256 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 751 +{ +( 1536 -1280 -64 ) ( 1536 -1248 -64 ) ( 1640 -1248 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1536 -1280 -64 ) ( 1640 -1280 -64 ) ( 1640 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1792 -1288 -64 ) ( 1792 -1256 -64 ) ( 1792 -1256 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1536 -1248 -64 ) ( 1536 -1280 -64 ) ( 1536 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1536 -1248 -64 ) ( 1536 -1280 -96 ) ( 1640 -1264 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 752 +{ +( 1456 -928 -64 ) ( 1456 -896 -64 ) ( 1536 -896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1536 -928 -64 ) ( 1536 -896 -64 ) ( 1536 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1536 -896 -64 ) ( 1456 -896 -64 ) ( 1456 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1472 -896 -64 ) ( 1472 -928 -64 ) ( 1472 -928 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1456 -896 -96 ) ( 1456 -928 -64 ) ( 1536 -912 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1504 -904 -96 ) ( 1472 -904 -96 ) ( 1488 -904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 753 +{ +( 1456 -928 -64 ) ( 1456 -896 -64 ) ( 1536 -896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1536 -928 -64 ) ( 1536 -896 -64 ) ( 1536 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1472 -896 -64 ) ( 1472 -928 -64 ) ( 1472 -928 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1456 -896 -96 ) ( 1456 -928 -64 ) ( 1536 -912 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1472 -920 -88 ) ( 1488 -920 -88 ) ( 1480 -920 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 754 +{ +( 1456 -928 -64 ) ( 1456 -896 -64 ) ( 1536 -896 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1536 -928 -64 ) ( 1536 -896 -64 ) ( 1536 -896 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1472 -896 -64 ) ( 1472 -928 -64 ) ( 1472 -928 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1456 -896 -96 ) ( 1456 -928 -64 ) ( 1536 -912 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1472 -904 -96 ) ( 1504 -904 -96 ) ( 1488 -904 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1488 -920 -88 ) ( 1472 -920 -88 ) ( 1480 -920 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 755 +{ +( 1776 -928 -64 ) ( 1776 -896 -64 ) ( 1856 -896 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1856 -928 -64 ) ( 1856 -896 -64 ) ( 1856 -896 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1792 -896 -64 ) ( 1792 -928 -64 ) ( 1792 -928 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1776 -896 -96 ) ( 1776 -928 -64 ) ( 1856 -912 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1792 -904 -96 ) ( 1824 -904 -96 ) ( 1808 -904 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1808 -920 -88 ) ( 1792 -920 -88 ) ( 1800 -920 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 756 +{ +( 1776 -928 -64 ) ( 1776 -896 -64 ) ( 1856 -896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1856 -928 -64 ) ( 1856 -896 -64 ) ( 1856 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1792 -896 -64 ) ( 1792 -928 -64 ) ( 1792 -928 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1776 -896 -96 ) ( 1776 -928 -64 ) ( 1856 -912 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1792 -920 -88 ) ( 1808 -920 -88 ) ( 1800 -920 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 757 +{ +( 1776 -928 -64 ) ( 1776 -896 -64 ) ( 1856 -896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1856 -928 -64 ) ( 1856 -896 -64 ) ( 1856 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1856 -896 -64 ) ( 1776 -896 -64 ) ( 1776 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1792 -896 -64 ) ( 1792 -928 -64 ) ( 1792 -928 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1776 -896 -96 ) ( 1776 -928 -64 ) ( 1856 -912 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1824 -904 -96 ) ( 1792 -904 -96 ) ( 1808 -904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 758 +{ +( 1712 -928 -64 ) ( 1712 -896 -64 ) ( 1792 -896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1792 -928 -64 ) ( 1792 -896 -64 ) ( 1792 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1792 -896 -64 ) ( 1712 -896 -64 ) ( 1712 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1536 -896 -64 ) ( 1536 -928 -64 ) ( 1536 -928 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1712 -896 -96 ) ( 1712 -928 -64 ) ( 1792 -912 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 759 +{ +( 2032 -928 -64 ) ( 2032 -896 -64 ) ( 2112 -896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 -928 -64 ) ( 2112 -896 -64 ) ( 2112 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 -896 -64 ) ( 2032 -896 -64 ) ( 2032 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1856 -896 -64 ) ( 1856 -928 -64 ) ( 1856 -928 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2032 -896 -96 ) ( 2032 -928 -64 ) ( 2112 -912 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 760 +{ +( 2096 -928 -64 ) ( 2096 -896 -64 ) ( 2176 -896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2176 -928 -64 ) ( 2176 -896 -64 ) ( 2176 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2176 -896 -64 ) ( 2096 -896 -64 ) ( 2096 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 -896 -64 ) ( 2112 -928 -64 ) ( 2112 -928 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2096 -896 -96 ) ( 2096 -928 -64 ) ( 2176 -912 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2144 -904 -96 ) ( 2112 -904 -96 ) ( 2128 -904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 761 +{ +( 2096 -928 -64 ) ( 2096 -896 -64 ) ( 2176 -896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2176 -928 -64 ) ( 2176 -896 -64 ) ( 2176 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 -896 -64 ) ( 2112 -928 -64 ) ( 2112 -928 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2096 -896 -96 ) ( 2096 -928 -64 ) ( 2176 -912 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 -920 -88 ) ( 2128 -920 -88 ) ( 2120 -920 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 762 +{ +( 2096 -928 -64 ) ( 2096 -896 -64 ) ( 2176 -896 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2176 -928 -64 ) ( 2176 -896 -64 ) ( 2176 -896 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2112 -896 -64 ) ( 2112 -928 -64 ) ( 2112 -928 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2096 -896 -96 ) ( 2096 -928 -64 ) ( 2176 -912 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2112 -904 -96 ) ( 2144 -904 -96 ) ( 2128 -904 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2128 -920 -88 ) ( 2112 -920 -88 ) ( 2120 -920 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 763 +{ +( 2416 -928 -64 ) ( 2416 -896 -64 ) ( 2496 -896 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2496 -928 -64 ) ( 2496 -896 -64 ) ( 2496 -896 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2432 -896 -64 ) ( 2432 -928 -64 ) ( 2432 -928 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2416 -896 -96 ) ( 2416 -928 -64 ) ( 2496 -912 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2432 -904 -96 ) ( 2464 -904 -96 ) ( 2448 -904 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2448 -920 -88 ) ( 2432 -920 -88 ) ( 2440 -920 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 764 +{ +( 2416 -928 -64 ) ( 2416 -896 -64 ) ( 2496 -896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2496 -928 -64 ) ( 2496 -896 -64 ) ( 2496 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2432 -896 -64 ) ( 2432 -928 -64 ) ( 2432 -928 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2416 -896 -96 ) ( 2416 -928 -64 ) ( 2496 -912 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2432 -920 -88 ) ( 2448 -920 -88 ) ( 2440 -920 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 765 +{ +( 2416 -928 -64 ) ( 2416 -896 -64 ) ( 2496 -896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2496 -928 -64 ) ( 2496 -896 -64 ) ( 2496 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2496 -896 -64 ) ( 2416 -896 -64 ) ( 2416 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2432 -896 -64 ) ( 2432 -928 -64 ) ( 2432 -928 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2416 -896 -96 ) ( 2416 -928 -64 ) ( 2496 -912 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2464 -904 -96 ) ( 2432 -904 -96 ) ( 2448 -904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 766 +{ +( 2352 -928 -64 ) ( 2352 -896 -64 ) ( 2432 -896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2432 -928 -64 ) ( 2432 -896 -64 ) ( 2432 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2432 -896 -64 ) ( 2352 -896 -64 ) ( 2352 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2176 -896 -64 ) ( 2176 -928 -64 ) ( 2176 -928 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2352 -896 -96 ) ( 2352 -928 -64 ) ( 2432 -912 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 767 +{ +( 2672 -928 -64 ) ( 2672 -896 -64 ) ( 2752 -896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2752 -928 -64 ) ( 2752 -896 -64 ) ( 2752 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2752 -896 -64 ) ( 2672 -896 -64 ) ( 2672 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2496 -896 -64 ) ( 2496 -928 -64 ) ( 2496 -928 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2672 -896 -96 ) ( 2672 -928 -64 ) ( 2752 -912 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 768 +{ +( 2736 -928 -64 ) ( 2736 -896 -64 ) ( 2816 -896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2816 -928 -64 ) ( 2816 -896 -64 ) ( 2816 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2816 -896 -64 ) ( 2736 -896 -64 ) ( 2736 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2752 -896 -64 ) ( 2752 -928 -64 ) ( 2752 -928 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2736 -896 -96 ) ( 2736 -928 -64 ) ( 2816 -912 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2784 -904 -96 ) ( 2752 -904 -96 ) ( 2768 -904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 769 +{ +( 2736 -928 -64 ) ( 2736 -896 -64 ) ( 2816 -896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2816 -928 -64 ) ( 2816 -896 -64 ) ( 2816 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2752 -896 -64 ) ( 2752 -928 -64 ) ( 2752 -928 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2736 -896 -96 ) ( 2736 -928 -64 ) ( 2816 -912 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2752 -920 -88 ) ( 2768 -920 -88 ) ( 2760 -920 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 770 +{ +( 2736 -928 -64 ) ( 2736 -896 -64 ) ( 2816 -896 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2816 -928 -64 ) ( 2816 -896 -64 ) ( 2816 -896 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2752 -896 -64 ) ( 2752 -928 -64 ) ( 2752 -928 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2736 -896 -96 ) ( 2736 -928 -64 ) ( 2816 -912 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2752 -904 -96 ) ( 2784 -904 -96 ) ( 2768 -904 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2768 -920 -88 ) ( 2752 -920 -88 ) ( 2760 -920 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 771 +{ +( 2992 -928 -64 ) ( 2992 -896 -64 ) ( 3072 -896 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 3072 -928 -64 ) ( 3072 -896 -64 ) ( 3072 -896 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 3008 -896 -64 ) ( 3008 -928 -64 ) ( 3008 -928 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2992 -896 -96 ) ( 2992 -928 -64 ) ( 3072 -912 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 3008 -904 -96 ) ( 3040 -904 -96 ) ( 3024 -904 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 3024 -920 -88 ) ( 3008 -920 -88 ) ( 3016 -920 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 772 +{ +( 2992 -928 -64 ) ( 2992 -896 -64 ) ( 3072 -896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3072 -928 -64 ) ( 3072 -896 -64 ) ( 3072 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3008 -896 -64 ) ( 3008 -928 -64 ) ( 3008 -928 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2992 -896 -96 ) ( 2992 -928 -64 ) ( 3072 -912 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3008 -920 -88 ) ( 3024 -920 -88 ) ( 3016 -920 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 773 +{ +( 2992 -928 -64 ) ( 2992 -896 -64 ) ( 3072 -896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3072 -928 -64 ) ( 3072 -896 -64 ) ( 3072 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3072 -896 -64 ) ( 2992 -896 -64 ) ( 2992 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3008 -896 -64 ) ( 3008 -928 -64 ) ( 3008 -928 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2992 -896 -96 ) ( 2992 -928 -64 ) ( 3072 -912 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3040 -904 -96 ) ( 3008 -904 -96 ) ( 3024 -904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 774 +{ +( 2928 -928 -64 ) ( 2928 -896 -64 ) ( 3008 -896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3008 -928 -64 ) ( 3008 -896 -64 ) ( 3008 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3008 -896 -64 ) ( 2928 -896 -64 ) ( 2928 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2816 -896 -64 ) ( 2816 -928 -64 ) ( 2816 -928 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2928 -896 -96 ) ( 2928 -928 -64 ) ( 3008 -912 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 775 +{ +( 480 224 -64 ) ( 480 256 -64 ) ( 512 256 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 512 224 -64 ) ( 512 256 -64 ) ( 512 256 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 448 256 -64 ) ( 448 224 -64 ) ( 448 224 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 416 256 -96 ) ( 416 224 -64 ) ( 512 240 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 448 248 -96 ) ( 480 248 -96 ) ( 464 248 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 464 232 -88 ) ( 448 232 -88 ) ( 456 232 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 776 +{ +( 480 224 -64 ) ( 480 256 -64 ) ( 512 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 512 224 -64 ) ( 512 256 -64 ) ( 512 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 448 256 -64 ) ( 448 224 -64 ) ( 448 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 416 256 -96 ) ( 416 224 -64 ) ( 512 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 448 232 -88 ) ( 464 232 -88 ) ( 456 232 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 777 +{ +( 480 224 -64 ) ( 480 256 -64 ) ( 512 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 512 224 -64 ) ( 512 256 -64 ) ( 512 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 512 256 -64 ) ( 480 256 -64 ) ( 480 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 448 256 -64 ) ( 448 224 -64 ) ( 448 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 416 256 -96 ) ( 416 224 -64 ) ( 512 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 480 248 -96 ) ( 448 248 -96 ) ( 464 248 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 778 +{ +( 416 224 -64 ) ( 416 256 -64 ) ( 448 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 448 224 -64 ) ( 448 256 -64 ) ( 448 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 448 256 -64 ) ( 416 256 -64 ) ( 416 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 256 256 -64 ) ( 256 224 -64 ) ( 256 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 352 256 -96 ) ( 352 224 -64 ) ( 448 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 779 +{ +( 736 224 -64 ) ( 736 256 -64 ) ( 768 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 224 -64 ) ( 768 256 -64 ) ( 768 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 256 -64 ) ( 736 256 -64 ) ( 736 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 512 256 -64 ) ( 512 224 -64 ) ( 512 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 672 256 -96 ) ( 672 224 -64 ) ( 768 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 780 +{ +( 800 224 -64 ) ( 800 256 -64 ) ( 832 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 832 224 -64 ) ( 832 256 -64 ) ( 832 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 832 256 -64 ) ( 800 256 -64 ) ( 800 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 256 -64 ) ( 768 224 -64 ) ( 768 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 736 256 -96 ) ( 736 224 -64 ) ( 832 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 800 248 -96 ) ( 768 248 -96 ) ( 784 248 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 781 +{ +( 800 224 -64 ) ( 800 256 -64 ) ( 832 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 832 224 -64 ) ( 832 256 -64 ) ( 832 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 256 -64 ) ( 768 224 -64 ) ( 768 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 736 256 -96 ) ( 736 224 -64 ) ( 832 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 232 -88 ) ( 784 232 -88 ) ( 776 232 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 782 +{ +( 800 224 -64 ) ( 800 256 -64 ) ( 832 256 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 832 224 -64 ) ( 832 256 -64 ) ( 832 256 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 768 256 -64 ) ( 768 224 -64 ) ( 768 224 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 736 256 -96 ) ( 736 224 -64 ) ( 832 240 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 768 248 -96 ) ( 800 248 -96 ) ( 784 248 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 784 232 -88 ) ( 768 232 -88 ) ( 776 232 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 783 +{ +( 1120 224 -64 ) ( 1120 256 -64 ) ( 1152 256 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1152 224 -64 ) ( 1152 256 -64 ) ( 1152 256 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1088 256 -64 ) ( 1088 224 -64 ) ( 1088 224 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1056 256 -96 ) ( 1056 224 -64 ) ( 1152 240 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1088 248 -96 ) ( 1120 248 -96 ) ( 1104 248 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1104 232 -88 ) ( 1088 232 -88 ) ( 1096 232 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 784 +{ +( 1120 224 -64 ) ( 1120 256 -64 ) ( 1152 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1152 224 -64 ) ( 1152 256 -64 ) ( 1152 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1088 256 -64 ) ( 1088 224 -64 ) ( 1088 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1056 256 -96 ) ( 1056 224 -64 ) ( 1152 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1088 232 -88 ) ( 1104 232 -88 ) ( 1096 232 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 785 +{ +( 1120 224 -64 ) ( 1120 256 -64 ) ( 1152 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1152 224 -64 ) ( 1152 256 -64 ) ( 1152 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1152 256 -64 ) ( 1120 256 -64 ) ( 1120 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1088 256 -64 ) ( 1088 224 -64 ) ( 1088 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1056 256 -96 ) ( 1056 224 -64 ) ( 1152 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1120 248 -96 ) ( 1088 248 -96 ) ( 1104 248 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 786 +{ +( 1056 224 -64 ) ( 1056 256 -64 ) ( 1088 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1088 224 -64 ) ( 1088 256 -64 ) ( 1088 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1088 256 -64 ) ( 1056 256 -64 ) ( 1056 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 832 256 -64 ) ( 832 224 -64 ) ( 832 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 992 256 -96 ) ( 992 224 -64 ) ( 1088 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 787 +{ +( 1376 224 -64 ) ( 1376 256 -64 ) ( 1408 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1408 224 -64 ) ( 1408 256 -64 ) ( 1408 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1408 256 -64 ) ( 1376 256 -64 ) ( 1376 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1152 256 -64 ) ( 1152 224 -64 ) ( 1152 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1312 256 -96 ) ( 1312 224 -64 ) ( 1408 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 788 +{ +( 1440 224 -64 ) ( 1440 256 -64 ) ( 1472 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1472 224 -64 ) ( 1472 256 -64 ) ( 1472 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1472 256 -64 ) ( 1440 256 -64 ) ( 1440 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1408 256 -64 ) ( 1408 224 -64 ) ( 1408 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1376 256 -96 ) ( 1376 224 -64 ) ( 1472 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1440 248 -96 ) ( 1408 248 -96 ) ( 1424 248 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 789 +{ +( 1440 224 -64 ) ( 1440 256 -64 ) ( 1472 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1472 224 -64 ) ( 1472 256 -64 ) ( 1472 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1408 256 -64 ) ( 1408 224 -64 ) ( 1408 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1376 256 -96 ) ( 1376 224 -64 ) ( 1472 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1408 232 -88 ) ( 1424 232 -88 ) ( 1416 232 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 790 +{ +( 1440 224 -64 ) ( 1440 256 -64 ) ( 1472 256 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1472 224 -64 ) ( 1472 256 -64 ) ( 1472 256 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1408 256 -64 ) ( 1408 224 -64 ) ( 1408 224 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1376 256 -96 ) ( 1376 224 -64 ) ( 1472 240 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1408 248 -96 ) ( 1440 248 -96 ) ( 1424 248 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1424 232 -88 ) ( 1408 232 -88 ) ( 1416 232 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 791 +{ +( 1760 224 -64 ) ( 1760 256 -64 ) ( 1792 256 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1792 224 -64 ) ( 1792 256 -64 ) ( 1792 256 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1728 256 -64 ) ( 1728 224 -64 ) ( 1728 224 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1696 256 -96 ) ( 1696 224 -64 ) ( 1792 240 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1728 248 -96 ) ( 1760 248 -96 ) ( 1744 248 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1744 232 -88 ) ( 1728 232 -88 ) ( 1736 232 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 792 +{ +( 1760 224 -64 ) ( 1760 256 -64 ) ( 1792 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1792 224 -64 ) ( 1792 256 -64 ) ( 1792 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1728 256 -64 ) ( 1728 224 -64 ) ( 1728 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1696 256 -96 ) ( 1696 224 -64 ) ( 1792 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1728 232 -88 ) ( 1744 232 -88 ) ( 1736 232 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 793 +{ +( 1760 224 -64 ) ( 1760 256 -64 ) ( 1792 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1792 224 -64 ) ( 1792 256 -64 ) ( 1792 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1792 256 -64 ) ( 1760 256 -64 ) ( 1760 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1728 256 -64 ) ( 1728 224 -64 ) ( 1728 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1696 256 -96 ) ( 1696 224 -64 ) ( 1792 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1760 248 -96 ) ( 1728 248 -96 ) ( 1744 248 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 794 +{ +( 1696 224 -64 ) ( 1696 256 -64 ) ( 1728 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1728 224 -64 ) ( 1728 256 -64 ) ( 1728 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1728 256 -64 ) ( 1696 256 -64 ) ( 1696 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1472 256 -64 ) ( 1472 224 -64 ) ( 1472 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1632 256 -96 ) ( 1632 224 -64 ) ( 1728 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 795 +{ +( 2016 224 -64 ) ( 2016 256 -64 ) ( 2048 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2048 224 -64 ) ( 2048 256 -64 ) ( 2048 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2048 256 -64 ) ( 2016 256 -64 ) ( 2016 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1792 256 -64 ) ( 1792 224 -64 ) ( 1792 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1952 256 -96 ) ( 1952 224 -64 ) ( 2048 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 796 +{ +( 2080 224 -64 ) ( 2080 256 -64 ) ( 2112 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 224 -64 ) ( 2112 256 -64 ) ( 2112 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 256 -64 ) ( 2080 256 -64 ) ( 2080 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2048 256 -64 ) ( 2048 224 -64 ) ( 2048 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2016 256 -96 ) ( 2016 224 -64 ) ( 2112 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2080 248 -96 ) ( 2048 248 -96 ) ( 2064 248 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 797 +{ +( 2080 224 -64 ) ( 2080 256 -64 ) ( 2112 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 224 -64 ) ( 2112 256 -64 ) ( 2112 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2048 256 -64 ) ( 2048 224 -64 ) ( 2048 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2016 256 -96 ) ( 2016 224 -64 ) ( 2112 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2048 232 -88 ) ( 2064 232 -88 ) ( 2056 232 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 798 +{ +( 2080 224 -64 ) ( 2080 256 -64 ) ( 2112 256 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2112 224 -64 ) ( 2112 256 -64 ) ( 2112 256 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2048 256 -64 ) ( 2048 224 -64 ) ( 2048 224 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2016 256 -96 ) ( 2016 224 -64 ) ( 2112 240 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2048 248 -96 ) ( 2080 248 -96 ) ( 2064 248 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2064 232 -88 ) ( 2048 232 -88 ) ( 2056 232 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 799 +{ +( 2400 224 -64 ) ( 2400 256 -64 ) ( 2432 256 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2432 224 -64 ) ( 2432 256 -64 ) ( 2432 256 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2368 256 -64 ) ( 2368 224 -64 ) ( 2368 224 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2336 256 -96 ) ( 2336 224 -64 ) ( 2432 240 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2368 248 -96 ) ( 2400 248 -96 ) ( 2384 248 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2384 232 -88 ) ( 2368 232 -88 ) ( 2376 232 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 800 +{ +( 2400 224 -64 ) ( 2400 256 -64 ) ( 2432 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2432 224 -64 ) ( 2432 256 -64 ) ( 2432 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2368 256 -64 ) ( 2368 224 -64 ) ( 2368 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2336 256 -96 ) ( 2336 224 -64 ) ( 2432 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2368 232 -88 ) ( 2384 232 -88 ) ( 2376 232 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 801 +{ +( 2400 224 -64 ) ( 2400 256 -64 ) ( 2432 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2432 224 -64 ) ( 2432 256 -64 ) ( 2432 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2432 256 -64 ) ( 2400 256 -64 ) ( 2400 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2368 256 -64 ) ( 2368 224 -64 ) ( 2368 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2336 256 -96 ) ( 2336 224 -64 ) ( 2432 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2400 248 -96 ) ( 2368 248 -96 ) ( 2384 248 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 802 +{ +( 2336 224 -64 ) ( 2336 256 -64 ) ( 2368 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2368 224 -64 ) ( 2368 256 -64 ) ( 2368 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2368 256 -64 ) ( 2336 256 -64 ) ( 2336 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 256 -64 ) ( 2112 224 -64 ) ( 2112 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2272 256 -96 ) ( 2272 224 -64 ) ( 2368 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 803 +{ +( 2656 224 -64 ) ( 2656 256 -64 ) ( 2688 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2688 224 -64 ) ( 2688 256 -64 ) ( 2688 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2688 256 -64 ) ( 2656 256 -64 ) ( 2656 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2432 256 -64 ) ( 2432 224 -64 ) ( 2432 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2592 256 -96 ) ( 2592 224 -64 ) ( 2688 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 804 +{ +( 2720 224 -64 ) ( 2720 256 -64 ) ( 2752 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2752 224 -64 ) ( 2752 256 -64 ) ( 2752 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2752 256 -64 ) ( 2720 256 -64 ) ( 2720 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2688 256 -64 ) ( 2688 224 -64 ) ( 2688 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2656 256 -96 ) ( 2656 224 -64 ) ( 2752 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2720 248 -96 ) ( 2688 248 -96 ) ( 2704 248 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 805 +{ +( 2720 224 -64 ) ( 2720 256 -64 ) ( 2752 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2752 224 -64 ) ( 2752 256 -64 ) ( 2752 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2688 256 -64 ) ( 2688 224 -64 ) ( 2688 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2656 256 -96 ) ( 2656 224 -64 ) ( 2752 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2688 232 -88 ) ( 2704 232 -88 ) ( 2696 232 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 806 +{ +( 2720 224 -64 ) ( 2720 256 -64 ) ( 2752 256 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2752 224 -64 ) ( 2752 256 -64 ) ( 2752 256 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2688 256 -64 ) ( 2688 224 -64 ) ( 2688 224 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2656 256 -96 ) ( 2656 224 -64 ) ( 2752 240 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2688 248 -96 ) ( 2720 248 -96 ) ( 2704 248 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2704 232 -88 ) ( 2688 232 -88 ) ( 2696 232 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 807 +{ +( 3040 224 -64 ) ( 3040 256 -64 ) ( 3072 256 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 3072 224 -64 ) ( 3072 256 -64 ) ( 3072 256 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 3008 256 -64 ) ( 3008 224 -64 ) ( 3008 224 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2976 256 -96 ) ( 2976 224 -64 ) ( 3072 240 -80 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 3008 248 -96 ) ( 3040 248 -96 ) ( 3024 248 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 3024 232 -88 ) ( 3008 232 -88 ) ( 3016 232 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 808 +{ +( 3040 224 -64 ) ( 3040 256 -64 ) ( 3072 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3072 224 -64 ) ( 3072 256 -64 ) ( 3072 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3008 256 -64 ) ( 3008 224 -64 ) ( 3008 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2976 256 -96 ) ( 2976 224 -64 ) ( 3072 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3008 232 -88 ) ( 3024 232 -88 ) ( 3016 232 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 809 +{ +( 3040 224 -64 ) ( 3040 256 -64 ) ( 3072 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3072 224 -64 ) ( 3072 256 -64 ) ( 3072 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3072 256 -64 ) ( 3040 256 -64 ) ( 3040 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3008 256 -64 ) ( 3008 224 -64 ) ( 3008 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2976 256 -96 ) ( 2976 224 -64 ) ( 3072 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3040 248 -96 ) ( 3008 248 -96 ) ( 3024 248 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 810 +{ +( 2976 224 -64 ) ( 2976 256 -64 ) ( 3008 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3008 224 -64 ) ( 3008 256 -64 ) ( 3008 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3008 256 -64 ) ( 2976 256 -64 ) ( 2976 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2752 256 -64 ) ( 2752 224 -64 ) ( 2752 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2912 256 -96 ) ( 2912 224 -64 ) ( 3008 240 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 811 +{ +( 180 -128 -64 ) ( 183 -96 -64 ) ( 256 -96 -64 ) common/li_pv_v4a 0 -8 0 1 1 0 1 7000 +( 256 -128 -96 ) ( 256 -128 -64 ) ( 256 -96 -64 ) common/li_pv_v4a 0 -8 0 1 1 0 1 7000 +( 256 -96 -64 ) ( 183 -96 -64 ) ( 180 -128 -96 ) common/li_pv_v4a 0 -8 0 1 1 0 1 7000 +( 192 -104 -96 ) ( 192 -96 -96 ) ( 192 -100 -64 ) common/li_pv_v4a 0 -8 0 1 1 0 1 7000 +( 192 -104 -96 ) ( 208 -104 -96 ) ( 200 -104 -64 ) common/li_pv_v4a 0 -8 0 1 1 0 1 7000 +( 208 -120 -96 ) ( 192 -120 -96 ) ( 200 -120 -64 ) common/li_pv_v4a 0 -8 0 1 1 0 1 7000 +} +// brush 812 +{ +( 180 -128 -64 ) ( 183 -96 -64 ) ( 256 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 256 -128 -96 ) ( 256 -128 -64 ) ( 256 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 184 -128 -96 ) ( 184 -128 -64 ) ( 248 -128 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 256 -96 -64 ) ( 183 -96 -64 ) ( 180 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 192 -104 -96 ) ( 192 -96 -96 ) ( 192 -100 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 192 -120 -96 ) ( 208 -120 -96 ) ( 200 -120 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 813 +{ +( 180 -128 -64 ) ( 183 -96 -64 ) ( 256 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 256 -128 -96 ) ( 256 -128 -64 ) ( 256 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 256 -96 -64 ) ( 183 -96 -64 ) ( 180 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 192 -104 -96 ) ( 192 -96 -96 ) ( 192 -100 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 208 -104 -96 ) ( 192 -104 -96 ) ( 200 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 814 +{ +( 180 -128 -64 ) ( 183 -96 -64 ) ( 256 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 184 -128 -96 ) ( 184 -128 -64 ) ( 248 -128 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 180 -128 -96 ) ( 183 -96 -64 ) ( 180 -128 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 256 -96 -64 ) ( 183 -96 -64 ) ( 180 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 192 -96 -96 ) ( 192 -104 -96 ) ( 192 -100 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 815 +{ +( 280 -128 -64 ) ( 277 -96 -64 ) ( 555 -96 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 555 -96 -64 ) ( 277 -96 -64 ) ( 280 -128 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 512 -96 -96 ) ( 512 -120 -96 ) ( 512 -108 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 448 -112 -96 ) ( 448 -96 -96 ) ( 448 -104 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 448 -104 -96 ) ( 472 -104 -96 ) ( 460 -104 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 464 -120 -96 ) ( 448 -120 -96 ) ( 456 -120 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 816 +{ +( 280 -128 -64 ) ( 277 -96 -64 ) ( 555 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 552 -128 -64 ) ( 552 -128 -96 ) ( 512 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 555 -96 -64 ) ( 277 -96 -64 ) ( 280 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 512 -96 -96 ) ( 512 -120 -96 ) ( 512 -108 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 448 -112 -96 ) ( 448 -96 -96 ) ( 448 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 448 -120 -96 ) ( 464 -120 -96 ) ( 456 -120 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 817 +{ +( 280 -128 -64 ) ( 277 -96 -64 ) ( 555 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 555 -96 -64 ) ( 277 -96 -64 ) ( 280 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 512 -96 -96 ) ( 512 -120 -96 ) ( 512 -108 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 448 -112 -96 ) ( 448 -96 -96 ) ( 448 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 472 -104 -96 ) ( 448 -104 -96 ) ( 460 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 818 +{ +( 280 -128 -64 ) ( 277 -96 -64 ) ( 555 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 552 -128 -64 ) ( 552 -128 -96 ) ( 512 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 555 -96 -64 ) ( 277 -96 -64 ) ( 280 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 256 -112 -96 ) ( 256 -96 -96 ) ( 256 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 448 -96 -96 ) ( 448 -112 -96 ) ( 448 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 819 +{ +( 600 -128 -64 ) ( 597 -96 -64 ) ( 875 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 872 -128 -64 ) ( 872 -128 -96 ) ( 832 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 875 -96 -64 ) ( 597 -96 -64 ) ( 600 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 512 -112 -96 ) ( 512 -96 -96 ) ( 512 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 -96 -96 ) ( 768 -112 -96 ) ( 768 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 820 +{ +( 600 -128 -64 ) ( 597 -96 -64 ) ( 875 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 875 -96 -64 ) ( 597 -96 -64 ) ( 600 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 832 -96 -96 ) ( 832 -120 -96 ) ( 832 -108 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 -112 -96 ) ( 768 -96 -96 ) ( 768 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 792 -104 -96 ) ( 768 -104 -96 ) ( 780 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 821 +{ +( 600 -128 -64 ) ( 597 -96 -64 ) ( 875 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 872 -128 -64 ) ( 872 -128 -96 ) ( 832 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 875 -96 -64 ) ( 597 -96 -64 ) ( 600 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 832 -96 -96 ) ( 832 -120 -96 ) ( 832 -108 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 -112 -96 ) ( 768 -96 -96 ) ( 768 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 -120 -96 ) ( 784 -120 -96 ) ( 776 -120 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 822 +{ +( 600 -128 -64 ) ( 597 -96 -64 ) ( 875 -96 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 875 -96 -64 ) ( 597 -96 -64 ) ( 600 -128 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 832 -96 -96 ) ( 832 -120 -96 ) ( 832 -108 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 768 -112 -96 ) ( 768 -96 -96 ) ( 768 -104 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 768 -104 -96 ) ( 792 -104 -96 ) ( 780 -104 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 784 -120 -96 ) ( 768 -120 -96 ) ( 776 -120 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 823 +{ +( 920 -128 -64 ) ( 917 -96 -64 ) ( 1195 -96 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1195 -96 -64 ) ( 917 -96 -64 ) ( 920 -128 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1152 -96 -96 ) ( 1152 -120 -96 ) ( 1152 -108 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1088 -112 -96 ) ( 1088 -96 -96 ) ( 1088 -104 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1088 -104 -96 ) ( 1112 -104 -96 ) ( 1100 -104 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1104 -120 -96 ) ( 1088 -120 -96 ) ( 1096 -120 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 824 +{ +( 920 -128 -64 ) ( 917 -96 -64 ) ( 1195 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1192 -128 -64 ) ( 1192 -128 -96 ) ( 1152 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1195 -96 -64 ) ( 917 -96 -64 ) ( 920 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1152 -96 -96 ) ( 1152 -120 -96 ) ( 1152 -108 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1088 -112 -96 ) ( 1088 -96 -96 ) ( 1088 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1088 -120 -96 ) ( 1104 -120 -96 ) ( 1096 -120 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 825 +{ +( 920 -128 -64 ) ( 917 -96 -64 ) ( 1195 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1195 -96 -64 ) ( 917 -96 -64 ) ( 920 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1152 -96 -96 ) ( 1152 -120 -96 ) ( 1152 -108 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1088 -112 -96 ) ( 1088 -96 -96 ) ( 1088 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1112 -104 -96 ) ( 1088 -104 -96 ) ( 1100 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 826 +{ +( 920 -128 -64 ) ( 917 -96 -64 ) ( 1195 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1192 -128 -64 ) ( 1192 -128 -96 ) ( 1152 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1195 -96 -64 ) ( 917 -96 -64 ) ( 920 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 832 -112 -96 ) ( 832 -96 -96 ) ( 832 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1088 -96 -96 ) ( 1088 -112 -96 ) ( 1088 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 827 +{ +( 1240 -128 -64 ) ( 1237 -96 -64 ) ( 1515 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1512 -128 -64 ) ( 1512 -128 -96 ) ( 1472 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1515 -96 -64 ) ( 1237 -96 -64 ) ( 1240 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1152 -112 -96 ) ( 1152 -96 -96 ) ( 1152 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1408 -96 -96 ) ( 1408 -112 -96 ) ( 1408 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 828 +{ +( 1240 -128 -64 ) ( 1237 -96 -64 ) ( 1515 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1515 -96 -64 ) ( 1237 -96 -64 ) ( 1240 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1472 -96 -96 ) ( 1472 -120 -96 ) ( 1472 -108 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1408 -112 -96 ) ( 1408 -96 -96 ) ( 1408 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1432 -104 -96 ) ( 1408 -104 -96 ) ( 1420 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 829 +{ +( 1240 -128 -64 ) ( 1237 -96 -64 ) ( 1515 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1512 -128 -64 ) ( 1512 -128 -96 ) ( 1472 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1515 -96 -64 ) ( 1237 -96 -64 ) ( 1240 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1472 -96 -96 ) ( 1472 -120 -96 ) ( 1472 -108 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1408 -112 -96 ) ( 1408 -96 -96 ) ( 1408 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1408 -120 -96 ) ( 1424 -120 -96 ) ( 1416 -120 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 830 +{ +( 1240 -128 -64 ) ( 1237 -96 -64 ) ( 1515 -96 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1515 -96 -64 ) ( 1237 -96 -64 ) ( 1240 -128 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1472 -96 -96 ) ( 1472 -120 -96 ) ( 1472 -108 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1408 -112 -96 ) ( 1408 -96 -96 ) ( 1408 -104 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1408 -104 -96 ) ( 1432 -104 -96 ) ( 1420 -104 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1424 -120 -96 ) ( 1408 -120 -96 ) ( 1416 -120 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 831 +{ +( 1560 -128 -64 ) ( 1557 -96 -64 ) ( 1835 -96 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1835 -96 -64 ) ( 1557 -96 -64 ) ( 1560 -128 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1792 -96 -96 ) ( 1792 -120 -96 ) ( 1792 -108 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1728 -112 -96 ) ( 1728 -96 -96 ) ( 1728 -104 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1728 -104 -96 ) ( 1752 -104 -96 ) ( 1740 -104 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1744 -120 -96 ) ( 1728 -120 -96 ) ( 1736 -120 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 832 +{ +( 1560 -128 -64 ) ( 1557 -96 -64 ) ( 1835 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1832 -128 -64 ) ( 1832 -128 -96 ) ( 1792 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1835 -96 -64 ) ( 1557 -96 -64 ) ( 1560 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1792 -96 -96 ) ( 1792 -120 -96 ) ( 1792 -108 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1728 -112 -96 ) ( 1728 -96 -96 ) ( 1728 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1728 -120 -96 ) ( 1744 -120 -96 ) ( 1736 -120 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 833 +{ +( 1560 -128 -64 ) ( 1557 -96 -64 ) ( 1835 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1835 -96 -64 ) ( 1557 -96 -64 ) ( 1560 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1792 -96 -96 ) ( 1792 -120 -96 ) ( 1792 -108 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1728 -112 -96 ) ( 1728 -96 -96 ) ( 1728 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1752 -104 -96 ) ( 1728 -104 -96 ) ( 1740 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 834 +{ +( 1560 -128 -64 ) ( 1557 -96 -64 ) ( 1835 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1832 -128 -64 ) ( 1832 -128 -96 ) ( 1792 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1835 -96 -64 ) ( 1557 -96 -64 ) ( 1560 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1472 -112 -96 ) ( 1472 -96 -96 ) ( 1472 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1728 -96 -96 ) ( 1728 -112 -96 ) ( 1728 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 835 +{ +( 1880 -128 -64 ) ( 1877 -96 -64 ) ( 2155 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2152 -128 -64 ) ( 2152 -128 -96 ) ( 2112 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2155 -96 -64 ) ( 1877 -96 -64 ) ( 1880 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1792 -112 -96 ) ( 1792 -96 -96 ) ( 1792 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2048 -96 -96 ) ( 2048 -112 -96 ) ( 2048 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 836 +{ +( 1880 -128 -64 ) ( 1877 -96 -64 ) ( 2155 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2155 -96 -64 ) ( 1877 -96 -64 ) ( 1880 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2112 -96 -96 ) ( 2112 -120 -96 ) ( 2112 -108 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2048 -112 -96 ) ( 2048 -96 -96 ) ( 2048 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2072 -104 -96 ) ( 2048 -104 -96 ) ( 2060 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 837 +{ +( 1880 -128 -64 ) ( 1877 -96 -64 ) ( 2155 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2152 -128 -64 ) ( 2152 -128 -96 ) ( 2112 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2155 -96 -64 ) ( 1877 -96 -64 ) ( 1880 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2112 -96 -96 ) ( 2112 -120 -96 ) ( 2112 -108 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2048 -112 -96 ) ( 2048 -96 -96 ) ( 2048 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2048 -120 -96 ) ( 2064 -120 -96 ) ( 2056 -120 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 838 +{ +( 1880 -128 -64 ) ( 1877 -96 -64 ) ( 2155 -96 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2155 -96 -64 ) ( 1877 -96 -64 ) ( 1880 -128 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2112 -96 -96 ) ( 2112 -120 -96 ) ( 2112 -108 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2048 -112 -96 ) ( 2048 -96 -96 ) ( 2048 -104 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2048 -104 -96 ) ( 2072 -104 -96 ) ( 2060 -104 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2064 -120 -96 ) ( 2048 -120 -96 ) ( 2056 -120 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 839 +{ +( 2200 -128 -64 ) ( 2197 -96 -64 ) ( 2475 -96 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2475 -96 -64 ) ( 2197 -96 -64 ) ( 2200 -128 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2432 -96 -96 ) ( 2432 -120 -96 ) ( 2432 -108 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2368 -112 -96 ) ( 2368 -96 -96 ) ( 2368 -104 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2368 -104 -96 ) ( 2392 -104 -96 ) ( 2380 -104 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2384 -120 -96 ) ( 2368 -120 -96 ) ( 2376 -120 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 840 +{ +( 2200 -128 -64 ) ( 2197 -96 -64 ) ( 2475 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2472 -128 -64 ) ( 2472 -128 -96 ) ( 2432 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2475 -96 -64 ) ( 2197 -96 -64 ) ( 2200 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2432 -96 -96 ) ( 2432 -120 -96 ) ( 2432 -108 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2368 -112 -96 ) ( 2368 -96 -96 ) ( 2368 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2368 -120 -96 ) ( 2384 -120 -96 ) ( 2376 -120 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 841 +{ +( 2200 -128 -64 ) ( 2197 -96 -64 ) ( 2475 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2475 -96 -64 ) ( 2197 -96 -64 ) ( 2200 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2432 -96 -96 ) ( 2432 -120 -96 ) ( 2432 -108 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2368 -112 -96 ) ( 2368 -96 -96 ) ( 2368 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2392 -104 -96 ) ( 2368 -104 -96 ) ( 2380 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 842 +{ +( 2200 -128 -64 ) ( 2197 -96 -64 ) ( 2475 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2472 -128 -64 ) ( 2472 -128 -96 ) ( 2432 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2475 -96 -64 ) ( 2197 -96 -64 ) ( 2200 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2112 -112 -96 ) ( 2112 -96 -96 ) ( 2112 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2368 -96 -96 ) ( 2368 -112 -96 ) ( 2368 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 843 +{ +( 2520 -128 -64 ) ( 2517 -96 -64 ) ( 2795 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2792 -128 -64 ) ( 2792 -128 -96 ) ( 2752 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2795 -96 -64 ) ( 2517 -96 -64 ) ( 2520 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2432 -112 -96 ) ( 2432 -96 -96 ) ( 2432 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2688 -96 -96 ) ( 2688 -112 -96 ) ( 2688 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 844 +{ +( 2520 -128 -64 ) ( 2517 -96 -64 ) ( 2795 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2795 -96 -64 ) ( 2517 -96 -64 ) ( 2520 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2752 -96 -96 ) ( 2752 -120 -96 ) ( 2752 -108 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2688 -112 -96 ) ( 2688 -96 -96 ) ( 2688 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2712 -104 -96 ) ( 2688 -104 -96 ) ( 2700 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 845 +{ +( 2520 -128 -64 ) ( 2517 -96 -64 ) ( 2795 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2792 -128 -64 ) ( 2792 -128 -96 ) ( 2752 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2795 -96 -64 ) ( 2517 -96 -64 ) ( 2520 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2752 -96 -96 ) ( 2752 -120 -96 ) ( 2752 -108 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2688 -112 -96 ) ( 2688 -96 -96 ) ( 2688 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2688 -120 -96 ) ( 2704 -120 -96 ) ( 2696 -120 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 846 +{ +( 2520 -128 -64 ) ( 2517 -96 -64 ) ( 2795 -96 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2795 -96 -64 ) ( 2517 -96 -64 ) ( 2520 -128 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2752 -96 -96 ) ( 2752 -120 -96 ) ( 2752 -108 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2688 -112 -96 ) ( 2688 -96 -96 ) ( 2688 -104 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2688 -104 -96 ) ( 2712 -104 -96 ) ( 2700 -104 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2704 -120 -96 ) ( 2688 -120 -96 ) ( 2696 -120 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 847 +{ +( 2840 -128 -64 ) ( 2837 -96 -64 ) ( 3115 -96 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 3115 -96 -64 ) ( 2837 -96 -64 ) ( 2840 -128 -96 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 3072 -96 -96 ) ( 3072 -120 -96 ) ( 3072 -108 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 3008 -112 -96 ) ( 3008 -96 -96 ) ( 3008 -104 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 3008 -104 -96 ) ( 3032 -104 -96 ) ( 3020 -104 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 3024 -120 -96 ) ( 3008 -120 -96 ) ( 3016 -120 -64 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 848 +{ +( 2840 -128 -64 ) ( 2837 -96 -64 ) ( 3115 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3112 -128 -64 ) ( 3112 -128 -96 ) ( 3072 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3115 -96 -64 ) ( 2837 -96 -64 ) ( 2840 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3072 -96 -96 ) ( 3072 -120 -96 ) ( 3072 -108 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3008 -112 -96 ) ( 3008 -96 -96 ) ( 3008 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3008 -120 -96 ) ( 3024 -120 -96 ) ( 3016 -120 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 849 +{ +( 2840 -128 -64 ) ( 2837 -96 -64 ) ( 3115 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3115 -96 -64 ) ( 2837 -96 -64 ) ( 2840 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3072 -96 -96 ) ( 3072 -120 -96 ) ( 3072 -108 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3008 -112 -96 ) ( 3008 -96 -96 ) ( 3008 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3032 -104 -96 ) ( 3008 -104 -96 ) ( 3020 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 850 +{ +( 2840 -128 -64 ) ( 2837 -96 -64 ) ( 3115 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3112 -128 -64 ) ( 3112 -128 -96 ) ( 3072 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3115 -96 -64 ) ( 2837 -96 -64 ) ( 2840 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2752 -112 -96 ) ( 2752 -96 -96 ) ( 2752 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3008 -96 -96 ) ( 3008 -112 -96 ) ( 3008 -104 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 851 +{ +( 2840 -128 -64 ) ( 2837 -96 -64 ) ( 3115 -96 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3112 -128 -64 ) ( 3112 -128 -96 ) ( 3072 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3115 -96 -64 ) ( 2837 -96 -64 ) ( 2840 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3112 -128 -64 ) ( 3115 -96 -64 ) ( 3112 -128 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3072 -120 -96 ) ( 3072 -96 -96 ) ( 3072 -108 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 852 +{ +( -1328 320 -288 ) ( -1328 872 -288 ) ( -1744 872 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1744 872 -272 ) ( -1328 872 -272 ) ( -1328 320 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1744 872 -272 ) ( -1744 320 -272 ) ( -1744 320 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1328 320 -272 ) ( -1328 872 -272 ) ( -1328 872 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1488 3136 -272 ) ( -1904 3136 -272 ) ( -1904 3136 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1616 1856 -288 ) ( -1744 1856 -288 ) ( -1680 1856 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 853 +{ +( -1328 320 -272 ) ( -1328 872 -272 ) ( -1744 872 -272 ) bricks/c_sr_mr5 63 15 90 1 1 0 0 0 +( -1744 872 -256 ) ( -1328 872 -256 ) ( -1328 320 -256 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -1360 1814 -256 ) ( -1360 1814 -272 ) ( -1360 3178 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1344 320 -256 ) ( -1344 872 -256 ) ( -1344 872 -272 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( -1360 3178 -256 ) ( -1360 3178 -272 ) ( -1344 3176 -272 ) bricks/c_sr_mr5 -64 16 -180 1 -1 0 0 0 +( -1360 1814 -272 ) ( -1360 1814 -256 ) ( -1344 1816 -256 ) bricks/c_sr_mr5 -64 16 -180 1 -1 0 0 0 +} +// brush 854 +{ +( -1312 320 -272 ) ( -1312 872 -272 ) ( -1728 872 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1728 872 -64 ) ( -1312 872 -64 ) ( -1312 320 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1344 1816 -64 ) ( -1344 1816 -272 ) ( -1344 3176 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1328 320 -256 ) ( -1328 872 -256 ) ( -1328 872 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1344 3176 -64 ) ( -1344 3176 -272 ) ( -1328 3174 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1344 1816 -272 ) ( -1344 1816 -64 ) ( -1328 1818 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 855 +{ +( -1328 320 -64 ) ( -1328 872 -64 ) ( -1744 872 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1744 872 -48 ) ( -1328 872 -48 ) ( -1328 320 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1744 872 -48 ) ( -1744 320 -48 ) ( -1744 320 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1328 320 -48 ) ( -1328 872 -48 ) ( -1328 872 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1488 3136 -48 ) ( -1904 3136 -48 ) ( -1904 3136 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1616 1856 -64 ) ( -1744 1856 -64 ) ( -1680 1856 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 856 +{ +( -1712 320 -272 ) ( -1712 872 -272 ) ( -2128 872 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -2128 872 -64 ) ( -1712 872 -64 ) ( -1712 320 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1744 1778 -64 ) ( -1744 1778 -272 ) ( -1744 3214 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1728 320 -256 ) ( -1728 872 -256 ) ( -1728 872 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1744 3214 -64 ) ( -1744 3214 -272 ) ( -1728 3212 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1744 1778 -272 ) ( -1744 1778 -64 ) ( -1728 1780 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 857 +{ +( -1696 320 -272 ) ( -1696 872 -272 ) ( -2112 872 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -2112 872 -256 ) ( -1696 872 -256 ) ( -1696 320 -256 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -1728 1780 -256 ) ( -1728 1780 -272 ) ( -1728 3212 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1712 320 -256 ) ( -1712 872 -256 ) ( -1712 872 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1728 3212 -256 ) ( -1728 3212 -272 ) ( -1712 3210 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1728 1780 -272 ) ( -1728 1780 -256 ) ( -1712 1782 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 858 +{ +( 2128 512 -272 ) ( 2128 1064 -272 ) ( 1712 1064 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1712 1064 -256 ) ( 2128 1064 -256 ) ( 2128 512 -256 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( 2096 1104 -256 ) ( 2096 552 -256 ) ( 2096 552 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2112 3212 -256 ) ( 2112 3212 -272 ) ( 2112 2240 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1808 2240 -272 ) ( 1712 2240 -272 ) ( 1760 2240 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2112 3212 -272 ) ( 2112 3212 -256 ) ( 2096 3210 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 859 +{ +( 2144 512 -272 ) ( 2144 1064 -272 ) ( 1728 1064 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1728 1064 -64 ) ( 2144 1064 -64 ) ( 2144 512 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2112 1104 -256 ) ( 2112 552 -256 ) ( 2112 552 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2128 3214 -64 ) ( 2128 3214 -272 ) ( 2128 2240 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1808 2240 -272 ) ( 1712 2240 -272 ) ( 1760 2240 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2128 3214 -272 ) ( 2128 3214 -64 ) ( 2112 3212 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 860 +{ +( 2128 512 -64 ) ( 2128 1064 -64 ) ( 1712 1064 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1064 -48 ) ( 2128 1064 -48 ) ( 2128 512 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1064 -48 ) ( 1712 512 -48 ) ( 1712 512 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2128 512 -48 ) ( 2128 1064 -48 ) ( 2128 1064 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1808 2240 -64 ) ( 1712 2240 -64 ) ( 1760 2240 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 3136 -64 ) ( 2064 3136 -64 ) ( 1888 3136 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 861 +{ +( 2128 512 -288 ) ( 2128 1064 -288 ) ( 1712 1064 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1064 -272 ) ( 2128 1064 -272 ) ( 2128 512 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1064 -272 ) ( 1712 512 -272 ) ( 1712 512 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 512 -272 ) ( 2128 1064 -272 ) ( 2128 1064 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1808 2240 -288 ) ( 1712 2240 -288 ) ( 1760 2240 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 3136 -288 ) ( 2064 3136 -288 ) ( 1888 3136 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 862 +{ +( 1760 512 -272 ) ( 1760 1064 -272 ) ( 1344 1064 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1344 1064 -256 ) ( 1760 1064 -256 ) ( 1760 512 -256 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( 1728 1104 -256 ) ( 1728 552 -256 ) ( 1728 552 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1744 3178 -256 ) ( 1744 3178 -272 ) ( 1744 2240 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1808 2240 -272 ) ( 1712 2240 -272 ) ( 1760 2240 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1744 3178 -272 ) ( 1744 3178 -256 ) ( 1728 3176 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 863 +{ +( 1744 512 -272 ) ( 1744 1064 -272 ) ( 1328 1064 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1328 1064 -64 ) ( 1744 1064 -64 ) ( 1744 512 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1712 1104 -256 ) ( 1712 552 -256 ) ( 1712 552 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1728 3176 -64 ) ( 1728 3176 -272 ) ( 1728 2240 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1808 2240 -272 ) ( 1712 2240 -272 ) ( 1760 2240 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1728 3176 -272 ) ( 1728 3176 -64 ) ( 1712 3174 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 864 +{ +( 1856 3920 -288 ) ( 1304 3920 -288 ) ( 1304 3504 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1304 3504 -272 ) ( 1304 3920 -272 ) ( 1856 3920 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1304 3504 -272 ) ( 1856 3504 -272 ) ( 1856 3504 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1856 3920 -272 ) ( 1304 3920 -272 ) ( 1304 3920 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -960 3760 -272 ) ( -960 3344 -272 ) ( -960 3344 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1344 3920 -288 ) ( 1344 3872 -288 ) ( 1344 3896 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 865 +{ +( 1856 3920 -272 ) ( 1304 3920 -272 ) ( 1304 3504 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1304 3504 -256 ) ( 1304 3920 -256 ) ( 1856 3920 -256 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 1264 3888 -256 ) ( 1816 3888 -256 ) ( 1816 3888 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1036 3904 -256 ) ( -1036 3904 -272 ) ( 1420 3904 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1036 3904 -272 ) ( -1036 3904 -256 ) ( -1034 3888 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1420 3904 -256 ) ( 1420 3904 -272 ) ( 1418 3888 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 866 +{ +( 1856 3936 -272 ) ( 1304 3936 -272 ) ( 1304 3520 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1304 3520 -64 ) ( 1304 3936 -64 ) ( 1856 3936 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1264 3904 -256 ) ( 1816 3904 -256 ) ( 1816 3904 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1038 3920 -64 ) ( -1038 3920 -272 ) ( 1422 3920 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1038 3920 -272 ) ( -1038 3920 -64 ) ( -1036 3904 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1422 3920 -64 ) ( 1422 3920 -272 ) ( 1420 3904 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 867 +{ +( 1856 3920 -64 ) ( 1304 3920 -64 ) ( 1304 3504 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1304 3504 -48 ) ( 1304 3920 -48 ) ( 1856 3920 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1304 3504 -48 ) ( 1856 3504 -48 ) ( 1856 3504 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1856 3920 -48 ) ( 1304 3920 -48 ) ( 1304 3920 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -960 3760 -48 ) ( -960 3344 -48 ) ( -960 3344 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1344 3920 -64 ) ( 1344 3872 -64 ) ( 1344 3896 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 868 +{ +( 1856 3536 -272 ) ( 1304 3536 -272 ) ( 1304 3120 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1304 3120 -64 ) ( 1304 3536 -64 ) ( 1856 3536 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1264 3504 -256 ) ( 1816 3504 -256 ) ( 1816 3504 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1000 3520 -64 ) ( -1000 3520 -272 ) ( 1344 3520 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1000 3520 -272 ) ( -1000 3520 -64 ) ( -998 3504 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1344 3920 -272 ) ( 1344 3872 -272 ) ( 1344 3896 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 869 +{ +( 1856 3552 -272 ) ( 1304 3552 -272 ) ( 1304 3136 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1304 3136 -256 ) ( 1304 3552 -256 ) ( 1856 3552 -256 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1264 3520 -256 ) ( 1816 3520 -256 ) ( 1816 3520 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1002 3536 -256 ) ( -1002 3536 -272 ) ( 1344 3536 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1002 3536 -272 ) ( -1002 3536 -256 ) ( -1000 3520 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1344 3920 -272 ) ( 1344 3872 -272 ) ( 1344 3896 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 870 +{ +( 2080 3368 -96 ) ( 2024 3500 -96 ) ( 1995 3484 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 2024 3500 -48 ) ( 2024 3500 -96 ) ( 2080 3368 -96 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 2080 3652 -64 ) ( 1995 3624 -64 ) ( 1995 3680 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 2008 3452 -96 ) ( 2030 3462 -96 ) ( 2019 3457 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 2062 3406 -96 ) ( 2040 3396 -96 ) ( 2051 3401 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 2058 3396 -96 ) ( 2030 3462 -96 ) ( 2044 3429 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +} +// brush 871 +{ +( 2080 3368 -96 ) ( 2024 3500 -96 ) ( 1995 3484 -64 ) common/li_pv_v4a -25 -5 113 1 1 0 1 7000 +( 2080 3368 -48 ) ( 2080 3368 -96 ) ( 1995 3484 -64 ) common/li_pv_v4a -25 -5 113 1 1 0 1 7000 +( 2080 3652 -64 ) ( 1995 3624 -64 ) ( 1995 3680 -64 ) common/li_pv_v4a -25 -5 113 1 1 0 1 7000 +( 2008 3452 -96 ) ( 2030 3462 -96 ) ( 2019 3457 -64 ) common/li_pv_v4a -25 -5 113 1 1 0 1 7000 +( 2062 3406 -96 ) ( 2040 3396 -96 ) ( 2051 3401 -64 ) common/li_pv_v4a -25 -5 113 1 1 0 1 7000 +( 2030 3462 -96 ) ( 2058 3396 -96 ) ( 2044 3429 -64 ) common/li_pv_v4a -25 -5 113 1 1 0 1 7000 +} +// brush 872 +{ +( 2049 3358 -64 ) ( 2080 3368 -96 ) ( 1995 3484 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 2080 3652 -64 ) ( 1995 3624 -64 ) ( 1995 3680 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 2008 3452 -96 ) ( 2030 3462 -96 ) ( 2019 3457 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 2062 3406 -96 ) ( 2040 3396 -96 ) ( 2051 3401 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 2012 3462 -86 ) ( 2040 3396 -86 ) ( 2026 3429 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +} +// brush 873 +{ +( 2049 3358 -64 ) ( 2080 3368 -96 ) ( 1995 3484 -64 ) common/li_pv_v4a -25 -5 113 1 1 0 1 7000 +( 1995 3484 -64 ) ( 2080 3368 -96 ) ( 2080 3368 -48 ) common/li_pv_v4a -25 -5 113 1 1 0 1 7000 +( 2080 3652 -64 ) ( 1995 3624 -64 ) ( 1995 3680 -64 ) common/li_pv_v4a -25 -5 113 1 1 0 1 7000 +( 2008 3452 -96 ) ( 2030 3462 -96 ) ( 2019 3457 -64 ) common/li_pv_v4a -25 -5 113 1 1 0 1 7000 +( 2062 3406 -96 ) ( 2040 3396 -96 ) ( 2051 3401 -64 ) common/li_pv_v4a -25 -5 113 1 1 0 1 7000 +( 2040 3396 -86 ) ( 2012 3462 -86 ) ( 2026 3429 -64 ) common/li_pv_v4a -25 -5 113 1 1 0 1 7000 +} +// brush 874 +{ +( 2049 3358 -64 ) ( 2080 3368 -96 ) ( 1995 3484 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 2080 3368 -48 ) ( 2080 3368 -96 ) ( 2049 3358 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 1995 3484 -64 ) ( 2080 3368 -96 ) ( 2080 3368 -48 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 2080 3652 -64 ) ( 1995 3624 -64 ) ( 1995 3680 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 2040 3396 -96 ) ( 2062 3406 -96 ) ( 2051 3401 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +} +// brush 875 +{ +( 2080 3368 -96 ) ( 2024 3500 -96 ) ( 1995 3484 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 2024 3500 -48 ) ( 2024 3500 -96 ) ( 2080 3368 -96 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 2080 3368 -48 ) ( 2080 3368 -96 ) ( 1995 3484 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 2080 3652 -64 ) ( 1995 3624 -64 ) ( 1995 3680 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 2040 3396 -96 ) ( 2062 3406 -96 ) ( 2051 3401 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +} +// brush 876 +{ +( 2080 3368 -96 ) ( 2024 3500 -96 ) ( 1995 3484 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 1995 3484 -64 ) ( 2024 3500 -96 ) ( 2024 3500 -48 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 2024 3500 -48 ) ( 2024 3500 -96 ) ( 2080 3368 -96 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 2080 3368 -48 ) ( 2080 3368 -96 ) ( 1995 3484 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 2080 3652 -64 ) ( 1995 3624 -64 ) ( 1995 3680 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 2030 3462 -96 ) ( 2008 3452 -96 ) ( 2019 3457 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +} +// brush 877 +{ +( 2049 3358 -64 ) ( 2080 3368 -96 ) ( 1995 3484 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 1995 3484 -64 ) ( 2080 3368 -96 ) ( 2080 3368 -48 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 2080 3652 -64 ) ( 1995 3624 -64 ) ( 1995 3680 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +( 2030 3462 -96 ) ( 2008 3452 -96 ) ( 2019 3457 -64 ) bricks/c_tn_m1 54 2 113 1 1 0 0 0 +} +// brush 878 +{ +( 1692 3787 -64 ) ( 1576 3872 -96 ) ( 1566 3841 -64 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1576 3872 -48 ) ( 1576 3872 -96 ) ( 1692 3787 -64 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1888 3787 -64 ) ( 1832 3787 -64 ) ( 1860 3872 -64 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1665 3811 -64 ) ( 1660 3800 -96 ) ( 1670 3822 -96 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +} +// brush 879 +{ +( 1692 3787 -64 ) ( 1708 3816 -96 ) ( 1576 3872 -96 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1708 3816 -48 ) ( 1708 3816 -96 ) ( 1692 3787 -64 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1576 3872 -96 ) ( 1708 3816 -96 ) ( 1708 3816 -48 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1692 3787 -64 ) ( 1576 3872 -96 ) ( 1576 3872 -48 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1888 3787 -64 ) ( 1832 3787 -64 ) ( 1860 3872 -64 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1665 3811 -64 ) ( 1660 3800 -96 ) ( 1670 3822 -96 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +} +// brush 880 +{ +( 1692 3787 -64 ) ( 1708 3816 -96 ) ( 1576 3872 -96 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1576 3872 -96 ) ( 1708 3816 -96 ) ( 1708 3816 -48 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1692 3787 -64 ) ( 1576 3872 -96 ) ( 1576 3872 -48 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1888 3787 -64 ) ( 1832 3787 -64 ) ( 1860 3872 -64 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1609 3843 -64 ) ( 1614 3854 -96 ) ( 1604 3832 -96 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +} +// brush 881 +{ +( 1692 3787 -64 ) ( 1576 3872 -96 ) ( 1566 3841 -64 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1566 3841 -64 ) ( 1576 3872 -96 ) ( 1576 3872 -48 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1576 3872 -48 ) ( 1576 3872 -96 ) ( 1692 3787 -64 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1888 3787 -64 ) ( 1832 3787 -64 ) ( 1860 3872 -64 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1609 3843 -64 ) ( 1614 3854 -96 ) ( 1604 3832 -96 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +} +// brush 882 +{ +( 1692 3787 -64 ) ( 1576 3872 -96 ) ( 1566 3841 -64 ) common/li_pv_v4a -20 6 157 1 1 0 1 7000 +( 1576 3872 -48 ) ( 1576 3872 -96 ) ( 1692 3787 -64 ) common/li_pv_v4a -20 6 157 1 1 0 1 7000 +( 1888 3787 -64 ) ( 1832 3787 -64 ) ( 1860 3872 -64 ) common/li_pv_v4a -20 6 157 1 1 0 1 7000 +( 1665 3811 -64 ) ( 1670 3822 -96 ) ( 1660 3800 -96 ) common/li_pv_v4a -20 6 157 1 1 0 1 7000 +( 1609 3843 -64 ) ( 1604 3832 -96 ) ( 1614 3854 -96 ) common/li_pv_v4a -20 6 157 1 1 0 1 7000 +( 1637 3818 -64 ) ( 1670 3804 -86 ) ( 1604 3832 -86 ) common/li_pv_v4a -20 6 157 1 1 0 1 7000 +} +// brush 883 +{ +( 1692 3787 -64 ) ( 1576 3872 -96 ) ( 1566 3841 -64 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1888 3787 -64 ) ( 1832 3787 -64 ) ( 1860 3872 -64 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1665 3811 -64 ) ( 1670 3822 -96 ) ( 1660 3800 -96 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1609 3843 -64 ) ( 1604 3832 -96 ) ( 1614 3854 -96 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1637 3818 -64 ) ( 1604 3832 -86 ) ( 1670 3804 -86 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +} +// brush 884 +{ +( 1692 3787 -64 ) ( 1708 3816 -96 ) ( 1576 3872 -96 ) common/li_pv_v4a -20 6 157 1 1 0 1 7000 +( 1692 3787 -64 ) ( 1576 3872 -96 ) ( 1576 3872 -48 ) common/li_pv_v4a -20 6 157 1 1 0 1 7000 +( 1888 3787 -64 ) ( 1832 3787 -64 ) ( 1860 3872 -64 ) common/li_pv_v4a -20 6 157 1 1 0 1 7000 +( 1665 3811 -64 ) ( 1670 3822 -96 ) ( 1660 3800 -96 ) common/li_pv_v4a -20 6 157 1 1 0 1 7000 +( 1609 3843 -64 ) ( 1604 3832 -96 ) ( 1614 3854 -96 ) common/li_pv_v4a -20 6 157 1 1 0 1 7000 +( 1637 3836 -64 ) ( 1604 3850 -96 ) ( 1670 3822 -96 ) common/li_pv_v4a -20 6 157 1 1 0 1 7000 +} +// brush 885 +{ +( 1692 3787 -64 ) ( 1708 3816 -96 ) ( 1576 3872 -96 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1576 3872 -96 ) ( 1708 3816 -96 ) ( 1708 3816 -48 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1888 3787 -64 ) ( 1832 3787 -64 ) ( 1860 3872 -64 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1665 3811 -64 ) ( 1670 3822 -96 ) ( 1660 3800 -96 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1609 3843 -64 ) ( 1604 3832 -96 ) ( 1614 3854 -96 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +( 1637 3836 -64 ) ( 1670 3822 -96 ) ( 1604 3850 -96 ) bricks/c_tn_m1 0 13 157 1 1 0 0 0 +} +// brush 886 +{ +( 1112 3520 -64 ) ( 1109 3552 -64 ) ( 1387 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1384 3520 -64 ) ( 1384 3520 -96 ) ( 1344 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1387 3552 -64 ) ( 1109 3552 -64 ) ( 1112 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1384 3520 -64 ) ( 1387 3552 -64 ) ( 1384 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1344 3536 -96 ) ( 1344 3552 -96 ) ( 1344 3544 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 887 +{ +( 2096 3360 -64 ) ( 2096 3232 -64 ) ( 1728 3232 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1696 3248 -224 ) ( 1696 3248 -208 ) ( 1712 3174 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1696 3248 -64 ) ( 1696 3248 -80 ) ( 1712 3252 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1712 3174 -224 ) ( 1712 3174 -208 ) ( 1728 3176 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1728 3176 -272 ) ( 1712 3252 -272 ) ( 1720 3214 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -112 3174 -272 ) ( -80 3174 -272 ) ( -96 3252 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 888 +{ +( 2064 3516 -64 ) ( 2064 3388 -64 ) ( 1696 3388 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1670 3308 -288 ) ( 1670 3308 -272 ) ( 1696 3248 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1670 3308 -64 ) ( 1670 3308 -80 ) ( 1684 3316 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1696 3248 -80 ) ( 1696 3248 -64 ) ( 1712 3252 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1712 3252 -128 ) ( 1684 3316 -128 ) ( 1698 3284 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -112 3248 -272 ) ( -80 3248 -272 ) ( -96 3316 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 889 +{ +( 2008 3648 -64 ) ( 2008 3520 -64 ) ( 1640 3520 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1626 3374 -224 ) ( 1626 3374 -208 ) ( 1670 3308 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1626 3374 -64 ) ( 1626 3374 -80 ) ( 1640 3384 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1670 3308 -80 ) ( 1670 3308 -64 ) ( 1684 3316 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1684 3316 -128 ) ( 1640 3384 -128 ) ( 1662 3350 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -112 3308 -272 ) ( -80 3308 -272 ) ( -96 3384 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 890 +{ +( 1852 3352 -64 ) ( 1852 3720 -64 ) ( 1980 3720 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1626 3374 -272 ) ( 1626 3374 -288 ) ( 1582 3418 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1626 3374 -80 ) ( 1626 3374 -64 ) ( 1640 3384 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1582 3418 -64 ) ( 1582 3418 -80 ) ( 1592 3432 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1592 3432 -144 ) ( 1640 3384 -144 ) ( 1616 3408 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -112 3374 -272 ) ( -80 3374 -272 ) ( -96 3432 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 891 +{ +( 1728 3432 -64 ) ( 1728 3800 -64 ) ( 1856 3800 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1582 3418 -208 ) ( 1582 3418 -224 ) ( 1516 3462 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1582 3418 -80 ) ( 1582 3418 -64 ) ( 1592 3432 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1516 3462 -64 ) ( 1516 3462 -80 ) ( 1524 3476 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1524 3476 -144 ) ( 1592 3432 -144 ) ( 1558 3454 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -112 3418 -272 ) ( -80 3418 -272 ) ( -96 3476 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 892 +{ +( 1596 3488 -64 ) ( 1596 3856 -64 ) ( 1724 3856 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1516 3462 -272 ) ( 1516 3462 -288 ) ( 1456 3488 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1516 3462 -80 ) ( 1516 3462 -64 ) ( 1524 3476 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1456 3488 -64 ) ( 1456 3488 -80 ) ( 1460 3504 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1460 3504 -144 ) ( 1524 3476 -144 ) ( 1492 3490 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -112 3462 -272 ) ( -80 3462 -272 ) ( -96 3504 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 893 +{ +( 1440 3520 -64 ) ( 1440 3888 -64 ) ( 1568 3888 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1456 3488 -208 ) ( 1456 3488 -224 ) ( 1382 3504 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1456 3488 -80 ) ( 1456 3488 -64 ) ( 1460 3504 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1382 3504 -64 ) ( 1382 3504 -80 ) ( 1384 3520 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1384 3520 -144 ) ( 1460 3504 -144 ) ( 1422 3512 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -112 3488 -272 ) ( -80 3488 -272 ) ( -96 3520 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 894 +{ +( 1440 3520 -64 ) ( 1440 3888 -64 ) ( 1568 3888 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1582 3888 -64 ) ( 1582 3888 -80 ) ( 1576 3872 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1582 3888 -288 ) ( 1582 3888 -272 ) ( 1422 3920 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1422 3920 -80 ) ( 1422 3920 -64 ) ( 1420 3904 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1576 3872 -80 ) ( 1420 3904 -80 ) ( 1498 3888 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2040 3872 -272 ) ( 2072 3872 -272 ) ( 2056 3920 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 895 +{ +( 1596 3488 -64 ) ( 1596 3856 -64 ) ( 1724 3856 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1716 3830 -64 ) ( 1716 3830 -80 ) ( 1708 3816 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1716 3830 -288 ) ( 1716 3830 -272 ) ( 1582 3888 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1582 3888 -80 ) ( 1582 3888 -64 ) ( 1576 3872 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1708 3816 -80 ) ( 1576 3872 -80 ) ( 1642 3844 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2040 3816 -272 ) ( 2072 3816 -272 ) ( 2056 3888 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 896 +{ +( 1728 3432 -64 ) ( 1728 3800 -64 ) ( 1856 3800 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1842 3748 -208 ) ( 1842 3748 -224 ) ( 1832 3736 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1842 3748 -288 ) ( 1842 3748 -272 ) ( 1716 3830 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1716 3830 -80 ) ( 1716 3830 -64 ) ( 1708 3816 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1832 3736 -80 ) ( 1708 3816 -80 ) ( 1770 3776 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2040 3736 -272 ) ( 2072 3736 -272 ) ( 2056 3830 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 897 +{ +( 1842 3624 -64 ) ( 1842 3748 -64 ) ( 1944 3748 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1832 3736 -224 ) ( 1832 3736 -64 ) ( 1944 3624 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1956 3634 -64 ) ( 1956 3634 -224 ) ( 1944 3624 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1956 3634 -288 ) ( 1956 3634 -128 ) ( 1842 3748 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1832 3736 -64 ) ( 1832 3736 -224 ) ( 1842 3748 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2040 3624 -272 ) ( 2072 3624 -272 ) ( 2056 3748 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 898 +{ +( 2008 3648 -64 ) ( 2008 3520 -64 ) ( 1640 3520 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1956 3634 -80 ) ( 1956 3634 -64 ) ( 1944 3624 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1956 3634 -128 ) ( 1956 3634 -144 ) ( 2038 3508 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2038 3508 -208 ) ( 2038 3508 -224 ) ( 2024 3500 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1944 3624 -208 ) ( 2024 3500 -208 ) ( 1984 3562 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2040 3500 -272 ) ( 2072 3500 -272 ) ( 2056 3634 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 899 +{ +( 2064 3516 -64 ) ( 2064 3388 -64 ) ( 1696 3388 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2038 3508 -224 ) ( 2038 3508 -208 ) ( 2024 3500 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2038 3508 -128 ) ( 2038 3508 -144 ) ( 2096 3374 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2096 3374 -208 ) ( 2096 3374 -224 ) ( 2080 3368 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2024 3500 -208 ) ( 2080 3368 -208 ) ( 2052 3434 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2040 3368 -272 ) ( 2072 3368 -272 ) ( 2056 3508 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 900 +{ +( 2096 3360 -64 ) ( 2096 3232 -64 ) ( 1728 3232 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2096 3374 -224 ) ( 2096 3374 -208 ) ( 2080 3368 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2096 3374 -128 ) ( 2096 3374 -144 ) ( 2128 3214 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2128 3214 -208 ) ( 2128 3214 -224 ) ( 2112 3212 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2080 3368 -272 ) ( 2112 3212 -272 ) ( 2096 3290 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2040 3212 -272 ) ( 2072 3212 -272 ) ( 2056 3374 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 901 +{ +( 1811 3710 -64 ) ( 1832 3736 -96 ) ( 1708 3816 -96 ) bricks/c_tn_m1 -33 -2 147 1 1 0 0 0 +( 1832 3736 -48 ) ( 1832 3736 -96 ) ( 1811 3710 -64 ) bricks/c_tn_m1 -33 -2 147 1 1 0 0 0 +( 1708 3816 -96 ) ( 1832 3736 -96 ) ( 1832 3736 -48 ) bricks/c_tn_m1 -33 -2 147 1 1 0 0 0 +( 1811 3710 -64 ) ( 1708 3816 -96 ) ( 1708 3816 -48 ) bricks/c_tn_m1 -33 -2 147 1 1 0 0 0 +( 1888 3710 -64 ) ( 1832 3710 -64 ) ( 1860 3816 -64 ) bricks/c_tn_m1 -33 -2 147 1 1 0 0 0 +} +// brush 902 +{ +( 1811 3710 -64 ) ( 1708 3816 -96 ) ( 1692 3787 -64 ) bricks/c_tn_m1 -33 -2 147 1 1 0 0 0 +( 1692 3787 -64 ) ( 1708 3816 -96 ) ( 1708 3816 -48 ) bricks/c_tn_m1 -33 -2 147 1 1 0 0 0 +( 1708 3816 -48 ) ( 1708 3816 -96 ) ( 1811 3710 -64 ) bricks/c_tn_m1 -33 -2 147 1 1 0 0 0 +( 1888 3710 -64 ) ( 1832 3710 -64 ) ( 1860 3816 -64 ) bricks/c_tn_m1 -33 -2 147 1 1 0 0 0 +} +// brush 903 +{ +( 1420 3904 -288 ) ( 1420 3904 -272 ) ( 1344 3904 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1576 3872 -288 ) ( 1576 3872 -272 ) ( 1420 3904 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1708 3816 -288 ) ( 1708 3816 -272 ) ( 1576 3872 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1832 3736 -288 ) ( 1832 3736 -272 ) ( 1708 3816 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1944 3624 -288 ) ( 1944 3624 -272 ) ( 1832 3736 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2024 3500 -288 ) ( 2024 3500 -272 ) ( 1944 3624 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2080 3368 -288 ) ( 2080 3368 -272 ) ( 2024 3500 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2080 3368 -272 ) ( 2080 3368 -288 ) ( 2112 3212 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2112 3212 -272 ) ( 2112 3212 -288 ) ( 2112 3136 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 576 2368 -288 ) ( 2112 2368 -288 ) ( 2112 3904 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2112 3904 -272 ) ( 2112 2368 -272 ) ( 576 2368 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1344 3656 -336 ) ( 1344 3712 -336 ) ( 1344 3684 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2008 3136 -336 ) ( 1944 3136 -336 ) ( 1976 3136 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1728 3136 -288 ) ( 1344 3520 -288 ) ( 1536 3328 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 904 +{ +( 1420 3904 -64 ) ( 1420 3904 -48 ) ( 1344 3904 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1576 3872 -64 ) ( 1576 3872 -48 ) ( 1420 3904 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1708 3816 -64 ) ( 1708 3816 -48 ) ( 1576 3872 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1832 3736 -64 ) ( 1832 3736 -48 ) ( 1708 3816 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1944 3624 -64 ) ( 1944 3624 -48 ) ( 1832 3736 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2024 3500 -64 ) ( 2024 3500 -48 ) ( 1944 3624 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2080 3368 -64 ) ( 2080 3368 -48 ) ( 2024 3500 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2080 3368 -48 ) ( 2080 3368 -64 ) ( 2112 3212 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2112 3212 -48 ) ( 2112 3212 -64 ) ( 2112 3136 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 576 2368 -64 ) ( 2112 2368 -64 ) ( 2112 3904 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2112 3904 -48 ) ( 2112 2368 -48 ) ( 576 2368 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1344 3656 -112 ) ( 1344 3712 -112 ) ( 1344 3684 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2008 3136 -112 ) ( 1944 3136 -112 ) ( 1976 3136 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1728 3136 -64 ) ( 1344 3520 -64 ) ( 1536 3328 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 905 +{ +( 1387 3552 -64 ) ( 1384 3520 -96 ) ( 1470 3535 -64 ) bricks/c_tn_m1 1 -13 348 1 1 0 0 0 +( 1384 3520 -48 ) ( 1384 3520 -96 ) ( 1387 3552 -64 ) bricks/c_tn_m1 1 -13 348 1 1 0 0 0 +( 1470 3535 -64 ) ( 1384 3520 -96 ) ( 1384 3520 -48 ) bricks/c_tn_m1 1 -13 348 1 1 0 0 0 +( 1384 3272 -64 ) ( 1384 3296 -64 ) ( 1470 3284 -64 ) bricks/c_tn_m1 1 -13 348 1 1 0 0 0 +} +// brush 906 +{ +( 1384 3520 -96 ) ( 1460 3504 -96 ) ( 1470 3535 -64 ) bricks/c_tn_m1 1 -13 348 1 1 0 0 0 +( 1460 3504 -48 ) ( 1460 3504 -96 ) ( 1384 3520 -96 ) bricks/c_tn_m1 1 -13 348 1 1 0 0 0 +( 1470 3535 -64 ) ( 1460 3504 -96 ) ( 1460 3504 -48 ) bricks/c_tn_m1 1 -13 348 1 1 0 0 0 +( 1384 3520 -96 ) ( 1470 3535 -64 ) ( 1470 3535 -48 ) bricks/c_tn_m1 1 -13 348 1 1 0 0 0 +( 1384 3272 -64 ) ( 1384 3296 -64 ) ( 1470 3284 -64 ) bricks/c_tn_m1 1 -13 348 1 1 0 0 0 +} +// brush 907 +{ +( 1470 3535 -64 ) ( 1460 3504 -96 ) ( 1539 3504 -64 ) bricks/c_tn_m1 0 -13 336 1 1 0 0 0 +( 1460 3504 -48 ) ( 1460 3504 -96 ) ( 1470 3535 -64 ) bricks/c_tn_m1 0 -13 336 1 1 0 0 0 +( 1539 3504 -64 ) ( 1460 3504 -96 ) ( 1460 3504 -48 ) bricks/c_tn_m1 0 -13 336 1 1 0 0 0 +( 1460 3272 -64 ) ( 1460 3296 -64 ) ( 1539 3284 -64 ) bricks/c_tn_m1 0 -13 336 1 1 0 0 0 +} +// brush 908 +{ +( 1460 3504 -96 ) ( 1524 3476 -96 ) ( 1539 3504 -64 ) bricks/c_tn_m1 0 -13 336 1 1 0 0 0 +( 1524 3476 -48 ) ( 1524 3476 -96 ) ( 1460 3504 -96 ) bricks/c_tn_m1 0 -13 336 1 1 0 0 0 +( 1539 3504 -64 ) ( 1524 3476 -96 ) ( 1524 3476 -48 ) bricks/c_tn_m1 0 -13 336 1 1 0 0 0 +( 1460 3504 -48 ) ( 1460 3504 -96 ) ( 1539 3504 -64 ) bricks/c_tn_m1 0 -13 336 1 1 0 0 0 +( 1460 3272 -64 ) ( 1460 3296 -64 ) ( 1539 3284 -64 ) bricks/c_tn_m1 0 -13 336 1 1 0 0 0 +} +// brush 909 +{ +( 1539 3504 -64 ) ( 1524 3476 -96 ) ( 1612 3457 -64 ) bricks/c_tn_m1 -167 1 327 1 1 0 0 0 +( 1524 3476 -48 ) ( 1524 3476 -96 ) ( 1539 3504 -64 ) bricks/c_tn_m1 -167 1 327 1 1 0 0 0 +( 1612 3457 -64 ) ( 1524 3476 -96 ) ( 1524 3476 -48 ) bricks/c_tn_m1 -167 1 327 1 1 0 0 0 +( 1524 3272 -64 ) ( 1524 3296 -64 ) ( 1612 3284 -64 ) bricks/c_tn_m1 -167 1 327 1 1 0 0 0 +} +// brush 910 +{ +( 1524 3476 -96 ) ( 1592 3432 -96 ) ( 1612 3457 -64 ) bricks/c_tn_m1 -167 1 327 1 1 0 0 0 +( 1592 3432 -48 ) ( 1592 3432 -96 ) ( 1524 3476 -96 ) bricks/c_tn_m1 -167 1 327 1 1 0 0 0 +( 1612 3457 -64 ) ( 1592 3432 -96 ) ( 1592 3432 -48 ) bricks/c_tn_m1 -167 1 327 1 1 0 0 0 +( 1524 3476 -48 ) ( 1524 3476 -96 ) ( 1612 3457 -64 ) bricks/c_tn_m1 -167 1 327 1 1 0 0 0 +( 1524 3272 -64 ) ( 1524 3296 -64 ) ( 1612 3284 -64 ) bricks/c_tn_m1 -167 1 327 1 1 0 0 0 +} +// brush 911 +{ +( 1665 3404 -64 ) ( 1640 3384 -96 ) ( 1684 3316 -96 ) bricks/c_tn_m1 86 -14 303 1 1 0 0 0 +( 1684 3316 -96 ) ( 1640 3384 -96 ) ( 1640 3384 -48 ) bricks/c_tn_m1 86 -14 303 1 1 0 0 0 +( 1640 3384 -48 ) ( 1640 3384 -96 ) ( 1665 3404 -64 ) bricks/c_tn_m1 86 -14 303 1 1 0 0 0 +( 1665 3404 -64 ) ( 1684 3316 -96 ) ( 1684 3316 -48 ) bricks/c_tn_m1 86 -14 303 1 1 0 0 0 +( 1640 3272 -64 ) ( 1640 3296 -64 ) ( 1684 3284 -64 ) bricks/c_tn_m1 86 -14 303 1 1 0 0 0 +} +// brush 912 +{ +( 1665 3404 -64 ) ( 1684 3316 -96 ) ( 1712 3331 -64 ) bricks/c_tn_m1 86 -14 303 1 1 0 0 0 +( 1712 3331 -64 ) ( 1684 3316 -96 ) ( 1684 3316 -48 ) bricks/c_tn_m1 86 -14 303 1 1 0 0 0 +( 1684 3316 -48 ) ( 1684 3316 -96 ) ( 1665 3404 -64 ) bricks/c_tn_m1 86 -14 303 1 1 0 0 0 +( 1665 3272 -64 ) ( 1665 3296 -64 ) ( 1712 3284 -64 ) bricks/c_tn_m1 86 -14 303 1 1 0 0 0 +} +// brush 913 +{ +( 1712 3331 -64 ) ( 1684 3316 -96 ) ( 1712 3252 -96 ) bricks/c_tn_m1 61 7 294 1 1 0 0 0 +( 1712 3252 -96 ) ( 1684 3316 -96 ) ( 1684 3316 -48 ) bricks/c_tn_m1 61 7 294 1 1 0 0 0 +( 1684 3316 -48 ) ( 1684 3316 -96 ) ( 1712 3331 -64 ) bricks/c_tn_m1 61 7 294 1 1 0 0 0 +( 1712 3331 -64 ) ( 1712 3252 -96 ) ( 1712 3252 -48 ) bricks/c_tn_m1 61 7 294 1 1 0 0 0 +( 1684 3272 -64 ) ( 1684 3296 -64 ) ( 1712 3284 -64 ) bricks/c_tn_m1 61 7 294 1 1 0 0 0 +} +// brush 914 +{ +( 1712 3331 -64 ) ( 1712 3252 -96 ) ( 1743 3262 -64 ) bricks/c_tn_m1 61 7 294 1 1 0 0 0 +( 1743 3262 -64 ) ( 1712 3252 -96 ) ( 1712 3252 -48 ) bricks/c_tn_m1 61 7 294 1 1 0 0 0 +( 1712 3252 -48 ) ( 1712 3252 -96 ) ( 1712 3331 -64 ) bricks/c_tn_m1 61 7 294 1 1 0 0 0 +( 1712 3272 -64 ) ( 1712 3296 -64 ) ( 1743 3284 -64 ) bricks/c_tn_m1 61 7 294 1 1 0 0 0 +} +// brush 915 +{ +( 1743 3262 -64 ) ( 1712 3252 -96 ) ( 1728 3176 -96 ) bricks/c_tn_m1 105 15 282 1 1 0 0 0 +( 1728 3176 -96 ) ( 1712 3252 -96 ) ( 1712 3252 -48 ) bricks/c_tn_m1 105 15 282 1 1 0 0 0 +( 1712 3252 -48 ) ( 1712 3252 -96 ) ( 1743 3262 -64 ) bricks/c_tn_m1 105 15 282 1 1 0 0 0 +( 1743 3262 -48 ) ( 1743 3262 -64 ) ( 1728 3176 -96 ) bricks/c_tn_m1 105 15 282 1 1 0 0 0 +( 1712 3272 -64 ) ( 1712 3296 -64 ) ( 1743 3284 -64 ) bricks/c_tn_m1 105 15 282 1 1 0 0 0 +} +// brush 916 +{ +( 1743 3262 -64 ) ( 1728 3176 -96 ) ( 1760 3179 -64 ) bricks/c_tn_m1 105 15 282 1 1 0 0 0 +( 1760 3179 -64 ) ( 1728 3176 -96 ) ( 1728 3176 -48 ) bricks/c_tn_m1 105 15 282 1 1 0 0 0 +( 1728 3176 -48 ) ( 1728 3176 -96 ) ( 1743 3262 -64 ) bricks/c_tn_m1 105 15 282 1 1 0 0 0 +( 1728 3272 -64 ) ( 1728 3296 -64 ) ( 1760 3284 -64 ) bricks/c_tn_m1 105 15 282 1 1 0 0 0 +} +// brush 917 +{ +( 1566 3841 -64 ) ( 1420 3904 -96 ) ( 1417 3872 -64 ) bricks/c_tn_m1 184 14 168 1 1 0 0 0 +( 1417 3872 -64 ) ( 1420 3904 -96 ) ( 1420 3904 -48 ) bricks/c_tn_m1 184 14 168 1 1 0 0 0 +( 1420 3904 -48 ) ( 1420 3904 -96 ) ( 1566 3841 -64 ) bricks/c_tn_m1 184 14 168 1 1 0 0 0 +( 1888 3841 -64 ) ( 1832 3841 -64 ) ( 1860 3904 -64 ) bricks/c_tn_m1 184 14 168 1 1 0 0 0 +} +// brush 918 +{ +( 1566 3841 -64 ) ( 1576 3872 -96 ) ( 1420 3904 -96 ) bricks/c_tn_m1 184 14 168 1 1 0 0 0 +( 1576 3872 -48 ) ( 1576 3872 -96 ) ( 1566 3841 -64 ) bricks/c_tn_m1 184 14 168 1 1 0 0 0 +( 1420 3904 -96 ) ( 1576 3872 -96 ) ( 1576 3872 -48 ) bricks/c_tn_m1 184 14 168 1 1 0 0 0 +( 1566 3841 -64 ) ( 1420 3904 -96 ) ( 1420 3904 -48 ) bricks/c_tn_m1 184 14 168 1 1 0 0 0 +( 1888 3841 -64 ) ( 1832 3841 -64 ) ( 1860 3904 -64 ) bricks/c_tn_m1 184 14 168 1 1 0 0 0 +} +// brush 919 +{ +( 2024 3500 -96 ) ( 1944 3624 -96 ) ( 1918 3603 -64 ) bricks/c_tn_m1 -141 13 123 1 1 0 0 0 +( 1918 3603 -64 ) ( 1944 3624 -96 ) ( 1944 3624 -48 ) bricks/c_tn_m1 -141 13 123 1 1 0 0 0 +( 1944 3624 -48 ) ( 1944 3624 -96 ) ( 2024 3500 -96 ) bricks/c_tn_m1 -141 13 123 1 1 0 0 0 +( 2024 3500 -48 ) ( 2024 3500 -96 ) ( 1918 3603 -64 ) bricks/c_tn_m1 -141 13 123 1 1 0 0 0 +( 1888 3500 -64 ) ( 1832 3500 -64 ) ( 1860 3624 -64 ) bricks/c_tn_m1 -141 13 123 1 1 0 0 0 +} +// brush 920 +{ +( 1995 3484 -64 ) ( 2024 3500 -96 ) ( 1918 3603 -64 ) bricks/c_tn_m1 -141 13 123 1 1 0 0 0 +( 2024 3500 -48 ) ( 2024 3500 -96 ) ( 1995 3484 -64 ) bricks/c_tn_m1 -141 13 123 1 1 0 0 0 +( 1918 3603 -64 ) ( 2024 3500 -96 ) ( 2024 3500 -48 ) bricks/c_tn_m1 -141 13 123 1 1 0 0 0 +( 1888 3484 -64 ) ( 1832 3484 -64 ) ( 1860 3603 -64 ) bricks/c_tn_m1 -141 13 123 1 1 0 0 0 +} +// brush 921 +{ +( 2112 3212 -96 ) ( 2080 3368 -96 ) ( 2049 3358 -64 ) bricks/c_tn_m1 -5 -14 102 1 1 0 0 0 +( 2049 3358 -64 ) ( 2080 3368 -96 ) ( 2080 3368 -48 ) bricks/c_tn_m1 -5 -14 102 1 1 0 0 0 +( 2080 3368 -48 ) ( 2080 3368 -96 ) ( 2112 3212 -96 ) bricks/c_tn_m1 -5 -14 102 1 1 0 0 0 +( 2112 3212 -48 ) ( 2112 3212 -96 ) ( 2049 3358 -64 ) bricks/c_tn_m1 -5 -14 102 1 1 0 0 0 +( 1888 3212 -64 ) ( 1832 3212 -64 ) ( 1860 3368 -64 ) bricks/c_tn_m1 -5 -14 102 1 1 0 0 0 +} +// brush 922 +{ +( 2080 3209 -64 ) ( 2112 3212 -96 ) ( 2049 3358 -64 ) bricks/c_tn_m1 -5 -14 102 1 1 0 0 0 +( 2112 3212 -48 ) ( 2112 3212 -96 ) ( 2080 3209 -64 ) bricks/c_tn_m1 -5 -14 102 1 1 0 0 0 +( 2049 3358 -64 ) ( 2112 3212 -96 ) ( 2112 3212 -48 ) bricks/c_tn_m1 -5 -14 102 1 1 0 0 0 +( 1888 3209 -64 ) ( 1832 3209 -64 ) ( 1860 3358 -64 ) bricks/c_tn_m1 -5 -14 102 1 1 0 0 0 +} +// brush 923 +{ +( 1640 3444 -272 ) ( 1602 3444 -272 ) ( 1602 3384 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1602 3384 -256 ) ( 1602 3444 -256 ) ( 1640 3444 -256 ) bricks/c_sr_mr5 0 -1 315 1 1 0 0 0 +( 1592 3432 -272 ) ( 1592 3432 -256 ) ( 1640 3384 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1652 3394 -256 ) ( 1652 3394 -272 ) ( 1640 3384 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1652 3394 -272 ) ( 1652 3394 -256 ) ( 1602 3444 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1592 3432 -256 ) ( 1592 3432 -272 ) ( 1602 3444 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 924 +{ +( 2096 3360 -256 ) ( 2096 3232 -256 ) ( 1728 3232 -256 ) bricks/c_sr_mr5 0 14 282 1 1 0 0 0 +( 1728 3232 -272 ) ( 2096 3232 -272 ) ( 2096 3360 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1712 3252 -400 ) ( 1712 3252 -240 ) ( 1728 3176 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1712 3252 -240 ) ( 1712 3252 -400 ) ( 1728 3256 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1712 3174 -400 ) ( 1712 3174 -384 ) ( 1728 3176 -384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1728 3256 -240 ) ( 1728 3256 -400 ) ( 1744 3178 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 925 +{ +( 2064 3516 -256 ) ( 2064 3388 -256 ) ( 1696 3388 -256 ) bricks/c_sr_mr5 0 6 294 1 1 0 0 0 +( 1696 3388 -272 ) ( 2064 3388 -272 ) ( 2064 3516 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1684 3316 -400 ) ( 1684 3316 -240 ) ( 1712 3252 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1698 3324 -400 ) ( 1698 3324 -240 ) ( 1684 3316 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1728 3256 -240 ) ( 1728 3256 -400 ) ( 1712 3252 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1728 3256 -400 ) ( 1728 3256 -240 ) ( 1698 3324 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 926 +{ +( 2008 3648 -256 ) ( 2008 3520 -256 ) ( 1640 3520 -256 ) bricks/c_sr_mr5 0 17 303 1 1 0 0 0 +( 1640 3520 -272 ) ( 2008 3520 -272 ) ( 2008 3648 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1640 3384 -400 ) ( 1640 3384 -240 ) ( 1684 3316 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1652 3394 -400 ) ( 1652 3394 -240 ) ( 1640 3384 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1698 3324 -240 ) ( 1698 3324 -400 ) ( 1684 3316 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1652 3394 -240 ) ( 1652 3394 -400 ) ( 1698 3324 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 927 +{ +( 1856 3800 -272 ) ( 1728 3800 -272 ) ( 1728 3432 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1728 3432 -256 ) ( 1728 3800 -256 ) ( 1856 3800 -256 ) bricks/c_sr_mr5 0 0 327 1 1 0 0 0 +( 1592 3432 -128 ) ( 1592 3432 -288 ) ( 1524 3476 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1602 3444 -128 ) ( 1602 3444 -288 ) ( 1592 3432 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1532 3490 -288 ) ( 1532 3490 -128 ) ( 1524 3476 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1602 3444 -288 ) ( 1602 3444 -128 ) ( 1532 3490 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 928 +{ +( 1724 3856 -272 ) ( 1596 3856 -272 ) ( 1596 3488 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1596 3488 -256 ) ( 1596 3856 -256 ) ( 1724 3856 -256 ) bricks/c_sr_mr5 0 -14 336 1 1 0 0 0 +( 1524 3476 -128 ) ( 1524 3476 -288 ) ( 1460 3504 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1532 3490 -128 ) ( 1532 3490 -288 ) ( 1524 3476 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1464 3520 -288 ) ( 1464 3520 -128 ) ( 1460 3504 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1464 3520 -128 ) ( 1464 3520 -288 ) ( 1532 3490 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 929 +{ +( 1568 3888 -272 ) ( 1440 3888 -272 ) ( 1440 3520 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1440 3520 -256 ) ( 1440 3888 -256 ) ( 1568 3888 -256 ) bricks/c_sr_mr5 0 -15 348 1 1 0 0 0 +( 1460 3504 -128 ) ( 1460 3504 -288 ) ( 1384 3520 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1460 3504 -288 ) ( 1460 3504 -128 ) ( 1464 3520 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1382 3504 -128 ) ( 1382 3504 -144 ) ( 1384 3520 -144 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1464 3520 -288 ) ( 1464 3520 -128 ) ( 1386 3536 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 930 +{ +( 1886 3734 -272 ) ( 1832 3734 -272 ) ( 1832 3650 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1832 3650 -256 ) ( 1832 3734 -256 ) ( 1886 3734 -256 ) bricks/c_sr_mr5 0 -2 135 1 1 0 0 0 +( 1944 3624 -256 ) ( 1944 3624 -272 ) ( 1934 3616 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1944 3624 -272 ) ( 1944 3624 -256 ) ( 1832 3736 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1832 3736 -272 ) ( 1832 3736 -256 ) ( 1824 3726 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1880 3670 -256 ) ( 1880 3670 -272 ) ( 1824 3726 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 931 +{ +( 2096 3360 -256 ) ( 2096 3232 -256 ) ( 1728 3232 -256 ) bricks/c_sr_mr5 0 -16 102 1 1 0 0 0 +( 1728 3232 -272 ) ( 2096 3232 -272 ) ( 2096 3360 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2066 3364 -240 ) ( 2066 3364 -400 ) ( 2080 3368 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2112 3212 -400 ) ( 2112 3212 -240 ) ( 2080 3368 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2096 3210 -400 ) ( 2096 3210 -240 ) ( 2112 3212 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2066 3364 -400 ) ( 2066 3364 -240 ) ( 2096 3210 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 932 +{ +( 2064 3516 -256 ) ( 2064 3388 -256 ) ( 1696 3388 -256 ) bricks/c_sr_mr5 0 0 113 1 1 0 0 0 +( 1696 3388 -272 ) ( 2064 3388 -272 ) ( 2064 3516 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2024 3500 -400 ) ( 2024 3500 -240 ) ( 2012 3494 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2024 3500 -240 ) ( 2024 3500 -400 ) ( 2080 3368 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2066 3364 -400 ) ( 2066 3364 -240 ) ( 2080 3368 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2012 3494 -400 ) ( 2012 3494 -240 ) ( 2066 3364 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 933 +{ +( 2008 3648 -256 ) ( 2008 3520 -256 ) ( 1640 3520 -256 ) bricks/c_sr_mr5 0 11 123 1 1 0 0 0 +( 1640 3520 -272 ) ( 2008 3520 -272 ) ( 2008 3648 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1934 3616 -240 ) ( 1934 3616 -400 ) ( 1944 3624 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2024 3500 -400 ) ( 2024 3500 -240 ) ( 1944 3624 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2012 3494 -400 ) ( 2012 3494 -240 ) ( 2024 3500 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1934 3616 -400 ) ( 1934 3616 -240 ) ( 2012 3494 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 934 +{ +( 1856 3800 -272 ) ( 1728 3800 -272 ) ( 1728 3432 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1728 3432 -256 ) ( 1728 3800 -256 ) ( 1856 3800 -256 ) bricks/c_sr_mr5 0 -4 147 1 1 0 0 0 +( 1824 3726 -288 ) ( 1824 3726 -128 ) ( 1832 3736 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1708 3816 -128 ) ( 1708 3816 -288 ) ( 1832 3736 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1702 3804 -128 ) ( 1702 3804 -288 ) ( 1708 3816 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1824 3726 -128 ) ( 1824 3726 -288 ) ( 1702 3804 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 935 +{ +( 1724 3856 -272 ) ( 1596 3856 -272 ) ( 1596 3488 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1596 3488 -256 ) ( 1596 3856 -256 ) ( 1724 3856 -256 ) bricks/c_sr_mr5 0 10 157 1 1 0 0 0 +( 1708 3816 -128 ) ( 1708 3816 -288 ) ( 1702 3804 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1708 3816 -288 ) ( 1708 3816 -128 ) ( 1576 3872 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1572 3858 -128 ) ( 1572 3858 -288 ) ( 1576 3872 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1702 3804 -128 ) ( 1702 3804 -288 ) ( 1572 3858 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 936 +{ +( 1568 3888 -272 ) ( 1440 3888 -272 ) ( 1440 3520 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1440 3520 -256 ) ( 1440 3888 -256 ) ( 1568 3888 -256 ) bricks/c_sr_mr5 0 12 168 1 1 0 0 0 +( 1572 3858 -288 ) ( 1572 3858 -128 ) ( 1576 3872 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1420 3904 -128 ) ( 1420 3904 -288 ) ( 1576 3872 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1418 3888 -128 ) ( 1418 3888 -288 ) ( 1420 3904 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1572 3858 -128 ) ( 1572 3858 -288 ) ( 1418 3888 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 937 +{ +( 1344 3536 -64 ) ( 1344 3904 -64 ) ( 1472 3904 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1344 3504 -272 ) ( 1382 3504 -272 ) ( 1382 3504 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1384 3520 -224 ) ( 1382 3504 -224 ) ( 1382 3504 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1344 3536 -144 ) ( 1344 3536 -304 ) ( 1344 3904 -304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1348 3520 -288 ) ( 1352 3520 -272 ) ( 1344 3520 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1384 1696 -272 ) ( 1344 1712 -272 ) ( 1344 1680 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 938 +{ +( 1420 3904 -64 ) ( 1417 3872 -64 ) ( 1344 3872 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1072 3904 -64 ) ( 720 3904 -64 ) ( 720 3904 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1344 3872 -64 ) ( 1417 3872 -64 ) ( 1420 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1344 3872 -96 ) ( 1344 3904 -96 ) ( 1344 3888 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1420 3904 -96 ) ( 1417 3872 -64 ) ( 1420 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 939 +{ +( 1344 3536 -256 ) ( 1344 3904 -256 ) ( 1472 3904 -256 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1472 3904 -272 ) ( 1344 3904 -272 ) ( 1344 3536 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1344 3520 -240 ) ( 1382 3520 -240 ) ( 1382 3520 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1384 3520 -256 ) ( 1386 3536 -256 ) ( 1386 3536 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1344 3536 -112 ) ( 1344 3536 -272 ) ( 1344 3904 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1344 3536 -272 ) ( 1386 3536 -272 ) ( 1386 3536 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 940 +{ +( 1576 -416 160 ) ( 1708 -360 160 ) ( 1692 -331 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1708 -360 208 ) ( 1708 -360 160 ) ( 1576 -416 160 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1860 -416 192 ) ( 1832 -331 192 ) ( 1888 -331 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1660 -344 160 ) ( 1670 -366 160 ) ( 1665 -355 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1614 -398 160 ) ( 1604 -376 160 ) ( 1609 -387 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1604 -394 160 ) ( 1670 -366 160 ) ( 1637 -380 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +} +// brush 941 +{ +( 1576 -416 160 ) ( 1708 -360 160 ) ( 1692 -331 192 ) common/li_pv_v4a 14 3 23 1 1 0 1 7000 +( 1576 -416 208 ) ( 1576 -416 160 ) ( 1692 -331 192 ) common/li_pv_v4a 14 3 23 1 1 0 1 7000 +( 1860 -416 192 ) ( 1832 -331 192 ) ( 1888 -331 192 ) common/li_pv_v4a 14 3 23 1 1 0 1 7000 +( 1660 -344 160 ) ( 1670 -366 160 ) ( 1665 -355 192 ) common/li_pv_v4a 14 3 23 1 1 0 1 7000 +( 1614 -398 160 ) ( 1604 -376 160 ) ( 1609 -387 192 ) common/li_pv_v4a 14 3 23 1 1 0 1 7000 +( 1670 -366 160 ) ( 1604 -394 160 ) ( 1637 -380 192 ) common/li_pv_v4a 14 3 23 1 1 0 1 7000 +} +// brush 942 +{ +( 1566 -385 192 ) ( 1576 -416 160 ) ( 1692 -331 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1860 -416 192 ) ( 1832 -331 192 ) ( 1888 -331 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1660 -344 160 ) ( 1670 -366 160 ) ( 1665 -355 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1614 -398 160 ) ( 1604 -376 160 ) ( 1609 -387 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1670 -348 170 ) ( 1604 -376 170 ) ( 1637 -362 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +} +// brush 943 +{ +( 1566 -385 192 ) ( 1576 -416 160 ) ( 1692 -331 192 ) common/li_pv_v4a 14 3 23 1 1 0 1 7000 +( 1692 -331 192 ) ( 1576 -416 160 ) ( 1576 -416 208 ) common/li_pv_v4a 14 3 23 1 1 0 1 7000 +( 1860 -416 192 ) ( 1832 -331 192 ) ( 1888 -331 192 ) common/li_pv_v4a 14 3 23 1 1 0 1 7000 +( 1660 -344 160 ) ( 1670 -366 160 ) ( 1665 -355 192 ) common/li_pv_v4a 14 3 23 1 1 0 1 7000 +( 1614 -398 160 ) ( 1604 -376 160 ) ( 1609 -387 192 ) common/li_pv_v4a 14 3 23 1 1 0 1 7000 +( 1604 -376 170 ) ( 1670 -348 170 ) ( 1637 -362 192 ) common/li_pv_v4a 14 3 23 1 1 0 1 7000 +} +// brush 944 +{ +( 1566 -385 192 ) ( 1576 -416 160 ) ( 1692 -331 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1576 -416 208 ) ( 1576 -416 160 ) ( 1566 -385 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1692 -331 192 ) ( 1576 -416 160 ) ( 1576 -416 208 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1860 -416 192 ) ( 1832 -331 192 ) ( 1888 -331 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1604 -376 160 ) ( 1614 -398 160 ) ( 1609 -387 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +} +// brush 945 +{ +( 1576 -416 160 ) ( 1708 -360 160 ) ( 1692 -331 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1708 -360 208 ) ( 1708 -360 160 ) ( 1576 -416 160 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1576 -416 208 ) ( 1576 -416 160 ) ( 1692 -331 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1860 -416 192 ) ( 1832 -331 192 ) ( 1888 -331 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1604 -376 160 ) ( 1614 -398 160 ) ( 1609 -387 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +} +// brush 946 +{ +( 1576 -416 160 ) ( 1708 -360 160 ) ( 1692 -331 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1692 -331 192 ) ( 1708 -360 160 ) ( 1708 -360 208 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1708 -360 208 ) ( 1708 -360 160 ) ( 1576 -416 160 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1576 -416 208 ) ( 1576 -416 160 ) ( 1692 -331 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1860 -416 192 ) ( 1832 -331 192 ) ( 1888 -331 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1670 -366 160 ) ( 1660 -344 160 ) ( 1665 -355 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +} +// brush 947 +{ +( 1566 -385 192 ) ( 1576 -416 160 ) ( 1692 -331 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1692 -331 192 ) ( 1576 -416 160 ) ( 1576 -416 208 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1860 -416 192 ) ( 1832 -331 192 ) ( 1888 -331 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +( 1670 -366 160 ) ( 1660 -344 160 ) ( 1665 -355 192 ) bricks/c_tn_m1 30 -6 23 1 1 0 0 0 +} +// brush 948 +{ +( 1995 -28 192 ) ( 2080 88 160 ) ( 2049 98 192 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 2080 88 208 ) ( 2080 88 160 ) ( 1995 -28 192 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 1995 -224 192 ) ( 1995 -168 192 ) ( 2080 -196 192 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 2019 -1 192 ) ( 2008 4 160 ) ( 2030 -6 160 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +} +// brush 949 +{ +( 1995 -28 192 ) ( 2024 -44 160 ) ( 2080 88 160 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 2024 -44 208 ) ( 2024 -44 160 ) ( 1995 -28 192 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 2080 88 160 ) ( 2024 -44 160 ) ( 2024 -44 208 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 1995 -28 192 ) ( 2080 88 160 ) ( 2080 88 208 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 1995 -224 192 ) ( 1995 -168 192 ) ( 2080 -196 192 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 2019 -1 192 ) ( 2008 4 160 ) ( 2030 -6 160 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +} +// brush 950 +{ +( 1995 -28 192 ) ( 2024 -44 160 ) ( 2080 88 160 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 2080 88 160 ) ( 2024 -44 160 ) ( 2024 -44 208 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 1995 -28 192 ) ( 2080 88 160 ) ( 2080 88 208 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 1995 -224 192 ) ( 1995 -168 192 ) ( 2080 -196 192 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 2051 55 192 ) ( 2062 50 160 ) ( 2040 60 160 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +} +// brush 951 +{ +( 1995 -28 192 ) ( 2080 88 160 ) ( 2049 98 192 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 2049 98 192 ) ( 2080 88 160 ) ( 2080 88 208 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 2080 88 208 ) ( 2080 88 160 ) ( 1995 -28 192 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 1995 -224 192 ) ( 1995 -168 192 ) ( 2080 -196 192 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 2051 55 192 ) ( 2062 50 160 ) ( 2040 60 160 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +} +// brush 952 +{ +( 1995 -28 192 ) ( 2080 88 160 ) ( 2049 98 192 ) common/li_pv_v4a -20 2 67 1 1 0 1 7000 +( 2080 88 208 ) ( 2080 88 160 ) ( 1995 -28 192 ) common/li_pv_v4a -20 2 67 1 1 0 1 7000 +( 1995 -224 192 ) ( 1995 -168 192 ) ( 2080 -196 192 ) common/li_pv_v4a -20 2 67 1 1 0 1 7000 +( 2019 -1 192 ) ( 2030 -6 160 ) ( 2008 4 160 ) common/li_pv_v4a -20 2 67 1 1 0 1 7000 +( 2051 55 192 ) ( 2040 60 160 ) ( 2062 50 160 ) common/li_pv_v4a -20 2 67 1 1 0 1 7000 +( 2026 27 192 ) ( 2012 -6 170 ) ( 2040 60 170 ) common/li_pv_v4a -20 2 67 1 1 0 1 7000 +} +// brush 953 +{ +( 1995 -28 192 ) ( 2080 88 160 ) ( 2049 98 192 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 1995 -224 192 ) ( 1995 -168 192 ) ( 2080 -196 192 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 2019 -1 192 ) ( 2030 -6 160 ) ( 2008 4 160 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 2051 55 192 ) ( 2040 60 160 ) ( 2062 50 160 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 2026 27 192 ) ( 2040 60 170 ) ( 2012 -6 170 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +} +// brush 954 +{ +( 1995 -28 192 ) ( 2024 -44 160 ) ( 2080 88 160 ) common/li_pv_v4a -20 2 67 1 1 0 1 7000 +( 1995 -28 192 ) ( 2080 88 160 ) ( 2080 88 208 ) common/li_pv_v4a -20 2 67 1 1 0 1 7000 +( 1995 -224 192 ) ( 1995 -168 192 ) ( 2080 -196 192 ) common/li_pv_v4a -20 2 67 1 1 0 1 7000 +( 2019 -1 192 ) ( 2030 -6 160 ) ( 2008 4 160 ) common/li_pv_v4a -20 2 67 1 1 0 1 7000 +( 2051 55 192 ) ( 2040 60 160 ) ( 2062 50 160 ) common/li_pv_v4a -20 2 67 1 1 0 1 7000 +( 2044 27 192 ) ( 2058 60 160 ) ( 2030 -6 160 ) common/li_pv_v4a -20 2 67 1 1 0 1 7000 +} +// brush 955 +{ +( 1995 -28 192 ) ( 2024 -44 160 ) ( 2080 88 160 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 2080 88 160 ) ( 2024 -44 160 ) ( 2024 -44 208 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 1995 -224 192 ) ( 1995 -168 192 ) ( 2080 -196 192 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 2019 -1 192 ) ( 2030 -6 160 ) ( 2008 4 160 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 2051 55 192 ) ( 2040 60 160 ) ( 2062 50 160 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +( 2044 27 192 ) ( 2030 -6 160 ) ( 2058 60 160 ) bricks/c_tn_m1 -31 8 67 1 1 0 0 0 +} +// brush 956 +{ +( 2096 96 -16 ) ( 2096 224 -16 ) ( 1728 224 -16 ) bricks/c_sr_mr5 79 31 90 1 1 0 0 0 +( 1728 224 0 ) ( 2096 224 0 ) ( 2096 96 0 ) bricks/c_sr_mr5 0 -1 78 1 1 0 0 0 +( 2066 92 -32 ) ( 2066 92 128 ) ( 2080 88 128 ) bricks/c_sr_mr5 -111 17 -180 1 -1 0 0 0 +( 2112 244 128 ) ( 2112 244 -32 ) ( 2080 88 -32 ) bricks/c_sr_mr5 80 16 0 1 1 0 0 0 +( 2096 246 128 ) ( 2096 246 -32 ) ( 2112 244 -32 ) bricks/c_sr_mr5 -111 17 -180 1 -1 0 0 0 +( 2066 92 128 ) ( 2066 92 -32 ) ( 2096 246 -32 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 957 +{ +( 2064 -60 -16 ) ( 2064 68 -16 ) ( 1696 68 -16 ) bricks/c_sr_mr5 79 31 90 1 1 0 0 0 +( 1696 68 0 ) ( 2064 68 0 ) ( 2064 -60 0 ) bricks/c_sr_mr5 0 6 67 1 1 0 0 0 +( 2024 -44 128 ) ( 2024 -44 -32 ) ( 2012 -38 -32 ) bricks/c_sr_mr5 -111 17 -180 1 -1 0 0 0 +( 2024 -44 -32 ) ( 2024 -44 128 ) ( 2080 88 128 ) bricks/c_sr_mr5 80 16 0 1 1 0 0 0 +( 2066 92 128 ) ( 2066 92 -32 ) ( 2080 88 -32 ) bricks/c_sr_mr5 -111 17 -180 1 -1 0 0 0 +( 2012 -38 128 ) ( 2012 -38 -32 ) ( 2066 92 -32 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 958 +{ +( 2008 -192 -16 ) ( 2008 -64 -16 ) ( 1640 -64 -16 ) bricks/c_sr_mr5 79 31 90 1 1 0 0 0 +( 1640 -64 0 ) ( 2008 -64 0 ) ( 2008 -192 0 ) bricks/c_sr_mr5 0 5 57 1 1 0 0 0 +( 1934 -160 -32 ) ( 1934 -160 128 ) ( 1944 -168 128 ) bricks/c_sr_mr5 -111 17 -180 1 -1 0 0 0 +( 2024 -44 128 ) ( 2024 -44 -32 ) ( 1944 -168 -32 ) bricks/c_sr_mr5 80 16 0 1 1 0 0 0 +( 2012 -38 128 ) ( 2012 -38 -32 ) ( 2024 -44 -32 ) bricks/c_sr_mr5 -111 17 -180 1 -1 0 0 0 +( 1934 -160 128 ) ( 1934 -160 -32 ) ( 2012 -38 -32 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 959 +{ +( 1856 -344 0 ) ( 1728 -344 0 ) ( 1728 24 0 ) bricks/c_sr_mr5 0 15 33 1 1 0 0 0 +( 1728 24 -16 ) ( 1728 -344 -16 ) ( 1856 -344 -16 ) bricks/c_sr_mr5 79 31 90 1 1 0 0 0 +( 1824 -270 16 ) ( 1824 -270 -144 ) ( 1832 -280 -144 ) bricks/c_sr_mr5 80 16 0 1 1 0 0 0 +( 1708 -360 -144 ) ( 1708 -360 16 ) ( 1832 -280 16 ) bricks/c_sr_mr5 -111 17 -180 1 -1 0 0 0 +( 1702 -348 -144 ) ( 1702 -348 16 ) ( 1708 -360 16 ) bricks/c_sr_mr5 80 16 0 1 1 0 0 0 +( 1824 -270 -144 ) ( 1824 -270 16 ) ( 1702 -348 16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 960 +{ +( 1724 -400 0 ) ( 1596 -400 0 ) ( 1596 -32 0 ) bricks/c_sr_mr5 0 -8 23 1 1 0 0 0 +( 1596 -32 -16 ) ( 1596 -400 -16 ) ( 1724 -400 -16 ) bricks/c_sr_mr5 79 31 90 1 1 0 0 0 +( 1708 -360 -144 ) ( 1708 -360 16 ) ( 1702 -348 16 ) bricks/c_sr_mr5 80 16 0 1 1 0 0 0 +( 1708 -360 16 ) ( 1708 -360 -144 ) ( 1576 -416 -144 ) bricks/c_sr_mr5 -111 17 -180 1 -1 0 0 0 +( 1572 -402 -144 ) ( 1572 -402 16 ) ( 1576 -416 16 ) bricks/c_sr_mr5 80 16 0 1 1 0 0 0 +( 1702 -348 -144 ) ( 1702 -348 16 ) ( 1572 -402 16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 961 +{ +( 1568 -432 0 ) ( 1440 -432 0 ) ( 1440 -64 0 ) bricks/c_sr_mr5 0 1 12 1 1 0 0 0 +( 1440 -64 -16 ) ( 1440 -432 -16 ) ( 1568 -432 -16 ) bricks/c_sr_mr5 79 31 90 1 1 0 0 0 +( 1572 -402 16 ) ( 1572 -402 -144 ) ( 1576 -416 -144 ) bricks/c_sr_mr5 80 16 0 1 1 0 0 0 +( 1420 -448 -144 ) ( 1420 -448 16 ) ( 1576 -416 16 ) bricks/c_sr_mr5 -111 17 -180 1 -1 0 0 0 +( 1418 -432 -144 ) ( 1418 -432 16 ) ( 1420 -448 16 ) bricks/c_sr_mr5 80 16 0 1 1 0 0 0 +( 1572 -402 -144 ) ( 1572 -402 16 ) ( 1418 -432 16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 962 +{ +( 1942 -222 -16 ) ( 1942 -168 -16 ) ( 1858 -168 -16 ) bricks/c_sr_mr5 79 31 90 1 1 0 0 0 +( 1858 -168 0 ) ( 1942 -168 0 ) ( 1942 -222 0 ) bricks/c_sr_mr5 0 9 45 1 1 0 0 0 +( 1832 -280 0 ) ( 1832 -280 -16 ) ( 1824 -270 -16 ) bricks/c_sr_mr5 80 16 0 1 1 0 0 0 +( 1832 -280 -16 ) ( 1832 -280 0 ) ( 1944 -168 0 ) bricks/c_sr_mr5 -79 18 -180 1 -1 0 0 0 +( 1944 -168 -16 ) ( 1944 -168 0 ) ( 1934 -160 0 ) bricks/c_sr_mr5 -111 17 -180 1 -1 0 0 0 +( 1878 -216 0 ) ( 1878 -216 -16 ) ( 1934 -160 -16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 963 +{ +( 2096 96 -16 ) ( 2096 224 -16 ) ( 1728 224 -16 ) bricks/c_sr_mr5 79 31 90 1 1 0 0 0 +( 1728 224 0 ) ( 2096 224 0 ) ( 2096 96 0 ) bricks/c_sr_mr5 0 -2 258 1 1 0 0 0 +( 1712 204 128 ) ( 1712 204 -32 ) ( 1728 280 -32 ) bricks/c_sr_mr5 80 16 0 1 1 0 0 0 +( 1712 204 -32 ) ( 1712 204 128 ) ( 1728 200 128 ) bricks/c_sr_mr5 -111 17 -180 1 -1 0 0 0 +( 1712 282 128 ) ( 1712 282 112 ) ( 1728 280 112 ) bricks/c_sr_mr5 -111 17 -180 1 -1 0 0 0 +( 1728 200 -32 ) ( 1728 200 128 ) ( 1744 278 128 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 964 +{ +( 2064 -60 -16 ) ( 2064 68 -16 ) ( 1696 68 -16 ) bricks/c_sr_mr5 79 31 90 1 1 0 0 0 +( 1696 68 0 ) ( 2064 68 0 ) ( 2064 -60 0 ) bricks/c_sr_mr5 0 7 246 1 1 0 0 0 +( 1684 140 128 ) ( 1684 140 -32 ) ( 1712 204 -32 ) bricks/c_sr_mr5 80 16 0 1 1 0 0 0 +( 1698 132 128 ) ( 1698 132 -32 ) ( 1684 140 -32 ) bricks/c_sr_mr5 -111 17 -180 1 -1 0 0 0 +( 1728 200 -32 ) ( 1728 200 128 ) ( 1712 204 128 ) bricks/c_sr_mr5 -111 17 -180 1 -1 0 0 0 +( 1728 200 128 ) ( 1728 200 -32 ) ( 1698 132 -32 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 965 +{ +( 2008 -192 -16 ) ( 2008 -64 -16 ) ( 1640 -64 -16 ) bricks/c_sr_mr5 79 31 90 1 1 0 0 0 +( 1640 -64 0 ) ( 2008 -64 0 ) ( 2008 -192 0 ) bricks/c_sr_mr5 0 -9 237 1 1 0 0 0 +( 1640 72 128 ) ( 1640 72 -32 ) ( 1684 140 -32 ) bricks/c_sr_mr5 80 16 0 1 1 0 0 0 +( 1652 62 128 ) ( 1652 62 -32 ) ( 1640 72 -32 ) bricks/c_sr_mr5 -111 17 -180 1 -1 0 0 0 +( 1698 132 -32 ) ( 1698 132 128 ) ( 1684 140 128 ) bricks/c_sr_mr5 -111 17 -180 1 -1 0 0 0 +( 1652 62 -32 ) ( 1652 62 128 ) ( 1698 132 128 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 966 +{ +( 1856 -344 0 ) ( 1728 -344 0 ) ( 1728 24 0 ) bricks/c_sr_mr5 0 13 213 1 1 0 0 0 +( 1728 24 -16 ) ( 1728 -344 -16 ) ( 1856 -344 -16 ) bricks/c_sr_mr5 79 31 90 1 1 0 0 0 +( 1592 24 -144 ) ( 1592 24 16 ) ( 1524 -20 16 ) bricks/c_sr_mr5 -111 17 -180 1 -1 0 0 0 +( 1602 12 -144 ) ( 1602 12 16 ) ( 1592 24 16 ) bricks/c_sr_mr5 80 16 0 1 1 0 0 0 +( 1532 -34 16 ) ( 1532 -34 -144 ) ( 1524 -20 -144 ) bricks/c_sr_mr5 80 16 0 1 1 0 0 0 +( 1602 12 16 ) ( 1602 12 -144 ) ( 1532 -34 -144 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 967 +{ +( 1724 -400 0 ) ( 1596 -400 0 ) ( 1596 -32 0 ) bricks/c_sr_mr5 0 -3 204 1 1 0 0 0 +( 1596 -32 -16 ) ( 1596 -400 -16 ) ( 1724 -400 -16 ) bricks/c_sr_mr5 79 31 90 1 1 0 0 0 +( 1524 -20 -144 ) ( 1524 -20 16 ) ( 1460 -48 16 ) bricks/c_sr_mr5 -111 17 -180 1 -1 0 0 0 +( 1532 -34 -144 ) ( 1532 -34 16 ) ( 1524 -20 16 ) bricks/c_sr_mr5 80 16 0 1 1 0 0 0 +( 1464 -64 16 ) ( 1464 -64 -144 ) ( 1460 -48 -144 ) bricks/c_sr_mr5 80 16 0 1 1 0 0 0 +( 1464 -64 -144 ) ( 1464 -64 16 ) ( 1532 -34 16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 968 +{ +( 1568 -432 0 ) ( 1440 -432 0 ) ( 1440 -64 0 ) bricks/c_sr_mr5 0 -3 192 1 1 0 0 0 +( 1440 -64 -16 ) ( 1440 -432 -16 ) ( 1568 -432 -16 ) bricks/c_sr_mr5 79 31 90 1 1 0 0 0 +( 1460 -48 -144 ) ( 1460 -48 16 ) ( 1384 -64 16 ) bricks/c_sr_mr5 -111 17 -180 1 -1 0 0 0 +( 1460 -48 16 ) ( 1460 -48 -144 ) ( 1464 -64 -144 ) bricks/c_sr_mr5 80 16 0 1 1 0 0 0 +( 1382 -48 -144 ) ( 1382 -48 -128 ) ( 1384 -64 -128 ) bricks/c_sr_mr5 80 16 0 1 1 0 0 0 +( 1464 -64 16 ) ( 1464 -64 -144 ) ( 1386 -80 -144 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 969 +{ +( 1652 24 -16 ) ( 1652 62 -16 ) ( 1592 62 -16 ) bricks/c_sr_mr5 79 31 90 1 1 0 0 0 +( 1592 62 0 ) ( 1652 62 0 ) ( 1652 24 0 ) bricks/c_sr_mr5 0 -13 225 1 1 0 0 0 +( 1640 72 -16 ) ( 1640 72 0 ) ( 1592 24 0 ) bricks/c_sr_mr5 -111 18 -180 1 -1 0 0 0 +( 1602 12 0 ) ( 1602 12 -16 ) ( 1592 24 -16 ) bricks/c_sr_mr5 80 16 0 1 1 0 0 0 +( 1602 12 -16 ) ( 1602 12 0 ) ( 1652 62 0 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( 1640 72 0 ) ( 1640 72 -16 ) ( 1652 62 -16 ) bricks/c_sr_mr5 -111 17 -180 1 -1 0 0 0 +} +// brush 970 +{ +( 1344 -416 192 ) ( 1417 -416 192 ) ( 1420 -448 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 720 -448 176 ) ( 720 -448 192 ) ( 1072 -448 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1420 -448 160 ) ( 1417 -416 192 ) ( 1344 -416 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1344 -432 192 ) ( 1344 -448 160 ) ( 1344 -416 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1420 -448 192 ) ( 1417 -416 192 ) ( 1420 -448 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 971 +{ +( 1417 -416 192 ) ( 1420 -448 160 ) ( 1566 -385 192 ) bricks/c_tn_m1 122 2 12 1 1 0 0 0 +( 1420 -448 208 ) ( 1420 -448 160 ) ( 1417 -416 192 ) bricks/c_tn_m1 122 2 12 1 1 0 0 0 +( 1566 -385 192 ) ( 1420 -448 160 ) ( 1420 -448 208 ) bricks/c_tn_m1 122 2 12 1 1 0 0 0 +( 1417 -224 192 ) ( 1417 -168 192 ) ( 1566 -196 192 ) bricks/c_tn_m1 122 2 12 1 1 0 0 0 +} +// brush 972 +{ +( 1420 -448 160 ) ( 1576 -416 160 ) ( 1566 -385 192 ) bricks/c_tn_m1 122 2 12 1 1 0 0 0 +( 1566 -385 192 ) ( 1576 -416 160 ) ( 1576 -416 208 ) bricks/c_tn_m1 122 2 12 1 1 0 0 0 +( 1576 -416 208 ) ( 1576 -416 160 ) ( 1420 -448 160 ) bricks/c_tn_m1 122 2 12 1 1 0 0 0 +( 1420 -448 208 ) ( 1420 -448 160 ) ( 1566 -385 192 ) bricks/c_tn_m1 122 2 12 1 1 0 0 0 +( 1420 -224 192 ) ( 1420 -168 192 ) ( 1576 -196 192 ) bricks/c_tn_m1 122 2 12 1 1 0 0 0 +} +// brush 973 +{ +( 1692 -331 192 ) ( 1708 -360 160 ) ( 1811 -254 192 ) bricks/c_tn_m1 -56 -15 33 1 1 0 0 0 +( 1708 -360 208 ) ( 1708 -360 160 ) ( 1692 -331 192 ) bricks/c_tn_m1 -56 -15 33 1 1 0 0 0 +( 1811 -254 192 ) ( 1708 -360 160 ) ( 1708 -360 208 ) bricks/c_tn_m1 -56 -15 33 1 1 0 0 0 +( 1692 -224 192 ) ( 1692 -168 192 ) ( 1811 -196 192 ) bricks/c_tn_m1 -56 -15 33 1 1 0 0 0 +} +// brush 974 +{ +( 1708 -360 160 ) ( 1832 -280 160 ) ( 1811 -254 192 ) bricks/c_tn_m1 -56 -15 33 1 1 0 0 0 +( 1811 -254 192 ) ( 1832 -280 160 ) ( 1832 -280 208 ) bricks/c_tn_m1 -56 -15 33 1 1 0 0 0 +( 1832 -280 208 ) ( 1832 -280 160 ) ( 1708 -360 160 ) bricks/c_tn_m1 -56 -15 33 1 1 0 0 0 +( 1708 -360 208 ) ( 1708 -360 160 ) ( 1811 -254 192 ) bricks/c_tn_m1 -56 -15 33 1 1 0 0 0 +( 1708 -224 192 ) ( 1708 -168 192 ) ( 1832 -196 192 ) bricks/c_tn_m1 -56 -15 33 1 1 0 0 0 +} +// brush 975 +{ +( 2049 98 192 ) ( 2080 88 160 ) ( 2112 244 160 ) bricks/c_tn_m1 0 0 78 1 1 0 0 0 +( 2080 88 208 ) ( 2080 88 160 ) ( 2049 98 192 ) bricks/c_tn_m1 0 0 78 1 1 0 0 0 +( 2112 244 160 ) ( 2080 88 160 ) ( 2080 88 208 ) bricks/c_tn_m1 0 0 78 1 1 0 0 0 +( 2049 98 192 ) ( 2112 244 160 ) ( 2112 244 208 ) bricks/c_tn_m1 0 0 78 1 1 0 0 0 +( 2049 -224 192 ) ( 2049 -168 192 ) ( 2112 -196 192 ) bricks/c_tn_m1 0 0 78 1 1 0 0 0 +} +// brush 976 +{ +( 2049 98 192 ) ( 2112 244 160 ) ( 2080 247 192 ) bricks/c_tn_m1 0 0 78 1 1 0 0 0 +( 2080 247 192 ) ( 2112 244 160 ) ( 2112 244 208 ) bricks/c_tn_m1 0 0 78 1 1 0 0 0 +( 2112 244 208 ) ( 2112 244 160 ) ( 2049 98 192 ) bricks/c_tn_m1 0 0 78 1 1 0 0 0 +( 2049 -224 192 ) ( 2049 -168 192 ) ( 2112 -196 192 ) bricks/c_tn_m1 0 0 78 1 1 0 0 0 +} +// brush 977 +{ +( 1470 -79 192 ) ( 1384 -64 160 ) ( 1387 -96 192 ) bricks/c_tn_m1 0 -2 192 1 1 0 0 0 +( 1387 -96 192 ) ( 1384 -64 160 ) ( 1384 -64 208 ) bricks/c_tn_m1 0 -2 192 1 1 0 0 0 +( 1384 -64 208 ) ( 1384 -64 160 ) ( 1470 -79 192 ) bricks/c_tn_m1 0 -2 192 1 1 0 0 0 +( 1480 -64 192 ) ( 1504 -64 192 ) ( 1492 -96 192 ) bricks/c_tn_m1 0 -2 192 1 1 0 0 0 +} +// brush 978 +{ +( 1470 -79 192 ) ( 1460 -48 160 ) ( 1384 -64 160 ) bricks/c_tn_m1 0 -2 192 1 1 0 0 0 +( 1384 -64 160 ) ( 1460 -48 160 ) ( 1460 -48 208 ) bricks/c_tn_m1 0 -2 192 1 1 0 0 0 +( 1460 -48 208 ) ( 1460 -48 160 ) ( 1470 -79 192 ) bricks/c_tn_m1 0 -2 192 1 1 0 0 0 +( 1470 -79 208 ) ( 1470 -79 192 ) ( 1384 -64 160 ) bricks/c_tn_m1 0 -2 192 1 1 0 0 0 +( 1480 -48 192 ) ( 1504 -48 192 ) ( 1492 -79 192 ) bricks/c_tn_m1 0 -2 192 1 1 0 0 0 +} +// brush 979 +{ +( 1539 -48 192 ) ( 1460 -48 160 ) ( 1470 -79 192 ) bricks/c_tn_m1 0 -3 204 1 1 0 0 0 +( 1470 -79 192 ) ( 1460 -48 160 ) ( 1460 -48 208 ) bricks/c_tn_m1 0 -3 204 1 1 0 0 0 +( 1460 -48 208 ) ( 1460 -48 160 ) ( 1539 -48 192 ) bricks/c_tn_m1 0 -3 204 1 1 0 0 0 +( 1480 -48 192 ) ( 1504 -48 192 ) ( 1492 -79 192 ) bricks/c_tn_m1 0 -3 204 1 1 0 0 0 +} +// brush 980 +{ +( 1539 -48 192 ) ( 1524 -20 160 ) ( 1460 -48 160 ) bricks/c_tn_m1 0 -3 204 1 1 0 0 0 +( 1460 -48 160 ) ( 1524 -20 160 ) ( 1524 -20 208 ) bricks/c_tn_m1 0 -3 204 1 1 0 0 0 +( 1524 -20 208 ) ( 1524 -20 160 ) ( 1539 -48 192 ) bricks/c_tn_m1 0 -3 204 1 1 0 0 0 +( 1539 -48 192 ) ( 1460 -48 160 ) ( 1460 -48 208 ) bricks/c_tn_m1 0 -3 204 1 1 0 0 0 +( 1480 -20 192 ) ( 1504 -20 192 ) ( 1492 -48 192 ) bricks/c_tn_m1 0 -3 204 1 1 0 0 0 +} +// brush 981 +{ +( 1612 -1 192 ) ( 1524 -20 160 ) ( 1539 -48 192 ) bricks/c_tn_m1 0 14 213 1 1 0 0 0 +( 1539 -48 192 ) ( 1524 -20 160 ) ( 1524 -20 208 ) bricks/c_tn_m1 0 14 213 1 1 0 0 0 +( 1524 -20 208 ) ( 1524 -20 160 ) ( 1612 -1 192 ) bricks/c_tn_m1 0 14 213 1 1 0 0 0 +( 1480 -1 192 ) ( 1504 -1 192 ) ( 1492 -48 192 ) bricks/c_tn_m1 0 14 213 1 1 0 0 0 +} +// brush 982 +{ +( 1612 -1 192 ) ( 1592 24 160 ) ( 1524 -20 160 ) bricks/c_tn_m1 0 14 213 1 1 0 0 0 +( 1524 -20 160 ) ( 1592 24 160 ) ( 1592 24 208 ) bricks/c_tn_m1 0 14 213 1 1 0 0 0 +( 1592 24 208 ) ( 1592 24 160 ) ( 1612 -1 192 ) bricks/c_tn_m1 0 14 213 1 1 0 0 0 +( 1612 -1 192 ) ( 1524 -20 160 ) ( 1524 -20 208 ) bricks/c_tn_m1 0 14 213 1 1 0 0 0 +( 1480 24 192 ) ( 1504 24 192 ) ( 1492 -20 192 ) bricks/c_tn_m1 0 14 213 1 1 0 0 0 +} +// brush 983 +{ +( 1684 140 160 ) ( 1640 72 160 ) ( 1665 52 192 ) bricks/c_tn_m1 133 -8 237 1 1 0 0 0 +( 1640 72 208 ) ( 1640 72 160 ) ( 1684 140 160 ) bricks/c_tn_m1 133 -8 237 1 1 0 0 0 +( 1665 52 192 ) ( 1640 72 160 ) ( 1640 72 208 ) bricks/c_tn_m1 133 -8 237 1 1 0 0 0 +( 1684 140 208 ) ( 1684 140 160 ) ( 1665 52 192 ) bricks/c_tn_m1 133 -8 237 1 1 0 0 0 +( 1480 140 192 ) ( 1504 140 192 ) ( 1492 52 192 ) bricks/c_tn_m1 133 -8 237 1 1 0 0 0 +} +// brush 984 +{ +( 1712 125 192 ) ( 1684 140 160 ) ( 1665 52 192 ) bricks/c_tn_m1 133 -8 237 1 1 0 0 0 +( 1684 140 208 ) ( 1684 140 160 ) ( 1712 125 192 ) bricks/c_tn_m1 133 -8 237 1 1 0 0 0 +( 1665 52 192 ) ( 1684 140 160 ) ( 1684 140 208 ) bricks/c_tn_m1 133 -8 237 1 1 0 0 0 +( 1480 140 192 ) ( 1504 140 192 ) ( 1492 52 192 ) bricks/c_tn_m1 133 -8 237 1 1 0 0 0 +} +// brush 985 +{ +( 1712 204 160 ) ( 1684 140 160 ) ( 1712 125 192 ) bricks/c_tn_m1 0 9 246 1 1 0 0 0 +( 1684 140 208 ) ( 1684 140 160 ) ( 1712 204 160 ) bricks/c_tn_m1 0 9 246 1 1 0 0 0 +( 1712 125 192 ) ( 1684 140 160 ) ( 1684 140 208 ) bricks/c_tn_m1 0 9 246 1 1 0 0 0 +( 1712 204 208 ) ( 1712 204 160 ) ( 1712 125 192 ) bricks/c_tn_m1 0 9 246 1 1 0 0 0 +( 1480 204 192 ) ( 1504 204 192 ) ( 1492 125 192 ) bricks/c_tn_m1 0 9 246 1 1 0 0 0 +} +// brush 986 +{ +( 1743 194 192 ) ( 1712 204 160 ) ( 1712 125 192 ) bricks/c_tn_m1 0 9 246 1 1 0 0 0 +( 1712 204 208 ) ( 1712 204 160 ) ( 1743 194 192 ) bricks/c_tn_m1 0 9 246 1 1 0 0 0 +( 1712 125 192 ) ( 1712 204 160 ) ( 1712 204 208 ) bricks/c_tn_m1 0 9 246 1 1 0 0 0 +( 1480 204 192 ) ( 1504 204 192 ) ( 1492 125 192 ) bricks/c_tn_m1 0 9 246 1 1 0 0 0 +} +// brush 987 +{ +( 1728 280 160 ) ( 1712 204 160 ) ( 1743 194 192 ) bricks/c_tn_m1 -158 0 258 1 1 0 0 0 +( 1712 204 208 ) ( 1712 204 160 ) ( 1728 280 160 ) bricks/c_tn_m1 -158 0 258 1 1 0 0 0 +( 1743 194 192 ) ( 1712 204 160 ) ( 1712 204 208 ) bricks/c_tn_m1 -158 0 258 1 1 0 0 0 +( 1728 280 160 ) ( 1743 194 192 ) ( 1743 194 208 ) bricks/c_tn_m1 -158 0 258 1 1 0 0 0 +( 1480 280 192 ) ( 1504 280 192 ) ( 1492 194 192 ) bricks/c_tn_m1 -158 0 258 1 1 0 0 0 +} +// brush 988 +{ +( 1760 277 192 ) ( 1728 280 160 ) ( 1743 194 192 ) bricks/c_tn_m1 -158 0 258 1 1 0 0 0 +( 1728 280 208 ) ( 1728 280 160 ) ( 1760 277 192 ) bricks/c_tn_m1 -158 0 258 1 1 0 0 0 +( 1743 194 192 ) ( 1728 280 160 ) ( 1728 280 208 ) bricks/c_tn_m1 -158 0 258 1 1 0 0 0 +( 1480 280 192 ) ( 1504 280 192 ) ( 1492 194 192 ) bricks/c_tn_m1 -158 0 258 1 1 0 0 0 +} +// brush 989 +{ +( 2112 244 192 ) ( 2112 244 208 ) ( 2112 320 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2080 88 192 ) ( 2080 88 208 ) ( 2112 244 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2024 -44 192 ) ( 2024 -44 208 ) ( 2080 88 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1944 -168 192 ) ( 1944 -168 208 ) ( 2024 -44 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1832 -280 192 ) ( 1832 -280 208 ) ( 1944 -168 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1708 -360 192 ) ( 1708 -360 208 ) ( 1832 -280 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1576 -416 192 ) ( 1576 -416 208 ) ( 1708 -360 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1576 -416 208 ) ( 1576 -416 192 ) ( 1420 -448 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1420 -448 208 ) ( 1420 -448 192 ) ( 1344 -448 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 576 1088 192 ) ( 576 -448 192 ) ( 2112 -448 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2112 -448 208 ) ( 576 -448 208 ) ( 576 1088 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1864 320 144 ) ( 1920 320 144 ) ( 1892 320 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1344 -344 144 ) ( 1344 -280 144 ) ( 1344 -312 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1344 -64 192 ) ( 1728 320 192 ) ( 1536 128 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 990 +{ +( 2112 244 -32 ) ( 2112 244 -16 ) ( 2112 320 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2080 88 -32 ) ( 2080 88 -16 ) ( 2112 244 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2024 -44 -32 ) ( 2024 -44 -16 ) ( 2080 88 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1944 -168 -32 ) ( 1944 -168 -16 ) ( 2024 -44 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1832 -280 -32 ) ( 1832 -280 -16 ) ( 1944 -168 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1708 -360 -32 ) ( 1708 -360 -16 ) ( 1832 -280 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1576 -416 -32 ) ( 1576 -416 -16 ) ( 1708 -360 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1576 -416 -16 ) ( 1576 -416 -32 ) ( 1420 -448 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1420 -448 -16 ) ( 1420 -448 -32 ) ( 1344 -448 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 576 1088 -32 ) ( 576 -448 -32 ) ( 2112 -448 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2112 -448 -16 ) ( 576 -448 -16 ) ( 576 1088 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1864 320 -80 ) ( 1920 320 -80 ) ( 1892 320 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1344 -344 -80 ) ( 1344 -280 -80 ) ( 1344 -312 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1344 -64 -32 ) ( 1728 320 -32 ) ( 1536 128 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 991 +{ +( 1384 -64 192 ) ( 1387 -96 192 ) ( 1152 -96 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1528 -64 160 ) ( 1528 -64 192 ) ( 1272 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1152 -96 192 ) ( 1387 -96 192 ) ( 1384 -64 160 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1384 -64 160 ) ( 1387 -96 192 ) ( 1384 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1344 -80 160 ) ( 1344 -72 160 ) ( 1344 -76 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 992 +{ +( 1918 -147 192 ) ( 2024 -44 160 ) ( 1995 -28 192 ) bricks/c_tn_m1 -87 7 57 1 1 0 0 0 +( 1995 -28 192 ) ( 2024 -44 160 ) ( 2024 -44 208 ) bricks/c_tn_m1 -87 7 57 1 1 0 0 0 +( 2024 -44 208 ) ( 2024 -44 160 ) ( 1918 -147 192 ) bricks/c_tn_m1 -87 7 57 1 1 0 0 0 +( 1918 -224 192 ) ( 1918 -168 192 ) ( 2024 -196 192 ) bricks/c_tn_m1 -87 7 57 1 1 0 0 0 +} +// brush 993 +{ +( 1918 -147 192 ) ( 1944 -168 160 ) ( 2024 -44 160 ) bricks/c_tn_m1 -87 7 57 1 1 0 0 0 +( 1944 -168 208 ) ( 1944 -168 160 ) ( 1918 -147 192 ) bricks/c_tn_m1 -87 7 57 1 1 0 0 0 +( 2024 -44 160 ) ( 1944 -168 160 ) ( 1944 -168 208 ) bricks/c_tn_m1 -87 7 57 1 1 0 0 0 +( 1918 -147 192 ) ( 2024 -44 160 ) ( 2024 -44 208 ) bricks/c_tn_m1 -87 7 57 1 1 0 0 0 +( 1918 -224 192 ) ( 1918 -168 192 ) ( 2024 -196 192 ) bricks/c_tn_m1 -87 7 57 1 1 0 0 0 +} +// brush 994 +{ +( 1568 -432 192 ) ( 1440 -432 192 ) ( 1440 -64 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1582 -432 32 ) ( 1582 -432 48 ) ( 1576 -416 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1582 -432 128 ) ( 1582 -432 112 ) ( 1422 -464 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1422 -464 48 ) ( 1422 -464 32 ) ( 1420 -448 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1576 -416 -16 ) ( 1420 -448 -16 ) ( 1498 -432 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1420 -376 -16 ) ( 1420 -408 -16 ) ( 1582 -392 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 995 +{ +( 1724 -400 192 ) ( 1596 -400 192 ) ( 1596 -32 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1716 -374 32 ) ( 1716 -374 48 ) ( 1708 -360 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1716 -374 128 ) ( 1716 -374 112 ) ( 1582 -432 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1582 -432 48 ) ( 1582 -432 32 ) ( 1576 -416 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1708 -360 48 ) ( 1576 -416 48 ) ( 1642 -388 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1576 -376 -16 ) ( 1576 -408 -16 ) ( 1716 -392 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 996 +{ +( 1856 -344 192 ) ( 1728 -344 192 ) ( 1728 24 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1842 -292 176 ) ( 1842 -292 192 ) ( 1832 -280 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1842 -292 128 ) ( 1842 -292 112 ) ( 1716 -374 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1716 -374 48 ) ( 1716 -374 32 ) ( 1708 -360 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1832 -280 48 ) ( 1708 -360 48 ) ( 1770 -320 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1708 -376 -16 ) ( 1708 -408 -16 ) ( 1842 -392 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 997 +{ +( 1832 -178 192 ) ( 1956 -178 192 ) ( 1956 -280 192 ) bricks/c_tn_m3 35 0 0 1 1 0 0 0 +( 1944 -168 32 ) ( 1944 -168 192 ) ( 1832 -280 192 ) bricks/c_tn_m3 35 0 0 1 1 0 0 0 +( 1842 -292 192 ) ( 1842 -292 32 ) ( 1832 -280 32 ) bricks/c_tn_m3 35 0 0 1 1 0 0 0 +( 1842 -292 -32 ) ( 1842 -292 128 ) ( 1956 -178 128 ) bricks/c_tn_m3 35 0 0 1 1 0 0 0 +( 1944 -168 192 ) ( 1944 -168 32 ) ( 1956 -178 32 ) bricks/c_tn_m3 35 0 0 1 1 0 0 0 +( 1832 -376 -16 ) ( 1832 -408 -16 ) ( 1956 -392 -16 ) bricks/c_tn_m3 35 0 0 1 1 0 0 0 +} +// brush 998 +{ +( 1640 -64 192 ) ( 2008 -64 192 ) ( 2008 -192 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1956 -178 48 ) ( 1956 -178 32 ) ( 1944 -168 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1956 -178 -32 ) ( 1956 -178 -16 ) ( 2038 -52 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2038 -52 176 ) ( 2038 -52 192 ) ( 2024 -44 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1944 -168 176 ) ( 2024 -44 176 ) ( 1984 -106 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1944 -376 -16 ) ( 1944 -408 -16 ) ( 2038 -392 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 999 +{ +( 1696 68 192 ) ( 2064 68 192 ) ( 2064 -60 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2038 -52 192 ) ( 2038 -52 176 ) ( 2024 -44 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2038 -52 -32 ) ( 2038 -52 -16 ) ( 2096 82 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2096 82 176 ) ( 2096 82 192 ) ( 2080 88 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2024 -44 176 ) ( 2080 88 176 ) ( 2052 22 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2024 -376 -16 ) ( 2024 -408 -16 ) ( 2096 -392 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1000 +{ +( 1728 224 192 ) ( 2096 224 192 ) ( 2096 96 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2096 82 192 ) ( 2096 82 176 ) ( 2080 88 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2096 82 -32 ) ( 2096 82 -16 ) ( 2128 242 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2128 242 176 ) ( 2128 242 192 ) ( 2112 244 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2080 88 176 ) ( 2112 244 176 ) ( 2096 166 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2080 -376 -16 ) ( 2080 -408 -16 ) ( 2128 -392 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1001 +{ +( 1728 224 192 ) ( 2096 224 192 ) ( 2096 96 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1696 208 48 ) ( 1696 208 32 ) ( 1712 282 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1696 208 176 ) ( 1696 208 192 ) ( 1712 204 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1712 282 192 ) ( 1712 282 176 ) ( 1728 280 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1728 280 112 ) ( 1712 204 112 ) ( 1720 242 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1696 1776 -16 ) ( 1696 1744 -16 ) ( 1728 1760 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1002 +{ +( 1696 68 192 ) ( 2064 68 192 ) ( 2064 -60 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1670 148 -16 ) ( 1670 148 -32 ) ( 1696 208 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1670 148 176 ) ( 1670 148 192 ) ( 1684 140 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1696 208 192 ) ( 1696 208 176 ) ( 1712 204 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1712 204 112 ) ( 1684 140 112 ) ( 1698 172 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1670 1776 -16 ) ( 1670 1744 -16 ) ( 1712 1760 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1003 +{ +( 1640 -64 192 ) ( 2008 -64 192 ) ( 2008 -192 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1626 82 48 ) ( 1626 82 32 ) ( 1670 148 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1626 82 176 ) ( 1626 82 192 ) ( 1640 72 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1670 148 192 ) ( 1670 148 176 ) ( 1684 140 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1684 140 112 ) ( 1640 72 112 ) ( 1662 106 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1626 1776 -16 ) ( 1626 1744 -16 ) ( 1684 1760 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1004 +{ +( 1560 -188 192 ) ( 1928 -188 192 ) ( 1928 -316 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1582 38 -16 ) ( 1582 38 -32 ) ( 1626 82 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1582 38 176 ) ( 1582 38 192 ) ( 1592 24 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1626 82 192 ) ( 1626 82 176 ) ( 1640 72 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1640 72 112 ) ( 1592 24 112 ) ( 1616 48 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1582 1776 -16 ) ( 1582 1744 -16 ) ( 1640 1760 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1005 +{ +( 1856 -344 192 ) ( 1728 -344 192 ) ( 1728 24 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1582 38 32 ) ( 1582 38 48 ) ( 1516 -6 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1582 38 192 ) ( 1582 38 176 ) ( 1592 24 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1516 -6 176 ) ( 1516 -6 192 ) ( 1524 -20 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1524 -20 128 ) ( 1592 24 128 ) ( 1558 2 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1516 1776 -16 ) ( 1516 1744 -16 ) ( 1592 1760 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1006 +{ +( 1724 -400 192 ) ( 1596 -400 192 ) ( 1596 -32 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1516 -6 -32 ) ( 1516 -6 -16 ) ( 1456 -32 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1516 -6 192 ) ( 1516 -6 176 ) ( 1524 -20 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1456 -32 176 ) ( 1456 -32 192 ) ( 1460 -48 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1460 -48 128 ) ( 1524 -20 128 ) ( 1492 -34 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1456 1776 -16 ) ( 1456 1744 -16 ) ( 1524 1760 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1007 +{ +( 1568 -432 192 ) ( 1440 -432 192 ) ( 1440 -64 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1456 -32 32 ) ( 1456 -32 48 ) ( 1382 -48 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1456 -32 192 ) ( 1456 -32 176 ) ( 1460 -48 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1382 -48 32 ) ( 1382 -48 48 ) ( 1384 -64 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1384 -64 -16 ) ( 1460 -48 -16 ) ( 1422 -56 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1382 1776 -16 ) ( 1382 1744 -16 ) ( 1460 1760 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1008 +{ +( 2112 244 -16 ) ( 2112 394 -16 ) ( 2096 394 -16 ) bricks/c_sr_mr5 79 15 90 1 1 0 0 0 +( 1744 320 0 ) ( 2112 320 0 ) ( 2112 192 0 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( 2096 246 -16 ) ( 2096 246 144 ) ( 2112 244 144 ) bricks/c_sr_mr5 -111 31 -180 1 -1 0 0 0 +( 2112 396 0 ) ( 2112 396 -16 ) ( 2112 244 -16 ) bricks/c_sr_mr5 80 0 0 1 1 0 0 0 +( 2096 246 144 ) ( 2096 246 -16 ) ( 2096 320 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2096 320 -16 ) ( 2128 320 -16 ) ( 2112 320 0 ) bricks/c_sr_mr5 -48 17 -180 1 -1 0 0 0 +} +// brush 1009 +{ +( 1744 320 192 ) ( 2112 320 192 ) ( 2112 192 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2128 242 192 ) ( 2128 242 176 ) ( 2112 244 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2128 398 192 ) ( 2128 398 -16 ) ( 2128 242 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2112 300 -32 ) ( 2112 320 -32 ) ( 2112 310 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2112 -376 -16 ) ( 2112 -408 -16 ) ( 2128 -392 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2096 320 -16 ) ( 2128 320 -16 ) ( 2112 320 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1010 +{ +( 504 -432 0 ) ( 504 -112 0 ) ( 2048 -112 0 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 1386 -80 0 ) ( 1386 -80 -16 ) ( -586 -80 -16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -588 -64 0 ) ( -588 -64 -16 ) ( 1344 -64 -16 ) bricks/b_rc_v21 -64 0 0 1 1 0 0 0 +( 176 -80 -16 ) ( 192 -80 -16 ) ( 184 -64 -16 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +( -588 -64 -16 ) ( -588 -64 0 ) ( -586 -80 0 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +( 1386 -80 -16 ) ( 1386 -80 0 ) ( 1384 -64 0 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +} +// brush 1011 +{ +( 448 -464 192 ) ( -1096 -464 192 ) ( -1096 -784 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1096 -784 208 ) ( -1096 -464 208 ) ( 448 -464 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1096 -464 128 ) ( 448 -464 128 ) ( 448 -464 120 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 480 -48 128 ) ( -1064 -48 128 ) ( -1064 -48 120 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -512 -168 192 ) ( -512 -56 192 ) ( -512 -112 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1344 -48 192 ) ( 1344 -80 192 ) ( 1344 -64 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1012 +{ +( 504 -768 192 ) ( 504 -448 192 ) ( 2048 -448 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1422 -464 192 ) ( 1422 -464 -16 ) ( 217 -464 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2048 -448 -16 ) ( 504 -448 -16 ) ( 504 -448 -24 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 217 -449 -16 ) ( 217 -769 -16 ) ( 217 -769 -24 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 176 -464 -16 ) ( 192 -464 -16 ) ( 184 -448 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1422 -464 -16 ) ( 1422 -464 192 ) ( 1420 -448 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1013 +{ +( 504 -752 0 ) ( 504 -432 0 ) ( 2048 -432 0 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1420 -448 0 ) ( 1420 -448 -16 ) ( -552 -448 -16 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -554 -432 0 ) ( -554 -432 -16 ) ( 1344 -432 -16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( 176 -448 -16 ) ( 192 -448 -16 ) ( 184 -432 -16 ) bricks/c_sr_mb2 -64 -64 0 1 1 0 0 0 +( -554 -432 -16 ) ( -554 -432 0 ) ( -552 -448 0 ) bricks/c_sr_mb2 -64 -64 0 1 1 0 0 0 +( 1420 -448 -16 ) ( 1420 -448 0 ) ( 1418 -432 0 ) bricks/c_sr_mb2 -64 -64 0 1 1 0 0 0 +} +// brush 1014 +{ +( 448 -128 -32 ) ( -1096 -128 -32 ) ( -1096 -448 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1096 -448 -16 ) ( -1096 -128 -16 ) ( 448 -128 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -796 -464 -32 ) ( -796 -464 -16 ) ( 512 -464 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -864 -48 -16 ) ( -864 -48 -32 ) ( 504 -48 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -512 -480 -32 ) ( -512 -64 -32 ) ( -512 -272 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1344 -48 -32 ) ( 1344 -80 -32 ) ( 1344 -64 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1015 +{ +( 2080 2112 -56 ) ( 2112 2112 -56 ) ( 2112 1984 -40 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 2112 -56 ) ( 2112 2112 -88 ) ( 2112 1984 -72 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 2112 -88 ) ( 2080 2112 -56 ) ( 2080 1984 -40 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 1984 -72 ) ( 2080 1984 -72 ) ( 2092 1984 -40 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2072 2112 -88 ) ( 2080 2112 -88 ) ( 2076 2112 -40 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1016 +{ +( 1728 2176 -64 ) ( 1760 2176 -64 ) ( 1760 2048 -48 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2176 -96 ) ( 1728 2176 -64 ) ( 1728 2048 -48 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 2176 -64 ) ( 1728 2176 -96 ) ( 1728 2048 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1744 1984 -80 ) ( 1728 1984 -80 ) ( 1736 1984 -48 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2112 -96 ) ( 1752 2112 -96 ) ( 1740 2112 -48 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 1017 +{ +( 2080 1856 -16 ) ( 2112 1856 -16 ) ( 2112 1728 16 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1856 -16 ) ( 2112 1856 -48 ) ( 2112 1728 -16 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1856 -48 ) ( 2080 1856 -16 ) ( 2080 1728 16 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 1856 -64 ) ( 2112 1856 -64 ) ( 2096 1856 -32 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 1728 -48 ) ( 2088 1728 -48 ) ( 2096 1728 16 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1018 +{ +( 1728 1856 -16 ) ( 1760 1856 -16 ) ( 1760 1728 16 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 1856 -48 ) ( 1728 1856 -16 ) ( 1728 1728 16 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 1856 -16 ) ( 1728 1856 -48 ) ( 1728 1728 -16 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1744 1856 -16 ) ( 1728 1856 -48 ) ( 1760 1856 -48 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1752 1728 -48 ) ( 1736 1728 -48 ) ( 1744 1728 16 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 1019 +{ +( 1728 1152 168 ) ( 1760 1152 168 ) ( 1760 1024 184 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 1152 136 ) ( 1728 1152 168 ) ( 1728 1024 184 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 1152 168 ) ( 1728 1152 136 ) ( 1728 1024 152 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1744 1024 152 ) ( 1728 1024 152 ) ( 1736 1024 184 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1736 1152 136 ) ( 1752 1152 136 ) ( 1744 1152 184 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 1020 +{ +( 2080 1152 168 ) ( 2112 1152 168 ) ( 2112 1024 184 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1152 168 ) ( 2112 1152 136 ) ( 2112 1024 152 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1152 136 ) ( 2080 1152 168 ) ( 2080 1024 184 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 1024 152 ) ( 2080 1024 152 ) ( 2092 1024 184 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 1152 136 ) ( 2104 1152 136 ) ( 2092 1152 184 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1021 +{ +( 2080 1408 112 ) ( 2112 1408 112 ) ( 2112 1280 144 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1408 112 ) ( 2112 1408 80 ) ( 2112 1280 112 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1408 80 ) ( 2080 1408 112 ) ( 2080 1280 144 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 1408 80 ) ( 2112 1408 80 ) ( 2096 1408 112 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 1280 112 ) ( 2080 1280 112 ) ( 2092 1280 144 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1022 +{ +( 1728 1408 112 ) ( 1760 1408 112 ) ( 1760 1280 144 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 1408 80 ) ( 1728 1408 112 ) ( 1728 1280 144 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 1408 112 ) ( 1728 1408 80 ) ( 1728 1280 112 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1744 1408 112 ) ( 1728 1408 80 ) ( 1760 1408 80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1744 1280 112 ) ( 1728 1280 112 ) ( 1736 1280 144 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 1023 +{ +( 2128 1024 184 ) ( 1712 1024 184 ) ( 1712 896 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1024 200 ) ( 2128 1024 200 ) ( 2128 896 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 896 208 ) ( 2128 896 208 ) ( 2128 896 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2128 1024 200 ) ( 2128 1024 184 ) ( 2128 896 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2128 1024 200 ) ( 1712 1024 200 ) ( 1712 1024 184 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1024 184 ) ( 1712 1024 200 ) ( 1712 896 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1024 +{ +( 2128 1152 168 ) ( 1712 1152 168 ) ( 1712 1024 184 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1152 184 ) ( 2128 1152 184 ) ( 2128 1024 200 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1024 200 ) ( 2128 1024 200 ) ( 2128 1024 184 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2128 1152 184 ) ( 2128 1152 168 ) ( 2128 1024 184 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2128 1152 184 ) ( 1712 1152 184 ) ( 1712 1152 168 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1152 168 ) ( 1712 1152 184 ) ( 1712 1024 200 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1025 +{ +( 2128 1280 144 ) ( 1712 1280 144 ) ( 1712 1152 168 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1280 160 ) ( 2128 1280 160 ) ( 2128 1152 184 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1152 184 ) ( 2128 1152 184 ) ( 2128 1152 168 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2128 1280 160 ) ( 2128 1280 144 ) ( 2128 1152 168 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2128 1280 160 ) ( 1712 1280 160 ) ( 1712 1280 144 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1280 144 ) ( 1712 1280 160 ) ( 1712 1152 184 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1026 +{ +( 2128 1408 112 ) ( 1712 1408 112 ) ( 1712 1280 144 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1408 128 ) ( 2128 1408 128 ) ( 2128 1280 160 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1280 160 ) ( 2128 1280 160 ) ( 2128 1280 144 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2128 1408 128 ) ( 2128 1408 112 ) ( 2128 1280 144 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2128 1408 128 ) ( 1712 1408 128 ) ( 1712 1408 112 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1408 112 ) ( 1712 1408 128 ) ( 1712 1280 160 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1027 +{ +( 2128 1728 16 ) ( 1712 1728 16 ) ( 1712 1408 112 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1728 32 ) ( 2128 1728 32 ) ( 2128 1408 128 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1408 128 ) ( 2128 1408 128 ) ( 2128 1408 112 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2128 1728 36 ) ( 2128 1728 20 ) ( 2128 1408 112 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2128 1728 32 ) ( 1712 1728 32 ) ( 1712 1728 16 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1728 20 ) ( 1712 1728 36 ) ( 1712 1408 128 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1028 +{ +( 2128 1856 -16 ) ( 1712 1856 -16 ) ( 1712 1728 16 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1856 0 ) ( 2128 1856 0 ) ( 2128 1728 32 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1728 32 ) ( 2128 1728 32 ) ( 2128 1728 16 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2128 1856 0 ) ( 2128 1856 -16 ) ( 2128 1728 16 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2128 1856 0 ) ( 1712 1856 0 ) ( 1712 1856 -16 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1856 -16 ) ( 1712 1856 0 ) ( 1712 1728 32 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1029 +{ +( 2128 1984 -40 ) ( 1712 1984 -40 ) ( 1712 1856 -16 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1984 -24 ) ( 2128 1984 -24 ) ( 2128 1856 0 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1856 0 ) ( 2128 1856 0 ) ( 2128 1856 -16 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2128 1984 -24 ) ( 2128 1984 -40 ) ( 2128 1856 -16 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2128 1984 -24 ) ( 1712 1984 -24 ) ( 1712 1984 -40 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1984 -40 ) ( 1712 1984 -24 ) ( 1712 1856 0 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1030 +{ +( 2128 2112 -56 ) ( 1712 2112 -56 ) ( 1712 1984 -40 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 2112 -40 ) ( 2128 2112 -40 ) ( 2128 1984 -24 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 1984 -24 ) ( 2128 1984 -24 ) ( 2128 1984 -40 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2128 2112 -40 ) ( 2128 2112 -56 ) ( 2128 1984 -40 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2128 2112 -40 ) ( 1712 2112 -40 ) ( 1712 2112 -56 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 2112 -56 ) ( 1712 2112 -40 ) ( 1712 1984 -24 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1031 +{ +( 2128 2240 -64 ) ( 1712 2240 -64 ) ( 1712 2112 -56 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 2240 -48 ) ( 2128 2240 -48 ) ( 2128 2112 -40 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 2112 -40 ) ( 2128 2112 -40 ) ( 2128 2112 -56 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2128 2240 -48 ) ( 2128 2240 -64 ) ( 2128 2112 -56 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2128 2240 -48 ) ( 1712 2240 -48 ) ( 1712 2240 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 2240 -64 ) ( 1712 2240 -48 ) ( 1712 2112 -40 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1032 +{ +( 1760 1024 -24 ) ( 1344 1024 -24 ) ( 1344 896 -16 ) bricks/c_tn_m3 14 62 356 1 1 0 0 0 +( 1712 1024 184 ) ( 1728 1024 184 ) ( 1728 896 192 ) bricks/c_tn_m3 14 62 356 1 1 0 0 0 +( 1712 896 192 ) ( 1728 896 192 ) ( 1728 896 -16 ) bricks/c_tn_m3 14 62 356 1 1 0 0 0 +( 1728 1024 -8 ) ( 1728 1024 -24 ) ( 1728 896 -16 ) bricks/c_tn_m3 14 62 356 1 1 0 0 0 +( 1728 1024 184 ) ( 1712 1024 184 ) ( 1712 1024 -24 ) bricks/c_tn_m3 14 62 356 1 1 0 0 0 +( 1712 1808 -24 ) ( 1712 1824 -24 ) ( 1712 1816 0 ) bricks/c_tn_m3 14 62 356 1 1 0 0 0 +} +// brush 1033 +{ +( 1760 1152 -40 ) ( 1344 1152 -40 ) ( 1344 1024 -24 ) bricks/c_tn_m3 27 117 353 1 1 0 0 0 +( 1712 1152 168 ) ( 1728 1152 168 ) ( 1728 1024 184 ) bricks/c_tn_m3 27 117 353 1 1 0 0 0 +( 1712 1024 184 ) ( 1728 1024 184 ) ( 1728 1024 -24 ) bricks/c_tn_m3 27 117 353 1 1 0 0 0 +( 1728 1152 -24 ) ( 1728 1152 -40 ) ( 1728 1024 -24 ) bricks/c_tn_m3 27 117 353 1 1 0 0 0 +( 1728 1152 168 ) ( 1712 1152 168 ) ( 1712 1152 -40 ) bricks/c_tn_m3 27 117 353 1 1 0 0 0 +( 1712 1808 -40 ) ( 1712 1824 -40 ) ( 1712 1816 -8 ) bricks/c_tn_m3 27 117 353 1 1 0 0 0 +} +// brush 1034 +{ +( 1760 1280 -64 ) ( 1344 1280 -64 ) ( 1344 1152 -40 ) bricks/c_tn_m3 41 -60 349 1 1 0 0 0 +( 1728 1152 168 ) ( 1712 1152 168 ) ( 1712 1280 144 ) bricks/c_tn_m3 41 -60 349 1 1 0 0 0 +( 1712 1152 168 ) ( 1728 1152 168 ) ( 1728 1152 -40 ) bricks/c_tn_m3 41 -60 349 1 1 0 0 0 +( 1728 1280 -48 ) ( 1728 1280 -64 ) ( 1728 1152 -40 ) bricks/c_tn_m3 41 -60 349 1 1 0 0 0 +( 1728 1280 144 ) ( 1712 1280 144 ) ( 1712 1280 -64 ) bricks/c_tn_m3 41 -60 349 1 1 0 0 0 +( 1712 1808 -64 ) ( 1712 1824 -64 ) ( 1712 1816 -24 ) bricks/c_tn_m3 41 -60 349 1 1 0 0 0 +} +// brush 1035 +{ +( 1760 1408 -96 ) ( 1344 1408 -96 ) ( 1344 1280 -64 ) bricks/c_tn_m3 60 8 346 1 1 0 0 0 +( 1344 1376 120 ) ( 1760 1376 120 ) ( 1760 1248 152 ) bricks/c_tn_m3 60 8 346 1 1 0 0 0 +( 1312 1280 -48 ) ( 1728 1280 -48 ) ( 1728 1280 -64 ) bricks/c_tn_m3 60 8 346 1 1 0 0 0 +( 1728 1408 -80 ) ( 1728 1408 -96 ) ( 1728 1280 -64 ) bricks/c_tn_m3 60 8 346 1 1 0 0 0 +( 1728 1408 -80 ) ( 1312 1408 -80 ) ( 1312 1408 -96 ) bricks/c_tn_m3 60 8 346 1 1 0 0 0 +( 1712 1808 -96 ) ( 1712 1824 -96 ) ( 1712 1816 -48 ) bricks/c_tn_m3 60 8 346 1 1 0 0 0 +} +// brush 1036 +{ +( 1760 1728 -192 ) ( 1344 1728 -192 ) ( 1344 1408 -96 ) bricks/c_tn_m3 81 79 343 1 1 0 0 0 +( 1344 1728 16 ) ( 1760 1728 16 ) ( 1760 1408 112 ) bricks/c_tn_m3 81 79 343 1 1 0 0 0 +( 1312 1408 -80 ) ( 1728 1408 -80 ) ( 1728 1408 -96 ) bricks/c_tn_m3 81 79 343 1 1 0 0 0 +( 1728 1728 -172 ) ( 1728 1728 -188 ) ( 1728 1408 -96 ) bricks/c_tn_m3 81 79 343 1 1 0 0 0 +( 1728 1728 -176 ) ( 1312 1728 -176 ) ( 1312 1728 -192 ) bricks/c_tn_m3 81 79 343 1 1 0 0 0 +( 1712 1808 -192 ) ( 1712 1824 -192 ) ( 1712 1816 -80 ) bricks/c_tn_m3 81 79 343 1 1 0 0 0 +} +// brush 1037 +{ +( 1760 1856 -224 ) ( 1344 1856 -224 ) ( 1344 1728 -192 ) bricks/c_tn_m3 46 -9 346 1 1 0 0 0 +( 1344 1856 -16 ) ( 1760 1856 -16 ) ( 1760 1728 16 ) bricks/c_tn_m3 46 -9 346 1 1 0 0 0 +( 1312 1728 -176 ) ( 1728 1728 -176 ) ( 1728 1728 -192 ) bricks/c_tn_m3 46 -9 346 1 1 0 0 0 +( 1728 1856 -208 ) ( 1728 1856 -224 ) ( 1728 1728 -192 ) bricks/c_tn_m3 46 -9 346 1 1 0 0 0 +( 1728 1856 -208 ) ( 1312 1856 -208 ) ( 1312 1856 -224 ) bricks/c_tn_m3 46 -9 346 1 1 0 0 0 +( 1712 1808 -224 ) ( 1712 1824 -224 ) ( 1712 1816 -176 ) bricks/c_tn_m3 46 -9 346 1 1 0 0 0 +} +// brush 1038 +{ +( 1760 1984 -248 ) ( 1344 1984 -248 ) ( 1344 1856 -224 ) bricks/c_tn_m3 34 -106 349 1 1 0 0 0 +( 1344 1984 -40 ) ( 1760 1984 -40 ) ( 1760 1856 -16 ) bricks/c_tn_m3 34 -106 349 1 1 0 0 0 +( 1312 1856 -208 ) ( 1728 1856 -208 ) ( 1728 1856 -224 ) bricks/c_tn_m3 34 -106 349 1 1 0 0 0 +( 1728 1984 -232 ) ( 1728 1984 -248 ) ( 1728 1856 -224 ) bricks/c_tn_m3 34 -106 349 1 1 0 0 0 +( 1728 1984 -232 ) ( 1312 1984 -232 ) ( 1312 1984 -248 ) bricks/c_tn_m3 34 -106 349 1 1 0 0 0 +( 1712 1808 -248 ) ( 1712 1824 -248 ) ( 1712 1816 -208 ) bricks/c_tn_m3 34 -106 349 1 1 0 0 0 +} +// brush 1039 +{ +( 1760 2112 -264 ) ( 1344 2112 -264 ) ( 1344 1984 -248 ) bricks/c_tn_m3 6 10 353 1 1 0 0 0 +( 1344 2112 -56 ) ( 1760 2112 -56 ) ( 1760 1984 -40 ) bricks/c_tn_m3 6 10 353 1 1 0 0 0 +( 1312 1984 -232 ) ( 1728 1984 -232 ) ( 1728 1984 -248 ) bricks/c_tn_m3 6 10 353 1 1 0 0 0 +( 1728 2112 -248 ) ( 1728 2112 -264 ) ( 1728 1984 -248 ) bricks/c_tn_m3 6 10 353 1 1 0 0 0 +( 1728 2112 -248 ) ( 1312 2112 -248 ) ( 1312 2112 -264 ) bricks/c_tn_m3 6 10 353 1 1 0 0 0 +( 1712 1808 -264 ) ( 1712 1824 -264 ) ( 1712 1816 -232 ) bricks/c_tn_m3 6 10 353 1 1 0 0 0 +} +// brush 1040 +{ +( 1760 2240 -272 ) ( 1344 2240 -272 ) ( 1344 2112 -264 ) bricks/c_tn_m3 0 118 357 1 1 0 0 0 +( 1344 2240 -64 ) ( 1760 2240 -64 ) ( 1760 2112 -56 ) bricks/c_tn_m3 0 118 357 1 1 0 0 0 +( 1312 2112 -248 ) ( 1728 2112 -248 ) ( 1728 2112 -264 ) bricks/c_tn_m3 0 118 357 1 1 0 0 0 +( 1728 2240 -256 ) ( 1728 2240 -272 ) ( 1728 2112 -264 ) bricks/c_tn_m3 0 118 357 1 1 0 0 0 +( 1728 2240 -256 ) ( 1312 2240 -256 ) ( 1312 2240 -272 ) bricks/c_tn_m3 0 118 357 1 1 0 0 0 +( 1712 1808 -272 ) ( 1712 1824 -272 ) ( 1712 1816 -248 ) bricks/c_tn_m3 0 118 357 1 1 0 0 0 +} +// brush 1041 +{ +( 2144 1024 -24 ) ( 1728 1024 -24 ) ( 1728 896 -16 ) bricks/c_sr_mr5 127 30 90 1 1 0 0 0 +( 1728 1024 -8 ) ( 2144 1024 -8 ) ( 2144 896 0 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( 1696 896 0 ) ( 2112 896 0 ) ( 2112 896 -16 ) bricks/c_sr_mr5 1 0 90 1 1 0 0 0 +( 2112 1024 -8 ) ( 2112 1024 -24 ) ( 2112 896 -16 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( 2112 1024 -8 ) ( 1696 1024 -8 ) ( 1696 1024 -24 ) bricks/c_sr_mr5 1 0 90 1 1 0 0 0 +( 2096 1808 -24 ) ( 2096 1824 -24 ) ( 2096 1816 0 ) bricks/c_sr_mr5 0 14 356 1 1 0 0 0 +} +// brush 1042 +{ +( 2144 1152 -40 ) ( 1728 1152 -40 ) ( 1728 1024 -24 ) bricks/c_sr_mr5 127 30 90 1 1 0 0 0 +( 1728 1152 -24 ) ( 2144 1152 -24 ) ( 2144 1024 -8 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( 1696 1024 -8 ) ( 2112 1024 -8 ) ( 2112 1024 -24 ) bricks/c_sr_mr5 1 0 90 1 1 0 0 0 +( 2112 1152 -24 ) ( 2112 1152 -40 ) ( 2112 1024 -24 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( 2112 1152 -24 ) ( 1696 1152 -24 ) ( 1696 1152 -40 ) bricks/c_sr_mr5 1 0 90 1 1 0 0 0 +( 2096 1808 -40 ) ( 2096 1824 -40 ) ( 2096 1816 -8 ) bricks/c_sr_mr5 0 4 353 1 1 0 0 0 +} +// brush 1043 +{ +( 2144 1280 -64 ) ( 1728 1280 -64 ) ( 1728 1152 -40 ) bricks/c_sr_mr5 127 30 90 1 1 0 0 0 +( 1728 1280 -48 ) ( 2144 1280 -48 ) ( 2144 1152 -24 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( 1696 1152 -24 ) ( 2112 1152 -24 ) ( 2112 1152 -40 ) bricks/c_sr_mr5 1 0 90 1 1 0 0 0 +( 2112 1280 -48 ) ( 2112 1280 -64 ) ( 2112 1152 -40 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( 2112 1280 -48 ) ( 1696 1280 -48 ) ( 1696 1280 -64 ) bricks/c_sr_mr5 1 0 90 1 1 0 0 0 +( 2096 1808 -64 ) ( 2096 1824 -64 ) ( 2096 1816 -24 ) bricks/c_sr_mr5 0 -12 349 1 1 0 0 0 +} +// brush 1044 +{ +( 2144 1408 -96 ) ( 1728 1408 -96 ) ( 1728 1280 -64 ) bricks/c_sr_mr5 127 30 90 1 1 0 0 0 +( 1728 1408 -80 ) ( 2144 1408 -80 ) ( 2144 1280 -48 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( 1696 1280 -48 ) ( 2112 1280 -48 ) ( 2112 1280 -64 ) bricks/c_sr_mr5 1 0 90 1 1 0 0 0 +( 2112 1408 -80 ) ( 2112 1408 -96 ) ( 2112 1280 -64 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( 2112 1408 -80 ) ( 1696 1408 -80 ) ( 1696 1408 -96 ) bricks/c_sr_mr5 1 0 90 1 1 0 0 0 +( 2096 1808 -96 ) ( 2096 1824 -96 ) ( 2096 1816 -48 ) bricks/c_sr_mr5 0 -9 346 1 1 0 0 0 +} +// brush 1045 +{ +( 2144 1728 -192 ) ( 1728 1728 -192 ) ( 1728 1408 -96 ) bricks/c_sr_mr5 127 30 90 1 1 0 0 0 +( 1728 1728 -176 ) ( 2144 1728 -176 ) ( 2144 1408 -80 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( 1696 1408 -80 ) ( 2112 1408 -80 ) ( 2112 1408 -96 ) bricks/c_sr_mr5 1 0 90 1 1 0 0 0 +( 2112 1728 -172 ) ( 2112 1728 -188 ) ( 2112 1408 -96 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( 2112 1728 -176 ) ( 1696 1728 -176 ) ( 1696 1728 -192 ) bricks/c_sr_mr5 1 0 90 1 1 0 0 0 +( 2096 1808 -192 ) ( 2096 1824 -192 ) ( 2096 1816 -80 ) bricks/c_sr_mr5 0 0 343 1 1 0 0 0 +} +// brush 1046 +{ +( 2144 1856 -224 ) ( 1728 1856 -224 ) ( 1728 1728 -192 ) bricks/c_sr_mr5 127 30 90 1 1 0 0 0 +( 1728 1856 -208 ) ( 2144 1856 -208 ) ( 2144 1728 -176 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( 1696 1728 -176 ) ( 2112 1728 -176 ) ( 2112 1728 -192 ) bricks/c_sr_mr5 1 0 90 1 1 0 0 0 +( 2112 1856 -208 ) ( 2112 1856 -224 ) ( 2112 1728 -192 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( 2112 1856 -208 ) ( 1696 1856 -208 ) ( 1696 1856 -224 ) bricks/c_sr_mr5 1 0 90 1 1 0 0 0 +( 2096 1808 -224 ) ( 2096 1824 -224 ) ( 2096 1816 -176 ) bricks/c_sr_mr5 0 7 346 1 1 0 0 0 +} +// brush 1047 +{ +( 2144 1984 -248 ) ( 1728 1984 -248 ) ( 1728 1856 -224 ) bricks/c_sr_mr5 127 30 90 1 1 0 0 0 +( 1728 1984 -232 ) ( 2144 1984 -232 ) ( 2144 1856 -208 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( 1696 1856 -208 ) ( 2112 1856 -208 ) ( 2112 1856 -224 ) bricks/c_sr_mr5 1 0 90 1 1 0 0 0 +( 2112 1984 -232 ) ( 2112 1984 -248 ) ( 2112 1856 -224 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( 2112 1984 -232 ) ( 1696 1984 -232 ) ( 1696 1984 -248 ) bricks/c_sr_mr5 1 0 90 1 1 0 0 0 +( 2096 1808 -248 ) ( 2096 1824 -248 ) ( 2096 1816 -208 ) bricks/c_sr_mr5 0 6 349 1 1 0 0 0 +} +// brush 1048 +{ +( 2144 2112 -264 ) ( 1728 2112 -264 ) ( 1728 1984 -248 ) bricks/c_sr_mr5 127 30 90 1 1 0 0 0 +( 1728 2112 -248 ) ( 2144 2112 -248 ) ( 2144 1984 -232 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( 1696 1984 -232 ) ( 2112 1984 -232 ) ( 2112 1984 -248 ) bricks/c_sr_mr5 1 0 90 1 1 0 0 0 +( 2112 2112 -248 ) ( 2112 2112 -264 ) ( 2112 1984 -248 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( 2112 2112 -248 ) ( 1696 2112 -248 ) ( 1696 2112 -264 ) bricks/c_sr_mr5 1 0 90 1 1 0 0 0 +( 2096 1808 -264 ) ( 2096 1824 -264 ) ( 2096 1816 -232 ) bricks/c_sr_mr5 0 -5 353 1 1 0 0 0 +} +// brush 1049 +{ +( 2144 2240 -272 ) ( 1728 2240 -272 ) ( 1728 2112 -264 ) bricks/c_sr_mr5 127 30 90 1 1 0 0 0 +( 1728 2240 -256 ) ( 2144 2240 -256 ) ( 2144 2112 -248 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( 1696 2112 -248 ) ( 2112 2112 -248 ) ( 2112 2112 -264 ) bricks/c_sr_mr5 1 0 90 1 1 0 0 0 +( 2112 2240 -256 ) ( 2112 2240 -272 ) ( 2112 2112 -264 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( 2112 2240 -256 ) ( 1696 2240 -256 ) ( 1696 2240 -272 ) bricks/c_sr_mr5 1 0 90 1 1 0 0 0 +( 2096 1808 -272 ) ( 2096 1824 -272 ) ( 2096 1816 -248 ) bricks/c_sr_mr5 0 6 357 1 1 0 0 0 +} +// brush 1050 +{ +( 2144 2240 -272 ) ( 1728 2240 -272 ) ( 1728 2112 -264 ) bricks/c_sr_mr5 -63 -1 -90 1 1 0 0 0 +( 1728 2240 -256 ) ( 2144 2240 -256 ) ( 2144 2112 -248 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( 1696 2112 -248 ) ( 2112 2112 -248 ) ( 2112 2112 -264 ) bricks/c_sr_mr5 -63 -2 -90 1 1 0 0 0 +( 2112 2240 -256 ) ( 1696 2240 -256 ) ( 1696 2240 -272 ) bricks/c_sr_mr5 -63 -2 -90 1 1 0 0 0 +( 1728 2240 -272 ) ( 1728 2240 -256 ) ( 1728 2112 -248 ) bricks/c_sr_mr5 -66 -3 -90 1 1 0 0 0 +( 1744 824 -272 ) ( 1744 768 -272 ) ( 1744 796 -248 ) bricks/c_sr_mr5 0 6 357 1 1 0 0 0 +} +// brush 1051 +{ +( 2144 2112 -264 ) ( 1728 2112 -264 ) ( 1728 1984 -248 ) bricks/c_sr_mr5 -63 -1 -90 1 1 0 0 0 +( 1728 2112 -248 ) ( 2144 2112 -248 ) ( 2144 1984 -232 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( 1696 1984 -232 ) ( 2112 1984 -232 ) ( 2112 1984 -248 ) bricks/c_sr_mr5 -63 -2 -90 1 1 0 0 0 +( 2112 2112 -248 ) ( 1696 2112 -248 ) ( 1696 2112 -264 ) bricks/c_sr_mr5 -63 -2 -90 1 1 0 0 0 +( 1728 2112 -264 ) ( 1728 2112 -248 ) ( 1728 1984 -232 ) bricks/c_sr_mr5 -66 -3 -90 1 1 0 0 0 +( 1744 824 -264 ) ( 1744 768 -264 ) ( 1744 796 -232 ) bricks/c_sr_mr5 0 -5 353 1 1 0 0 0 +} +// brush 1052 +{ +( 2144 1984 -248 ) ( 1728 1984 -248 ) ( 1728 1856 -224 ) bricks/c_sr_mr5 -63 -1 -90 1 1 0 0 0 +( 1728 1984 -232 ) ( 2144 1984 -232 ) ( 2144 1856 -208 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( 1696 1856 -208 ) ( 2112 1856 -208 ) ( 2112 1856 -224 ) bricks/c_sr_mr5 -63 -2 -90 1 1 0 0 0 +( 2112 1984 -232 ) ( 1696 1984 -232 ) ( 1696 1984 -248 ) bricks/c_sr_mr5 -63 -2 -90 1 1 0 0 0 +( 1728 1984 -248 ) ( 1728 1984 -232 ) ( 1728 1856 -208 ) bricks/c_sr_mr5 -66 -3 -90 1 1 0 0 0 +( 1744 824 -248 ) ( 1744 768 -248 ) ( 1744 796 -208 ) bricks/c_sr_mr5 0 6 349 1 1 0 0 0 +} +// brush 1053 +{ +( 2144 1856 -224 ) ( 1728 1856 -224 ) ( 1728 1728 -192 ) bricks/c_sr_mr5 -63 -1 -90 1 1 0 0 0 +( 1728 1856 -208 ) ( 2144 1856 -208 ) ( 2144 1728 -176 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( 1696 1728 -176 ) ( 2112 1728 -176 ) ( 2112 1728 -192 ) bricks/c_sr_mr5 -63 -2 -90 1 1 0 0 0 +( 2112 1856 -208 ) ( 1696 1856 -208 ) ( 1696 1856 -224 ) bricks/c_sr_mr5 -63 -2 -90 1 1 0 0 0 +( 1728 1856 -224 ) ( 1728 1856 -208 ) ( 1728 1728 -176 ) bricks/c_sr_mr5 -66 -3 -90 1 1 0 0 0 +( 1744 824 -224 ) ( 1744 768 -224 ) ( 1744 796 -176 ) bricks/c_sr_mr5 0 7 346 1 1 0 0 0 +} +// brush 1054 +{ +( 2144 1728 -192 ) ( 1728 1728 -192 ) ( 1728 1408 -96 ) bricks/c_sr_mr5 -63 -1 -90 1 1 0 0 0 +( 1728 1728 -176 ) ( 2144 1728 -176 ) ( 2144 1408 -80 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( 1696 1408 -80 ) ( 2112 1408 -80 ) ( 2112 1408 -96 ) bricks/c_sr_mr5 -63 -2 -90 1 1 0 0 0 +( 2112 1728 -176 ) ( 1696 1728 -176 ) ( 1696 1728 -192 ) bricks/c_sr_mr5 -63 -2 -90 1 1 0 0 0 +( 1728 1728 -188 ) ( 1728 1728 -172 ) ( 1728 1408 -80 ) bricks/c_sr_mr5 -66 -3 -90 1 1 0 0 0 +( 1744 824 -192 ) ( 1744 768 -192 ) ( 1744 796 -80 ) bricks/c_sr_mr5 0 0 343 1 1 0 0 0 +} +// brush 1055 +{ +( 2144 1408 -96 ) ( 1728 1408 -96 ) ( 1728 1280 -64 ) bricks/c_sr_mr5 -63 -1 -90 1 1 0 0 0 +( 1728 1408 -80 ) ( 2144 1408 -80 ) ( 2144 1280 -48 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( 1696 1280 -48 ) ( 2112 1280 -48 ) ( 2112 1280 -64 ) bricks/c_sr_mr5 -63 -2 -90 1 1 0 0 0 +( 2112 1408 -80 ) ( 1696 1408 -80 ) ( 1696 1408 -96 ) bricks/c_sr_mr5 -63 -2 -90 1 1 0 0 0 +( 1728 1408 -96 ) ( 1728 1408 -80 ) ( 1728 1280 -48 ) bricks/c_sr_mr5 -66 -3 -90 1 1 0 0 0 +( 1744 824 -96 ) ( 1744 768 -96 ) ( 1744 796 -48 ) bricks/c_sr_mr5 0 -9 346 1 1 0 0 0 +} +// brush 1056 +{ +( 2144 1280 -64 ) ( 1728 1280 -64 ) ( 1728 1152 -40 ) bricks/c_sr_mr5 -63 -1 -90 1 1 0 0 0 +( 1728 1280 -48 ) ( 2144 1280 -48 ) ( 2144 1152 -24 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( 1696 1152 -24 ) ( 2112 1152 -24 ) ( 2112 1152 -40 ) bricks/c_sr_mr5 -63 -2 -90 1 1 0 0 0 +( 2112 1280 -48 ) ( 1696 1280 -48 ) ( 1696 1280 -64 ) bricks/c_sr_mr5 -63 -2 -90 1 1 0 0 0 +( 1728 1280 -64 ) ( 1728 1280 -48 ) ( 1728 1152 -24 ) bricks/c_sr_mr5 -66 -3 -90 1 1 0 0 0 +( 1744 824 -64 ) ( 1744 768 -64 ) ( 1744 796 -24 ) bricks/c_sr_mr5 0 -12 349 1 1 0 0 0 +} +// brush 1057 +{ +( 2144 1152 -40 ) ( 1728 1152 -40 ) ( 1728 1024 -24 ) bricks/c_sr_mr5 -63 -1 -90 1 1 0 0 0 +( 1728 1152 -24 ) ( 2144 1152 -24 ) ( 2144 1024 -8 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( 1696 1024 -8 ) ( 2112 1024 -8 ) ( 2112 1024 -24 ) bricks/c_sr_mr5 -63 -2 -90 1 1 0 0 0 +( 2112 1152 -24 ) ( 1696 1152 -24 ) ( 1696 1152 -40 ) bricks/c_sr_mr5 -63 -2 -90 1 1 0 0 0 +( 1728 1152 -40 ) ( 1728 1152 -24 ) ( 1728 1024 -8 ) bricks/c_sr_mr5 -66 -3 -90 1 1 0 0 0 +( 1744 824 -40 ) ( 1744 768 -40 ) ( 1744 796 -8 ) bricks/c_sr_mr5 0 4 353 1 1 0 0 0 +} +// brush 1058 +{ +( 2144 1024 -24 ) ( 1728 1024 -24 ) ( 1728 896 -16 ) bricks/c_sr_mr5 -63 -1 -90 1 1 0 0 0 +( 1728 1024 -8 ) ( 2144 1024 -8 ) ( 2144 896 0 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( 1696 896 0 ) ( 2112 896 0 ) ( 2112 896 -16 ) bricks/c_sr_mr5 -63 -2 -90 1 1 0 0 0 +( 2112 1024 -8 ) ( 1696 1024 -8 ) ( 1696 1024 -24 ) bricks/c_sr_mr5 -63 -2 -90 1 1 0 0 0 +( 1728 1024 -24 ) ( 1728 1024 -8 ) ( 1728 896 0 ) bricks/c_sr_mr5 -66 -3 -90 1 1 0 0 0 +( 1744 824 -24 ) ( 1744 768 -24 ) ( 1744 796 0 ) bricks/c_sr_mr5 0 14 356 1 1 0 0 0 +} +// brush 1059 +{ +( 2128 2240 -288 ) ( 1712 2240 -288 ) ( 1712 2112 -280 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 2240 -272 ) ( 2128 2240 -272 ) ( 2128 2112 -264 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 2112 -264 ) ( 2128 2112 -264 ) ( 2128 2112 -280 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 2240 -272 ) ( 2128 2240 -288 ) ( 2128 2112 -280 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 2240 -272 ) ( 1712 2240 -272 ) ( 1712 2240 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 2240 -288 ) ( 1712 2240 -272 ) ( 1712 2112 -264 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1060 +{ +( 2128 2112 -280 ) ( 1712 2112 -280 ) ( 1712 1984 -264 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 2112 -264 ) ( 2128 2112 -264 ) ( 2128 1984 -248 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1984 -248 ) ( 2128 1984 -248 ) ( 2128 1984 -264 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 2112 -264 ) ( 2128 2112 -280 ) ( 2128 1984 -264 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 2112 -264 ) ( 1712 2112 -264 ) ( 1712 2112 -280 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 2112 -280 ) ( 1712 2112 -264 ) ( 1712 1984 -248 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1061 +{ +( 2128 1984 -264 ) ( 1712 1984 -264 ) ( 1712 1856 -240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1984 -248 ) ( 2128 1984 -248 ) ( 2128 1856 -224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1856 -224 ) ( 2128 1856 -224 ) ( 2128 1856 -240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 1984 -248 ) ( 2128 1984 -264 ) ( 2128 1856 -240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 1984 -248 ) ( 1712 1984 -248 ) ( 1712 1984 -264 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1984 -264 ) ( 1712 1984 -248 ) ( 1712 1856 -224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1062 +{ +( 2128 1856 -240 ) ( 1712 1856 -240 ) ( 1712 1728 -208 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1856 -224 ) ( 2128 1856 -224 ) ( 2128 1728 -192 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1728 -192 ) ( 2128 1728 -192 ) ( 2128 1728 -208 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 1856 -224 ) ( 2128 1856 -240 ) ( 2128 1728 -208 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 1856 -224 ) ( 1712 1856 -224 ) ( 1712 1856 -240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1856 -240 ) ( 1712 1856 -224 ) ( 1712 1728 -192 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1063 +{ +( 2128 1728 -208 ) ( 1712 1728 -208 ) ( 1712 1408 -112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1728 -192 ) ( 2128 1728 -192 ) ( 2128 1408 -96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1408 -96 ) ( 2128 1408 -96 ) ( 2128 1408 -112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 1728 -188 ) ( 2128 1728 -204 ) ( 2128 1408 -112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 1728 -192 ) ( 1712 1728 -192 ) ( 1712 1728 -208 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1728 -204 ) ( 1712 1728 -188 ) ( 1712 1408 -96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1064 +{ +( 2128 1408 -112 ) ( 1712 1408 -112 ) ( 1712 1280 -80 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1408 -96 ) ( 2128 1408 -96 ) ( 2128 1280 -64 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1280 -64 ) ( 2128 1280 -64 ) ( 2128 1280 -80 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 1408 -96 ) ( 2128 1408 -112 ) ( 2128 1280 -80 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 1408 -96 ) ( 1712 1408 -96 ) ( 1712 1408 -112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1408 -112 ) ( 1712 1408 -96 ) ( 1712 1280 -64 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1065 +{ +( 2128 1280 -80 ) ( 1712 1280 -80 ) ( 1712 1152 -56 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1280 -64 ) ( 2128 1280 -64 ) ( 2128 1152 -40 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1152 -40 ) ( 2128 1152 -40 ) ( 2128 1152 -56 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 1280 -64 ) ( 2128 1280 -80 ) ( 2128 1152 -56 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 1280 -64 ) ( 1712 1280 -64 ) ( 1712 1280 -80 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1280 -80 ) ( 1712 1280 -64 ) ( 1712 1152 -40 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1066 +{ +( 2128 1152 -56 ) ( 1712 1152 -56 ) ( 1712 1024 -40 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1152 -40 ) ( 2128 1152 -40 ) ( 2128 1024 -24 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1024 -24 ) ( 2128 1024 -24 ) ( 2128 1024 -40 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 1152 -40 ) ( 2128 1152 -56 ) ( 2128 1024 -40 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 1152 -40 ) ( 1712 1152 -40 ) ( 1712 1152 -56 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1152 -56 ) ( 1712 1152 -40 ) ( 1712 1024 -24 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1067 +{ +( 2128 1024 -40 ) ( 1712 1024 -40 ) ( 1712 896 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1024 -24 ) ( 2128 1024 -24 ) ( 2128 896 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 896 -16 ) ( 2128 896 -16 ) ( 2128 896 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 1024 -24 ) ( 2128 1024 -40 ) ( 2128 896 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 1024 -24 ) ( 1712 1024 -24 ) ( 1712 1024 -40 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 1024 -40 ) ( 1712 1024 -24 ) ( 1712 896 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1068 +{ +( 1728 2240 -64 ) ( 1760 2240 -64 ) ( 1760 2112 -56 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2240 -96 ) ( 1728 2240 -64 ) ( 1728 2112 -56 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 2240 -64 ) ( 1728 2240 -96 ) ( 1728 2112 -88 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1744 2112 -88 ) ( 1728 2112 -88 ) ( 1736 2112 -56 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2176 -96 ) ( 1760 2176 -96 ) ( 1744 2176 -56 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 1069 +{ +( 1728 2240 -64 ) ( 1760 2240 -64 ) ( 1760 2112 -56 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 2240 -96 ) ( 1728 2240 -64 ) ( 1728 2112 -56 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 2240 -64 ) ( 1728 2240 -96 ) ( 1728 2112 -88 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1744 2240 -64 ) ( 1728 2240 -96 ) ( 1760 2240 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 2176 -96 ) ( 1728 2176 -96 ) ( 1744 2176 -56 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1736 2240 -96 ) ( 1736 2224 -96 ) ( 1736 2232 -60 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 1070 +{ +( 1728 2240 -64 ) ( 1760 2240 -64 ) ( 1760 2112 -56 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 1760 2240 -64 ) ( 1728 2240 -96 ) ( 1728 2112 -88 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 1744 2240 -64 ) ( 1728 2240 -96 ) ( 1760 2240 -96 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 1760 2176 -96 ) ( 1728 2176 -96 ) ( 1744 2176 -56 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 1736 2224 -96 ) ( 1736 2240 -96 ) ( 1736 2232 -60 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 1752 2240 -88 ) ( 1752 2224 -88 ) ( 1752 2232 -60 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 1071 +{ +( 1728 2240 -64 ) ( 1760 2240 -64 ) ( 1760 2112 -56 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 2240 -64 ) ( 1728 2240 -96 ) ( 1728 2112 -88 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1744 2240 -64 ) ( 1728 2240 -96 ) ( 1760 2240 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 2176 -96 ) ( 1728 2176 -96 ) ( 1744 2176 -56 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1752 2224 -88 ) ( 1752 2240 -88 ) ( 1752 2232 -60 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 1072 +{ +( 1728 1984 -40 ) ( 1760 1984 -40 ) ( 1760 1856 -16 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 1984 -72 ) ( 1728 1984 -40 ) ( 1728 1856 -16 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 1984 -40 ) ( 1728 1984 -72 ) ( 1728 1856 -48 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1744 1984 -40 ) ( 1728 1984 -72 ) ( 1760 1984 -72 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1752 1920 -72 ) ( 1728 1920 -72 ) ( 1740 1920 -16 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 1073 +{ +( 1728 1984 -40 ) ( 1760 1984 -40 ) ( 1760 1856 -16 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 1984 -72 ) ( 1728 1984 -40 ) ( 1728 1856 -16 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 1984 -40 ) ( 1728 1984 -72 ) ( 1728 1856 -48 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1744 1856 -48 ) ( 1728 1856 -48 ) ( 1736 1856 -16 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 1920 -72 ) ( 1752 1920 -72 ) ( 1740 1920 -16 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1736 1920 -60 ) ( 1736 1912 -60 ) ( 1736 1916 -16 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 1074 +{ +( 1728 1984 -40 ) ( 1760 1984 -40 ) ( 1760 1856 -16 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 1760 1984 -40 ) ( 1728 1984 -72 ) ( 1728 1856 -48 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 1744 1856 -48 ) ( 1728 1856 -48 ) ( 1736 1856 -16 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 1728 1920 -72 ) ( 1752 1920 -72 ) ( 1740 1920 -16 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 1736 1912 -60 ) ( 1736 1920 -60 ) ( 1736 1916 -16 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 1752 1920 -52 ) ( 1752 1912 -52 ) ( 1752 1916 -16 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 1075 +{ +( 1728 1984 -40 ) ( 1760 1984 -40 ) ( 1760 1856 -16 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 1984 -40 ) ( 1728 1984 -72 ) ( 1728 1856 -48 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1744 1856 -48 ) ( 1728 1856 -48 ) ( 1736 1856 -16 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 1920 -72 ) ( 1752 1920 -72 ) ( 1740 1920 -16 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1752 1912 -52 ) ( 1752 1920 -52 ) ( 1752 1916 -16 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 1076 +{ +( 1728 1728 16 ) ( 1760 1728 16 ) ( 1760 1408 112 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 1728 -16 ) ( 1728 1728 16 ) ( 1728 1408 112 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 1728 16 ) ( 1728 1728 -16 ) ( 1728 1408 80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1744 1728 16 ) ( 1728 1728 -16 ) ( 1760 1728 -16 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 1600 -16 ) ( 1728 1600 -16 ) ( 1744 1600 112 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 1077 +{ +( 1728 1728 16 ) ( 1760 1728 16 ) ( 1760 1408 112 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 1728 -16 ) ( 1728 1728 16 ) ( 1728 1408 112 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 1728 16 ) ( 1728 1728 -16 ) ( 1728 1408 80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2088 1408 -16 ) ( 2048 1408 -16 ) ( 2068 1408 112 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1720 1536 22 ) ( 1760 1536 22 ) ( 1740 1536 112 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 1078 +{ +( 1728 1728 16 ) ( 1760 1728 16 ) ( 1760 1408 112 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 1728 -16 ) ( 1728 1728 16 ) ( 1728 1408 112 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 1728 16 ) ( 1728 1728 -16 ) ( 1728 1408 80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 1600 -16 ) ( 1760 1600 -16 ) ( 1744 1600 112 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 1536 22 ) ( 1720 1536 22 ) ( 1740 1536 112 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1736 1600 22 ) ( 1736 1584 22 ) ( 1736 1592 74 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 1079 +{ +( 1728 1728 16 ) ( 1760 1728 16 ) ( 1760 1408 112 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 1760 1728 16 ) ( 1728 1728 -16 ) ( 1728 1408 80 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 1728 1600 -16 ) ( 1760 1600 -16 ) ( 1744 1600 112 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 1760 1536 22 ) ( 1720 1536 22 ) ( 1740 1536 112 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 1736 1584 22 ) ( 1736 1600 22 ) ( 1736 1592 74 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 1752 1600 30 ) ( 1752 1584 30 ) ( 1752 1592 74 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 1080 +{ +( 1728 1728 16 ) ( 1760 1728 16 ) ( 1760 1408 112 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 1728 16 ) ( 1728 1728 -16 ) ( 1728 1408 80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 1600 -16 ) ( 1760 1600 -16 ) ( 1744 1600 112 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 1536 22 ) ( 1720 1536 22 ) ( 1740 1536 112 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1752 1584 30 ) ( 1752 1600 30 ) ( 1752 1592 74 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 1081 +{ +( 1728 1280 144 ) ( 1760 1280 144 ) ( 1760 1152 168 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 1280 112 ) ( 1728 1280 144 ) ( 1728 1152 168 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 1280 144 ) ( 1728 1280 112 ) ( 1728 1152 136 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1744 1152 136 ) ( 1728 1152 136 ) ( 1736 1152 168 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 1216 112 ) ( 1760 1216 112 ) ( 1744 1216 168 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 1082 +{ +( 1728 1280 144 ) ( 1760 1280 144 ) ( 1760 1152 168 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 1280 112 ) ( 1728 1280 144 ) ( 1728 1152 168 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 1280 144 ) ( 1728 1280 112 ) ( 1728 1152 136 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1744 1280 144 ) ( 1728 1280 112 ) ( 1760 1280 112 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 1216 112 ) ( 1728 1216 112 ) ( 1744 1216 168 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1736 1280 112 ) ( 1736 1264 112 ) ( 1736 1272 156 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 1083 +{ +( 1728 1280 144 ) ( 1760 1280 144 ) ( 1760 1152 168 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 1280 144 ) ( 1728 1280 112 ) ( 1728 1152 136 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1744 1280 144 ) ( 1728 1280 112 ) ( 1760 1280 112 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 1216 112 ) ( 1728 1216 112 ) ( 1744 1216 168 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1752 1216 120 ) ( 1752 1232 120 ) ( 1752 1224 156 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 1084 +{ +( 1728 1280 144 ) ( 1760 1280 144 ) ( 1760 1152 168 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 1760 1280 144 ) ( 1728 1280 112 ) ( 1728 1152 136 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 1744 1280 144 ) ( 1728 1280 112 ) ( 1760 1280 112 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 1760 1216 112 ) ( 1728 1216 112 ) ( 1744 1216 168 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 1736 1264 112 ) ( 1736 1280 112 ) ( 1736 1272 156 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 1752 1232 120 ) ( 1752 1216 120 ) ( 1752 1224 156 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 1085 +{ +( 1728 1024 184 ) ( 1760 1024 184 ) ( 1760 896 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 1024 152 ) ( 1728 1024 184 ) ( 1728 896 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 1024 184 ) ( 1728 1024 152 ) ( 1728 896 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1744 1024 184 ) ( 1728 1024 152 ) ( 1760 1024 152 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1744 960 152 ) ( 1736 960 152 ) ( 1740 960 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 1086 +{ +( 1728 1024 184 ) ( 1760 1024 184 ) ( 1760 896 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1728 1024 152 ) ( 1728 1024 184 ) ( 1728 896 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 1024 184 ) ( 1728 1024 152 ) ( 1728 896 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1744 896 160 ) ( 1728 896 160 ) ( 1736 896 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1736 960 152 ) ( 1744 960 152 ) ( 1740 960 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1736 960 156 ) ( 1736 944 156 ) ( 1736 952 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 1087 +{ +( 1728 1024 184 ) ( 1760 1024 184 ) ( 1760 896 192 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 1760 1024 184 ) ( 1728 1024 152 ) ( 1728 896 160 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 1744 896 160 ) ( 1728 896 160 ) ( 1736 896 192 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 1736 960 152 ) ( 1744 960 152 ) ( 1740 960 192 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 1736 944 156 ) ( 1736 960 156 ) ( 1736 952 192 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 1752 960 164 ) ( 1752 944 164 ) ( 1752 952 192 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 1088 +{ +( 1728 1024 184 ) ( 1760 1024 184 ) ( 1760 896 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1760 1024 184 ) ( 1728 1024 152 ) ( 1728 896 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1744 896 160 ) ( 1728 896 160 ) ( 1736 896 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1736 960 152 ) ( 1744 960 152 ) ( 1740 960 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1752 944 164 ) ( 1752 960 164 ) ( 1752 952 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 1089 +{ +( 2080 1024 184 ) ( 2112 1024 184 ) ( 2112 896 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1024 184 ) ( 2112 1024 152 ) ( 2112 896 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1024 152 ) ( 2080 1024 184 ) ( 2080 896 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 1024 152 ) ( 2112 1024 152 ) ( 2096 1024 184 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 960 152 ) ( 2080 960 152 ) ( 2096 960 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1090 +{ +( 2080 1024 184 ) ( 2112 1024 184 ) ( 2112 896 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1024 152 ) ( 2080 1024 184 ) ( 2080 896 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 896 160 ) ( 2080 896 160 ) ( 2092 896 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 960 152 ) ( 2112 960 152 ) ( 2096 960 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2088 952 156 ) ( 2088 936 156 ) ( 2088 944 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1091 +{ +( 2080 1024 184 ) ( 2112 1024 184 ) ( 2112 896 192 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 2112 1024 152 ) ( 2080 1024 184 ) ( 2080 896 192 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 2104 896 160 ) ( 2080 896 160 ) ( 2092 896 192 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 2080 960 152 ) ( 2112 960 152 ) ( 2096 960 192 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 2088 936 156 ) ( 2088 952 156 ) ( 2088 944 192 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 2104 960 156 ) ( 2104 936 156 ) ( 2104 948 192 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 1092 +{ +( 2080 1024 184 ) ( 2112 1024 184 ) ( 2112 896 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1024 184 ) ( 2112 1024 152 ) ( 2112 896 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1024 152 ) ( 2080 1024 184 ) ( 2080 896 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 896 160 ) ( 2080 896 160 ) ( 2092 896 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 960 152 ) ( 2112 960 152 ) ( 2096 960 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 936 156 ) ( 2104 960 156 ) ( 2104 948 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1093 +{ +( 2080 1280 144 ) ( 2112 1280 144 ) ( 2112 1152 168 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1280 144 ) ( 2112 1280 112 ) ( 2112 1152 136 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1280 112 ) ( 2080 1280 144 ) ( 2080 1152 168 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 1152 136 ) ( 2080 1152 136 ) ( 2092 1152 168 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 1216 112 ) ( 2096 1216 112 ) ( 2088 1216 168 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1094 +{ +( 2080 1280 144 ) ( 2112 1280 144 ) ( 2112 1152 168 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1280 144 ) ( 2112 1280 112 ) ( 2112 1152 136 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1280 112 ) ( 2080 1280 144 ) ( 2080 1152 168 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 1280 112 ) ( 2112 1280 112 ) ( 2096 1280 144 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2096 1216 112 ) ( 2080 1216 112 ) ( 2088 1216 168 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 1256 112 ) ( 2104 1272 112 ) ( 2104 1264 156 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1095 +{ +( 2080 1280 144 ) ( 2112 1280 144 ) ( 2112 1152 168 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1280 112 ) ( 2080 1280 144 ) ( 2080 1152 168 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 1280 112 ) ( 2112 1280 112 ) ( 2096 1280 144 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2096 1216 112 ) ( 2080 1216 112 ) ( 2088 1216 168 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2088 1280 120 ) ( 2088 1256 120 ) ( 2088 1268 156 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1096 +{ +( 2080 1280 144 ) ( 2112 1280 144 ) ( 2112 1152 168 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 2112 1280 112 ) ( 2080 1280 144 ) ( 2080 1152 168 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 2080 1280 112 ) ( 2112 1280 112 ) ( 2096 1280 144 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 2096 1216 112 ) ( 2080 1216 112 ) ( 2088 1216 168 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 2104 1272 112 ) ( 2104 1256 112 ) ( 2104 1264 156 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 2088 1256 120 ) ( 2088 1280 120 ) ( 2088 1268 156 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 1097 +{ +( 2080 1728 16 ) ( 2112 1728 16 ) ( 2112 1408 112 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1728 16 ) ( 2112 1728 -16 ) ( 2112 1408 80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1728 -16 ) ( 2080 1728 16 ) ( 2080 1408 112 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 1728 -16 ) ( 2112 1728 -16 ) ( 2096 1728 16 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1600 -16 ) ( 2080 1600 -16 ) ( 2096 1600 112 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1098 +{ +( 2080 1728 16 ) ( 2112 1728 16 ) ( 2112 1408 112 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1728 16 ) ( 2112 1728 -16 ) ( 2112 1408 80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1728 -16 ) ( 2080 1728 16 ) ( 2080 1408 112 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2088 1408 -16 ) ( 2048 1408 -16 ) ( 2068 1408 112 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 1536 22 ) ( 2104 1536 22 ) ( 2092 1536 112 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1099 +{ +( 2080 1728 16 ) ( 2112 1728 16 ) ( 2112 1408 112 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1728 -16 ) ( 2080 1728 16 ) ( 2080 1408 112 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 1600 -16 ) ( 2112 1600 -16 ) ( 2096 1600 112 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 1536 22 ) ( 2080 1536 22 ) ( 2092 1536 112 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2088 1600 22 ) ( 2088 1576 22 ) ( 2088 1588 74 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1100 +{ +( 2080 1728 16 ) ( 2112 1728 16 ) ( 2112 1408 112 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 2112 1728 -16 ) ( 2080 1728 16 ) ( 2080 1408 112 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 2080 1600 -16 ) ( 2112 1600 -16 ) ( 2096 1600 112 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 2104 1536 22 ) ( 2080 1536 22 ) ( 2092 1536 112 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 2088 1576 22 ) ( 2088 1600 22 ) ( 2088 1588 74 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 2104 1600 22 ) ( 2104 1584 22 ) ( 2104 1592 74 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 1101 +{ +( 2080 1728 16 ) ( 2112 1728 16 ) ( 2112 1408 112 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1728 16 ) ( 2112 1728 -16 ) ( 2112 1408 80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1728 -16 ) ( 2080 1728 16 ) ( 2080 1408 112 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 1600 -16 ) ( 2112 1600 -16 ) ( 2096 1600 112 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 1536 22 ) ( 2080 1536 22 ) ( 2092 1536 112 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 1584 22 ) ( 2104 1600 22 ) ( 2104 1592 74 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1102 +{ +( 2080 1984 -40 ) ( 2112 1984 -40 ) ( 2112 1856 -16 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1984 -40 ) ( 2112 1984 -72 ) ( 2112 1856 -48 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1984 -72 ) ( 2080 1984 -40 ) ( 2080 1856 -16 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 1984 -88 ) ( 2112 1984 -88 ) ( 2096 1984 -56 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2088 1920 -72 ) ( 2080 1920 -72 ) ( 2084 1920 -16 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1103 +{ +( 2080 1984 -40 ) ( 2112 1984 -40 ) ( 2112 1856 -16 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1984 -72 ) ( 2080 1984 -40 ) ( 2080 1856 -16 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 1856 -48 ) ( 2080 1856 -48 ) ( 2092 1856 -16 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 1920 -72 ) ( 2088 1920 -72 ) ( 2084 1920 -16 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2088 1920 -60 ) ( 2088 1904 -60 ) ( 2088 1912 -16 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1104 +{ +( 2080 1984 -40 ) ( 2112 1984 -40 ) ( 2112 1856 -16 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 2112 1984 -72 ) ( 2080 1984 -40 ) ( 2080 1856 -16 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 2104 1856 -48 ) ( 2080 1856 -48 ) ( 2092 1856 -16 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 2080 1920 -72 ) ( 2088 1920 -72 ) ( 2084 1920 -16 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 2088 1904 -60 ) ( 2088 1920 -60 ) ( 2088 1912 -16 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 2104 1920 -60 ) ( 2104 1904 -60 ) ( 2104 1912 -16 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 1105 +{ +( 2080 1984 -40 ) ( 2112 1984 -40 ) ( 2112 1856 -16 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1984 -40 ) ( 2112 1984 -72 ) ( 2112 1856 -48 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 1984 -72 ) ( 2080 1984 -40 ) ( 2080 1856 -16 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 1856 -48 ) ( 2080 1856 -48 ) ( 2092 1856 -16 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 1920 -72 ) ( 2088 1920 -72 ) ( 2084 1920 -16 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 1904 -60 ) ( 2104 1920 -60 ) ( 2104 1912 -16 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1106 +{ +( 2080 2240 -64 ) ( 2112 2240 -64 ) ( 2112 2112 -56 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 2240 -64 ) ( 2112 2240 -96 ) ( 2112 2112 -88 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 2240 -96 ) ( 2080 2240 -64 ) ( 2080 2112 -56 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 2112 -88 ) ( 2080 2112 -88 ) ( 2092 2112 -56 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 2176 -96 ) ( 2112 2176 -96 ) ( 2096 2176 -56 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1107 +{ +( 2080 2240 -64 ) ( 2112 2240 -64 ) ( 2112 2112 -56 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 2240 -96 ) ( 2080 2240 -64 ) ( 2080 2112 -56 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 2240 -112 ) ( 2112 2240 -112 ) ( 2096 2240 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 2176 -96 ) ( 2080 2176 -96 ) ( 2096 2176 -56 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2088 2240 -96 ) ( 2088 2224 -96 ) ( 2088 2232 -60 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1108 +{ +( 2080 2240 -64 ) ( 2112 2240 -64 ) ( 2112 2112 -56 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 2112 2240 -96 ) ( 2080 2240 -64 ) ( 2080 2112 -56 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 2080 2240 -112 ) ( 2112 2240 -112 ) ( 2096 2240 -80 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 2112 2176 -96 ) ( 2080 2176 -96 ) ( 2096 2176 -56 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 2088 2224 -96 ) ( 2088 2240 -96 ) ( 2088 2232 -60 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 2104 2240 -96 ) ( 2104 2224 -96 ) ( 2104 2232 -60 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 1109 +{ +( 2080 2240 -64 ) ( 2112 2240 -64 ) ( 2112 2112 -56 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 2240 -64 ) ( 2112 2240 -96 ) ( 2112 2112 -88 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 2240 -96 ) ( 2080 2240 -64 ) ( 2080 2112 -56 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2080 2240 -112 ) ( 2112 2240 -112 ) ( 2096 2240 -80 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2112 2176 -96 ) ( 2080 2176 -96 ) ( 2096 2176 -56 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2104 2224 -96 ) ( 2104 2240 -96 ) ( 2104 2232 -60 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1110 +{ +( 2128 320 -32 ) ( 2128 872 -32 ) ( 1712 872 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 872 -16 ) ( 2128 872 -16 ) ( 2128 320 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 872 -16 ) ( 1712 320 -16 ) ( 1712 320 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1712 320 -16 ) ( 2128 320 -16 ) ( 2128 320 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 320 -16 ) ( 2128 872 -16 ) ( 2128 872 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1704 896 -32 ) ( 1832 896 -32 ) ( 1768 896 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1111 +{ +( 2128 320 -16 ) ( 2128 872 -16 ) ( 1712 872 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1712 872 0 ) ( 2128 872 0 ) ( 2128 320 0 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( 2096 912 0 ) ( 2096 360 0 ) ( 2096 360 -16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( 1712 320 0 ) ( 2128 320 0 ) ( 2128 320 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2112 320 0 ) ( 2112 872 0 ) ( 2112 872 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1712 896 -16 ) ( 1840 896 -16 ) ( 1776 896 0 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1112 +{ +( 1760 320 -16 ) ( 1760 872 -16 ) ( 1344 872 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1344 872 0 ) ( 1760 872 0 ) ( 1760 320 0 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( 1728 912 0 ) ( 1728 360 0 ) ( 1728 360 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1744 278 0 ) ( 1744 278 -16 ) ( 1728 280 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1744 278 -16 ) ( 1744 278 0 ) ( 1744 896 0 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( 1712 896 -16 ) ( 1840 896 -16 ) ( 1776 896 0 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1113 +{ +( 1744 320 -16 ) ( 1744 872 -16 ) ( 1328 872 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1328 872 192 ) ( 1744 872 192 ) ( 1744 320 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1712 912 0 ) ( 1712 360 0 ) ( 1712 360 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1728 280 192 ) ( 1728 280 -16 ) ( 1712 282 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1728 280 -16 ) ( 1728 280 192 ) ( 1728 896 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1712 896 -16 ) ( 1840 896 -16 ) ( 1776 896 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1114 +{ +( 2144 320 -16 ) ( 2144 872 -16 ) ( 1728 872 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1728 872 192 ) ( 2144 872 192 ) ( 2144 320 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2112 912 0 ) ( 2112 360 0 ) ( 2112 360 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1728 320 0 ) ( 2144 320 0 ) ( 2144 320 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2128 320 0 ) ( 2128 872 0 ) ( 2128 872 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1712 896 -16 ) ( 1840 896 -16 ) ( 1776 896 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1115 +{ +( 2128 320 192 ) ( 2128 872 192 ) ( 1712 872 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 872 208 ) ( 2128 872 208 ) ( 2128 320 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 872 208 ) ( 1712 320 208 ) ( 1712 320 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1712 320 208 ) ( 2128 320 208 ) ( 2128 320 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2128 320 208 ) ( 2128 872 208 ) ( 2128 872 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1704 896 192 ) ( 1832 896 192 ) ( 1768 896 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1116 +{ +( -1534 3603 -64 ) ( -1560 3624 -96 ) ( -1640 3500 -96 ) common/li_pv_v4a -32 -10 237 1 1 0 1 7000 +( -1534 3603 -64 ) ( -1640 3500 -96 ) ( -1640 3500 -48 ) common/li_pv_v4a 3 -8 237 1 1 0 1 7000 +( -1534 3680 -64 ) ( -1534 3624 -64 ) ( -1640 3652 -64 ) common/li_pv_v4a 3 -8 237 1 1 0 1 7000 +( -1596 3516 -96 ) ( -1616 3528 -96 ) ( -1606 3522 -64 ) common/li_pv_v4a 3 -8 237 1 1 0 1 7000 +( -1580 3584 -96 ) ( -1560 3572 -96 ) ( -1570 3578 -64 ) common/li_pv_v4a 3 -8 237 1 1 0 1 7000 +( -1616 3524 -96 ) ( -1576 3584 -96 ) ( -1596 3554 -64 ) common/li_pv_v4a 3 -8 237 1 1 0 1 7000 +} +// brush 1117 +{ +( -1534 3603 -64 ) ( -1640 3500 -96 ) ( -1611 3484 -64 ) common/li_pv_v4a -32 -10 237 1 1 0 1 7000 +( -1640 3500 -48 ) ( -1640 3500 -96 ) ( -1534 3603 -64 ) common/li_pv_v4a 3 -8 237 1 1 0 1 7000 +( -1534 3680 -64 ) ( -1534 3624 -64 ) ( -1640 3652 -64 ) common/li_pv_v4a 3 -8 237 1 1 0 1 7000 +( -1596 3516 -96 ) ( -1616 3528 -96 ) ( -1606 3522 -64 ) common/li_pv_v4a 3 -8 237 1 1 0 1 7000 +( -1580 3584 -88 ) ( -1560 3572 -88 ) ( -1570 3578 -64 ) common/li_pv_v4a 3 -8 237 1 1 0 1 7000 +( -1560 3578 -88 ) ( -1600 3516 -88 ) ( -1580 3547 -64 ) common/li_pv_v4a 3 -8 237 1 1 0 1 7000 +} +// brush 1118 +{ +( -1344 3232 -64 ) ( -1712 3232 -64 ) ( -1712 3360 -64 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -1328 3174 -208 ) ( -1312 3248 -208 ) ( -1312 3248 -224 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( -1328 3252 -80 ) ( -1312 3248 -80 ) ( -1312 3248 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1344 3176 -208 ) ( -1328 3174 -208 ) ( -1328 3174 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1336 3214 -288 ) ( -1328 3252 -272 ) ( -1344 3176 -272 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( 480 3252 -272 ) ( 464 3174 -272 ) ( 496 3174 -272 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 1119 +{ +( -1312 3388 -64 ) ( -1680 3388 -64 ) ( -1680 3516 -64 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -1312 3248 -272 ) ( -1286 3308 -272 ) ( -1286 3308 -288 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( -1300 3316 -80 ) ( -1286 3308 -80 ) ( -1286 3308 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1328 3252 -64 ) ( -1312 3248 -64 ) ( -1312 3248 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1314 3284 -144 ) ( -1300 3316 -128 ) ( -1328 3252 -128 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( 480 3316 -272 ) ( 464 3248 -272 ) ( 496 3248 -272 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 1120 +{ +( -1256 3520 -64 ) ( -1624 3520 -64 ) ( -1624 3648 -64 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -1286 3308 -208 ) ( -1242 3374 -208 ) ( -1242 3374 -224 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( -1256 3384 -80 ) ( -1242 3374 -80 ) ( -1242 3374 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1300 3316 -64 ) ( -1286 3308 -64 ) ( -1286 3308 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1278 3350 -144 ) ( -1256 3384 -128 ) ( -1300 3316 -128 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( 480 3384 -272 ) ( 464 3308 -272 ) ( 496 3308 -272 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 1121 +{ +( -1596 3720 -64 ) ( -1468 3720 -64 ) ( -1468 3352 -64 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -1198 3418 -288 ) ( -1242 3374 -288 ) ( -1242 3374 -272 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( -1256 3384 -64 ) ( -1242 3374 -64 ) ( -1242 3374 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1208 3432 -80 ) ( -1198 3418 -80 ) ( -1198 3418 -64 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( -1232 3408 -128 ) ( -1256 3384 -144 ) ( -1208 3432 -144 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( 480 3432 -272 ) ( 464 3374 -272 ) ( 496 3374 -272 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 1122 +{ +( -1472 3800 -64 ) ( -1344 3800 -64 ) ( -1344 3432 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1132 3462 -224 ) ( -1198 3418 -224 ) ( -1198 3418 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1208 3432 -64 ) ( -1198 3418 -64 ) ( -1198 3418 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1140 3476 -80 ) ( -1132 3462 -80 ) ( -1132 3462 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1174 3454 -128 ) ( -1208 3432 -144 ) ( -1140 3476 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 480 3476 -272 ) ( 464 3418 -272 ) ( 496 3418 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1123 +{ +( -1340 3856 -64 ) ( -1212 3856 -64 ) ( -1212 3488 -64 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -1072 3488 -288 ) ( -1132 3462 -288 ) ( -1132 3462 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1140 3476 -64 ) ( -1132 3462 -64 ) ( -1132 3462 -80 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( -1076 3504 -80 ) ( -1072 3488 -80 ) ( -1072 3488 -64 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( -1108 3490 -128 ) ( -1140 3476 -144 ) ( -1076 3504 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 480 3504 -272 ) ( 464 3462 -272 ) ( 496 3462 -272 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 1124 +{ +( -1184 3888 -64 ) ( -1056 3888 -64 ) ( -1056 3520 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -998 3504 -224 ) ( -1072 3488 -224 ) ( -1072 3488 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1076 3504 -64 ) ( -1072 3488 -64 ) ( -1072 3488 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1000 3520 -80 ) ( -998 3504 -80 ) ( -998 3504 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1038 3512 -128 ) ( -1076 3504 -144 ) ( -1000 3520 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 480 3520 -272 ) ( 464 3488 -272 ) ( 496 3488 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1125 +{ +( -1184 3888 -64 ) ( -1056 3888 -64 ) ( -1056 3520 -64 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -1192 3872 -80 ) ( -1198 3888 -80 ) ( -1198 3888 -64 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( -1038 3920 -272 ) ( -1198 3888 -272 ) ( -1198 3888 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1036 3904 -64 ) ( -1038 3920 -64 ) ( -1038 3920 -80 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( -1114 3888 -64 ) ( -1036 3904 -80 ) ( -1192 3872 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1672 3920 -272 ) ( -1688 3872 -272 ) ( -1656 3872 -272 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 1126 +{ +( -1340 3856 -64 ) ( -1212 3856 -64 ) ( -1212 3488 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1324 3816 -80 ) ( -1332 3830 -80 ) ( -1332 3830 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1198 3888 -272 ) ( -1332 3830 -272 ) ( -1332 3830 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1192 3872 -64 ) ( -1198 3888 -64 ) ( -1198 3888 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1258 3844 -64 ) ( -1192 3872 -80 ) ( -1324 3816 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1672 3888 -272 ) ( -1688 3816 -272 ) ( -1656 3816 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1127 +{ +( -1472 3800 -64 ) ( -1344 3800 -64 ) ( -1344 3432 -64 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -1448 3736 -224 ) ( -1458 3748 -224 ) ( -1458 3748 -208 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( -1332 3830 -272 ) ( -1458 3748 -272 ) ( -1458 3748 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1324 3816 -64 ) ( -1332 3830 -64 ) ( -1332 3830 -80 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( -1386 3776 -64 ) ( -1324 3816 -80 ) ( -1448 3736 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1672 3830 -272 ) ( -1688 3736 -272 ) ( -1656 3736 -272 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 1128 +{ +( -1560 3748 -64 ) ( -1458 3748 -64 ) ( -1458 3624 -64 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -1560 3624 -64 ) ( -1448 3736 -64 ) ( -1448 3736 -224 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( -1560 3624 -224 ) ( -1572 3634 -224 ) ( -1572 3634 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1458 3748 -128 ) ( -1572 3634 -128 ) ( -1572 3634 -288 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( -1458 3748 -224 ) ( -1448 3736 -224 ) ( -1448 3736 -64 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( -1672 3748 -272 ) ( -1688 3624 -272 ) ( -1656 3624 -272 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 1129 +{ +( -1256 3520 -64 ) ( -1624 3520 -64 ) ( -1624 3648 -64 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -1560 3624 -64 ) ( -1572 3634 -64 ) ( -1572 3634 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1654 3508 -144 ) ( -1572 3634 -144 ) ( -1572 3634 -128 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( -1640 3500 -224 ) ( -1654 3508 -224 ) ( -1654 3508 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1600 3562 -224 ) ( -1640 3500 -208 ) ( -1560 3624 -208 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( -1672 3634 -272 ) ( -1688 3500 -272 ) ( -1656 3500 -272 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 1130 +{ +( -1312 3388 -64 ) ( -1680 3388 -64 ) ( -1680 3516 -64 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -1640 3500 -208 ) ( -1654 3508 -208 ) ( -1654 3508 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1712 3374 -144 ) ( -1654 3508 -144 ) ( -1654 3508 -128 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( -1696 3368 -224 ) ( -1712 3374 -224 ) ( -1712 3374 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1668 3434 -224 ) ( -1696 3368 -208 ) ( -1640 3500 -208 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( -1672 3508 -272 ) ( -1688 3368 -272 ) ( -1656 3368 -272 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 1131 +{ +( -1344 3232 -64 ) ( -1712 3232 -64 ) ( -1712 3360 -64 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +( -1696 3368 -208 ) ( -1712 3374 -208 ) ( -1712 3374 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1744 3214 -144 ) ( -1712 3374 -144 ) ( -1712 3374 -128 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( -1728 3212 -224 ) ( -1744 3214 -224 ) ( -1744 3214 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1712 3290 -288 ) ( -1728 3212 -272 ) ( -1696 3368 -272 ) bricks/c_tn_m3 64 0 0 1 1 0 0 0 +( -1672 3374 -272 ) ( -1688 3212 -272 ) ( -1656 3212 -272 ) bricks/c_tn_m3 0 64 0 1 1 0 0 0 +} +// brush 1132 +{ +( -1376 2944 -64 ) ( -1376 3179 -64 ) ( -1344 3176 -64 ) bricks/c_tn_m1 -128 0 90 1 1 0 0 0 +( -1344 3064 -64 ) ( -1344 3320 -64 ) ( -1344 3320 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1344 3176 -96 ) ( -1376 3179 -64 ) ( -1376 2944 -64 ) bricks/c_tn_m1 -128 0 90 1 1 0 0 0 +( -1344 3176 -64 ) ( -1376 3179 -64 ) ( -1344 3176 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1356 3168 -64 ) ( -1352 3168 -96 ) ( -1360 3168 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1133 +{ +( -960 3904 -272 ) ( -1036 3904 -272 ) ( -1036 3904 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1036 3904 -272 ) ( -1192 3872 -272 ) ( -1192 3872 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1192 3872 -272 ) ( -1324 3816 -272 ) ( -1324 3816 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1324 3816 -272 ) ( -1448 3736 -272 ) ( -1448 3736 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1448 3736 -272 ) ( -1560 3624 -272 ) ( -1560 3624 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1560 3624 -272 ) ( -1640 3500 -272 ) ( -1640 3500 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1640 3500 -272 ) ( -1696 3368 -272 ) ( -1696 3368 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1728 3212 -288 ) ( -1696 3368 -288 ) ( -1696 3368 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1728 3136 -288 ) ( -1728 3212 -288 ) ( -1728 3212 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1728 3904 -288 ) ( -1728 2368 -288 ) ( -192 2368 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -192 2368 -272 ) ( -1728 2368 -272 ) ( -1728 3904 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -960 3684 -272 ) ( -960 3712 -336 ) ( -960 3656 -336 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1592 3136 -272 ) ( -1560 3136 -336 ) ( -1624 3136 -336 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1152 3328 -272 ) ( -960 3520 -288 ) ( -1344 3136 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1134 +{ +( -960 3904 -48 ) ( -1036 3904 -48 ) ( -1036 3904 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1036 3904 -48 ) ( -1192 3872 -48 ) ( -1192 3872 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1192 3872 -48 ) ( -1324 3816 -48 ) ( -1324 3816 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1324 3816 -48 ) ( -1448 3736 -48 ) ( -1448 3736 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1448 3736 -48 ) ( -1560 3624 -48 ) ( -1560 3624 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1560 3624 -48 ) ( -1640 3500 -48 ) ( -1640 3500 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1640 3500 -48 ) ( -1696 3368 -48 ) ( -1696 3368 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1728 3212 -64 ) ( -1696 3368 -64 ) ( -1696 3368 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1728 3136 -64 ) ( -1728 3212 -64 ) ( -1728 3212 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1728 3904 -64 ) ( -1728 2368 -64 ) ( -192 2368 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -192 2368 -48 ) ( -1728 2368 -48 ) ( -1728 3904 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -960 3684 -48 ) ( -960 3712 -112 ) ( -960 3656 -112 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1592 3136 -48 ) ( -1560 3136 -112 ) ( -1624 3136 -112 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1152 3328 -48 ) ( -960 3520 -64 ) ( -1344 3136 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1135 +{ +( -1086 3535 -64 ) ( -1000 3520 -96 ) ( -1003 3552 -64 ) bricks/c_tn_m1 0 3 12 1 1 0 0 0 +( -1003 3552 -64 ) ( -1000 3520 -96 ) ( -1000 3520 -48 ) bricks/c_tn_m1 0 3 12 1 1 0 0 0 +( -1000 3520 -48 ) ( -1000 3520 -96 ) ( -1086 3535 -64 ) bricks/c_tn_m1 0 3 12 1 1 0 0 0 +( -1086 3284 -64 ) ( -1000 3296 -64 ) ( -1000 3272 -64 ) bricks/c_tn_m1 0 3 12 1 1 0 0 0 +} +// brush 1136 +{ +( -1086 3535 -64 ) ( -1076 3504 -96 ) ( -1000 3520 -96 ) bricks/c_tn_m1 0 3 12 1 1 0 0 0 +( -1000 3520 -96 ) ( -1076 3504 -96 ) ( -1076 3504 -48 ) bricks/c_tn_m1 0 3 12 1 1 0 0 0 +( -1076 3504 -48 ) ( -1076 3504 -96 ) ( -1086 3535 -64 ) bricks/c_tn_m1 0 3 12 1 1 0 0 0 +( -1086 3535 -48 ) ( -1086 3535 -64 ) ( -1000 3520 -96 ) bricks/c_tn_m1 0 3 12 1 1 0 0 0 +( -1086 3284 -64 ) ( -1000 3296 -64 ) ( -1000 3272 -64 ) bricks/c_tn_m1 0 3 12 1 1 0 0 0 +} +// brush 1137 +{ +( -1155 3504 -64 ) ( -1076 3504 -96 ) ( -1086 3535 -64 ) bricks/c_tn_m1 0 -9 24 1 1 0 0 0 +( -1086 3535 -64 ) ( -1076 3504 -96 ) ( -1076 3504 -48 ) bricks/c_tn_m1 0 -9 24 1 1 0 0 0 +( -1076 3504 -48 ) ( -1076 3504 -96 ) ( -1155 3504 -64 ) bricks/c_tn_m1 0 -9 24 1 1 0 0 0 +( -1155 3284 -64 ) ( -1076 3296 -64 ) ( -1076 3272 -64 ) bricks/c_tn_m1 0 -9 24 1 1 0 0 0 +} +// brush 1138 +{ +( -1155 3504 -64 ) ( -1140 3476 -96 ) ( -1076 3504 -96 ) bricks/c_tn_m1 0 -9 24 1 1 0 0 0 +( -1076 3504 -96 ) ( -1140 3476 -96 ) ( -1140 3476 -48 ) bricks/c_tn_m1 0 -9 24 1 1 0 0 0 +( -1140 3476 -48 ) ( -1140 3476 -96 ) ( -1155 3504 -64 ) bricks/c_tn_m1 0 -9 24 1 1 0 0 0 +( -1155 3504 -64 ) ( -1076 3504 -96 ) ( -1076 3504 -48 ) bricks/c_tn_m1 0 -9 24 1 1 0 0 0 +( -1155 3284 -64 ) ( -1076 3296 -64 ) ( -1076 3272 -64 ) bricks/c_tn_m1 0 -9 24 1 1 0 0 0 +} +// brush 1139 +{ +( -1228 3457 -64 ) ( -1140 3476 -96 ) ( -1155 3504 -64 ) bricks/c_tn_m1 0 16 33 1 1 0 0 0 +( -1155 3504 -64 ) ( -1140 3476 -96 ) ( -1140 3476 -48 ) bricks/c_tn_m1 0 16 33 1 1 0 0 0 +( -1140 3476 -48 ) ( -1140 3476 -96 ) ( -1228 3457 -64 ) bricks/c_tn_m1 0 16 33 1 1 0 0 0 +( -1228 3284 -64 ) ( -1140 3296 -64 ) ( -1140 3272 -64 ) bricks/c_tn_m1 0 16 33 1 1 0 0 0 +} +// brush 1140 +{ +( -1228 3457 -64 ) ( -1208 3432 -96 ) ( -1140 3476 -96 ) bricks/c_tn_m1 0 16 33 1 1 0 0 0 +( -1140 3476 -96 ) ( -1208 3432 -96 ) ( -1208 3432 -48 ) bricks/c_tn_m1 0 16 33 1 1 0 0 0 +( -1208 3432 -48 ) ( -1208 3432 -96 ) ( -1228 3457 -64 ) bricks/c_tn_m1 0 16 33 1 1 0 0 0 +( -1228 3457 -64 ) ( -1140 3476 -96 ) ( -1140 3476 -48 ) bricks/c_tn_m1 0 16 33 1 1 0 0 0 +( -1228 3284 -64 ) ( -1140 3296 -64 ) ( -1140 3272 -64 ) bricks/c_tn_m1 0 16 33 1 1 0 0 0 +} +// brush 1141 +{ +( -1300 3316 -96 ) ( -1256 3384 -96 ) ( -1281 3404 -64 ) bricks/c_tn_m1 0 17 57 1 1 0 0 0 +( -1256 3384 -48 ) ( -1256 3384 -96 ) ( -1300 3316 -96 ) bricks/c_tn_m1 0 17 57 1 1 0 0 0 +( -1281 3404 -64 ) ( -1256 3384 -96 ) ( -1256 3384 -48 ) bricks/c_tn_m1 0 17 57 1 1 0 0 0 +( -1300 3316 -48 ) ( -1300 3316 -96 ) ( -1281 3404 -64 ) bricks/c_tn_m1 0 17 57 1 1 0 0 0 +( -1300 3284 -64 ) ( -1256 3296 -64 ) ( -1256 3272 -64 ) bricks/c_tn_m1 0 17 57 1 1 0 0 0 +} +// brush 1142 +{ +( -1328 3331 -64 ) ( -1300 3316 -96 ) ( -1281 3404 -64 ) bricks/c_tn_m1 0 17 57 1 1 0 0 0 +( -1300 3316 -48 ) ( -1300 3316 -96 ) ( -1328 3331 -64 ) bricks/c_tn_m1 0 17 57 1 1 0 0 0 +( -1281 3404 -64 ) ( -1300 3316 -96 ) ( -1300 3316 -48 ) bricks/c_tn_m1 0 17 57 1 1 0 0 0 +( -1328 3284 -64 ) ( -1281 3296 -64 ) ( -1281 3272 -64 ) bricks/c_tn_m1 0 17 57 1 1 0 0 0 +} +// brush 1143 +{ +( -1328 3252 -96 ) ( -1300 3316 -96 ) ( -1328 3331 -64 ) bricks/c_tn_m1 0 9 66 1 1 0 0 0 +( -1300 3316 -48 ) ( -1300 3316 -96 ) ( -1328 3252 -96 ) bricks/c_tn_m1 0 9 66 1 1 0 0 0 +( -1328 3331 -64 ) ( -1300 3316 -96 ) ( -1300 3316 -48 ) bricks/c_tn_m1 0 9 66 1 1 0 0 0 +( -1328 3252 -48 ) ( -1328 3252 -96 ) ( -1328 3331 -64 ) bricks/c_tn_m1 0 9 66 1 1 0 0 0 +( -1328 3284 -64 ) ( -1300 3296 -64 ) ( -1300 3272 -64 ) bricks/c_tn_m1 0 9 66 1 1 0 0 0 +} +// brush 1144 +{ +( -1359 3262 -64 ) ( -1328 3252 -96 ) ( -1328 3331 -64 ) bricks/c_tn_m1 0 9 66 1 1 0 0 0 +( -1328 3252 -48 ) ( -1328 3252 -96 ) ( -1359 3262 -64 ) bricks/c_tn_m1 0 9 66 1 1 0 0 0 +( -1328 3331 -64 ) ( -1328 3252 -96 ) ( -1328 3252 -48 ) bricks/c_tn_m1 0 9 66 1 1 0 0 0 +( -1359 3284 -64 ) ( -1328 3296 -64 ) ( -1328 3272 -64 ) bricks/c_tn_m1 0 9 66 1 1 0 0 0 +} +// brush 1145 +{ +( -1344 3176 -96 ) ( -1328 3252 -96 ) ( -1359 3262 -64 ) bricks/c_tn_m1 0 5 79 1 1 0 0 0 +( -1328 3252 -48 ) ( -1328 3252 -96 ) ( -1344 3176 -96 ) bricks/c_tn_m1 0 5 79 1 1 0 0 0 +( -1359 3262 -64 ) ( -1328 3252 -96 ) ( -1328 3252 -48 ) bricks/c_tn_m1 0 5 79 1 1 0 0 0 +( -1344 3176 -96 ) ( -1359 3262 -64 ) ( -1359 3262 -48 ) bricks/c_tn_m1 0 5 79 1 1 0 0 0 +( -1359 3284 -64 ) ( -1328 3296 -64 ) ( -1328 3272 -64 ) bricks/c_tn_m1 0 5 79 1 1 0 0 0 +} +// brush 1146 +{ +( -1376 3179 -64 ) ( -1344 3176 -96 ) ( -1359 3262 -64 ) bricks/c_tn_m1 0 5 79 1 1 0 0 0 +( -1344 3176 -48 ) ( -1344 3176 -96 ) ( -1376 3179 -64 ) bricks/c_tn_m1 0 5 79 1 1 0 0 0 +( -1359 3262 -64 ) ( -1344 3176 -96 ) ( -1344 3176 -48 ) bricks/c_tn_m1 0 5 79 1 1 0 0 0 +( -1376 3284 -64 ) ( -1344 3296 -64 ) ( -1344 3272 -64 ) bricks/c_tn_m1 0 5 79 1 1 0 0 0 +} +// brush 1147 +{ +( -1033 3872 -64 ) ( -1036 3904 -96 ) ( -1182 3841 -64 ) bricks/c_tn_m1 61 -2 192 1 1 0 0 0 +( -1036 3904 -48 ) ( -1036 3904 -96 ) ( -1033 3872 -64 ) bricks/c_tn_m1 61 -2 192 1 1 0 0 0 +( -1182 3841 -64 ) ( -1036 3904 -96 ) ( -1036 3904 -48 ) bricks/c_tn_m1 61 -2 192 1 1 0 0 0 +( -1476 3904 -64 ) ( -1448 3841 -64 ) ( -1504 3841 -64 ) bricks/c_tn_m1 61 -2 192 1 1 0 0 0 +} +// brush 1148 +{ +( -1036 3904 -96 ) ( -1192 3872 -96 ) ( -1182 3841 -64 ) bricks/c_tn_m1 61 -2 192 1 1 0 0 0 +( -1182 3841 -64 ) ( -1192 3872 -96 ) ( -1192 3872 -48 ) bricks/c_tn_m1 61 -2 192 1 1 0 0 0 +( -1192 3872 -48 ) ( -1192 3872 -96 ) ( -1036 3904 -96 ) bricks/c_tn_m1 61 -2 192 1 1 0 0 0 +( -1036 3904 -48 ) ( -1036 3904 -96 ) ( -1182 3841 -64 ) bricks/c_tn_m1 61 -2 192 1 1 0 0 0 +( -1476 3904 -64 ) ( -1448 3841 -64 ) ( -1504 3841 -64 ) bricks/c_tn_m1 61 -2 192 1 1 0 0 0 +} +// brush 1149 +{ +( -1182 3841 -64 ) ( -1192 3872 -96 ) ( -1308 3787 -64 ) bricks/c_tn_m1 65 3 203 1 1 0 0 0 +( -1192 3872 -48 ) ( -1192 3872 -96 ) ( -1182 3841 -64 ) bricks/c_tn_m1 65 3 203 1 1 0 0 0 +( -1308 3787 -64 ) ( -1192 3872 -96 ) ( -1192 3872 -48 ) bricks/c_tn_m1 65 3 203 1 1 0 0 0 +( -1476 3872 -64 ) ( -1448 3787 -64 ) ( -1504 3787 -64 ) bricks/c_tn_m1 65 3 203 1 1 0 0 0 +} +// brush 1150 +{ +( -1192 3872 -96 ) ( -1324 3816 -96 ) ( -1308 3787 -64 ) bricks/c_tn_m1 65 3 203 1 1 0 0 0 +( -1308 3787 -64 ) ( -1324 3816 -96 ) ( -1324 3816 -48 ) bricks/c_tn_m1 65 3 203 1 1 0 0 0 +( -1324 3816 -48 ) ( -1324 3816 -96 ) ( -1192 3872 -96 ) bricks/c_tn_m1 65 3 203 1 1 0 0 0 +( -1192 3872 -48 ) ( -1192 3872 -96 ) ( -1308 3787 -64 ) bricks/c_tn_m1 65 3 203 1 1 0 0 0 +( -1476 3872 -64 ) ( -1448 3787 -64 ) ( -1504 3787 -64 ) bricks/c_tn_m1 65 3 203 1 1 0 0 0 +} +// brush 1151 +{ +( -1427 3710 -64 ) ( -1448 3736 -96 ) ( -1534 3603 -64 ) bricks/c_tn_m1 -83 15 225 1 1 0 0 0 +( -1448 3736 -48 ) ( -1448 3736 -96 ) ( -1427 3710 -64 ) bricks/c_tn_m1 -83 15 225 1 1 0 0 0 +( -1534 3603 -64 ) ( -1448 3736 -96 ) ( -1448 3736 -48 ) bricks/c_tn_m1 -83 15 225 1 1 0 0 0 +( -1476 3736 -64 ) ( -1448 3603 -64 ) ( -1504 3603 -64 ) bricks/c_tn_m1 -83 15 225 1 1 0 0 0 +} +// brush 1152 +{ +( -1534 3603 -64 ) ( -1448 3736 -96 ) ( -1560 3624 -96 ) bricks/c_tn_m1 -83 15 225 1 1 0 0 0 +( -1534 3603 -64 ) ( -1560 3624 -96 ) ( -1560 3624 -48 ) bricks/c_tn_m1 -83 15 225 1 1 0 0 0 +( -1560 3624 -96 ) ( -1448 3736 -96 ) ( -1448 3736 -48 ) bricks/c_tn_m1 -83 15 225 1 1 0 0 0 +( -1448 3736 -48 ) ( -1448 3736 -96 ) ( -1534 3603 -64 ) bricks/c_tn_m1 -83 15 225 1 1 0 0 0 +( -1476 3736 -64 ) ( -1448 3603 -64 ) ( -1504 3603 -64 ) bricks/c_tn_m1 -83 15 225 1 1 0 0 0 +} +// brush 1153 +{ +( -1611 3484 -64 ) ( -1640 3500 -96 ) ( -1696 3368 -96 ) bricks/c_tn_m1 42 4 247 1 1 0 0 0 +( -1640 3500 -48 ) ( -1640 3500 -96 ) ( -1611 3484 -64 ) bricks/c_tn_m1 42 4 247 1 1 0 0 0 +( -1696 3368 -96 ) ( -1640 3500 -96 ) ( -1640 3500 -48 ) bricks/c_tn_m1 42 4 247 1 1 0 0 0 +( -1611 3484 -64 ) ( -1696 3368 -96 ) ( -1696 3368 -48 ) bricks/c_tn_m1 42 4 247 1 1 0 0 0 +( -1476 3500 -64 ) ( -1448 3368 -64 ) ( -1504 3368 -64 ) bricks/c_tn_m1 42 4 247 1 1 0 0 0 +} +// brush 1154 +{ +( -1611 3484 -64 ) ( -1696 3368 -96 ) ( -1665 3358 -64 ) bricks/c_tn_m1 42 4 247 1 1 0 0 0 +( -1665 3358 -64 ) ( -1696 3368 -96 ) ( -1696 3368 -48 ) bricks/c_tn_m1 42 4 247 1 1 0 0 0 +( -1696 3368 -48 ) ( -1696 3368 -96 ) ( -1611 3484 -64 ) bricks/c_tn_m1 42 4 247 1 1 0 0 0 +( -1476 3484 -64 ) ( -1448 3358 -64 ) ( -1504 3358 -64 ) bricks/c_tn_m1 42 4 247 1 1 0 0 0 +} +// brush 1155 +{ +( -1665 3358 -64 ) ( -1696 3368 -96 ) ( -1728 3212 -96 ) bricks/c_tn_m1 21 10 258 1 1 0 0 0 +( -1696 3368 -48 ) ( -1696 3368 -96 ) ( -1665 3358 -64 ) bricks/c_tn_m1 21 10 258 1 1 0 0 0 +( -1728 3212 -96 ) ( -1696 3368 -96 ) ( -1696 3368 -48 ) bricks/c_tn_m1 21 10 258 1 1 0 0 0 +( -1665 3358 -64 ) ( -1728 3212 -96 ) ( -1728 3212 -48 ) bricks/c_tn_m1 21 10 258 1 1 0 0 0 +( -1476 3368 -64 ) ( -1448 3212 -64 ) ( -1504 3212 -64 ) bricks/c_tn_m1 21 10 258 1 1 0 0 0 +} +// brush 1156 +{ +( -1665 3358 -64 ) ( -1728 3212 -96 ) ( -1696 3209 -64 ) bricks/c_tn_m1 21 10 258 1 1 0 0 0 +( -1696 3209 -64 ) ( -1728 3212 -96 ) ( -1728 3212 -48 ) bricks/c_tn_m1 21 10 258 1 1 0 0 0 +( -1728 3212 -48 ) ( -1728 3212 -96 ) ( -1665 3358 -64 ) bricks/c_tn_m1 21 10 258 1 1 0 0 0 +( -1476 3358 -64 ) ( -1448 3209 -64 ) ( -1504 3209 -64 ) bricks/c_tn_m1 21 10 258 1 1 0 0 0 +} +// brush 1157 +{ +( -1728 3212 -64 ) ( -1696 3209 -64 ) ( -1696 3136 -64 ) bricks/c_tn_m1 1 0 -90 1 1 0 0 0 +( -1728 2864 -64 ) ( -1728 2512 -64 ) ( -1728 2512 -80 ) bricks/c_tn_m1 -64 0 -90 1 1 0 0 0 +( -1696 3136 -64 ) ( -1696 3209 -64 ) ( -1728 3212 -96 ) bricks/c_tn_m1 1 0 -90 1 1 0 0 0 +( -1696 3168 -96 ) ( -1728 3168 -96 ) ( -1712 3168 -64 ) bricks/c_tn_m1 -63 0 -90 1 1 0 0 0 +( -1728 3212 -96 ) ( -1696 3209 -64 ) ( -1728 3212 -64 ) bricks/c_tn_m1 -63 0 -90 1 1 0 0 0 +} +// brush 1158 +{ +( -1218 3384 -272 ) ( -1218 3444 -272 ) ( -1256 3444 -272 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -1256 3444 -256 ) ( -1218 3444 -256 ) ( -1218 3384 -256 ) bricks/c_sr_mr5 0 16 45 1 1 0 0 0 +( -1256 3384 -256 ) ( -1208 3432 -256 ) ( -1208 3432 -272 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1256 3384 -272 ) ( -1268 3394 -272 ) ( -1268 3394 -256 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1218 3444 -256 ) ( -1268 3394 -256 ) ( -1268 3394 -272 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1218 3444 -272 ) ( -1208 3432 -272 ) ( -1208 3432 -256 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 1159 +{ +( -1344 3232 -256 ) ( -1712 3232 -256 ) ( -1712 3360 -256 ) bricks/c_sr_mr5 0 4 79 1 1 0 0 0 +( -1712 3360 -272 ) ( -1712 3232 -272 ) ( -1344 3232 -272 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -1344 3176 -240 ) ( -1328 3252 -240 ) ( -1328 3252 -400 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1344 3256 -400 ) ( -1328 3252 -400 ) ( -1328 3252 -240 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1344 3176 -384 ) ( -1328 3174 -384 ) ( -1328 3174 -400 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1360 3178 -400 ) ( -1344 3256 -400 ) ( -1344 3256 -240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 1160 +{ +( -1312 3388 -256 ) ( -1680 3388 -256 ) ( -1680 3516 -256 ) bricks/c_sr_mr5 0 7 66 1 1 0 0 0 +( -1680 3516 -272 ) ( -1680 3388 -272 ) ( -1312 3388 -272 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -1328 3252 -240 ) ( -1300 3316 -240 ) ( -1300 3316 -400 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1300 3316 -240 ) ( -1314 3324 -240 ) ( -1314 3324 -400 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1328 3252 -400 ) ( -1344 3256 -400 ) ( -1344 3256 -240 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1314 3324 -240 ) ( -1344 3256 -240 ) ( -1344 3256 -400 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 1161 +{ +( -1256 3520 -256 ) ( -1624 3520 -256 ) ( -1624 3648 -256 ) bricks/c_sr_mr5 0 15 57 1 1 0 0 0 +( -1624 3648 -272 ) ( -1624 3520 -272 ) ( -1256 3520 -272 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -1300 3316 -240 ) ( -1256 3384 -240 ) ( -1256 3384 -400 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1256 3384 -240 ) ( -1268 3394 -240 ) ( -1268 3394 -400 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1300 3316 -400 ) ( -1314 3324 -400 ) ( -1314 3324 -240 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1314 3324 -400 ) ( -1268 3394 -400 ) ( -1268 3394 -240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 1162 +{ +( -1344 3432 -272 ) ( -1344 3800 -272 ) ( -1472 3800 -272 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -1472 3800 -256 ) ( -1344 3800 -256 ) ( -1344 3432 -256 ) bricks/c_sr_mr5 0 15 33 1 1 0 0 0 +( -1140 3476 -288 ) ( -1208 3432 -288 ) ( -1208 3432 -128 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1208 3432 -288 ) ( -1218 3444 -288 ) ( -1218 3444 -128 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1140 3476 -128 ) ( -1148 3490 -128 ) ( -1148 3490 -288 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1148 3490 -128 ) ( -1218 3444 -128 ) ( -1218 3444 -288 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +} +// brush 1163 +{ +( -1212 3488 -272 ) ( -1212 3856 -272 ) ( -1340 3856 -272 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -1340 3856 -256 ) ( -1212 3856 -256 ) ( -1212 3488 -256 ) bricks/c_sr_mr5 0 -11 24 1 1 0 0 0 +( -1076 3504 -288 ) ( -1140 3476 -288 ) ( -1140 3476 -128 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1140 3476 -288 ) ( -1148 3490 -288 ) ( -1148 3490 -128 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1076 3504 -128 ) ( -1080 3520 -128 ) ( -1080 3520 -288 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1148 3490 -288 ) ( -1080 3520 -288 ) ( -1080 3520 -128 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +} +// brush 1164 +{ +( -1056 3520 -272 ) ( -1056 3888 -272 ) ( -1184 3888 -272 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -1184 3888 -256 ) ( -1056 3888 -256 ) ( -1056 3520 -256 ) bricks/c_sr_mr5 0 2 12 1 1 0 0 0 +( -1000 3520 -288 ) ( -1076 3504 -288 ) ( -1076 3504 -128 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1080 3520 -128 ) ( -1076 3504 -128 ) ( -1076 3504 -288 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1000 3520 -144 ) ( -998 3504 -144 ) ( -998 3504 -128 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1002 3536 -128 ) ( -1080 3520 -128 ) ( -1080 3520 -288 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +} +// brush 1165 +{ +( -1448 3650 -272 ) ( -1448 3734 -272 ) ( -1502 3734 -272 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -1502 3734 -256 ) ( -1448 3734 -256 ) ( -1448 3650 -256 ) bricks/c_sr_mr5 0 13 225 1 1 0 0 0 +( -1550 3616 -272 ) ( -1560 3624 -272 ) ( -1560 3624 -256 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1448 3736 -256 ) ( -1560 3624 -256 ) ( -1560 3624 -272 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1440 3726 -256 ) ( -1448 3736 -256 ) ( -1448 3736 -272 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1440 3726 -272 ) ( -1496 3670 -272 ) ( -1496 3670 -256 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 1166 +{ +( -1344 3232 -256 ) ( -1712 3232 -256 ) ( -1712 3360 -256 ) bricks/c_sr_mr5 0 8 258 1 1 0 0 0 +( -1712 3360 -272 ) ( -1712 3232 -272 ) ( -1344 3232 -272 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -1696 3368 -400 ) ( -1682 3364 -400 ) ( -1682 3364 -240 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1696 3368 -240 ) ( -1728 3212 -240 ) ( -1728 3212 -400 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1728 3212 -240 ) ( -1712 3210 -240 ) ( -1712 3210 -400 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1712 3210 -240 ) ( -1682 3364 -240 ) ( -1682 3364 -400 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 1167 +{ +( -1312 3388 -256 ) ( -1680 3388 -256 ) ( -1680 3516 -256 ) bricks/c_sr_mr5 0 2 247 1 1 0 0 0 +( -1680 3516 -272 ) ( -1680 3388 -272 ) ( -1312 3388 -272 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -1628 3494 -240 ) ( -1640 3500 -240 ) ( -1640 3500 -400 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1696 3368 -400 ) ( -1640 3500 -400 ) ( -1640 3500 -240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1696 3368 -240 ) ( -1682 3364 -240 ) ( -1682 3364 -400 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1682 3364 -240 ) ( -1628 3494 -240 ) ( -1628 3494 -400 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 1168 +{ +( -1256 3520 -256 ) ( -1624 3520 -256 ) ( -1624 3648 -256 ) bricks/c_sr_mr5 0 13 237 1 1 0 0 0 +( -1624 3648 -272 ) ( -1624 3520 -272 ) ( -1256 3520 -272 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -1560 3624 -400 ) ( -1550 3616 -400 ) ( -1550 3616 -240 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1560 3624 -240 ) ( -1640 3500 -240 ) ( -1640 3500 -400 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1640 3500 -240 ) ( -1628 3494 -240 ) ( -1628 3494 -400 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1628 3494 -240 ) ( -1550 3616 -240 ) ( -1550 3616 -400 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 1169 +{ +( -1344 3432 -272 ) ( -1344 3800 -272 ) ( -1472 3800 -272 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -1472 3800 -256 ) ( -1344 3800 -256 ) ( -1344 3432 -256 ) bricks/c_sr_mr5 0 13 213 1 1 0 0 0 +( -1448 3736 -128 ) ( -1440 3726 -128 ) ( -1440 3726 -288 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1448 3736 -288 ) ( -1324 3816 -288 ) ( -1324 3816 -128 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1324 3816 -288 ) ( -1318 3804 -288 ) ( -1318 3804 -128 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1318 3804 -288 ) ( -1440 3726 -288 ) ( -1440 3726 -128 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +} +// brush 1170 +{ +( -1212 3488 -272 ) ( -1212 3856 -272 ) ( -1340 3856 -272 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -1340 3856 -256 ) ( -1212 3856 -256 ) ( -1212 3488 -256 ) bricks/c_sr_mr5 0 1 203 1 1 0 0 0 +( -1318 3804 -288 ) ( -1324 3816 -288 ) ( -1324 3816 -128 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1192 3872 -128 ) ( -1324 3816 -128 ) ( -1324 3816 -288 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1192 3872 -288 ) ( -1188 3858 -288 ) ( -1188 3858 -128 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1188 3858 -288 ) ( -1318 3804 -288 ) ( -1318 3804 -128 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +} +// brush 1171 +{ +( -1056 3520 -272 ) ( -1056 3888 -272 ) ( -1184 3888 -272 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -1184 3888 -256 ) ( -1056 3888 -256 ) ( -1056 3520 -256 ) bricks/c_sr_mr5 0 -4 192 1 1 0 0 0 +( -1192 3872 -128 ) ( -1188 3858 -128 ) ( -1188 3858 -288 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1192 3872 -288 ) ( -1036 3904 -288 ) ( -1036 3904 -128 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1036 3904 -288 ) ( -1034 3888 -288 ) ( -1034 3888 -128 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1034 3888 -288 ) ( -1188 3858 -288 ) ( -1188 3858 -128 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +} +// brush 1172 +{ +( -887 3872 -64 ) ( -1033 3872 -64 ) ( -1036 3904 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1232 3904 -64 ) ( -1584 3904 -64 ) ( -1584 3904 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1036 3904 -96 ) ( -1033 3872 -64 ) ( -887 3872 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1036 3904 -64 ) ( -1033 3872 -64 ) ( -1036 3904 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -960 3903 -96 ) ( -960 3895 -96 ) ( -960 3899 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 1173 +{ +( -1000 3520 -64 ) ( -1003 3552 -64 ) ( -917 3552 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -920 3520 -64 ) ( -920 3520 -96 ) ( -960 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -917 3552 -64 ) ( -1003 3552 -64 ) ( -1000 3520 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1000 3520 -96 ) ( -1003 3552 -64 ) ( -1000 3520 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -960 3552 -96 ) ( -960 3544 -96 ) ( -960 3548 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 1174 +{ +( 3072 272 -64 ) ( 2520 272 -64 ) ( 2520 -144 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2520 -144 -48 ) ( 2520 272 -48 ) ( 3072 272 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2520 -144 -48 ) ( 3072 -144 -48 ) ( 3072 -144 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3072 -144 -48 ) ( 3072 272 -48 ) ( 3072 272 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3072 272 -48 ) ( 2520 272 -48 ) ( 2520 272 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 256 112 -48 ) ( 256 -304 -48 ) ( 256 -304 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1175 +{ +( 3072 288 -272 ) ( 2520 288 -272 ) ( 2520 -128 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2520 -128 -64 ) ( 2520 288 -64 ) ( 3072 288 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 216 256 -272 ) ( 216 256 -64 ) ( 3072 256 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3150 272 -64 ) ( 3150 272 -272 ) ( 3148 256 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3150 272 -272 ) ( 3150 272 -64 ) ( 218 272 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 216 256 -64 ) ( 216 256 -272 ) ( 218 272 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1176 +{ +( 3072 -112 -272 ) ( 2520 -112 -272 ) ( 2520 -528 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2520 -528 -64 ) ( 2520 -112 -64 ) ( 3072 -112 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 178 -144 -272 ) ( 178 -144 -64 ) ( 3072 -144 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3112 -128 -64 ) ( 3112 -128 -272 ) ( 3110 -144 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3112 -128 -272 ) ( 3112 -128 -64 ) ( 180 -128 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 178 -144 -64 ) ( 178 -144 -272 ) ( 180 -128 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1177 +{ +( 3072 -96 -272 ) ( 2520 -96 -272 ) ( 2520 -512 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2520 -512 -256 ) ( 2520 -96 -256 ) ( 3072 -96 -256 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 180 -128 -272 ) ( 180 -128 -256 ) ( 3072 -128 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3114 -112 -256 ) ( 3114 -112 -272 ) ( 3112 -128 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3114 -112 -272 ) ( 3114 -112 -256 ) ( 182 -112 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 180 -128 -256 ) ( 180 -128 -272 ) ( 182 -112 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1178 +{ +( 3072 272 -272 ) ( 2520 272 -272 ) ( 2520 -144 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2520 -144 -256 ) ( 2520 272 -256 ) ( 3072 272 -256 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 214 240 -272 ) ( 214 240 -256 ) ( 3072 240 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3148 256 -256 ) ( 3148 256 -272 ) ( 3146 240 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3148 256 -272 ) ( 3148 256 -256 ) ( 216 256 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 214 240 -256 ) ( 214 240 -272 ) ( 216 256 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1179 +{ +( -28 380 -64 ) ( -52 356 -64 ) ( -268 572 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -244 596 -96 ) ( -268 572 -64 ) ( -52 356 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -84 412 -64 ) ( -96 400 -96 ) ( -72 424 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -284 116 -64 ) ( -272 128 -96 ) ( -296 104 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -67 381 -64 ) ( -90 404 -96 ) ( -44 358 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +} +// brush 1180 +{ +( -28 380 -64 ) ( -52 356 -64 ) ( -268 572 -64 ) common/li_pv_v4a -28 1 135 1 1 0 1 7000 +( -244 596 -96 ) ( -268 572 -64 ) ( -52 356 -64 ) common/li_pv_v4a -28 1 135 1 1 0 1 7000 +( -84 412 -64 ) ( -96 400 -96 ) ( -72 424 -96 ) common/li_pv_v4a -28 1 135 1 1 0 1 7000 +( -284 116 -64 ) ( -272 128 -96 ) ( -296 104 -96 ) common/li_pv_v4a -28 1 135 1 1 0 1 7000 +( -67 381 -64 ) ( -44 358 -96 ) ( -90 404 -96 ) common/li_pv_v4a -28 1 135 1 1 0 1 7000 +( -54 394 -64 ) ( -78 418 -96 ) ( -30 370 -96 ) common/li_pv_v4a -28 1 135 1 1 0 1 7000 +} +// brush 1181 +{ +( -28 380 -64 ) ( -52 356 -64 ) ( -268 572 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -244 596 -96 ) ( -12 364 -96 ) ( -12 364 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -244 596 -96 ) ( -268 572 -64 ) ( -52 356 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -84 412 -64 ) ( -96 400 -96 ) ( -72 424 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -284 116 -64 ) ( -272 128 -96 ) ( -296 104 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -54 394 -64 ) ( -30 370 -96 ) ( -78 418 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +} +// brush 1182 +{ +( -260 612 -64 ) ( -284 588 -64 ) ( -500 804 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -476 828 -96 ) ( -244 596 -96 ) ( -244 596 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -476 828 -96 ) ( -500 804 -64 ) ( -284 588 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -316 644 -64 ) ( -328 632 -96 ) ( -304 656 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -516 348 -64 ) ( -504 360 -96 ) ( -528 336 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -286 626 -64 ) ( -262 602 -96 ) ( -310 650 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +} +// brush 1183 +{ +( -260 612 -64 ) ( -284 588 -64 ) ( -500 804 -64 ) common/li_pv_v4a 28 1 135 1 1 0 1 7000 +( -476 828 -96 ) ( -500 804 -64 ) ( -284 588 -64 ) common/li_pv_v4a 28 1 135 1 1 0 1 7000 +( -316 644 -64 ) ( -328 632 -96 ) ( -304 656 -96 ) common/li_pv_v4a 28 1 135 1 1 0 1 7000 +( -516 348 -64 ) ( -504 360 -96 ) ( -528 336 -96 ) common/li_pv_v4a 28 1 135 1 1 0 1 7000 +( -299 613 -64 ) ( -276 590 -96 ) ( -322 636 -96 ) common/li_pv_v4a 28 1 135 1 1 0 1 7000 +( -286 626 -64 ) ( -310 650 -96 ) ( -262 602 -96 ) common/li_pv_v4a 28 1 135 1 1 0 1 7000 +} +// brush 1184 +{ +( -260 612 -64 ) ( -284 588 -64 ) ( -500 804 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -476 828 -96 ) ( -500 804 -64 ) ( -284 588 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -316 644 -64 ) ( -328 632 -96 ) ( -304 656 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -516 348 -64 ) ( -504 360 -96 ) ( -528 336 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -299 613 -64 ) ( -322 636 -96 ) ( -276 590 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +} +// brush 1185 +{ +( -260 612 -64 ) ( -284 588 -64 ) ( -500 804 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -476 828 -96 ) ( -244 596 -96 ) ( -244 596 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -476 828 -96 ) ( -500 804 -64 ) ( -284 588 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -516 348 -64 ) ( -528 336 -96 ) ( -504 360 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -332 164 -64 ) ( -320 176 -96 ) ( -344 152 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +} +// brush 1186 +{ +( -492 844 -64 ) ( -516 820 -64 ) ( -732 1036 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -708 1060 -96 ) ( -476 828 -96 ) ( -476 828 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -708 1060 -96 ) ( -732 1036 -64 ) ( -516 820 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -748 580 -64 ) ( -760 568 -96 ) ( -736 592 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -564 396 -64 ) ( -552 408 -96 ) ( -576 384 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +} +// brush 1187 +{ +( -492 844 -64 ) ( -516 820 -64 ) ( -732 1036 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -708 1060 -96 ) ( -732 1036 -64 ) ( -516 820 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -548 876 -64 ) ( -560 864 -96 ) ( -536 888 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -748 580 -64 ) ( -736 592 -96 ) ( -760 568 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -531 845 -64 ) ( -554 868 -96 ) ( -508 822 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +} +// brush 1188 +{ +( -492 844 -64 ) ( -516 820 -64 ) ( -732 1036 -64 ) common/li_pv_v4a 19 1 135 1 1 0 1 7000 +( -708 1060 -96 ) ( -732 1036 -64 ) ( -516 820 -64 ) common/li_pv_v4a 19 1 135 1 1 0 1 7000 +( -548 876 -64 ) ( -560 864 -96 ) ( -536 888 -96 ) common/li_pv_v4a 19 1 135 1 1 0 1 7000 +( -748 580 -64 ) ( -736 592 -96 ) ( -760 568 -96 ) common/li_pv_v4a 19 1 135 1 1 0 1 7000 +( -531 845 -64 ) ( -508 822 -96 ) ( -554 868 -96 ) common/li_pv_v4a 19 1 135 1 1 0 1 7000 +( -518 858 -64 ) ( -542 882 -96 ) ( -494 834 -96 ) common/li_pv_v4a 19 1 135 1 1 0 1 7000 +} +// brush 1189 +{ +( -492 844 -64 ) ( -516 820 -64 ) ( -732 1036 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -708 1060 -96 ) ( -476 828 -96 ) ( -476 828 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -708 1060 -96 ) ( -732 1036 -64 ) ( -516 820 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -548 876 -64 ) ( -560 864 -96 ) ( -536 888 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -748 580 -64 ) ( -736 592 -96 ) ( -760 568 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -518 858 -64 ) ( -494 834 -96 ) ( -542 882 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +} +// brush 1190 +{ +( -724 1076 -64 ) ( -748 1052 -64 ) ( -964 1268 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -940 1292 -96 ) ( -708 1060 -96 ) ( -708 1060 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -940 1292 -96 ) ( -964 1268 -64 ) ( -748 1052 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -780 1108 -64 ) ( -792 1096 -96 ) ( -768 1120 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -980 812 -64 ) ( -968 824 -96 ) ( -992 800 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -750 1090 -64 ) ( -726 1066 -96 ) ( -774 1114 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +} +// brush 1191 +{ +( -724 1076 -64 ) ( -748 1052 -64 ) ( -964 1268 -64 ) common/li_pv_v4a 11 1 135 1 1 0 1 7000 +( -940 1292 -96 ) ( -964 1268 -64 ) ( -748 1052 -64 ) common/li_pv_v4a 11 1 135 1 1 0 1 7000 +( -780 1108 -64 ) ( -792 1096 -96 ) ( -768 1120 -96 ) common/li_pv_v4a 11 1 135 1 1 0 1 7000 +( -980 812 -64 ) ( -968 824 -96 ) ( -992 800 -96 ) common/li_pv_v4a 11 1 135 1 1 0 1 7000 +( -763 1077 -64 ) ( -740 1054 -96 ) ( -786 1100 -96 ) common/li_pv_v4a 11 1 135 1 1 0 1 7000 +( -750 1090 -64 ) ( -774 1114 -96 ) ( -726 1066 -96 ) common/li_pv_v4a 11 1 135 1 1 0 1 7000 +} +// brush 1192 +{ +( -724 1076 -64 ) ( -748 1052 -64 ) ( -964 1268 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -940 1292 -96 ) ( -964 1268 -64 ) ( -748 1052 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -780 1108 -64 ) ( -792 1096 -96 ) ( -768 1120 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -980 812 -64 ) ( -968 824 -96 ) ( -992 800 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -763 1077 -64 ) ( -786 1100 -96 ) ( -740 1054 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +} +// brush 1193 +{ +( -724 1076 -64 ) ( -748 1052 -64 ) ( -964 1268 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -940 1292 -96 ) ( -708 1060 -96 ) ( -708 1060 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -940 1292 -96 ) ( -964 1268 -64 ) ( -748 1052 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -980 812 -64 ) ( -992 800 -96 ) ( -968 824 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -796 628 -64 ) ( -784 640 -96 ) ( -808 616 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +} +// brush 1194 +{ +( -956 1308 -64 ) ( -980 1284 -64 ) ( -1196 1500 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1172 1524 -96 ) ( -940 1292 -96 ) ( -940 1292 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1172 1524 -96 ) ( -1196 1500 -64 ) ( -980 1284 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1212 1044 -64 ) ( -1224 1032 -96 ) ( -1200 1056 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1028 860 -64 ) ( -1016 872 -96 ) ( -1040 848 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +} +// brush 1195 +{ +( -956 1308 -64 ) ( -980 1284 -64 ) ( -1196 1500 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1172 1524 -96 ) ( -1196 1500 -64 ) ( -980 1284 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1012 1340 -64 ) ( -1024 1328 -96 ) ( -1000 1352 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1212 1044 -64 ) ( -1200 1056 -96 ) ( -1224 1032 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -995 1309 -64 ) ( -1018 1332 -96 ) ( -972 1286 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +} +// brush 1196 +{ +( -956 1308 -64 ) ( -980 1284 -64 ) ( -1196 1500 -64 ) common/li_pv_v4a 3 1 135 1 1 0 1 7000 +( -1172 1524 -96 ) ( -1196 1500 -64 ) ( -980 1284 -64 ) common/li_pv_v4a 3 1 135 1 1 0 1 7000 +( -1012 1340 -64 ) ( -1024 1328 -96 ) ( -1000 1352 -96 ) common/li_pv_v4a 3 1 135 1 1 0 1 7000 +( -1212 1044 -64 ) ( -1200 1056 -96 ) ( -1224 1032 -96 ) common/li_pv_v4a 3 1 135 1 1 0 1 7000 +( -995 1309 -64 ) ( -972 1286 -96 ) ( -1018 1332 -96 ) common/li_pv_v4a 3 1 135 1 1 0 1 7000 +( -982 1322 -64 ) ( -1006 1346 -96 ) ( -958 1298 -96 ) common/li_pv_v4a 3 1 135 1 1 0 1 7000 +} +// brush 1197 +{ +( -956 1308 -64 ) ( -980 1284 -64 ) ( -1196 1500 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1172 1524 -96 ) ( -940 1292 -96 ) ( -940 1292 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1172 1524 -96 ) ( -1196 1500 -64 ) ( -980 1284 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1012 1340 -64 ) ( -1024 1328 -96 ) ( -1000 1352 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1212 1044 -64 ) ( -1200 1056 -96 ) ( -1224 1032 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -982 1322 -64 ) ( -958 1298 -96 ) ( -1006 1346 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +} +// brush 1198 +{ +( -264 72 -64 ) ( -240 96 -64 ) ( -24 -120 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -48 -144 -96 ) ( -24 -120 -64 ) ( -240 96 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -332 164 -64 ) ( -344 152 -96 ) ( -320 176 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -284 116 -64 ) ( -272 128 -96 ) ( -296 104 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -301 147 -64 ) ( -279 125 -96 ) ( -323 169 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +} +// brush 1199 +{ +( -264 72 -64 ) ( -240 96 -64 ) ( -24 -120 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -48 -144 -96 ) ( -280 88 -96 ) ( -280 88 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -48 -144 -96 ) ( -24 -120 -64 ) ( -240 96 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -332 164 -64 ) ( -344 152 -96 ) ( -320 176 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -284 116 -64 ) ( -272 128 -96 ) ( -296 104 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -294 116 -64 ) ( -296 118 -96 ) ( -292 114 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +} +// brush 1200 +{ +( -264 72 -64 ) ( -240 96 -64 ) ( -24 -120 -64 ) common/li_pv_v4a 29 2 315 1 1 0 1 7000 +( -48 -144 -96 ) ( -24 -120 -64 ) ( -240 96 -64 ) common/li_pv_v4a 29 2 315 1 1 0 1 7000 +( -332 164 -64 ) ( -344 152 -96 ) ( -320 176 -96 ) common/li_pv_v4a 29 2 315 1 1 0 1 7000 +( -284 116 -64 ) ( -272 128 -96 ) ( -296 104 -96 ) common/li_pv_v4a 29 2 315 1 1 0 1 7000 +( -301 147 -64 ) ( -323 169 -96 ) ( -279 125 -96 ) common/li_pv_v4a 29 2 315 1 1 0 1 7000 +( -294 116 -64 ) ( -292 114 -96 ) ( -296 118 -96 ) common/li_pv_v4a 29 2 315 1 1 0 1 7000 +} +// brush 1201 +{ +( -496 304 -64 ) ( -472 328 -64 ) ( -256 112 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -280 88 -96 ) ( -512 320 -96 ) ( -512 320 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -280 88 -96 ) ( -256 112 -64 ) ( -472 328 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -516 348 -64 ) ( -528 336 -96 ) ( -504 360 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -332 164 -64 ) ( -320 176 -96 ) ( -344 152 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +} +// brush 1202 +{ +( -496 304 -64 ) ( -472 328 -64 ) ( -256 112 -64 ) common/li_pv_v4a -27 3 315 1 1 0 1 7000 +( -280 88 -96 ) ( -256 112 -64 ) ( -472 328 -64 ) common/li_pv_v4a -27 3 315 1 1 0 1 7000 +( -564 396 -64 ) ( -576 384 -96 ) ( -552 408 -96 ) common/li_pv_v4a -27 3 315 1 1 0 1 7000 +( -516 348 -64 ) ( -504 360 -96 ) ( -528 336 -96 ) common/li_pv_v4a -27 3 315 1 1 0 1 7000 +( -533 379 -64 ) ( -555 401 -96 ) ( -511 357 -96 ) common/li_pv_v4a -27 3 315 1 1 0 1 7000 +( -526 348 -64 ) ( -524 346 -96 ) ( -528 350 -96 ) common/li_pv_v4a -27 3 315 1 1 0 1 7000 +} +// brush 1203 +{ +( -496 304 -64 ) ( -472 328 -64 ) ( -256 112 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -280 88 -96 ) ( -512 320 -96 ) ( -512 320 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -280 88 -96 ) ( -256 112 -64 ) ( -472 328 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -564 396 -64 ) ( -576 384 -96 ) ( -552 408 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -516 348 -64 ) ( -504 360 -96 ) ( -528 336 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -526 348 -64 ) ( -528 350 -96 ) ( -524 346 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +} +// brush 1204 +{ +( -496 304 -64 ) ( -472 328 -64 ) ( -256 112 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -280 88 -96 ) ( -256 112 -64 ) ( -472 328 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -564 396 -64 ) ( -576 384 -96 ) ( -552 408 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -516 348 -64 ) ( -504 360 -96 ) ( -528 336 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -533 379 -64 ) ( -511 357 -96 ) ( -555 401 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +} +// brush 1205 +{ +( -728 536 -64 ) ( -704 560 -64 ) ( -488 344 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -512 320 -96 ) ( -488 344 -64 ) ( -704 560 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -796 628 -64 ) ( -808 616 -96 ) ( -784 640 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -748 580 -64 ) ( -736 592 -96 ) ( -760 568 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -765 611 -64 ) ( -743 589 -96 ) ( -787 633 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +} +// brush 1206 +{ +( -728 536 -64 ) ( -704 560 -64 ) ( -488 344 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -512 320 -96 ) ( -744 552 -96 ) ( -744 552 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -512 320 -96 ) ( -488 344 -64 ) ( -704 560 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -796 628 -64 ) ( -808 616 -96 ) ( -784 640 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -748 580 -64 ) ( -736 592 -96 ) ( -760 568 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -758 580 -64 ) ( -760 582 -96 ) ( -756 578 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +} +// brush 1207 +{ +( -728 536 -64 ) ( -704 560 -64 ) ( -488 344 -64 ) common/li_pv_v4a -19 3 315 1 1 0 1 7000 +( -512 320 -96 ) ( -488 344 -64 ) ( -704 560 -64 ) common/li_pv_v4a -19 3 315 1 1 0 1 7000 +( -796 628 -64 ) ( -808 616 -96 ) ( -784 640 -96 ) common/li_pv_v4a -19 3 315 1 1 0 1 7000 +( -748 580 -64 ) ( -736 592 -96 ) ( -760 568 -96 ) common/li_pv_v4a -19 3 315 1 1 0 1 7000 +( -765 611 -64 ) ( -787 633 -96 ) ( -743 589 -96 ) common/li_pv_v4a -19 3 315 1 1 0 1 7000 +( -758 580 -64 ) ( -756 578 -96 ) ( -760 582 -96 ) common/li_pv_v4a -19 3 315 1 1 0 1 7000 +} +// brush 1208 +{ +( -728 536 -64 ) ( -704 560 -64 ) ( -488 344 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -512 320 -96 ) ( -744 552 -96 ) ( -744 552 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -512 320 -96 ) ( -488 344 -64 ) ( -704 560 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -748 580 -64 ) ( -760 568 -96 ) ( -736 592 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -564 396 -64 ) ( -552 408 -96 ) ( -576 384 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +} +// brush 1209 +{ +( -960 768 -64 ) ( -936 792 -64 ) ( -720 576 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -744 552 -96 ) ( -976 784 -96 ) ( -976 784 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -744 552 -96 ) ( -720 576 -64 ) ( -936 792 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -980 812 -64 ) ( -992 800 -96 ) ( -968 824 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -796 628 -64 ) ( -784 640 -96 ) ( -808 616 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +} +// brush 1210 +{ +( -960 768 -64 ) ( -936 792 -64 ) ( -720 576 -64 ) common/li_pv_v4a -11 3 315 1 1 0 1 7000 +( -744 552 -96 ) ( -720 576 -64 ) ( -936 792 -64 ) common/li_pv_v4a -11 3 315 1 1 0 1 7000 +( -1028 860 -64 ) ( -1040 848 -96 ) ( -1016 872 -96 ) common/li_pv_v4a -11 3 315 1 1 0 1 7000 +( -980 812 -64 ) ( -968 824 -96 ) ( -992 800 -96 ) common/li_pv_v4a -11 3 315 1 1 0 1 7000 +( -997 843 -64 ) ( -1019 865 -96 ) ( -975 821 -96 ) common/li_pv_v4a -11 3 315 1 1 0 1 7000 +( -990 812 -64 ) ( -988 810 -96 ) ( -992 814 -96 ) common/li_pv_v4a -11 3 315 1 1 0 1 7000 +} +// brush 1211 +{ +( -960 768 -64 ) ( -936 792 -64 ) ( -720 576 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -744 552 -96 ) ( -976 784 -96 ) ( -976 784 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -744 552 -96 ) ( -720 576 -64 ) ( -936 792 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1028 860 -64 ) ( -1040 848 -96 ) ( -1016 872 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -980 812 -64 ) ( -968 824 -96 ) ( -992 800 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -990 812 -64 ) ( -992 814 -96 ) ( -988 810 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +} +// brush 1212 +{ +( -960 768 -64 ) ( -936 792 -64 ) ( -720 576 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -744 552 -96 ) ( -720 576 -64 ) ( -936 792 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1028 860 -64 ) ( -1040 848 -96 ) ( -1016 872 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -980 812 -64 ) ( -968 824 -96 ) ( -992 800 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -997 843 -64 ) ( -975 821 -96 ) ( -1019 865 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +} +// brush 1213 +{ +( -1192 1000 -64 ) ( -1168 1024 -64 ) ( -952 808 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -976 784 -96 ) ( -952 808 -64 ) ( -1168 1024 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1260 1092 -64 ) ( -1272 1080 -96 ) ( -1248 1104 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1212 1044 -64 ) ( -1200 1056 -96 ) ( -1224 1032 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1229 1075 -64 ) ( -1207 1053 -96 ) ( -1251 1097 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +} +// brush 1214 +{ +( -1192 1000 -64 ) ( -1168 1024 -64 ) ( -952 808 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -976 784 -96 ) ( -1208 1016 -96 ) ( -1208 1016 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -976 784 -96 ) ( -952 808 -64 ) ( -1168 1024 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1260 1092 -64 ) ( -1272 1080 -96 ) ( -1248 1104 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1212 1044 -64 ) ( -1200 1056 -96 ) ( -1224 1032 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1222 1044 -64 ) ( -1224 1046 -96 ) ( -1220 1042 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +} +// brush 1215 +{ +( -1192 1000 -64 ) ( -1168 1024 -64 ) ( -952 808 -64 ) common/li_pv_v4a -3 3 315 1 1 0 1 7000 +( -976 784 -96 ) ( -952 808 -64 ) ( -1168 1024 -64 ) common/li_pv_v4a -3 3 315 1 1 0 1 7000 +( -1260 1092 -64 ) ( -1272 1080 -96 ) ( -1248 1104 -96 ) common/li_pv_v4a -3 3 315 1 1 0 1 7000 +( -1212 1044 -64 ) ( -1200 1056 -96 ) ( -1224 1032 -96 ) common/li_pv_v4a -3 3 315 1 1 0 1 7000 +( -1229 1075 -64 ) ( -1251 1097 -96 ) ( -1207 1053 -96 ) common/li_pv_v4a -3 3 315 1 1 0 1 7000 +( -1222 1044 -64 ) ( -1220 1042 -96 ) ( -1224 1046 -96 ) common/li_pv_v4a -3 3 315 1 1 0 1 7000 +} +// brush 1216 +{ +( -1192 1000 -64 ) ( -1168 1024 -64 ) ( -952 808 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -976 784 -96 ) ( -1208 1016 -96 ) ( -1208 1016 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -976 784 -96 ) ( -952 808 -64 ) ( -1168 1024 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1212 1044 -64 ) ( -1224 1032 -96 ) ( -1200 1056 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1028 860 -64 ) ( -1016 872 -96 ) ( -1040 848 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +} +// brush 1217 +{ +( -1188 1540 -64 ) ( -1212 1516 -64 ) ( -1428 1732 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1404 1756 -96 ) ( -1172 1524 -96 ) ( -1172 1524 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1404 1756 -96 ) ( -1428 1732 -64 ) ( -1212 1516 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1244 1572 -64 ) ( -1256 1560 -96 ) ( -1232 1584 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1444 1276 -64 ) ( -1432 1288 -96 ) ( -1456 1264 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1214 1554 -64 ) ( -1190 1530 -96 ) ( -1238 1578 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +} +// brush 1218 +{ +( -1188 1540 -64 ) ( -1212 1516 -64 ) ( -1428 1732 -64 ) common/li_pv_v4a -4 1 135 1 1 0 1 7000 +( -1404 1756 -96 ) ( -1428 1732 -64 ) ( -1212 1516 -64 ) common/li_pv_v4a -4 1 135 1 1 0 1 7000 +( -1244 1572 -64 ) ( -1256 1560 -96 ) ( -1232 1584 -96 ) common/li_pv_v4a -4 1 135 1 1 0 1 7000 +( -1444 1276 -64 ) ( -1432 1288 -96 ) ( -1456 1264 -96 ) common/li_pv_v4a -4 1 135 1 1 0 1 7000 +( -1227 1541 -64 ) ( -1204 1518 -96 ) ( -1250 1564 -96 ) common/li_pv_v4a -4 1 135 1 1 0 1 7000 +( -1214 1554 -64 ) ( -1238 1578 -96 ) ( -1190 1530 -96 ) common/li_pv_v4a -4 1 135 1 1 0 1 7000 +} +// brush 1219 +{ +( -1188 1540 -64 ) ( -1212 1516 -64 ) ( -1428 1732 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1404 1756 -96 ) ( -1428 1732 -64 ) ( -1212 1516 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1244 1572 -64 ) ( -1256 1560 -96 ) ( -1232 1584 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1444 1276 -64 ) ( -1432 1288 -96 ) ( -1456 1264 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1227 1541 -64 ) ( -1250 1564 -96 ) ( -1204 1518 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +} +// brush 1220 +{ +( -1188 1540 -64 ) ( -1212 1516 -64 ) ( -1428 1732 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1404 1756 -96 ) ( -1172 1524 -96 ) ( -1172 1524 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1404 1756 -96 ) ( -1428 1732 -64 ) ( -1212 1516 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1444 1276 -64 ) ( -1456 1264 -96 ) ( -1432 1288 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1260 1092 -64 ) ( -1248 1104 -96 ) ( -1272 1080 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +} +// brush 1221 +{ +( -1424 1232 -64 ) ( -1400 1256 -64 ) ( -1184 1040 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1208 1016 -96 ) ( -1440 1248 -96 ) ( -1440 1248 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1208 1016 -96 ) ( -1184 1040 -64 ) ( -1400 1256 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1444 1276 -64 ) ( -1456 1264 -96 ) ( -1432 1288 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1260 1092 -64 ) ( -1248 1104 -96 ) ( -1272 1080 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +} +// brush 1222 +{ +( -1424 1232 -64 ) ( -1400 1256 -64 ) ( -1184 1040 -64 ) common/li_pv_v4a 5 3 315 1 1 0 1 7000 +( -1208 1016 -96 ) ( -1184 1040 -64 ) ( -1400 1256 -64 ) common/li_pv_v4a 5 3 315 1 1 0 1 7000 +( -1492 1324 -64 ) ( -1504 1312 -96 ) ( -1480 1336 -96 ) common/li_pv_v4a 5 3 315 1 1 0 1 7000 +( -1444 1276 -64 ) ( -1432 1288 -96 ) ( -1456 1264 -96 ) common/li_pv_v4a 5 3 315 1 1 0 1 7000 +( -1461 1307 -64 ) ( -1483 1329 -96 ) ( -1439 1285 -96 ) common/li_pv_v4a 5 3 315 1 1 0 1 7000 +( -1454 1276 -64 ) ( -1452 1274 -96 ) ( -1456 1278 -96 ) common/li_pv_v4a 5 3 315 1 1 0 1 7000 +} +// brush 1223 +{ +( -1424 1232 -64 ) ( -1400 1256 -64 ) ( -1184 1040 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1208 1016 -96 ) ( -1440 1248 -96 ) ( -1440 1248 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1208 1016 -96 ) ( -1184 1040 -64 ) ( -1400 1256 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1492 1324 -64 ) ( -1504 1312 -96 ) ( -1480 1336 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1444 1276 -64 ) ( -1432 1288 -96 ) ( -1456 1264 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1454 1276 -64 ) ( -1456 1278 -96 ) ( -1452 1274 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +} +// brush 1224 +{ +( -1424 1232 -64 ) ( -1400 1256 -64 ) ( -1184 1040 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1208 1016 -96 ) ( -1184 1040 -64 ) ( -1400 1256 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1492 1324 -64 ) ( -1504 1312 -96 ) ( -1480 1336 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1444 1276 -64 ) ( -1432 1288 -96 ) ( -1456 1264 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1461 1307 -64 ) ( -1439 1285 -96 ) ( -1483 1329 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +} +// brush 1225 +{ +( -1640 1492 -96 ) ( -1533 1389 -64 ) ( -1611 1508 -64 ) bricks/c_tn_m1 -74 14 303 1 1 0 0 0 +( -1640 1492 -48 ) ( -1640 1492 -96 ) ( -1611 1508 -64 ) bricks/c_tn_m1 -74 14 303 1 1 0 0 0 +( -1640 1492 -64 ) ( -1533 1389 -64 ) ( -1640 1492 -96 ) bricks/c_tn_m1 -74 14 303 1 1 0 0 0 +( -1611 1508 -64 ) ( -1533 1389 -64 ) ( -1640 1492 -64 ) bricks/c_tn_m1 -74 14 303 1 1 0 0 0 +} +// brush 1226 +{ +( -1560 1368 -96 ) ( -1533 1389 -64 ) ( -1640 1492 -96 ) bricks/c_tn_m1 -74 14 303 1 1 0 0 0 +( -1560 1368 -64 ) ( -1533 1389 -64 ) ( -1560 1368 -96 ) bricks/c_tn_m1 -74 14 303 1 1 0 0 0 +( -1560 1368 -48 ) ( -1560 1368 -96 ) ( -1640 1492 -96 ) bricks/c_tn_m1 -74 14 303 1 1 0 0 0 +( -1640 1492 -96 ) ( -1533 1389 -64 ) ( -1640 1492 -64 ) bricks/c_tn_m1 -74 14 303 1 1 0 0 0 +( -1640 1492 -64 ) ( -1533 1389 -64 ) ( -1560 1368 -64 ) bricks/c_tn_m1 -74 14 303 1 1 0 0 0 +} +// brush 1227 +{ +( -1712 1632 -64 ) ( -1712 1760 -64 ) ( -1344 1760 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1312 1744 -224 ) ( -1312 1744 -208 ) ( -1328 1818 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1312 1744 -64 ) ( -1312 1744 -80 ) ( -1328 1740 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1328 1818 -224 ) ( -1328 1818 -208 ) ( -1344 1816 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1344 1816 -272 ) ( -1328 1740 -272 ) ( -1336 1778 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 496 1818 -272 ) ( 464 1818 -272 ) ( 480 1740 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1228 +{ +( -1680 1476 -64 ) ( -1680 1604 -64 ) ( -1312 1604 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1286 1684 -288 ) ( -1286 1684 -272 ) ( -1312 1744 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1286 1684 -64 ) ( -1286 1684 -80 ) ( -1300 1676 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1312 1744 -80 ) ( -1312 1744 -64 ) ( -1328 1740 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1328 1740 -128 ) ( -1300 1676 -128 ) ( -1314 1708 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 496 1744 -272 ) ( 464 1744 -272 ) ( 480 1676 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1229 +{ +( -1624 1344 -64 ) ( -1624 1472 -64 ) ( -1256 1472 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1242 1618 -224 ) ( -1242 1618 -208 ) ( -1286 1684 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1242 1618 -64 ) ( -1242 1618 -80 ) ( -1256 1608 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1286 1684 -80 ) ( -1286 1684 -64 ) ( -1300 1676 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1300 1676 -128 ) ( -1256 1608 -128 ) ( -1278 1642 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 496 1684 -272 ) ( 464 1684 -272 ) ( 480 1608 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1230 +{ +( -1624 1344 -64 ) ( -1624 1472 -64 ) ( -1256 1472 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1573 1357 -272 ) ( -1573 1357 -64 ) ( -1560 1368 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1573 1357 -64 ) ( -1573 1357 -272 ) ( -1654 1484 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1654 1484 -208 ) ( -1654 1484 -224 ) ( -1640 1492 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1560 1368 -208 ) ( -1640 1492 -208 ) ( -1600 1430 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1656 1492 -272 ) ( -1688 1492 -272 ) ( -1672 1358 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1231 +{ +( -1680 1476 -64 ) ( -1680 1604 -64 ) ( -1312 1604 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1654 1484 -224 ) ( -1654 1484 -208 ) ( -1640 1492 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1654 1484 -128 ) ( -1654 1484 -144 ) ( -1712 1618 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1712 1618 -208 ) ( -1712 1618 -224 ) ( -1696 1624 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1640 1492 -208 ) ( -1696 1624 -208 ) ( -1668 1558 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1656 1624 -272 ) ( -1688 1624 -272 ) ( -1672 1484 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1232 +{ +( -1712 1632 -64 ) ( -1712 1760 -64 ) ( -1344 1760 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1712 1618 -224 ) ( -1712 1618 -208 ) ( -1696 1624 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1712 1618 -128 ) ( -1712 1618 -144 ) ( -1744 1778 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1744 1778 -208 ) ( -1744 1778 -224 ) ( -1728 1780 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1696 1624 -272 ) ( -1728 1780 -272 ) ( -1712 1702 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1656 1780 -272 ) ( -1688 1780 -272 ) ( -1672 1618 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1233 +{ +( -1560 1368 -288 ) ( -1560 1368 -272 ) ( -1448 1256 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1640 1492 -288 ) ( -1640 1492 -272 ) ( -1560 1368 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1696 1624 -288 ) ( -1696 1624 -272 ) ( -1640 1492 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1696 1624 -272 ) ( -1696 1624 -288 ) ( -1728 1780 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1728 1780 -272 ) ( -1728 1780 -288 ) ( -1728 1856 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -192 2624 -288 ) ( -1728 2624 -288 ) ( -1728 1088 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1728 1088 -272 ) ( -1728 2624 -272 ) ( -192 2624 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1624 1856 -336 ) ( -1560 1856 -336 ) ( -1592 1856 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1232 1584 -288 ) ( -1232 1584 -272 ) ( -1344 1856 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1232 1584 -272 ) ( -1232 1584 -288 ) ( -1504 1312 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1234 +{ +( -1560 1368 -64 ) ( -1560 1368 -48 ) ( -1448 1256 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1640 1492 -64 ) ( -1640 1492 -48 ) ( -1560 1368 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1696 1624 -64 ) ( -1696 1624 -48 ) ( -1640 1492 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1696 1624 -48 ) ( -1696 1624 -64 ) ( -1728 1780 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1728 1780 -48 ) ( -1728 1780 -64 ) ( -1728 1856 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -192 2624 -64 ) ( -1728 2624 -64 ) ( -1728 1088 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1728 1088 -48 ) ( -1728 2624 -48 ) ( -192 2624 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1624 1856 -112 ) ( -1560 1856 -112 ) ( -1592 1856 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1232 1584 -64 ) ( -1232 1584 -48 ) ( -1344 1856 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1232 1584 -48 ) ( -1232 1584 -64 ) ( -1504 1312 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1235 +{ +( -1300 1676 -96 ) ( -1276 1580 -64 ) ( -1256 1608 -96 ) bricks/c_tn_m1 -94 17 123 1 1 0 0 0 +( -1300 1676 -96 ) ( -1256 1608 -96 ) ( -1256 1608 -48 ) bricks/c_tn_m1 -94 17 123 1 1 0 0 0 +( -1256 1608 -96 ) ( -1276 1580 -64 ) ( -1256 1608 -64 ) bricks/c_tn_m1 -94 17 123 1 1 0 0 0 +( -1300 1676 -64 ) ( -1276 1580 -64 ) ( -1300 1676 -96 ) bricks/c_tn_m1 -94 17 123 1 1 0 0 0 +( -1256 1608 -64 ) ( -1276 1580 -64 ) ( -1300 1676 -64 ) bricks/c_tn_m1 -94 17 123 1 1 0 0 0 +} +// brush 1236 +{ +( -1328 1661 -64 ) ( -1276 1580 -64 ) ( -1300 1676 -96 ) bricks/c_tn_m1 -94 17 123 1 1 0 0 0 +( -1328 1661 -64 ) ( -1300 1676 -96 ) ( -1300 1676 -48 ) bricks/c_tn_m1 -94 17 123 1 1 0 0 0 +( -1300 1676 -96 ) ( -1276 1580 -64 ) ( -1300 1676 -64 ) bricks/c_tn_m1 -94 17 123 1 1 0 0 0 +( -1300 1676 -64 ) ( -1276 1580 -64 ) ( -1328 1661 -64 ) bricks/c_tn_m1 -94 17 123 1 1 0 0 0 +} +// brush 1237 +{ +( -1328 1661 -64 ) ( -1300 1676 -96 ) ( -1328 1740 -96 ) bricks/c_tn_m1 0 -7 114 1 1 0 0 0 +( -1328 1740 -96 ) ( -1300 1676 -96 ) ( -1300 1676 -48 ) bricks/c_tn_m1 0 -7 114 1 1 0 0 0 +( -1300 1676 -48 ) ( -1300 1676 -96 ) ( -1328 1661 -64 ) bricks/c_tn_m1 0 -7 114 1 1 0 0 0 +( -1328 1661 -64 ) ( -1328 1740 -96 ) ( -1328 1740 -48 ) bricks/c_tn_m1 0 -7 114 1 1 0 0 0 +( -1300 1720 -64 ) ( -1300 1696 -64 ) ( -1328 1708 -64 ) bricks/c_tn_m1 0 -7 114 1 1 0 0 0 +} +// brush 1238 +{ +( -1328 1661 -64 ) ( -1328 1740 -96 ) ( -1359 1730 -64 ) bricks/c_tn_m1 0 -7 114 1 1 0 0 0 +( -1359 1730 -64 ) ( -1328 1740 -96 ) ( -1328 1740 -48 ) bricks/c_tn_m1 0 -7 114 1 1 0 0 0 +( -1328 1740 -48 ) ( -1328 1740 -96 ) ( -1328 1661 -64 ) bricks/c_tn_m1 0 -7 114 1 1 0 0 0 +( -1328 1720 -64 ) ( -1328 1696 -64 ) ( -1359 1708 -64 ) bricks/c_tn_m1 0 -7 114 1 1 0 0 0 +} +// brush 1239 +{ +( -1359 1730 -64 ) ( -1328 1740 -96 ) ( -1344 1816 -96 ) bricks/c_tn_m1 17 9 102 1 1 0 0 0 +( -1344 1816 -96 ) ( -1328 1740 -96 ) ( -1328 1740 -48 ) bricks/c_tn_m1 17 9 102 1 1 0 0 0 +( -1328 1740 -48 ) ( -1328 1740 -96 ) ( -1359 1730 -64 ) bricks/c_tn_m1 17 9 102 1 1 0 0 0 +( -1359 1730 -48 ) ( -1359 1730 -64 ) ( -1344 1816 -96 ) bricks/c_tn_m1 17 9 102 1 1 0 0 0 +( -1328 1720 -64 ) ( -1328 1696 -64 ) ( -1359 1708 -64 ) bricks/c_tn_m1 17 9 102 1 1 0 0 0 +} +// brush 1240 +{ +( -1359 1730 -64 ) ( -1344 1816 -96 ) ( -1376 1813 -64 ) bricks/c_tn_m1 17 9 102 1 1 0 0 0 +( -1376 1813 -64 ) ( -1344 1816 -96 ) ( -1344 1816 -48 ) bricks/c_tn_m1 17 9 102 1 1 0 0 0 +( -1344 1816 -48 ) ( -1344 1816 -96 ) ( -1359 1730 -64 ) bricks/c_tn_m1 17 9 102 1 1 0 0 0 +( -1344 1720 -64 ) ( -1344 1696 -64 ) ( -1376 1708 -64 ) bricks/c_tn_m1 17 9 102 1 1 0 0 0 +} +// brush 1241 +{ +( -1712 1632 -256 ) ( -1712 1760 -256 ) ( -1344 1760 -256 ) bricks/c_sr_mr5 0 8 102 1 1 0 0 0 +( -1344 1760 -272 ) ( -1712 1760 -272 ) ( -1712 1632 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1328 1740 -400 ) ( -1328 1740 -240 ) ( -1344 1816 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1328 1740 -240 ) ( -1328 1740 -400 ) ( -1344 1736 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1328 1818 -400 ) ( -1328 1818 -384 ) ( -1344 1816 -384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1344 1736 -240 ) ( -1344 1736 -400 ) ( -1360 1814 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1242 +{ +( -1680 1476 -256 ) ( -1680 1604 -256 ) ( -1312 1604 -256 ) bricks/c_sr_mr5 0 -8 114 1 1 0 0 0 +( -1312 1604 -272 ) ( -1680 1604 -272 ) ( -1680 1476 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1300 1676 -400 ) ( -1300 1676 -240 ) ( -1328 1740 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1314 1668 -400 ) ( -1314 1668 -240 ) ( -1300 1676 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1344 1736 -240 ) ( -1344 1736 -400 ) ( -1328 1740 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1344 1736 -400 ) ( -1344 1736 -240 ) ( -1314 1668 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1243 +{ +( -1624 1344 -256 ) ( -1624 1472 -256 ) ( -1256 1472 -256 ) bricks/c_sr_mr5 0 17 123 1 1 0 0 0 +( -1256 1472 -272 ) ( -1624 1472 -272 ) ( -1624 1344 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1256 1608 -400 ) ( -1256 1608 -240 ) ( -1300 1676 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1268 1598 -400 ) ( -1268 1598 -240 ) ( -1256 1608 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1314 1668 -240 ) ( -1314 1668 -400 ) ( -1300 1676 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1268 1598 -240 ) ( -1268 1598 -400 ) ( -1314 1668 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1244 +{ +( -1712 1632 -256 ) ( -1712 1760 -256 ) ( -1344 1760 -256 ) bricks/c_sr_mr5 0 -10 282 1 1 0 0 0 +( -1344 1760 -272 ) ( -1712 1760 -272 ) ( -1712 1632 -272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1681 1629 -256 ) ( -1681 1629 -272 ) ( -1696 1624 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1728 1780 -400 ) ( -1728 1780 -240 ) ( -1696 1624 -240 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( -1712 1782 -400 ) ( -1712 1782 -240 ) ( -1728 1780 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1681 1629 -272 ) ( -1681 1629 -256 ) ( -1712 1782 -256 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +} +// brush 1245 +{ +( -1680 1476 -256 ) ( -1680 1604 -256 ) ( -1312 1604 -256 ) bricks/c_sr_mr5 0 0 293 1 1 0 0 0 +( -1312 1604 -272 ) ( -1680 1604 -272 ) ( -1680 1476 -272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1627 1499 -256 ) ( -1627 1499 -272 ) ( -1640 1492 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1640 1492 -240 ) ( -1640 1492 -400 ) ( -1696 1624 -400 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( -1681 1629 -272 ) ( -1681 1629 -256 ) ( -1696 1624 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1681 1629 -256 ) ( -1681 1629 -272 ) ( -1627 1499 -272 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +} +// brush 1246 +{ +( -1624 1344 -256 ) ( -1624 1472 -256 ) ( -1256 1472 -256 ) bricks/c_sr_mr5 0 12 303 1 1 0 0 0 +( -1256 1472 -272 ) ( -1624 1472 -272 ) ( -1624 1344 -272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1548 1378 -256 ) ( -1548 1378 -272 ) ( -1560 1368 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1640 1492 -400 ) ( -1640 1492 -240 ) ( -1560 1368 -240 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( -1627 1499 -272 ) ( -1627 1499 -256 ) ( -1640 1492 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1627 1499 -256 ) ( -1627 1499 -272 ) ( -1548 1378 -272 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +} +// brush 1247 +{ +( -1256 1560 -64 ) ( -1276 1580 -64 ) ( -1256 1608 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1168 1520 -64 ) ( -1168 1520 -96 ) ( -936 1288 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1256 1608 -96 ) ( -1276 1580 -64 ) ( -1256 1560 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1232 1584 -96 ) ( -1256 1560 -96 ) ( -1244 1572 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1256 1608 -64 ) ( -1276 1580 -64 ) ( -1256 1608 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +} +// brush 1248 +{ +( -1560 1368 -64 ) ( -1533 1389 -64 ) ( -1480 1336 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1444 1252 -64 ) ( -1444 1252 -96 ) ( -1676 1484 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1480 1336 -64 ) ( -1533 1389 -64 ) ( -1560 1368 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1560 1368 -96 ) ( -1533 1389 -64 ) ( -1560 1368 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1480 1336 -96 ) ( -1504 1312 -96 ) ( -1492 1324 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +} +// brush 1249 +{ +( -1696 1783 -64 ) ( -1728 1780 -96 ) ( -1665 1634 -64 ) bricks/c_tn_m1 59 -8 282 1 1 0 0 0 +( -1728 1780 -48 ) ( -1728 1780 -96 ) ( -1696 1783 -64 ) bricks/c_tn_m1 59 -8 282 1 1 0 0 0 +( -1665 1634 -64 ) ( -1728 1780 -96 ) ( -1728 1780 -48 ) bricks/c_tn_m1 59 -8 282 1 1 0 0 0 +( -1504 1783 -64 ) ( -1448 1783 -64 ) ( -1476 1634 -64 ) bricks/c_tn_m1 59 -8 282 1 1 0 0 0 +} +// brush 1250 +{ +( -1728 1780 -96 ) ( -1696 1624 -96 ) ( -1665 1634 -64 ) bricks/c_tn_m1 59 -8 282 1 1 0 0 0 +( -1665 1634 -64 ) ( -1696 1624 -96 ) ( -1696 1624 -48 ) bricks/c_tn_m1 59 -8 282 1 1 0 0 0 +( -1696 1624 -48 ) ( -1696 1624 -96 ) ( -1728 1780 -96 ) bricks/c_tn_m1 59 -8 282 1 1 0 0 0 +( -1728 1780 -48 ) ( -1728 1780 -96 ) ( -1665 1634 -64 ) bricks/c_tn_m1 59 -8 282 1 1 0 0 0 +( -1504 1780 -64 ) ( -1448 1780 -64 ) ( -1476 1624 -64 ) bricks/c_tn_m1 59 -8 282 1 1 0 0 0 +} +// brush 1251 +{ +( -1376 1813 -64 ) ( -1376 1899 -64 ) ( -1344 1896 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1344 1672 -96 ) ( -1344 1672 -64 ) ( -1344 1928 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1344 1896 -96 ) ( -1376 1899 -64 ) ( -1376 1813 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1344 1816 -96 ) ( -1376 1813 -64 ) ( -1344 1816 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1369 1856 -96 ) ( -1353 1856 -96 ) ( -1361 1856 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1252 +{ +( 140 272 -96 ) ( 76 300 -96 ) ( 61 272 -64 ) bricks/c_tn_m1 44 15 157 1 1 0 0 0 +( 76 300 -48 ) ( 76 300 -96 ) ( 140 272 -96 ) bricks/c_tn_m1 44 15 157 1 1 0 0 0 +( 61 272 -64 ) ( 76 300 -96 ) ( 76 300 -48 ) bricks/c_tn_m1 44 15 157 1 1 0 0 0 +( 140 272 -48 ) ( 140 272 -96 ) ( 61 272 -64 ) bricks/c_tn_m1 44 15 157 1 1 0 0 0 +( 140 504 -64 ) ( 140 480 -64 ) ( 61 492 -64 ) bricks/c_tn_m1 44 15 157 1 1 0 0 0 +} +// brush 1253 +{ +( 130 241 -64 ) ( 140 272 -96 ) ( 61 272 -64 ) bricks/c_tn_m1 44 15 157 1 1 0 0 0 +( 140 272 -48 ) ( 140 272 -96 ) ( 130 241 -64 ) bricks/c_tn_m1 44 15 157 1 1 0 0 0 +( 61 272 -64 ) ( 140 272 -96 ) ( 140 272 -48 ) bricks/c_tn_m1 44 15 157 1 1 0 0 0 +( 140 504 -64 ) ( 140 480 -64 ) ( 61 492 -64 ) bricks/c_tn_m1 44 15 157 1 1 0 0 0 +} +// brush 1254 +{ +( -92 -11 -64 ) ( -108 -40 -96 ) ( 24 -96 -96 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( 24 -96 -96 ) ( -108 -40 -96 ) ( -108 -40 -48 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( -288 -11 -64 ) ( -232 -11 -64 ) ( -260 -96 -64 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( -65 -35 -64 ) ( -70 -46 -96 ) ( -60 -24 -96 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( -9 -67 -64 ) ( -4 -56 -96 ) ( -14 -78 -96 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( -37 -60 -64 ) ( -70 -46 -96 ) ( -4 -74 -96 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +} +// brush 1255 +{ +( -92 -11 -64 ) ( -108 -40 -96 ) ( 24 -96 -96 ) common/li_pv_v4a -18 -5 337 1 1 0 1 7000 +( -92 -11 -64 ) ( 24 -96 -96 ) ( 24 -96 -48 ) common/li_pv_v4a -18 -5 337 1 1 0 1 7000 +( -288 -11 -64 ) ( -232 -11 -64 ) ( -260 -96 -64 ) common/li_pv_v4a -18 -5 337 1 1 0 1 7000 +( -65 -35 -64 ) ( -70 -46 -96 ) ( -60 -24 -96 ) common/li_pv_v4a -18 -5 337 1 1 0 1 7000 +( -9 -67 -64 ) ( -4 -56 -96 ) ( -14 -78 -96 ) common/li_pv_v4a -18 -5 337 1 1 0 1 7000 +( -37 -60 -64 ) ( -4 -74 -96 ) ( -70 -46 -96 ) common/li_pv_v4a -18 -5 337 1 1 0 1 7000 +} +// brush 1256 +{ +( -92 -11 -64 ) ( 24 -96 -96 ) ( 34 -65 -64 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( -288 -11 -64 ) ( -232 -11 -64 ) ( -260 -96 -64 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( -65 -35 -64 ) ( -70 -46 -96 ) ( -60 -24 -96 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( -9 -67 -64 ) ( -4 -56 -96 ) ( -14 -78 -96 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( -37 -42 -64 ) ( -4 -56 -86 ) ( -70 -28 -86 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +} +// brush 1257 +{ +( -92 -11 -64 ) ( 24 -96 -96 ) ( 34 -65 -64 ) common/li_pv_v4a -18 -5 337 1 1 0 1 7000 +( 24 -96 -48 ) ( 24 -96 -96 ) ( -92 -11 -64 ) common/li_pv_v4a -18 -5 337 1 1 0 1 7000 +( -288 -11 -64 ) ( -232 -11 -64 ) ( -260 -96 -64 ) common/li_pv_v4a -18 -5 337 1 1 0 1 7000 +( -65 -35 -64 ) ( -70 -46 -96 ) ( -60 -24 -96 ) common/li_pv_v4a -18 -5 337 1 1 0 1 7000 +( -9 -67 -64 ) ( -4 -56 -96 ) ( -14 -78 -96 ) common/li_pv_v4a -18 -5 337 1 1 0 1 7000 +( -37 -42 -64 ) ( -70 -28 -86 ) ( -4 -56 -86 ) common/li_pv_v4a -18 -5 337 1 1 0 1 7000 +} +// brush 1258 +{ +( -92 -11 -64 ) ( 24 -96 -96 ) ( 34 -65 -64 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( 34 -65 -64 ) ( 24 -96 -96 ) ( 24 -96 -48 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( 24 -96 -48 ) ( 24 -96 -96 ) ( -92 -11 -64 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( -288 -11 -64 ) ( -232 -11 -64 ) ( -260 -96 -64 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( -9 -67 -64 ) ( -14 -78 -96 ) ( -4 -56 -96 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +} +// brush 1259 +{ +( -92 -11 -64 ) ( -108 -40 -96 ) ( 24 -96 -96 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( 24 -96 -96 ) ( -108 -40 -96 ) ( -108 -40 -48 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( -92 -11 -64 ) ( 24 -96 -96 ) ( 24 -96 -48 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( -288 -11 -64 ) ( -232 -11 -64 ) ( -260 -96 -64 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( -9 -67 -64 ) ( -14 -78 -96 ) ( -4 -56 -96 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +} +// brush 1260 +{ +( -92 -11 -64 ) ( -108 -40 -96 ) ( 24 -96 -96 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( -108 -40 -48 ) ( -108 -40 -96 ) ( -92 -11 -64 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( 24 -96 -96 ) ( -108 -40 -96 ) ( -108 -40 -48 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( -92 -11 -64 ) ( 24 -96 -96 ) ( 24 -96 -48 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( -288 -11 -64 ) ( -232 -11 -64 ) ( -260 -96 -64 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( -65 -35 -64 ) ( -60 -24 -96 ) ( -70 -46 -96 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +} +// brush 1261 +{ +( -92 -11 -64 ) ( 24 -96 -96 ) ( 34 -65 -64 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( 24 -96 -48 ) ( 24 -96 -96 ) ( -92 -11 -64 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( -288 -11 -64 ) ( -232 -11 -64 ) ( -260 -96 -64 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +( -65 -35 -64 ) ( -60 -24 -96 ) ( -70 -46 -96 ) bricks/c_tn_m1 -32 17 337 1 1 0 0 0 +} +// brush 1262 +{ +( -116 -59 -64 ) ( -132 -88 -96 ) ( 0 -144 -96 ) bricks/c_tn_m1 -87 24 203 1 1 0 0 0 +( -132 -88 -48 ) ( -132 -88 -96 ) ( -116 -59 -64 ) bricks/c_tn_m1 51 -23 203 1 1 0 0 0 +( 0 -144 -96 ) ( -132 -88 -96 ) ( -132 -88 -48 ) bricks/c_tn_m1 -41 -15 203 1 1 0 0 0 +( -116 -59 -64 ) ( 0 -144 -96 ) ( 0 -144 -48 ) bricks/c_tn_m1 -41 -15 203 1 1 0 0 0 +( -312 -59 -64 ) ( -256 -59 -64 ) ( -284 -144 -64 ) bricks/c_tn_m1 -87 24 203 1 1 0 0 0 +} +// brush 1263 +{ +( -116 -59 -64 ) ( 0 -144 -96 ) ( 10 -113 -64 ) bricks/c_tn_m1 -87 24 203 1 1 0 0 0 +( 10 -113 -64 ) ( 0 -144 -96 ) ( 0 -144 -48 ) bricks/c_tn_m1 51 -23 203 1 1 0 0 0 +( 0 -144 -48 ) ( 0 -144 -96 ) ( -116 -59 -64 ) bricks/c_tn_m1 -41 -15 203 1 1 0 0 0 +( -312 -59 -64 ) ( -256 -59 -64 ) ( -284 -144 -64 ) bricks/c_tn_m1 -87 24 203 1 1 0 0 0 +} +// brush 1264 +{ +( 491 224 -64 ) ( 213 224 -64 ) ( 216 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 448 256 -96 ) ( 488 256 -96 ) ( 488 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 216 256 -96 ) ( 213 224 -64 ) ( 491 224 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 216 256 -64 ) ( 213 224 -64 ) ( 216 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 256 232 -64 ) ( 256 240 -96 ) ( 256 224 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 1265 +{ +( -108 -40 -96 ) ( -210 66 -64 ) ( -232 40 -96 ) bricks/c_tn_m1 0 4 327 1 1 0 0 0 +( -232 40 -96 ) ( -210 66 -64 ) ( -232 40 -64 ) bricks/c_tn_m1 0 4 327 1 1 0 0 0 +( -108 -40 -96 ) ( -232 40 -96 ) ( -232 40 -48 ) bricks/c_tn_m1 0 4 327 1 1 0 0 0 +( -108 -40 -64 ) ( -210 66 -64 ) ( -108 -40 -96 ) bricks/c_tn_m1 0 4 327 1 1 0 0 0 +( -232 40 -64 ) ( -210 66 -64 ) ( -108 -40 -64 ) bricks/c_tn_m1 0 4 327 1 1 0 0 0 +} +// brush 1266 +{ +( -92 -11 -64 ) ( -210 66 -64 ) ( -108 -40 -96 ) bricks/c_tn_m1 0 4 327 1 1 0 0 0 +( -92 -11 -64 ) ( -108 -40 -96 ) ( -108 -40 -48 ) bricks/c_tn_m1 0 4 327 1 1 0 0 0 +( -108 -40 -96 ) ( -210 66 -64 ) ( -108 -40 -64 ) bricks/c_tn_m1 0 4 327 1 1 0 0 0 +( -108 -40 -64 ) ( -210 66 -64 ) ( -92 -11 -64 ) bricks/c_tn_m1 0 4 327 1 1 0 0 0 +} +// brush 1267 +{ +( -128 344 -64 ) ( -128 -24 -64 ) ( -256 -24 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 18 358 -208 ) ( 18 358 -224 ) ( 84 314 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 18 358 -80 ) ( 18 358 -64 ) ( 8 344 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 84 314 -64 ) ( 84 314 -80 ) ( 76 300 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 76 300 -144 ) ( 8 344 -144 ) ( 42 322 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1712 358 -272 ) ( 1680 358 -272 ) ( 1696 300 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1268 +{ +( 4 288 -64 ) ( 4 -80 -64 ) ( -124 -80 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 84 314 -272 ) ( 84 314 -288 ) ( 144 288 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 84 314 -80 ) ( 84 314 -64 ) ( 76 300 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 144 288 -64 ) ( 144 288 -80 ) ( 140 272 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 140 272 -144 ) ( 76 300 -144 ) ( 108 286 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1712 314 -272 ) ( 1680 314 -272 ) ( 1696 272 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1269 +{ +( 160 256 -64 ) ( 160 -112 -64 ) ( 32 -112 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 144 288 -208 ) ( 144 288 -224 ) ( 218 272 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 144 288 -80 ) ( 144 288 -64 ) ( 140 272 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 218 272 -64 ) ( 218 272 -80 ) ( 216 256 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 216 256 -144 ) ( 140 272 -144 ) ( 178 264 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1712 288 -272 ) ( 1680 288 -272 ) ( 1696 256 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1270 +{ +( 160 256 -64 ) ( 160 -112 -64 ) ( 32 -112 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 18 -112 -64 ) ( 18 -112 -80 ) ( 24 -96 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 18 -112 -288 ) ( 18 -112 -272 ) ( 178 -144 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 178 -144 -80 ) ( 178 -144 -64 ) ( 180 -128 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 24 -96 -80 ) ( 180 -128 -80 ) ( 102 -112 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -440 -96 -272 ) ( -472 -96 -272 ) ( -456 -144 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1271 +{ +( 4 288 -64 ) ( 4 -80 -64 ) ( -124 -80 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -116 -54 -64 ) ( -116 -54 -80 ) ( -108 -40 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -116 -54 -288 ) ( -116 -54 -272 ) ( 18 -112 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 18 -112 -80 ) ( 18 -112 -64 ) ( 24 -96 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -108 -40 -80 ) ( 24 -96 -80 ) ( -42 -68 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -440 -40 -272 ) ( -472 -40 -272 ) ( -456 -112 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1272 +{ +( -128 344 -64 ) ( -128 -24 -64 ) ( -256 -24 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -243 27 -64 ) ( -243 27 -272 ) ( -232 40 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -243 27 -272 ) ( -243 27 -64 ) ( -116 -54 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -116 -54 -80 ) ( -116 -54 -64 ) ( -108 -40 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -232 40 -80 ) ( -108 -40 -80 ) ( -170 0 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -440 40 -272 ) ( -472 40 -272 ) ( -456 -54 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1273 +{ +( 180 -128 -288 ) ( 180 -128 -272 ) ( 256 -128 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 24 -96 -288 ) ( 24 -96 -272 ) ( 180 -128 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -108 -40 -288 ) ( -108 -40 -272 ) ( 24 -96 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -232 40 -288 ) ( -232 40 -272 ) ( -108 -40 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -344 152 -288 ) ( -344 152 -272 ) ( -232 40 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1024 1408 -288 ) ( -512 1408 -288 ) ( -512 -128 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -512 -128 -272 ) ( -512 1408 -272 ) ( 1024 1408 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 256 120 -336 ) ( 256 64 -336 ) ( 256 92 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 256 256 -272 ) ( -16 368 -272 ) ( -16 368 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -288 96 -288 ) ( -16 368 -288 ) ( -16 368 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1274 +{ +( 180 -128 -64 ) ( 180 -128 -48 ) ( 256 -128 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 24 -96 -64 ) ( 24 -96 -48 ) ( 180 -128 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -108 -40 -64 ) ( -108 -40 -48 ) ( 24 -96 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -232 40 -64 ) ( -232 40 -48 ) ( -108 -40 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -344 152 -64 ) ( -344 152 -48 ) ( -232 40 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1024 1408 -64 ) ( -512 1408 -64 ) ( -512 -128 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -512 -128 -48 ) ( -512 1408 -48 ) ( 1024 1408 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 256 120 -112 ) ( 256 64 -112 ) ( 256 92 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 256 256 -48 ) ( -16 368 -48 ) ( -16 368 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -288 96 -64 ) ( -16 368 -64 ) ( -16 368 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1275 +{ +( 229 280 -64 ) ( 232 312 -96 ) ( 146 297 -64 ) bricks/c_tn_m1 0 0 168 1 1 0 0 0 +( 232 312 -48 ) ( 232 312 -96 ) ( 229 280 -64 ) bricks/c_tn_m1 0 0 168 1 1 0 0 0 +( 146 297 -64 ) ( 232 312 -96 ) ( 232 312 -48 ) bricks/c_tn_m1 0 0 168 1 1 0 0 0 +( 232 560 -64 ) ( 232 536 -64 ) ( 146 548 -64 ) bricks/c_tn_m1 0 0 168 1 1 0 0 0 +} +// brush 1276 +{ +( 232 312 -96 ) ( 156 328 -96 ) ( 146 297 -64 ) bricks/c_tn_m1 0 0 168 1 1 0 0 0 +( 156 328 -48 ) ( 156 328 -96 ) ( 232 312 -96 ) bricks/c_tn_m1 0 0 168 1 1 0 0 0 +( 146 297 -64 ) ( 156 328 -96 ) ( 156 328 -48 ) bricks/c_tn_m1 0 0 168 1 1 0 0 0 +( 232 312 -96 ) ( 146 297 -64 ) ( 146 297 -48 ) bricks/c_tn_m1 0 0 168 1 1 0 0 0 +( 232 560 -64 ) ( 232 536 -64 ) ( 146 548 -64 ) bricks/c_tn_m1 0 0 168 1 1 0 0 0 +} +// brush 1277 +{ +( 76 300 -96 ) ( -14 318 -64 ) ( 61 272 -64 ) bricks/c_tn_m1 -5 -4 147 1 1 0 0 0 +( 76 300 -48 ) ( 76 300 -96 ) ( 61 272 -64 ) bricks/c_tn_m1 -5 -4 147 1 1 0 0 0 +( 76 300 -64 ) ( -14 318 -64 ) ( 76 300 -96 ) bricks/c_tn_m1 -5 -4 147 1 1 0 0 0 +( 61 272 -64 ) ( -14 318 -64 ) ( 76 300 -64 ) bricks/c_tn_m1 -5 -4 147 1 1 0 0 0 +} +// brush 1278 +{ +( 8 344 -96 ) ( -14 318 -64 ) ( 76 300 -96 ) bricks/c_tn_m1 -5 -4 147 1 1 0 0 0 +( 8 344 -48 ) ( 8 344 -96 ) ( 76 300 -96 ) bricks/c_tn_m1 -5 -4 147 1 1 0 0 0 +( 8 344 -64 ) ( -14 318 -64 ) ( 8 344 -96 ) bricks/c_tn_m1 -5 -4 147 1 1 0 0 0 +( 76 300 -96 ) ( -14 318 -64 ) ( 76 300 -64 ) bricks/c_tn_m1 -5 -4 147 1 1 0 0 0 +( 76 300 -64 ) ( -14 318 -64 ) ( 8 344 -64 ) bricks/c_tn_m1 -5 -4 147 1 1 0 0 0 +} +// brush 1279 +{ +( 34 -65 -64 ) ( 180 -128 -96 ) ( 183 -96 -64 ) bricks/c_tn_m1 0 5 349 1 1 0 0 0 +( 183 -96 -64 ) ( 180 -128 -96 ) ( 180 -128 -48 ) bricks/c_tn_m1 0 5 349 1 1 0 0 0 +( 180 -128 -48 ) ( 180 -128 -96 ) ( 34 -65 -64 ) bricks/c_tn_m1 0 5 349 1 1 0 0 0 +( -288 -65 -64 ) ( -232 -65 -64 ) ( -260 -128 -64 ) bricks/c_tn_m1 0 5 349 1 1 0 0 0 +} +// brush 1280 +{ +( 34 -65 -64 ) ( 24 -96 -96 ) ( 180 -128 -96 ) bricks/c_tn_m1 0 5 349 1 1 0 0 0 +( 24 -96 -48 ) ( 24 -96 -96 ) ( 34 -65 -64 ) bricks/c_tn_m1 0 5 349 1 1 0 0 0 +( 180 -128 -96 ) ( 24 -96 -96 ) ( 24 -96 -48 ) bricks/c_tn_m1 0 5 349 1 1 0 0 0 +( 34 -65 -64 ) ( 180 -128 -96 ) ( 180 -128 -48 ) bricks/c_tn_m1 0 5 349 1 1 0 0 0 +( -288 -65 -64 ) ( -232 -65 -64 ) ( -260 -128 -64 ) bricks/c_tn_m1 0 5 349 1 1 0 0 0 +} +// brush 1281 +{ +( -256 -24 -272 ) ( -128 -24 -272 ) ( -128 344 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -128 344 -256 ) ( -128 -24 -256 ) ( -256 -24 -256 ) bricks/c_sr_mr5 0 -6 147 1 1 0 0 0 +( 8 344 -128 ) ( 8 344 -288 ) ( 76 300 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -2 332 -128 ) ( -2 332 -288 ) ( 8 344 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 68 286 -288 ) ( 68 286 -128 ) ( 76 300 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -2 332 -288 ) ( -2 332 -128 ) ( 68 286 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1282 +{ +( -124 -80 -272 ) ( 4 -80 -272 ) ( 4 288 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 4 288 -256 ) ( 4 -80 -256 ) ( -124 -80 -256 ) bricks/c_sr_mr5 0 13 156 1 1 0 0 0 +( 76 300 -128 ) ( 76 300 -288 ) ( 140 272 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 68 286 -128 ) ( 68 286 -288 ) ( 76 300 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 136 256 -288 ) ( 136 256 -128 ) ( 140 272 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 136 256 -128 ) ( 136 256 -288 ) ( 68 286 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1283 +{ +( 32 -112 -272 ) ( 160 -112 -272 ) ( 160 256 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 160 256 -256 ) ( 160 -112 -256 ) ( 32 -112 -256 ) bricks/c_sr_mr5 0 -9 168 1 1 0 0 0 +( 140 272 -128 ) ( 140 272 -288 ) ( 216 256 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 140 272 -288 ) ( 140 272 -128 ) ( 136 256 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 218 272 -128 ) ( 218 272 -144 ) ( 216 256 -144 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 136 256 -288 ) ( 136 256 -128 ) ( 214 240 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1284 +{ +( -256 -24 -272 ) ( -128 -24 -272 ) ( -128 344 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -128 344 -256 ) ( -128 -24 -256 ) ( -256 -24 -256 ) bricks/c_sr_mr5 0 4 327 1 1 0 0 0 +( -222 52 -272 ) ( -222 52 -256 ) ( -232 40 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -108 -40 -128 ) ( -108 -40 -288 ) ( -232 40 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -108 -40 -256 ) ( -101 -27 -256 ) ( -101 -27 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -222 52 -256 ) ( -222 52 -272 ) ( -101 -27 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1285 +{ +( -124 -80 -272 ) ( 4 -80 -272 ) ( 4 288 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 4 288 -256 ) ( 4 -80 -256 ) ( -124 -80 -256 ) bricks/c_sr_mr5 0 9 337 1 1 0 0 0 +( -108 -40 -272 ) ( -101 -27 -272 ) ( -101 -27 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -108 -40 -288 ) ( -108 -40 -128 ) ( 24 -96 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 28 -82 -128 ) ( 28 -82 -288 ) ( 24 -96 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 28 -82 -256 ) ( -101 -27 -256 ) ( -101 -27 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1286 +{ +( 32 -112 -272 ) ( 160 -112 -272 ) ( 160 256 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 160 256 -256 ) ( 160 -112 -256 ) ( 32 -112 -256 ) bricks/c_sr_mr5 0 32 348 1 1 0 0 0 +( 28 -82 -288 ) ( 28 -82 -128 ) ( 24 -96 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 180 -128 -128 ) ( 180 -128 -288 ) ( 24 -96 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 182 -112 -128 ) ( 182 -112 -288 ) ( 180 -128 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 28 -82 -128 ) ( 28 -82 -288 ) ( 182 -112 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1287 +{ +( -1472 1280 -64 ) ( -1448 1304 -64 ) ( -1232 1088 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1256 1064 -96 ) ( -1488 1296 -96 ) ( -1488 1296 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -1256 1064 -96 ) ( -1232 1088 -64 ) ( -1448 1304 -64 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -284 116 -64 ) ( -296 104 -96 ) ( -272 128 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +( -221 53 -64 ) ( -210 66 -96 ) ( -232 40 -96 ) bricks/c_tn_m1 0 -7 315 1 1 0 0 0 +} +// brush 1288 +{ +( -1236 1588 -64 ) ( -1260 1564 -64 ) ( -1476 1780 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1452 1804 -96 ) ( -1220 1572 -96 ) ( -1220 1572 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -1452 1804 -96 ) ( -1476 1780 -64 ) ( -1260 1564 -64 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -32 368 -64 ) ( -40 360 -96 ) ( -24 376 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +( -3 331 -64 ) ( 8 344 -96 ) ( -14 318 -96 ) bricks/c_tn_m1 0 8 135 1 1 0 0 0 +} +// brush 1289 +{ +( -1320 1328 -288 ) ( -1160 1328 -288 ) ( -1160 1472 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1160 1472 -272 ) ( -1160 1328 -272 ) ( -1320 1328 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1504 1312 -288 ) ( -1232 1584 -288 ) ( -1232 1584 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1224 1600 -288 ) ( -1184 1560 -288 ) ( -1184 1560 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1512 1296 -272 ) ( -1472 1256 -272 ) ( -1472 1256 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -152 232 -272 ) ( -40 344 -288 ) ( -264 120 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1290 +{ +( -257 59 -272 ) ( -229 59 -272 ) ( -229 75 -272 ) bricks/c_sr_mr5 64 -17 0 1 1 0 0 0 +( -229 75 -256 ) ( -229 59 -256 ) ( -257 59 -256 ) bricks/c_sr_mr5 0 -9 315 1 1 0 0 0 +( -1560 1368 -256 ) ( -1560 1368 -272 ) ( -1548 1378 -272 ) bricks/c_sr_mr5 96 15 0 1 1 0 0 0 +( -229 59 -256 ) ( -242 72 -256 ) ( -242 72 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -232 40 -256 ) ( -232 40 -272 ) ( -1560 1368 -272 ) bricks/c_sr_mr5 96 15 0 1 1 0 0 0 +( -232 40 -272 ) ( -232 40 -256 ) ( -222 52 -256 ) bricks/c_sr_mr5 96 15 0 1 1 0 0 0 +} +// brush 1291 +{ +( -264 44 -272 ) ( -248 44 -272 ) ( -248 56 -272 ) bricks/c_tn_m3 -116 0 0 0.710000 1 0 0 0 +( -248 56 -64 ) ( -248 44 -64 ) ( -264 44 -64 ) bricks/c_tn_m3 -116 0 0 0.710000 1 0 0 0 +( -1573 1357 -64 ) ( -1573 1357 -272 ) ( -1560 1368 -272 ) bricks/c_tn_m3 -116 0 0 0.710000 1 0 0 0 +( -240 48 -64 ) ( -244 52 -64 ) ( -244 52 -272 ) bricks/c_tn_m3 -116 0 0 0.710000 1 0 0 0 +( -243 27 -64 ) ( -243 27 -272 ) ( -1573 1357 -272 ) bricks/c_tn_m3 -116 0 0 0.710000 1 0 0 0 +( -243 27 -272 ) ( -243 27 -64 ) ( -232 40 -64 ) bricks/c_tn_m3 -116 0 0 0.710000 1 0 0 0 +} +// brush 1292 +{ +( -1320 1328 -64 ) ( -1160 1328 -64 ) ( -1160 1472 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1160 1472 -48 ) ( -1160 1328 -48 ) ( -1320 1328 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1504 1312 -64 ) ( -1232 1584 -64 ) ( -1232 1584 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1216 1592 -64 ) ( -1176 1552 -64 ) ( -1176 1552 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1512 1296 -48 ) ( -1472 1256 -48 ) ( -1472 1256 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -152 232 -48 ) ( -40 344 -64 ) ( -264 120 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1293 +{ +( 20 328 -272 ) ( 36 328 -272 ) ( 36 340 -272 ) bricks/c_tn_m3 12 0 0 0.710000 1 0 0 0 +( 36 340 -64 ) ( 36 328 -64 ) ( 20 328 -64 ) bricks/c_tn_m3 12 0 0 0.710000 1 0 0 0 +( -1256 1608 -64 ) ( -1256 1608 -272 ) ( -1242 1618 -272 ) bricks/c_tn_m3 12 0 0 0.710000 1 0 0 0 +( 44 332 -64 ) ( 40 336 -64 ) ( 40 336 -272 ) bricks/c_tn_m3 12 0 0 0.710000 1 0 0 0 +( 8 344 -64 ) ( 8 344 -272 ) ( -1256 1608 -272 ) bricks/c_tn_m3 12 0 0 0.710000 1 0 0 0 +( 8 344 -272 ) ( 8 344 -64 ) ( 18 358 -64 ) bricks/c_tn_m3 12 0 0 0.710000 1 0 0 0 +} +// brush 1294 +{ +( 4 320 -272 ) ( 32 320 -272 ) ( 32 336 -272 ) bricks/c_sr_mr5 64 -17 0 1 1 0 0 0 +( 32 336 -256 ) ( 32 320 -256 ) ( 4 320 -256 ) bricks/c_sr_mr5 0 6 135 1 1 0 0 0 +( -1268 1598 -256 ) ( -1268 1598 -272 ) ( -1256 1608 -272 ) bricks/c_sr_mr5 96 15 0 1 1 0 0 0 +( 32 320 -256 ) ( 19 333 -256 ) ( 19 333 -272 ) bricks/c_sr_mr5 96 15 0 1 1 0 0 0 +( -2 332 -256 ) ( -2 332 -272 ) ( -1268 1598 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -2 332 -272 ) ( -2 332 -256 ) ( 8 344 -256 ) bricks/c_sr_mr5 96 15 0 1 1 0 0 0 +} +// brush 1295 +{ +( 3072 272 -288 ) ( 2520 272 -288 ) ( 2520 -144 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2520 -144 -272 ) ( 2520 272 -272 ) ( 3072 272 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2520 -144 -272 ) ( 3072 -144 -272 ) ( 3072 -144 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3072 -144 -272 ) ( 3072 272 -272 ) ( 3072 272 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3072 272 -272 ) ( 2520 272 -272 ) ( 2520 272 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 256 112 -272 ) ( 256 -304 -272 ) ( 256 -304 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1296 +{ +( 3148 256 -64 ) ( 3145 224 -64 ) ( 3072 224 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2800 256 -64 ) ( 2448 256 -64 ) ( 2448 256 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3072 224 -64 ) ( 3145 224 -64 ) ( 3148 256 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3072 224 -96 ) ( 3072 256 -96 ) ( 3072 240 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3148 256 -96 ) ( 3145 224 -64 ) ( 3148 256 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 1297 +{ +( 3808 -585 -64 ) ( 3808 -439 -64 ) ( 3840 -436 -64 ) bricks/c_tn_m1 0 -1 90 1 1 0 0 0 +( 3840 -588 -96 ) ( 3808 -585 -64 ) ( 3840 -588 -64 ) bricks/c_tn_m1 0 -1 90 1 1 0 0 0 +( 3840 -584 -64 ) ( 3840 -440 -64 ) ( 3840 -440 -96 ) bricks/c_tn_m1 0 -1 90 1 1 0 0 0 +( 3840 -436 -64 ) ( 3808 -439 -64 ) ( 3840 -436 -96 ) bricks/c_tn_m1 0 -1 90 1 1 0 0 0 +( 3840 -436 -96 ) ( 3808 -439 -64 ) ( 3808 -585 -64 ) bricks/c_tn_m1 0 -1 90 1 1 0 0 0 +} +// brush 1298 +{ +( 3488 -469 -64 ) ( 3488 -555 -64 ) ( 3456 -552 -64 ) bricks/c_tn_m1 0 1 270 1 1 0 0 0 +( 3456 -552 -64 ) ( 3488 -555 -64 ) ( 3456 -552 -96 ) bricks/c_tn_m1 0 1 270 1 1 0 0 0 +( 3456 -472 -96 ) ( 3488 -469 -64 ) ( 3456 -472 -64 ) bricks/c_tn_m1 0 1 270 1 1 0 0 0 +( 3456 -472 -64 ) ( 3456 -552 -64 ) ( 3456 -552 -88 ) bricks/c_tn_m1 0 1 270 1 1 0 0 0 +( 3456 -552 -96 ) ( 3488 -555 -64 ) ( 3488 -469 -64 ) bricks/c_tn_m1 0 1 270 1 1 0 0 0 +} +// brush 1299 +{ +( 3296 240 -272 ) ( 3168 240 -272 ) ( 3168 -128 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3168 -128 -256 ) ( 3168 240 -256 ) ( 3296 240 -256 ) bricks/c_sr_mr5 0 -11 168 1 1 0 0 0 +( 3300 210 -288 ) ( 3300 210 -128 ) ( 3304 224 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3148 256 -128 ) ( 3148 256 -288 ) ( 3304 224 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3146 240 -128 ) ( 3146 240 -288 ) ( 3148 256 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3300 210 -128 ) ( 3300 210 -288 ) ( 3146 240 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1300 +{ +( 3452 208 -272 ) ( 3324 208 -272 ) ( 3324 -160 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3324 -160 -256 ) ( 3324 208 -256 ) ( 3452 208 -256 ) bricks/c_sr_mr5 0 6 157 1 1 0 0 0 +( 3436 168 -128 ) ( 3436 168 -288 ) ( 3430 156 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3436 168 -288 ) ( 3436 168 -128 ) ( 3304 224 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3300 210 -128 ) ( 3300 210 -288 ) ( 3304 224 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3430 156 -128 ) ( 3430 156 -288 ) ( 3300 210 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1301 +{ +( 3584 152 -272 ) ( 3456 152 -272 ) ( 3456 -216 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3456 -216 -256 ) ( 3456 152 -256 ) ( 3584 152 -256 ) bricks/c_sr_mr5 0 2 147 1 1 0 0 0 +( 3552 78 -288 ) ( 3552 78 -128 ) ( 3560 88 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3436 168 -128 ) ( 3436 168 -288 ) ( 3560 88 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3430 156 -128 ) ( 3430 156 -288 ) ( 3436 168 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3552 78 -128 ) ( 3552 78 -288 ) ( 3430 156 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1302 +{ +( 3736 0 -256 ) ( 3736 -128 -256 ) ( 3368 -128 -256 ) bricks/c_sr_mr5 0 5 123 1 1 0 0 0 +( 3368 -128 -272 ) ( 3736 -128 -272 ) ( 3736 0 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3662 -32 -240 ) ( 3662 -32 -400 ) ( 3672 -24 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3752 -148 -400 ) ( 3752 -148 -240 ) ( 3672 -24 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3740 -154 -400 ) ( 3740 -154 -240 ) ( 3752 -148 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3662 -32 -400 ) ( 3662 -32 -240 ) ( 3740 -154 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1303 +{ +( 3792 -132 -256 ) ( 3792 -260 -256 ) ( 3424 -260 -256 ) bricks/c_sr_mr5 0 -6 113 1 1 0 0 0 +( 3424 -260 -272 ) ( 3792 -260 -272 ) ( 3792 -132 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3752 -148 -400 ) ( 3752 -148 -240 ) ( 3740 -154 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3752 -148 -240 ) ( 3752 -148 -400 ) ( 3808 -280 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3794 -284 -400 ) ( 3794 -284 -240 ) ( 3808 -280 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3740 -154 -400 ) ( 3740 -154 -240 ) ( 3794 -284 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1304 +{ +( 3824 -288 -256 ) ( 3824 -416 -256 ) ( 3456 -416 -256 ) bricks/c_sr_mr5 0 13 102 1 1 0 0 0 +( 3456 -416 -272 ) ( 3824 -416 -272 ) ( 3824 -288 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3794 -284 -240 ) ( 3794 -284 -400 ) ( 3808 -280 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3840 -436 -400 ) ( 3840 -436 -240 ) ( 3808 -280 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3824 -438 -400 ) ( 3824 -438 -240 ) ( 3840 -436 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3794 -284 -400 ) ( 3794 -284 -240 ) ( 3824 -438 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1305 +{ +( 3840 -384 -256 ) ( 3840 -512 -256 ) ( 3472 -512 -256 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( 3472 -512 -272 ) ( 3840 -512 -272 ) ( 3840 -384 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3824 -438 -256 ) ( 3824 -438 -416 ) ( 3840 -436 -416 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3840 -588 -272 ) ( 3840 -588 -256 ) ( 3840 -436 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3840 -588 -256 ) ( 3840 -588 -272 ) ( 3824 -586 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3824 -438 -416 ) ( 3824 -438 -256 ) ( 3824 -512 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1306 +{ +( 3614 86 -272 ) ( 3560 86 -272 ) ( 3560 2 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3560 2 -256 ) ( 3560 86 -256 ) ( 3614 86 -256 ) bricks/c_sr_mr5 0 12 135 1 1 0 0 0 +( 3672 -24 -256 ) ( 3672 -24 -272 ) ( 3662 -32 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3672 -24 -272 ) ( 3672 -24 -256 ) ( 3560 88 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3560 88 -272 ) ( 3560 88 -256 ) ( 3552 78 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3608 22 -256 ) ( 3608 22 -272 ) ( 3552 78 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1307 +{ +( 3296 240 -272 ) ( 3168 240 -272 ) ( 3168 -128 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3168 -128 -256 ) ( 3168 240 -256 ) ( 3296 240 -256 ) bricks/c_sr_mr5 0 9 348 1 1 0 0 0 +( 3188 -144 -128 ) ( 3188 -144 -288 ) ( 3112 -128 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3188 -144 -288 ) ( 3188 -144 -128 ) ( 3192 -128 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3110 -144 -128 ) ( 3110 -144 -144 ) ( 3112 -128 -144 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3192 -128 -288 ) ( 3192 -128 -128 ) ( 3114 -112 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1308 +{ +( 3452 208 -272 ) ( 3324 208 -272 ) ( 3324 -160 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3324 -160 -256 ) ( 3324 208 -256 ) ( 3452 208 -256 ) bricks/c_sr_mr5 0 12 336 1 1 0 0 0 +( 3252 -172 -128 ) ( 3252 -172 -288 ) ( 3188 -144 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3260 -158 -128 ) ( 3260 -158 -288 ) ( 3252 -172 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3192 -128 -288 ) ( 3192 -128 -128 ) ( 3188 -144 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3192 -128 -128 ) ( 3192 -128 -288 ) ( 3260 -158 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1309 +{ +( 3584 152 -272 ) ( 3456 152 -272 ) ( 3456 -216 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3456 -216 -256 ) ( 3456 152 -256 ) ( 3584 152 -256 ) bricks/c_sr_mr5 0 -7 327 1 1 0 0 0 +( 3320 -216 -128 ) ( 3320 -216 -288 ) ( 3252 -172 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3330 -204 -128 ) ( 3330 -204 -288 ) ( 3320 -216 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3260 -158 -288 ) ( 3260 -158 -128 ) ( 3252 -172 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3330 -204 -288 ) ( 3330 -204 -128 ) ( 3260 -158 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1310 +{ +( 3736 0 -256 ) ( 3736 -128 -256 ) ( 3368 -128 -256 ) bricks/c_sr_mr5 0 -9 303 1 1 0 0 0 +( 3368 -128 -272 ) ( 3736 -128 -272 ) ( 3736 0 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3368 -264 -400 ) ( 3368 -264 -240 ) ( 3412 -332 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3380 -254 -400 ) ( 3380 -254 -240 ) ( 3368 -264 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3426 -324 -240 ) ( 3426 -324 -400 ) ( 3412 -332 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3380 -254 -240 ) ( 3380 -254 -400 ) ( 3426 -324 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1311 +{ +( 3792 -132 -256 ) ( 3792 -260 -256 ) ( 3424 -260 -256 ) bricks/c_sr_mr5 0 5 294 1 1 0 0 0 +( 3424 -260 -272 ) ( 3792 -260 -272 ) ( 3792 -132 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3412 -332 -400 ) ( 3412 -332 -240 ) ( 3440 -396 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3426 -324 -400 ) ( 3426 -324 -240 ) ( 3412 -332 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3456 -392 -240 ) ( 3456 -392 -400 ) ( 3440 -396 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3456 -392 -400 ) ( 3456 -392 -240 ) ( 3426 -324 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1312 +{ +( 3824 -288 -256 ) ( 3824 -416 -256 ) ( 3456 -416 -256 ) bricks/c_sr_mr5 0 -14 282 1 1 0 0 0 +( 3456 -416 -272 ) ( 3824 -416 -272 ) ( 3824 -288 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3440 -396 -400 ) ( 3440 -396 -240 ) ( 3456 -472 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3440 -396 -240 ) ( 3440 -396 -400 ) ( 3456 -392 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3440 -474 -400 ) ( 3440 -474 -384 ) ( 3456 -472 -384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3456 -392 -240 ) ( 3456 -392 -400 ) ( 3472 -470 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1313 +{ +( 3368 -204 -272 ) ( 3330 -204 -272 ) ( 3330 -264 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3330 -264 -256 ) ( 3330 -204 -256 ) ( 3368 -204 -256 ) bricks/c_sr_mr5 0 -15 315 1 1 0 0 0 +( 3320 -216 -272 ) ( 3320 -216 -256 ) ( 3368 -264 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3380 -254 -256 ) ( 3380 -254 -272 ) ( 3368 -264 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3380 -254 -272 ) ( 3380 -254 -256 ) ( 3330 -204 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3320 -216 -256 ) ( 3320 -216 -272 ) ( 3330 -204 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1314 +{ +( 3808 -439 -64 ) ( 3840 -436 -96 ) ( 3777 -290 -64 ) bricks/c_tn_m1 0 13 102 1 1 0 0 0 +( 3840 -436 -48 ) ( 3840 -436 -96 ) ( 3808 -439 -64 ) bricks/c_tn_m1 0 13 102 1 1 0 0 0 +( 3777 -290 -64 ) ( 3840 -436 -96 ) ( 3840 -436 -48 ) bricks/c_tn_m1 0 13 102 1 1 0 0 0 +( 3616 -439 -64 ) ( 3560 -439 -64 ) ( 3588 -290 -64 ) bricks/c_tn_m1 0 13 102 1 1 0 0 0 +} +// brush 1315 +{ +( 3840 -436 -96 ) ( 3808 -280 -96 ) ( 3777 -290 -64 ) bricks/c_tn_m1 0 13 102 1 1 0 0 0 +( 3777 -290 -64 ) ( 3808 -280 -96 ) ( 3808 -280 -48 ) bricks/c_tn_m1 0 13 102 1 1 0 0 0 +( 3808 -280 -48 ) ( 3808 -280 -96 ) ( 3840 -436 -96 ) bricks/c_tn_m1 0 13 102 1 1 0 0 0 +( 3840 -436 -48 ) ( 3840 -436 -96 ) ( 3777 -290 -64 ) bricks/c_tn_m1 0 13 102 1 1 0 0 0 +( 3616 -436 -64 ) ( 3560 -436 -64 ) ( 3588 -280 -64 ) bricks/c_tn_m1 0 13 102 1 1 0 0 0 +} +// brush 1316 +{ +( 3825 -266 -64 ) ( 3856 -256 -96 ) ( 3771 -140 -64 ) bricks/c_tn_m1 -32 16 113 1 1 0 0 0 +( 3856 -256 -48 ) ( 3856 -256 -96 ) ( 3825 -266 -64 ) bricks/c_tn_m1 200 12 113 1 1 0 0 0 +( 3771 -140 -64 ) ( 3856 -256 -96 ) ( 3856 -256 -48 ) bricks/c_tn_m1 104 24 113 1 1 0 0 0 +( 3664 -266 -64 ) ( 3608 -266 -64 ) ( 3636 -140 -64 ) bricks/c_tn_m1 -32 16 113 1 1 0 0 0 +} +// brush 1317 +{ +( 3856 -256 -96 ) ( 3800 -124 -96 ) ( 3771 -140 -64 ) bricks/c_tn_m1 -32 16 113 1 1 0 0 0 +( 3771 -140 -64 ) ( 3800 -124 -96 ) ( 3800 -124 -48 ) bricks/c_tn_m1 200 12 113 1 1 0 0 0 +( 3800 -124 -48 ) ( 3800 -124 -96 ) ( 3856 -256 -96 ) bricks/c_tn_m1 104 24 113 1 1 0 0 0 +( 3856 -256 -48 ) ( 3856 -256 -96 ) ( 3771 -140 -64 ) bricks/c_tn_m1 104 24 113 1 1 0 0 0 +( 3664 -256 -64 ) ( 3608 -256 -64 ) ( 3636 -124 -64 ) bricks/c_tn_m1 -32 16 113 1 1 0 0 0 +} +// brush 1318 +{ +( 3723 -164 -64 ) ( 3752 -148 -96 ) ( 3646 -45 -64 ) bricks/c_tn_m1 -57 6 123 1 1 0 0 0 +( 3752 -148 -48 ) ( 3752 -148 -96 ) ( 3723 -164 -64 ) bricks/c_tn_m1 -57 6 123 1 1 0 0 0 +( 3646 -45 -64 ) ( 3752 -148 -96 ) ( 3752 -148 -48 ) bricks/c_tn_m1 -57 6 123 1 1 0 0 0 +( 3616 -164 -64 ) ( 3560 -164 -64 ) ( 3588 -45 -64 ) bricks/c_tn_m1 -57 6 123 1 1 0 0 0 +} +// brush 1319 +{ +( 3752 -148 -96 ) ( 3672 -24 -96 ) ( 3646 -45 -64 ) bricks/c_tn_m1 -57 6 123 1 1 0 0 0 +( 3646 -45 -64 ) ( 3672 -24 -96 ) ( 3672 -24 -48 ) bricks/c_tn_m1 -57 6 123 1 1 0 0 0 +( 3672 -24 -48 ) ( 3672 -24 -96 ) ( 3752 -148 -96 ) bricks/c_tn_m1 -57 6 123 1 1 0 0 0 +( 3752 -148 -48 ) ( 3752 -148 -96 ) ( 3646 -45 -64 ) bricks/c_tn_m1 -57 6 123 1 1 0 0 0 +( 3616 -148 -64 ) ( 3560 -148 -64 ) ( 3588 -24 -64 ) bricks/c_tn_m1 -57 6 123 1 1 0 0 0 +} +// brush 1320 +{ +( 3444 187 -64 ) ( 3460 216 -96 ) ( 3328 272 -96 ) bricks/c_tn_m1 18 23 157 1 1 0 0 0 +( 3460 216 -48 ) ( 3460 216 -96 ) ( 3444 187 -64 ) bricks/c_tn_m1 119 4 157 1 1 0 0 0 +( 3328 272 -96 ) ( 3460 216 -96 ) ( 3460 216 -48 ) bricks/c_tn_m1 119 23 157 1 1 0 0 0 +( 3444 187 -64 ) ( 3328 272 -96 ) ( 3328 272 -48 ) bricks/c_tn_m1 119 23 157 1 1 0 0 0 +( 3640 187 -64 ) ( 3584 187 -64 ) ( 3612 272 -64 ) bricks/c_tn_m1 18 23 157 1 1 0 0 0 +} +// brush 1321 +{ +( 3444 187 -64 ) ( 3328 272 -96 ) ( 3318 241 -64 ) bricks/c_tn_m1 18 23 157 1 1 0 0 0 +( 3318 241 -64 ) ( 3328 272 -96 ) ( 3328 272 -48 ) bricks/c_tn_m1 119 4 157 1 1 0 0 0 +( 3328 272 -48 ) ( 3328 272 -96 ) ( 3444 187 -64 ) bricks/c_tn_m1 119 23 157 1 1 0 0 0 +( 3640 187 -64 ) ( 3584 187 -64 ) ( 3612 272 -64 ) bricks/c_tn_m1 18 23 157 1 1 0 0 0 +} +// brush 1322 +{ +( 3294 193 -64 ) ( 3304 224 -96 ) ( 3148 256 -96 ) bricks/c_tn_m1 138 -9 168 1 1 0 0 0 +( 3304 224 -48 ) ( 3304 224 -96 ) ( 3294 193 -64 ) bricks/c_tn_m1 138 -9 168 1 1 0 0 0 +( 3148 256 -96 ) ( 3304 224 -96 ) ( 3304 224 -48 ) bricks/c_tn_m1 138 -9 168 1 1 0 0 0 +( 3294 193 -64 ) ( 3148 256 -96 ) ( 3148 256 -48 ) bricks/c_tn_m1 138 -9 168 1 1 0 0 0 +( 3616 193 -64 ) ( 3560 193 -64 ) ( 3588 256 -64 ) bricks/c_tn_m1 138 -9 168 1 1 0 0 0 +} +// brush 1323 +{ +( 3294 193 -64 ) ( 3148 256 -96 ) ( 3145 224 -64 ) bricks/c_tn_m1 138 -9 168 1 1 0 0 0 +( 3145 224 -64 ) ( 3148 256 -96 ) ( 3148 256 -48 ) bricks/c_tn_m1 138 -9 168 1 1 0 0 0 +( 3148 256 -48 ) ( 3148 256 -96 ) ( 3294 193 -64 ) bricks/c_tn_m1 138 -9 168 1 1 0 0 0 +( 3616 193 -64 ) ( 3560 193 -64 ) ( 3588 256 -64 ) bricks/c_tn_m1 138 -9 168 1 1 0 0 0 +} +// brush 1324 +{ +( 3471 -386 -64 ) ( 3456 -472 -96 ) ( 3488 -469 -64 ) bricks/c_tn_m1 0 -13 282 1 1 0 0 0 +( 3488 -469 -64 ) ( 3456 -472 -96 ) ( 3456 -472 -48 ) bricks/c_tn_m1 0 -13 282 1 1 0 0 0 +( 3456 -472 -48 ) ( 3456 -472 -96 ) ( 3471 -386 -64 ) bricks/c_tn_m1 0 -13 282 1 1 0 0 0 +( 3456 -376 -64 ) ( 3456 -352 -64 ) ( 3488 -364 -64 ) bricks/c_tn_m1 0 -13 282 1 1 0 0 0 +} +// brush 1325 +{ +( 3471 -386 -64 ) ( 3440 -396 -96 ) ( 3456 -472 -96 ) bricks/c_tn_m1 0 -13 282 1 1 0 0 0 +( 3456 -472 -96 ) ( 3440 -396 -96 ) ( 3440 -396 -48 ) bricks/c_tn_m1 0 -13 282 1 1 0 0 0 +( 3440 -396 -48 ) ( 3440 -396 -96 ) ( 3471 -386 -64 ) bricks/c_tn_m1 0 -13 282 1 1 0 0 0 +( 3471 -386 -48 ) ( 3471 -386 -64 ) ( 3456 -472 -96 ) bricks/c_tn_m1 0 -13 282 1 1 0 0 0 +( 3440 -376 -64 ) ( 3440 -352 -64 ) ( 3471 -364 -64 ) bricks/c_tn_m1 0 -13 282 1 1 0 0 0 +} +// brush 1326 +{ +( 3392 -341 -64 ) ( 3392 -420 -96 ) ( 3423 -410 -64 ) bricks/c_tn_m1 133 -24 294 1 1 0 0 0 +( 3423 -410 -64 ) ( 3392 -420 -96 ) ( 3392 -420 -48 ) bricks/c_tn_m1 -41 -4 294 1 1 0 0 0 +( 3392 -420 -48 ) ( 3392 -420 -96 ) ( 3392 -341 -64 ) bricks/c_tn_m1 -237 -13 294 1 1 0 0 0 +( 3392 -400 -64 ) ( 3392 -376 -64 ) ( 3423 -388 -64 ) bricks/c_tn_m1 133 -24 294 1 1 0 0 0 +} +// brush 1327 +{ +( 3392 -341 -64 ) ( 3364 -356 -96 ) ( 3392 -420 -96 ) bricks/c_tn_m1 133 -24 294 1 1 0 0 0 +( 3392 -420 -96 ) ( 3364 -356 -96 ) ( 3364 -356 -48 ) bricks/c_tn_m1 -237 -13 294 1 1 0 0 0 +( 3364 -356 -48 ) ( 3364 -356 -96 ) ( 3392 -341 -64 ) bricks/c_tn_m1 -41 -4 294 1 1 0 0 0 +( 3392 -341 -64 ) ( 3392 -420 -96 ) ( 3392 -420 -48 ) bricks/c_tn_m1 -237 -13 294 1 1 0 0 0 +( 3364 -400 -64 ) ( 3364 -376 -64 ) ( 3392 -388 -64 ) bricks/c_tn_m1 133 -24 294 1 1 0 0 0 +} +// brush 1328 +{ +( 3393 -244 -64 ) ( 3412 -332 -96 ) ( 3440 -317 -64 ) bricks/c_tn_m1 0 -7 303 1 1 0 0 0 +( 3440 -317 -64 ) ( 3412 -332 -96 ) ( 3412 -332 -48 ) bricks/c_tn_m1 0 -7 303 1 1 0 0 0 +( 3412 -332 -48 ) ( 3412 -332 -96 ) ( 3393 -244 -64 ) bricks/c_tn_m1 0 -7 303 1 1 0 0 0 +( 3393 -376 -64 ) ( 3393 -352 -64 ) ( 3440 -364 -64 ) bricks/c_tn_m1 0 -7 303 1 1 0 0 0 +} +// brush 1329 +{ +( 3393 -244 -64 ) ( 3368 -264 -96 ) ( 3412 -332 -96 ) bricks/c_tn_m1 0 -7 303 1 1 0 0 0 +( 3412 -332 -96 ) ( 3368 -264 -96 ) ( 3368 -264 -48 ) bricks/c_tn_m1 0 -7 303 1 1 0 0 0 +( 3368 -264 -48 ) ( 3368 -264 -96 ) ( 3393 -244 -64 ) bricks/c_tn_m1 0 -7 303 1 1 0 0 0 +( 3393 -244 -64 ) ( 3412 -332 -96 ) ( 3412 -332 -48 ) bricks/c_tn_m1 0 -7 303 1 1 0 0 0 +( 3368 -376 -64 ) ( 3368 -352 -64 ) ( 3412 -364 -64 ) bricks/c_tn_m1 0 -7 303 1 1 0 0 0 +} +// brush 1330 +{ +( 3320 -216 -96 ) ( 3368 -264 -96 ) ( 3340 -191 -64 ) bricks/c_tn_m1 4 -13 315 1 1 0 0 0 +( 3368 -264 -48 ) ( 3368 -264 -96 ) ( 3320 -216 -96 ) bricks/c_tn_m1 4 -13 315 1 1 0 0 0 +( 3320 -216 -48 ) ( 3320 -216 -96 ) ( 3340 -191 -64 ) bricks/c_tn_m1 4 -13 315 1 1 0 0 0 +( 3340 -191 -64 ) ( 3368 -264 -96 ) ( 3368 -264 -48 ) bricks/c_tn_m1 4 -13 315 1 1 0 0 0 +( 3320 -376 -64 ) ( 3320 -352 -64 ) ( 3368 -364 -64 ) bricks/c_tn_m1 4 -13 315 1 1 0 0 0 +} +// brush 1331 +{ +( 3340 -191 -64 ) ( 3368 -264 -96 ) ( 3393 -244 -64 ) bricks/c_tn_m1 4 -13 315 1 1 0 0 0 +( 3393 -244 -64 ) ( 3368 -264 -96 ) ( 3368 -264 -48 ) bricks/c_tn_m1 4 -13 315 1 1 0 0 0 +( 3368 -264 -48 ) ( 3368 -264 -96 ) ( 3340 -191 -64 ) bricks/c_tn_m1 4 -13 315 1 1 0 0 0 +( 3340 -376 -64 ) ( 3340 -352 -64 ) ( 3393 -364 -64 ) bricks/c_tn_m1 4 -13 315 1 1 0 0 0 +} +// brush 1332 +{ +( 3252 -172 -96 ) ( 3320 -216 -96 ) ( 3340 -191 -64 ) bricks/c_tn_m1 0 -5 327 1 1 0 0 0 +( 3320 -216 -48 ) ( 3320 -216 -96 ) ( 3252 -172 -96 ) bricks/c_tn_m1 0 -5 327 1 1 0 0 0 +( 3340 -191 -64 ) ( 3320 -216 -96 ) ( 3320 -216 -48 ) bricks/c_tn_m1 0 -5 327 1 1 0 0 0 +( 3252 -172 -48 ) ( 3252 -172 -96 ) ( 3340 -191 -64 ) bricks/c_tn_m1 0 -5 327 1 1 0 0 0 +( 3252 -376 -64 ) ( 3252 -352 -64 ) ( 3340 -364 -64 ) bricks/c_tn_m1 0 -5 327 1 1 0 0 0 +} +// brush 1333 +{ +( 3267 -144 -64 ) ( 3252 -172 -96 ) ( 3340 -191 -64 ) bricks/c_tn_m1 0 -5 327 1 1 0 0 0 +( 3252 -172 -48 ) ( 3252 -172 -96 ) ( 3267 -144 -64 ) bricks/c_tn_m1 0 -5 327 1 1 0 0 0 +( 3340 -191 -64 ) ( 3252 -172 -96 ) ( 3252 -172 -48 ) bricks/c_tn_m1 0 -5 327 1 1 0 0 0 +( 3252 -376 -64 ) ( 3252 -352 -64 ) ( 3340 -364 -64 ) bricks/c_tn_m1 0 -5 327 1 1 0 0 0 +} +// brush 1334 +{ +( 3164 -200 -96 ) ( 3228 -228 -96 ) ( 3243 -200 -64 ) bricks/c_tn_m1 20 -23 336 1 1 0 0 0 +( 3228 -228 -48 ) ( 3228 -228 -96 ) ( 3164 -200 -96 ) bricks/c_tn_m1 -75 -8 336 1 1 0 0 0 +( 3243 -200 -64 ) ( 3228 -228 -96 ) ( 3228 -228 -48 ) bricks/c_tn_m1 -15 -26 336 1 1 0 0 0 +( 3164 -200 -48 ) ( 3164 -200 -96 ) ( 3243 -200 -64 ) bricks/c_tn_m1 -75 -8 336 1 1 0 0 0 +( 3164 -432 -64 ) ( 3164 -408 -64 ) ( 3243 -420 -64 ) bricks/c_tn_m1 20 -23 336 1 1 0 0 0 +} +// brush 1335 +{ +( 3174 -169 -64 ) ( 3164 -200 -96 ) ( 3243 -200 -64 ) bricks/c_tn_m1 20 -23 336 1 1 0 0 0 +( 3164 -200 -48 ) ( 3164 -200 -96 ) ( 3174 -169 -64 ) bricks/c_tn_m1 -15 -26 336 1 1 0 0 0 +( 3243 -200 -64 ) ( 3164 -200 -96 ) ( 3164 -200 -48 ) bricks/c_tn_m1 -75 -8 336 1 1 0 0 0 +( 3164 -432 -64 ) ( 3164 -408 -64 ) ( 3243 -420 -64 ) bricks/c_tn_m1 20 -23 336 1 1 0 0 0 +} +// brush 1336 +{ +( 3112 -128 -96 ) ( 3188 -144 -96 ) ( 3198 -113 -64 ) bricks/c_tn_m1 44 10 348 1 1 0 0 0 +( 3188 -144 -48 ) ( 3188 -144 -96 ) ( 3112 -128 -96 ) bricks/c_tn_m1 44 10 348 1 1 0 0 0 +( 3198 -113 -64 ) ( 3188 -144 -96 ) ( 3188 -144 -48 ) bricks/c_tn_m1 44 10 348 1 1 0 0 0 +( 3112 -128 -96 ) ( 3198 -113 -64 ) ( 3198 -113 -48 ) bricks/c_tn_m1 44 10 348 1 1 0 0 0 +( 3112 -376 -64 ) ( 3112 -352 -64 ) ( 3198 -364 -64 ) bricks/c_tn_m1 44 10 348 1 1 0 0 0 +} +// brush 1337 +{ +( 3115 -96 -64 ) ( 3112 -128 -96 ) ( 3198 -113 -64 ) bricks/c_tn_m1 44 10 348 1 1 0 0 0 +( 3112 -128 -48 ) ( 3112 -128 -96 ) ( 3115 -96 -64 ) bricks/c_tn_m1 44 10 348 1 1 0 0 0 +( 3198 -113 -64 ) ( 3112 -128 -96 ) ( 3112 -128 -48 ) bricks/c_tn_m1 44 10 348 1 1 0 0 0 +( 3112 -376 -64 ) ( 3112 -352 -64 ) ( 3198 -364 -64 ) bricks/c_tn_m1 44 10 348 1 1 0 0 0 +} +// brush 1338 +{ +( 3148 256 -64 ) ( 3148 256 -48 ) ( 3072 256 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3304 224 -64 ) ( 3304 224 -48 ) ( 3148 256 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3436 168 -64 ) ( 3436 168 -48 ) ( 3304 224 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3560 88 -64 ) ( 3560 88 -48 ) ( 3436 168 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3672 -24 -64 ) ( 3672 -24 -48 ) ( 3560 88 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3752 -148 -64 ) ( 3752 -148 -48 ) ( 3672 -24 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3808 -280 -64 ) ( 3808 -280 -48 ) ( 3752 -148 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3808 -280 -48 ) ( 3808 -280 -64 ) ( 3840 -436 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3840 -436 -48 ) ( 3840 -436 -64 ) ( 3840 -512 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2304 -1280 -64 ) ( 3840 -1280 -64 ) ( 3840 256 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3840 256 -48 ) ( 3840 -1280 -48 ) ( 2304 -1280 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3072 8 -112 ) ( 3072 64 -112 ) ( 3072 36 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3736 -512 -112 ) ( 3672 -512 -112 ) ( 3704 -512 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3456 -512 -64 ) ( 3072 -128 -64 ) ( 3264 -320 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1339 +{ +( 3148 256 -288 ) ( 3148 256 -272 ) ( 3072 256 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3304 224 -288 ) ( 3304 224 -272 ) ( 3148 256 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3436 168 -288 ) ( 3436 168 -272 ) ( 3304 224 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3560 88 -288 ) ( 3560 88 -272 ) ( 3436 168 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3672 -24 -288 ) ( 3672 -24 -272 ) ( 3560 88 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3752 -148 -288 ) ( 3752 -148 -272 ) ( 3672 -24 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3808 -280 -288 ) ( 3808 -280 -272 ) ( 3752 -148 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3808 -280 -272 ) ( 3808 -280 -288 ) ( 3840 -436 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3840 -436 -272 ) ( 3840 -436 -288 ) ( 3840 -512 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2304 -1280 -288 ) ( 3840 -1280 -288 ) ( 3840 256 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3840 256 -272 ) ( 3840 -1280 -272 ) ( 2304 -1280 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3072 8 -336 ) ( 3072 64 -336 ) ( 3072 36 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3736 -512 -336 ) ( 3672 -512 -336 ) ( 3704 -512 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3456 -512 -288 ) ( 3072 -128 -288 ) ( 3264 -320 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1340 +{ +( 3539 62 -64 ) ( 3436 168 -96 ) ( 3420 139 -64 ) bricks/c_tn_m1 -68 4 147 1 1 0 0 0 +( 3420 139 -64 ) ( 3436 168 -96 ) ( 3436 168 -48 ) bricks/c_tn_m1 -68 4 147 1 1 0 0 0 +( 3436 168 -48 ) ( 3436 168 -96 ) ( 3539 62 -64 ) bricks/c_tn_m1 -68 4 147 1 1 0 0 0 +( 3616 62 -64 ) ( 3560 62 -64 ) ( 3588 168 -64 ) bricks/c_tn_m1 -68 4 147 1 1 0 0 0 +} +// brush 1341 +{ +( 3539 62 -64 ) ( 3560 88 -96 ) ( 3436 168 -96 ) bricks/c_tn_m1 -68 4 147 1 1 0 0 0 +( 3560 88 -48 ) ( 3560 88 -96 ) ( 3539 62 -64 ) bricks/c_tn_m1 -68 4 147 1 1 0 0 0 +( 3436 168 -96 ) ( 3560 88 -96 ) ( 3560 88 -48 ) bricks/c_tn_m1 -68 4 147 1 1 0 0 0 +( 3539 62 -64 ) ( 3436 168 -96 ) ( 3436 168 -48 ) bricks/c_tn_m1 -68 4 147 1 1 0 0 0 +( 3616 62 -64 ) ( 3560 62 -64 ) ( 3588 168 -64 ) bricks/c_tn_m1 -68 4 147 1 1 0 0 0 +} +// brush 1342 +{ +( 3840 -384 -64 ) ( 3840 -512 -64 ) ( 3472 -512 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3856 -434 -224 ) ( 3856 -434 -208 ) ( 3840 -436 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3856 -590 -272 ) ( 3856 -590 -64 ) ( 3856 -434 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3856 -590 -64 ) ( 3856 -590 -272 ) ( 3840 -588 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3840 -492 -128 ) ( 3840 -512 -128 ) ( 3840 -502 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3768 -512 -272 ) ( 3800 -512 -272 ) ( 3784 -434 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1343 +{ +( 3824 -288 -64 ) ( 3824 -416 -64 ) ( 3456 -416 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3824 -274 -224 ) ( 3824 -274 -208 ) ( 3808 -280 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3824 -274 -128 ) ( 3824 -274 -144 ) ( 3856 -434 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3856 -434 -208 ) ( 3856 -434 -224 ) ( 3840 -436 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3808 -280 -272 ) ( 3840 -436 -272 ) ( 3824 -358 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3768 -436 -272 ) ( 3800 -436 -272 ) ( 3784 -274 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1344 +{ +( 3792 -132 -64 ) ( 3792 -260 -64 ) ( 3424 -260 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3766 -140 -224 ) ( 3766 -140 -208 ) ( 3752 -148 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3766 -140 -128 ) ( 3766 -140 -144 ) ( 3824 -274 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3824 -274 -208 ) ( 3824 -274 -224 ) ( 3808 -280 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3752 -148 -208 ) ( 3808 -280 -208 ) ( 3780 -214 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3768 -280 -272 ) ( 3800 -280 -272 ) ( 3784 -140 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1345 +{ +( 3736 0 -64 ) ( 3736 -128 -64 ) ( 3368 -128 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3684 -14 -80 ) ( 3684 -14 -64 ) ( 3672 -24 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3684 -14 -128 ) ( 3684 -14 -144 ) ( 3766 -140 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3766 -140 -208 ) ( 3766 -140 -224 ) ( 3752 -148 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3672 -24 -208 ) ( 3752 -148 -208 ) ( 3712 -86 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3768 -148 -272 ) ( 3800 -148 -272 ) ( 3784 -14 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1346 +{ +( 3570 -24 -64 ) ( 3570 100 -64 ) ( 3672 100 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3560 88 -224 ) ( 3560 88 -64 ) ( 3672 -24 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3684 -14 -64 ) ( 3684 -14 -224 ) ( 3672 -24 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3684 -14 -288 ) ( 3684 -14 -128 ) ( 3570 100 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3560 88 -64 ) ( 3560 88 -224 ) ( 3570 100 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3768 -24 -272 ) ( 3800 -24 -272 ) ( 3784 100 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1347 +{ +( 3456 -216 -64 ) ( 3456 152 -64 ) ( 3584 152 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3570 100 -208 ) ( 3570 100 -224 ) ( 3560 88 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3570 100 -288 ) ( 3570 100 -272 ) ( 3444 182 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3444 182 -80 ) ( 3444 182 -64 ) ( 3436 168 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3560 88 -80 ) ( 3436 168 -80 ) ( 3498 128 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3768 88 -272 ) ( 3800 88 -272 ) ( 3784 182 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1348 +{ +( 3324 -160 -64 ) ( 3324 208 -64 ) ( 3452 208 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3444 182 -64 ) ( 3444 182 -80 ) ( 3436 168 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3444 182 -288 ) ( 3444 182 -272 ) ( 3310 240 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3310 240 -80 ) ( 3310 240 -64 ) ( 3304 224 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3436 168 -80 ) ( 3304 224 -80 ) ( 3370 196 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3768 168 -272 ) ( 3800 168 -272 ) ( 3784 240 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1349 +{ +( 3168 -128 -64 ) ( 3168 240 -64 ) ( 3296 240 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3310 240 -64 ) ( 3310 240 -80 ) ( 3304 224 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3310 240 -288 ) ( 3310 240 -272 ) ( 3150 272 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3150 272 -80 ) ( 3150 272 -64 ) ( 3148 256 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3304 224 -80 ) ( 3148 256 -80 ) ( 3226 240 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3768 224 -272 ) ( 3800 224 -272 ) ( 3784 272 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1350 +{ +( 3168 -128 -64 ) ( 3168 240 -64 ) ( 3296 240 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3184 -160 -208 ) ( 3184 -160 -224 ) ( 3110 -144 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3184 -160 -80 ) ( 3184 -160 -64 ) ( 3188 -144 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3110 -144 -64 ) ( 3110 -144 -80 ) ( 3112 -128 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3112 -128 -144 ) ( 3188 -144 -144 ) ( 3150 -136 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1616 -160 -272 ) ( 1648 -160 -272 ) ( 1632 -128 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1351 +{ +( 3324 -160 -64 ) ( 3324 208 -64 ) ( 3452 208 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3244 -186 -272 ) ( 3244 -186 -288 ) ( 3184 -160 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3244 -186 -80 ) ( 3244 -186 -64 ) ( 3252 -172 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3184 -160 -64 ) ( 3184 -160 -80 ) ( 3188 -144 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3188 -144 -144 ) ( 3252 -172 -144 ) ( 3220 -158 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1616 -186 -272 ) ( 1648 -186 -272 ) ( 1632 -144 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1352 +{ +( 3456 -216 -64 ) ( 3456 152 -64 ) ( 3584 152 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3310 -230 -208 ) ( 3310 -230 -224 ) ( 3244 -186 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3310 -230 -80 ) ( 3310 -230 -64 ) ( 3320 -216 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3244 -186 -64 ) ( 3244 -186 -80 ) ( 3252 -172 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3252 -172 -144 ) ( 3320 -216 -144 ) ( 3286 -194 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1616 -230 -272 ) ( 1648 -230 -272 ) ( 1632 -172 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1353 +{ +( 3580 -296 -64 ) ( 3580 72 -64 ) ( 3708 72 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3354 -274 -272 ) ( 3354 -274 -288 ) ( 3310 -230 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3354 -274 -80 ) ( 3354 -274 -64 ) ( 3368 -264 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3310 -230 -64 ) ( 3310 -230 -80 ) ( 3320 -216 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3320 -216 -144 ) ( 3368 -264 -144 ) ( 3344 -240 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1616 -274 -272 ) ( 1648 -274 -272 ) ( 1632 -216 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1354 +{ +( 3736 0 -64 ) ( 3736 -128 -64 ) ( 3368 -128 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3354 -274 -224 ) ( 3354 -274 -208 ) ( 3398 -340 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3354 -274 -64 ) ( 3354 -274 -80 ) ( 3368 -264 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3398 -340 -80 ) ( 3398 -340 -64 ) ( 3412 -332 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3412 -332 -128 ) ( 3368 -264 -128 ) ( 3390 -298 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1616 -340 -272 ) ( 1648 -340 -272 ) ( 1632 -264 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1355 +{ +( 3792 -132 -64 ) ( 3792 -260 -64 ) ( 3424 -260 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3398 -340 -288 ) ( 3398 -340 -272 ) ( 3424 -400 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3398 -340 -64 ) ( 3398 -340 -80 ) ( 3412 -332 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3424 -400 -80 ) ( 3424 -400 -64 ) ( 3440 -396 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3440 -396 -128 ) ( 3412 -332 -128 ) ( 3426 -364 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1616 -400 -272 ) ( 1648 -400 -272 ) ( 1632 -332 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1356 +{ +( 3824 -288 -64 ) ( 3824 -416 -64 ) ( 3456 -416 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3424 -400 -224 ) ( 3424 -400 -208 ) ( 3440 -474 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3424 -400 -64 ) ( 3424 -400 -80 ) ( 3440 -396 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3440 -474 -224 ) ( 3440 -474 -208 ) ( 3456 -472 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3456 -472 -272 ) ( 3440 -396 -272 ) ( 3448 -434 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1616 -474 -272 ) ( 1648 -474 -272 ) ( 1632 -396 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1357 +{ +( 3420 139 -64 ) ( 3436 168 -96 ) ( 3304 224 -96 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3304 224 -96 ) ( 3436 168 -96 ) ( 3436 168 -48 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3616 139 -64 ) ( 3560 139 -64 ) ( 3588 224 -64 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3393 163 -64 ) ( 3398 174 -96 ) ( 3388 152 -96 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3337 195 -64 ) ( 3332 184 -96 ) ( 3342 206 -96 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3365 188 -64 ) ( 3398 174 -96 ) ( 3332 202 -96 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +} +// brush 1358 +{ +( 3420 139 -64 ) ( 3436 168 -96 ) ( 3304 224 -96 ) common/li_pv_v4a -13 1 157 1 1 0 1 7000 +( 3420 139 -64 ) ( 3304 224 -96 ) ( 3304 224 -48 ) common/li_pv_v4a -13 1 157 1 1 0 1 7000 +( 3616 139 -64 ) ( 3560 139 -64 ) ( 3588 224 -64 ) common/li_pv_v4a -13 1 157 1 1 0 1 7000 +( 3393 163 -64 ) ( 3398 174 -96 ) ( 3388 152 -96 ) common/li_pv_v4a -13 1 157 1 1 0 1 7000 +( 3337 195 -64 ) ( 3332 184 -96 ) ( 3342 206 -96 ) common/li_pv_v4a -13 1 157 1 1 0 1 7000 +( 3365 188 -64 ) ( 3332 202 -96 ) ( 3398 174 -96 ) common/li_pv_v4a -13 1 157 1 1 0 1 7000 +} +// brush 1359 +{ +( 3420 139 -64 ) ( 3304 224 -96 ) ( 3294 193 -64 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3616 139 -64 ) ( 3560 139 -64 ) ( 3588 224 -64 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3393 163 -64 ) ( 3398 174 -96 ) ( 3388 152 -96 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3337 195 -64 ) ( 3332 184 -96 ) ( 3342 206 -96 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3365 170 -64 ) ( 3332 184 -86 ) ( 3398 156 -86 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +} +// brush 1360 +{ +( 3420 139 -64 ) ( 3304 224 -96 ) ( 3294 193 -64 ) common/li_pv_v4a -13 1 157 1 1 0 1 7000 +( 3304 224 -48 ) ( 3304 224 -96 ) ( 3420 139 -64 ) common/li_pv_v4a -13 1 157 1 1 0 1 7000 +( 3616 139 -64 ) ( 3560 139 -64 ) ( 3588 224 -64 ) common/li_pv_v4a -13 1 157 1 1 0 1 7000 +( 3393 163 -64 ) ( 3398 174 -96 ) ( 3388 152 -96 ) common/li_pv_v4a -13 1 157 1 1 0 1 7000 +( 3337 195 -64 ) ( 3332 184 -96 ) ( 3342 206 -96 ) common/li_pv_v4a -13 1 157 1 1 0 1 7000 +( 3365 170 -64 ) ( 3398 156 -86 ) ( 3332 184 -86 ) common/li_pv_v4a -13 1 157 1 1 0 1 7000 +} +// brush 1361 +{ +( 3420 139 -64 ) ( 3304 224 -96 ) ( 3294 193 -64 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3294 193 -64 ) ( 3304 224 -96 ) ( 3304 224 -48 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3304 224 -48 ) ( 3304 224 -96 ) ( 3420 139 -64 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3616 139 -64 ) ( 3560 139 -64 ) ( 3588 224 -64 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3337 195 -64 ) ( 3342 206 -96 ) ( 3332 184 -96 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +} +// brush 1362 +{ +( 3420 139 -64 ) ( 3436 168 -96 ) ( 3304 224 -96 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3304 224 -96 ) ( 3436 168 -96 ) ( 3436 168 -48 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3420 139 -64 ) ( 3304 224 -96 ) ( 3304 224 -48 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3616 139 -64 ) ( 3560 139 -64 ) ( 3588 224 -64 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3337 195 -64 ) ( 3342 206 -96 ) ( 3332 184 -96 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +} +// brush 1363 +{ +( 3420 139 -64 ) ( 3436 168 -96 ) ( 3304 224 -96 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3436 168 -48 ) ( 3436 168 -96 ) ( 3420 139 -64 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3304 224 -96 ) ( 3436 168 -96 ) ( 3436 168 -48 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3420 139 -64 ) ( 3304 224 -96 ) ( 3304 224 -48 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3616 139 -64 ) ( 3560 139 -64 ) ( 3588 224 -64 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3393 163 -64 ) ( 3388 152 -96 ) ( 3398 174 -96 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +} +// brush 1364 +{ +( 3420 139 -64 ) ( 3304 224 -96 ) ( 3294 193 -64 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3304 224 -48 ) ( 3304 224 -96 ) ( 3420 139 -64 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3616 139 -64 ) ( 3560 139 -64 ) ( 3588 224 -64 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +( 3393 163 -64 ) ( 3388 152 -96 ) ( 3398 174 -96 ) bricks/c_tn_m1 -91 7 157 1 1 0 0 0 +} +// brush 1365 +{ +( 3682 -9 -64 ) ( 3596 124 -96 ) ( 3575 98 -64 ) bricks/c_tn_m1 0 16 135 1 1 0 0 0 +( 3575 98 -64 ) ( 3596 124 -96 ) ( 3596 124 -48 ) bricks/c_tn_m1 28 9 135 1 1 0 0 0 +( 3596 124 -48 ) ( 3596 124 -96 ) ( 3682 -9 -64 ) bricks/c_tn_m1 28 9 135 1 1 0 0 0 +( 3652 -9 -64 ) ( 3596 -9 -64 ) ( 3624 124 -64 ) bricks/c_tn_m1 0 16 135 1 1 0 0 0 +} +// brush 1366 +{ +( 3708 12 -96 ) ( 3596 124 -96 ) ( 3682 -9 -64 ) bricks/c_tn_m1 0 16 135 1 1 0 0 0 +( 3708 12 -48 ) ( 3708 12 -96 ) ( 3682 -9 -64 ) bricks/c_tn_m1 27 10 135 1 1 0 0 0 +( 3596 124 -48 ) ( 3596 124 -96 ) ( 3708 12 -96 ) bricks/c_tn_m1 28 9 135 1 1 0 0 0 +( 3682 -9 -64 ) ( 3596 124 -96 ) ( 3596 124 -48 ) bricks/c_tn_m1 28 9 135 1 1 0 0 0 +( 3652 -9 -64 ) ( 3596 -9 -64 ) ( 3624 124 -64 ) bricks/c_tn_m1 0 16 135 1 1 0 0 0 +} +// brush 1367 +{ +( 3777 -290 -64 ) ( 3808 -280 -96 ) ( 3723 -164 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3723 -164 -64 ) ( 3808 -280 -96 ) ( 3808 -280 -48 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3808 4 -64 ) ( 3723 -24 -64 ) ( 3723 32 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3758 -186 -96 ) ( 3736 -196 -96 ) ( 3747 -191 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +} +// brush 1368 +{ +( 3808 -280 -96 ) ( 3752 -148 -96 ) ( 3723 -164 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3723 -164 -64 ) ( 3752 -148 -96 ) ( 3752 -148 -48 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3752 -148 -48 ) ( 3752 -148 -96 ) ( 3808 -280 -96 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3808 -280 -48 ) ( 3808 -280 -96 ) ( 3723 -164 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3808 4 -64 ) ( 3723 -24 -64 ) ( 3723 32 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3758 -186 -96 ) ( 3736 -196 -96 ) ( 3747 -191 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +} +// brush 1369 +{ +( 3808 -280 -96 ) ( 3752 -148 -96 ) ( 3723 -164 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3752 -148 -48 ) ( 3752 -148 -96 ) ( 3808 -280 -96 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3808 -280 -48 ) ( 3808 -280 -96 ) ( 3723 -164 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3808 4 -64 ) ( 3723 -24 -64 ) ( 3723 32 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3768 -252 -96 ) ( 3790 -242 -96 ) ( 3779 -247 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +} +// brush 1370 +{ +( 3777 -290 -64 ) ( 3808 -280 -96 ) ( 3723 -164 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3808 -280 -48 ) ( 3808 -280 -96 ) ( 3777 -290 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3723 -164 -64 ) ( 3808 -280 -96 ) ( 3808 -280 -48 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3808 4 -64 ) ( 3723 -24 -64 ) ( 3723 32 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3768 -252 -96 ) ( 3790 -242 -96 ) ( 3779 -247 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +} +// brush 1371 +{ +( 3777 -290 -64 ) ( 3808 -280 -96 ) ( 3723 -164 -64 ) common/li_pv_v4a -24 6 113 1 1 0 1 7000 +( 3723 -164 -64 ) ( 3808 -280 -96 ) ( 3808 -280 -48 ) common/li_pv_v4a -24 6 113 1 1 0 1 7000 +( 3808 4 -64 ) ( 3723 -24 -64 ) ( 3723 32 -64 ) common/li_pv_v4a -24 6 113 1 1 0 1 7000 +( 3736 -196 -96 ) ( 3758 -186 -96 ) ( 3747 -191 -64 ) common/li_pv_v4a -24 6 113 1 1 0 1 7000 +( 3790 -242 -96 ) ( 3768 -252 -96 ) ( 3779 -247 -64 ) common/li_pv_v4a -24 6 113 1 1 0 1 7000 +( 3768 -252 -86 ) ( 3740 -186 -86 ) ( 3754 -219 -64 ) common/li_pv_v4a -24 6 113 1 1 0 1 7000 +} +// brush 1372 +{ +( 3777 -290 -64 ) ( 3808 -280 -96 ) ( 3723 -164 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3808 4 -64 ) ( 3723 -24 -64 ) ( 3723 32 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3736 -196 -96 ) ( 3758 -186 -96 ) ( 3747 -191 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3790 -242 -96 ) ( 3768 -252 -96 ) ( 3779 -247 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3740 -186 -86 ) ( 3768 -252 -86 ) ( 3754 -219 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +} +// brush 1373 +{ +( 3808 -280 -96 ) ( 3752 -148 -96 ) ( 3723 -164 -64 ) common/li_pv_v4a -24 6 113 1 1 0 1 7000 +( 3808 -280 -48 ) ( 3808 -280 -96 ) ( 3723 -164 -64 ) common/li_pv_v4a -24 6 113 1 1 0 1 7000 +( 3808 4 -64 ) ( 3723 -24 -64 ) ( 3723 32 -64 ) common/li_pv_v4a -24 6 113 1 1 0 1 7000 +( 3736 -196 -96 ) ( 3758 -186 -96 ) ( 3747 -191 -64 ) common/li_pv_v4a -24 6 113 1 1 0 1 7000 +( 3790 -242 -96 ) ( 3768 -252 -96 ) ( 3779 -247 -64 ) common/li_pv_v4a -24 6 113 1 1 0 1 7000 +( 3758 -186 -96 ) ( 3786 -252 -96 ) ( 3772 -219 -64 ) common/li_pv_v4a -24 6 113 1 1 0 1 7000 +} +// brush 1374 +{ +( 3808 -280 -96 ) ( 3752 -148 -96 ) ( 3723 -164 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3752 -148 -48 ) ( 3752 -148 -96 ) ( 3808 -280 -96 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3808 4 -64 ) ( 3723 -24 -64 ) ( 3723 32 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3736 -196 -96 ) ( 3758 -186 -96 ) ( 3747 -191 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3790 -242 -96 ) ( 3768 -252 -96 ) ( 3779 -247 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +( 3786 -252 -96 ) ( 3758 -186 -96 ) ( 3772 -219 -64 ) bricks/c_tn_m1 0 -4 113 1 1 0 0 0 +} +// brush 1375 +{ +( 3840 -640 -272 ) ( 3840 -512 -272 ) ( 3472 -512 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3472 -512 -256 ) ( 3840 -512 -256 ) ( 3840 -640 -256 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( 3456 -550 -272 ) ( 3456 -550 -288 ) ( 3456 -512 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3472 -554 -256 ) ( 3472 -554 -272 ) ( 3456 -552 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3472 -470 -256 ) ( 3472 -470 -272 ) ( 3472 -554 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3472 -470 -272 ) ( 3472 -470 -256 ) ( 3456 -472 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1376 +{ +( 3840 -384 -64 ) ( 3840 -512 -64 ) ( 3472 -512 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3440 -512 -288 ) ( 3440 -474 -288 ) ( 3440 -474 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3456 -552 -64 ) ( 3456 -552 -272 ) ( 3440 -550 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3456 -472 -64 ) ( 3456 -472 -272 ) ( 3456 -552 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3456 -1952 -272 ) ( 3440 -1936 -272 ) ( 3440 -1968 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3456 -472 -272 ) ( 3456 -472 -64 ) ( 3440 -474 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1377 +{ +( 3296 -1264 -64 ) ( 3168 -1264 -64 ) ( 3168 -896 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3184 -864 -224 ) ( 3184 -864 -208 ) ( 3110 -880 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3184 -864 -64 ) ( 3184 -864 -80 ) ( 3188 -880 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3110 -880 -224 ) ( 3110 -880 -208 ) ( 3112 -896 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3112 -896 -272 ) ( 3188 -880 -272 ) ( 3150 -888 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3110 944 -272 ) ( 3110 912 -272 ) ( 3188 928 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1378 +{ +( 3452 -1232 -64 ) ( 3324 -1232 -64 ) ( 3324 -864 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3244 -838 -288 ) ( 3244 -838 -272 ) ( 3184 -864 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3244 -838 -64 ) ( 3244 -838 -80 ) ( 3252 -852 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3184 -864 -80 ) ( 3184 -864 -64 ) ( 3188 -880 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3188 -880 -128 ) ( 3252 -852 -128 ) ( 3220 -866 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3184 944 -272 ) ( 3184 912 -272 ) ( 3252 928 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1379 +{ +( 3584 -1176 -64 ) ( 3456 -1176 -64 ) ( 3456 -808 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3310 -794 -224 ) ( 3310 -794 -208 ) ( 3244 -838 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3310 -794 -64 ) ( 3310 -794 -80 ) ( 3320 -808 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3244 -838 -80 ) ( 3244 -838 -64 ) ( 3252 -852 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3252 -852 -128 ) ( 3320 -808 -128 ) ( 3286 -830 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3244 944 -272 ) ( 3244 912 -272 ) ( 3320 928 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1380 +{ +( 3288 -1020 -64 ) ( 3656 -1020 -64 ) ( 3656 -1148 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3310 -794 -272 ) ( 3310 -794 -288 ) ( 3354 -750 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3310 -794 -80 ) ( 3310 -794 -64 ) ( 3320 -808 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3354 -750 -64 ) ( 3354 -750 -80 ) ( 3368 -760 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3368 -760 -144 ) ( 3320 -808 -144 ) ( 3344 -784 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3310 944 -272 ) ( 3310 912 -272 ) ( 3368 928 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1381 +{ +( 3368 -896 -64 ) ( 3736 -896 -64 ) ( 3736 -1024 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3354 -750 -208 ) ( 3354 -750 -224 ) ( 3398 -684 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3354 -750 -80 ) ( 3354 -750 -64 ) ( 3368 -760 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3398 -684 -64 ) ( 3398 -684 -80 ) ( 3412 -692 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3412 -692 -144 ) ( 3368 -760 -144 ) ( 3390 -726 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3354 944 -272 ) ( 3354 912 -272 ) ( 3412 928 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1382 +{ +( 3424 -764 -64 ) ( 3792 -764 -64 ) ( 3792 -892 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3398 -684 -272 ) ( 3398 -684 -288 ) ( 3424 -624 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3398 -684 -80 ) ( 3398 -684 -64 ) ( 3412 -692 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3424 -624 -64 ) ( 3424 -624 -80 ) ( 3440 -628 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3440 -628 -144 ) ( 3412 -692 -144 ) ( 3426 -660 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3398 944 -272 ) ( 3398 912 -272 ) ( 3440 928 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1383 +{ +( 3456 -608 -64 ) ( 3824 -608 -64 ) ( 3824 -736 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3424 -624 -208 ) ( 3424 -624 -224 ) ( 3440 -550 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3424 -624 -80 ) ( 3424 -624 -64 ) ( 3440 -628 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3440 -550 -64 ) ( 3440 -550 -80 ) ( 3456 -552 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3456 -552 -144 ) ( 3440 -628 -144 ) ( 3448 -590 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3424 944 -272 ) ( 3424 912 -272 ) ( 3456 928 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1384 +{ +( 3456 -608 -64 ) ( 3824 -608 -64 ) ( 3824 -736 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3824 -750 -64 ) ( 3824 -750 -80 ) ( 3808 -744 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3824 -750 -288 ) ( 3824 -750 -272 ) ( 3856 -590 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3856 -590 -80 ) ( 3856 -590 -64 ) ( 3840 -588 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3808 -744 -80 ) ( 3840 -588 -80 ) ( 3824 -666 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3808 -1208 -272 ) ( 3808 -1240 -272 ) ( 3856 -1224 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1385 +{ +( 3424 -764 -64 ) ( 3792 -764 -64 ) ( 3792 -892 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3766 -884 -64 ) ( 3766 -884 -80 ) ( 3752 -876 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3766 -884 -288 ) ( 3766 -884 -272 ) ( 3824 -750 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3824 -750 -80 ) ( 3824 -750 -64 ) ( 3808 -744 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3752 -876 -80 ) ( 3808 -744 -80 ) ( 3780 -810 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3752 -1208 -272 ) ( 3752 -1240 -272 ) ( 3824 -1224 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1386 +{ +( 3368 -896 -64 ) ( 3736 -896 -64 ) ( 3736 -1024 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3684 -1010 -208 ) ( 3684 -1010 -224 ) ( 3672 -1000 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3684 -1010 -288 ) ( 3684 -1010 -272 ) ( 3766 -884 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3766 -884 -80 ) ( 3766 -884 -64 ) ( 3752 -876 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3672 -1000 -80 ) ( 3752 -876 -80 ) ( 3712 -938 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3672 -1208 -272 ) ( 3672 -1240 -272 ) ( 3766 -1224 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1387 +{ +( 3560 -1010 -64 ) ( 3684 -1010 -64 ) ( 3684 -1112 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3672 -1000 -224 ) ( 3672 -1000 -64 ) ( 3560 -1112 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3570 -1124 -64 ) ( 3570 -1124 -224 ) ( 3560 -1112 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3570 -1124 -288 ) ( 3570 -1124 -128 ) ( 3684 -1010 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3672 -1000 -64 ) ( 3672 -1000 -224 ) ( 3684 -1010 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3560 -1208 -272 ) ( 3560 -1240 -272 ) ( 3684 -1224 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1388 +{ +( 3584 -1176 -64 ) ( 3456 -1176 -64 ) ( 3456 -808 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3570 -1124 -80 ) ( 3570 -1124 -64 ) ( 3560 -1112 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3570 -1124 -128 ) ( 3570 -1124 -144 ) ( 3444 -1206 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3444 -1206 -208 ) ( 3444 -1206 -224 ) ( 3436 -1192 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3560 -1112 -208 ) ( 3436 -1192 -208 ) ( 3498 -1152 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3436 -1208 -272 ) ( 3436 -1240 -272 ) ( 3570 -1224 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1389 +{ +( 3452 -1232 -64 ) ( 3324 -1232 -64 ) ( 3324 -864 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3444 -1206 -224 ) ( 3444 -1206 -208 ) ( 3436 -1192 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3444 -1206 -128 ) ( 3444 -1206 -144 ) ( 3310 -1264 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3310 -1264 -208 ) ( 3310 -1264 -224 ) ( 3304 -1248 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3436 -1192 -208 ) ( 3304 -1248 -208 ) ( 3370 -1220 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3304 -1208 -272 ) ( 3304 -1240 -272 ) ( 3444 -1224 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1390 +{ +( 3296 -1264 -64 ) ( 3168 -1264 -64 ) ( 3168 -896 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3310 -1264 -224 ) ( 3310 -1264 -208 ) ( 3304 -1248 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3310 -1264 -128 ) ( 3310 -1264 -144 ) ( 3150 -1296 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3150 -1296 -208 ) ( 3150 -1296 -224 ) ( 3148 -1280 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3304 -1248 -272 ) ( 3148 -1280 -272 ) ( 3226 -1264 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3148 -1208 -272 ) ( 3148 -1240 -272 ) ( 3310 -1224 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1391 +{ +( 3646 -979 -64 ) ( 3672 -1000 -96 ) ( 3752 -876 -96 ) bricks/c_tn_m1 -53 -7 57 1 1 0 0 0 +( 3672 -1000 -48 ) ( 3672 -1000 -96 ) ( 3646 -979 -64 ) bricks/c_tn_m1 -53 -7 57 1 1 0 0 0 +( 3752 -876 -96 ) ( 3672 -1000 -96 ) ( 3672 -1000 -48 ) bricks/c_tn_m1 -53 -7 57 1 1 0 0 0 +( 3646 -979 -64 ) ( 3752 -876 -96 ) ( 3752 -876 -48 ) bricks/c_tn_m1 -53 -7 57 1 1 0 0 0 +( 3646 -1056 -64 ) ( 3646 -1000 -64 ) ( 3752 -1028 -64 ) bricks/c_tn_m1 -53 -7 57 1 1 0 0 0 +} +// brush 1392 +{ +( 3646 -979 -64 ) ( 3752 -876 -96 ) ( 3723 -860 -64 ) bricks/c_tn_m1 -53 -7 57 1 1 0 0 0 +( 3723 -860 -64 ) ( 3752 -876 -96 ) ( 3752 -876 -48 ) bricks/c_tn_m1 -53 -7 57 1 1 0 0 0 +( 3752 -876 -48 ) ( 3752 -876 -96 ) ( 3646 -979 -64 ) bricks/c_tn_m1 -53 -7 57 1 1 0 0 0 +( 3646 -1056 -64 ) ( 3646 -1000 -64 ) ( 3752 -1028 -64 ) bricks/c_tn_m1 -53 -7 57 1 1 0 0 0 +} +// brush 1393 +{ +( 3112 -896 -64 ) ( 3115 -928 -64 ) ( 2880 -928 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3256 -896 -96 ) ( 3256 -896 -64 ) ( 3000 -896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2880 -928 -64 ) ( 3115 -928 -64 ) ( 3112 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3112 -896 -96 ) ( 3115 -928 -64 ) ( 3112 -896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 3072 -912 -96 ) ( 3072 -904 -96 ) ( 3072 -908 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 1394 +{ +( 3840 -588 -288 ) ( 3840 -588 -272 ) ( 3840 -512 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3808 -744 -288 ) ( 3808 -744 -272 ) ( 3840 -588 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3752 -876 -288 ) ( 3752 -876 -272 ) ( 3808 -744 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3672 -1000 -288 ) ( 3672 -1000 -272 ) ( 3752 -876 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3560 -1112 -288 ) ( 3560 -1112 -272 ) ( 3672 -1000 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3436 -1192 -288 ) ( 3436 -1192 -272 ) ( 3560 -1112 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3304 -1248 -288 ) ( 3304 -1248 -272 ) ( 3436 -1192 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3304 -1248 -272 ) ( 3304 -1248 -288 ) ( 3148 -1280 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3148 -1280 -272 ) ( 3148 -1280 -288 ) ( 3072 -1280 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2304 256 -288 ) ( 2304 -1280 -288 ) ( 3840 -1280 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3840 -1280 -272 ) ( 2304 -1280 -272 ) ( 2304 256 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3592 -512 -336 ) ( 3648 -512 -336 ) ( 3620 -512 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3072 -1176 -336 ) ( 3072 -1112 -336 ) ( 3072 -1144 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3072 -896 -288 ) ( 3456 -512 -288 ) ( 3264 -704 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1395 +{ +( 3840 -588 -64 ) ( 3840 -588 -48 ) ( 3840 -512 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3808 -744 -64 ) ( 3808 -744 -48 ) ( 3840 -588 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3752 -876 -64 ) ( 3752 -876 -48 ) ( 3808 -744 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3672 -1000 -64 ) ( 3672 -1000 -48 ) ( 3752 -876 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3560 -1112 -64 ) ( 3560 -1112 -48 ) ( 3672 -1000 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3436 -1192 -64 ) ( 3436 -1192 -48 ) ( 3560 -1112 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3304 -1248 -64 ) ( 3304 -1248 -48 ) ( 3436 -1192 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3304 -1248 -48 ) ( 3304 -1248 -64 ) ( 3148 -1280 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3148 -1280 -48 ) ( 3148 -1280 -64 ) ( 3072 -1280 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2304 256 -64 ) ( 2304 -1280 -64 ) ( 3840 -1280 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3840 -1280 -48 ) ( 2304 -1280 -48 ) ( 2304 256 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3592 -512 -112 ) ( 3648 -512 -112 ) ( 3620 -512 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3072 -1176 -112 ) ( 3072 -1112 -112 ) ( 3072 -1144 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3072 -896 -64 ) ( 3456 -512 -64 ) ( 3264 -704 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1396 +{ +( 3488 -555 -64 ) ( 3456 -552 -96 ) ( 3471 -638 -64 ) bricks/c_tn_m1 0 8 258 1 1 0 0 0 +( 3456 -552 -48 ) ( 3456 -552 -96 ) ( 3488 -555 -64 ) bricks/c_tn_m1 0 8 258 1 1 0 0 0 +( 3471 -638 -64 ) ( 3456 -552 -96 ) ( 3456 -552 -48 ) bricks/c_tn_m1 0 8 258 1 1 0 0 0 +( 3208 -552 -64 ) ( 3232 -552 -64 ) ( 3220 -638 -64 ) bricks/c_tn_m1 0 8 258 1 1 0 0 0 +} +// brush 1397 +{ +( 3456 -552 -96 ) ( 3440 -628 -96 ) ( 3471 -638 -64 ) bricks/c_tn_m1 0 8 258 1 1 0 0 0 +( 3440 -628 -48 ) ( 3440 -628 -96 ) ( 3456 -552 -96 ) bricks/c_tn_m1 0 8 258 1 1 0 0 0 +( 3471 -638 -64 ) ( 3440 -628 -96 ) ( 3440 -628 -48 ) bricks/c_tn_m1 0 8 258 1 1 0 0 0 +( 3456 -552 -96 ) ( 3471 -638 -64 ) ( 3471 -638 -48 ) bricks/c_tn_m1 0 8 258 1 1 0 0 0 +( 3208 -552 -64 ) ( 3232 -552 -64 ) ( 3220 -638 -64 ) bricks/c_tn_m1 0 8 258 1 1 0 0 0 +} +// brush 1398 +{ +( 3415 -614 -64 ) ( 3384 -604 -96 ) ( 3384 -683 -64 ) bricks/c_tn_m1 -58 -11 246 1 1 0 0 0 +( 3384 -604 -48 ) ( 3384 -604 -96 ) ( 3415 -614 -64 ) bricks/c_tn_m1 -173 9 246 1 1 0 0 0 +( 3384 -683 -64 ) ( 3384 -604 -96 ) ( 3384 -604 -48 ) bricks/c_tn_m1 -29 12 246 1 1 0 0 0 +( 3152 -604 -64 ) ( 3176 -604 -64 ) ( 3164 -683 -64 ) bricks/c_tn_m1 -58 -11 246 1 1 0 0 0 +} +// brush 1399 +{ +( 3384 -604 -96 ) ( 3356 -668 -96 ) ( 3384 -683 -64 ) bricks/c_tn_m1 -58 -11 246 1 1 0 0 0 +( 3356 -668 -48 ) ( 3356 -668 -96 ) ( 3384 -604 -96 ) bricks/c_tn_m1 -29 12 246 1 1 0 0 0 +( 3384 -683 -64 ) ( 3356 -668 -96 ) ( 3356 -668 -48 ) bricks/c_tn_m1 -173 9 246 1 1 0 0 0 +( 3384 -604 -48 ) ( 3384 -604 -96 ) ( 3384 -683 -64 ) bricks/c_tn_m1 -29 12 246 1 1 0 0 0 +( 3152 -604 -64 ) ( 3176 -604 -64 ) ( 3164 -683 -64 ) bricks/c_tn_m1 -58 -11 246 1 1 0 0 0 +} +// brush 1400 +{ +( 3440 -707 -64 ) ( 3412 -692 -96 ) ( 3393 -780 -64 ) bricks/c_tn_m1 -101 7 237 1 1 0 0 0 +( 3412 -692 -48 ) ( 3412 -692 -96 ) ( 3440 -707 -64 ) bricks/c_tn_m1 -101 7 237 1 1 0 0 0 +( 3393 -780 -64 ) ( 3412 -692 -96 ) ( 3412 -692 -48 ) bricks/c_tn_m1 -101 7 237 1 1 0 0 0 +( 3208 -692 -64 ) ( 3232 -692 -64 ) ( 3220 -780 -64 ) bricks/c_tn_m1 -101 7 237 1 1 0 0 0 +} +// brush 1401 +{ +( 3412 -692 -96 ) ( 3368 -760 -96 ) ( 3393 -780 -64 ) bricks/c_tn_m1 -101 7 237 1 1 0 0 0 +( 3368 -760 -48 ) ( 3368 -760 -96 ) ( 3412 -692 -96 ) bricks/c_tn_m1 -101 7 237 1 1 0 0 0 +( 3393 -780 -64 ) ( 3368 -760 -96 ) ( 3368 -760 -48 ) bricks/c_tn_m1 -101 7 237 1 1 0 0 0 +( 3412 -692 -48 ) ( 3412 -692 -96 ) ( 3393 -780 -64 ) bricks/c_tn_m1 -101 7 237 1 1 0 0 0 +( 3208 -692 -64 ) ( 3232 -692 -64 ) ( 3220 -780 -64 ) bricks/c_tn_m1 -101 7 237 1 1 0 0 0 +} +// brush 1402 +{ +( 3393 -780 -64 ) ( 3320 -808 -96 ) ( 3340 -833 -64 ) bricks/c_tn_m1 41 7 225 1 1 0 0 0 +( 3340 -833 -64 ) ( 3320 -808 -96 ) ( 3320 -808 -48 ) bricks/c_tn_m1 41 7 225 1 1 0 0 0 +( 3320 -808 -48 ) ( 3320 -808 -96 ) ( 3393 -780 -64 ) bricks/c_tn_m1 41 7 225 1 1 0 0 0 +( 3208 -780 -64 ) ( 3232 -780 -64 ) ( 3220 -833 -64 ) bricks/c_tn_m1 41 7 225 1 1 0 0 0 +} +// brush 1403 +{ +( 3368 -760 -96 ) ( 3320 -808 -96 ) ( 3393 -780 -64 ) bricks/c_tn_m1 41 7 225 1 1 0 0 0 +( 3320 -808 -48 ) ( 3320 -808 -96 ) ( 3368 -760 -96 ) bricks/c_tn_m1 41 7 225 1 1 0 0 0 +( 3368 -760 -48 ) ( 3368 -760 -96 ) ( 3393 -780 -64 ) bricks/c_tn_m1 41 7 225 1 1 0 0 0 +( 3393 -780 -64 ) ( 3320 -808 -96 ) ( 3320 -808 -48 ) bricks/c_tn_m1 41 7 225 1 1 0 0 0 +( 3208 -760 -64 ) ( 3232 -760 -64 ) ( 3220 -808 -64 ) bricks/c_tn_m1 41 7 225 1 1 0 0 0 +} +// brush 1404 +{ +( 3340 -833 -64 ) ( 3320 -808 -96 ) ( 3252 -852 -96 ) bricks/c_tn_m1 0 -10 213 1 1 0 0 0 +( 3252 -852 -96 ) ( 3320 -808 -96 ) ( 3320 -808 -48 ) bricks/c_tn_m1 0 -10 213 1 1 0 0 0 +( 3320 -808 -48 ) ( 3320 -808 -96 ) ( 3340 -833 -64 ) bricks/c_tn_m1 0 -10 213 1 1 0 0 0 +( 3340 -833 -64 ) ( 3252 -852 -96 ) ( 3252 -852 -48 ) bricks/c_tn_m1 0 -10 213 1 1 0 0 0 +( 3208 -808 -64 ) ( 3232 -808 -64 ) ( 3220 -852 -64 ) bricks/c_tn_m1 0 -10 213 1 1 0 0 0 +} +// brush 1405 +{ +( 3340 -833 -64 ) ( 3252 -852 -96 ) ( 3267 -880 -64 ) bricks/c_tn_m1 0 -10 213 1 1 0 0 0 +( 3267 -880 -64 ) ( 3252 -852 -96 ) ( 3252 -852 -48 ) bricks/c_tn_m1 0 -10 213 1 1 0 0 0 +( 3252 -852 -48 ) ( 3252 -852 -96 ) ( 3340 -833 -64 ) bricks/c_tn_m1 0 -10 213 1 1 0 0 0 +( 3208 -833 -64 ) ( 3232 -833 -64 ) ( 3220 -880 -64 ) bricks/c_tn_m1 0 -10 213 1 1 0 0 0 +} +// brush 1406 +{ +( 3243 -824 -64 ) ( 3228 -796 -96 ) ( 3164 -824 -96 ) bricks/c_tn_m1 -68 6 204 1 1 0 0 0 +( 3164 -824 -96 ) ( 3228 -796 -96 ) ( 3228 -796 -48 ) bricks/c_tn_m1 -133 21 204 1 1 0 0 0 +( 3228 -796 -48 ) ( 3228 -796 -96 ) ( 3243 -824 -64 ) bricks/c_tn_m1 -193 6 204 1 1 0 0 0 +( 3243 -824 -64 ) ( 3164 -824 -96 ) ( 3164 -824 -48 ) bricks/c_tn_m1 -133 21 204 1 1 0 0 0 +( 3184 -796 -64 ) ( 3208 -796 -64 ) ( 3196 -824 -64 ) bricks/c_tn_m1 -68 6 204 1 1 0 0 0 +} +// brush 1407 +{ +( 3243 -824 -64 ) ( 3164 -824 -96 ) ( 3174 -855 -64 ) bricks/c_tn_m1 -68 6 204 1 1 0 0 0 +( 3174 -855 -64 ) ( 3164 -824 -96 ) ( 3164 -824 -48 ) bricks/c_tn_m1 -193 6 204 1 1 0 0 0 +( 3164 -824 -48 ) ( 3164 -824 -96 ) ( 3243 -824 -64 ) bricks/c_tn_m1 -133 21 204 1 1 0 0 0 +( 3184 -824 -64 ) ( 3208 -824 -64 ) ( 3196 -855 -64 ) bricks/c_tn_m1 -68 6 204 1 1 0 0 0 +} +// brush 1408 +{ +( 3198 -911 -64 ) ( 3188 -880 -96 ) ( 3112 -896 -96 ) bricks/c_tn_m1 0 1 191 1 1 0 0 0 +( 3112 -896 -96 ) ( 3188 -880 -96 ) ( 3188 -880 -48 ) bricks/c_tn_m1 0 1 191 1 1 0 0 0 +( 3188 -880 -48 ) ( 3188 -880 -96 ) ( 3198 -911 -64 ) bricks/c_tn_m1 0 1 191 1 1 0 0 0 +( 3198 -911 -48 ) ( 3198 -911 -64 ) ( 3112 -896 -96 ) bricks/c_tn_m1 0 1 191 1 1 0 0 0 +( 3208 -880 -64 ) ( 3232 -880 -64 ) ( 3220 -911 -64 ) bricks/c_tn_m1 0 1 191 1 1 0 0 0 +} +// brush 1409 +{ +( 3198 -911 -64 ) ( 3112 -896 -96 ) ( 3115 -928 -64 ) bricks/c_tn_m1 0 1 191 1 1 0 0 0 +( 3115 -928 -64 ) ( 3112 -896 -96 ) ( 3112 -896 -48 ) bricks/c_tn_m1 0 1 191 1 1 0 0 0 +( 3112 -896 -48 ) ( 3112 -896 -96 ) ( 3198 -911 -64 ) bricks/c_tn_m1 0 1 191 1 1 0 0 0 +( 3208 -896 -64 ) ( 3232 -896 -64 ) ( 3220 -928 -64 ) bricks/c_tn_m1 0 1 191 1 1 0 0 0 +} +// brush 1410 +{ +( 3777 -734 -64 ) ( 3840 -588 -96 ) ( 3808 -585 -64 ) bricks/c_tn_m1 0 -7 78 1 1 0 0 0 +( 3808 -585 -64 ) ( 3840 -588 -96 ) ( 3840 -588 -48 ) bricks/c_tn_m1 0 -7 78 1 1 0 0 0 +( 3840 -588 -48 ) ( 3840 -588 -96 ) ( 3777 -734 -64 ) bricks/c_tn_m1 0 -7 78 1 1 0 0 0 +( 3777 -1056 -64 ) ( 3777 -1000 -64 ) ( 3840 -1028 -64 ) bricks/c_tn_m1 0 -7 78 1 1 0 0 0 +} +// brush 1411 +{ +( 3777 -734 -64 ) ( 3808 -744 -96 ) ( 3840 -588 -96 ) bricks/c_tn_m1 0 -7 78 1 1 0 0 0 +( 3808 -744 -48 ) ( 3808 -744 -96 ) ( 3777 -734 -64 ) bricks/c_tn_m1 0 -7 78 1 1 0 0 0 +( 3840 -588 -96 ) ( 3808 -744 -96 ) ( 3808 -744 -48 ) bricks/c_tn_m1 0 -7 78 1 1 0 0 0 +( 3777 -734 -64 ) ( 3840 -588 -96 ) ( 3840 -588 -48 ) bricks/c_tn_m1 0 -7 78 1 1 0 0 0 +( 3777 -1056 -64 ) ( 3777 -1000 -64 ) ( 3840 -1028 -64 ) bricks/c_tn_m1 0 -7 78 1 1 0 0 0 +} +// brush 1412 +{ +( 3771 -884 -64 ) ( 3856 -768 -96 ) ( 3825 -758 -64 ) bricks/c_tn_m1 57 15 67 1 1 0 0 0 +( 3825 -758 -64 ) ( 3856 -768 -96 ) ( 3856 -768 -48 ) bricks/c_tn_m1 147 -8 67 1 1 0 0 0 +( 3856 -768 -48 ) ( 3856 -768 -96 ) ( 3771 -884 -64 ) bricks/c_tn_m1 86 -12 67 1 1 0 0 0 +( 3771 -1080 -64 ) ( 3771 -1024 -64 ) ( 3856 -1052 -64 ) bricks/c_tn_m1 57 15 67 1 1 0 0 0 +} +// brush 1413 +{ +( 3771 -884 -64 ) ( 3800 -900 -96 ) ( 3856 -768 -96 ) bricks/c_tn_m1 57 15 67 1 1 0 0 0 +( 3800 -900 -48 ) ( 3800 -900 -96 ) ( 3771 -884 -64 ) bricks/c_tn_m1 147 -8 67 1 1 0 0 0 +( 3856 -768 -96 ) ( 3800 -900 -96 ) ( 3800 -900 -48 ) bricks/c_tn_m1 86 -12 67 1 1 0 0 0 +( 3771 -884 -64 ) ( 3856 -768 -96 ) ( 3856 -768 -48 ) bricks/c_tn_m1 86 -12 67 1 1 0 0 0 +( 3771 -1080 -64 ) ( 3771 -1024 -64 ) ( 3856 -1052 -64 ) bricks/c_tn_m1 57 15 67 1 1 0 0 0 +} +// brush 1414 +{ +( 3579 -1126 -64 ) ( 3712 -1040 -96 ) ( 3686 -1019 -64 ) bricks/c_tn_m1 41 -3 45 1 1 0 0 0 +( 3686 -1019 -64 ) ( 3712 -1040 -96 ) ( 3712 -1040 -48 ) bricks/c_tn_m1 76 -7 45 1 1 0 0 0 +( 3712 -1040 -48 ) ( 3712 -1040 -96 ) ( 3579 -1126 -64 ) bricks/c_tn_m1 76 -7 45 1 1 0 0 0 +( 3579 -1096 -64 ) ( 3579 -1040 -64 ) ( 3712 -1068 -64 ) bricks/c_tn_m1 41 -3 45 1 1 0 0 0 +} +// brush 1415 +{ +( 3600 -1152 -96 ) ( 3712 -1040 -96 ) ( 3579 -1126 -64 ) bricks/c_tn_m1 41 -3 45 1 1 0 0 0 +( 3600 -1152 -48 ) ( 3600 -1152 -96 ) ( 3579 -1126 -64 ) bricks/c_tn_m1 70 -13 45 1 1 0 0 0 +( 3712 -1040 -48 ) ( 3712 -1040 -96 ) ( 3600 -1152 -96 ) bricks/c_tn_m1 70 -13 45 1 1 0 0 0 +( 3579 -1126 -64 ) ( 3712 -1040 -96 ) ( 3712 -1040 -48 ) bricks/c_tn_m1 76 -7 45 1 1 0 0 0 +( 3579 -1096 -64 ) ( 3579 -1040 -64 ) ( 3712 -1068 -64 ) bricks/c_tn_m1 41 -3 45 1 1 0 0 0 +} +// brush 1416 +{ +( 3436 -1192 -96 ) ( 3560 -1112 -96 ) ( 3539 -1086 -64 ) bricks/c_tn_m1 146 10 33 1 1 0 0 0 +( 3539 -1086 -64 ) ( 3560 -1112 -96 ) ( 3560 -1112 -48 ) bricks/c_tn_m1 146 10 33 1 1 0 0 0 +( 3560 -1112 -48 ) ( 3560 -1112 -96 ) ( 3436 -1192 -96 ) bricks/c_tn_m1 146 10 33 1 1 0 0 0 +( 3436 -1192 -48 ) ( 3436 -1192 -96 ) ( 3539 -1086 -64 ) bricks/c_tn_m1 146 10 33 1 1 0 0 0 +( 3436 -1056 -64 ) ( 3436 -1000 -64 ) ( 3560 -1028 -64 ) bricks/c_tn_m1 146 10 33 1 1 0 0 0 +} +// brush 1417 +{ +( 3420 -1163 -64 ) ( 3436 -1192 -96 ) ( 3539 -1086 -64 ) bricks/c_tn_m1 146 10 33 1 1 0 0 0 +( 3436 -1192 -48 ) ( 3436 -1192 -96 ) ( 3420 -1163 -64 ) bricks/c_tn_m1 146 10 33 1 1 0 0 0 +( 3539 -1086 -64 ) ( 3436 -1192 -96 ) ( 3436 -1192 -48 ) bricks/c_tn_m1 146 10 33 1 1 0 0 0 +( 3420 -1056 -64 ) ( 3420 -1000 -64 ) ( 3539 -1028 -64 ) bricks/c_tn_m1 146 10 33 1 1 0 0 0 +} +// brush 1418 +{ +( 3328 -1296 -96 ) ( 3460 -1240 -96 ) ( 3444 -1211 -64 ) bricks/c_tn_m1 97 -12 23 1 1 0 0 0 +( 3444 -1211 -64 ) ( 3460 -1240 -96 ) ( 3460 -1240 -48 ) bricks/c_tn_m1 12 -12 23 1 1 0 0 0 +( 3460 -1240 -48 ) ( 3460 -1240 -96 ) ( 3328 -1296 -96 ) bricks/c_tn_m1 80 -16 23 1 1 0 0 0 +( 3328 -1296 -48 ) ( 3328 -1296 -96 ) ( 3444 -1211 -64 ) bricks/c_tn_m1 80 -16 23 1 1 0 0 0 +( 3328 -1104 -64 ) ( 3328 -1048 -64 ) ( 3460 -1076 -64 ) bricks/c_tn_m1 97 -12 23 1 1 0 0 0 +} +// brush 1419 +{ +( 3318 -1265 -64 ) ( 3328 -1296 -96 ) ( 3444 -1211 -64 ) bricks/c_tn_m1 97 -12 23 1 1 0 0 0 +( 3328 -1296 -48 ) ( 3328 -1296 -96 ) ( 3318 -1265 -64 ) bricks/c_tn_m1 12 -12 23 1 1 0 0 0 +( 3444 -1211 -64 ) ( 3328 -1296 -96 ) ( 3328 -1296 -48 ) bricks/c_tn_m1 80 -16 23 1 1 0 0 0 +( 3318 -1104 -64 ) ( 3318 -1048 -64 ) ( 3444 -1076 -64 ) bricks/c_tn_m1 97 -12 23 1 1 0 0 0 +} +// brush 1420 +{ +( 3148 -1280 -96 ) ( 3304 -1248 -96 ) ( 3294 -1217 -64 ) bricks/c_tn_m1 79 -19 12 1 1 0 0 0 +( 3294 -1217 -64 ) ( 3304 -1248 -96 ) ( 3304 -1248 -48 ) bricks/c_tn_m1 79 -19 12 1 1 0 0 0 +( 3304 -1248 -48 ) ( 3304 -1248 -96 ) ( 3148 -1280 -96 ) bricks/c_tn_m1 79 -19 12 1 1 0 0 0 +( 3148 -1280 -48 ) ( 3148 -1280 -96 ) ( 3294 -1217 -64 ) bricks/c_tn_m1 79 -19 12 1 1 0 0 0 +( 3148 -1056 -64 ) ( 3148 -1000 -64 ) ( 3304 -1028 -64 ) bricks/c_tn_m1 79 -19 12 1 1 0 0 0 +} +// brush 1421 +{ +( 3145 -1248 -64 ) ( 3148 -1280 -96 ) ( 3294 -1217 -64 ) bricks/c_tn_m1 79 -19 12 1 1 0 0 0 +( 3148 -1280 -48 ) ( 3148 -1280 -96 ) ( 3145 -1248 -64 ) bricks/c_tn_m1 79 -19 12 1 1 0 0 0 +( 3294 -1217 -64 ) ( 3148 -1280 -96 ) ( 3148 -1280 -48 ) bricks/c_tn_m1 79 -19 12 1 1 0 0 0 +( 3145 -1056 -64 ) ( 3145 -1000 -64 ) ( 3294 -1028 -64 ) bricks/c_tn_m1 79 -19 12 1 1 0 0 0 +} +// brush 1422 +{ +( 3072 -1248 -64 ) ( 3145 -1248 -64 ) ( 3148 -1280 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2448 -1280 -80 ) ( 2448 -1280 -64 ) ( 2800 -1280 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3148 -1280 -96 ) ( 3145 -1248 -64 ) ( 3072 -1248 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3072 -1264 -64 ) ( 3072 -1280 -96 ) ( 3072 -1248 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 3148 -1280 -64 ) ( 3145 -1248 -64 ) ( 3148 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 1423 +{ +( 3380 -808 -272 ) ( 3380 -770 -272 ) ( 3320 -770 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3320 -770 -256 ) ( 3380 -770 -256 ) ( 3380 -808 -256 ) bricks/c_sr_mr5 0 6 225 1 1 0 0 0 +( 3368 -760 -272 ) ( 3368 -760 -256 ) ( 3320 -808 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3330 -820 -256 ) ( 3330 -820 -272 ) ( 3320 -808 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3330 -820 -272 ) ( 3330 -820 -256 ) ( 3380 -770 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3368 -760 -256 ) ( 3368 -760 -272 ) ( 3380 -770 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1424 +{ +( 3296 -1264 -256 ) ( 3168 -1264 -256 ) ( 3168 -896 -256 ) bricks/c_sr_mr5 0 0 191 1 1 0 0 0 +( 3168 -896 -272 ) ( 3168 -1264 -272 ) ( 3296 -1264 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3188 -880 -400 ) ( 3188 -880 -240 ) ( 3112 -896 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3188 -880 -240 ) ( 3188 -880 -400 ) ( 3192 -896 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3110 -880 -400 ) ( 3110 -880 -384 ) ( 3112 -896 -384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3192 -896 -240 ) ( 3192 -896 -400 ) ( 3114 -912 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1425 +{ +( 3452 -1232 -256 ) ( 3324 -1232 -256 ) ( 3324 -864 -256 ) bricks/c_sr_mr5 0 -12 204 1 1 0 0 0 +( 3324 -864 -272 ) ( 3324 -1232 -272 ) ( 3452 -1232 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3252 -852 -400 ) ( 3252 -852 -240 ) ( 3188 -880 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3260 -866 -400 ) ( 3260 -866 -240 ) ( 3252 -852 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3192 -896 -240 ) ( 3192 -896 -400 ) ( 3188 -880 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3192 -896 -400 ) ( 3192 -896 -240 ) ( 3260 -866 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1426 +{ +( 3584 -1176 -256 ) ( 3456 -1176 -256 ) ( 3456 -808 -256 ) bricks/c_sr_mr5 0 -12 213 1 1 0 0 0 +( 3456 -808 -272 ) ( 3456 -1176 -272 ) ( 3584 -1176 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3320 -808 -400 ) ( 3320 -808 -240 ) ( 3252 -852 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3330 -820 -400 ) ( 3330 -820 -240 ) ( 3320 -808 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3260 -866 -240 ) ( 3260 -866 -400 ) ( 3252 -852 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3330 -820 -240 ) ( 3330 -820 -400 ) ( 3260 -866 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1427 +{ +( 3736 -1024 -272 ) ( 3736 -896 -272 ) ( 3368 -896 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3368 -896 -256 ) ( 3736 -896 -256 ) ( 3736 -1024 -256 ) bricks/c_sr_mr5 0 6 237 1 1 0 0 0 +( 3368 -760 -128 ) ( 3368 -760 -288 ) ( 3412 -692 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3380 -770 -128 ) ( 3380 -770 -288 ) ( 3368 -760 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3426 -700 -288 ) ( 3426 -700 -128 ) ( 3412 -692 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3380 -770 -288 ) ( 3380 -770 -128 ) ( 3426 -700 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1428 +{ +( 3792 -892 -272 ) ( 3792 -764 -272 ) ( 3424 -764 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3424 -764 -256 ) ( 3792 -764 -256 ) ( 3792 -892 -256 ) bricks/c_sr_mr5 0 5 246 1 1 0 0 0 +( 3412 -692 -128 ) ( 3412 -692 -288 ) ( 3440 -628 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3426 -700 -128 ) ( 3426 -700 -288 ) ( 3412 -692 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3456 -632 -288 ) ( 3456 -632 -128 ) ( 3440 -628 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3456 -632 -128 ) ( 3456 -632 -288 ) ( 3426 -700 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1429 +{ +( 3824 -736 -272 ) ( 3824 -608 -272 ) ( 3456 -608 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3456 -608 -256 ) ( 3824 -608 -256 ) ( 3824 -736 -256 ) bricks/c_sr_mr5 0 6 258 1 1 0 0 0 +( 3440 -628 -128 ) ( 3440 -628 -288 ) ( 3456 -552 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3440 -628 -288 ) ( 3440 -628 -128 ) ( 3456 -632 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3440 -550 -128 ) ( 3440 -550 -144 ) ( 3456 -552 -144 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3456 -632 -288 ) ( 3456 -632 -128 ) ( 3472 -554 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1430 +{ +( 3670 -1054 -272 ) ( 3670 -1000 -272 ) ( 3586 -1000 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3586 -1000 -256 ) ( 3670 -1000 -256 ) ( 3670 -1054 -256 ) bricks/c_sr_mr5 0 -8 45 1 1 0 0 0 +( 3560 -1112 -256 ) ( 3560 -1112 -272 ) ( 3552 -1102 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3560 -1112 -272 ) ( 3560 -1112 -256 ) ( 3672 -1000 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3672 -1000 -272 ) ( 3672 -1000 -256 ) ( 3662 -992 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3606 -1048 -256 ) ( 3606 -1048 -272 ) ( 3662 -992 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1431 +{ +( 3296 -1264 -256 ) ( 3168 -1264 -256 ) ( 3168 -896 -256 ) bricks/c_sr_mr5 0 12 12 1 1 0 0 0 +( 3168 -896 -272 ) ( 3168 -1264 -272 ) ( 3296 -1264 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3300 -1234 -240 ) ( 3300 -1234 -400 ) ( 3304 -1248 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3148 -1280 -400 ) ( 3148 -1280 -240 ) ( 3304 -1248 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3146 -1264 -400 ) ( 3146 -1264 -240 ) ( 3148 -1280 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3300 -1234 -400 ) ( 3300 -1234 -240 ) ( 3146 -1264 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1432 +{ +( 3452 -1232 -256 ) ( 3324 -1232 -256 ) ( 3324 -864 -256 ) bricks/c_sr_mr5 0 -9 23 1 1 0 0 0 +( 3324 -864 -272 ) ( 3324 -1232 -272 ) ( 3452 -1232 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3436 -1192 -400 ) ( 3436 -1192 -240 ) ( 3430 -1180 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3436 -1192 -240 ) ( 3436 -1192 -400 ) ( 3304 -1248 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3300 -1234 -400 ) ( 3300 -1234 -240 ) ( 3304 -1248 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3430 -1180 -400 ) ( 3430 -1180 -240 ) ( 3300 -1234 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1433 +{ +( 3584 -1176 -256 ) ( 3456 -1176 -256 ) ( 3456 -808 -256 ) bricks/c_sr_mr5 0 8 33 1 1 0 0 0 +( 3456 -808 -272 ) ( 3456 -1176 -272 ) ( 3584 -1176 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3552 -1102 -240 ) ( 3552 -1102 -400 ) ( 3560 -1112 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3436 -1192 -400 ) ( 3436 -1192 -240 ) ( 3560 -1112 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3430 -1180 -400 ) ( 3430 -1180 -240 ) ( 3436 -1192 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3552 -1102 -400 ) ( 3552 -1102 -240 ) ( 3430 -1180 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1434 +{ +( 3736 -1024 -272 ) ( 3736 -896 -272 ) ( 3368 -896 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3368 -896 -256 ) ( 3736 -896 -256 ) ( 3736 -1024 -256 ) bricks/c_sr_mr5 0 -9 57 1 1 0 0 0 +( 3662 -992 -288 ) ( 3662 -992 -128 ) ( 3672 -1000 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3752 -876 -128 ) ( 3752 -876 -288 ) ( 3672 -1000 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3740 -870 -128 ) ( 3740 -870 -288 ) ( 3752 -876 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3662 -992 -128 ) ( 3662 -992 -288 ) ( 3740 -870 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1435 +{ +( 3792 -892 -272 ) ( 3792 -764 -272 ) ( 3424 -764 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3424 -764 -256 ) ( 3792 -764 -256 ) ( 3792 -892 -256 ) bricks/c_sr_mr5 0 11 67 1 1 0 0 0 +( 3752 -876 -128 ) ( 3752 -876 -288 ) ( 3740 -870 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3752 -876 -288 ) ( 3752 -876 -128 ) ( 3808 -744 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3794 -740 -128 ) ( 3794 -740 -288 ) ( 3808 -744 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3740 -870 -128 ) ( 3740 -870 -288 ) ( 3794 -740 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1436 +{ +( 3824 -736 -272 ) ( 3824 -608 -272 ) ( 3456 -608 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3456 -608 -256 ) ( 3824 -608 -256 ) ( 3824 -736 -256 ) bricks/c_sr_mr5 0 -9 78 1 1 0 0 0 +( 3794 -740 -288 ) ( 3794 -740 -128 ) ( 3808 -744 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3840 -588 -128 ) ( 3840 -588 -288 ) ( 3808 -744 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3824 -586 -128 ) ( 3824 -586 -288 ) ( 3840 -588 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3794 -740 -128 ) ( 3794 -740 -288 ) ( 3824 -586 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1437 +{ +( 3723 -860 -64 ) ( 3752 -876 -96 ) ( 3808 -744 -96 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3808 -744 -96 ) ( 3752 -876 -96 ) ( 3752 -876 -48 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3723 -1056 -64 ) ( 3723 -1000 -64 ) ( 3808 -1028 -64 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3747 -833 -64 ) ( 3758 -838 -96 ) ( 3736 -828 -96 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3779 -777 -64 ) ( 3768 -772 -96 ) ( 3790 -782 -96 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3772 -805 -64 ) ( 3758 -838 -96 ) ( 3786 -772 -96 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +} +// brush 1438 +{ +( 3723 -860 -64 ) ( 3752 -876 -96 ) ( 3808 -744 -96 ) common/li_pv_v4a 7 6 67 1 1 0 1 7000 +( 3723 -860 -64 ) ( 3808 -744 -96 ) ( 3808 -744 -48 ) common/li_pv_v4a 7 6 67 1 1 0 1 7000 +( 3723 -1056 -64 ) ( 3723 -1000 -64 ) ( 3808 -1028 -64 ) common/li_pv_v4a 7 6 67 1 1 0 1 7000 +( 3747 -833 -64 ) ( 3758 -838 -96 ) ( 3736 -828 -96 ) common/li_pv_v4a 7 6 67 1 1 0 1 7000 +( 3779 -777 -64 ) ( 3768 -772 -96 ) ( 3790 -782 -96 ) common/li_pv_v4a 7 6 67 1 1 0 1 7000 +( 3772 -805 -64 ) ( 3786 -772 -96 ) ( 3758 -838 -96 ) common/li_pv_v4a 7 6 67 1 1 0 1 7000 +} +// brush 1439 +{ +( 3723 -860 -64 ) ( 3808 -744 -96 ) ( 3777 -734 -64 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3723 -1056 -64 ) ( 3723 -1000 -64 ) ( 3808 -1028 -64 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3747 -833 -64 ) ( 3758 -838 -96 ) ( 3736 -828 -96 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3779 -777 -64 ) ( 3768 -772 -96 ) ( 3790 -782 -96 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3754 -805 -64 ) ( 3768 -772 -86 ) ( 3740 -838 -86 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +} +// brush 1440 +{ +( 3723 -860 -64 ) ( 3808 -744 -96 ) ( 3777 -734 -64 ) common/li_pv_v4a 7 6 67 1 1 0 1 7000 +( 3808 -744 -48 ) ( 3808 -744 -96 ) ( 3723 -860 -64 ) common/li_pv_v4a 7 6 67 1 1 0 1 7000 +( 3723 -1056 -64 ) ( 3723 -1000 -64 ) ( 3808 -1028 -64 ) common/li_pv_v4a 7 6 67 1 1 0 1 7000 +( 3747 -833 -64 ) ( 3758 -838 -96 ) ( 3736 -828 -96 ) common/li_pv_v4a 7 6 67 1 1 0 1 7000 +( 3779 -777 -64 ) ( 3768 -772 -96 ) ( 3790 -782 -96 ) common/li_pv_v4a 7 6 67 1 1 0 1 7000 +( 3754 -805 -64 ) ( 3740 -838 -86 ) ( 3768 -772 -86 ) common/li_pv_v4a 7 6 67 1 1 0 1 7000 +} +// brush 1441 +{ +( 3723 -860 -64 ) ( 3808 -744 -96 ) ( 3777 -734 -64 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3777 -734 -64 ) ( 3808 -744 -96 ) ( 3808 -744 -48 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3808 -744 -48 ) ( 3808 -744 -96 ) ( 3723 -860 -64 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3723 -1056 -64 ) ( 3723 -1000 -64 ) ( 3808 -1028 -64 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3779 -777 -64 ) ( 3790 -782 -96 ) ( 3768 -772 -96 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +} +// brush 1442 +{ +( 3723 -860 -64 ) ( 3752 -876 -96 ) ( 3808 -744 -96 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3808 -744 -96 ) ( 3752 -876 -96 ) ( 3752 -876 -48 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3723 -860 -64 ) ( 3808 -744 -96 ) ( 3808 -744 -48 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3723 -1056 -64 ) ( 3723 -1000 -64 ) ( 3808 -1028 -64 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3779 -777 -64 ) ( 3790 -782 -96 ) ( 3768 -772 -96 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +} +// brush 1443 +{ +( 3723 -860 -64 ) ( 3752 -876 -96 ) ( 3808 -744 -96 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3752 -876 -48 ) ( 3752 -876 -96 ) ( 3723 -860 -64 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3808 -744 -96 ) ( 3752 -876 -96 ) ( 3752 -876 -48 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3723 -860 -64 ) ( 3808 -744 -96 ) ( 3808 -744 -48 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3723 -1056 -64 ) ( 3723 -1000 -64 ) ( 3808 -1028 -64 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3747 -833 -64 ) ( 3736 -828 -96 ) ( 3758 -838 -96 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +} +// brush 1444 +{ +( 3723 -860 -64 ) ( 3808 -744 -96 ) ( 3777 -734 -64 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3808 -744 -48 ) ( 3808 -744 -96 ) ( 3723 -860 -64 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3723 -1056 -64 ) ( 3723 -1000 -64 ) ( 3808 -1028 -64 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +( 3747 -833 -64 ) ( 3736 -828 -96 ) ( 3758 -838 -96 ) bricks/c_tn_m1 0 13 67 1 1 0 0 0 +} +// brush 1445 +{ +( 3294 -1217 -64 ) ( 3304 -1248 -96 ) ( 3420 -1163 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3420 -1163 -64 ) ( 3304 -1248 -96 ) ( 3304 -1248 -48 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3588 -1248 -64 ) ( 3560 -1163 -64 ) ( 3616 -1163 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3398 -1198 -96 ) ( 3388 -1176 -96 ) ( 3393 -1187 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +} +// brush 1446 +{ +( 3304 -1248 -96 ) ( 3436 -1192 -96 ) ( 3420 -1163 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3420 -1163 -64 ) ( 3436 -1192 -96 ) ( 3436 -1192 -48 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3436 -1192 -48 ) ( 3436 -1192 -96 ) ( 3304 -1248 -96 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3304 -1248 -48 ) ( 3304 -1248 -96 ) ( 3420 -1163 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3588 -1248 -64 ) ( 3560 -1163 -64 ) ( 3616 -1163 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3398 -1198 -96 ) ( 3388 -1176 -96 ) ( 3393 -1187 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +} +// brush 1447 +{ +( 3304 -1248 -96 ) ( 3436 -1192 -96 ) ( 3420 -1163 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3436 -1192 -48 ) ( 3436 -1192 -96 ) ( 3304 -1248 -96 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3304 -1248 -48 ) ( 3304 -1248 -96 ) ( 3420 -1163 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3588 -1248 -64 ) ( 3560 -1163 -64 ) ( 3616 -1163 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3332 -1208 -96 ) ( 3342 -1230 -96 ) ( 3337 -1219 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +} +// brush 1448 +{ +( 3294 -1217 -64 ) ( 3304 -1248 -96 ) ( 3420 -1163 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3304 -1248 -48 ) ( 3304 -1248 -96 ) ( 3294 -1217 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3420 -1163 -64 ) ( 3304 -1248 -96 ) ( 3304 -1248 -48 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3588 -1248 -64 ) ( 3560 -1163 -64 ) ( 3616 -1163 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3332 -1208 -96 ) ( 3342 -1230 -96 ) ( 3337 -1219 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +} +// brush 1449 +{ +( 3294 -1217 -64 ) ( 3304 -1248 -96 ) ( 3420 -1163 -64 ) common/li_pv_v4a 29 2 23 1 1 0 1 7000 +( 3420 -1163 -64 ) ( 3304 -1248 -96 ) ( 3304 -1248 -48 ) common/li_pv_v4a 29 2 23 1 1 0 1 7000 +( 3588 -1248 -64 ) ( 3560 -1163 -64 ) ( 3616 -1163 -64 ) common/li_pv_v4a 29 2 23 1 1 0 1 7000 +( 3388 -1176 -96 ) ( 3398 -1198 -96 ) ( 3393 -1187 -64 ) common/li_pv_v4a 29 2 23 1 1 0 1 7000 +( 3342 -1230 -96 ) ( 3332 -1208 -96 ) ( 3337 -1219 -64 ) common/li_pv_v4a 29 2 23 1 1 0 1 7000 +( 3332 -1208 -86 ) ( 3398 -1180 -86 ) ( 3365 -1194 -64 ) common/li_pv_v4a 29 2 23 1 1 0 1 7000 +} +// brush 1450 +{ +( 3294 -1217 -64 ) ( 3304 -1248 -96 ) ( 3420 -1163 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3588 -1248 -64 ) ( 3560 -1163 -64 ) ( 3616 -1163 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3388 -1176 -96 ) ( 3398 -1198 -96 ) ( 3393 -1187 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3342 -1230 -96 ) ( 3332 -1208 -96 ) ( 3337 -1219 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3398 -1180 -86 ) ( 3332 -1208 -86 ) ( 3365 -1194 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +} +// brush 1451 +{ +( 3304 -1248 -96 ) ( 3436 -1192 -96 ) ( 3420 -1163 -64 ) common/li_pv_v4a 29 2 23 1 1 0 1 7000 +( 3304 -1248 -48 ) ( 3304 -1248 -96 ) ( 3420 -1163 -64 ) common/li_pv_v4a 29 2 23 1 1 0 1 7000 +( 3588 -1248 -64 ) ( 3560 -1163 -64 ) ( 3616 -1163 -64 ) common/li_pv_v4a 29 2 23 1 1 0 1 7000 +( 3388 -1176 -96 ) ( 3398 -1198 -96 ) ( 3393 -1187 -64 ) common/li_pv_v4a 29 2 23 1 1 0 1 7000 +( 3342 -1230 -96 ) ( 3332 -1208 -96 ) ( 3337 -1219 -64 ) common/li_pv_v4a 29 2 23 1 1 0 1 7000 +( 3398 -1198 -96 ) ( 3332 -1226 -96 ) ( 3365 -1212 -64 ) common/li_pv_v4a 29 2 23 1 1 0 1 7000 +} +// brush 1452 +{ +( 3304 -1248 -96 ) ( 3436 -1192 -96 ) ( 3420 -1163 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3436 -1192 -48 ) ( 3436 -1192 -96 ) ( 3304 -1248 -96 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3588 -1248 -64 ) ( 3560 -1163 -64 ) ( 3616 -1163 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3388 -1176 -96 ) ( 3398 -1198 -96 ) ( 3393 -1187 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3342 -1230 -96 ) ( 3332 -1208 -96 ) ( 3337 -1219 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +( 3332 -1226 -96 ) ( 3398 -1198 -96 ) ( 3365 -1212 -64 ) bricks/c_tn_m1 -20 -7 23 1 1 0 0 0 +} +// brush 1453 +{ +( 1248 -1360 -272 ) ( 1248 -1344 -272 ) ( 1220 -1344 -272 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( 1220 -1344 -256 ) ( 1248 -1344 -256 ) ( 1248 -1360 -256 ) bricks/c_sr_mr5 0 -10 45 1 1 0 0 0 +( -52 -2622 -272 ) ( -52 -2622 -256 ) ( -40 -2632 -256 ) bricks/c_sr_mr5 32 15 0 1 1 0 0 0 +( 1235 -1357 -272 ) ( 1235 -1357 -256 ) ( 1248 -1344 -256 ) bricks/c_sr_mr5 32 15 0 1 1 0 0 0 +( -52 -2622 -256 ) ( -52 -2622 -272 ) ( 1214 -1356 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1214 -1356 -256 ) ( 1214 -1356 -272 ) ( 1224 -1368 -272 ) bricks/c_sr_mr5 32 15 0 1 1 0 0 0 +} +// brush 1454 +{ +( 1252 -1364 -272 ) ( 1252 -1352 -272 ) ( 1236 -1352 -272 ) bricks/c_tn_m3 29 0 0 0.710000 1 0 0 0 +( 1236 -1352 -64 ) ( 1252 -1352 -64 ) ( 1252 -1364 -64 ) bricks/c_tn_m3 29 0 0 0.710000 1 0 0 0 +( -40 -2632 -272 ) ( -40 -2632 -64 ) ( -26 -2642 -64 ) bricks/c_tn_m3 29 0 0 0.710000 1 0 0 0 +( 1256 -1360 -272 ) ( 1256 -1360 -64 ) ( 1260 -1356 -64 ) bricks/c_tn_m3 29 0 0 0.710000 1 0 0 0 +( -40 -2632 -64 ) ( -40 -2632 -272 ) ( 1224 -1368 -272 ) bricks/c_tn_m3 29 0 0 0.710000 1 0 0 0 +( 1224 -1368 -64 ) ( 1224 -1368 -272 ) ( 1234 -1382 -272 ) bricks/c_tn_m3 29 0 0 0.710000 1 0 0 0 +} +// brush 1455 +{ +( 56 -2496 -64 ) ( 56 -2352 -64 ) ( -104 -2352 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -104 -2352 -48 ) ( 56 -2352 -48 ) ( 56 -2496 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -16 -2608 -48 ) ( -16 -2608 -64 ) ( -288 -2336 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 40 -2576 -48 ) ( 40 -2576 -64 ) ( 0 -2616 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -256 -2280 -64 ) ( -256 -2280 -48 ) ( -296 -2320 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 952 -1144 -64 ) ( 1176 -1368 -64 ) ( 1064 -1256 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1456 +{ +( 968 -1080 -272 ) ( 968 -1068 -272 ) ( 952 -1068 -272 ) bricks/c_tn_m3 -97 0 0 0.710000 1 0 0 0 +( 952 -1068 -64 ) ( 968 -1068 -64 ) ( 968 -1080 -64 ) bricks/c_tn_m3 -97 0 0 0.710000 1 0 0 0 +( -357 -2381 -272 ) ( -357 -2381 -64 ) ( -344 -2392 -64 ) bricks/c_tn_m3 -97 0 0 0.710000 1 0 0 0 +( 972 -1076 -272 ) ( 972 -1076 -64 ) ( 976 -1072 -64 ) bricks/c_tn_m3 -97 0 0 0.710000 1 0 0 0 +( -357 -2381 -64 ) ( -357 -2381 -272 ) ( 973 -1051 -272 ) bricks/c_tn_m3 -97 0 0 0.710000 1 0 0 0 +( 973 -1051 -64 ) ( 973 -1051 -272 ) ( 984 -1064 -272 ) bricks/c_tn_m3 -97 0 0 0.710000 1 0 0 0 +} +// brush 1457 +{ +( 987 -1099 -272 ) ( 987 -1083 -272 ) ( 959 -1083 -272 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( 959 -1083 -256 ) ( 987 -1083 -256 ) ( 987 -1099 -256 ) bricks/c_sr_mr5 0 7 225 1 1 0 0 0 +( -344 -2392 -272 ) ( -344 -2392 -256 ) ( -332 -2402 -256 ) bricks/c_sr_mr5 32 15 0 1 1 0 0 0 +( 974 -1096 -272 ) ( 974 -1096 -256 ) ( 987 -1083 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -344 -2392 -256 ) ( -344 -2392 -272 ) ( 984 -1064 -272 ) bricks/c_sr_mr5 32 15 0 1 1 0 0 0 +( 984 -1064 -256 ) ( 984 -1064 -272 ) ( 994 -1076 -272 ) bricks/c_sr_mr5 32 15 0 1 1 0 0 0 +} +// brush 1458 +{ +( 56 -2496 -288 ) ( 56 -2352 -288 ) ( -104 -2352 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -104 -2352 -272 ) ( 56 -2352 -272 ) ( 56 -2496 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -16 -2608 -272 ) ( -16 -2608 -288 ) ( -288 -2336 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 32 -2584 -272 ) ( 32 -2584 -288 ) ( -8 -2624 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -256 -2280 -288 ) ( -256 -2280 -272 ) ( -296 -2320 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 952 -1144 -288 ) ( 1176 -1368 -288 ) ( 1064 -1256 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1459 +{ +( 1864 -880 -64 ) ( 1472 -880 -64 ) ( 1472 -1296 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1472 -1296 -48 ) ( 1472 -880 -48 ) ( 1864 -880 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1472 -1296 -48 ) ( 1864 -1296 -48 ) ( 1864 -1296 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3072 -1320 -48 ) ( 3072 -904 -48 ) ( 3072 -904 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1864 -880 -48 ) ( 1472 -880 -48 ) ( 1472 -880 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1472 -880 -48 ) ( 1472 -1296 -48 ) ( 1472 -1296 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1460 +{ +( 1776 -880 -272 ) ( 1472 -880 -272 ) ( 1472 -896 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1472 -896 -64 ) ( 1472 -880 -64 ) ( 1776 -880 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3112 -896 -64 ) ( 3112 -896 -272 ) ( 1472 -896 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3112 -896 -272 ) ( 3112 -896 -64 ) ( 3110 -880 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1394 -880 -64 ) ( 1394 -880 -272 ) ( 3110 -880 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1394 -880 -272 ) ( 1394 -880 -64 ) ( 1396 -896 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1461 +{ +( 1776 -1280 -272 ) ( 1472 -1280 -272 ) ( 1472 -1296 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1472 -1296 -64 ) ( 1472 -1280 -64 ) ( 1776 -1280 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3150 -1296 -64 ) ( 3150 -1296 -272 ) ( 1472 -1296 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3150 -1296 -272 ) ( 3150 -1296 -64 ) ( 3148 -1280 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1432 -1280 -64 ) ( 1432 -1280 -272 ) ( 3148 -1280 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1432 -1280 -272 ) ( 1432 -1280 -64 ) ( 1434 -1296 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1462 +{ +( 1688 -1264 -272 ) ( 1472 -1264 -272 ) ( 1472 -1280 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1472 -1280 -256 ) ( 1472 -1264 -256 ) ( 1688 -1264 -256 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 3148 -1280 -256 ) ( 3148 -1280 -272 ) ( 1472 -1280 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3148 -1280 -272 ) ( 3148 -1280 -256 ) ( 3146 -1264 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1430 -1264 -256 ) ( 1430 -1264 -272 ) ( 3146 -1264 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1430 -1264 -272 ) ( 1430 -1264 -256 ) ( 1432 -1280 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1463 +{ +( 1688 -896 -272 ) ( 1472 -896 -272 ) ( 1472 -912 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1472 -912 -256 ) ( 1472 -896 -256 ) ( 1688 -896 -256 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 3114 -912 -256 ) ( 3114 -912 -272 ) ( 1472 -912 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3114 -912 -272 ) ( 3114 -912 -256 ) ( 3112 -896 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1396 -896 -256 ) ( 1396 -896 -272 ) ( 3112 -896 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1396 -896 -272 ) ( 1396 -896 -256 ) ( 1398 -912 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1464 +{ +( 1792 -880 -288 ) ( 1472 -880 -288 ) ( 1472 -1296 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1472 -1296 -272 ) ( 1472 -880 -272 ) ( 1792 -880 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1472 -1296 -272 ) ( 1792 -1296 -272 ) ( 1792 -1296 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3072 -1384 -272 ) ( 3072 -968 -272 ) ( 3072 -968 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1792 -880 -272 ) ( 1472 -880 -272 ) ( 1472 -880 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1472 -880 -272 ) ( 1472 -1296 -272 ) ( 1472 -1296 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1465 +{ +( 1472 -928 -64 ) ( 1399 -928 -64 ) ( 1396 -896 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1472 -928 -64 ) ( 1472 -896 -64 ) ( 1472 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1464 -896 -64 ) ( 1400 -896 -64 ) ( 1400 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1396 -896 -64 ) ( 1399 -928 -64 ) ( 1396 -896 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1396 -896 -96 ) ( 1399 -928 -64 ) ( 1472 -928 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 1466 +{ +( -260 -2804 -64 ) ( -44 -2588 -64 ) ( -20 -2612 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( -4 -2596 -64 ) ( -4 -2596 -96 ) ( -236 -2828 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( -44 -2588 -64 ) ( -260 -2804 -64 ) ( -236 -2828 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 1192 -1400 -96 ) ( 1176 -1384 -96 ) ( 1184 -1392 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 1202 -1342 -96 ) ( 1224 -1368 -96 ) ( 1213 -1355 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +} +// brush 1467 +{ +( -16 -2112 -64 ) ( -232 -2328 -64 ) ( -256 -2304 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -272 -2320 -64 ) ( -272 -2320 -96 ) ( -40 -2088 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -232 -2328 -64 ) ( -16 -2112 -64 ) ( -40 -2088 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 944 -1152 -96 ) ( 920 -1128 -96 ) ( 932 -1140 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 984 -1064 -96 ) ( 1006 -1090 -96 ) ( 995 -1077 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +} +// brush 1468 +{ +( 1376 -1280 -272 ) ( 1376 -912 -272 ) ( 1248 -912 -272 ) bricks/c_sr_mr5 55 22 90 1 1 0 0 0 +( 1248 -912 -256 ) ( 1376 -912 -256 ) ( 1376 -1280 -256 ) bricks/c_sr_mr5 0 -6 191 1 1 0 0 0 +( 1240 -928 -128 ) ( 1244 -942 -128 ) ( 1244 -942 -288 ) bricks/c_sr_mr5 56 -17 0 1 1 0 0 0 +( 1240 -928 -288 ) ( 1396 -896 -288 ) ( 1396 -896 -128 ) bricks/c_sr_mr5 -7 -17 -180 1 -1 0 0 0 +( 1396 -896 -288 ) ( 1398 -912 -288 ) ( 1398 -912 -128 ) bricks/c_sr_mr5 56 -17 0 1 1 0 0 0 +( 1398 -912 -288 ) ( 1244 -942 -288 ) ( 1244 -942 -128 ) bricks/c_sr_mr5 -7 -17 -180 1 -1 0 0 0 +} +// brush 1469 +{ +( 1220 -1312 -272 ) ( 1220 -944 -272 ) ( 1092 -944 -272 ) bricks/c_sr_mr5 55 22 90 1 1 0 0 0 +( 1092 -944 -256 ) ( 1220 -944 -256 ) ( 1220 -1312 -256 ) bricks/c_sr_mr5 0 -7 203 1 1 0 0 0 +( 1115 -997 -256 ) ( 1115 -997 -272 ) ( 1108 -984 -272 ) bricks/c_sr_mr5 56 -17 0 1 1 0 0 0 +( 1240 -928 -128 ) ( 1108 -984 -128 ) ( 1108 -984 -288 ) bricks/c_sr_mr5 -7 -17 -180 1 -1 0 0 0 +( 1240 -928 -288 ) ( 1244 -942 -288 ) ( 1244 -942 -128 ) bricks/c_sr_mr5 56 -17 0 1 1 0 0 0 +( 1115 -997 -272 ) ( 1115 -997 -256 ) ( 1244 -942 -256 ) bricks/c_sr_mr5 -7 -17 -180 1 -1 0 0 0 +} +// brush 1470 +{ +( 1088 -1368 -272 ) ( 1088 -1000 -272 ) ( 960 -1000 -272 ) bricks/c_sr_mr5 55 22 90 1 1 0 0 0 +( 960 -1000 -256 ) ( 1088 -1000 -256 ) ( 1088 -1368 -256 ) bricks/c_sr_mr5 0 -12 213 1 1 0 0 0 +( 994 -1076 -256 ) ( 994 -1076 -272 ) ( 984 -1064 -272 ) bricks/c_sr_mr5 56 -17 0 1 1 0 0 0 +( 984 -1064 -288 ) ( 1108 -984 -288 ) ( 1108 -984 -128 ) bricks/c_sr_mr5 -7 -17 -180 1 -1 0 0 0 +( 1115 -997 -272 ) ( 1115 -997 -256 ) ( 1108 -984 -256 ) bricks/c_sr_mr5 56 -17 0 1 1 0 0 0 +( 994 -1076 -272 ) ( 994 -1076 -256 ) ( 1115 -997 -256 ) bricks/c_sr_mr5 -7 -17 -180 1 -1 0 0 0 +} +// brush 1471 +{ +( 1376 -1280 -272 ) ( 1376 -912 -272 ) ( 1248 -912 -272 ) bricks/c_sr_mr5 55 22 90 1 1 0 0 0 +( 1248 -912 -256 ) ( 1376 -912 -256 ) ( 1376 -1280 -256 ) bricks/c_sr_mr5 0 -14 12 1 1 0 0 0 +( 1432 -1280 -288 ) ( 1356 -1296 -288 ) ( 1356 -1296 -128 ) bricks/c_sr_mr5 -7 -17 -180 1 -1 0 0 0 +( 1352 -1280 -128 ) ( 1356 -1296 -128 ) ( 1356 -1296 -288 ) bricks/c_sr_mr5 56 -17 0 1 1 0 0 0 +( 1432 -1280 -144 ) ( 1434 -1296 -144 ) ( 1434 -1296 -128 ) bricks/c_sr_mr5 56 -17 0 1 1 0 0 0 +( 1430 -1264 -128 ) ( 1352 -1280 -128 ) ( 1352 -1280 -288 ) bricks/c_sr_mr5 72 -17 0 1 1 0 0 0 +} +// brush 1472 +{ +( 1220 -1312 -272 ) ( 1220 -944 -272 ) ( 1092 -944 -272 ) bricks/c_sr_mr5 55 22 90 1 1 0 0 0 +( 1092 -944 -256 ) ( 1220 -944 -256 ) ( 1220 -1312 -256 ) bricks/c_sr_mr5 0 -8 24 1 1 0 0 0 +( 1356 -1296 -288 ) ( 1292 -1324 -288 ) ( 1292 -1324 -128 ) bricks/c_sr_mr5 -7 -17 -180 1 -1 0 0 0 +( 1292 -1324 -288 ) ( 1284 -1310 -288 ) ( 1284 -1310 -128 ) bricks/c_sr_mr5 56 -17 0 1 1 0 0 0 +( 1356 -1296 -128 ) ( 1352 -1280 -128 ) ( 1352 -1280 -288 ) bricks/c_sr_mr5 56 -17 0 1 1 0 0 0 +( 1284 -1310 -288 ) ( 1352 -1280 -288 ) ( 1352 -1280 -128 ) bricks/c_sr_mr5 72 -17 0 1 1 0 0 0 +} +// brush 1473 +{ +( 1088 -1368 -272 ) ( 1088 -1000 -272 ) ( 960 -1000 -272 ) bricks/c_sr_mr5 55 22 90 1 1 0 0 0 +( 960 -1000 -256 ) ( 1088 -1000 -256 ) ( 1088 -1368 -256 ) bricks/c_sr_mr5 0 15 32 1 1 0 0 0 +( 1292 -1324 -288 ) ( 1224 -1368 -288 ) ( 1224 -1368 -128 ) bricks/c_sr_mr5 -7 -17 -180 1 -1 0 0 0 +( 1224 -1368 -288 ) ( 1214 -1356 -288 ) ( 1214 -1356 -128 ) bricks/c_sr_mr5 56 -17 0 1 1 0 0 0 +( 1292 -1324 -128 ) ( 1284 -1310 -128 ) ( 1284 -1310 -288 ) bricks/c_sr_mr5 56 -17 0 1 1 0 0 0 +( 1284 -1310 -128 ) ( 1214 -1356 -128 ) ( 1214 -1356 -288 ) bricks/c_sr_mr5 72 -17 0 1 1 0 0 0 +} +// brush 1474 +{ +( 1396 -896 -96 ) ( 1240 -928 -96 ) ( 1250 -959 -64 ) bricks/c_tn_m1 37 15 192 1 1 0 0 0 +( 1250 -959 -64 ) ( 1240 -928 -96 ) ( 1240 -928 -48 ) bricks/c_tn_m1 37 15 192 1 1 0 0 0 +( 1240 -928 -48 ) ( 1240 -928 -96 ) ( 1396 -896 -96 ) bricks/c_tn_m1 37 15 192 1 1 0 0 0 +( 1396 -896 -48 ) ( 1396 -896 -96 ) ( 1250 -959 -64 ) bricks/c_tn_m1 37 15 192 1 1 0 0 0 +( 956 -896 -64 ) ( 984 -959 -64 ) ( 928 -959 -64 ) bricks/c_tn_m1 37 15 192 1 1 0 0 0 +} +// brush 1475 +{ +( 1399 -928 -64 ) ( 1396 -896 -96 ) ( 1250 -959 -64 ) bricks/c_tn_m1 37 15 192 1 1 0 0 0 +( 1396 -896 -48 ) ( 1396 -896 -96 ) ( 1399 -928 -64 ) bricks/c_tn_m1 37 15 192 1 1 0 0 0 +( 1250 -959 -64 ) ( 1396 -896 -96 ) ( 1396 -896 -48 ) bricks/c_tn_m1 37 15 192 1 1 0 0 0 +( 956 -896 -64 ) ( 984 -959 -64 ) ( 928 -959 -64 ) bricks/c_tn_m1 37 15 192 1 1 0 0 0 +} +// brush 1476 +{ +( 1292 -1324 -96 ) ( 1202 -1342 -64 ) ( 1224 -1368 -96 ) bricks/c_tn_m1 -124 16 32 1 1 0 0 0 +( 1292 -1324 -96 ) ( 1224 -1368 -96 ) ( 1224 -1368 -48 ) bricks/c_tn_m1 -124 16 32 1 1 0 0 0 +( 1224 -1368 -96 ) ( 1202 -1342 -64 ) ( 1224 -1368 -64 ) bricks/c_tn_m1 -124 16 32 1 1 0 0 0 +( 1292 -1324 -64 ) ( 1202 -1342 -64 ) ( 1292 -1324 -96 ) bricks/c_tn_m1 -124 16 32 1 1 0 0 0 +( 1224 -1368 -64 ) ( 1202 -1342 -64 ) ( 1292 -1324 -64 ) bricks/c_tn_m1 -124 16 32 1 1 0 0 0 +} +// brush 1477 +{ +( 1277 -1296 -64 ) ( 1202 -1342 -64 ) ( 1292 -1324 -96 ) bricks/c_tn_m1 -124 16 32 1 1 0 0 0 +( 1277 -1296 -64 ) ( 1292 -1324 -96 ) ( 1292 -1324 -48 ) bricks/c_tn_m1 -124 16 32 1 1 0 0 0 +( 1292 -1324 -96 ) ( 1202 -1342 -64 ) ( 1292 -1324 -64 ) bricks/c_tn_m1 -124 16 32 1 1 0 0 0 +( 1292 -1324 -64 ) ( 1202 -1342 -64 ) ( 1277 -1296 -64 ) bricks/c_tn_m1 -124 16 32 1 1 0 0 0 +} +// brush 1478 +{ +( 1346 -1265 -64 ) ( 1356 -1296 -96 ) ( 1432 -1280 -96 ) bricks/c_tn_m1 0 -14 12 1 1 0 0 0 +( 1432 -1280 -96 ) ( 1356 -1296 -96 ) ( 1356 -1296 -48 ) bricks/c_tn_m1 0 -14 12 1 1 0 0 0 +( 1356 -1296 -48 ) ( 1356 -1296 -96 ) ( 1346 -1265 -64 ) bricks/c_tn_m1 0 -14 12 1 1 0 0 0 +( 1346 -1265 -48 ) ( 1346 -1265 -64 ) ( 1432 -1280 -96 ) bricks/c_tn_m1 0 -14 12 1 1 0 0 0 +( 1346 -1516 -64 ) ( 1432 -1504 -64 ) ( 1432 -1528 -64 ) bricks/c_tn_m1 0 -14 12 1 1 0 0 0 +} +// brush 1479 +{ +( 1346 -1265 -64 ) ( 1432 -1280 -96 ) ( 1429 -1248 -64 ) bricks/c_tn_m1 0 -14 12 1 1 0 0 0 +( 1429 -1248 -64 ) ( 1432 -1280 -96 ) ( 1432 -1280 -48 ) bricks/c_tn_m1 0 -14 12 1 1 0 0 0 +( 1432 -1280 -48 ) ( 1432 -1280 -96 ) ( 1346 -1265 -64 ) bricks/c_tn_m1 0 -14 12 1 1 0 0 0 +( 1346 -1516 -64 ) ( 1432 -1504 -64 ) ( 1432 -1528 -64 ) bricks/c_tn_m1 0 -14 12 1 1 0 0 0 +} +// brush 1480 +{ +( 1472 -896 -48 ) ( 1396 -896 -48 ) ( 1396 -896 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1396 -896 -48 ) ( 1240 -928 -48 ) ( 1240 -928 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1240 -928 -48 ) ( 1108 -984 -48 ) ( 1108 -984 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1108 -984 -48 ) ( 984 -1064 -48 ) ( 984 -1064 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 984 -1064 -48 ) ( 872 -1176 -48 ) ( 872 -1176 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 704 -896 -64 ) ( 704 -2432 -64 ) ( 2240 -2432 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2240 -2432 -48 ) ( 704 -2432 -48 ) ( 704 -896 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1472 -1116 -48 ) ( 1472 -1088 -112 ) ( 1472 -1144 -112 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1200 -1392 -64 ) ( 1200 -1392 -48 ) ( 1472 -1280 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1200 -1392 -48 ) ( 1200 -1392 -64 ) ( 928 -1120 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1481 +{ +( 1472 -896 -272 ) ( 1396 -896 -272 ) ( 1396 -896 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1396 -896 -272 ) ( 1240 -928 -272 ) ( 1240 -928 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1240 -928 -272 ) ( 1108 -984 -272 ) ( 1108 -984 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1108 -984 -272 ) ( 984 -1064 -272 ) ( 984 -1064 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 984 -1064 -272 ) ( 872 -1176 -272 ) ( 872 -1176 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 704 -896 -288 ) ( 704 -2432 -288 ) ( 2240 -2432 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2240 -2432 -272 ) ( 704 -2432 -272 ) ( 704 -896 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1472 -1116 -272 ) ( 1472 -1088 -336 ) ( 1472 -1144 -336 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1200 -1392 -288 ) ( 1200 -1392 -272 ) ( 1472 -1280 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1200 -1392 -272 ) ( 1200 -1392 -288 ) ( 928 -1120 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1482 +{ +( 960 -1000 -64 ) ( 1088 -1000 -64 ) ( 1088 -1368 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 973 -1051 -272 ) ( 973 -1051 -64 ) ( 984 -1064 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 973 -1051 -64 ) ( 973 -1051 -272 ) ( 1100 -970 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1108 -984 -64 ) ( 1100 -970 -64 ) ( 1100 -970 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1046 -1024 -64 ) ( 1108 -984 -80 ) ( 984 -1064 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 760 -970 -272 ) ( 744 -1064 -272 ) ( 776 -1064 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1483 +{ +( 1092 -944 -64 ) ( 1220 -944 -64 ) ( 1220 -1312 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1108 -984 -80 ) ( 1100 -970 -80 ) ( 1100 -970 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1234 -912 -272 ) ( 1100 -970 -272 ) ( 1100 -970 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1240 -928 -64 ) ( 1234 -912 -64 ) ( 1234 -912 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1174 -956 -64 ) ( 1240 -928 -80 ) ( 1108 -984 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 760 -912 -272 ) ( 744 -984 -272 ) ( 776 -984 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1484 +{ +( 1248 -912 -64 ) ( 1376 -912 -64 ) ( 1376 -1280 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1240 -928 -80 ) ( 1234 -912 -80 ) ( 1234 -912 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1394 -880 -272 ) ( 1234 -912 -272 ) ( 1234 -912 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1396 -896 -64 ) ( 1394 -880 -64 ) ( 1394 -880 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1318 -912 -64 ) ( 1396 -896 -80 ) ( 1240 -928 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 760 -880 -272 ) ( 744 -928 -272 ) ( 776 -928 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1485 +{ +( 1248 -912 -64 ) ( 1376 -912 -64 ) ( 1376 -1280 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1434 -1296 -224 ) ( 1360 -1312 -224 ) ( 1360 -1312 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1356 -1296 -64 ) ( 1360 -1312 -64 ) ( 1360 -1312 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1432 -1280 -80 ) ( 1434 -1296 -80 ) ( 1434 -1296 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1394 -1288 -128 ) ( 1356 -1296 -144 ) ( 1432 -1280 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2912 -1280 -272 ) ( 2896 -1312 -272 ) ( 2928 -1312 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1486 +{ +( 1092 -944 -64 ) ( 1220 -944 -64 ) ( 1220 -1312 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1360 -1312 -288 ) ( 1300 -1338 -288 ) ( 1300 -1338 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1292 -1324 -64 ) ( 1300 -1338 -64 ) ( 1300 -1338 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1356 -1296 -80 ) ( 1360 -1312 -80 ) ( 1360 -1312 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1324 -1310 -128 ) ( 1292 -1324 -144 ) ( 1356 -1296 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2912 -1296 -272 ) ( 2896 -1338 -272 ) ( 2928 -1338 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1487 +{ +( 960 -1000 -64 ) ( 1088 -1000 -64 ) ( 1088 -1368 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1300 -1338 -224 ) ( 1234 -1382 -224 ) ( 1234 -1382 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1224 -1368 -64 ) ( 1234 -1382 -64 ) ( 1234 -1382 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1292 -1324 -80 ) ( 1300 -1338 -80 ) ( 1300 -1338 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1258 -1346 -128 ) ( 1224 -1368 -144 ) ( 1292 -1324 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2912 -1324 -272 ) ( 2896 -1382 -272 ) ( 2928 -1382 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1488 +{ +( 1108 -984 -96 ) ( 1006 -1090 -64 ) ( 1124 -1013 -64 ) bricks/c_tn_m1 39 -11 213 1 1 0 0 0 +( 1108 -984 -48 ) ( 1108 -984 -96 ) ( 1124 -1013 -64 ) bricks/c_tn_m1 39 -11 213 1 1 0 0 0 +( 1108 -984 -64 ) ( 1006 -1090 -64 ) ( 1108 -984 -96 ) bricks/c_tn_m1 39 -11 213 1 1 0 0 0 +( 1124 -1013 -64 ) ( 1006 -1090 -64 ) ( 1108 -984 -64 ) bricks/c_tn_m1 39 -11 213 1 1 0 0 0 +} +// brush 1489 +{ +( 984 -1064 -96 ) ( 1006 -1090 -64 ) ( 1108 -984 -96 ) bricks/c_tn_m1 39 -11 213 1 1 0 0 0 +( 984 -1064 -64 ) ( 1006 -1090 -64 ) ( 984 -1064 -96 ) bricks/c_tn_m1 39 -11 213 1 1 0 0 0 +( 984 -1064 -48 ) ( 984 -1064 -96 ) ( 1108 -984 -96 ) bricks/c_tn_m1 39 -11 213 1 1 0 0 0 +( 1108 -984 -96 ) ( 1006 -1090 -64 ) ( 1108 -984 -64 ) bricks/c_tn_m1 39 -11 213 1 1 0 0 0 +( 1108 -984 -64 ) ( 1006 -1090 -64 ) ( 984 -1064 -64 ) bricks/c_tn_m1 39 -11 213 1 1 0 0 0 +} +// brush 1490 +{ +( 1432 -1280 -64 ) ( 1429 -1248 -64 ) ( 1707 -1248 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1704 -1280 -64 ) ( 1704 -1280 -96 ) ( 1664 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1707 -1248 -64 ) ( 1429 -1248 -64 ) ( 1432 -1280 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1432 -1280 -96 ) ( 1429 -1248 -64 ) ( 1432 -1280 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1472 -1248 -96 ) ( 1472 -1264 -96 ) ( 1472 -1256 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 1491 +{ +( 1226 -911 -64 ) ( 1216 -880 -96 ) ( 1100 -965 -64 ) bricks/c_tn_m1 -43 25 203 1 1 0 0 0 +( 1216 -880 -48 ) ( 1216 -880 -96 ) ( 1226 -911 -64 ) bricks/c_tn_m1 -178 -11 203 1 1 0 0 0 +( 1100 -965 -64 ) ( 1216 -880 -96 ) ( 1216 -880 -48 ) bricks/c_tn_m1 -202 -20 203 1 1 0 0 0 +( 932 -880 -64 ) ( 960 -965 -64 ) ( 904 -965 -64 ) bricks/c_tn_m1 -43 25 203 1 1 0 0 0 +} +// brush 1492 +{ +( 1216 -880 -96 ) ( 1084 -936 -96 ) ( 1100 -965 -64 ) bricks/c_tn_m1 -43 25 203 1 1 0 0 0 +( 1100 -965 -64 ) ( 1084 -936 -96 ) ( 1084 -936 -48 ) bricks/c_tn_m1 -178 -11 203 1 1 0 0 0 +( 1084 -936 -48 ) ( 1084 -936 -96 ) ( 1216 -880 -96 ) bricks/c_tn_m1 -202 -20 203 1 1 0 0 0 +( 1216 -880 -48 ) ( 1216 -880 -96 ) ( 1100 -965 -64 ) bricks/c_tn_m1 -202 -20 203 1 1 0 0 0 +( 932 -880 -64 ) ( 960 -965 -64 ) ( 904 -965 -64 ) bricks/c_tn_m1 -43 25 203 1 1 0 0 0 +} +// brush 1493 +{ +( 1250 -959 -64 ) ( 1240 -928 -96 ) ( 1124 -1013 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 1124 -1013 -64 ) ( 1240 -928 -96 ) ( 1240 -928 -48 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 956 -928 -64 ) ( 984 -1013 -64 ) ( 928 -1013 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 1146 -978 -96 ) ( 1156 -1000 -96 ) ( 1151 -989 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +} +// brush 1494 +{ +( 1240 -928 -96 ) ( 1108 -984 -96 ) ( 1124 -1013 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 1124 -1013 -64 ) ( 1108 -984 -96 ) ( 1108 -984 -48 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 1108 -984 -48 ) ( 1108 -984 -96 ) ( 1240 -928 -96 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 1240 -928 -48 ) ( 1240 -928 -96 ) ( 1124 -1013 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 956 -928 -64 ) ( 984 -1013 -64 ) ( 928 -1013 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 1146 -978 -96 ) ( 1156 -1000 -96 ) ( 1151 -989 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +} +// brush 1495 +{ +( 1240 -928 -96 ) ( 1108 -984 -96 ) ( 1124 -1013 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 1108 -984 -48 ) ( 1108 -984 -96 ) ( 1240 -928 -96 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 1240 -928 -48 ) ( 1240 -928 -96 ) ( 1124 -1013 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 956 -928 -64 ) ( 984 -1013 -64 ) ( 928 -1013 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 1212 -968 -96 ) ( 1202 -946 -96 ) ( 1207 -957 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +} +// brush 1496 +{ +( 1250 -959 -64 ) ( 1240 -928 -96 ) ( 1124 -1013 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 1240 -928 -48 ) ( 1240 -928 -96 ) ( 1250 -959 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 1124 -1013 -64 ) ( 1240 -928 -96 ) ( 1240 -928 -48 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 956 -928 -64 ) ( 984 -1013 -64 ) ( 928 -1013 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 1212 -968 -96 ) ( 1202 -946 -96 ) ( 1207 -957 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +} +// brush 1497 +{ +( 1250 -959 -64 ) ( 1240 -928 -96 ) ( 1124 -1013 -64 ) common/li_pv_v4a -31 4 203 1 1 0 1 7000 +( 1124 -1013 -64 ) ( 1240 -928 -96 ) ( 1240 -928 -48 ) common/li_pv_v4a -31 4 203 1 1 0 1 7000 +( 956 -928 -64 ) ( 984 -1013 -64 ) ( 928 -1013 -64 ) common/li_pv_v4a -31 4 203 1 1 0 1 7000 +( 1156 -1000 -96 ) ( 1146 -978 -96 ) ( 1151 -989 -64 ) common/li_pv_v4a -31 4 203 1 1 0 1 7000 +( 1202 -946 -96 ) ( 1212 -968 -96 ) ( 1207 -957 -64 ) common/li_pv_v4a -31 4 203 1 1 0 1 7000 +( 1212 -968 -86 ) ( 1146 -996 -86 ) ( 1179 -982 -64 ) common/li_pv_v4a -31 4 203 1 1 0 1 7000 +} +// brush 1498 +{ +( 1250 -959 -64 ) ( 1240 -928 -96 ) ( 1124 -1013 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 956 -928 -64 ) ( 984 -1013 -64 ) ( 928 -1013 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 1156 -1000 -96 ) ( 1146 -978 -96 ) ( 1151 -989 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 1202 -946 -96 ) ( 1212 -968 -96 ) ( 1207 -957 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 1146 -996 -86 ) ( 1212 -968 -86 ) ( 1179 -982 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +} +// brush 1499 +{ +( 1240 -928 -96 ) ( 1108 -984 -96 ) ( 1124 -1013 -64 ) common/li_pv_v4a -31 4 203 1 1 0 1 7000 +( 1240 -928 -48 ) ( 1240 -928 -96 ) ( 1124 -1013 -64 ) common/li_pv_v4a -31 4 203 1 1 0 1 7000 +( 956 -928 -64 ) ( 984 -1013 -64 ) ( 928 -1013 -64 ) common/li_pv_v4a -31 4 203 1 1 0 1 7000 +( 1156 -1000 -96 ) ( 1146 -978 -96 ) ( 1151 -989 -64 ) common/li_pv_v4a -31 4 203 1 1 0 1 7000 +( 1202 -946 -96 ) ( 1212 -968 -96 ) ( 1207 -957 -64 ) common/li_pv_v4a -31 4 203 1 1 0 1 7000 +( 1146 -978 -96 ) ( 1212 -950 -96 ) ( 1179 -964 -64 ) common/li_pv_v4a -31 4 203 1 1 0 1 7000 +} +// brush 1500 +{ +( 1240 -928 -96 ) ( 1108 -984 -96 ) ( 1124 -1013 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 1108 -984 -48 ) ( 1108 -984 -96 ) ( 1240 -928 -96 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 956 -928 -64 ) ( 984 -1013 -64 ) ( 928 -1013 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 1156 -1000 -96 ) ( 1146 -978 -96 ) ( 1151 -989 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 1202 -946 -96 ) ( 1212 -968 -96 ) ( 1207 -957 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +( 1212 -950 -96 ) ( 1146 -978 -96 ) ( 1179 -964 -64 ) bricks/c_tn_m1 50 -4 203 1 1 0 0 0 +} +// brush 1501 +{ +( 1301 -1344 -64 ) ( 1380 -1344 -96 ) ( 1370 -1313 -64 ) bricks/c_tn_m1 221 -13 24 1 1 0 0 0 +( 1370 -1313 -64 ) ( 1380 -1344 -96 ) ( 1380 -1344 -48 ) bricks/c_tn_m1 219 24 24 1 1 0 0 0 +( 1380 -1344 -48 ) ( 1380 -1344 -96 ) ( 1301 -1344 -64 ) bricks/c_tn_m1 103 30 24 1 1 0 0 0 +( 1301 -1564 -64 ) ( 1380 -1552 -64 ) ( 1380 -1576 -64 ) bricks/c_tn_m1 221 -13 24 1 1 0 0 0 +} +// brush 1502 +{ +( 1301 -1344 -64 ) ( 1316 -1372 -96 ) ( 1380 -1344 -96 ) bricks/c_tn_m1 221 -13 24 1 1 0 0 0 +( 1380 -1344 -96 ) ( 1316 -1372 -96 ) ( 1316 -1372 -48 ) bricks/c_tn_m1 103 30 24 1 1 0 0 0 +( 1316 -1372 -48 ) ( 1316 -1372 -96 ) ( 1301 -1344 -64 ) bricks/c_tn_m1 219 24 24 1 1 0 0 0 +( 1301 -1344 -64 ) ( 1380 -1344 -96 ) ( 1380 -1344 -48 ) bricks/c_tn_m1 103 30 24 1 1 0 0 0 +( 1301 -1564 -64 ) ( 1380 -1552 -64 ) ( 1380 -1576 -64 ) bricks/c_tn_m1 221 -13 24 1 1 0 0 0 +} +// brush 1503 +{ +( -128 -2920 -64 ) ( -160 -2923 -64 ) ( -160 -2837 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -160 -2837 -64 ) ( -160 -2923 -64 ) ( -128 -2920 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -144 -2848 -64 ) ( -152 -2848 -96 ) ( -136 -2848 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -136 -2912 -64 ) ( -128 -2912 -96 ) ( -144 -2912 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -152 -2852 -64 ) ( -152 -2848 -88 ) ( -152 -2856 -88 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1504 +{ +( -128 -2920 -64 ) ( -160 -2923 -64 ) ( -160 -2837 -64 ) common/li_pv_v4a -32 -7 90 1 1 0 1 7000 +( -160 -2837 -64 ) ( -160 -2923 -64 ) ( -128 -2920 -96 ) common/li_pv_v4a -32 -7 90 1 1 0 1 7000 +( -144 -2848 -64 ) ( -152 -2848 -96 ) ( -136 -2848 -96 ) common/li_pv_v4a 32 -6 90 1 1 0 1 7000 +( -136 -2912 -64 ) ( -128 -2912 -96 ) ( -144 -2912 -96 ) common/li_pv_v4a 32 -6 90 1 1 0 1 7000 +( -136 -2852 -64 ) ( -136 -2848 -96 ) ( -136 -2856 -96 ) common/li_pv_v4a 31 8 90 1 1 0 1 7000 +( -152 -2852 -64 ) ( -152 -2856 -88 ) ( -152 -2848 -88 ) common/li_pv_v4a 31 8 90 1 1 0 1 7000 +} +// brush 1505 +{ +( -128 -2920 -64 ) ( -160 -2923 -64 ) ( -160 -2837 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -128 -2952 -64 ) ( -128 -2696 -64 ) ( -128 -2696 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -160 -2837 -64 ) ( -160 -2923 -64 ) ( -128 -2920 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -144 -2848 -64 ) ( -152 -2848 -96 ) ( -136 -2848 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -136 -2912 -64 ) ( -128 -2912 -96 ) ( -144 -2912 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -136 -2852 -64 ) ( -136 -2856 -96 ) ( -136 -2848 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1506 +{ +( -128 -2920 -64 ) ( -160 -2923 -64 ) ( -160 -2837 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -128 -2952 -64 ) ( -128 -2696 -64 ) ( -128 -2696 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -160 -2837 -64 ) ( -160 -2923 -64 ) ( -128 -2920 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -128 -2920 -96 ) ( -160 -2923 -64 ) ( -128 -2920 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -136 -2912 -64 ) ( -144 -2912 -96 ) ( -128 -2912 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1507 +{ +( -128 -2920 -64 ) ( -160 -2923 -64 ) ( -160 -2837 -64 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -128 -2952 -64 ) ( -128 -2696 -64 ) ( -128 -2696 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -160 -2837 -64 ) ( -160 -2923 -64 ) ( -128 -2920 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -128 -2840 -64 ) ( -160 -2837 -64 ) ( -128 -2840 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -144 -2848 -64 ) ( -136 -2848 -96 ) ( -152 -2848 -96 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1508 +{ +( -513 -2642 -64 ) ( -544 -2632 -96 ) ( -576 -2788 -96 ) bricks/c_tn_m1 -18 -13 102 1 1 0 0 0 +( -544 -2632 -48 ) ( -544 -2632 -96 ) ( -513 -2642 -64 ) bricks/c_tn_m1 158 -14 102 1 1 0 0 0 +( -576 -2788 -96 ) ( -544 -2632 -96 ) ( -544 -2632 -48 ) bricks/c_tn_m1 7 26 102 1 1 0 0 0 +( -513 -2642 -64 ) ( -576 -2788 -96 ) ( -576 -2788 -48 ) bricks/c_tn_m1 7 26 102 1 1 0 0 0 +( -324 -2632 -64 ) ( -296 -2788 -64 ) ( -352 -2788 -64 ) bricks/c_tn_m1 -18 -13 102 1 1 0 0 0 +} +// brush 1509 +{ +( -513 -2642 -64 ) ( -576 -2788 -96 ) ( -544 -2791 -64 ) bricks/c_tn_m1 -18 -13 102 1 1 0 0 0 +( -544 -2791 -64 ) ( -576 -2788 -96 ) ( -576 -2788 -48 ) bricks/c_tn_m1 158 -14 102 1 1 0 0 0 +( -576 -2788 -48 ) ( -576 -2788 -96 ) ( -513 -2642 -64 ) bricks/c_tn_m1 7 26 102 1 1 0 0 0 +( -324 -2642 -64 ) ( -296 -2791 -64 ) ( -352 -2791 -64 ) bricks/c_tn_m1 -18 -13 102 1 1 0 0 0 +} +// brush 1510 +{ +( -480 -3112 -96 ) ( -424 -3244 -96 ) ( -395 -3228 -64 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -424 -3244 -48 ) ( -424 -3244 -96 ) ( -480 -3112 -96 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -288 -3112 -64 ) ( -232 -3112 -64 ) ( -260 -3244 -64 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -450 -3138 -64 ) ( -460 -3142 -96 ) ( -440 -3134 -96 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -426 -3197 -64 ) ( -414 -3192 -96 ) ( -438 -3202 -96 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -446 -3172 -64 ) ( -460 -3138 -96 ) ( -432 -3206 -96 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +} +// brush 1511 +{ +( -480 -3112 -96 ) ( -424 -3244 -96 ) ( -395 -3228 -64 ) common/li_pv_v4a -24 -1 293 1 1 0 1 7000 +( -480 -3112 -48 ) ( -480 -3112 -96 ) ( -395 -3228 -64 ) common/li_pv_v4a -24 -1 293 1 1 0 1 7000 +( -288 -3112 -64 ) ( -232 -3112 -64 ) ( -260 -3244 -64 ) common/li_pv_v4a -24 -1 293 1 1 0 1 7000 +( -450 -3138 -64 ) ( -460 -3142 -96 ) ( -440 -3134 -96 ) common/li_pv_v4a -24 -1 293 1 1 0 1 7000 +( -426 -3197 -64 ) ( -414 -3192 -96 ) ( -438 -3202 -96 ) common/li_pv_v4a -24 -1 293 1 1 0 1 7000 +( -446 -3172 -64 ) ( -432 -3206 -96 ) ( -460 -3138 -96 ) common/li_pv_v4a -24 -1 293 1 1 0 1 7000 +} +// brush 1512 +{ +( -449 -3102 -64 ) ( -480 -3112 -96 ) ( -395 -3228 -64 ) common/li_pv_v4a -24 -1 293 1 1 0 1 7000 +( -395 -3228 -64 ) ( -480 -3112 -96 ) ( -480 -3112 -48 ) common/li_pv_v4a -24 -1 293 1 1 0 1 7000 +( -288 -3102 -64 ) ( -232 -3102 -64 ) ( -260 -3228 -64 ) common/li_pv_v4a -24 -1 293 1 1 0 1 7000 +( -450 -3138 -64 ) ( -460 -3142 -96 ) ( -440 -3134 -96 ) common/li_pv_v4a -24 -1 293 1 1 0 1 7000 +( -426 -3197 -64 ) ( -414 -3192 -88 ) ( -438 -3202 -88 ) common/li_pv_v4a -24 -1 293 1 1 0 1 7000 +( -430 -3165 -64 ) ( -444 -3132 -88 ) ( -416 -3198 -88 ) common/li_pv_v4a -24 -1 293 1 1 0 1 7000 +} +// brush 1513 +{ +( -449 -3102 -64 ) ( -480 -3112 -96 ) ( -395 -3228 -64 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -288 -3102 -64 ) ( -232 -3102 -64 ) ( -260 -3228 -64 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -450 -3138 -64 ) ( -460 -3142 -96 ) ( -440 -3134 -96 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -426 -3197 -64 ) ( -414 -3192 -88 ) ( -438 -3202 -88 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -430 -3165 -64 ) ( -416 -3198 -88 ) ( -444 -3132 -88 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +} +// brush 1514 +{ +( -480 -3112 -96 ) ( -424 -3244 -96 ) ( -395 -3228 -64 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -395 -3228 -64 ) ( -424 -3244 -96 ) ( -424 -3244 -48 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -424 -3244 -48 ) ( -424 -3244 -96 ) ( -480 -3112 -96 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -480 -3112 -48 ) ( -480 -3112 -96 ) ( -395 -3228 -64 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -288 -3112 -64 ) ( -232 -3112 -64 ) ( -260 -3244 -64 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -426 -3197 -64 ) ( -438 -3202 -96 ) ( -414 -3192 -96 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +} +// brush 1515 +{ +( -449 -3102 -64 ) ( -480 -3112 -96 ) ( -395 -3228 -64 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -395 -3228 -64 ) ( -480 -3112 -96 ) ( -480 -3112 -48 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -288 -3102 -64 ) ( -232 -3102 -64 ) ( -260 -3228 -64 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -426 -3197 -64 ) ( -438 -3202 -88 ) ( -414 -3192 -88 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +} +// brush 1516 +{ +( -480 -3112 -96 ) ( -424 -3244 -96 ) ( -395 -3228 -64 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -424 -3244 -48 ) ( -424 -3244 -96 ) ( -480 -3112 -96 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -480 -3112 -48 ) ( -480 -3112 -96 ) ( -395 -3228 -64 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -288 -3112 -64 ) ( -232 -3112 -64 ) ( -260 -3244 -64 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -450 -3138 -64 ) ( -440 -3134 -96 ) ( -460 -3142 -96 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +} +// brush 1517 +{ +( -449 -3102 -64 ) ( -480 -3112 -96 ) ( -395 -3228 -64 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -480 -3112 -48 ) ( -480 -3112 -96 ) ( -449 -3102 -64 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -395 -3228 -64 ) ( -480 -3112 -96 ) ( -480 -3112 -48 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -288 -3102 -64 ) ( -232 -3102 -64 ) ( -260 -3228 -64 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +( -450 -3138 -64 ) ( -440 -3134 -96 ) ( -460 -3142 -96 ) bricks/c_tn_m1 191 7 293 1 1 0 0 0 +} +// brush 1518 +{ +( -513 -3134 -64 ) ( -544 -3144 -96 ) ( -459 -3260 -64 ) bricks/c_tn_m1 31 0 67 1 1 0 0 0 +( -544 -3144 -48 ) ( -544 -3144 -96 ) ( -513 -3134 -64 ) bricks/c_tn_m1 60 -12 67 1 1 0 0 0 +( -459 -3260 -64 ) ( -544 -3144 -96 ) ( -544 -3144 -48 ) bricks/c_tn_m1 66 -18 67 1 1 0 0 0 +( -352 -3134 -64 ) ( -296 -3134 -64 ) ( -324 -3260 -64 ) bricks/c_tn_m1 31 0 67 1 1 0 0 0 +} +// brush 1519 +{ +( -544 -3144 -96 ) ( -488 -3276 -96 ) ( -459 -3260 -64 ) bricks/c_tn_m1 31 0 67 1 1 0 0 0 +( -459 -3260 -64 ) ( -488 -3276 -96 ) ( -488 -3276 -48 ) bricks/c_tn_m1 60 -12 67 1 1 0 0 0 +( -488 -3276 -48 ) ( -488 -3276 -96 ) ( -544 -3144 -96 ) bricks/c_tn_m1 66 -18 67 1 1 0 0 0 +( -544 -3144 -48 ) ( -544 -3144 -96 ) ( -459 -3260 -64 ) bricks/c_tn_m1 66 -18 67 1 1 0 0 0 +( -352 -3144 -64 ) ( -296 -3144 -64 ) ( -324 -3276 -64 ) bricks/c_tn_m1 31 0 67 1 1 0 0 0 +} +// brush 1520 +{ +( -318 -3347 -64 ) ( -395 -3228 -64 ) ( -424 -3244 -96 ) bricks/c_tn_m1 -29 -10 303 1 1 0 0 0 +( -318 -3347 -64 ) ( -424 -3244 -96 ) ( -424 -3244 -48 ) bricks/c_tn_m1 -29 -10 303 1 1 0 0 0 +( -424 -3244 -64 ) ( -395 -3228 -64 ) ( -318 -3347 -64 ) bricks/c_tn_m1 -29 -10 303 1 1 0 0 0 +( -424 -3244 -96 ) ( -395 -3228 -64 ) ( -424 -3244 -64 ) bricks/c_tn_m1 -29 -10 303 1 1 0 0 0 +} +// brush 1521 +{ +( -318 -3347 -64 ) ( -424 -3244 -96 ) ( -344 -3368 -96 ) bricks/c_tn_m1 -29 -10 303 1 1 0 0 0 +( -318 -3347 -64 ) ( -344 -3368 -96 ) ( -344 -3368 -48 ) bricks/c_tn_m1 -29 -10 303 1 1 0 0 0 +( -344 -3368 -96 ) ( -424 -3244 -96 ) ( -424 -3244 -64 ) bricks/c_tn_m1 -29 -10 303 1 1 0 0 0 +( -318 -3347 -64 ) ( -424 -3244 -64 ) ( -424 -3244 -96 ) bricks/c_tn_m1 -29 -10 303 1 1 0 0 0 +( -424 -3396 -64 ) ( -318 -3368 -64 ) ( -318 -3424 -64 ) bricks/c_tn_m1 -29 -10 303 1 1 0 0 0 +( -418 -3226 -64 ) ( -428 -3232 -96 ) ( -408 -3220 -96 ) bricks/c_tn_m1 -29 -10 303 1 1 0 0 0 +} +// brush 1522 +{ +( -264 -2360 -64 ) ( -317 -2413 -64 ) ( -344 -2392 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -460 -2508 -96 ) ( -228 -2276 -96 ) ( -228 -2276 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -344 -2392 -96 ) ( -317 -2413 -64 ) ( -264 -2360 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -344 -2392 -64 ) ( -317 -2413 -64 ) ( -344 -2392 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -276 -2348 -64 ) ( -288 -2336 -96 ) ( -264 -2360 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +} +// brush 1523 +{ +( -40 -2632 -64 ) ( -60 -2604 -64 ) ( -40 -2584 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 280 -2312 -96 ) ( 48 -2544 -96 ) ( 48 -2544 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( -40 -2584 -64 ) ( -60 -2604 -64 ) ( -40 -2632 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( -28 -2596 -64 ) ( -40 -2584 -96 ) ( -16 -2608 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( -40 -2632 -96 ) ( -60 -2604 -64 ) ( -40 -2632 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +} +// brush 1524 +{ +( -40 -2496 -256 ) ( -408 -2496 -256 ) ( -408 -2368 -256 ) bricks/c_sr_mr5 0 -10 237 -1 1 0 0 0 +( -408 -2368 -272 ) ( -408 -2496 -272 ) ( -40 -2496 -272 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -344 -2392 -272 ) ( -332 -2402 -272 ) ( -332 -2402 -256 ) bricks/c_sr_mr5 -64 16 0 1 1 0 0 0 +( -344 -2392 -240 ) ( -424 -2516 -240 ) ( -424 -2516 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -424 -2516 -256 ) ( -411 -2523 -256 ) ( -411 -2523 -272 ) bricks/c_sr_mr5 -64 16 0 1 1 0 0 0 +( -332 -2402 -272 ) ( -411 -2523 -272 ) ( -411 -2523 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1525 +{ +( -96 -2628 -256 ) ( -464 -2628 -256 ) ( -464 -2500 -256 ) bricks/c_sr_mr5 0 16 247 -1 1 0 0 0 +( -464 -2500 -272 ) ( -464 -2628 -272 ) ( -96 -2628 -272 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -424 -2516 -272 ) ( -411 -2523 -272 ) ( -411 -2523 -256 ) bricks/c_sr_mr5 -64 16 0 1 1 0 0 0 +( -480 -2648 -400 ) ( -424 -2516 -400 ) ( -424 -2516 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -480 -2648 -256 ) ( -465 -2653 -256 ) ( -465 -2653 -272 ) bricks/c_sr_mr5 -64 16 0 1 1 0 0 0 +( -411 -2523 -272 ) ( -465 -2653 -272 ) ( -465 -2653 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1526 +{ +( -128 -2784 -256 ) ( -496 -2784 -256 ) ( -496 -2656 -256 ) bricks/c_sr_mr5 0 -15 258 1 1 0 0 0 +( -496 -2656 -272 ) ( -496 -2784 -272 ) ( -128 -2784 -272 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -480 -2648 -272 ) ( -465 -2653 -272 ) ( -465 -2653 -256 ) bricks/c_sr_mr5 -64 16 0 1 1 0 0 0 +( -480 -2648 -240 ) ( -512 -2804 -240 ) ( -512 -2804 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -512 -2804 -240 ) ( -496 -2806 -240 ) ( -496 -2806 -400 ) bricks/c_sr_mr5 -64 16 0 1 1 0 0 0 +( -496 -2806 -256 ) ( -465 -2653 -256 ) ( -465 -2653 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1527 +{ +( -144 -2880 -256 ) ( -512 -2880 -256 ) ( -512 -2752 -256 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -512 -2752 -272 ) ( -512 -2880 -272 ) ( -144 -2880 -272 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -512 -2804 -416 ) ( -496 -2806 -416 ) ( -496 -2806 -256 ) bricks/c_sr_mr5 -64 16 0 1 1 0 0 0 +( -512 -2804 -256 ) ( -512 -2956 -256 ) ( -512 -2956 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -496 -2954 -272 ) ( -512 -2956 -272 ) ( -512 -2956 -256 ) bricks/c_sr_mr5 -64 16 0 1 1 0 0 0 +( -496 -2880 -256 ) ( -496 -2806 -256 ) ( -496 -2806 -416 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1528 +{ +( -40 -2496 -256 ) ( -408 -2496 -256 ) ( -408 -2368 -256 ) bricks/c_sr_mr5 0 7 57 1 1 0 0 0 +( -408 -2368 -272 ) ( -408 -2496 -272 ) ( -40 -2496 -272 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( -84 -2700 -240 ) ( -40 -2632 -240 ) ( -40 -2632 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -40 -2632 -240 ) ( -52 -2622 -240 ) ( -52 -2622 -400 ) bricks/c_sr_mr5 -32 16 0 1 1 0 0 0 +( -84 -2700 -400 ) ( -98 -2692 -400 ) ( -98 -2692 -240 ) bricks/c_sr_mr5 -32 16 0 1 1 0 0 0 +( -98 -2692 -400 ) ( -52 -2622 -400 ) ( -52 -2622 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1529 +{ +( -96 -2628 -256 ) ( -464 -2628 -256 ) ( -464 -2500 -256 ) bricks/c_sr_mr5 0 2 66 1 1 0 0 0 +( -464 -2500 -272 ) ( -464 -2628 -272 ) ( -96 -2628 -272 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( -112 -2764 -240 ) ( -84 -2700 -240 ) ( -84 -2700 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -84 -2700 -240 ) ( -98 -2692 -240 ) ( -98 -2692 -400 ) bricks/c_sr_mr5 -32 16 0 1 1 0 0 0 +( -112 -2764 -400 ) ( -128 -2760 -400 ) ( -128 -2760 -240 ) bricks/c_sr_mr5 -32 16 0 1 1 0 0 0 +( -98 -2692 -240 ) ( -128 -2760 -240 ) ( -128 -2760 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1530 +{ +( -128 -2784 -256 ) ( -496 -2784 -256 ) ( -496 -2656 -256 ) bricks/c_sr_mr5 0 14 78 1 1 0 0 0 +( -496 -2656 -272 ) ( -496 -2784 -272 ) ( -128 -2784 -272 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( -128 -2840 -240 ) ( -112 -2764 -240 ) ( -112 -2764 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -128 -2760 -400 ) ( -112 -2764 -400 ) ( -112 -2764 -240 ) bricks/c_sr_mr5 -32 16 0 1 1 0 0 0 +( -128 -2840 -384 ) ( -112 -2842 -384 ) ( -112 -2842 -400 ) bricks/c_sr_mr5 -32 16 0 1 1 0 0 0 +( -144 -2838 -400 ) ( -128 -2760 -400 ) ( -128 -2760 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1531 +{ +( -144 -2880 -256 ) ( -512 -2880 -256 ) ( -512 -2752 -256 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -512 -2752 -272 ) ( -512 -2880 -272 ) ( -144 -2880 -272 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( -128 -2880 -240 ) ( -128 -2842 -240 ) ( -128 -2842 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -128 -2840 -256 ) ( -144 -2838 -256 ) ( -144 -2838 -272 ) bricks/c_sr_mr5 -32 16 0 1 1 0 0 0 +( -144 -2922 -272 ) ( -144 -2922 -256 ) ( -128 -2920 -256 ) bricks/c_sr_mr5 -32 16 0 1 1 0 0 0 +( -144 -2922 -256 ) ( -144 -2922 -272 ) ( -144 -2838 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1532 +{ +( -480 -2807 -64 ) ( -480 -2953 -64 ) ( -512 -2956 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -512 -3152 -64 ) ( -512 -3504 -64 ) ( -512 -3504 -80 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -512 -2956 -96 ) ( -480 -2953 -64 ) ( -480 -2807 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -512 -2956 -64 ) ( -480 -2953 -64 ) ( -512 -2956 -96 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -512 -2804 -96 ) ( -480 -2807 -64 ) ( -512 -2804 -64 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 1533 +{ +( -395 -2532 -64 ) ( -480 -2648 -96 ) ( -449 -2658 -64 ) bricks/c_tn_m1 31 18 247 1 1 0 0 0 +( -449 -2658 -64 ) ( -480 -2648 -96 ) ( -480 -2648 -48 ) bricks/c_tn_m1 31 18 247 1 1 0 0 0 +( -480 -2648 -48 ) ( -480 -2648 -96 ) ( -395 -2532 -64 ) bricks/c_tn_m1 31 18 247 1 1 0 0 0 +( -260 -2532 -64 ) ( -232 -2658 -64 ) ( -288 -2658 -64 ) bricks/c_tn_m1 31 18 247 1 1 0 0 0 +} +// brush 1534 +{ +( -395 -2532 -64 ) ( -424 -2516 -96 ) ( -480 -2648 -96 ) bricks/c_tn_m1 31 18 247 1 1 0 0 0 +( -424 -2516 -48 ) ( -424 -2516 -96 ) ( -395 -2532 -64 ) bricks/c_tn_m1 31 18 247 1 1 0 0 0 +( -480 -2648 -96 ) ( -424 -2516 -96 ) ( -424 -2516 -48 ) bricks/c_tn_m1 31 18 247 1 1 0 0 0 +( -395 -2532 -64 ) ( -480 -2648 -96 ) ( -480 -2648 -48 ) bricks/c_tn_m1 31 18 247 1 1 0 0 0 +( -260 -2516 -64 ) ( -232 -2648 -64 ) ( -288 -2648 -64 ) bricks/c_tn_m1 31 18 247 1 1 0 0 0 +} +// brush 1535 +{ +( -160 -2837 -64 ) ( -128 -2840 -96 ) ( -143 -2754 -64 ) bricks/c_tn_m1 -36 15 78 1 1 0 0 0 +( -128 -2840 -48 ) ( -128 -2840 -96 ) ( -160 -2837 -64 ) bricks/c_tn_m1 -36 15 78 1 1 0 0 0 +( -143 -2754 -64 ) ( -128 -2840 -96 ) ( -128 -2840 -48 ) bricks/c_tn_m1 -36 15 78 1 1 0 0 0 +( -160 -2732 -64 ) ( -128 -2720 -64 ) ( -128 -2744 -64 ) bricks/c_tn_m1 -36 15 78 1 1 0 0 0 +} +// brush 1536 +{ +( -128 -2840 -96 ) ( -112 -2764 -96 ) ( -143 -2754 -64 ) bricks/c_tn_m1 -36 15 78 1 1 0 0 0 +( -112 -2764 -48 ) ( -112 -2764 -96 ) ( -128 -2840 -96 ) bricks/c_tn_m1 -36 15 78 1 1 0 0 0 +( -143 -2754 -64 ) ( -112 -2764 -96 ) ( -112 -2764 -48 ) bricks/c_tn_m1 -36 15 78 1 1 0 0 0 +( -128 -2840 -96 ) ( -143 -2754 -64 ) ( -143 -2754 -48 ) bricks/c_tn_m1 -36 15 78 1 1 0 0 0 +( -143 -2732 -64 ) ( -112 -2720 -64 ) ( -112 -2744 -64 ) bricks/c_tn_m1 -36 15 78 1 1 0 0 0 +} +// brush 1537 +{ +( -143 -2754 -64 ) ( -112 -2764 -96 ) ( -112 -2685 -64 ) bricks/c_tn_m1 63 2 66 1 1 0 0 0 +( -112 -2764 -48 ) ( -112 -2764 -96 ) ( -143 -2754 -64 ) bricks/c_tn_m1 63 2 66 1 1 0 0 0 +( -112 -2685 -64 ) ( -112 -2764 -96 ) ( -112 -2764 -48 ) bricks/c_tn_m1 63 2 66 1 1 0 0 0 +( -143 -2732 -64 ) ( -112 -2720 -64 ) ( -112 -2744 -64 ) bricks/c_tn_m1 63 2 66 1 1 0 0 0 +} +// brush 1538 +{ +( -112 -2764 -96 ) ( -84 -2700 -96 ) ( -112 -2685 -64 ) bricks/c_tn_m1 63 2 66 1 1 0 0 0 +( -84 -2700 -48 ) ( -84 -2700 -96 ) ( -112 -2764 -96 ) bricks/c_tn_m1 63 2 66 1 1 0 0 0 +( -112 -2685 -64 ) ( -84 -2700 -96 ) ( -84 -2700 -48 ) bricks/c_tn_m1 63 2 66 1 1 0 0 0 +( -112 -2764 -48 ) ( -112 -2764 -96 ) ( -112 -2685 -64 ) bricks/c_tn_m1 63 2 66 1 1 0 0 0 +( -112 -2732 -64 ) ( -84 -2720 -64 ) ( -84 -2744 -64 ) bricks/c_tn_m1 63 2 66 1 1 0 0 0 +} +// brush 1539 +{ +( -84 -2700 -96 ) ( -60 -2604 -64 ) ( -112 -2685 -64 ) bricks/c_tn_m1 -115 7 57 1 1 0 0 0 +( -84 -2700 -48 ) ( -84 -2700 -96 ) ( -112 -2685 -64 ) bricks/c_tn_m1 -115 7 57 1 1 0 0 0 +( -84 -2700 -64 ) ( -60 -2604 -64 ) ( -84 -2700 -96 ) bricks/c_tn_m1 -115 7 57 1 1 0 0 0 +( -112 -2685 -64 ) ( -60 -2604 -64 ) ( -84 -2700 -64 ) bricks/c_tn_m1 -115 7 57 1 1 0 0 0 +} +// brush 1540 +{ +( -40 -2632 -96 ) ( -60 -2604 -64 ) ( -84 -2700 -96 ) bricks/c_tn_m1 -115 7 57 1 1 0 0 0 +( -40 -2632 -48 ) ( -40 -2632 -96 ) ( -84 -2700 -96 ) bricks/c_tn_m1 -115 7 57 1 1 0 0 0 +( -40 -2632 -64 ) ( -60 -2604 -64 ) ( -40 -2632 -96 ) bricks/c_tn_m1 -115 7 57 1 1 0 0 0 +( -84 -2700 -96 ) ( -60 -2604 -64 ) ( -84 -2700 -64 ) bricks/c_tn_m1 -115 7 57 1 1 0 0 0 +( -84 -2700 -64 ) ( -60 -2604 -64 ) ( -40 -2632 -64 ) bricks/c_tn_m1 -115 7 57 1 1 0 0 0 +} +// brush 1541 +{ +( -232 -2280 -48 ) ( -344 -2392 -48 ) ( -344 -2392 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -344 -2392 -48 ) ( -424 -2516 -48 ) ( -424 -2516 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -424 -2516 -48 ) ( -480 -2648 -48 ) ( -480 -2648 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -512 -2804 -64 ) ( -480 -2648 -64 ) ( -480 -2648 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -512 -2880 -64 ) ( -512 -2804 -64 ) ( -512 -2804 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -512 -2112 -64 ) ( -512 -3648 -64 ) ( 1024 -3648 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1024 -3648 -48 ) ( -512 -3648 -48 ) ( -512 -2112 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -376 -2880 -48 ) ( -344 -2880 -112 ) ( -408 -2880 -112 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -128 -2880 -48 ) ( -16 -2608 -48 ) ( -16 -2608 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -288 -2336 -64 ) ( -16 -2608 -64 ) ( -16 -2608 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1542 +{ +( -232 -2280 -272 ) ( -344 -2392 -272 ) ( -344 -2392 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -344 -2392 -272 ) ( -424 -2516 -272 ) ( -424 -2516 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -424 -2516 -272 ) ( -480 -2648 -272 ) ( -480 -2648 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -512 -2804 -288 ) ( -480 -2648 -288 ) ( -480 -2648 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -512 -2880 -288 ) ( -512 -2804 -288 ) ( -512 -2804 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -512 -2112 -288 ) ( -512 -3648 -288 ) ( 1024 -3648 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1024 -3648 -272 ) ( -512 -3648 -272 ) ( -512 -2112 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -376 -2880 -272 ) ( -344 -2880 -336 ) ( -408 -2880 -336 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -128 -2880 -272 ) ( -16 -2608 -272 ) ( -16 -2608 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -288 -2336 -288 ) ( -16 -2608 -288 ) ( -16 -2608 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1543 +{ +( -144 -2880 -64 ) ( -512 -2880 -64 ) ( -512 -2752 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -512 -2804 -208 ) ( -528 -2802 -208 ) ( -528 -2802 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -528 -2802 -64 ) ( -528 -2958 -64 ) ( -528 -2958 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -512 -2956 -272 ) ( -528 -2958 -272 ) ( -528 -2958 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -512 -2870 -144 ) ( -512 -2880 -128 ) ( -512 -2860 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -456 -2802 -272 ) ( -472 -2880 -272 ) ( -440 -2880 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1544 +{ +( -128 -2784 -64 ) ( -496 -2784 -64 ) ( -496 -2656 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -480 -2648 -208 ) ( -496 -2642 -208 ) ( -496 -2642 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -528 -2802 -144 ) ( -496 -2642 -144 ) ( -496 -2642 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -512 -2804 -224 ) ( -528 -2802 -224 ) ( -528 -2802 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -496 -2726 -288 ) ( -512 -2804 -272 ) ( -480 -2648 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -456 -2642 -272 ) ( -472 -2804 -272 ) ( -440 -2804 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1545 +{ +( -96 -2628 -64 ) ( -464 -2628 -64 ) ( -464 -2500 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -424 -2516 -208 ) ( -438 -2508 -208 ) ( -438 -2508 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -496 -2642 -144 ) ( -438 -2508 -144 ) ( -438 -2508 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -480 -2648 -224 ) ( -496 -2642 -224 ) ( -496 -2642 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -452 -2582 -224 ) ( -480 -2648 -208 ) ( -424 -2516 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -456 -2508 -272 ) ( -472 -2648 -272 ) ( -440 -2648 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1546 +{ +( -40 -2496 -64 ) ( -408 -2496 -64 ) ( -408 -2368 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -357 -2381 -64 ) ( -357 -2381 -272 ) ( -344 -2392 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -357 -2381 -272 ) ( -357 -2381 -64 ) ( -438 -2508 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -424 -2516 -224 ) ( -438 -2508 -224 ) ( -438 -2508 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -384 -2454 -224 ) ( -424 -2516 -208 ) ( -344 -2392 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -456 -2382 -272 ) ( -472 -2516 -272 ) ( -440 -2516 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1547 +{ +( -40 -2496 -64 ) ( -408 -2496 -64 ) ( -408 -2368 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -70 -2708 -208 ) ( -26 -2642 -208 ) ( -26 -2642 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -40 -2632 -80 ) ( -26 -2642 -80 ) ( -26 -2642 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -84 -2700 -64 ) ( -70 -2708 -64 ) ( -70 -2708 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -62 -2666 -144 ) ( -40 -2632 -128 ) ( -84 -2700 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1696 -2632 -272 ) ( 1680 -2708 -272 ) ( 1712 -2708 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1548 +{ +( -96 -2628 -64 ) ( -464 -2628 -64 ) ( -464 -2500 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -96 -2768 -272 ) ( -70 -2708 -272 ) ( -70 -2708 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -84 -2700 -80 ) ( -70 -2708 -80 ) ( -70 -2708 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -112 -2764 -64 ) ( -96 -2768 -64 ) ( -96 -2768 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -98 -2732 -144 ) ( -84 -2700 -128 ) ( -112 -2764 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1696 -2700 -272 ) ( 1680 -2768 -272 ) ( 1712 -2768 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1549 +{ +( -128 -2784 -64 ) ( -496 -2784 -64 ) ( -496 -2656 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -112 -2842 -208 ) ( -96 -2768 -208 ) ( -96 -2768 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -112 -2764 -80 ) ( -96 -2768 -80 ) ( -96 -2768 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -128 -2840 -208 ) ( -112 -2842 -208 ) ( -112 -2842 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -120 -2802 -288 ) ( -112 -2764 -272 ) ( -128 -2840 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1696 -2764 -272 ) ( 1680 -2842 -272 ) ( 1712 -2842 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1550 +{ +( -144 -2880 -64 ) ( -512 -2880 -64 ) ( -512 -2752 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -112 -2880 -272 ) ( -112 -2842 -272 ) ( -112 -2842 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -128 -2840 -224 ) ( -112 -2842 -224 ) ( -112 -2842 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -112 -2918 -272 ) ( -128 -2920 -272 ) ( -128 -2920 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -128 -2840 -64 ) ( -128 -2920 -64 ) ( -128 -2920 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1696 -2840 -272 ) ( 1680 -2880 -272 ) ( 1712 -2880 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1551 +{ +( -424 -2516 -96 ) ( -317 -2413 -64 ) ( -344 -2392 -96 ) bricks/c_tn_m1 -82 -8 237 1 1 0 0 0 +( -344 -2392 -96 ) ( -317 -2413 -64 ) ( -344 -2392 -64 ) bricks/c_tn_m1 -82 -8 237 1 1 0 0 0 +( -424 -2516 -96 ) ( -344 -2392 -96 ) ( -344 -2392 -48 ) bricks/c_tn_m1 -82 -8 237 1 1 0 0 0 +( -424 -2516 -64 ) ( -317 -2413 -64 ) ( -424 -2516 -96 ) bricks/c_tn_m1 -82 -8 237 1 1 0 0 0 +( -344 -2392 -64 ) ( -317 -2413 -64 ) ( -424 -2516 -64 ) bricks/c_tn_m1 -82 -8 237 1 1 0 0 0 +} +// brush 1552 +{ +( -395 -2532 -64 ) ( -317 -2413 -64 ) ( -424 -2516 -96 ) bricks/c_tn_m1 -82 -8 237 1 1 0 0 0 +( -395 -2532 -64 ) ( -424 -2516 -96 ) ( -424 -2516 -48 ) bricks/c_tn_m1 -82 -8 237 1 1 0 0 0 +( -424 -2516 -96 ) ( -317 -2413 -64 ) ( -424 -2516 -64 ) bricks/c_tn_m1 -82 -8 237 1 1 0 0 0 +( -424 -2516 -64 ) ( -317 -2413 -64 ) ( -395 -2532 -64 ) bricks/c_tn_m1 -82 -8 237 1 1 0 0 0 +} +// brush 1553 +{ +( -242 -3368 -64 ) ( -242 -3492 -64 ) ( -344 -3492 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -232 -3480 -224 ) ( -232 -3480 -64 ) ( -344 -3368 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -356 -3378 -64 ) ( -356 -3378 -224 ) ( -344 -3368 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -356 -3378 -288 ) ( -356 -3378 -128 ) ( -242 -3492 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -232 -3480 -64 ) ( -232 -3480 -224 ) ( -242 -3492 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -40 -3368 -272 ) ( -56 -3492 -272 ) ( -24 -3492 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1554 +{ +( -128 -3176 -64 ) ( -128 -3544 -64 ) ( -256 -3544 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -242 -3492 -208 ) ( -242 -3492 -224 ) ( -232 -3480 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -242 -3492 -288 ) ( -242 -3492 -272 ) ( -116 -3574 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -116 -3574 -80 ) ( -116 -3574 -64 ) ( -108 -3560 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -232 -3480 -80 ) ( -108 -3560 -80 ) ( -170 -3520 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -40 -3480 -272 ) ( -56 -3574 -272 ) ( -24 -3574 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1555 +{ +( 160 -3264 -64 ) ( 160 -3632 -64 ) ( 32 -3632 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 18 -3632 -64 ) ( 18 -3632 -80 ) ( 24 -3616 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 18 -3632 -288 ) ( 18 -3632 -272 ) ( 178 -3664 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 178 -3664 -80 ) ( 178 -3664 -64 ) ( 180 -3648 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 24 -3616 -80 ) ( 180 -3648 -80 ) ( 102 -3632 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -40 -3616 -272 ) ( -56 -3664 -272 ) ( -24 -3664 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1556 +{ +( 4 -3232 -64 ) ( 4 -3600 -64 ) ( -124 -3600 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -116 -3574 -64 ) ( -116 -3574 -80 ) ( -108 -3560 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -116 -3574 -288 ) ( -116 -3574 -272 ) ( 18 -3632 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 18 -3632 -80 ) ( 18 -3632 -64 ) ( 24 -3616 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -108 -3560 -80 ) ( 24 -3616 -80 ) ( -42 -3588 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -40 -3560 -272 ) ( -56 -3632 -272 ) ( -24 -3632 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1557 +{ +( -496 -3104 -64 ) ( -496 -2976 -64 ) ( -128 -2976 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -496 -3118 -224 ) ( -496 -3118 -208 ) ( -480 -3112 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -496 -3118 -128 ) ( -496 -3118 -144 ) ( -528 -2958 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -528 -2958 -208 ) ( -528 -2958 -224 ) ( -512 -2956 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -480 -3112 -272 ) ( -512 -2956 -272 ) ( -496 -3034 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -40 -2956 -272 ) ( -56 -3118 -272 ) ( -24 -3118 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1558 +{ +( -464 -3260 -64 ) ( -464 -3132 -64 ) ( -96 -3132 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -438 -3252 -224 ) ( -438 -3252 -208 ) ( -424 -3244 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -438 -3252 -128 ) ( -438 -3252 -144 ) ( -496 -3118 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -496 -3118 -208 ) ( -496 -3118 -224 ) ( -480 -3112 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -424 -3244 -208 ) ( -480 -3112 -208 ) ( -452 -3178 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -40 -3112 -272 ) ( -56 -3252 -272 ) ( -24 -3252 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1559 +{ +( -408 -3392 -64 ) ( -408 -3264 -64 ) ( -40 -3264 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -356 -3378 -80 ) ( -356 -3378 -64 ) ( -344 -3368 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -356 -3378 -128 ) ( -356 -3378 -144 ) ( -438 -3252 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -438 -3252 -208 ) ( -438 -3252 -224 ) ( -424 -3244 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -344 -3368 -208 ) ( -424 -3244 -208 ) ( -384 -3306 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -40 -3244 -272 ) ( -56 -3378 -272 ) ( -24 -3378 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1560 +{ +( 160 -3264 -64 ) ( 160 -3632 -64 ) ( 32 -3632 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 144 -3232 -208 ) ( 144 -3232 -224 ) ( 218 -3248 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 144 -3232 -80 ) ( 144 -3232 -64 ) ( 140 -3248 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 218 -3248 -64 ) ( 218 -3248 -80 ) ( 216 -3264 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 216 -3264 -144 ) ( 140 -3248 -144 ) ( 178 -3256 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -40 -3232 -272 ) ( -56 -3264 -272 ) ( -24 -3264 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1561 +{ +( 4 -3232 -64 ) ( 4 -3600 -64 ) ( -124 -3600 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 84 -3206 -272 ) ( 84 -3206 -288 ) ( 144 -3232 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 84 -3206 -80 ) ( 84 -3206 -64 ) ( 76 -3220 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 144 -3232 -64 ) ( 144 -3232 -80 ) ( 140 -3248 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 140 -3248 -144 ) ( 76 -3220 -144 ) ( 108 -3234 -128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -40 -3206 -272 ) ( -56 -3248 -272 ) ( -24 -3248 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1562 +{ +( -128 -3176 -64 ) ( -128 -3544 -64 ) ( -256 -3544 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 18 -3162 -208 ) ( 18 -3162 -224 ) ( 84 -3206 -224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 18 -3162 -64 ) ( 8 -3176 -64 ) ( 8 -3176 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 84 -3206 -64 ) ( 84 -3206 -80 ) ( 76 -3220 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 76 -3220 -272 ) ( 8 -3176 -272 ) ( 8 -3176 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -40 -3162 -272 ) ( -56 -3220 -272 ) ( -24 -3220 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1563 +{ +( -252 -3096 -64 ) ( -252 -3464 -64 ) ( -380 -3464 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -26 -3118 -272 ) ( -26 -3118 -288 ) ( 18 -3162 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -40 -3128 -64 ) ( -40 -3128 -272 ) ( -26 -3118 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 18 -3162 -272 ) ( 8 -3176 -272 ) ( 8 -3176 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -40 -3128 -272 ) ( -40 -3128 -64 ) ( 8 -3176 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -40 -3118 -272 ) ( -56 -3176 -272 ) ( -24 -3176 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1564 +{ +( -408 -3392 -64 ) ( -408 -3264 -64 ) ( -40 -3264 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -26 -3118 -224 ) ( -26 -3118 -208 ) ( -70 -3052 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -40 -3128 -272 ) ( -40 -3128 -64 ) ( -26 -3118 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -70 -3052 -80 ) ( -70 -3052 -64 ) ( -84 -3060 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -40 -3128 -64 ) ( -40 -3128 -272 ) ( -84 -3060 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -40 -3052 -272 ) ( -56 -3129 -272 ) ( -24 -3129 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1565 +{ +( -464 -3260 -64 ) ( -464 -3132 -64 ) ( -96 -3132 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -70 -3052 -288 ) ( -70 -3052 -272 ) ( -96 -2992 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -70 -3052 -64 ) ( -70 -3052 -80 ) ( -84 -3060 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -96 -2992 -80 ) ( -96 -2992 -64 ) ( -112 -2996 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -112 -2996 -128 ) ( -84 -3060 -128 ) ( -98 -3028 -144 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -40 -2992 -272 ) ( -56 -3060 -272 ) ( -24 -3060 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1566 +{ +( -496 -3104 -64 ) ( -496 -2976 -64 ) ( -128 -2976 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -96 -2992 -224 ) ( -96 -2992 -208 ) ( -112 -2918 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -96 -2992 -64 ) ( -96 -2992 -80 ) ( -112 -2996 -80 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -112 -2918 -224 ) ( -112 -2918 -208 ) ( -128 -2920 -208 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -128 -2920 -272 ) ( -112 -2996 -272 ) ( -120 -2958 -288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -40 -2918 -272 ) ( -56 -2996 -272 ) ( -24 -2996 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1567 +{ +( 180 -3648 -288 ) ( 180 -3648 -272 ) ( 256 -3648 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 24 -3616 -288 ) ( 24 -3616 -272 ) ( 180 -3648 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -108 -3560 -288 ) ( -108 -3560 -272 ) ( 24 -3616 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -232 -3480 -288 ) ( -232 -3480 -272 ) ( -108 -3560 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -344 -3368 -288 ) ( -344 -3368 -272 ) ( -232 -3480 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -424 -3244 -288 ) ( -424 -3244 -272 ) ( -344 -3368 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -480 -3112 -288 ) ( -480 -3112 -272 ) ( -424 -3244 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -480 -3112 -272 ) ( -480 -3112 -288 ) ( -512 -2956 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -512 -2956 -272 ) ( -512 -2956 -288 ) ( -512 -2880 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1024 -2112 -288 ) ( -512 -2112 -288 ) ( -512 -3648 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -512 -3648 -272 ) ( -512 -2112 -272 ) ( 1024 -2112 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 256 -3400 -336 ) ( 256 -3456 -336 ) ( 256 -3428 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -408 -2880 -336 ) ( -344 -2880 -336 ) ( -376 -2880 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -128 -2880 -288 ) ( 256 -3264 -288 ) ( 64 -3072 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1568 +{ +( 180 -3648 -64 ) ( 180 -3648 -48 ) ( 256 -3648 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 24 -3616 -64 ) ( 24 -3616 -48 ) ( 180 -3648 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -108 -3560 -64 ) ( -108 -3560 -48 ) ( 24 -3616 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -232 -3480 -64 ) ( -232 -3480 -48 ) ( -108 -3560 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -344 -3368 -64 ) ( -344 -3368 -48 ) ( -232 -3480 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -424 -3244 -64 ) ( -424 -3244 -48 ) ( -344 -3368 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -480 -3112 -64 ) ( -480 -3112 -48 ) ( -424 -3244 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -480 -3112 -48 ) ( -480 -3112 -64 ) ( -512 -2956 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -512 -2956 -48 ) ( -512 -2956 -64 ) ( -512 -2880 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1024 -2112 -64 ) ( -512 -2112 -64 ) ( -512 -3648 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -512 -3648 -48 ) ( -512 -2112 -48 ) ( 1024 -2112 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 256 -3400 -112 ) ( 256 -3456 -112 ) ( 256 -3428 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -408 -2880 -112 ) ( -344 -2880 -112 ) ( -376 -2880 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -128 -2880 -64 ) ( 256 -3264 -64 ) ( 64 -3072 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1569 +{ +( 213 -3296 -64 ) ( 216 -3264 -96 ) ( 130 -3279 -64 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( 216 -3264 -48 ) ( 216 -3264 -96 ) ( 213 -3296 -64 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( 130 -3279 -64 ) ( 216 -3264 -96 ) ( 216 -3264 -48 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( 216 -3016 -64 ) ( 216 -3040 -64 ) ( 130 -3028 -64 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +} +// brush 1570 +{ +( 216 -3264 -96 ) ( 140 -3248 -96 ) ( 130 -3279 -64 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( 140 -3248 -48 ) ( 140 -3248 -96 ) ( 216 -3264 -96 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( 130 -3279 -64 ) ( 140 -3248 -96 ) ( 140 -3248 -48 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( 216 -3264 -96 ) ( 130 -3279 -64 ) ( 130 -3279 -48 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +( 216 -3016 -64 ) ( 216 -3040 -64 ) ( 130 -3028 -64 ) bricks/c_tn_m1 0 12 168 1 1 0 0 0 +} +// brush 1571 +{ +( 130 -3279 -64 ) ( 140 -3248 -96 ) ( 61 -3248 -64 ) bricks/c_tn_m1 0 -1 156 1 1 0 0 0 +( 140 -3248 -48 ) ( 140 -3248 -96 ) ( 130 -3279 -64 ) bricks/c_tn_m1 0 -1 156 1 1 0 0 0 +( 61 -3248 -64 ) ( 140 -3248 -96 ) ( 140 -3248 -48 ) bricks/c_tn_m1 0 -1 156 1 1 0 0 0 +( 140 -3016 -64 ) ( 140 -3040 -64 ) ( 61 -3028 -64 ) bricks/c_tn_m1 0 -1 156 1 1 0 0 0 +} +// brush 1572 +{ +( 140 -3248 -96 ) ( 76 -3220 -96 ) ( 61 -3248 -64 ) bricks/c_tn_m1 0 -1 156 1 1 0 0 0 +( 76 -3220 -48 ) ( 76 -3220 -96 ) ( 140 -3248 -96 ) bricks/c_tn_m1 0 -1 156 1 1 0 0 0 +( 61 -3248 -64 ) ( 76 -3220 -96 ) ( 76 -3220 -48 ) bricks/c_tn_m1 0 -1 156 1 1 0 0 0 +( 140 -3248 -48 ) ( 140 -3248 -96 ) ( 61 -3248 -64 ) bricks/c_tn_m1 0 -1 156 1 1 0 0 0 +( 140 -3016 -64 ) ( 140 -3040 -64 ) ( 61 -3028 -64 ) bricks/c_tn_m1 0 -1 156 1 1 0 0 0 +} +// brush 1573 +{ +( 61 -3248 -64 ) ( 76 -3220 -96 ) ( -12 -3201 -64 ) bricks/c_tn_m1 0 3 147 1 1 0 0 0 +( 76 -3220 -48 ) ( 76 -3220 -96 ) ( 61 -3248 -64 ) bricks/c_tn_m1 0 3 147 1 1 0 0 0 +( -12 -3201 -64 ) ( 76 -3220 -96 ) ( 76 -3220 -48 ) bricks/c_tn_m1 0 3 147 1 1 0 0 0 +( 76 -3016 -64 ) ( 76 -3040 -64 ) ( -12 -3028 -64 ) bricks/c_tn_m1 0 3 147 1 1 0 0 0 +} +// brush 1574 +{ +( 76 -3220 -96 ) ( 8 -3176 -96 ) ( -12 -3201 -64 ) bricks/c_tn_m1 0 3 147 1 1 0 0 0 +( 8 -3176 -48 ) ( 8 -3176 -96 ) ( 76 -3220 -96 ) bricks/c_tn_m1 0 3 147 1 1 0 0 0 +( -12 -3201 -64 ) ( 8 -3176 -96 ) ( 8 -3176 -48 ) bricks/c_tn_m1 0 3 147 1 1 0 0 0 +( 76 -3220 -48 ) ( 76 -3220 -96 ) ( -12 -3201 -64 ) bricks/c_tn_m1 0 3 147 1 1 0 0 0 +( 76 -3016 -64 ) ( 76 -3040 -64 ) ( -12 -3028 -64 ) bricks/c_tn_m1 0 3 147 1 1 0 0 0 +} +// brush 1575 +{ +( -65 -3148 -64 ) ( -40 -3128 -96 ) ( -84 -3060 -96 ) bricks/c_tn_m1 0 9 123 1 1 0 0 0 +( -84 -3060 -96 ) ( -40 -3128 -96 ) ( -40 -3128 -48 ) bricks/c_tn_m1 0 9 123 1 1 0 0 0 +( -40 -3128 -48 ) ( -40 -3128 -96 ) ( -65 -3148 -64 ) bricks/c_tn_m1 0 9 123 1 1 0 0 0 +( -65 -3148 -64 ) ( -84 -3060 -96 ) ( -84 -3060 -48 ) bricks/c_tn_m1 0 9 123 1 1 0 0 0 +( -40 -3016 -64 ) ( -40 -3040 -64 ) ( -84 -3028 -64 ) bricks/c_tn_m1 0 9 123 1 1 0 0 0 +} +// brush 1576 +{ +( -65 -3148 -64 ) ( -84 -3060 -96 ) ( -112 -3075 -64 ) bricks/c_tn_m1 0 9 123 1 1 0 0 0 +( -112 -3075 -64 ) ( -84 -3060 -96 ) ( -84 -3060 -48 ) bricks/c_tn_m1 0 9 123 1 1 0 0 0 +( -84 -3060 -48 ) ( -84 -3060 -96 ) ( -65 -3148 -64 ) bricks/c_tn_m1 0 9 123 1 1 0 0 0 +( -65 -3016 -64 ) ( -65 -3040 -64 ) ( -112 -3028 -64 ) bricks/c_tn_m1 0 9 123 1 1 0 0 0 +} +// brush 1577 +{ +( -112 -3075 -64 ) ( -84 -3060 -96 ) ( -112 -2996 -96 ) bricks/c_tn_m1 0 9 114 1 1 0 0 0 +( -112 -2996 -96 ) ( -84 -3060 -96 ) ( -84 -3060 -48 ) bricks/c_tn_m1 0 9 114 1 1 0 0 0 +( -84 -3060 -48 ) ( -84 -3060 -96 ) ( -112 -3075 -64 ) bricks/c_tn_m1 0 9 114 1 1 0 0 0 +( -112 -3075 -64 ) ( -112 -2996 -96 ) ( -112 -2996 -48 ) bricks/c_tn_m1 0 9 114 1 1 0 0 0 +( -84 -3016 -64 ) ( -84 -3040 -64 ) ( -112 -3028 -64 ) bricks/c_tn_m1 0 9 114 1 1 0 0 0 +} +// brush 1578 +{ +( -112 -3075 -64 ) ( -112 -2996 -96 ) ( -143 -3006 -64 ) bricks/c_tn_m1 0 9 114 1 1 0 0 0 +( -143 -3006 -64 ) ( -112 -2996 -96 ) ( -112 -2996 -48 ) bricks/c_tn_m1 0 9 114 1 1 0 0 0 +( -112 -2996 -48 ) ( -112 -2996 -96 ) ( -112 -3075 -64 ) bricks/c_tn_m1 0 9 114 1 1 0 0 0 +( -112 -3016 -64 ) ( -112 -3040 -64 ) ( -143 -3028 -64 ) bricks/c_tn_m1 0 9 114 1 1 0 0 0 +} +// brush 1579 +{ +( -143 -3006 -64 ) ( -112 -2996 -96 ) ( -128 -2920 -96 ) bricks/c_tn_m1 0 -4 102 1 1 0 0 0 +( -128 -2920 -96 ) ( -112 -2996 -96 ) ( -112 -2996 -48 ) bricks/c_tn_m1 0 -4 102 1 1 0 0 0 +( -112 -2996 -48 ) ( -112 -2996 -96 ) ( -143 -3006 -64 ) bricks/c_tn_m1 0 -4 102 1 1 0 0 0 +( -143 -3006 -48 ) ( -143 -3006 -64 ) ( -128 -2920 -96 ) bricks/c_tn_m1 0 -4 102 1 1 0 0 0 +( -112 -3016 -64 ) ( -112 -3040 -64 ) ( -143 -3028 -64 ) bricks/c_tn_m1 0 -4 102 1 1 0 0 0 +} +// brush 1580 +{ +( -143 -3006 -64 ) ( -128 -2920 -96 ) ( -160 -2923 -64 ) bricks/c_tn_m1 0 -4 102 1 1 0 0 0 +( -160 -2923 -64 ) ( -128 -2920 -96 ) ( -128 -2920 -48 ) bricks/c_tn_m1 0 -4 102 1 1 0 0 0 +( -128 -2920 -48 ) ( -128 -2920 -96 ) ( -143 -3006 -64 ) bricks/c_tn_m1 0 -4 102 1 1 0 0 0 +( -128 -3016 -64 ) ( -128 -3040 -64 ) ( -160 -3028 -64 ) bricks/c_tn_m1 0 -4 102 1 1 0 0 0 +} +// brush 1581 +{ +( 256 -3296 -64 ) ( 213 -3296 -64 ) ( 216 -3264 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 216 -3264 -64 ) ( 216 -3264 -96 ) ( 256 -3264 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 216 -3264 -96 ) ( 213 -3296 -64 ) ( 256 -3296 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 256 -3280 -64 ) ( 256 -3264 -96 ) ( 256 -3296 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 216 -3264 -64 ) ( 213 -3296 -64 ) ( 216 -3264 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 1582 +{ +( 34 -3585 -64 ) ( 180 -3648 -96 ) ( 183 -3616 -64 ) bricks/c_tn_m1 0 -11 348 1 1 0 0 0 +( 183 -3616 -64 ) ( 180 -3648 -96 ) ( 180 -3648 -48 ) bricks/c_tn_m1 0 -11 348 1 1 0 0 0 +( 180 -3648 -48 ) ( 180 -3648 -96 ) ( 34 -3585 -64 ) bricks/c_tn_m1 0 -11 348 1 1 0 0 0 +( -288 -3585 -64 ) ( -232 -3585 -64 ) ( -260 -3648 -64 ) bricks/c_tn_m1 0 -11 348 1 1 0 0 0 +} +// brush 1583 +{ +( 34 -3585 -64 ) ( 24 -3616 -96 ) ( 180 -3648 -96 ) bricks/c_tn_m1 0 -11 348 1 1 0 0 0 +( 24 -3616 -48 ) ( 24 -3616 -96 ) ( 34 -3585 -64 ) bricks/c_tn_m1 0 -11 348 1 1 0 0 0 +( 180 -3648 -96 ) ( 24 -3616 -96 ) ( 24 -3616 -48 ) bricks/c_tn_m1 0 -11 348 1 1 0 0 0 +( 34 -3585 -64 ) ( 180 -3648 -96 ) ( 180 -3648 -48 ) bricks/c_tn_m1 0 -11 348 1 1 0 0 0 +( -288 -3585 -64 ) ( -232 -3585 -64 ) ( -260 -3648 -64 ) bricks/c_tn_m1 0 -11 348 1 1 0 0 0 +} +// brush 1584 +{ +( -92 -3531 -64 ) ( 24 -3616 -96 ) ( 34 -3585 -64 ) bricks/c_tn_m1 0 9 337 1 1 0 0 0 +( 34 -3585 -64 ) ( 24 -3616 -96 ) ( 24 -3616 -48 ) bricks/c_tn_m1 0 9 337 1 1 0 0 0 +( 24 -3616 -48 ) ( 24 -3616 -96 ) ( -92 -3531 -64 ) bricks/c_tn_m1 0 9 337 1 1 0 0 0 +( -288 -3531 -64 ) ( -232 -3531 -64 ) ( -260 -3616 -64 ) bricks/c_tn_m1 0 9 337 1 1 0 0 0 +} +// brush 1585 +{ +( -92 -3531 -64 ) ( -108 -3560 -96 ) ( 24 -3616 -96 ) bricks/c_tn_m1 0 9 337 1 1 0 0 0 +( -108 -3560 -48 ) ( -108 -3560 -96 ) ( -92 -3531 -64 ) bricks/c_tn_m1 0 9 337 1 1 0 0 0 +( 24 -3616 -96 ) ( -108 -3560 -96 ) ( -108 -3560 -48 ) bricks/c_tn_m1 0 9 337 1 1 0 0 0 +( -92 -3531 -64 ) ( 24 -3616 -96 ) ( 24 -3616 -48 ) bricks/c_tn_m1 0 9 337 1 1 0 0 0 +( -288 -3531 -64 ) ( -232 -3531 -64 ) ( -260 -3616 -64 ) bricks/c_tn_m1 0 9 337 1 1 0 0 0 +} +// brush 1586 +{ +( -318 -3347 -64 ) ( -232 -3480 -96 ) ( -211 -3454 -64 ) bricks/c_tn_m1 0 0 315 1 1 0 0 0 +( -211 -3454 -64 ) ( -232 -3480 -96 ) ( -232 -3480 -48 ) bricks/c_tn_m1 0 0 315 1 1 0 0 0 +( -232 -3480 -48 ) ( -232 -3480 -96 ) ( -318 -3347 -64 ) bricks/c_tn_m1 0 0 315 1 1 0 0 0 +( -288 -3347 -64 ) ( -232 -3347 -64 ) ( -260 -3480 -64 ) bricks/c_tn_m1 0 0 315 1 1 0 0 0 +} +// brush 1587 +{ +( -344 -3368 -96 ) ( -232 -3480 -96 ) ( -318 -3347 -64 ) bricks/c_tn_m1 0 0 315 1 1 0 0 0 +( -344 -3368 -48 ) ( -344 -3368 -96 ) ( -318 -3347 -64 ) bricks/c_tn_m1 0 0 315 1 1 0 0 0 +( -232 -3480 -48 ) ( -232 -3480 -96 ) ( -344 -3368 -96 ) bricks/c_tn_m1 0 0 315 1 1 0 0 0 +( -318 -3347 -64 ) ( -232 -3480 -96 ) ( -232 -3480 -48 ) bricks/c_tn_m1 0 0 315 1 1 0 0 0 +( -288 -3347 -64 ) ( -232 -3347 -64 ) ( -260 -3480 -64 ) bricks/c_tn_m1 0 0 315 1 1 0 0 0 +} +// brush 1588 +{ +( -512 -2956 -96 ) ( -480 -3112 -96 ) ( -449 -3102 -64 ) bricks/c_tn_m1 -86 4 282 1 1 0 0 0 +( -449 -3102 -64 ) ( -480 -3112 -96 ) ( -480 -3112 -48 ) bricks/c_tn_m1 -86 4 282 1 1 0 0 0 +( -480 -3112 -48 ) ( -480 -3112 -96 ) ( -512 -2956 -96 ) bricks/c_tn_m1 -86 4 282 1 1 0 0 0 +( -512 -2956 -48 ) ( -512 -2956 -96 ) ( -449 -3102 -64 ) bricks/c_tn_m1 -86 4 282 1 1 0 0 0 +( -288 -2956 -64 ) ( -232 -2956 -64 ) ( -260 -3112 -64 ) bricks/c_tn_m1 -86 4 282 1 1 0 0 0 +} +// brush 1589 +{ +( -480 -2953 -64 ) ( -512 -2956 -96 ) ( -449 -3102 -64 ) bricks/c_tn_m1 -86 4 282 1 1 0 0 0 +( -512 -2956 -48 ) ( -512 -2956 -96 ) ( -480 -2953 -64 ) bricks/c_tn_m1 -86 4 282 1 1 0 0 0 +( -449 -3102 -64 ) ( -512 -2956 -96 ) ( -512 -2956 -48 ) bricks/c_tn_m1 -86 4 282 1 1 0 0 0 +( -288 -2953 -64 ) ( -232 -2953 -64 ) ( -260 -3102 -64 ) bricks/c_tn_m1 -86 4 282 1 1 0 0 0 +} +// brush 1590 +{ +( 180 -3648 -64 ) ( 183 -3616 -64 ) ( 256 -3616 -64 ) bricks/c_tn_m1 1 0 0 1 1 0 0 0 +( 528 -3648 -64 ) ( 880 -3648 -64 ) ( 880 -3648 -80 ) bricks/c_tn_m1 1 0 0 1 1 0 0 0 +( 256 -3616 -64 ) ( 183 -3616 -64 ) ( 180 -3648 -96 ) bricks/c_tn_m1 1 0 0 1 1 0 0 0 +( 256 -3616 -96 ) ( 256 -3648 -96 ) ( 256 -3632 -64 ) bricks/c_tn_m1 -63 0 0 1 1 0 0 0 +( 180 -3648 -96 ) ( 183 -3616 -64 ) ( 180 -3648 -64 ) bricks/c_tn_m1 -63 0 0 1 1 0 0 0 +} +// brush 1591 +{ +( -40 -3188 -272 ) ( -2 -3188 -272 ) ( -2 -3128 -272 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( -2 -3128 -256 ) ( -2 -3188 -256 ) ( -40 -3188 -256 ) bricks/c_sr_mr5 0 -1 135 1 1 0 0 0 +( 8 -3176 -272 ) ( 8 -3176 -256 ) ( -40 -3128 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -52 -3138 -256 ) ( -52 -3138 -272 ) ( -40 -3128 -272 ) bricks/c_sr_mr5 -32 16 0 1 1 0 0 0 +( -52 -3138 -272 ) ( -52 -3138 -256 ) ( -2 -3188 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 8 -3176 -256 ) ( 8 -3176 -272 ) ( -2 -3188 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1592 +{ +( -496 -3104 -256 ) ( -496 -2976 -256 ) ( -128 -2976 -256 ) bricks/c_sr_mr5 0 -4 102 1 1 0 0 0 +( -128 -2976 -272 ) ( -496 -2976 -272 ) ( -496 -3104 -272 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( -112 -2996 -400 ) ( -112 -2996 -240 ) ( -128 -2920 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -112 -2996 -240 ) ( -112 -2996 -400 ) ( -128 -3000 -400 ) bricks/c_sr_mr5 -32 16 0 1 1 0 0 0 +( -112 -2918 -400 ) ( -112 -2918 -384 ) ( -128 -2920 -384 ) bricks/c_sr_mr5 -32 16 0 1 1 0 0 0 +( -128 -3000 -240 ) ( -128 -3000 -400 ) ( -144 -2922 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1593 +{ +( -464 -3260 -256 ) ( -464 -3132 -256 ) ( -96 -3132 -256 ) bricks/c_sr_mr5 0 8 114 1 1 0 0 0 +( -96 -3132 -272 ) ( -464 -3132 -272 ) ( -464 -3260 -272 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( -84 -3060 -400 ) ( -84 -3060 -240 ) ( -112 -2996 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -98 -3068 -400 ) ( -98 -3068 -240 ) ( -84 -3060 -240 ) bricks/c_sr_mr5 -32 16 0 1 1 0 0 0 +( -128 -3000 -240 ) ( -128 -3000 -400 ) ( -112 -2996 -400 ) bricks/c_sr_mr5 -32 16 0 1 1 0 0 0 +( -128 -3000 -400 ) ( -128 -3000 -240 ) ( -98 -3068 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1594 +{ +( -408 -3392 -256 ) ( -408 -3264 -256 ) ( -40 -3264 -256 ) bricks/c_sr_mr5 0 8 123 1 1 0 0 0 +( -40 -3264 -272 ) ( -408 -3264 -272 ) ( -408 -3392 -272 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( -40 -3128 -400 ) ( -40 -3128 -240 ) ( -84 -3060 -240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -52 -3138 -400 ) ( -52 -3138 -240 ) ( -40 -3128 -240 ) bricks/c_sr_mr5 -32 16 0 1 1 0 0 0 +( -98 -3068 -240 ) ( -98 -3068 -400 ) ( -84 -3060 -400 ) bricks/c_sr_mr5 -32 16 0 1 1 0 0 0 +( -52 -3138 -240 ) ( -52 -3138 -400 ) ( -98 -3068 -400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1595 +{ +( -256 -3544 -272 ) ( -128 -3544 -272 ) ( -128 -3176 -272 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( -128 -3176 -256 ) ( -128 -3544 -256 ) ( -256 -3544 -256 ) bricks/c_sr_mr5 0 2 147 1 1 0 0 0 +( 8 -3176 -128 ) ( 8 -3176 -288 ) ( 76 -3220 -288 ) bricks/c_sr_mr5 -32 16 0 1 1 0 0 0 +( -2 -3188 -128 ) ( -2 -3188 -288 ) ( 8 -3176 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 68 -3234 -288 ) ( 68 -3234 -128 ) ( 76 -3220 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -2 -3188 -288 ) ( -2 -3188 -128 ) ( 68 -3234 -128 ) bricks/c_sr_mr5 -32 16 0 1 1 0 0 0 +} +// brush 1596 +{ +( -124 -3600 -272 ) ( 4 -3600 -272 ) ( 4 -3232 -272 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( 4 -3232 -256 ) ( 4 -3600 -256 ) ( -124 -3600 -256 ) bricks/c_sr_mr5 0 -2 156 1 1 0 0 0 +( 76 -3220 -128 ) ( 76 -3220 -288 ) ( 140 -3248 -288 ) bricks/c_sr_mr5 -32 16 0 1 1 0 0 0 +( 68 -3234 -128 ) ( 68 -3234 -288 ) ( 76 -3220 -288 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 136 -3264 -288 ) ( 136 -3264 -128 ) ( 140 -3248 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 136 -3264 -128 ) ( 136 -3264 -288 ) ( 68 -3234 -288 ) bricks/c_sr_mr5 -32 16 0 1 1 0 0 0 +} +// brush 1597 +{ +( 32 -3632 -272 ) ( 160 -3632 -272 ) ( 160 -3264 -272 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( 160 -3264 -256 ) ( 160 -3632 -256 ) ( 32 -3632 -256 ) bricks/c_sr_mr5 0 10 168 1 1 0 0 0 +( 140 -3248 -128 ) ( 140 -3248 -288 ) ( 216 -3264 -288 ) bricks/c_sr_mr5 -32 16 0 1 1 0 0 0 +( 140 -3248 -288 ) ( 140 -3248 -128 ) ( 136 -3264 -128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 218 -3248 -128 ) ( 218 -3248 -144 ) ( 216 -3264 -144 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 136 -3264 -288 ) ( 136 -3264 -128 ) ( 214 -3280 -128 ) bricks/c_sr_mr5 -32 16 0 1 1 0 0 0 +} +// brush 1598 +{ +( -286 -3478 -272 ) ( -232 -3478 -272 ) ( -232 -3394 -272 ) bricks/c_sr_mr5 65 -15 -180 1 1 0 0 0 +( -232 -3394 -256 ) ( -232 -3478 -256 ) ( -286 -3478 -256 ) bricks/c_sr_mr5 0 -2 315 1 1 0 0 0 +( -344 -3368 -272 ) ( -333 -3359 -272 ) ( -333 -3359 -256 ) bricks/c_sr_mr5 64 15 -180 1 -1 0 0 0 +( -344 -3368 -272 ) ( -344 -3368 -256 ) ( -232 -3480 -256 ) bricks/c_sr_mr5 -30 14 -180 1 -1 0 0 0 +( -232 -3480 -256 ) ( -223 -3469 -256 ) ( -223 -3469 -272 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -333 -3359 -272 ) ( -223 -3469 -272 ) ( -223 -3469 -256 ) bricks/c_sr_mr5 59 14 -180 1 -1 0 0 0 +} +// brush 1599 +{ +( -496 -3104 -256 ) ( -496 -2976 -256 ) ( -128 -2976 -256 ) bricks/c_sr_mr5 0 2 282 1 1 0 0 0 +( -128 -2976 -272 ) ( -496 -2976 -272 ) ( -496 -3104 -272 ) bricks/c_sr_mr5 65 -15 -180 1 1 0 0 0 +( -480 -3112 -256 ) ( -464 -3107 -256 ) ( -464 -3107 -272 ) bricks/c_sr_mr5 64 15 -180 1 -1 0 0 0 +( -512 -2956 -400 ) ( -512 -2956 -240 ) ( -480 -3112 -240 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -496 -2954 -400 ) ( -496 -2954 -240 ) ( -512 -2956 -240 ) bricks/c_sr_mr5 64 15 -180 1 -1 0 0 0 +( -496 -2954 -272 ) ( -464 -3107 -272 ) ( -464 -3107 -256 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +} +// brush 1600 +{ +( -464 -3260 -256 ) ( -464 -3132 -256 ) ( -96 -3132 -256 ) bricks/c_sr_mr5 0 5 293 1 1 0 0 0 +( -96 -3132 -272 ) ( -464 -3132 -272 ) ( -464 -3260 -272 ) bricks/c_sr_mr5 65 -15 -180 1 1 0 0 0 +( -424 -3244 -256 ) ( -411 -3237 -256 ) ( -411 -3237 -272 ) bricks/c_sr_mr5 64 15 -180 1 -1 0 0 0 +( -424 -3244 -240 ) ( -424 -3244 -400 ) ( -480 -3112 -400 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -480 -3112 -272 ) ( -464 -3107 -272 ) ( -464 -3107 -256 ) bricks/c_sr_mr5 64 15 -180 1 -1 0 0 0 +( -464 -3107 -272 ) ( -411 -3237 -272 ) ( -411 -3237 -256 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +} +// brush 1601 +{ +( -408 -3392 -256 ) ( -408 -3264 -256 ) ( -40 -3264 -256 ) bricks/c_sr_mr5 0 -12 303 1 1 0 0 0 +( -40 -3264 -272 ) ( -408 -3264 -272 ) ( -408 -3392 -272 ) bricks/c_sr_mr5 65 -15 -180 1 1 0 0 0 +( -344 -3368 -256 ) ( -333 -3359 -256 ) ( -333 -3359 -272 ) bricks/c_sr_mr5 64 15 -180 1 -1 0 0 0 +( -424 -3244 -400 ) ( -424 -3244 -240 ) ( -344 -3368 -240 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -424 -3244 -272 ) ( -411 -3237 -272 ) ( -411 -3237 -256 ) bricks/c_sr_mr5 64 15 -180 1 -1 0 0 0 +( -411 -3237 -272 ) ( -333 -3359 -272 ) ( -333 -3359 -256 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +} +// brush 1602 +{ +( -256 -3544 -272 ) ( -128 -3544 -272 ) ( -128 -3176 -272 ) bricks/c_sr_mr5 65 -15 -180 1 1 0 0 0 +( -128 -3176 -256 ) ( -128 -3544 -256 ) ( -256 -3544 -256 ) bricks/c_sr_mr5 0 -6 327 1 1 0 0 0 +( -232 -3480 -272 ) ( -223 -3469 -272 ) ( -223 -3469 -256 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -108 -3560 -128 ) ( -108 -3560 -288 ) ( -232 -3480 -288 ) bricks/c_sr_mr5 64 15 -180 1 -1 0 0 0 +( -108 -3560 -256 ) ( -101 -3547 -256 ) ( -101 -3547 -272 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -223 -3469 -272 ) ( -101 -3547 -272 ) ( -101 -3547 -256 ) bricks/c_sr_mr5 64 15 -180 1 -1 0 0 0 +} +// brush 1603 +{ +( -124 -3600 -272 ) ( 4 -3600 -272 ) ( 4 -3232 -272 ) bricks/c_sr_mr5 65 -15 -180 1 1 0 0 0 +( 4 -3232 -256 ) ( 4 -3600 -256 ) ( -124 -3600 -256 ) bricks/c_sr_mr5 0 7 337 1 1 0 0 0 +( -108 -3560 -272 ) ( -101 -3547 -272 ) ( -101 -3547 -256 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -108 -3560 -288 ) ( -108 -3560 -128 ) ( 24 -3616 -128 ) bricks/c_sr_mr5 64 15 -180 1 -1 0 0 0 +( 28 -3602 -128 ) ( 28 -3602 -288 ) ( 24 -3616 -288 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( 28 -3602 -256 ) ( -101 -3547 -256 ) ( -101 -3547 -272 ) bricks/c_sr_mr5 64 15 -180 1 -1 0 0 0 +} +// brush 1604 +{ +( 32 -3632 -272 ) ( 160 -3632 -272 ) ( 160 -3264 -272 ) bricks/c_sr_mr5 65 -15 -180 1 1 0 0 0 +( 160 -3264 -256 ) ( 160 -3632 -256 ) ( 32 -3632 -256 ) bricks/c_sr_mr5 0 -12 348 1 1 0 0 0 +( 28 -3602 -288 ) ( 28 -3602 -128 ) ( 24 -3616 -128 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( 180 -3648 -128 ) ( 180 -3648 -288 ) ( 24 -3616 -288 ) bricks/c_sr_mr5 64 15 -180 1 -1 0 0 0 +( 182 -3632 -128 ) ( 182 -3632 -288 ) ( 180 -3648 -288 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( 28 -3602 -128 ) ( 28 -3602 -288 ) ( 182 -3632 -288 ) bricks/c_sr_mr5 64 15 -180 1 -1 0 0 0 +} +// brush 1605 +{ +( 32 -2064 -64 ) ( -184 -2280 -64 ) ( -208 -2256 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -184 -2280 -64 ) ( 32 -2064 -64 ) ( 8 -2040 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -264 -2360 -96 ) ( -288 -2336 -96 ) ( -276 -2348 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -240 -2288 -96 ) ( -216 -2312 -96 ) ( -228 -2300 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -267 -2353 -96 ) ( -223 -2309 -96 ) ( -245 -2331 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +} +// brush 1606 +{ +( 32 -2064 -64 ) ( -184 -2280 -64 ) ( -208 -2256 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -224 -2272 -64 ) ( -224 -2272 -96 ) ( 8 -2040 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -184 -2280 -64 ) ( 32 -2064 -64 ) ( 8 -2040 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -264 -2360 -96 ) ( -288 -2336 -96 ) ( -276 -2348 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -240 -2288 -96 ) ( -216 -2312 -96 ) ( -228 -2300 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -236 -2298 -96 ) ( -240 -2302 -96 ) ( -238 -2300 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +} +// brush 1607 +{ +( 32 -2064 -64 ) ( -184 -2280 -64 ) ( -208 -2256 -64 ) common/li_pv_v4a 3 2 225 1 1 0 1 7000 +( -184 -2280 -64 ) ( 32 -2064 -64 ) ( 8 -2040 -96 ) common/li_pv_v4a 3 2 225 1 1 0 1 7000 +( -264 -2360 -96 ) ( -288 -2336 -96 ) ( -276 -2348 -64 ) common/li_pv_v4a 3 2 225 1 1 0 1 7000 +( -240 -2288 -96 ) ( -216 -2312 -96 ) ( -228 -2300 -64 ) common/li_pv_v4a 3 2 225 1 1 0 1 7000 +( -223 -2309 -96 ) ( -267 -2353 -96 ) ( -245 -2331 -64 ) common/li_pv_v4a 3 2 225 1 1 0 1 7000 +( -240 -2302 -96 ) ( -236 -2298 -96 ) ( -238 -2300 -64 ) common/li_pv_v4a 3 2 225 1 1 0 1 7000 +} +// brush 1608 +{ +( 32 -2064 -64 ) ( -184 -2280 -64 ) ( -208 -2256 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -224 -2272 -64 ) ( -224 -2272 -96 ) ( 8 -2040 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -184 -2280 -64 ) ( 32 -2064 -64 ) ( 8 -2040 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -216 -2312 -96 ) ( -240 -2288 -96 ) ( -228 -2300 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -56 -2104 -96 ) ( -32 -2128 -96 ) ( -44 -2116 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +} +// brush 1609 +{ +( -212 -2756 -64 ) ( 4 -2540 -64 ) ( 28 -2564 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 44 -2548 -64 ) ( 44 -2548 -96 ) ( -188 -2780 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 4 -2540 -64 ) ( -212 -2756 -64 ) ( -188 -2780 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( -216 -2312 -96 ) ( -240 -2288 -96 ) ( -228 -2300 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( -56 -2104 -96 ) ( -32 -2128 -96 ) ( -44 -2116 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +} +// brush 1610 +{ +( -212 -2756 -64 ) ( 4 -2540 -64 ) ( 28 -2564 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 4 -2540 -64 ) ( -212 -2756 -64 ) ( -188 -2780 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( -16 -2608 -96 ) ( -40 -2584 -96 ) ( -28 -2596 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( -240 -2288 -96 ) ( -216 -2312 -96 ) ( -228 -2300 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 12 -2542 -96 ) ( -34 -2588 -96 ) ( -11 -2565 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +} +// brush 1611 +{ +( -212 -2756 -64 ) ( 4 -2540 -64 ) ( 28 -2564 -64 ) common/li_pv_v4a -2 1 45 1 1 0 1 7000 +( 4 -2540 -64 ) ( -212 -2756 -64 ) ( -188 -2780 -96 ) common/li_pv_v4a -2 1 45 1 1 0 1 7000 +( -16 -2608 -96 ) ( -40 -2584 -96 ) ( -28 -2596 -64 ) common/li_pv_v4a -2 1 45 1 1 0 1 7000 +( -240 -2288 -96 ) ( -216 -2312 -96 ) ( -228 -2300 -64 ) common/li_pv_v4a -2 1 45 1 1 0 1 7000 +( -34 -2588 -96 ) ( 12 -2542 -96 ) ( -11 -2565 -64 ) common/li_pv_v4a -2 1 45 1 1 0 1 7000 +( 26 -2554 -96 ) ( -22 -2602 -96 ) ( 2 -2578 -64 ) common/li_pv_v4a -2 1 45 1 1 0 1 7000 +} +// brush 1612 +{ +( -212 -2756 -64 ) ( 4 -2540 -64 ) ( 28 -2564 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 44 -2548 -64 ) ( 44 -2548 -96 ) ( -188 -2780 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 4 -2540 -64 ) ( -212 -2756 -64 ) ( -188 -2780 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( -16 -2608 -96 ) ( -40 -2584 -96 ) ( -28 -2596 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( -240 -2288 -96 ) ( -216 -2312 -96 ) ( -228 -2300 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( -22 -2602 -96 ) ( 26 -2554 -96 ) ( 2 -2578 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +} +// brush 1613 +{ +( 264 -1832 -64 ) ( 48 -2048 -64 ) ( 24 -2024 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 8 -2040 -64 ) ( 8 -2040 -96 ) ( 240 -1808 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 48 -2048 -64 ) ( 264 -1832 -64 ) ( 240 -1808 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 16 -2080 -96 ) ( -8 -2056 -96 ) ( 4 -2068 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 176 -1872 -96 ) ( 200 -1896 -96 ) ( 188 -1884 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +} +// brush 1614 +{ +( 264 -1832 -64 ) ( 48 -2048 -64 ) ( 24 -2024 -64 ) common/li_pv_v4a 11 2 225 1 1 0 1 7000 +( 48 -2048 -64 ) ( 264 -1832 -64 ) ( 240 -1808 -96 ) common/li_pv_v4a 11 2 225 1 1 0 1 7000 +( -32 -2128 -96 ) ( -56 -2104 -96 ) ( -44 -2116 -64 ) common/li_pv_v4a 11 2 225 1 1 0 1 7000 +( -8 -2056 -96 ) ( 16 -2080 -96 ) ( 4 -2068 -64 ) common/li_pv_v4a 11 2 225 1 1 0 1 7000 +( 9 -2077 -96 ) ( -35 -2121 -96 ) ( -13 -2099 -64 ) common/li_pv_v4a 11 2 225 1 1 0 1 7000 +( -8 -2070 -96 ) ( -4 -2066 -96 ) ( -6 -2068 -64 ) common/li_pv_v4a 11 2 225 1 1 0 1 7000 +} +// brush 1615 +{ +( 264 -1832 -64 ) ( 48 -2048 -64 ) ( 24 -2024 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 8 -2040 -64 ) ( 8 -2040 -96 ) ( 240 -1808 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 48 -2048 -64 ) ( 264 -1832 -64 ) ( 240 -1808 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -32 -2128 -96 ) ( -56 -2104 -96 ) ( -44 -2116 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -8 -2056 -96 ) ( 16 -2080 -96 ) ( 4 -2068 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -4 -2066 -96 ) ( -8 -2070 -96 ) ( -6 -2068 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +} +// brush 1616 +{ +( 264 -1832 -64 ) ( 48 -2048 -64 ) ( 24 -2024 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 48 -2048 -64 ) ( 264 -1832 -64 ) ( 240 -1808 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -32 -2128 -96 ) ( -56 -2104 -96 ) ( -44 -2116 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -8 -2056 -96 ) ( 16 -2080 -96 ) ( 4 -2068 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( -35 -2121 -96 ) ( 9 -2077 -96 ) ( -13 -2099 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +} +// brush 1617 +{ +( 496 -1600 -64 ) ( 280 -1816 -64 ) ( 256 -1792 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 280 -1816 -64 ) ( 496 -1600 -64 ) ( 472 -1576 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 200 -1896 -96 ) ( 176 -1872 -96 ) ( 188 -1884 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 224 -1824 -96 ) ( 248 -1848 -96 ) ( 236 -1836 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 197 -1889 -96 ) ( 241 -1845 -96 ) ( 219 -1867 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +} +// brush 1618 +{ +( 496 -1600 -64 ) ( 280 -1816 -64 ) ( 256 -1792 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 240 -1808 -64 ) ( 240 -1808 -96 ) ( 472 -1576 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 280 -1816 -64 ) ( 496 -1600 -64 ) ( 472 -1576 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 200 -1896 -96 ) ( 176 -1872 -96 ) ( 188 -1884 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 224 -1824 -96 ) ( 248 -1848 -96 ) ( 236 -1836 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 228 -1834 -96 ) ( 224 -1838 -96 ) ( 226 -1836 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +} +// brush 1619 +{ +( 496 -1600 -64 ) ( 280 -1816 -64 ) ( 256 -1792 -64 ) common/li_pv_v4a 19 2 225 1 1 0 1 7000 +( 280 -1816 -64 ) ( 496 -1600 -64 ) ( 472 -1576 -96 ) common/li_pv_v4a 19 2 225 1 1 0 1 7000 +( 200 -1896 -96 ) ( 176 -1872 -96 ) ( 188 -1884 -64 ) common/li_pv_v4a 19 2 225 1 1 0 1 7000 +( 224 -1824 -96 ) ( 248 -1848 -96 ) ( 236 -1836 -64 ) common/li_pv_v4a 19 2 225 1 1 0 1 7000 +( 241 -1845 -96 ) ( 197 -1889 -96 ) ( 219 -1867 -64 ) common/li_pv_v4a 19 2 225 1 1 0 1 7000 +( 224 -1838 -96 ) ( 228 -1834 -96 ) ( 226 -1836 -64 ) common/li_pv_v4a 19 2 225 1 1 0 1 7000 +} +// brush 1620 +{ +( 496 -1600 -64 ) ( 280 -1816 -64 ) ( 256 -1792 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 240 -1808 -64 ) ( 240 -1808 -96 ) ( 472 -1576 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 280 -1816 -64 ) ( 496 -1600 -64 ) ( 472 -1576 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 248 -1848 -96 ) ( 224 -1824 -96 ) ( 236 -1836 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 408 -1640 -96 ) ( 432 -1664 -96 ) ( 420 -1652 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +} +// brush 1621 +{ +( 728 -1368 -64 ) ( 512 -1584 -64 ) ( 488 -1560 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 472 -1576 -64 ) ( 472 -1576 -96 ) ( 704 -1344 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 512 -1584 -64 ) ( 728 -1368 -64 ) ( 704 -1344 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 480 -1616 -96 ) ( 456 -1592 -96 ) ( 468 -1604 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 640 -1408 -96 ) ( 664 -1432 -96 ) ( 652 -1420 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +} +// brush 1622 +{ +( 728 -1368 -64 ) ( 512 -1584 -64 ) ( 488 -1560 -64 ) common/li_pv_v4a 27 2 225 1 1 0 1 7000 +( 512 -1584 -64 ) ( 728 -1368 -64 ) ( 704 -1344 -96 ) common/li_pv_v4a 27 2 225 1 1 0 1 7000 +( 432 -1664 -96 ) ( 408 -1640 -96 ) ( 420 -1652 -64 ) common/li_pv_v4a 27 2 225 1 1 0 1 7000 +( 456 -1592 -96 ) ( 480 -1616 -96 ) ( 468 -1604 -64 ) common/li_pv_v4a 27 2 225 1 1 0 1 7000 +( 473 -1613 -96 ) ( 429 -1657 -96 ) ( 451 -1635 -64 ) common/li_pv_v4a 27 2 225 1 1 0 1 7000 +( 456 -1606 -96 ) ( 460 -1602 -96 ) ( 458 -1604 -64 ) common/li_pv_v4a 27 2 225 1 1 0 1 7000 +} +// brush 1623 +{ +( 728 -1368 -64 ) ( 512 -1584 -64 ) ( 488 -1560 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 472 -1576 -64 ) ( 472 -1576 -96 ) ( 704 -1344 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 512 -1584 -64 ) ( 728 -1368 -64 ) ( 704 -1344 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 432 -1664 -96 ) ( 408 -1640 -96 ) ( 420 -1652 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 456 -1592 -96 ) ( 480 -1616 -96 ) ( 468 -1604 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 460 -1602 -96 ) ( 456 -1606 -96 ) ( 458 -1604 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +} +// brush 1624 +{ +( 728 -1368 -64 ) ( 512 -1584 -64 ) ( 488 -1560 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 512 -1584 -64 ) ( 728 -1368 -64 ) ( 704 -1344 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 432 -1664 -96 ) ( 408 -1640 -96 ) ( 420 -1652 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 456 -1592 -96 ) ( 480 -1616 -96 ) ( 468 -1604 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 429 -1657 -96 ) ( 473 -1613 -96 ) ( 451 -1635 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +} +// brush 1625 +{ +( 960 -1136 -64 ) ( 744 -1352 -64 ) ( 720 -1328 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 744 -1352 -64 ) ( 960 -1136 -64 ) ( 936 -1112 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 664 -1432 -96 ) ( 640 -1408 -96 ) ( 652 -1420 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 688 -1360 -96 ) ( 712 -1384 -96 ) ( 700 -1372 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 661 -1425 -96 ) ( 705 -1381 -96 ) ( 683 -1403 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +} +// brush 1626 +{ +( 960 -1136 -64 ) ( 744 -1352 -64 ) ( 720 -1328 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 704 -1344 -64 ) ( 704 -1344 -96 ) ( 936 -1112 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 744 -1352 -64 ) ( 960 -1136 -64 ) ( 936 -1112 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 664 -1432 -96 ) ( 640 -1408 -96 ) ( 652 -1420 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 688 -1360 -96 ) ( 712 -1384 -96 ) ( 700 -1372 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 692 -1370 -96 ) ( 688 -1374 -96 ) ( 690 -1372 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +} +// brush 1627 +{ +( 960 -1136 -64 ) ( 744 -1352 -64 ) ( 720 -1328 -64 ) common/li_pv_v4a -29 2 225 1 1 0 1 7000 +( 744 -1352 -64 ) ( 960 -1136 -64 ) ( 936 -1112 -96 ) common/li_pv_v4a -29 2 225 1 1 0 1 7000 +( 664 -1432 -96 ) ( 640 -1408 -96 ) ( 652 -1420 -64 ) common/li_pv_v4a -29 2 225 1 1 0 1 7000 +( 688 -1360 -96 ) ( 712 -1384 -96 ) ( 700 -1372 -64 ) common/li_pv_v4a -29 2 225 1 1 0 1 7000 +( 705 -1381 -96 ) ( 661 -1425 -96 ) ( 683 -1403 -64 ) common/li_pv_v4a -29 2 225 1 1 0 1 7000 +( 688 -1374 -96 ) ( 692 -1370 -96 ) ( 690 -1372 -64 ) common/li_pv_v4a -29 2 225 1 1 0 1 7000 +} +// brush 1628 +{ +( 960 -1136 -64 ) ( 744 -1352 -64 ) ( 720 -1328 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 704 -1344 -64 ) ( 704 -1344 -96 ) ( 936 -1112 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 744 -1352 -64 ) ( 960 -1136 -64 ) ( 936 -1112 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 712 -1384 -96 ) ( 688 -1360 -96 ) ( 700 -1372 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 872 -1176 -96 ) ( 896 -1200 -96 ) ( 884 -1188 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +} +// brush 1629 +{ +( 1192 -904 -64 ) ( 976 -1120 -64 ) ( 952 -1096 -64 ) common/li_pv_v4a -21 2 225 1 1 0 1 7000 +( 976 -1120 -64 ) ( 1192 -904 -64 ) ( 1168 -880 -96 ) common/li_pv_v4a -21 2 225 1 1 0 1 7000 +( 896 -1200 -96 ) ( 872 -1176 -96 ) ( 884 -1188 -64 ) common/li_pv_v4a -21 2 225 1 1 0 1 7000 +( 920 -1128 -96 ) ( 944 -1152 -96 ) ( 932 -1140 -64 ) common/li_pv_v4a -21 2 225 1 1 0 1 7000 +( 937 -1149 -96 ) ( 893 -1193 -96 ) ( 915 -1171 -64 ) common/li_pv_v4a -21 2 225 1 1 0 1 7000 +( 920 -1142 -96 ) ( 924 -1138 -96 ) ( 922 -1140 -64 ) common/li_pv_v4a -21 2 225 1 1 0 1 7000 +} +// brush 1630 +{ +( 1192 -904 -64 ) ( 976 -1120 -64 ) ( 952 -1096 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 936 -1112 -64 ) ( 936 -1112 -96 ) ( 1168 -880 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 976 -1120 -64 ) ( 1192 -904 -64 ) ( 1168 -880 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 896 -1200 -96 ) ( 872 -1176 -96 ) ( 884 -1188 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 920 -1128 -96 ) ( 944 -1152 -96 ) ( 932 -1140 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 924 -1138 -96 ) ( 920 -1142 -96 ) ( 922 -1140 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +} +// brush 1631 +{ +( 1192 -904 -64 ) ( 976 -1120 -64 ) ( 952 -1096 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 976 -1120 -64 ) ( 1192 -904 -64 ) ( 1168 -880 -96 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 896 -1200 -96 ) ( 872 -1176 -96 ) ( 884 -1188 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 920 -1128 -96 ) ( 944 -1152 -96 ) ( 932 -1140 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +( 893 -1193 -96 ) ( 937 -1149 -96 ) ( 915 -1171 -64 ) bricks/c_tn_m1 0 9 225 1 1 0 0 0 +} +// brush 1632 +{ +( 20 -2524 -64 ) ( 236 -2308 -64 ) ( 260 -2332 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 276 -2316 -64 ) ( 276 -2316 -96 ) ( 44 -2548 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 236 -2308 -64 ) ( 20 -2524 -64 ) ( 44 -2548 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 216 -2376 -96 ) ( 192 -2352 -96 ) ( 204 -2364 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( -8 -2056 -96 ) ( 16 -2080 -96 ) ( 4 -2068 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 210 -2370 -96 ) ( 258 -2322 -96 ) ( 234 -2346 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +} +// brush 1633 +{ +( 20 -2524 -64 ) ( 236 -2308 -64 ) ( 260 -2332 -64 ) common/li_pv_v4a -10 1 45 1 1 0 1 7000 +( 236 -2308 -64 ) ( 20 -2524 -64 ) ( 44 -2548 -96 ) common/li_pv_v4a -10 1 45 1 1 0 1 7000 +( 216 -2376 -96 ) ( 192 -2352 -96 ) ( 204 -2364 -64 ) common/li_pv_v4a -10 1 45 1 1 0 1 7000 +( -8 -2056 -96 ) ( 16 -2080 -96 ) ( 4 -2068 -64 ) common/li_pv_v4a -10 1 45 1 1 0 1 7000 +( 198 -2356 -96 ) ( 244 -2310 -96 ) ( 221 -2333 -64 ) common/li_pv_v4a -10 1 45 1 1 0 1 7000 +( 258 -2322 -96 ) ( 210 -2370 -96 ) ( 234 -2346 -64 ) common/li_pv_v4a -10 1 45 1 1 0 1 7000 +} +// brush 1634 +{ +( 20 -2524 -64 ) ( 236 -2308 -64 ) ( 260 -2332 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 236 -2308 -64 ) ( 20 -2524 -64 ) ( 44 -2548 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 216 -2376 -96 ) ( 192 -2352 -96 ) ( 204 -2364 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( -8 -2056 -96 ) ( 16 -2080 -96 ) ( 4 -2068 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 244 -2310 -96 ) ( 198 -2356 -96 ) ( 221 -2333 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +} +// brush 1635 +{ +( 20 -2524 -64 ) ( 236 -2308 -64 ) ( 260 -2332 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 276 -2316 -64 ) ( 276 -2316 -96 ) ( 44 -2548 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 236 -2308 -64 ) ( 20 -2524 -64 ) ( 44 -2548 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 16 -2080 -96 ) ( -8 -2056 -96 ) ( 4 -2068 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 176 -1872 -96 ) ( 200 -1896 -96 ) ( 188 -1884 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +} +// brush 1636 +{ +( 252 -2292 -64 ) ( 468 -2076 -64 ) ( 492 -2100 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 508 -2084 -64 ) ( 508 -2084 -96 ) ( 276 -2316 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 468 -2076 -64 ) ( 252 -2292 -64 ) ( 276 -2316 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 248 -1848 -96 ) ( 224 -1824 -96 ) ( 236 -1836 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 408 -1640 -96 ) ( 432 -1664 -96 ) ( 420 -1652 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +} +// brush 1637 +{ +( 252 -2292 -64 ) ( 468 -2076 -64 ) ( 492 -2100 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 468 -2076 -64 ) ( 252 -2292 -64 ) ( 276 -2316 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 448 -2144 -96 ) ( 424 -2120 -96 ) ( 436 -2132 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 224 -1824 -96 ) ( 248 -1848 -96 ) ( 236 -1836 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 476 -2078 -96 ) ( 430 -2124 -96 ) ( 453 -2101 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +} +// brush 1638 +{ +( 252 -2292 -64 ) ( 468 -2076 -64 ) ( 492 -2100 -64 ) common/li_pv_v4a -19 1 45 1 1 0 1 7000 +( 468 -2076 -64 ) ( 252 -2292 -64 ) ( 276 -2316 -96 ) common/li_pv_v4a -19 1 45 1 1 0 1 7000 +( 448 -2144 -96 ) ( 424 -2120 -96 ) ( 436 -2132 -64 ) common/li_pv_v4a -19 1 45 1 1 0 1 7000 +( 224 -1824 -96 ) ( 248 -1848 -96 ) ( 236 -1836 -64 ) common/li_pv_v4a -19 1 45 1 1 0 1 7000 +( 430 -2124 -96 ) ( 476 -2078 -96 ) ( 453 -2101 -64 ) common/li_pv_v4a -19 1 45 1 1 0 1 7000 +( 490 -2090 -96 ) ( 442 -2138 -96 ) ( 466 -2114 -64 ) common/li_pv_v4a -19 1 45 1 1 0 1 7000 +} +// brush 1639 +{ +( 252 -2292 -64 ) ( 468 -2076 -64 ) ( 492 -2100 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 508 -2084 -64 ) ( 508 -2084 -96 ) ( 276 -2316 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 468 -2076 -64 ) ( 252 -2292 -64 ) ( 276 -2316 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 448 -2144 -96 ) ( 424 -2120 -96 ) ( 436 -2132 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 224 -1824 -96 ) ( 248 -1848 -96 ) ( 236 -1836 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 442 -2138 -96 ) ( 490 -2090 -96 ) ( 466 -2114 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +} +// brush 1640 +{ +( 484 -2060 -64 ) ( 700 -1844 -64 ) ( 724 -1868 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 740 -1852 -64 ) ( 740 -1852 -96 ) ( 508 -2084 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 700 -1844 -64 ) ( 484 -2060 -64 ) ( 508 -2084 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 680 -1912 -96 ) ( 656 -1888 -96 ) ( 668 -1900 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 456 -1592 -96 ) ( 480 -1616 -96 ) ( 468 -1604 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 674 -1906 -96 ) ( 722 -1858 -96 ) ( 698 -1882 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +} +// brush 1641 +{ +( 484 -2060 -64 ) ( 700 -1844 -64 ) ( 724 -1868 -64 ) common/li_pv_v4a -27 1 45 1 1 0 1 7000 +( 700 -1844 -64 ) ( 484 -2060 -64 ) ( 508 -2084 -96 ) common/li_pv_v4a -27 1 45 1 1 0 1 7000 +( 680 -1912 -96 ) ( 656 -1888 -96 ) ( 668 -1900 -64 ) common/li_pv_v4a -27 1 45 1 1 0 1 7000 +( 456 -1592 -96 ) ( 480 -1616 -96 ) ( 468 -1604 -64 ) common/li_pv_v4a -27 1 45 1 1 0 1 7000 +( 662 -1892 -96 ) ( 708 -1846 -96 ) ( 685 -1869 -64 ) common/li_pv_v4a -27 1 45 1 1 0 1 7000 +( 722 -1858 -96 ) ( 674 -1906 -96 ) ( 698 -1882 -64 ) common/li_pv_v4a -27 1 45 1 1 0 1 7000 +} +// brush 1642 +{ +( 484 -2060 -64 ) ( 700 -1844 -64 ) ( 724 -1868 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 700 -1844 -64 ) ( 484 -2060 -64 ) ( 508 -2084 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 680 -1912 -96 ) ( 656 -1888 -96 ) ( 668 -1900 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 456 -1592 -96 ) ( 480 -1616 -96 ) ( 468 -1604 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 708 -1846 -96 ) ( 662 -1892 -96 ) ( 685 -1869 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +} +// brush 1643 +{ +( 484 -2060 -64 ) ( 700 -1844 -64 ) ( 724 -1868 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 740 -1852 -64 ) ( 740 -1852 -96 ) ( 508 -2084 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 700 -1844 -64 ) ( 484 -2060 -64 ) ( 508 -2084 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 480 -1616 -96 ) ( 456 -1592 -96 ) ( 468 -1604 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 640 -1408 -96 ) ( 664 -1432 -96 ) ( 652 -1420 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +} +// brush 1644 +{ +( 716 -1828 -64 ) ( 932 -1612 -64 ) ( 956 -1636 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 972 -1620 -64 ) ( 972 -1620 -96 ) ( 740 -1852 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 932 -1612 -64 ) ( 716 -1828 -64 ) ( 740 -1852 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 712 -1384 -96 ) ( 688 -1360 -96 ) ( 700 -1372 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 872 -1176 -96 ) ( 896 -1200 -96 ) ( 884 -1188 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +} +// brush 1645 +{ +( 716 -1828 -64 ) ( 932 -1612 -64 ) ( 956 -1636 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 932 -1612 -64 ) ( 716 -1828 -64 ) ( 740 -1852 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 912 -1680 -96 ) ( 888 -1656 -96 ) ( 900 -1668 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 688 -1360 -96 ) ( 712 -1384 -96 ) ( 700 -1372 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 940 -1614 -96 ) ( 894 -1660 -96 ) ( 917 -1637 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +} +// brush 1646 +{ +( 716 -1828 -64 ) ( 932 -1612 -64 ) ( 956 -1636 -64 ) common/li_pv_v4a 29 1 45 1 1 0 1 7000 +( 932 -1612 -64 ) ( 716 -1828 -64 ) ( 740 -1852 -96 ) common/li_pv_v4a 29 1 45 1 1 0 1 7000 +( 912 -1680 -96 ) ( 888 -1656 -96 ) ( 900 -1668 -64 ) common/li_pv_v4a 29 1 45 1 1 0 1 7000 +( 688 -1360 -96 ) ( 712 -1384 -96 ) ( 700 -1372 -64 ) common/li_pv_v4a 29 1 45 1 1 0 1 7000 +( 894 -1660 -96 ) ( 940 -1614 -96 ) ( 917 -1637 -64 ) common/li_pv_v4a 29 1 45 1 1 0 1 7000 +( 954 -1626 -96 ) ( 906 -1674 -96 ) ( 930 -1650 -64 ) common/li_pv_v4a 29 1 45 1 1 0 1 7000 +} +// brush 1647 +{ +( 716 -1828 -64 ) ( 932 -1612 -64 ) ( 956 -1636 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 972 -1620 -64 ) ( 972 -1620 -96 ) ( 740 -1852 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 932 -1612 -64 ) ( 716 -1828 -64 ) ( 740 -1852 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 912 -1680 -96 ) ( 888 -1656 -96 ) ( 900 -1668 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 688 -1360 -96 ) ( 712 -1384 -96 ) ( 700 -1372 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 906 -1674 -96 ) ( 954 -1626 -96 ) ( 930 -1650 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +} +// brush 1648 +{ +( 948 -1596 -64 ) ( 1164 -1380 -64 ) ( 1188 -1404 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 1204 -1388 -64 ) ( 1204 -1388 -96 ) ( 972 -1620 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 1164 -1380 -64 ) ( 948 -1596 -64 ) ( 972 -1620 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 1144 -1448 -96 ) ( 1120 -1424 -96 ) ( 1132 -1436 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 920 -1128 -96 ) ( 944 -1152 -96 ) ( 932 -1140 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 1138 -1442 -96 ) ( 1186 -1394 -96 ) ( 1162 -1418 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +} +// brush 1649 +{ +( 948 -1596 -64 ) ( 1164 -1380 -64 ) ( 1188 -1404 -64 ) common/li_pv_v4a 21 1 45 1 1 0 1 7000 +( 1164 -1380 -64 ) ( 948 -1596 -64 ) ( 972 -1620 -96 ) common/li_pv_v4a 21 1 45 1 1 0 1 7000 +( 1144 -1448 -96 ) ( 1120 -1424 -96 ) ( 1132 -1436 -64 ) common/li_pv_v4a 21 1 45 1 1 0 1 7000 +( 920 -1128 -96 ) ( 944 -1152 -96 ) ( 932 -1140 -64 ) common/li_pv_v4a 21 1 45 1 1 0 1 7000 +( 1126 -1428 -96 ) ( 1172 -1382 -96 ) ( 1149 -1405 -64 ) common/li_pv_v4a 21 1 45 1 1 0 1 7000 +( 1186 -1394 -96 ) ( 1138 -1442 -96 ) ( 1162 -1418 -64 ) common/li_pv_v4a 21 1 45 1 1 0 1 7000 +} +// brush 1650 +{ +( 948 -1596 -64 ) ( 1164 -1380 -64 ) ( 1188 -1404 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 1164 -1380 -64 ) ( 948 -1596 -64 ) ( 972 -1620 -96 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 1144 -1448 -96 ) ( 1120 -1424 -96 ) ( 1132 -1436 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 920 -1128 -96 ) ( 944 -1152 -96 ) ( 932 -1140 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( 1172 -1382 -96 ) ( 1126 -1428 -96 ) ( 1149 -1405 -64 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +} +// brush 1651 +{ +( 640 -3248 -288 ) ( 640 -3664 -288 ) ( 768 -3664 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 768 -3664 -272 ) ( 640 -3664 -272 ) ( 640 -3248 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 768 -3664 -264 ) ( 768 -3248 -264 ) ( 768 -3248 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 768 -3248 -264 ) ( 640 -3248 -264 ) ( 640 -3248 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 -3664 -264 ) ( 768 -3664 -264 ) ( 768 -3664 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 256 -3280 -288 ) ( 256 -3248 -288 ) ( 256 -3264 -272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1652 +{ +( 640 -3232 -272 ) ( 640 -3648 -272 ) ( 768 -3648 -272 ) bricks/c_sr_mr5 62 31 0 1 1 0 0 0 +( 768 -3648 -256 ) ( 640 -3648 -256 ) ( 640 -3232 -256 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 768 -3680 -248 ) ( 768 -3264 -248 ) ( 768 -3264 -272 ) bricks/c_sr_mr5 0 0 90 1 -1 0 0 0 +( 768 -3264 -248 ) ( 640 -3264 -248 ) ( 640 -3264 -272 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( 214 -3280 -272 ) ( 214 -3280 -256 ) ( 768 -3280 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 214 -3280 -256 ) ( 214 -3280 -272 ) ( 216 -3264 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1653 +{ +( 640 -3216 -272 ) ( 640 -3632 -272 ) ( 768 -3632 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 768 -3632 -64 ) ( 640 -3632 -64 ) ( 640 -3216 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 768 -3664 -248 ) ( 768 -3248 -248 ) ( 768 -3248 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 768 -3248 -248 ) ( 640 -3248 -248 ) ( 640 -3248 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 216 -3264 -272 ) ( 216 -3264 -64 ) ( 768 -3264 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 216 -3264 -64 ) ( 216 -3264 -272 ) ( 218 -3248 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1654 +{ +( 640 -3616 -272 ) ( 640 -4032 -272 ) ( 768 -4032 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 768 -4032 -64 ) ( 640 -4032 -64 ) ( 640 -3616 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 768 -4064 -248 ) ( 768 -3648 -248 ) ( 768 -3648 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 768 -3648 -248 ) ( 640 -3648 -248 ) ( 640 -3648 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 178 -3664 -272 ) ( 178 -3664 -64 ) ( 768 -3664 -64 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 178 -3664 -64 ) ( 178 -3664 -272 ) ( 180 -3648 -272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1655 +{ +( 640 -3232 -272 ) ( 640 -3648 -272 ) ( 768 -3648 -272 ) bricks/c_sr_mr5 0 -2 -180 1 1 0 0 0 +( 768 -3648 -256 ) ( 640 -3648 -256 ) ( 640 -3232 -256 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 768 -3680 -248 ) ( 768 -3264 -248 ) ( 768 -3264 -272 ) bricks/c_sr_mr5 -62 -2 -90 1.000004 -1 0 0 0 +( 180 -3648 -272 ) ( 180 -3648 -256 ) ( 768 -3648 -256 ) bricks/c_sr_mr5 -64 -2 -90 1 1 0 0 0 +( 2184 -3632 -272 ) ( 2240 -3632 -272 ) ( 2212 -3632 -256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 180 -3648 -256 ) ( 180 -3648 -272 ) ( 182 -3632 -272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1656 +{ +( 2097 1739 424 ) ( 2087 1739 424 ) ( 2087 1729 424 ) common/li_pv_v4a -45 -9 294 1 1 0 0 7000 +( 2087 1729 448 ) ( 2087 1739 448 ) ( 2097 1739 448 ) common/li_pv_v4a -45 -9 294 1 1 0 0 7000 +( 2087 1729 448 ) ( 2097 1729 448 ) ( 2097 1729 424 ) common/li_pv_v4a 13 -15 294 1 1 0 0 7000 +( 2097 1729 448 ) ( 2097 1739 448 ) ( 2097 1739 424 ) common/li_pv_v4a 21 -1 294 1 1 0 0 7000 +( 2097 1739 448 ) ( 2087 1739 448 ) ( 2087 1739 424 ) common/li_pv_v4a 13 -15 294 1 1 0 0 7000 +( 2087 1739 448 ) ( 2087 1729 448 ) ( 2087 1729 424 ) common/li_pv_v4a 21 -1 294 1 1 0 0 7000 +} +// brush 1657 +{ +( 2976 -600 416 ) ( 2920 -468 416 ) ( 2891 -484 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2920 -468 464 ) ( 2920 -468 416 ) ( 2976 -600 416 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2976 -316 448 ) ( 2891 -344 448 ) ( 2891 -288 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2904 -516 416 ) ( 2926 -506 416 ) ( 2915 -511 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2958 -562 416 ) ( 2936 -572 416 ) ( 2947 -567 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2954 -572 416 ) ( 2926 -506 416 ) ( 2940 -539 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +} +// brush 1658 +{ +( 2976 -600 416 ) ( 2920 -468 416 ) ( 2891 -484 448 ) common/li_pv_v4a 10 1 113 1 1 0 1 7000 +( 2976 -600 464 ) ( 2976 -600 416 ) ( 2891 -484 448 ) common/li_pv_v4a 10 1 113 1 1 0 1 7000 +( 2976 -316 448 ) ( 2891 -344 448 ) ( 2891 -288 448 ) common/li_pv_v4a 10 1 113 1 1 0 1 7000 +( 2904 -516 416 ) ( 2926 -506 416 ) ( 2915 -511 448 ) common/li_pv_v4a 10 1 113 1 1 0 1 7000 +( 2958 -562 416 ) ( 2936 -572 416 ) ( 2947 -567 448 ) common/li_pv_v4a 10 1 113 1 1 0 1 7000 +( 2926 -506 416 ) ( 2954 -572 416 ) ( 2940 -539 448 ) common/li_pv_v4a 10 1 113 1 1 0 1 7000 +} +// brush 1659 +{ +( 2945 -610 448 ) ( 2976 -600 416 ) ( 2891 -484 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2976 -316 448 ) ( 2891 -344 448 ) ( 2891 -288 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2904 -516 416 ) ( 2926 -506 416 ) ( 2915 -511 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2958 -562 416 ) ( 2936 -572 416 ) ( 2947 -567 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2908 -506 426 ) ( 2936 -572 426 ) ( 2922 -539 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +} +// brush 1660 +{ +( 2945 -610 448 ) ( 2976 -600 416 ) ( 2891 -484 448 ) common/li_pv_v4a 10 1 113 1 1 0 1 7000 +( 2891 -484 448 ) ( 2976 -600 416 ) ( 2976 -600 464 ) common/li_pv_v4a 10 1 113 1 1 0 1 7000 +( 2976 -316 448 ) ( 2891 -344 448 ) ( 2891 -288 448 ) common/li_pv_v4a 10 1 113 1 1 0 1 7000 +( 2904 -516 416 ) ( 2926 -506 416 ) ( 2915 -511 448 ) common/li_pv_v4a 10 1 113 1 1 0 1 7000 +( 2958 -562 416 ) ( 2936 -572 416 ) ( 2947 -567 448 ) common/li_pv_v4a 10 1 113 1 1 0 1 7000 +( 2936 -572 426 ) ( 2908 -506 426 ) ( 2922 -539 448 ) common/li_pv_v4a 10 1 113 1 1 0 1 7000 +} +// brush 1661 +{ +( 2945 -610 448 ) ( 2976 -600 416 ) ( 2891 -484 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2976 -600 464 ) ( 2976 -600 416 ) ( 2945 -610 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2891 -484 448 ) ( 2976 -600 416 ) ( 2976 -600 464 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2976 -316 448 ) ( 2891 -344 448 ) ( 2891 -288 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2936 -572 416 ) ( 2958 -562 416 ) ( 2947 -567 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +} +// brush 1662 +{ +( 2976 -600 416 ) ( 2920 -468 416 ) ( 2891 -484 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2920 -468 464 ) ( 2920 -468 416 ) ( 2976 -600 416 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2976 -600 464 ) ( 2976 -600 416 ) ( 2891 -484 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2976 -316 448 ) ( 2891 -344 448 ) ( 2891 -288 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2936 -572 416 ) ( 2958 -562 416 ) ( 2947 -567 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +} +// brush 1663 +{ +( 2976 -600 416 ) ( 2920 -468 416 ) ( 2891 -484 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2891 -484 448 ) ( 2920 -468 416 ) ( 2920 -468 464 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2920 -468 464 ) ( 2920 -468 416 ) ( 2976 -600 416 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2976 -600 464 ) ( 2976 -600 416 ) ( 2891 -484 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2976 -316 448 ) ( 2891 -344 448 ) ( 2891 -288 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2926 -506 416 ) ( 2904 -516 416 ) ( 2915 -511 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +} +// brush 1664 +{ +( 2945 -610 448 ) ( 2976 -600 416 ) ( 2891 -484 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2891 -484 448 ) ( 2976 -600 416 ) ( 2976 -600 464 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2976 -316 448 ) ( 2891 -344 448 ) ( 2891 -288 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +( 2926 -506 416 ) ( 2904 -516 416 ) ( 2915 -511 448 ) bricks/c_tn_m1 -173 -8 113 1 1 0 0 0 +} +// brush 1665 +{ +( 2588 -181 448 ) ( 2472 -96 416 ) ( 2462 -127 448 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2472 -96 464 ) ( 2472 -96 416 ) ( 2588 -181 448 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2784 -181 448 ) ( 2728 -181 448 ) ( 2756 -96 448 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2561 -157 448 ) ( 2556 -168 416 ) ( 2566 -146 416 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +} +// brush 1666 +{ +( 2588 -181 448 ) ( 2604 -152 416 ) ( 2472 -96 416 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2604 -152 464 ) ( 2604 -152 416 ) ( 2588 -181 448 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2472 -96 416 ) ( 2604 -152 416 ) ( 2604 -152 464 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2588 -181 448 ) ( 2472 -96 416 ) ( 2472 -96 464 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2784 -181 448 ) ( 2728 -181 448 ) ( 2756 -96 448 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2561 -157 448 ) ( 2556 -168 416 ) ( 2566 -146 416 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +} +// brush 1667 +{ +( 2588 -181 448 ) ( 2604 -152 416 ) ( 2472 -96 416 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2472 -96 416 ) ( 2604 -152 416 ) ( 2604 -152 464 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2588 -181 448 ) ( 2472 -96 416 ) ( 2472 -96 464 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2784 -181 448 ) ( 2728 -181 448 ) ( 2756 -96 448 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2505 -125 448 ) ( 2510 -114 416 ) ( 2500 -136 416 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +} +// brush 1668 +{ +( 2588 -181 448 ) ( 2472 -96 416 ) ( 2462 -127 448 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2462 -127 448 ) ( 2472 -96 416 ) ( 2472 -96 464 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2472 -96 464 ) ( 2472 -96 416 ) ( 2588 -181 448 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2784 -181 448 ) ( 2728 -181 448 ) ( 2756 -96 448 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2505 -125 448 ) ( 2510 -114 416 ) ( 2500 -136 416 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +} +// brush 1669 +{ +( 2588 -181 448 ) ( 2472 -96 416 ) ( 2462 -127 448 ) common/li_pv_v4a -13 -3 157 1 1 0 1 7000 +( 2472 -96 464 ) ( 2472 -96 416 ) ( 2588 -181 448 ) common/li_pv_v4a -13 -3 157 1 1 0 1 7000 +( 2784 -181 448 ) ( 2728 -181 448 ) ( 2756 -96 448 ) common/li_pv_v4a -13 -3 157 1 1 0 1 7000 +( 2561 -157 448 ) ( 2566 -146 416 ) ( 2556 -168 416 ) common/li_pv_v4a -13 -3 157 1 1 0 1 7000 +( 2505 -125 448 ) ( 2500 -136 416 ) ( 2510 -114 416 ) common/li_pv_v4a -13 -3 157 1 1 0 1 7000 +( 2533 -150 448 ) ( 2566 -164 426 ) ( 2500 -136 426 ) common/li_pv_v4a -13 -3 157 1 1 0 1 7000 +} +// brush 1670 +{ +( 2588 -181 448 ) ( 2472 -96 416 ) ( 2462 -127 448 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2784 -181 448 ) ( 2728 -181 448 ) ( 2756 -96 448 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2561 -157 448 ) ( 2566 -146 416 ) ( 2556 -168 416 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2505 -125 448 ) ( 2500 -136 416 ) ( 2510 -114 416 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2533 -150 448 ) ( 2500 -136 426 ) ( 2566 -164 426 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +} +// brush 1671 +{ +( 2588 -181 448 ) ( 2604 -152 416 ) ( 2472 -96 416 ) common/li_pv_v4a -13 -3 157 1 1 0 1 7000 +( 2588 -181 448 ) ( 2472 -96 416 ) ( 2472 -96 464 ) common/li_pv_v4a -13 -3 157 1 1 0 1 7000 +( 2784 -181 448 ) ( 2728 -181 448 ) ( 2756 -96 448 ) common/li_pv_v4a -13 -3 157 1 1 0 1 7000 +( 2561 -157 448 ) ( 2566 -146 416 ) ( 2556 -168 416 ) common/li_pv_v4a -13 -3 157 1 1 0 1 7000 +( 2505 -125 448 ) ( 2500 -136 416 ) ( 2510 -114 416 ) common/li_pv_v4a -13 -3 157 1 1 0 1 7000 +( 2533 -132 448 ) ( 2500 -118 416 ) ( 2566 -146 416 ) common/li_pv_v4a -13 -3 157 1 1 0 1 7000 +} +// brush 1672 +{ +( 2588 -181 448 ) ( 2604 -152 416 ) ( 2472 -96 416 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2472 -96 416 ) ( 2604 -152 416 ) ( 2604 -152 464 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2784 -181 448 ) ( 2728 -181 448 ) ( 2756 -96 448 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2561 -157 448 ) ( 2566 -146 416 ) ( 2556 -168 416 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2505 -125 448 ) ( 2500 -136 416 ) ( 2510 -114 416 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +( 2533 -132 448 ) ( 2566 -146 416 ) ( 2500 -118 416 ) bricks/c_tn_m1 -151 -12 157 1 1 0 0 0 +} +// brush 1673 +{ +( 2985 -570 448 ) ( 3016 -560 416 ) ( 2931 -444 448 ) bricks/c_tn_m1 0 2 113 1 1 0 0 0 +( 3016 -560 464 ) ( 3016 -560 416 ) ( 2985 -570 448 ) bricks/c_tn_m1 0 2 113 1 1 0 0 0 +( 2931 -444 448 ) ( 3016 -560 416 ) ( 3016 -560 464 ) bricks/c_tn_m1 0 2 113 1 1 0 0 0 +( 2824 -570 448 ) ( 2768 -570 448 ) ( 2796 -444 448 ) bricks/c_tn_m1 0 2 113 1 1 0 0 0 +} +// brush 1674 +{ +( 3016 -560 416 ) ( 2960 -428 416 ) ( 2931 -444 448 ) bricks/c_tn_m1 0 2 113 1 1 0 0 0 +( 2931 -444 448 ) ( 2960 -428 416 ) ( 2960 -428 464 ) bricks/c_tn_m1 0 2 113 1 1 0 0 0 +( 2960 -428 464 ) ( 2960 -428 416 ) ( 3016 -560 416 ) bricks/c_tn_m1 0 2 113 1 1 0 0 0 +( 3016 -560 464 ) ( 3016 -560 416 ) ( 2931 -444 448 ) bricks/c_tn_m1 0 2 113 1 1 0 0 0 +( 2824 -560 448 ) ( 2768 -560 448 ) ( 2796 -428 448 ) bricks/c_tn_m1 0 2 113 1 1 0 0 0 +} +// brush 1675 +{ +( 2880 -304 416 ) ( 2768 -192 416 ) ( 2854 -325 448 ) bricks/c_tn_m1 0 17 135 1 1 0 0 0 +( 2880 -304 464 ) ( 2880 -304 416 ) ( 2854 -325 448 ) bricks/c_tn_m1 0 17 135 1 1 0 0 0 +( 2768 -192 464 ) ( 2768 -192 416 ) ( 2880 -304 416 ) bricks/c_tn_m1 0 17 135 1 1 0 0 0 +( 2854 -325 448 ) ( 2768 -192 416 ) ( 2768 -192 464 ) bricks/c_tn_m1 0 17 135 1 1 0 0 0 +( 2824 -325 448 ) ( 2768 -325 448 ) ( 2796 -192 448 ) bricks/c_tn_m1 0 17 135 1 1 0 0 0 +} +// brush 1676 +{ +( 2854 -325 448 ) ( 2768 -192 416 ) ( 2747 -218 448 ) bricks/c_tn_m1 0 17 135 1 1 0 0 0 +( 2747 -218 448 ) ( 2768 -192 416 ) ( 2768 -192 464 ) bricks/c_tn_m1 0 17 135 1 1 0 0 0 +( 2768 -192 464 ) ( 2768 -192 416 ) ( 2854 -325 448 ) bricks/c_tn_m1 0 17 135 1 1 0 0 0 +( 2824 -325 448 ) ( 2768 -325 448 ) ( 2796 -192 448 ) bricks/c_tn_m1 0 17 135 1 1 0 0 0 +} +// brush 1677 +{ +( 2628 -141 448 ) ( 2644 -112 416 ) ( 2512 -56 416 ) bricks/c_tn_m1 0 -7 157 1 1 0 0 0 +( 2644 -112 464 ) ( 2644 -112 416 ) ( 2628 -141 448 ) bricks/c_tn_m1 0 -7 157 1 1 0 0 0 +( 2512 -56 416 ) ( 2644 -112 416 ) ( 2644 -112 464 ) bricks/c_tn_m1 0 -7 157 1 1 0 0 0 +( 2628 -141 448 ) ( 2512 -56 416 ) ( 2512 -56 464 ) bricks/c_tn_m1 0 -7 157 1 1 0 0 0 +( 2824 -141 448 ) ( 2768 -141 448 ) ( 2796 -56 448 ) bricks/c_tn_m1 0 -7 157 1 1 0 0 0 +} +// brush 1678 +{ +( 2628 -141 448 ) ( 2512 -56 416 ) ( 2502 -87 448 ) bricks/c_tn_m1 0 -7 157 1 1 0 0 0 +( 2502 -87 448 ) ( 2512 -56 416 ) ( 2512 -56 464 ) bricks/c_tn_m1 0 -7 157 1 1 0 0 0 +( 2512 -56 464 ) ( 2512 -56 416 ) ( 2628 -141 448 ) bricks/c_tn_m1 0 -7 157 1 1 0 0 0 +( 2824 -141 448 ) ( 2768 -141 448 ) ( 2796 -56 448 ) bricks/c_tn_m1 0 -7 157 1 1 0 0 0 +} +// brush 1679 +{ +( 2552 -693 448 ) ( 2552 -772 416 ) ( 2583 -762 448 ) bricks/c_tn_m1 0 2 294 1 1 0 0 0 +( 2583 -762 448 ) ( 2552 -772 416 ) ( 2552 -772 464 ) bricks/c_tn_m1 0 2 294 1 1 0 0 0 +( 2552 -772 464 ) ( 2552 -772 416 ) ( 2552 -693 448 ) bricks/c_tn_m1 0 2 294 1 1 0 0 0 +( 2552 -752 448 ) ( 2552 -728 448 ) ( 2583 -740 448 ) bricks/c_tn_m1 0 2 294 1 1 0 0 0 +} +// brush 1680 +{ +( 2552 -693 448 ) ( 2524 -708 416 ) ( 2552 -772 416 ) bricks/c_tn_m1 0 2 294 1 1 0 0 0 +( 2552 -772 416 ) ( 2524 -708 416 ) ( 2524 -708 464 ) bricks/c_tn_m1 0 2 294 1 1 0 0 0 +( 2524 -708 464 ) ( 2524 -708 416 ) ( 2552 -693 448 ) bricks/c_tn_m1 0 2 294 1 1 0 0 0 +( 2552 -693 448 ) ( 2552 -772 416 ) ( 2552 -772 464 ) bricks/c_tn_m1 0 2 294 1 1 0 0 0 +( 2524 -752 448 ) ( 2524 -728 448 ) ( 2552 -740 448 ) bricks/c_tn_m1 0 2 294 1 1 0 0 0 +} +// brush 1681 +{ +( 2300 -520 416 ) ( 2364 -548 416 ) ( 2379 -520 448 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 2364 -548 464 ) ( 2364 -548 416 ) ( 2300 -520 416 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 2379 -520 448 ) ( 2364 -548 416 ) ( 2364 -548 464 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 2300 -520 464 ) ( 2300 -520 416 ) ( 2379 -520 448 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 2300 -752 448 ) ( 2300 -728 448 ) ( 2379 -740 448 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +} +// brush 1682 +{ +( 2310 -489 448 ) ( 2300 -520 416 ) ( 2379 -520 448 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 2300 -520 464 ) ( 2300 -520 416 ) ( 2310 -489 448 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 2379 -520 448 ) ( 2300 -520 416 ) ( 2300 -520 464 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 2300 -752 448 ) ( 2300 -728 448 ) ( 2379 -740 448 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +} +// brush 1683 +{ +( 948 2836 416 ) ( 1016 2792 416 ) ( 1036 2817 448 ) common/li_pv_v4a -27 7 327 1 1 0 1 7000 +( 948 2836 464 ) ( 948 2836 416 ) ( 1036 2817 448 ) common/li_pv_v4a -27 7 327 1 1 0 1 7000 +( 948 2632 448 ) ( 948 2656 448 ) ( 1036 2644 448 ) common/li_pv_v4a -27 7 327 1 1 0 1 7000 +( 1022 2816 416 ) ( 1008 2796 416 ) ( 1015 2806 448 ) common/li_pv_v4a -27 7 327 1 1 0 1 7000 +( 958 2858 416 ) ( 1022 2816 416 ) ( 990 2837 448 ) common/li_pv_v4a -27 7 327 1 1 0 1 7000 +( 1036 2788 416 ) ( 960 2838 416 ) ( 998 2813 448 ) common/li_pv_v4a -27 7 327 1 1 0 1 7000 +} +// brush 1684 +{ +( 948 2836 416 ) ( 1016 2792 416 ) ( 1036 2817 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 1016 2792 464 ) ( 1016 2792 416 ) ( 948 2836 416 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 948 2836 464 ) ( 948 2836 416 ) ( 1036 2817 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 948 2632 448 ) ( 948 2656 448 ) ( 1036 2644 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 960 2838 416 ) ( 974 2858 416 ) ( 967 2848 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 1022 2816 416 ) ( 1008 2796 416 ) ( 1015 2806 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 960 2838 416 ) ( 1036 2788 416 ) ( 998 2813 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +} +// brush 1685 +{ +( 963 2864 448 ) ( 948 2836 416 ) ( 1036 2817 448 ) common/li_pv_v4a -27 7 327 1 1 0 1 7000 +( 1036 2817 448 ) ( 948 2836 416 ) ( 948 2836 464 ) common/li_pv_v4a -27 7 327 1 1 0 1 7000 +( 948 2632 448 ) ( 948 2656 448 ) ( 1036 2644 448 ) common/li_pv_v4a -27 7 327 1 1 0 1 7000 +( 960 2838 416 ) ( 974 2858 416 ) ( 967 2848 448 ) common/li_pv_v4a -27 7 327 1 1 0 1 7000 +( 958 2858 419 ) ( 1022 2816 419 ) ( 990 2837 448 ) common/li_pv_v4a -27 7 327 1 1 0 1 7000 +( 1036 2788 419 ) ( 960 2838 419 ) ( 998 2813 448 ) common/li_pv_v4a -27 7 327 1 1 0 1 7000 +} +// brush 1686 +{ +( 963 2864 448 ) ( 948 2836 416 ) ( 1036 2817 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 1036 2817 448 ) ( 948 2836 416 ) ( 948 2836 464 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 948 2632 448 ) ( 948 2656 448 ) ( 1036 2644 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 960 2838 416 ) ( 974 2858 416 ) ( 967 2848 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 960 2838 419 ) ( 1036 2788 419 ) ( 998 2813 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +} +// brush 1687 +{ +( 963 2864 448 ) ( 948 2836 416 ) ( 1036 2817 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 1036 2817 448 ) ( 948 2836 416 ) ( 948 2836 464 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 948 2632 448 ) ( 948 2656 448 ) ( 1036 2644 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 960 2838 416 ) ( 974 2858 416 ) ( 967 2848 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 1022 2816 419 ) ( 1008 2796 419 ) ( 1015 2806 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 1022 2816 419 ) ( 958 2858 419 ) ( 990 2837 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +} +// brush 1688 +{ +( 948 2836 416 ) ( 1016 2792 416 ) ( 1036 2817 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 948 2836 464 ) ( 948 2836 416 ) ( 1036 2817 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 948 2632 448 ) ( 948 2656 448 ) ( 1036 2644 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 1022 2816 416 ) ( 1008 2796 416 ) ( 1015 2806 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 1022 2816 416 ) ( 958 2858 416 ) ( 990 2837 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +} +// brush 1689 +{ +( 948 2836 416 ) ( 1016 2792 416 ) ( 1036 2817 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 1016 2792 464 ) ( 1016 2792 416 ) ( 948 2836 416 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 1036 2817 448 ) ( 1016 2792 416 ) ( 1016 2792 464 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 948 2836 464 ) ( 948 2836 416 ) ( 1036 2817 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 948 2632 448 ) ( 948 2656 448 ) ( 1036 2644 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 1008 2796 416 ) ( 1022 2816 416 ) ( 1015 2806 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +} +// brush 1690 +{ +( 963 2864 448 ) ( 948 2836 416 ) ( 1036 2817 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 1036 2817 448 ) ( 948 2836 416 ) ( 948 2836 464 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 948 2632 448 ) ( 948 2656 448 ) ( 1036 2644 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 1008 2796 419 ) ( 1022 2816 419 ) ( 1015 2806 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +} +// brush 1691 +{ +( 948 2836 416 ) ( 1016 2792 416 ) ( 1036 2817 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 1016 2792 464 ) ( 1016 2792 416 ) ( 948 2836 416 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 948 2836 464 ) ( 948 2836 416 ) ( 1036 2817 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 948 2632 448 ) ( 948 2656 448 ) ( 1036 2644 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 974 2858 416 ) ( 960 2838 416 ) ( 967 2848 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +} +// brush 1692 +{ +( 963 2864 448 ) ( 948 2836 416 ) ( 1036 2817 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 948 2836 464 ) ( 948 2836 416 ) ( 963 2864 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 1036 2817 448 ) ( 948 2836 416 ) ( 948 2836 464 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 948 2632 448 ) ( 948 2656 448 ) ( 1036 2644 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +( 974 2858 416 ) ( 960 2838 416 ) ( 967 2848 448 ) bricks/c_tn_m1 0 14 327 1 1 0 0 0 +} +// brush 1693 +{ +( 900 2788 416 ) ( 968 2744 416 ) ( 988 2769 448 ) bricks/c_tn_m1 0 16 327 1 1 0 0 0 +( 968 2744 464 ) ( 968 2744 416 ) ( 900 2788 416 ) bricks/c_tn_m1 0 16 327 1 1 0 0 0 +( 988 2769 448 ) ( 968 2744 416 ) ( 968 2744 464 ) bricks/c_tn_m1 0 16 327 1 1 0 0 0 +( 900 2788 464 ) ( 900 2788 416 ) ( 988 2769 448 ) bricks/c_tn_m1 0 16 327 1 1 0 0 0 +( 900 2584 448 ) ( 900 2608 448 ) ( 988 2596 448 ) bricks/c_tn_m1 0 16 327 1 1 0 0 0 +} +// brush 1694 +{ +( 915 2816 448 ) ( 900 2788 416 ) ( 988 2769 448 ) bricks/c_tn_m1 0 16 327 1 1 0 0 0 +( 900 2788 464 ) ( 900 2788 416 ) ( 915 2816 448 ) bricks/c_tn_m1 0 16 327 1 1 0 0 0 +( 988 2769 448 ) ( 900 2788 416 ) ( 900 2788 464 ) bricks/c_tn_m1 0 16 327 1 1 0 0 0 +( 900 2584 448 ) ( 900 2608 448 ) ( 988 2596 448 ) bricks/c_tn_m1 0 16 327 1 1 0 0 0 +} +// brush 1695 +{ +( 1167 2622 448 ) ( 1152 2536 416 ) ( 1184 2539 448 ) common/li_pv_v4a 7 -1 282 1 1 0 1 7000 +( 1152 2536 464 ) ( 1152 2536 416 ) ( 1167 2622 448 ) common/li_pv_v4a 7 -1 282 1 1 0 1 7000 +( 1152 2632 448 ) ( 1152 2656 448 ) ( 1184 2644 448 ) common/li_pv_v4a 7 -1 282 1 1 0 1 7000 +( 1180 2548 416 ) ( 1150 2542 416 ) ( 1165 2545 448 ) common/li_pv_v4a 7 -1 282 1 1 0 1 7000 +( 1160 2540 418 ) ( 1144 2616 418 ) ( 1152 2578 448 ) common/li_pv_v4a 7 -1 282 1 1 0 1 7000 +( 1158 2624 425 ) ( 1176 2538 425 ) ( 1167 2581 448 ) common/li_pv_v4a 7 -1 282 1 1 0 1 7000 +} +// brush 1696 +{ +( 1167 2622 448 ) ( 1152 2536 416 ) ( 1184 2539 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1152 2536 464 ) ( 1152 2536 416 ) ( 1167 2622 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1152 2632 448 ) ( 1152 2656 448 ) ( 1184 2644 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1132 2604 416 ) ( 1170 2612 416 ) ( 1151 2608 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1180 2548 416 ) ( 1150 2542 416 ) ( 1165 2545 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1176 2538 425 ) ( 1158 2624 425 ) ( 1167 2581 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +} +// brush 1697 +{ +( 1167 2622 448 ) ( 1136 2612 416 ) ( 1152 2536 416 ) common/li_pv_v4a 7 -1 282 1 1 0 1 7000 +( 1167 2622 464 ) ( 1167 2622 448 ) ( 1152 2536 416 ) common/li_pv_v4a 7 -1 282 1 1 0 1 7000 +( 1136 2632 448 ) ( 1136 2656 448 ) ( 1167 2644 448 ) common/li_pv_v4a 7 -1 282 1 1 0 1 7000 +( 1132 2604 416 ) ( 1170 2612 416 ) ( 1151 2608 448 ) common/li_pv_v4a 7 -1 282 1 1 0 1 7000 +( 1160 2540 416 ) ( 1144 2616 416 ) ( 1152 2578 448 ) common/li_pv_v4a 7 -1 282 1 1 0 1 7000 +( 1158 2624 425 ) ( 1176 2538 425 ) ( 1167 2581 448 ) common/li_pv_v4a 7 -1 282 1 1 0 1 7000 +} +// brush 1698 +{ +( 1167 2622 448 ) ( 1136 2612 416 ) ( 1152 2536 416 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1167 2622 464 ) ( 1167 2622 448 ) ( 1152 2536 416 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1136 2632 448 ) ( 1136 2656 448 ) ( 1167 2644 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1132 2604 416 ) ( 1170 2612 416 ) ( 1151 2608 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1176 2538 425 ) ( 1158 2624 425 ) ( 1167 2581 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +} +// brush 1699 +{ +( 1167 2622 448 ) ( 1152 2536 416 ) ( 1184 2539 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1152 2536 464 ) ( 1152 2536 416 ) ( 1167 2622 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1152 2632 448 ) ( 1152 2656 448 ) ( 1184 2644 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1180 2548 416 ) ( 1150 2542 416 ) ( 1165 2545 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1144 2616 418 ) ( 1160 2540 418 ) ( 1152 2578 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +} +// brush 1700 +{ +( 1167 2622 448 ) ( 1136 2612 416 ) ( 1152 2536 416 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1152 2536 416 ) ( 1136 2612 416 ) ( 1136 2612 464 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1167 2622 464 ) ( 1167 2622 448 ) ( 1152 2536 416 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1136 2632 448 ) ( 1136 2656 448 ) ( 1167 2644 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1132 2604 416 ) ( 1170 2612 416 ) ( 1151 2608 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1180 2548 416 ) ( 1150 2542 416 ) ( 1165 2545 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1144 2616 416 ) ( 1160 2540 416 ) ( 1152 2578 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +} +// brush 1701 +{ +( 1167 2622 448 ) ( 1152 2536 416 ) ( 1184 2539 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1184 2539 448 ) ( 1152 2536 416 ) ( 1152 2536 464 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1152 2536 464 ) ( 1152 2536 416 ) ( 1167 2622 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1152 2632 448 ) ( 1152 2656 448 ) ( 1184 2644 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1150 2542 416 ) ( 1180 2548 416 ) ( 1165 2545 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +} +// brush 1702 +{ +( 1167 2622 448 ) ( 1136 2612 416 ) ( 1152 2536 416 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1152 2536 416 ) ( 1136 2612 416 ) ( 1136 2612 464 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1167 2622 464 ) ( 1167 2622 448 ) ( 1152 2536 416 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1136 2632 448 ) ( 1136 2656 448 ) ( 1167 2644 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1150 2542 416 ) ( 1180 2548 416 ) ( 1165 2545 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +} +// brush 1703 +{ +( 1167 2622 448 ) ( 1136 2612 416 ) ( 1152 2536 416 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1152 2536 416 ) ( 1136 2612 416 ) ( 1136 2612 464 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1136 2612 464 ) ( 1136 2612 416 ) ( 1167 2622 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1167 2622 464 ) ( 1167 2622 448 ) ( 1152 2536 416 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1136 2632 448 ) ( 1136 2656 448 ) ( 1167 2644 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1170 2612 416 ) ( 1132 2604 416 ) ( 1151 2608 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +} +// brush 1704 +{ +( 1167 2622 448 ) ( 1152 2536 416 ) ( 1184 2539 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1152 2536 464 ) ( 1152 2536 416 ) ( 1167 2622 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1152 2632 448 ) ( 1152 2656 448 ) ( 1184 2644 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +( 1170 2612 416 ) ( 1132 2604 416 ) ( 1151 2608 448 ) bricks/c_tn_m1 -38 -10 282 1 1 0 0 0 +} +// brush 1705 +{ +( 1111 2606 448 ) ( 1096 2520 416 ) ( 1128 2523 448 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( 1128 2523 448 ) ( 1096 2520 416 ) ( 1096 2520 464 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( 1096 2520 464 ) ( 1096 2520 416 ) ( 1111 2606 448 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( 1096 2616 448 ) ( 1096 2640 448 ) ( 1128 2628 448 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +} +// brush 1706 +{ +( 1111 2606 448 ) ( 1080 2596 416 ) ( 1096 2520 416 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( 1096 2520 416 ) ( 1080 2596 416 ) ( 1080 2596 464 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( 1080 2596 464 ) ( 1080 2596 416 ) ( 1111 2606 448 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( 1111 2606 464 ) ( 1111 2606 448 ) ( 1096 2520 416 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +( 1080 2616 448 ) ( 1080 2640 448 ) ( 1111 2628 448 ) bricks/c_tn_m1 0 13 282 1 1 0 0 0 +} +// brush 1707 +{ +( 1108 2316 416 ) ( 1088 2224 448 ) ( 1136 2301 448 ) common/li_pv_v4a -22 -4 237 1 1 0 1 7000 +( 1108 2316 448 ) ( 1088 2224 448 ) ( 1108 2316 416 ) common/li_pv_v4a -22 -4 237 1 1 0 1 7000 +( 1136 2301 448 ) ( 1088 2224 448 ) ( 1108 2316 448 ) common/li_pv_v4a -22 -4 237 1 1 0 1 7000 +( 1104 2310 416 ) ( 1124 2296 416 ) ( 1114 2303 448 ) common/li_pv_v4a -22 -4 237 1 1 0 1 7000 +( 1076 2252 419 ) ( 1126 2328 419 ) ( 1101 2290 448 ) common/li_pv_v4a -22 -4 237 1 1 0 1 7000 +( 1124 2296 424 ) ( 1078 2226 424 ) ( 1101 2261 448 ) common/li_pv_v4a -22 -4 237 1 1 0 1 7000 +} +// brush 1708 +{ +( 1064 2248 416 ) ( 1088 2224 448 ) ( 1108 2316 416 ) common/li_pv_v4a -22 -4 237 1 1 0 1 7000 +( 1108 2316 416 ) ( 1088 2224 448 ) ( 1108 2316 448 ) common/li_pv_v4a -22 -4 237 1 1 0 1 7000 +( 1108 2316 448 ) ( 1088 2224 448 ) ( 1064 2248 448 ) common/li_pv_v4a -22 -4 237 1 1 0 1 7000 +( 1096 2238 416 ) ( 1076 2252 416 ) ( 1086 2245 448 ) common/li_pv_v4a -22 -4 237 1 1 0 1 7000 +( 1076 2252 416 ) ( 1126 2328 416 ) ( 1101 2290 448 ) common/li_pv_v4a -22 -4 237 1 1 0 1 7000 +( 1124 2296 424 ) ( 1078 2226 424 ) ( 1101 2261 448 ) common/li_pv_v4a -22 -4 237 1 1 0 1 7000 +} +// brush 1709 +{ +( 1000 2280 416 ) ( 1020 2252 448 ) ( 1044 2348 416 ) bricks/c_tn_m1 0 -10 237 1 1 0 0 0 +( 1000 2280 464 ) ( 1000 2280 416 ) ( 1044 2348 416 ) bricks/c_tn_m1 0 -10 237 1 1 0 0 0 +( 1000 2280 448 ) ( 1020 2252 448 ) ( 1000 2280 416 ) bricks/c_tn_m1 0 -10 237 1 1 0 0 0 +( 1044 2348 416 ) ( 1020 2252 448 ) ( 1044 2348 448 ) bricks/c_tn_m1 0 -10 237 1 1 0 0 0 +( 1044 2348 448 ) ( 1020 2252 448 ) ( 1000 2280 448 ) bricks/c_tn_m1 0 -10 237 1 1 0 0 0 +} +// brush 1710 +{ +( 1044 2348 416 ) ( 1020 2252 448 ) ( 1072 2333 448 ) bricks/c_tn_m1 0 -10 237 1 1 0 0 0 +( 1044 2348 464 ) ( 1044 2348 416 ) ( 1072 2333 448 ) bricks/c_tn_m1 0 -10 237 1 1 0 0 0 +( 1044 2348 448 ) ( 1020 2252 448 ) ( 1044 2348 416 ) bricks/c_tn_m1 0 -10 237 1 1 0 0 0 +( 1072 2333 448 ) ( 1020 2252 448 ) ( 1044 2348 448 ) bricks/c_tn_m1 0 -10 237 1 1 0 0 0 +} +// brush 1711 +{ +( 1448 2132 416 ) ( 1341 2029 448 ) ( 1368 2008 416 ) common/li_pv_v4a 26 4 57 1 1 0 1 7000 +( 1448 2132 448 ) ( 1341 2029 448 ) ( 1448 2132 416 ) common/li_pv_v4a 26 4 57 1 1 0 1 7000 +( 1368 2008 448 ) ( 1341 2029 448 ) ( 1448 2132 448 ) common/li_pv_v4a 26 4 57 1 1 0 1 7000 +( 1404 2110 416 ) ( 1424 2096 416 ) ( 1414 2103 448 ) common/li_pv_v4a 26 4 57 1 1 0 1 7000 +( 1389 2043 416 ) ( 1369 2057 416 ) ( 1379 2050 448 ) common/li_pv_v4a 26 4 57 1 1 0 1 7000 +( 1440 2136 416 ) ( 1382 2048 416 ) ( 1411 2092 448 ) common/li_pv_v4a 26 4 57 1 1 0 1 7000 +} +// brush 1712 +{ +( 1448 2132 416 ) ( 1341 2029 448 ) ( 1368 2008 416 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1448 2132 416 ) ( 1368 2008 416 ) ( 1368 2008 464 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1368 2008 448 ) ( 1341 2029 448 ) ( 1448 2132 448 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1404 2110 416 ) ( 1424 2096 416 ) ( 1414 2103 448 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1389 2043 416 ) ( 1369 2057 416 ) ( 1379 2050 448 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1382 2048 416 ) ( 1440 2136 416 ) ( 1411 2092 448 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +} +// brush 1713 +{ +( 1419 2148 448 ) ( 1341 2029 448 ) ( 1448 2132 416 ) common/li_pv_v4a 26 4 57 1 1 0 1 7000 +( 1448 2132 416 ) ( 1341 2029 448 ) ( 1448 2132 448 ) common/li_pv_v4a 26 4 57 1 1 0 1 7000 +( 1448 2132 448 ) ( 1341 2029 448 ) ( 1419 2148 448 ) common/li_pv_v4a 26 4 57 1 1 0 1 7000 +( 1404 2110 416 ) ( 1424 2096 416 ) ( 1414 2103 448 ) common/li_pv_v4a 26 4 57 1 1 0 1 7000 +( 1389 2043 425 ) ( 1369 2057 425 ) ( 1379 2050 448 ) common/li_pv_v4a 26 4 57 1 1 0 1 7000 +( 1358 2040 425 ) ( 1404 2110 425 ) ( 1381 2075 448 ) common/li_pv_v4a 26 4 57 1 1 0 1 7000 +} +// brush 1714 +{ +( 1419 2148 448 ) ( 1341 2029 448 ) ( 1448 2132 416 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1448 2132 448 ) ( 1341 2029 448 ) ( 1419 2148 448 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1404 2110 416 ) ( 1424 2096 416 ) ( 1414 2103 448 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1389 2043 425 ) ( 1369 2057 425 ) ( 1379 2050 448 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1404 2110 425 ) ( 1358 2040 425 ) ( 1381 2075 448 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +} +// brush 1715 +{ +( 1448 2132 416 ) ( 1341 2029 448 ) ( 1368 2008 416 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1368 2008 416 ) ( 1341 2029 448 ) ( 1368 2008 448 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1448 2132 416 ) ( 1368 2008 416 ) ( 1368 2008 464 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1448 2132 448 ) ( 1341 2029 448 ) ( 1448 2132 416 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1368 2008 448 ) ( 1341 2029 448 ) ( 1448 2132 448 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1369 2057 416 ) ( 1389 2043 416 ) ( 1379 2050 448 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +} +// brush 1716 +{ +( 1419 2148 448 ) ( 1341 2029 448 ) ( 1448 2132 416 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1448 2132 416 ) ( 1341 2029 448 ) ( 1448 2132 448 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1448 2132 448 ) ( 1341 2029 448 ) ( 1419 2148 448 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1369 2057 425 ) ( 1389 2043 425 ) ( 1379 2050 448 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +} +// brush 1717 +{ +( 1419 2148 448 ) ( 1341 2029 448 ) ( 1448 2132 416 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1419 2148 448 ) ( 1448 2132 416 ) ( 1448 2132 464 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1448 2132 416 ) ( 1341 2029 448 ) ( 1448 2132 448 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1448 2132 448 ) ( 1341 2029 448 ) ( 1419 2148 448 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1424 2096 416 ) ( 1404 2110 416 ) ( 1414 2103 448 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +} +// brush 1718 +{ +( 1448 2132 416 ) ( 1341 2029 448 ) ( 1368 2008 416 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1448 2132 416 ) ( 1368 2008 416 ) ( 1368 2008 464 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1448 2132 448 ) ( 1341 2029 448 ) ( 1448 2132 416 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1368 2008 448 ) ( 1341 2029 448 ) ( 1448 2132 448 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +( 1424 2096 416 ) ( 1404 2110 416 ) ( 1414 2103 448 ) bricks/c_tn_m1 83 12 57 1 1 0 0 0 +} +// brush 1719 +{ +( 1467 2116 448 ) ( 1389 1997 448 ) ( 1496 2100 416 ) bricks/c_tn_m1 0 10 57 1 1 0 0 0 +( 1467 2116 448 ) ( 1496 2100 416 ) ( 1496 2100 464 ) bricks/c_tn_m1 0 10 57 1 1 0 0 0 +( 1496 2100 416 ) ( 1389 1997 448 ) ( 1496 2100 448 ) bricks/c_tn_m1 0 10 57 1 1 0 0 0 +( 1496 2100 448 ) ( 1389 1997 448 ) ( 1467 2116 448 ) bricks/c_tn_m1 0 10 57 1 1 0 0 0 +} +// brush 1720 +{ +( 1496 2100 416 ) ( 1389 1997 448 ) ( 1416 1976 416 ) bricks/c_tn_m1 0 10 57 1 1 0 0 0 +( 1416 1976 416 ) ( 1389 1997 448 ) ( 1416 1976 448 ) bricks/c_tn_m1 0 10 57 1 1 0 0 0 +( 1496 2100 416 ) ( 1416 1976 416 ) ( 1416 1976 464 ) bricks/c_tn_m1 0 10 57 1 1 0 0 0 +( 1496 2100 448 ) ( 1389 1997 448 ) ( 1496 2100 416 ) bricks/c_tn_m1 0 10 57 1 1 0 0 0 +( 1416 1976 448 ) ( 1389 1997 448 ) ( 1496 2100 448 ) bricks/c_tn_m1 0 10 57 1 1 0 0 0 +} +// brush 1721 +{ +( 1536 2572 416 ) ( 1504 2728 416 ) ( 1473 2718 448 ) common/li_pv_v4a -3 3 102 1 1 0 1 7000 +( 1536 2572 464 ) ( 1536 2572 416 ) ( 1473 2718 448 ) common/li_pv_v4a -3 3 102 1 1 0 1 7000 +( 1312 2572 448 ) ( 1256 2572 448 ) ( 1284 2728 448 ) common/li_pv_v4a -3 3 102 1 1 0 1 7000 +( 1518 2616 416 ) ( 1498 2612 416 ) ( 1508 2614 448 ) common/li_pv_v4a -3 3 102 1 1 0 1 7000 +( 1490 2676 416 ) ( 1510 2680 416 ) ( 1500 2678 448 ) common/li_pv_v4a -3 3 102 1 1 0 1 7000 +( 1506 2674 416 ) ( 1518 2616 416 ) ( 1512 2645 448 ) common/li_pv_v4a -3 3 102 1 1 0 1 7000 +} +// brush 1722 +{ +( 1536 2572 416 ) ( 1504 2728 416 ) ( 1473 2718 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1504 2728 464 ) ( 1504 2728 416 ) ( 1536 2572 416 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1312 2572 448 ) ( 1256 2572 448 ) ( 1284 2728 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1518 2616 416 ) ( 1498 2612 416 ) ( 1508 2614 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1490 2676 416 ) ( 1510 2680 416 ) ( 1500 2678 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1518 2616 416 ) ( 1506 2674 416 ) ( 1512 2645 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +} +// brush 1723 +{ +( 1504 2569 448 ) ( 1536 2572 416 ) ( 1473 2718 448 ) common/li_pv_v4a -3 3 102 1 1 0 1 7000 +( 1473 2718 448 ) ( 1536 2572 416 ) ( 1536 2572 464 ) common/li_pv_v4a -3 3 102 1 1 0 1 7000 +( 1312 2569 448 ) ( 1256 2569 448 ) ( 1284 2718 448 ) common/li_pv_v4a -3 3 102 1 1 0 1 7000 +( 1518 2616 416 ) ( 1498 2612 416 ) ( 1508 2614 448 ) common/li_pv_v4a -3 3 102 1 1 0 1 7000 +( 1490 2676 426 ) ( 1510 2680 426 ) ( 1500 2678 448 ) common/li_pv_v4a -3 3 102 1 1 0 1 7000 +( 1500 2628 426 ) ( 1490 2676 426 ) ( 1495 2652 448 ) common/li_pv_v4a -3 3 102 1 1 0 1 7000 +} +// brush 1724 +{ +( 1504 2569 448 ) ( 1536 2572 416 ) ( 1473 2718 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1312 2569 448 ) ( 1256 2569 448 ) ( 1284 2718 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1518 2616 416 ) ( 1498 2612 416 ) ( 1508 2614 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1490 2676 426 ) ( 1510 2680 426 ) ( 1500 2678 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1490 2676 426 ) ( 1500 2628 426 ) ( 1495 2652 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +} +// brush 1725 +{ +( 1504 2569 448 ) ( 1536 2572 416 ) ( 1473 2718 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1473 2718 448 ) ( 1536 2572 416 ) ( 1536 2572 464 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1312 2569 448 ) ( 1256 2569 448 ) ( 1284 2718 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1510 2680 426 ) ( 1490 2676 426 ) ( 1500 2678 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +} +// brush 1726 +{ +( 1536 2572 416 ) ( 1504 2728 416 ) ( 1473 2718 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1473 2718 448 ) ( 1504 2728 416 ) ( 1504 2728 464 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1504 2728 464 ) ( 1504 2728 416 ) ( 1536 2572 416 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1536 2572 464 ) ( 1536 2572 416 ) ( 1473 2718 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1312 2572 448 ) ( 1256 2572 448 ) ( 1284 2728 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1510 2680 416 ) ( 1490 2676 416 ) ( 1500 2678 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +} +// brush 1727 +{ +( 1536 2572 416 ) ( 1504 2728 416 ) ( 1473 2718 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1504 2728 464 ) ( 1504 2728 416 ) ( 1536 2572 416 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1536 2572 464 ) ( 1536 2572 416 ) ( 1473 2718 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1312 2572 448 ) ( 1256 2572 448 ) ( 1284 2728 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1498 2612 416 ) ( 1518 2616 416 ) ( 1508 2614 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +} +// brush 1728 +{ +( 1504 2569 448 ) ( 1536 2572 416 ) ( 1473 2718 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1536 2572 464 ) ( 1536 2572 416 ) ( 1504 2569 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1473 2718 448 ) ( 1536 2572 416 ) ( 1536 2572 464 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1312 2569 448 ) ( 1256 2569 448 ) ( 1284 2718 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +( 1498 2612 416 ) ( 1518 2616 416 ) ( 1508 2614 448 ) bricks/c_tn_m1 124 10 102 1 1 0 0 0 +} +// brush 1729 +{ +( 1560 2585 448 ) ( 1592 2588 416 ) ( 1529 2734 448 ) bricks/c_tn_m1 0 -12 102 1 1 0 0 0 +( 1592 2588 464 ) ( 1592 2588 416 ) ( 1560 2585 448 ) bricks/c_tn_m1 0 -12 102 1 1 0 0 0 +( 1529 2734 448 ) ( 1592 2588 416 ) ( 1592 2588 464 ) bricks/c_tn_m1 0 -12 102 1 1 0 0 0 +( 1368 2585 448 ) ( 1312 2585 448 ) ( 1340 2734 448 ) bricks/c_tn_m1 0 -12 102 1 1 0 0 0 +} +// brush 1730 +{ +( 1592 2588 416 ) ( 1560 2744 416 ) ( 1529 2734 448 ) bricks/c_tn_m1 0 -12 102 1 1 0 0 0 +( 1529 2734 448 ) ( 1560 2744 416 ) ( 1560 2744 464 ) bricks/c_tn_m1 0 -12 102 1 1 0 0 0 +( 1560 2744 464 ) ( 1560 2744 416 ) ( 1592 2588 416 ) bricks/c_tn_m1 0 -12 102 1 1 0 0 0 +( 1592 2588 464 ) ( 1592 2588 416 ) ( 1529 2734 448 ) bricks/c_tn_m1 0 -12 102 1 1 0 0 0 +( 1368 2588 448 ) ( 1312 2588 448 ) ( 1340 2744 448 ) bricks/c_tn_m1 0 -12 102 1 1 0 0 0 +} +// brush 1731 +{ +( 1920 2912 448 ) ( 1963 2912 448 ) ( 1960 2880 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1960 2880 416 ) ( 1963 2912 448 ) ( 1920 2912 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 704 2880 448 ) ( 704 2864 416 ) ( 704 2896 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 2912 416 ) ( 768 2896 416 ) ( 768 2904 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 720 2904 416 ) ( 704 2904 416 ) ( 712 2904 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 1732 +{ +( 1920 2912 448 ) ( 1963 2912 448 ) ( 1960 2880 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1688 2880 448 ) ( 1688 2880 416 ) ( 1648 2880 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1960 2880 416 ) ( 1963 2912 448 ) ( 1920 2912 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 704 2880 448 ) ( 704 2864 416 ) ( 704 2896 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 2912 416 ) ( 768 2896 416 ) ( 768 2904 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 704 2888 416 ) ( 728 2888 416 ) ( 716 2888 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 1733 +{ +( 1920 2912 448 ) ( 1963 2912 448 ) ( 1960 2880 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1960 2880 416 ) ( 1963 2912 448 ) ( 1920 2912 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 704 2880 448 ) ( 704 2864 416 ) ( 704 2896 416 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 768 2912 416 ) ( 768 2896 416 ) ( 768 2904 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 704 2904 416 ) ( 720 2904 416 ) ( 712 2904 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 728 2888 416 ) ( 704 2888 416 ) ( 716 2888 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 1734 +{ +( 1536 2912 448 ) ( 1579 2912 448 ) ( 1576 2880 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1304 2880 448 ) ( 1304 2880 416 ) ( 1264 2880 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1576 2880 416 ) ( 1579 2912 448 ) ( 1536 2912 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 384 2896 416 ) ( 384 2912 416 ) ( 384 2904 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 704 2912 416 ) ( 704 2888 416 ) ( 704 2900 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 1735 +{ +( 1536 2912 448 ) ( 1579 2912 448 ) ( 1576 2880 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1576 2880 416 ) ( 1579 2912 448 ) ( 1536 2912 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 320 2880 448 ) ( 320 2864 416 ) ( 320 2896 416 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 384 2912 416 ) ( 384 2896 416 ) ( 384 2904 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 320 2904 416 ) ( 336 2904 416 ) ( 328 2904 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 344 2888 416 ) ( 320 2888 416 ) ( 332 2888 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 1736 +{ +( 1536 2912 448 ) ( 1579 2912 448 ) ( 1576 2880 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1304 2880 448 ) ( 1304 2880 416 ) ( 1264 2880 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1576 2880 416 ) ( 1579 2912 448 ) ( 1536 2912 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 320 2880 448 ) ( 320 2864 416 ) ( 320 2896 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 384 2912 416 ) ( 384 2896 416 ) ( 384 2904 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 320 2888 416 ) ( 344 2888 416 ) ( 332 2888 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 1737 +{ +( 1536 2912 448 ) ( 1579 2912 448 ) ( 1576 2880 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1576 2880 416 ) ( 1579 2912 448 ) ( 1536 2912 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 320 2880 448 ) ( 320 2864 416 ) ( 320 2896 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 384 2912 416 ) ( 384 2896 416 ) ( 384 2904 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 336 2904 416 ) ( 320 2904 416 ) ( 328 2904 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 1738 +{ +( 1152 2912 448 ) ( 1195 2912 448 ) ( 1192 2880 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1192 2880 416 ) ( 1195 2912 448 ) ( 1152 2912 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -64 2880 448 ) ( -64 2864 416 ) ( -64 2896 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 0 2912 416 ) ( 0 2896 416 ) ( 0 2904 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -48 2904 416 ) ( -64 2904 416 ) ( -56 2904 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 1739 +{ +( 1152 2912 448 ) ( 1195 2912 448 ) ( 1192 2880 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 920 2880 448 ) ( 920 2880 416 ) ( 880 2880 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1192 2880 416 ) ( 1195 2912 448 ) ( 1152 2912 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -64 2880 448 ) ( -64 2864 416 ) ( -64 2896 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 0 2912 416 ) ( 0 2896 416 ) ( 0 2904 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -64 2888 416 ) ( -40 2888 416 ) ( -52 2888 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 1740 +{ +( 1152 2912 448 ) ( 1195 2912 448 ) ( 1192 2880 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1192 2880 416 ) ( 1195 2912 448 ) ( 1152 2912 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -64 2880 448 ) ( -64 2864 416 ) ( -64 2896 416 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 0 2912 416 ) ( 0 2896 416 ) ( 0 2904 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -64 2904 416 ) ( -48 2904 416 ) ( -56 2904 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -40 2888 416 ) ( -64 2888 416 ) ( -52 2888 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 1741 +{ +( 1152 2912 448 ) ( 1195 2912 448 ) ( 1192 2880 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 920 2880 448 ) ( 920 2880 416 ) ( 880 2880 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1192 2880 416 ) ( 1195 2912 448 ) ( 1152 2912 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 0 2896 416 ) ( 0 2912 416 ) ( 0 2904 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 320 2912 416 ) ( 320 2888 416 ) ( 320 2900 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 1742 +{ +( 768 2912 448 ) ( 811 2912 448 ) ( 808 2880 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 536 2880 448 ) ( 536 2880 416 ) ( 496 2880 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 808 2880 416 ) ( 811 2912 448 ) ( 768 2912 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -384 2896 416 ) ( -384 2912 416 ) ( -384 2904 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -64 2912 416 ) ( -64 2888 416 ) ( -64 2900 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 1743 +{ +( 768 2912 448 ) ( 811 2912 448 ) ( 808 2880 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 808 2880 416 ) ( 811 2912 448 ) ( 768 2912 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -448 2880 448 ) ( -448 2864 416 ) ( -448 2896 416 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -384 2912 416 ) ( -384 2896 416 ) ( -384 2904 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -448 2904 416 ) ( -432 2904 416 ) ( -440 2904 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -424 2888 416 ) ( -448 2888 416 ) ( -436 2888 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 1744 +{ +( 768 2912 448 ) ( 811 2912 448 ) ( 808 2880 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 536 2880 448 ) ( 536 2880 416 ) ( 496 2880 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 808 2880 416 ) ( 811 2912 448 ) ( 768 2912 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -448 2880 448 ) ( -448 2864 416 ) ( -448 2896 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -384 2912 416 ) ( -384 2896 416 ) ( -384 2904 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -448 2888 416 ) ( -424 2888 416 ) ( -436 2888 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 1745 +{ +( 768 2912 448 ) ( 811 2912 448 ) ( 808 2880 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 808 2880 416 ) ( 811 2912 448 ) ( 768 2912 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -448 2880 448 ) ( -448 2864 416 ) ( -448 2896 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -384 2912 416 ) ( -384 2896 416 ) ( -384 2904 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -432 2904 416 ) ( -448 2904 416 ) ( -440 2904 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 1746 +{ +( -308 3264 448 ) ( -311 3232 448 ) ( -384 3232 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -656 3264 448 ) ( -1008 3264 448 ) ( -1008 3264 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -384 3232 448 ) ( -311 3232 448 ) ( -308 3264 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -384 3264 416 ) ( -384 3240 416 ) ( -384 3252 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -448 3248 416 ) ( -448 3264 416 ) ( -448 3256 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -432 3256 416 ) ( -448 3256 416 ) ( -440 3256 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 1747 +{ +( -308 3264 448 ) ( -311 3232 448 ) ( -384 3232 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -384 3232 448 ) ( -311 3232 448 ) ( -308 3264 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -384 3264 416 ) ( -384 3240 416 ) ( -384 3252 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -448 3248 416 ) ( -448 3264 416 ) ( -448 3256 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -448 3240 424 ) ( -432 3240 424 ) ( -440 3240 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 1748 +{ +( -308 3264 448 ) ( -311 3232 448 ) ( -384 3232 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -384 3232 448 ) ( -311 3232 448 ) ( -308 3264 416 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -384 3264 416 ) ( -384 3240 416 ) ( -384 3252 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -448 3248 416 ) ( -448 3264 416 ) ( -448 3256 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -448 3256 416 ) ( -432 3256 416 ) ( -440 3256 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -432 3240 424 ) ( -448 3240 424 ) ( -440 3240 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 1749 +{ +( 76 3264 448 ) ( 73 3232 448 ) ( 0 3232 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -272 3264 448 ) ( -624 3264 448 ) ( -624 3264 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 0 3232 448 ) ( 73 3232 448 ) ( 76 3264 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -64 3264 416 ) ( -64 3248 416 ) ( -64 3256 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -384 3240 416 ) ( -384 3264 416 ) ( -384 3252 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 1750 +{ +( 76 3264 448 ) ( 73 3232 448 ) ( 0 3232 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 0 3232 448 ) ( 73 3232 448 ) ( 76 3264 416 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 0 3264 416 ) ( 0 3240 416 ) ( 0 3252 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -64 3248 416 ) ( -64 3264 416 ) ( -64 3256 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -64 3256 416 ) ( -48 3256 416 ) ( -56 3256 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -48 3240 424 ) ( -64 3240 424 ) ( -56 3240 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 1751 +{ +( 76 3264 448 ) ( 73 3232 448 ) ( 0 3232 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 0 3232 448 ) ( 73 3232 448 ) ( 76 3264 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 0 3264 416 ) ( 0 3240 416 ) ( 0 3252 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -64 3248 416 ) ( -64 3264 416 ) ( -64 3256 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -64 3240 424 ) ( -48 3240 424 ) ( -56 3240 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 1752 +{ +( 76 3264 448 ) ( 73 3232 448 ) ( 0 3232 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -272 3264 448 ) ( -624 3264 448 ) ( -624 3264 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 0 3232 448 ) ( 73 3232 448 ) ( 76 3264 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 0 3264 416 ) ( 0 3240 416 ) ( 0 3252 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -64 3248 416 ) ( -64 3264 416 ) ( -64 3256 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -48 3256 416 ) ( -64 3256 416 ) ( -56 3256 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 1753 +{ +( 460 3264 448 ) ( 457 3232 448 ) ( 384 3232 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 112 3264 448 ) ( -240 3264 448 ) ( -240 3264 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 384 3232 448 ) ( 457 3232 448 ) ( 460 3264 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 384 3264 416 ) ( 384 3240 416 ) ( 384 3252 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 320 3248 416 ) ( 320 3264 416 ) ( 320 3256 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 336 3256 416 ) ( 320 3256 416 ) ( 328 3256 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 1754 +{ +( 460 3264 448 ) ( 457 3232 448 ) ( 384 3232 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 384 3232 448 ) ( 457 3232 448 ) ( 460 3264 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 384 3264 416 ) ( 384 3240 416 ) ( 384 3252 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 320 3248 416 ) ( 320 3264 416 ) ( 320 3256 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 320 3240 424 ) ( 336 3240 424 ) ( 328 3240 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 1755 +{ +( 460 3264 448 ) ( 457 3232 448 ) ( 384 3232 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 384 3232 448 ) ( 457 3232 448 ) ( 460 3264 416 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 384 3264 416 ) ( 384 3240 416 ) ( 384 3252 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 320 3248 416 ) ( 320 3264 416 ) ( 320 3256 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 320 3256 416 ) ( 336 3256 416 ) ( 328 3256 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 336 3240 424 ) ( 320 3240 424 ) ( 328 3240 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 1756 +{ +( 460 3264 448 ) ( 457 3232 448 ) ( 384 3232 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 112 3264 448 ) ( -240 3264 448 ) ( -240 3264 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 384 3232 448 ) ( 457 3232 448 ) ( 460 3264 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 320 3264 416 ) ( 320 3248 416 ) ( 320 3256 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 0 3240 416 ) ( 0 3264 416 ) ( 0 3252 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 1757 +{ +( 844 3264 448 ) ( 841 3232 448 ) ( 768 3232 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 496 3264 448 ) ( 144 3264 448 ) ( 144 3264 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 3232 448 ) ( 841 3232 448 ) ( 844 3264 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 704 3264 416 ) ( 704 3248 416 ) ( 704 3256 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 384 3240 416 ) ( 384 3264 416 ) ( 384 3252 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 1758 +{ +( 844 3264 448 ) ( 841 3232 448 ) ( 768 3232 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 768 3232 448 ) ( 841 3232 448 ) ( 844 3264 416 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 768 3264 416 ) ( 768 3240 416 ) ( 768 3252 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 704 3248 416 ) ( 704 3264 416 ) ( 704 3256 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 704 3256 416 ) ( 720 3256 416 ) ( 712 3256 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 720 3240 424 ) ( 704 3240 424 ) ( 712 3240 448 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 1759 +{ +( 844 3264 448 ) ( 841 3232 448 ) ( 768 3232 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 3232 448 ) ( 841 3232 448 ) ( 844 3264 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 3264 416 ) ( 768 3240 416 ) ( 768 3252 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 704 3248 416 ) ( 704 3264 416 ) ( 704 3256 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 704 3240 424 ) ( 720 3240 424 ) ( 712 3240 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 1760 +{ +( 844 3264 448 ) ( 841 3232 448 ) ( 768 3232 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 496 3264 448 ) ( 144 3264 448 ) ( 144 3264 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 3232 448 ) ( 841 3232 448 ) ( 844 3264 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 3264 416 ) ( 768 3240 416 ) ( 768 3252 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 704 3248 416 ) ( 704 3264 416 ) ( 704 3256 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 720 3256 416 ) ( 704 3256 416 ) ( 712 3256 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 1761 +{ +( 1307 3166 448 ) ( 1204 3272 416 ) ( 1188 3243 448 ) bricks/c_tn_m1 0 -17 147 1 1 0 0 0 +( 1188 3243 448 ) ( 1204 3272 416 ) ( 1204 3272 464 ) bricks/c_tn_m1 0 -17 147 1 1 0 0 0 +( 1204 3272 464 ) ( 1204 3272 416 ) ( 1307 3166 448 ) bricks/c_tn_m1 0 -17 147 1 1 0 0 0 +( 1384 3166 448 ) ( 1328 3166 448 ) ( 1356 3272 448 ) bricks/c_tn_m1 0 -17 147 1 1 0 0 0 +} +// brush 1762 +{ +( 1307 3166 448 ) ( 1328 3192 416 ) ( 1204 3272 416 ) bricks/c_tn_m1 0 -17 147 1 1 0 0 0 +( 1328 3192 464 ) ( 1328 3192 416 ) ( 1307 3166 448 ) bricks/c_tn_m1 0 -17 147 1 1 0 0 0 +( 1204 3272 416 ) ( 1328 3192 416 ) ( 1328 3192 464 ) bricks/c_tn_m1 0 -17 147 1 1 0 0 0 +( 1307 3166 448 ) ( 1204 3272 416 ) ( 1204 3272 464 ) bricks/c_tn_m1 0 -17 147 1 1 0 0 0 +( 1384 3166 448 ) ( 1328 3166 448 ) ( 1356 3272 448 ) bricks/c_tn_m1 0 -17 147 1 1 0 0 0 +} +// brush 1763 +{ +( 1016 2792 416 ) ( 1064 2744 416 ) ( 1036 2817 448 ) bricks/c_tn_m1 -35 4 315 1 1 0 0 0 +( 1064 2744 464 ) ( 1064 2744 416 ) ( 1016 2792 416 ) bricks/c_tn_m1 -35 4 315 1 1 0 0 0 +( 1016 2792 464 ) ( 1016 2792 416 ) ( 1036 2817 448 ) bricks/c_tn_m1 -35 4 315 1 1 0 0 0 +( 1036 2817 448 ) ( 1064 2744 416 ) ( 1064 2744 464 ) bricks/c_tn_m1 -35 4 315 1 1 0 0 0 +( 1016 2632 448 ) ( 1016 2656 448 ) ( 1064 2644 448 ) bricks/c_tn_m1 -35 4 315 1 1 0 0 0 +} +// brush 1764 +{ +( 1036 2817 448 ) ( 1064 2744 416 ) ( 1089 2764 448 ) bricks/c_tn_m1 -35 4 315 1 1 0 0 0 +( 1089 2764 448 ) ( 1064 2744 416 ) ( 1064 2744 464 ) bricks/c_tn_m1 -35 4 315 1 1 0 0 0 +( 1064 2744 464 ) ( 1064 2744 416 ) ( 1036 2817 448 ) bricks/c_tn_m1 -35 4 315 1 1 0 0 0 +( 1036 2632 448 ) ( 1036 2656 448 ) ( 1089 2644 448 ) bricks/c_tn_m1 -35 4 315 1 1 0 0 0 +} +// brush 1765 +{ +( 844 3264 448 ) ( 841 3232 448 ) ( 768 3232 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 496 3264 448 ) ( 144 3264 448 ) ( 144 3264 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 3232 448 ) ( 841 3232 448 ) ( 844 3264 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 844 3264 416 ) ( 841 3232 448 ) ( 844 3264 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 3240 416 ) ( 768 3264 416 ) ( 768 3252 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 1766 +{ +( 768 2912 448 ) ( 811 2912 448 ) ( 808 2880 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 536 2880 448 ) ( 536 2880 416 ) ( 496 2880 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 808 2880 416 ) ( 811 2912 448 ) ( 768 2912 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 808 2880 448 ) ( 811 2912 448 ) ( 808 2880 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 2896 416 ) ( 768 2912 416 ) ( 768 2904 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 1767 +{ +( 1136 1824 448 ) ( 1341 2029 448 ) ( 1368 2008 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 1172 1812 448 ) ( 1172 1812 416 ) ( 940 1580 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 1368 2008 416 ) ( 1341 2029 448 ) ( 1136 1824 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 912 2048 416 ) ( 888 2072 416 ) ( 900 2060 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 1368 2008 448 ) ( 1341 2029 448 ) ( 1368 2008 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +} +// brush 1768 +{ +( 916 1604 448 ) ( 1132 1820 448 ) ( 1156 1796 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 1132 1820 448 ) ( 916 1604 448 ) ( 940 1580 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 1112 1752 416 ) ( 1088 1776 416 ) ( 1100 1764 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 888 2072 416 ) ( 912 2048 416 ) ( 900 2060 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 1140 1818 416 ) ( 1094 1772 416 ) ( 1117 1795 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +} +// brush 1769 +{ +( 916 1604 448 ) ( 1132 1820 448 ) ( 1156 1796 448 ) common/li_pv_v4a 21 -1 45 1 1 0 1 7000 +( 1132 1820 448 ) ( 916 1604 448 ) ( 940 1580 416 ) common/li_pv_v4a 21 -1 45 1 1 0 1 7000 +( 1112 1752 416 ) ( 1088 1776 416 ) ( 1100 1764 448 ) common/li_pv_v4a 21 -1 45 1 1 0 1 7000 +( 888 2072 416 ) ( 912 2048 416 ) ( 900 2060 448 ) common/li_pv_v4a 21 -1 45 1 1 0 1 7000 +( 1094 1772 416 ) ( 1140 1818 416 ) ( 1117 1795 448 ) common/li_pv_v4a 21 -1 45 1 1 0 1 7000 +( 1154 1806 416 ) ( 1106 1758 416 ) ( 1130 1782 448 ) common/li_pv_v4a 21 -1 45 1 1 0 1 7000 +} +// brush 1770 +{ +( 916 1604 448 ) ( 1132 1820 448 ) ( 1156 1796 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 1172 1812 448 ) ( 1172 1812 416 ) ( 940 1580 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 1132 1820 448 ) ( 916 1604 448 ) ( 940 1580 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 1112 1752 416 ) ( 1088 1776 416 ) ( 1100 1764 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 888 2072 416 ) ( 912 2048 416 ) ( 900 2060 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 1106 1758 416 ) ( 1154 1806 416 ) ( 1130 1782 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +} +// brush 1771 +{ +( 684 1372 448 ) ( 900 1588 448 ) ( 924 1564 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 940 1580 448 ) ( 940 1580 416 ) ( 708 1348 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 900 1588 448 ) ( 684 1372 448 ) ( 708 1348 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 880 1520 416 ) ( 856 1544 416 ) ( 868 1532 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 656 1840 416 ) ( 680 1816 416 ) ( 668 1828 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 874 1526 416 ) ( 922 1574 416 ) ( 898 1550 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +} +// brush 1772 +{ +( 684 1372 448 ) ( 900 1588 448 ) ( 924 1564 448 ) common/li_pv_v4a -35 -2 45 1 1 0 1 7000 +( 900 1588 448 ) ( 684 1372 448 ) ( 708 1348 416 ) common/li_pv_v4a -35 -2 45 1 1 0 1 7000 +( 880 1520 416 ) ( 856 1544 416 ) ( 868 1532 448 ) common/li_pv_v4a -35 -2 45 1 1 0 1 7000 +( 656 1840 416 ) ( 680 1816 416 ) ( 668 1828 448 ) common/li_pv_v4a -35 -2 45 1 1 0 1 7000 +( 862 1540 416 ) ( 908 1586 416 ) ( 885 1563 448 ) common/li_pv_v4a -35 -2 45 1 1 0 1 7000 +( 922 1574 416 ) ( 874 1526 416 ) ( 898 1550 448 ) common/li_pv_v4a -35 -2 45 1 1 0 1 7000 +} +// brush 1773 +{ +( 684 1372 448 ) ( 900 1588 448 ) ( 924 1564 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 900 1588 448 ) ( 684 1372 448 ) ( 708 1348 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 880 1520 416 ) ( 856 1544 416 ) ( 868 1532 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 656 1840 416 ) ( 680 1816 416 ) ( 668 1828 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 908 1586 416 ) ( 862 1540 416 ) ( 885 1563 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +} +// brush 1774 +{ +( 684 1372 448 ) ( 900 1588 448 ) ( 924 1564 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 940 1580 448 ) ( 940 1580 416 ) ( 708 1348 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 900 1588 448 ) ( 684 1372 448 ) ( 708 1348 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 680 1816 416 ) ( 656 1840 416 ) ( 668 1828 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 840 2024 416 ) ( 864 2000 416 ) ( 852 2012 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +} +// brush 1775 +{ +( 452 1140 448 ) ( 668 1356 448 ) ( 692 1332 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 708 1348 448 ) ( 708 1348 416 ) ( 476 1116 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 668 1356 448 ) ( 452 1140 448 ) ( 476 1116 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 448 1584 416 ) ( 424 1608 416 ) ( 436 1596 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 608 1792 416 ) ( 632 1768 416 ) ( 620 1780 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +} +// brush 1776 +{ +( 452 1140 448 ) ( 668 1356 448 ) ( 692 1332 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 668 1356 448 ) ( 452 1140 448 ) ( 476 1116 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 648 1288 416 ) ( 624 1312 416 ) ( 636 1300 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 424 1608 416 ) ( 448 1584 416 ) ( 436 1596 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 676 1354 416 ) ( 630 1308 416 ) ( 653 1331 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +} +// brush 1777 +{ +( 452 1140 448 ) ( 668 1356 448 ) ( 692 1332 448 ) common/li_pv_v4a -27 -2 45 1 1 0 1 7000 +( 668 1356 448 ) ( 452 1140 448 ) ( 476 1116 416 ) common/li_pv_v4a -27 -2 45 1 1 0 1 7000 +( 648 1288 416 ) ( 624 1312 416 ) ( 636 1300 448 ) common/li_pv_v4a -27 -2 45 1 1 0 1 7000 +( 424 1608 416 ) ( 448 1584 416 ) ( 436 1596 448 ) common/li_pv_v4a -27 -2 45 1 1 0 1 7000 +( 630 1308 416 ) ( 676 1354 416 ) ( 653 1331 448 ) common/li_pv_v4a -27 -2 45 1 1 0 1 7000 +( 690 1342 416 ) ( 642 1294 416 ) ( 666 1318 448 ) common/li_pv_v4a -27 -2 45 1 1 0 1 7000 +} +// brush 1778 +{ +( 452 1140 448 ) ( 668 1356 448 ) ( 692 1332 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 708 1348 448 ) ( 708 1348 416 ) ( 476 1116 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 668 1356 448 ) ( 452 1140 448 ) ( 476 1116 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 648 1288 416 ) ( 624 1312 416 ) ( 636 1300 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 424 1608 416 ) ( 448 1584 416 ) ( 436 1596 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 642 1294 416 ) ( 690 1342 416 ) ( 666 1318 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +} +// brush 1779 +{ +( 220 908 448 ) ( 436 1124 448 ) ( 460 1100 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 476 1116 448 ) ( 476 1116 416 ) ( 244 884 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 436 1124 448 ) ( 220 908 448 ) ( 244 884 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 416 1056 416 ) ( 392 1080 416 ) ( 404 1068 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 192 1376 416 ) ( 216 1352 416 ) ( 204 1364 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 410 1062 416 ) ( 458 1110 416 ) ( 434 1086 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +} +// brush 1780 +{ +( 220 908 448 ) ( 436 1124 448 ) ( 460 1100 448 ) common/li_pv_v4a -19 -1 45 1 1 0 1 7000 +( 436 1124 448 ) ( 220 908 448 ) ( 244 884 416 ) common/li_pv_v4a -19 -1 45 1 1 0 1 7000 +( 416 1056 416 ) ( 392 1080 416 ) ( 404 1068 448 ) common/li_pv_v4a -19 -1 45 1 1 0 1 7000 +( 192 1376 416 ) ( 216 1352 416 ) ( 204 1364 448 ) common/li_pv_v4a -19 -1 45 1 1 0 1 7000 +( 398 1076 416 ) ( 444 1122 416 ) ( 421 1099 448 ) common/li_pv_v4a -19 -1 45 1 1 0 1 7000 +( 458 1110 416 ) ( 410 1062 416 ) ( 434 1086 448 ) common/li_pv_v4a -19 -1 45 1 1 0 1 7000 +} +// brush 1781 +{ +( 220 908 448 ) ( 436 1124 448 ) ( 460 1100 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 436 1124 448 ) ( 220 908 448 ) ( 244 884 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 416 1056 416 ) ( 392 1080 416 ) ( 404 1068 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 192 1376 416 ) ( 216 1352 416 ) ( 204 1364 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 444 1122 416 ) ( 398 1076 416 ) ( 421 1099 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +} +// brush 1782 +{ +( 220 908 448 ) ( 436 1124 448 ) ( 460 1100 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 476 1116 448 ) ( 476 1116 416 ) ( 244 884 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 436 1124 448 ) ( 220 908 448 ) ( 244 884 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 216 1352 416 ) ( 192 1376 416 ) ( 204 1364 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 376 1560 416 ) ( 400 1536 416 ) ( 388 1548 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +} +// brush 1783 +{ +( -12 676 448 ) ( 204 892 448 ) ( 228 868 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 244 884 448 ) ( 244 884 416 ) ( 12 652 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 204 892 448 ) ( -12 676 448 ) ( 12 652 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( -16 1120 416 ) ( -40 1144 416 ) ( -28 1132 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 144 1328 416 ) ( 168 1304 416 ) ( 156 1316 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +} +// brush 1784 +{ +( -12 676 448 ) ( 204 892 448 ) ( 228 868 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 204 892 448 ) ( -12 676 448 ) ( 12 652 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 184 824 416 ) ( 160 848 416 ) ( 172 836 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( -40 1144 416 ) ( -16 1120 416 ) ( -28 1132 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 212 890 416 ) ( 166 844 416 ) ( 189 867 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +} +// brush 1785 +{ +( -12 676 448 ) ( 204 892 448 ) ( 228 868 448 ) common/li_pv_v4a -11 -2 45 1 1 0 1 7000 +( 204 892 448 ) ( -12 676 448 ) ( 12 652 416 ) common/li_pv_v4a -11 -2 45 1 1 0 1 7000 +( 184 824 416 ) ( 160 848 416 ) ( 172 836 448 ) common/li_pv_v4a -11 -2 45 1 1 0 1 7000 +( -40 1144 416 ) ( -16 1120 416 ) ( -28 1132 448 ) common/li_pv_v4a -11 -2 45 1 1 0 1 7000 +( 166 844 416 ) ( 212 890 416 ) ( 189 867 448 ) common/li_pv_v4a -11 -2 45 1 1 0 1 7000 +( 226 878 416 ) ( 178 830 416 ) ( 202 854 448 ) common/li_pv_v4a -11 -2 45 1 1 0 1 7000 +} +// brush 1786 +{ +( -12 676 448 ) ( 204 892 448 ) ( 228 868 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 244 884 448 ) ( 244 884 416 ) ( 12 652 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 204 892 448 ) ( -12 676 448 ) ( 12 652 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 184 824 416 ) ( 160 848 416 ) ( 172 836 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( -40 1144 416 ) ( -16 1120 416 ) ( -28 1132 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 178 830 416 ) ( 226 878 416 ) ( 202 854 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +} +// brush 1787 +{ +( 1160 2296 448 ) ( 944 2080 448 ) ( 920 2104 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 944 2080 448 ) ( 1160 2296 448 ) ( 1136 2320 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 864 2000 416 ) ( 840 2024 416 ) ( 852 2012 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 888 2072 416 ) ( 912 2048 416 ) ( 900 2060 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 861 2007 416 ) ( 905 2051 416 ) ( 883 2029 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +} +// brush 1788 +{ +( 1160 2296 448 ) ( 944 2080 448 ) ( 920 2104 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 904 2088 448 ) ( 904 2088 416 ) ( 1136 2320 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 944 2080 448 ) ( 1160 2296 448 ) ( 1136 2320 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 864 2000 416 ) ( 840 2024 416 ) ( 852 2012 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 888 2072 416 ) ( 912 2048 416 ) ( 900 2060 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 892 2062 416 ) ( 888 2058 416 ) ( 890 2060 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +} +// brush 1789 +{ +( 1160 2296 448 ) ( 944 2080 448 ) ( 920 2104 448 ) common/li_pv_v4a -21 5 225 1 1 0 1 7000 +( 944 2080 448 ) ( 1160 2296 448 ) ( 1136 2320 416 ) common/li_pv_v4a -21 5 225 1 1 0 1 7000 +( 864 2000 416 ) ( 840 2024 416 ) ( 852 2012 448 ) common/li_pv_v4a -21 5 225 1 1 0 1 7000 +( 888 2072 416 ) ( 912 2048 416 ) ( 900 2060 448 ) common/li_pv_v4a -21 5 225 1 1 0 1 7000 +( 905 2051 416 ) ( 861 2007 416 ) ( 883 2029 448 ) common/li_pv_v4a -21 5 225 1 1 0 1 7000 +( 888 2058 416 ) ( 892 2062 416 ) ( 890 2060 448 ) common/li_pv_v4a -21 5 225 1 1 0 1 7000 +} +// brush 1790 +{ +( 1160 2296 448 ) ( 944 2080 448 ) ( 920 2104 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 904 2088 448 ) ( 904 2088 416 ) ( 1136 2320 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 944 2080 448 ) ( 1160 2296 448 ) ( 1136 2320 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 912 2048 416 ) ( 888 2072 416 ) ( 900 2060 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 1067 2245 416 ) ( 1091 2221 416 ) ( 1079 2233 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +} +// brush 1791 +{ +( 928 2064 448 ) ( 712 1848 448 ) ( 688 1872 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 672 1856 448 ) ( 672 1856 416 ) ( 904 2088 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 712 1848 448 ) ( 928 2064 448 ) ( 904 2088 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 680 1816 416 ) ( 656 1840 416 ) ( 668 1828 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 840 2024 416 ) ( 864 2000 416 ) ( 852 2012 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +} +// brush 1792 +{ +( 928 2064 448 ) ( 712 1848 448 ) ( 688 1872 448 ) common/li_pv_v4a -28 5 225 1 1 0 1 7000 +( 712 1848 448 ) ( 928 2064 448 ) ( 904 2088 416 ) common/li_pv_v4a -28 5 225 1 1 0 1 7000 +( 632 1768 416 ) ( 608 1792 416 ) ( 620 1780 448 ) common/li_pv_v4a -28 5 225 1 1 0 1 7000 +( 656 1840 416 ) ( 680 1816 416 ) ( 668 1828 448 ) common/li_pv_v4a -28 5 225 1 1 0 1 7000 +( 673 1819 416 ) ( 629 1775 416 ) ( 651 1797 448 ) common/li_pv_v4a -28 5 225 1 1 0 1 7000 +( 656 1826 416 ) ( 660 1830 416 ) ( 658 1828 448 ) common/li_pv_v4a -28 5 225 1 1 0 1 7000 +} +// brush 1793 +{ +( 928 2064 448 ) ( 712 1848 448 ) ( 688 1872 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 672 1856 448 ) ( 672 1856 416 ) ( 904 2088 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 712 1848 448 ) ( 928 2064 448 ) ( 904 2088 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 632 1768 416 ) ( 608 1792 416 ) ( 620 1780 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 656 1840 416 ) ( 680 1816 416 ) ( 668 1828 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 660 1830 416 ) ( 656 1826 416 ) ( 658 1828 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +} +// brush 1794 +{ +( 928 2064 448 ) ( 712 1848 448 ) ( 688 1872 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 712 1848 448 ) ( 928 2064 448 ) ( 904 2088 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 632 1768 416 ) ( 608 1792 416 ) ( 620 1780 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 656 1840 416 ) ( 680 1816 416 ) ( 668 1828 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 629 1775 416 ) ( 673 1819 416 ) ( 651 1797 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +} +// brush 1795 +{ +( 696 1832 448 ) ( 480 1616 448 ) ( 456 1640 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 480 1616 448 ) ( 696 1832 448 ) ( 672 1856 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 400 1536 416 ) ( 376 1560 416 ) ( 388 1548 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 424 1608 416 ) ( 448 1584 416 ) ( 436 1596 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 397 1543 416 ) ( 441 1587 416 ) ( 419 1565 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +} +// brush 1796 +{ +( 696 1832 448 ) ( 480 1616 448 ) ( 456 1640 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 440 1624 448 ) ( 440 1624 416 ) ( 672 1856 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 480 1616 448 ) ( 696 1832 448 ) ( 672 1856 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 400 1536 416 ) ( 376 1560 416 ) ( 388 1548 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 424 1608 416 ) ( 448 1584 416 ) ( 436 1596 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 428 1598 416 ) ( 424 1594 416 ) ( 426 1596 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +} +// brush 1797 +{ +( 696 1832 448 ) ( 480 1616 448 ) ( 456 1640 448 ) common/li_pv_v4a 27 5 225 1 1 0 1 7000 +( 480 1616 448 ) ( 696 1832 448 ) ( 672 1856 416 ) common/li_pv_v4a 27 5 225 1 1 0 1 7000 +( 400 1536 416 ) ( 376 1560 416 ) ( 388 1548 448 ) common/li_pv_v4a 27 5 225 1 1 0 1 7000 +( 424 1608 416 ) ( 448 1584 416 ) ( 436 1596 448 ) common/li_pv_v4a 27 5 225 1 1 0 1 7000 +( 441 1587 416 ) ( 397 1543 416 ) ( 419 1565 448 ) common/li_pv_v4a 27 5 225 1 1 0 1 7000 +( 424 1594 416 ) ( 428 1598 416 ) ( 426 1596 448 ) common/li_pv_v4a 27 5 225 1 1 0 1 7000 +} +// brush 1798 +{ +( 696 1832 448 ) ( 480 1616 448 ) ( 456 1640 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 440 1624 448 ) ( 440 1624 416 ) ( 672 1856 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 480 1616 448 ) ( 696 1832 448 ) ( 672 1856 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 448 1584 416 ) ( 424 1608 416 ) ( 436 1596 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 608 1792 416 ) ( 632 1768 416 ) ( 620 1780 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +} +// brush 1799 +{ +( 464 1600 448 ) ( 248 1384 448 ) ( 224 1408 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 208 1392 448 ) ( 208 1392 416 ) ( 440 1624 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 248 1384 448 ) ( 464 1600 448 ) ( 440 1624 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 216 1352 416 ) ( 192 1376 416 ) ( 204 1364 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 376 1560 416 ) ( 400 1536 416 ) ( 388 1548 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +} +// brush 1800 +{ +( 464 1600 448 ) ( 248 1384 448 ) ( 224 1408 448 ) common/li_pv_v4a 19 5 225 1 1 0 1 7000 +( 248 1384 448 ) ( 464 1600 448 ) ( 440 1624 416 ) common/li_pv_v4a 19 5 225 1 1 0 1 7000 +( 168 1304 416 ) ( 144 1328 416 ) ( 156 1316 448 ) common/li_pv_v4a 19 5 225 1 1 0 1 7000 +( 192 1376 416 ) ( 216 1352 416 ) ( 204 1364 448 ) common/li_pv_v4a 19 5 225 1 1 0 1 7000 +( 209 1355 416 ) ( 165 1311 416 ) ( 187 1333 448 ) common/li_pv_v4a 19 5 225 1 1 0 1 7000 +( 192 1362 416 ) ( 196 1366 416 ) ( 194 1364 448 ) common/li_pv_v4a 19 5 225 1 1 0 1 7000 +} +// brush 1801 +{ +( 464 1600 448 ) ( 248 1384 448 ) ( 224 1408 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 208 1392 448 ) ( 208 1392 416 ) ( 440 1624 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 248 1384 448 ) ( 464 1600 448 ) ( 440 1624 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 168 1304 416 ) ( 144 1328 416 ) ( 156 1316 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 192 1376 416 ) ( 216 1352 416 ) ( 204 1364 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 196 1366 416 ) ( 192 1362 416 ) ( 194 1364 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +} +// brush 1802 +{ +( 464 1600 448 ) ( 248 1384 448 ) ( 224 1408 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 248 1384 448 ) ( 464 1600 448 ) ( 440 1624 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 168 1304 416 ) ( 144 1328 416 ) ( 156 1316 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 192 1376 416 ) ( 216 1352 416 ) ( 204 1364 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 165 1311 416 ) ( 209 1355 416 ) ( 187 1333 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +} +// brush 1803 +{ +( 232 1368 448 ) ( 16 1152 448 ) ( -8 1176 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 16 1152 448 ) ( 232 1368 448 ) ( 208 1392 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -64 1072 416 ) ( -88 1096 416 ) ( -76 1084 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -40 1144 416 ) ( -16 1120 416 ) ( -28 1132 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -67 1079 416 ) ( -23 1123 416 ) ( -45 1101 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +} +// brush 1804 +{ +( 232 1368 448 ) ( 16 1152 448 ) ( -8 1176 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -24 1160 448 ) ( -24 1160 416 ) ( 208 1392 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 16 1152 448 ) ( 232 1368 448 ) ( 208 1392 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -64 1072 416 ) ( -88 1096 416 ) ( -76 1084 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -40 1144 416 ) ( -16 1120 416 ) ( -28 1132 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -36 1134 416 ) ( -40 1130 416 ) ( -38 1132 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +} +// brush 1805 +{ +( 232 1368 448 ) ( 16 1152 448 ) ( -8 1176 448 ) common/li_pv_v4a 11 5 225 1 1 0 1 7000 +( 16 1152 448 ) ( 232 1368 448 ) ( 208 1392 416 ) common/li_pv_v4a 11 5 225 1 1 0 1 7000 +( -64 1072 416 ) ( -88 1096 416 ) ( -76 1084 448 ) common/li_pv_v4a 11 5 225 1 1 0 1 7000 +( -40 1144 416 ) ( -16 1120 416 ) ( -28 1132 448 ) common/li_pv_v4a 11 5 225 1 1 0 1 7000 +( -23 1123 416 ) ( -67 1079 416 ) ( -45 1101 448 ) common/li_pv_v4a 11 5 225 1 1 0 1 7000 +( -40 1130 416 ) ( -36 1134 416 ) ( -38 1132 448 ) common/li_pv_v4a 11 5 225 1 1 0 1 7000 +} +// brush 1806 +{ +( 232 1368 448 ) ( 16 1152 448 ) ( -8 1176 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -24 1160 448 ) ( -24 1160 416 ) ( 208 1392 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 16 1152 448 ) ( 232 1368 448 ) ( 208 1392 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -16 1120 416 ) ( -40 1144 416 ) ( -28 1132 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( 144 1328 416 ) ( 168 1304 416 ) ( 156 1316 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +} +// brush 1807 +{ +( -264 3264 240 ) ( -448 3264 240 ) ( -448 2848 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -448 2848 448 ) ( -448 3264 448 ) ( -264 3264 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -448 2864 256 ) ( -264 2864 256 ) ( -264 2864 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 808 2880 448 ) ( 808 2880 240 ) ( 806 2864 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 808 2880 240 ) ( 808 2880 448 ) ( -488 2880 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -488 2880 240 ) ( -488 2880 448 ) ( -486 2864 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1808 +{ +( -264 3648 240 ) ( -448 3648 240 ) ( -448 3232 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -448 3232 256 ) ( -448 3648 256 ) ( -264 3648 256 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( -448 3248 256 ) ( -264 3248 256 ) ( -264 3248 240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 844 3264 256 ) ( 844 3264 240 ) ( 842 3248 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 844 3264 240 ) ( 844 3264 256 ) ( -524 3264 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -524 3264 240 ) ( -524 3264 256 ) ( -522 3248 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 1809 +{ +( -264 3280 240 ) ( -448 3280 240 ) ( -448 2864 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -448 2864 256 ) ( -448 3280 256 ) ( -264 3280 256 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( -448 2880 256 ) ( -264 2880 256 ) ( -264 2880 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 810 2896 256 ) ( 810 2896 240 ) ( 808 2880 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 810 2896 240 ) ( 810 2896 256 ) ( -490 2896 256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -490 2896 240 ) ( -490 2896 256 ) ( -488 2880 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 1810 +{ +( -1216 1280 568 ) ( -1216 1408 552 ) ( -1184 1408 552 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 1280 536 ) ( -1216 1408 520 ) ( -1216 1408 552 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 1280 568 ) ( -1184 1408 552 ) ( -1216 1408 520 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1224 1408 520 ) ( -1200 1408 520 ) ( -1212 1408 552 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1204 1280 568 ) ( -1192 1280 536 ) ( -1216 1280 536 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 1811 +{ +( -1216 1536 528 ) ( -1216 1664 496 ) ( -1184 1664 496 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 1536 496 ) ( -1216 1664 464 ) ( -1216 1664 496 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 1536 528 ) ( -1184 1664 496 ) ( -1216 1664 464 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1224 1664 464 ) ( -1200 1664 464 ) ( -1212 1664 496 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1204 1536 528 ) ( -1192 1536 496 ) ( -1216 1536 496 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 1812 +{ +( -1216 1664 496 ) ( -1216 1792 472 ) ( -1184 1792 472 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 1664 464 ) ( -1216 1792 440 ) ( -1216 1792 472 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 1664 496 ) ( -1184 1792 472 ) ( -1216 1792 440 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1224 1792 440 ) ( -1200 1792 440 ) ( -1212 1792 472 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1204 1664 496 ) ( -1192 1664 464 ) ( -1216 1664 464 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 1813 +{ +( -1216 1920 456 ) ( -1216 2048 448 ) ( -1184 2048 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 1920 424 ) ( -1216 2048 416 ) ( -1216 2048 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 1920 456 ) ( -1184 2048 448 ) ( -1216 2048 416 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1224 2048 416 ) ( -1200 2048 416 ) ( -1212 2048 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1204 1920 456 ) ( -1192 1920 424 ) ( -1216 1920 424 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 1814 +{ +( -1216 1792 472 ) ( -1216 1920 456 ) ( -1184 1920 456 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 1792 440 ) ( -1216 1920 424 ) ( -1216 1920 456 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 1792 472 ) ( -1184 1920 456 ) ( -1216 1920 424 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1224 1920 424 ) ( -1200 1920 424 ) ( -1212 1920 456 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1212 1856 472 ) ( -1208 1856 424 ) ( -1216 1856 424 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 1815 +{ +( -1216 1792 472 ) ( -1216 1920 456 ) ( -1184 1920 456 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 1792 440 ) ( -1216 1920 424 ) ( -1216 1920 456 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 1792 472 ) ( -1184 1920 456 ) ( -1216 1920 424 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1204 1792 472 ) ( -1192 1792 440 ) ( -1216 1792 440 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1212 1856 472 ) ( -1216 1856 424 ) ( -1208 1856 424 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1208 1798 472 ) ( -1208 1804 432 ) ( -1208 1792 432 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 1816 +{ +( -1216 1792 472 ) ( -1216 1920 456 ) ( -1184 1920 456 ) bricks/c_tn_m1 -64 16 -90 1 -1 0 0 0 +( -1184 1792 472 ) ( -1184 1920 456 ) ( -1216 1920 424 ) common/li_pv_v4a -1 -8 -90 1 1 0 1 9000 +( -1204 1792 472 ) ( -1192 1792 440 ) ( -1216 1792 440 ) bricks/c_tn_m1 -191 16 90 1 1 0 0 0 +( -1212 1856 472 ) ( -1216 1856 424 ) ( -1208 1856 424 ) bricks/c_tn_m1 -191 16 90 1 1 0 0 0 +( -1208 1798 472 ) ( -1208 1792 432 ) ( -1208 1804 432 ) bricks/c_tn_m1 -191 0 90 1 1 0 0 0 +( -1192 1794 472 ) ( -1192 1796 440 ) ( -1192 1792 440 ) bricks/c_tn_m1 -191 0 90 1 1 0 0 0 +} +// brush 1817 +{ +( -1216 1792 472 ) ( -1216 1920 456 ) ( -1184 1920 456 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 1792 472 ) ( -1184 1920 456 ) ( -1216 1920 424 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1204 1792 472 ) ( -1192 1792 440 ) ( -1216 1792 440 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1212 1856 472 ) ( -1216 1856 424 ) ( -1208 1856 424 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1192 1794 472 ) ( -1192 1792 440 ) ( -1192 1796 440 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 1818 +{ +( -1216 1408 552 ) ( -1216 1536 528 ) ( -1184 1536 528 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 1408 520 ) ( -1216 1536 496 ) ( -1216 1536 528 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 1408 552 ) ( -1184 1536 528 ) ( -1216 1536 496 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1204 1408 552 ) ( -1192 1408 520 ) ( -1216 1408 520 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1208 1472 552 ) ( -1212 1472 496 ) ( -1204 1472 496 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 1819 +{ +( -1216 1408 552 ) ( -1216 1536 528 ) ( -1184 1536 528 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 1408 520 ) ( -1216 1536 496 ) ( -1216 1536 528 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 1408 552 ) ( -1184 1536 528 ) ( -1216 1536 496 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1224 1536 496 ) ( -1200 1536 496 ) ( -1212 1536 528 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1208 1472 552 ) ( -1204 1472 496 ) ( -1212 1472 496 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1208 1476 540 ) ( -1208 1480 496 ) ( -1208 1472 496 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 1820 +{ +( -1216 1408 552 ) ( -1216 1536 528 ) ( -1184 1536 528 ) bricks/c_tn_m1 -64 16 -90 1 -1 0 0 0 +( -1184 1408 552 ) ( -1184 1536 528 ) ( -1216 1536 496 ) common/li_pv_v4a -1 -8 -90 1 1 0 1 9000 +( -1224 1536 496 ) ( -1200 1536 496 ) ( -1212 1536 528 ) bricks/c_tn_m1 -191 16 90 1 1 0 0 0 +( -1208 1472 552 ) ( -1204 1472 496 ) ( -1212 1472 496 ) bricks/c_tn_m1 -191 16 90 1 1 0 0 0 +( -1208 1476 540 ) ( -1208 1472 496 ) ( -1208 1480 496 ) bricks/c_tn_m1 -191 0 90 1 1 0 0 0 +( -1192 1474 540 ) ( -1192 1476 504 ) ( -1192 1472 504 ) bricks/c_tn_m1 -191 0 90 1 1 0 0 0 +} +// brush 1821 +{ +( -1216 1408 552 ) ( -1216 1536 528 ) ( -1184 1536 528 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 1408 552 ) ( -1184 1536 528 ) ( -1216 1536 496 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1224 1536 496 ) ( -1200 1536 496 ) ( -1212 1536 528 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1208 1472 552 ) ( -1204 1472 496 ) ( -1212 1472 496 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1192 1474 540 ) ( -1192 1472 504 ) ( -1192 1476 504 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 1822 +{ +( -1216 1152 576 ) ( -1216 1280 568 ) ( -1184 1280 568 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 1152 544 ) ( -1216 1280 536 ) ( -1216 1280 568 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 1152 576 ) ( -1184 1280 568 ) ( -1216 1280 536 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1224 1280 536 ) ( -1200 1280 536 ) ( -1212 1280 568 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1204 1216 576 ) ( -1200 1216 536 ) ( -1208 1216 536 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 1823 +{ +( -1216 1152 576 ) ( -1216 1280 568 ) ( -1184 1280 568 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 1152 544 ) ( -1216 1280 536 ) ( -1216 1280 568 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 1152 576 ) ( -1184 1280 568 ) ( -1216 1280 536 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1204 1152 576 ) ( -1192 1152 544 ) ( -1216 1152 544 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1204 1216 576 ) ( -1208 1216 536 ) ( -1200 1216 536 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1208 1156 576 ) ( -1208 1160 540 ) ( -1208 1152 540 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 1824 +{ +( -1216 1152 576 ) ( -1216 1280 568 ) ( -1184 1280 568 ) bricks/c_tn_m1 -64 16 -90 1 -1 0 0 0 +( -1184 1152 576 ) ( -1184 1280 568 ) ( -1216 1280 536 ) common/li_pv_v4a -1 -8 -90 1 1 0 1 9000 +( -1204 1152 576 ) ( -1192 1152 544 ) ( -1216 1152 544 ) bricks/c_tn_m1 -191 16 90 1 1 0 0 0 +( -1204 1216 576 ) ( -1208 1216 536 ) ( -1200 1216 536 ) bricks/c_tn_m1 -191 16 90 1 1 0 0 0 +( -1208 1156 576 ) ( -1208 1152 540 ) ( -1208 1160 540 ) bricks/c_tn_m1 -191 0 90 1 1 0 0 0 +( -1192 1156 576 ) ( -1192 1160 548 ) ( -1192 1152 548 ) bricks/c_tn_m1 -191 0 90 1 1 0 0 0 +} +// brush 1825 +{ +( -1216 1152 576 ) ( -1216 1280 568 ) ( -1184 1280 568 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 1152 576 ) ( -1184 1280 568 ) ( -1216 1280 536 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1204 1152 576 ) ( -1192 1152 544 ) ( -1216 1152 544 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1204 1216 576 ) ( -1208 1216 536 ) ( -1200 1216 536 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1192 1156 576 ) ( -1192 1152 548 ) ( -1192 1160 548 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 1826 +{ +( -816 1280 576 ) ( -1232 1280 576 ) ( -1232 512 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1232 512 592 ) ( -1232 1280 592 ) ( -816 1280 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1232 512 592 ) ( -816 512 592 ) ( -816 512 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -816 512 592 ) ( -816 1280 592 ) ( -816 1280 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1232 1280 592 ) ( -1232 512 592 ) ( -1232 512 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -856 1152 576 ) ( -816 1152 576 ) ( -836 1152 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1827 +{ +( -1216 1272 368 ) ( -1232 1272 368 ) ( -1232 512 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1232 512 576 ) ( -1232 1272 576 ) ( -1216 1272 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1216 472 576 ) ( -1216 472 368 ) ( -1232 474 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1216 472 368 ) ( -1216 472 576 ) ( -1216 1152 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1232 1272 576 ) ( -1232 512 576 ) ( -1232 512 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -856 1152 368 ) ( -816 1152 368 ) ( -836 1152 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 1828 +{ +( -1200 1280 368 ) ( -1216 1280 368 ) ( -1216 1064 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1216 1064 384 ) ( -1216 1280 384 ) ( -1200 1280 384 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -1200 470 384 ) ( -1200 470 368 ) ( -1216 472 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1200 470 368 ) ( -1200 470 384 ) ( -1200 1152 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1216 2240 384 ) ( -1216 2024 384 ) ( -1216 2024 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -856 1152 368 ) ( -816 1152 368 ) ( -836 1152 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 1829 +{ +( -888 664 352 ) ( -1232 664 352 ) ( -1232 512 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1232 512 368 ) ( -1232 664 368 ) ( -888 664 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1232 512 368 ) ( -888 512 368 ) ( -888 512 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -816 512 368 ) ( -816 664 368 ) ( -816 664 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1232 664 368 ) ( -1232 512 368 ) ( -1232 512 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -856 1152 352 ) ( -816 1152 352 ) ( -836 1152 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1830 +{ +( -816 1272 368 ) ( -832 1272 368 ) ( -832 512 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -832 512 576 ) ( -832 1272 576 ) ( -816 1272 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -816 434 576 ) ( -816 434 368 ) ( -832 436 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -816 434 368 ) ( -816 434 576 ) ( -816 1152 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -832 2232 576 ) ( -832 1472 576 ) ( -832 1472 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -856 1152 368 ) ( -816 1152 368 ) ( -836 1152 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 1831 +{ +( -832 1280 368 ) ( -848 1280 368 ) ( -848 1064 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -848 1064 384 ) ( -848 1280 384 ) ( -832 1280 384 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -832 436 384 ) ( -832 436 368 ) ( -848 438 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -832 436 368 ) ( -832 436 384 ) ( -832 1152 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -848 1280 384 ) ( -848 1064 384 ) ( -848 1064 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -856 1152 368 ) ( -816 1152 368 ) ( -836 1152 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 1832 +{ +( -816 1272 240 ) ( -832 1272 240 ) ( -832 512 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -832 512 448 ) ( -832 1272 448 ) ( -816 1272 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -816 512 448 ) ( -816 1272 448 ) ( -816 1272 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -832 2536 448 ) ( -832 2536 240 ) ( -816 2534 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -832 2536 240 ) ( -832 2536 448 ) ( -832 2048 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1112 2048 240 ) ( -1232 2048 240 ) ( -1172 2048 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1833 +{ +( -864 1719 448 ) ( -864 1865 448 ) ( -832 1868 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 2064 448 ) ( -832 2416 448 ) ( -832 2416 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1868 416 ) ( -864 1865 448 ) ( -864 1719 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -840 2112 416 ) ( -832 2112 416 ) ( -836 2112 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1112 2048 416 ) ( -1232 2048 416 ) ( -1172 2048 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1834 +{ +( -832 1280 240 ) ( -848 1280 240 ) ( -848 1064 240 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -848 1064 256 ) ( -848 1280 256 ) ( -832 1280 256 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -832 2024 256 ) ( -832 2240 256 ) ( -832 2240 240 ) bricks/c_sr_mr5 0 -17 0 1 1 0 0 0 +( -848 2538 256 ) ( -848 2538 240 ) ( -832 2536 240 ) bricks/c_sr_mr5 0 -17 0 1 1 0 0 0 +( -848 2538 240 ) ( -848 2538 256 ) ( -848 2048 256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1112 2048 240 ) ( -1232 2048 240 ) ( -1172 2048 256 ) bricks/c_sr_mr5 0 -17 0 1 1 0 0 0 +} +// brush 1835 +{ +( -888 664 224 ) ( -1232 664 224 ) ( -1232 512 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1232 512 240 ) ( -1232 664 240 ) ( -888 664 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -816 512 240 ) ( -816 664 240 ) ( -816 664 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -936 2496 240 ) ( -1280 2496 240 ) ( -1280 2496 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1232 664 240 ) ( -1232 512 240 ) ( -1232 512 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1112 2048 224 ) ( -1232 2048 224 ) ( -1172 2048 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1836 +{ +( -1200 1280 240 ) ( -1216 1280 240 ) ( -1216 1064 240 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1216 1064 256 ) ( -1216 1280 256 ) ( -1200 1280 256 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -1200 2570 256 ) ( -1200 2570 240 ) ( -1200 2048 240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1200 2570 240 ) ( -1200 2570 256 ) ( -1216 2572 256 ) bricks/c_sr_mr5 0 -17 0 1 1 0 0 0 +( -1216 2240 256 ) ( -1216 2024 256 ) ( -1216 2024 240 ) bricks/c_sr_mr5 0 -17 0 1 1 0 0 0 +( -1112 2048 240 ) ( -1232 2048 240 ) ( -1172 2048 256 ) bricks/c_sr_mr5 0 -17 0 1 1 0 0 0 +} +// brush 1837 +{ +( -1216 1272 240 ) ( -1232 1272 240 ) ( -1232 512 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1232 512 448 ) ( -1232 1272 448 ) ( -1216 1272 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1216 1472 448 ) ( -1216 2232 448 ) ( -1216 2232 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1232 2574 448 ) ( -1232 2574 240 ) ( -1216 2572 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1232 2574 240 ) ( -1232 2574 448 ) ( -1232 2048 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1112 2048 240 ) ( -1232 2048 240 ) ( -1172 2048 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1838 +{ +( -1216 1832 448 ) ( -1184 1835 448 ) ( -1184 1749 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 1752 448 ) ( -1216 1752 416 ) ( -1216 1792 416 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 1749 448 ) ( -1184 1835 448 ) ( -1216 1832 416 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 2112 416 ) ( -1184 2112 416 ) ( -1200 2112 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1112 2048 416 ) ( -1232 2048 416 ) ( -1172 2048 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 1839 +{ +( -864 1280 568 ) ( -832 1280 568 ) ( -832 1152 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1280 536 ) ( -864 1280 568 ) ( -864 1152 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1152 544 ) ( -856 1152 544 ) ( -844 1152 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -848 1216 536 ) ( -840 1216 536 ) ( -844 1216 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -856 1160 548 ) ( -856 1152 548 ) ( -856 1156 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1840 +{ +( -864 1280 568 ) ( -832 1280 568 ) ( -832 1152 576 ) bricks/c_tn_m1 -63 0 -90 1 -1 0 0 0 +( -832 1280 536 ) ( -864 1280 568 ) ( -864 1152 576 ) common/li_pv_v4a 0 -8 -90 1 1 0 1 9000 +( -832 1152 544 ) ( -856 1152 544 ) ( -844 1152 576 ) bricks/c_tn_m1 -190 0 90 1 1 0 0 0 +( -848 1216 536 ) ( -840 1216 536 ) ( -844 1216 576 ) bricks/c_tn_m1 -190 0 90 1 1 0 0 0 +( -840 1160 540 ) ( -840 1152 540 ) ( -840 1156 576 ) bricks/c_tn_m1 -190 0 90 1 1 0 0 0 +( -856 1152 548 ) ( -856 1160 548 ) ( -856 1156 576 ) bricks/c_tn_m1 -190 0 90 1 1 0 0 0 +} +// brush 1841 +{ +( -864 1280 568 ) ( -832 1280 568 ) ( -832 1152 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1280 568 ) ( -832 1280 536 ) ( -832 1152 544 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1280 536 ) ( -864 1280 568 ) ( -864 1152 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1152 544 ) ( -856 1152 544 ) ( -844 1152 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -848 1216 536 ) ( -840 1216 536 ) ( -844 1216 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -840 1152 540 ) ( -840 1160 540 ) ( -840 1156 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1842 +{ +( -864 1280 568 ) ( -832 1280 568 ) ( -832 1152 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1280 568 ) ( -832 1280 536 ) ( -832 1152 544 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1280 536 ) ( -864 1280 568 ) ( -864 1152 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -836 1280 568 ) ( -848 1280 536 ) ( -824 1280 536 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -840 1216 536 ) ( -848 1216 536 ) ( -844 1216 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1843 +{ +( -864 1536 528 ) ( -832 1536 528 ) ( -832 1408 552 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1536 496 ) ( -864 1536 528 ) ( -864 1408 552 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -836 1536 528 ) ( -848 1536 496 ) ( -824 1536 496 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -836 1472 496 ) ( -844 1472 496 ) ( -840 1472 552 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -856 1476 504 ) ( -856 1472 504 ) ( -856 1474 540 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1844 +{ +( -864 1536 528 ) ( -832 1536 528 ) ( -832 1408 552 ) bricks/c_tn_m1 -63 0 -90 1 -1 0 0 0 +( -832 1536 496 ) ( -864 1536 528 ) ( -864 1408 552 ) common/li_pv_v4a 0 -8 -90 1 1 0 1 9000 +( -836 1536 528 ) ( -848 1536 496 ) ( -824 1536 496 ) bricks/c_tn_m1 -190 0 90 1 1 0 0 0 +( -836 1472 496 ) ( -844 1472 496 ) ( -840 1472 552 ) bricks/c_tn_m1 -190 0 90 1 1 0 0 0 +( -840 1480 496 ) ( -840 1472 496 ) ( -840 1476 540 ) bricks/c_tn_m1 -190 0 90 1 1 0 0 0 +( -856 1472 504 ) ( -856 1476 504 ) ( -856 1474 540 ) bricks/c_tn_m1 -190 0 90 1 1 0 0 0 +} +// brush 1845 +{ +( -864 1536 528 ) ( -832 1536 528 ) ( -832 1408 552 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1536 528 ) ( -832 1536 496 ) ( -832 1408 520 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1536 496 ) ( -864 1536 528 ) ( -864 1408 552 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -836 1536 528 ) ( -848 1536 496 ) ( -824 1536 496 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -836 1472 496 ) ( -844 1472 496 ) ( -840 1472 552 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -840 1472 496 ) ( -840 1480 496 ) ( -840 1476 540 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1846 +{ +( -864 1536 528 ) ( -832 1536 528 ) ( -832 1408 552 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1536 528 ) ( -832 1536 496 ) ( -832 1408 520 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1536 496 ) ( -864 1536 528 ) ( -864 1408 552 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1408 520 ) ( -856 1408 520 ) ( -844 1408 552 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -844 1472 496 ) ( -836 1472 496 ) ( -840 1472 552 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1847 +{ +( -864 1920 456 ) ( -832 1920 456 ) ( -832 1792 472 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1920 424 ) ( -864 1920 456 ) ( -864 1792 472 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1792 440 ) ( -856 1792 440 ) ( -844 1792 472 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -840 1856 424 ) ( -832 1856 424 ) ( -836 1856 472 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -856 1796 440 ) ( -856 1792 440 ) ( -856 1794 472 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1848 +{ +( -864 1920 456 ) ( -832 1920 456 ) ( -832 1792 472 ) bricks/c_tn_m1 -63 0 -90 1 -1 0 0 0 +( -832 1920 424 ) ( -864 1920 456 ) ( -864 1792 472 ) common/li_pv_v4a 0 -8 -90 1 1 0 1 9000 +( -832 1792 440 ) ( -856 1792 440 ) ( -844 1792 472 ) bricks/c_tn_m1 -190 0 90 1 1 0 0 0 +( -840 1856 424 ) ( -832 1856 424 ) ( -836 1856 472 ) bricks/c_tn_m1 -190 0 90 1 1 0 0 0 +( -840 1804 432 ) ( -840 1792 432 ) ( -840 1798 472 ) bricks/c_tn_m1 -190 0 90 1 1 0 0 0 +( -856 1792 440 ) ( -856 1796 440 ) ( -856 1794 472 ) bricks/c_tn_m1 -190 0 90 1 1 0 0 0 +} +// brush 1849 +{ +( -864 1920 456 ) ( -832 1920 456 ) ( -832 1792 472 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1920 456 ) ( -832 1920 424 ) ( -832 1792 440 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1920 424 ) ( -864 1920 456 ) ( -864 1792 472 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1792 440 ) ( -856 1792 440 ) ( -844 1792 472 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -840 1856 424 ) ( -832 1856 424 ) ( -836 1856 472 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -840 1792 432 ) ( -840 1804 432 ) ( -840 1798 472 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1850 +{ +( -864 1920 456 ) ( -832 1920 456 ) ( -832 1792 472 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1920 456 ) ( -832 1920 424 ) ( -832 1792 440 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1920 424 ) ( -864 1920 456 ) ( -864 1792 472 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -836 1920 456 ) ( -848 1920 424 ) ( -824 1920 424 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1856 424 ) ( -840 1856 424 ) ( -836 1856 472 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1851 +{ +( -816 2048 448 ) ( -1648 2048 448 ) ( -1648 1920 456 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1648 2048 464 ) ( -816 2048 464 ) ( -816 1920 472 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1256 2048 464 ) ( -1672 2048 464 ) ( -1672 2048 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1640 1920 472 ) ( -1224 1920 472 ) ( -1224 1920 456 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -816 2048 464 ) ( -816 2048 448 ) ( -816 1920 456 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1232 1152 448 ) ( -1232 1176 448 ) ( -1232 1164 472 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1852 +{ +( -816 1920 456 ) ( -1648 1920 456 ) ( -1648 1792 472 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1648 1920 472 ) ( -816 1920 472 ) ( -816 1792 488 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1256 1920 472 ) ( -1672 1920 472 ) ( -1672 1920 456 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1640 1792 488 ) ( -1224 1792 488 ) ( -1224 1792 472 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -816 1920 472 ) ( -816 1920 456 ) ( -816 1792 472 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1232 1152 456 ) ( -1232 1176 456 ) ( -1232 1164 488 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1853 +{ +( -816 1792 472 ) ( -1648 1792 472 ) ( -1648 1664 496 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1648 1792 488 ) ( -816 1792 488 ) ( -816 1664 512 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1256 1792 488 ) ( -1672 1792 488 ) ( -1672 1792 472 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1640 1664 512 ) ( -1224 1664 512 ) ( -1224 1664 496 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -816 1792 488 ) ( -816 1792 472 ) ( -816 1664 496 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1232 1152 472 ) ( -1232 1176 472 ) ( -1232 1164 512 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1854 +{ +( -816 1664 496 ) ( -1648 1664 496 ) ( -1648 1536 528 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1648 1664 512 ) ( -816 1664 512 ) ( -816 1536 544 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1256 1664 512 ) ( -1672 1664 512 ) ( -1672 1664 496 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1640 1536 544 ) ( -1224 1536 544 ) ( -1224 1536 528 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -816 1664 512 ) ( -816 1664 496 ) ( -816 1536 528 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1232 1152 496 ) ( -1232 1176 496 ) ( -1232 1164 544 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1855 +{ +( -816 1536 528 ) ( -1648 1536 528 ) ( -1648 1408 552 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1648 1536 544 ) ( -816 1536 544 ) ( -816 1408 568 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1256 1536 544 ) ( -1672 1536 544 ) ( -1672 1536 528 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1640 1408 568 ) ( -1224 1408 568 ) ( -1224 1408 552 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -816 1536 544 ) ( -816 1536 528 ) ( -816 1408 552 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1232 1152 528 ) ( -1232 1176 528 ) ( -1232 1164 568 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1856 +{ +( -816 1408 552 ) ( -1648 1408 552 ) ( -1648 1280 568 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1648 1408 568 ) ( -816 1408 568 ) ( -816 1280 584 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1256 1408 568 ) ( -1672 1408 568 ) ( -1672 1408 552 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1640 1280 584 ) ( -1224 1280 584 ) ( -1224 1280 568 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -816 1408 568 ) ( -816 1408 552 ) ( -816 1280 568 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1232 1152 552 ) ( -1232 1176 552 ) ( -1232 1164 584 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1857 +{ +( -816 1280 568 ) ( -1648 1280 568 ) ( -1648 1152 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1648 1280 584 ) ( -816 1280 584 ) ( -816 1152 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1256 1280 584 ) ( -1672 1280 584 ) ( -1672 1280 568 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1640 1152 592 ) ( -1224 1152 592 ) ( -1224 1152 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -816 1280 584 ) ( -816 1280 568 ) ( -816 1152 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1232 1152 568 ) ( -1232 1176 568 ) ( -1232 1164 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 1858 +{ +( -864 2048 448 ) ( -832 2048 448 ) ( -832 1920 456 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 2048 448 ) ( -832 2048 416 ) ( -832 1920 424 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 2048 416 ) ( -864 2048 448 ) ( -864 1920 456 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -836 2048 448 ) ( -848 2048 416 ) ( -824 2048 416 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1920 424 ) ( -856 1920 424 ) ( -844 1920 456 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1859 +{ +( -864 1792 472 ) ( -832 1792 472 ) ( -832 1664 496 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1792 472 ) ( -832 1792 440 ) ( -832 1664 464 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1792 440 ) ( -864 1792 472 ) ( -864 1664 496 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -836 1792 472 ) ( -848 1792 440 ) ( -824 1792 440 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1664 464 ) ( -856 1664 464 ) ( -844 1664 496 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1860 +{ +( -864 1664 496 ) ( -832 1664 496 ) ( -832 1536 528 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1664 496 ) ( -832 1664 464 ) ( -832 1536 496 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1664 464 ) ( -864 1664 496 ) ( -864 1536 528 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -836 1664 496 ) ( -848 1664 464 ) ( -824 1664 464 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1536 496 ) ( -856 1536 496 ) ( -844 1536 528 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1861 +{ +( -864 1408 552 ) ( -832 1408 552 ) ( -832 1280 568 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1408 552 ) ( -832 1408 520 ) ( -832 1280 536 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1408 520 ) ( -864 1408 552 ) ( -864 1280 568 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -836 1408 552 ) ( -848 1408 520 ) ( -824 1408 520 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1280 536 ) ( -856 1280 536 ) ( -844 1280 568 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1862 +{ +( -816 2048 224 ) ( -832 2048 224 ) ( -832 1920 232 ) bricks/c_tn_m3 0 -115 356 1 1 0 0 0 +( -832 2048 448 ) ( -816 2048 448 ) ( -816 1920 456 ) bricks/c_tn_m3 0 -115 356 1 1 0 0 0 +( -816 2048 448 ) ( -832 2048 448 ) ( -832 2048 224 ) bricks/c_tn_m3 0 -115 356 1 1 0 0 0 +( -832 2048 224 ) ( -832 2048 448 ) ( -832 1920 456 ) bricks/c_tn_m3 0 -115 356 1 1 0 0 0 +( -832 1920 456 ) ( -816 1920 456 ) ( -816 1920 232 ) bricks/c_tn_m3 0 -115 356 1 1 0 0 0 +( -816 2048 448 ) ( -816 2048 224 ) ( -816 1920 232 ) bricks/c_tn_m3 0 -115 356 1 1 0 0 0 +} +// brush 1863 +{ +( -816 1920 232 ) ( -832 1920 232 ) ( -832 1792 248 ) bricks/c_tn_m3 67 -17 353 1 1 0 0 0 +( -832 1920 456 ) ( -816 1920 456 ) ( -816 1792 472 ) bricks/c_tn_m3 67 -17 353 1 1 0 0 0 +( -816 1920 456 ) ( -832 1920 456 ) ( -832 1920 232 ) bricks/c_tn_m3 67 -17 353 1 1 0 0 0 +( -832 1920 232 ) ( -832 1920 456 ) ( -832 1792 472 ) bricks/c_tn_m3 67 -17 353 1 1 0 0 0 +( -832 1792 472 ) ( -816 1792 472 ) ( -816 1792 248 ) bricks/c_tn_m3 67 -17 353 1 1 0 0 0 +( -816 1920 456 ) ( -816 1920 232 ) ( -816 1792 248 ) bricks/c_tn_m3 67 -17 353 1 1 0 0 0 +} +// brush 1864 +{ +( -816 1792 248 ) ( -832 1792 248 ) ( -832 1664 272 ) bricks/c_tn_m3 118 104 349 1 1 0 0 0 +( -832 1792 472 ) ( -816 1792 472 ) ( -816 1664 496 ) bricks/c_tn_m3 118 104 349 1 1 0 0 0 +( -816 1792 472 ) ( -832 1792 472 ) ( -832 1792 248 ) bricks/c_tn_m3 118 104 349 1 1 0 0 0 +( -832 1792 248 ) ( -832 1792 472 ) ( -832 1664 496 ) bricks/c_tn_m3 118 104 349 1 1 0 0 0 +( -832 1664 496 ) ( -816 1664 496 ) ( -816 1664 272 ) bricks/c_tn_m3 118 104 349 1 1 0 0 0 +( -816 1792 472 ) ( -816 1792 248 ) ( -816 1664 272 ) bricks/c_tn_m3 118 104 349 1 1 0 0 0 +} +// brush 1865 +{ +( -816 1664 272 ) ( -832 1664 272 ) ( -832 1536 304 ) bricks/c_tn_m3 -91 -71 346 1 1 0 0 0 +( -832 1664 496 ) ( -816 1664 496 ) ( -816 1536 528 ) bricks/c_tn_m3 -91 -71 346 1 1 0 0 0 +( -816 1664 496 ) ( -832 1664 496 ) ( -832 1664 272 ) bricks/c_tn_m3 -91 -71 346 1 1 0 0 0 +( -832 1664 272 ) ( -832 1664 496 ) ( -832 1536 528 ) bricks/c_tn_m3 -91 -71 346 1 1 0 0 0 +( -832 1536 528 ) ( -816 1536 528 ) ( -816 1536 304 ) bricks/c_tn_m3 -91 -71 346 1 1 0 0 0 +( -816 1664 496 ) ( -816 1664 272 ) ( -816 1536 304 ) bricks/c_tn_m3 -91 -71 346 1 1 0 0 0 +} +// brush 1866 +{ +( -816 1536 304 ) ( -832 1536 304 ) ( -832 1408 328 ) bricks/c_tn_m3 122 111 349 1 1 0 0 0 +( -832 1536 528 ) ( -816 1536 528 ) ( -816 1408 552 ) bricks/c_tn_m3 122 111 349 1 1 0 0 0 +( -816 1536 528 ) ( -832 1536 528 ) ( -832 1536 304 ) bricks/c_tn_m3 122 111 349 1 1 0 0 0 +( -832 1536 304 ) ( -832 1536 528 ) ( -832 1408 552 ) bricks/c_tn_m3 122 111 349 1 1 0 0 0 +( -832 1408 552 ) ( -816 1408 552 ) ( -816 1408 328 ) bricks/c_tn_m3 122 111 349 1 1 0 0 0 +( -816 1536 528 ) ( -816 1536 304 ) ( -816 1408 328 ) bricks/c_tn_m3 122 111 349 1 1 0 0 0 +} +// brush 1867 +{ +( -816 1408 328 ) ( -832 1408 328 ) ( -832 1280 344 ) bricks/c_tn_m3 74 18 353 1 1 0 0 0 +( -832 1408 552 ) ( -816 1408 552 ) ( -816 1280 568 ) bricks/c_tn_m3 74 18 353 1 1 0 0 0 +( -816 1408 552 ) ( -832 1408 552 ) ( -832 1408 328 ) bricks/c_tn_m3 74 18 353 1 1 0 0 0 +( -832 1408 328 ) ( -832 1408 552 ) ( -832 1280 568 ) bricks/c_tn_m3 74 18 353 1 1 0 0 0 +( -832 1280 568 ) ( -816 1280 568 ) ( -816 1280 344 ) bricks/c_tn_m3 74 18 353 1 1 0 0 0 +( -816 1408 552 ) ( -816 1408 328 ) ( -816 1280 344 ) bricks/c_tn_m3 74 18 353 1 1 0 0 0 +} +// brush 1868 +{ +( -816 1280 344 ) ( -832 1280 344 ) ( -832 1152 352 ) bricks/c_tn_m3 40 -49 356 1 1 0 0 0 +( -832 1280 568 ) ( -816 1280 568 ) ( -816 1152 576 ) bricks/c_tn_m3 40 -49 356 1 1 0 0 0 +( -816 1280 568 ) ( -832 1280 568 ) ( -832 1280 344 ) bricks/c_tn_m3 40 -49 356 1 1 0 0 0 +( -832 1280 344 ) ( -832 1280 568 ) ( -832 1152 576 ) bricks/c_tn_m3 40 -49 356 1 1 0 0 0 +( -832 1152 576 ) ( -816 1152 576 ) ( -816 1152 352 ) bricks/c_tn_m3 40 -49 356 1 1 0 0 0 +( -816 1280 568 ) ( -816 1280 344 ) ( -816 1152 352 ) bricks/c_tn_m3 40 -49 356 1 1 0 0 0 +} +// brush 1869 +{ +( -832 1280 360 ) ( -1216 1280 360 ) ( -1216 1152 368 ) bricks/c_sr_mr5 -32 -15 -180 1 1 0 0 0 +( -1216 1280 376 ) ( -832 1280 376 ) ( -832 1152 384 ) bricks/c_sr_mr5 63 30 90 1 1 0 0 0 +( -856 1280 376 ) ( -1240 1280 376 ) ( -1240 1280 360 ) bricks/c_sr_mr5 -32 16 -180 1 -1 0 0 0 +( -1184 1152 384 ) ( -800 1152 384 ) ( -800 1152 368 ) bricks/c_sr_mr5 -32 16 -180 1 -1 0 0 0 +( -832 1280 376 ) ( -832 1280 360 ) ( -832 1152 368 ) bricks/c_sr_mr5 -64 16 -180 1 -1 0 0 0 +( -848 1976 360 ) ( -848 2048 360 ) ( -848 2012 384 ) bricks/c_sr_mr5 0 -1 356 1 1 0 0 0 +} +// brush 1870 +{ +( -832 1408 344 ) ( -1216 1408 344 ) ( -1216 1280 360 ) bricks/c_sr_mr5 -32 -15 -180 1 1 0 0 0 +( -1216 1408 360 ) ( -832 1408 360 ) ( -832 1280 376 ) bricks/c_sr_mr5 63 30 90 1 1 0 0 0 +( -856 1408 360 ) ( -1240 1408 360 ) ( -1240 1408 344 ) bricks/c_sr_mr5 -32 16 -180 1 -1 0 0 0 +( -1184 1280 376 ) ( -800 1280 376 ) ( -800 1280 360 ) bricks/c_sr_mr5 -32 16 -180 1 -1 0 0 0 +( -832 1408 360 ) ( -832 1408 344 ) ( -832 1280 360 ) bricks/c_sr_mr5 -64 16 -180 1 -1 0 0 0 +( -848 1976 344 ) ( -848 2048 344 ) ( -848 2012 376 ) bricks/c_sr_mr5 0 1 353 1 1 0 0 0 +} +// brush 1871 +{ +( -832 1536 320 ) ( -1216 1536 320 ) ( -1216 1408 344 ) bricks/c_sr_mr5 -32 -15 -180 1 1 0 0 0 +( -1216 1536 336 ) ( -832 1536 336 ) ( -832 1408 360 ) bricks/c_sr_mr5 63 30 90 1 1 0 0 0 +( -856 1536 336 ) ( -1240 1536 336 ) ( -1240 1536 320 ) bricks/c_sr_mr5 -32 16 -180 1 -1 0 0 0 +( -1184 1408 360 ) ( -800 1408 360 ) ( -800 1408 344 ) bricks/c_sr_mr5 -32 16 -180 1 -1 0 0 0 +( -832 1536 336 ) ( -832 1536 320 ) ( -832 1408 344 ) bricks/c_sr_mr5 -64 16 -180 1 -1 0 0 0 +( -848 1976 320 ) ( -848 2048 320 ) ( -848 2012 360 ) bricks/c_sr_mr5 0 -2 349 1 1 0 0 0 +} +// brush 1872 +{ +( -832 1664 288 ) ( -1216 1664 288 ) ( -1216 1536 320 ) bricks/c_sr_mr5 -32 -15 -180 1 1 0 0 0 +( -1216 1664 304 ) ( -832 1664 304 ) ( -832 1536 336 ) bricks/c_sr_mr5 63 30 90 1 1 0 0 0 +( -856 1664 304 ) ( -1240 1664 304 ) ( -1240 1664 288 ) bricks/c_sr_mr5 -32 16 -180 1 -1 0 0 0 +( -1184 1536 336 ) ( -800 1536 336 ) ( -800 1536 320 ) bricks/c_sr_mr5 -32 16 -180 1 -1 0 0 0 +( -832 1664 304 ) ( -832 1664 288 ) ( -832 1536 320 ) bricks/c_sr_mr5 -64 16 -180 1 -1 0 0 0 +( -848 1976 288 ) ( -848 2048 288 ) ( -848 2012 336 ) bricks/c_sr_mr5 0 8 346 1 1 0 0 0 +} +// brush 1873 +{ +( -832 1792 264 ) ( -1216 1792 264 ) ( -1216 1664 288 ) bricks/c_sr_mr5 -32 -15 -180 1 1 0 0 0 +( -1216 1792 280 ) ( -832 1792 280 ) ( -832 1664 304 ) bricks/c_sr_mr5 63 30 90 1 1 0 0 0 +( -856 1792 280 ) ( -1240 1792 280 ) ( -1240 1792 264 ) bricks/c_sr_mr5 -32 16 -180 1 -1 0 0 0 +( -1184 1664 304 ) ( -800 1664 304 ) ( -800 1664 288 ) bricks/c_sr_mr5 -32 16 -180 1 -1 0 0 0 +( -832 1792 280 ) ( -832 1792 264 ) ( -832 1664 288 ) bricks/c_sr_mr5 -64 16 -180 1 -1 0 0 0 +( -848 1976 264 ) ( -848 2048 264 ) ( -848 2012 304 ) bricks/c_sr_mr5 0 -8 349 1 1 0 0 0 +} +// brush 1874 +{ +( -832 1920 248 ) ( -1216 1920 248 ) ( -1216 1792 264 ) bricks/c_sr_mr5 -32 -15 -180 1 1 0 0 0 +( -1216 1920 264 ) ( -832 1920 264 ) ( -832 1792 280 ) bricks/c_sr_mr5 63 30 90 1 1 0 0 0 +( -856 1920 264 ) ( -1240 1920 264 ) ( -1240 1920 248 ) bricks/c_sr_mr5 -32 16 -180 1 -1 0 0 0 +( -1184 1792 280 ) ( -800 1792 280 ) ( -800 1792 264 ) bricks/c_sr_mr5 -32 16 -180 1 -1 0 0 0 +( -832 1920 264 ) ( -832 1920 248 ) ( -832 1792 264 ) bricks/c_sr_mr5 -64 16 -180 1 -1 0 0 0 +( -848 1976 248 ) ( -848 2048 248 ) ( -848 2012 280 ) bricks/c_sr_mr5 0 -1 353 1 1 0 0 0 +} +// brush 1875 +{ +( -832 2048 240 ) ( -1216 2048 240 ) ( -1216 1920 248 ) bricks/c_sr_mr5 -32 -15 -180 1 1 0 0 0 +( -1216 2048 256 ) ( -832 2048 256 ) ( -832 1920 264 ) bricks/c_sr_mr5 63 30 90 1 1 0 0 0 +( -856 2048 256 ) ( -1240 2048 256 ) ( -1240 2048 240 ) bricks/c_sr_mr5 -32 16 -180 1 -1 0 0 0 +( -1184 1920 264 ) ( -800 1920 264 ) ( -800 1920 248 ) bricks/c_sr_mr5 -32 16 -180 1 -1 0 0 0 +( -832 2048 256 ) ( -832 2048 240 ) ( -832 1920 248 ) bricks/c_sr_mr5 -64 16 -180 1 -1 0 0 0 +( -848 1976 240 ) ( -848 2048 240 ) ( -848 2012 264 ) bricks/c_sr_mr5 0 -3 356 1 1 0 0 0 +} +// brush 1876 +{ +( -832 2048 240 ) ( -1216 2048 240 ) ( -1216 1920 248 ) bricks/c_sr_mr5 -32 -15 -180 1 1 0 0 0 +( -1216 2048 256 ) ( -832 2048 256 ) ( -832 1920 264 ) bricks/c_sr_mr5 -64 0 -90 1 1 0 0 0 +( -856 2048 256 ) ( -1240 2048 256 ) ( -1240 2048 240 ) bricks/c_sr_mr5 -32 16 -180 1 -1 0 0 0 +( -1216 2048 240 ) ( -1216 2048 256 ) ( -1216 1920 264 ) bricks/c_sr_mr5 -64 16 -180 1 -1 0 0 0 +( -1184 1920 264 ) ( -800 1920 264 ) ( -800 1920 248 ) bricks/c_sr_mr5 -32 16 -180 1 -1 0 0 0 +( -1200 1176 240 ) ( -1200 1152 240 ) ( -1200 1164 264 ) bricks/c_sr_mr5 0 -3 356 1 1 0 0 0 +} +// brush 1877 +{ +( -832 1920 248 ) ( -1216 1920 248 ) ( -1216 1792 264 ) bricks/c_sr_mr5 -93 -12 -173 0.999881 1.000138 0 0 0 +( -1216 1920 264 ) ( -832 1920 264 ) ( -832 1792 280 ) bricks/c_sr_mr5 -64 0 -90 1 1 0 0 0 +( -856 1920 264 ) ( -1240 1920 264 ) ( -1240 1920 248 ) bricks/c_sr_mr5 -107 17 173 1.000127 -1.000002 0 0 0 +( -1216 1920 248 ) ( -1216 1920 264 ) ( -1216 1792 280 ) bricks/c_sr_mr5 -31 22 173 1.000129 -1.000017 0 0 0 +( -1184 1792 280 ) ( -800 1792 280 ) ( -800 1792 264 ) bricks/c_sr_mr5 -107 17 173 1.000127 -1.000002 0 0 0 +( -1200 1176 248 ) ( -1200 1152 248 ) ( -1200 1164 280 ) bricks/c_sr_mr5 0 0 353 1 1 0 0 0 +} +// brush 1878 +{ +( -832 1792 264 ) ( -1216 1792 264 ) ( -1216 1664 288 ) bricks/c_sr_mr5 -74 3 -168 1.000082 0.999819 0 0 0 +( -1216 1792 280 ) ( -832 1792 280 ) ( -832 1664 304 ) bricks/c_sr_mr5 -64 0 -90 1 1 0 0 0 +( -856 1792 280 ) ( -1240 1792 280 ) ( -1240 1792 264 ) bricks/c_sr_mr5 -98 0 169 1.000062 -1.000014 0 0 0 +( -1216 1792 264 ) ( -1216 1792 280 ) ( -1216 1664 304 ) bricks/c_sr_mr5 -47 10 169 1.000059 -1.000022 0 0 0 +( -1184 1664 304 ) ( -800 1664 304 ) ( -800 1664 288 ) bricks/c_sr_mr5 -98 0 169 1.000062 -1.000014 0 0 0 +( -1200 1176 264 ) ( -1200 1152 264 ) ( -1200 1164 304 ) bricks/c_sr_mr5 0 -8 349 1 1 0 0 0 +} +// brush 1879 +{ +( -832 1664 288 ) ( -1216 1664 288 ) ( -1216 1536 320 ) bricks/c_sr_mr5 -52 -7 -166 0.999868 1.000164 0 0 0 +( -1216 1664 304 ) ( -832 1664 304 ) ( -832 1536 336 ) bricks/c_sr_mr5 -64 0 -90 1 1 0 0 0 +( -856 1664 304 ) ( -1240 1664 304 ) ( -1240 1664 288 ) bricks/c_sr_mr5 -82 19 166 1.000160 -1.000015 0 0 0 +( -1216 1664 288 ) ( -1216 1664 304 ) ( -1216 1536 336 ) bricks/c_sr_mr5 -58 24 165 0.999923 -0.999942 0 0 0 +( -1184 1536 336 ) ( -800 1536 336 ) ( -800 1536 320 ) bricks/c_sr_mr5 -82 19 166 1.000160 -1.000015 0 0 0 +( -1200 1176 288 ) ( -1200 1152 288 ) ( -1200 1164 336 ) bricks/c_sr_mr5 0 9 346 1 1 0 0 0 +} +// brush 1880 +{ +( -832 1536 320 ) ( -1216 1536 320 ) ( -1216 1408 344 ) bricks/c_sr_mr5 -32 9 -169 0.999796 1.000059 0 0 0 +( -1216 1536 336 ) ( -832 1536 336 ) ( -832 1408 360 ) bricks/c_sr_mr5 -64 0 -90 1 1 0 0 0 +( -856 1536 336 ) ( -1240 1536 336 ) ( -1240 1536 320 ) bricks/c_sr_mr5 -57 7 169 1.000062 -1.000029 0 0 0 +( -1216 1536 320 ) ( -1216 1536 336 ) ( -1216 1408 360 ) bricks/c_sr_mr5 -4 16 168 0.999822 -1.000007 0 0 0 +( -1184 1408 360 ) ( -800 1408 360 ) ( -800 1408 344 ) bricks/c_sr_mr5 -57 7 169 1.000062 -1.000029 0 0 0 +( -1200 1176 320 ) ( -1200 1152 320 ) ( -1200 1164 360 ) bricks/c_sr_mr5 0 -2 349 1 1 0 0 0 +} +// brush 1881 +{ +( -832 1408 344 ) ( -1216 1408 344 ) ( -1216 1280 360 ) bricks/c_sr_mr5 -93 -10 -173 1.000123 1.000138 0 0 0 +( -1216 1408 360 ) ( -832 1408 360 ) ( -832 1280 376 ) bricks/c_sr_mr5 -64 0 -90 1 1 0 0 0 +( -856 1408 360 ) ( -1240 1408 360 ) ( -1240 1408 344 ) bricks/c_sr_mr5 -107 20 173 1.000129 -1.000032 0 0 0 +( -1216 1408 344 ) ( -1216 1408 360 ) ( -1216 1280 376 ) bricks/c_sr_mr5 -31 24 173 1.000129 -1.000002 0 0 0 +( -1184 1280 376 ) ( -800 1280 376 ) ( -800 1280 360 ) bricks/c_sr_mr5 -107 20 173 1.000129 -1.000032 0 0 0 +( -1200 1176 344 ) ( -1200 1152 344 ) ( -1200 1164 376 ) bricks/c_sr_mr5 0 0 353 1 1 0 0 0 +} +// brush 1882 +{ +( -832 1280 360 ) ( -1216 1280 360 ) ( -1216 1152 368 ) bricks/c_sr_mr5 -97 0 -175 1.000143 1.000143 0 0 0 +( -1216 1280 376 ) ( -832 1280 376 ) ( -832 1152 384 ) bricks/c_sr_mr5 -64 0 -90 1 1 0 0 0 +( -856 1280 376 ) ( -1240 1280 376 ) ( -1240 1280 360 ) bricks/c_sr_mr5 -108 30 174 0.999900 -1.000001 0 0 0 +( -1216 1280 360 ) ( -1216 1280 376 ) ( -1216 1152 384 ) bricks/c_sr_mr5 -21 14 174 0.999900 -0.999985 0 0 0 +( -1184 1152 384 ) ( -800 1152 384 ) ( -800 1152 368 ) bricks/c_sr_mr5 -108 30 174 0.999900 -1.000001 0 0 0 +( -1200 1176 360 ) ( -1200 1152 360 ) ( -1200 1164 384 ) bricks/c_sr_mr5 0 -1 356 1 1 0 0 0 +} +// brush 1883 +{ +( -832 2048 224 ) ( -1216 2048 224 ) ( -1216 1920 232 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 2048 240 ) ( -832 2048 240 ) ( -832 1920 248 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -856 2048 240 ) ( -1240 2048 240 ) ( -1240 2048 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 2048 224 ) ( -1216 2048 240 ) ( -1216 1920 248 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1168 1920 248 ) ( -784 1920 248 ) ( -784 1920 232 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -816 2048 240 ) ( -816 2048 224 ) ( -816 1920 232 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1884 +{ +( -832 1920 232 ) ( -1216 1920 232 ) ( -1216 1792 248 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 1920 248 ) ( -832 1920 248 ) ( -832 1792 264 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -840 1920 248 ) ( -1224 1920 248 ) ( -1224 1920 232 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 1920 232 ) ( -1216 1920 248 ) ( -1216 1792 264 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1168 1792 264 ) ( -784 1792 264 ) ( -784 1792 248 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -816 1920 248 ) ( -816 1920 232 ) ( -816 1792 248 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1885 +{ +( -832 1792 248 ) ( -1216 1792 248 ) ( -1216 1664 272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 1792 264 ) ( -832 1792 264 ) ( -832 1664 288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -840 1792 264 ) ( -1224 1792 264 ) ( -1224 1792 248 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 1792 248 ) ( -1216 1792 264 ) ( -1216 1664 288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1168 1664 288 ) ( -784 1664 288 ) ( -784 1664 272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -816 1792 264 ) ( -816 1792 248 ) ( -816 1664 272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1886 +{ +( -832 1664 272 ) ( -1216 1664 272 ) ( -1216 1536 304 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 1664 288 ) ( -832 1664 288 ) ( -832 1536 320 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -840 1664 288 ) ( -1224 1664 288 ) ( -1224 1664 272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 1664 272 ) ( -1216 1664 288 ) ( -1216 1536 320 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1184 1536 320 ) ( -800 1536 320 ) ( -800 1536 304 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -816 1664 288 ) ( -816 1664 272 ) ( -816 1536 304 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1887 +{ +( -832 1536 304 ) ( -1216 1536 304 ) ( -1216 1408 328 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 1536 320 ) ( -832 1536 320 ) ( -832 1408 344 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -856 1536 320 ) ( -1240 1536 320 ) ( -1240 1536 304 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 1536 304 ) ( -1216 1536 320 ) ( -1216 1408 344 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1168 1408 344 ) ( -784 1408 344 ) ( -784 1408 328 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -816 1536 320 ) ( -816 1536 304 ) ( -816 1408 328 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1888 +{ +( -832 1408 328 ) ( -1216 1408 328 ) ( -1216 1280 344 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 1408 344 ) ( -832 1408 344 ) ( -832 1280 360 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -840 1408 344 ) ( -1224 1408 344 ) ( -1224 1408 328 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 1408 328 ) ( -1216 1408 344 ) ( -1216 1280 360 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1168 1280 360 ) ( -784 1280 360 ) ( -784 1280 344 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -816 1408 344 ) ( -816 1408 328 ) ( -816 1280 344 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1889 +{ +( -832 1280 344 ) ( -1216 1280 344 ) ( -1216 1152 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 1280 360 ) ( -832 1280 360 ) ( -832 1152 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -840 1280 360 ) ( -1224 1280 360 ) ( -1224 1280 344 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 1280 344 ) ( -1216 1280 360 ) ( -1216 1152 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1168 1152 368 ) ( -784 1152 368 ) ( -784 1152 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -816 1280 360 ) ( -816 1280 344 ) ( -816 1152 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1890 +{ +( -264 3280 224 ) ( -448 3280 224 ) ( -448 2864 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -448 2864 240 ) ( -448 3280 240 ) ( -264 3280 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -448 2864 240 ) ( -264 2864 240 ) ( -264 2864 224 ) bricks/s_sr_m12ab 0 -128 0 1 1 0 0 0 +( 768 2880 240 ) ( 768 3296 240 ) ( 768 3296 224 ) bricks/s_sr_m12ab 0 -128 0 1 1 0 0 0 +( -264 3280 240 ) ( -448 3280 240 ) ( -448 3280 224 ) bricks/s_sr_m12ab 0 -128 0 1 1 0 0 0 +( -448 3280 240 ) ( -448 2864 240 ) ( -448 2864 224 ) bricks/s_sr_m12ab 0 -128 0 1 1 0 0 0 +} +// brush 1891 +{ +( -1022 2963 448 ) ( -1048 2984 416 ) ( -1128 2860 416 ) common/li_pv_v4a -34 1 237 1 1 0 1 7000 +( -1022 2963 448 ) ( -1128 2860 416 ) ( -1128 2860 464 ) common/li_pv_v4a -28 8 237 1 1 0 1 7000 +( -1022 3040 448 ) ( -1022 2984 448 ) ( -1128 3012 448 ) common/li_pv_v4a 0 -13 237 1 1 0 1 7000 +( -1084 2876 416 ) ( -1104 2888 416 ) ( -1094 2882 448 ) common/li_pv_v4a -28 8 237 1 1 0 1 7000 +( -1068 2944 416 ) ( -1048 2932 416 ) ( -1058 2938 448 ) common/li_pv_v4a -28 8 237 1 1 0 1 7000 +( -1104 2884 416 ) ( -1064 2944 416 ) ( -1084 2914 448 ) common/li_pv_v4a -55 4 237 1 1 0 1 7000 +} +// brush 1892 +{ +( -1022 2963 448 ) ( -1128 2860 416 ) ( -1099 2844 448 ) common/li_pv_v4a -34 1 237 1 1 0 1 7000 +( -1128 2860 464 ) ( -1128 2860 416 ) ( -1022 2963 448 ) common/li_pv_v4a -28 8 237 1 1 0 1 7000 +( -1022 3040 448 ) ( -1022 2984 448 ) ( -1128 3012 448 ) common/li_pv_v4a 0 -13 237 1 1 0 1 7000 +( -1084 2876 416 ) ( -1104 2888 416 ) ( -1094 2882 448 ) common/li_pv_v4a -28 8 237 1 1 0 1 7000 +( -1068 2944 424 ) ( -1048 2932 424 ) ( -1058 2938 448 ) common/li_pv_v4a -28 8 237 1 1 0 1 7000 +( -1048 2938 424 ) ( -1088 2876 424 ) ( -1068 2907 448 ) common/li_pv_v4a -55 4 237 1 1 0 1 7000 +} +// brush 1893 +{ +( -832 2592 448 ) ( -1200 2592 448 ) ( -1200 2720 448 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -816 2534 304 ) ( -800 2608 304 ) ( -800 2608 288 ) bricks/c_tn_m3 192 0 0 1 1 0 0 0 +( -816 2612 432 ) ( -800 2608 432 ) ( -800 2608 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -832 2536 304 ) ( -816 2534 304 ) ( -816 2534 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -824 2574 224 ) ( -816 2612 240 ) ( -832 2536 240 ) bricks/c_tn_m3 192 0 0 1 1 0 0 0 +( 992 2612 240 ) ( 976 2534 240 ) ( 1008 2534 240 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 1894 +{ +( -800 2748 448 ) ( -1168 2748 448 ) ( -1168 2876 448 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -800 2608 240 ) ( -774 2668 240 ) ( -774 2668 224 ) bricks/c_tn_m3 192 0 0 1 1 0 0 0 +( -788 2676 432 ) ( -774 2668 432 ) ( -774 2668 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -816 2612 448 ) ( -800 2608 448 ) ( -800 2608 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -802 2644 368 ) ( -788 2676 384 ) ( -816 2612 384 ) bricks/c_tn_m3 192 0 0 1 1 0 0 0 +( 992 2676 240 ) ( 976 2608 240 ) ( 1008 2608 240 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 1895 +{ +( -744 2880 448 ) ( -1112 2880 448 ) ( -1112 3008 448 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -774 2668 304 ) ( -730 2734 304 ) ( -730 2734 288 ) bricks/c_tn_m3 192 0 0 1 1 0 0 0 +( -744 2744 432 ) ( -730 2734 432 ) ( -730 2734 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -788 2676 448 ) ( -774 2668 448 ) ( -774 2668 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -766 2710 368 ) ( -744 2744 384 ) ( -788 2676 384 ) bricks/c_tn_m3 192 0 0 1 1 0 0 0 +( 992 2744 240 ) ( 976 2668 240 ) ( 1008 2668 240 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 1896 +{ +( -1084 3080 448 ) ( -956 3080 448 ) ( -956 2712 448 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -686 2778 224 ) ( -730 2734 224 ) ( -730 2734 240 ) bricks/c_tn_m3 192 0 0 1 1 0 0 0 +( -744 2744 448 ) ( -730 2734 448 ) ( -730 2734 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -696 2792 432 ) ( -686 2778 432 ) ( -686 2778 448 ) bricks/c_tn_m3 192 0 0 1 1 0 0 0 +( -720 2768 384 ) ( -744 2744 368 ) ( -696 2792 368 ) bricks/c_tn_m3 192 0 0 1 1 0 0 0 +( 992 2792 240 ) ( 976 2734 240 ) ( 1008 2734 240 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 1897 +{ +( -960 3160 448 ) ( -832 3160 448 ) ( -832 2792 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -620 2822 288 ) ( -686 2778 288 ) ( -686 2778 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -696 2792 448 ) ( -686 2778 448 ) ( -686 2778 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -628 2836 432 ) ( -620 2822 432 ) ( -620 2822 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -662 2814 384 ) ( -696 2792 368 ) ( -628 2836 368 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 992 2836 240 ) ( 976 2778 240 ) ( 1008 2778 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1898 +{ +( -828 3216 448 ) ( -700 3216 448 ) ( -700 2848 448 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -560 2848 224 ) ( -620 2822 224 ) ( -620 2822 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -628 2836 448 ) ( -620 2822 448 ) ( -620 2822 432 ) bricks/c_tn_m3 192 0 0 1 1 0 0 0 +( -564 2864 432 ) ( -560 2848 432 ) ( -560 2848 448 ) bricks/c_tn_m3 192 0 0 1 1 0 0 0 +( -596 2850 384 ) ( -628 2836 368 ) ( -564 2864 368 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 992 2864 240 ) ( 976 2822 240 ) ( 1008 2822 240 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 1899 +{ +( -672 3248 448 ) ( -544 3248 448 ) ( -544 2880 448 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +( -486 2864 288 ) ( -560 2848 288 ) ( -560 2848 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -564 2864 448 ) ( -560 2848 448 ) ( -560 2848 432 ) bricks/c_tn_m3 192 0 0 1 1 0 0 0 +( -488 2880 432 ) ( -486 2864 432 ) ( -486 2864 448 ) bricks/c_tn_m3 192 0 0 1 1 0 0 0 +( -526 2872 384 ) ( -564 2864 368 ) ( -488 2880 368 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 992 2880 240 ) ( 976 2848 240 ) ( 1008 2848 240 ) bricks/c_tn_m3 0 -64 0 1 1 0 0 0 +} +// brush 1900 +{ +( -672 3248 448 ) ( -544 3248 448 ) ( -544 2880 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -680 3232 432 ) ( -686 3248 432 ) ( -686 3248 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -526 3280 240 ) ( -686 3248 240 ) ( -686 3248 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -524 3264 448 ) ( -526 3280 448 ) ( -526 3280 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -602 3248 448 ) ( -524 3264 432 ) ( -680 3232 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1160 3280 240 ) ( -1176 3232 240 ) ( -1144 3232 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1901 +{ +( -828 3216 448 ) ( -700 3216 448 ) ( -700 2848 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -812 3176 432 ) ( -820 3190 432 ) ( -820 3190 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -686 3248 240 ) ( -820 3190 240 ) ( -820 3190 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -680 3232 448 ) ( -686 3248 448 ) ( -686 3248 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -746 3204 448 ) ( -680 3232 432 ) ( -812 3176 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1160 3248 240 ) ( -1176 3176 240 ) ( -1144 3176 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1902 +{ +( -960 3160 448 ) ( -832 3160 448 ) ( -832 2792 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -936 3096 288 ) ( -946 3108 288 ) ( -946 3108 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -820 3190 240 ) ( -946 3108 240 ) ( -946 3108 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -812 3176 448 ) ( -820 3190 448 ) ( -820 3190 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -874 3136 448 ) ( -812 3176 432 ) ( -936 3096 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1160 3190 240 ) ( -1176 3096 240 ) ( -1144 3096 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1903 +{ +( -1048 3108 448 ) ( -946 3108 448 ) ( -946 2984 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1048 2984 448 ) ( -936 3096 448 ) ( -936 3096 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1048 2984 288 ) ( -1060 2994 288 ) ( -1060 2994 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -946 3108 384 ) ( -1060 2994 384 ) ( -1060 2994 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -946 3108 288 ) ( -936 3096 288 ) ( -936 3096 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1160 3108 240 ) ( -1176 2984 240 ) ( -1144 2984 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1904 +{ +( -744 2880 448 ) ( -1112 2880 448 ) ( -1112 3008 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1048 2984 448 ) ( -1060 2994 448 ) ( -1060 2994 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1142 2868 368 ) ( -1060 2994 368 ) ( -1060 2994 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1128 2860 288 ) ( -1142 2868 288 ) ( -1142 2868 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1088 2922 288 ) ( -1128 2860 304 ) ( -1048 2984 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1160 2994 240 ) ( -1176 2860 240 ) ( -1144 2860 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1905 +{ +( -800 2748 448 ) ( -1168 2748 448 ) ( -1168 2876 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1128 2860 304 ) ( -1142 2868 304 ) ( -1142 2868 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1200 2734 368 ) ( -1142 2868 368 ) ( -1142 2868 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1184 2728 288 ) ( -1200 2734 288 ) ( -1200 2734 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1156 2794 288 ) ( -1184 2728 304 ) ( -1128 2860 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1160 2868 240 ) ( -1176 2728 240 ) ( -1144 2728 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1906 +{ +( -832 2592 448 ) ( -1200 2592 448 ) ( -1200 2720 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1184 2728 304 ) ( -1200 2734 304 ) ( -1200 2734 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1232 2574 368 ) ( -1200 2734 368 ) ( -1200 2734 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1216 2572 288 ) ( -1232 2574 288 ) ( -1232 2574 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1200 2650 224 ) ( -1216 2572 240 ) ( -1184 2728 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1160 2734 240 ) ( -1176 2572 240 ) ( -1144 2572 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1907 +{ +( -840 3224 416 ) ( -964 3144 416 ) ( -943 3118 448 ) bricks/c_tn_m1 -229 -11 327 1 -1 0 0 0 +( -943 3118 448 ) ( -964 3144 416 ) ( -964 3144 464 ) bricks/c_tn_m1 113 0 327 1 -1 0 0 0 +( -964 3144 464 ) ( -964 3144 416 ) ( -840 3224 416 ) bricks/c_tn_m1 -54 9 327 1 -1 0 0 0 +( -840 3224 464 ) ( -840 3224 416 ) ( -943 3118 448 ) bricks/c_tn_m1 113 0 327 1 -1 0 0 0 +( -992 3224 448 ) ( -964 3118 448 ) ( -1020 3118 448 ) bricks/c_tn_m1 -229 -11 327 1 -1 0 0 0 +} +// brush 1908 +{ +( -824 3195 448 ) ( -840 3224 416 ) ( -943 3118 448 ) bricks/c_tn_m1 -229 -11 327 1 -1 0 0 0 +( -840 3224 464 ) ( -840 3224 416 ) ( -824 3195 448 ) bricks/c_tn_m1 113 0 327 1 -1 0 0 0 +( -943 3118 448 ) ( -840 3224 416 ) ( -840 3224 464 ) bricks/c_tn_m1 113 0 327 1 -1 0 0 0 +( -992 3224 448 ) ( -964 3118 448 ) ( -1020 3118 448 ) bricks/c_tn_m1 -229 -11 327 1 -1 0 0 0 +} +// brush 1909 +{ +( -864 2304 448 ) ( -864 2539 448 ) ( -832 2536 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 2424 448 ) ( -832 2680 448 ) ( -832 2680 416 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 2536 416 ) ( -864 2539 448 ) ( -864 2304 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 2536 448 ) ( -864 2539 448 ) ( -832 2536 416 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -844 2496 448 ) ( -840 2496 416 ) ( -848 2496 416 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1910 +{ +( -448 3264 240 ) ( -524 3264 240 ) ( -524 3264 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -524 3264 240 ) ( -680 3232 240 ) ( -680 3232 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -680 3232 240 ) ( -812 3176 240 ) ( -812 3176 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -812 3176 240 ) ( -936 3096 240 ) ( -936 3096 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -936 3096 240 ) ( -1048 2984 240 ) ( -1048 2984 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1048 2984 240 ) ( -1128 2860 240 ) ( -1128 2860 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1128 2860 240 ) ( -1184 2728 240 ) ( -1184 2728 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 2572 224 ) ( -1184 2728 224 ) ( -1184 2728 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 2496 224 ) ( -1216 2572 224 ) ( -1216 2572 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 3264 224 ) ( -1216 1728 224 ) ( 320 1728 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 320 1728 240 ) ( -1216 1728 240 ) ( -1216 3264 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -448 3044 240 ) ( -448 3072 176 ) ( -448 3016 176 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1080 2496 240 ) ( -1048 2496 176 ) ( -1112 2496 176 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -640 2688 240 ) ( -448 2880 224 ) ( -832 2496 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1911 +{ +( -574 2895 448 ) ( -488 2880 416 ) ( -491 2912 448 ) bricks/c_tn_m1 -97 7 12 1 1 0 0 0 +( -491 2912 448 ) ( -488 2880 416 ) ( -488 2880 464 ) bricks/c_tn_m1 -97 7 12 1 1 0 0 0 +( -488 2880 464 ) ( -488 2880 416 ) ( -574 2895 448 ) bricks/c_tn_m1 -97 7 12 1 1 0 0 0 +( -574 2644 448 ) ( -488 2656 448 ) ( -488 2632 448 ) bricks/c_tn_m1 -97 7 12 1 1 0 0 0 +} +// brush 1912 +{ +( -574 2895 448 ) ( -564 2864 416 ) ( -488 2880 416 ) bricks/c_tn_m1 -97 7 12 1 1 0 0 0 +( -488 2880 416 ) ( -564 2864 416 ) ( -564 2864 464 ) bricks/c_tn_m1 -97 7 12 1 1 0 0 0 +( -564 2864 464 ) ( -564 2864 416 ) ( -574 2895 448 ) bricks/c_tn_m1 -97 7 12 1 1 0 0 0 +( -574 2895 464 ) ( -574 2895 448 ) ( -488 2880 416 ) bricks/c_tn_m1 -97 7 12 1 1 0 0 0 +( -574 2644 448 ) ( -488 2656 448 ) ( -488 2632 448 ) bricks/c_tn_m1 -97 7 12 1 1 0 0 0 +} +// brush 1913 +{ +( -643 2864 448 ) ( -564 2864 416 ) ( -574 2895 448 ) bricks/c_tn_m1 0 -2 24 1 1 0 0 0 +( -574 2895 448 ) ( -564 2864 416 ) ( -564 2864 464 ) bricks/c_tn_m1 0 -2 24 1 1 0 0 0 +( -564 2864 464 ) ( -564 2864 416 ) ( -643 2864 448 ) bricks/c_tn_m1 0 -2 24 1 1 0 0 0 +( -643 2644 448 ) ( -564 2656 448 ) ( -564 2632 448 ) bricks/c_tn_m1 0 -2 24 1 1 0 0 0 +} +// brush 1914 +{ +( -643 2864 448 ) ( -628 2836 416 ) ( -564 2864 416 ) bricks/c_tn_m1 0 -2 24 1 1 0 0 0 +( -564 2864 416 ) ( -628 2836 416 ) ( -628 2836 464 ) bricks/c_tn_m1 0 -2 24 1 1 0 0 0 +( -628 2836 464 ) ( -628 2836 416 ) ( -643 2864 448 ) bricks/c_tn_m1 0 -2 24 1 1 0 0 0 +( -643 2864 448 ) ( -564 2864 416 ) ( -564 2864 464 ) bricks/c_tn_m1 0 -2 24 1 1 0 0 0 +( -643 2644 448 ) ( -564 2656 448 ) ( -564 2632 448 ) bricks/c_tn_m1 0 -2 24 1 1 0 0 0 +} +// brush 1915 +{ +( -716 2817 448 ) ( -628 2836 416 ) ( -643 2864 448 ) bricks/c_tn_m1 0 0 33 1 1 0 0 0 +( -643 2864 448 ) ( -628 2836 416 ) ( -628 2836 464 ) bricks/c_tn_m1 0 0 33 1 1 0 0 0 +( -628 2836 464 ) ( -628 2836 416 ) ( -716 2817 448 ) bricks/c_tn_m1 0 0 33 1 1 0 0 0 +( -716 2644 448 ) ( -628 2656 448 ) ( -628 2632 448 ) bricks/c_tn_m1 0 0 33 1 1 0 0 0 +} +// brush 1916 +{ +( -716 2817 448 ) ( -696 2792 416 ) ( -628 2836 416 ) bricks/c_tn_m1 0 0 33 1 1 0 0 0 +( -628 2836 416 ) ( -696 2792 416 ) ( -696 2792 464 ) bricks/c_tn_m1 0 0 33 1 1 0 0 0 +( -696 2792 464 ) ( -696 2792 416 ) ( -716 2817 448 ) bricks/c_tn_m1 0 0 33 1 1 0 0 0 +( -716 2817 448 ) ( -628 2836 416 ) ( -628 2836 464 ) bricks/c_tn_m1 0 0 33 1 1 0 0 0 +( -716 2644 448 ) ( -628 2656 448 ) ( -628 2632 448 ) bricks/c_tn_m1 0 0 33 1 1 0 0 0 +} +// brush 1917 +{ +( -721 2716 448 ) ( -696 2696 416 ) ( -668 2769 448 ) bricks/c_tn_m1 -116 0 315 1 1 0 0 0 +( -696 2696 464 ) ( -696 2696 416 ) ( -721 2716 448 ) bricks/c_tn_m1 110 -30 315 1 1 0 0 0 +( -668 2769 448 ) ( -696 2696 416 ) ( -696 2696 464 ) bricks/c_tn_m1 -29 -17 315 1 1 0 0 0 +( -721 2596 448 ) ( -668 2608 448 ) ( -668 2584 448 ) bricks/c_tn_m1 -116 0 315 1 1 0 0 0 +} +// brush 1918 +{ +( -668 2769 448 ) ( -696 2696 416 ) ( -648 2744 416 ) bricks/c_tn_m1 -116 0 315 1 1 0 0 0 +( -648 2744 416 ) ( -696 2696 416 ) ( -696 2696 464 ) bricks/c_tn_m1 -29 -17 315 1 1 0 0 0 +( -668 2769 448 ) ( -648 2744 416 ) ( -648 2744 464 ) bricks/c_tn_m1 -29 -17 315 1 1 0 0 0 +( -696 2696 464 ) ( -696 2696 416 ) ( -668 2769 448 ) bricks/c_tn_m1 -29 -17 315 1 1 0 0 0 +( -696 2596 448 ) ( -648 2608 448 ) ( -648 2584 448 ) bricks/c_tn_m1 -116 0 315 1 1 0 0 0 +} +// brush 1919 +{ +( -788 2676 416 ) ( -744 2744 416 ) ( -769 2764 448 ) bricks/c_tn_m1 0 6 57 1 1 0 0 0 +( -744 2744 464 ) ( -744 2744 416 ) ( -788 2676 416 ) bricks/c_tn_m1 0 6 57 1 1 0 0 0 +( -769 2764 448 ) ( -744 2744 416 ) ( -744 2744 464 ) bricks/c_tn_m1 0 6 57 1 1 0 0 0 +( -788 2676 464 ) ( -788 2676 416 ) ( -769 2764 448 ) bricks/c_tn_m1 0 6 57 1 1 0 0 0 +( -788 2644 448 ) ( -744 2656 448 ) ( -744 2632 448 ) bricks/c_tn_m1 0 6 57 1 1 0 0 0 +} +// brush 1920 +{ +( -816 2691 448 ) ( -788 2676 416 ) ( -769 2764 448 ) bricks/c_tn_m1 0 6 57 1 1 0 0 0 +( -788 2676 464 ) ( -788 2676 416 ) ( -816 2691 448 ) bricks/c_tn_m1 0 6 57 1 1 0 0 0 +( -769 2764 448 ) ( -788 2676 416 ) ( -788 2676 464 ) bricks/c_tn_m1 0 6 57 1 1 0 0 0 +( -816 2644 448 ) ( -769 2656 448 ) ( -769 2632 448 ) bricks/c_tn_m1 0 6 57 1 1 0 0 0 +} +// brush 1921 +{ +( -816 2612 416 ) ( -788 2676 416 ) ( -816 2691 448 ) bricks/c_tn_m1 -19 16 66 1 1 0 0 0 +( -788 2676 464 ) ( -788 2676 416 ) ( -816 2612 416 ) bricks/c_tn_m1 -19 16 66 1 1 0 0 0 +( -816 2691 448 ) ( -788 2676 416 ) ( -788 2676 464 ) bricks/c_tn_m1 -19 16 66 1 1 0 0 0 +( -816 2612 464 ) ( -816 2612 416 ) ( -816 2691 448 ) bricks/c_tn_m1 -19 16 66 1 1 0 0 0 +( -816 2644 448 ) ( -788 2656 448 ) ( -788 2632 448 ) bricks/c_tn_m1 -19 16 66 1 1 0 0 0 +} +// brush 1922 +{ +( -847 2622 448 ) ( -816 2612 416 ) ( -816 2691 448 ) bricks/c_tn_m1 -19 16 66 1 1 0 0 0 +( -816 2612 464 ) ( -816 2612 416 ) ( -847 2622 448 ) bricks/c_tn_m1 -19 16 66 1 1 0 0 0 +( -816 2691 448 ) ( -816 2612 416 ) ( -816 2612 464 ) bricks/c_tn_m1 -19 16 66 1 1 0 0 0 +( -847 2644 448 ) ( -816 2656 448 ) ( -816 2632 448 ) bricks/c_tn_m1 -19 16 66 1 1 0 0 0 +} +// brush 1923 +{ +( -832 2536 416 ) ( -816 2612 416 ) ( -847 2622 448 ) bricks/c_tn_m1 0 -12 79 1 1 0 0 0 +( -816 2612 464 ) ( -816 2612 416 ) ( -832 2536 416 ) bricks/c_tn_m1 0 -12 79 1 1 0 0 0 +( -847 2622 448 ) ( -816 2612 416 ) ( -816 2612 464 ) bricks/c_tn_m1 0 -12 79 1 1 0 0 0 +( -832 2536 416 ) ( -847 2622 448 ) ( -847 2622 464 ) bricks/c_tn_m1 0 -12 79 1 1 0 0 0 +( -847 2644 448 ) ( -816 2656 448 ) ( -816 2632 448 ) bricks/c_tn_m1 0 -12 79 1 1 0 0 0 +} +// brush 1924 +{ +( -864 2539 448 ) ( -832 2536 416 ) ( -847 2622 448 ) bricks/c_tn_m1 0 -12 79 1 1 0 0 0 +( -832 2536 464 ) ( -832 2536 416 ) ( -864 2539 448 ) bricks/c_tn_m1 0 -12 79 1 1 0 0 0 +( -847 2622 448 ) ( -832 2536 416 ) ( -832 2536 464 ) bricks/c_tn_m1 0 -12 79 1 1 0 0 0 +( -864 2644 448 ) ( -832 2656 448 ) ( -832 2632 448 ) bricks/c_tn_m1 0 -12 79 1 1 0 0 0 +} +// brush 1925 +{ +( -521 3232 448 ) ( -524 3264 416 ) ( -670 3201 448 ) bricks/c_tn_m1 0 -6 192 1 1 0 0 0 +( -524 3264 464 ) ( -524 3264 416 ) ( -521 3232 448 ) bricks/c_tn_m1 0 -6 192 1 1 0 0 0 +( -670 3201 448 ) ( -524 3264 416 ) ( -524 3264 464 ) bricks/c_tn_m1 0 -6 192 1 1 0 0 0 +( -964 3264 448 ) ( -936 3201 448 ) ( -992 3201 448 ) bricks/c_tn_m1 0 -6 192 1 1 0 0 0 +} +// brush 1926 +{ +( -524 3264 416 ) ( -680 3232 416 ) ( -670 3201 448 ) bricks/c_tn_m1 0 -6 192 1 1 0 0 0 +( -670 3201 448 ) ( -680 3232 416 ) ( -680 3232 464 ) bricks/c_tn_m1 0 -6 192 1 1 0 0 0 +( -680 3232 464 ) ( -680 3232 416 ) ( -524 3264 416 ) bricks/c_tn_m1 0 -6 192 1 1 0 0 0 +( -524 3264 464 ) ( -524 3264 416 ) ( -670 3201 448 ) bricks/c_tn_m1 0 -6 192 1 1 0 0 0 +( -964 3264 448 ) ( -936 3201 448 ) ( -992 3201 448 ) bricks/c_tn_m1 0 -6 192 1 1 0 0 0 +} +// brush 1927 +{ +( -670 3201 448 ) ( -680 3232 416 ) ( -796 3147 448 ) bricks/c_tn_m1 30 -8 203 1 1 0 0 0 +( -680 3232 464 ) ( -680 3232 416 ) ( -670 3201 448 ) bricks/c_tn_m1 30 -8 203 1 1 0 0 0 +( -796 3147 448 ) ( -680 3232 416 ) ( -680 3232 464 ) bricks/c_tn_m1 30 -8 203 1 1 0 0 0 +( -964 3232 448 ) ( -936 3147 448 ) ( -992 3147 448 ) bricks/c_tn_m1 30 -8 203 1 1 0 0 0 +} +// brush 1928 +{ +( -680 3232 416 ) ( -812 3176 416 ) ( -796 3147 448 ) bricks/c_tn_m1 30 -8 203 1 1 0 0 0 +( -796 3147 448 ) ( -812 3176 416 ) ( -812 3176 464 ) bricks/c_tn_m1 30 -8 203 1 1 0 0 0 +( -812 3176 464 ) ( -812 3176 416 ) ( -680 3232 416 ) bricks/c_tn_m1 30 -8 203 1 1 0 0 0 +( -680 3232 464 ) ( -680 3232 416 ) ( -796 3147 448 ) bricks/c_tn_m1 30 -8 203 1 1 0 0 0 +( -964 3232 448 ) ( -936 3147 448 ) ( -992 3147 448 ) bricks/c_tn_m1 30 -8 203 1 1 0 0 0 +} +// brush 1929 +{ +( -915 3070 448 ) ( -936 3096 416 ) ( -1022 2963 448 ) bricks/c_tn_m1 -42 -2 225 1 1 0 0 0 +( -936 3096 464 ) ( -936 3096 416 ) ( -915 3070 448 ) bricks/c_tn_m1 -42 -2 225 1 1 0 0 0 +( -1022 2963 448 ) ( -936 3096 416 ) ( -936 3096 464 ) bricks/c_tn_m1 -42 -2 225 1 1 0 0 0 +( -964 3096 448 ) ( -936 2963 448 ) ( -992 2963 448 ) bricks/c_tn_m1 -42 -2 225 1 1 0 0 0 +} +// brush 1930 +{ +( -1022 2963 448 ) ( -936 3096 416 ) ( -1048 2984 416 ) bricks/c_tn_m1 -42 -2 225 1 1 0 0 0 +( -1022 2963 448 ) ( -1048 2984 416 ) ( -1048 2984 464 ) bricks/c_tn_m1 -42 -2 225 1 1 0 0 0 +( -1048 2984 416 ) ( -936 3096 416 ) ( -936 3096 464 ) bricks/c_tn_m1 -42 -2 225 1 1 0 0 0 +( -936 3096 464 ) ( -936 3096 416 ) ( -1022 2963 448 ) bricks/c_tn_m1 -42 -2 225 1 1 0 0 0 +( -964 3096 448 ) ( -936 2963 448 ) ( -992 2963 448 ) bricks/c_tn_m1 -42 -2 225 1 1 0 0 0 +} +// brush 1931 +{ +( -1072 2997 448 ) ( -1098 3018 416 ) ( -1178 2894 416 ) bricks/c_tn_m1 19 13 122 1 1 0 0 0 +( -1098 3018 464 ) ( -1098 3018 416 ) ( -1072 2997 448 ) bricks/c_tn_m1 3 2 122 1 1 0 0 0 +( -1178 2894 416 ) ( -1098 3018 416 ) ( -1098 3018 464 ) bricks/c_tn_m1 45 1 122 1 1 0 0 0 +( -1072 2997 448 ) ( -1178 2894 416 ) ( -1178 2894 464 ) bricks/c_tn_m1 3 2 122 1 1 0 0 0 +( -1014 3018 448 ) ( -986 2894 448 ) ( -1042 2894 448 ) bricks/c_tn_m1 19 13 122 1 1 0 0 0 +} +// brush 1932 +{ +( -1072 2997 448 ) ( -1178 2894 416 ) ( -1149 2878 448 ) bricks/c_tn_m1 19 13 122 1 1 0 0 0 +( -1149 2878 448 ) ( -1178 2894 416 ) ( -1178 2894 464 ) bricks/c_tn_m1 3 2 122 1 1 0 0 0 +( -1178 2894 464 ) ( -1178 2894 416 ) ( -1072 2997 448 ) bricks/c_tn_m1 3 2 122 1 1 0 0 0 +( -1014 2997 448 ) ( -986 2878 448 ) ( -1042 2878 448 ) bricks/c_tn_m1 19 13 122 1 1 0 0 0 +} +// brush 1933 +{ +( -1099 2844 448 ) ( -1128 2860 416 ) ( -1184 2728 416 ) bricks/c_tn_m1 -159 -11 247 1 1 0 0 0 +( -1128 2860 464 ) ( -1128 2860 416 ) ( -1099 2844 448 ) bricks/c_tn_m1 -159 -11 247 1 1 0 0 0 +( -1184 2728 416 ) ( -1128 2860 416 ) ( -1128 2860 464 ) bricks/c_tn_m1 -159 -11 247 1 1 0 0 0 +( -1099 2844 448 ) ( -1184 2728 416 ) ( -1184 2728 464 ) bricks/c_tn_m1 -159 -11 247 1 1 0 0 0 +( -964 2860 448 ) ( -936 2728 448 ) ( -992 2728 448 ) bricks/c_tn_m1 -159 -11 247 1 1 0 0 0 +} +// brush 1934 +{ +( -1099 2844 448 ) ( -1184 2728 416 ) ( -1153 2718 448 ) bricks/c_tn_m1 -159 -11 247 1 1 0 0 0 +( -1153 2718 448 ) ( -1184 2728 416 ) ( -1184 2728 464 ) bricks/c_tn_m1 -159 -11 247 1 1 0 0 0 +( -1184 2728 464 ) ( -1184 2728 416 ) ( -1099 2844 448 ) bricks/c_tn_m1 -159 -11 247 1 1 0 0 0 +( -964 2844 448 ) ( -936 2718 448 ) ( -992 2718 448 ) bricks/c_tn_m1 -159 -11 247 1 1 0 0 0 +} +// brush 1935 +{ +( -1153 2718 448 ) ( -1184 2728 416 ) ( -1216 2572 416 ) bricks/c_tn_m1 -52 4 258 1 1 0 0 0 +( -1184 2728 464 ) ( -1184 2728 416 ) ( -1153 2718 448 ) bricks/c_tn_m1 -52 4 258 1 1 0 0 0 +( -1216 2572 416 ) ( -1184 2728 416 ) ( -1184 2728 464 ) bricks/c_tn_m1 -52 4 258 1 1 0 0 0 +( -1153 2718 448 ) ( -1216 2572 416 ) ( -1216 2572 464 ) bricks/c_tn_m1 -52 4 258 1 1 0 0 0 +( -964 2728 448 ) ( -936 2572 448 ) ( -992 2572 448 ) bricks/c_tn_m1 -52 4 258 1 1 0 0 0 +} +// brush 1936 +{ +( -1153 2718 448 ) ( -1216 2572 416 ) ( -1184 2569 448 ) bricks/c_tn_m1 -52 4 258 1 1 0 0 0 +( -1184 2569 448 ) ( -1216 2572 416 ) ( -1216 2572 464 ) bricks/c_tn_m1 -52 4 258 1 1 0 0 0 +( -1216 2572 464 ) ( -1216 2572 416 ) ( -1153 2718 448 ) bricks/c_tn_m1 -52 4 258 1 1 0 0 0 +( -964 2718 448 ) ( -936 2569 448 ) ( -992 2569 448 ) bricks/c_tn_m1 -52 4 258 1 1 0 0 0 +} +// brush 1937 +{ +( -1216 2572 448 ) ( -1184 2569 448 ) ( -1184 2496 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 2224 448 ) ( -1216 1872 448 ) ( -1216 1872 432 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 2496 448 ) ( -1184 2569 448 ) ( -1216 2572 416 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 2496 416 ) ( -1216 2496 416 ) ( -1200 2496 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 2572 416 ) ( -1184 2569 448 ) ( -1216 2572 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 1938 +{ +( -706 2744 240 ) ( -706 2804 240 ) ( -744 2804 240 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -744 2804 256 ) ( -706 2804 256 ) ( -706 2744 256 ) bricks/c_sr_mr5 0 1 45 1 1 0 0 0 +( -744 2744 256 ) ( -696 2792 256 ) ( -696 2792 240 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -744 2744 240 ) ( -756 2754 240 ) ( -756 2754 256 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -706 2804 256 ) ( -756 2754 256 ) ( -756 2754 240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -706 2804 240 ) ( -696 2792 240 ) ( -696 2792 256 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +} +// brush 1939 +{ +( -832 2592 256 ) ( -1200 2592 256 ) ( -1200 2720 256 ) bricks/c_sr_mr5 0 -13 79 1 1 0 0 0 +( -1200 2720 240 ) ( -1200 2592 240 ) ( -832 2592 240 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -832 2536 272 ) ( -816 2612 272 ) ( -816 2612 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -832 2616 112 ) ( -816 2612 112 ) ( -816 2612 272 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -832 2536 128 ) ( -816 2534 128 ) ( -816 2534 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -848 2538 112 ) ( -832 2616 112 ) ( -832 2616 272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1940 +{ +( -800 2748 256 ) ( -1168 2748 256 ) ( -1168 2876 256 ) bricks/c_sr_mr5 0 15 66 1 1 0 0 0 +( -1168 2876 240 ) ( -1168 2748 240 ) ( -800 2748 240 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -816 2612 272 ) ( -788 2676 272 ) ( -788 2676 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -788 2676 272 ) ( -802 2684 272 ) ( -802 2684 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -816 2612 112 ) ( -832 2616 112 ) ( -832 2616 272 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -802 2684 272 ) ( -832 2616 272 ) ( -832 2616 112 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1941 +{ +( -744 2880 256 ) ( -1112 2880 256 ) ( -1112 3008 256 ) bricks/c_sr_mr5 0 5 57 1 1 0 0 0 +( -1112 3008 240 ) ( -1112 2880 240 ) ( -744 2880 240 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -788 2676 272 ) ( -744 2744 272 ) ( -744 2744 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -744 2744 272 ) ( -756 2754 272 ) ( -756 2754 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -788 2676 112 ) ( -802 2684 112 ) ( -802 2684 272 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -802 2684 112 ) ( -756 2754 112 ) ( -756 2754 272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1942 +{ +( -832 2792 240 ) ( -832 3160 240 ) ( -960 3160 240 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -960 3160 256 ) ( -832 3160 256 ) ( -832 2792 256 ) bricks/c_sr_mr5 0 -1 33 1 1 0 0 0 +( -628 2836 224 ) ( -696 2792 224 ) ( -696 2792 384 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -696 2792 224 ) ( -706 2804 224 ) ( -706 2804 384 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -628 2836 384 ) ( -636 2850 384 ) ( -636 2850 224 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -636 2850 384 ) ( -706 2804 384 ) ( -706 2804 224 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1943 +{ +( -700 2848 240 ) ( -700 3216 240 ) ( -828 3216 240 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -828 3216 256 ) ( -700 3216 256 ) ( -700 2848 256 ) bricks/c_sr_mr5 0 -2 24 1 1 0 0 0 +( -564 2864 224 ) ( -628 2836 224 ) ( -628 2836 384 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -628 2836 224 ) ( -636 2850 224 ) ( -636 2850 384 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -564 2864 384 ) ( -568 2880 384 ) ( -568 2880 224 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -636 2850 224 ) ( -568 2880 224 ) ( -568 2880 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1944 +{ +( -544 2880 240 ) ( -544 3248 240 ) ( -672 3248 240 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -672 3248 256 ) ( -544 3248 256 ) ( -544 2880 256 ) bricks/c_sr_mr5 0 6 12 1 1 0 0 0 +( -488 2880 224 ) ( -564 2864 224 ) ( -564 2864 384 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -568 2880 384 ) ( -564 2864 384 ) ( -564 2864 224 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -488 2880 368 ) ( -486 2864 368 ) ( -486 2864 384 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -490 2896 384 ) ( -568 2880 384 ) ( -568 2880 224 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1945 +{ +( -936 3010 240 ) ( -936 3094 240 ) ( -990 3094 240 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -990 3094 256 ) ( -936 3094 256 ) ( -936 3010 256 ) bricks/c_sr_mr5 0 -5 225 1 1 0 0 0 +( -1038 2976 240 ) ( -1048 2984 240 ) ( -1048 2984 256 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -936 3096 256 ) ( -1048 2984 256 ) ( -1048 2984 240 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -928 3086 256 ) ( -936 3096 256 ) ( -936 3096 240 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -928 3086 240 ) ( -984 3030 240 ) ( -984 3030 256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1946 +{ +( -832 2592 256 ) ( -1200 2592 256 ) ( -1200 2720 256 ) bricks/c_sr_mr5 0 2 258 1 1 0 0 0 +( -1200 2720 240 ) ( -1200 2592 240 ) ( -832 2592 240 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -1184 2728 112 ) ( -1170 2724 112 ) ( -1170 2724 272 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1184 2728 272 ) ( -1216 2572 272 ) ( -1216 2572 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -1216 2572 272 ) ( -1200 2570 272 ) ( -1200 2570 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1200 2570 272 ) ( -1170 2724 272 ) ( -1170 2724 112 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1947 +{ +( -800 2748 256 ) ( -1168 2748 256 ) ( -1168 2876 256 ) bricks/c_sr_mr5 0 -13 247 1 1 0 0 0 +( -1168 2876 240 ) ( -1168 2748 240 ) ( -800 2748 240 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -1116 2854 272 ) ( -1128 2860 272 ) ( -1128 2860 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1184 2728 112 ) ( -1128 2860 112 ) ( -1128 2860 272 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -1184 2728 272 ) ( -1170 2724 272 ) ( -1170 2724 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1170 2724 272 ) ( -1116 2854 272 ) ( -1116 2854 112 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1948 +{ +( -744 2880 256 ) ( -1112 2880 256 ) ( -1112 3008 256 ) bricks/c_sr_mr5 0 -9 237 1 1 0 0 0 +( -1112 3008 240 ) ( -1112 2880 240 ) ( -744 2880 240 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -1048 2984 112 ) ( -1038 2976 112 ) ( -1038 2976 272 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1048 2984 272 ) ( -1128 2860 272 ) ( -1128 2860 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -1128 2860 272 ) ( -1116 2854 272 ) ( -1116 2854 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1116 2854 272 ) ( -1038 2976 272 ) ( -1038 2976 112 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1949 +{ +( -832 2792 240 ) ( -832 3160 240 ) ( -960 3160 240 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -960 3160 256 ) ( -832 3160 256 ) ( -832 2792 256 ) bricks/c_sr_mr5 0 -3 213 1 1 0 0 0 +( -936 3096 384 ) ( -928 3086 384 ) ( -928 3086 224 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -936 3096 224 ) ( -812 3176 224 ) ( -812 3176 384 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -812 3176 224 ) ( -806 3164 224 ) ( -806 3164 384 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -806 3164 224 ) ( -928 3086 224 ) ( -928 3086 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1950 +{ +( -700 2848 240 ) ( -700 3216 240 ) ( -828 3216 240 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -828 3216 256 ) ( -700 3216 256 ) ( -700 2848 256 ) bricks/c_sr_mr5 0 -10 203 1 1 0 0 0 +( -806 3164 224 ) ( -812 3176 224 ) ( -812 3176 384 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -680 3232 384 ) ( -812 3176 384 ) ( -812 3176 224 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -680 3232 224 ) ( -676 3218 224 ) ( -676 3218 384 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -676 3218 224 ) ( -806 3164 224 ) ( -806 3164 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1951 +{ +( -544 2880 240 ) ( -544 3248 240 ) ( -672 3248 240 ) bricks/c_sr_mr5 32 16 0 1 1 0 0 0 +( -672 3248 256 ) ( -544 3248 256 ) ( -544 2880 256 ) bricks/c_sr_mr5 0 -7 192 1 1 0 0 0 +( -680 3232 384 ) ( -676 3218 384 ) ( -676 3218 224 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -680 3232 224 ) ( -524 3264 224 ) ( -524 3264 384 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -524 3264 224 ) ( -522 3248 224 ) ( -522 3248 384 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -522 3248 224 ) ( -676 3218 224 ) ( -676 3218 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 1952 +{ +( -375 3232 448 ) ( -521 3232 448 ) ( -524 3264 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -720 3264 448 ) ( -1072 3264 448 ) ( -1072 3264 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -524 3264 416 ) ( -521 3232 448 ) ( -375 3232 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -524 3264 448 ) ( -521 3232 448 ) ( -524 3264 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -448 3263 416 ) ( -448 3255 416 ) ( -448 3259 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 1953 +{ +( -488 2880 448 ) ( -491 2912 448 ) ( -405 2912 448 ) bricks/c_tn_m1 -192 0 0 1 1 0 0 0 +( -408 2880 448 ) ( -408 2880 416 ) ( -448 2880 416 ) bricks/c_tn_m1 -192 0 0 1 1 0 0 0 +( -405 2912 448 ) ( -491 2912 448 ) ( -488 2880 416 ) bricks/c_tn_m1 -192 0 0 1 1 0 0 0 +( -488 2880 416 ) ( -491 2912 448 ) ( -488 2880 448 ) bricks/c_tn_m1 224 0 0 1 1 0 0 0 +( -448 2912 416 ) ( -448 2904 416 ) ( -448 2908 448 ) bricks/c_tn_m1 224 0 0 1 1 0 0 0 +} +// brush 1954 +{ +( 1152 2536 448 ) ( 1184 2539 448 ) ( 1184 2453 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1152 2568 448 ) ( 1152 2312 448 ) ( 1152 2312 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1184 2453 448 ) ( 1184 2539 448 ) ( 1152 2536 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1152 2456 448 ) ( 1184 2453 448 ) ( 1152 2456 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 1152 2536 416 ) ( 1184 2539 448 ) ( 1152 2536 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 1955 +{ +( 1473 2274 448 ) ( 1504 2264 416 ) ( 1536 2420 416 ) bricks/c_tn_m1 -8 -7 78 1 1 0 0 0 +( 1504 2264 464 ) ( 1504 2264 416 ) ( 1473 2274 448 ) bricks/c_tn_m1 -8 -7 78 1 1 0 0 0 +( 1536 2420 416 ) ( 1504 2264 416 ) ( 1504 2264 464 ) bricks/c_tn_m1 -8 -7 78 1 1 0 0 0 +( 1473 2274 448 ) ( 1536 2420 416 ) ( 1536 2420 464 ) bricks/c_tn_m1 -8 -7 78 1 1 0 0 0 +( 1284 2264 448 ) ( 1256 2420 448 ) ( 1312 2420 448 ) bricks/c_tn_m1 -8 -7 78 1 1 0 0 0 +} +// brush 1956 +{ +( 1473 2274 448 ) ( 1536 2420 416 ) ( 1504 2423 448 ) bricks/c_tn_m1 -8 -7 78 1 1 0 0 0 +( 1504 2423 448 ) ( 1536 2420 416 ) ( 1536 2420 464 ) bricks/c_tn_m1 -8 -7 78 1 1 0 0 0 +( 1536 2420 464 ) ( 1536 2420 416 ) ( 1473 2274 448 ) bricks/c_tn_m1 -8 -7 78 1 1 0 0 0 +( 1284 2274 448 ) ( 1256 2423 448 ) ( 1312 2423 448 ) bricks/c_tn_m1 -8 -7 78 1 1 0 0 0 +} +// brush 1957 +{ +( 1473 2718 448 ) ( 1504 2728 416 ) ( 1419 2844 448 ) bricks/c_tn_m1 28 14 113 1 1 0 0 0 +( 1504 2728 464 ) ( 1504 2728 416 ) ( 1473 2718 448 ) bricks/c_tn_m1 28 14 113 1 1 0 0 0 +( 1419 2844 448 ) ( 1504 2728 416 ) ( 1504 2728 464 ) bricks/c_tn_m1 28 14 113 1 1 0 0 0 +( 1312 2718 448 ) ( 1256 2718 448 ) ( 1284 2844 448 ) bricks/c_tn_m1 28 14 113 1 1 0 0 0 +} +// brush 1958 +{ +( 1504 2728 416 ) ( 1448 2860 416 ) ( 1419 2844 448 ) bricks/c_tn_m1 28 14 113 1 1 0 0 0 +( 1419 2844 448 ) ( 1448 2860 416 ) ( 1448 2860 464 ) bricks/c_tn_m1 28 14 113 1 1 0 0 0 +( 1448 2860 464 ) ( 1448 2860 416 ) ( 1504 2728 416 ) bricks/c_tn_m1 28 14 113 1 1 0 0 0 +( 1504 2728 464 ) ( 1504 2728 416 ) ( 1419 2844 448 ) bricks/c_tn_m1 28 14 113 1 1 0 0 0 +( 1312 2728 448 ) ( 1256 2728 448 ) ( 1284 2860 448 ) bricks/c_tn_m1 28 14 113 1 1 0 0 0 +} +// brush 1959 +{ +( 1342 2963 448 ) ( 1419 2844 448 ) ( 1448 2860 416 ) bricks/c_tn_m1 0 13 123 1 1 0 0 0 +( 1342 2963 448 ) ( 1448 2860 416 ) ( 1448 2860 464 ) bricks/c_tn_m1 0 13 123 1 1 0 0 0 +( 1448 2860 448 ) ( 1419 2844 448 ) ( 1342 2963 448 ) bricks/c_tn_m1 0 13 123 1 1 0 0 0 +( 1448 2860 416 ) ( 1419 2844 448 ) ( 1448 2860 448 ) bricks/c_tn_m1 0 13 123 1 1 0 0 0 +} +// brush 1960 +{ +( 1342 2963 448 ) ( 1448 2860 416 ) ( 1368 2984 416 ) bricks/c_tn_m1 0 13 123 1 1 0 0 0 +( 1342 2963 448 ) ( 1368 2984 416 ) ( 1368 2984 464 ) bricks/c_tn_m1 0 13 123 1 1 0 0 0 +( 1368 2984 416 ) ( 1448 2860 416 ) ( 1448 2860 448 ) bricks/c_tn_m1 0 13 123 1 1 0 0 0 +( 1342 2963 448 ) ( 1448 2860 448 ) ( 1448 2860 416 ) bricks/c_tn_m1 0 13 123 1 1 0 0 0 +( 1448 3012 448 ) ( 1342 2984 448 ) ( 1342 3040 448 ) bricks/c_tn_m1 0 13 123 1 1 0 0 0 +( 1442 2842 448 ) ( 1452 2848 416 ) ( 1432 2836 416 ) bricks/c_tn_m1 0 13 123 1 1 0 0 0 +} +// brush 1961 +{ +( 1064 2112 256 ) ( 1432 2112 256 ) ( 1432 1984 256 ) bricks/c_sr_mr5 0 9 57 1 1 0 0 0 +( 1432 1984 240 ) ( 1432 2112 240 ) ( 1064 2112 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1368 2008 240 ) ( 1356 2018 240 ) ( 1356 2018 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1368 2008 272 ) ( 1448 2132 272 ) ( 1448 2132 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1448 2132 256 ) ( 1435 2139 256 ) ( 1435 2139 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1356 2018 240 ) ( 1435 2139 240 ) ( 1435 2139 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 1962 +{ +( 1120 2244 256 ) ( 1488 2244 256 ) ( 1488 2116 256 ) bricks/c_sr_mr5 0 10 67 1 1 0 0 0 +( 1488 2116 240 ) ( 1488 2244 240 ) ( 1120 2244 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1448 2132 240 ) ( 1435 2139 240 ) ( 1435 2139 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1504 2264 112 ) ( 1448 2132 112 ) ( 1448 2132 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1504 2264 256 ) ( 1489 2269 256 ) ( 1489 2269 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1435 2139 240 ) ( 1489 2269 240 ) ( 1489 2269 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 1963 +{ +( 1152 2400 256 ) ( 1520 2400 256 ) ( 1520 2272 256 ) bricks/c_sr_mr5 0 -10 78 1 1 0 0 0 +( 1520 2272 240 ) ( 1520 2400 240 ) ( 1152 2400 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1504 2264 240 ) ( 1489 2269 240 ) ( 1489 2269 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1504 2264 272 ) ( 1536 2420 272 ) ( 1536 2420 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1536 2420 272 ) ( 1520 2422 272 ) ( 1520 2422 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1520 2422 256 ) ( 1489 2269 256 ) ( 1489 2269 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 1964 +{ +( 1168 2496 256 ) ( 1536 2496 256 ) ( 1536 2368 256 ) bricks/c_sr_mr5 0 -2 90 1 1 0 0 0 +( 1536 2368 240 ) ( 1536 2496 240 ) ( 1168 2496 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1536 2420 96 ) ( 1520 2422 96 ) ( 1520 2422 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1536 2420 256 ) ( 1536 2572 256 ) ( 1536 2572 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1520 2570 240 ) ( 1536 2572 240 ) ( 1536 2572 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1520 2496 256 ) ( 1520 2422 256 ) ( 1520 2422 96 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 1965 +{ +( 1064 2112 256 ) ( 1432 2112 256 ) ( 1432 1984 256 ) bricks/c_sr_mr5 0 -13 237 1 1 0 0 0 +( 1432 1984 240 ) ( 1432 2112 240 ) ( 1064 2112 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1108 2316 272 ) ( 1064 2248 272 ) ( 1064 2248 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1064 2248 272 ) ( 1076 2238 272 ) ( 1076 2238 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1108 2316 112 ) ( 1122 2308 112 ) ( 1122 2308 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1122 2308 112 ) ( 1076 2238 112 ) ( 1076 2238 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 1966 +{ +( 1120 2244 256 ) ( 1488 2244 256 ) ( 1488 2116 256 ) bricks/c_sr_mr5 0 4 246 1 1 0 0 0 +( 1488 2116 240 ) ( 1488 2244 240 ) ( 1120 2244 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1136 2380 272 ) ( 1108 2316 272 ) ( 1108 2316 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1108 2316 272 ) ( 1122 2308 272 ) ( 1122 2308 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1136 2380 112 ) ( 1152 2376 112 ) ( 1152 2376 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1122 2308 272 ) ( 1152 2376 272 ) ( 1152 2376 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 1967 +{ +( 1152 2400 256 ) ( 1520 2400 256 ) ( 1520 2272 256 ) bricks/c_sr_mr5 0 7 258 1 1 0 0 0 +( 1520 2272 240 ) ( 1520 2400 240 ) ( 1152 2400 240 ) bricks/c_sr_mr5 0 -8 258 1 1 0 0 0 +( 1152 2456 272 ) ( 1136 2380 272 ) ( 1136 2380 112 ) bricks/c_sr_mr5 0 -8 258 1 1 0 0 0 +( 1152 2376 112 ) ( 1136 2380 112 ) ( 1136 2380 272 ) bricks/c_sr_mr5 0 -8 258 1 1 0 0 0 +( 1152 2456 128 ) ( 1136 2458 128 ) ( 1136 2458 112 ) bricks/c_sr_mr5 0 -8 258 1 1 0 0 0 +( 1168 2454 112 ) ( 1152 2376 112 ) ( 1152 2376 272 ) bricks/c_sr_mr5 0 -8 258 1 1 0 0 0 +} +// brush 1968 +{ +( 1168 2496 256 ) ( 1536 2496 256 ) ( 1536 2368 256 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( 1536 2368 240 ) ( 1536 2496 240 ) ( 1168 2496 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1152 2496 272 ) ( 1152 2458 272 ) ( 1152 2458 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1152 2456 256 ) ( 1168 2454 256 ) ( 1168 2454 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1168 2538 240 ) ( 1168 2538 256 ) ( 1152 2536 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1168 2538 256 ) ( 1168 2538 240 ) ( 1168 2454 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 1969 +{ +( 1504 2423 448 ) ( 1504 2569 448 ) ( 1536 2572 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 1536 2768 448 ) ( 1536 3120 448 ) ( 1536 3120 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 1536 2572 416 ) ( 1504 2569 448 ) ( 1504 2423 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 1536 2572 448 ) ( 1504 2569 448 ) ( 1536 2572 416 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 1536 2420 416 ) ( 1504 2423 448 ) ( 1536 2420 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 1970 +{ +( 1419 2148 448 ) ( 1504 2264 416 ) ( 1473 2274 448 ) bricks/c_tn_m1 104 14 67 1 1 0 0 0 +( 1473 2274 448 ) ( 1504 2264 416 ) ( 1504 2264 464 ) bricks/c_tn_m1 104 14 67 1 1 0 0 0 +( 1504 2264 464 ) ( 1504 2264 416 ) ( 1419 2148 448 ) bricks/c_tn_m1 104 14 67 1 1 0 0 0 +( 1284 2148 448 ) ( 1256 2274 448 ) ( 1312 2274 448 ) bricks/c_tn_m1 104 14 67 1 1 0 0 0 +} +// brush 1971 +{ +( 1419 2148 448 ) ( 1448 2132 416 ) ( 1504 2264 416 ) bricks/c_tn_m1 104 14 67 1 1 0 0 0 +( 1448 2132 464 ) ( 1448 2132 416 ) ( 1419 2148 448 ) bricks/c_tn_m1 104 14 67 1 1 0 0 0 +( 1504 2264 416 ) ( 1448 2132 416 ) ( 1448 2132 464 ) bricks/c_tn_m1 104 14 67 1 1 0 0 0 +( 1419 2148 448 ) ( 1504 2264 416 ) ( 1504 2264 464 ) bricks/c_tn_m1 104 14 67 1 1 0 0 0 +( 1284 2132 448 ) ( 1256 2264 448 ) ( 1312 2264 448 ) bricks/c_tn_m1 104 14 67 1 1 0 0 0 +} +// brush 1972 +{ +( 1184 2453 448 ) ( 1152 2456 416 ) ( 1167 2370 448 ) bricks/c_tn_m1 0 9 258 1 1 0 0 0 +( 1152 2456 464 ) ( 1152 2456 416 ) ( 1184 2453 448 ) bricks/c_tn_m1 0 9 258 1 1 0 0 0 +( 1167 2370 448 ) ( 1152 2456 416 ) ( 1152 2456 464 ) bricks/c_tn_m1 0 9 258 1 1 0 0 0 +( 1184 2348 448 ) ( 1152 2336 448 ) ( 1152 2360 448 ) bricks/c_tn_m1 0 9 258 1 1 0 0 0 +} +// brush 1973 +{ +( 1152 2456 416 ) ( 1136 2380 416 ) ( 1167 2370 448 ) bricks/c_tn_m1 0 9 258 1 1 0 0 0 +( 1136 2380 464 ) ( 1136 2380 416 ) ( 1152 2456 416 ) bricks/c_tn_m1 0 9 258 1 1 0 0 0 +( 1167 2370 448 ) ( 1136 2380 416 ) ( 1136 2380 464 ) bricks/c_tn_m1 0 9 258 1 1 0 0 0 +( 1152 2456 416 ) ( 1167 2370 448 ) ( 1167 2370 464 ) bricks/c_tn_m1 0 9 258 1 1 0 0 0 +( 1167 2348 448 ) ( 1136 2336 448 ) ( 1136 2360 448 ) bricks/c_tn_m1 0 9 258 1 1 0 0 0 +} +// brush 1974 +{ +( 1167 2370 448 ) ( 1136 2380 416 ) ( 1136 2301 448 ) bricks/c_tn_m1 0 7 246 1 1 0 0 0 +( 1136 2380 464 ) ( 1136 2380 416 ) ( 1167 2370 448 ) bricks/c_tn_m1 0 7 246 1 1 0 0 0 +( 1136 2301 448 ) ( 1136 2380 416 ) ( 1136 2380 464 ) bricks/c_tn_m1 0 7 246 1 1 0 0 0 +( 1167 2348 448 ) ( 1136 2336 448 ) ( 1136 2360 448 ) bricks/c_tn_m1 0 7 246 1 1 0 0 0 +} +// brush 1975 +{ +( 1136 2380 416 ) ( 1108 2316 416 ) ( 1136 2301 448 ) bricks/c_tn_m1 0 7 246 1 1 0 0 0 +( 1108 2316 464 ) ( 1108 2316 416 ) ( 1136 2380 416 ) bricks/c_tn_m1 0 7 246 1 1 0 0 0 +( 1136 2301 448 ) ( 1108 2316 416 ) ( 1108 2316 464 ) bricks/c_tn_m1 0 7 246 1 1 0 0 0 +( 1136 2380 464 ) ( 1136 2380 416 ) ( 1136 2301 448 ) bricks/c_tn_m1 0 7 246 1 1 0 0 0 +( 1136 2348 448 ) ( 1108 2336 448 ) ( 1108 2360 448 ) bricks/c_tn_m1 0 7 246 1 1 0 0 0 +} +// brush 1976 +{ +( 1256 1896 240 ) ( 1368 2008 240 ) ( 1368 2008 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1368 2008 240 ) ( 1448 2132 240 ) ( 1448 2132 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1448 2132 240 ) ( 1504 2264 240 ) ( 1504 2264 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1536 2420 224 ) ( 1504 2264 224 ) ( 1504 2264 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1536 2496 224 ) ( 1536 2420 224 ) ( 1536 2420 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1536 1728 224 ) ( 1536 3264 224 ) ( 0 3264 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 0 3264 240 ) ( 1536 3264 240 ) ( 1536 1728 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1400 2496 240 ) ( 1368 2496 176 ) ( 1432 2496 176 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1152 2496 240 ) ( 1040 2224 240 ) ( 1040 2224 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1312 1952 224 ) ( 1040 2224 224 ) ( 1040 2224 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1977 +{ +( 1168 2496 448 ) ( 1536 2496 448 ) ( 1536 2368 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1536 2420 304 ) ( 1552 2418 304 ) ( 1552 2418 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1552 2418 448 ) ( 1552 2574 448 ) ( 1552 2574 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1536 2572 240 ) ( 1552 2574 240 ) ( 1552 2574 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1536 2486 368 ) ( 1536 2496 384 ) ( 1536 2476 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1480 2418 240 ) ( 1496 2496 240 ) ( 1464 2496 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1978 +{ +( 1152 2400 448 ) ( 1520 2400 448 ) ( 1520 2272 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1504 2264 304 ) ( 1520 2258 304 ) ( 1520 2258 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1552 2418 368 ) ( 1520 2258 368 ) ( 1520 2258 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1536 2420 288 ) ( 1552 2418 288 ) ( 1552 2418 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1520 2342 224 ) ( 1536 2420 240 ) ( 1504 2264 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1480 2258 240 ) ( 1496 2420 240 ) ( 1464 2420 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1979 +{ +( 1120 2244 448 ) ( 1488 2244 448 ) ( 1488 2116 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1448 2132 304 ) ( 1462 2124 304 ) ( 1462 2124 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1520 2258 368 ) ( 1462 2124 368 ) ( 1462 2124 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1504 2264 288 ) ( 1520 2258 288 ) ( 1520 2258 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1476 2198 288 ) ( 1504 2264 304 ) ( 1448 2132 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1480 2124 240 ) ( 1496 2264 240 ) ( 1464 2264 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1980 +{ +( 1064 2112 448 ) ( 1432 2112 448 ) ( 1432 1984 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1381 1997 448 ) ( 1381 1997 240 ) ( 1368 2008 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1381 1997 240 ) ( 1381 1997 448 ) ( 1462 2124 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1448 2132 288 ) ( 1462 2124 288 ) ( 1462 2124 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1408 2070 288 ) ( 1448 2132 304 ) ( 1368 2008 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1480 1998 240 ) ( 1496 2132 240 ) ( 1464 2132 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1981 +{ +( 1064 2112 448 ) ( 1432 2112 448 ) ( 1432 1984 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1094 2324 304 ) ( 1050 2258 304 ) ( 1050 2258 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1064 2248 432 ) ( 1050 2258 432 ) ( 1050 2258 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1108 2316 448 ) ( 1094 2324 448 ) ( 1094 2324 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1086 2282 368 ) ( 1064 2248 384 ) ( 1108 2316 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -672 2248 240 ) ( -656 2324 240 ) ( -688 2324 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1982 +{ +( 1120 2244 448 ) ( 1488 2244 448 ) ( 1488 2116 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1120 2384 240 ) ( 1094 2324 240 ) ( 1094 2324 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1108 2316 432 ) ( 1094 2324 432 ) ( 1094 2324 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1136 2380 448 ) ( 1120 2384 448 ) ( 1120 2384 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1122 2348 368 ) ( 1108 2316 384 ) ( 1136 2380 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -672 2316 240 ) ( -656 2384 240 ) ( -688 2384 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1983 +{ +( 1152 2400 448 ) ( 1520 2400 448 ) ( 1520 2272 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1136 2458 304 ) ( 1120 2384 304 ) ( 1120 2384 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1136 2380 432 ) ( 1120 2384 432 ) ( 1120 2384 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1152 2456 304 ) ( 1136 2458 304 ) ( 1136 2458 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1144 2418 224 ) ( 1136 2380 240 ) ( 1152 2456 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -672 2380 240 ) ( -656 2458 240 ) ( -688 2458 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1984 +{ +( 1168 2496 448 ) ( 1536 2496 448 ) ( 1536 2368 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1136 2496 240 ) ( 1136 2458 240 ) ( 1136 2458 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1152 2456 288 ) ( 1136 2458 288 ) ( 1136 2458 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1136 2534 240 ) ( 1152 2536 240 ) ( 1152 2536 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1152 2456 448 ) ( 1152 2536 448 ) ( 1152 2536 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -672 2456 240 ) ( -656 2496 240 ) ( -688 2496 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1985 +{ +( 1266 2984 448 ) ( 1266 3108 448 ) ( 1368 3108 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1256 3096 288 ) ( 1256 3096 448 ) ( 1368 2984 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1380 2994 448 ) ( 1380 2994 288 ) ( 1368 2984 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1380 2994 224 ) ( 1380 2994 384 ) ( 1266 3108 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1256 3096 448 ) ( 1256 3096 288 ) ( 1266 3108 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1064 2984 240 ) ( 1080 3108 240 ) ( 1048 3108 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1986 +{ +( 1152 2792 448 ) ( 1152 3160 448 ) ( 1280 3160 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1266 3108 304 ) ( 1266 3108 288 ) ( 1256 3096 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1266 3108 224 ) ( 1266 3108 240 ) ( 1140 3190 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1140 3190 432 ) ( 1140 3190 448 ) ( 1132 3176 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1256 3096 432 ) ( 1132 3176 432 ) ( 1194 3136 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1064 3096 240 ) ( 1080 3190 240 ) ( 1048 3190 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1987 +{ +( 864 2880 448 ) ( 864 3248 448 ) ( 992 3248 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1006 3248 448 ) ( 1006 3248 432 ) ( 1000 3232 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1006 3248 224 ) ( 1006 3248 240 ) ( 846 3280 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 846 3280 432 ) ( 846 3280 448 ) ( 844 3264 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1000 3232 432 ) ( 844 3264 432 ) ( 922 3248 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1064 3232 240 ) ( 1080 3280 240 ) ( 1048 3280 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1988 +{ +( 1020 2848 448 ) ( 1020 3216 448 ) ( 1148 3216 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1140 3190 448 ) ( 1140 3190 432 ) ( 1132 3176 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1140 3190 224 ) ( 1140 3190 240 ) ( 1006 3248 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1006 3248 432 ) ( 1006 3248 448 ) ( 1000 3232 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1132 3176 432 ) ( 1000 3232 432 ) ( 1066 3204 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1064 3176 240 ) ( 1080 3248 240 ) ( 1048 3248 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1989 +{ +( 1520 2720 448 ) ( 1520 2592 448 ) ( 1152 2592 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1520 2734 288 ) ( 1520 2734 304 ) ( 1504 2728 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1520 2734 384 ) ( 1520 2734 368 ) ( 1552 2574 368 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1552 2574 304 ) ( 1552 2574 288 ) ( 1536 2572 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1504 2728 240 ) ( 1536 2572 240 ) ( 1520 2650 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1064 2572 240 ) ( 1080 2734 240 ) ( 1048 2734 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1990 +{ +( 1488 2876 448 ) ( 1488 2748 448 ) ( 1120 2748 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1462 2868 288 ) ( 1462 2868 304 ) ( 1448 2860 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1462 2868 384 ) ( 1462 2868 368 ) ( 1520 2734 368 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1520 2734 304 ) ( 1520 2734 288 ) ( 1504 2728 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1448 2860 304 ) ( 1504 2728 304 ) ( 1476 2794 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1064 2728 240 ) ( 1080 2868 240 ) ( 1048 2868 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1991 +{ +( 1432 3008 448 ) ( 1432 2880 448 ) ( 1064 2880 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1380 2994 432 ) ( 1380 2994 448 ) ( 1368 2984 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1380 2994 384 ) ( 1380 2994 368 ) ( 1462 2868 368 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1462 2868 304 ) ( 1462 2868 288 ) ( 1448 2860 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1368 2984 304 ) ( 1448 2860 304 ) ( 1408 2922 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1064 2860 240 ) ( 1080 2994 240 ) ( 1048 2994 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1992 +{ +( 864 2880 448 ) ( 864 3248 448 ) ( 992 3248 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 880 2848 304 ) ( 880 2848 288 ) ( 806 2864 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 880 2848 432 ) ( 880 2848 448 ) ( 884 2864 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 806 2864 448 ) ( 806 2864 432 ) ( 808 2880 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 808 2880 368 ) ( 884 2864 368 ) ( 846 2872 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1064 2848 240 ) ( 1080 2880 240 ) ( 1048 2880 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1993 +{ +( 1020 2848 448 ) ( 1020 3216 448 ) ( 1148 3216 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 940 2822 240 ) ( 940 2822 224 ) ( 880 2848 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 940 2822 432 ) ( 940 2822 448 ) ( 948 2836 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 880 2848 448 ) ( 880 2848 432 ) ( 884 2864 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 884 2864 368 ) ( 948 2836 368 ) ( 916 2850 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1064 2822 240 ) ( 1080 2864 240 ) ( 1048 2864 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1994 +{ +( 1152 2792 448 ) ( 1152 3160 448 ) ( 1280 3160 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1006 2778 304 ) ( 1006 2778 288 ) ( 940 2822 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1006 2778 448 ) ( 1016 2792 448 ) ( 1016 2792 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 940 2822 448 ) ( 940 2822 432 ) ( 948 2836 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 948 2836 240 ) ( 1016 2792 240 ) ( 1016 2792 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1064 2778 240 ) ( 1080 2836 240 ) ( 1048 2836 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1995 +{ +( 1276 2712 448 ) ( 1276 3080 448 ) ( 1404 3080 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1050 2734 240 ) ( 1050 2734 224 ) ( 1006 2778 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1065 2745 448 ) ( 1065 2745 224 ) ( 1050 2734 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1006 2778 240 ) ( 1016 2792 240 ) ( 1016 2792 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1065 2745 448 ) ( 1016 2792 448 ) ( 1016 2792 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1064 2734 240 ) ( 1080 2792 240 ) ( 1048 2792 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1996 +{ +( 1432 3008 448 ) ( 1432 2880 448 ) ( 1064 2880 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1050 2734 288 ) ( 1050 2734 304 ) ( 1094 2668 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1065 2745 224 ) ( 1065 2745 448 ) ( 1050 2734 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1094 2668 432 ) ( 1094 2668 448 ) ( 1108 2676 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1065 2745 448 ) ( 1065 2745 224 ) ( 1108 2676 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1064 2668 240 ) ( 1080 2745 240 ) ( 1048 2745 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1997 +{ +( 1488 2876 448 ) ( 1488 2748 448 ) ( 1120 2748 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1094 2668 224 ) ( 1094 2668 240 ) ( 1120 2608 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1094 2668 448 ) ( 1094 2668 432 ) ( 1108 2676 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1120 2608 432 ) ( 1120 2608 448 ) ( 1136 2612 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1136 2612 384 ) ( 1108 2676 384 ) ( 1122 2644 368 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1064 2608 240 ) ( 1080 2676 240 ) ( 1048 2676 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1998 +{ +( 1520 2720 448 ) ( 1520 2592 448 ) ( 1152 2592 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1120 2608 288 ) ( 1120 2608 304 ) ( 1136 2534 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1120 2608 448 ) ( 1120 2608 432 ) ( 1136 2612 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1136 2534 288 ) ( 1136 2534 304 ) ( 1152 2536 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1152 2536 240 ) ( 1136 2612 240 ) ( 1144 2574 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1064 2534 240 ) ( 1080 2612 240 ) ( 1048 2612 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 1999 +{ +( 844 3264 224 ) ( 844 3264 240 ) ( 768 3264 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1000 3232 224 ) ( 1000 3232 240 ) ( 844 3264 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1132 3176 224 ) ( 1132 3176 240 ) ( 1000 3232 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1256 3096 224 ) ( 1256 3096 240 ) ( 1132 3176 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1368 2984 224 ) ( 1368 2984 240 ) ( 1256 3096 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1448 2860 224 ) ( 1448 2860 240 ) ( 1368 2984 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1504 2728 224 ) ( 1504 2728 240 ) ( 1448 2860 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1504 2728 240 ) ( 1504 2728 224 ) ( 1536 2572 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1536 2572 240 ) ( 1536 2572 224 ) ( 1536 2496 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 0 1728 224 ) ( 1536 1728 224 ) ( 1536 3264 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1536 3264 240 ) ( 1536 1728 240 ) ( 0 1728 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 768 3016 176 ) ( 768 3072 176 ) ( 768 3044 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1432 2496 176 ) ( 1368 2496 176 ) ( 1400 2496 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1152 2496 224 ) ( 768 2880 224 ) ( 960 2688 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2000 +{ +( 811 2912 448 ) ( 808 2880 416 ) ( 894 2895 448 ) bricks/c_tn_m1 -35 9 348 1 1 0 0 0 +( 808 2880 464 ) ( 808 2880 416 ) ( 811 2912 448 ) bricks/c_tn_m1 -35 9 348 1 1 0 0 0 +( 894 2895 448 ) ( 808 2880 416 ) ( 808 2880 464 ) bricks/c_tn_m1 -35 9 348 1 1 0 0 0 +( 808 2632 448 ) ( 808 2656 448 ) ( 894 2644 448 ) bricks/c_tn_m1 -35 9 348 1 1 0 0 0 +} +// brush 2001 +{ +( 808 2880 416 ) ( 884 2864 416 ) ( 894 2895 448 ) bricks/c_tn_m1 -35 9 348 1 1 0 0 0 +( 884 2864 464 ) ( 884 2864 416 ) ( 808 2880 416 ) bricks/c_tn_m1 -35 9 348 1 1 0 0 0 +( 894 2895 448 ) ( 884 2864 416 ) ( 884 2864 464 ) bricks/c_tn_m1 -35 9 348 1 1 0 0 0 +( 808 2880 416 ) ( 894 2895 448 ) ( 894 2895 464 ) bricks/c_tn_m1 -35 9 348 1 1 0 0 0 +( 808 2632 448 ) ( 808 2656 448 ) ( 894 2644 448 ) bricks/c_tn_m1 -35 9 348 1 1 0 0 0 +} +// brush 2002 +{ +( 894 2895 448 ) ( 884 2864 416 ) ( 963 2864 448 ) bricks/c_tn_m1 0 0 336 1 1 0 0 0 +( 884 2864 464 ) ( 884 2864 416 ) ( 894 2895 448 ) bricks/c_tn_m1 0 0 336 1 1 0 0 0 +( 963 2864 448 ) ( 884 2864 416 ) ( 884 2864 464 ) bricks/c_tn_m1 0 0 336 1 1 0 0 0 +( 884 2632 448 ) ( 884 2656 448 ) ( 963 2644 448 ) bricks/c_tn_m1 0 0 336 1 1 0 0 0 +} +// brush 2003 +{ +( 884 2864 416 ) ( 948 2836 416 ) ( 963 2864 448 ) bricks/c_tn_m1 0 0 336 1 1 0 0 0 +( 948 2836 464 ) ( 948 2836 416 ) ( 884 2864 416 ) bricks/c_tn_m1 0 0 336 1 1 0 0 0 +( 963 2864 448 ) ( 948 2836 416 ) ( 948 2836 464 ) bricks/c_tn_m1 0 0 336 1 1 0 0 0 +( 884 2864 464 ) ( 884 2864 416 ) ( 963 2864 448 ) bricks/c_tn_m1 0 0 336 1 1 0 0 0 +( 884 2632 448 ) ( 884 2656 448 ) ( 963 2644 448 ) bricks/c_tn_m1 0 0 336 1 1 0 0 0 +} +// brush 2004 +{ +( 1089 2764 448 ) ( 1064 2744 416 ) ( 1108 2676 416 ) bricks/c_tn_m1 0 -14 303 1 1 0 0 0 +( 1108 2676 416 ) ( 1064 2744 416 ) ( 1064 2744 464 ) bricks/c_tn_m1 0 -14 303 1 1 0 0 0 +( 1064 2744 464 ) ( 1064 2744 416 ) ( 1089 2764 448 ) bricks/c_tn_m1 0 -14 303 1 1 0 0 0 +( 1089 2764 448 ) ( 1108 2676 416 ) ( 1108 2676 464 ) bricks/c_tn_m1 0 -14 303 1 1 0 0 0 +( 1064 2632 448 ) ( 1064 2656 448 ) ( 1108 2644 448 ) bricks/c_tn_m1 0 -14 303 1 1 0 0 0 +} +// brush 2005 +{ +( 1089 2764 448 ) ( 1108 2676 416 ) ( 1136 2691 448 ) bricks/c_tn_m1 0 -14 303 1 1 0 0 0 +( 1136 2691 448 ) ( 1108 2676 416 ) ( 1108 2676 464 ) bricks/c_tn_m1 0 -14 303 1 1 0 0 0 +( 1108 2676 464 ) ( 1108 2676 416 ) ( 1089 2764 448 ) bricks/c_tn_m1 0 -14 303 1 1 0 0 0 +( 1089 2632 448 ) ( 1089 2656 448 ) ( 1136 2644 448 ) bricks/c_tn_m1 0 -14 303 1 1 0 0 0 +} +// brush 2006 +{ +( 1136 2691 448 ) ( 1108 2676 416 ) ( 1136 2612 416 ) bricks/c_tn_m1 0 -12 294 1 1 0 0 0 +( 1136 2612 416 ) ( 1108 2676 416 ) ( 1108 2676 464 ) bricks/c_tn_m1 0 -12 294 1 1 0 0 0 +( 1108 2676 464 ) ( 1108 2676 416 ) ( 1136 2691 448 ) bricks/c_tn_m1 0 -12 294 1 1 0 0 0 +( 1136 2691 448 ) ( 1136 2612 416 ) ( 1136 2612 464 ) bricks/c_tn_m1 0 -12 294 1 1 0 0 0 +( 1108 2632 448 ) ( 1108 2656 448 ) ( 1136 2644 448 ) bricks/c_tn_m1 0 -12 294 1 1 0 0 0 +} +// brush 2007 +{ +( 1136 2691 448 ) ( 1136 2612 416 ) ( 1167 2622 448 ) bricks/c_tn_m1 0 -12 294 1 1 0 0 0 +( 1167 2622 448 ) ( 1136 2612 416 ) ( 1136 2612 464 ) bricks/c_tn_m1 0 -12 294 1 1 0 0 0 +( 1136 2612 464 ) ( 1136 2612 416 ) ( 1136 2691 448 ) bricks/c_tn_m1 0 -12 294 1 1 0 0 0 +( 1136 2632 448 ) ( 1136 2656 448 ) ( 1167 2644 448 ) bricks/c_tn_m1 0 -12 294 1 1 0 0 0 +} +// brush 2008 +{ +( 990 3201 448 ) ( 844 3264 416 ) ( 841 3232 448 ) bricks/c_tn_m1 78 -8 168 1 1 0 0 0 +( 841 3232 448 ) ( 844 3264 416 ) ( 844 3264 464 ) bricks/c_tn_m1 78 -8 168 1 1 0 0 0 +( 844 3264 464 ) ( 844 3264 416 ) ( 990 3201 448 ) bricks/c_tn_m1 78 -8 168 1 1 0 0 0 +( 1312 3201 448 ) ( 1256 3201 448 ) ( 1284 3264 448 ) bricks/c_tn_m1 78 -8 168 1 1 0 0 0 +} +// brush 2009 +{ +( 990 3201 448 ) ( 1000 3232 416 ) ( 844 3264 416 ) bricks/c_tn_m1 78 -8 168 1 1 0 0 0 +( 1000 3232 464 ) ( 1000 3232 416 ) ( 990 3201 448 ) bricks/c_tn_m1 78 -8 168 1 1 0 0 0 +( 844 3264 416 ) ( 1000 3232 416 ) ( 1000 3232 464 ) bricks/c_tn_m1 78 -8 168 1 1 0 0 0 +( 990 3201 448 ) ( 844 3264 416 ) ( 844 3264 464 ) bricks/c_tn_m1 78 -8 168 1 1 0 0 0 +( 1312 3201 448 ) ( 1256 3201 448 ) ( 1284 3264 448 ) bricks/c_tn_m1 78 -8 168 1 1 0 0 0 +} +// brush 2010 +{ +( 1116 3147 448 ) ( 1000 3232 416 ) ( 990 3201 448 ) bricks/c_tn_m1 -59 -5 157 1 1 0 0 0 +( 990 3201 448 ) ( 1000 3232 416 ) ( 1000 3232 464 ) bricks/c_tn_m1 -59 -5 157 1 1 0 0 0 +( 1000 3232 464 ) ( 1000 3232 416 ) ( 1116 3147 448 ) bricks/c_tn_m1 -59 -5 157 1 1 0 0 0 +( 1312 3147 448 ) ( 1256 3147 448 ) ( 1284 3232 448 ) bricks/c_tn_m1 -59 -5 157 1 1 0 0 0 +} +// brush 2011 +{ +( 1116 3147 448 ) ( 1132 3176 416 ) ( 1000 3232 416 ) bricks/c_tn_m1 -59 -5 157 1 1 0 0 0 +( 1132 3176 464 ) ( 1132 3176 416 ) ( 1116 3147 448 ) bricks/c_tn_m1 -59 -5 157 1 1 0 0 0 +( 1000 3232 416 ) ( 1132 3176 416 ) ( 1132 3176 464 ) bricks/c_tn_m1 -59 -5 157 1 1 0 0 0 +( 1116 3147 448 ) ( 1000 3232 416 ) ( 1000 3232 464 ) bricks/c_tn_m1 -59 -5 157 1 1 0 0 0 +( 1312 3147 448 ) ( 1256 3147 448 ) ( 1284 3232 448 ) bricks/c_tn_m1 -59 -5 157 1 1 0 0 0 +} +// brush 2012 +{ +( 1342 2963 448 ) ( 1256 3096 416 ) ( 1235 3070 448 ) bricks/c_tn_m1 13 -4 135 1 1 0 0 0 +( 1235 3070 448 ) ( 1256 3096 416 ) ( 1256 3096 464 ) bricks/c_tn_m1 13 -4 135 1 1 0 0 0 +( 1256 3096 464 ) ( 1256 3096 416 ) ( 1342 2963 448 ) bricks/c_tn_m1 13 -4 135 1 1 0 0 0 +( 1312 2963 448 ) ( 1256 2963 448 ) ( 1284 3096 448 ) bricks/c_tn_m1 13 -4 135 1 1 0 0 0 +} +// brush 2013 +{ +( 1368 2984 416 ) ( 1256 3096 416 ) ( 1342 2963 448 ) bricks/c_tn_m1 13 -4 135 1 1 0 0 0 +( 1368 2984 464 ) ( 1368 2984 416 ) ( 1342 2963 448 ) bricks/c_tn_m1 13 -4 135 1 1 0 0 0 +( 1256 3096 464 ) ( 1256 3096 416 ) ( 1368 2984 416 ) bricks/c_tn_m1 13 -4 135 1 1 0 0 0 +( 1342 2963 448 ) ( 1256 3096 416 ) ( 1256 3096 464 ) bricks/c_tn_m1 13 -4 135 1 1 0 0 0 +( 1312 2963 448 ) ( 1256 2963 448 ) ( 1284 3096 448 ) bricks/c_tn_m1 13 -4 135 1 1 0 0 0 +} +// brush 2014 +{ +( 1064 2804 240 ) ( 1026 2804 240 ) ( 1026 2744 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1026 2744 256 ) ( 1026 2804 256 ) ( 1064 2804 256 ) bricks/c_sr_mr5 0 4 315 1 1 0 0 0 +( 1016 2792 240 ) ( 1016 2792 256 ) ( 1064 2744 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1076 2754 256 ) ( 1076 2754 240 ) ( 1064 2744 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1076 2754 240 ) ( 1076 2754 256 ) ( 1026 2804 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1016 2792 256 ) ( 1016 2792 240 ) ( 1026 2804 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2015 +{ +( 1520 2720 256 ) ( 1520 2592 256 ) ( 1152 2592 256 ) bricks/c_sr_mr5 0 -11 282 1 1 0 0 0 +( 1152 2592 240 ) ( 1520 2592 240 ) ( 1520 2720 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1136 2612 112 ) ( 1136 2612 272 ) ( 1152 2536 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1136 2612 272 ) ( 1136 2612 112 ) ( 1152 2616 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1136 2534 112 ) ( 1136 2534 128 ) ( 1152 2536 128 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1152 2616 272 ) ( 1152 2616 112 ) ( 1168 2538 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2016 +{ +( 1488 2876 256 ) ( 1488 2748 256 ) ( 1120 2748 256 ) bricks/c_sr_mr5 0 -12 294 1 1 0 0 0 +( 1120 2748 240 ) ( 1488 2748 240 ) ( 1488 2876 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1108 2676 112 ) ( 1108 2676 272 ) ( 1136 2612 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1122 2684 112 ) ( 1122 2684 272 ) ( 1108 2676 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1152 2616 272 ) ( 1152 2616 112 ) ( 1136 2612 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1152 2616 112 ) ( 1152 2616 272 ) ( 1122 2684 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2017 +{ +( 1432 3008 256 ) ( 1432 2880 256 ) ( 1064 2880 256 ) bricks/c_sr_mr5 0 -14 303 1 1 0 0 0 +( 1064 2880 240 ) ( 1432 2880 240 ) ( 1432 3008 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1064 2744 112 ) ( 1064 2744 272 ) ( 1108 2676 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1076 2754 112 ) ( 1076 2754 272 ) ( 1064 2744 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1122 2684 272 ) ( 1122 2684 112 ) ( 1108 2676 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1076 2754 272 ) ( 1076 2754 112 ) ( 1122 2684 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2018 +{ +( 1280 3160 240 ) ( 1152 3160 240 ) ( 1152 2792 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1152 2792 256 ) ( 1152 3160 256 ) ( 1280 3160 256 ) bricks/c_sr_mr5 0 14 327 1 1 0 0 0 +( 1016 2792 384 ) ( 1016 2792 224 ) ( 948 2836 224 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1026 2804 384 ) ( 1026 2804 224 ) ( 1016 2792 224 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 956 2850 224 ) ( 956 2850 384 ) ( 948 2836 384 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1026 2804 224 ) ( 1026 2804 384 ) ( 956 2850 384 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2019 +{ +( 1148 3216 240 ) ( 1020 3216 240 ) ( 1020 2848 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1020 2848 256 ) ( 1020 3216 256 ) ( 1148 3216 256 ) bricks/c_sr_mr5 0 -1 336 1 1 0 0 0 +( 948 2836 384 ) ( 948 2836 224 ) ( 884 2864 224 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 956 2850 384 ) ( 956 2850 224 ) ( 948 2836 224 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 888 2880 224 ) ( 888 2880 384 ) ( 884 2864 384 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 888 2880 384 ) ( 888 2880 224 ) ( 956 2850 224 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2020 +{ +( 992 3248 240 ) ( 864 3248 240 ) ( 864 2880 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 864 2880 256 ) ( 864 3248 256 ) ( 992 3248 256 ) bricks/c_sr_mr5 0 7 348 1 1 0 0 0 +( 884 2864 384 ) ( 884 2864 224 ) ( 808 2880 224 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 884 2864 224 ) ( 884 2864 384 ) ( 888 2880 384 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 806 2864 384 ) ( 806 2864 368 ) ( 808 2880 368 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 888 2880 224 ) ( 888 2880 384 ) ( 810 2896 384 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2021 +{ +( 1310 3094 240 ) ( 1256 3094 240 ) ( 1256 3010 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1256 3010 256 ) ( 1256 3094 256 ) ( 1310 3094 256 ) bricks/c_sr_mr5 0 -6 135 1 1 0 0 0 +( 1368 2984 240 ) ( 1357 2975 240 ) ( 1357 2975 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1368 2984 240 ) ( 1368 2984 256 ) ( 1256 3096 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1256 3096 256 ) ( 1247 3085 256 ) ( 1247 3085 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1357 2975 240 ) ( 1247 3085 240 ) ( 1247 3085 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2022 +{ +( 1520 2720 256 ) ( 1520 2592 256 ) ( 1152 2592 256 ) bricks/c_sr_mr5 0 9 102 1 1 0 0 0 +( 1152 2592 240 ) ( 1520 2592 240 ) ( 1520 2720 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1504 2728 256 ) ( 1488 2723 256 ) ( 1488 2723 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1536 2572 112 ) ( 1536 2572 272 ) ( 1504 2728 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1520 2570 112 ) ( 1520 2570 272 ) ( 1536 2572 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1520 2570 240 ) ( 1488 2723 240 ) ( 1488 2723 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2023 +{ +( 1488 2876 256 ) ( 1488 2748 256 ) ( 1120 2748 256 ) bricks/c_sr_mr5 0 13 113 1 1 0 0 0 +( 1120 2748 240 ) ( 1488 2748 240 ) ( 1488 2876 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1448 2860 256 ) ( 1435 2853 256 ) ( 1435 2853 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1448 2860 272 ) ( 1448 2860 112 ) ( 1504 2728 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1504 2728 240 ) ( 1488 2723 240 ) ( 1488 2723 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1488 2723 240 ) ( 1435 2853 240 ) ( 1435 2853 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2024 +{ +( 1432 3008 256 ) ( 1432 2880 256 ) ( 1064 2880 256 ) bricks/c_sr_mr5 0 10 123 1 1 0 0 0 +( 1064 2880 240 ) ( 1432 2880 240 ) ( 1432 3008 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1368 2984 256 ) ( 1357 2975 256 ) ( 1357 2975 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1448 2860 112 ) ( 1448 2860 272 ) ( 1368 2984 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1448 2860 240 ) ( 1435 2853 240 ) ( 1435 2853 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1435 2853 240 ) ( 1357 2975 240 ) ( 1357 2975 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2025 +{ +( 1280 3160 240 ) ( 1152 3160 240 ) ( 1152 2792 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1152 2792 256 ) ( 1152 3160 256 ) ( 1280 3160 256 ) bricks/c_sr_mr5 0 15 147 1 1 0 0 0 +( 1256 3096 240 ) ( 1247 3085 240 ) ( 1247 3085 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1132 3176 384 ) ( 1132 3176 224 ) ( 1256 3096 224 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1132 3176 256 ) ( 1125 3163 256 ) ( 1125 3163 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1247 3085 240 ) ( 1125 3163 240 ) ( 1125 3163 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2026 +{ +( 1148 3216 240 ) ( 1020 3216 240 ) ( 1020 2848 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1020 2848 256 ) ( 1020 3216 256 ) ( 1148 3216 256 ) bricks/c_sr_mr5 0 -8 157 1 1 0 0 0 +( 1132 3176 240 ) ( 1125 3163 240 ) ( 1125 3163 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 1132 3176 224 ) ( 1132 3176 384 ) ( 1000 3232 384 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 996 3218 384 ) ( 996 3218 224 ) ( 1000 3232 224 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 996 3218 256 ) ( 1125 3163 256 ) ( 1125 3163 240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2027 +{ +( 992 3248 240 ) ( 864 3248 240 ) ( 864 2880 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 864 2880 256 ) ( 864 3248 256 ) ( 992 3248 256 ) bricks/c_sr_mr5 0 -10 168 1 1 0 0 0 +( 996 3218 224 ) ( 996 3218 384 ) ( 1000 3232 384 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 844 3264 384 ) ( 844 3264 224 ) ( 1000 3232 224 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 842 3248 384 ) ( 842 3248 224 ) ( 844 3264 224 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 996 3218 384 ) ( 996 3218 224 ) ( 842 3248 224 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2028 +{ +( 24 704 224 ) ( 24 848 224 ) ( -136 848 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -136 848 240 ) ( 24 848 240 ) ( 24 704 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -48 592 240 ) ( -48 592 224 ) ( -320 864 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 0 616 240 ) ( 0 616 224 ) ( -40 576 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1096 2168 240 ) ( 1096 2168 224 ) ( 1368 1896 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -288 920 224 ) ( -288 920 240 ) ( -328 880 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2029 +{ +( 1216 1840 240 ) ( 1216 1856 240 ) ( 1188 1856 240 ) bricks/c_sr_mr5 32 15 0 1 1 0 0 0 +( 1188 1856 256 ) ( 1216 1856 256 ) ( 1216 1840 256 ) bricks/c_sr_mr5 0 3 45 1 1 0 0 0 +( -84 578 240 ) ( -84 578 256 ) ( -72 568 256 ) bricks/c_sr_mr5 -96 -17 0 1 1 0 0 0 +( 1368 2008 256 ) ( 1368 2008 240 ) ( -72 568 240 ) bricks/c_sr_mr5 -96 -17 0 1 1 0 0 0 +( -84 578 256 ) ( -84 578 240 ) ( 1301 1963 240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1368 2008 240 ) ( 1368 2008 256 ) ( 1356 2018 256 ) bricks/c_sr_mr5 -96 -17 0 1 1 0 0 0 +} +// brush 2030 +{ +( 955 2101 240 ) ( 955 2117 240 ) ( 927 2117 240 ) bricks/c_sr_mr5 32 15 0 1 1 0 0 0 +( 927 2117 256 ) ( 955 2117 256 ) ( 955 2101 256 ) bricks/c_sr_mr5 0 -6 225 1 1 0 0 0 +( -376 808 240 ) ( -376 808 256 ) ( -364 798 256 ) bricks/c_sr_mr5 -96 -17 0 1 1 0 0 0 +( 1076 2238 256 ) ( 1076 2238 240 ) ( -364 798 240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -376 808 256 ) ( -376 808 240 ) ( 1040 2224 240 ) bricks/c_sr_mr5 -96 -17 0 1 1 0 0 0 +( 1076 2238 240 ) ( 1076 2238 256 ) ( 1064 2248 256 ) bricks/c_sr_mr5 -96 -17 0 1 1 0 0 0 +} +// brush 2031 +{ +( 1220 1836 240 ) ( 1220 1848 240 ) ( 1204 1848 240 ) bricks/c_tn_m3 68 0 0 0.710000 1 0 0 0 +( 1204 1848 448 ) ( 1220 1848 448 ) ( 1220 1836 448 ) bricks/c_tn_m3 68 0 0 0.710000 1 0 0 0 +( -72 568 240 ) ( -72 568 448 ) ( -58 558 448 ) bricks/c_tn_m3 68 0 0 0.710000 1 0 0 0 +( 1381 1997 448 ) ( 1381 1997 240 ) ( -58 558 240 ) bricks/c_tn_m3 68 0 0 0.710000 1 0 0 0 +( -72 568 448 ) ( -72 568 240 ) ( 1312 1952 240 ) bricks/c_tn_m3 68 0 0 0.710000 1 0 0 0 +( 1381 1997 240 ) ( 1381 1997 448 ) ( 1368 2008 448 ) bricks/c_tn_m3 68 0 0 0.710000 1 0 0 0 +} +// brush 2032 +{ +( 936 2120 240 ) ( 936 2132 240 ) ( 920 2132 240 ) bricks/c_tn_m3 -59 0 0 0.710000 1 0 0 0 +( 920 2132 448 ) ( 936 2132 448 ) ( 936 2120 448 ) bricks/c_tn_m3 -59 0 0 0.710000 1 0 0 0 +( -389 819 240 ) ( -389 819 448 ) ( -376 808 448 ) bricks/c_tn_m3 -59 0 0 0.710000 1 0 0 0 +( 1064 2248 448 ) ( 1064 2248 240 ) ( -376 808 240 ) bricks/c_tn_m3 -59 0 0 0.710000 1 0 0 0 +( -389 819 448 ) ( -389 819 240 ) ( 1028 2236 240 ) bricks/c_tn_m3 -59 0 0 0.710000 1 0 0 0 +( 1064 2248 240 ) ( 1064 2248 448 ) ( 1050 2258 448 ) bricks/c_tn_m3 -59 0 0 0.710000 1 0 0 0 +} +// brush 2033 +{ +( -244 444 448 ) ( -28 660 448 ) ( -4 636 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 12 652 448 ) ( 12 652 416 ) ( -220 420 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( -28 660 448 ) ( -244 444 448 ) ( -220 420 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( -48 592 416 ) ( -72 616 416 ) ( -60 604 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( -272 912 416 ) ( -248 888 416 ) ( -260 900 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( -54 598 416 ) ( -6 646 416 ) ( -30 622 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +} +// brush 2034 +{ +( -244 444 448 ) ( -28 660 448 ) ( -4 636 448 ) common/li_pv_v4a -3 -2 45 1 1 0 1 7000 +( -28 660 448 ) ( -244 444 448 ) ( -220 420 416 ) common/li_pv_v4a -3 -2 45 1 1 0 1 7000 +( -48 592 416 ) ( -72 616 416 ) ( -60 604 448 ) common/li_pv_v4a -3 -2 45 1 1 0 1 7000 +( -272 912 416 ) ( -248 888 416 ) ( -260 900 448 ) common/li_pv_v4a -3 -2 45 1 1 0 1 7000 +( -66 612 416 ) ( -20 658 416 ) ( -43 635 448 ) common/li_pv_v4a -3 -2 45 1 1 0 1 7000 +( -6 646 416 ) ( -54 598 416 ) ( -30 622 448 ) common/li_pv_v4a -3 -2 45 1 1 0 1 7000 +} +// brush 2035 +{ +( -244 444 448 ) ( -28 660 448 ) ( -4 636 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( -28 660 448 ) ( -244 444 448 ) ( -220 420 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( -48 592 416 ) ( -72 616 416 ) ( -60 604 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( -272 912 416 ) ( -248 888 416 ) ( -260 900 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( -20 658 416 ) ( -66 612 416 ) ( -43 635 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +} +// brush 2036 +{ +( -244 444 448 ) ( -28 660 448 ) ( -4 636 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 12 652 448 ) ( 12 652 416 ) ( -220 420 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( -28 660 448 ) ( -244 444 448 ) ( -220 420 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( -248 888 416 ) ( -272 912 416 ) ( -260 900 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( -88 1096 416 ) ( -64 1072 416 ) ( -76 1084 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +} +// brush 2037 +{ +( 0 1136 448 ) ( -216 920 448 ) ( -240 944 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -256 928 448 ) ( -256 928 416 ) ( -24 1160 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -216 920 448 ) ( 0 1136 448 ) ( -24 1160 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -248 888 416 ) ( -272 912 416 ) ( -260 900 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -88 1096 416 ) ( -64 1072 416 ) ( -76 1084 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +} +// brush 2038 +{ +( 0 1136 448 ) ( -216 920 448 ) ( -240 944 448 ) common/li_pv_v4a 3 5 225 1 1 0 1 7000 +( -216 920 448 ) ( 0 1136 448 ) ( -24 1160 416 ) common/li_pv_v4a 3 5 225 1 1 0 1 7000 +( -296 840 416 ) ( -320 864 416 ) ( -308 852 448 ) common/li_pv_v4a 3 5 225 1 1 0 1 7000 +( -272 912 416 ) ( -248 888 416 ) ( -260 900 448 ) common/li_pv_v4a 3 5 225 1 1 0 1 7000 +( -255 891 416 ) ( -299 847 416 ) ( -277 869 448 ) common/li_pv_v4a 3 5 225 1 1 0 1 7000 +( -272 898 416 ) ( -268 902 416 ) ( -270 900 448 ) common/li_pv_v4a 3 5 225 1 1 0 1 7000 +} +// brush 2039 +{ +( 0 1136 448 ) ( -216 920 448 ) ( -240 944 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -256 928 448 ) ( -256 928 416 ) ( -24 1160 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -216 920 448 ) ( 0 1136 448 ) ( -24 1160 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -296 840 416 ) ( -320 864 416 ) ( -308 852 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -272 912 416 ) ( -248 888 416 ) ( -260 900 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -268 902 416 ) ( -272 898 416 ) ( -270 900 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +} +// brush 2040 +{ +( 0 1136 448 ) ( -216 920 448 ) ( -240 944 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -216 920 448 ) ( 0 1136 448 ) ( -24 1160 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -296 840 416 ) ( -320 864 416 ) ( -308 852 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -272 912 416 ) ( -248 888 416 ) ( -260 900 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -299 847 416 ) ( -255 891 416 ) ( -277 869 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +} +// brush 2041 +{ +( 432 -96 448 ) ( 432 -64 448 ) ( 640 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 640 -64 448 ) ( 432 -64 448 ) ( 432 -64 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 288 -72 448 ) ( 288 -104 448 ) ( 288 -104 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 432 -64 416 ) ( 432 -96 448 ) ( 640 -80 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 544 -64 416 ) ( 544 -80 416 ) ( 544 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2042 +{ +( 112 -96 448 ) ( 112 -64 448 ) ( 320 -64 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 288 -104 448 ) ( 288 -72 448 ) ( 288 -72 416 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 112 -64 416 ) ( 112 -96 448 ) ( 320 -80 432 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 224 -80 416 ) ( 224 -64 416 ) ( 224 -72 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 224 -72 416 ) ( 240 -72 416 ) ( 232 -72 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 248 -88 424 ) ( 224 -88 424 ) ( 236 -88 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +} +// brush 2043 +{ +( 112 -96 448 ) ( 112 -64 448 ) ( 320 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 288 -104 448 ) ( 288 -72 448 ) ( 288 -72 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 112 -64 416 ) ( 112 -96 448 ) ( 320 -80 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 224 -80 416 ) ( 224 -64 416 ) ( 224 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 224 -88 424 ) ( 248 -88 424 ) ( 236 -88 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2044 +{ +( 112 -96 448 ) ( 112 -64 448 ) ( 320 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 288 -104 448 ) ( 288 -72 448 ) ( 288 -72 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 320 -64 448 ) ( 112 -64 448 ) ( 112 -64 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 112 -64 416 ) ( 112 -96 448 ) ( 320 -80 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 224 -80 416 ) ( 224 -64 416 ) ( 224 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 240 -72 416 ) ( 224 -72 416 ) ( 232 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2045 +{ +( 432 -96 448 ) ( 432 -64 448 ) ( 640 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 608 -104 448 ) ( 608 -72 448 ) ( 608 -72 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 640 -64 448 ) ( 432 -64 448 ) ( 432 -64 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 432 -64 416 ) ( 432 -96 448 ) ( 640 -80 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 544 -80 416 ) ( 544 -64 416 ) ( 544 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 560 -72 416 ) ( 544 -72 416 ) ( 552 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2046 +{ +( 432 -96 448 ) ( 432 -64 448 ) ( 640 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 608 -104 448 ) ( 608 -72 448 ) ( 608 -72 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 432 -64 416 ) ( 432 -96 448 ) ( 640 -80 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 544 -80 416 ) ( 544 -64 416 ) ( 544 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 544 -88 424 ) ( 568 -88 424 ) ( 556 -88 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2047 +{ +( 432 -96 448 ) ( 432 -64 448 ) ( 640 -64 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 608 -104 448 ) ( 608 -72 448 ) ( 608 -72 416 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 432 -64 416 ) ( 432 -96 448 ) ( 640 -80 432 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 544 -80 416 ) ( 544 -64 416 ) ( 544 -72 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 544 -72 416 ) ( 560 -72 416 ) ( 552 -72 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 568 -88 424 ) ( 544 -88 424 ) ( 556 -88 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +} +// brush 2048 +{ +( 752 -96 448 ) ( 752 -64 448 ) ( 960 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 960 -64 448 ) ( 752 -64 448 ) ( 752 -64 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 608 -72 448 ) ( 608 -104 448 ) ( 608 -104 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 752 -64 416 ) ( 752 -96 448 ) ( 960 -80 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 864 -64 416 ) ( 864 -80 416 ) ( 864 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2049 +{ +( 1072 -96 448 ) ( 1072 -64 448 ) ( 1280 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 -64 448 ) ( 1072 -64 448 ) ( 1072 -64 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 928 -72 448 ) ( 928 -104 448 ) ( 928 -104 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1072 -64 416 ) ( 1072 -96 448 ) ( 1280 -80 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1184 -64 416 ) ( 1184 -80 416 ) ( 1184 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2050 +{ +( 752 -96 448 ) ( 752 -64 448 ) ( 960 -64 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 928 -104 448 ) ( 928 -72 448 ) ( 928 -72 416 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 752 -64 416 ) ( 752 -96 448 ) ( 960 -80 432 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 864 -80 416 ) ( 864 -64 416 ) ( 864 -72 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 864 -72 416 ) ( 880 -72 416 ) ( 872 -72 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 888 -88 424 ) ( 864 -88 424 ) ( 876 -88 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +} +// brush 2051 +{ +( 752 -96 448 ) ( 752 -64 448 ) ( 960 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 928 -104 448 ) ( 928 -72 448 ) ( 928 -72 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 752 -64 416 ) ( 752 -96 448 ) ( 960 -80 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 864 -80 416 ) ( 864 -64 416 ) ( 864 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 864 -88 424 ) ( 888 -88 424 ) ( 876 -88 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2052 +{ +( 752 -96 448 ) ( 752 -64 448 ) ( 960 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 928 -104 448 ) ( 928 -72 448 ) ( 928 -72 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 960 -64 448 ) ( 752 -64 448 ) ( 752 -64 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 752 -64 416 ) ( 752 -96 448 ) ( 960 -80 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 864 -80 416 ) ( 864 -64 416 ) ( 864 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 880 -72 416 ) ( 864 -72 416 ) ( 872 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2053 +{ +( 1072 -96 448 ) ( 1072 -64 448 ) ( 1280 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1248 -104 448 ) ( 1248 -72 448 ) ( 1248 -72 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 -64 448 ) ( 1072 -64 448 ) ( 1072 -64 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1072 -64 416 ) ( 1072 -96 448 ) ( 1280 -80 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1184 -80 416 ) ( 1184 -64 416 ) ( 1184 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1200 -72 416 ) ( 1184 -72 416 ) ( 1192 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2054 +{ +( 1072 -96 448 ) ( 1072 -64 448 ) ( 1280 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1248 -104 448 ) ( 1248 -72 448 ) ( 1248 -72 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1072 -64 416 ) ( 1072 -96 448 ) ( 1280 -80 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1184 -80 416 ) ( 1184 -64 416 ) ( 1184 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1184 -88 424 ) ( 1208 -88 424 ) ( 1196 -88 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2055 +{ +( 1072 -96 448 ) ( 1072 -64 448 ) ( 1280 -64 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1248 -104 448 ) ( 1248 -72 448 ) ( 1248 -72 416 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1072 -64 416 ) ( 1072 -96 448 ) ( 1280 -80 432 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1184 -80 416 ) ( 1184 -64 416 ) ( 1184 -72 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1184 -72 416 ) ( 1200 -72 416 ) ( 1192 -72 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1208 -88 424 ) ( 1184 -88 424 ) ( 1196 -88 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +} +// brush 2056 +{ +( 1392 -96 448 ) ( 1392 -64 448 ) ( 1600 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1600 -64 448 ) ( 1392 -64 448 ) ( 1392 -64 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1248 -72 448 ) ( 1248 -104 448 ) ( 1248 -104 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1392 -64 416 ) ( 1392 -96 448 ) ( 1600 -80 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1504 -64 416 ) ( 1504 -80 416 ) ( 1504 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2057 +{ +( 1712 -96 448 ) ( 1712 -64 448 ) ( 1920 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1920 -64 448 ) ( 1712 -64 448 ) ( 1712 -64 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1568 -72 448 ) ( 1568 -104 448 ) ( 1568 -104 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1712 -64 416 ) ( 1712 -96 448 ) ( 1920 -80 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1824 -64 416 ) ( 1824 -80 416 ) ( 1824 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2058 +{ +( 1392 -96 448 ) ( 1392 -64 448 ) ( 1600 -64 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1568 -104 448 ) ( 1568 -72 448 ) ( 1568 -72 416 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1392 -64 416 ) ( 1392 -96 448 ) ( 1600 -80 432 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1504 -80 416 ) ( 1504 -64 416 ) ( 1504 -72 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1504 -72 416 ) ( 1520 -72 416 ) ( 1512 -72 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1528 -88 424 ) ( 1504 -88 424 ) ( 1516 -88 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +} +// brush 2059 +{ +( 1392 -96 448 ) ( 1392 -64 448 ) ( 1600 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1568 -104 448 ) ( 1568 -72 448 ) ( 1568 -72 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1392 -64 416 ) ( 1392 -96 448 ) ( 1600 -80 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1504 -80 416 ) ( 1504 -64 416 ) ( 1504 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1504 -88 424 ) ( 1528 -88 424 ) ( 1516 -88 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2060 +{ +( 1392 -96 448 ) ( 1392 -64 448 ) ( 1600 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1568 -104 448 ) ( 1568 -72 448 ) ( 1568 -72 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1600 -64 448 ) ( 1392 -64 448 ) ( 1392 -64 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1392 -64 416 ) ( 1392 -96 448 ) ( 1600 -80 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1504 -80 416 ) ( 1504 -64 416 ) ( 1504 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1520 -72 416 ) ( 1504 -72 416 ) ( 1512 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2061 +{ +( 1712 -96 448 ) ( 1712 -64 448 ) ( 1920 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1888 -104 448 ) ( 1888 -72 448 ) ( 1888 -72 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1920 -64 448 ) ( 1712 -64 448 ) ( 1712 -64 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1712 -64 416 ) ( 1712 -96 448 ) ( 1920 -80 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1824 -80 416 ) ( 1824 -64 416 ) ( 1824 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1840 -72 416 ) ( 1824 -72 416 ) ( 1832 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2062 +{ +( 1712 -96 448 ) ( 1712 -64 448 ) ( 1920 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1888 -104 448 ) ( 1888 -72 448 ) ( 1888 -72 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1712 -64 416 ) ( 1712 -96 448 ) ( 1920 -80 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1824 -80 416 ) ( 1824 -64 416 ) ( 1824 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1824 -88 424 ) ( 1848 -88 424 ) ( 1836 -88 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2063 +{ +( 1712 -96 448 ) ( 1712 -64 448 ) ( 1920 -64 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1888 -104 448 ) ( 1888 -72 448 ) ( 1888 -72 416 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1712 -64 416 ) ( 1712 -96 448 ) ( 1920 -80 432 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1824 -80 416 ) ( 1824 -64 416 ) ( 1824 -72 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1824 -72 416 ) ( 1840 -72 416 ) ( 1832 -72 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1848 -88 424 ) ( 1824 -88 424 ) ( 1836 -88 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +} +// brush 2064 +{ +( 2032 -96 448 ) ( 2032 -64 448 ) ( 2240 -64 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 2208 -104 448 ) ( 2208 -72 448 ) ( 2208 -72 416 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 2032 -64 416 ) ( 2032 -96 448 ) ( 2240 -80 432 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 2144 -80 416 ) ( 2144 -64 416 ) ( 2144 -72 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 2144 -72 416 ) ( 2160 -72 416 ) ( 2152 -72 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 2168 -88 424 ) ( 2144 -88 424 ) ( 2156 -88 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +} +// brush 2065 +{ +( 2032 -96 448 ) ( 2032 -64 448 ) ( 2240 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2208 -104 448 ) ( 2208 -72 448 ) ( 2208 -72 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2032 -64 416 ) ( 2032 -96 448 ) ( 2240 -80 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2144 -80 416 ) ( 2144 -64 416 ) ( 2144 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2144 -88 424 ) ( 2168 -88 424 ) ( 2156 -88 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2066 +{ +( 2032 -96 448 ) ( 2032 -64 448 ) ( 2240 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2208 -104 448 ) ( 2208 -72 448 ) ( 2208 -72 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2240 -64 448 ) ( 2032 -64 448 ) ( 2032 -64 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2032 -64 416 ) ( 2032 -96 448 ) ( 2240 -80 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2144 -80 416 ) ( 2144 -64 416 ) ( 2144 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2160 -72 416 ) ( 2144 -72 416 ) ( 2152 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2067 +{ +( 2032 -96 448 ) ( 2032 -64 448 ) ( 2240 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2240 -64 448 ) ( 2032 -64 448 ) ( 2032 -64 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1888 -72 448 ) ( 1888 -104 448 ) ( 1888 -104 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2032 -64 416 ) ( 2032 -96 448 ) ( 2240 -80 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2144 -64 416 ) ( 2144 -80 416 ) ( 2144 -72 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2068 +{ +( 2240 -448 240 ) ( 2128 -448 240 ) ( 2128 -464 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2128 -464 448 ) ( 2128 -448 448 ) ( 2240 -448 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 146 -464 240 ) ( 146 -464 448 ) ( 2278 -464 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2280 -448 448 ) ( 2280 -448 240 ) ( 2278 -464 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2280 -448 240 ) ( 2280 -448 448 ) ( 224 -448 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 146 -464 448 ) ( 146 -464 240 ) ( 148 -448 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2069 +{ +( 2240 -432 240 ) ( 2128 -432 240 ) ( 2128 -448 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2128 -448 256 ) ( 2128 -432 256 ) ( 2240 -432 256 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 148 -448 240 ) ( 148 -448 256 ) ( 2280 -448 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2282 -432 256 ) ( 2282 -432 240 ) ( 2280 -448 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2282 -432 240 ) ( 2282 -432 256 ) ( 224 -432 256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 148 -448 256 ) ( 148 -448 240 ) ( 150 -432 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2070 +{ +( 2240 -48 224 ) ( 1568 -48 224 ) ( 1568 -464 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1568 -464 240 ) ( 1568 -48 240 ) ( 2240 -48 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1568 -464 240 ) ( 2240 -464 240 ) ( 2240 -464 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2240 -464 240 ) ( 2240 -48 240 ) ( 2240 -48 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2240 -48 240 ) ( 1568 -48 240 ) ( 1568 -48 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 224 -432 224 ) ( 224 -392 224 ) ( 224 -412 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2071 +{ +( 2240 -48 448 ) ( 1568 -48 448 ) ( 1568 -464 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1568 -464 464 ) ( 1568 -48 464 ) ( 2240 -48 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1568 -464 464 ) ( 2240 -464 464 ) ( 2240 -464 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2240 -464 464 ) ( 2240 -48 464 ) ( 2240 -48 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2240 -48 464 ) ( 1568 -48 464 ) ( 1568 -48 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 224 -432 448 ) ( 224 -392 448 ) ( 224 -412 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2072 +{ +( 2240 -48 240 ) ( 2128 -48 240 ) ( 2128 -64 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2128 -64 448 ) ( 2128 -48 448 ) ( 2240 -48 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 184 -64 240 ) ( 184 -64 448 ) ( 2316 -64 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2318 -48 448 ) ( 2318 -48 240 ) ( 2316 -64 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2318 -48 240 ) ( 2318 -48 448 ) ( 224 -48 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 184 -64 448 ) ( 184 -64 240 ) ( 186 -48 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2073 +{ +( 2240 -64 240 ) ( 2128 -64 240 ) ( 2128 -80 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2128 -80 256 ) ( 2128 -64 256 ) ( 2240 -64 256 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 182 -80 240 ) ( 182 -80 256 ) ( 2314 -80 256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2316 -64 256 ) ( 2316 -64 240 ) ( 2314 -80 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2316 -64 240 ) ( 2316 -64 256 ) ( 224 -64 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 182 -80 256 ) ( 182 -80 240 ) ( 184 -64 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2074 +{ +( -352 -464 448 ) ( -352 -48 448 ) ( 320 -48 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 288 -464 448 ) ( 288 -48 448 ) ( 288 -48 432 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -1856 -416 448 ) ( -1856 -448 416 ) ( 320 -432 432 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 224 -432 416 ) ( 224 -416 416 ) ( 224 -424 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 224 -424 416 ) ( 248 -424 416 ) ( 236 -424 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 240 -440 416 ) ( 216 -440 416 ) ( 228 -440 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +} +// brush 2075 +{ +( -352 -464 448 ) ( -352 -48 448 ) ( 320 -48 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -352 -448 448 ) ( 320 -448 448 ) ( 320 -448 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 288 -464 448 ) ( 288 -48 448 ) ( 288 -48 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1856 -416 448 ) ( -1856 -448 416 ) ( 320 -432 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 224 -432 416 ) ( 224 -416 416 ) ( 224 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 216 -440 416 ) ( 240 -440 416 ) ( 228 -440 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2076 +{ +( -352 -464 448 ) ( -352 -48 448 ) ( 320 -48 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 288 -464 448 ) ( 288 -48 448 ) ( 288 -48 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1856 -416 448 ) ( -1856 -448 416 ) ( 320 -432 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 224 -432 416 ) ( 224 -416 416 ) ( 224 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 248 -424 416 ) ( 224 -424 416 ) ( 236 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2077 +{ +( -32 -464 448 ) ( -32 -48 448 ) ( 640 -48 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -32 -448 448 ) ( 640 -448 448 ) ( 640 -448 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1536 -416 448 ) ( -1536 -448 416 ) ( 640 -432 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 544 -416 416 ) ( 544 -432 416 ) ( 544 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 288 -432 416 ) ( 288 -416 416 ) ( 288 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2078 +{ +( -32 -464 448 ) ( -32 -48 448 ) ( 640 -48 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 608 -464 448 ) ( 608 -48 448 ) ( 608 -48 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1536 -416 448 ) ( -1536 -448 416 ) ( 640 -432 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 544 -432 416 ) ( 544 -416 416 ) ( 544 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 568 -424 416 ) ( 544 -424 416 ) ( 556 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2079 +{ +( -32 -464 448 ) ( -32 -48 448 ) ( 640 -48 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -32 -448 448 ) ( 640 -448 448 ) ( 640 -448 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 608 -464 448 ) ( 608 -48 448 ) ( 608 -48 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1536 -416 448 ) ( -1536 -448 416 ) ( 640 -432 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 544 -432 416 ) ( 544 -416 416 ) ( 544 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 536 -440 416 ) ( 560 -440 416 ) ( 548 -440 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2080 +{ +( -32 -464 448 ) ( -32 -48 448 ) ( 640 -48 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 608 -464 448 ) ( 608 -48 448 ) ( 608 -48 432 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -1536 -416 448 ) ( -1536 -448 416 ) ( 640 -432 432 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 544 -432 416 ) ( 544 -416 416 ) ( 544 -424 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 544 -424 416 ) ( 568 -424 416 ) ( 556 -424 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 560 -440 416 ) ( 536 -440 416 ) ( 548 -440 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +} +// brush 2081 +{ +( 288 -464 448 ) ( 288 -48 448 ) ( 960 -48 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 928 -464 448 ) ( 928 -48 448 ) ( 928 -48 432 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -1216 -416 448 ) ( -1216 -448 416 ) ( 960 -432 432 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 864 -432 416 ) ( 864 -416 416 ) ( 864 -424 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 864 -424 416 ) ( 888 -424 416 ) ( 876 -424 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 880 -440 416 ) ( 856 -440 416 ) ( 868 -440 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +} +// brush 2082 +{ +( 288 -464 448 ) ( 288 -48 448 ) ( 960 -48 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 288 -448 448 ) ( 960 -448 448 ) ( 960 -448 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 928 -464 448 ) ( 928 -48 448 ) ( 928 -48 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1216 -416 448 ) ( -1216 -448 416 ) ( 960 -432 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 864 -432 416 ) ( 864 -416 416 ) ( 864 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 856 -440 416 ) ( 880 -440 416 ) ( 868 -440 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2083 +{ +( 288 -464 448 ) ( 288 -48 448 ) ( 960 -48 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 928 -464 448 ) ( 928 -48 448 ) ( 928 -48 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1216 -416 448 ) ( -1216 -448 416 ) ( 960 -432 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 864 -432 416 ) ( 864 -416 416 ) ( 864 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 888 -424 416 ) ( 864 -424 416 ) ( 876 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2084 +{ +( 288 -464 448 ) ( 288 -48 448 ) ( 960 -48 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 288 -448 448 ) ( 960 -448 448 ) ( 960 -448 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1216 -416 448 ) ( -1216 -448 416 ) ( 960 -432 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 864 -416 416 ) ( 864 -432 416 ) ( 864 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 608 -432 416 ) ( 608 -416 416 ) ( 608 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2085 +{ +( 608 -464 448 ) ( 608 -48 448 ) ( 1280 -48 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 608 -448 448 ) ( 1280 -448 448 ) ( 1280 -448 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -896 -416 448 ) ( -896 -448 416 ) ( 1280 -432 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1184 -416 416 ) ( 1184 -432 416 ) ( 1184 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 928 -432 416 ) ( 928 -416 416 ) ( 928 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2086 +{ +( 608 -464 448 ) ( 608 -48 448 ) ( 1280 -48 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1248 -464 448 ) ( 1248 -48 448 ) ( 1248 -48 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -896 -416 448 ) ( -896 -448 416 ) ( 1280 -432 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1184 -432 416 ) ( 1184 -416 416 ) ( 1184 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1208 -424 416 ) ( 1184 -424 416 ) ( 1196 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2087 +{ +( 608 -464 448 ) ( 608 -48 448 ) ( 1280 -48 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 608 -448 448 ) ( 1280 -448 448 ) ( 1280 -448 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1248 -464 448 ) ( 1248 -48 448 ) ( 1248 -48 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -896 -416 448 ) ( -896 -448 416 ) ( 1280 -432 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1184 -432 416 ) ( 1184 -416 416 ) ( 1184 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1176 -440 416 ) ( 1200 -440 416 ) ( 1188 -440 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2088 +{ +( 608 -464 448 ) ( 608 -48 448 ) ( 1280 -48 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1248 -464 448 ) ( 1248 -48 448 ) ( 1248 -48 432 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -896 -416 448 ) ( -896 -448 416 ) ( 1280 -432 432 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1184 -432 416 ) ( 1184 -416 416 ) ( 1184 -424 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1184 -424 416 ) ( 1208 -424 416 ) ( 1196 -424 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1200 -440 416 ) ( 1176 -440 416 ) ( 1188 -440 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +} +// brush 2089 +{ +( 928 -464 448 ) ( 928 -48 448 ) ( 1600 -48 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1568 -464 448 ) ( 1568 -48 448 ) ( 1568 -48 432 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -576 -416 448 ) ( -576 -448 416 ) ( 1600 -432 432 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1504 -432 416 ) ( 1504 -416 416 ) ( 1504 -424 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1504 -424 416 ) ( 1528 -424 416 ) ( 1516 -424 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1520 -440 416 ) ( 1496 -440 416 ) ( 1508 -440 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +} +// brush 2090 +{ +( 928 -464 448 ) ( 928 -48 448 ) ( 1600 -48 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 928 -448 448 ) ( 1600 -448 448 ) ( 1600 -448 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1568 -464 448 ) ( 1568 -48 448 ) ( 1568 -48 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -576 -416 448 ) ( -576 -448 416 ) ( 1600 -432 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1504 -432 416 ) ( 1504 -416 416 ) ( 1504 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1496 -440 416 ) ( 1520 -440 416 ) ( 1508 -440 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2091 +{ +( 928 -464 448 ) ( 928 -48 448 ) ( 1600 -48 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1568 -464 448 ) ( 1568 -48 448 ) ( 1568 -48 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -576 -416 448 ) ( -576 -448 416 ) ( 1600 -432 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1504 -432 416 ) ( 1504 -416 416 ) ( 1504 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1528 -424 416 ) ( 1504 -424 416 ) ( 1516 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2092 +{ +( 928 -464 448 ) ( 928 -48 448 ) ( 1600 -48 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 928 -448 448 ) ( 1600 -448 448 ) ( 1600 -448 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -576 -416 448 ) ( -576 -448 416 ) ( 1600 -432 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1504 -416 416 ) ( 1504 -432 416 ) ( 1504 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1248 -432 416 ) ( 1248 -416 416 ) ( 1248 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2093 +{ +( 1248 -464 448 ) ( 1248 -48 448 ) ( 1920 -48 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1248 -448 448 ) ( 1920 -448 448 ) ( 1920 -448 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -256 -416 448 ) ( -256 -448 416 ) ( 1920 -432 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1824 -416 416 ) ( 1824 -432 416 ) ( 1824 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1568 -432 416 ) ( 1568 -416 416 ) ( 1568 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2094 +{ +( 1248 -464 448 ) ( 1248 -48 448 ) ( 1920 -48 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1888 -464 448 ) ( 1888 -48 448 ) ( 1888 -48 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -256 -416 448 ) ( -256 -448 416 ) ( 1920 -432 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1824 -432 416 ) ( 1824 -416 416 ) ( 1824 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1848 -424 416 ) ( 1824 -424 416 ) ( 1836 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2095 +{ +( 1248 -464 448 ) ( 1248 -48 448 ) ( 1920 -48 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1248 -448 448 ) ( 1920 -448 448 ) ( 1920 -448 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1888 -464 448 ) ( 1888 -48 448 ) ( 1888 -48 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -256 -416 448 ) ( -256 -448 416 ) ( 1920 -432 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1824 -432 416 ) ( 1824 -416 416 ) ( 1824 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1816 -440 416 ) ( 1840 -440 416 ) ( 1828 -440 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2096 +{ +( 1248 -464 448 ) ( 1248 -48 448 ) ( 1920 -48 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1888 -464 448 ) ( 1888 -48 448 ) ( 1888 -48 432 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -256 -416 448 ) ( -256 -448 416 ) ( 1920 -432 432 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1824 -432 416 ) ( 1824 -416 416 ) ( 1824 -424 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1824 -424 416 ) ( 1848 -424 416 ) ( 1836 -424 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 1840 -440 416 ) ( 1816 -440 416 ) ( 1828 -440 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +} +// brush 2097 +{ +( 1568 -464 448 ) ( 1568 -48 448 ) ( 2240 -48 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 2208 -464 448 ) ( 2208 -48 448 ) ( 2208 -48 432 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 64 -416 448 ) ( 64 -448 416 ) ( 2240 -432 432 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 2144 -432 416 ) ( 2144 -416 416 ) ( 2144 -424 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 2144 -424 416 ) ( 2168 -424 416 ) ( 2156 -424 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( 2160 -440 416 ) ( 2136 -440 416 ) ( 2148 -440 448 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +} +// brush 2098 +{ +( 1568 -464 448 ) ( 1568 -48 448 ) ( 2240 -48 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1568 -448 448 ) ( 2240 -448 448 ) ( 2240 -448 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2208 -464 448 ) ( 2208 -48 448 ) ( 2208 -48 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 64 -416 448 ) ( 64 -448 416 ) ( 2240 -432 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2144 -432 416 ) ( 2144 -416 416 ) ( 2144 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2136 -440 416 ) ( 2160 -440 416 ) ( 2148 -440 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2099 +{ +( 1568 -464 448 ) ( 1568 -48 448 ) ( 2240 -48 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2208 -464 448 ) ( 2208 -48 448 ) ( 2208 -48 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 64 -416 448 ) ( 64 -448 416 ) ( 2240 -432 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2144 -432 416 ) ( 2144 -416 416 ) ( 2144 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2168 -424 416 ) ( 2144 -424 416 ) ( 2156 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2100 +{ +( 1568 -464 448 ) ( 1568 -48 448 ) ( 2240 -48 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1568 -448 448 ) ( 2240 -448 448 ) ( 2240 -448 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 64 -416 448 ) ( 64 -448 416 ) ( 2240 -432 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2144 -416 416 ) ( 2144 -432 416 ) ( 2144 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1888 -432 416 ) ( 1888 -416 416 ) ( 1888 -424 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2101 +{ +( 0 -432 240 ) ( 128 -432 240 ) ( 128 -64 240 ) bricks/c_sr_mr5 -95 17 -180 1 1 0 0 0 +( 128 -64 256 ) ( 128 -432 256 ) ( 0 -432 256 ) bricks/c_sr_mr5 0 7 348 1 1 0 0 0 +( -4 -402 224 ) ( -4 -402 384 ) ( -8 -416 384 ) bricks/c_sr_mr5 0 -17 -180 1 -1 0 0 0 +( 148 -448 384 ) ( 148 -448 224 ) ( -8 -416 224 ) bricks/c_sr_mr5 32 -17 -180 1 -1 0 0 0 +( 150 -432 384 ) ( 150 -432 224 ) ( 148 -448 224 ) bricks/c_sr_mr5 0 -17 -180 1 -1 0 0 0 +( -4 -402 384 ) ( -4 -402 224 ) ( 150 -432 224 ) bricks/c_sr_mr5 32 -17 -180 1 -1 0 0 0 +} +// brush 2102 +{ +( -156 -400 240 ) ( -28 -400 240 ) ( -28 -32 240 ) bricks/c_sr_mr5 -95 17 -180 1 1 0 0 0 +( -28 -32 256 ) ( -28 -400 256 ) ( -156 -400 256 ) bricks/c_sr_mr5 0 -4 337 1 1 0 0 0 +( -140 -360 240 ) ( -133 -347 240 ) ( -133 -347 256 ) bricks/c_sr_mr5 0 -17 -180 1 -1 0 0 0 +( -140 -360 224 ) ( -140 -360 384 ) ( -8 -416 384 ) bricks/c_sr_mr5 32 -17 -180 1 -1 0 0 0 +( -4 -402 384 ) ( -4 -402 224 ) ( -8 -416 224 ) bricks/c_sr_mr5 0 -17 -180 1 -1 0 0 0 +( -4 -402 256 ) ( -133 -347 256 ) ( -133 -347 240 ) bricks/c_sr_mr5 32 -17 -180 1 -1 0 0 0 +} +// brush 2103 +{ +( -288 -344 240 ) ( -160 -344 240 ) ( -160 24 240 ) bricks/c_sr_mr5 -95 17 -180 1 1 0 0 0 +( -160 24 256 ) ( -160 -344 256 ) ( -288 -344 256 ) bricks/c_sr_mr5 0 5 327 1 1 0 0 0 +( -264 -280 240 ) ( -255 -269 240 ) ( -255 -269 256 ) bricks/c_sr_mr5 0 -17 -180 1 -1 0 0 0 +( -140 -360 384 ) ( -140 -360 224 ) ( -264 -280 224 ) bricks/c_sr_mr5 32 -17 -180 1 -1 0 0 0 +( -140 -360 256 ) ( -133 -347 256 ) ( -133 -347 240 ) bricks/c_sr_mr5 0 -17 -180 1 -1 0 0 0 +( -255 -269 240 ) ( -133 -347 240 ) ( -133 -347 256 ) bricks/c_sr_mr5 32 -17 -180 1 -1 0 0 0 +} +// brush 2104 +{ +( -440 -192 256 ) ( -440 -64 256 ) ( -72 -64 256 ) bricks/c_sr_mr5 0 8 303 1 1 0 0 0 +( -72 -64 240 ) ( -440 -64 240 ) ( -440 -192 240 ) bricks/c_sr_mr5 -95 17 -180 1 1 0 0 0 +( -376 -168 256 ) ( -365 -159 256 ) ( -365 -159 240 ) bricks/c_sr_mr5 32 -17 -180 1 -1 0 0 0 +( -456 -44 112 ) ( -456 -44 272 ) ( -376 -168 272 ) bricks/c_sr_mr5 0 -17 -180 1 -1 0 0 0 +( -456 -44 240 ) ( -443 -37 240 ) ( -443 -37 256 ) bricks/c_sr_mr5 32 -17 -180 1 -1 0 0 0 +( -443 -37 240 ) ( -365 -159 240 ) ( -365 -159 256 ) bricks/c_sr_mr5 0 -17 -180 1 -1 0 0 0 +} +// brush 2105 +{ +( -496 -60 256 ) ( -496 68 256 ) ( -128 68 256 ) bricks/c_sr_mr5 0 10 293 1 1 0 0 0 +( -128 68 240 ) ( -496 68 240 ) ( -496 -60 240 ) bricks/c_sr_mr5 -95 17 -180 1 1 0 0 0 +( -456 -44 256 ) ( -443 -37 256 ) ( -443 -37 240 ) bricks/c_sr_mr5 32 -17 -180 1 -1 0 0 0 +( -456 -44 272 ) ( -456 -44 112 ) ( -512 88 112 ) bricks/c_sr_mr5 0 -17 -180 1 -1 0 0 0 +( -512 88 240 ) ( -496 93 240 ) ( -496 93 256 ) bricks/c_sr_mr5 32 -17 -180 1 -1 0 0 0 +( -496 93 240 ) ( -443 -37 240 ) ( -443 -37 256 ) bricks/c_sr_mr5 0 -17 -180 1 -1 0 0 0 +} +// brush 2106 +{ +( -528 96 256 ) ( -528 224 256 ) ( -160 224 256 ) bricks/c_sr_mr5 0 -3 282 1 1 0 0 0 +( -160 224 240 ) ( -528 224 240 ) ( -528 96 240 ) bricks/c_sr_mr5 -95 17 -180 1 1 0 0 0 +( -512 88 256 ) ( -496 93 256 ) ( -496 93 240 ) bricks/c_sr_mr5 32 -17 -180 1 -1 0 0 0 +( -544 244 112 ) ( -544 244 272 ) ( -512 88 272 ) bricks/c_sr_mr5 0 -17 -180 1 -1 0 0 0 +( -528 246 112 ) ( -528 246 272 ) ( -544 244 272 ) bricks/c_sr_mr5 32 -17 -180 1 -1 0 0 0 +( -528 246 240 ) ( -496 93 240 ) ( -496 93 256 ) bricks/c_sr_mr5 0 -17 -180 1 -1 0 0 0 +} +// brush 2107 +{ +( -318 -278 240 ) ( -264 -278 240 ) ( -264 -194 240 ) bricks/c_sr_mr5 -95 17 -180 1 1 0 0 0 +( -264 -194 256 ) ( -264 -278 256 ) ( -318 -278 256 ) bricks/c_sr_mr5 0 -2 315 1 1 0 0 0 +( -376 -168 240 ) ( -365 -159 240 ) ( -365 -159 256 ) bricks/c_sr_mr5 32 -17 -180 1 -1 0 0 0 +( -376 -168 240 ) ( -376 -168 256 ) ( -264 -280 256 ) bricks/c_sr_mr5 -31 -17 -180 1 -1 0 0 0 +( -264 -280 256 ) ( -255 -269 256 ) ( -255 -269 240 ) bricks/c_sr_mr5 0 -17 -180 1 -1 0 0 0 +( -365 -159 240 ) ( -255 -269 240 ) ( -255 -269 256 ) bricks/c_sr_mr5 -69 -17 -180 1 -1 0 0 0 +} +// brush 2108 +{ +( 0 -432 240 ) ( 128 -432 240 ) ( 128 -64 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 128 -64 256 ) ( 128 -432 256 ) ( 0 -432 256 ) bricks/c_sr_mr5 0 -8 168 1 1 0 0 0 +( 108 -48 384 ) ( 108 -48 224 ) ( 184 -64 224 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 108 -48 224 ) ( 108 -48 384 ) ( 104 -64 384 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 186 -48 384 ) ( 186 -48 368 ) ( 184 -64 368 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 104 -64 224 ) ( 104 -64 384 ) ( 182 -80 384 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2109 +{ +( -156 -400 240 ) ( -28 -400 240 ) ( -28 -32 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -28 -32 256 ) ( -28 -400 256 ) ( -156 -400 256 ) bricks/c_sr_mr5 0 -1 156 1 1 0 0 0 +( 44 -20 384 ) ( 44 -20 224 ) ( 108 -48 224 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 36 -34 384 ) ( 36 -34 224 ) ( 44 -20 224 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 104 -64 224 ) ( 104 -64 384 ) ( 108 -48 384 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 104 -64 384 ) ( 104 -64 224 ) ( 36 -34 224 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2110 +{ +( -288 -344 240 ) ( -160 -344 240 ) ( -160 24 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -160 24 256 ) ( -160 -344 256 ) ( -288 -344 256 ) bricks/c_sr_mr5 0 -9 147 1 1 0 0 0 +( -24 24 384 ) ( -24 24 224 ) ( 44 -20 224 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -34 12 384 ) ( -34 12 224 ) ( -24 24 224 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 36 -34 224 ) ( 36 -34 384 ) ( 44 -20 384 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -34 12 224 ) ( -34 12 384 ) ( 36 -34 384 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2111 +{ +( -440 -192 256 ) ( -440 -64 256 ) ( -72 -64 256 ) bricks/c_sr_mr5 0 -12 123 1 1 0 0 0 +( -72 -64 240 ) ( -440 -64 240 ) ( -440 -192 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -72 72 112 ) ( -72 72 272 ) ( -116 140 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -84 62 112 ) ( -84 62 272 ) ( -72 72 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -130 132 272 ) ( -130 132 112 ) ( -116 140 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -84 62 272 ) ( -84 62 112 ) ( -130 132 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2112 +{ +( -496 -60 256 ) ( -496 68 256 ) ( -128 68 256 ) bricks/c_sr_mr5 0 -16 114 1 1 0 0 0 +( -128 68 240 ) ( -496 68 240 ) ( -496 -60 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -116 140 112 ) ( -116 140 272 ) ( -144 204 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -130 132 112 ) ( -130 132 272 ) ( -116 140 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -160 200 272 ) ( -160 200 112 ) ( -144 204 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -160 200 112 ) ( -160 200 272 ) ( -130 132 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2113 +{ +( -528 96 256 ) ( -528 224 256 ) ( -160 224 256 ) bricks/c_sr_mr5 0 1 102 1 1 0 0 0 +( -160 224 240 ) ( -528 224 240 ) ( -528 96 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -144 204 112 ) ( -144 204 272 ) ( -160 280 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -144 204 272 ) ( -144 204 112 ) ( -160 200 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -144 282 112 ) ( -144 282 128 ) ( -160 280 128 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -160 200 272 ) ( -160 200 112 ) ( -176 278 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2114 +{ +( -72 12 240 ) ( -34 12 240 ) ( -34 72 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -34 72 256 ) ( -34 12 256 ) ( -72 12 256 ) bricks/c_sr_mr5 0 -1 135 1 1 0 0 0 +( -24 24 240 ) ( -24 24 256 ) ( -72 72 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -84 62 256 ) ( -84 62 240 ) ( -72 72 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -84 62 240 ) ( -84 62 256 ) ( -34 12 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -24 24 256 ) ( -24 24 240 ) ( -34 12 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2115 +{ +( 148 -448 448 ) ( 151 -416 448 ) ( 224 -416 448 ) bricks/c_tn_m1 33 0 0 1 1 0 0 0 +( 496 -448 448 ) ( 848 -448 448 ) ( 848 -448 432 ) bricks/c_tn_m1 33 0 0 1 1 0 0 0 +( 224 -416 448 ) ( 151 -416 448 ) ( 148 -448 416 ) bricks/c_tn_m1 33 0 0 1 1 0 0 0 +( 224 -416 416 ) ( 224 -448 416 ) ( 224 -432 448 ) bricks/c_tn_m1 65 0 0 1 1 0 0 0 +( 148 -448 416 ) ( 151 -416 448 ) ( 148 -448 448 ) bricks/c_tn_m1 65 0 0 1 1 0 0 0 +} +// brush 2116 +{ +( -512 247 448 ) ( -544 244 416 ) ( -481 98 448 ) bricks/c_tn_m1 108 -2 282 1 1 0 0 0 +( -544 244 464 ) ( -544 244 416 ) ( -512 247 448 ) bricks/c_tn_m1 108 -2 282 1 1 0 0 0 +( -481 98 448 ) ( -544 244 416 ) ( -544 244 464 ) bricks/c_tn_m1 108 -2 282 1 1 0 0 0 +( -320 247 448 ) ( -264 247 448 ) ( -292 98 448 ) bricks/c_tn_m1 108 -2 282 1 1 0 0 0 +} +// brush 2117 +{ +( -544 244 416 ) ( -512 88 416 ) ( -481 98 448 ) bricks/c_tn_m1 108 -2 282 1 1 0 0 0 +( -481 98 448 ) ( -512 88 416 ) ( -512 88 464 ) bricks/c_tn_m1 108 -2 282 1 1 0 0 0 +( -512 88 464 ) ( -512 88 416 ) ( -544 244 416 ) bricks/c_tn_m1 108 -2 282 1 1 0 0 0 +( -544 244 464 ) ( -544 244 416 ) ( -481 98 448 ) bricks/c_tn_m1 108 -2 282 1 1 0 0 0 +( -320 244 448 ) ( -264 244 448 ) ( -292 88 448 ) bricks/c_tn_m1 108 -2 282 1 1 0 0 0 +} +// brush 2118 +{ +( -376 -168 416 ) ( -264 -280 416 ) ( -350 -147 448 ) bricks/c_tn_m1 23 0 315 1 1 0 0 0 +( -376 -168 464 ) ( -376 -168 416 ) ( -350 -147 448 ) bricks/c_tn_m1 23 0 315 1 1 0 0 0 +( -264 -280 464 ) ( -264 -280 416 ) ( -376 -168 416 ) bricks/c_tn_m1 23 0 315 1 1 0 0 0 +( -350 -147 448 ) ( -264 -280 416 ) ( -264 -280 464 ) bricks/c_tn_m1 23 0 315 1 1 0 0 0 +( -320 -147 448 ) ( -264 -147 448 ) ( -292 -280 448 ) bricks/c_tn_m1 23 0 315 1 1 0 0 0 +} +// brush 2119 +{ +( -350 -147 448 ) ( -264 -280 416 ) ( -243 -254 448 ) bricks/c_tn_m1 23 0 315 1 1 0 0 0 +( -243 -254 448 ) ( -264 -280 416 ) ( -264 -280 464 ) bricks/c_tn_m1 23 0 315 1 1 0 0 0 +( -264 -280 464 ) ( -264 -280 416 ) ( -350 -147 448 ) bricks/c_tn_m1 23 0 315 1 1 0 0 0 +( -320 -147 448 ) ( -264 -147 448 ) ( -292 -280 448 ) bricks/c_tn_m1 23 0 315 1 1 0 0 0 +} +// brush 2120 +{ +( -124 -331 448 ) ( -140 -360 416 ) ( -8 -416 416 ) bricks/c_tn_m1 0 -1 337 1 1 0 0 0 +( -140 -360 464 ) ( -140 -360 416 ) ( -124 -331 448 ) bricks/c_tn_m1 0 -1 337 1 1 0 0 0 +( -8 -416 416 ) ( -140 -360 416 ) ( -140 -360 464 ) bricks/c_tn_m1 0 -1 337 1 1 0 0 0 +( -124 -331 448 ) ( -8 -416 416 ) ( -8 -416 464 ) bricks/c_tn_m1 0 -1 337 1 1 0 0 0 +( -320 -331 448 ) ( -264 -331 448 ) ( -292 -416 448 ) bricks/c_tn_m1 0 -1 337 1 1 0 0 0 +} +// brush 2121 +{ +( -124 -331 448 ) ( -8 -416 416 ) ( 2 -385 448 ) bricks/c_tn_m1 0 -1 337 1 1 0 0 0 +( 2 -385 448 ) ( -8 -416 416 ) ( -8 -416 464 ) bricks/c_tn_m1 0 -1 337 1 1 0 0 0 +( -8 -416 464 ) ( -8 -416 416 ) ( -124 -331 448 ) bricks/c_tn_m1 0 -1 337 1 1 0 0 0 +( -320 -331 448 ) ( -264 -331 448 ) ( -292 -416 448 ) bricks/c_tn_m1 0 -1 337 1 1 0 0 0 +} +// brush 2122 +{ +( 224 -96 448 ) ( 181 -96 448 ) ( 184 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 184 -64 448 ) ( 184 -64 416 ) ( 224 -64 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 184 -64 416 ) ( 181 -96 448 ) ( 224 -96 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 224 -80 448 ) ( 224 -64 416 ) ( 224 -96 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 184 -64 448 ) ( 181 -96 448 ) ( 184 -64 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2123 +{ +( -175 194 448 ) ( -160 280 416 ) ( -192 277 448 ) bricks/c_tn_m1 -26 3 102 1 1 0 0 0 +( -192 277 448 ) ( -160 280 416 ) ( -160 280 464 ) bricks/c_tn_m1 -26 3 102 1 1 0 0 0 +( -160 280 464 ) ( -160 280 416 ) ( -175 194 448 ) bricks/c_tn_m1 -26 3 102 1 1 0 0 0 +( -160 184 448 ) ( -160 160 448 ) ( -192 172 448 ) bricks/c_tn_m1 -26 3 102 1 1 0 0 0 +} +// brush 2124 +{ +( -175 194 448 ) ( -144 204 416 ) ( -160 280 416 ) bricks/c_tn_m1 -26 3 102 1 1 0 0 0 +( -160 280 416 ) ( -144 204 416 ) ( -144 204 464 ) bricks/c_tn_m1 -26 3 102 1 1 0 0 0 +( -144 204 464 ) ( -144 204 416 ) ( -175 194 448 ) bricks/c_tn_m1 -26 3 102 1 1 0 0 0 +( -175 194 464 ) ( -175 194 448 ) ( -160 280 416 ) bricks/c_tn_m1 -26 3 102 1 1 0 0 0 +( -144 184 448 ) ( -144 160 448 ) ( -175 172 448 ) bricks/c_tn_m1 -26 3 102 1 1 0 0 0 +} +// brush 2125 +{ +( -144 125 448 ) ( -144 204 416 ) ( -175 194 448 ) bricks/c_tn_m1 0 17 114 1 1 0 0 0 +( -175 194 448 ) ( -144 204 416 ) ( -144 204 464 ) bricks/c_tn_m1 0 17 114 1 1 0 0 0 +( -144 204 464 ) ( -144 204 416 ) ( -144 125 448 ) bricks/c_tn_m1 0 17 114 1 1 0 0 0 +( -144 184 448 ) ( -144 160 448 ) ( -175 172 448 ) bricks/c_tn_m1 0 17 114 1 1 0 0 0 +} +// brush 2126 +{ +( -144 125 448 ) ( -116 140 416 ) ( -144 204 416 ) bricks/c_tn_m1 0 17 114 1 1 0 0 0 +( -144 204 416 ) ( -116 140 416 ) ( -116 140 464 ) bricks/c_tn_m1 0 17 114 1 1 0 0 0 +( -116 140 464 ) ( -116 140 416 ) ( -144 125 448 ) bricks/c_tn_m1 0 17 114 1 1 0 0 0 +( -144 125 448 ) ( -144 204 416 ) ( -144 204 464 ) bricks/c_tn_m1 0 17 114 1 1 0 0 0 +( -116 184 448 ) ( -116 160 448 ) ( -144 172 448 ) bricks/c_tn_m1 0 17 114 1 1 0 0 0 +} +// brush 2127 +{ +( -97 52 448 ) ( -116 140 416 ) ( -144 125 448 ) bricks/c_tn_m1 0 -11 123 1 1 0 0 0 +( -144 125 448 ) ( -116 140 416 ) ( -116 140 464 ) bricks/c_tn_m1 0 -11 123 1 1 0 0 0 +( -116 140 464 ) ( -116 140 416 ) ( -97 52 448 ) bricks/c_tn_m1 0 -11 123 1 1 0 0 0 +( -97 184 448 ) ( -97 160 448 ) ( -144 172 448 ) bricks/c_tn_m1 0 -11 123 1 1 0 0 0 +} +// brush 2128 +{ +( -97 52 448 ) ( -72 72 416 ) ( -116 140 416 ) bricks/c_tn_m1 0 -11 123 1 1 0 0 0 +( -116 140 416 ) ( -72 72 416 ) ( -72 72 464 ) bricks/c_tn_m1 0 -11 123 1 1 0 0 0 +( -72 72 464 ) ( -72 72 416 ) ( -97 52 448 ) bricks/c_tn_m1 0 -11 123 1 1 0 0 0 +( -97 52 448 ) ( -116 140 416 ) ( -116 140 464 ) bricks/c_tn_m1 0 -11 123 1 1 0 0 0 +( -72 184 448 ) ( -72 160 448 ) ( -116 172 448 ) bricks/c_tn_m1 0 -11 123 1 1 0 0 0 +} +// brush 2129 +{ +( 44 -20 416 ) ( -24 24 416 ) ( -44 -1 448 ) bricks/c_tn_m1 -3 -7 147 1 1 0 0 0 +( -24 24 464 ) ( -24 24 416 ) ( 44 -20 416 ) bricks/c_tn_m1 -3 -7 147 1 1 0 0 0 +( -44 -1 448 ) ( -24 24 416 ) ( -24 24 464 ) bricks/c_tn_m1 -3 -7 147 1 1 0 0 0 +( 44 -20 464 ) ( 44 -20 416 ) ( -44 -1 448 ) bricks/c_tn_m1 -3 -7 147 1 1 0 0 0 +( 44 184 448 ) ( 44 160 448 ) ( -44 172 448 ) bricks/c_tn_m1 -3 -7 147 1 1 0 0 0 +} +// brush 2130 +{ +( 29 -48 448 ) ( 44 -20 416 ) ( -44 -1 448 ) bricks/c_tn_m1 -3 -7 147 1 1 0 0 0 +( 44 -20 464 ) ( 44 -20 416 ) ( 29 -48 448 ) bricks/c_tn_m1 -3 -7 147 1 1 0 0 0 +( -44 -1 448 ) ( 44 -20 416 ) ( 44 -20 464 ) bricks/c_tn_m1 -3 -7 147 1 1 0 0 0 +( 44 184 448 ) ( 44 160 448 ) ( -44 172 448 ) bricks/c_tn_m1 -3 -7 147 1 1 0 0 0 +} +// brush 2131 +{ +( 108 -48 416 ) ( 44 -20 416 ) ( 29 -48 448 ) bricks/c_tn_m1 0 0 156 1 1 0 0 0 +( 44 -20 464 ) ( 44 -20 416 ) ( 108 -48 416 ) bricks/c_tn_m1 0 0 156 1 1 0 0 0 +( 29 -48 448 ) ( 44 -20 416 ) ( 44 -20 464 ) bricks/c_tn_m1 0 0 156 1 1 0 0 0 +( 108 -48 464 ) ( 108 -48 416 ) ( 29 -48 448 ) bricks/c_tn_m1 0 0 156 1 1 0 0 0 +( 108 184 448 ) ( 108 160 448 ) ( 29 172 448 ) bricks/c_tn_m1 0 0 156 1 1 0 0 0 +} +// brush 2132 +{ +( 98 -79 448 ) ( 108 -48 416 ) ( 29 -48 448 ) bricks/c_tn_m1 0 0 156 1 1 0 0 0 +( 108 -48 464 ) ( 108 -48 416 ) ( 98 -79 448 ) bricks/c_tn_m1 0 0 156 1 1 0 0 0 +( 29 -48 448 ) ( 108 -48 416 ) ( 108 -48 464 ) bricks/c_tn_m1 0 0 156 1 1 0 0 0 +( 108 184 448 ) ( 108 160 448 ) ( 29 172 448 ) bricks/c_tn_m1 0 0 156 1 1 0 0 0 +} +// brush 2133 +{ +( 184 -64 416 ) ( 108 -48 416 ) ( 98 -79 448 ) bricks/c_tn_m1 0 -8 168 1 1 0 0 0 +( 108 -48 464 ) ( 108 -48 416 ) ( 184 -64 416 ) bricks/c_tn_m1 0 -8 168 1 1 0 0 0 +( 98 -79 448 ) ( 108 -48 416 ) ( 108 -48 464 ) bricks/c_tn_m1 0 -8 168 1 1 0 0 0 +( 184 -64 416 ) ( 98 -79 448 ) ( 98 -79 464 ) bricks/c_tn_m1 0 -8 168 1 1 0 0 0 +( 184 184 448 ) ( 184 160 448 ) ( 98 172 448 ) bricks/c_tn_m1 0 -8 168 1 1 0 0 0 +} +// brush 2134 +{ +( 181 -96 448 ) ( 184 -64 416 ) ( 98 -79 448 ) bricks/c_tn_m1 0 -8 168 1 1 0 0 0 +( 184 -64 464 ) ( 184 -64 416 ) ( 181 -96 448 ) bricks/c_tn_m1 0 -8 168 1 1 0 0 0 +( 98 -79 448 ) ( 184 -64 416 ) ( 184 -64 464 ) bricks/c_tn_m1 0 -8 168 1 1 0 0 0 +( 184 184 448 ) ( 184 160 448 ) ( 98 172 448 ) bricks/c_tn_m1 0 -8 168 1 1 0 0 0 +} +// brush 2135 +{ +( 148 -448 448 ) ( 148 -448 464 ) ( 224 -448 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -8 -416 448 ) ( -8 -416 464 ) ( 148 -448 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -140 -360 448 ) ( -140 -360 464 ) ( -8 -416 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -264 -280 448 ) ( -264 -280 464 ) ( -140 -360 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -376 -168 448 ) ( -376 -168 464 ) ( -264 -280 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -456 -44 448 ) ( -456 -44 464 ) ( -376 -168 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -512 88 448 ) ( -512 88 464 ) ( -456 -44 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -512 88 464 ) ( -512 88 448 ) ( -544 244 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -544 244 464 ) ( -544 244 448 ) ( -544 320 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 992 1088 448 ) ( -544 1088 448 ) ( -544 -448 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -544 -448 464 ) ( -544 1088 464 ) ( 992 1088 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 224 -200 400 ) ( 224 -256 400 ) ( 224 -228 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -440 320 400 ) ( -376 320 400 ) ( -408 320 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -160 320 448 ) ( 224 -64 448 ) ( 32 128 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2136 +{ +( 148 -448 224 ) ( 148 -448 240 ) ( 224 -448 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -8 -416 224 ) ( -8 -416 240 ) ( 148 -448 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -140 -360 224 ) ( -140 -360 240 ) ( -8 -416 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -264 -280 224 ) ( -264 -280 240 ) ( -140 -360 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -376 -168 224 ) ( -376 -168 240 ) ( -264 -280 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -456 -44 224 ) ( -456 -44 240 ) ( -376 -168 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -512 88 224 ) ( -512 88 240 ) ( -456 -44 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -512 88 240 ) ( -512 88 224 ) ( -544 244 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -544 244 240 ) ( -544 244 224 ) ( -544 320 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 992 1088 224 ) ( -544 1088 224 ) ( -544 -448 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -544 -448 240 ) ( -544 1088 240 ) ( 992 1088 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 224 -200 176 ) ( 224 -256 176 ) ( 224 -228 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -440 320 176 ) ( -376 320 176 ) ( -408 320 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -160 320 224 ) ( 224 -64 224 ) ( 32 128 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2137 +{ +( -528 96 448 ) ( -528 224 448 ) ( -160 224 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -128 208 288 ) ( -128 208 304 ) ( -144 282 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -128 208 448 ) ( -128 208 432 ) ( -144 204 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -144 282 288 ) ( -144 282 304 ) ( -160 280 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -160 280 240 ) ( -144 204 240 ) ( -152 242 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -72 282 240 ) ( -88 204 240 ) ( -56 204 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2138 +{ +( -496 -60 448 ) ( -496 68 448 ) ( -128 68 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -102 148 224 ) ( -102 148 240 ) ( -128 208 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -102 148 448 ) ( -102 148 432 ) ( -116 140 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -128 208 432 ) ( -128 208 448 ) ( -144 204 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -144 204 384 ) ( -116 140 384 ) ( -130 172 368 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -72 208 240 ) ( -88 140 240 ) ( -56 140 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2139 +{ +( -440 -192 448 ) ( -440 -64 448 ) ( -72 -64 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -58 82 288 ) ( -58 82 304 ) ( -102 148 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -73 71 224 ) ( -73 71 448 ) ( -58 82 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -102 148 432 ) ( -102 148 448 ) ( -116 140 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -73 71 448 ) ( -73 71 224 ) ( -116 140 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -72 148 240 ) ( -88 71 240 ) ( -56 71 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2140 +{ +( -284 104 448 ) ( -284 -264 448 ) ( -412 -264 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -58 82 240 ) ( -58 82 224 ) ( -14 38 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -73 71 448 ) ( -73 71 224 ) ( -58 82 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -14 38 240 ) ( -24 24 240 ) ( -24 24 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -73 71 448 ) ( -24 24 448 ) ( -24 24 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -72 82 240 ) ( -88 24 240 ) ( -56 24 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2141 +{ +( -160 24 448 ) ( -160 -344 448 ) ( -288 -344 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -14 38 304 ) ( -14 38 288 ) ( 52 -6 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -14 38 448 ) ( -24 24 448 ) ( -24 24 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 52 -6 448 ) ( 52 -6 432 ) ( 44 -20 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 44 -20 240 ) ( -24 24 240 ) ( -24 24 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -72 38 240 ) ( -88 -20 240 ) ( -56 -20 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2142 +{ +( -28 -32 448 ) ( -28 -400 448 ) ( -156 -400 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 52 -6 240 ) ( 52 -6 224 ) ( 112 -32 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 52 -6 432 ) ( 52 -6 448 ) ( 44 -20 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 112 -32 448 ) ( 112 -32 432 ) ( 108 -48 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 108 -48 368 ) ( 44 -20 368 ) ( 76 -34 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -72 -6 240 ) ( -88 -48 240 ) ( -56 -48 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2143 +{ +( 128 -64 448 ) ( 128 -432 448 ) ( 0 -432 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 112 -32 304 ) ( 112 -32 288 ) ( 186 -48 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 112 -32 432 ) ( 112 -32 448 ) ( 108 -48 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 186 -48 448 ) ( 186 -48 432 ) ( 184 -64 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 184 -64 368 ) ( 108 -48 368 ) ( 146 -56 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -72 -32 240 ) ( -88 -64 240 ) ( -56 -64 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2144 +{ +( -440 -192 448 ) ( -440 -64 448 ) ( -72 -64 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -388 -178 432 ) ( -388 -178 448 ) ( -376 -168 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -388 -178 384 ) ( -388 -178 368 ) ( -470 -52 368 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -470 -52 304 ) ( -470 -52 288 ) ( -456 -44 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -376 -168 304 ) ( -456 -44 304 ) ( -416 -106 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -72 -44 240 ) ( -88 -178 240 ) ( -56 -178 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2145 +{ +( -496 -60 448 ) ( -496 68 448 ) ( -128 68 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -470 -52 288 ) ( -470 -52 304 ) ( -456 -44 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -470 -52 384 ) ( -470 -52 368 ) ( -528 82 368 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -528 82 304 ) ( -528 82 288 ) ( -512 88 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -456 -44 304 ) ( -512 88 304 ) ( -484 22 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -72 88 240 ) ( -88 -52 240 ) ( -56 -52 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2146 +{ +( -528 96 448 ) ( -528 224 448 ) ( -160 224 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -528 82 288 ) ( -528 82 304 ) ( -512 88 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -528 82 384 ) ( -528 82 368 ) ( -560 242 368 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -560 242 304 ) ( -560 242 288 ) ( -544 244 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -512 88 240 ) ( -544 244 240 ) ( -528 166 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -72 244 240 ) ( -88 82 240 ) ( -56 82 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2147 +{ +( -28 -32 448 ) ( -28 -400 448 ) ( -156 -400 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -148 -374 448 ) ( -148 -374 432 ) ( -140 -360 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -148 -374 224 ) ( -148 -374 240 ) ( -14 -432 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -14 -432 432 ) ( -14 -432 448 ) ( -8 -416 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -140 -360 432 ) ( -8 -416 432 ) ( -74 -388 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -72 -360 240 ) ( -88 -432 240 ) ( -56 -432 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2148 +{ +( 128 -64 448 ) ( 128 -432 448 ) ( 0 -432 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -14 -432 448 ) ( -14 -432 432 ) ( -8 -416 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -14 -432 224 ) ( -14 -432 240 ) ( 146 -464 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 146 -464 432 ) ( 146 -464 448 ) ( 148 -448 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -8 -416 432 ) ( 148 -448 432 ) ( 70 -432 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -72 -416 240 ) ( -88 -464 240 ) ( -56 -464 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2149 +{ +( -160 24 448 ) ( -160 -344 448 ) ( -288 -344 448 ) bricks/c_tn_m3 43 0 0 1 1 0 0 0 +( -274 -292 304 ) ( -274 -292 288 ) ( -264 -280 288 ) bricks/c_tn_m3 43 0 0 1 1 0 0 0 +( -274 -292 224 ) ( -274 -292 240 ) ( -148 -374 240 ) bricks/c_tn_m3 43 0 0 1 1 0 0 0 +( -148 -374 432 ) ( -148 -374 448 ) ( -140 -360 448 ) bricks/c_tn_m3 43 0 0 1 1 0 0 0 +( -264 -280 432 ) ( -140 -360 432 ) ( -202 -320 448 ) bricks/c_tn_m3 43 0 0 1 1 0 0 0 +( -72 -280 240 ) ( -88 -374 240 ) ( -56 -374 240 ) bricks/c_tn_m3 43 0 0 1 1 0 0 0 +} +// brush 2150 +{ +( -274 -168 448 ) ( -274 -292 448 ) ( -376 -292 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -264 -280 288 ) ( -264 -280 448 ) ( -376 -168 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -388 -178 448 ) ( -388 -178 288 ) ( -376 -168 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -388 -178 224 ) ( -388 -178 384 ) ( -274 -292 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -264 -280 448 ) ( -264 -280 288 ) ( -274 -292 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -72 -168 240 ) ( -88 -292 240 ) ( -56 -292 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2151 +{ +( -427 668 448 ) ( -349 787 448 ) ( -456 684 416 ) bricks/c_tn_m1 0 14 237 1 1 0 0 0 +( -427 668 448 ) ( -456 684 416 ) ( -456 684 464 ) bricks/c_tn_m1 0 14 237 1 1 0 0 0 +( -456 684 416 ) ( -349 787 448 ) ( -456 684 448 ) bricks/c_tn_m1 0 14 237 1 1 0 0 0 +( -456 684 448 ) ( -349 787 448 ) ( -427 668 448 ) bricks/c_tn_m1 0 14 237 1 1 0 0 0 +} +// brush 2152 +{ +( -456 684 416 ) ( -349 787 448 ) ( -376 808 416 ) bricks/c_tn_m1 0 14 237 1 1 0 0 0 +( -376 808 416 ) ( -349 787 448 ) ( -376 808 448 ) bricks/c_tn_m1 0 14 237 1 1 0 0 0 +( -456 684 416 ) ( -376 808 416 ) ( -376 808 464 ) bricks/c_tn_m1 0 14 237 1 1 0 0 0 +( -456 684 448 ) ( -349 787 448 ) ( -456 684 416 ) bricks/c_tn_m1 0 14 237 1 1 0 0 0 +( -376 808 448 ) ( -349 787 448 ) ( -456 684 448 ) bricks/c_tn_m1 0 14 237 1 1 0 0 0 +} +// brush 2153 +{ +( -176 320 448 ) ( -544 320 448 ) ( -544 448 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -144 320 240 ) ( -144 358 240 ) ( -144 358 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -160 360 288 ) ( -144 358 288 ) ( -144 358 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -144 282 240 ) ( -160 280 240 ) ( -160 280 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -160 360 448 ) ( -160 280 448 ) ( -160 280 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1664 360 240 ) ( 1648 320 240 ) ( 1680 320 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2154 +{ +( -160 416 448 ) ( -528 416 448 ) ( -528 544 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -144 358 304 ) ( -128 432 304 ) ( -128 432 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -144 436 432 ) ( -128 432 432 ) ( -128 432 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -160 360 304 ) ( -144 358 304 ) ( -144 358 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -152 398 224 ) ( -144 436 240 ) ( -160 360 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1664 436 240 ) ( 1648 358 240 ) ( 1680 358 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2155 +{ +( -128 572 448 ) ( -496 572 448 ) ( -496 700 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -128 432 240 ) ( -102 492 240 ) ( -102 492 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -116 500 432 ) ( -102 492 432 ) ( -102 492 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -144 436 448 ) ( -128 432 448 ) ( -128 432 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -130 468 368 ) ( -116 500 384 ) ( -144 436 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1664 500 240 ) ( 1648 432 240 ) ( 1680 432 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2156 +{ +( -72 704 448 ) ( -440 704 448 ) ( -440 832 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -102 492 304 ) ( -58 558 304 ) ( -58 558 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -72 568 432 ) ( -58 558 432 ) ( -58 558 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -116 500 448 ) ( -102 492 448 ) ( -102 492 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -94 534 368 ) ( -72 568 384 ) ( -116 500 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1664 568 240 ) ( 1648 492 240 ) ( 1680 492 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2157 +{ +( -72 704 448 ) ( -440 704 448 ) ( -440 832 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -389 819 448 ) ( -389 819 240 ) ( -376 808 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -389 819 240 ) ( -389 819 448 ) ( -470 692 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -456 684 288 ) ( -470 692 288 ) ( -470 692 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -416 746 288 ) ( -456 684 304 ) ( -376 808 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -488 818 240 ) ( -504 684 240 ) ( -472 684 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2158 +{ +( -128 572 448 ) ( -496 572 448 ) ( -496 700 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -456 684 304 ) ( -470 692 304 ) ( -470 692 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -528 558 368 ) ( -470 692 368 ) ( -470 692 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -512 552 288 ) ( -528 558 288 ) ( -528 558 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -484 618 288 ) ( -512 552 304 ) ( -456 684 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -488 692 240 ) ( -504 552 240 ) ( -472 552 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2159 +{ +( -160 416 448 ) ( -528 416 448 ) ( -528 544 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -512 552 304 ) ( -528 558 304 ) ( -528 558 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -560 398 368 ) ( -528 558 368 ) ( -528 558 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -544 396 288 ) ( -560 398 288 ) ( -560 398 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -528 474 224 ) ( -544 396 240 ) ( -512 552 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -488 558 240 ) ( -504 396 240 ) ( -472 396 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2160 +{ +( -176 320 448 ) ( -544 320 448 ) ( -544 448 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -544 396 304 ) ( -560 398 304 ) ( -560 398 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -560 398 448 ) ( -560 242 448 ) ( -560 242 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -544 244 240 ) ( -560 242 240 ) ( -560 242 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -544 330 368 ) ( -544 320 384 ) ( -544 340 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -488 398 240 ) ( -504 320 240 ) ( -472 320 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2161 +{ +( -264 920 240 ) ( -376 808 240 ) ( -376 808 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -376 808 240 ) ( -456 684 240 ) ( -456 684 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -456 684 240 ) ( -512 552 240 ) ( -512 552 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -544 396 224 ) ( -512 552 224 ) ( -512 552 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -544 320 224 ) ( -544 396 224 ) ( -544 396 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -544 1088 224 ) ( -544 -448 224 ) ( 992 -448 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 992 -448 240 ) ( -544 -448 240 ) ( -544 1088 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -408 320 240 ) ( -376 320 176 ) ( -440 320 176 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -160 320 240 ) ( -48 592 240 ) ( -48 592 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -320 864 224 ) ( -48 592 224 ) ( -48 592 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2162 +{ +( -264 920 464 ) ( -376 808 464 ) ( -376 808 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -376 808 464 ) ( -456 684 464 ) ( -456 684 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -456 684 464 ) ( -512 552 464 ) ( -512 552 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -544 396 448 ) ( -512 552 448 ) ( -512 552 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -544 320 448 ) ( -544 396 448 ) ( -544 396 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -544 1088 448 ) ( -544 -448 448 ) ( 992 -448 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 992 -448 464 ) ( -544 -448 464 ) ( -544 1088 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -408 320 464 ) ( -376 320 400 ) ( -440 320 400 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -160 320 464 ) ( -48 592 464 ) ( -48 592 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -320 864 448 ) ( -48 592 448 ) ( -48 592 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2163 +{ +( -72 568 416 ) ( -92 596 448 ) ( -116 500 416 ) bricks/c_tn_m1 -115 -14 57 1 1 0 0 0 +( -72 568 464 ) ( -72 568 416 ) ( -116 500 416 ) bricks/c_tn_m1 -115 -14 57 1 1 0 0 0 +( -72 568 448 ) ( -92 596 448 ) ( -72 568 416 ) bricks/c_tn_m1 -115 -14 57 1 1 0 0 0 +( -116 500 416 ) ( -92 596 448 ) ( -116 500 448 ) bricks/c_tn_m1 -115 -14 57 1 1 0 0 0 +( -116 500 448 ) ( -92 596 448 ) ( -72 568 448 ) bricks/c_tn_m1 -115 -14 57 1 1 0 0 0 +} +// brush 2164 +{ +( -116 500 416 ) ( -92 596 448 ) ( -144 515 448 ) bricks/c_tn_m1 -115 -14 57 1 1 0 0 0 +( -116 500 464 ) ( -116 500 416 ) ( -144 515 448 ) bricks/c_tn_m1 -115 -14 57 1 1 0 0 0 +( -116 500 448 ) ( -92 596 448 ) ( -116 500 416 ) bricks/c_tn_m1 -115 -14 57 1 1 0 0 0 +( -144 515 448 ) ( -92 596 448 ) ( -116 500 448 ) bricks/c_tn_m1 -115 -14 57 1 1 0 0 0 +} +// brush 2165 +{ +( -144 436 416 ) ( -116 500 416 ) ( -144 515 448 ) bricks/c_tn_m1 0 -11 66 1 1 0 0 0 +( -116 500 464 ) ( -116 500 416 ) ( -144 436 416 ) bricks/c_tn_m1 0 -11 66 1 1 0 0 0 +( -144 515 448 ) ( -116 500 416 ) ( -116 500 464 ) bricks/c_tn_m1 0 -11 66 1 1 0 0 0 +( -144 436 464 ) ( -144 436 416 ) ( -144 515 448 ) bricks/c_tn_m1 0 -11 66 1 1 0 0 0 +( -144 468 448 ) ( -116 480 448 ) ( -116 456 448 ) bricks/c_tn_m1 0 -11 66 1 1 0 0 0 +} +// brush 2166 +{ +( -175 446 448 ) ( -144 436 416 ) ( -144 515 448 ) bricks/c_tn_m1 0 -11 66 1 1 0 0 0 +( -144 436 464 ) ( -144 436 416 ) ( -175 446 448 ) bricks/c_tn_m1 0 -11 66 1 1 0 0 0 +( -144 515 448 ) ( -144 436 416 ) ( -144 436 464 ) bricks/c_tn_m1 0 -11 66 1 1 0 0 0 +( -175 468 448 ) ( -144 480 448 ) ( -144 456 448 ) bricks/c_tn_m1 0 -11 66 1 1 0 0 0 +} +// brush 2167 +{ +( -160 360 416 ) ( -144 436 416 ) ( -175 446 448 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( -144 436 464 ) ( -144 436 416 ) ( -160 360 416 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( -175 446 448 ) ( -144 436 416 ) ( -144 436 464 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( -160 360 416 ) ( -175 446 448 ) ( -175 446 464 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( -175 468 448 ) ( -144 480 448 ) ( -144 456 448 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +} +// brush 2168 +{ +( -192 363 448 ) ( -160 360 416 ) ( -175 446 448 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( -160 360 464 ) ( -160 360 416 ) ( -192 363 448 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( -175 446 448 ) ( -160 360 416 ) ( -160 360 464 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( -192 468 448 ) ( -160 480 448 ) ( -160 456 448 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +} +// brush 2169 +{ +( -427 668 448 ) ( -456 684 416 ) ( -512 552 416 ) bricks/c_tn_m1 0 18 247 1 1 0 0 0 +( -456 684 464 ) ( -456 684 416 ) ( -427 668 448 ) bricks/c_tn_m1 0 18 247 1 1 0 0 0 +( -512 552 416 ) ( -456 684 416 ) ( -456 684 464 ) bricks/c_tn_m1 0 18 247 1 1 0 0 0 +( -427 668 448 ) ( -512 552 416 ) ( -512 552 464 ) bricks/c_tn_m1 0 18 247 1 1 0 0 0 +( -292 684 448 ) ( -264 552 448 ) ( -320 552 448 ) bricks/c_tn_m1 0 18 247 1 1 0 0 0 +} +// brush 2170 +{ +( -427 668 448 ) ( -512 552 416 ) ( -481 542 448 ) bricks/c_tn_m1 0 18 247 1 1 0 0 0 +( -481 542 448 ) ( -512 552 416 ) ( -512 552 464 ) bricks/c_tn_m1 0 18 247 1 1 0 0 0 +( -512 552 464 ) ( -512 552 416 ) ( -427 668 448 ) bricks/c_tn_m1 0 18 247 1 1 0 0 0 +( -292 668 448 ) ( -264 542 448 ) ( -320 542 448 ) bricks/c_tn_m1 0 18 247 1 1 0 0 0 +} +// brush 2171 +{ +( -512 393 448 ) ( -512 247 448 ) ( -544 244 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -544 48 448 ) ( -544 -304 448 ) ( -544 -304 432 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -544 244 416 ) ( -512 247 448 ) ( -512 393 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -544 244 448 ) ( -512 247 448 ) ( -544 244 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -544 396 416 ) ( -512 393 448 ) ( -544 396 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2172 +{ +( -176 320 256 ) ( -544 320 256 ) ( -544 448 256 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -544 448 240 ) ( -544 320 240 ) ( -176 320 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -160 320 272 ) ( -160 358 272 ) ( -160 358 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -160 360 256 ) ( -176 362 256 ) ( -176 362 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -176 278 240 ) ( -176 278 256 ) ( -160 280 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -176 278 256 ) ( -176 278 240 ) ( -176 362 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2173 +{ +( -160 416 256 ) ( -528 416 256 ) ( -528 544 256 ) bricks/c_sr_mr5 0 6 78 1 1 0 0 0 +( -528 544 240 ) ( -528 416 240 ) ( -160 416 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -160 360 272 ) ( -144 436 272 ) ( -144 436 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -160 440 112 ) ( -144 436 112 ) ( -144 436 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -160 360 128 ) ( -144 358 128 ) ( -144 358 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -176 362 112 ) ( -160 440 112 ) ( -160 440 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2174 +{ +( -128 572 256 ) ( -496 572 256 ) ( -496 700 256 ) bricks/c_sr_mr5 0 -11 66 1 1 0 0 0 +( -496 700 240 ) ( -496 572 240 ) ( -128 572 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -144 436 272 ) ( -116 500 272 ) ( -116 500 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -116 500 272 ) ( -130 508 272 ) ( -130 508 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -144 436 112 ) ( -160 440 112 ) ( -160 440 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -130 508 272 ) ( -160 440 272 ) ( -160 440 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2175 +{ +( -72 704 256 ) ( -440 704 256 ) ( -440 832 256 ) bricks/c_sr_mr5 0 -16 57 1 1 0 0 0 +( -440 832 240 ) ( -440 704 240 ) ( -72 704 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -116 500 272 ) ( -72 568 272 ) ( -72 568 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -72 568 272 ) ( -84 578 272 ) ( -84 578 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -116 500 112 ) ( -130 508 112 ) ( -130 508 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -130 508 112 ) ( -84 578 112 ) ( -84 578 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2176 +{ +( -176 320 256 ) ( -544 320 256 ) ( -544 448 256 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -544 448 240 ) ( -544 320 240 ) ( -176 320 240 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( -544 396 96 ) ( -528 394 96 ) ( -528 394 256 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( -544 396 256 ) ( -544 244 256 ) ( -544 244 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -528 246 240 ) ( -544 244 240 ) ( -544 244 256 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( -528 320 256 ) ( -528 394 256 ) ( -528 394 96 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2177 +{ +( -160 416 256 ) ( -528 416 256 ) ( -528 544 256 ) bricks/c_sr_mr5 0 -8 258 1 1 0 0 0 +( -528 544 240 ) ( -528 416 240 ) ( -160 416 240 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( -512 552 240 ) ( -497 547 240 ) ( -497 547 256 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( -512 552 272 ) ( -544 396 272 ) ( -544 396 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -544 396 272 ) ( -528 394 272 ) ( -528 394 112 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( -528 394 256 ) ( -497 547 256 ) ( -497 547 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2178 +{ +( -128 572 256 ) ( -496 572 256 ) ( -496 700 256 ) bricks/c_sr_mr5 0 15 247 1 1 0 0 0 +( -496 700 240 ) ( -496 572 240 ) ( -128 572 240 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( -456 684 240 ) ( -443 677 240 ) ( -443 677 256 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( -512 552 112 ) ( -456 684 112 ) ( -456 684 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -512 552 256 ) ( -497 547 256 ) ( -497 547 240 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( -443 677 240 ) ( -497 547 240 ) ( -497 547 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2179 +{ +( -72 704 256 ) ( -440 704 256 ) ( -440 832 256 ) bricks/c_sr_mr5 0 11 237 1 1 0 0 0 +( -440 832 240 ) ( -440 704 240 ) ( -72 704 240 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( -376 808 240 ) ( -364 798 240 ) ( -364 798 256 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( -376 808 272 ) ( -456 684 272 ) ( -456 684 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -456 684 256 ) ( -443 677 256 ) ( -443 677 240 ) bricks/c_sr_mr5 -32 -16 0 1 1 0 0 0 +( -364 798 240 ) ( -443 677 240 ) ( -443 677 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2180 +{ +( -72 568 448 ) ( -92 596 448 ) ( -72 616 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( 248 888 416 ) ( 16 656 416 ) ( 16 656 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( -72 616 448 ) ( -92 596 448 ) ( -72 568 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( -60 604 448 ) ( -72 616 416 ) ( -48 592 416 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +( -72 568 416 ) ( -92 596 448 ) ( -72 568 448 ) bricks/c_tn_m1 0 6 45 1 1 0 0 0 +} +// brush 2181 +{ +( -296 840 448 ) ( -349 787 448 ) ( -376 808 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -492 692 416 ) ( -260 924 416 ) ( -260 924 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -376 808 416 ) ( -349 787 448 ) ( -296 840 448 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -376 808 448 ) ( -349 787 448 ) ( -376 808 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +( -308 852 448 ) ( -320 864 416 ) ( -296 840 416 ) bricks/c_tn_m1 0 -4 225 1 1 0 0 0 +} +// brush 2182 +{ +( -350 -147 448 ) ( -456 -44 416 ) ( -376 -168 416 ) bricks/c_tn_m1 0 10 303 1 1 0 0 0 +( -350 -147 448 ) ( -376 -168 416 ) ( -376 -168 464 ) bricks/c_tn_m1 0 10 303 1 1 0 0 0 +( -376 -168 416 ) ( -456 -44 416 ) ( -456 -44 448 ) bricks/c_tn_m1 0 10 303 1 1 0 0 0 +( -350 -147 448 ) ( -456 -44 448 ) ( -456 -44 416 ) bricks/c_tn_m1 0 10 303 1 1 0 0 0 +( -456 -196 448 ) ( -350 -168 448 ) ( -350 -224 448 ) bricks/c_tn_m1 0 10 303 1 1 0 0 0 +( -450 -26 448 ) ( -460 -32 416 ) ( -440 -20 416 ) bricks/c_tn_m1 0 10 303 1 1 0 0 0 +} +// brush 2183 +{ +( -350 -147 448 ) ( -427 -28 448 ) ( -456 -44 416 ) bricks/c_tn_m1 0 10 303 1 1 0 0 0 +( -350 -147 448 ) ( -456 -44 416 ) ( -456 -44 464 ) bricks/c_tn_m1 0 10 303 1 1 0 0 0 +( -456 -44 448 ) ( -427 -28 448 ) ( -350 -147 448 ) bricks/c_tn_m1 0 10 303 1 1 0 0 0 +( -456 -44 416 ) ( -427 -28 448 ) ( -456 -44 448 ) bricks/c_tn_m1 0 10 303 1 1 0 0 0 +} +// brush 2184 +{ +( -576 56 416 ) ( -520 -76 416 ) ( -491 -60 448 ) bricks/c_tn_m1 170 -1 67 1 1 0 0 0 +( -491 -60 448 ) ( -520 -76 416 ) ( -520 -76 464 ) bricks/c_tn_m1 114 -7 67 1 1 0 0 0 +( -520 -76 464 ) ( -520 -76 416 ) ( -576 56 416 ) bricks/c_tn_m1 137 -12 67 1 1 0 0 0 +( -576 56 464 ) ( -576 56 416 ) ( -491 -60 448 ) bricks/c_tn_m1 137 -12 67 1 1 0 0 0 +( -384 56 448 ) ( -328 56 448 ) ( -356 -76 448 ) bricks/c_tn_m1 170 -1 67 1 1 0 0 0 +} +// brush 2185 +{ +( -545 66 448 ) ( -576 56 416 ) ( -491 -60 448 ) bricks/c_tn_m1 170 -1 67 1 1 0 0 0 +( -576 56 464 ) ( -576 56 416 ) ( -545 66 448 ) bricks/c_tn_m1 114 -7 67 1 1 0 0 0 +( -491 -60 448 ) ( -576 56 416 ) ( -576 56 464 ) bricks/c_tn_m1 137 -12 67 1 1 0 0 0 +( -384 66 448 ) ( -328 66 448 ) ( -356 -60 448 ) bricks/c_tn_m1 170 -1 67 1 1 0 0 0 +} +// brush 2186 +{ +( -481 98 448 ) ( -512 88 416 ) ( -427 -28 448 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -512 88 464 ) ( -512 88 416 ) ( -481 98 448 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -427 -28 448 ) ( -512 88 416 ) ( -512 88 464 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -320 98 448 ) ( -264 98 448 ) ( -292 -28 448 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -482 62 448 ) ( -472 66 416 ) ( -492 58 416 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +} +// brush 2187 +{ +( -512 88 416 ) ( -456 -44 416 ) ( -427 -28 448 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -456 -44 464 ) ( -456 -44 416 ) ( -512 88 416 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -512 88 464 ) ( -512 88 416 ) ( -427 -28 448 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -320 88 448 ) ( -264 88 448 ) ( -292 -44 448 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -482 62 448 ) ( -472 66 416 ) ( -492 58 416 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +} +// brush 2188 +{ +( -481 98 448 ) ( -512 88 416 ) ( -427 -28 448 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -427 -28 448 ) ( -512 88 416 ) ( -512 88 464 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -320 98 448 ) ( -264 98 448 ) ( -292 -28 448 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -458 3 448 ) ( -470 -2 424 ) ( -446 8 424 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +} +// brush 2189 +{ +( -512 88 416 ) ( -456 -44 416 ) ( -427 -28 448 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -427 -28 448 ) ( -456 -44 416 ) ( -456 -44 464 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -456 -44 464 ) ( -456 -44 416 ) ( -512 88 416 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -512 88 464 ) ( -512 88 416 ) ( -427 -28 448 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -320 88 448 ) ( -264 88 448 ) ( -292 -44 448 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -458 3 448 ) ( -470 -2 416 ) ( -446 8 416 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +} +// brush 2190 +{ +( -481 98 448 ) ( -512 88 416 ) ( -427 -28 448 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -320 98 448 ) ( -264 98 448 ) ( -292 -28 448 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -482 62 448 ) ( -492 58 416 ) ( -472 66 416 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -458 3 448 ) ( -446 8 424 ) ( -470 -2 424 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -462 35 448 ) ( -448 2 424 ) ( -476 68 424 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +} +// brush 2191 +{ +( -481 98 448 ) ( -512 88 416 ) ( -427 -28 448 ) common/li_pv_v4a -11 4 293 1 1 0 1 7000 +( -427 -28 448 ) ( -512 88 416 ) ( -512 88 464 ) common/li_pv_v4a -11 4 293 1 1 0 1 7000 +( -320 98 448 ) ( -264 98 448 ) ( -292 -28 448 ) common/li_pv_v4a -11 4 293 1 1 0 1 7000 +( -482 62 448 ) ( -492 58 416 ) ( -472 66 416 ) common/li_pv_v4a -11 4 293 1 1 0 1 7000 +( -458 3 448 ) ( -446 8 424 ) ( -470 -2 424 ) common/li_pv_v4a -11 4 293 1 1 0 1 7000 +( -462 35 448 ) ( -476 68 424 ) ( -448 2 424 ) common/li_pv_v4a -11 4 293 1 1 0 1 7000 +} +// brush 2192 +{ +( -512 88 416 ) ( -456 -44 416 ) ( -427 -28 448 ) common/li_pv_v4a -11 4 293 1 1 0 1 7000 +( -512 88 464 ) ( -512 88 416 ) ( -427 -28 448 ) common/li_pv_v4a -11 4 293 1 1 0 1 7000 +( -320 88 448 ) ( -264 88 448 ) ( -292 -44 448 ) common/li_pv_v4a -11 4 293 1 1 0 1 7000 +( -482 62 448 ) ( -492 58 416 ) ( -472 66 416 ) common/li_pv_v4a -11 4 293 1 1 0 1 7000 +( -458 3 448 ) ( -446 8 416 ) ( -470 -2 416 ) common/li_pv_v4a -11 4 293 1 1 0 1 7000 +( -478 28 448 ) ( -464 -6 416 ) ( -492 62 416 ) common/li_pv_v4a -11 4 293 1 1 0 1 7000 +} +// brush 2193 +{ +( -512 88 416 ) ( -456 -44 416 ) ( -427 -28 448 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -456 -44 464 ) ( -456 -44 416 ) ( -512 88 416 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -320 88 448 ) ( -264 88 448 ) ( -292 -44 448 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -482 62 448 ) ( -492 58 416 ) ( -472 66 416 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -458 3 448 ) ( -446 8 416 ) ( -470 -2 416 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +( -478 28 448 ) ( -492 62 416 ) ( -464 -6 416 ) bricks/c_tn_m1 -70 11 293 1 1 0 0 0 +} +// brush 2194 +{ +( -545 558 448 ) ( -608 412 416 ) ( -576 409 448 ) bricks/c_tn_m1 173 -8 102 1 1 0 0 0 +( -576 409 448 ) ( -608 412 416 ) ( -608 412 464 ) bricks/c_tn_m1 163 6 102 1 1 0 0 0 +( -608 412 464 ) ( -608 412 416 ) ( -545 558 448 ) bricks/c_tn_m1 -84 22 102 1 1 0 0 0 +( -356 558 448 ) ( -328 409 448 ) ( -384 409 448 ) bricks/c_tn_m1 173 -8 102 1 1 0 0 0 +} +// brush 2195 +{ +( -545 558 448 ) ( -576 568 416 ) ( -608 412 416 ) bricks/c_tn_m1 173 -8 102 1 1 0 0 0 +( -576 568 464 ) ( -576 568 416 ) ( -545 558 448 ) bricks/c_tn_m1 163 6 102 1 1 0 0 0 +( -608 412 416 ) ( -576 568 416 ) ( -576 568 464 ) bricks/c_tn_m1 -84 22 102 1 1 0 0 0 +( -545 558 448 ) ( -608 412 416 ) ( -608 412 464 ) bricks/c_tn_m1 -84 22 102 1 1 0 0 0 +( -356 568 448 ) ( -328 412 448 ) ( -384 412 448 ) bricks/c_tn_m1 173 -8 102 1 1 0 0 0 +} +// brush 2196 +{ +( -160 280 448 ) ( -192 277 448 ) ( -192 363 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -160 248 448 ) ( -160 504 448 ) ( -160 504 416 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -192 363 448 ) ( -192 277 448 ) ( -160 280 416 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -160 360 448 ) ( -192 363 448 ) ( -160 360 416 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -176 352 448 ) ( -168 352 416 ) ( -184 352 416 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2197 +{ +( -160 280 448 ) ( -192 277 448 ) ( -192 363 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -160 248 448 ) ( -160 504 448 ) ( -160 504 416 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -192 363 448 ) ( -192 277 448 ) ( -160 280 416 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -160 280 416 ) ( -192 277 448 ) ( -160 280 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -168 288 448 ) ( -176 288 416 ) ( -160 288 416 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2198 +{ +( -160 280 448 ) ( -192 277 448 ) ( -192 363 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -160 248 448 ) ( -160 504 448 ) ( -160 504 416 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -192 363 448 ) ( -192 277 448 ) ( -160 280 416 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -176 352 448 ) ( -184 352 416 ) ( -168 352 416 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -168 288 448 ) ( -160 288 416 ) ( -176 288 416 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -168 348 448 ) ( -168 344 416 ) ( -168 352 416 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2199 +{ +( -160 280 448 ) ( -192 277 448 ) ( -192 363 448 ) common/li_pv_v4a 31 -8 90 1 1 0 1 7000 +( -192 363 448 ) ( -192 277 448 ) ( -160 280 416 ) common/li_pv_v4a 31 -8 90 1 1 0 1 7000 +( -176 352 448 ) ( -184 352 416 ) ( -168 352 416 ) common/li_pv_v4a 32 -7 90 1 1 0 1 7000 +( -168 288 448 ) ( -160 288 416 ) ( -176 288 416 ) common/li_pv_v4a 32 -7 90 1 1 0 1 7000 +( -168 348 448 ) ( -168 352 416 ) ( -168 344 416 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -184 348 448 ) ( -184 344 424 ) ( -184 352 424 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 2200 +{ +( -160 280 448 ) ( -192 277 448 ) ( -192 363 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -192 363 448 ) ( -192 277 448 ) ( -160 280 416 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -176 352 448 ) ( -184 352 416 ) ( -168 352 416 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -168 288 448 ) ( -160 288 416 ) ( -176 288 416 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -184 348 448 ) ( -184 352 424 ) ( -184 344 424 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2201 +{ +( 2624 -3048 448 ) ( 2624 -2784 448 ) ( 2656 -2784 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -2784 448 ) ( 2624 -2784 448 ) ( 2624 -2784 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -3048 416 ) ( 2656 -3048 448 ) ( 2640 -2784 432 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -2848 416 ) ( 2640 -2848 416 ) ( 2648 -2848 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2648 -2800 424 ) ( 2648 -2784 424 ) ( 2648 -2792 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2202 +{ +( 2624 -3048 448 ) ( 2624 -2784 448 ) ( 2656 -2784 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2656 -2784 448 ) ( 2624 -2784 448 ) ( 2624 -2784 416 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2624 -3048 416 ) ( 2656 -3048 448 ) ( 2640 -2784 432 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2656 -2848 416 ) ( 2640 -2848 416 ) ( 2648 -2848 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2632 -2800 416 ) ( 2632 -2784 416 ) ( 2632 -2792 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2648 -2784 424 ) ( 2648 -2800 424 ) ( 2648 -2792 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 2203 +{ +( 2624 -3048 448 ) ( 2624 -2784 448 ) ( 2656 -2784 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -2784 448 ) ( 2624 -2784 448 ) ( 2624 -2784 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2784 448 ) ( 2624 -3048 448 ) ( 2624 -3048 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -3048 416 ) ( 2656 -3048 448 ) ( 2640 -2784 432 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -2848 416 ) ( 2640 -2848 416 ) ( 2648 -2848 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2632 -2784 416 ) ( 2632 -2800 416 ) ( 2632 -2792 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2204 +{ +( 2624 -2728 448 ) ( 2624 -2464 448 ) ( 2656 -2464 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2784 448 ) ( 2656 -2784 448 ) ( 2656 -2784 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2464 448 ) ( 2624 -2728 448 ) ( 2624 -2728 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2728 416 ) ( 2656 -2728 448 ) ( 2640 -2464 432 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2640 -2528 416 ) ( 2656 -2528 416 ) ( 2648 -2528 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2205 +{ +( 2624 -2728 448 ) ( 2624 -2464 448 ) ( 2656 -2464 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -2464 448 ) ( 2624 -2464 448 ) ( 2624 -2464 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2464 448 ) ( 2624 -2728 448 ) ( 2624 -2728 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2728 416 ) ( 2656 -2728 448 ) ( 2640 -2464 432 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -2528 416 ) ( 2640 -2528 416 ) ( 2648 -2528 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2632 -2464 416 ) ( 2632 -2480 416 ) ( 2632 -2472 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2206 +{ +( 2624 -2728 448 ) ( 2624 -2464 448 ) ( 2656 -2464 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2656 -2464 448 ) ( 2624 -2464 448 ) ( 2624 -2464 416 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2624 -2728 416 ) ( 2656 -2728 448 ) ( 2640 -2464 432 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2656 -2528 416 ) ( 2640 -2528 416 ) ( 2648 -2528 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2632 -2480 416 ) ( 2632 -2464 416 ) ( 2632 -2472 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2648 -2464 424 ) ( 2648 -2480 424 ) ( 2648 -2472 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 2207 +{ +( 2624 -2728 448 ) ( 2624 -2464 448 ) ( 2656 -2464 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -2464 448 ) ( 2624 -2464 448 ) ( 2624 -2464 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2728 416 ) ( 2656 -2728 448 ) ( 2640 -2464 432 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -2528 416 ) ( 2640 -2528 416 ) ( 2648 -2528 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2648 -2480 424 ) ( 2648 -2464 424 ) ( 2648 -2472 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2208 +{ +( 2624 -2408 448 ) ( 2624 -2144 448 ) ( 2656 -2144 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -2144 448 ) ( 2624 -2144 448 ) ( 2624 -2144 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2408 416 ) ( 2656 -2408 448 ) ( 2640 -2144 432 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -2208 416 ) ( 2640 -2208 416 ) ( 2648 -2208 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2648 -2160 424 ) ( 2648 -2144 424 ) ( 2648 -2152 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2209 +{ +( 2624 -2408 448 ) ( 2624 -2144 448 ) ( 2656 -2144 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2656 -2144 448 ) ( 2624 -2144 448 ) ( 2624 -2144 416 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2624 -2408 416 ) ( 2656 -2408 448 ) ( 2640 -2144 432 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2656 -2208 416 ) ( 2640 -2208 416 ) ( 2648 -2208 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2632 -2160 416 ) ( 2632 -2144 416 ) ( 2632 -2152 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2648 -2144 424 ) ( 2648 -2160 424 ) ( 2648 -2152 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 2210 +{ +( 2624 -2408 448 ) ( 2624 -2144 448 ) ( 2656 -2144 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -2144 448 ) ( 2624 -2144 448 ) ( 2624 -2144 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2144 448 ) ( 2624 -2408 448 ) ( 2624 -2408 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2408 416 ) ( 2656 -2408 448 ) ( 2640 -2144 432 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -2208 416 ) ( 2640 -2208 416 ) ( 2648 -2208 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2632 -2144 416 ) ( 2632 -2160 416 ) ( 2632 -2152 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2211 +{ +( 2624 -2408 448 ) ( 2624 -2144 448 ) ( 2656 -2144 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2464 448 ) ( 2656 -2464 448 ) ( 2656 -2464 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2144 448 ) ( 2624 -2408 448 ) ( 2624 -2408 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2408 416 ) ( 2656 -2408 448 ) ( 2640 -2144 432 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2640 -2208 416 ) ( 2656 -2208 416 ) ( 2648 -2208 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2212 +{ +( 2624 -2088 448 ) ( 2624 -1824 448 ) ( 2656 -1824 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2144 448 ) ( 2656 -2144 448 ) ( 2656 -2144 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -1824 448 ) ( 2624 -2088 448 ) ( 2624 -2088 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2088 416 ) ( 2656 -2088 448 ) ( 2640 -1824 432 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2640 -1888 416 ) ( 2656 -1888 416 ) ( 2648 -1888 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2213 +{ +( 2624 -2088 448 ) ( 2624 -1824 448 ) ( 2656 -1824 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -1824 448 ) ( 2624 -1824 448 ) ( 2624 -1824 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -1824 448 ) ( 2624 -2088 448 ) ( 2624 -2088 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2088 416 ) ( 2656 -2088 448 ) ( 2640 -1824 432 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -1888 416 ) ( 2640 -1888 416 ) ( 2648 -1888 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2632 -1824 416 ) ( 2632 -1840 416 ) ( 2632 -1832 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2214 +{ +( 2624 -2088 448 ) ( 2624 -1824 448 ) ( 2656 -1824 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2656 -1824 448 ) ( 2624 -1824 448 ) ( 2624 -1824 416 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2624 -2088 416 ) ( 2656 -2088 448 ) ( 2640 -1824 432 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2656 -1888 416 ) ( 2640 -1888 416 ) ( 2648 -1888 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2632 -1840 416 ) ( 2632 -1824 416 ) ( 2632 -1832 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2648 -1824 424 ) ( 2648 -1840 424 ) ( 2648 -1832 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 2215 +{ +( 2624 -2088 448 ) ( 2624 -1824 448 ) ( 2656 -1824 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -1824 448 ) ( 2624 -1824 448 ) ( 2624 -1824 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2088 416 ) ( 2656 -2088 448 ) ( 2640 -1824 432 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -1888 416 ) ( 2640 -1888 416 ) ( 2648 -1888 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2648 -1840 424 ) ( 2648 -1824 424 ) ( 2648 -1832 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2216 +{ +( 2624 -1768 448 ) ( 2624 -1504 448 ) ( 2656 -1504 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -1504 448 ) ( 2624 -1504 448 ) ( 2624 -1504 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -1768 416 ) ( 2656 -1768 448 ) ( 2640 -1504 432 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -1568 416 ) ( 2640 -1568 416 ) ( 2648 -1568 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2648 -1520 424 ) ( 2648 -1504 424 ) ( 2648 -1512 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2217 +{ +( 2624 -1768 448 ) ( 2624 -1504 448 ) ( 2656 -1504 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2656 -1504 448 ) ( 2624 -1504 448 ) ( 2624 -1504 416 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2624 -1768 416 ) ( 2656 -1768 448 ) ( 2640 -1504 432 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2656 -1568 416 ) ( 2640 -1568 416 ) ( 2648 -1568 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2632 -1520 416 ) ( 2632 -1504 416 ) ( 2632 -1512 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2648 -1504 424 ) ( 2648 -1520 424 ) ( 2648 -1512 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 2218 +{ +( 2624 -1768 448 ) ( 2624 -1504 448 ) ( 2656 -1504 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -1504 448 ) ( 2624 -1504 448 ) ( 2624 -1504 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -1504 448 ) ( 2624 -1768 448 ) ( 2624 -1768 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -1768 416 ) ( 2656 -1768 448 ) ( 2640 -1504 432 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -1568 416 ) ( 2640 -1568 416 ) ( 2648 -1568 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2632 -1504 416 ) ( 2632 -1520 416 ) ( 2632 -1512 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2219 +{ +( 2624 -1768 448 ) ( 2624 -1504 448 ) ( 2656 -1504 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -1824 448 ) ( 2656 -1824 448 ) ( 2656 -1824 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -1504 448 ) ( 2624 -1768 448 ) ( 2624 -1768 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -1768 416 ) ( 2656 -1768 448 ) ( 2640 -1504 432 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2640 -1568 416 ) ( 2656 -1568 416 ) ( 2648 -1568 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2220 +{ +( 2624 -1448 448 ) ( 2624 -1184 448 ) ( 2656 -1184 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -1504 448 ) ( 2656 -1504 448 ) ( 2656 -1504 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -1184 448 ) ( 2624 -1448 448 ) ( 2624 -1448 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -1448 416 ) ( 2656 -1448 448 ) ( 2640 -1184 432 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2640 -1248 416 ) ( 2656 -1248 416 ) ( 2648 -1248 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2221 +{ +( 2624 -1448 448 ) ( 2624 -1184 448 ) ( 2656 -1184 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -1184 448 ) ( 2624 -1184 448 ) ( 2624 -1184 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -1184 448 ) ( 2624 -1448 448 ) ( 2624 -1448 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -1448 416 ) ( 2656 -1448 448 ) ( 2640 -1184 432 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -1248 416 ) ( 2640 -1248 416 ) ( 2648 -1248 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2632 -1184 416 ) ( 2632 -1200 416 ) ( 2632 -1192 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2222 +{ +( 2624 -1448 448 ) ( 2624 -1184 448 ) ( 2656 -1184 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2656 -1184 448 ) ( 2624 -1184 448 ) ( 2624 -1184 416 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2624 -1448 416 ) ( 2656 -1448 448 ) ( 2640 -1184 432 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2656 -1248 416 ) ( 2640 -1248 416 ) ( 2648 -1248 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2632 -1200 416 ) ( 2632 -1184 416 ) ( 2632 -1192 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2648 -1184 424 ) ( 2648 -1200 424 ) ( 2648 -1192 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 2223 +{ +( 2624 -1448 448 ) ( 2624 -1184 448 ) ( 2656 -1184 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -1184 448 ) ( 2624 -1184 448 ) ( 2624 -1184 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -1448 416 ) ( 2656 -1448 448 ) ( 2640 -1184 432 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -1248 416 ) ( 2640 -1248 416 ) ( 2648 -1248 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2648 -1200 424 ) ( 2648 -1184 424 ) ( 2648 -1192 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2224 +{ +( 2624 -1128 448 ) ( 2624 -864 448 ) ( 2656 -864 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -864 448 ) ( 2624 -864 448 ) ( 2624 -864 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -1128 416 ) ( 2656 -1128 448 ) ( 2640 -864 432 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -928 416 ) ( 2640 -928 416 ) ( 2648 -928 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2648 -880 424 ) ( 2648 -864 424 ) ( 2648 -872 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2225 +{ +( 2624 -1128 448 ) ( 2624 -864 448 ) ( 2656 -864 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2656 -864 448 ) ( 2624 -864 448 ) ( 2624 -864 416 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2624 -1128 416 ) ( 2656 -1128 448 ) ( 2640 -864 432 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2656 -928 416 ) ( 2640 -928 416 ) ( 2648 -928 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2632 -880 416 ) ( 2632 -864 416 ) ( 2632 -872 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2648 -864 424 ) ( 2648 -880 424 ) ( 2648 -872 448 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 2226 +{ +( 2624 -1128 448 ) ( 2624 -864 448 ) ( 2656 -864 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -864 448 ) ( 2624 -864 448 ) ( 2624 -864 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -864 448 ) ( 2624 -1128 448 ) ( 2624 -1128 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -1128 416 ) ( 2656 -1128 448 ) ( 2640 -864 432 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -928 416 ) ( 2640 -928 416 ) ( 2648 -928 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2632 -864 416 ) ( 2632 -880 416 ) ( 2632 -872 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2227 +{ +( 2624 -1128 448 ) ( 2624 -864 448 ) ( 2656 -864 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -1184 448 ) ( 2656 -1184 448 ) ( 2656 -1184 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -864 448 ) ( 2624 -1128 448 ) ( 2624 -1128 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -1128 416 ) ( 2656 -1128 448 ) ( 2640 -864 432 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2640 -928 416 ) ( 2656 -928 416 ) ( 2648 -928 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2228 +{ +( 2592 -1048 448 ) ( 2592 -800 448 ) ( 3008 -800 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2616 -2848 448 ) ( 3032 -2848 448 ) ( 3032 -2848 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -1048 448 ) ( 3008 -800 448 ) ( 3008 -800 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -2848 448 ) ( 3008 -2848 416 ) ( 2992 -800 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -2784 416 ) ( 3008 -2784 416 ) ( 3004 -2784 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -2800 416 ) ( 3000 -2784 416 ) ( 3000 -2792 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2229 +{ +( 2592 -1048 448 ) ( 2592 -800 448 ) ( 3008 -800 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2616 -2848 448 ) ( 3032 -2848 448 ) ( 3032 -2848 432 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2976 -2848 448 ) ( 3008 -2848 416 ) ( 2992 -800 432 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 3000 -2784 416 ) ( 3008 -2784 416 ) ( 3004 -2784 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2984 -2800 416 ) ( 2984 -2784 416 ) ( 2984 -2792 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 3000 -2784 416 ) ( 3000 -2800 416 ) ( 3000 -2792 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +} +// brush 2230 +{ +( 2592 -1048 448 ) ( 2592 -800 448 ) ( 3008 -800 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2616 -2848 448 ) ( 3032 -2848 448 ) ( 3032 -2848 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -2848 448 ) ( 3008 -2848 416 ) ( 2992 -800 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -2784 416 ) ( 3008 -2784 416 ) ( 3004 -2784 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2984 -2784 416 ) ( 2984 -2800 416 ) ( 2984 -2792 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2231 +{ +( 2592 -1080 448 ) ( 2592 -832 448 ) ( 3008 -832 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -1080 448 ) ( 3008 -832 448 ) ( 3008 -832 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -2880 448 ) ( 3008 -2880 416 ) ( 2992 -832 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -2528 416 ) ( 2992 -2528 416 ) ( 2984 -2528 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -2784 416 ) ( 3000 -2784 416 ) ( 3004 -2784 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2232 +{ +( 2592 -728 448 ) ( 2592 -480 448 ) ( 3008 -480 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2616 -2528 448 ) ( 3032 -2528 448 ) ( 3032 -2528 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -2528 448 ) ( 3008 -2528 416 ) ( 2992 -480 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -2464 416 ) ( 3008 -2464 416 ) ( 3004 -2464 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2984 -2464 416 ) ( 2984 -2480 416 ) ( 2984 -2472 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2233 +{ +( 2592 -728 448 ) ( 2592 -480 448 ) ( 3008 -480 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2616 -2528 448 ) ( 3032 -2528 448 ) ( 3032 -2528 432 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2976 -2528 448 ) ( 3008 -2528 416 ) ( 2992 -480 432 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 3000 -2464 416 ) ( 3008 -2464 416 ) ( 3004 -2464 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2984 -2480 416 ) ( 2984 -2464 416 ) ( 2984 -2472 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 3000 -2464 416 ) ( 3000 -2480 416 ) ( 3000 -2472 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +} +// brush 2234 +{ +( 2592 -728 448 ) ( 2592 -480 448 ) ( 3008 -480 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2616 -2528 448 ) ( 3032 -2528 448 ) ( 3032 -2528 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -728 448 ) ( 3008 -480 448 ) ( 3008 -480 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -2528 448 ) ( 3008 -2528 416 ) ( 2992 -480 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -2464 416 ) ( 3008 -2464 416 ) ( 3004 -2464 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -2480 416 ) ( 3000 -2464 416 ) ( 3000 -2472 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2235 +{ +( 2592 -408 448 ) ( 2592 -160 448 ) ( 3008 -160 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2616 -2208 448 ) ( 3032 -2208 448 ) ( 3032 -2208 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -408 448 ) ( 3008 -160 448 ) ( 3008 -160 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -2208 448 ) ( 3008 -2208 416 ) ( 2992 -160 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -2144 416 ) ( 3008 -2144 416 ) ( 3004 -2144 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -2160 416 ) ( 3000 -2144 416 ) ( 3000 -2152 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2236 +{ +( 2592 -408 448 ) ( 2592 -160 448 ) ( 3008 -160 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2616 -2208 448 ) ( 3032 -2208 448 ) ( 3032 -2208 432 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2976 -2208 448 ) ( 3008 -2208 416 ) ( 2992 -160 432 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 3000 -2144 416 ) ( 3008 -2144 416 ) ( 3004 -2144 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2984 -2160 416 ) ( 2984 -2144 416 ) ( 2984 -2152 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 3000 -2144 416 ) ( 3000 -2160 416 ) ( 3000 -2152 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +} +// brush 2237 +{ +( 2592 -408 448 ) ( 2592 -160 448 ) ( 3008 -160 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2616 -2208 448 ) ( 3032 -2208 448 ) ( 3032 -2208 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -2208 448 ) ( 3008 -2208 416 ) ( 2992 -160 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -2144 416 ) ( 3008 -2144 416 ) ( 3004 -2144 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2984 -2144 416 ) ( 2984 -2160 416 ) ( 2984 -2152 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2238 +{ +( 2592 -760 448 ) ( 2592 -512 448 ) ( 3008 -512 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -760 448 ) ( 3008 -512 448 ) ( 3008 -512 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -2560 448 ) ( 3008 -2560 416 ) ( 2992 -512 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -2208 416 ) ( 2992 -2208 416 ) ( 2984 -2208 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -2464 416 ) ( 3000 -2464 416 ) ( 3004 -2464 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2239 +{ +( 2592 -440 448 ) ( 2592 -192 448 ) ( 3008 -192 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -440 448 ) ( 3008 -192 448 ) ( 3008 -192 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -2240 448 ) ( 3008 -2240 416 ) ( 2992 -192 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -1888 416 ) ( 2992 -1888 416 ) ( 2984 -1888 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -2144 416 ) ( 3000 -2144 416 ) ( 3004 -2144 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2240 +{ +( 2592 -88 448 ) ( 2592 160 448 ) ( 3008 160 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2616 -1888 448 ) ( 3032 -1888 448 ) ( 3032 -1888 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -1888 448 ) ( 3008 -1888 416 ) ( 2992 160 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -1824 416 ) ( 3008 -1824 416 ) ( 3004 -1824 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2984 -1824 416 ) ( 2984 -1840 416 ) ( 2984 -1832 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2241 +{ +( 2592 -88 448 ) ( 2592 160 448 ) ( 3008 160 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2616 -1888 448 ) ( 3032 -1888 448 ) ( 3032 -1888 432 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2976 -1888 448 ) ( 3008 -1888 416 ) ( 2992 160 432 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 3000 -1824 416 ) ( 3008 -1824 416 ) ( 3004 -1824 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2984 -1840 416 ) ( 2984 -1824 416 ) ( 2984 -1832 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 3000 -1824 416 ) ( 3000 -1840 416 ) ( 3000 -1832 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +} +// brush 2242 +{ +( 2592 -88 448 ) ( 2592 160 448 ) ( 3008 160 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2616 -1888 448 ) ( 3032 -1888 448 ) ( 3032 -1888 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -88 448 ) ( 3008 160 448 ) ( 3008 160 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -1888 448 ) ( 3008 -1888 416 ) ( 2992 160 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -1824 416 ) ( 3008 -1824 416 ) ( 3004 -1824 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -1840 416 ) ( 3000 -1824 416 ) ( 3000 -1832 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2243 +{ +( 2592 232 448 ) ( 2592 480 448 ) ( 3008 480 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2616 -1568 448 ) ( 3032 -1568 448 ) ( 3032 -1568 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 232 448 ) ( 3008 480 448 ) ( 3008 480 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -1568 448 ) ( 3008 -1568 416 ) ( 2992 480 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -1504 416 ) ( 3008 -1504 416 ) ( 3004 -1504 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -1520 416 ) ( 3000 -1504 416 ) ( 3000 -1512 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2244 +{ +( 2592 232 448 ) ( 2592 480 448 ) ( 3008 480 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2616 -1568 448 ) ( 3032 -1568 448 ) ( 3032 -1568 432 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2976 -1568 448 ) ( 3008 -1568 416 ) ( 2992 480 432 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 3000 -1504 416 ) ( 3008 -1504 416 ) ( 3004 -1504 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2984 -1520 416 ) ( 2984 -1504 416 ) ( 2984 -1512 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 3000 -1504 416 ) ( 3000 -1520 416 ) ( 3000 -1512 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +} +// brush 2245 +{ +( 2592 232 448 ) ( 2592 480 448 ) ( 3008 480 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2616 -1568 448 ) ( 3032 -1568 448 ) ( 3032 -1568 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -1568 448 ) ( 3008 -1568 416 ) ( 2992 480 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -1504 416 ) ( 3008 -1504 416 ) ( 3004 -1504 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2984 -1504 416 ) ( 2984 -1520 416 ) ( 2984 -1512 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2246 +{ +( 2592 -120 448 ) ( 2592 128 448 ) ( 3008 128 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -120 448 ) ( 3008 128 448 ) ( 3008 128 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -1920 448 ) ( 3008 -1920 416 ) ( 2992 128 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -1568 416 ) ( 2992 -1568 416 ) ( 2984 -1568 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -1824 416 ) ( 3000 -1824 416 ) ( 3004 -1824 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2247 +{ +( 2592 200 448 ) ( 2592 448 448 ) ( 3008 448 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 200 448 ) ( 3008 448 448 ) ( 3008 448 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -1600 448 ) ( 3008 -1600 416 ) ( 2992 448 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -1248 416 ) ( 2992 -1248 416 ) ( 2984 -1248 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -1504 416 ) ( 3000 -1504 416 ) ( 3004 -1504 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2248 +{ +( 2592 552 448 ) ( 2592 800 448 ) ( 3008 800 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2616 -1248 448 ) ( 3032 -1248 448 ) ( 3032 -1248 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -1248 448 ) ( 3008 -1248 416 ) ( 2992 800 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -1184 416 ) ( 3008 -1184 416 ) ( 3004 -1184 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2984 -1184 416 ) ( 2984 -1200 416 ) ( 2984 -1192 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2249 +{ +( 2592 552 448 ) ( 2592 800 448 ) ( 3008 800 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2616 -1248 448 ) ( 3032 -1248 448 ) ( 3032 -1248 432 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2976 -1248 448 ) ( 3008 -1248 416 ) ( 2992 800 432 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 3000 -1184 416 ) ( 3008 -1184 416 ) ( 3004 -1184 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2984 -1200 416 ) ( 2984 -1184 416 ) ( 2984 -1192 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 3000 -1184 416 ) ( 3000 -1200 416 ) ( 3000 -1192 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +} +// brush 2250 +{ +( 2592 552 448 ) ( 2592 800 448 ) ( 3008 800 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2616 -1248 448 ) ( 3032 -1248 448 ) ( 3032 -1248 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 552 448 ) ( 3008 800 448 ) ( 3008 800 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -1248 448 ) ( 3008 -1248 416 ) ( 2992 800 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -1184 416 ) ( 3008 -1184 416 ) ( 3004 -1184 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -1200 416 ) ( 3000 -1184 416 ) ( 3000 -1192 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2251 +{ +( 2592 872 448 ) ( 2592 1120 448 ) ( 3008 1120 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2616 -928 448 ) ( 3032 -928 448 ) ( 3032 -928 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 872 448 ) ( 3008 1120 448 ) ( 3008 1120 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -928 448 ) ( 3008 -928 416 ) ( 2992 1120 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -864 416 ) ( 3008 -864 416 ) ( 3004 -864 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -880 416 ) ( 3000 -864 416 ) ( 3000 -872 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2252 +{ +( 2592 872 448 ) ( 2592 1120 448 ) ( 3008 1120 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2616 -928 448 ) ( 3032 -928 448 ) ( 3032 -928 432 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2976 -928 448 ) ( 3008 -928 416 ) ( 2992 1120 432 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 3000 -864 416 ) ( 3008 -864 416 ) ( 3004 -864 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2984 -880 416 ) ( 2984 -864 416 ) ( 2984 -872 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 3000 -864 416 ) ( 3000 -880 416 ) ( 3000 -872 448 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +} +// brush 2253 +{ +( 2592 872 448 ) ( 2592 1120 448 ) ( 3008 1120 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2616 -928 448 ) ( 3032 -928 448 ) ( 3032 -928 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -928 448 ) ( 3008 -928 416 ) ( 2992 1120 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -864 416 ) ( 3008 -864 416 ) ( 3004 -864 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2984 -864 416 ) ( 2984 -880 416 ) ( 2984 -872 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2254 +{ +( 2592 520 448 ) ( 2592 768 448 ) ( 3008 768 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 520 448 ) ( 3008 768 448 ) ( 3008 768 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -1280 448 ) ( 3008 -1280 416 ) ( 2992 768 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -928 416 ) ( 2992 -928 416 ) ( 2984 -928 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -1184 416 ) ( 3000 -1184 416 ) ( 3004 -1184 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2255 +{ +( 3024 -832 448 ) ( 2608 -832 448 ) ( 2608 -1080 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2608 -1080 464 ) ( 2608 -832 464 ) ( 3024 -832 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2632 -2880 464 ) ( 3048 -2880 464 ) ( 3048 -2880 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3024 -1080 464 ) ( 3024 -832 464 ) ( 3024 -832 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3024 -832 464 ) ( 2608 -832 464 ) ( 2608 -832 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2608 -832 464 ) ( 2608 -1080 464 ) ( 2608 -1080 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2256 +{ +( 3024 -2728 240 ) ( 3008 -2728 240 ) ( 3008 -2880 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3008 -2880 448 ) ( 3008 -2728 448 ) ( 3024 -2728 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3024 -2958 448 ) ( 3024 -2958 240 ) ( 3008 -2956 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3024 -754 448 ) ( 3024 -754 240 ) ( 3024 -2958 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3024 -754 240 ) ( 3024 -754 448 ) ( 3008 -756 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3008 -2728 448 ) ( 3008 -2880 448 ) ( 3008 -2880 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2257 +{ +( 2624 -2728 240 ) ( 2608 -2728 240 ) ( 2608 -2880 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2608 -2880 448 ) ( 2608 -2728 448 ) ( 2624 -2728 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2624 -2920 448 ) ( 2624 -2920 240 ) ( 2608 -2918 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2624 -792 448 ) ( 2624 -792 240 ) ( 2624 -2920 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2624 -792 240 ) ( 2624 -792 448 ) ( 2608 -794 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2608 -2728 448 ) ( 2608 -2880 448 ) ( 2608 -2880 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2258 +{ +( 2640 -832 240 ) ( 2624 -832 240 ) ( 2624 -976 240 ) bricks/c_sr_mr5 112 16 0 1 1 0 0 0 +( 2624 -976 256 ) ( 2624 -832 256 ) ( 2640 -832 256 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( 2640 -2922 256 ) ( 2640 -2922 240 ) ( 2624 -2920 240 ) bricks/c_sr_mr5 112 -16 0 1 1 0 0 0 +( 2640 -790 256 ) ( 2640 -790 240 ) ( 2640 -2922 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2640 -790 240 ) ( 2640 -790 256 ) ( 2624 -792 256 ) bricks/c_sr_mr5 112 -16 0 1 1 0 0 0 +( 2624 -832 256 ) ( 2624 -976 256 ) ( 2624 -976 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2259 +{ +( 3008 -832 240 ) ( 2992 -832 240 ) ( 2992 -976 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2992 -976 256 ) ( 2992 -832 256 ) ( 3008 -832 256 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( 3008 -2956 256 ) ( 3008 -2956 240 ) ( 2992 -2954 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 3008 -756 256 ) ( 3008 -756 240 ) ( 3008 -2956 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 3008 -756 240 ) ( 3008 -756 256 ) ( 2992 -758 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2992 -832 256 ) ( 2992 -976 256 ) ( 2992 -976 240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2260 +{ +( 2992 -608 448 ) ( 2992 -736 448 ) ( 2624 -736 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2592 -720 288 ) ( 2592 -720 304 ) ( 2608 -794 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2592 -720 448 ) ( 2592 -720 432 ) ( 2608 -716 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2608 -794 288 ) ( 2608 -794 304 ) ( 2624 -792 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2624 -792 240 ) ( 2608 -716 240 ) ( 2616 -754 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 784 -794 240 ) ( 816 -794 240 ) ( 800 -716 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2261 +{ +( 2960 -452 448 ) ( 2960 -580 448 ) ( 2592 -580 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2566 -660 224 ) ( 2566 -660 240 ) ( 2592 -720 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2566 -660 448 ) ( 2566 -660 432 ) ( 2580 -652 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2592 -720 432 ) ( 2592 -720 448 ) ( 2608 -716 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2608 -716 384 ) ( 2580 -652 384 ) ( 2594 -684 368 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 784 -720 240 ) ( 816 -720 240 ) ( 800 -652 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2262 +{ +( 2904 -320 448 ) ( 2904 -448 448 ) ( 2536 -448 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2522 -594 288 ) ( 2522 -594 304 ) ( 2566 -660 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2522 -594 448 ) ( 2522 -594 432 ) ( 2536 -584 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2566 -660 432 ) ( 2566 -660 448 ) ( 2580 -652 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2580 -652 384 ) ( 2536 -584 384 ) ( 2558 -618 368 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 784 -660 240 ) ( 816 -660 240 ) ( 800 -584 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2263 +{ +( 2748 -616 448 ) ( 2748 -248 448 ) ( 2876 -248 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2522 -594 240 ) ( 2522 -594 224 ) ( 2478 -550 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2522 -594 432 ) ( 2522 -594 448 ) ( 2536 -584 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -550 448 ) ( 2478 -550 432 ) ( 2488 -536 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2488 -536 368 ) ( 2536 -584 368 ) ( 2512 -560 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 784 -594 240 ) ( 816 -594 240 ) ( 800 -536 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2264 +{ +( 2624 -536 448 ) ( 2624 -168 448 ) ( 2752 -168 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -550 304 ) ( 2478 -550 288 ) ( 2412 -506 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -550 432 ) ( 2478 -550 448 ) ( 2488 -536 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2412 -506 448 ) ( 2412 -506 432 ) ( 2420 -492 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2420 -492 368 ) ( 2488 -536 368 ) ( 2454 -514 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 784 -550 240 ) ( 816 -550 240 ) ( 800 -492 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2265 +{ +( 2492 -480 448 ) ( 2492 -112 448 ) ( 2620 -112 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2412 -506 240 ) ( 2412 -506 224 ) ( 2352 -480 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2412 -506 432 ) ( 2412 -506 448 ) ( 2420 -492 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2352 -480 448 ) ( 2352 -480 432 ) ( 2356 -464 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2356 -464 368 ) ( 2420 -492 368 ) ( 2388 -478 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 784 -506 240 ) ( 816 -506 240 ) ( 800 -464 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2266 +{ +( 2336 -448 448 ) ( 2336 -80 448 ) ( 2464 -80 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2352 -480 304 ) ( 2352 -480 288 ) ( 2278 -464 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2352 -480 432 ) ( 2352 -480 448 ) ( 2356 -464 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2278 -464 448 ) ( 2278 -464 432 ) ( 2280 -448 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2280 -448 368 ) ( 2356 -464 368 ) ( 2318 -456 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 784 -480 240 ) ( 816 -480 240 ) ( 800 -448 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2267 +{ +( 2336 -448 448 ) ( 2336 -80 448 ) ( 2464 -80 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -80 448 ) ( 2478 -80 432 ) ( 2472 -96 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -80 224 ) ( 2478 -80 240 ) ( 2318 -48 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2318 -48 432 ) ( 2318 -48 448 ) ( 2316 -64 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2472 -96 432 ) ( 2316 -64 432 ) ( 2394 -80 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2936 -96 240 ) ( 2968 -96 240 ) ( 2952 -48 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2268 +{ +( 2492 -480 448 ) ( 2492 -112 448 ) ( 2620 -112 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2612 -138 448 ) ( 2612 -138 432 ) ( 2604 -152 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2612 -138 224 ) ( 2612 -138 240 ) ( 2478 -80 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -80 432 ) ( 2478 -80 448 ) ( 2472 -96 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2604 -152 432 ) ( 2472 -96 432 ) ( 2538 -124 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2936 -152 240 ) ( 2968 -152 240 ) ( 2952 -80 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2269 +{ +( 2624 -536 448 ) ( 2624 -168 448 ) ( 2752 -168 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2738 -220 304 ) ( 2738 -220 288 ) ( 2728 -232 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2738 -220 224 ) ( 2738 -220 240 ) ( 2612 -138 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2612 -138 432 ) ( 2612 -138 448 ) ( 2604 -152 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2728 -232 432 ) ( 2604 -152 432 ) ( 2666 -192 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2936 -232 240 ) ( 2968 -232 240 ) ( 2952 -138 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2270 +{ +( 2738 -344 448 ) ( 2738 -220 448 ) ( 2840 -220 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2728 -232 288 ) ( 2728 -232 448 ) ( 2840 -344 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2852 -334 448 ) ( 2852 -334 288 ) ( 2840 -344 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2852 -334 224 ) ( 2852 -334 384 ) ( 2738 -220 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2728 -232 448 ) ( 2728 -232 288 ) ( 2738 -220 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2936 -344 240 ) ( 2968 -344 240 ) ( 2952 -220 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2271 +{ +( 2904 -320 448 ) ( 2904 -448 448 ) ( 2536 -448 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2852 -334 432 ) ( 2852 -334 448 ) ( 2840 -344 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2852 -334 384 ) ( 2852 -334 368 ) ( 2934 -460 368 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2934 -460 304 ) ( 2934 -460 288 ) ( 2920 -468 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2840 -344 304 ) ( 2920 -468 304 ) ( 2880 -406 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2936 -468 240 ) ( 2968 -468 240 ) ( 2952 -334 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2272 +{ +( 2960 -452 448 ) ( 2960 -580 448 ) ( 2592 -580 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2934 -460 288 ) ( 2934 -460 304 ) ( 2920 -468 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2934 -460 384 ) ( 2934 -460 368 ) ( 2992 -594 368 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2992 -594 304 ) ( 2992 -594 288 ) ( 2976 -600 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2920 -468 304 ) ( 2976 -600 304 ) ( 2948 -534 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2936 -600 240 ) ( 2968 -600 240 ) ( 2952 -460 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2273 +{ +( 2992 -608 448 ) ( 2992 -736 448 ) ( 2624 -736 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2992 -594 288 ) ( 2992 -594 304 ) ( 2976 -600 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2992 -594 384 ) ( 2992 -594 368 ) ( 3024 -754 368 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3024 -754 304 ) ( 3024 -754 288 ) ( 3008 -756 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2976 -600 240 ) ( 3008 -756 240 ) ( 2992 -678 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2936 -756 240 ) ( 2968 -756 240 ) ( 2952 -594 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2274 +{ +( 2707 -258 448 ) ( 2728 -232 416 ) ( 2604 -152 416 ) bricks/c_tn_m1 -82 -9 147 1 1 0 0 0 +( 2728 -232 464 ) ( 2728 -232 416 ) ( 2707 -258 448 ) bricks/c_tn_m1 -82 -9 147 1 1 0 0 0 +( 2604 -152 416 ) ( 2728 -232 416 ) ( 2728 -232 464 ) bricks/c_tn_m1 -82 -9 147 1 1 0 0 0 +( 2707 -258 448 ) ( 2604 -152 416 ) ( 2604 -152 464 ) bricks/c_tn_m1 -82 -9 147 1 1 0 0 0 +( 2784 -258 448 ) ( 2728 -258 448 ) ( 2756 -152 448 ) bricks/c_tn_m1 -82 -9 147 1 1 0 0 0 +} +// brush 2275 +{ +( 2707 -258 448 ) ( 2604 -152 416 ) ( 2588 -181 448 ) bricks/c_tn_m1 -82 -9 147 1 1 0 0 0 +( 2588 -181 448 ) ( 2604 -152 416 ) ( 2604 -152 464 ) bricks/c_tn_m1 -82 -9 147 1 1 0 0 0 +( 2604 -152 464 ) ( 2604 -152 416 ) ( 2707 -258 448 ) bricks/c_tn_m1 -82 -9 147 1 1 0 0 0 +( 2784 -258 448 ) ( 2728 -258 448 ) ( 2756 -152 448 ) bricks/c_tn_m1 -82 -9 147 1 1 0 0 0 +} +// brush 2276 +{ +( 2624 -792 448 ) ( 2656 -789 448 ) ( 2656 -1024 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -648 416 ) ( 2624 -648 448 ) ( 2624 -904 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -1024 448 ) ( 2656 -789 448 ) ( 2624 -792 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -792 416 ) ( 2656 -789 448 ) ( 2624 -792 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2648 -864 416 ) ( 2640 -864 416 ) ( 2644 -864 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2277 +{ +( 2316 -64 224 ) ( 2316 -64 240 ) ( 2240 -64 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2472 -96 224 ) ( 2472 -96 240 ) ( 2316 -64 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2604 -152 224 ) ( 2604 -152 240 ) ( 2472 -96 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2728 -232 224 ) ( 2728 -232 240 ) ( 2604 -152 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2840 -344 224 ) ( 2840 -344 240 ) ( 2728 -232 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2920 -468 224 ) ( 2920 -468 240 ) ( 2840 -344 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2976 -600 224 ) ( 2976 -600 240 ) ( 2920 -468 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2976 -600 240 ) ( 2976 -600 224 ) ( 3008 -756 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3008 -756 240 ) ( 3008 -756 224 ) ( 3008 -832 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1472 -1600 224 ) ( 3008 -1600 224 ) ( 3008 -64 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3008 -64 240 ) ( 3008 -1600 240 ) ( 1472 -1600 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2240 -312 176 ) ( 2240 -256 176 ) ( 2240 -284 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2904 -832 176 ) ( 2840 -832 176 ) ( 2872 -832 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2624 -832 224 ) ( 2240 -448 224 ) ( 2432 -640 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2278 +{ +( 2316 -64 448 ) ( 2316 -64 464 ) ( 2240 -64 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2472 -96 448 ) ( 2472 -96 464 ) ( 2316 -64 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2604 -152 448 ) ( 2604 -152 464 ) ( 2472 -96 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2728 -232 448 ) ( 2728 -232 464 ) ( 2604 -152 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2840 -344 448 ) ( 2840 -344 464 ) ( 2728 -232 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2920 -468 448 ) ( 2920 -468 464 ) ( 2840 -344 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2976 -600 448 ) ( 2976 -600 464 ) ( 2920 -468 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2976 -600 464 ) ( 2976 -600 448 ) ( 3008 -756 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3008 -756 464 ) ( 3008 -756 448 ) ( 3008 -832 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1472 -1600 448 ) ( 3008 -1600 448 ) ( 3008 -64 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3008 -64 464 ) ( 3008 -1600 464 ) ( 1472 -1600 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2240 -312 400 ) ( 2240 -256 400 ) ( 2240 -284 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2904 -832 400 ) ( 2840 -832 400 ) ( 2872 -832 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2624 -832 448 ) ( 2240 -448 448 ) ( 2432 -640 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2279 +{ +( 2283 -416 448 ) ( 2280 -448 416 ) ( 2366 -433 448 ) bricks/c_tn_m1 -44 4 348 1 1 0 0 0 +( 2280 -448 464 ) ( 2280 -448 416 ) ( 2283 -416 448 ) bricks/c_tn_m1 -44 4 348 1 1 0 0 0 +( 2366 -433 448 ) ( 2280 -448 416 ) ( 2280 -448 464 ) bricks/c_tn_m1 -44 4 348 1 1 0 0 0 +( 2280 -696 448 ) ( 2280 -672 448 ) ( 2366 -684 448 ) bricks/c_tn_m1 -44 4 348 1 1 0 0 0 +} +// brush 2280 +{ +( 2280 -448 416 ) ( 2356 -464 416 ) ( 2366 -433 448 ) bricks/c_tn_m1 -44 4 348 1 1 0 0 0 +( 2356 -464 464 ) ( 2356 -464 416 ) ( 2280 -448 416 ) bricks/c_tn_m1 -44 4 348 1 1 0 0 0 +( 2366 -433 448 ) ( 2356 -464 416 ) ( 2356 -464 464 ) bricks/c_tn_m1 -44 4 348 1 1 0 0 0 +( 2280 -448 416 ) ( 2366 -433 448 ) ( 2366 -433 464 ) bricks/c_tn_m1 -44 4 348 1 1 0 0 0 +( 2280 -696 448 ) ( 2280 -672 448 ) ( 2366 -684 448 ) bricks/c_tn_m1 -44 4 348 1 1 0 0 0 +} +// brush 2281 +{ +( 2435 -464 448 ) ( 2420 -492 416 ) ( 2508 -511 448 ) bricks/c_tn_m1 11 9 327 1 1 0 0 0 +( 2420 -492 464 ) ( 2420 -492 416 ) ( 2435 -464 448 ) bricks/c_tn_m1 11 9 327 1 1 0 0 0 +( 2508 -511 448 ) ( 2420 -492 416 ) ( 2420 -492 464 ) bricks/c_tn_m1 11 9 327 1 1 0 0 0 +( 2420 -696 448 ) ( 2420 -672 448 ) ( 2508 -684 448 ) bricks/c_tn_m1 11 9 327 1 1 0 0 0 +} +// brush 2282 +{ +( 2420 -492 416 ) ( 2488 -536 416 ) ( 2508 -511 448 ) bricks/c_tn_m1 11 9 327 1 1 0 0 0 +( 2488 -536 464 ) ( 2488 -536 416 ) ( 2420 -492 416 ) bricks/c_tn_m1 11 9 327 1 1 0 0 0 +( 2508 -511 448 ) ( 2488 -536 416 ) ( 2488 -536 464 ) bricks/c_tn_m1 11 9 327 1 1 0 0 0 +( 2420 -492 464 ) ( 2420 -492 416 ) ( 2508 -511 448 ) bricks/c_tn_m1 11 9 327 1 1 0 0 0 +( 2420 -696 448 ) ( 2420 -672 448 ) ( 2508 -684 448 ) bricks/c_tn_m1 11 9 327 1 1 0 0 0 +} +// brush 2283 +{ +( 2508 -511 448 ) ( 2536 -584 416 ) ( 2561 -564 448 ) bricks/c_tn_m1 0 4 315 1 1 0 0 0 +( 2561 -564 448 ) ( 2536 -584 416 ) ( 2536 -584 464 ) bricks/c_tn_m1 0 4 315 1 1 0 0 0 +( 2536 -584 464 ) ( 2536 -584 416 ) ( 2508 -511 448 ) bricks/c_tn_m1 0 4 315 1 1 0 0 0 +( 2508 -696 448 ) ( 2508 -672 448 ) ( 2561 -684 448 ) bricks/c_tn_m1 0 4 315 1 1 0 0 0 +} +// brush 2284 +{ +( 2488 -536 416 ) ( 2536 -584 416 ) ( 2508 -511 448 ) bricks/c_tn_m1 0 4 315 1 1 0 0 0 +( 2536 -584 464 ) ( 2536 -584 416 ) ( 2488 -536 416 ) bricks/c_tn_m1 0 4 315 1 1 0 0 0 +( 2488 -536 464 ) ( 2488 -536 416 ) ( 2508 -511 448 ) bricks/c_tn_m1 0 4 315 1 1 0 0 0 +( 2508 -511 448 ) ( 2536 -584 416 ) ( 2536 -584 464 ) bricks/c_tn_m1 0 4 315 1 1 0 0 0 +( 2488 -696 448 ) ( 2488 -672 448 ) ( 2536 -684 448 ) bricks/c_tn_m1 0 4 315 1 1 0 0 0 +} +// brush 2285 +{ +( 2561 -564 448 ) ( 2536 -584 416 ) ( 2580 -652 416 ) bricks/c_tn_m1 0 -16 303 1 1 0 0 0 +( 2580 -652 416 ) ( 2536 -584 416 ) ( 2536 -584 464 ) bricks/c_tn_m1 0 -16 303 1 1 0 0 0 +( 2536 -584 464 ) ( 2536 -584 416 ) ( 2561 -564 448 ) bricks/c_tn_m1 0 -16 303 1 1 0 0 0 +( 2561 -564 448 ) ( 2580 -652 416 ) ( 2580 -652 464 ) bricks/c_tn_m1 0 -16 303 1 1 0 0 0 +( 2536 -696 448 ) ( 2536 -672 448 ) ( 2580 -684 448 ) bricks/c_tn_m1 0 -16 303 1 1 0 0 0 +} +// brush 2286 +{ +( 2561 -564 448 ) ( 2580 -652 416 ) ( 2608 -637 448 ) bricks/c_tn_m1 0 -16 303 1 1 0 0 0 +( 2608 -637 448 ) ( 2580 -652 416 ) ( 2580 -652 464 ) bricks/c_tn_m1 0 -16 303 1 1 0 0 0 +( 2580 -652 464 ) ( 2580 -652 416 ) ( 2561 -564 448 ) bricks/c_tn_m1 0 -16 303 1 1 0 0 0 +( 2561 -696 448 ) ( 2561 -672 448 ) ( 2608 -684 448 ) bricks/c_tn_m1 0 -16 303 1 1 0 0 0 +} +// brush 2287 +{ +( 2639 -706 448 ) ( 2608 -716 416 ) ( 2624 -792 416 ) bricks/c_tn_m1 -15 2 282 1 1 0 0 0 +( 2624 -792 416 ) ( 2608 -716 416 ) ( 2608 -716 464 ) bricks/c_tn_m1 -15 2 282 1 1 0 0 0 +( 2608 -716 464 ) ( 2608 -716 416 ) ( 2639 -706 448 ) bricks/c_tn_m1 -15 2 282 1 1 0 0 0 +( 2639 -706 464 ) ( 2639 -706 448 ) ( 2624 -792 416 ) bricks/c_tn_m1 -15 2 282 1 1 0 0 0 +( 2608 -696 448 ) ( 2608 -672 448 ) ( 2639 -684 448 ) bricks/c_tn_m1 -15 2 282 1 1 0 0 0 +} +// brush 2288 +{ +( 2639 -706 448 ) ( 2624 -792 416 ) ( 2656 -789 448 ) bricks/c_tn_m1 -15 2 282 1 1 0 0 0 +( 2656 -789 448 ) ( 2624 -792 416 ) ( 2624 -792 464 ) bricks/c_tn_m1 -15 2 282 1 1 0 0 0 +( 2624 -792 464 ) ( 2624 -792 416 ) ( 2639 -706 448 ) bricks/c_tn_m1 -15 2 282 1 1 0 0 0 +( 2624 -696 448 ) ( 2624 -672 448 ) ( 2656 -684 448 ) bricks/c_tn_m1 -15 2 282 1 1 0 0 0 +} +// brush 2289 +{ +( 2462 -127 448 ) ( 2316 -64 416 ) ( 2313 -96 448 ) bricks/c_tn_m1 -36 -3 168 1 1 0 0 0 +( 2313 -96 448 ) ( 2316 -64 416 ) ( 2316 -64 464 ) bricks/c_tn_m1 -36 -3 168 1 1 0 0 0 +( 2316 -64 464 ) ( 2316 -64 416 ) ( 2462 -127 448 ) bricks/c_tn_m1 -36 -3 168 1 1 0 0 0 +( 2784 -127 448 ) ( 2728 -127 448 ) ( 2756 -64 448 ) bricks/c_tn_m1 -36 -3 168 1 1 0 0 0 +} +// brush 2290 +{ +( 2462 -127 448 ) ( 2472 -96 416 ) ( 2316 -64 416 ) bricks/c_tn_m1 -36 -3 168 1 1 0 0 0 +( 2472 -96 464 ) ( 2472 -96 416 ) ( 2462 -127 448 ) bricks/c_tn_m1 -36 -3 168 1 1 0 0 0 +( 2316 -64 416 ) ( 2472 -96 416 ) ( 2472 -96 464 ) bricks/c_tn_m1 -36 -3 168 1 1 0 0 0 +( 2462 -127 448 ) ( 2316 -64 416 ) ( 2316 -64 464 ) bricks/c_tn_m1 -36 -3 168 1 1 0 0 0 +( 2784 -127 448 ) ( 2728 -127 448 ) ( 2756 -64 448 ) bricks/c_tn_m1 -36 -3 168 1 1 0 0 0 +} +// brush 2291 +{ +( 2920 -468 416 ) ( 2840 -344 416 ) ( 2814 -365 448 ) bricks/c_tn_m1 0 15 123 1 1 0 0 0 +( 2814 -365 448 ) ( 2840 -344 416 ) ( 2840 -344 464 ) bricks/c_tn_m1 0 15 123 1 1 0 0 0 +( 2840 -344 464 ) ( 2840 -344 416 ) ( 2920 -468 416 ) bricks/c_tn_m1 0 15 123 1 1 0 0 0 +( 2920 -468 464 ) ( 2920 -468 416 ) ( 2814 -365 448 ) bricks/c_tn_m1 0 15 123 1 1 0 0 0 +( 2784 -468 448 ) ( 2728 -468 448 ) ( 2756 -344 448 ) bricks/c_tn_m1 0 15 123 1 1 0 0 0 +} +// brush 2292 +{ +( 2891 -484 448 ) ( 2920 -468 416 ) ( 2814 -365 448 ) bricks/c_tn_m1 0 15 123 1 1 0 0 0 +( 2920 -468 464 ) ( 2920 -468 416 ) ( 2891 -484 448 ) bricks/c_tn_m1 0 15 123 1 1 0 0 0 +( 2814 -365 448 ) ( 2920 -468 416 ) ( 2920 -468 464 ) bricks/c_tn_m1 0 15 123 1 1 0 0 0 +( 2784 -484 448 ) ( 2728 -484 448 ) ( 2756 -365 448 ) bricks/c_tn_m1 0 15 123 1 1 0 0 0 +} +// brush 2293 +{ +( 3008 -756 416 ) ( 2976 -600 416 ) ( 2945 -610 448 ) bricks/c_tn_m1 95 -1 102 1 1 0 0 0 +( 2945 -610 448 ) ( 2976 -600 416 ) ( 2976 -600 464 ) bricks/c_tn_m1 95 -1 102 1 1 0 0 0 +( 2976 -600 464 ) ( 2976 -600 416 ) ( 3008 -756 416 ) bricks/c_tn_m1 95 -1 102 1 1 0 0 0 +( 3008 -756 464 ) ( 3008 -756 416 ) ( 2945 -610 448 ) bricks/c_tn_m1 95 -1 102 1 1 0 0 0 +( 2784 -756 448 ) ( 2728 -756 448 ) ( 2756 -600 448 ) bricks/c_tn_m1 95 -1 102 1 1 0 0 0 +} +// brush 2294 +{ +( 2976 -759 448 ) ( 3008 -756 416 ) ( 2945 -610 448 ) bricks/c_tn_m1 95 -1 102 1 1 0 0 0 +( 3008 -756 464 ) ( 3008 -756 416 ) ( 2976 -759 448 ) bricks/c_tn_m1 95 -1 102 1 1 0 0 0 +( 2945 -610 448 ) ( 3008 -756 416 ) ( 3008 -756 464 ) bricks/c_tn_m1 95 -1 102 1 1 0 0 0 +( 2784 -759 448 ) ( 2728 -759 448 ) ( 2756 -610 448 ) bricks/c_tn_m1 95 -1 102 1 1 0 0 0 +} +// brush 2295 +{ +( 2976 -832 448 ) ( 2976 -759 448 ) ( 3008 -756 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -1456 432 ) ( 3008 -1456 448 ) ( 3008 -1104 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -756 416 ) ( 2976 -759 448 ) ( 2976 -832 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -864 448 ) ( 3016 -864 416 ) ( 2984 -864 416 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -756 448 ) ( 2976 -759 448 ) ( 3008 -756 416 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2296 +{ +( 2536 -524 240 ) ( 2498 -524 240 ) ( 2498 -584 240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2498 -584 256 ) ( 2498 -524 256 ) ( 2536 -524 256 ) bricks/c_sr_mr5 0 3 315 1 1 0 0 0 +( 2488 -536 240 ) ( 2488 -536 256 ) ( 2536 -584 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2548 -574 256 ) ( 2548 -574 240 ) ( 2536 -584 240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2548 -574 240 ) ( 2548 -574 256 ) ( 2498 -524 256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2488 -536 256 ) ( 2488 -536 240 ) ( 2498 -524 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2297 +{ +( 2992 -608 256 ) ( 2992 -736 256 ) ( 2624 -736 256 ) bricks/c_sr_mr5 0 0 282 1 1 0 0 0 +( 2624 -736 240 ) ( 2992 -736 240 ) ( 2992 -608 240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2608 -716 112 ) ( 2608 -716 272 ) ( 2624 -792 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2608 -716 272 ) ( 2608 -716 112 ) ( 2624 -712 112 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2608 -794 112 ) ( 2608 -794 128 ) ( 2624 -792 128 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2624 -712 272 ) ( 2624 -712 112 ) ( 2640 -790 112 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2298 +{ +( 2960 -452 256 ) ( 2960 -580 256 ) ( 2592 -580 256 ) bricks/c_sr_mr5 0 10 294 1 1 0 0 0 +( 2592 -580 240 ) ( 2960 -580 240 ) ( 2960 -452 240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2580 -652 112 ) ( 2580 -652 272 ) ( 2608 -716 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2594 -644 112 ) ( 2594 -644 272 ) ( 2580 -652 272 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2624 -712 272 ) ( 2624 -712 112 ) ( 2608 -716 112 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2624 -712 112 ) ( 2624 -712 272 ) ( 2594 -644 272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2299 +{ +( 2904 -320 256 ) ( 2904 -448 256 ) ( 2536 -448 256 ) bricks/c_sr_mr5 0 15 303 1 1 0 0 0 +( 2536 -448 240 ) ( 2904 -448 240 ) ( 2904 -320 240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2536 -584 112 ) ( 2536 -584 272 ) ( 2580 -652 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2548 -574 112 ) ( 2548 -574 272 ) ( 2536 -584 272 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2594 -644 272 ) ( 2594 -644 112 ) ( 2580 -652 112 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2548 -574 272 ) ( 2548 -574 112 ) ( 2594 -644 112 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2300 +{ +( 2752 -168 240 ) ( 2624 -168 240 ) ( 2624 -536 240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2624 -536 256 ) ( 2624 -168 256 ) ( 2752 -168 256 ) bricks/c_sr_mr5 0 8 327 1 1 0 0 0 +( 2488 -536 384 ) ( 2488 -536 224 ) ( 2420 -492 224 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2498 -524 384 ) ( 2498 -524 224 ) ( 2488 -536 224 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2428 -478 224 ) ( 2428 -478 384 ) ( 2420 -492 384 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2498 -524 224 ) ( 2498 -524 384 ) ( 2428 -478 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2301 +{ +( 2620 -112 240 ) ( 2492 -112 240 ) ( 2492 -480 240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2492 -480 256 ) ( 2492 -112 256 ) ( 2620 -112 256 ) bricks/c_sr_mr5 0 -11 336 1 1 0 0 0 +( 2420 -492 384 ) ( 2420 -492 224 ) ( 2356 -464 224 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2428 -478 384 ) ( 2428 -478 224 ) ( 2420 -492 224 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2360 -448 224 ) ( 2360 -448 384 ) ( 2356 -464 384 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2360 -448 384 ) ( 2360 -448 224 ) ( 2428 -478 224 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2302 +{ +( 2464 -80 240 ) ( 2336 -80 240 ) ( 2336 -448 240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2336 -448 256 ) ( 2336 -80 256 ) ( 2464 -80 256 ) bricks/c_sr_mr5 0 -7 349 1 1 0 0 0 +( 2356 -464 384 ) ( 2356 -464 224 ) ( 2280 -448 224 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2356 -464 224 ) ( 2356 -464 384 ) ( 2360 -448 384 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2278 -464 384 ) ( 2278 -464 368 ) ( 2280 -448 368 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2360 -448 224 ) ( 2360 -448 384 ) ( 2282 -432 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2303 +{ +( 2782 -234 240 ) ( 2728 -234 240 ) ( 2728 -318 240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2728 -318 256 ) ( 2728 -234 256 ) ( 2782 -234 256 ) bricks/c_sr_mr5 0 -6 135 1 1 0 0 0 +( 2840 -344 256 ) ( 2840 -344 240 ) ( 2830 -352 240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2840 -344 240 ) ( 2840 -344 256 ) ( 2728 -232 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2728 -232 240 ) ( 2728 -232 256 ) ( 2720 -242 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2776 -298 256 ) ( 2776 -298 240 ) ( 2720 -242 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2304 +{ +( 2992 -608 256 ) ( 2992 -736 256 ) ( 2624 -736 256 ) bricks/c_sr_mr5 0 6 101 1 1 0 0 0 +( 2624 -736 240 ) ( 2992 -736 240 ) ( 2992 -608 240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2962 -604 272 ) ( 2962 -604 112 ) ( 2976 -600 112 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 3008 -756 112 ) ( 3008 -756 272 ) ( 2976 -600 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2992 -758 112 ) ( 2992 -758 272 ) ( 3008 -756 272 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2962 -604 112 ) ( 2962 -604 272 ) ( 2992 -758 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2305 +{ +( 2960 -452 256 ) ( 2960 -580 256 ) ( 2592 -580 256 ) bricks/c_sr_mr5 0 -10 113 1 1 0 0 0 +( 2592 -580 240 ) ( 2960 -580 240 ) ( 2960 -452 240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2920 -468 112 ) ( 2920 -468 272 ) ( 2908 -474 272 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2920 -468 272 ) ( 2920 -468 112 ) ( 2976 -600 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2962 -604 112 ) ( 2962 -604 272 ) ( 2976 -600 272 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2908 -474 112 ) ( 2908 -474 272 ) ( 2962 -604 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2306 +{ +( 2904 -320 256 ) ( 2904 -448 256 ) ( 2536 -448 256 ) bricks/c_sr_mr5 0 12 122 1 1 0 0 0 +( 2536 -448 240 ) ( 2904 -448 240 ) ( 2904 -320 240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2830 -352 272 ) ( 2830 -352 112 ) ( 2840 -344 112 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2920 -468 112 ) ( 2920 -468 272 ) ( 2840 -344 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2908 -474 112 ) ( 2908 -474 272 ) ( 2920 -468 272 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2830 -352 112 ) ( 2830 -352 272 ) ( 2908 -474 272 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2307 +{ +( 2752 -168 240 ) ( 2624 -168 240 ) ( 2624 -536 240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2624 -536 256 ) ( 2624 -168 256 ) ( 2752 -168 256 ) bricks/c_sr_mr5 0 -13 147 1 1 0 0 0 +( 2720 -242 224 ) ( 2720 -242 384 ) ( 2728 -232 384 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2604 -152 384 ) ( 2604 -152 224 ) ( 2728 -232 224 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2598 -164 384 ) ( 2598 -164 224 ) ( 2604 -152 224 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2720 -242 384 ) ( 2720 -242 224 ) ( 2598 -164 224 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 2308 +{ +( 2620 -112 240 ) ( 2492 -112 240 ) ( 2492 -480 240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2492 -480 256 ) ( 2492 -112 256 ) ( 2620 -112 256 ) bricks/c_sr_mr5 0 17 157 1 1 0 0 0 +( 2604 -152 384 ) ( 2604 -152 224 ) ( 2598 -164 224 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2604 -152 224 ) ( 2604 -152 384 ) ( 2472 -96 384 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2468 -110 384 ) ( 2468 -110 224 ) ( 2472 -96 224 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2598 -164 384 ) ( 2598 -164 224 ) ( 2468 -110 224 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 2309 +{ +( 2464 -80 240 ) ( 2336 -80 240 ) ( 2336 -448 240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2336 -448 256 ) ( 2336 -80 256 ) ( 2464 -80 256 ) bricks/c_sr_mr5 0 5 169 1 1 0 0 0 +( 2468 -110 224 ) ( 2468 -110 384 ) ( 2472 -96 384 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2316 -64 384 ) ( 2316 -64 224 ) ( 2472 -96 224 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2314 -80 384 ) ( 2314 -80 224 ) ( 2316 -64 224 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 2468 -110 384 ) ( 2468 -110 224 ) ( 2314 -80 224 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 2310 +{ +( 2313 -96 448 ) ( 2167 -96 448 ) ( 2164 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1968 -64 448 ) ( 1616 -64 448 ) ( 1616 -64 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2164 -64 416 ) ( 2167 -96 448 ) ( 2313 -96 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2316 -64 416 ) ( 2313 -96 448 ) ( 2316 -64 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2208 -72 416 ) ( 2208 -64 416 ) ( 2208 -68 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2311 +{ +( 2200 -448 448 ) ( 2197 -416 448 ) ( 2283 -416 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2280 -448 448 ) ( 2280 -448 416 ) ( 2240 -448 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2283 -416 448 ) ( 2197 -416 448 ) ( 2200 -448 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2280 -448 448 ) ( 2283 -416 448 ) ( 2280 -448 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2208 -448 416 ) ( 2208 -416 416 ) ( 2208 -432 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2312 +{ +( 3024 -2520 224 ) ( 2608 -2520 224 ) ( 2608 -2880 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2608 -2880 240 ) ( 2608 -2520 240 ) ( 3024 -2520 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2608 -2880 240 ) ( 3024 -2880 240 ) ( 3024 -2880 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3024 -2880 240 ) ( 3024 -2520 240 ) ( 3024 -2520 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3000 -832 240 ) ( 2584 -832 240 ) ( 2584 -832 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2608 -2520 240 ) ( 2608 -2880 240 ) ( 2608 -2880 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2313 +{ +( 2891 -3228 448 ) ( 2920 -3244 416 ) ( 2976 -3112 416 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2976 -3112 416 ) ( 2920 -3244 416 ) ( 2920 -3244 464 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2891 -3424 448 ) ( 2891 -3368 448 ) ( 2976 -3396 448 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2915 -3201 448 ) ( 2926 -3206 416 ) ( 2904 -3196 416 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2947 -3145 448 ) ( 2936 -3140 416 ) ( 2958 -3150 416 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2940 -3173 448 ) ( 2926 -3206 416 ) ( 2954 -3140 416 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +} +// brush 2314 +{ +( 2891 -3228 448 ) ( 2920 -3244 416 ) ( 2976 -3112 416 ) common/li_pv_v4a 16 7 67 1 1 0 1 7000 +( 2891 -3228 448 ) ( 2976 -3112 416 ) ( 2976 -3112 464 ) common/li_pv_v4a 16 7 67 1 1 0 1 7000 +( 2891 -3424 448 ) ( 2891 -3368 448 ) ( 2976 -3396 448 ) common/li_pv_v4a 16 7 67 1 1 0 1 7000 +( 2915 -3201 448 ) ( 2926 -3206 416 ) ( 2904 -3196 416 ) common/li_pv_v4a 16 7 67 1 1 0 1 7000 +( 2947 -3145 448 ) ( 2936 -3140 416 ) ( 2958 -3150 416 ) common/li_pv_v4a 16 7 67 1 1 0 1 7000 +( 2940 -3173 448 ) ( 2954 -3140 416 ) ( 2926 -3206 416 ) common/li_pv_v4a 16 7 67 1 1 0 1 7000 +} +// brush 2315 +{ +( 2891 -3228 448 ) ( 2976 -3112 416 ) ( 2945 -3102 448 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2891 -3424 448 ) ( 2891 -3368 448 ) ( 2976 -3396 448 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2915 -3201 448 ) ( 2926 -3206 416 ) ( 2904 -3196 416 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2947 -3145 448 ) ( 2936 -3140 416 ) ( 2958 -3150 416 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2922 -3173 448 ) ( 2936 -3140 426 ) ( 2908 -3206 426 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +} +// brush 2316 +{ +( 2891 -3228 448 ) ( 2976 -3112 416 ) ( 2945 -3102 448 ) common/li_pv_v4a 16 7 67 1 1 0 1 7000 +( 2976 -3112 464 ) ( 2976 -3112 416 ) ( 2891 -3228 448 ) common/li_pv_v4a 16 7 67 1 1 0 1 7000 +( 2891 -3424 448 ) ( 2891 -3368 448 ) ( 2976 -3396 448 ) common/li_pv_v4a 16 7 67 1 1 0 1 7000 +( 2915 -3201 448 ) ( 2926 -3206 416 ) ( 2904 -3196 416 ) common/li_pv_v4a 16 7 67 1 1 0 1 7000 +( 2947 -3145 448 ) ( 2936 -3140 416 ) ( 2958 -3150 416 ) common/li_pv_v4a 16 7 67 1 1 0 1 7000 +( 2922 -3173 448 ) ( 2908 -3206 426 ) ( 2936 -3140 426 ) common/li_pv_v4a 16 7 67 1 1 0 1 7000 +} +// brush 2317 +{ +( 2891 -3228 448 ) ( 2976 -3112 416 ) ( 2945 -3102 448 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2945 -3102 448 ) ( 2976 -3112 416 ) ( 2976 -3112 464 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2976 -3112 464 ) ( 2976 -3112 416 ) ( 2891 -3228 448 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2891 -3424 448 ) ( 2891 -3368 448 ) ( 2976 -3396 448 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2947 -3145 448 ) ( 2958 -3150 416 ) ( 2936 -3140 416 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +} +// brush 2318 +{ +( 2891 -3228 448 ) ( 2920 -3244 416 ) ( 2976 -3112 416 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2976 -3112 416 ) ( 2920 -3244 416 ) ( 2920 -3244 464 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2891 -3228 448 ) ( 2976 -3112 416 ) ( 2976 -3112 464 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2891 -3424 448 ) ( 2891 -3368 448 ) ( 2976 -3396 448 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2947 -3145 448 ) ( 2958 -3150 416 ) ( 2936 -3140 416 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +} +// brush 2319 +{ +( 2891 -3228 448 ) ( 2920 -3244 416 ) ( 2976 -3112 416 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2920 -3244 464 ) ( 2920 -3244 416 ) ( 2891 -3228 448 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2976 -3112 416 ) ( 2920 -3244 416 ) ( 2920 -3244 464 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2891 -3228 448 ) ( 2976 -3112 416 ) ( 2976 -3112 464 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2891 -3424 448 ) ( 2891 -3368 448 ) ( 2976 -3396 448 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2915 -3201 448 ) ( 2904 -3196 416 ) ( 2926 -3206 416 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +} +// brush 2320 +{ +( 2891 -3228 448 ) ( 2976 -3112 416 ) ( 2945 -3102 448 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2976 -3112 464 ) ( 2976 -3112 416 ) ( 2891 -3228 448 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2891 -3424 448 ) ( 2891 -3368 448 ) ( 2976 -3396 448 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +( 2915 -3201 448 ) ( 2904 -3196 416 ) ( 2926 -3206 416 ) bricks/c_tn_m1 80 13 67 1 1 0 0 0 +} +// brush 2321 +{ +( 2462 -3585 448 ) ( 2472 -3616 416 ) ( 2588 -3531 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2588 -3531 448 ) ( 2472 -3616 416 ) ( 2472 -3616 464 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2756 -3616 448 ) ( 2728 -3531 448 ) ( 2784 -3531 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2566 -3566 416 ) ( 2556 -3544 416 ) ( 2561 -3555 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +} +// brush 2322 +{ +( 2472 -3616 416 ) ( 2604 -3560 416 ) ( 2588 -3531 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2588 -3531 448 ) ( 2604 -3560 416 ) ( 2604 -3560 464 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2604 -3560 464 ) ( 2604 -3560 416 ) ( 2472 -3616 416 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2472 -3616 464 ) ( 2472 -3616 416 ) ( 2588 -3531 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2756 -3616 448 ) ( 2728 -3531 448 ) ( 2784 -3531 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2566 -3566 416 ) ( 2556 -3544 416 ) ( 2561 -3555 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +} +// brush 2323 +{ +( 2472 -3616 416 ) ( 2604 -3560 416 ) ( 2588 -3531 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2604 -3560 464 ) ( 2604 -3560 416 ) ( 2472 -3616 416 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2472 -3616 464 ) ( 2472 -3616 416 ) ( 2588 -3531 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2756 -3616 448 ) ( 2728 -3531 448 ) ( 2784 -3531 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2500 -3576 416 ) ( 2510 -3598 416 ) ( 2505 -3587 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +} +// brush 2324 +{ +( 2462 -3585 448 ) ( 2472 -3616 416 ) ( 2588 -3531 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2472 -3616 464 ) ( 2472 -3616 416 ) ( 2462 -3585 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2588 -3531 448 ) ( 2472 -3616 416 ) ( 2472 -3616 464 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2756 -3616 448 ) ( 2728 -3531 448 ) ( 2784 -3531 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2500 -3576 416 ) ( 2510 -3598 416 ) ( 2505 -3587 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +} +// brush 2325 +{ +( 2462 -3585 448 ) ( 2472 -3616 416 ) ( 2588 -3531 448 ) common/li_pv_v4a -8 3 23 1 1 0 1 7000 +( 2588 -3531 448 ) ( 2472 -3616 416 ) ( 2472 -3616 464 ) common/li_pv_v4a -8 3 23 1 1 0 1 7000 +( 2756 -3616 448 ) ( 2728 -3531 448 ) ( 2784 -3531 448 ) common/li_pv_v4a -8 3 23 1 1 0 1 7000 +( 2556 -3544 416 ) ( 2566 -3566 416 ) ( 2561 -3555 448 ) common/li_pv_v4a -8 3 23 1 1 0 1 7000 +( 2510 -3598 416 ) ( 2500 -3576 416 ) ( 2505 -3587 448 ) common/li_pv_v4a -8 3 23 1 1 0 1 7000 +( 2500 -3576 426 ) ( 2566 -3548 426 ) ( 2533 -3562 448 ) common/li_pv_v4a -8 3 23 1 1 0 1 7000 +} +// brush 2326 +{ +( 2462 -3585 448 ) ( 2472 -3616 416 ) ( 2588 -3531 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2756 -3616 448 ) ( 2728 -3531 448 ) ( 2784 -3531 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2556 -3544 416 ) ( 2566 -3566 416 ) ( 2561 -3555 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2510 -3598 416 ) ( 2500 -3576 416 ) ( 2505 -3587 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2566 -3548 426 ) ( 2500 -3576 426 ) ( 2533 -3562 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +} +// brush 2327 +{ +( 2472 -3616 416 ) ( 2604 -3560 416 ) ( 2588 -3531 448 ) common/li_pv_v4a -8 3 23 1 1 0 1 7000 +( 2472 -3616 464 ) ( 2472 -3616 416 ) ( 2588 -3531 448 ) common/li_pv_v4a -8 3 23 1 1 0 1 7000 +( 2756 -3616 448 ) ( 2728 -3531 448 ) ( 2784 -3531 448 ) common/li_pv_v4a -8 3 23 1 1 0 1 7000 +( 2556 -3544 416 ) ( 2566 -3566 416 ) ( 2561 -3555 448 ) common/li_pv_v4a -8 3 23 1 1 0 1 7000 +( 2510 -3598 416 ) ( 2500 -3576 416 ) ( 2505 -3587 448 ) common/li_pv_v4a -8 3 23 1 1 0 1 7000 +( 2566 -3566 416 ) ( 2500 -3594 416 ) ( 2533 -3580 448 ) common/li_pv_v4a -8 3 23 1 1 0 1 7000 +} +// brush 2328 +{ +( 2472 -3616 416 ) ( 2604 -3560 416 ) ( 2588 -3531 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2604 -3560 464 ) ( 2604 -3560 416 ) ( 2472 -3616 416 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2756 -3616 448 ) ( 2728 -3531 448 ) ( 2784 -3531 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2556 -3544 416 ) ( 2566 -3566 416 ) ( 2561 -3555 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2510 -3598 416 ) ( 2500 -3576 416 ) ( 2505 -3587 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +( 2500 -3594 416 ) ( 2566 -3566 416 ) ( 2533 -3580 448 ) bricks/c_tn_m1 -190 -6 23 1 1 0 0 0 +} +// brush 2329 +{ +( 2472 -3616 160 ) ( 2604 -3560 160 ) ( 2588 -3531 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2604 -3560 208 ) ( 2604 -3560 160 ) ( 2472 -3616 160 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2756 -3616 192 ) ( 2728 -3531 192 ) ( 2784 -3531 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2556 -3544 160 ) ( 2566 -3566 160 ) ( 2561 -3555 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2510 -3598 160 ) ( 2500 -3576 160 ) ( 2505 -3587 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2500 -3594 160 ) ( 2566 -3566 160 ) ( 2533 -3580 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +} +// brush 2330 +{ +( 2472 -3616 160 ) ( 2604 -3560 160 ) ( 2588 -3531 192 ) common/li_pv_v4a -9 3 23 1 1 0 1 7000 +( 2472 -3616 208 ) ( 2472 -3616 160 ) ( 2588 -3531 192 ) common/li_pv_v4a -9 3 23 1 1 0 1 7000 +( 2756 -3616 192 ) ( 2728 -3531 192 ) ( 2784 -3531 192 ) common/li_pv_v4a -9 3 23 1 1 0 1 7000 +( 2556 -3544 160 ) ( 2566 -3566 160 ) ( 2561 -3555 192 ) common/li_pv_v4a -9 3 23 1 1 0 1 7000 +( 2510 -3598 160 ) ( 2500 -3576 160 ) ( 2505 -3587 192 ) common/li_pv_v4a -9 3 23 1 1 0 1 7000 +( 2566 -3566 160 ) ( 2500 -3594 160 ) ( 2533 -3580 192 ) common/li_pv_v4a -9 3 23 1 1 0 1 7000 +} +// brush 2331 +{ +( 2462 -3585 192 ) ( 2472 -3616 160 ) ( 2588 -3531 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2756 -3616 192 ) ( 2728 -3531 192 ) ( 2784 -3531 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2556 -3544 160 ) ( 2566 -3566 160 ) ( 2561 -3555 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2510 -3598 160 ) ( 2500 -3576 160 ) ( 2505 -3587 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2566 -3548 170 ) ( 2500 -3576 170 ) ( 2533 -3562 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +} +// brush 2332 +{ +( 2462 -3585 192 ) ( 2472 -3616 160 ) ( 2588 -3531 192 ) common/li_pv_v4a -9 3 23 1 1 0 1 7000 +( 2588 -3531 192 ) ( 2472 -3616 160 ) ( 2472 -3616 208 ) common/li_pv_v4a -9 3 23 1 1 0 1 7000 +( 2756 -3616 192 ) ( 2728 -3531 192 ) ( 2784 -3531 192 ) common/li_pv_v4a -9 3 23 1 1 0 1 7000 +( 2556 -3544 160 ) ( 2566 -3566 160 ) ( 2561 -3555 192 ) common/li_pv_v4a -9 3 23 1 1 0 1 7000 +( 2510 -3598 160 ) ( 2500 -3576 160 ) ( 2505 -3587 192 ) common/li_pv_v4a -9 3 23 1 1 0 1 7000 +( 2500 -3576 170 ) ( 2566 -3548 170 ) ( 2533 -3562 192 ) common/li_pv_v4a -9 3 23 1 1 0 1 7000 +} +// brush 2333 +{ +( 2462 -3585 192 ) ( 2472 -3616 160 ) ( 2588 -3531 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2472 -3616 208 ) ( 2472 -3616 160 ) ( 2462 -3585 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2588 -3531 192 ) ( 2472 -3616 160 ) ( 2472 -3616 208 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2756 -3616 192 ) ( 2728 -3531 192 ) ( 2784 -3531 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2500 -3576 160 ) ( 2510 -3598 160 ) ( 2505 -3587 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +} +// brush 2334 +{ +( 2472 -3616 160 ) ( 2604 -3560 160 ) ( 2588 -3531 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2604 -3560 208 ) ( 2604 -3560 160 ) ( 2472 -3616 160 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2472 -3616 208 ) ( 2472 -3616 160 ) ( 2588 -3531 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2756 -3616 192 ) ( 2728 -3531 192 ) ( 2784 -3531 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2500 -3576 160 ) ( 2510 -3598 160 ) ( 2505 -3587 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +} +// brush 2335 +{ +( 2472 -3616 160 ) ( 2604 -3560 160 ) ( 2588 -3531 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2588 -3531 192 ) ( 2604 -3560 160 ) ( 2604 -3560 208 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2604 -3560 208 ) ( 2604 -3560 160 ) ( 2472 -3616 160 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2472 -3616 208 ) ( 2472 -3616 160 ) ( 2588 -3531 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2756 -3616 192 ) ( 2728 -3531 192 ) ( 2784 -3531 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2566 -3566 160 ) ( 2556 -3544 160 ) ( 2561 -3555 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +} +// brush 2336 +{ +( 2462 -3585 192 ) ( 2472 -3616 160 ) ( 2588 -3531 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2588 -3531 192 ) ( 2472 -3616 160 ) ( 2472 -3616 208 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2756 -3616 192 ) ( 2728 -3531 192 ) ( 2784 -3531 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +( 2566 -3566 160 ) ( 2556 -3544 160 ) ( 2561 -3555 192 ) bricks/c_tn_m1 66 -5 23 1 1 0 0 0 +} +// brush 2337 +{ +( 2891 -3228 192 ) ( 2976 -3112 160 ) ( 2945 -3102 192 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2976 -3112 208 ) ( 2976 -3112 160 ) ( 2891 -3228 192 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2891 -3424 192 ) ( 2891 -3368 192 ) ( 2976 -3396 192 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2915 -3201 192 ) ( 2904 -3196 160 ) ( 2926 -3206 160 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +} +// brush 2338 +{ +( 2891 -3228 192 ) ( 2920 -3244 160 ) ( 2976 -3112 160 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2920 -3244 208 ) ( 2920 -3244 160 ) ( 2891 -3228 192 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2976 -3112 160 ) ( 2920 -3244 160 ) ( 2920 -3244 208 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2891 -3228 192 ) ( 2976 -3112 160 ) ( 2976 -3112 208 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2891 -3424 192 ) ( 2891 -3368 192 ) ( 2976 -3396 192 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2915 -3201 192 ) ( 2904 -3196 160 ) ( 2926 -3206 160 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +} +// brush 2339 +{ +( 2891 -3228 192 ) ( 2920 -3244 160 ) ( 2976 -3112 160 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2976 -3112 160 ) ( 2920 -3244 160 ) ( 2920 -3244 208 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2891 -3228 192 ) ( 2976 -3112 160 ) ( 2976 -3112 208 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2891 -3424 192 ) ( 2891 -3368 192 ) ( 2976 -3396 192 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2947 -3145 192 ) ( 2958 -3150 160 ) ( 2936 -3140 160 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +} +// brush 2340 +{ +( 2891 -3228 192 ) ( 2976 -3112 160 ) ( 2945 -3102 192 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2945 -3102 192 ) ( 2976 -3112 160 ) ( 2976 -3112 208 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2976 -3112 208 ) ( 2976 -3112 160 ) ( 2891 -3228 192 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2891 -3424 192 ) ( 2891 -3368 192 ) ( 2976 -3396 192 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2947 -3145 192 ) ( 2958 -3150 160 ) ( 2936 -3140 160 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +} +// brush 2341 +{ +( 2891 -3228 192 ) ( 2976 -3112 160 ) ( 2945 -3102 192 ) common/li_pv_v4a 16 6 67 1 1 0 1 7000 +( 2976 -3112 208 ) ( 2976 -3112 160 ) ( 2891 -3228 192 ) common/li_pv_v4a 16 6 67 1 1 0 1 7000 +( 2891 -3424 192 ) ( 2891 -3368 192 ) ( 2976 -3396 192 ) common/li_pv_v4a 16 6 67 1 1 0 1 7000 +( 2915 -3201 192 ) ( 2926 -3206 160 ) ( 2904 -3196 160 ) common/li_pv_v4a 16 6 67 1 1 0 1 7000 +( 2947 -3145 192 ) ( 2936 -3140 160 ) ( 2958 -3150 160 ) common/li_pv_v4a 16 6 67 1 1 0 1 7000 +( 2922 -3173 192 ) ( 2908 -3206 170 ) ( 2936 -3140 170 ) common/li_pv_v4a 16 6 67 1 1 0 1 7000 +} +// brush 2342 +{ +( 2891 -3228 192 ) ( 2976 -3112 160 ) ( 2945 -3102 192 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2891 -3424 192 ) ( 2891 -3368 192 ) ( 2976 -3396 192 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2915 -3201 192 ) ( 2926 -3206 160 ) ( 2904 -3196 160 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2947 -3145 192 ) ( 2936 -3140 160 ) ( 2958 -3150 160 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2922 -3173 192 ) ( 2936 -3140 170 ) ( 2908 -3206 170 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +} +// brush 2343 +{ +( 2891 -3228 192 ) ( 2920 -3244 160 ) ( 2976 -3112 160 ) common/li_pv_v4a 16 6 67 1 1 0 1 7000 +( 2891 -3228 192 ) ( 2976 -3112 160 ) ( 2976 -3112 208 ) common/li_pv_v4a 16 6 67 1 1 0 1 7000 +( 2891 -3424 192 ) ( 2891 -3368 192 ) ( 2976 -3396 192 ) common/li_pv_v4a 16 6 67 1 1 0 1 7000 +( 2915 -3201 192 ) ( 2926 -3206 160 ) ( 2904 -3196 160 ) common/li_pv_v4a 16 6 67 1 1 0 1 7000 +( 2947 -3145 192 ) ( 2936 -3140 160 ) ( 2958 -3150 160 ) common/li_pv_v4a 16 6 67 1 1 0 1 7000 +( 2940 -3173 192 ) ( 2954 -3140 160 ) ( 2926 -3206 160 ) common/li_pv_v4a 16 6 67 1 1 0 1 7000 +} +// brush 2344 +{ +( 2891 -3228 192 ) ( 2920 -3244 160 ) ( 2976 -3112 160 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2976 -3112 160 ) ( 2920 -3244 160 ) ( 2920 -3244 208 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2891 -3424 192 ) ( 2891 -3368 192 ) ( 2976 -3396 192 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2915 -3201 192 ) ( 2926 -3206 160 ) ( 2904 -3196 160 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2947 -3145 192 ) ( 2936 -3140 160 ) ( 2958 -3150 160 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +( 2940 -3173 192 ) ( 2926 -3206 160 ) ( 2954 -3140 160 ) bricks/c_tn_m1 -127 14 67 1 1 0 0 0 +} +// brush 2345 +{ +( 2976 -2432 192 ) ( 2976 -2359 192 ) ( 3008 -2356 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -3056 176 ) ( 3008 -3056 192 ) ( 3008 -2704 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -2356 160 ) ( 2976 -2359 192 ) ( 2976 -2432 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -2464 160 ) ( 3000 -2464 160 ) ( 2988 -2464 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -2528 160 ) ( 2976 -2528 160 ) ( 2988 -2528 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -2488 160 ) ( 3000 -2464 160 ) ( 3000 -2476 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2346 +{ +( 2976 -2432 192 ) ( 2976 -2359 192 ) ( 3008 -2356 192 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 3008 -2356 160 ) ( 2976 -2359 192 ) ( 2976 -2432 192 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2976 -2464 160 ) ( 3000 -2464 160 ) ( 2988 -2464 192 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 3000 -2528 160 ) ( 2976 -2528 160 ) ( 2988 -2528 192 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2984 -2480 160 ) ( 2984 -2472 160 ) ( 2984 -2476 192 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 3000 -2464 160 ) ( 3000 -2488 160 ) ( 3000 -2476 192 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +} +// brush 2347 +{ +( 2976 -2432 192 ) ( 2976 -2359 192 ) ( 3008 -2356 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -2356 160 ) ( 2976 -2359 192 ) ( 2976 -2432 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -2464 160 ) ( 3000 -2464 160 ) ( 2988 -2464 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -2528 160 ) ( 2976 -2528 160 ) ( 2988 -2528 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2984 -2472 160 ) ( 2984 -2480 160 ) ( 2984 -2476 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2348 +{ +( 2976 -2432 192 ) ( 2976 -2359 192 ) ( 3008 -2356 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -3056 176 ) ( 3008 -3056 192 ) ( 3008 -2704 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -2356 160 ) ( 2976 -2359 192 ) ( 2976 -2432 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -2848 192 ) ( 3016 -2848 160 ) ( 2984 -2848 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -2784 160 ) ( 3000 -2784 160 ) ( 2988 -2784 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -2800 160 ) ( 3000 -2784 160 ) ( 3000 -2792 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2349 +{ +( 2976 -2432 192 ) ( 2976 -2359 192 ) ( 3008 -2356 192 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 3008 -2356 160 ) ( 2976 -2359 192 ) ( 2976 -2432 192 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 3000 -2848 192 ) ( 3016 -2848 160 ) ( 2984 -2848 160 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2976 -2784 160 ) ( 3000 -2784 160 ) ( 2988 -2784 192 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 2984 -2808 160 ) ( 2984 -2800 160 ) ( 2984 -2804 192 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +( 3000 -2784 160 ) ( 3000 -2800 160 ) ( 3000 -2792 192 ) common/li_pv_v4a -32 8 90 1 1 0 1 7000 +} +// brush 2350 +{ +( 2976 -2432 192 ) ( 2976 -2359 192 ) ( 3008 -2356 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -2356 160 ) ( 2976 -2359 192 ) ( 2976 -2432 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -2848 192 ) ( 3016 -2848 160 ) ( 2984 -2848 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -2784 160 ) ( 3000 -2784 160 ) ( 2988 -2784 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2984 -2800 160 ) ( 2984 -2808 160 ) ( 2984 -2804 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2351 +{ +( 2976 -2432 192 ) ( 2976 -2359 192 ) ( 3008 -2356 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -3056 176 ) ( 3008 -3056 192 ) ( 3008 -2704 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -2356 160 ) ( 2976 -2359 192 ) ( 2976 -2432 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -2784 160 ) ( 2976 -2784 160 ) ( 2988 -2784 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 2976 -2528 160 ) ( 3000 -2528 160 ) ( 2988 -2528 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2352 +{ +( 2624 -2840 192 ) ( 2656 -2837 192 ) ( 2656 -2923 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -2923 192 ) ( 2656 -2837 192 ) ( 2624 -2840 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2784 160 ) ( 2656 -2784 160 ) ( 2640 -2784 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2640 -2848 160 ) ( 2624 -2848 160 ) ( 2632 -2848 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2648 -2800 168 ) ( 2648 -2784 168 ) ( 2648 -2792 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2353 +{ +( 2624 -2840 192 ) ( 2656 -2837 192 ) ( 2656 -2923 192 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2656 -2923 192 ) ( 2656 -2837 192 ) ( 2624 -2840 160 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2624 -2784 160 ) ( 2656 -2784 160 ) ( 2640 -2784 192 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2640 -2848 160 ) ( 2624 -2848 160 ) ( 2632 -2848 192 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2632 -2800 160 ) ( 2632 -2792 160 ) ( 2632 -2796 192 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2648 -2784 168 ) ( 2648 -2800 168 ) ( 2648 -2792 192 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 2354 +{ +( 2624 -2840 192 ) ( 2656 -2837 192 ) ( 2656 -2923 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2920 192 ) ( 2624 -2920 160 ) ( 2624 -2880 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -2923 192 ) ( 2656 -2837 192 ) ( 2624 -2840 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2784 160 ) ( 2656 -2784 160 ) ( 2640 -2784 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2640 -2848 160 ) ( 2624 -2848 160 ) ( 2632 -2848 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2632 -2792 160 ) ( 2632 -2800 160 ) ( 2632 -2796 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2355 +{ +( 2624 -2840 192 ) ( 2656 -2837 192 ) ( 2656 -2923 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2920 192 ) ( 2624 -2920 160 ) ( 2624 -2880 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -2923 192 ) ( 2656 -2837 192 ) ( 2624 -2840 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2920 192 ) ( 2656 -2923 192 ) ( 2624 -2920 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2848 160 ) ( 2640 -2848 160 ) ( 2632 -2848 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2356 +{ +( 2624 -2392 192 ) ( 2656 -2389 192 ) ( 2656 -2624 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -2624 192 ) ( 2656 -2389 192 ) ( 2624 -2392 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2648 -2528 160 ) ( 2616 -2528 160 ) ( 2632 -2528 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2464 160 ) ( 2648 -2464 160 ) ( 2636 -2464 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2648 -2480 168 ) ( 2648 -2464 168 ) ( 2648 -2472 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2357 +{ +( 2624 -2392 192 ) ( 2656 -2389 192 ) ( 2656 -2624 192 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2656 -2624 192 ) ( 2656 -2389 192 ) ( 2624 -2392 160 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2648 -2528 160 ) ( 2616 -2528 160 ) ( 2632 -2528 192 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2624 -2464 160 ) ( 2648 -2464 160 ) ( 2636 -2464 192 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2632 -2480 160 ) ( 2632 -2464 160 ) ( 2632 -2472 192 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( 2648 -2464 168 ) ( 2648 -2480 168 ) ( 2648 -2472 192 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 2358 +{ +( 2624 -2392 192 ) ( 2656 -2389 192 ) ( 2656 -2624 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2248 160 ) ( 2624 -2248 192 ) ( 2624 -2504 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -2624 192 ) ( 2656 -2389 192 ) ( 2624 -2392 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2648 -2528 160 ) ( 2616 -2528 160 ) ( 2632 -2528 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2464 160 ) ( 2648 -2464 160 ) ( 2636 -2464 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2632 -2464 160 ) ( 2632 -2480 160 ) ( 2632 -2472 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2359 +{ +( 2624 -2392 192 ) ( 2656 -2389 192 ) ( 2656 -2624 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2248 160 ) ( 2624 -2248 192 ) ( 2624 -2504 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -2624 192 ) ( 2656 -2389 192 ) ( 2624 -2392 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2392 160 ) ( 2656 -2389 192 ) ( 2624 -2392 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2648 -2464 160 ) ( 2624 -2464 160 ) ( 2636 -2464 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2360 +{ +( 1877 -2112 192 ) ( 1892 -2140 160 ) ( 1956 -2112 160 ) bricks/c_tn_m1 -2 -17 24 1 1 0 0 0 +( 1956 -2112 160 ) ( 1892 -2140 160 ) ( 1892 -2140 208 ) bricks/c_tn_m1 -21 -5 24 1 1 0 0 0 +( 1892 -2140 208 ) ( 1892 -2140 160 ) ( 1877 -2112 192 ) bricks/c_tn_m1 43 23 24 1 1 0 0 0 +( 1877 -2112 192 ) ( 1956 -2112 160 ) ( 1956 -2112 208 ) bricks/c_tn_m1 -21 -5 24 1 1 0 0 0 +( 1877 -2332 192 ) ( 1956 -2320 192 ) ( 1956 -2344 192 ) bricks/c_tn_m1 -2 -17 24 1 1 0 0 0 +} +// brush 2361 +{ +( 1877 -2112 192 ) ( 1956 -2112 160 ) ( 1946 -2081 192 ) bricks/c_tn_m1 -2 -17 24 1 1 0 0 0 +( 1946 -2081 192 ) ( 1956 -2112 160 ) ( 1956 -2112 208 ) bricks/c_tn_m1 43 23 24 1 1 0 0 0 +( 1956 -2112 208 ) ( 1956 -2112 160 ) ( 1877 -2112 192 ) bricks/c_tn_m1 -21 -5 24 1 1 0 0 0 +( 1877 -2332 192 ) ( 1956 -2320 192 ) ( 1956 -2344 192 ) bricks/c_tn_m1 -2 -17 24 1 1 0 0 0 +} +// brush 2362 +{ +( 2976 -2200 160 ) ( 2920 -2068 160 ) ( 2891 -2084 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2920 -2068 208 ) ( 2920 -2068 160 ) ( 2976 -2200 160 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2976 -1916 192 ) ( 2891 -1944 192 ) ( 2891 -1888 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2904 -2116 160 ) ( 2926 -2106 160 ) ( 2915 -2111 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2958 -2162 160 ) ( 2936 -2172 160 ) ( 2947 -2167 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2954 -2172 160 ) ( 2926 -2106 160 ) ( 2940 -2139 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +} +// brush 2363 +{ +( 2976 -2200 160 ) ( 2920 -2068 160 ) ( 2891 -2084 192 ) common/li_pv_v4a 11 2 113 1 1 0 1 7000 +( 2976 -2200 208 ) ( 2976 -2200 160 ) ( 2891 -2084 192 ) common/li_pv_v4a 11 2 113 1 1 0 1 7000 +( 2976 -1916 192 ) ( 2891 -1944 192 ) ( 2891 -1888 192 ) common/li_pv_v4a 11 2 113 1 1 0 1 7000 +( 2904 -2116 160 ) ( 2926 -2106 160 ) ( 2915 -2111 192 ) common/li_pv_v4a 11 2 113 1 1 0 1 7000 +( 2958 -2162 160 ) ( 2936 -2172 160 ) ( 2947 -2167 192 ) common/li_pv_v4a 11 2 113 1 1 0 1 7000 +( 2926 -2106 160 ) ( 2954 -2172 160 ) ( 2940 -2139 192 ) common/li_pv_v4a 11 2 113 1 1 0 1 7000 +} +// brush 2364 +{ +( 2945 -2210 192 ) ( 2976 -2200 160 ) ( 2891 -2084 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2976 -1916 192 ) ( 2891 -1944 192 ) ( 2891 -1888 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2904 -2116 160 ) ( 2926 -2106 160 ) ( 2915 -2111 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2958 -2162 160 ) ( 2936 -2172 160 ) ( 2947 -2167 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2908 -2106 170 ) ( 2936 -2172 170 ) ( 2922 -2139 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +} +// brush 2365 +{ +( 2945 -2210 192 ) ( 2976 -2200 160 ) ( 2891 -2084 192 ) common/li_pv_v4a 11 2 113 1 1 0 1 7000 +( 2891 -2084 192 ) ( 2976 -2200 160 ) ( 2976 -2200 208 ) common/li_pv_v4a 11 2 113 1 1 0 1 7000 +( 2976 -1916 192 ) ( 2891 -1944 192 ) ( 2891 -1888 192 ) common/li_pv_v4a 11 2 113 1 1 0 1 7000 +( 2904 -2116 160 ) ( 2926 -2106 160 ) ( 2915 -2111 192 ) common/li_pv_v4a 11 2 113 1 1 0 1 7000 +( 2958 -2162 160 ) ( 2936 -2172 160 ) ( 2947 -2167 192 ) common/li_pv_v4a 11 2 113 1 1 0 1 7000 +( 2936 -2172 170 ) ( 2908 -2106 170 ) ( 2922 -2139 192 ) common/li_pv_v4a 11 2 113 1 1 0 1 7000 +} +// brush 2366 +{ +( 2945 -2210 192 ) ( 2976 -2200 160 ) ( 2891 -2084 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2976 -2200 208 ) ( 2976 -2200 160 ) ( 2945 -2210 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2891 -2084 192 ) ( 2976 -2200 160 ) ( 2976 -2200 208 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2976 -1916 192 ) ( 2891 -1944 192 ) ( 2891 -1888 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2936 -2172 160 ) ( 2958 -2162 160 ) ( 2947 -2167 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +} +// brush 2367 +{ +( 2976 -2200 160 ) ( 2920 -2068 160 ) ( 2891 -2084 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2920 -2068 208 ) ( 2920 -2068 160 ) ( 2976 -2200 160 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2976 -2200 208 ) ( 2976 -2200 160 ) ( 2891 -2084 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2976 -1916 192 ) ( 2891 -1944 192 ) ( 2891 -1888 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2936 -2172 160 ) ( 2958 -2162 160 ) ( 2947 -2167 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +} +// brush 2368 +{ +( 2976 -2200 160 ) ( 2920 -2068 160 ) ( 2891 -2084 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2891 -2084 192 ) ( 2920 -2068 160 ) ( 2920 -2068 208 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2920 -2068 208 ) ( 2920 -2068 160 ) ( 2976 -2200 160 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2976 -2200 208 ) ( 2976 -2200 160 ) ( 2891 -2084 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2976 -1916 192 ) ( 2891 -1944 192 ) ( 2891 -1888 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2926 -2106 160 ) ( 2904 -2116 160 ) ( 2915 -2111 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +} +// brush 2369 +{ +( 2945 -2210 192 ) ( 2976 -2200 160 ) ( 2891 -2084 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2891 -2084 192 ) ( 2976 -2200 160 ) ( 2976 -2200 208 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2976 -1916 192 ) ( 2891 -1944 192 ) ( 2891 -1888 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +( 2926 -2106 160 ) ( 2904 -2116 160 ) ( 2915 -2111 192 ) bricks/c_tn_m1 -48 9 113 1 1 0 0 0 +} +// brush 2370 +{ +( 2876 -1908 160 ) ( 2764 -1796 160 ) ( 2850 -1929 192 ) bricks/c_tn_m1 1 -22 135 1 1 0 0 0 +( 2876 -1908 208 ) ( 2876 -1908 160 ) ( 2850 -1929 192 ) bricks/c_tn_m1 26 2 135 1 1 0 0 0 +( 2764 -1796 208 ) ( 2764 -1796 160 ) ( 2876 -1908 160 ) bricks/c_tn_m1 26 2 135 1 1 0 0 0 +( 2850 -1929 192 ) ( 2764 -1796 160 ) ( 2764 -1796 208 ) bricks/c_tn_m1 26 2 135 1 1 0 0 0 +( 2820 -1929 192 ) ( 2764 -1929 192 ) ( 2792 -1796 192 ) bricks/c_tn_m1 1 -22 135 1 1 0 0 0 +} +// brush 2371 +{ +( 2850 -1929 192 ) ( 2764 -1796 160 ) ( 2743 -1822 192 ) bricks/c_tn_m1 1 -22 135 1 1 0 0 0 +( 2743 -1822 192 ) ( 2764 -1796 160 ) ( 2764 -1796 208 ) bricks/c_tn_m1 26 2 135 1 1 0 0 0 +( 2764 -1796 208 ) ( 2764 -1796 160 ) ( 2850 -1929 192 ) bricks/c_tn_m1 26 2 135 1 1 0 0 0 +( 2820 -1929 192 ) ( 2764 -1929 192 ) ( 2792 -1796 192 ) bricks/c_tn_m1 1 -22 135 1 1 0 0 0 +} +// brush 2372 +{ +( 2588 -1781 192 ) ( 2472 -1696 160 ) ( 2462 -1727 192 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2472 -1696 208 ) ( 2472 -1696 160 ) ( 2588 -1781 192 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2784 -1781 192 ) ( 2728 -1781 192 ) ( 2756 -1696 192 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2561 -1757 192 ) ( 2556 -1768 160 ) ( 2566 -1746 160 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +} +// brush 2373 +{ +( 2588 -1781 192 ) ( 2604 -1752 160 ) ( 2472 -1696 160 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2604 -1752 208 ) ( 2604 -1752 160 ) ( 2588 -1781 192 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2472 -1696 160 ) ( 2604 -1752 160 ) ( 2604 -1752 208 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2588 -1781 192 ) ( 2472 -1696 160 ) ( 2472 -1696 208 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2784 -1781 192 ) ( 2728 -1781 192 ) ( 2756 -1696 192 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2561 -1757 192 ) ( 2556 -1768 160 ) ( 2566 -1746 160 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +} +// brush 2374 +{ +( 2588 -1781 192 ) ( 2604 -1752 160 ) ( 2472 -1696 160 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2472 -1696 160 ) ( 2604 -1752 160 ) ( 2604 -1752 208 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2588 -1781 192 ) ( 2472 -1696 160 ) ( 2472 -1696 208 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2784 -1781 192 ) ( 2728 -1781 192 ) ( 2756 -1696 192 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2505 -1725 192 ) ( 2510 -1714 160 ) ( 2500 -1736 160 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +} +// brush 2375 +{ +( 2588 -1781 192 ) ( 2472 -1696 160 ) ( 2462 -1727 192 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2462 -1727 192 ) ( 2472 -1696 160 ) ( 2472 -1696 208 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2472 -1696 208 ) ( 2472 -1696 160 ) ( 2588 -1781 192 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2784 -1781 192 ) ( 2728 -1781 192 ) ( 2756 -1696 192 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2505 -1725 192 ) ( 2510 -1714 160 ) ( 2500 -1736 160 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +} +// brush 2376 +{ +( 2588 -1781 192 ) ( 2472 -1696 160 ) ( 2462 -1727 192 ) common/li_pv_v4a -28 -3 157 1 1 0 1 7000 +( 2472 -1696 208 ) ( 2472 -1696 160 ) ( 2588 -1781 192 ) common/li_pv_v4a -28 -3 157 1 1 0 1 7000 +( 2784 -1781 192 ) ( 2728 -1781 192 ) ( 2756 -1696 192 ) common/li_pv_v4a -28 -3 157 1 1 0 1 7000 +( 2561 -1757 192 ) ( 2566 -1746 160 ) ( 2556 -1768 160 ) common/li_pv_v4a -28 -3 157 1 1 0 1 7000 +( 2505 -1725 192 ) ( 2500 -1736 160 ) ( 2510 -1714 160 ) common/li_pv_v4a -28 -3 157 1 1 0 1 7000 +( 2533 -1750 192 ) ( 2566 -1764 170 ) ( 2500 -1736 170 ) common/li_pv_v4a -28 -3 157 1 1 0 1 7000 +} +// brush 2377 +{ +( 2588 -1781 192 ) ( 2472 -1696 160 ) ( 2462 -1727 192 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2784 -1781 192 ) ( 2728 -1781 192 ) ( 2756 -1696 192 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2561 -1757 192 ) ( 2566 -1746 160 ) ( 2556 -1768 160 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2505 -1725 192 ) ( 2500 -1736 160 ) ( 2510 -1714 160 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2533 -1750 192 ) ( 2500 -1736 170 ) ( 2566 -1764 170 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +} +// brush 2378 +{ +( 2588 -1781 192 ) ( 2604 -1752 160 ) ( 2472 -1696 160 ) common/li_pv_v4a -28 -3 157 1 1 0 1 7000 +( 2588 -1781 192 ) ( 2472 -1696 160 ) ( 2472 -1696 208 ) common/li_pv_v4a -28 -3 157 1 1 0 1 7000 +( 2784 -1781 192 ) ( 2728 -1781 192 ) ( 2756 -1696 192 ) common/li_pv_v4a -28 -3 157 1 1 0 1 7000 +( 2561 -1757 192 ) ( 2566 -1746 160 ) ( 2556 -1768 160 ) common/li_pv_v4a -28 -3 157 1 1 0 1 7000 +( 2505 -1725 192 ) ( 2500 -1736 160 ) ( 2510 -1714 160 ) common/li_pv_v4a -28 -3 157 1 1 0 1 7000 +( 2533 -1732 192 ) ( 2500 -1718 160 ) ( 2566 -1746 160 ) common/li_pv_v4a -28 -3 157 1 1 0 1 7000 +} +// brush 2379 +{ +( 2588 -1781 192 ) ( 2604 -1752 160 ) ( 2472 -1696 160 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2472 -1696 160 ) ( 2604 -1752 160 ) ( 2604 -1752 208 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2784 -1781 192 ) ( 2728 -1781 192 ) ( 2756 -1696 192 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2561 -1757 192 ) ( 2566 -1746 160 ) ( 2556 -1768 160 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2505 -1725 192 ) ( 2500 -1736 160 ) ( 2510 -1714 160 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +( 2533 -1732 192 ) ( 2566 -1746 160 ) ( 2500 -1718 160 ) bricks/c_tn_m1 -38 -12 157 1 1 0 0 0 +} +// brush 2380 +{ +( 1816 -1696 160 ) ( 1684 -1752 160 ) ( 1700 -1781 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1684 -1752 208 ) ( 1684 -1752 160 ) ( 1816 -1696 160 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1532 -1696 192 ) ( 1560 -1781 192 ) ( 1504 -1781 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1732 -1768 160 ) ( 1722 -1746 160 ) ( 1727 -1757 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1778 -1714 160 ) ( 1788 -1736 160 ) ( 1783 -1725 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1788 -1718 160 ) ( 1722 -1746 160 ) ( 1755 -1732 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +} +// brush 2381 +{ +( 1816 -1696 160 ) ( 1684 -1752 160 ) ( 1700 -1781 192 ) common/li_pv_v4a 7 -8 203 1 1 0 1 7000 +( 1816 -1696 208 ) ( 1816 -1696 160 ) ( 1700 -1781 192 ) common/li_pv_v4a 7 -8 203 1 1 0 1 7000 +( 1532 -1696 192 ) ( 1560 -1781 192 ) ( 1504 -1781 192 ) common/li_pv_v4a 7 -8 203 1 1 0 1 7000 +( 1732 -1768 160 ) ( 1722 -1746 160 ) ( 1727 -1757 192 ) common/li_pv_v4a 7 -8 203 1 1 0 1 7000 +( 1778 -1714 160 ) ( 1788 -1736 160 ) ( 1783 -1725 192 ) common/li_pv_v4a 7 -8 203 1 1 0 1 7000 +( 1722 -1746 160 ) ( 1788 -1718 160 ) ( 1755 -1732 192 ) common/li_pv_v4a 7 -8 203 1 1 0 1 7000 +} +// brush 2382 +{ +( 1826 -1727 192 ) ( 1816 -1696 160 ) ( 1700 -1781 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1532 -1696 192 ) ( 1560 -1781 192 ) ( 1504 -1781 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1732 -1768 160 ) ( 1722 -1746 160 ) ( 1727 -1757 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1778 -1714 160 ) ( 1788 -1736 160 ) ( 1783 -1725 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1722 -1764 170 ) ( 1788 -1736 170 ) ( 1755 -1750 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +} +// brush 2383 +{ +( 1826 -1727 192 ) ( 1816 -1696 160 ) ( 1700 -1781 192 ) common/li_pv_v4a 7 -8 203 1 1 0 1 7000 +( 1700 -1781 192 ) ( 1816 -1696 160 ) ( 1816 -1696 208 ) common/li_pv_v4a 7 -8 203 1 1 0 1 7000 +( 1532 -1696 192 ) ( 1560 -1781 192 ) ( 1504 -1781 192 ) common/li_pv_v4a 7 -8 203 1 1 0 1 7000 +( 1732 -1768 160 ) ( 1722 -1746 160 ) ( 1727 -1757 192 ) common/li_pv_v4a 7 -8 203 1 1 0 1 7000 +( 1778 -1714 160 ) ( 1788 -1736 160 ) ( 1783 -1725 192 ) common/li_pv_v4a 7 -8 203 1 1 0 1 7000 +( 1788 -1736 170 ) ( 1722 -1764 170 ) ( 1755 -1750 192 ) common/li_pv_v4a 7 -8 203 1 1 0 1 7000 +} +// brush 2384 +{ +( 1826 -1727 192 ) ( 1816 -1696 160 ) ( 1700 -1781 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1816 -1696 208 ) ( 1816 -1696 160 ) ( 1826 -1727 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1700 -1781 192 ) ( 1816 -1696 160 ) ( 1816 -1696 208 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1532 -1696 192 ) ( 1560 -1781 192 ) ( 1504 -1781 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1788 -1736 160 ) ( 1778 -1714 160 ) ( 1783 -1725 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +} +// brush 2385 +{ +( 1816 -1696 160 ) ( 1684 -1752 160 ) ( 1700 -1781 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1684 -1752 208 ) ( 1684 -1752 160 ) ( 1816 -1696 160 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1816 -1696 208 ) ( 1816 -1696 160 ) ( 1700 -1781 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1532 -1696 192 ) ( 1560 -1781 192 ) ( 1504 -1781 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1788 -1736 160 ) ( 1778 -1714 160 ) ( 1783 -1725 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +} +// brush 2386 +{ +( 1816 -1696 160 ) ( 1684 -1752 160 ) ( 1700 -1781 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1700 -1781 192 ) ( 1684 -1752 160 ) ( 1684 -1752 208 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1684 -1752 208 ) ( 1684 -1752 160 ) ( 1816 -1696 160 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1816 -1696 208 ) ( 1816 -1696 160 ) ( 1700 -1781 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1532 -1696 192 ) ( 1560 -1781 192 ) ( 1504 -1781 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1722 -1746 160 ) ( 1732 -1768 160 ) ( 1727 -1757 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +} +// brush 2387 +{ +( 1826 -1727 192 ) ( 1816 -1696 160 ) ( 1700 -1781 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1700 -1781 192 ) ( 1816 -1696 160 ) ( 1816 -1696 208 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1532 -1696 192 ) ( 1560 -1781 192 ) ( 1504 -1781 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +( 1722 -1746 160 ) ( 1732 -1768 160 ) ( 1727 -1757 192 ) bricks/c_tn_m1 -40 0 203 1 1 0 0 0 +} +// brush 2388 +{ +( 1792 -1648 160 ) ( 1660 -1704 160 ) ( 1676 -1733 192 ) bricks/c_tn_m1 -59 -6 203 1 1 0 0 0 +( 1676 -1733 192 ) ( 1660 -1704 160 ) ( 1660 -1704 208 ) bricks/c_tn_m1 -11 1 203 1 1 0 0 0 +( 1660 -1704 208 ) ( 1660 -1704 160 ) ( 1792 -1648 160 ) bricks/c_tn_m1 -78 5 203 1 1 0 0 0 +( 1792 -1648 208 ) ( 1792 -1648 160 ) ( 1676 -1733 192 ) bricks/c_tn_m1 -78 5 203 1 1 0 0 0 +( 1508 -1648 192 ) ( 1536 -1733 192 ) ( 1480 -1733 192 ) bricks/c_tn_m1 -59 -6 203 1 1 0 0 0 +} +// brush 2389 +{ +( 1802 -1679 192 ) ( 1792 -1648 160 ) ( 1676 -1733 192 ) bricks/c_tn_m1 -59 -6 203 1 1 0 0 0 +( 1792 -1648 208 ) ( 1792 -1648 160 ) ( 1802 -1679 192 ) bricks/c_tn_m1 -11 1 203 1 1 0 0 0 +( 1676 -1733 192 ) ( 1792 -1648 160 ) ( 1792 -1648 208 ) bricks/c_tn_m1 -78 5 203 1 1 0 0 0 +( 1508 -1648 192 ) ( 1536 -1733 192 ) ( 1480 -1733 192 ) bricks/c_tn_m1 -59 -6 203 1 1 0 0 0 +} +// brush 2390 +{ +( 2008 -2048 192 ) ( 2005 -2016 192 ) ( 2283 -2016 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2283 -2016 192 ) ( 2005 -2016 192 ) ( 2008 -2048 160 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2112 -2032 160 ) ( 2112 -2016 160 ) ( 2112 -2024 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2176 -2016 160 ) ( 2176 -2032 160 ) ( 2176 -2024 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2112 -2024 160 ) ( 2128 -2024 160 ) ( 2120 -2024 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2128 -2040 160 ) ( 2112 -2040 160 ) ( 2120 -2040 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 2391 +{ +( 2008 -2048 192 ) ( 2005 -2016 192 ) ( 2283 -2016 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2280 -2048 192 ) ( 2280 -2048 160 ) ( 2240 -2048 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2283 -2016 192 ) ( 2005 -2016 192 ) ( 2008 -2048 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2112 -2032 160 ) ( 2112 -2016 160 ) ( 2112 -2024 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2176 -2016 160 ) ( 2176 -2032 160 ) ( 2176 -2024 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2112 -2040 160 ) ( 2128 -2040 160 ) ( 2120 -2040 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2392 +{ +( 2008 -2048 192 ) ( 2005 -2016 192 ) ( 2283 -2016 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2283 -2016 192 ) ( 2005 -2016 192 ) ( 2008 -2048 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2112 -2032 160 ) ( 2112 -2016 160 ) ( 2112 -2024 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2176 -2016 160 ) ( 2176 -2032 160 ) ( 2176 -2024 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2128 -2024 160 ) ( 2112 -2024 160 ) ( 2120 -2024 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2393 +{ +( 2176 -2016 192 ) ( 2283 -2016 192 ) ( 2280 -2048 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2280 -2048 192 ) ( 2280 -2048 160 ) ( 2240 -2048 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2280 -2048 160 ) ( 2283 -2016 192 ) ( 2176 -2016 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2280 -2048 192 ) ( 2283 -2016 192 ) ( 2280 -2048 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2176 -2032 160 ) ( 2176 -2016 160 ) ( 2176 -2024 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2394 +{ +( 2008 -2048 192 ) ( 2005 -2016 192 ) ( 2283 -2016 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2280 -2048 192 ) ( 2280 -2048 160 ) ( 2240 -2048 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2283 -2016 192 ) ( 2005 -2016 192 ) ( 2008 -2048 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2048 -2032 160 ) ( 2048 -2016 160 ) ( 2048 -2024 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2112 -2016 160 ) ( 2112 -2032 160 ) ( 2112 -2024 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2395 +{ +( 2008 -2048 192 ) ( 2005 -2016 192 ) ( 2283 -2016 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2280 -2048 192 ) ( 2280 -2048 160 ) ( 2240 -2048 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2283 -2016 192 ) ( 2005 -2016 192 ) ( 2008 -2048 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2008 -2048 160 ) ( 2005 -2016 192 ) ( 2008 -2048 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2048 -2016 160 ) ( 2048 -2032 160 ) ( 2048 -2024 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2396 +{ +( 2313 -1696 192 ) ( 1975 -1696 192 ) ( 1972 -1664 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 1972 -1664 160 ) ( 1975 -1696 192 ) ( 2313 -1696 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2112 -1680 160 ) ( 2112 -1664 160 ) ( 2112 -1672 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2176 -1664 160 ) ( 2176 -1680 160 ) ( 2176 -1672 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2112 -1672 160 ) ( 2136 -1672 160 ) ( 2124 -1672 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 2144 -1688 168 ) ( 2112 -1688 168 ) ( 2128 -1688 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 2397 +{ +( 2313 -1696 192 ) ( 1975 -1696 192 ) ( 1972 -1664 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1972 -1664 160 ) ( 1975 -1696 192 ) ( 2313 -1696 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 -1680 160 ) ( 2112 -1664 160 ) ( 2112 -1672 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2176 -1664 160 ) ( 2176 -1680 160 ) ( 2176 -1672 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 -1688 168 ) ( 2144 -1688 168 ) ( 2128 -1688 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2398 +{ +( 2313 -1696 192 ) ( 1975 -1696 192 ) ( 1972 -1664 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1968 -1664 192 ) ( 1616 -1664 192 ) ( 1616 -1664 176 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1972 -1664 160 ) ( 1975 -1696 192 ) ( 2313 -1696 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 -1680 160 ) ( 2112 -1664 160 ) ( 2112 -1672 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2176 -1664 160 ) ( 2176 -1680 160 ) ( 2176 -1672 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2136 -1672 160 ) ( 2112 -1672 160 ) ( 2124 -1672 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2399 +{ +( 2313 -1696 192 ) ( 1975 -1696 192 ) ( 1972 -1664 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1968 -1664 192 ) ( 1616 -1664 192 ) ( 1616 -1664 176 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1972 -1664 160 ) ( 1975 -1696 192 ) ( 2313 -1696 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2316 -1664 160 ) ( 2313 -1696 192 ) ( 2316 -1664 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2176 -1680 160 ) ( 2176 -1664 160 ) ( 2176 -1672 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2400 +{ +( 2313 -1696 192 ) ( 1975 -1696 192 ) ( 1972 -1664 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1968 -1664 192 ) ( 1616 -1664 192 ) ( 1616 -1664 176 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1972 -1664 160 ) ( 1975 -1696 192 ) ( 2313 -1696 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1972 -1664 192 ) ( 1975 -1696 192 ) ( 1972 -1664 160 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 -1664 160 ) ( 2112 -1680 160 ) ( 2112 -1672 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2401 +{ +( 2624 -2392 192 ) ( 2656 -2389 192 ) ( 2656 -2624 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2248 160 ) ( 2624 -2248 192 ) ( 2624 -2504 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -2624 192 ) ( 2656 -2389 192 ) ( 2624 -2392 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -2784 160 ) ( 2648 -2784 160 ) ( 2652 -2784 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2528 160 ) ( 2656 -2528 160 ) ( 2640 -2528 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2402 +{ +( 2976 -2432 192 ) ( 2976 -2359 192 ) ( 3008 -2356 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -3056 176 ) ( 3008 -3056 192 ) ( 3008 -2704 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -2356 160 ) ( 2976 -2359 192 ) ( 2976 -2432 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -2356 192 ) ( 2976 -2359 192 ) ( 3008 -2356 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -2464 160 ) ( 2976 -2464 160 ) ( 2988 -2464 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2403 +{ +( 3024 -2432 -16 ) ( 3008 -2432 -16 ) ( 3008 -2880 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3008 -2880 192 ) ( 3008 -2432 192 ) ( 3024 -2432 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3024 -2958 192 ) ( 3024 -2958 -16 ) ( 3008 -2956 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3024 -2354 192 ) ( 3024 -2354 -16 ) ( 3024 -2958 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3024 -2354 -16 ) ( 3024 -2354 192 ) ( 3008 -2356 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3008 -2432 192 ) ( 3008 -2880 192 ) ( 3008 -2880 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2404 +{ +( 3008 -2432 -16 ) ( 2992 -2432 -16 ) ( 2992 -2880 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2992 -2880 0 ) ( 2992 -2432 0 ) ( 3008 -2432 0 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( 3008 -2956 0 ) ( 3008 -2956 -16 ) ( 2992 -2954 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3008 -2356 0 ) ( 3008 -2356 -16 ) ( 3008 -2956 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 3008 -2356 -16 ) ( 3008 -2356 0 ) ( 2992 -2358 0 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2992 -2432 0 ) ( 2992 -2880 0 ) ( 2992 -2880 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2405 +{ +( 2640 -2432 -16 ) ( 2624 -2432 -16 ) ( 2624 -2880 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2624 -2880 0 ) ( 2624 -2432 0 ) ( 2640 -2432 0 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( 2640 -2922 0 ) ( 2640 -2922 -16 ) ( 2624 -2920 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2640 -2390 0 ) ( 2640 -2390 -16 ) ( 2640 -2922 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2640 -2390 -16 ) ( 2640 -2390 0 ) ( 2624 -2392 0 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2624 -2432 0 ) ( 2624 -2880 0 ) ( 2624 -2880 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2406 +{ +( 2624 -2432 -16 ) ( 2608 -2432 -16 ) ( 2608 -2880 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2608 -2880 192 ) ( 2608 -2432 192 ) ( 2624 -2432 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2624 -2920 192 ) ( 2624 -2920 -16 ) ( 2608 -2918 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2624 -2392 192 ) ( 2624 -2392 -16 ) ( 2624 -2920 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2624 -2392 -16 ) ( 2624 -2392 192 ) ( 2608 -2394 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2608 -2432 192 ) ( 2608 -2880 192 ) ( 2608 -2880 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2407 +{ +( 3024 -2440 192 ) ( 2608 -2440 192 ) ( 2608 -2880 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2608 -2880 208 ) ( 2608 -2440 208 ) ( 3024 -2440 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2608 -2880 208 ) ( 3024 -2880 208 ) ( 3024 -2880 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3024 -2880 208 ) ( 3024 -2440 208 ) ( 3024 -2440 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3024 -2432 208 ) ( 2608 -2432 208 ) ( 2608 -2432 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2608 -2440 208 ) ( 2608 -2880 208 ) ( 2608 -2880 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2408 +{ +( 3024 -2432 -32 ) ( 2608 -2432 -32 ) ( 2608 -2880 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2608 -2880 -16 ) ( 2608 -2432 -16 ) ( 3024 -2432 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2608 -2880 -16 ) ( 3024 -2880 -16 ) ( 3024 -2880 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3024 -2880 -16 ) ( 3024 -2432 -16 ) ( 3024 -2432 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3024 -2432 -16 ) ( 2608 -2432 -16 ) ( 2608 -2432 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2608 -2432 -16 ) ( 2608 -2880 -16 ) ( 2608 -2880 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2409 +{ +( 2240 -1648 192 ) ( 2048 -1648 192 ) ( 2048 -2064 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2048 -2064 208 ) ( 2048 -1648 208 ) ( 2240 -1648 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2048 -2064 208 ) ( 2240 -2064 208 ) ( 2240 -2064 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2240 -2064 208 ) ( 2240 -1648 208 ) ( 2240 -1648 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2240 -1648 208 ) ( 2048 -1648 208 ) ( 2048 -1648 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2048 -1648 208 ) ( 2048 -2064 208 ) ( 2048 -2064 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2410 +{ +( 2240 -1664 -32 ) ( 2048 -1664 -32 ) ( 2048 -2048 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2048 -2048 -16 ) ( 2048 -1664 -16 ) ( 2240 -1664 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2048 -2064 -16 ) ( 2240 -2064 -16 ) ( 2240 -2064 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2240 -2048 -16 ) ( 2240 -1664 -16 ) ( 2240 -1664 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2240 -1648 -16 ) ( 2048 -1648 -16 ) ( 2048 -1648 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2048 -1664 -16 ) ( 2048 -2048 -16 ) ( 2048 -2048 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2411 +{ +( 316 -3572 192 ) ( 532 -3356 192 ) ( 556 -3380 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 572 -3364 192 ) ( 572 -3364 160 ) ( 340 -3596 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 532 -3356 192 ) ( 316 -3572 192 ) ( 340 -3596 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 480 -2912 160 ) ( 504 -2936 160 ) ( 492 -2924 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 712 -3248 160 ) ( 592 -3296 160 ) ( 652 -3272 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +} +// brush 2412 +{ +( 1780 -2180 -16 ) ( 1780 -2168 -16 ) ( 1764 -2168 -16 ) bricks/c_tn_m3 -48 0 0 0.710000 1 0 0 0 +( 1764 -2168 192 ) ( 1780 -2168 192 ) ( 1780 -2180 192 ) bricks/c_tn_m3 -48 0 0 0.710000 1 0 0 0 +( 1784 -2176 -16 ) ( 1784 -2176 192 ) ( 1788 -2172 192 ) bricks/c_tn_m3 -48 0 0 0.710000 1 0 0 0 +( 1800 -2136 192 ) ( 1800 -2136 -16 ) ( 1810 -2150 -16 ) bricks/c_tn_m3 -48 0 0 0.710000 1 0 0 0 +( 1800 -2136 -16 ) ( 1800 -2136 192 ) ( 672 -3264 192 ) bricks/c_tn_m3 -48 0 0 0.710000 1 0 0 0 +( 712 -3248 -16 ) ( 592 -3296 -16 ) ( 652 -3272 192 ) bricks/c_tn_m3 -48 0 0 0.710000 1 0 0 0 +} +// brush 2413 +{ +( 1776 -2176 -16 ) ( 1776 -2160 -16 ) ( 1748 -2160 -16 ) bricks/c_sr_mr5 49 13 90 1 1 0 0 0 +( 1748 -2160 0 ) ( 1776 -2160 0 ) ( 1776 -2176 0 ) bricks/c_sr_mr5 0 0 45 1 1 0 0 0 +( 1763 -2173 -16 ) ( 1763 -2173 0 ) ( 1776 -2160 0 ) bricks/c_sr_mr5 18 -18 -180 1 -1 0 0 0 +( 1790 -2124 0 ) ( 1790 -2124 -16 ) ( 1800 -2136 -16 ) bricks/c_sr_mr5 18 -18 0 1 1 0 0 0 +( 1790 -2124 -16 ) ( 1790 -2124 0 ) ( 632 -3280 0 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 632 -3280 -16 ) ( 632 -3280 0 ) ( 672 -3264 0 ) bricks/c_sr_mr5 -5 -17 -180 1 -1 0 0 0 +} +// brush 2414 +{ +( 256 -3296 192 ) ( 152 -3296 192 ) ( 152 -3264 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 -3296 208 ) ( 768 -3264 208 ) ( 768 -3264 160 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 256 -3264 208 ) ( 152 -3264 208 ) ( 152 -3264 160 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 -3296 192 ) ( 768 -3264 160 ) ( 152 -3280 176 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 592 -3296 160 ) ( 712 -3248 160 ) ( 652 -3272 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2415 +{ +( 640 -3216 -16 ) ( 640 -3632 -16 ) ( 768 -3632 -16 ) bricks/c_tn_m3 -11 0 0 1 1 0 0 0 +( 768 -3632 192 ) ( 640 -3632 192 ) ( 640 -3216 192 ) bricks/c_tn_m3 -11 0 0 1 1 0 0 0 +( 768 -3664 8 ) ( 768 -3248 8 ) ( 768 -3248 -16 ) bricks/c_tn_m3 -11 0 0 1 1 0 0 0 +( 768 -3248 8 ) ( 640 -3248 8 ) ( 640 -3248 -16 ) bricks/c_tn_m3 -11 0 0 1 1 0 0 0 +( 1200 -3264 -16 ) ( 1184 -3264 -16 ) ( 1192 -3264 0 ) bricks/c_tn_m3 -11 0 0 1 1 0 0 0 +( 592 -3296 -16 ) ( 712 -3248 -16 ) ( 652 -3272 192 ) bricks/c_tn_m3 -11 0 0 1 1 0 0 0 +} +// brush 2416 +{ +( 640 -3232 -16 ) ( 640 -3648 -16 ) ( 768 -3648 -16 ) bricks/c_sr_mr5 62 31 0 1 1 0 0 0 +( 768 -3648 0 ) ( 640 -3648 0 ) ( 640 -3232 0 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 768 -3680 8 ) ( 768 -3264 8 ) ( 768 -3264 -16 ) bricks/c_sr_mr5 0 0 90 1 -1 0 0 0 +( 768 -3264 8 ) ( 640 -3264 8 ) ( 640 -3264 -16 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( 1200 -3280 -16 ) ( 1184 -3280 -16 ) ( 1192 -3280 0 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 592 -3296 -16 ) ( 712 -3248 -16 ) ( 652 -3272 0 ) bricks/c_sr_mr5 64 15 0 1 1 0 0 0 +} +// brush 2417 +{ +( 2624 -2840 448 ) ( 2656 -2837 448 ) ( 2656 -2923 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2920 448 ) ( 2624 -2920 416 ) ( 2624 -2880 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2656 -2923 448 ) ( 2656 -2837 448 ) ( 2624 -2840 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2920 448 ) ( 2656 -2923 448 ) ( 2624 -2920 416 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( 2624 -2848 416 ) ( 2656 -2848 416 ) ( 2640 -2848 448 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 2418 +{ +( 2976 -2953 448 ) ( 2976 -2807 448 ) ( 3008 -2804 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -2608 448 ) ( 3008 -2256 448 ) ( 3008 -2256 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -2804 416 ) ( 2976 -2807 448 ) ( 2976 -2953 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -2956 416 ) ( 2976 -2953 448 ) ( 3008 -2956 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -2848 416 ) ( 3008 -2848 416 ) ( 3004 -2848 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2419 +{ +( 2992 -3104 240 ) ( 2992 -2976 240 ) ( 2624 -2976 240 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2624 -2976 256 ) ( 2992 -2976 256 ) ( 2992 -3104 256 ) bricks/c_sr_mr5 0 -7 78 1 1 0 0 0 +( 2962 -3108 224 ) ( 2962 -3108 384 ) ( 2976 -3112 384 ) bricks/c_sr_mr5 15 16 -180 1 -1 0 0 0 +( 3008 -2956 384 ) ( 3008 -2956 224 ) ( 2976 -3112 224 ) bricks/c_sr_mr5 -48 16 0 1 1 0 0 0 +( 2992 -2954 384 ) ( 2992 -2954 224 ) ( 3008 -2956 224 ) bricks/c_sr_mr5 15 16 -180 1 -1 0 0 0 +( 2962 -3108 384 ) ( 2962 -3108 224 ) ( 2992 -2954 224 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2420 +{ +( 2960 -3260 240 ) ( 2960 -3132 240 ) ( 2592 -3132 240 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2592 -3132 256 ) ( 2960 -3132 256 ) ( 2960 -3260 256 ) bricks/c_sr_mr5 0 11 67 1 1 0 0 0 +( 2920 -3244 384 ) ( 2920 -3244 224 ) ( 2908 -3238 224 ) bricks/c_sr_mr5 15 16 -180 1 -1 0 0 0 +( 2920 -3244 224 ) ( 2920 -3244 384 ) ( 2976 -3112 384 ) bricks/c_sr_mr5 -48 16 0 1 1 0 0 0 +( 2962 -3108 384 ) ( 2962 -3108 224 ) ( 2976 -3112 224 ) bricks/c_sr_mr5 15 16 -180 1 -1 0 0 0 +( 2908 -3238 384 ) ( 2908 -3238 224 ) ( 2962 -3108 224 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2421 +{ +( 2904 -3392 240 ) ( 2904 -3264 240 ) ( 2536 -3264 240 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2536 -3264 256 ) ( 2904 -3264 256 ) ( 2904 -3392 256 ) bricks/c_sr_mr5 0 5 57 1 1 0 0 0 +( 2830 -3360 224 ) ( 2830 -3360 384 ) ( 2840 -3368 384 ) bricks/c_sr_mr5 15 16 -180 1 -1 0 0 0 +( 2920 -3244 384 ) ( 2920 -3244 224 ) ( 2840 -3368 224 ) bricks/c_sr_mr5 -48 16 0 1 1 0 0 0 +( 2908 -3238 384 ) ( 2908 -3238 224 ) ( 2920 -3244 224 ) bricks/c_sr_mr5 15 16 -180 1 -1 0 0 0 +( 2830 -3360 384 ) ( 2830 -3360 224 ) ( 2908 -3238 224 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2422 +{ +( 2752 -3544 256 ) ( 2624 -3544 256 ) ( 2624 -3176 256 ) bricks/c_sr_mr5 0 17 32 1 1 0 0 0 +( 2624 -3176 240 ) ( 2624 -3544 240 ) ( 2752 -3544 240 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2720 -3470 272 ) ( 2720 -3470 112 ) ( 2728 -3480 112 ) bricks/c_sr_mr5 -48 16 0 1 1 0 0 0 +( 2604 -3560 112 ) ( 2604 -3560 272 ) ( 2728 -3480 272 ) bricks/c_sr_mr5 15 16 -180 1 -1 0 0 0 +( 2598 -3548 112 ) ( 2598 -3548 272 ) ( 2604 -3560 272 ) bricks/c_sr_mr5 -48 16 0 1 1 0 0 0 +( 2720 -3470 112 ) ( 2720 -3470 272 ) ( 2598 -3548 272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2423 +{ +( 2620 -3600 256 ) ( 2492 -3600 256 ) ( 2492 -3232 256 ) bricks/c_sr_mr5 0 -7 23 1 1 0 0 0 +( 2492 -3232 240 ) ( 2492 -3600 240 ) ( 2620 -3600 240 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2604 -3560 112 ) ( 2604 -3560 272 ) ( 2598 -3548 272 ) bricks/c_sr_mr5 -48 16 0 1 1 0 0 0 +( 2604 -3560 272 ) ( 2604 -3560 112 ) ( 2472 -3616 112 ) bricks/c_sr_mr5 15 16 -180 1 -1 0 0 0 +( 2468 -3602 112 ) ( 2468 -3602 272 ) ( 2472 -3616 272 ) bricks/c_sr_mr5 -48 16 0 1 1 0 0 0 +( 2598 -3548 112 ) ( 2598 -3548 272 ) ( 2468 -3602 272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2424 +{ +( 2464 -3632 256 ) ( 2336 -3632 256 ) ( 2336 -3264 256 ) bricks/c_sr_mr5 0 12 12 1 1 0 0 0 +( 2336 -3264 240 ) ( 2336 -3632 240 ) ( 2464 -3632 240 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2468 -3602 272 ) ( 2468 -3602 112 ) ( 2472 -3616 112 ) bricks/c_sr_mr5 -48 16 0 1 1 0 0 0 +( 2316 -3648 112 ) ( 2316 -3648 272 ) ( 2472 -3616 272 ) bricks/c_sr_mr5 15 16 -180 1 -1 0 0 0 +( 2314 -3632 112 ) ( 2314 -3632 272 ) ( 2316 -3648 272 ) bricks/c_sr_mr5 -48 16 0 1 1 0 0 0 +( 2468 -3602 112 ) ( 2468 -3602 272 ) ( 2314 -3632 272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2425 +{ +( 2838 -3422 240 ) ( 2838 -3368 240 ) ( 2754 -3368 240 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2754 -3368 256 ) ( 2838 -3368 256 ) ( 2838 -3422 256 ) bricks/c_sr_mr5 0 -7 45 1 1 0 0 0 +( 2728 -3480 256 ) ( 2728 -3480 240 ) ( 2720 -3470 240 ) bricks/c_sr_mr5 -48 16 0 1 1 0 0 0 +( 2728 -3480 240 ) ( 2728 -3480 256 ) ( 2840 -3368 256 ) bricks/c_sr_mr5 47 16 -180 1 -1 0 0 0 +( 2840 -3368 240 ) ( 2840 -3368 256 ) ( 2830 -3360 256 ) bricks/c_sr_mr5 15 16 -180 1 -1 0 0 0 +( 2774 -3416 256 ) ( 2774 -3416 240 ) ( 2830 -3360 240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2426 +{ +( 2992 -3104 240 ) ( 2992 -2976 240 ) ( 2624 -2976 240 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2624 -2976 256 ) ( 2992 -2976 256 ) ( 2992 -3104 256 ) bricks/c_sr_mr5 0 4 258 1 1 0 0 0 +( 2608 -2996 384 ) ( 2608 -2996 224 ) ( 2624 -2920 224 ) bricks/c_sr_mr5 -48 16 0 1 1 0 0 0 +( 2608 -2996 224 ) ( 2608 -2996 384 ) ( 2624 -3000 384 ) bricks/c_sr_mr5 15 16 -180 1 -1 0 0 0 +( 2608 -2918 384 ) ( 2608 -2918 368 ) ( 2624 -2920 368 ) bricks/c_sr_mr5 15 16 -180 1 -1 0 0 0 +( 2624 -3000 224 ) ( 2624 -3000 384 ) ( 2640 -2922 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2427 +{ +( 2960 -3260 240 ) ( 2960 -3132 240 ) ( 2592 -3132 240 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2592 -3132 256 ) ( 2960 -3132 256 ) ( 2960 -3260 256 ) bricks/c_sr_mr5 0 -14 247 1 1 0 0 0 +( 2580 -3060 384 ) ( 2580 -3060 224 ) ( 2608 -2996 224 ) bricks/c_sr_mr5 -48 16 0 1 1 0 0 0 +( 2594 -3068 384 ) ( 2594 -3068 224 ) ( 2580 -3060 224 ) bricks/c_sr_mr5 15 16 -180 1 -1 0 0 0 +( 2624 -3000 224 ) ( 2624 -3000 384 ) ( 2608 -2996 384 ) bricks/c_sr_mr5 15 16 -180 1 -1 0 0 0 +( 2624 -3000 384 ) ( 2624 -3000 224 ) ( 2594 -3068 224 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2428 +{ +( 2904 -3392 240 ) ( 2904 -3264 240 ) ( 2536 -3264 240 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2536 -3264 256 ) ( 2904 -3264 256 ) ( 2904 -3392 256 ) bricks/c_sr_mr5 0 -11 237 1 1 0 0 0 +( 2536 -3128 384 ) ( 2536 -3128 224 ) ( 2580 -3060 224 ) bricks/c_sr_mr5 -48 16 0 1 1 0 0 0 +( 2548 -3138 384 ) ( 2548 -3138 224 ) ( 2536 -3128 224 ) bricks/c_sr_mr5 15 16 -180 1 -1 0 0 0 +( 2594 -3068 224 ) ( 2594 -3068 384 ) ( 2580 -3060 384 ) bricks/c_sr_mr5 15 16 -180 1 -1 0 0 0 +( 2548 -3138 224 ) ( 2548 -3138 384 ) ( 2594 -3068 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2429 +{ +( 2752 -3544 256 ) ( 2624 -3544 256 ) ( 2624 -3176 256 ) bricks/c_sr_mr5 0 -16 213 1 1 0 0 0 +( 2624 -3176 240 ) ( 2624 -3544 240 ) ( 2752 -3544 240 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2488 -3176 112 ) ( 2488 -3176 272 ) ( 2420 -3220 272 ) bricks/c_sr_mr5 15 16 -180 1 -1 0 0 0 +( 2498 -3188 112 ) ( 2498 -3188 272 ) ( 2488 -3176 272 ) bricks/c_sr_mr5 -48 16 0 1 1 0 0 0 +( 2428 -3234 272 ) ( 2428 -3234 112 ) ( 2420 -3220 112 ) bricks/c_sr_mr5 -48 16 0 1 1 0 0 0 +( 2498 -3188 272 ) ( 2498 -3188 112 ) ( 2428 -3234 112 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2430 +{ +( 2620 -3600 256 ) ( 2492 -3600 256 ) ( 2492 -3232 256 ) bricks/c_sr_mr5 0 -13 204 1 1 0 0 0 +( 2492 -3232 240 ) ( 2492 -3600 240 ) ( 2620 -3600 240 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2420 -3220 112 ) ( 2420 -3220 272 ) ( 2356 -3248 272 ) bricks/c_sr_mr5 15 16 -180 1 -1 0 0 0 +( 2428 -3234 112 ) ( 2428 -3234 272 ) ( 2420 -3220 272 ) bricks/c_sr_mr5 -48 16 0 1 1 0 0 0 +( 2360 -3264 272 ) ( 2360 -3264 112 ) ( 2356 -3248 112 ) bricks/c_sr_mr5 -48 16 0 1 1 0 0 0 +( 2360 -3264 112 ) ( 2360 -3264 272 ) ( 2428 -3234 272 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2431 +{ +( 2464 -3632 256 ) ( 2336 -3632 256 ) ( 2336 -3264 256 ) bricks/c_sr_mr5 0 -15 192 1 1 0 0 0 +( 2336 -3264 240 ) ( 2336 -3632 240 ) ( 2464 -3632 240 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2356 -3248 112 ) ( 2356 -3248 272 ) ( 2280 -3264 272 ) bricks/c_sr_mr5 15 16 -180 1 -1 0 0 0 +( 2356 -3248 272 ) ( 2356 -3248 112 ) ( 2360 -3264 112 ) bricks/c_sr_mr5 -48 16 0 1 1 0 0 0 +( 2278 -3248 112 ) ( 2278 -3248 128 ) ( 2280 -3264 128 ) bricks/c_sr_mr5 -48 16 0 1 1 0 0 0 +( 2360 -3264 272 ) ( 2360 -3264 112 ) ( 2282 -3280 112 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2432 +{ +( 2548 -3176 240 ) ( 2548 -3138 240 ) ( 2488 -3138 240 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2488 -3138 256 ) ( 2548 -3138 256 ) ( 2548 -3176 256 ) bricks/c_sr_mr5 0 4 225 1 1 0 0 0 +( 2536 -3128 240 ) ( 2536 -3128 256 ) ( 2488 -3176 256 ) bricks/c_sr_mr5 15 16 -180 1 -1 0 0 0 +( 2498 -3188 256 ) ( 2498 -3188 240 ) ( 2488 -3176 240 ) bricks/c_sr_mr5 -48 16 0 1 1 0 0 0 +( 2498 -3188 240 ) ( 2498 -3188 256 ) ( 2548 -3138 256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2536 -3128 256 ) ( 2536 -3128 240 ) ( 2548 -3138 240 ) bricks/c_sr_mr5 15 16 -180 1 -1 0 0 0 +} +// brush 2433 +{ +( 2240 -3616 448 ) ( 2313 -3616 448 ) ( 2316 -3648 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1616 -3648 432 ) ( 1616 -3648 448 ) ( 1968 -3648 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2316 -3648 416 ) ( 2313 -3616 448 ) ( 2240 -3616 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2240 -3632 448 ) ( 2240 -3648 416 ) ( 2240 -3616 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2316 -3648 448 ) ( 2313 -3616 448 ) ( 2316 -3648 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2434 +{ +( 2313 -3616 448 ) ( 2316 -3648 416 ) ( 2462 -3585 448 ) bricks/c_tn_m1 43 14 12 1 1 0 0 0 +( 2316 -3648 464 ) ( 2316 -3648 416 ) ( 2313 -3616 448 ) bricks/c_tn_m1 43 14 12 1 1 0 0 0 +( 2462 -3585 448 ) ( 2316 -3648 416 ) ( 2316 -3648 464 ) bricks/c_tn_m1 43 14 12 1 1 0 0 0 +( 2313 -3424 448 ) ( 2313 -3368 448 ) ( 2462 -3396 448 ) bricks/c_tn_m1 43 14 12 1 1 0 0 0 +} +// brush 2435 +{ +( 2316 -3648 416 ) ( 2472 -3616 416 ) ( 2462 -3585 448 ) bricks/c_tn_m1 43 14 12 1 1 0 0 0 +( 2462 -3585 448 ) ( 2472 -3616 416 ) ( 2472 -3616 464 ) bricks/c_tn_m1 43 14 12 1 1 0 0 0 +( 2472 -3616 464 ) ( 2472 -3616 416 ) ( 2316 -3648 416 ) bricks/c_tn_m1 43 14 12 1 1 0 0 0 +( 2316 -3648 464 ) ( 2316 -3648 416 ) ( 2462 -3585 448 ) bricks/c_tn_m1 43 14 12 1 1 0 0 0 +( 2316 -3424 448 ) ( 2316 -3368 448 ) ( 2472 -3396 448 ) bricks/c_tn_m1 43 14 12 1 1 0 0 0 +} +// brush 2436 +{ +( 2486 -3633 448 ) ( 2496 -3664 416 ) ( 2612 -3579 448 ) bricks/c_tn_m1 -3 -11 23 1 1 0 0 0 +( 2496 -3664 464 ) ( 2496 -3664 416 ) ( 2486 -3633 448 ) bricks/c_tn_m1 44 28 23 1 1 0 0 0 +( 2612 -3579 448 ) ( 2496 -3664 416 ) ( 2496 -3664 464 ) bricks/c_tn_m1 -22 0 23 1 1 0 0 0 +( 2486 -3472 448 ) ( 2486 -3416 448 ) ( 2612 -3444 448 ) bricks/c_tn_m1 -3 -11 23 1 1 0 0 0 +} +// brush 2437 +{ +( 2496 -3664 416 ) ( 2628 -3608 416 ) ( 2612 -3579 448 ) bricks/c_tn_m1 -3 -11 23 1 1 0 0 0 +( 2612 -3579 448 ) ( 2628 -3608 416 ) ( 2628 -3608 464 ) bricks/c_tn_m1 44 28 23 1 1 0 0 0 +( 2628 -3608 464 ) ( 2628 -3608 416 ) ( 2496 -3664 416 ) bricks/c_tn_m1 -22 0 23 1 1 0 0 0 +( 2496 -3664 464 ) ( 2496 -3664 416 ) ( 2612 -3579 448 ) bricks/c_tn_m1 -22 0 23 1 1 0 0 0 +( 2496 -3472 448 ) ( 2496 -3416 448 ) ( 2628 -3444 448 ) bricks/c_tn_m1 -3 -11 23 1 1 0 0 0 +} +// brush 2438 +{ +( 2588 -3531 448 ) ( 2604 -3560 416 ) ( 2707 -3454 448 ) bricks/c_tn_m1 58 13 33 1 1 0 0 0 +( 2604 -3560 464 ) ( 2604 -3560 416 ) ( 2588 -3531 448 ) bricks/c_tn_m1 58 13 33 1 1 0 0 0 +( 2707 -3454 448 ) ( 2604 -3560 416 ) ( 2604 -3560 464 ) bricks/c_tn_m1 58 13 33 1 1 0 0 0 +( 2588 -3424 448 ) ( 2588 -3368 448 ) ( 2707 -3396 448 ) bricks/c_tn_m1 58 13 33 1 1 0 0 0 +} +// brush 2439 +{ +( 2604 -3560 416 ) ( 2728 -3480 416 ) ( 2707 -3454 448 ) bricks/c_tn_m1 58 13 33 1 1 0 0 0 +( 2707 -3454 448 ) ( 2728 -3480 416 ) ( 2728 -3480 464 ) bricks/c_tn_m1 58 13 33 1 1 0 0 0 +( 2728 -3480 464 ) ( 2728 -3480 416 ) ( 2604 -3560 416 ) bricks/c_tn_m1 58 13 33 1 1 0 0 0 +( 2604 -3560 464 ) ( 2604 -3560 416 ) ( 2707 -3454 448 ) bricks/c_tn_m1 58 13 33 1 1 0 0 0 +( 2604 -3424 448 ) ( 2604 -3368 448 ) ( 2728 -3396 448 ) bricks/c_tn_m1 58 13 33 1 1 0 0 0 +} +// brush 2440 +{ +( 2768 -3520 416 ) ( 2880 -3408 416 ) ( 2747 -3494 448 ) bricks/c_tn_m1 0 -3 45 1 1 0 0 0 +( 2768 -3520 464 ) ( 2768 -3520 416 ) ( 2747 -3494 448 ) bricks/c_tn_m1 28 17 45 1 1 0 0 0 +( 2880 -3408 464 ) ( 2880 -3408 416 ) ( 2768 -3520 416 ) bricks/c_tn_m1 28 17 45 1 1 0 0 0 +( 2747 -3494 448 ) ( 2880 -3408 416 ) ( 2880 -3408 464 ) bricks/c_tn_m1 -28 -7 45 1 1 0 0 0 +( 2747 -3464 448 ) ( 2747 -3408 448 ) ( 2880 -3436 448 ) bricks/c_tn_m1 0 -3 45 1 1 0 0 0 +} +// brush 2441 +{ +( 2747 -3494 448 ) ( 2880 -3408 416 ) ( 2854 -3387 448 ) bricks/c_tn_m1 0 -3 45 1 1 0 0 0 +( 2854 -3387 448 ) ( 2880 -3408 416 ) ( 2880 -3408 464 ) bricks/c_tn_m1 -28 -7 45 1 1 0 0 0 +( 2880 -3408 464 ) ( 2880 -3408 416 ) ( 2747 -3494 448 ) bricks/c_tn_m1 -28 -7 45 1 1 0 0 0 +( 2747 -3464 448 ) ( 2747 -3408 448 ) ( 2880 -3436 448 ) bricks/c_tn_m1 0 -3 45 1 1 0 0 0 +} +// brush 2442 +{ +( 2939 -3252 448 ) ( 2968 -3268 416 ) ( 3024 -3136 416 ) bricks/c_tn_m1 3 -16 67 1 1 0 0 0 +( 2968 -3268 464 ) ( 2968 -3268 416 ) ( 2939 -3252 448 ) bricks/c_tn_m1 -18 -7 67 1 1 0 0 0 +( 3024 -3136 416 ) ( 2968 -3268 416 ) ( 2968 -3268 464 ) bricks/c_tn_m1 9 27 67 1 1 0 0 0 +( 2939 -3252 448 ) ( 3024 -3136 416 ) ( 3024 -3136 464 ) bricks/c_tn_m1 9 27 67 1 1 0 0 0 +( 2939 -3448 448 ) ( 2939 -3392 448 ) ( 3024 -3420 448 ) bricks/c_tn_m1 3 -16 67 1 1 0 0 0 +} +// brush 2443 +{ +( 2939 -3252 448 ) ( 3024 -3136 416 ) ( 2993 -3126 448 ) bricks/c_tn_m1 3 -16 67 1 1 0 0 0 +( 2993 -3126 448 ) ( 3024 -3136 416 ) ( 3024 -3136 464 ) bricks/c_tn_m1 -18 -7 67 1 1 0 0 0 +( 3024 -3136 464 ) ( 3024 -3136 416 ) ( 2939 -3252 448 ) bricks/c_tn_m1 9 27 67 1 1 0 0 0 +( 2939 -3448 448 ) ( 2939 -3392 448 ) ( 3024 -3420 448 ) bricks/c_tn_m1 3 -16 67 1 1 0 0 0 +} +// brush 2444 +{ +( 2945 -3102 448 ) ( 2976 -3112 416 ) ( 3008 -2956 416 ) bricks/c_tn_m1 81 -5 78 1 1 0 0 0 +( 2976 -3112 464 ) ( 2976 -3112 416 ) ( 2945 -3102 448 ) bricks/c_tn_m1 81 -5 78 1 1 0 0 0 +( 3008 -2956 416 ) ( 2976 -3112 416 ) ( 2976 -3112 464 ) bricks/c_tn_m1 81 -5 78 1 1 0 0 0 +( 2945 -3102 448 ) ( 3008 -2956 416 ) ( 3008 -2956 464 ) bricks/c_tn_m1 81 -5 78 1 1 0 0 0 +( 2945 -3424 448 ) ( 2945 -3368 448 ) ( 3008 -3396 448 ) bricks/c_tn_m1 81 -5 78 1 1 0 0 0 +} +// brush 2445 +{ +( 2945 -3102 448 ) ( 3008 -2956 416 ) ( 2976 -2953 448 ) bricks/c_tn_m1 81 -5 78 1 1 0 0 0 +( 2976 -2953 448 ) ( 3008 -2956 416 ) ( 3008 -2956 464 ) bricks/c_tn_m1 81 -5 78 1 1 0 0 0 +( 3008 -2956 464 ) ( 3008 -2956 416 ) ( 2945 -3102 448 ) bricks/c_tn_m1 81 -5 78 1 1 0 0 0 +( 2945 -3424 448 ) ( 2945 -3368 448 ) ( 3008 -3396 448 ) bricks/c_tn_m1 81 -5 78 1 1 0 0 0 +} +// brush 2446 +{ +( 2366 -3279 448 ) ( 2280 -3264 416 ) ( 2283 -3296 448 ) bricks/c_tn_m1 -215 -13 192 1 1 0 0 0 +( 2283 -3296 448 ) ( 2280 -3264 416 ) ( 2280 -3264 464 ) bricks/c_tn_m1 -215 -13 192 1 1 0 0 0 +( 2280 -3264 464 ) ( 2280 -3264 416 ) ( 2366 -3279 448 ) bricks/c_tn_m1 -215 -13 192 1 1 0 0 0 +( 2376 -3264 448 ) ( 2400 -3264 448 ) ( 2388 -3296 448 ) bricks/c_tn_m1 -215 -13 192 1 1 0 0 0 +} +// brush 2447 +{ +( 2366 -3279 448 ) ( 2356 -3248 416 ) ( 2280 -3264 416 ) bricks/c_tn_m1 -215 -13 192 1 1 0 0 0 +( 2280 -3264 416 ) ( 2356 -3248 416 ) ( 2356 -3248 464 ) bricks/c_tn_m1 -215 -13 192 1 1 0 0 0 +( 2356 -3248 464 ) ( 2356 -3248 416 ) ( 2366 -3279 448 ) bricks/c_tn_m1 -215 -13 192 1 1 0 0 0 +( 2366 -3279 464 ) ( 2366 -3279 448 ) ( 2280 -3264 416 ) bricks/c_tn_m1 -215 -13 192 1 1 0 0 0 +( 2376 -3248 448 ) ( 2400 -3248 448 ) ( 2388 -3279 448 ) bricks/c_tn_m1 -215 -13 192 1 1 0 0 0 +} +// brush 2448 +{ +( 2411 -3192 448 ) ( 2332 -3192 416 ) ( 2342 -3223 448 ) bricks/c_tn_m1 0 -27 204 1 1 0 0 0 +( 2342 -3223 448 ) ( 2332 -3192 416 ) ( 2332 -3192 464 ) bricks/c_tn_m1 51 23 204 1 1 0 0 0 +( 2332 -3192 464 ) ( 2332 -3192 416 ) ( 2411 -3192 448 ) bricks/c_tn_m1 -21 -8 204 1 1 0 0 0 +( 2352 -3192 448 ) ( 2376 -3192 448 ) ( 2364 -3223 448 ) bricks/c_tn_m1 0 -27 204 1 1 0 0 0 +} +// brush 2449 +{ +( 2411 -3192 448 ) ( 2396 -3164 416 ) ( 2332 -3192 416 ) bricks/c_tn_m1 0 -27 204 1 1 0 0 0 +( 2332 -3192 416 ) ( 2396 -3164 416 ) ( 2396 -3164 464 ) bricks/c_tn_m1 -21 -8 204 1 1 0 0 0 +( 2396 -3164 464 ) ( 2396 -3164 416 ) ( 2411 -3192 448 ) bricks/c_tn_m1 51 23 204 1 1 0 0 0 +( 2411 -3192 448 ) ( 2332 -3192 416 ) ( 2332 -3192 464 ) bricks/c_tn_m1 -21 -8 204 1 1 0 0 0 +( 2352 -3164 448 ) ( 2376 -3164 448 ) ( 2364 -3192 448 ) bricks/c_tn_m1 0 -27 204 1 1 0 0 0 +} +// brush 2450 +{ +( 2508 -3201 448 ) ( 2420 -3220 416 ) ( 2435 -3248 448 ) bricks/c_tn_m1 0 -13 213 1 1 0 0 0 +( 2435 -3248 448 ) ( 2420 -3220 416 ) ( 2420 -3220 464 ) bricks/c_tn_m1 0 -13 213 1 1 0 0 0 +( 2420 -3220 464 ) ( 2420 -3220 416 ) ( 2508 -3201 448 ) bricks/c_tn_m1 0 -13 213 1 1 0 0 0 +( 2376 -3201 448 ) ( 2400 -3201 448 ) ( 2388 -3248 448 ) bricks/c_tn_m1 0 -13 213 1 1 0 0 0 +} +// brush 2451 +{ +( 2508 -3201 448 ) ( 2488 -3176 416 ) ( 2420 -3220 416 ) bricks/c_tn_m1 0 -13 213 1 1 0 0 0 +( 2420 -3220 416 ) ( 2488 -3176 416 ) ( 2488 -3176 464 ) bricks/c_tn_m1 0 -13 213 1 1 0 0 0 +( 2488 -3176 464 ) ( 2488 -3176 416 ) ( 2508 -3201 448 ) bricks/c_tn_m1 0 -13 213 1 1 0 0 0 +( 2508 -3201 448 ) ( 2420 -3220 416 ) ( 2420 -3220 464 ) bricks/c_tn_m1 0 -13 213 1 1 0 0 0 +( 2376 -3176 448 ) ( 2400 -3176 448 ) ( 2388 -3220 448 ) bricks/c_tn_m1 0 -13 213 1 1 0 0 0 +} +// brush 2452 +{ +( 2536 -3128 416 ) ( 2488 -3176 416 ) ( 2561 -3148 448 ) bricks/c_tn_m1 0 5 225 1 1 0 0 0 +( 2488 -3176 464 ) ( 2488 -3176 416 ) ( 2536 -3128 416 ) bricks/c_tn_m1 0 5 225 1 1 0 0 0 +( 2536 -3128 464 ) ( 2536 -3128 416 ) ( 2561 -3148 448 ) bricks/c_tn_m1 0 5 225 1 1 0 0 0 +( 2561 -3148 448 ) ( 2488 -3176 416 ) ( 2488 -3176 464 ) bricks/c_tn_m1 0 5 225 1 1 0 0 0 +( 2376 -3128 448 ) ( 2400 -3128 448 ) ( 2388 -3176 448 ) bricks/c_tn_m1 0 5 225 1 1 0 0 0 +} +// brush 2453 +{ +( 2561 -3148 448 ) ( 2488 -3176 416 ) ( 2508 -3201 448 ) bricks/c_tn_m1 0 5 225 1 1 0 0 0 +( 2508 -3201 448 ) ( 2488 -3176 416 ) ( 2488 -3176 464 ) bricks/c_tn_m1 0 5 225 1 1 0 0 0 +( 2488 -3176 464 ) ( 2488 -3176 416 ) ( 2561 -3148 448 ) bricks/c_tn_m1 0 5 225 1 1 0 0 0 +( 2376 -3148 448 ) ( 2400 -3148 448 ) ( 2388 -3201 448 ) bricks/c_tn_m1 0 5 225 1 1 0 0 0 +} +// brush 2454 +{ +( 2580 -3060 416 ) ( 2536 -3128 416 ) ( 2561 -3148 448 ) bricks/c_tn_m1 -150 -9 237 1 1 0 0 0 +( 2536 -3128 464 ) ( 2536 -3128 416 ) ( 2580 -3060 416 ) bricks/c_tn_m1 -150 -9 237 1 1 0 0 0 +( 2561 -3148 448 ) ( 2536 -3128 416 ) ( 2536 -3128 464 ) bricks/c_tn_m1 -150 -9 237 1 1 0 0 0 +( 2580 -3060 464 ) ( 2580 -3060 416 ) ( 2561 -3148 448 ) bricks/c_tn_m1 -150 -9 237 1 1 0 0 0 +( 2376 -3060 448 ) ( 2400 -3060 448 ) ( 2388 -3148 448 ) bricks/c_tn_m1 -150 -9 237 1 1 0 0 0 +} +// brush 2455 +{ +( 2608 -3075 448 ) ( 2580 -3060 416 ) ( 2561 -3148 448 ) bricks/c_tn_m1 -150 -9 237 1 1 0 0 0 +( 2580 -3060 464 ) ( 2580 -3060 416 ) ( 2608 -3075 448 ) bricks/c_tn_m1 -150 -9 237 1 1 0 0 0 +( 2561 -3148 448 ) ( 2580 -3060 416 ) ( 2580 -3060 464 ) bricks/c_tn_m1 -150 -9 237 1 1 0 0 0 +( 2376 -3060 448 ) ( 2400 -3060 448 ) ( 2388 -3148 448 ) bricks/c_tn_m1 -150 -9 237 1 1 0 0 0 +} +// brush 2456 +{ +( 2552 -2972 416 ) ( 2524 -3036 416 ) ( 2552 -3051 448 ) bricks/c_tn_m1 0 -1 247 1 1 0 0 0 +( 2524 -3036 464 ) ( 2524 -3036 416 ) ( 2552 -2972 416 ) bricks/c_tn_m1 9 17 247 1 1 0 0 0 +( 2552 -3051 448 ) ( 2524 -3036 416 ) ( 2524 -3036 464 ) bricks/c_tn_m1 -21 -24 247 1 1 0 0 0 +( 2552 -2972 464 ) ( 2552 -2972 416 ) ( 2552 -3051 448 ) bricks/c_tn_m1 9 17 247 1 1 0 0 0 +( 2320 -2972 448 ) ( 2344 -2972 448 ) ( 2332 -3051 448 ) bricks/c_tn_m1 0 -1 247 1 1 0 0 0 +} +// brush 2457 +{ +( 2583 -2982 448 ) ( 2552 -2972 416 ) ( 2552 -3051 448 ) bricks/c_tn_m1 0 -1 247 1 1 0 0 0 +( 2552 -2972 464 ) ( 2552 -2972 416 ) ( 2583 -2982 448 ) bricks/c_tn_m1 -21 -24 247 1 1 0 0 0 +( 2552 -3051 448 ) ( 2552 -2972 416 ) ( 2552 -2972 464 ) bricks/c_tn_m1 9 17 247 1 1 0 0 0 +( 2320 -2972 448 ) ( 2344 -2972 448 ) ( 2332 -3051 448 ) bricks/c_tn_m1 0 -1 247 1 1 0 0 0 +} +// brush 2458 +{ +( 2624 -2920 416 ) ( 2608 -2996 416 ) ( 2639 -3006 448 ) bricks/c_tn_m1 0 6 258 1 1 0 0 0 +( 2608 -2996 464 ) ( 2608 -2996 416 ) ( 2624 -2920 416 ) bricks/c_tn_m1 0 6 258 1 1 0 0 0 +( 2639 -3006 448 ) ( 2608 -2996 416 ) ( 2608 -2996 464 ) bricks/c_tn_m1 0 6 258 1 1 0 0 0 +( 2624 -2920 416 ) ( 2639 -3006 448 ) ( 2639 -3006 464 ) bricks/c_tn_m1 0 6 258 1 1 0 0 0 +( 2376 -2920 448 ) ( 2400 -2920 448 ) ( 2388 -3006 448 ) bricks/c_tn_m1 0 6 258 1 1 0 0 0 +} +// brush 2459 +{ +( 2656 -2923 448 ) ( 2624 -2920 416 ) ( 2639 -3006 448 ) bricks/c_tn_m1 0 6 258 1 1 0 0 0 +( 2624 -2920 464 ) ( 2624 -2920 416 ) ( 2656 -2923 448 ) bricks/c_tn_m1 0 6 258 1 1 0 0 0 +( 2639 -3006 448 ) ( 2624 -2920 416 ) ( 2624 -2920 464 ) bricks/c_tn_m1 0 6 258 1 1 0 0 0 +( 2376 -2920 448 ) ( 2400 -2920 448 ) ( 2388 -3006 448 ) bricks/c_tn_m1 0 6 258 1 1 0 0 0 +} +// brush 2460 +{ +( 3008 -2956 448 ) ( 3008 -2956 464 ) ( 3008 -2880 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2976 -3112 448 ) ( 2976 -3112 464 ) ( 3008 -2956 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2920 -3244 448 ) ( 2920 -3244 464 ) ( 2976 -3112 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2840 -3368 448 ) ( 2840 -3368 464 ) ( 2920 -3244 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2728 -3480 448 ) ( 2728 -3480 464 ) ( 2840 -3368 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2604 -3560 448 ) ( 2604 -3560 464 ) ( 2728 -3480 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2472 -3616 448 ) ( 2472 -3616 464 ) ( 2604 -3560 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2472 -3616 464 ) ( 2472 -3616 448 ) ( 2316 -3648 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2316 -3648 464 ) ( 2316 -3648 448 ) ( 2240 -3648 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1472 -2112 448 ) ( 1472 -3648 448 ) ( 3008 -3648 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3008 -3648 464 ) ( 1472 -3648 464 ) ( 1472 -2112 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2760 -2880 400 ) ( 2816 -2880 400 ) ( 2788 -2880 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2240 -3544 400 ) ( 2240 -3480 400 ) ( 2240 -3512 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2240 -3264 448 ) ( 2624 -2880 448 ) ( 2432 -3072 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2461 +{ +( 3008 -2956 224 ) ( 3008 -2956 240 ) ( 3008 -2880 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2976 -3112 224 ) ( 2976 -3112 240 ) ( 3008 -2956 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2920 -3244 224 ) ( 2920 -3244 240 ) ( 2976 -3112 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2840 -3368 224 ) ( 2840 -3368 240 ) ( 2920 -3244 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2728 -3480 224 ) ( 2728 -3480 240 ) ( 2840 -3368 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2604 -3560 224 ) ( 2604 -3560 240 ) ( 2728 -3480 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2472 -3616 224 ) ( 2472 -3616 240 ) ( 2604 -3560 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2472 -3616 240 ) ( 2472 -3616 224 ) ( 2316 -3648 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2316 -3648 240 ) ( 2316 -3648 224 ) ( 2240 -3648 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1472 -2112 224 ) ( 1472 -3648 224 ) ( 3008 -3648 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3008 -3648 240 ) ( 1472 -3648 240 ) ( 1472 -2112 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2760 -2880 176 ) ( 2816 -2880 176 ) ( 2788 -2880 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2240 -3544 176 ) ( 2240 -3480 176 ) ( 2240 -3512 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2240 -3264 224 ) ( 2624 -2880 224 ) ( 2432 -3072 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2462 +{ +( 2814 -3347 448 ) ( 2920 -3244 416 ) ( 2891 -3228 448 ) bricks/c_tn_m1 -49 8 57 1 1 0 0 0 +( 2891 -3228 448 ) ( 2920 -3244 416 ) ( 2920 -3244 464 ) bricks/c_tn_m1 -49 8 57 1 1 0 0 0 +( 2920 -3244 464 ) ( 2920 -3244 416 ) ( 2814 -3347 448 ) bricks/c_tn_m1 -49 8 57 1 1 0 0 0 +( 2814 -3424 448 ) ( 2814 -3368 448 ) ( 2920 -3396 448 ) bricks/c_tn_m1 -49 8 57 1 1 0 0 0 +} +// brush 2463 +{ +( 2814 -3347 448 ) ( 2840 -3368 416 ) ( 2920 -3244 416 ) bricks/c_tn_m1 -49 8 57 1 1 0 0 0 +( 2840 -3368 464 ) ( 2840 -3368 416 ) ( 2814 -3347 448 ) bricks/c_tn_m1 -49 8 57 1 1 0 0 0 +( 2920 -3244 416 ) ( 2840 -3368 416 ) ( 2840 -3368 464 ) bricks/c_tn_m1 -49 8 57 1 1 0 0 0 +( 2814 -3347 448 ) ( 2920 -3244 416 ) ( 2920 -3244 464 ) bricks/c_tn_m1 -49 8 57 1 1 0 0 0 +( 2814 -3424 448 ) ( 2814 -3368 448 ) ( 2920 -3396 448 ) bricks/c_tn_m1 -49 8 57 1 1 0 0 0 +} +// brush 2464 +{ +( 2464 -3632 448 ) ( 2336 -3632 448 ) ( 2336 -3264 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -3632 288 ) ( 2478 -3632 304 ) ( 2472 -3616 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -3632 384 ) ( 2478 -3632 368 ) ( 2318 -3664 368 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2318 -3664 304 ) ( 2318 -3664 288 ) ( 2316 -3648 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2472 -3616 240 ) ( 2316 -3648 240 ) ( 2394 -3632 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2316 -3576 240 ) ( 2316 -3608 240 ) ( 2478 -3592 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2465 +{ +( 2620 -3600 448 ) ( 2492 -3600 448 ) ( 2492 -3232 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2612 -3574 288 ) ( 2612 -3574 304 ) ( 2604 -3560 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2612 -3574 384 ) ( 2612 -3574 368 ) ( 2478 -3632 368 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -3632 304 ) ( 2478 -3632 288 ) ( 2472 -3616 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2604 -3560 304 ) ( 2472 -3616 304 ) ( 2538 -3588 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2472 -3576 240 ) ( 2472 -3608 240 ) ( 2612 -3592 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2466 +{ +( 2752 -3544 448 ) ( 2624 -3544 448 ) ( 2624 -3176 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2738 -3492 432 ) ( 2738 -3492 448 ) ( 2728 -3480 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2738 -3492 384 ) ( 2738 -3492 368 ) ( 2612 -3574 368 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2612 -3574 304 ) ( 2612 -3574 288 ) ( 2604 -3560 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2728 -3480 304 ) ( 2604 -3560 304 ) ( 2666 -3520 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2604 -3576 240 ) ( 2604 -3608 240 ) ( 2738 -3592 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2467 +{ +( 2728 -3378 448 ) ( 2852 -3378 448 ) ( 2852 -3480 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2840 -3368 288 ) ( 2840 -3368 448 ) ( 2728 -3480 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2738 -3492 448 ) ( 2738 -3492 288 ) ( 2728 -3480 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2738 -3492 224 ) ( 2738 -3492 384 ) ( 2852 -3378 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2840 -3368 448 ) ( 2840 -3368 288 ) ( 2852 -3378 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2728 -3576 240 ) ( 2728 -3608 240 ) ( 2852 -3592 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2468 +{ +( 2536 -3264 448 ) ( 2904 -3264 448 ) ( 2904 -3392 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2852 -3378 304 ) ( 2852 -3378 288 ) ( 2840 -3368 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2852 -3378 224 ) ( 2852 -3378 240 ) ( 2934 -3252 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2934 -3252 432 ) ( 2934 -3252 448 ) ( 2920 -3244 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2840 -3368 432 ) ( 2920 -3244 432 ) ( 2880 -3306 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2840 -3576 240 ) ( 2840 -3608 240 ) ( 2934 -3592 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2469 +{ +( 2592 -3132 448 ) ( 2960 -3132 448 ) ( 2960 -3260 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2934 -3252 448 ) ( 2934 -3252 432 ) ( 2920 -3244 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2934 -3252 224 ) ( 2934 -3252 240 ) ( 2992 -3118 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2992 -3118 432 ) ( 2992 -3118 448 ) ( 2976 -3112 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2920 -3244 432 ) ( 2976 -3112 432 ) ( 2948 -3178 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2920 -3576 240 ) ( 2920 -3608 240 ) ( 2992 -3592 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2470 +{ +( 2624 -2976 448 ) ( 2992 -2976 448 ) ( 2992 -3104 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2992 -3118 448 ) ( 2992 -3118 432 ) ( 2976 -3112 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2992 -3118 224 ) ( 2992 -3118 240 ) ( 3024 -2958 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3024 -2958 432 ) ( 3024 -2958 448 ) ( 3008 -2956 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2976 -3112 432 ) ( 3008 -2956 432 ) ( 2992 -3034 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2976 -3576 240 ) ( 2976 -3608 240 ) ( 3024 -3592 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2471 +{ +( 2624 -2976 448 ) ( 2992 -2976 448 ) ( 2992 -3104 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2592 -2992 304 ) ( 2592 -2992 288 ) ( 2608 -2918 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2592 -2992 432 ) ( 2592 -2992 448 ) ( 2608 -2996 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2608 -2918 448 ) ( 2608 -2918 432 ) ( 2624 -2920 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2624 -2920 368 ) ( 2608 -2996 368 ) ( 2616 -2958 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2592 -1424 240 ) ( 2592 -1456 240 ) ( 2624 -1440 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2472 +{ +( 2592 -3132 448 ) ( 2960 -3132 448 ) ( 2960 -3260 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2566 -3052 240 ) ( 2566 -3052 224 ) ( 2592 -2992 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2566 -3052 432 ) ( 2566 -3052 448 ) ( 2580 -3060 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2592 -2992 448 ) ( 2592 -2992 432 ) ( 2608 -2996 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2608 -2996 368 ) ( 2580 -3060 368 ) ( 2594 -3028 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2566 -1424 240 ) ( 2566 -1456 240 ) ( 2608 -1440 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2473 +{ +( 2536 -3264 448 ) ( 2904 -3264 448 ) ( 2904 -3392 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2522 -3118 304 ) ( 2522 -3118 288 ) ( 2566 -3052 288 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2522 -3118 432 ) ( 2522 -3118 448 ) ( 2536 -3128 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2566 -3052 448 ) ( 2566 -3052 432 ) ( 2580 -3060 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2580 -3060 368 ) ( 2536 -3128 368 ) ( 2558 -3094 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2522 -1424 240 ) ( 2522 -1456 240 ) ( 2580 -1440 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2474 +{ +( 2456 -3388 448 ) ( 2824 -3388 448 ) ( 2824 -3516 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -3162 240 ) ( 2478 -3162 224 ) ( 2522 -3118 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -3162 432 ) ( 2478 -3162 448 ) ( 2488 -3176 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2522 -3118 448 ) ( 2522 -3118 432 ) ( 2536 -3128 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2536 -3128 368 ) ( 2488 -3176 368 ) ( 2512 -3152 384 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -1424 240 ) ( 2478 -1456 240 ) ( 2536 -1440 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2475 +{ +( 2752 -3544 448 ) ( 2624 -3544 448 ) ( 2624 -3176 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -3162 288 ) ( 2478 -3162 304 ) ( 2412 -3206 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -3162 448 ) ( 2478 -3162 432 ) ( 2488 -3176 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2412 -3206 432 ) ( 2412 -3206 448 ) ( 2420 -3220 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2420 -3220 384 ) ( 2488 -3176 384 ) ( 2454 -3198 368 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2412 -1424 240 ) ( 2412 -1456 240 ) ( 2488 -1440 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2476 +{ +( 2620 -3600 448 ) ( 2492 -3600 448 ) ( 2492 -3232 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2412 -3206 224 ) ( 2412 -3206 240 ) ( 2352 -3232 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2412 -3206 448 ) ( 2412 -3206 432 ) ( 2420 -3220 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2352 -3232 432 ) ( 2352 -3232 448 ) ( 2356 -3248 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2356 -3248 384 ) ( 2420 -3220 384 ) ( 2388 -3234 368 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2352 -1424 240 ) ( 2352 -1456 240 ) ( 2420 -1440 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2477 +{ +( 2464 -3632 448 ) ( 2336 -3632 448 ) ( 2336 -3264 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2352 -3232 288 ) ( 2352 -3232 304 ) ( 2278 -3248 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2352 -3232 448 ) ( 2352 -3232 432 ) ( 2356 -3248 432 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2278 -3248 288 ) ( 2278 -3248 304 ) ( 2280 -3264 304 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2280 -3264 240 ) ( 2356 -3248 240 ) ( 2318 -3256 224 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2278 -1424 240 ) ( 2278 -1456 240 ) ( 2356 -1440 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2478 +{ +( 2040 -3248 224 ) ( 2040 -3664 224 ) ( 2240 -3664 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2240 -3664 240 ) ( 2040 -3664 240 ) ( 2040 -3248 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2240 -3664 240 ) ( 2240 -3248 240 ) ( 2240 -3248 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2240 -3248 240 ) ( 2040 -3248 240 ) ( 2040 -3248 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2112 -3248 240 ) ( 2112 -3664 240 ) ( 2112 -3664 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2040 -3664 240 ) ( 2240 -3664 240 ) ( 2240 -3664 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2479 +{ +( 1984 -3248 216 ) ( 1984 -3664 216 ) ( 2112 -3664 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1984 -3664 232 ) ( 1984 -3248 232 ) ( 2112 -3248 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2112 -3664 240 ) ( 2112 -3248 240 ) ( 2112 -3248 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1984 -3248 232 ) ( 1984 -3248 216 ) ( 2112 -3248 224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1984 -3248 232 ) ( 1984 -3664 232 ) ( 1984 -3664 216 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1984 -3664 216 ) ( 1984 -3664 232 ) ( 2112 -3664 240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2480 +{ +( 1856 -3248 200 ) ( 1856 -3664 200 ) ( 1984 -3664 216 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1856 -3664 216 ) ( 1856 -3248 216 ) ( 1984 -3248 232 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1984 -3664 232 ) ( 1984 -3248 232 ) ( 1984 -3248 216 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1856 -3248 216 ) ( 1856 -3248 200 ) ( 1984 -3248 216 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1856 -3248 216 ) ( 1856 -3664 216 ) ( 1856 -3664 200 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1856 -3664 200 ) ( 1856 -3664 216 ) ( 1984 -3664 232 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2481 +{ +( 1728 -3248 176 ) ( 1728 -3664 176 ) ( 1856 -3664 200 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1728 -3664 192 ) ( 1728 -3248 192 ) ( 1856 -3248 216 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1856 -3664 216 ) ( 1856 -3248 216 ) ( 1856 -3248 200 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1728 -3248 192 ) ( 1728 -3248 176 ) ( 1856 -3248 200 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1728 -3248 192 ) ( 1728 -3664 192 ) ( 1728 -3664 176 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1728 -3664 176 ) ( 1728 -3664 192 ) ( 1856 -3664 216 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2482 +{ +( 1600 -3248 144 ) ( 1600 -3664 144 ) ( 1728 -3664 176 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1600 -3664 160 ) ( 1600 -3248 160 ) ( 1728 -3248 192 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1728 -3664 192 ) ( 1728 -3248 192 ) ( 1728 -3248 176 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1600 -3248 160 ) ( 1600 -3248 144 ) ( 1728 -3248 176 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1600 -3248 160 ) ( 1600 -3664 160 ) ( 1600 -3664 144 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1600 -3664 144 ) ( 1600 -3664 160 ) ( 1728 -3664 192 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2483 +{ +( 1280 -3248 48 ) ( 1280 -3664 48 ) ( 1600 -3664 144 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1280 -3664 64 ) ( 1280 -3248 64 ) ( 1600 -3248 160 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1600 -3664 160 ) ( 1600 -3248 160 ) ( 1600 -3248 144 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1280 -3248 68 ) ( 1280 -3248 52 ) ( 1600 -3248 144 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1280 -3248 64 ) ( 1280 -3664 64 ) ( 1280 -3664 48 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1280 -3664 52 ) ( 1280 -3664 68 ) ( 1600 -3664 160 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2484 +{ +( 1152 -3248 16 ) ( 1152 -3664 16 ) ( 1280 -3664 48 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1152 -3664 32 ) ( 1152 -3248 32 ) ( 1280 -3248 64 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1280 -3664 64 ) ( 1280 -3248 64 ) ( 1280 -3248 48 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1152 -3248 32 ) ( 1152 -3248 16 ) ( 1280 -3248 48 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1152 -3248 32 ) ( 1152 -3664 32 ) ( 1152 -3664 16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1152 -3664 16 ) ( 1152 -3664 32 ) ( 1280 -3664 64 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2485 +{ +( 1024 -3248 -8 ) ( 1024 -3664 -8 ) ( 1152 -3664 16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1024 -3664 8 ) ( 1024 -3248 8 ) ( 1152 -3248 32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1152 -3664 32 ) ( 1152 -3248 32 ) ( 1152 -3248 16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1024 -3248 8 ) ( 1024 -3248 -8 ) ( 1152 -3248 16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1024 -3248 8 ) ( 1024 -3664 8 ) ( 1024 -3664 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1024 -3664 -8 ) ( 1024 -3664 8 ) ( 1152 -3664 32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2486 +{ +( 896 -3248 -24 ) ( 896 -3664 -24 ) ( 1024 -3664 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 896 -3664 -8 ) ( 896 -3248 -8 ) ( 1024 -3248 8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1024 -3664 8 ) ( 1024 -3248 8 ) ( 1024 -3248 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 896 -3248 -8 ) ( 896 -3248 -24 ) ( 1024 -3248 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 896 -3248 -8 ) ( 896 -3664 -8 ) ( 896 -3664 -24 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 896 -3664 -24 ) ( 896 -3664 -8 ) ( 1024 -3664 8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2487 +{ +( 768 -3248 -32 ) ( 768 -3664 -32 ) ( 896 -3664 -24 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 768 -3664 -16 ) ( 768 -3248 -16 ) ( 896 -3248 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 896 -3664 -8 ) ( 896 -3248 -8 ) ( 896 -3248 -24 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 768 -3248 -16 ) ( 768 -3248 -32 ) ( 896 -3248 -24 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 768 -3248 -16 ) ( 768 -3664 -16 ) ( 768 -3664 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 768 -3664 -32 ) ( 768 -3664 -16 ) ( 896 -3664 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2488 +{ +( 2040 -3232 240 ) ( 2040 -3648 240 ) ( 2240 -3648 240 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 2240 -3648 256 ) ( 2040 -3648 256 ) ( 2040 -3232 256 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 2316 -3648 240 ) ( 2316 -3648 256 ) ( 2314 -3632 256 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 2112 -3264 256 ) ( 2112 -3680 256 ) ( 2112 -3680 240 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 2316 -3648 256 ) ( 2316 -3648 240 ) ( 2112 -3648 240 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 2184 -3632 240 ) ( 2240 -3632 240 ) ( 2212 -3632 256 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2489 +{ +( 1984 -3232 232 ) ( 1984 -3648 232 ) ( 2112 -3648 240 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1984 -3648 248 ) ( 1984 -3232 248 ) ( 2112 -3232 256 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 2112 -3680 256 ) ( 2112 -3264 256 ) ( 2112 -3264 240 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1984 -3264 248 ) ( 1984 -3680 248 ) ( 1984 -3680 232 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1984 -3648 232 ) ( 1984 -3648 248 ) ( 2112 -3648 256 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 2184 -3632 232 ) ( 2240 -3632 232 ) ( 2212 -3632 256 ) bricks/c_sr_mr5 0 -1 3 1 1 0 0 0 +} +// brush 2490 +{ +( 1856 -3232 216 ) ( 1856 -3648 216 ) ( 1984 -3648 232 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1856 -3648 232 ) ( 1856 -3232 232 ) ( 1984 -3232 248 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1984 -3680 248 ) ( 1984 -3264 248 ) ( 1984 -3264 232 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1856 -3264 232 ) ( 1856 -3680 232 ) ( 1856 -3680 216 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1856 -3648 216 ) ( 1856 -3648 232 ) ( 1984 -3648 248 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 2184 -3632 216 ) ( 2240 -3632 216 ) ( 2212 -3632 248 ) bricks/c_sr_mr5 0 -13 7 1 1 0 0 0 +} +// brush 2491 +{ +( 1728 -3232 192 ) ( 1728 -3648 192 ) ( 1856 -3648 216 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1728 -3648 208 ) ( 1728 -3232 208 ) ( 1856 -3232 232 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1856 -3680 232 ) ( 1856 -3264 232 ) ( 1856 -3264 216 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1728 -3264 208 ) ( 1728 -3680 208 ) ( 1728 -3680 192 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1728 -3648 192 ) ( 1728 -3648 208 ) ( 1856 -3648 232 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 2184 -3632 192 ) ( 2240 -3632 192 ) ( 2212 -3632 232 ) bricks/c_sr_mr5 0 -15 10 1 1 0 0 0 +} +// brush 2492 +{ +( 1600 -3232 160 ) ( 1600 -3648 160 ) ( 1728 -3648 192 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1600 -3648 176 ) ( 1600 -3232 176 ) ( 1728 -3232 208 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1728 -3680 208 ) ( 1728 -3264 208 ) ( 1728 -3264 192 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1600 -3264 176 ) ( 1600 -3680 176 ) ( 1600 -3680 160 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1600 -3648 160 ) ( 1600 -3648 176 ) ( 1728 -3648 208 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 2184 -3632 160 ) ( 2240 -3632 160 ) ( 2212 -3632 208 ) bricks/c_sr_mr5 0 -9 14 1 1 0 0 0 +} +// brush 2493 +{ +( 1280 -3232 64 ) ( 1280 -3648 64 ) ( 1600 -3648 160 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1280 -3648 80 ) ( 1280 -3232 80 ) ( 1600 -3232 176 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1600 -3680 176 ) ( 1600 -3264 176 ) ( 1600 -3264 160 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1280 -3264 80 ) ( 1280 -3680 80 ) ( 1280 -3680 64 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1280 -3648 68 ) ( 1280 -3648 84 ) ( 1600 -3648 176 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 2184 -3632 64 ) ( 2240 -3632 64 ) ( 2212 -3632 176 ) bricks/c_sr_mr5 0 5 17 1 1 0 0 0 +} +// brush 2494 +{ +( 1152 -3232 32 ) ( 1152 -3648 32 ) ( 1280 -3648 64 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1152 -3648 48 ) ( 1152 -3232 48 ) ( 1280 -3232 80 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1280 -3680 80 ) ( 1280 -3264 80 ) ( 1280 -3264 64 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1152 -3264 48 ) ( 1152 -3680 48 ) ( 1152 -3680 32 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1152 -3648 32 ) ( 1152 -3648 48 ) ( 1280 -3648 80 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 2184 -3632 32 ) ( 2240 -3632 32 ) ( 2212 -3632 80 ) bricks/c_sr_mr5 0 7 14 1 1 0 0 0 +} +// brush 2495 +{ +( 1024 -3232 8 ) ( 1024 -3648 8 ) ( 1152 -3648 32 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1024 -3648 24 ) ( 1024 -3232 24 ) ( 1152 -3232 48 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1152 -3680 48 ) ( 1152 -3264 48 ) ( 1152 -3264 32 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1024 -3264 24 ) ( 1024 -3680 24 ) ( 1024 -3680 8 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1024 -3648 8 ) ( 1024 -3648 24 ) ( 1152 -3648 48 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 2184 -3632 8 ) ( 2240 -3632 8 ) ( 2212 -3632 48 ) bricks/c_sr_mr5 0 3 11 1 1 0 0 0 +} +// brush 2496 +{ +( 896 -3232 -8 ) ( 896 -3648 -8 ) ( 1024 -3648 8 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 896 -3648 8 ) ( 896 -3232 8 ) ( 1024 -3232 24 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1024 -3680 24 ) ( 1024 -3264 24 ) ( 1024 -3264 8 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 896 -3264 8 ) ( 896 -3680 8 ) ( 896 -3680 -8 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 896 -3648 -8 ) ( 896 -3648 8 ) ( 1024 -3648 24 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 2184 -3632 -8 ) ( 2240 -3632 -8 ) ( 2212 -3632 24 ) bricks/c_sr_mr5 0 10 7 1 1 0 0 0 +} +// brush 2497 +{ +( 768 -3232 -16 ) ( 768 -3648 -16 ) ( 896 -3648 -8 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 768 -3648 0 ) ( 768 -3232 0 ) ( 896 -3232 8 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 896 -3680 8 ) ( 896 -3264 8 ) ( 896 -3264 -8 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 768 -3264 0 ) ( 768 -3680 0 ) ( 768 -3680 -16 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 768 -3648 -16 ) ( 768 -3648 0 ) ( 896 -3648 8 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 2184 -3632 -16 ) ( 2240 -3632 -16 ) ( 2212 -3632 8 ) bricks/c_sr_mr5 0 -7 4 1 1 0 0 0 +} +// brush 2498 +{ +( 640 -3232 -16 ) ( 640 -3648 -16 ) ( 768 -3648 -16 ) bricks/c_sr_mr5 0 -2 -180 1 1 0 0 0 +( 768 -3648 0 ) ( 640 -3648 0 ) ( 640 -3232 0 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 768 -3680 8 ) ( 768 -3264 8 ) ( 768 -3264 -16 ) bricks/c_sr_mr5 65 -1 -90 1.000004 -1 0 0 0 +( 640 -3648 8 ) ( 768 -3648 8 ) ( 768 -3648 -16 ) bricks/c_sr_mr5 63 -2 -90 1 1 0 0 0 +( 544 -3632 0 ) ( 544 -3632 -16 ) ( 768 -3632 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 544 -3632 -16 ) ( 544 -3632 0 ) ( 552 -3648 0 ) bricks/c_sr_mr5 64 15 0 1 1 0 0 0 +} +// brush 2499 +{ +( 768 -3232 -16 ) ( 768 -3648 -16 ) ( 896 -3648 -8 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 768 -3648 0 ) ( 768 -3232 0 ) ( 896 -3232 8 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 896 -3680 8 ) ( 896 -3264 8 ) ( 896 -3264 -8 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 768 -3264 0 ) ( 768 -3264 -16 ) ( 896 -3264 -8 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 768 -3264 0 ) ( 768 -3680 0 ) ( 768 -3680 -16 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1200 -3280 -16 ) ( 1184 -3280 -16 ) ( 1192 -3280 8 ) bricks/c_sr_mr5 0 -7 4 1 1 0 0 0 +} +// brush 2500 +{ +( 896 -3232 -8 ) ( 896 -3648 -8 ) ( 1024 -3648 8 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 896 -3648 8 ) ( 896 -3232 8 ) ( 1024 -3232 24 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 1024 -3680 24 ) ( 1024 -3264 24 ) ( 1024 -3264 8 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 896 -3264 8 ) ( 896 -3264 -8 ) ( 1024 -3264 8 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 896 -3264 8 ) ( 896 -3680 8 ) ( 896 -3680 -8 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1200 -3280 -8 ) ( 1184 -3280 -8 ) ( 1192 -3280 24 ) bricks/c_sr_mr5 0 10 7 1 1 0 0 0 +} +// brush 2501 +{ +( 1024 -3232 8 ) ( 1024 -3648 8 ) ( 1152 -3648 32 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1024 -3648 24 ) ( 1024 -3232 24 ) ( 1152 -3232 48 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 1152 -3680 48 ) ( 1152 -3264 48 ) ( 1152 -3264 32 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1024 -3264 24 ) ( 1024 -3264 8 ) ( 1152 -3264 32 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1024 -3264 24 ) ( 1024 -3680 24 ) ( 1024 -3680 8 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1200 -3280 8 ) ( 1184 -3280 8 ) ( 1192 -3280 48 ) bricks/c_sr_mr5 0 3 11 1 1 0 0 0 +} +// brush 2502 +{ +( 1152 -3232 32 ) ( 1152 -3648 32 ) ( 1280 -3648 64 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1152 -3648 48 ) ( 1152 -3232 48 ) ( 1280 -3232 80 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 1280 -3680 80 ) ( 1280 -3264 80 ) ( 1280 -3264 64 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1152 -3264 48 ) ( 1152 -3264 32 ) ( 1280 -3264 64 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1152 -3264 48 ) ( 1152 -3680 48 ) ( 1152 -3680 32 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1200 -3280 32 ) ( 1184 -3280 32 ) ( 1192 -3280 80 ) bricks/c_sr_mr5 0 7 14 1 1 0 0 0 +} +// brush 2503 +{ +( 1280 -3232 64 ) ( 1280 -3648 64 ) ( 1600 -3648 160 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1280 -3648 80 ) ( 1280 -3232 80 ) ( 1600 -3232 176 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 1600 -3680 176 ) ( 1600 -3264 176 ) ( 1600 -3264 160 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1280 -3264 84 ) ( 1280 -3264 68 ) ( 1600 -3264 160 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1280 -3264 80 ) ( 1280 -3680 80 ) ( 1280 -3680 64 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1200 -3280 64 ) ( 1184 -3280 64 ) ( 1192 -3280 176 ) bricks/c_sr_mr5 0 4 17 1 1 0 0 0 +} +// brush 2504 +{ +( 1600 -3232 160 ) ( 1600 -3648 160 ) ( 1728 -3648 192 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1600 -3648 176 ) ( 1600 -3232 176 ) ( 1728 -3232 208 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 1728 -3680 208 ) ( 1728 -3264 208 ) ( 1728 -3264 192 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1600 -3264 176 ) ( 1600 -3264 160 ) ( 1728 -3264 192 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1600 -3264 176 ) ( 1600 -3680 176 ) ( 1600 -3680 160 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1200 -3280 160 ) ( 1184 -3280 160 ) ( 1192 -3280 208 ) bricks/c_sr_mr5 0 -9 14 1 1 0 0 0 +} +// brush 2505 +{ +( 1728 -3232 192 ) ( 1728 -3648 192 ) ( 1856 -3648 216 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1728 -3648 208 ) ( 1728 -3232 208 ) ( 1856 -3232 232 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 1856 -3680 232 ) ( 1856 -3264 232 ) ( 1856 -3264 216 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1728 -3264 208 ) ( 1728 -3264 192 ) ( 1856 -3264 216 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1728 -3264 208 ) ( 1728 -3680 208 ) ( 1728 -3680 192 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1200 -3280 192 ) ( 1184 -3280 192 ) ( 1192 -3280 232 ) bricks/c_sr_mr5 0 -15 11 1 1 0 0 0 +} +// brush 2506 +{ +( 1856 -3232 216 ) ( 1856 -3648 216 ) ( 1984 -3648 232 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1856 -3648 232 ) ( 1856 -3232 232 ) ( 1984 -3232 248 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 1984 -3680 248 ) ( 1984 -3264 248 ) ( 1984 -3264 232 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1856 -3264 232 ) ( 1856 -3264 216 ) ( 1984 -3264 232 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1856 -3264 232 ) ( 1856 -3680 232 ) ( 1856 -3680 216 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1200 -3280 216 ) ( 1184 -3280 216 ) ( 1192 -3280 248 ) bricks/c_sr_mr5 0 -13 7 1 1 0 0 0 +} +// brush 2507 +{ +( 1984 -3232 232 ) ( 1984 -3648 232 ) ( 2112 -3648 240 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1984 -3648 248 ) ( 1984 -3232 248 ) ( 2112 -3232 256 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 2112 -3680 256 ) ( 2112 -3264 256 ) ( 2112 -3264 240 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1984 -3264 248 ) ( 1984 -3264 232 ) ( 2112 -3264 240 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1984 -3264 248 ) ( 1984 -3680 248 ) ( 1984 -3680 232 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 1200 -3280 232 ) ( 1184 -3280 232 ) ( 1192 -3280 256 ) bricks/c_sr_mr5 0 -1 3 1 1 0 0 0 +} +// brush 2508 +{ +( 2040 -3232 240 ) ( 2040 -3648 240 ) ( 2240 -3648 240 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 2240 -3648 256 ) ( 2040 -3648 256 ) ( 2040 -3232 256 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 2282 -3280 240 ) ( 2282 -3280 256 ) ( 2280 -3264 256 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 2240 -3264 256 ) ( 2040 -3264 256 ) ( 2040 -3264 240 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 2112 -3264 256 ) ( 2112 -3680 256 ) ( 2112 -3680 240 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 2282 -3280 256 ) ( 2282 -3280 240 ) ( 2112 -3280 240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2509 +{ +( 2040 -3216 240 ) ( 2040 -3632 240 ) ( 2240 -3632 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2248 -3632 448 ) ( 2048 -3632 448 ) ( 2048 -3216 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2280 -3264 240 ) ( 2280 -3264 448 ) ( 2278 -3248 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2240 -3248 256 ) ( 2040 -3248 256 ) ( 2040 -3248 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2112 -3248 256 ) ( 2112 -3664 256 ) ( 2112 -3664 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2280 -3264 448 ) ( 2280 -3264 240 ) ( 2112 -3264 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2510 +{ +( 640 -3616 -16 ) ( 640 -4032 -16 ) ( 768 -4032 -16 ) bricks/c_tn_m3 128 0 0 1 1 0 0 0 +( 768 -4032 192 ) ( 640 -4032 192 ) ( 640 -3616 192 ) bricks/c_tn_m3 128 0 0 1 1 0 0 0 +( 768 -4064 8 ) ( 768 -3648 8 ) ( 768 -3648 -16 ) bricks/c_tn_m3 128 0 0 1 1 0 0 0 +( 552 -3648 192 ) ( 552 -3648 -16 ) ( 768 -3648 -16 ) bricks/c_tn_m3 128 0 0 1 1 0 0 0 +( 1200 -3664 -16 ) ( 1184 -3664 -16 ) ( 1192 -3664 0 ) bricks/c_tn_m3 128 0 0 1 1 0 0 0 +( 552 -3648 -16 ) ( 552 -3648 192 ) ( 600 -3664 192 ) bricks/c_tn_m3 128 0 0 1 1 0 0 0 +} +// brush 2511 +{ +( 768 -3616 -16 ) ( 768 -4032 -16 ) ( 896 -4032 -8 ) bricks/c_tn_m3 -10 -55 4 1 1 0 0 0 +( 768 -4032 192 ) ( 768 -3616 192 ) ( 896 -3616 200 ) bricks/c_tn_m3 -10 -55 4 1 1 0 0 0 +( 896 -4064 8 ) ( 896 -3648 8 ) ( 896 -3648 -8 ) bricks/c_tn_m3 -10 -55 4 1 1 0 0 0 +( 768 -3648 0 ) ( 768 -3648 -16 ) ( 896 -3648 -8 ) bricks/c_tn_m3 -10 -55 4 1 1 0 0 0 +( 768 -3648 0 ) ( 768 -4064 0 ) ( 768 -4064 -16 ) bricks/c_tn_m3 -10 -55 4 1 1 0 0 0 +( 1200 -3664 -16 ) ( 1184 -3664 -16 ) ( 1192 -3664 8 ) bricks/c_tn_m3 -10 -55 4 1 1 0 0 0 +} +// brush 2512 +{ +( 896 -3616 -8 ) ( 896 -4032 -8 ) ( 1024 -4032 8 ) bricks/c_tn_m3 -23 -102 7 1 1 0 0 0 +( 896 -4032 200 ) ( 896 -3616 200 ) ( 1024 -3616 216 ) bricks/c_tn_m3 -23 -102 7 1 1 0 0 0 +( 1024 -4064 24 ) ( 1024 -3648 24 ) ( 1024 -3648 8 ) bricks/c_tn_m3 -23 -102 7 1 1 0 0 0 +( 896 -3648 8 ) ( 896 -3648 -8 ) ( 1024 -3648 8 ) bricks/c_tn_m3 -23 -102 7 1 1 0 0 0 +( 896 -3648 8 ) ( 896 -4064 8 ) ( 896 -4064 -8 ) bricks/c_tn_m3 -23 -102 7 1 1 0 0 0 +( 1200 -3664 -8 ) ( 1184 -3664 -8 ) ( 1192 -3664 24 ) bricks/c_tn_m3 -23 -102 7 1 1 0 0 0 +} +// brush 2513 +{ +( 1024 -3616 8 ) ( 1024 -4032 8 ) ( 1152 -4032 32 ) bricks/c_tn_m3 -16 83 11 1 1 0 0 0 +( 1024 -4032 216 ) ( 1024 -3616 216 ) ( 1152 -3616 240 ) bricks/c_tn_m3 -16 83 11 1 1 0 0 0 +( 1152 -4064 48 ) ( 1152 -3648 48 ) ( 1152 -3648 32 ) bricks/c_tn_m3 -16 83 11 1 1 0 0 0 +( 1024 -3648 24 ) ( 1024 -3648 8 ) ( 1152 -3648 32 ) bricks/c_tn_m3 -16 83 11 1 1 0 0 0 +( 1024 -3648 24 ) ( 1024 -4064 24 ) ( 1024 -4064 8 ) bricks/c_tn_m3 -16 83 11 1 1 0 0 0 +( 1200 -3664 8 ) ( 1184 -3664 8 ) ( 1192 -3664 48 ) bricks/c_tn_m3 -16 83 11 1 1 0 0 0 +} +// brush 2514 +{ +( 1152 -3616 32 ) ( 1152 -4032 32 ) ( 1280 -4032 64 ) bricks/c_tn_m3 -36 22 14 1 1 0 0 0 +( 1152 -4032 240 ) ( 1152 -3616 240 ) ( 1280 -3616 272 ) bricks/c_tn_m3 -36 22 14 1 1 0 0 0 +( 1280 -4064 80 ) ( 1280 -3648 80 ) ( 1280 -3648 64 ) bricks/c_tn_m3 -36 22 14 1 1 0 0 0 +( 1152 -3648 48 ) ( 1152 -3648 32 ) ( 1280 -3648 64 ) bricks/c_tn_m3 -36 22 14 1 1 0 0 0 +( 1152 -3648 48 ) ( 1152 -4064 48 ) ( 1152 -4064 32 ) bricks/c_tn_m3 -36 22 14 1 1 0 0 0 +( 1200 -3664 32 ) ( 1184 -3664 32 ) ( 1192 -3664 80 ) bricks/c_tn_m3 -36 22 14 1 1 0 0 0 +} +// brush 2515 +{ +( 1280 -3616 64 ) ( 1280 -4032 64 ) ( 1600 -4032 160 ) bricks/c_tn_m3 -25 -45 17 1 1 0 0 0 +( 1280 -4032 272 ) ( 1280 -3616 272 ) ( 1600 -3616 368 ) bricks/c_tn_m3 -25 -45 17 1 1 0 0 0 +( 1600 -4064 176 ) ( 1600 -3648 176 ) ( 1600 -3648 160 ) bricks/c_tn_m3 -25 -45 17 1 1 0 0 0 +( 1280 -3648 84 ) ( 1280 -3648 68 ) ( 1600 -3648 160 ) bricks/c_tn_m3 -25 -45 17 1 1 0 0 0 +( 1280 -3648 80 ) ( 1280 -4064 80 ) ( 1280 -4064 64 ) bricks/c_tn_m3 -25 -45 17 1 1 0 0 0 +( 1200 -3664 64 ) ( 1184 -3664 64 ) ( 1192 -3664 176 ) bricks/c_tn_m3 -25 -45 17 1 1 0 0 0 +} +// brush 2516 +{ +( 1600 -3616 160 ) ( 1600 -4032 160 ) ( 1728 -4032 192 ) bricks/c_tn_m3 -31 38 14 1 1 0 0 0 +( 1632 -4032 376 ) ( 1632 -3616 376 ) ( 1760 -3616 408 ) bricks/c_tn_m3 -31 38 14 1 1 0 0 0 +( 1728 -4064 208 ) ( 1728 -3648 208 ) ( 1728 -3648 192 ) bricks/c_tn_m3 -31 38 14 1 1 0 0 0 +( 1600 -3648 176 ) ( 1600 -3648 160 ) ( 1728 -3648 192 ) bricks/c_tn_m3 -31 38 14 1 1 0 0 0 +( 1600 -3648 176 ) ( 1600 -4064 176 ) ( 1600 -4064 160 ) bricks/c_tn_m3 -31 38 14 1 1 0 0 0 +( 1200 -3664 160 ) ( 1184 -3664 160 ) ( 1192 -3664 208 ) bricks/c_tn_m3 -31 38 14 1 1 0 0 0 +} +// brush 2517 +{ +( 1728 -3616 192 ) ( 1728 -4032 192 ) ( 1856 -4032 216 ) bricks/c_tn_m3 -39 -127 11 1 1 0 0 0 +( 1856 -3648 424 ) ( 1856 -3664 424 ) ( 1728 -3664 400 ) bricks/c_tn_m3 -39 -127 11 1 1 0 0 0 +( 1856 -3664 424 ) ( 1856 -3648 424 ) ( 1856 -3648 216 ) bricks/c_tn_m3 -39 -127 11 1 1 0 0 0 +( 1728 -3648 208 ) ( 1728 -3648 192 ) ( 1856 -3648 216 ) bricks/c_tn_m3 -39 -127 11 1 1 0 0 0 +( 1728 -3648 400 ) ( 1728 -3664 400 ) ( 1728 -3664 192 ) bricks/c_tn_m3 -39 -127 11 1 1 0 0 0 +( 1200 -3664 192 ) ( 1184 -3664 192 ) ( 1192 -3664 232 ) bricks/c_tn_m3 -39 -127 11 1 1 0 0 0 +} +// brush 2518 +{ +( 1856 -3616 216 ) ( 1856 -4032 216 ) ( 1984 -4032 232 ) bricks/c_tn_m3 -35 4 7 1 1 0 0 0 +( 1856 -3664 424 ) ( 1856 -3648 424 ) ( 1984 -3648 440 ) bricks/c_tn_m3 -35 4 7 1 1 0 0 0 +( 1984 -3664 440 ) ( 1984 -3648 440 ) ( 1984 -3648 232 ) bricks/c_tn_m3 -35 4 7 1 1 0 0 0 +( 1856 -3648 232 ) ( 1856 -3648 216 ) ( 1984 -3648 232 ) bricks/c_tn_m3 -35 4 7 1 1 0 0 0 +( 1856 -3648 424 ) ( 1856 -3664 424 ) ( 1856 -3664 216 ) bricks/c_tn_m3 -35 4 7 1 1 0 0 0 +( 1200 -3664 216 ) ( 1184 -3664 216 ) ( 1192 -3664 248 ) bricks/c_tn_m3 -35 4 7 1 1 0 0 0 +} +// brush 2519 +{ +( 1984 -3616 232 ) ( 1984 -4032 232 ) ( 2112 -4032 240 ) bricks/c_tn_m3 -24 -148 4 1 1 0 0 0 +( 1984 -3664 440 ) ( 1984 -3648 440 ) ( 2112 -3648 448 ) bricks/c_tn_m3 -24 -148 4 1 1 0 0 0 +( 2112 -3664 448 ) ( 2112 -3648 448 ) ( 2112 -3648 240 ) bricks/c_tn_m3 -24 -148 4 1 1 0 0 0 +( 1984 -3648 248 ) ( 1984 -3648 232 ) ( 2112 -3648 240 ) bricks/c_tn_m3 -24 -148 4 1 1 0 0 0 +( 1984 -3648 440 ) ( 1984 -3664 440 ) ( 1984 -3664 232 ) bricks/c_tn_m3 -24 -148 4 1 1 0 0 0 +( 1200 -3664 232 ) ( 1184 -3664 232 ) ( 1192 -3664 256 ) bricks/c_tn_m3 -24 -148 4 1 1 0 0 0 +} +// brush 2520 +{ +( 2040 -3616 240 ) ( 2040 -4032 240 ) ( 2240 -4032 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2248 -4032 448 ) ( 2048 -4032 448 ) ( 2048 -3616 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2318 -3664 240 ) ( 2318 -3664 448 ) ( 2316 -3648 448 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2240 -3648 256 ) ( 2040 -3648 256 ) ( 2040 -3648 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2112 -3648 256 ) ( 2112 -4064 256 ) ( 2112 -4064 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2318 -3664 448 ) ( 2318 -3664 240 ) ( 2112 -3664 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2521 +{ +( 768 -3248 192 ) ( 768 -3664 192 ) ( 896 -3664 200 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 768 -3664 208 ) ( 768 -3248 208 ) ( 896 -3248 216 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 896 -3664 216 ) ( 896 -3248 216 ) ( 896 -3248 200 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 768 -3248 208 ) ( 768 -3248 192 ) ( 896 -3248 200 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 768 -3248 208 ) ( 768 -3664 208 ) ( 768 -3664 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 768 -3664 192 ) ( 768 -3664 208 ) ( 896 -3664 216 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2522 +{ +( 896 -3248 200 ) ( 896 -3664 200 ) ( 1024 -3664 216 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 896 -3664 216 ) ( 896 -3248 216 ) ( 1024 -3248 232 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1024 -3664 232 ) ( 1024 -3248 232 ) ( 1024 -3248 216 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 896 -3248 216 ) ( 896 -3248 200 ) ( 1024 -3248 216 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 896 -3248 216 ) ( 896 -3664 216 ) ( 896 -3664 200 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 896 -3664 200 ) ( 896 -3664 216 ) ( 1024 -3664 232 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2523 +{ +( 1024 -3248 216 ) ( 1024 -3664 216 ) ( 1152 -3664 240 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1024 -3664 232 ) ( 1024 -3248 232 ) ( 1152 -3248 256 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1152 -3664 256 ) ( 1152 -3248 256 ) ( 1152 -3248 240 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1024 -3248 232 ) ( 1024 -3248 216 ) ( 1152 -3248 240 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1024 -3248 232 ) ( 1024 -3664 232 ) ( 1024 -3664 216 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1024 -3664 216 ) ( 1024 -3664 232 ) ( 1152 -3664 256 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2524 +{ +( 1152 -3248 240 ) ( 1152 -3664 240 ) ( 1280 -3664 272 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1152 -3664 256 ) ( 1152 -3248 256 ) ( 1280 -3248 288 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1280 -3664 288 ) ( 1280 -3248 288 ) ( 1280 -3248 272 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1152 -3248 256 ) ( 1152 -3248 240 ) ( 1280 -3248 272 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1152 -3248 256 ) ( 1152 -3664 256 ) ( 1152 -3664 240 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1152 -3664 240 ) ( 1152 -3664 256 ) ( 1280 -3664 288 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2525 +{ +( 1280 -3248 272 ) ( 1280 -3664 272 ) ( 1600 -3664 368 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1280 -3664 288 ) ( 1280 -3248 288 ) ( 1600 -3248 384 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1600 -3664 384 ) ( 1600 -3248 384 ) ( 1600 -3248 368 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1280 -3248 292 ) ( 1280 -3248 276 ) ( 1600 -3248 368 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1280 -3248 288 ) ( 1280 -3664 288 ) ( 1280 -3664 272 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1280 -3664 276 ) ( 1280 -3664 292 ) ( 1600 -3664 384 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2526 +{ +( 1600 -3248 368 ) ( 1600 -3664 368 ) ( 1728 -3664 400 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1600 -3664 384 ) ( 1600 -3248 384 ) ( 1728 -3248 416 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1728 -3664 416 ) ( 1728 -3248 416 ) ( 1728 -3248 400 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1600 -3248 384 ) ( 1600 -3248 368 ) ( 1728 -3248 400 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1600 -3248 384 ) ( 1600 -3664 384 ) ( 1600 -3664 368 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1600 -3664 368 ) ( 1600 -3664 384 ) ( 1728 -3664 416 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2527 +{ +( 1728 -3248 400 ) ( 1728 -3664 400 ) ( 1856 -3664 424 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1728 -3664 416 ) ( 1728 -3248 416 ) ( 1856 -3248 440 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1856 -3664 440 ) ( 1856 -3248 440 ) ( 1856 -3248 424 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1728 -3248 416 ) ( 1728 -3248 400 ) ( 1856 -3248 424 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1728 -3248 416 ) ( 1728 -3664 416 ) ( 1728 -3664 400 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1728 -3664 400 ) ( 1728 -3664 416 ) ( 1856 -3664 440 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2528 +{ +( 1856 -3248 424 ) ( 1856 -3664 424 ) ( 1984 -3664 440 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1856 -3664 440 ) ( 1856 -3248 440 ) ( 1984 -3248 456 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1984 -3664 456 ) ( 1984 -3248 456 ) ( 1984 -3248 440 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1856 -3248 440 ) ( 1856 -3248 424 ) ( 1984 -3248 440 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1856 -3248 440 ) ( 1856 -3664 440 ) ( 1856 -3664 424 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1856 -3664 424 ) ( 1856 -3664 440 ) ( 1984 -3664 456 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2529 +{ +( 1984 -3248 440 ) ( 1984 -3664 440 ) ( 2112 -3664 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1984 -3664 456 ) ( 1984 -3248 456 ) ( 2112 -3248 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2112 -3664 464 ) ( 2112 -3248 464 ) ( 2112 -3248 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1984 -3248 456 ) ( 1984 -3248 440 ) ( 2112 -3248 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1984 -3248 456 ) ( 1984 -3664 456 ) ( 1984 -3664 440 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1984 -3664 440 ) ( 1984 -3664 456 ) ( 2112 -3664 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2530 +{ +( 2040 -3248 448 ) ( 2040 -3664 448 ) ( 2240 -3664 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2240 -3664 464 ) ( 2040 -3664 464 ) ( 2040 -3248 464 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2240 -3664 464 ) ( 2240 -3248 464 ) ( 2240 -3248 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2240 -3248 464 ) ( 2040 -3248 464 ) ( 2040 -3248 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2112 -3248 464 ) ( 2112 -3664 464 ) ( 2112 -3664 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2040 -3664 464 ) ( 2240 -3664 464 ) ( 2240 -3664 448 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2531 +{ +( 1984 -3648 440 ) ( 1984 -3616 440 ) ( 2112 -3616 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1984 -3648 408 ) ( 1984 -3648 440 ) ( 2112 -3648 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1984 -3616 440 ) ( 1984 -3648 408 ) ( 2112 -3648 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1984 -3632 440 ) ( 1984 -3648 408 ) ( 1984 -3616 408 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2112 -3632 416 ) ( 2112 -3648 416 ) ( 2112 -3640 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2532 +{ +( 1728 -3648 400 ) ( 1728 -3616 400 ) ( 1856 -3616 424 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1728 -3648 368 ) ( 1728 -3648 400 ) ( 1856 -3648 424 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1728 -3616 400 ) ( 1728 -3648 368 ) ( 1856 -3648 392 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1728 -3632 400 ) ( 1728 -3648 368 ) ( 1728 -3616 368 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -3632 392 ) ( 1856 -3648 392 ) ( 1856 -3640 424 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2533 +{ +( 1600 -3648 368 ) ( 1600 -3616 368 ) ( 1728 -3616 400 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1600 -3648 336 ) ( 1600 -3648 368 ) ( 1728 -3648 400 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1600 -3616 368 ) ( 1600 -3648 336 ) ( 1728 -3648 368 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1600 -3632 368 ) ( 1600 -3648 336 ) ( 1600 -3616 336 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1728 -3632 368 ) ( 1728 -3648 368 ) ( 1728 -3640 400 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2534 +{ +( 1024 -3648 216 ) ( 1024 -3616 216 ) ( 1152 -3616 240 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1024 -3648 184 ) ( 1024 -3648 216 ) ( 1152 -3648 240 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1024 -3616 216 ) ( 1024 -3648 184 ) ( 1152 -3648 208 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1024 -3632 216 ) ( 1024 -3648 184 ) ( 1024 -3616 184 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1152 -3632 208 ) ( 1152 -3648 208 ) ( 1152 -3640 240 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2535 +{ +( 768 -3648 192 ) ( 768 -3616 192 ) ( 896 -3616 200 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 -3648 160 ) ( 768 -3648 192 ) ( 896 -3648 200 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 -3616 192 ) ( 768 -3648 160 ) ( 896 -3648 168 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 -3632 192 ) ( 768 -3648 160 ) ( 768 -3616 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 896 -3632 168 ) ( 896 -3648 168 ) ( 896 -3640 200 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2536 +{ +( 1984 -3296 440 ) ( 1984 -3264 440 ) ( 2112 -3264 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1984 -3264 440 ) ( 1984 -3264 408 ) ( 2112 -3264 416 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1984 -3264 408 ) ( 1984 -3296 440 ) ( 2112 -3296 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1984 -3296 408 ) ( 1984 -3264 408 ) ( 1984 -3280 440 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 -3272 416 ) ( 2112 -3296 416 ) ( 2112 -3284 448 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2537 +{ +( 1728 -3296 400 ) ( 1728 -3264 400 ) ( 1856 -3264 424 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1728 -3264 400 ) ( 1728 -3264 368 ) ( 1856 -3264 392 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1728 -3264 368 ) ( 1728 -3296 400 ) ( 1856 -3296 424 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1728 -3296 368 ) ( 1728 -3264 368 ) ( 1728 -3280 400 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1856 -3272 392 ) ( 1856 -3296 392 ) ( 1856 -3284 424 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2538 +{ +( 1600 -3296 368 ) ( 1600 -3264 368 ) ( 1728 -3264 400 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1600 -3264 368 ) ( 1600 -3264 336 ) ( 1728 -3264 368 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1600 -3264 336 ) ( 1600 -3296 368 ) ( 1728 -3296 400 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1600 -3296 336 ) ( 1600 -3264 336 ) ( 1600 -3280 368 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1728 -3272 368 ) ( 1728 -3296 368 ) ( 1728 -3284 400 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2539 +{ +( 1024 -3296 216 ) ( 1024 -3264 216 ) ( 1152 -3264 240 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1024 -3264 216 ) ( 1024 -3264 184 ) ( 1152 -3264 208 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1024 -3264 184 ) ( 1024 -3296 216 ) ( 1152 -3296 240 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1024 -3296 168 ) ( 1024 -3264 168 ) ( 1024 -3280 200 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1152 -3272 208 ) ( 1152 -3296 208 ) ( 1152 -3284 240 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2540 +{ +( 768 -3296 192 ) ( 768 -3264 192 ) ( 896 -3264 200 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 -3264 192 ) ( 768 -3264 160 ) ( 896 -3264 168 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 -3264 160 ) ( 768 -3296 192 ) ( 896 -3296 200 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 -3296 144 ) ( 768 -3264 144 ) ( 768 -3280 176 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 896 -3272 168 ) ( 896 -3296 168 ) ( 896 -3284 200 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2541 +{ +( 2112 -3616 448 ) ( 2155 -3616 448 ) ( 2152 -3648 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2152 -3648 448 ) ( 2152 -3648 416 ) ( 2112 -3648 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2152 -3648 416 ) ( 2155 -3616 448 ) ( 2112 -3616 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2112 -3632 448 ) ( 2112 -3648 416 ) ( 2112 -3616 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2176 -3624 416 ) ( 2176 -3648 416 ) ( 2176 -3636 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2542 +{ +( 2112 -3616 448 ) ( 2155 -3616 448 ) ( 2152 -3648 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2152 -3648 448 ) ( 2152 -3648 416 ) ( 2112 -3648 416 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2152 -3648 416 ) ( 2155 -3616 448 ) ( 2112 -3616 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2240 -3632 416 ) ( 2240 -3648 416 ) ( 2240 -3640 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2176 -3648 416 ) ( 2176 -3624 416 ) ( 2176 -3636 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2176 -3640 416 ) ( 2184 -3640 416 ) ( 2180 -3640 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2543 +{ +( 2112 -3616 448 ) ( 2155 -3616 448 ) ( 2152 -3648 448 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 2152 -3648 416 ) ( 2155 -3616 448 ) ( 2112 -3616 448 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 2240 -3632 416 ) ( 2240 -3648 416 ) ( 2240 -3640 448 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 2176 -3648 416 ) ( 2176 -3624 416 ) ( 2176 -3636 448 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 2184 -3640 416 ) ( 2176 -3640 416 ) ( 2180 -3640 448 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 2176 -3624 424 ) ( 2184 -3624 424 ) ( 2180 -3624 448 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +} +// brush 2544 +{ +( 2112 -3616 448 ) ( 2155 -3616 448 ) ( 2152 -3648 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2152 -3648 416 ) ( 2155 -3616 448 ) ( 2112 -3616 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2240 -3632 416 ) ( 2240 -3648 416 ) ( 2240 -3640 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2176 -3648 416 ) ( 2176 -3624 416 ) ( 2176 -3636 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2184 -3624 424 ) ( 2176 -3624 424 ) ( 2180 -3624 448 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2545 +{ +( 2188 -3264 448 ) ( 2185 -3296 448 ) ( 2112 -3296 448 ) common/li_pv_v4a 0 7 0 1 1 0 1 7000 +( 2112 -3296 448 ) ( 2185 -3296 448 ) ( 2188 -3264 416 ) common/li_pv_v4a 0 7 0 1 1 0 1 7000 +( 2240 -3272 416 ) ( 2240 -3296 416 ) ( 2240 -3284 448 ) common/li_pv_v4a 0 7 0 1 1 0 1 7000 +( 2176 -3296 416 ) ( 2176 -3280 416 ) ( 2176 -3288 448 ) common/li_pv_v4a 0 7 0 1 1 0 1 7000 +( 2192 -3288 416 ) ( 2176 -3288 416 ) ( 2184 -3288 448 ) common/li_pv_v4a 0 7 0 1 1 0 1 7000 +( 2176 -3272 416 ) ( 2192 -3272 416 ) ( 2184 -3272 448 ) common/li_pv_v4a 0 7 0 1 1 0 1 7000 +} +// brush 2546 +{ +( 1856 -3296 424 ) ( 1856 -3264 424 ) ( 1984 -3264 440 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1856 -3264 424 ) ( 1856 -3264 392 ) ( 1984 -3264 408 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1856 -3264 392 ) ( 1856 -3296 424 ) ( 1984 -3296 440 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1984 -3272 408 ) ( 1984 -3296 408 ) ( 1984 -3284 440 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1920 -3296 392 ) ( 1920 -3272 392 ) ( 1920 -3284 440 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2547 +{ +( 1856 -3296 424 ) ( 1856 -3264 424 ) ( 1984 -3264 440 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1856 -3264 392 ) ( 1856 -3296 424 ) ( 1984 -3296 440 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1856 -3296 392 ) ( 1856 -3264 392 ) ( 1856 -3280 424 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1920 -3272 392 ) ( 1920 -3296 392 ) ( 1920 -3284 440 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1856 -3288 392 ) ( 1864 -3288 392 ) ( 1860 -3288 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2548 +{ +( 1856 -3296 424 ) ( 1856 -3264 424 ) ( 1984 -3264 440 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1856 -3264 392 ) ( 1856 -3296 424 ) ( 1984 -3296 440 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1856 -3296 392 ) ( 1856 -3264 392 ) ( 1856 -3280 424 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1920 -3272 392 ) ( 1920 -3296 392 ) ( 1920 -3284 440 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1864 -3288 392 ) ( 1856 -3288 392 ) ( 1860 -3288 432 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 1856 -3272 392 ) ( 1872 -3272 392 ) ( 1864 -3272 432 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +} +// brush 2549 +{ +( 1856 -3296 424 ) ( 1856 -3264 424 ) ( 1984 -3264 440 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1856 -3264 424 ) ( 1856 -3264 392 ) ( 1984 -3264 408 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1856 -3264 392 ) ( 1856 -3296 424 ) ( 1984 -3296 440 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1856 -3296 392 ) ( 1856 -3264 392 ) ( 1856 -3280 424 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1920 -3272 392 ) ( 1920 -3296 392 ) ( 1920 -3284 440 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1872 -3272 392 ) ( 1856 -3272 392 ) ( 1864 -3272 432 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2550 +{ +( 1856 -3648 424 ) ( 1856 -3616 424 ) ( 1984 -3616 440 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -3648 392 ) ( 1856 -3648 424 ) ( 1984 -3648 440 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -3616 424 ) ( 1856 -3648 392 ) ( 1984 -3648 408 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1984 -3632 408 ) ( 1984 -3648 408 ) ( 1984 -3640 440 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1920 -3640 392 ) ( 1920 -3624 392 ) ( 1920 -3632 440 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2551 +{ +( 1856 -3648 424 ) ( 1856 -3616 424 ) ( 1984 -3616 440 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -3648 392 ) ( 1856 -3648 424 ) ( 1984 -3648 440 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -3616 424 ) ( 1856 -3648 392 ) ( 1984 -3648 408 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -3632 424 ) ( 1856 -3648 392 ) ( 1856 -3616 392 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1920 -3624 392 ) ( 1920 -3640 392 ) ( 1920 -3632 440 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -3640 392 ) ( 1864 -3640 392 ) ( 1860 -3640 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2552 +{ +( 1856 -3648 424 ) ( 1856 -3616 424 ) ( 1984 -3616 440 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1856 -3616 424 ) ( 1856 -3648 392 ) ( 1984 -3648 408 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1856 -3632 424 ) ( 1856 -3648 392 ) ( 1856 -3616 392 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1920 -3624 392 ) ( 1920 -3640 392 ) ( 1920 -3632 440 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1864 -3640 392 ) ( 1856 -3640 392 ) ( 1860 -3640 432 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 1856 -3624 400 ) ( 1872 -3624 400 ) ( 1864 -3624 432 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +} +// brush 2553 +{ +( 1856 -3648 424 ) ( 1856 -3616 424 ) ( 1984 -3616 440 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -3616 424 ) ( 1856 -3648 392 ) ( 1984 -3648 408 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -3632 424 ) ( 1856 -3648 392 ) ( 1856 -3616 392 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1920 -3624 392 ) ( 1920 -3640 392 ) ( 1920 -3632 440 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1872 -3624 400 ) ( 1856 -3624 400 ) ( 1864 -3624 432 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2554 +{ +( 1280 -3296 272 ) ( 1280 -3264 272 ) ( 1600 -3264 368 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 -3264 272 ) ( 1280 -3264 240 ) ( 1600 -3264 336 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 -3264 240 ) ( 1280 -3296 272 ) ( 1600 -3296 368 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 -3296 240 ) ( 1280 -3264 240 ) ( 1280 -3280 272 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1536 -3296 240 ) ( 1536 -3336 240 ) ( 1536 -3316 368 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2555 +{ +( 1280 -3648 272 ) ( 1280 -3616 272 ) ( 1600 -3616 368 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 -3648 240 ) ( 1280 -3648 272 ) ( 1600 -3648 368 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 -3616 272 ) ( 1280 -3648 240 ) ( 1600 -3648 336 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 -3632 272 ) ( 1280 -3648 240 ) ( 1280 -3616 240 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1536 -3296 240 ) ( 1536 -3336 240 ) ( 1536 -3316 368 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2556 +{ +( 1280 -3296 272 ) ( 1280 -3264 272 ) ( 1600 -3264 368 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 -3264 240 ) ( 1280 -3296 272 ) ( 1600 -3296 368 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1600 -3272 336 ) ( 1600 -3296 336 ) ( 1600 -3284 368 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1536 -3336 240 ) ( 1536 -3296 240 ) ( 1536 -3316 368 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1536 -3288 317 ) ( 1552 -3288 317 ) ( 1544 -3288 368 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2557 +{ +( 1280 -3296 272 ) ( 1280 -3264 272 ) ( 1600 -3264 368 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1280 -3264 240 ) ( 1280 -3296 272 ) ( 1600 -3296 368 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1600 -3272 336 ) ( 1600 -3296 336 ) ( 1600 -3284 368 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1536 -3336 240 ) ( 1536 -3296 240 ) ( 1536 -3316 368 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1552 -3288 317 ) ( 1536 -3288 317 ) ( 1544 -3288 368 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 1536 -3272 317 ) ( 1552 -3272 317 ) ( 1544 -3272 368 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +} +// brush 2558 +{ +( 1280 -3296 272 ) ( 1280 -3264 272 ) ( 1600 -3264 368 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 -3264 272 ) ( 1280 -3264 240 ) ( 1600 -3264 336 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 -3264 240 ) ( 1280 -3296 272 ) ( 1600 -3296 368 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1600 -3272 336 ) ( 1600 -3296 336 ) ( 1600 -3284 368 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1536 -3336 240 ) ( 1536 -3296 240 ) ( 1536 -3316 368 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1552 -3272 317 ) ( 1536 -3272 317 ) ( 1544 -3272 368 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2559 +{ +( 1280 -3648 272 ) ( 1280 -3616 272 ) ( 1600 -3616 368 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 -3648 240 ) ( 1280 -3648 272 ) ( 1600 -3648 368 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 -3616 272 ) ( 1280 -3648 240 ) ( 1600 -3648 336 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1600 -3632 336 ) ( 1600 -3648 336 ) ( 1600 -3640 368 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1536 -3336 240 ) ( 1536 -3296 240 ) ( 1536 -3316 368 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1536 -3640 317 ) ( 1552 -3640 317 ) ( 1544 -3640 368 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2560 +{ +( 1280 -3648 272 ) ( 1280 -3616 272 ) ( 1600 -3616 368 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1280 -3616 272 ) ( 1280 -3648 240 ) ( 1600 -3648 336 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1600 -3632 336 ) ( 1600 -3648 336 ) ( 1600 -3640 368 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1536 -3336 240 ) ( 1536 -3296 240 ) ( 1536 -3316 368 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1552 -3640 317 ) ( 1536 -3640 317 ) ( 1544 -3640 368 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 1536 -3624 325 ) ( 1552 -3624 325 ) ( 1544 -3624 368 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +} +// brush 2561 +{ +( 1280 -3648 272 ) ( 1280 -3616 272 ) ( 1600 -3616 368 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 -3616 272 ) ( 1280 -3648 240 ) ( 1600 -3648 336 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1600 -3632 336 ) ( 1600 -3648 336 ) ( 1600 -3640 368 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1536 -3336 240 ) ( 1536 -3296 240 ) ( 1536 -3316 368 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1552 -3624 325 ) ( 1536 -3624 325 ) ( 1544 -3624 368 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2562 +{ +( 1152 -3648 240 ) ( 1152 -3616 240 ) ( 1280 -3616 272 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1152 -3648 208 ) ( 1152 -3648 240 ) ( 1280 -3648 272 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1152 -3616 240 ) ( 1152 -3648 208 ) ( 1280 -3648 240 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1152 -3632 240 ) ( 1152 -3648 208 ) ( 1152 -3616 208 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1216 -3624 208 ) ( 1216 -3640 208 ) ( 1216 -3632 272 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2563 +{ +( 1152 -3296 240 ) ( 1152 -3264 240 ) ( 1280 -3264 272 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1152 -3264 240 ) ( 1152 -3264 208 ) ( 1280 -3264 240 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1152 -3264 208 ) ( 1152 -3296 240 ) ( 1280 -3296 272 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1152 -3296 192 ) ( 1152 -3264 192 ) ( 1152 -3280 224 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1216 -3280 208 ) ( 1216 -3296 208 ) ( 1216 -3288 272 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2564 +{ +( 1152 -3296 240 ) ( 1152 -3264 240 ) ( 1280 -3264 272 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1152 -3264 208 ) ( 1152 -3296 240 ) ( 1280 -3296 272 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 -3272 240 ) ( 1280 -3296 240 ) ( 1280 -3284 272 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1216 -3296 208 ) ( 1216 -3280 208 ) ( 1216 -3288 272 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1224 -3288 224 ) ( 1240 -3288 224 ) ( 1232 -3288 272 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2565 +{ +( 1152 -3296 240 ) ( 1152 -3264 240 ) ( 1280 -3264 272 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1152 -3264 208 ) ( 1152 -3296 240 ) ( 1280 -3296 272 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1280 -3272 240 ) ( 1280 -3296 240 ) ( 1280 -3284 272 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1216 -3296 208 ) ( 1216 -3280 208 ) ( 1216 -3288 272 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1240 -3288 224 ) ( 1224 -3288 224 ) ( 1232 -3288 272 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 1216 -3272 224 ) ( 1240 -3272 224 ) ( 1228 -3272 272 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +} +// brush 2566 +{ +( 1152 -3296 240 ) ( 1152 -3264 240 ) ( 1280 -3264 272 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1152 -3264 240 ) ( 1152 -3264 208 ) ( 1280 -3264 240 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1152 -3264 208 ) ( 1152 -3296 240 ) ( 1280 -3296 272 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 -3272 240 ) ( 1280 -3296 240 ) ( 1280 -3284 272 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1216 -3296 208 ) ( 1216 -3280 208 ) ( 1216 -3288 272 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1240 -3272 224 ) ( 1216 -3272 224 ) ( 1228 -3272 272 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2567 +{ +( 1152 -3648 240 ) ( 1152 -3616 240 ) ( 1280 -3616 272 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1152 -3648 208 ) ( 1152 -3648 240 ) ( 1280 -3648 272 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1152 -3616 240 ) ( 1152 -3648 208 ) ( 1280 -3648 240 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 -3632 240 ) ( 1280 -3648 240 ) ( 1280 -3640 272 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1216 -3640 208 ) ( 1216 -3624 208 ) ( 1216 -3632 272 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1216 -3640 224 ) ( 1232 -3640 224 ) ( 1224 -3640 272 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2568 +{ +( 1152 -3648 240 ) ( 1152 -3616 240 ) ( 1280 -3616 272 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1152 -3616 240 ) ( 1152 -3648 208 ) ( 1280 -3648 240 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1280 -3632 240 ) ( 1280 -3648 240 ) ( 1280 -3640 272 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1216 -3640 208 ) ( 1216 -3624 208 ) ( 1216 -3632 272 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1232 -3640 224 ) ( 1216 -3640 224 ) ( 1224 -3640 272 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 1216 -3624 232 ) ( 1232 -3624 232 ) ( 1224 -3624 272 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +} +// brush 2569 +{ +( 1152 -3648 240 ) ( 1152 -3616 240 ) ( 1280 -3616 272 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1152 -3616 240 ) ( 1152 -3648 208 ) ( 1280 -3648 240 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 -3632 240 ) ( 1280 -3648 240 ) ( 1280 -3640 272 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1216 -3640 208 ) ( 1216 -3624 208 ) ( 1216 -3632 272 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1232 -3624 232 ) ( 1216 -3624 232 ) ( 1224 -3624 272 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2570 +{ +( 896 -3648 200 ) ( 896 -3616 200 ) ( 1024 -3616 216 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 896 -3648 168 ) ( 896 -3648 200 ) ( 1024 -3648 216 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 896 -3616 200 ) ( 896 -3648 168 ) ( 1024 -3648 184 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1024 -3632 184 ) ( 1024 -3648 184 ) ( 1024 -3640 216 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 960 -3648 168 ) ( 960 -3624 168 ) ( 960 -3636 216 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2571 +{ +( 896 -3648 200 ) ( 896 -3616 200 ) ( 1024 -3616 216 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 896 -3648 168 ) ( 896 -3648 200 ) ( 1024 -3648 216 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 896 -3616 200 ) ( 896 -3648 168 ) ( 1024 -3648 184 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 896 -3632 200 ) ( 896 -3648 168 ) ( 896 -3616 168 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 960 -3624 168 ) ( 960 -3648 168 ) ( 960 -3636 216 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 896 -3640 168 ) ( 912 -3640 168 ) ( 904 -3640 208 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2572 +{ +( 896 -3648 200 ) ( 896 -3616 200 ) ( 1024 -3616 216 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 896 -3616 200 ) ( 896 -3648 168 ) ( 1024 -3648 184 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 896 -3632 200 ) ( 896 -3648 168 ) ( 896 -3616 168 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 960 -3624 168 ) ( 960 -3648 168 ) ( 960 -3636 216 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 912 -3640 168 ) ( 896 -3640 168 ) ( 904 -3640 208 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 896 -3624 176 ) ( 920 -3624 176 ) ( 908 -3624 208 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +} +// brush 2573 +{ +( 896 -3648 200 ) ( 896 -3616 200 ) ( 1024 -3616 216 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 896 -3616 200 ) ( 896 -3648 168 ) ( 1024 -3648 184 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 896 -3632 200 ) ( 896 -3648 168 ) ( 896 -3616 168 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 960 -3624 168 ) ( 960 -3648 168 ) ( 960 -3636 216 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 920 -3624 176 ) ( 896 -3624 176 ) ( 908 -3624 208 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2574 +{ +( 896 -3296 200 ) ( 896 -3264 200 ) ( 1024 -3264 216 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 896 -3264 200 ) ( 896 -3264 168 ) ( 1024 -3264 184 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 896 -3264 168 ) ( 896 -3296 200 ) ( 1024 -3296 216 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1024 -3272 184 ) ( 1024 -3296 184 ) ( 1024 -3284 216 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 960 -3296 168 ) ( 960 -3288 168 ) ( 960 -3292 216 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2575 +{ +( 896 -3296 200 ) ( 896 -3264 200 ) ( 1024 -3264 216 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 896 -3264 168 ) ( 896 -3296 200 ) ( 1024 -3296 216 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 896 -3296 152 ) ( 896 -3264 152 ) ( 896 -3280 184 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 960 -3288 168 ) ( 960 -3296 168 ) ( 960 -3292 216 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 904 -3288 168 ) ( 920 -3288 168 ) ( 912 -3288 208 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2576 +{ +( 896 -3296 200 ) ( 896 -3264 200 ) ( 1024 -3264 216 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 896 -3264 168 ) ( 896 -3296 200 ) ( 1024 -3296 216 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 896 -3296 152 ) ( 896 -3264 152 ) ( 896 -3280 184 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 960 -3288 168 ) ( 960 -3296 168 ) ( 960 -3292 216 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 920 -3288 168 ) ( 904 -3288 168 ) ( 912 -3288 208 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +( 896 -3272 168 ) ( 920 -3272 168 ) ( 908 -3272 208 ) common/li_pv_v4a 0 7 90 1 1 0 1 7000 +} +// brush 2577 +{ +( 896 -3296 200 ) ( 896 -3264 200 ) ( 1024 -3264 216 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 896 -3264 200 ) ( 896 -3264 168 ) ( 1024 -3264 184 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 896 -3264 168 ) ( 896 -3296 200 ) ( 1024 -3296 216 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 896 -3296 152 ) ( 896 -3264 152 ) ( 896 -3280 184 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 960 -3288 168 ) ( 960 -3296 168 ) ( 960 -3292 216 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 920 -3272 168 ) ( 896 -3272 168 ) ( 908 -3272 208 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2578 +{ +( 416 -3648 192 ) ( 152 -3648 192 ) ( 152 -3616 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 -3648 192 ) ( 768 -3616 192 ) ( 768 -3616 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 152 -3648 192 ) ( 416 -3648 192 ) ( 416 -3648 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 -3648 160 ) ( 768 -3616 192 ) ( 152 -3632 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 640 -3648 160 ) ( 640 -3616 160 ) ( 640 -3632 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2579 +{ +( 416 -3648 192 ) ( 152 -3648 192 ) ( 152 -3616 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 152 -3648 192 ) ( 416 -3648 192 ) ( 416 -3648 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 -3648 160 ) ( 768 -3616 192 ) ( 152 -3632 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 576 -3632 160 ) ( 576 -3616 160 ) ( 576 -3624 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 640 -3616 160 ) ( 640 -3648 160 ) ( 640 -3632 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 576 -3640 160 ) ( 592 -3640 160 ) ( 584 -3640 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2580 +{ +( 416 -3648 192 ) ( 152 -3648 192 ) ( 152 -3616 192 ) bricks/c_tn_m1 -127 0 -180 1 1 0 0 0 +( 768 -3648 160 ) ( 768 -3616 192 ) ( 152 -3632 176 ) common/li_pv_v4a 0 -7 -180 1 1 0 1 7000 +( 576 -3632 160 ) ( 576 -3616 160 ) ( 576 -3624 192 ) bricks/c_tn_m1 255 -31 -90 1 -1 0 0 0 +( 640 -3616 160 ) ( 640 -3648 160 ) ( 640 -3632 192 ) bricks/c_tn_m1 255 -31 -90 1 -1 0 0 0 +( 592 -3640 160 ) ( 576 -3640 160 ) ( 584 -3640 192 ) bricks/c_tn_m1 255 0 -90 1 1 0 0 0 +( 576 -3624 168 ) ( 592 -3624 168 ) ( 584 -3624 192 ) bricks/c_tn_m1 255 0 -90 1 1 0 0 0 +} +// brush 2581 +{ +( 416 -3648 192 ) ( 152 -3648 192 ) ( 152 -3616 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 -3648 160 ) ( 768 -3616 192 ) ( 152 -3632 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 576 -3632 160 ) ( 576 -3616 160 ) ( 576 -3624 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 640 -3616 160 ) ( 640 -3648 160 ) ( 640 -3632 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 592 -3624 168 ) ( 576 -3624 168 ) ( 584 -3624 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2582 +{ +( 584 -3312 -32 ) ( 584 -3168 -32 ) ( 424 -3168 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 424 -3168 -16 ) ( 584 -3168 -16 ) ( 584 -3312 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 560 -3400 -16 ) ( 560 -3400 -32 ) ( 520 -3440 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1624 -2008 -16 ) ( 1624 -2008 -32 ) ( 1896 -2280 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 274 -3096 -32 ) ( 274 -3096 -16 ) ( 234 -3136 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 192 -3248 -32 ) ( 168 -3248 -32 ) ( 180 -3248 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2583 +{ +( 584 -3312 192 ) ( 584 -3168 192 ) ( 424 -3168 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 424 -3168 208 ) ( 584 -3168 208 ) ( 584 -3312 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 560 -3400 208 ) ( 560 -3400 192 ) ( 520 -3440 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1624 -2008 208 ) ( 1624 -2008 192 ) ( 1896 -2280 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 282 -3088 192 ) ( 282 -3088 208 ) ( 242 -3128 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 712 -3248 192 ) ( 536 -3248 192 ) ( 624 -3248 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2584 +{ +( -264 -3248 -16 ) ( -512 -3248 -16 ) ( -512 -3264 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -512 -3264 192 ) ( -512 -3248 192 ) ( -264 -3248 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -552 -3264 -16 ) ( -552 -3264 192 ) ( 8 -3264 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -264 -3248 192 ) ( -512 -3248 192 ) ( -512 -3248 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -552 -3264 192 ) ( -552 -3264 -16 ) ( -550 -3248 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 8 -3264 -16 ) ( 8 -3264 192 ) ( 6 -3248 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2585 +{ +( -264 -3264 -16 ) ( -512 -3264 -16 ) ( -512 -3280 -16 ) bricks/c_sr_mr5 0 31 -180 1 1 0 0 0 +( -512 -3280 0 ) ( -512 -3264 0 ) ( -264 -3264 0 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( -554 -3280 -16 ) ( -554 -3280 0 ) ( 10 -3280 0 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 216 -3264 0 ) ( -32 -3264 0 ) ( -32 -3264 -16 ) bricks/c_sr_mr5 0 0 -180 1 1 0 0 0 +( -554 -3280 0 ) ( -554 -3280 -16 ) ( -552 -3264 -16 ) bricks/c_sr_mr5 -64 0 -180 1 1 0 0 0 +( 10 -3280 -16 ) ( 10 -3280 0 ) ( 8 -3264 0 ) bricks/c_sr_mr5 -64 0 -180 1 1 0 0 0 +} +// brush 2586 +{ +( -360 -3264 -32 ) ( -512 -3264 -32 ) ( -512 -3664 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -512 -3664 -16 ) ( -512 -3264 -16 ) ( -360 -3264 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -512 -3664 -16 ) ( -360 -3664 -16 ) ( -360 -3664 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -360 -3248 -16 ) ( -512 -3248 -16 ) ( -512 -3248 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -512 -3264 -16 ) ( -512 -3664 -16 ) ( -512 -3664 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 768 -3248 -32 ) ( 768 -3264 -32 ) ( 768 -3256 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2587 +{ +( -344 -3248 192 ) ( -512 -3248 192 ) ( -512 -3664 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -512 -3664 208 ) ( -512 -3248 208 ) ( -344 -3248 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -512 -3664 208 ) ( -344 -3664 208 ) ( -344 -3664 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -344 -3248 208 ) ( -512 -3248 208 ) ( -512 -3248 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -512 -3248 208 ) ( -512 -3664 208 ) ( -512 -3664 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 768 -3272 192 ) ( 768 -3288 192 ) ( 768 -3280 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2588 +{ +( 2976 -2953 192 ) ( 2976 -2807 192 ) ( 3008 -2804 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -2608 192 ) ( 3008 -2256 192 ) ( 3008 -2256 176 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -2804 160 ) ( 2976 -2807 192 ) ( 2976 -2953 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3008 -2956 160 ) ( 2976 -2953 192 ) ( 3008 -2956 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( 3000 -2848 160 ) ( 3008 -2848 160 ) ( 3004 -2848 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2589 +{ +( 2992 -3104 -16 ) ( 2992 -2976 -16 ) ( 2624 -2976 -16 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2624 -2976 0 ) ( 2992 -2976 0 ) ( 2992 -3104 0 ) bricks/c_sr_mr5 0 -6 78 1 1 0 0 0 +( 2962 -3108 -32 ) ( 2962 -3108 128 ) ( 2976 -3112 128 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +( 3008 -2956 128 ) ( 3008 -2956 -32 ) ( 2976 -3112 -32 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +( 2992 -2954 128 ) ( 2992 -2954 -32 ) ( 3008 -2956 -32 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +( 2962 -3108 128 ) ( 2962 -3108 -32 ) ( 2992 -2954 -32 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +} +// brush 2590 +{ +( 2960 -3260 -16 ) ( 2960 -3132 -16 ) ( 2592 -3132 -16 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2592 -3132 0 ) ( 2960 -3132 0 ) ( 2960 -3260 0 ) bricks/c_sr_mr5 0 12 67 1 1 0 0 0 +( 2920 -3244 128 ) ( 2920 -3244 -32 ) ( 2908 -3238 -32 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +( 2920 -3244 -32 ) ( 2920 -3244 128 ) ( 2976 -3112 128 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +( 2962 -3108 128 ) ( 2962 -3108 -32 ) ( 2976 -3112 -32 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +( 2908 -3238 128 ) ( 2908 -3238 -32 ) ( 2962 -3108 -32 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +} +// brush 2591 +{ +( 2904 -3392 -16 ) ( 2904 -3264 -16 ) ( 2536 -3264 -16 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2536 -3264 0 ) ( 2904 -3264 0 ) ( 2904 -3392 0 ) bricks/c_sr_mr5 0 7 57 1 1 0 0 0 +( 2830 -3360 -32 ) ( 2830 -3360 128 ) ( 2840 -3368 128 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +( 2920 -3244 128 ) ( 2920 -3244 -32 ) ( 2840 -3368 -32 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +( 2908 -3238 128 ) ( 2908 -3238 -32 ) ( 2920 -3244 -32 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +( 2830 -3360 128 ) ( 2830 -3360 -32 ) ( 2908 -3238 -32 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +} +// brush 2592 +{ +( 2752 -3544 0 ) ( 2624 -3544 0 ) ( 2624 -3176 0 ) bricks/c_sr_mr5 0 17 32 1 1 0 0 0 +( 2624 -3176 -16 ) ( 2624 -3544 -16 ) ( 2752 -3544 -16 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2720 -3470 16 ) ( 2720 -3470 -144 ) ( 2728 -3480 -144 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +( 2604 -3560 -144 ) ( 2604 -3560 16 ) ( 2728 -3480 16 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +( 2598 -3548 -144 ) ( 2598 -3548 16 ) ( 2604 -3560 16 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +( 2720 -3470 -144 ) ( 2720 -3470 16 ) ( 2598 -3548 16 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +} +// brush 2593 +{ +( 2620 -3600 0 ) ( 2492 -3600 0 ) ( 2492 -3232 0 ) bricks/c_sr_mr5 0 9 22 1 1 0 0 0 +( 2492 -3232 -16 ) ( 2492 -3600 -16 ) ( 2620 -3600 -16 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2604 -3560 -144 ) ( 2604 -3560 16 ) ( 2598 -3548 16 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +( 2604 -3560 16 ) ( 2604 -3560 -144 ) ( 2472 -3616 -144 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +( 2468 -3602 -144 ) ( 2468 -3602 16 ) ( 2472 -3616 16 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +( 2598 -3548 -144 ) ( 2598 -3548 16 ) ( 2468 -3602 16 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +} +// brush 2594 +{ +( 2464 -3632 0 ) ( 2336 -3632 0 ) ( 2336 -3264 0 ) bricks/c_sr_mr5 0 13 12 1 1 0 0 0 +( 2336 -3264 -16 ) ( 2336 -3632 -16 ) ( 2464 -3632 -16 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2468 -3602 16 ) ( 2468 -3602 -144 ) ( 2472 -3616 -144 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +( 2316 -3648 -144 ) ( 2316 -3648 16 ) ( 2472 -3616 16 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +( 2314 -3632 -144 ) ( 2314 -3632 16 ) ( 2316 -3648 16 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +( 2468 -3602 -144 ) ( 2468 -3602 16 ) ( 2314 -3632 16 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +} +// brush 2595 +{ +( 2838 -3422 -16 ) ( 2838 -3368 -16 ) ( 2754 -3368 -16 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2754 -3368 0 ) ( 2838 -3368 0 ) ( 2838 -3422 0 ) bricks/c_sr_mr5 0 -6 45 1 1 0 0 0 +( 2728 -3480 0 ) ( 2728 -3480 -16 ) ( 2720 -3470 -16 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +( 2728 -3480 -16 ) ( 2728 -3480 0 ) ( 2840 -3368 0 ) bricks/c_sr_mr5 48 -15 -180 1 -1 0 0 0 +( 2840 -3368 -16 ) ( 2840 -3368 0 ) ( 2830 -3360 0 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +( 2774 -3416 0 ) ( 2774 -3416 -16 ) ( 2830 -3360 -16 ) bricks/c_sr_mr5 30 -15 -180 1 -1 0 0 0 +} +// brush 2596 +{ +( 2992 -3104 -16 ) ( 2992 -2976 -16 ) ( 2624 -2976 -16 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2624 -2976 0 ) ( 2992 -2976 0 ) ( 2992 -3104 0 ) bricks/c_sr_mr5 0 4 258 1 1 0 0 0 +( 2608 -2996 128 ) ( 2608 -2996 -32 ) ( 2624 -2920 -32 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +( 2608 -2996 -32 ) ( 2608 -2996 128 ) ( 2624 -3000 128 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +( 2608 -2918 128 ) ( 2608 -2918 112 ) ( 2624 -2920 112 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +( 2624 -3000 -32 ) ( 2624 -3000 128 ) ( 2640 -2922 128 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +} +// brush 2597 +{ +( 2960 -3260 -16 ) ( 2960 -3132 -16 ) ( 2592 -3132 -16 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2592 -3132 0 ) ( 2960 -3132 0 ) ( 2960 -3260 0 ) bricks/c_sr_mr5 0 -16 246 1 1 0 0 0 +( 2580 -3060 128 ) ( 2580 -3060 -32 ) ( 2608 -2996 -32 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +( 2594 -3068 128 ) ( 2594 -3068 -32 ) ( 2580 -3060 -32 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +( 2624 -3000 -32 ) ( 2624 -3000 128 ) ( 2608 -2996 128 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +( 2624 -3000 128 ) ( 2624 -3000 -32 ) ( 2594 -3068 -32 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +} +// brush 2598 +{ +( 2904 -3392 -16 ) ( 2904 -3264 -16 ) ( 2536 -3264 -16 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2536 -3264 0 ) ( 2904 -3264 0 ) ( 2904 -3392 0 ) bricks/c_sr_mr5 0 -10 237 1 1 0 0 0 +( 2536 -3128 128 ) ( 2536 -3128 -32 ) ( 2580 -3060 -32 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +( 2548 -3138 128 ) ( 2548 -3138 -32 ) ( 2536 -3128 -32 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +( 2594 -3068 -32 ) ( 2594 -3068 128 ) ( 2580 -3060 128 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +( 2548 -3138 -32 ) ( 2548 -3138 128 ) ( 2594 -3068 128 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +} +// brush 2599 +{ +( 2752 -3544 0 ) ( 2624 -3544 0 ) ( 2624 -3176 0 ) bricks/c_sr_mr5 0 -14 213 1 1 0 0 0 +( 2624 -3176 -16 ) ( 2624 -3544 -16 ) ( 2752 -3544 -16 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2488 -3176 -144 ) ( 2488 -3176 16 ) ( 2420 -3220 16 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +( 2498 -3188 -144 ) ( 2498 -3188 16 ) ( 2488 -3176 16 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +( 2428 -3234 16 ) ( 2428 -3234 -144 ) ( 2420 -3220 -144 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +( 2498 -3188 16 ) ( 2498 -3188 -144 ) ( 2428 -3234 -144 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +} +// brush 2600 +{ +( 2620 -3600 0 ) ( 2492 -3600 0 ) ( 2492 -3232 0 ) bricks/c_sr_mr5 0 -12 204 1 1 0 0 0 +( 2492 -3232 -16 ) ( 2492 -3600 -16 ) ( 2620 -3600 -16 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2420 -3220 -144 ) ( 2420 -3220 16 ) ( 2356 -3248 16 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +( 2428 -3234 -144 ) ( 2428 -3234 16 ) ( 2420 -3220 16 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +( 2360 -3264 16 ) ( 2360 -3264 -144 ) ( 2356 -3248 -144 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +( 2360 -3264 -144 ) ( 2360 -3264 16 ) ( 2428 -3234 16 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +} +// brush 2601 +{ +( 2464 -3632 0 ) ( 2336 -3632 0 ) ( 2336 -3264 0 ) bricks/c_sr_mr5 0 -14 192 1 1 0 0 0 +( 2336 -3264 -16 ) ( 2336 -3632 -16 ) ( 2464 -3632 -16 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2356 -3248 -144 ) ( 2356 -3248 16 ) ( 2280 -3264 16 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +( 2356 -3248 16 ) ( 2356 -3248 -144 ) ( 2360 -3264 -144 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +( 2278 -3248 -144 ) ( 2278 -3248 -128 ) ( 2280 -3264 -128 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +( 2360 -3264 16 ) ( 2360 -3264 -144 ) ( 2282 -3280 -144 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +} +// brush 2602 +{ +( 2548 -3176 -16 ) ( 2548 -3138 -16 ) ( 2488 -3138 -16 ) bricks/c_sr_mr5 -48 0 90 1 1 0 0 0 +( 2488 -3138 0 ) ( 2548 -3138 0 ) ( 2548 -3176 0 ) bricks/c_sr_mr5 0 4 225 1 1 0 0 0 +( 2536 -3128 -16 ) ( 2536 -3128 0 ) ( 2488 -3176 0 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +( 2498 -3188 0 ) ( 2498 -3188 -16 ) ( 2488 -3176 -16 ) bricks/c_sr_mr5 -48 -16 0 1 1 0 0 0 +( 2498 -3188 -16 ) ( 2498 -3188 0 ) ( 2548 -3138 0 ) bricks/c_sr_mr5 38 -15 -180 1 -1 0 0 0 +( 2536 -3128 0 ) ( 2536 -3128 -16 ) ( 2548 -3138 -16 ) bricks/c_sr_mr5 16 -15 -180 1 -1 0 0 0 +} +// brush 2603 +{ +( 2240 -3616 192 ) ( 2313 -3616 192 ) ( 2316 -3648 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1616 -3648 176 ) ( 1616 -3648 192 ) ( 1968 -3648 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2316 -3648 160 ) ( 2313 -3616 192 ) ( 2240 -3616 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2240 -3632 192 ) ( 2240 -3648 160 ) ( 2240 -3616 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2316 -3648 192 ) ( 2313 -3616 192 ) ( 2316 -3648 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2604 +{ +( 2313 -3616 192 ) ( 2316 -3648 160 ) ( 2462 -3585 192 ) bricks/c_tn_m1 39 14 12 1 1 0 0 0 +( 2316 -3648 208 ) ( 2316 -3648 160 ) ( 2313 -3616 192 ) bricks/c_tn_m1 39 14 12 1 1 0 0 0 +( 2462 -3585 192 ) ( 2316 -3648 160 ) ( 2316 -3648 208 ) bricks/c_tn_m1 39 14 12 1 1 0 0 0 +( 2313 -3424 192 ) ( 2313 -3368 192 ) ( 2462 -3396 192 ) bricks/c_tn_m1 39 14 12 1 1 0 0 0 +} +// brush 2605 +{ +( 2316 -3648 160 ) ( 2472 -3616 160 ) ( 2462 -3585 192 ) bricks/c_tn_m1 39 14 12 1 1 0 0 0 +( 2462 -3585 192 ) ( 2472 -3616 160 ) ( 2472 -3616 208 ) bricks/c_tn_m1 39 14 12 1 1 0 0 0 +( 2472 -3616 208 ) ( 2472 -3616 160 ) ( 2316 -3648 160 ) bricks/c_tn_m1 39 14 12 1 1 0 0 0 +( 2316 -3648 208 ) ( 2316 -3648 160 ) ( 2462 -3585 192 ) bricks/c_tn_m1 39 14 12 1 1 0 0 0 +( 2316 -3424 192 ) ( 2316 -3368 192 ) ( 2472 -3396 192 ) bricks/c_tn_m1 39 14 12 1 1 0 0 0 +} +// brush 2606 +{ +( 2486 -3633 192 ) ( 2496 -3664 160 ) ( 2612 -3579 192 ) bricks/c_tn_m1 -3 -11 23 1 1 0 0 0 +( 2496 -3664 208 ) ( 2496 -3664 160 ) ( 2486 -3633 192 ) bricks/c_tn_m1 44 28 23 1 1 0 0 0 +( 2612 -3579 192 ) ( 2496 -3664 160 ) ( 2496 -3664 208 ) bricks/c_tn_m1 -22 0 23 1 1 0 0 0 +( 2486 -3472 192 ) ( 2486 -3416 192 ) ( 2612 -3444 192 ) bricks/c_tn_m1 -3 -11 23 1 1 0 0 0 +} +// brush 2607 +{ +( 2496 -3664 160 ) ( 2628 -3608 160 ) ( 2612 -3579 192 ) bricks/c_tn_m1 -3 -11 23 1 1 0 0 0 +( 2612 -3579 192 ) ( 2628 -3608 160 ) ( 2628 -3608 208 ) bricks/c_tn_m1 44 28 23 1 1 0 0 0 +( 2628 -3608 208 ) ( 2628 -3608 160 ) ( 2496 -3664 160 ) bricks/c_tn_m1 -22 0 23 1 1 0 0 0 +( 2496 -3664 208 ) ( 2496 -3664 160 ) ( 2612 -3579 192 ) bricks/c_tn_m1 -22 0 23 1 1 0 0 0 +( 2496 -3472 192 ) ( 2496 -3416 192 ) ( 2628 -3444 192 ) bricks/c_tn_m1 -3 -11 23 1 1 0 0 0 +} +// brush 2608 +{ +( 2588 -3531 192 ) ( 2604 -3560 160 ) ( 2707 -3454 192 ) bricks/c_tn_m1 58 13 33 1 1 0 0 0 +( 2604 -3560 208 ) ( 2604 -3560 160 ) ( 2588 -3531 192 ) bricks/c_tn_m1 58 13 33 1 1 0 0 0 +( 2707 -3454 192 ) ( 2604 -3560 160 ) ( 2604 -3560 208 ) bricks/c_tn_m1 58 13 33 1 1 0 0 0 +( 2588 -3424 192 ) ( 2588 -3368 192 ) ( 2707 -3396 192 ) bricks/c_tn_m1 58 13 33 1 1 0 0 0 +} +// brush 2609 +{ +( 2604 -3560 160 ) ( 2728 -3480 160 ) ( 2707 -3454 192 ) bricks/c_tn_m1 58 13 33 1 1 0 0 0 +( 2707 -3454 192 ) ( 2728 -3480 160 ) ( 2728 -3480 208 ) bricks/c_tn_m1 58 13 33 1 1 0 0 0 +( 2728 -3480 208 ) ( 2728 -3480 160 ) ( 2604 -3560 160 ) bricks/c_tn_m1 58 13 33 1 1 0 0 0 +( 2604 -3560 208 ) ( 2604 -3560 160 ) ( 2707 -3454 192 ) bricks/c_tn_m1 58 13 33 1 1 0 0 0 +( 2604 -3424 192 ) ( 2604 -3368 192 ) ( 2728 -3396 192 ) bricks/c_tn_m1 58 13 33 1 1 0 0 0 +} +// brush 2610 +{ +( 2768 -3520 160 ) ( 2880 -3408 160 ) ( 2747 -3494 192 ) bricks/c_tn_m1 0 -2 45 1 1 0 0 0 +( 2768 -3520 208 ) ( 2768 -3520 160 ) ( 2747 -3494 192 ) bricks/c_tn_m1 28 18 45 1 1 0 0 0 +( 2880 -3408 208 ) ( 2880 -3408 160 ) ( 2768 -3520 160 ) bricks/c_tn_m1 28 18 45 1 1 0 0 0 +( 2747 -3494 192 ) ( 2880 -3408 160 ) ( 2880 -3408 208 ) bricks/c_tn_m1 -28 -6 45 1 1 0 0 0 +( 2747 -3464 192 ) ( 2747 -3408 192 ) ( 2880 -3436 192 ) bricks/c_tn_m1 0 -2 45 1 1 0 0 0 +} +// brush 2611 +{ +( 2747 -3494 192 ) ( 2880 -3408 160 ) ( 2854 -3387 192 ) bricks/c_tn_m1 0 -2 45 1 1 0 0 0 +( 2854 -3387 192 ) ( 2880 -3408 160 ) ( 2880 -3408 208 ) bricks/c_tn_m1 -28 -6 45 1 1 0 0 0 +( 2880 -3408 208 ) ( 2880 -3408 160 ) ( 2747 -3494 192 ) bricks/c_tn_m1 -28 -6 45 1 1 0 0 0 +( 2747 -3464 192 ) ( 2747 -3408 192 ) ( 2880 -3436 192 ) bricks/c_tn_m1 0 -2 45 1 1 0 0 0 +} +// brush 2612 +{ +( 2939 -3252 192 ) ( 2968 -3268 160 ) ( 3024 -3136 160 ) bricks/c_tn_m1 2 -16 67 1 1 0 0 0 +( 2968 -3268 208 ) ( 2968 -3268 160 ) ( 2939 -3252 192 ) bricks/c_tn_m1 -19 -7 67 1 1 0 0 0 +( 3024 -3136 160 ) ( 2968 -3268 160 ) ( 2968 -3268 208 ) bricks/c_tn_m1 8 27 67 1 1 0 0 0 +( 2939 -3252 192 ) ( 3024 -3136 160 ) ( 3024 -3136 208 ) bricks/c_tn_m1 8 27 67 1 1 0 0 0 +( 2939 -3448 192 ) ( 2939 -3392 192 ) ( 3024 -3420 192 ) bricks/c_tn_m1 2 -16 67 1 1 0 0 0 +} +// brush 2613 +{ +( 2939 -3252 192 ) ( 3024 -3136 160 ) ( 2993 -3126 192 ) bricks/c_tn_m1 2 -16 67 1 1 0 0 0 +( 2993 -3126 192 ) ( 3024 -3136 160 ) ( 3024 -3136 208 ) bricks/c_tn_m1 -19 -7 67 1 1 0 0 0 +( 3024 -3136 208 ) ( 3024 -3136 160 ) ( 2939 -3252 192 ) bricks/c_tn_m1 8 27 67 1 1 0 0 0 +( 2939 -3448 192 ) ( 2939 -3392 192 ) ( 3024 -3420 192 ) bricks/c_tn_m1 2 -16 67 1 1 0 0 0 +} +// brush 2614 +{ +( 2945 -3102 192 ) ( 2976 -3112 160 ) ( 3008 -2956 160 ) bricks/c_tn_m1 81 -5 78 1 1 0 0 0 +( 2976 -3112 208 ) ( 2976 -3112 160 ) ( 2945 -3102 192 ) bricks/c_tn_m1 81 -5 78 1 1 0 0 0 +( 3008 -2956 160 ) ( 2976 -3112 160 ) ( 2976 -3112 208 ) bricks/c_tn_m1 81 -5 78 1 1 0 0 0 +( 2945 -3102 192 ) ( 3008 -2956 160 ) ( 3008 -2956 208 ) bricks/c_tn_m1 81 -5 78 1 1 0 0 0 +( 2945 -3424 192 ) ( 2945 -3368 192 ) ( 3008 -3396 192 ) bricks/c_tn_m1 81 -5 78 1 1 0 0 0 +} +// brush 2615 +{ +( 2945 -3102 192 ) ( 3008 -2956 160 ) ( 2976 -2953 192 ) bricks/c_tn_m1 81 -5 78 1 1 0 0 0 +( 2976 -2953 192 ) ( 3008 -2956 160 ) ( 3008 -2956 208 ) bricks/c_tn_m1 81 -5 78 1 1 0 0 0 +( 3008 -2956 208 ) ( 3008 -2956 160 ) ( 2945 -3102 192 ) bricks/c_tn_m1 81 -5 78 1 1 0 0 0 +( 2945 -3424 192 ) ( 2945 -3368 192 ) ( 3008 -3396 192 ) bricks/c_tn_m1 81 -5 78 1 1 0 0 0 +} +// brush 2616 +{ +( 2366 -3279 192 ) ( 2280 -3264 160 ) ( 2283 -3296 192 ) bricks/c_tn_m1 -151 -9 191 1 1 0 0 0 +( 2283 -3296 192 ) ( 2280 -3264 160 ) ( 2280 -3264 208 ) bricks/c_tn_m1 -151 -9 191 1 1 0 0 0 +( 2280 -3264 208 ) ( 2280 -3264 160 ) ( 2366 -3279 192 ) bricks/c_tn_m1 -151 -9 191 1 1 0 0 0 +( 2376 -3264 192 ) ( 2400 -3264 192 ) ( 2388 -3296 192 ) bricks/c_tn_m1 -151 -9 191 1 1 0 0 0 +} +// brush 2617 +{ +( 2366 -3279 192 ) ( 2356 -3248 160 ) ( 2280 -3264 160 ) bricks/c_tn_m1 -151 -9 191 1 1 0 0 0 +( 2280 -3264 160 ) ( 2356 -3248 160 ) ( 2356 -3248 208 ) bricks/c_tn_m1 -151 -9 191 1 1 0 0 0 +( 2356 -3248 208 ) ( 2356 -3248 160 ) ( 2366 -3279 192 ) bricks/c_tn_m1 -151 -9 191 1 1 0 0 0 +( 2366 -3279 208 ) ( 2366 -3279 192 ) ( 2280 -3264 160 ) bricks/c_tn_m1 -151 -9 191 1 1 0 0 0 +( 2376 -3248 192 ) ( 2400 -3248 192 ) ( 2388 -3279 192 ) bricks/c_tn_m1 -151 -9 191 1 1 0 0 0 +} +// brush 2618 +{ +( 2411 -3192 192 ) ( 2332 -3192 160 ) ( 2342 -3223 192 ) bricks/c_tn_m1 0 -25 204 1 1 0 0 0 +( 2342 -3223 192 ) ( 2332 -3192 160 ) ( 2332 -3192 208 ) bricks/c_tn_m1 51 25 204 1 1 0 0 0 +( 2332 -3192 208 ) ( 2332 -3192 160 ) ( 2411 -3192 192 ) bricks/c_tn_m1 -21 25 204 1 1 0 0 0 +( 2352 -3192 192 ) ( 2376 -3192 192 ) ( 2364 -3223 192 ) bricks/c_tn_m1 0 -25 204 1 1 0 0 0 +} +// brush 2619 +{ +( 2411 -3192 192 ) ( 2396 -3164 160 ) ( 2332 -3192 160 ) bricks/c_tn_m1 0 -25 204 1 1 0 0 0 +( 2332 -3192 160 ) ( 2396 -3164 160 ) ( 2396 -3164 208 ) bricks/c_tn_m1 -21 25 204 1 1 0 0 0 +( 2396 -3164 208 ) ( 2396 -3164 160 ) ( 2411 -3192 192 ) bricks/c_tn_m1 51 25 204 1 1 0 0 0 +( 2411 -3192 192 ) ( 2332 -3192 160 ) ( 2332 -3192 208 ) bricks/c_tn_m1 -21 25 204 1 1 0 0 0 +( 2352 -3164 192 ) ( 2376 -3164 192 ) ( 2364 -3192 192 ) bricks/c_tn_m1 0 -25 204 1 1 0 0 0 +} +// brush 2620 +{ +( 2508 -3201 192 ) ( 2420 -3220 160 ) ( 2435 -3248 192 ) bricks/c_tn_m1 0 -13 213 1 1 0 0 0 +( 2435 -3248 192 ) ( 2420 -3220 160 ) ( 2420 -3220 208 ) bricks/c_tn_m1 0 -13 213 1 1 0 0 0 +( 2420 -3220 208 ) ( 2420 -3220 160 ) ( 2508 -3201 192 ) bricks/c_tn_m1 0 -13 213 1 1 0 0 0 +( 2376 -3201 192 ) ( 2400 -3201 192 ) ( 2388 -3248 192 ) bricks/c_tn_m1 0 -13 213 1 1 0 0 0 +} +// brush 2621 +{ +( 2508 -3201 192 ) ( 2488 -3176 160 ) ( 2420 -3220 160 ) bricks/c_tn_m1 0 -13 213 1 1 0 0 0 +( 2420 -3220 160 ) ( 2488 -3176 160 ) ( 2488 -3176 208 ) bricks/c_tn_m1 0 -13 213 1 1 0 0 0 +( 2488 -3176 208 ) ( 2488 -3176 160 ) ( 2508 -3201 192 ) bricks/c_tn_m1 0 -13 213 1 1 0 0 0 +( 2508 -3201 192 ) ( 2420 -3220 160 ) ( 2420 -3220 208 ) bricks/c_tn_m1 0 -13 213 1 1 0 0 0 +( 2376 -3176 192 ) ( 2400 -3176 192 ) ( 2388 -3220 192 ) bricks/c_tn_m1 0 -13 213 1 1 0 0 0 +} +// brush 2622 +{ +( 2536 -3128 160 ) ( 2488 -3176 160 ) ( 2561 -3148 192 ) bricks/c_tn_m1 0 5 225 1 1 0 0 0 +( 2488 -3176 208 ) ( 2488 -3176 160 ) ( 2536 -3128 160 ) bricks/c_tn_m1 0 5 225 1 1 0 0 0 +( 2536 -3128 208 ) ( 2536 -3128 160 ) ( 2561 -3148 192 ) bricks/c_tn_m1 0 5 225 1 1 0 0 0 +( 2561 -3148 192 ) ( 2488 -3176 160 ) ( 2488 -3176 208 ) bricks/c_tn_m1 0 5 225 1 1 0 0 0 +( 2376 -3128 192 ) ( 2400 -3128 192 ) ( 2388 -3176 192 ) bricks/c_tn_m1 0 5 225 1 1 0 0 0 +} +// brush 2623 +{ +( 2561 -3148 192 ) ( 2488 -3176 160 ) ( 2508 -3201 192 ) bricks/c_tn_m1 0 5 225 1 1 0 0 0 +( 2508 -3201 192 ) ( 2488 -3176 160 ) ( 2488 -3176 208 ) bricks/c_tn_m1 0 5 225 1 1 0 0 0 +( 2488 -3176 208 ) ( 2488 -3176 160 ) ( 2561 -3148 192 ) bricks/c_tn_m1 0 5 225 1 1 0 0 0 +( 2376 -3148 192 ) ( 2400 -3148 192 ) ( 2388 -3201 192 ) bricks/c_tn_m1 0 5 225 1 1 0 0 0 +} +// brush 2624 +{ +( 2580 -3060 160 ) ( 2536 -3128 160 ) ( 2561 -3148 192 ) bricks/c_tn_m1 -151 -9 237 1 1 0 0 0 +( 2536 -3128 208 ) ( 2536 -3128 160 ) ( 2580 -3060 160 ) bricks/c_tn_m1 -151 -9 237 1 1 0 0 0 +( 2561 -3148 192 ) ( 2536 -3128 160 ) ( 2536 -3128 208 ) bricks/c_tn_m1 -151 -9 237 1 1 0 0 0 +( 2580 -3060 208 ) ( 2580 -3060 160 ) ( 2561 -3148 192 ) bricks/c_tn_m1 -151 -9 237 1 1 0 0 0 +( 2376 -3060 192 ) ( 2400 -3060 192 ) ( 2388 -3148 192 ) bricks/c_tn_m1 -151 -9 237 1 1 0 0 0 +} +// brush 2625 +{ +( 2608 -3075 192 ) ( 2580 -3060 160 ) ( 2561 -3148 192 ) bricks/c_tn_m1 -151 -9 237 1 1 0 0 0 +( 2580 -3060 208 ) ( 2580 -3060 160 ) ( 2608 -3075 192 ) bricks/c_tn_m1 -151 -9 237 1 1 0 0 0 +( 2561 -3148 192 ) ( 2580 -3060 160 ) ( 2580 -3060 208 ) bricks/c_tn_m1 -151 -9 237 1 1 0 0 0 +( 2376 -3060 192 ) ( 2400 -3060 192 ) ( 2388 -3148 192 ) bricks/c_tn_m1 -151 -9 237 1 1 0 0 0 +} +// brush 2626 +{ +( 2552 -2972 160 ) ( 2524 -3036 160 ) ( 2552 -3051 192 ) bricks/c_tn_m1 0 0 246 1 1 0 0 0 +( 2524 -3036 208 ) ( 2524 -3036 160 ) ( 2552 -2972 160 ) bricks/c_tn_m1 9 17 246 1 1 0 0 0 +( 2552 -3051 192 ) ( 2524 -3036 160 ) ( 2524 -3036 208 ) bricks/c_tn_m1 -22 -23 246 1 1 0 0 0 +( 2552 -2972 208 ) ( 2552 -2972 160 ) ( 2552 -3051 192 ) bricks/c_tn_m1 9 17 246 1 1 0 0 0 +( 2320 -2972 192 ) ( 2344 -2972 192 ) ( 2332 -3051 192 ) bricks/c_tn_m1 0 0 246 1 1 0 0 0 +} +// brush 2627 +{ +( 2583 -2982 192 ) ( 2552 -2972 160 ) ( 2552 -3051 192 ) bricks/c_tn_m1 0 0 246 1 1 0 0 0 +( 2552 -2972 208 ) ( 2552 -2972 160 ) ( 2583 -2982 192 ) bricks/c_tn_m1 -22 -23 246 1 1 0 0 0 +( 2552 -3051 192 ) ( 2552 -2972 160 ) ( 2552 -2972 208 ) bricks/c_tn_m1 9 17 246 1 1 0 0 0 +( 2320 -2972 192 ) ( 2344 -2972 192 ) ( 2332 -3051 192 ) bricks/c_tn_m1 0 0 246 1 1 0 0 0 +} +// brush 2628 +{ +( 2624 -2920 160 ) ( 2608 -2996 160 ) ( 2639 -3006 192 ) bricks/c_tn_m1 0 6 258 1 1 0 0 0 +( 2608 -2996 208 ) ( 2608 -2996 160 ) ( 2624 -2920 160 ) bricks/c_tn_m1 0 6 258 1 1 0 0 0 +( 2639 -3006 192 ) ( 2608 -2996 160 ) ( 2608 -2996 208 ) bricks/c_tn_m1 0 6 258 1 1 0 0 0 +( 2624 -2920 160 ) ( 2639 -3006 192 ) ( 2639 -3006 208 ) bricks/c_tn_m1 0 6 258 1 1 0 0 0 +( 2376 -2920 192 ) ( 2400 -2920 192 ) ( 2388 -3006 192 ) bricks/c_tn_m1 0 6 258 1 1 0 0 0 +} +// brush 2629 +{ +( 2656 -2923 192 ) ( 2624 -2920 160 ) ( 2639 -3006 192 ) bricks/c_tn_m1 0 6 258 1 1 0 0 0 +( 2624 -2920 208 ) ( 2624 -2920 160 ) ( 2656 -2923 192 ) bricks/c_tn_m1 0 6 258 1 1 0 0 0 +( 2639 -3006 192 ) ( 2624 -2920 160 ) ( 2624 -2920 208 ) bricks/c_tn_m1 0 6 258 1 1 0 0 0 +( 2376 -2920 192 ) ( 2400 -2920 192 ) ( 2388 -3006 192 ) bricks/c_tn_m1 0 6 258 1 1 0 0 0 +} +// brush 2630 +{ +( 3008 -2956 192 ) ( 3008 -2956 208 ) ( 3008 -2880 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2976 -3112 192 ) ( 2976 -3112 208 ) ( 3008 -2956 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2920 -3244 192 ) ( 2920 -3244 208 ) ( 2976 -3112 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2840 -3368 192 ) ( 2840 -3368 208 ) ( 2920 -3244 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2728 -3480 192 ) ( 2728 -3480 208 ) ( 2840 -3368 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2604 -3560 192 ) ( 2604 -3560 208 ) ( 2728 -3480 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2472 -3616 192 ) ( 2472 -3616 208 ) ( 2604 -3560 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2472 -3616 208 ) ( 2472 -3616 192 ) ( 2316 -3648 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2316 -3648 208 ) ( 2316 -3648 192 ) ( 2240 -3648 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1472 -2112 192 ) ( 1472 -3648 192 ) ( 3008 -3648 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3008 -3648 208 ) ( 1472 -3648 208 ) ( 1472 -2112 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2760 -2880 144 ) ( 2816 -2880 144 ) ( 2788 -2880 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2240 -3544 144 ) ( 2240 -3480 144 ) ( 2240 -3512 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2240 -3264 192 ) ( 2624 -2880 192 ) ( 2432 -3072 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2631 +{ +( 3008 -2956 -32 ) ( 3008 -2956 -16 ) ( 3008 -2880 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2976 -3112 -32 ) ( 2976 -3112 -16 ) ( 3008 -2956 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2920 -3244 -32 ) ( 2920 -3244 -16 ) ( 2976 -3112 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2840 -3368 -32 ) ( 2840 -3368 -16 ) ( 2920 -3244 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2728 -3480 -32 ) ( 2728 -3480 -16 ) ( 2840 -3368 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2604 -3560 -32 ) ( 2604 -3560 -16 ) ( 2728 -3480 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2472 -3616 -32 ) ( 2472 -3616 -16 ) ( 2604 -3560 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2472 -3616 -16 ) ( 2472 -3616 -32 ) ( 2316 -3648 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2316 -3648 -16 ) ( 2316 -3648 -32 ) ( 2240 -3648 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1472 -2112 -32 ) ( 1472 -3648 -32 ) ( 3008 -3648 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 3008 -3648 -16 ) ( 1472 -3648 -16 ) ( 1472 -2112 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2760 -2880 -80 ) ( 2816 -2880 -80 ) ( 2788 -2880 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2240 -3544 -80 ) ( 2240 -3480 -80 ) ( 2240 -3512 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2240 -3264 -32 ) ( 2624 -2880 -32 ) ( 2432 -3072 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2632 +{ +( 2280 -3264 192 ) ( 2283 -3296 192 ) ( 2048 -3296 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2424 -3264 160 ) ( 2424 -3264 192 ) ( 2168 -3264 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2048 -3296 192 ) ( 2283 -3296 192 ) ( 2280 -3264 160 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2280 -3264 160 ) ( 2283 -3296 192 ) ( 2280 -3264 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2240 -3280 160 ) ( 2240 -3272 160 ) ( 2240 -3276 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2633 +{ +( 2814 -3347 192 ) ( 2920 -3244 160 ) ( 2891 -3228 192 ) bricks/c_tn_m1 -50 9 57 1 1 0 0 0 +( 2891 -3228 192 ) ( 2920 -3244 160 ) ( 2920 -3244 208 ) bricks/c_tn_m1 -50 9 57 1 1 0 0 0 +( 2920 -3244 208 ) ( 2920 -3244 160 ) ( 2814 -3347 192 ) bricks/c_tn_m1 -50 9 57 1 1 0 0 0 +( 2814 -3424 192 ) ( 2814 -3368 192 ) ( 2920 -3396 192 ) bricks/c_tn_m1 -50 9 57 1 1 0 0 0 +} +// brush 2634 +{ +( 2814 -3347 192 ) ( 2840 -3368 160 ) ( 2920 -3244 160 ) bricks/c_tn_m1 -50 9 57 1 1 0 0 0 +( 2840 -3368 208 ) ( 2840 -3368 160 ) ( 2814 -3347 192 ) bricks/c_tn_m1 -50 9 57 1 1 0 0 0 +( 2920 -3244 160 ) ( 2840 -3368 160 ) ( 2840 -3368 208 ) bricks/c_tn_m1 -50 9 57 1 1 0 0 0 +( 2814 -3347 192 ) ( 2920 -3244 160 ) ( 2920 -3244 208 ) bricks/c_tn_m1 -50 9 57 1 1 0 0 0 +( 2814 -3424 192 ) ( 2814 -3368 192 ) ( 2920 -3396 192 ) bricks/c_tn_m1 -50 9 57 1 1 0 0 0 +} +// brush 2635 +{ +( 2464 -3632 192 ) ( 2336 -3632 192 ) ( 2336 -3264 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -3632 32 ) ( 2478 -3632 48 ) ( 2472 -3616 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -3632 128 ) ( 2478 -3632 112 ) ( 2318 -3664 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2318 -3664 48 ) ( 2318 -3664 32 ) ( 2316 -3648 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2472 -3616 -16 ) ( 2316 -3648 -16 ) ( 2394 -3632 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2316 -3576 -16 ) ( 2316 -3608 -16 ) ( 2478 -3592 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2636 +{ +( 2620 -3600 192 ) ( 2492 -3600 192 ) ( 2492 -3232 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2612 -3574 32 ) ( 2612 -3574 48 ) ( 2604 -3560 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2612 -3574 128 ) ( 2612 -3574 112 ) ( 2478 -3632 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -3632 48 ) ( 2478 -3632 32 ) ( 2472 -3616 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2604 -3560 48 ) ( 2472 -3616 48 ) ( 2538 -3588 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2472 -3576 -16 ) ( 2472 -3608 -16 ) ( 2612 -3592 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2637 +{ +( 2752 -3544 192 ) ( 2624 -3544 192 ) ( 2624 -3176 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2738 -3492 176 ) ( 2738 -3492 192 ) ( 2728 -3480 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2738 -3492 128 ) ( 2738 -3492 112 ) ( 2612 -3574 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2612 -3574 48 ) ( 2612 -3574 32 ) ( 2604 -3560 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2728 -3480 48 ) ( 2604 -3560 48 ) ( 2666 -3520 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2604 -3576 -16 ) ( 2604 -3608 -16 ) ( 2738 -3592 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2638 +{ +( 2728 -3378 192 ) ( 2852 -3378 192 ) ( 2852 -3480 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2840 -3368 32 ) ( 2840 -3368 192 ) ( 2728 -3480 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2738 -3492 192 ) ( 2738 -3492 32 ) ( 2728 -3480 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2738 -3492 -32 ) ( 2738 -3492 128 ) ( 2852 -3378 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2840 -3368 192 ) ( 2840 -3368 32 ) ( 2852 -3378 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2728 -3576 -16 ) ( 2728 -3608 -16 ) ( 2852 -3592 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2639 +{ +( 2536 -3264 192 ) ( 2904 -3264 192 ) ( 2904 -3392 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2852 -3378 48 ) ( 2852 -3378 32 ) ( 2840 -3368 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2852 -3378 -32 ) ( 2852 -3378 -16 ) ( 2934 -3252 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2934 -3252 176 ) ( 2934 -3252 192 ) ( 2920 -3244 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2840 -3368 176 ) ( 2920 -3244 176 ) ( 2880 -3306 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2840 -3576 -16 ) ( 2840 -3608 -16 ) ( 2934 -3592 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2640 +{ +( 2592 -3132 192 ) ( 2960 -3132 192 ) ( 2960 -3260 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2934 -3252 192 ) ( 2934 -3252 176 ) ( 2920 -3244 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2934 -3252 -32 ) ( 2934 -3252 -16 ) ( 2992 -3118 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2992 -3118 176 ) ( 2992 -3118 192 ) ( 2976 -3112 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2920 -3244 176 ) ( 2976 -3112 176 ) ( 2948 -3178 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2920 -3576 -16 ) ( 2920 -3608 -16 ) ( 2992 -3592 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2641 +{ +( 2624 -2976 192 ) ( 2992 -2976 192 ) ( 2992 -3104 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2992 -3118 192 ) ( 2992 -3118 176 ) ( 2976 -3112 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2992 -3118 -32 ) ( 2992 -3118 -16 ) ( 3024 -2958 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3024 -2958 176 ) ( 3024 -2958 192 ) ( 3008 -2956 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2976 -3112 176 ) ( 3008 -2956 176 ) ( 2992 -3034 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2976 -3576 -16 ) ( 2976 -3608 -16 ) ( 3024 -3592 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2642 +{ +( 2624 -2976 192 ) ( 2992 -2976 192 ) ( 2992 -3104 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2592 -2992 48 ) ( 2592 -2992 32 ) ( 2608 -2918 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2592 -2992 176 ) ( 2592 -2992 192 ) ( 2608 -2996 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2608 -2918 192 ) ( 2608 -2918 176 ) ( 2624 -2920 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2624 -2920 112 ) ( 2608 -2996 112 ) ( 2616 -2958 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2592 -1424 -16 ) ( 2592 -1456 -16 ) ( 2624 -1440 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2643 +{ +( 2592 -3132 192 ) ( 2960 -3132 192 ) ( 2960 -3260 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2566 -3052 -16 ) ( 2566 -3052 -32 ) ( 2592 -2992 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2566 -3052 176 ) ( 2566 -3052 192 ) ( 2580 -3060 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2592 -2992 192 ) ( 2592 -2992 176 ) ( 2608 -2996 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2608 -2996 112 ) ( 2580 -3060 112 ) ( 2594 -3028 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2566 -1424 -16 ) ( 2566 -1456 -16 ) ( 2608 -1440 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2644 +{ +( 2536 -3264 192 ) ( 2904 -3264 192 ) ( 2904 -3392 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2522 -3118 48 ) ( 2522 -3118 32 ) ( 2566 -3052 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2522 -3118 176 ) ( 2522 -3118 192 ) ( 2536 -3128 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2566 -3052 192 ) ( 2566 -3052 176 ) ( 2580 -3060 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2580 -3060 112 ) ( 2536 -3128 112 ) ( 2558 -3094 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2522 -1424 -16 ) ( 2522 -1456 -16 ) ( 2580 -1440 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2645 +{ +( 2456 -3388 192 ) ( 2824 -3388 192 ) ( 2824 -3516 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -3162 -16 ) ( 2478 -3162 -32 ) ( 2522 -3118 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -3162 176 ) ( 2478 -3162 192 ) ( 2488 -3176 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2522 -3118 192 ) ( 2522 -3118 176 ) ( 2536 -3128 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2536 -3128 112 ) ( 2488 -3176 112 ) ( 2512 -3152 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -1424 -16 ) ( 2478 -1456 -16 ) ( 2536 -1440 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2646 +{ +( 2752 -3544 192 ) ( 2624 -3544 192 ) ( 2624 -3176 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -3162 32 ) ( 2478 -3162 48 ) ( 2412 -3206 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -3162 192 ) ( 2478 -3162 176 ) ( 2488 -3176 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2412 -3206 176 ) ( 2412 -3206 192 ) ( 2420 -3220 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2420 -3220 128 ) ( 2488 -3176 128 ) ( 2454 -3198 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2412 -1424 -16 ) ( 2412 -1456 -16 ) ( 2488 -1440 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2647 +{ +( 2620 -3600 192 ) ( 2492 -3600 192 ) ( 2492 -3232 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2412 -3206 -32 ) ( 2412 -3206 -16 ) ( 2352 -3232 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2412 -3206 192 ) ( 2412 -3206 176 ) ( 2420 -3220 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2352 -3232 176 ) ( 2352 -3232 192 ) ( 2356 -3248 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2356 -3248 128 ) ( 2420 -3220 128 ) ( 2388 -3234 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2352 -1424 -16 ) ( 2352 -1456 -16 ) ( 2420 -1440 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2648 +{ +( 2464 -3632 192 ) ( 2336 -3632 192 ) ( 2336 -3264 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2352 -3232 32 ) ( 2352 -3232 48 ) ( 2278 -3248 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2352 -3232 192 ) ( 2352 -3232 176 ) ( 2356 -3248 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2278 -3248 32 ) ( 2278 -3248 48 ) ( 2280 -3264 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2280 -3264 -16 ) ( 2356 -3248 -16 ) ( 2318 -3256 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2278 -1424 -16 ) ( 2278 -1456 -16 ) ( 2356 -1440 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2649 +{ +( 2368 -1664 -16 ) ( 2240 -1664 -16 ) ( 2240 -2032 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2240 -2032 0 ) ( 2240 -1664 0 ) ( 2368 -1664 0 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 2278 -2048 -16 ) ( 2278 -2048 -32 ) ( 2240 -2048 -32 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2282 -2032 0 ) ( 2282 -2032 -16 ) ( 2280 -2048 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2006 -2032 0 ) ( 2006 -2032 -16 ) ( 2282 -2032 -16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( 2006 -2032 -16 ) ( 2006 -2032 0 ) ( 2008 -2048 0 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2650 +{ +( 2112 -1664 192 ) ( 2240 -1664 192 ) ( 2240 -2032 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2240 -2064 -32 ) ( 2202 -2064 -32 ) ( 2202 -2064 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2280 -2048 192 ) ( 2280 -2048 -16 ) ( 2278 -2064 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2008 -2048 192 ) ( 2008 -2048 -16 ) ( 2280 -2048 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3680 -2048 -16 ) ( 3664 -2064 -16 ) ( 3696 -2064 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2008 -2048 -16 ) ( 2008 -2048 192 ) ( 2010 -2064 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2651 +{ +( 2240 -2032 192 ) ( 2240 -1664 192 ) ( 2368 -1664 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2318 -1648 192 ) ( 2318 -1648 176 ) ( 2316 -1664 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1970 -1648 192 ) ( 1970 -1648 -16 ) ( 2318 -1648 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2260 -1664 -32 ) ( 2240 -1664 -32 ) ( 2250 -1664 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2936 -1664 -16 ) ( 2968 -1664 -16 ) ( 2952 -1648 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1970 -1648 -16 ) ( 1970 -1648 192 ) ( 1972 -1664 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2652 +{ +( 2316 -1664 -16 ) ( 2166 -1664 -16 ) ( 2166 -1680 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2240 -2032 0 ) ( 2240 -1664 0 ) ( 2368 -1664 0 ) bricks/c_sr_mr5 0 0 180 1 1 0 0 0 +( 2314 -1680 -16 ) ( 2314 -1680 144 ) ( 2316 -1664 144 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 2164 -1664 0 ) ( 2164 -1664 -16 ) ( 2316 -1664 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1974 -1680 -16 ) ( 1974 -1680 0 ) ( 2314 -1680 0 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1974 -1680 0 ) ( 1974 -1680 -16 ) ( 1972 -1664 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2653 +{ +( 2992 -2208 192 ) ( 2992 -2336 192 ) ( 2624 -2336 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2592 -2320 32 ) ( 2592 -2320 48 ) ( 2608 -2394 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2592 -2320 192 ) ( 2592 -2320 176 ) ( 2608 -2316 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2608 -2394 32 ) ( 2608 -2394 48 ) ( 2624 -2392 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2624 -2392 -16 ) ( 2608 -2316 -16 ) ( 2616 -2354 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 784 -2394 -16 ) ( 816 -2394 -16 ) ( 800 -2316 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2654 +{ +( 2960 -2052 192 ) ( 2960 -2180 192 ) ( 2592 -2180 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2566 -2260 -32 ) ( 2566 -2260 -16 ) ( 2592 -2320 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2566 -2260 192 ) ( 2566 -2260 176 ) ( 2580 -2252 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2592 -2320 176 ) ( 2592 -2320 192 ) ( 2608 -2316 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2608 -2316 128 ) ( 2580 -2252 128 ) ( 2594 -2284 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 784 -2320 -16 ) ( 816 -2320 -16 ) ( 800 -2252 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2655 +{ +( 2904 -1920 192 ) ( 2904 -2048 192 ) ( 2536 -2048 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2522 -2194 32 ) ( 2522 -2194 48 ) ( 2566 -2260 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2522 -2194 192 ) ( 2522 -2194 176 ) ( 2536 -2184 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2566 -2260 176 ) ( 2566 -2260 192 ) ( 2580 -2252 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2580 -2252 128 ) ( 2536 -2184 128 ) ( 2558 -2218 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 784 -2260 -16 ) ( 816 -2260 -16 ) ( 800 -2184 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2656 +{ +( 2748 -2216 192 ) ( 2748 -1848 192 ) ( 2876 -1848 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2522 -2194 -16 ) ( 2522 -2194 -32 ) ( 2478 -2150 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2522 -2194 176 ) ( 2522 -2194 192 ) ( 2536 -2184 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -2150 192 ) ( 2478 -2150 176 ) ( 2488 -2136 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2488 -2136 112 ) ( 2536 -2184 112 ) ( 2512 -2160 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 784 -2194 -16 ) ( 816 -2194 -16 ) ( 800 -2136 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2657 +{ +( 2624 -2136 192 ) ( 2624 -1768 192 ) ( 2752 -1768 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -2150 48 ) ( 2478 -2150 32 ) ( 2412 -2106 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -2150 176 ) ( 2478 -2150 192 ) ( 2488 -2136 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2412 -2106 192 ) ( 2412 -2106 176 ) ( 2420 -2092 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2420 -2092 112 ) ( 2488 -2136 112 ) ( 2454 -2114 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 784 -2150 -16 ) ( 816 -2150 -16 ) ( 800 -2092 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2658 +{ +( 2492 -2080 192 ) ( 2492 -1712 192 ) ( 2620 -1712 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2412 -2106 -16 ) ( 2412 -2106 -32 ) ( 2352 -2080 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2412 -2106 176 ) ( 2412 -2106 192 ) ( 2420 -2092 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2352 -2080 192 ) ( 2352 -2080 176 ) ( 2356 -2064 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2356 -2064 112 ) ( 2420 -2092 112 ) ( 2388 -2078 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 784 -2106 -16 ) ( 816 -2106 -16 ) ( 800 -2064 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2659 +{ +( 2336 -2048 192 ) ( 2336 -1680 192 ) ( 2464 -1680 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2352 -2080 48 ) ( 2352 -2080 32 ) ( 2278 -2064 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2352 -2080 176 ) ( 2352 -2080 192 ) ( 2356 -2064 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2278 -2064 192 ) ( 2278 -2064 176 ) ( 2280 -2048 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2280 -2048 112 ) ( 2356 -2064 112 ) ( 2318 -2056 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 784 -2080 -16 ) ( 816 -2080 -16 ) ( 800 -2048 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2660 +{ +( 2336 -2048 192 ) ( 2336 -1680 192 ) ( 2464 -1680 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -1680 192 ) ( 2478 -1680 176 ) ( 2472 -1696 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -1680 -32 ) ( 2478 -1680 -16 ) ( 2318 -1648 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2318 -1648 176 ) ( 2318 -1648 192 ) ( 2316 -1664 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2472 -1696 176 ) ( 2316 -1664 176 ) ( 2394 -1680 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2936 -1696 -16 ) ( 2968 -1696 -16 ) ( 2952 -1648 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2661 +{ +( 2492 -2080 192 ) ( 2492 -1712 192 ) ( 2620 -1712 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2612 -1738 192 ) ( 2612 -1738 176 ) ( 2604 -1752 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2612 -1738 -32 ) ( 2612 -1738 -16 ) ( 2478 -1680 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2478 -1680 176 ) ( 2478 -1680 192 ) ( 2472 -1696 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2604 -1752 176 ) ( 2472 -1696 176 ) ( 2538 -1724 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2936 -1752 -16 ) ( 2968 -1752 -16 ) ( 2952 -1680 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2662 +{ +( 2624 -2136 192 ) ( 2624 -1768 192 ) ( 2752 -1768 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2738 -1820 48 ) ( 2738 -1820 32 ) ( 2728 -1832 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2738 -1820 -32 ) ( 2738 -1820 -16 ) ( 2612 -1738 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2612 -1738 176 ) ( 2612 -1738 192 ) ( 2604 -1752 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2728 -1832 176 ) ( 2604 -1752 176 ) ( 2666 -1792 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2936 -1832 -16 ) ( 2968 -1832 -16 ) ( 2952 -1738 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2663 +{ +( 2738 -1944 192 ) ( 2738 -1820 192 ) ( 2840 -1820 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2728 -1832 32 ) ( 2728 -1832 192 ) ( 2840 -1944 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2852 -1934 192 ) ( 2852 -1934 32 ) ( 2840 -1944 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2852 -1934 -32 ) ( 2852 -1934 128 ) ( 2738 -1820 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2728 -1832 192 ) ( 2728 -1832 32 ) ( 2738 -1820 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2936 -1944 -16 ) ( 2968 -1944 -16 ) ( 2952 -1820 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2664 +{ +( 2904 -1920 192 ) ( 2904 -2048 192 ) ( 2536 -2048 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2852 -1934 176 ) ( 2852 -1934 192 ) ( 2840 -1944 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2852 -1934 128 ) ( 2852 -1934 112 ) ( 2934 -2060 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2934 -2060 48 ) ( 2934 -2060 32 ) ( 2920 -2068 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2840 -1944 48 ) ( 2920 -2068 48 ) ( 2880 -2006 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2936 -2068 -16 ) ( 2968 -2068 -16 ) ( 2952 -1934 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2665 +{ +( 2960 -2052 192 ) ( 2960 -2180 192 ) ( 2592 -2180 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2934 -2060 32 ) ( 2934 -2060 48 ) ( 2920 -2068 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2934 -2060 128 ) ( 2934 -2060 112 ) ( 2992 -2194 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2992 -2194 48 ) ( 2992 -2194 32 ) ( 2976 -2200 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2920 -2068 48 ) ( 2976 -2200 48 ) ( 2948 -2134 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2936 -2200 -16 ) ( 2968 -2200 -16 ) ( 2952 -2060 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2666 +{ +( 2992 -2208 192 ) ( 2992 -2336 192 ) ( 2624 -2336 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2992 -2194 32 ) ( 2992 -2194 48 ) ( 2976 -2200 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2992 -2194 128 ) ( 2992 -2194 112 ) ( 3024 -2354 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3024 -2354 48 ) ( 3024 -2354 32 ) ( 3008 -2356 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2976 -2200 -16 ) ( 3008 -2356 -16 ) ( 2992 -2278 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2936 -2356 -16 ) ( 2968 -2356 -16 ) ( 2952 -2194 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2667 +{ +( 2707 -1858 192 ) ( 2728 -1832 160 ) ( 2604 -1752 160 ) bricks/c_tn_m1 0 -12 147 1 1 0 0 0 +( 2728 -1832 208 ) ( 2728 -1832 160 ) ( 2707 -1858 192 ) bricks/c_tn_m1 0 -12 147 1 1 0 0 0 +( 2604 -1752 160 ) ( 2728 -1832 160 ) ( 2728 -1832 208 ) bricks/c_tn_m1 0 -12 147 1 1 0 0 0 +( 2707 -1858 192 ) ( 2604 -1752 160 ) ( 2604 -1752 208 ) bricks/c_tn_m1 0 -12 147 1 1 0 0 0 +( 2784 -1858 192 ) ( 2728 -1858 192 ) ( 2756 -1752 192 ) bricks/c_tn_m1 0 -12 147 1 1 0 0 0 +} +// brush 2668 +{ +( 2707 -1858 192 ) ( 2604 -1752 160 ) ( 2588 -1781 192 ) bricks/c_tn_m1 0 -12 147 1 1 0 0 0 +( 2588 -1781 192 ) ( 2604 -1752 160 ) ( 2604 -1752 208 ) bricks/c_tn_m1 0 -12 147 1 1 0 0 0 +( 2604 -1752 208 ) ( 2604 -1752 160 ) ( 2707 -1858 192 ) bricks/c_tn_m1 0 -12 147 1 1 0 0 0 +( 2784 -1858 192 ) ( 2728 -1858 192 ) ( 2756 -1752 192 ) bricks/c_tn_m1 0 -12 147 1 1 0 0 0 +} +// brush 2669 +{ +( 2316 -1664 -32 ) ( 2316 -1664 -16 ) ( 2240 -1664 -16 ) bricks/s_sr_m12ab 0 -64 0 1 1 0 0 0 +( 2472 -1696 -32 ) ( 2472 -1696 -16 ) ( 2316 -1664 -16 ) bricks/s_sr_m12ab 0 -64 0 1 1 0 0 0 +( 2604 -1752 -32 ) ( 2604 -1752 -16 ) ( 2472 -1696 -16 ) bricks/s_sr_m12ab 0 -64 0 1 1 0 0 0 +( 2728 -1832 -32 ) ( 2728 -1832 -16 ) ( 2604 -1752 -16 ) bricks/s_sr_m12ab 0 -64 0 1 1 0 0 0 +( 2840 -1944 -32 ) ( 2840 -1944 -16 ) ( 2728 -1832 -16 ) bricks/s_sr_m12ab -128 -64 0 1 1 0 0 0 +( 2920 -2068 -32 ) ( 2920 -2068 -16 ) ( 2840 -1944 -16 ) bricks/s_sr_m12ab -128 -64 0 1 1 0 0 0 +( 2976 -2200 -32 ) ( 2976 -2200 -16 ) ( 2920 -2068 -16 ) bricks/s_sr_m12ab -128 -64 0 1 1 0 0 0 +( 2976 -2200 -16 ) ( 2976 -2200 -32 ) ( 3008 -2356 -32 ) bricks/s_sr_m12ab -128 -64 0 1 1 0 0 0 +( 3008 -2356 -16 ) ( 3008 -2356 -32 ) ( 3008 -2432 -32 ) bricks/s_sr_m12ab -128 -64 0 1 1 0 0 0 +( 1472 -3200 -32 ) ( 3008 -3200 -32 ) ( 3008 -1664 -32 ) bricks/s_sr_m12ab 0 64 0 1 1 0 0 0 +( 3008 -1664 -16 ) ( 3008 -3200 -16 ) ( 1472 -3200 -16 ) bricks/s_sr_m12ab 0 64 0 1 1 0 0 0 +( 2240 -1912 -80 ) ( 2240 -1856 -80 ) ( 2240 -1884 -16 ) bricks/s_sr_m12ab -128 -64 0 1 1 0 0 0 +( 2904 -2432 -80 ) ( 2840 -2432 -80 ) ( 2872 -2432 -16 ) bricks/s_sr_m12ab 0 -64 0 1 1 0 0 0 +( 2624 -2432 -32 ) ( 2240 -2048 -32 ) ( 2432 -2240 -16 ) bricks/s_sr_m12ab -128 -64 0 1 1 0 0 0 +} +// brush 2670 +{ +( 2316 -1664 192 ) ( 2316 -1664 208 ) ( 2240 -1664 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2472 -1696 192 ) ( 2472 -1696 208 ) ( 2316 -1664 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2604 -1752 192 ) ( 2604 -1752 208 ) ( 2472 -1696 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2728 -1832 192 ) ( 2728 -1832 208 ) ( 2604 -1752 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2840 -1944 192 ) ( 2840 -1944 208 ) ( 2728 -1832 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2920 -2068 192 ) ( 2920 -2068 208 ) ( 2840 -1944 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2976 -2200 192 ) ( 2976 -2200 208 ) ( 2920 -2068 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2976 -2200 208 ) ( 2976 -2200 192 ) ( 3008 -2356 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3008 -2356 208 ) ( 3008 -2356 192 ) ( 3008 -2432 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1472 -3200 192 ) ( 3008 -3200 192 ) ( 3008 -1664 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 3008 -1664 208 ) ( 3008 -3200 208 ) ( 1472 -3200 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2240 -1912 144 ) ( 2240 -1856 144 ) ( 2240 -1884 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2904 -2432 144 ) ( 2840 -2432 144 ) ( 2872 -2432 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2624 -2432 192 ) ( 2240 -2048 192 ) ( 2432 -2240 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2671 +{ +( 2283 -2016 192 ) ( 2280 -2048 160 ) ( 2366 -2033 192 ) bricks/c_tn_m1 -121 7 348 1 1 0 0 0 +( 2280 -2048 208 ) ( 2280 -2048 160 ) ( 2283 -2016 192 ) bricks/c_tn_m1 -121 7 348 1 1 0 0 0 +( 2366 -2033 192 ) ( 2280 -2048 160 ) ( 2280 -2048 208 ) bricks/c_tn_m1 -121 7 348 1 1 0 0 0 +( 2280 -2296 192 ) ( 2280 -2272 192 ) ( 2366 -2284 192 ) bricks/c_tn_m1 -121 7 348 1 1 0 0 0 +} +// brush 2672 +{ +( 2280 -2048 160 ) ( 2356 -2064 160 ) ( 2366 -2033 192 ) bricks/c_tn_m1 -121 7 348 1 1 0 0 0 +( 2356 -2064 208 ) ( 2356 -2064 160 ) ( 2280 -2048 160 ) bricks/c_tn_m1 -121 7 348 1 1 0 0 0 +( 2366 -2033 192 ) ( 2356 -2064 160 ) ( 2356 -2064 208 ) bricks/c_tn_m1 -121 7 348 1 1 0 0 0 +( 2280 -2048 160 ) ( 2366 -2033 192 ) ( 2366 -2033 208 ) bricks/c_tn_m1 -121 7 348 1 1 0 0 0 +( 2280 -2296 192 ) ( 2280 -2272 192 ) ( 2366 -2284 192 ) bricks/c_tn_m1 -121 7 348 1 1 0 0 0 +} +// brush 2673 +{ +( 2342 -2089 192 ) ( 2332 -2120 160 ) ( 2411 -2120 192 ) bricks/c_tn_m1 0 -4 336 1 1 0 0 0 +( 2332 -2120 208 ) ( 2332 -2120 160 ) ( 2342 -2089 192 ) bricks/c_tn_m1 51 -30 336 1 1 0 0 0 +( 2411 -2120 192 ) ( 2332 -2120 160 ) ( 2332 -2120 208 ) bricks/c_tn_m1 21 -17 336 1 1 0 0 0 +( 2332 -2352 192 ) ( 2332 -2328 192 ) ( 2411 -2340 192 ) bricks/c_tn_m1 0 -4 336 1 1 0 0 0 +} +// brush 2674 +{ +( 2332 -2120 160 ) ( 2396 -2148 160 ) ( 2411 -2120 192 ) bricks/c_tn_m1 0 -4 336 1 1 0 0 0 +( 2396 -2148 208 ) ( 2396 -2148 160 ) ( 2332 -2120 160 ) bricks/c_tn_m1 21 -17 336 1 1 0 0 0 +( 2411 -2120 192 ) ( 2396 -2148 160 ) ( 2396 -2148 208 ) bricks/c_tn_m1 51 -30 336 1 1 0 0 0 +( 2332 -2120 208 ) ( 2332 -2120 160 ) ( 2411 -2120 192 ) bricks/c_tn_m1 21 -17 336 1 1 0 0 0 +( 2332 -2352 192 ) ( 2332 -2328 192 ) ( 2411 -2340 192 ) bricks/c_tn_m1 0 -4 336 1 1 0 0 0 +} +// brush 2675 +{ +( 2435 -2064 192 ) ( 2420 -2092 160 ) ( 2508 -2111 192 ) bricks/c_tn_m1 0 11 327 1 1 0 0 0 +( 2420 -2092 208 ) ( 2420 -2092 160 ) ( 2435 -2064 192 ) bricks/c_tn_m1 0 11 327 1 1 0 0 0 +( 2508 -2111 192 ) ( 2420 -2092 160 ) ( 2420 -2092 208 ) bricks/c_tn_m1 0 11 327 1 1 0 0 0 +( 2420 -2296 192 ) ( 2420 -2272 192 ) ( 2508 -2284 192 ) bricks/c_tn_m1 0 11 327 1 1 0 0 0 +} +// brush 2676 +{ +( 2420 -2092 160 ) ( 2488 -2136 160 ) ( 2508 -2111 192 ) bricks/c_tn_m1 0 11 327 1 1 0 0 0 +( 2488 -2136 208 ) ( 2488 -2136 160 ) ( 2420 -2092 160 ) bricks/c_tn_m1 0 11 327 1 1 0 0 0 +( 2508 -2111 192 ) ( 2488 -2136 160 ) ( 2488 -2136 208 ) bricks/c_tn_m1 0 11 327 1 1 0 0 0 +( 2420 -2092 208 ) ( 2420 -2092 160 ) ( 2508 -2111 192 ) bricks/c_tn_m1 0 11 327 1 1 0 0 0 +( 2420 -2296 192 ) ( 2420 -2272 192 ) ( 2508 -2284 192 ) bricks/c_tn_m1 0 11 327 1 1 0 0 0 +} +// brush 2677 +{ +( 2508 -2111 192 ) ( 2536 -2184 160 ) ( 2561 -2164 192 ) bricks/c_tn_m1 -84 -8 315 1 1 0 0 0 +( 2561 -2164 192 ) ( 2536 -2184 160 ) ( 2536 -2184 208 ) bricks/c_tn_m1 -84 -8 315 1 1 0 0 0 +( 2536 -2184 208 ) ( 2536 -2184 160 ) ( 2508 -2111 192 ) bricks/c_tn_m1 -84 -8 315 1 1 0 0 0 +( 2508 -2296 192 ) ( 2508 -2272 192 ) ( 2561 -2284 192 ) bricks/c_tn_m1 -84 -8 315 1 1 0 0 0 +} +// brush 2678 +{ +( 2488 -2136 160 ) ( 2536 -2184 160 ) ( 2508 -2111 192 ) bricks/c_tn_m1 -84 -8 315 1 1 0 0 0 +( 2536 -2184 208 ) ( 2536 -2184 160 ) ( 2488 -2136 160 ) bricks/c_tn_m1 -84 -8 315 1 1 0 0 0 +( 2488 -2136 208 ) ( 2488 -2136 160 ) ( 2508 -2111 192 ) bricks/c_tn_m1 -84 -8 315 1 1 0 0 0 +( 2508 -2111 192 ) ( 2536 -2184 160 ) ( 2536 -2184 208 ) bricks/c_tn_m1 -84 -8 315 1 1 0 0 0 +( 2488 -2296 192 ) ( 2488 -2272 192 ) ( 2536 -2284 192 ) bricks/c_tn_m1 -84 -8 315 1 1 0 0 0 +} +// brush 2679 +{ +( 2561 -2164 192 ) ( 2536 -2184 160 ) ( 2580 -2252 160 ) bricks/c_tn_m1 0 8 303 1 1 0 0 0 +( 2580 -2252 160 ) ( 2536 -2184 160 ) ( 2536 -2184 208 ) bricks/c_tn_m1 0 8 303 1 1 0 0 0 +( 2536 -2184 208 ) ( 2536 -2184 160 ) ( 2561 -2164 192 ) bricks/c_tn_m1 0 8 303 1 1 0 0 0 +( 2561 -2164 192 ) ( 2580 -2252 160 ) ( 2580 -2252 208 ) bricks/c_tn_m1 0 8 303 1 1 0 0 0 +( 2536 -2296 192 ) ( 2536 -2272 192 ) ( 2580 -2284 192 ) bricks/c_tn_m1 0 8 303 1 1 0 0 0 +} +// brush 2680 +{ +( 2561 -2164 192 ) ( 2580 -2252 160 ) ( 2608 -2237 192 ) bricks/c_tn_m1 0 8 303 1 1 0 0 0 +( 2608 -2237 192 ) ( 2580 -2252 160 ) ( 2580 -2252 208 ) bricks/c_tn_m1 0 8 303 1 1 0 0 0 +( 2580 -2252 208 ) ( 2580 -2252 160 ) ( 2561 -2164 192 ) bricks/c_tn_m1 0 8 303 1 1 0 0 0 +( 2561 -2296 192 ) ( 2561 -2272 192 ) ( 2608 -2284 192 ) bricks/c_tn_m1 0 8 303 1 1 0 0 0 +} +// brush 2681 +{ +( 2560 -2261 192 ) ( 2532 -2276 160 ) ( 2560 -2340 160 ) bricks/c_tn_m1 -2 -30 294 1 1 0 0 0 +( 2560 -2340 160 ) ( 2532 -2276 160 ) ( 2532 -2276 208 ) bricks/c_tn_m1 9 1 294 1 1 0 0 0 +( 2532 -2276 208 ) ( 2532 -2276 160 ) ( 2560 -2261 192 ) bricks/c_tn_m1 19 -20 294 1 1 0 0 0 +( 2560 -2261 192 ) ( 2560 -2340 160 ) ( 2560 -2340 208 ) bricks/c_tn_m1 9 1 294 1 1 0 0 0 +( 2532 -2320 192 ) ( 2532 -2296 192 ) ( 2560 -2308 192 ) bricks/c_tn_m1 -2 -30 294 1 1 0 0 0 +} +// brush 2682 +{ +( 2560 -2261 192 ) ( 2560 -2340 160 ) ( 2591 -2330 192 ) bricks/c_tn_m1 -2 -30 294 1 1 0 0 0 +( 2591 -2330 192 ) ( 2560 -2340 160 ) ( 2560 -2340 208 ) bricks/c_tn_m1 19 -20 294 1 1 0 0 0 +( 2560 -2340 208 ) ( 2560 -2340 160 ) ( 2560 -2261 192 ) bricks/c_tn_m1 9 1 294 1 1 0 0 0 +( 2560 -2320 192 ) ( 2560 -2296 192 ) ( 2591 -2308 192 ) bricks/c_tn_m1 -2 -30 294 1 1 0 0 0 +} +// brush 2683 +{ +( 2639 -2306 192 ) ( 2608 -2316 160 ) ( 2624 -2392 160 ) bricks/c_tn_m1 37 -11 282 1 1 0 0 0 +( 2624 -2392 160 ) ( 2608 -2316 160 ) ( 2608 -2316 208 ) bricks/c_tn_m1 37 -11 282 1 1 0 0 0 +( 2608 -2316 208 ) ( 2608 -2316 160 ) ( 2639 -2306 192 ) bricks/c_tn_m1 37 -11 282 1 1 0 0 0 +( 2639 -2306 208 ) ( 2639 -2306 192 ) ( 2624 -2392 160 ) bricks/c_tn_m1 37 -11 282 1 1 0 0 0 +( 2608 -2296 192 ) ( 2608 -2272 192 ) ( 2639 -2284 192 ) bricks/c_tn_m1 37 -11 282 1 1 0 0 0 +} +// brush 2684 +{ +( 2639 -2306 192 ) ( 2624 -2392 160 ) ( 2656 -2389 192 ) bricks/c_tn_m1 37 -11 282 1 1 0 0 0 +( 2656 -2389 192 ) ( 2624 -2392 160 ) ( 2624 -2392 208 ) bricks/c_tn_m1 37 -11 282 1 1 0 0 0 +( 2624 -2392 208 ) ( 2624 -2392 160 ) ( 2639 -2306 192 ) bricks/c_tn_m1 37 -11 282 1 1 0 0 0 +( 2624 -2296 192 ) ( 2624 -2272 192 ) ( 2656 -2284 192 ) bricks/c_tn_m1 37 -11 282 1 1 0 0 0 +} +// brush 2685 +{ +( 2462 -1727 192 ) ( 2316 -1664 160 ) ( 2313 -1696 192 ) bricks/c_tn_m1 0 -6 168 1 1 0 0 0 +( 2313 -1696 192 ) ( 2316 -1664 160 ) ( 2316 -1664 208 ) bricks/c_tn_m1 0 -6 168 1 1 0 0 0 +( 2316 -1664 208 ) ( 2316 -1664 160 ) ( 2462 -1727 192 ) bricks/c_tn_m1 0 -6 168 1 1 0 0 0 +( 2784 -1727 192 ) ( 2728 -1727 192 ) ( 2756 -1664 192 ) bricks/c_tn_m1 0 -6 168 1 1 0 0 0 +} +// brush 2686 +{ +( 2462 -1727 192 ) ( 2472 -1696 160 ) ( 2316 -1664 160 ) bricks/c_tn_m1 0 -6 168 1 1 0 0 0 +( 2472 -1696 208 ) ( 2472 -1696 160 ) ( 2462 -1727 192 ) bricks/c_tn_m1 0 -6 168 1 1 0 0 0 +( 2316 -1664 160 ) ( 2472 -1696 160 ) ( 2472 -1696 208 ) bricks/c_tn_m1 0 -6 168 1 1 0 0 0 +( 2462 -1727 192 ) ( 2316 -1664 160 ) ( 2316 -1664 208 ) bricks/c_tn_m1 0 -6 168 1 1 0 0 0 +( 2784 -1727 192 ) ( 2728 -1727 192 ) ( 2756 -1664 192 ) bricks/c_tn_m1 0 -6 168 1 1 0 0 0 +} +// brush 2687 +{ +( 2612 -1733 192 ) ( 2496 -1648 160 ) ( 2486 -1679 192 ) bricks/c_tn_m1 3 4 157 1 1 0 0 0 +( 2486 -1679 192 ) ( 2496 -1648 160 ) ( 2496 -1648 208 ) bricks/c_tn_m1 44 7 157 1 1 0 0 0 +( 2496 -1648 208 ) ( 2496 -1648 160 ) ( 2612 -1733 192 ) bricks/c_tn_m1 22 -15 157 1 1 0 0 0 +( 2808 -1733 192 ) ( 2752 -1733 192 ) ( 2780 -1648 192 ) bricks/c_tn_m1 3 4 157 1 1 0 0 0 +} +// brush 2688 +{ +( 2612 -1733 192 ) ( 2628 -1704 160 ) ( 2496 -1648 160 ) bricks/c_tn_m1 3 4 157 1 1 0 0 0 +( 2628 -1704 208 ) ( 2628 -1704 160 ) ( 2612 -1733 192 ) bricks/c_tn_m1 44 7 157 1 1 0 0 0 +( 2496 -1648 160 ) ( 2628 -1704 160 ) ( 2628 -1704 208 ) bricks/c_tn_m1 22 -15 157 1 1 0 0 0 +( 2612 -1733 192 ) ( 2496 -1648 160 ) ( 2496 -1648 208 ) bricks/c_tn_m1 22 -15 157 1 1 0 0 0 +( 2808 -1733 192 ) ( 2752 -1733 192 ) ( 2780 -1648 192 ) bricks/c_tn_m1 3 4 157 1 1 0 0 0 +} +// brush 2689 +{ +( 2920 -2068 160 ) ( 2840 -1944 160 ) ( 2814 -1965 192 ) bricks/c_tn_m1 -27 -10 123 1 1 0 0 0 +( 2814 -1965 192 ) ( 2840 -1944 160 ) ( 2840 -1944 208 ) bricks/c_tn_m1 -27 -10 123 1 1 0 0 0 +( 2840 -1944 208 ) ( 2840 -1944 160 ) ( 2920 -2068 160 ) bricks/c_tn_m1 -27 -10 123 1 1 0 0 0 +( 2920 -2068 208 ) ( 2920 -2068 160 ) ( 2814 -1965 192 ) bricks/c_tn_m1 -27 -10 123 1 1 0 0 0 +( 2784 -2068 192 ) ( 2728 -2068 192 ) ( 2756 -1944 192 ) bricks/c_tn_m1 -27 -10 123 1 1 0 0 0 +} +// brush 2690 +{ +( 2891 -2084 192 ) ( 2920 -2068 160 ) ( 2814 -1965 192 ) bricks/c_tn_m1 -27 -10 123 1 1 0 0 0 +( 2920 -2068 208 ) ( 2920 -2068 160 ) ( 2891 -2084 192 ) bricks/c_tn_m1 -27 -10 123 1 1 0 0 0 +( 2814 -1965 192 ) ( 2920 -2068 160 ) ( 2920 -2068 208 ) bricks/c_tn_m1 -27 -10 123 1 1 0 0 0 +( 2784 -2084 192 ) ( 2728 -2084 192 ) ( 2756 -1965 192 ) bricks/c_tn_m1 -27 -10 123 1 1 0 0 0 +} +// brush 2691 +{ +( 3024 -2176 160 ) ( 2968 -2044 160 ) ( 2939 -2060 192 ) bricks/c_tn_m1 130 -3 113 1 1 0 0 0 +( 2939 -2060 192 ) ( 2968 -2044 160 ) ( 2968 -2044 208 ) bricks/c_tn_m1 152 -26 113 1 1 0 0 0 +( 2968 -2044 208 ) ( 2968 -2044 160 ) ( 3024 -2176 160 ) bricks/c_tn_m1 143 -4 113 1 1 0 0 0 +( 3024 -2176 208 ) ( 3024 -2176 160 ) ( 2939 -2060 192 ) bricks/c_tn_m1 143 -4 113 1 1 0 0 0 +( 2832 -2176 192 ) ( 2776 -2176 192 ) ( 2804 -2044 192 ) bricks/c_tn_m1 130 -3 113 1 1 0 0 0 +} +// brush 2692 +{ +( 2993 -2186 192 ) ( 3024 -2176 160 ) ( 2939 -2060 192 ) bricks/c_tn_m1 130 -3 113 1 1 0 0 0 +( 3024 -2176 208 ) ( 3024 -2176 160 ) ( 2993 -2186 192 ) bricks/c_tn_m1 152 -26 113 1 1 0 0 0 +( 2939 -2060 192 ) ( 3024 -2176 160 ) ( 3024 -2176 208 ) bricks/c_tn_m1 143 -4 113 1 1 0 0 0 +( 2832 -2186 192 ) ( 2776 -2186 192 ) ( 2804 -2060 192 ) bricks/c_tn_m1 130 -3 113 1 1 0 0 0 +} +// brush 2693 +{ +( 3008 -2356 160 ) ( 2976 -2200 160 ) ( 2945 -2210 192 ) bricks/c_tn_m1 60 11 102 1 1 0 0 0 +( 2945 -2210 192 ) ( 2976 -2200 160 ) ( 2976 -2200 208 ) bricks/c_tn_m1 60 11 102 1 1 0 0 0 +( 2976 -2200 208 ) ( 2976 -2200 160 ) ( 3008 -2356 160 ) bricks/c_tn_m1 60 11 102 1 1 0 0 0 +( 3008 -2356 208 ) ( 3008 -2356 160 ) ( 2945 -2210 192 ) bricks/c_tn_m1 60 11 102 1 1 0 0 0 +( 2784 -2356 192 ) ( 2728 -2356 192 ) ( 2756 -2200 192 ) bricks/c_tn_m1 60 11 102 1 1 0 0 0 +} +// brush 2694 +{ +( 2976 -2359 192 ) ( 3008 -2356 160 ) ( 2945 -2210 192 ) bricks/c_tn_m1 60 11 102 1 1 0 0 0 +( 3008 -2356 208 ) ( 3008 -2356 160 ) ( 2976 -2359 192 ) bricks/c_tn_m1 60 11 102 1 1 0 0 0 +( 2945 -2210 192 ) ( 3008 -2356 160 ) ( 3008 -2356 208 ) bricks/c_tn_m1 60 11 102 1 1 0 0 0 +( 2784 -2359 192 ) ( 2728 -2359 192 ) ( 2756 -2210 192 ) bricks/c_tn_m1 60 11 102 1 1 0 0 0 +} +// brush 2695 +{ +( 2536 -2124 -16 ) ( 2498 -2124 -16 ) ( 2498 -2184 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2498 -2184 0 ) ( 2498 -2124 0 ) ( 2536 -2124 0 ) bricks/c_sr_mr5 0 -9 315 1 1 0 0 0 +( 2488 -2136 -16 ) ( 2488 -2136 0 ) ( 2536 -2184 0 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2548 -2174 0 ) ( 2548 -2174 -16 ) ( 2536 -2184 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2548 -2174 -16 ) ( 2548 -2174 0 ) ( 2498 -2124 0 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( 2488 -2136 0 ) ( 2488 -2136 -16 ) ( 2498 -2124 -16 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 2696 +{ +( 2992 -2208 0 ) ( 2992 -2336 0 ) ( 2624 -2336 0 ) bricks/c_sr_mr5 0 -11 282 1 1 0 0 0 +( 2624 -2336 -16 ) ( 2992 -2336 -16 ) ( 2992 -2208 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2608 -2316 -144 ) ( 2608 -2316 16 ) ( 2624 -2392 16 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2608 -2316 16 ) ( 2608 -2316 -144 ) ( 2624 -2312 -144 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2608 -2394 -144 ) ( 2608 -2394 -128 ) ( 2624 -2392 -128 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2624 -2312 16 ) ( 2624 -2312 -144 ) ( 2640 -2390 -144 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 2697 +{ +( 2960 -2052 0 ) ( 2960 -2180 0 ) ( 2592 -2180 0 ) bricks/c_sr_mr5 0 0 294 1 1 0 0 0 +( 2592 -2180 -16 ) ( 2960 -2180 -16 ) ( 2960 -2052 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2580 -2252 -144 ) ( 2580 -2252 16 ) ( 2608 -2316 16 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2594 -2244 -144 ) ( 2594 -2244 16 ) ( 2580 -2252 16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2624 -2312 16 ) ( 2624 -2312 -144 ) ( 2608 -2316 -144 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2624 -2312 -144 ) ( 2624 -2312 16 ) ( 2594 -2244 16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 2698 +{ +( 2904 -1920 0 ) ( 2904 -2048 0 ) ( 2536 -2048 0 ) bricks/c_sr_mr5 0 8 303 1 1 0 0 0 +( 2536 -2048 -16 ) ( 2904 -2048 -16 ) ( 2904 -1920 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2536 -2184 -144 ) ( 2536 -2184 16 ) ( 2580 -2252 16 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2548 -2174 -144 ) ( 2548 -2174 16 ) ( 2536 -2184 16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2594 -2244 16 ) ( 2594 -2244 -144 ) ( 2580 -2252 -144 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2548 -2174 16 ) ( 2548 -2174 -144 ) ( 2594 -2244 -144 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 2699 +{ +( 2752 -1768 -16 ) ( 2624 -1768 -16 ) ( 2624 -2136 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2624 -2136 0 ) ( 2624 -1768 0 ) ( 2752 -1768 0 ) bricks/c_sr_mr5 0 11 327 1 1 0 0 0 +( 2488 -2136 128 ) ( 2488 -2136 -32 ) ( 2420 -2092 -32 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2498 -2124 128 ) ( 2498 -2124 -32 ) ( 2488 -2136 -32 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2428 -2078 -32 ) ( 2428 -2078 128 ) ( 2420 -2092 128 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2498 -2124 -32 ) ( 2498 -2124 128 ) ( 2428 -2078 128 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 2700 +{ +( 2620 -1712 -16 ) ( 2492 -1712 -16 ) ( 2492 -2080 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2492 -2080 0 ) ( 2492 -1712 0 ) ( 2620 -1712 0 ) bricks/c_sr_mr5 0 0 336 1 1 0 0 0 +( 2420 -2092 128 ) ( 2420 -2092 -32 ) ( 2356 -2064 -32 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2428 -2078 128 ) ( 2428 -2078 -32 ) ( 2420 -2092 -32 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2360 -2048 -32 ) ( 2360 -2048 128 ) ( 2356 -2064 128 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2360 -2048 128 ) ( 2360 -2048 -32 ) ( 2428 -2078 -32 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 2701 +{ +( 2464 -1680 -16 ) ( 2336 -1680 -16 ) ( 2336 -2048 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2336 -2048 0 ) ( 2336 -1680 0 ) ( 2464 -1680 0 ) bricks/c_sr_mr5 0 -10 349 1 1 0 0 0 +( 2356 -2064 128 ) ( 2356 -2064 -32 ) ( 2280 -2048 -32 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2356 -2064 -32 ) ( 2356 -2064 128 ) ( 2360 -2048 128 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2278 -2064 128 ) ( 2278 -2064 112 ) ( 2280 -2048 112 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2360 -2048 -32 ) ( 2360 -2048 128 ) ( 2282 -2032 128 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 2702 +{ +( 2782 -1834 -16 ) ( 2728 -1834 -16 ) ( 2728 -1918 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2728 -1918 0 ) ( 2728 -1834 0 ) ( 2782 -1834 0 ) bricks/c_sr_mr5 0 5 135 1 1 0 0 0 +( 2840 -1944 0 ) ( 2840 -1944 -16 ) ( 2830 -1952 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2840 -1944 -16 ) ( 2840 -1944 0 ) ( 2728 -1832 0 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2728 -1832 -16 ) ( 2728 -1832 0 ) ( 2720 -1842 0 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2776 -1898 0 ) ( 2776 -1898 -16 ) ( 2720 -1842 -16 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 2703 +{ +( 2992 -2208 0 ) ( 2992 -2336 0 ) ( 2624 -2336 0 ) bricks/c_sr_mr5 0 -7 101 1 1 0 0 0 +( 2624 -2336 -16 ) ( 2992 -2336 -16 ) ( 2992 -2208 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2962 -2204 16 ) ( 2962 -2204 -144 ) ( 2976 -2200 -144 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 3008 -2356 -144 ) ( 3008 -2356 16 ) ( 2976 -2200 16 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2992 -2358 -144 ) ( 2992 -2358 16 ) ( 3008 -2356 16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2962 -2204 -144 ) ( 2962 -2204 16 ) ( 2992 -2358 16 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 2704 +{ +( 2960 -2052 0 ) ( 2960 -2180 0 ) ( 2592 -2180 0 ) bricks/c_sr_mr5 0 8 113 1 1 0 0 0 +( 2592 -2180 -16 ) ( 2960 -2180 -16 ) ( 2960 -2052 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2920 -2068 -144 ) ( 2920 -2068 16 ) ( 2908 -2074 16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2920 -2068 16 ) ( 2920 -2068 -144 ) ( 2976 -2200 -144 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2962 -2204 -144 ) ( 2962 -2204 16 ) ( 2976 -2200 16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2908 -2074 -144 ) ( 2908 -2074 16 ) ( 2962 -2204 16 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 2705 +{ +( 2904 -1920 0 ) ( 2904 -2048 0 ) ( 2536 -2048 0 ) bricks/c_sr_mr5 0 -12 123 1 1 0 0 0 +( 2536 -2048 -16 ) ( 2904 -2048 -16 ) ( 2904 -1920 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2830 -1952 16 ) ( 2830 -1952 -144 ) ( 2840 -1944 -144 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2920 -2068 -144 ) ( 2920 -2068 16 ) ( 2840 -1944 16 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2908 -2074 -144 ) ( 2908 -2074 16 ) ( 2920 -2068 16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2830 -1952 -144 ) ( 2830 -1952 16 ) ( 2908 -2074 16 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 2706 +{ +( 2752 -1768 -16 ) ( 2624 -1768 -16 ) ( 2624 -2136 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2624 -2136 0 ) ( 2624 -1768 0 ) ( 2752 -1768 0 ) bricks/c_sr_mr5 0 18 147 1 1 0 0 0 +( 2720 -1842 -32 ) ( 2720 -1842 128 ) ( 2728 -1832 128 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2604 -1752 128 ) ( 2604 -1752 -32 ) ( 2728 -1832 -32 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2598 -1764 128 ) ( 2598 -1764 -32 ) ( 2604 -1752 -32 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2720 -1842 128 ) ( 2720 -1842 -32 ) ( 2598 -1764 -32 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +} +// brush 2707 +{ +( 2620 -1712 -16 ) ( 2492 -1712 -16 ) ( 2492 -2080 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2492 -2080 0 ) ( 2492 -1712 0 ) ( 2620 -1712 0 ) bricks/c_sr_mr5 0 -13 157 1 1 0 0 0 +( 2604 -1752 128 ) ( 2604 -1752 -32 ) ( 2598 -1764 -32 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2604 -1752 -32 ) ( 2604 -1752 128 ) ( 2472 -1696 128 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2468 -1710 128 ) ( 2468 -1710 -32 ) ( 2472 -1696 -32 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2598 -1764 128 ) ( 2598 -1764 -32 ) ( 2468 -1710 -32 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +} +// brush 2708 +{ +( 2464 -1680 -16 ) ( 2336 -1680 -16 ) ( 2336 -2048 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2336 -2048 0 ) ( 2336 -1680 0 ) ( 2464 -1680 0 ) bricks/c_sr_mr5 0 7 169 1 1 0 0 0 +( 2468 -1710 -32 ) ( 2468 -1710 128 ) ( 2472 -1696 128 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2316 -1664 128 ) ( 2316 -1664 -32 ) ( 2472 -1696 -32 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( 2314 -1680 128 ) ( 2314 -1680 -32 ) ( 2316 -1664 -32 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( 2468 -1710 128 ) ( 2468 -1710 -32 ) ( 2314 -1680 -32 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +} +// brush 2709 +{ +( 2040 -3248 -32 ) ( 2040 -3664 -32 ) ( 2240 -3664 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2240 -3664 -16 ) ( 2040 -3664 -16 ) ( 2040 -3248 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2240 -3664 -16 ) ( 2240 -3248 -16 ) ( 2240 -3248 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2240 -3248 -16 ) ( 2040 -3248 -16 ) ( 2040 -3248 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2112 -3248 -16 ) ( 2112 -3664 -16 ) ( 2112 -3664 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2040 -3664 -16 ) ( 2240 -3664 -16 ) ( 2240 -3664 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2710 +{ +( 1984 -3248 -40 ) ( 1984 -3664 -40 ) ( 2112 -3664 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1984 -3664 -24 ) ( 1984 -3248 -24 ) ( 2112 -3248 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2112 -3664 -16 ) ( 2112 -3248 -16 ) ( 2112 -3248 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1984 -3248 -24 ) ( 1984 -3248 -40 ) ( 2112 -3248 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1984 -3248 -24 ) ( 1984 -3664 -24 ) ( 1984 -3664 -40 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1984 -3664 -40 ) ( 1984 -3664 -24 ) ( 2112 -3664 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2711 +{ +( 1856 -3248 -56 ) ( 1856 -3664 -56 ) ( 1984 -3664 -40 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1856 -3664 -40 ) ( 1856 -3248 -40 ) ( 1984 -3248 -24 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1984 -3664 -24 ) ( 1984 -3248 -24 ) ( 1984 -3248 -40 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1856 -3248 -40 ) ( 1856 -3248 -56 ) ( 1984 -3248 -40 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1856 -3248 -40 ) ( 1856 -3664 -40 ) ( 1856 -3664 -56 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1856 -3664 -56 ) ( 1856 -3664 -40 ) ( 1984 -3664 -24 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2712 +{ +( 1728 -3248 -80 ) ( 1728 -3664 -80 ) ( 1856 -3664 -56 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1728 -3664 -64 ) ( 1728 -3248 -64 ) ( 1856 -3248 -40 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1856 -3664 -40 ) ( 1856 -3248 -40 ) ( 1856 -3248 -56 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1728 -3248 -64 ) ( 1728 -3248 -80 ) ( 1856 -3248 -56 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1728 -3248 -64 ) ( 1728 -3664 -64 ) ( 1728 -3664 -80 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1728 -3664 -80 ) ( 1728 -3664 -64 ) ( 1856 -3664 -40 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2713 +{ +( 1600 -3248 -112 ) ( 1600 -3664 -112 ) ( 1728 -3664 -80 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1600 -3664 -96 ) ( 1600 -3248 -96 ) ( 1728 -3248 -64 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1728 -3664 -64 ) ( 1728 -3248 -64 ) ( 1728 -3248 -80 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1600 -3248 -96 ) ( 1600 -3248 -112 ) ( 1728 -3248 -80 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1600 -3248 -96 ) ( 1600 -3664 -96 ) ( 1600 -3664 -112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1600 -3664 -112 ) ( 1600 -3664 -96 ) ( 1728 -3664 -64 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2714 +{ +( 1280 -3248 -208 ) ( 1280 -3664 -208 ) ( 1600 -3664 -112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1280 -3664 -192 ) ( 1280 -3248 -192 ) ( 1600 -3248 -96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1600 -3664 -96 ) ( 1600 -3248 -96 ) ( 1600 -3248 -112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1280 -3248 -188 ) ( 1280 -3248 -204 ) ( 1600 -3248 -112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1280 -3248 -192 ) ( 1280 -3664 -192 ) ( 1280 -3664 -208 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1280 -3664 -204 ) ( 1280 -3664 -188 ) ( 1600 -3664 -96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2715 +{ +( 1152 -3248 -240 ) ( 1152 -3664 -240 ) ( 1280 -3664 -208 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1152 -3664 -224 ) ( 1152 -3248 -224 ) ( 1280 -3248 -192 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1280 -3664 -192 ) ( 1280 -3248 -192 ) ( 1280 -3248 -208 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1152 -3248 -224 ) ( 1152 -3248 -240 ) ( 1280 -3248 -208 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1152 -3248 -224 ) ( 1152 -3664 -224 ) ( 1152 -3664 -240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1152 -3664 -240 ) ( 1152 -3664 -224 ) ( 1280 -3664 -192 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2716 +{ +( 1024 -3248 -264 ) ( 1024 -3664 -264 ) ( 1152 -3664 -240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1024 -3664 -248 ) ( 1024 -3248 -248 ) ( 1152 -3248 -224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1152 -3664 -224 ) ( 1152 -3248 -224 ) ( 1152 -3248 -240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1024 -3248 -248 ) ( 1024 -3248 -264 ) ( 1152 -3248 -240 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1024 -3248 -248 ) ( 1024 -3664 -248 ) ( 1024 -3664 -264 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1024 -3664 -264 ) ( 1024 -3664 -248 ) ( 1152 -3664 -224 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2717 +{ +( 896 -3248 -280 ) ( 896 -3664 -280 ) ( 1024 -3664 -264 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 896 -3664 -264 ) ( 896 -3248 -264 ) ( 1024 -3248 -248 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1024 -3664 -248 ) ( 1024 -3248 -248 ) ( 1024 -3248 -264 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 896 -3248 -264 ) ( 896 -3248 -280 ) ( 1024 -3248 -264 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 896 -3248 -264 ) ( 896 -3664 -264 ) ( 896 -3664 -280 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 896 -3664 -280 ) ( 896 -3664 -264 ) ( 1024 -3664 -248 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2718 +{ +( 768 -3248 -288 ) ( 768 -3664 -288 ) ( 896 -3664 -280 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 768 -3664 -272 ) ( 768 -3248 -272 ) ( 896 -3248 -264 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 896 -3664 -264 ) ( 896 -3248 -264 ) ( 896 -3248 -280 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 768 -3248 -272 ) ( 768 -3248 -288 ) ( 896 -3248 -280 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 768 -3248 -272 ) ( 768 -3664 -272 ) ( 768 -3664 -288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 768 -3664 -288 ) ( 768 -3664 -272 ) ( 896 -3664 -264 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2719 +{ +( 2040 -3232 -16 ) ( 2040 -3648 -16 ) ( 2240 -3648 -16 ) bricks/c_sr_mr5 0 -2 -180 1 1 0 0 0 +( 2240 -3648 0 ) ( 2040 -3648 0 ) ( 2040 -3232 0 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 2316 -3648 -16 ) ( 2316 -3648 0 ) ( 2314 -3632 0 ) bricks/c_sr_mr5 -62 -2 -90 1.000004 -1 0 0 0 +( 2112 -3264 0 ) ( 2112 -3680 0 ) ( 2112 -3680 -16 ) bricks/c_sr_mr5 -62 -2 -90 1.000004 -1 0 0 0 +( 2316 -3648 0 ) ( 2316 -3648 -16 ) ( 2112 -3648 -16 ) bricks/c_sr_mr5 -64 -2 -90 1 1 0 0 0 +( 2184 -3632 -16 ) ( 2240 -3632 -16 ) ( 2212 -3632 0 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +} +// brush 2720 +{ +( 1984 -3232 -24 ) ( 1984 -3648 -24 ) ( 2112 -3648 -16 ) bricks/c_sr_mr5 0 -2 -180 1 1 0 0 0 +( 1984 -3648 -8 ) ( 1984 -3232 -8 ) ( 2112 -3232 0 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 2112 -3680 0 ) ( 2112 -3264 0 ) ( 2112 -3264 -16 ) bricks/c_sr_mr5 -62 -2 -90 1.000004 -1 0 0 0 +( 1984 -3264 -8 ) ( 1984 -3680 -8 ) ( 1984 -3680 -24 ) bricks/c_sr_mr5 -62 -2 -90 1.000004 -1 0 0 0 +( 1984 -3648 -24 ) ( 1984 -3648 -8 ) ( 2112 -3648 0 ) bricks/c_sr_mr5 -64 -2 -90 1 1 0 0 0 +( 2184 -3632 -24 ) ( 2240 -3632 -24 ) ( 2212 -3632 0 ) bricks/c_sr_mr5 0 -4 4 1 1 0 0 0 +} +// brush 2721 +{ +( 1856 -3232 -40 ) ( 1856 -3648 -40 ) ( 1984 -3648 -24 ) bricks/c_sr_mr5 0 -2 -180 1 1 0 0 0 +( 1856 -3648 -24 ) ( 1856 -3232 -24 ) ( 1984 -3232 -8 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1984 -3680 -8 ) ( 1984 -3264 -8 ) ( 1984 -3264 -24 ) bricks/c_sr_mr5 -62 -2 -90 1.000004 -1 0 0 0 +( 1856 -3264 -24 ) ( 1856 -3680 -24 ) ( 1856 -3680 -40 ) bricks/c_sr_mr5 -62 -2 -90 1.000004 -1 0 0 0 +( 1856 -3648 -40 ) ( 1856 -3648 -24 ) ( 1984 -3648 -8 ) bricks/c_sr_mr5 -64 -2 -90 1 1 0 0 0 +( 2184 -3632 -40 ) ( 2240 -3632 -40 ) ( 2212 -3632 -8 ) bricks/c_sr_mr5 0 22 7 1 1 0 0 0 +} +// brush 2722 +{ +( 1728 -3232 -64 ) ( 1728 -3648 -64 ) ( 1856 -3648 -40 ) bricks/c_sr_mr5 0 -2 -180 1 1 0 0 0 +( 1728 -3648 -48 ) ( 1728 -3232 -48 ) ( 1856 -3232 -24 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1856 -3680 -24 ) ( 1856 -3264 -24 ) ( 1856 -3264 -40 ) bricks/c_sr_mr5 -62 -2 -90 1.000004 -1 0 0 0 +( 1728 -3264 -48 ) ( 1728 -3680 -48 ) ( 1728 -3680 -64 ) bricks/c_sr_mr5 -62 -2 -90 1.000004 -1 0 0 0 +( 1728 -3648 -64 ) ( 1728 -3648 -48 ) ( 1856 -3648 -24 ) bricks/c_sr_mr5 -64 -2 -90 1 1 0 0 0 +( 2184 -3632 -64 ) ( 2240 -3632 -64 ) ( 2212 -3632 -24 ) bricks/c_sr_mr5 0 -10 11 1 1 0 0 0 +} +// brush 2723 +{ +( 1600 -3232 -96 ) ( 1600 -3648 -96 ) ( 1728 -3648 -64 ) bricks/c_sr_mr5 0 -2 -180 1 1 0 0 0 +( 1600 -3648 -80 ) ( 1600 -3232 -80 ) ( 1728 -3232 -48 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1728 -3680 -48 ) ( 1728 -3264 -48 ) ( 1728 -3264 -64 ) bricks/c_sr_mr5 -62 -2 -90 1.000004 -1 0 0 0 +( 1600 -3264 -80 ) ( 1600 -3680 -80 ) ( 1600 -3680 -96 ) bricks/c_sr_mr5 -62 -2 -90 1.000004 -1 0 0 0 +( 1600 -3648 -96 ) ( 1600 -3648 -80 ) ( 1728 -3648 -48 ) bricks/c_sr_mr5 -64 -2 -90 1 1 0 0 0 +( 2184 -3632 -96 ) ( 2240 -3632 -96 ) ( 2212 -3632 -48 ) bricks/c_sr_mr5 0 -1 14 1 1 0 0 0 +} +// brush 2724 +{ +( 1280 -3232 -192 ) ( 1280 -3648 -192 ) ( 1600 -3648 -96 ) bricks/c_sr_mr5 0 -2 -180 1 1 0 0 0 +( 1280 -3648 -176 ) ( 1280 -3232 -176 ) ( 1600 -3232 -80 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1600 -3680 -80 ) ( 1600 -3264 -80 ) ( 1600 -3264 -96 ) bricks/c_sr_mr5 -62 -2 -90 1.000004 -1 0 0 0 +( 1280 -3264 -176 ) ( 1280 -3680 -176 ) ( 1280 -3680 -192 ) bricks/c_sr_mr5 -62 -2 -90 1.000004 -1 0 0 0 +( 1280 -3648 -188 ) ( 1280 -3648 -172 ) ( 1600 -3648 -80 ) bricks/c_sr_mr5 -64 -2 -90 1 1 0 0 0 +( 2184 -3632 -192 ) ( 2240 -3632 -192 ) ( 2212 -3632 -80 ) bricks/c_sr_mr5 0 17 17 1 1 0 0 0 +} +// brush 2725 +{ +( 1152 -3232 -224 ) ( 1152 -3648 -224 ) ( 1280 -3648 -192 ) bricks/c_sr_mr5 0 -2 -180 1 1 0 0 0 +( 1152 -3648 -208 ) ( 1152 -3232 -208 ) ( 1280 -3232 -176 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1280 -3680 -176 ) ( 1280 -3264 -176 ) ( 1280 -3264 -192 ) bricks/c_sr_mr5 -62 -2 -90 1.000004 -1 0 0 0 +( 1152 -3264 -208 ) ( 1152 -3680 -208 ) ( 1152 -3680 -224 ) bricks/c_sr_mr5 -62 -2 -90 1.000004 -1 0 0 0 +( 1152 -3648 -224 ) ( 1152 -3648 -208 ) ( 1280 -3648 -176 ) bricks/c_sr_mr5 -64 -2 -90 1 1 0 0 0 +( 2184 -3632 -224 ) ( 2240 -3632 -224 ) ( 2212 -3632 -176 ) bricks/c_sr_mr5 0 -17 14 1 1 0 0 0 +} +// brush 2726 +{ +( 1024 -3232 -248 ) ( 1024 -3648 -248 ) ( 1152 -3648 -224 ) bricks/c_sr_mr5 0 -2 -180 1 1 0 0 0 +( 1024 -3648 -232 ) ( 1024 -3232 -232 ) ( 1152 -3232 -208 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1152 -3680 -208 ) ( 1152 -3264 -208 ) ( 1152 -3264 -224 ) bricks/c_sr_mr5 -62 -2 -90 1.000004 -1 0 0 0 +( 1024 -3264 -232 ) ( 1024 -3680 -232 ) ( 1024 -3680 -248 ) bricks/c_sr_mr5 -62 -2 -90 1.000004 -1 0 0 0 +( 1024 -3648 -248 ) ( 1024 -3648 -232 ) ( 1152 -3648 -208 ) bricks/c_sr_mr5 -64 -2 -90 1 1 0 0 0 +( 2184 -3632 -248 ) ( 2240 -3632 -248 ) ( 2212 -3632 -208 ) bricks/c_sr_mr5 0 8 11 1 1 0 0 0 +} +// brush 2727 +{ +( 896 -3232 -264 ) ( 896 -3648 -264 ) ( 1024 -3648 -248 ) bricks/c_sr_mr5 0 -2 -180 1 1 0 0 0 +( 896 -3648 -248 ) ( 896 -3232 -248 ) ( 1024 -3232 -232 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 1024 -3680 -232 ) ( 1024 -3264 -232 ) ( 1024 -3264 -248 ) bricks/c_sr_mr5 -62 -2 -90 1.000004 -1 0 0 0 +( 896 -3264 -248 ) ( 896 -3680 -248 ) ( 896 -3680 -264 ) bricks/c_sr_mr5 -62 -2 -90 1.000004 -1 0 0 0 +( 896 -3648 -264 ) ( 896 -3648 -248 ) ( 1024 -3648 -232 ) bricks/c_sr_mr5 -64 -2 -90 1 1 0 0 0 +( 2184 -3632 -264 ) ( 2240 -3632 -264 ) ( 2212 -3632 -232 ) bricks/c_sr_mr5 0 12 7 1 1 0 0 0 +} +// brush 2728 +{ +( 768 -3232 -272 ) ( 768 -3648 -272 ) ( 896 -3648 -264 ) bricks/c_sr_mr5 0 -2 -180 1 1 0 0 0 +( 768 -3648 -256 ) ( 768 -3232 -256 ) ( 896 -3232 -248 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 896 -3680 -248 ) ( 896 -3264 -248 ) ( 896 -3264 -264 ) bricks/c_sr_mr5 -62 -2 -90 1.000004 -1 0 0 0 +( 768 -3264 -256 ) ( 768 -3680 -256 ) ( 768 -3680 -272 ) bricks/c_sr_mr5 -62 -2 -90 1.000004 -1 0 0 0 +( 768 -3648 -272 ) ( 768 -3648 -256 ) ( 896 -3648 -248 ) bricks/c_sr_mr5 -64 -2 -90 1 1 0 0 0 +( 2184 -3632 -272 ) ( 2240 -3632 -272 ) ( 2212 -3632 -248 ) bricks/c_sr_mr5 0 -6 4 1 1 0 0 0 +} +// brush 2729 +{ +( 768 -3232 -272 ) ( 768 -3648 -272 ) ( 896 -3648 -264 ) bricks/c_sr_mr5 62 31 0 1 1 0 0 0 +( 768 -3648 -256 ) ( 768 -3232 -256 ) ( 896 -3232 -248 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 896 -3680 -248 ) ( 896 -3264 -248 ) ( 896 -3264 -264 ) bricks/c_sr_mr5 0 0 90 1 -1 0 0 0 +( 768 -3264 -256 ) ( 768 -3264 -272 ) ( 896 -3264 -264 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( 768 -3264 -256 ) ( 768 -3680 -256 ) ( 768 -3680 -272 ) bricks/c_sr_mr5 0 0 90 1 -1 0 0 0 +( 1200 -3280 -272 ) ( 1184 -3280 -272 ) ( 1192 -3280 -248 ) bricks/c_sr_mr5 0 -6 4 1 1 0 0 0 +} +// brush 2730 +{ +( 896 -3232 -264 ) ( 896 -3648 -264 ) ( 1024 -3648 -248 ) bricks/c_sr_mr5 62 31 0 1 1 0 0 0 +( 896 -3648 -248 ) ( 896 -3232 -248 ) ( 1024 -3232 -232 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 1024 -3680 -232 ) ( 1024 -3264 -232 ) ( 1024 -3264 -248 ) bricks/c_sr_mr5 0 0 90 1 -1 0 0 0 +( 896 -3264 -248 ) ( 896 -3264 -264 ) ( 1024 -3264 -248 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( 896 -3264 -248 ) ( 896 -3680 -248 ) ( 896 -3680 -264 ) bricks/c_sr_mr5 0 0 90 1 -1 0 0 0 +( 1200 -3280 -264 ) ( 1184 -3280 -264 ) ( 1192 -3280 -232 ) bricks/c_sr_mr5 0 12 7 1 1 0 0 0 +} +// brush 2731 +{ +( 1024 -3232 -248 ) ( 1024 -3648 -248 ) ( 1152 -3648 -224 ) bricks/c_sr_mr5 62 31 0 1 1 0 0 0 +( 1024 -3648 -232 ) ( 1024 -3232 -232 ) ( 1152 -3232 -208 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 1152 -3680 -208 ) ( 1152 -3264 -208 ) ( 1152 -3264 -224 ) bricks/c_sr_mr5 0 0 90 1 -1 0 0 0 +( 1024 -3264 -232 ) ( 1024 -3264 -248 ) ( 1152 -3264 -224 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( 1024 -3264 -232 ) ( 1024 -3680 -232 ) ( 1024 -3680 -248 ) bricks/c_sr_mr5 0 0 90 1 -1 0 0 0 +( 1200 -3280 -248 ) ( 1184 -3280 -248 ) ( 1192 -3280 -208 ) bricks/c_sr_mr5 0 8 11 1 1 0 0 0 +} +// brush 2732 +{ +( 1152 -3232 -224 ) ( 1152 -3648 -224 ) ( 1280 -3648 -192 ) bricks/c_sr_mr5 62 31 0 1 1 0 0 0 +( 1152 -3648 -208 ) ( 1152 -3232 -208 ) ( 1280 -3232 -176 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 1280 -3680 -176 ) ( 1280 -3264 -176 ) ( 1280 -3264 -192 ) bricks/c_sr_mr5 0 0 90 1 -1 0 0 0 +( 1152 -3264 -208 ) ( 1152 -3264 -224 ) ( 1280 -3264 -192 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( 1152 -3264 -208 ) ( 1152 -3680 -208 ) ( 1152 -3680 -224 ) bricks/c_sr_mr5 0 0 90 1 -1 0 0 0 +( 1200 -3280 -224 ) ( 1184 -3280 -224 ) ( 1192 -3280 -176 ) bricks/c_sr_mr5 0 -17 14 1 1 0 0 0 +} +// brush 2733 +{ +( 1280 -3232 -192 ) ( 1280 -3648 -192 ) ( 1600 -3648 -96 ) bricks/c_sr_mr5 62 31 0 1 1 0 0 0 +( 1280 -3648 -176 ) ( 1280 -3232 -176 ) ( 1600 -3232 -80 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 1600 -3680 -80 ) ( 1600 -3264 -80 ) ( 1600 -3264 -96 ) bricks/c_sr_mr5 0 0 90 1 -1 0 0 0 +( 1280 -3264 -172 ) ( 1280 -3264 -188 ) ( 1600 -3264 -96 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( 1280 -3264 -176 ) ( 1280 -3680 -176 ) ( 1280 -3680 -192 ) bricks/c_sr_mr5 0 0 90 1 -1 0 0 0 +( 1200 -3280 -192 ) ( 1184 -3280 -192 ) ( 1192 -3280 -80 ) bricks/c_sr_mr5 0 17 17 1 1 0 0 0 +} +// brush 2734 +{ +( 1600 -3232 -96 ) ( 1600 -3648 -96 ) ( 1728 -3648 -64 ) bricks/c_sr_mr5 62 31 0 1 1 0 0 0 +( 1600 -3648 -80 ) ( 1600 -3232 -80 ) ( 1728 -3232 -48 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 1728 -3680 -48 ) ( 1728 -3264 -48 ) ( 1728 -3264 -64 ) bricks/c_sr_mr5 0 0 90 1 -1 0 0 0 +( 1600 -3264 -80 ) ( 1600 -3264 -96 ) ( 1728 -3264 -64 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( 1600 -3264 -80 ) ( 1600 -3680 -80 ) ( 1600 -3680 -96 ) bricks/c_sr_mr5 0 0 90 1 -1 0 0 0 +( 1200 -3280 -96 ) ( 1184 -3280 -96 ) ( 1192 -3280 -48 ) bricks/c_sr_mr5 0 -1 14 1 1 0 0 0 +} +// brush 2735 +{ +( 1728 -3232 -64 ) ( 1728 -3648 -64 ) ( 1856 -3648 -40 ) bricks/c_sr_mr5 62 31 0 1 1 0 0 0 +( 1728 -3648 -48 ) ( 1728 -3232 -48 ) ( 1856 -3232 -24 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 1856 -3680 -24 ) ( 1856 -3264 -24 ) ( 1856 -3264 -40 ) bricks/c_sr_mr5 0 0 90 1 -1 0 0 0 +( 1728 -3264 -48 ) ( 1728 -3264 -64 ) ( 1856 -3264 -40 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( 1728 -3264 -48 ) ( 1728 -3680 -48 ) ( 1728 -3680 -64 ) bricks/c_sr_mr5 0 0 90 1 -1 0 0 0 +( 1200 -3280 -64 ) ( 1184 -3280 -64 ) ( 1192 -3280 -24 ) bricks/c_sr_mr5 0 -10 11 1 1 0 0 0 +} +// brush 2736 +{ +( 1856 -3232 -40 ) ( 1856 -3648 -40 ) ( 1984 -3648 -24 ) bricks/c_sr_mr5 62 31 0 1 1 0 0 0 +( 1856 -3648 -24 ) ( 1856 -3232 -24 ) ( 1984 -3232 -8 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 1984 -3680 -8 ) ( 1984 -3264 -8 ) ( 1984 -3264 -24 ) bricks/c_sr_mr5 0 0 90 1 -1 0 0 0 +( 1856 -3264 -24 ) ( 1856 -3264 -40 ) ( 1984 -3264 -24 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( 1856 -3264 -24 ) ( 1856 -3680 -24 ) ( 1856 -3680 -40 ) bricks/c_sr_mr5 0 0 90 1 -1 0 0 0 +( 1200 -3280 -40 ) ( 1184 -3280 -40 ) ( 1192 -3280 -8 ) bricks/c_sr_mr5 0 22 7 1 1 0 0 0 +} +// brush 2737 +{ +( 1984 -3232 -24 ) ( 1984 -3648 -24 ) ( 2112 -3648 -16 ) bricks/c_sr_mr5 62 31 0 1 1 0 0 0 +( 1984 -3648 -8 ) ( 1984 -3232 -8 ) ( 2112 -3232 0 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 2112 -3680 0 ) ( 2112 -3264 0 ) ( 2112 -3264 -16 ) bricks/c_sr_mr5 0 0 90 1 -1 0 0 0 +( 1984 -3264 -8 ) ( 1984 -3264 -24 ) ( 2112 -3264 -16 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( 1984 -3264 -8 ) ( 1984 -3680 -8 ) ( 1984 -3680 -24 ) bricks/c_sr_mr5 0 0 90 1 -1 0 0 0 +( 1200 -3280 -24 ) ( 1184 -3280 -24 ) ( 1192 -3280 0 ) bricks/c_sr_mr5 0 -4 4 1 1 0 0 0 +} +// brush 2738 +{ +( 2040 -3232 -16 ) ( 2040 -3648 -16 ) ( 2240 -3648 -16 ) bricks/c_sr_mr5 62 31 0 1 1 0 0 0 +( 2240 -3648 0 ) ( 2040 -3648 0 ) ( 2040 -3232 0 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( 2282 -3280 -16 ) ( 2282 -3280 0 ) ( 2280 -3264 0 ) bricks/c_sr_mr5 0 0 90 1 -1 0 0 0 +( 2240 -3264 0 ) ( 2040 -3264 0 ) ( 2040 -3264 -16 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( 2112 -3264 0 ) ( 2112 -3680 0 ) ( 2112 -3680 -16 ) bricks/c_sr_mr5 0 0 90 1 -1 0 0 0 +( 2282 -3280 0 ) ( 2282 -3280 -16 ) ( 2112 -3280 -16 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +} +// brush 2739 +{ +( 2040 -3216 -16 ) ( 2040 -3632 -16 ) ( 2240 -3632 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2248 -3632 192 ) ( 2048 -3632 192 ) ( 2048 -3216 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2280 -3264 -16 ) ( 2280 -3264 192 ) ( 2278 -3248 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2240 -3248 0 ) ( 2040 -3248 0 ) ( 2040 -3248 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2112 -3248 0 ) ( 2112 -3664 0 ) ( 2112 -3664 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2280 -3264 192 ) ( 2280 -3264 -16 ) ( 2112 -3264 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2740 +{ +( 1984 -3216 -24 ) ( 1984 -3632 -24 ) ( 2112 -3632 -16 ) bricks/c_tn_m3 -5 108 4 1 1 0 0 0 +( 1984 -3264 184 ) ( 1984 -3248 184 ) ( 2112 -3248 192 ) bricks/c_tn_m3 -5 108 4 1 1 0 0 0 +( 2112 -3264 192 ) ( 2112 -3248 192 ) ( 2112 -3248 -16 ) bricks/c_tn_m3 -5 108 4 1 1 0 0 0 +( 1984 -3248 -8 ) ( 1984 -3248 -24 ) ( 2112 -3248 -16 ) bricks/c_tn_m3 -5 108 4 1 1 0 0 0 +( 1984 -3248 184 ) ( 1984 -3264 184 ) ( 1984 -3264 -24 ) bricks/c_tn_m3 -5 108 4 1 1 0 0 0 +( 1200 -3264 -24 ) ( 1184 -3264 -24 ) ( 1192 -3264 0 ) bricks/c_tn_m3 -5 108 4 1 1 0 0 0 +} +// brush 2741 +{ +( 1856 -3216 -40 ) ( 1856 -3632 -40 ) ( 1984 -3632 -24 ) bricks/c_tn_m3 -258 6 7 1 1 0 0 0 +( 1856 -3264 168 ) ( 1856 -3248 168 ) ( 1984 -3248 184 ) bricks/c_tn_m3 -258 6 7 1 1 0 0 0 +( 1984 -3264 184 ) ( 1984 -3248 184 ) ( 1984 -3248 -24 ) bricks/c_tn_m3 -258 6 7 1 1 0 0 0 +( 1856 -3248 -24 ) ( 1856 -3248 -40 ) ( 1984 -3248 -24 ) bricks/c_tn_m3 -258 6 7 1 1 0 0 0 +( 1856 -3248 168 ) ( 1856 -3264 168 ) ( 1856 -3264 -40 ) bricks/c_tn_m3 -258 6 7 1 1 0 0 0 +( 1200 -3264 -40 ) ( 1184 -3264 -40 ) ( 1192 -3264 -8 ) bricks/c_tn_m3 -258 6 7 1 1 0 0 0 +} +// brush 2742 +{ +( 1728 -3216 -64 ) ( 1728 -3632 -64 ) ( 1856 -3632 -40 ) bricks/c_tn_m3 10 -122 11 1 1 0 0 0 +( 1856 -3248 168 ) ( 1856 -3264 168 ) ( 1728 -3264 144 ) bricks/c_tn_m3 10 -122 11 1 1 0 0 0 +( 1856 -3264 168 ) ( 1856 -3248 168 ) ( 1856 -3248 -40 ) bricks/c_tn_m3 10 -122 11 1 1 0 0 0 +( 1728 -3248 -48 ) ( 1728 -3248 -64 ) ( 1856 -3248 -40 ) bricks/c_tn_m3 10 -122 11 1 1 0 0 0 +( 1728 -3248 144 ) ( 1728 -3264 144 ) ( 1728 -3264 -64 ) bricks/c_tn_m3 10 -122 11 1 1 0 0 0 +( 1200 -3264 -64 ) ( 1184 -3264 -64 ) ( 1192 -3264 -24 ) bricks/c_tn_m3 10 -122 11 1 1 0 0 0 +} +// brush 2743 +{ +( 1600 -3216 -96 ) ( 1600 -3632 -96 ) ( 1728 -3632 -64 ) bricks/c_tn_m3 37 48 14 1 1 0 0 0 +( 1632 -3632 120 ) ( 1632 -3216 120 ) ( 1760 -3216 152 ) bricks/c_tn_m3 37 48 14 1 1 0 0 0 +( 1728 -3664 -48 ) ( 1728 -3248 -48 ) ( 1728 -3248 -64 ) bricks/c_tn_m3 37 48 14 1 1 0 0 0 +( 1600 -3248 -80 ) ( 1600 -3248 -96 ) ( 1728 -3248 -64 ) bricks/c_tn_m3 37 48 14 1 1 0 0 0 +( 1600 -3248 -80 ) ( 1600 -3664 -80 ) ( 1600 -3664 -96 ) bricks/c_tn_m3 37 48 14 1 1 0 0 0 +( 1200 -3264 -96 ) ( 1184 -3264 -96 ) ( 1192 -3264 -48 ) bricks/c_tn_m3 37 48 14 1 1 0 0 0 +} +// brush 2744 +{ +( 1280 -3216 -192 ) ( 1280 -3632 -192 ) ( 1600 -3632 -96 ) bricks/c_tn_m3 61 -32 17 1 1 0 0 0 +( 1280 -3632 16 ) ( 1280 -3216 16 ) ( 1600 -3216 112 ) bricks/c_tn_m3 61 -32 17 1 1 0 0 0 +( 1600 -3664 -80 ) ( 1600 -3248 -80 ) ( 1600 -3248 -96 ) bricks/c_tn_m3 61 -32 17 1 1 0 0 0 +( 1280 -3248 -172 ) ( 1280 -3248 -188 ) ( 1600 -3248 -96 ) bricks/c_tn_m3 61 -32 17 1 1 0 0 0 +( 1280 -3248 -176 ) ( 1280 -3664 -176 ) ( 1280 -3664 -192 ) bricks/c_tn_m3 61 -32 17 1 1 0 0 0 +( 1200 -3264 -192 ) ( 1184 -3264 -192 ) ( 1192 -3264 -80 ) bricks/c_tn_m3 61 -32 17 1 1 0 0 0 +} +// brush 2745 +{ +( 1152 -3216 -224 ) ( 1152 -3632 -224 ) ( 1280 -3632 -192 ) bricks/c_tn_m3 -213 31 14 1 1 0 0 0 +( 1152 -3632 -16 ) ( 1152 -3216 -16 ) ( 1280 -3216 16 ) bricks/c_tn_m3 -213 31 14 1 1 0 0 0 +( 1280 -3664 -176 ) ( 1280 -3248 -176 ) ( 1280 -3248 -192 ) bricks/c_tn_m3 -213 31 14 1 1 0 0 0 +( 1152 -3248 -208 ) ( 1152 -3248 -224 ) ( 1280 -3248 -192 ) bricks/c_tn_m3 -213 31 14 1 1 0 0 0 +( 1152 -3248 -208 ) ( 1152 -3664 -208 ) ( 1152 -3664 -224 ) bricks/c_tn_m3 -213 31 14 1 1 0 0 0 +( 1200 -3264 -224 ) ( 1184 -3264 -224 ) ( 1192 -3264 -176 ) bricks/c_tn_m3 -213 31 14 1 1 0 0 0 +} +// brush 2746 +{ +( 1024 -3216 -248 ) ( 1024 -3632 -248 ) ( 1152 -3632 -224 ) bricks/c_tn_m3 33 88 11 1 1 0 0 0 +( 1024 -3632 -40 ) ( 1024 -3216 -40 ) ( 1152 -3216 -16 ) bricks/c_tn_m3 33 88 11 1 1 0 0 0 +( 1152 -3664 -208 ) ( 1152 -3248 -208 ) ( 1152 -3248 -224 ) bricks/c_tn_m3 33 88 11 1 1 0 0 0 +( 1024 -3248 -232 ) ( 1024 -3248 -248 ) ( 1152 -3248 -224 ) bricks/c_tn_m3 33 88 11 1 1 0 0 0 +( 1024 -3248 -232 ) ( 1024 -3664 -232 ) ( 1024 -3664 -248 ) bricks/c_tn_m3 33 88 11 1 1 0 0 0 +( 1200 -3264 -248 ) ( 1184 -3264 -248 ) ( 1192 -3264 -208 ) bricks/c_tn_m3 33 88 11 1 1 0 0 0 +} +// brush 2747 +{ +( 896 -3216 -264 ) ( 896 -3632 -264 ) ( 1024 -3632 -248 ) bricks/c_tn_m3 17 -99 7 1 1 0 0 0 +( 896 -3632 -56 ) ( 896 -3216 -56 ) ( 1024 -3216 -40 ) bricks/c_tn_m3 17 -99 7 1 1 0 0 0 +( 1024 -3664 -232 ) ( 1024 -3248 -232 ) ( 1024 -3248 -248 ) bricks/c_tn_m3 17 -99 7 1 1 0 0 0 +( 896 -3248 -248 ) ( 896 -3248 -264 ) ( 1024 -3248 -248 ) bricks/c_tn_m3 17 -99 7 1 1 0 0 0 +( 896 -3248 -248 ) ( 896 -3664 -248 ) ( 896 -3664 -264 ) bricks/c_tn_m3 17 -99 7 1 1 0 0 0 +( 1200 -3264 -264 ) ( 1184 -3264 -264 ) ( 1192 -3264 -232 ) bricks/c_tn_m3 17 -99 7 1 1 0 0 0 +} +// brush 2748 +{ +( 768 -3216 -272 ) ( 768 -3632 -272 ) ( 896 -3632 -264 ) bricks/c_tn_m3 20 -53 4 1 1 0 0 0 +( 768 -3632 -64 ) ( 768 -3216 -64 ) ( 896 -3216 -56 ) bricks/c_tn_m3 20 -53 4 1 1 0 0 0 +( 896 -3664 -248 ) ( 896 -3248 -248 ) ( 896 -3248 -264 ) bricks/c_tn_m3 20 -53 4 1 1 0 0 0 +( 768 -3248 -256 ) ( 768 -3248 -272 ) ( 896 -3248 -264 ) bricks/c_tn_m3 20 -53 4 1 1 0 0 0 +( 768 -3248 -256 ) ( 768 -3664 -256 ) ( 768 -3664 -272 ) bricks/c_tn_m3 20 -53 4 1 1 0 0 0 +( 1200 -3264 -272 ) ( 1184 -3264 -272 ) ( 1192 -3264 -248 ) bricks/c_tn_m3 20 -53 4 1 1 0 0 0 +} +// brush 2749 +{ +( 2040 -3616 -16 ) ( 2040 -4032 -16 ) ( 2240 -4032 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2248 -4032 192 ) ( 2048 -4032 192 ) ( 2048 -3616 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2318 -3664 -16 ) ( 2318 -3664 192 ) ( 2316 -3648 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2240 -3648 0 ) ( 2040 -3648 0 ) ( 2040 -3648 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2112 -3648 0 ) ( 2112 -4064 0 ) ( 2112 -4064 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2318 -3664 192 ) ( 2318 -3664 -16 ) ( 2112 -3664 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2750 +{ +( 640 -3248 -64 ) ( 640 -3664 -64 ) ( 768 -3664 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 768 -3664 -48 ) ( 640 -3664 -48 ) ( 640 -3248 -48 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 768 -3664 -40 ) ( 768 -3248 -40 ) ( 768 -3248 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 768 -3248 -40 ) ( 640 -3248 -40 ) ( 640 -3248 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 256 -3280 -40 ) ( 256 -3696 -40 ) ( 256 -3696 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 640 -3664 -40 ) ( 768 -3664 -40 ) ( 768 -3664 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2751 +{ +( 768 -3248 -64 ) ( 768 -3664 -64 ) ( 896 -3664 -56 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 768 -3664 -48 ) ( 768 -3248 -48 ) ( 896 -3248 -40 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 896 -3664 -40 ) ( 896 -3248 -40 ) ( 896 -3248 -56 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 768 -3248 -48 ) ( 768 -3248 -64 ) ( 896 -3248 -56 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 768 -3248 -48 ) ( 768 -3664 -48 ) ( 768 -3664 -64 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 768 -3664 -64 ) ( 768 -3664 -48 ) ( 896 -3664 -40 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2752 +{ +( 896 -3248 -56 ) ( 896 -3664 -56 ) ( 1024 -3664 -40 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 896 -3664 -40 ) ( 896 -3248 -40 ) ( 1024 -3248 -24 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1024 -3664 -24 ) ( 1024 -3248 -24 ) ( 1024 -3248 -40 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 896 -3248 -40 ) ( 896 -3248 -56 ) ( 1024 -3248 -40 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 896 -3248 -40 ) ( 896 -3664 -40 ) ( 896 -3664 -56 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 896 -3664 -56 ) ( 896 -3664 -40 ) ( 1024 -3664 -24 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2753 +{ +( 1024 -3248 -40 ) ( 1024 -3664 -40 ) ( 1152 -3664 -16 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1024 -3664 -24 ) ( 1024 -3248 -24 ) ( 1152 -3248 0 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1152 -3664 0 ) ( 1152 -3248 0 ) ( 1152 -3248 -16 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1024 -3248 -24 ) ( 1024 -3248 -40 ) ( 1152 -3248 -16 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1024 -3248 -24 ) ( 1024 -3664 -24 ) ( 1024 -3664 -40 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1024 -3664 -40 ) ( 1024 -3664 -24 ) ( 1152 -3664 0 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2754 +{ +( 1152 -3248 -16 ) ( 1152 -3664 -16 ) ( 1280 -3664 16 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1152 -3664 0 ) ( 1152 -3248 0 ) ( 1280 -3248 32 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1280 -3664 32 ) ( 1280 -3248 32 ) ( 1280 -3248 16 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1152 -3248 0 ) ( 1152 -3248 -16 ) ( 1280 -3248 16 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1152 -3248 0 ) ( 1152 -3664 0 ) ( 1152 -3664 -16 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1152 -3664 -16 ) ( 1152 -3664 0 ) ( 1280 -3664 32 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2755 +{ +( 1280 -3248 16 ) ( 1280 -3664 16 ) ( 1600 -3664 112 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1280 -3664 32 ) ( 1280 -3248 32 ) ( 1600 -3248 128 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1600 -3664 128 ) ( 1600 -3248 128 ) ( 1600 -3248 112 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1280 -3248 36 ) ( 1280 -3248 20 ) ( 1600 -3248 112 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1280 -3248 32 ) ( 1280 -3664 32 ) ( 1280 -3664 16 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1280 -3664 20 ) ( 1280 -3664 36 ) ( 1600 -3664 128 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2756 +{ +( 1600 -3248 112 ) ( 1600 -3664 112 ) ( 1728 -3664 144 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1600 -3664 128 ) ( 1600 -3248 128 ) ( 1728 -3248 160 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1728 -3664 160 ) ( 1728 -3248 160 ) ( 1728 -3248 144 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1600 -3248 128 ) ( 1600 -3248 112 ) ( 1728 -3248 144 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1600 -3248 128 ) ( 1600 -3664 128 ) ( 1600 -3664 112 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1600 -3664 112 ) ( 1600 -3664 128 ) ( 1728 -3664 160 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2757 +{ +( 1728 -3248 144 ) ( 1728 -3664 144 ) ( 1856 -3664 168 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1728 -3664 160 ) ( 1728 -3248 160 ) ( 1856 -3248 184 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1856 -3664 184 ) ( 1856 -3248 184 ) ( 1856 -3248 168 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1728 -3248 160 ) ( 1728 -3248 144 ) ( 1856 -3248 168 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1728 -3248 160 ) ( 1728 -3664 160 ) ( 1728 -3664 144 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1728 -3664 144 ) ( 1728 -3664 160 ) ( 1856 -3664 184 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2758 +{ +( 1856 -3248 168 ) ( 1856 -3664 168 ) ( 1984 -3664 184 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1856 -3664 184 ) ( 1856 -3248 184 ) ( 1984 -3248 200 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1984 -3664 200 ) ( 1984 -3248 200 ) ( 1984 -3248 184 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1856 -3248 184 ) ( 1856 -3248 168 ) ( 1984 -3248 184 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1856 -3248 184 ) ( 1856 -3664 184 ) ( 1856 -3664 168 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1856 -3664 168 ) ( 1856 -3664 184 ) ( 1984 -3664 200 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2759 +{ +( 1984 -3248 184 ) ( 1984 -3664 184 ) ( 2112 -3664 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1984 -3664 200 ) ( 1984 -3248 200 ) ( 2112 -3248 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2112 -3664 208 ) ( 2112 -3248 208 ) ( 2112 -3248 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1984 -3248 200 ) ( 1984 -3248 184 ) ( 2112 -3248 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1984 -3248 200 ) ( 1984 -3664 200 ) ( 1984 -3664 184 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1984 -3664 184 ) ( 1984 -3664 200 ) ( 2112 -3664 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2760 +{ +( 2040 -3248 192 ) ( 2040 -3664 192 ) ( 2240 -3664 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2240 -3664 208 ) ( 2040 -3664 208 ) ( 2040 -3248 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2240 -3664 208 ) ( 2240 -3248 208 ) ( 2240 -3248 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2240 -3248 208 ) ( 2040 -3248 208 ) ( 2040 -3248 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2112 -3248 208 ) ( 2112 -3664 208 ) ( 2112 -3664 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2040 -3664 208 ) ( 2240 -3664 208 ) ( 2240 -3664 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2761 +{ +( 1984 -3648 184 ) ( 1984 -3616 184 ) ( 2112 -3616 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1984 -3648 152 ) ( 1984 -3648 184 ) ( 2112 -3648 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1984 -3616 184 ) ( 1984 -3648 152 ) ( 2112 -3648 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1984 -3632 184 ) ( 1984 -3648 152 ) ( 1984 -3616 152 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2112 -3632 160 ) ( 2112 -3648 160 ) ( 2112 -3640 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2762 +{ +( 1728 -3648 144 ) ( 1728 -3616 144 ) ( 1856 -3616 168 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1728 -3648 112 ) ( 1728 -3648 144 ) ( 1856 -3648 168 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1728 -3616 144 ) ( 1728 -3648 112 ) ( 1856 -3648 136 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1728 -3632 144 ) ( 1728 -3648 112 ) ( 1728 -3616 112 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -3632 136 ) ( 1856 -3648 136 ) ( 1856 -3640 168 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2763 +{ +( 1600 -3648 112 ) ( 1600 -3616 112 ) ( 1728 -3616 144 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1600 -3648 80 ) ( 1600 -3648 112 ) ( 1728 -3648 144 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1600 -3616 112 ) ( 1600 -3648 80 ) ( 1728 -3648 112 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1600 -3632 112 ) ( 1600 -3648 80 ) ( 1600 -3616 80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1728 -3632 112 ) ( 1728 -3648 112 ) ( 1728 -3640 144 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2764 +{ +( 1024 -3648 -40 ) ( 1024 -3616 -40 ) ( 1152 -3616 -16 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1024 -3648 -72 ) ( 1024 -3648 -40 ) ( 1152 -3648 -16 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1024 -3616 -40 ) ( 1024 -3648 -72 ) ( 1152 -3648 -48 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1024 -3632 -40 ) ( 1024 -3648 -72 ) ( 1024 -3616 -72 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1152 -3632 -48 ) ( 1152 -3648 -48 ) ( 1152 -3640 -16 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2765 +{ +( 768 -3648 -64 ) ( 768 -3616 -64 ) ( 896 -3616 -56 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 -3648 -96 ) ( 768 -3648 -64 ) ( 896 -3648 -56 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 -3616 -64 ) ( 768 -3648 -96 ) ( 896 -3648 -88 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 -3632 -64 ) ( 768 -3648 -96 ) ( 768 -3616 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 896 -3632 -88 ) ( 896 -3648 -88 ) ( 896 -3640 -56 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2766 +{ +( 1984 -3296 184 ) ( 1984 -3264 184 ) ( 2112 -3264 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1984 -3264 184 ) ( 1984 -3264 152 ) ( 2112 -3264 160 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1984 -3264 152 ) ( 1984 -3296 184 ) ( 2112 -3296 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1984 -3296 152 ) ( 1984 -3264 152 ) ( 1984 -3280 184 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 -3272 160 ) ( 2112 -3296 160 ) ( 2112 -3284 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2767 +{ +( 1728 -3296 144 ) ( 1728 -3264 144 ) ( 1856 -3264 168 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1728 -3264 144 ) ( 1728 -3264 112 ) ( 1856 -3264 136 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1728 -3264 112 ) ( 1728 -3296 144 ) ( 1856 -3296 168 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1728 -3296 112 ) ( 1728 -3264 112 ) ( 1728 -3280 144 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1856 -3272 136 ) ( 1856 -3296 136 ) ( 1856 -3284 168 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2768 +{ +( 1600 -3296 112 ) ( 1600 -3264 112 ) ( 1728 -3264 144 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1600 -3264 112 ) ( 1600 -3264 80 ) ( 1728 -3264 112 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1600 -3264 80 ) ( 1600 -3296 112 ) ( 1728 -3296 144 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1600 -3296 80 ) ( 1600 -3264 80 ) ( 1600 -3280 112 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1728 -3272 112 ) ( 1728 -3296 112 ) ( 1728 -3284 144 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2769 +{ +( 1024 -3296 -40 ) ( 1024 -3264 -40 ) ( 1152 -3264 -16 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1024 -3264 -40 ) ( 1024 -3264 -72 ) ( 1152 -3264 -48 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1024 -3264 -72 ) ( 1024 -3296 -40 ) ( 1152 -3296 -16 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1024 -3296 -88 ) ( 1024 -3264 -88 ) ( 1024 -3280 -56 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1152 -3272 -48 ) ( 1152 -3296 -48 ) ( 1152 -3284 -16 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2770 +{ +( 768 -3296 -64 ) ( 768 -3264 -64 ) ( 896 -3264 -56 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 -3264 -64 ) ( 768 -3264 -96 ) ( 896 -3264 -88 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 -3264 -96 ) ( 768 -3296 -64 ) ( 896 -3296 -56 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 -3296 -112 ) ( 768 -3264 -112 ) ( 768 -3280 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 896 -3272 -88 ) ( 896 -3296 -88 ) ( 896 -3284 -56 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2771 +{ +( 2112 -3616 192 ) ( 2155 -3616 192 ) ( 2152 -3648 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2152 -3648 192 ) ( 2152 -3648 160 ) ( 2112 -3648 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2152 -3648 160 ) ( 2155 -3616 192 ) ( 2112 -3616 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2112 -3632 192 ) ( 2112 -3648 160 ) ( 2112 -3616 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2176 -3624 160 ) ( 2176 -3648 160 ) ( 2176 -3636 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2772 +{ +( 2112 -3616 192 ) ( 2155 -3616 192 ) ( 2152 -3648 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2152 -3648 192 ) ( 2152 -3648 160 ) ( 2112 -3648 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2152 -3648 160 ) ( 2155 -3616 192 ) ( 2112 -3616 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2240 -3632 160 ) ( 2240 -3648 160 ) ( 2240 -3640 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2176 -3648 160 ) ( 2176 -3624 160 ) ( 2176 -3636 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2176 -3640 160 ) ( 2184 -3640 160 ) ( 2180 -3640 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2773 +{ +( 2112 -3616 192 ) ( 2155 -3616 192 ) ( 2152 -3648 192 ) common/li_pv_v4a -1 8 0 1 1 0 1 7000 +( 2152 -3648 160 ) ( 2155 -3616 192 ) ( 2112 -3616 192 ) common/li_pv_v4a -1 8 0 1 1 0 1 7000 +( 2240 -3632 160 ) ( 2240 -3648 160 ) ( 2240 -3640 192 ) common/li_pv_v4a 0 9 90 1 -1 0 1 7000 +( 2176 -3648 160 ) ( 2176 -3624 160 ) ( 2176 -3636 192 ) common/li_pv_v4a 0 9 90 1 -1 0 1 7000 +( 2184 -3640 160 ) ( 2176 -3640 160 ) ( 2180 -3640 192 ) common/li_pv_v4a 0 9 90 1 1 0 1 7000 +( 2176 -3624 168 ) ( 2184 -3624 168 ) ( 2180 -3624 192 ) common/li_pv_v4a 0 9 90 1 1 0 1 7000 +} +// brush 2774 +{ +( 2112 -3616 192 ) ( 2155 -3616 192 ) ( 2152 -3648 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2152 -3648 160 ) ( 2155 -3616 192 ) ( 2112 -3616 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2240 -3632 160 ) ( 2240 -3648 160 ) ( 2240 -3640 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2176 -3648 160 ) ( 2176 -3624 160 ) ( 2176 -3636 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 2184 -3624 168 ) ( 2176 -3624 168 ) ( 2180 -3624 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2775 +{ +( 2188 -3264 192 ) ( 2185 -3296 192 ) ( 2112 -3296 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1840 -3264 192 ) ( 1488 -3264 192 ) ( 1488 -3264 176 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 -3296 192 ) ( 2185 -3296 192 ) ( 2188 -3264 160 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 -3296 160 ) ( 2112 -3264 160 ) ( 2112 -3280 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2176 -3280 160 ) ( 2176 -3296 160 ) ( 2176 -3288 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2776 +{ +( 2188 -3264 192 ) ( 2185 -3296 192 ) ( 2112 -3296 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 -3296 192 ) ( 2185 -3296 192 ) ( 2188 -3264 160 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2240 -3272 160 ) ( 2240 -3296 160 ) ( 2240 -3284 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2176 -3296 160 ) ( 2176 -3280 160 ) ( 2176 -3288 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2176 -3288 160 ) ( 2192 -3288 160 ) ( 2184 -3288 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2777 +{ +( 2188 -3264 192 ) ( 2185 -3296 192 ) ( 2112 -3296 192 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 2112 -3296 192 ) ( 2185 -3296 192 ) ( 2188 -3264 160 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 2240 -3272 160 ) ( 2240 -3296 160 ) ( 2240 -3284 192 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 2176 -3296 160 ) ( 2176 -3280 160 ) ( 2176 -3288 192 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 2192 -3288 160 ) ( 2176 -3288 160 ) ( 2184 -3288 192 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 2176 -3272 160 ) ( 2192 -3272 160 ) ( 2184 -3272 192 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 2778 +{ +( 2188 -3264 192 ) ( 2185 -3296 192 ) ( 2112 -3296 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1840 -3264 192 ) ( 1488 -3264 192 ) ( 1488 -3264 176 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2112 -3296 192 ) ( 2185 -3296 192 ) ( 2188 -3264 160 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2240 -3272 160 ) ( 2240 -3296 160 ) ( 2240 -3284 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2176 -3296 160 ) ( 2176 -3280 160 ) ( 2176 -3288 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 2192 -3272 160 ) ( 2176 -3272 160 ) ( 2184 -3272 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2779 +{ +( 1856 -3296 168 ) ( 1856 -3264 168 ) ( 1984 -3264 184 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1856 -3264 168 ) ( 1856 -3264 136 ) ( 1984 -3264 152 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1856 -3264 136 ) ( 1856 -3296 168 ) ( 1984 -3296 184 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1984 -3272 152 ) ( 1984 -3296 152 ) ( 1984 -3284 184 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1920 -3296 136 ) ( 1920 -3272 136 ) ( 1920 -3284 184 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2780 +{ +( 1856 -3296 168 ) ( 1856 -3264 168 ) ( 1984 -3264 184 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1856 -3264 136 ) ( 1856 -3296 168 ) ( 1984 -3296 184 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1856 -3296 136 ) ( 1856 -3264 136 ) ( 1856 -3280 168 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1920 -3272 136 ) ( 1920 -3296 136 ) ( 1920 -3284 184 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1856 -3288 136 ) ( 1864 -3288 136 ) ( 1860 -3288 176 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2781 +{ +( 1856 -3296 168 ) ( 1856 -3264 168 ) ( 1984 -3264 184 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1856 -3264 136 ) ( 1856 -3296 168 ) ( 1984 -3296 184 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1856 -3296 136 ) ( 1856 -3264 136 ) ( 1856 -3280 168 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1920 -3272 136 ) ( 1920 -3296 136 ) ( 1920 -3284 184 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1864 -3288 136 ) ( 1856 -3288 136 ) ( 1860 -3288 176 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 1856 -3272 136 ) ( 1872 -3272 136 ) ( 1864 -3272 176 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 2782 +{ +( 1856 -3296 168 ) ( 1856 -3264 168 ) ( 1984 -3264 184 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1856 -3264 168 ) ( 1856 -3264 136 ) ( 1984 -3264 152 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1856 -3264 136 ) ( 1856 -3296 168 ) ( 1984 -3296 184 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1856 -3296 136 ) ( 1856 -3264 136 ) ( 1856 -3280 168 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1920 -3272 136 ) ( 1920 -3296 136 ) ( 1920 -3284 184 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1872 -3272 136 ) ( 1856 -3272 136 ) ( 1864 -3272 176 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2783 +{ +( 1856 -3648 168 ) ( 1856 -3616 168 ) ( 1984 -3616 184 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -3648 136 ) ( 1856 -3648 168 ) ( 1984 -3648 184 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -3616 168 ) ( 1856 -3648 136 ) ( 1984 -3648 152 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1984 -3632 152 ) ( 1984 -3648 152 ) ( 1984 -3640 184 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1920 -3640 136 ) ( 1920 -3624 136 ) ( 1920 -3632 184 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2784 +{ +( 1856 -3648 168 ) ( 1856 -3616 168 ) ( 1984 -3616 184 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -3648 136 ) ( 1856 -3648 168 ) ( 1984 -3648 184 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -3616 168 ) ( 1856 -3648 136 ) ( 1984 -3648 152 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -3632 168 ) ( 1856 -3648 136 ) ( 1856 -3616 136 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1920 -3624 136 ) ( 1920 -3640 136 ) ( 1920 -3632 184 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -3640 136 ) ( 1864 -3640 136 ) ( 1860 -3640 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2785 +{ +( 1856 -3648 168 ) ( 1856 -3616 168 ) ( 1984 -3616 184 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1856 -3616 168 ) ( 1856 -3648 136 ) ( 1984 -3648 152 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1856 -3632 168 ) ( 1856 -3648 136 ) ( 1856 -3616 136 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1920 -3624 136 ) ( 1920 -3640 136 ) ( 1920 -3632 184 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1864 -3640 136 ) ( 1856 -3640 136 ) ( 1860 -3640 176 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 1856 -3624 144 ) ( 1872 -3624 144 ) ( 1864 -3624 176 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 2786 +{ +( 1856 -3648 168 ) ( 1856 -3616 168 ) ( 1984 -3616 184 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -3616 168 ) ( 1856 -3648 136 ) ( 1984 -3648 152 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1856 -3632 168 ) ( 1856 -3648 136 ) ( 1856 -3616 136 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1920 -3624 136 ) ( 1920 -3640 136 ) ( 1920 -3632 184 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1872 -3624 144 ) ( 1856 -3624 144 ) ( 1864 -3624 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2787 +{ +( 1280 -3296 16 ) ( 1280 -3264 16 ) ( 1600 -3264 112 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 -3264 16 ) ( 1280 -3264 -16 ) ( 1600 -3264 80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 -3264 -16 ) ( 1280 -3296 16 ) ( 1600 -3296 112 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 -3296 -16 ) ( 1280 -3264 -16 ) ( 1280 -3280 16 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1536 -3296 -16 ) ( 1536 -3336 -16 ) ( 1536 -3316 112 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2788 +{ +( 1280 -3648 16 ) ( 1280 -3616 16 ) ( 1600 -3616 112 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 -3648 -16 ) ( 1280 -3648 16 ) ( 1600 -3648 112 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 -3616 16 ) ( 1280 -3648 -16 ) ( 1600 -3648 80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 -3632 16 ) ( 1280 -3648 -16 ) ( 1280 -3616 -16 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1536 -3296 -16 ) ( 1536 -3336 -16 ) ( 1536 -3316 112 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2789 +{ +( 1280 -3296 16 ) ( 1280 -3264 16 ) ( 1600 -3264 112 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 -3264 -16 ) ( 1280 -3296 16 ) ( 1600 -3296 112 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1600 -3272 80 ) ( 1600 -3296 80 ) ( 1600 -3284 112 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1536 -3336 -16 ) ( 1536 -3296 -16 ) ( 1536 -3316 112 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1536 -3288 61 ) ( 1552 -3288 61 ) ( 1544 -3288 112 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2790 +{ +( 1280 -3296 16 ) ( 1280 -3264 16 ) ( 1600 -3264 112 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1280 -3264 -16 ) ( 1280 -3296 16 ) ( 1600 -3296 112 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1600 -3272 80 ) ( 1600 -3296 80 ) ( 1600 -3284 112 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1536 -3336 -16 ) ( 1536 -3296 -16 ) ( 1536 -3316 112 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1552 -3288 61 ) ( 1536 -3288 61 ) ( 1544 -3288 112 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 1536 -3272 61 ) ( 1552 -3272 61 ) ( 1544 -3272 112 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 2791 +{ +( 1280 -3296 16 ) ( 1280 -3264 16 ) ( 1600 -3264 112 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 -3264 16 ) ( 1280 -3264 -16 ) ( 1600 -3264 80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 -3264 -16 ) ( 1280 -3296 16 ) ( 1600 -3296 112 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1600 -3272 80 ) ( 1600 -3296 80 ) ( 1600 -3284 112 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1536 -3336 -16 ) ( 1536 -3296 -16 ) ( 1536 -3316 112 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1552 -3272 61 ) ( 1536 -3272 61 ) ( 1544 -3272 112 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2792 +{ +( 1280 -3648 16 ) ( 1280 -3616 16 ) ( 1600 -3616 112 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 -3648 -16 ) ( 1280 -3648 16 ) ( 1600 -3648 112 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 -3616 16 ) ( 1280 -3648 -16 ) ( 1600 -3648 80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1600 -3632 80 ) ( 1600 -3648 80 ) ( 1600 -3640 112 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1536 -3336 -16 ) ( 1536 -3296 -16 ) ( 1536 -3316 112 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1536 -3640 61 ) ( 1552 -3640 61 ) ( 1544 -3640 112 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2793 +{ +( 1280 -3648 16 ) ( 1280 -3616 16 ) ( 1600 -3616 112 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1280 -3616 16 ) ( 1280 -3648 -16 ) ( 1600 -3648 80 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1600 -3632 80 ) ( 1600 -3648 80 ) ( 1600 -3640 112 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1536 -3336 -16 ) ( 1536 -3296 -16 ) ( 1536 -3316 112 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1552 -3640 61 ) ( 1536 -3640 61 ) ( 1544 -3640 112 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 1536 -3624 69 ) ( 1552 -3624 69 ) ( 1544 -3624 112 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 2794 +{ +( 1280 -3648 16 ) ( 1280 -3616 16 ) ( 1600 -3616 112 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 -3616 16 ) ( 1280 -3648 -16 ) ( 1600 -3648 80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1600 -3632 80 ) ( 1600 -3648 80 ) ( 1600 -3640 112 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1536 -3336 -16 ) ( 1536 -3296 -16 ) ( 1536 -3316 112 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1552 -3624 69 ) ( 1536 -3624 69 ) ( 1544 -3624 112 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2795 +{ +( 1152 -3648 -16 ) ( 1152 -3616 -16 ) ( 1280 -3616 16 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1152 -3648 -48 ) ( 1152 -3648 -16 ) ( 1280 -3648 16 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1152 -3616 -16 ) ( 1152 -3648 -48 ) ( 1280 -3648 -16 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1152 -3632 -16 ) ( 1152 -3648 -48 ) ( 1152 -3616 -48 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1216 -3624 -48 ) ( 1216 -3640 -48 ) ( 1216 -3632 16 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2796 +{ +( 1152 -3296 -16 ) ( 1152 -3264 -16 ) ( 1280 -3264 16 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1152 -3264 -16 ) ( 1152 -3264 -48 ) ( 1280 -3264 -16 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1152 -3264 -48 ) ( 1152 -3296 -16 ) ( 1280 -3296 16 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1152 -3296 -64 ) ( 1152 -3264 -64 ) ( 1152 -3280 -32 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1216 -3280 -48 ) ( 1216 -3296 -48 ) ( 1216 -3288 16 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2797 +{ +( 1152 -3296 -16 ) ( 1152 -3264 -16 ) ( 1280 -3264 16 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1152 -3264 -48 ) ( 1152 -3296 -16 ) ( 1280 -3296 16 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 -3272 -16 ) ( 1280 -3296 -16 ) ( 1280 -3284 16 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1216 -3296 -48 ) ( 1216 -3280 -48 ) ( 1216 -3288 16 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1224 -3288 -32 ) ( 1240 -3288 -32 ) ( 1232 -3288 16 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2798 +{ +( 1152 -3296 -16 ) ( 1152 -3264 -16 ) ( 1280 -3264 16 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1152 -3264 -48 ) ( 1152 -3296 -16 ) ( 1280 -3296 16 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1280 -3272 -16 ) ( 1280 -3296 -16 ) ( 1280 -3284 16 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1216 -3296 -48 ) ( 1216 -3280 -48 ) ( 1216 -3288 16 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1240 -3288 -32 ) ( 1224 -3288 -32 ) ( 1232 -3288 16 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 1216 -3272 -32 ) ( 1240 -3272 -32 ) ( 1228 -3272 16 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 2799 +{ +( 1152 -3296 -16 ) ( 1152 -3264 -16 ) ( 1280 -3264 16 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1152 -3264 -16 ) ( 1152 -3264 -48 ) ( 1280 -3264 -16 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1152 -3264 -48 ) ( 1152 -3296 -16 ) ( 1280 -3296 16 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 -3272 -16 ) ( 1280 -3296 -16 ) ( 1280 -3284 16 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1216 -3296 -48 ) ( 1216 -3280 -48 ) ( 1216 -3288 16 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1240 -3272 -32 ) ( 1216 -3272 -32 ) ( 1228 -3272 16 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2800 +{ +( 1152 -3648 -16 ) ( 1152 -3616 -16 ) ( 1280 -3616 16 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1152 -3648 -48 ) ( 1152 -3648 -16 ) ( 1280 -3648 16 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1152 -3616 -16 ) ( 1152 -3648 -48 ) ( 1280 -3648 -16 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 -3632 -16 ) ( 1280 -3648 -16 ) ( 1280 -3640 16 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1216 -3640 -48 ) ( 1216 -3624 -48 ) ( 1216 -3632 16 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1216 -3640 -32 ) ( 1232 -3640 -32 ) ( 1224 -3640 16 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2801 +{ +( 1152 -3648 -16 ) ( 1152 -3616 -16 ) ( 1280 -3616 16 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1152 -3616 -16 ) ( 1152 -3648 -48 ) ( 1280 -3648 -16 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 1280 -3632 -16 ) ( 1280 -3648 -16 ) ( 1280 -3640 16 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1216 -3640 -48 ) ( 1216 -3624 -48 ) ( 1216 -3632 16 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 1232 -3640 -32 ) ( 1216 -3640 -32 ) ( 1224 -3640 16 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 1216 -3624 -24 ) ( 1232 -3624 -24 ) ( 1224 -3624 16 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 2802 +{ +( 1152 -3648 -16 ) ( 1152 -3616 -16 ) ( 1280 -3616 16 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1152 -3616 -16 ) ( 1152 -3648 -48 ) ( 1280 -3648 -16 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 -3632 -16 ) ( 1280 -3648 -16 ) ( 1280 -3640 16 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1216 -3640 -48 ) ( 1216 -3624 -48 ) ( 1216 -3632 16 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1232 -3624 -24 ) ( 1216 -3624 -24 ) ( 1224 -3624 16 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2803 +{ +( 896 -3648 -56 ) ( 896 -3616 -56 ) ( 1024 -3616 -40 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 896 -3648 -88 ) ( 896 -3648 -56 ) ( 1024 -3648 -40 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 896 -3616 -56 ) ( 896 -3648 -88 ) ( 1024 -3648 -72 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1024 -3632 -72 ) ( 1024 -3648 -72 ) ( 1024 -3640 -40 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 960 -3648 -88 ) ( 960 -3624 -88 ) ( 960 -3636 -40 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2804 +{ +( 896 -3648 -56 ) ( 896 -3616 -56 ) ( 1024 -3616 -40 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 896 -3648 -88 ) ( 896 -3648 -56 ) ( 1024 -3648 -40 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 896 -3616 -56 ) ( 896 -3648 -88 ) ( 1024 -3648 -72 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 896 -3632 -56 ) ( 896 -3648 -88 ) ( 896 -3616 -88 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 960 -3624 -88 ) ( 960 -3648 -88 ) ( 960 -3636 -40 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 896 -3640 -88 ) ( 912 -3640 -88 ) ( 904 -3640 -48 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2805 +{ +( 896 -3648 -56 ) ( 896 -3616 -56 ) ( 1024 -3616 -40 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 896 -3616 -56 ) ( 896 -3648 -88 ) ( 1024 -3648 -72 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 896 -3632 -56 ) ( 896 -3648 -88 ) ( 896 -3616 -88 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 960 -3624 -88 ) ( 960 -3648 -88 ) ( 960 -3636 -40 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 912 -3640 -88 ) ( 896 -3640 -88 ) ( 904 -3640 -48 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 896 -3624 -80 ) ( 920 -3624 -80 ) ( 908 -3624 -48 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 2806 +{ +( 896 -3648 -56 ) ( 896 -3616 -56 ) ( 1024 -3616 -40 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 896 -3616 -56 ) ( 896 -3648 -88 ) ( 1024 -3648 -72 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 896 -3632 -56 ) ( 896 -3648 -88 ) ( 896 -3616 -88 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 960 -3624 -88 ) ( 960 -3648 -88 ) ( 960 -3636 -40 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 920 -3624 -80 ) ( 896 -3624 -80 ) ( 908 -3624 -48 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2807 +{ +( 896 -3296 -56 ) ( 896 -3264 -56 ) ( 1024 -3264 -40 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 896 -3264 -56 ) ( 896 -3264 -88 ) ( 1024 -3264 -72 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 896 -3264 -88 ) ( 896 -3296 -56 ) ( 1024 -3296 -40 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1024 -3272 -72 ) ( 1024 -3296 -72 ) ( 1024 -3284 -40 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 960 -3296 -88 ) ( 960 -3288 -88 ) ( 960 -3292 -40 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2808 +{ +( 896 -3296 -56 ) ( 896 -3264 -56 ) ( 1024 -3264 -40 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 896 -3264 -88 ) ( 896 -3296 -56 ) ( 1024 -3296 -40 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 896 -3296 -104 ) ( 896 -3264 -104 ) ( 896 -3280 -72 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 960 -3288 -88 ) ( 960 -3296 -88 ) ( 960 -3292 -40 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 904 -3288 -88 ) ( 920 -3288 -88 ) ( 912 -3288 -48 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2809 +{ +( 896 -3296 -56 ) ( 896 -3264 -56 ) ( 1024 -3264 -40 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 896 -3264 -88 ) ( 896 -3296 -56 ) ( 1024 -3296 -40 ) common/li_pv_v4a -1 7 0 1 1 0 1 7000 +( 896 -3296 -104 ) ( 896 -3264 -104 ) ( 896 -3280 -72 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 960 -3288 -88 ) ( 960 -3296 -88 ) ( 960 -3292 -40 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 920 -3288 -88 ) ( 904 -3288 -88 ) ( 912 -3288 -48 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 896 -3272 -88 ) ( 920 -3272 -88 ) ( 908 -3272 -48 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 2810 +{ +( 896 -3296 -56 ) ( 896 -3264 -56 ) ( 1024 -3264 -40 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 896 -3264 -56 ) ( 896 -3264 -88 ) ( 1024 -3264 -72 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 896 -3264 -88 ) ( 896 -3296 -56 ) ( 1024 -3296 -40 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 896 -3296 -104 ) ( 896 -3264 -104 ) ( 896 -3280 -72 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 960 -3288 -88 ) ( 960 -3296 -88 ) ( 960 -3292 -40 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 920 -3272 -88 ) ( 896 -3272 -88 ) ( 908 -3272 -48 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2811 +{ +( 416 -3648 -64 ) ( 152 -3648 -64 ) ( 152 -3616 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 152 -3648 -64 ) ( 416 -3648 -64 ) ( 416 -3648 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 -3648 -96 ) ( 768 -3616 -64 ) ( 152 -3632 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 320 -3632 -96 ) ( 320 -3616 -96 ) ( 320 -3624 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 576 -3616 -96 ) ( 576 -3632 -96 ) ( 576 -3624 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2812 +{ +( 416 -3648 -64 ) ( 152 -3648 -64 ) ( 152 -3616 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 -3648 -64 ) ( 768 -3616 -64 ) ( 768 -3616 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 152 -3648 -64 ) ( 416 -3648 -64 ) ( 416 -3648 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 -3648 -96 ) ( 768 -3616 -64 ) ( 152 -3632 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 640 -3648 -96 ) ( 640 -3616 -96 ) ( 640 -3632 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2813 +{ +( 416 -3648 -64 ) ( 152 -3648 -64 ) ( 152 -3616 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 152 -3648 -64 ) ( 416 -3648 -64 ) ( 416 -3648 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 -3648 -96 ) ( 768 -3616 -64 ) ( 152 -3632 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 576 -3632 -96 ) ( 576 -3616 -96 ) ( 576 -3624 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 640 -3616 -96 ) ( 640 -3648 -96 ) ( 640 -3632 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 576 -3640 -96 ) ( 592 -3640 -96 ) ( 584 -3640 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2814 +{ +( 416 -3648 -64 ) ( 152 -3648 -64 ) ( 152 -3616 -64 ) bricks/c_tn_m1 -127 0 -180 1 1 0 0 0 +( 768 -3648 -96 ) ( 768 -3616 -64 ) ( 152 -3632 -80 ) common/li_pv_v4a 0 -7 -180 1 1 0 1 7000 +( 576 -3632 -96 ) ( 576 -3616 -96 ) ( 576 -3624 -64 ) bricks/c_tn_m1 0 0 -90 1 -1 0 0 0 +( 640 -3616 -96 ) ( 640 -3648 -96 ) ( 640 -3632 -64 ) bricks/c_tn_m1 0 0 -90 1 -1 0 0 0 +( 592 -3640 -96 ) ( 576 -3640 -96 ) ( 584 -3640 -64 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( 576 -3624 -88 ) ( 592 -3624 -88 ) ( 584 -3624 -64 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 2815 +{ +( 416 -3648 -64 ) ( 152 -3648 -64 ) ( 152 -3616 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 -3648 -96 ) ( 768 -3616 -64 ) ( 152 -3632 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 576 -3632 -96 ) ( 576 -3616 -96 ) ( 576 -3624 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 640 -3616 -96 ) ( 640 -3648 -96 ) ( 640 -3632 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 592 -3624 -88 ) ( 576 -3624 -88 ) ( 584 -3624 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2816 +{ +( 416 -3648 -64 ) ( 152 -3648 -64 ) ( 152 -3616 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 152 -3648 -64 ) ( 416 -3648 -64 ) ( 416 -3648 -96 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 -3648 -96 ) ( 768 -3616 -64 ) ( 152 -3632 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 256 -3648 -96 ) ( 256 -3616 -96 ) ( 256 -3632 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 320 -3616 -96 ) ( 320 -3632 -96 ) ( 320 -3624 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 256 -3640 -96 ) ( 264 -3640 -96 ) ( 260 -3640 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2817 +{ +( 416 -3648 -64 ) ( 152 -3648 -64 ) ( 152 -3616 -64 ) common/li_pv_v4a 0 -7 -180 1 1 0 1 7000 +( 768 -3648 -96 ) ( 768 -3616 -64 ) ( 152 -3632 -80 ) common/li_pv_v4a 0 -7 -180 1 1 0 1 7000 +( 256 -3648 -96 ) ( 256 -3616 -96 ) ( 256 -3632 -64 ) common/li_pv_v4a 0 -8 -90 1 -1 0 1 7000 +( 320 -3616 -96 ) ( 320 -3632 -96 ) ( 320 -3624 -64 ) common/li_pv_v4a 0 -8 -90 1 -1 0 1 7000 +( 264 -3640 -96 ) ( 256 -3640 -96 ) ( 260 -3640 -64 ) common/li_pv_v4a 0 -8 -90 1 1 0 1 7000 +( 256 -3624 -88 ) ( 272 -3624 -88 ) ( 264 -3624 -64 ) common/li_pv_v4a 0 -8 -90 1 1 0 1 7000 +} +// brush 2818 +{ +( 416 -3648 -64 ) ( 152 -3648 -64 ) ( 152 -3616 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 768 -3648 -96 ) ( 768 -3616 -64 ) ( 152 -3632 -80 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 256 -3648 -96 ) ( 256 -3616 -96 ) ( 256 -3632 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 320 -3616 -96 ) ( 320 -3632 -96 ) ( 320 -3624 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 272 -3624 -88 ) ( 256 -3624 -88 ) ( 264 -3624 -64 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 2819 +{ +( 256 -3296 -64 ) ( 152 -3296 -64 ) ( 152 -3264 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 256 -3264 -48 ) ( 152 -3264 -48 ) ( 152 -3264 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 -3296 -64 ) ( 768 -3264 -96 ) ( 152 -3280 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 320 -3296 -96 ) ( 320 -3264 -96 ) ( 320 -3280 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 576 -3264 -96 ) ( 576 -3296 -96 ) ( 576 -3280 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2820 +{ +( 256 -3296 -64 ) ( 152 -3296 -64 ) ( 152 -3264 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 -3296 -48 ) ( 768 -3264 -48 ) ( 768 -3264 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 256 -3264 -48 ) ( 152 -3264 -48 ) ( 152 -3264 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 -3296 -64 ) ( 768 -3264 -96 ) ( 152 -3280 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 640 -3296 -96 ) ( 640 -3264 -96 ) ( 640 -3280 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2821 +{ +( 256 -3296 -64 ) ( 152 -3296 -64 ) ( 152 -3264 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 -3296 -64 ) ( 768 -3264 -96 ) ( 152 -3280 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 576 -3296 -96 ) ( 576 -3264 -96 ) ( 576 -3280 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 640 -3264 -96 ) ( 640 -3296 -96 ) ( 640 -3280 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 576 -3288 -96 ) ( 584 -3288 -96 ) ( 580 -3288 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2822 +{ +( 256 -3296 -64 ) ( 152 -3296 -64 ) ( 152 -3264 -64 ) common/li_pv_v4a 0 7 0 1 1 0 1 7000 +( 768 -3296 -64 ) ( 768 -3264 -96 ) ( 152 -3280 -80 ) common/li_pv_v4a 0 7 0 1 1 0 1 7000 +( 576 -3296 -96 ) ( 576 -3264 -96 ) ( 576 -3280 -64 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 640 -3264 -96 ) ( 640 -3296 -96 ) ( 640 -3280 -64 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 584 -3288 -96 ) ( 576 -3288 -96 ) ( 580 -3288 -64 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 576 -3272 -96 ) ( 584 -3272 -96 ) ( 580 -3272 -64 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 2823 +{ +( 256 -3296 -64 ) ( 152 -3296 -64 ) ( 152 -3264 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 256 -3264 -48 ) ( 152 -3264 -48 ) ( 152 -3264 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 -3296 -64 ) ( 768 -3264 -96 ) ( 152 -3280 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 576 -3296 -96 ) ( 576 -3264 -96 ) ( 576 -3280 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 640 -3264 -96 ) ( 640 -3296 -96 ) ( 640 -3280 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 584 -3272 -96 ) ( 576 -3272 -96 ) ( 580 -3272 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2824 +{ +( 256 -3296 -64 ) ( 152 -3296 -64 ) ( 152 -3264 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 256 -3264 -48 ) ( 152 -3264 -48 ) ( 152 -3264 -96 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 -3296 -64 ) ( 768 -3264 -96 ) ( 152 -3280 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 256 -3296 -96 ) ( 256 -3272 -96 ) ( 256 -3284 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 320 -3264 -96 ) ( 320 -3296 -96 ) ( 320 -3280 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 264 -3272 -96 ) ( 256 -3272 -96 ) ( 260 -3272 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2825 +{ +( 256 -3296 -64 ) ( 152 -3296 -64 ) ( 152 -3264 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 768 -3296 -64 ) ( 768 -3264 -96 ) ( 152 -3280 -80 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 256 -3296 -96 ) ( 256 -3272 -96 ) ( 256 -3284 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 320 -3264 -96 ) ( 320 -3296 -96 ) ( 320 -3280 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 256 -3288 -88 ) ( 264 -3288 -88 ) ( 260 -3288 -64 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2826 +{ +( 256 -3296 -64 ) ( 152 -3296 -64 ) ( 152 -3264 -64 ) common/li_pv_v4a 0 7 0 1 1 0 1 7000 +( 768 -3296 -64 ) ( 768 -3264 -96 ) ( 152 -3280 -80 ) common/li_pv_v4a 0 7 0 1 1 0 1 7000 +( 256 -3296 -96 ) ( 256 -3272 -96 ) ( 256 -3284 -64 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 320 -3264 -96 ) ( 320 -3296 -96 ) ( 320 -3280 -64 ) common/li_pv_v4a 0 8 90 1 -1 0 1 7000 +( 256 -3272 -96 ) ( 264 -3272 -96 ) ( 260 -3272 -64 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( 264 -3288 -88 ) ( 256 -3288 -88 ) ( 260 -3288 -64 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 2827 +{ +( 192 -3632 192 ) ( 64 -3632 192 ) ( 64 -3264 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 80 -3232 32 ) ( 80 -3232 48 ) ( 6 -3248 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 80 -3232 192 ) ( 80 -3232 176 ) ( 84 -3248 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 6 -3248 32 ) ( 6 -3248 48 ) ( 8 -3264 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 8 -3264 -16 ) ( 84 -3248 -16 ) ( 46 -3256 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 6 -1424 -16 ) ( 6 -1456 -16 ) ( 84 -1440 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2828 +{ +( 348 -3600 192 ) ( 220 -3600 192 ) ( 220 -3232 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 140 -3206 -32 ) ( 140 -3206 -16 ) ( 80 -3232 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 140 -3206 192 ) ( 140 -3206 176 ) ( 148 -3220 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 80 -3232 176 ) ( 80 -3232 192 ) ( 84 -3248 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 84 -3248 128 ) ( 148 -3220 128 ) ( 116 -3234 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 80 -1424 -16 ) ( 80 -1456 -16 ) ( 148 -1440 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2829 +{ +( 480 -3544 192 ) ( 352 -3544 192 ) ( 352 -3176 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 207 -3163 -16 ) ( 207 -3163 192 ) ( 140 -3206 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 207 -3163 192 ) ( 207 -3163 -16 ) ( 216 -3176 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 140 -3206 176 ) ( 140 -3206 192 ) ( 148 -3220 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 148 -3220 128 ) ( 216 -3176 128 ) ( 182 -3198 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 140 -1424 -16 ) ( 140 -1456 -16 ) ( 216 -1440 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2830 +{ +( 148 -3220 160 ) ( 244 -3196 192 ) ( 216 -3176 160 ) bricks/c_tn_m1 0 -2 213 1 1 0 0 0 +( 148 -3220 160 ) ( 216 -3176 160 ) ( 216 -3176 208 ) bricks/c_tn_m1 0 -2 213 1 1 0 0 0 +( 216 -3176 160 ) ( 244 -3196 192 ) ( 216 -3176 192 ) bricks/c_tn_m1 0 -2 213 1 1 0 0 0 +( 148 -3220 192 ) ( 244 -3196 192 ) ( 148 -3220 160 ) bricks/c_tn_m1 0 -2 213 1 1 0 0 0 +( 216 -3176 192 ) ( 244 -3196 192 ) ( 148 -3220 192 ) bricks/c_tn_m1 0 -2 213 1 1 0 0 0 +} +// brush 2831 +{ +( 163 -3248 192 ) ( 244 -3196 192 ) ( 148 -3220 160 ) bricks/c_tn_m1 0 -2 213 1 1 0 0 0 +( 163 -3248 192 ) ( 148 -3220 160 ) ( 148 -3220 208 ) bricks/c_tn_m1 0 -2 213 1 1 0 0 0 +( 148 -3220 160 ) ( 244 -3196 192 ) ( 148 -3220 192 ) bricks/c_tn_m1 0 -2 213 1 1 0 0 0 +( 148 -3220 192 ) ( 244 -3196 192 ) ( 163 -3248 192 ) bricks/c_tn_m1 0 -2 213 1 1 0 0 0 +} +// brush 2832 +{ +( 163 -3248 192 ) ( 148 -3220 160 ) ( 84 -3248 160 ) bricks/c_tn_m1 0 14 203 1 1 0 0 0 +( 84 -3248 160 ) ( 148 -3220 160 ) ( 148 -3220 208 ) bricks/c_tn_m1 0 14 203 1 1 0 0 0 +( 148 -3220 208 ) ( 148 -3220 160 ) ( 163 -3248 192 ) bricks/c_tn_m1 0 14 203 1 1 0 0 0 +( 163 -3248 192 ) ( 84 -3248 160 ) ( 84 -3248 208 ) bricks/c_tn_m1 0 14 203 1 1 0 0 0 +( 104 -3220 192 ) ( 128 -3220 192 ) ( 116 -3248 192 ) bricks/c_tn_m1 0 14 203 1 1 0 0 0 +} +// brush 2833 +{ +( 163 -3248 192 ) ( 84 -3248 160 ) ( 94 -3279 192 ) bricks/c_tn_m1 0 14 203 1 1 0 0 0 +( 94 -3279 192 ) ( 84 -3248 160 ) ( 84 -3248 208 ) bricks/c_tn_m1 0 14 203 1 1 0 0 0 +( 84 -3248 208 ) ( 84 -3248 160 ) ( 163 -3248 192 ) bricks/c_tn_m1 0 14 203 1 1 0 0 0 +( 104 -3248 192 ) ( 128 -3248 192 ) ( 116 -3279 192 ) bricks/c_tn_m1 0 14 203 1 1 0 0 0 +} +// brush 2834 +{ +( 94 -3279 192 ) ( 84 -3248 160 ) ( 8 -3264 160 ) bricks/c_tn_m1 0 -6 192 1 1 0 0 0 +( 8 -3264 160 ) ( 84 -3248 160 ) ( 84 -3248 208 ) bricks/c_tn_m1 0 -6 192 1 1 0 0 0 +( 84 -3248 208 ) ( 84 -3248 160 ) ( 94 -3279 192 ) bricks/c_tn_m1 0 -6 192 1 1 0 0 0 +( 94 -3279 208 ) ( 94 -3279 192 ) ( 8 -3264 160 ) bricks/c_tn_m1 0 -6 192 1 1 0 0 0 +( 104 -3248 192 ) ( 128 -3248 192 ) ( 116 -3279 192 ) bricks/c_tn_m1 0 -6 192 1 1 0 0 0 +} +// brush 2835 +{ +( 94 -3279 192 ) ( 8 -3264 160 ) ( 11 -3296 192 ) bricks/c_tn_m1 0 -6 192 1 1 0 0 0 +( 11 -3296 192 ) ( 8 -3264 160 ) ( 8 -3264 208 ) bricks/c_tn_m1 0 -6 192 1 1 0 0 0 +( 8 -3264 208 ) ( 8 -3264 160 ) ( 94 -3279 192 ) bricks/c_tn_m1 0 -6 192 1 1 0 0 0 +( 104 -3264 192 ) ( 128 -3264 192 ) ( 116 -3296 192 ) bricks/c_tn_m1 0 -6 192 1 1 0 0 0 +} +// brush 2836 +{ +( 192 -3632 0 ) ( 64 -3632 0 ) ( 64 -3264 0 ) bricks/c_sr_mr5 0 -7 192 1 1 0 0 0 +( 64 -3264 -16 ) ( 64 -3632 -16 ) ( 192 -3632 -16 ) bricks/c_sr_mr5 -15 15 90 1 1 0 0 0 +( 84 -3248 -144 ) ( 84 -3248 16 ) ( 8 -3264 16 ) bricks/c_sr_mr5 -63 -16 -180 1 -1 0 0 0 +( 84 -3248 16 ) ( 84 -3248 -144 ) ( 88 -3264 -144 ) bricks/c_sr_mr5 -16 -16 0 1 1 0 0 0 +( 6 -3248 -144 ) ( 6 -3248 -128 ) ( 8 -3264 -128 ) bricks/c_sr_mr5 -16 -16 0 1 1 0 0 0 +( 88 -3264 16 ) ( 88 -3264 -144 ) ( 10 -3280 -144 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2837 +{ +( 348 -3600 0 ) ( 220 -3600 0 ) ( 220 -3232 0 ) bricks/c_sr_mr5 0 13 203 1 1 0 0 0 +( 220 -3232 -16 ) ( 220 -3600 -16 ) ( 348 -3600 -16 ) bricks/c_sr_mr5 -15 15 90 1 1 0 0 0 +( 148 -3220 -144 ) ( 148 -3220 16 ) ( 84 -3248 16 ) bricks/c_sr_mr5 -63 -16 -180 1 -1 0 0 0 +( 156 -3234 -144 ) ( 156 -3234 16 ) ( 148 -3220 16 ) bricks/c_sr_mr5 -16 -16 0 1 1 0 0 0 +( 88 -3264 16 ) ( 88 -3264 -144 ) ( 84 -3248 -144 ) bricks/c_sr_mr5 -16 -16 0 1 1 0 0 0 +( 88 -3264 -144 ) ( 88 -3264 16 ) ( 156 -3234 16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2838 +{ +( 480 -3544 0 ) ( 352 -3544 0 ) ( 352 -3176 0 ) bricks/c_sr_mr5 0 -4 213 1 1 0 0 0 +( 352 -3176 -16 ) ( 352 -3544 -16 ) ( 480 -3544 -16 ) bricks/c_sr_mr5 -15 15 90 1 1 0 0 0 +( 216 -3176 -144 ) ( 216 -3176 16 ) ( 148 -3220 16 ) bricks/c_sr_mr5 -63 -16 -180 1 -1 0 0 0 +( 226 -3188 -144 ) ( 226 -3188 16 ) ( 216 -3176 16 ) bricks/c_sr_mr5 -16 -16 0 1 1 0 0 0 +( 156 -3234 16 ) ( 156 -3234 -144 ) ( 148 -3220 -144 ) bricks/c_sr_mr5 -16 -16 0 1 1 0 0 0 +( 226 -3188 16 ) ( 226 -3188 -144 ) ( 156 -3234 -144 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 2839 +{ +( 1560 -1832 160 ) ( 1582 -1858 192 ) ( 1684 -1752 160 ) bricks/c_tn_m1 0 -12 213 1 1 0 0 0 +( 1560 -1832 192 ) ( 1582 -1858 192 ) ( 1560 -1832 160 ) bricks/c_tn_m1 0 -12 213 1 1 0 0 0 +( 1560 -1832 208 ) ( 1560 -1832 160 ) ( 1684 -1752 160 ) bricks/c_tn_m1 0 -12 213 1 1 0 0 0 +( 1684 -1752 160 ) ( 1582 -1858 192 ) ( 1684 -1752 192 ) bricks/c_tn_m1 0 -12 213 1 1 0 0 0 +( 1684 -1752 192 ) ( 1582 -1858 192 ) ( 1560 -1832 192 ) bricks/c_tn_m1 0 -12 213 1 1 0 0 0 +} +// brush 2840 +{ +( 1684 -1752 160 ) ( 1582 -1858 192 ) ( 1700 -1781 192 ) bricks/c_tn_m1 0 -12 213 1 1 0 0 0 +( 1684 -1752 208 ) ( 1684 -1752 160 ) ( 1700 -1781 192 ) bricks/c_tn_m1 0 -12 213 1 1 0 0 0 +( 1684 -1752 192 ) ( 1582 -1858 192 ) ( 1684 -1752 160 ) bricks/c_tn_m1 0 -12 213 1 1 0 0 0 +( 1700 -1781 192 ) ( 1582 -1858 192 ) ( 1684 -1752 192 ) bricks/c_tn_m1 0 -12 213 1 1 0 0 0 +} +// brush 2841 +{ +( 1536 -1768 192 ) ( 1664 -1768 192 ) ( 1664 -2136 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1876 -2106 32 ) ( 1810 -2150 32 ) ( 1810 -2150 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1800 -2136 192 ) ( 1810 -2150 192 ) ( 1810 -2150 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1868 -2092 176 ) ( 1876 -2106 176 ) ( 1876 -2106 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1834 -2114 128 ) ( 1800 -2136 112 ) ( 1868 -2092 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3488 -2092 -16 ) ( 3472 -2150 -16 ) ( 3504 -2150 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2842 +{ +( 1668 -1712 192 ) ( 1796 -1712 192 ) ( 1796 -2080 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1936 -2080 -32 ) ( 1876 -2106 -32 ) ( 1876 -2106 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1868 -2092 192 ) ( 1876 -2106 192 ) ( 1876 -2106 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1932 -2064 176 ) ( 1936 -2080 176 ) ( 1936 -2080 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1900 -2078 128 ) ( 1868 -2092 112 ) ( 1932 -2064 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3488 -2064 -16 ) ( 3472 -2106 -16 ) ( 3504 -2106 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2843 +{ +( 1824 -1680 192 ) ( 1952 -1680 192 ) ( 1952 -2048 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2010 -2064 32 ) ( 1936 -2080 32 ) ( 1936 -2080 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1932 -2064 192 ) ( 1936 -2080 192 ) ( 1936 -2080 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2008 -2048 176 ) ( 2010 -2064 176 ) ( 2010 -2064 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1970 -2056 128 ) ( 1932 -2064 112 ) ( 2008 -2048 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 3488 -2048 -16 ) ( 3472 -2080 -16 ) ( 3504 -2080 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2844 +{ +( 1824 -1680 192 ) ( 1952 -1680 192 ) ( 1952 -2048 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1816 -1696 176 ) ( 1810 -1680 176 ) ( 1810 -1680 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1970 -1648 -16 ) ( 1810 -1680 -16 ) ( 1810 -1680 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1972 -1664 192 ) ( 1970 -1648 192 ) ( 1970 -1648 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1894 -1680 192 ) ( 1972 -1664 176 ) ( 1816 -1696 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1336 -1648 -16 ) ( 1320 -1696 -16 ) ( 1352 -1696 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2845 +{ +( 1668 -1712 192 ) ( 1796 -1712 192 ) ( 1796 -2080 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1684 -1752 176 ) ( 1676 -1738 176 ) ( 1676 -1738 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1810 -1680 -16 ) ( 1676 -1738 -16 ) ( 1676 -1738 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1816 -1696 192 ) ( 1810 -1680 192 ) ( 1810 -1680 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1750 -1724 192 ) ( 1816 -1696 176 ) ( 1684 -1752 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1336 -1680 -16 ) ( 1320 -1752 -16 ) ( 1352 -1752 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2846 +{ +( 1536 -1768 192 ) ( 1664 -1768 192 ) ( 1664 -2136 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1560 -1832 32 ) ( 1550 -1820 32 ) ( 1550 -1820 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1676 -1738 -16 ) ( 1550 -1820 -16 ) ( 1550 -1820 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1684 -1752 192 ) ( 1676 -1738 192 ) ( 1676 -1738 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1622 -1792 192 ) ( 1684 -1752 176 ) ( 1560 -1832 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1336 -1738 -16 ) ( 1320 -1832 -16 ) ( 1352 -1832 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2847 +{ +( 2048 -1664 -16 ) ( 1972 -1664 -16 ) ( 1972 -1664 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1972 -1664 -16 ) ( 1816 -1696 -16 ) ( 1816 -1696 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1816 -1696 -16 ) ( 1684 -1752 -16 ) ( 1684 -1752 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1684 -1752 -16 ) ( 1560 -1832 -16 ) ( 1560 -1832 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1560 -1832 -16 ) ( 1448 -1944 -16 ) ( 1448 -1944 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1280 -1664 -32 ) ( 1280 -3200 -32 ) ( 2816 -3200 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2816 -3200 -16 ) ( 1280 -3200 -16 ) ( 1280 -1664 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2048 -1884 -16 ) ( 2048 -1856 -80 ) ( 2048 -1912 -80 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1776 -2160 -32 ) ( 1776 -2160 -16 ) ( 2048 -2048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1776 -2160 -16 ) ( 1776 -2160 -32 ) ( 1504 -1888 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2848 +{ +( 2048 -1664 208 ) ( 1972 -1664 208 ) ( 1972 -1664 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1972 -1664 208 ) ( 1816 -1696 208 ) ( 1816 -1696 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1816 -1696 208 ) ( 1684 -1752 208 ) ( 1684 -1752 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1684 -1752 208 ) ( 1560 -1832 208 ) ( 1560 -1832 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1560 -1832 208 ) ( 1448 -1944 208 ) ( 1448 -1944 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1280 -1664 192 ) ( 1280 -3200 192 ) ( 2816 -3200 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2816 -3200 208 ) ( 1280 -3200 208 ) ( 1280 -1664 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 2048 -1884 208 ) ( 2048 -1856 144 ) ( 2048 -1912 144 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1776 -2160 192 ) ( 1776 -2160 208 ) ( 2048 -2048 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 1776 -2160 208 ) ( 1776 -2160 192 ) ( 1504 -1888 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 2849 +{ +( 1922 -2033 192 ) ( 2008 -2048 160 ) ( 2005 -2016 192 ) bricks/c_tn_m1 -45 11 12 1 1 0 0 0 +( 2005 -2016 192 ) ( 2008 -2048 160 ) ( 2008 -2048 208 ) bricks/c_tn_m1 -45 11 12 1 1 0 0 0 +( 2008 -2048 208 ) ( 2008 -2048 160 ) ( 1922 -2033 192 ) bricks/c_tn_m1 -45 11 12 1 1 0 0 0 +( 1922 -2284 192 ) ( 2008 -2272 192 ) ( 2008 -2296 192 ) bricks/c_tn_m1 -45 11 12 1 1 0 0 0 +} +// brush 2850 +{ +( 1922 -2033 192 ) ( 1932 -2064 160 ) ( 2008 -2048 160 ) bricks/c_tn_m1 -45 11 12 1 1 0 0 0 +( 2008 -2048 160 ) ( 1932 -2064 160 ) ( 1932 -2064 208 ) bricks/c_tn_m1 -45 11 12 1 1 0 0 0 +( 1932 -2064 208 ) ( 1932 -2064 160 ) ( 1922 -2033 192 ) bricks/c_tn_m1 -45 11 12 1 1 0 0 0 +( 1922 -2033 208 ) ( 1922 -2033 192 ) ( 2008 -2048 160 ) bricks/c_tn_m1 -45 11 12 1 1 0 0 0 +( 1922 -2284 192 ) ( 2008 -2272 192 ) ( 2008 -2296 192 ) bricks/c_tn_m1 -45 11 12 1 1 0 0 0 +} +// brush 2851 +{ +( 1853 -2064 192 ) ( 1778 -2110 192 ) ( 1868 -2092 160 ) bricks/c_tn_m1 0 -13 32 1 1 0 0 0 +( 1853 -2064 192 ) ( 1868 -2092 160 ) ( 1868 -2092 208 ) bricks/c_tn_m1 0 -13 32 1 1 0 0 0 +( 1868 -2092 160 ) ( 1778 -2110 192 ) ( 1868 -2092 192 ) bricks/c_tn_m1 0 -13 32 1 1 0 0 0 +( 1868 -2092 192 ) ( 1778 -2110 192 ) ( 1853 -2064 192 ) bricks/c_tn_m1 0 -13 32 1 1 0 0 0 +} +// brush 2852 +{ +( 1868 -2092 160 ) ( 1778 -2110 192 ) ( 1800 -2136 160 ) bricks/c_tn_m1 0 -13 32 1 1 0 0 0 +( 1868 -2092 160 ) ( 1800 -2136 160 ) ( 1800 -2136 208 ) bricks/c_tn_m1 0 -13 32 1 1 0 0 0 +( 1800 -2136 160 ) ( 1778 -2110 192 ) ( 1800 -2136 192 ) bricks/c_tn_m1 0 -13 32 1 1 0 0 0 +( 1868 -2092 192 ) ( 1778 -2110 192 ) ( 1868 -2092 160 ) bricks/c_tn_m1 0 -13 32 1 1 0 0 0 +( 1800 -2136 192 ) ( 1778 -2110 192 ) ( 1868 -2092 192 ) bricks/c_tn_m1 0 -13 32 1 1 0 0 0 +} +// brush 2853 +{ +( 1975 -1696 192 ) ( 1972 -1664 160 ) ( 1826 -1727 192 ) bricks/c_tn_m1 -149 -10 192 1 1 0 0 0 +( 1972 -1664 208 ) ( 1972 -1664 160 ) ( 1975 -1696 192 ) bricks/c_tn_m1 -149 -10 192 1 1 0 0 0 +( 1826 -1727 192 ) ( 1972 -1664 160 ) ( 1972 -1664 208 ) bricks/c_tn_m1 -149 -10 192 1 1 0 0 0 +( 1532 -1664 192 ) ( 1560 -1727 192 ) ( 1504 -1727 192 ) bricks/c_tn_m1 -149 -10 192 1 1 0 0 0 +} +// brush 2854 +{ +( 1972 -1664 160 ) ( 1816 -1696 160 ) ( 1826 -1727 192 ) bricks/c_tn_m1 -149 -10 192 1 1 0 0 0 +( 1826 -1727 192 ) ( 1816 -1696 160 ) ( 1816 -1696 208 ) bricks/c_tn_m1 -149 -10 192 1 1 0 0 0 +( 1816 -1696 208 ) ( 1816 -1696 160 ) ( 1972 -1664 160 ) bricks/c_tn_m1 -149 -10 192 1 1 0 0 0 +( 1972 -1664 208 ) ( 1972 -1664 160 ) ( 1826 -1727 192 ) bricks/c_tn_m1 -149 -10 192 1 1 0 0 0 +( 1532 -1664 192 ) ( 1560 -1727 192 ) ( 1504 -1727 192 ) bricks/c_tn_m1 -149 -10 192 1 1 0 0 0 +} +// brush 2855 +{ +( 1664 -2136 -16 ) ( 1664 -1768 -16 ) ( 1536 -1768 -16 ) bricks/c_sr_mr5 48 14 90 1 1 0 0 0 +( 1536 -1768 0 ) ( 1664 -1768 0 ) ( 1664 -2136 0 ) bricks/c_sr_mr5 0 -14 32 1 1 0 0 0 +( 1868 -2092 -32 ) ( 1800 -2136 -32 ) ( 1800 -2136 128 ) bricks/c_sr_mr5 -63 -17 -180 1 -1 0 0 0 +( 1800 -2136 -32 ) ( 1790 -2124 -32 ) ( 1790 -2124 128 ) bricks/c_sr_mr5 48 -17 0 1 1 0 0 0 +( 1868 -2092 128 ) ( 1860 -2078 128 ) ( 1860 -2078 -32 ) bricks/c_sr_mr5 48 -17 0 1 1 0 0 0 +( 1860 -2078 128 ) ( 1790 -2124 128 ) ( 1790 -2124 -32 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 2856 +{ +( 1796 -2080 -16 ) ( 1796 -1712 -16 ) ( 1668 -1712 -16 ) bricks/c_sr_mr5 48 14 90 1 1 0 0 0 +( 1668 -1712 0 ) ( 1796 -1712 0 ) ( 1796 -2080 0 ) bricks/c_sr_mr5 0 -16 24 1 1 0 0 0 +( 1932 -2064 -32 ) ( 1868 -2092 -32 ) ( 1868 -2092 128 ) bricks/c_sr_mr5 -63 -17 -180 1 -1 0 0 0 +( 1868 -2092 -32 ) ( 1860 -2078 -32 ) ( 1860 -2078 128 ) bricks/c_sr_mr5 48 -17 0 1 1 0 0 0 +( 1932 -2064 128 ) ( 1928 -2048 128 ) ( 1928 -2048 -32 ) bricks/c_sr_mr5 48 -17 0 1 1 0 0 0 +( 1860 -2078 -32 ) ( 1928 -2048 -32 ) ( 1928 -2048 128 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 2857 +{ +( 1952 -2048 -16 ) ( 1952 -1680 -16 ) ( 1824 -1680 -16 ) bricks/c_sr_mr5 48 14 90 1 1 0 0 0 +( 1824 -1680 0 ) ( 1952 -1680 0 ) ( 1952 -2048 0 ) bricks/c_sr_mr5 0 10 12 1 1 0 0 0 +( 2008 -2048 -32 ) ( 1932 -2064 -32 ) ( 1932 -2064 128 ) bricks/c_sr_mr5 -63 -17 -180 1 -1 0 0 0 +( 1928 -2048 128 ) ( 1932 -2064 128 ) ( 1932 -2064 -32 ) bricks/c_sr_mr5 48 -17 0 1 1 0 0 0 +( 2008 -2048 112 ) ( 2010 -2064 112 ) ( 2010 -2064 128 ) bricks/c_sr_mr5 48 -17 0 1 1 0 0 0 +( 2006 -2032 128 ) ( 1928 -2048 128 ) ( 1928 -2048 -32 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 2858 +{ +( 1664 -2136 -16 ) ( 1664 -1768 -16 ) ( 1536 -1768 -16 ) bricks/c_sr_mr5 48 14 90 1 1 0 0 0 +( 1536 -1768 0 ) ( 1664 -1768 0 ) ( 1664 -2136 0 ) bricks/c_sr_mr5 0 -15 213 1 1 0 0 0 +( 1570 -1844 0 ) ( 1570 -1844 -16 ) ( 1560 -1832 -16 ) bricks/c_sr_mr5 48 -17 0 1 1 0 0 0 +( 1560 -1832 -32 ) ( 1684 -1752 -32 ) ( 1684 -1752 128 ) bricks/c_sr_mr5 -63 -17 -180 1 -1 0 0 0 +( 1691 -1765 -16 ) ( 1691 -1765 0 ) ( 1684 -1752 0 ) bricks/c_sr_mr5 48 -17 0 1 1 0 0 0 +( 1570 -1844 -16 ) ( 1570 -1844 0 ) ( 1691 -1765 0 ) bricks/c_sr_mr5 -63 -17 -180 1 -1 0 0 0 +} +// brush 2859 +{ +( 1796 -2080 -16 ) ( 1796 -1712 -16 ) ( 1668 -1712 -16 ) bricks/c_sr_mr5 48 14 90 1 1 0 0 0 +( 1668 -1712 0 ) ( 1796 -1712 0 ) ( 1796 -2080 0 ) bricks/c_sr_mr5 0 -2 203 1 1 0 0 0 +( 1691 -1765 0 ) ( 1691 -1765 -16 ) ( 1684 -1752 -16 ) bricks/c_sr_mr5 48 -17 0 1 1 0 0 0 +( 1816 -1696 128 ) ( 1684 -1752 128 ) ( 1684 -1752 -32 ) bricks/c_sr_mr5 -63 -17 -180 1 -1 0 0 0 +( 1816 -1696 -32 ) ( 1820 -1710 -32 ) ( 1820 -1710 128 ) bricks/c_sr_mr5 48 -17 0 1 1 0 0 0 +( 1691 -1765 -16 ) ( 1691 -1765 0 ) ( 1820 -1710 0 ) bricks/c_sr_mr5 -63 -17 -180 1 -1 0 0 0 +} +// brush 2860 +{ +( 1952 -2048 -16 ) ( 1952 -1680 -16 ) ( 1824 -1680 -16 ) bricks/c_sr_mr5 48 14 90 1 1 0 0 0 +( 1824 -1680 0 ) ( 1952 -1680 0 ) ( 1952 -2048 0 ) bricks/c_sr_mr5 0 -7 191 1 1 0 0 0 +( 1816 -1696 128 ) ( 1820 -1710 128 ) ( 1820 -1710 -32 ) bricks/c_sr_mr5 48 -17 0 1 1 0 0 0 +( 1816 -1696 -32 ) ( 1972 -1664 -32 ) ( 1972 -1664 128 ) bricks/c_sr_mr5 -63 -17 -180 1 -1 0 0 0 +( 1972 -1664 -32 ) ( 1974 -1680 -32 ) ( 1974 -1680 128 ) bricks/c_sr_mr5 48 -17 0 1 1 0 0 0 +( 1974 -1680 -32 ) ( 1820 -1710 -32 ) ( 1820 -1710 128 ) bricks/c_sr_mr5 -63 -17 -180 1 -1 0 0 0 +} +// brush 2861 +{ +( 1515 -1915 -16 ) ( 1515 -1899 -16 ) ( 1487 -1899 -16 ) bricks/c_sr_mr5 54 8 90 1 1 0 0 0 +( 1487 -1899 0 ) ( 1515 -1899 0 ) ( 1515 -1915 0 ) bricks/c_sr_mr5 0 -2 225 1 1 0 0 0 +( 226 -3188 0 ) ( 226 -3188 -16 ) ( 216 -3176 -16 ) bricks/c_sr_mr5 55 -18 0 1 1 0 0 0 +( 226 -3188 -16 ) ( 226 -3188 0 ) ( 1515 -1899 0 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 1560 -1832 0 ) ( 1560 -1832 -16 ) ( 1570 -1844 -16 ) bricks/c_sr_mr5 23 -18 0 1 1 0 0 0 +( 1560 -1832 -16 ) ( 1560 -1832 0 ) ( 216 -3176 0 ) bricks/c_sr_mr5 -8 -18 -180 1 -1 0 0 0 +} +// brush 2862 +{ +( 1496 -1896 -16 ) ( 1496 -1884 -16 ) ( 1480 -1884 -16 ) bricks/c_tn_m3 80 0 0 0.710000 1 0 0 0 +( 1480 -1884 192 ) ( 1496 -1884 192 ) ( 1496 -1896 192 ) bricks/c_tn_m3 80 0 0 0.710000 1 0 0 0 +( 216 -3176 192 ) ( 216 -3176 -16 ) ( 207 -3163 -16 ) bricks/c_tn_m3 80 0 0 0.710000 1 0 0 0 +( 216 -3176 -16 ) ( 216 -3176 192 ) ( 1504 -1888 192 ) bricks/c_tn_m3 80 0 0 0.710000 1 0 0 0 +( 1550 -1820 192 ) ( 1550 -1820 -16 ) ( 1560 -1832 -16 ) bricks/c_tn_m3 80 0 0 0.710000 1 0 0 0 +( 1550 -1820 -16 ) ( 1550 -1820 192 ) ( 207 -3163 192 ) bricks/c_tn_m3 80 0 0 0.710000 1 0 0 0 +} +// brush 2863 +{ +( 560 -2880 192 ) ( 344 -3096 192 ) ( 320 -3072 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 304 -3088 192 ) ( 304 -3088 160 ) ( 536 -2856 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 344 -3096 192 ) ( 560 -2880 192 ) ( 536 -2856 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1528 -1912 160 ) ( 1504 -1888 160 ) ( 1516 -1900 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1560 -1832 160 ) ( 1582 -1858 160 ) ( 1571 -1845 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +} +// brush 2864 +{ +( 264 -3176 192 ) ( 244 -3196 192 ) ( 216 -3176 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 304 -3088 192 ) ( 304 -3088 160 ) ( 536 -2856 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 216 -3176 160 ) ( 244 -3196 192 ) ( 264 -3176 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 240 -3152 160 ) ( 264 -3176 160 ) ( 252 -3164 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 216 -3176 192 ) ( 244 -3196 192 ) ( 216 -3176 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +} +// brush 2865 +{ +( 316 -3572 192 ) ( 532 -3356 192 ) ( 556 -3380 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 572 -3364 192 ) ( 572 -3364 160 ) ( 340 -3596 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 532 -3356 192 ) ( 316 -3572 192 ) ( 340 -3596 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1776 -2160 160 ) ( 1760 -2144 160 ) ( 1768 -2152 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1778 -2110 160 ) ( 1800 -2136 160 ) ( 1789 -2123 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +} +// brush 2866 +{ +( 11 -3296 192 ) ( -75 -3296 192 ) ( -72 -3264 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 152 -3264 160 ) ( 152 -3264 192 ) ( -104 -3264 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -72 -3264 160 ) ( -75 -3296 192 ) ( 11 -3296 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 8 -3264 160 ) ( 11 -3296 192 ) ( 8 -3264 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 0 -3288 160 ) ( 0 -3272 160 ) ( 0 -3280 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2867 +{ +( 11 -3296 192 ) ( -75 -3296 192 ) ( -72 -3264 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 152 -3264 160 ) ( 152 -3264 192 ) ( -104 -3264 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -72 -3264 160 ) ( -75 -3296 192 ) ( 11 -3296 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 0 -3272 160 ) ( 0 -3288 160 ) ( 0 -3280 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -64 -3280 160 ) ( -64 -3264 160 ) ( -64 -3272 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 0 -3272 160 ) ( -8 -3272 160 ) ( -4 -3272 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2868 +{ +( 11 -3296 192 ) ( -75 -3296 192 ) ( -72 -3264 192 ) common/li_pv_v4a 0 -8 180 1 1 0 1 7000 +( -72 -3264 160 ) ( -75 -3296 192 ) ( 11 -3296 192 ) common/li_pv_v4a 0 -8 180 1 1 0 1 7000 +( 0 -3272 160 ) ( 0 -3288 160 ) ( 0 -3280 192 ) common/li_pv_v4a 0 7 180 1 1 0 1 7000 +( -64 -3280 160 ) ( -64 -3264 160 ) ( -64 -3272 192 ) common/li_pv_v4a 0 7 180 1 1 0 1 7000 +( -8 -3272 160 ) ( 0 -3272 160 ) ( -4 -3272 192 ) common/li_pv_v4a 0 7 180 1 1 0 1 7000 +( 0 -3288 168 ) ( -8 -3288 168 ) ( -4 -3288 192 ) common/li_pv_v4a 0 7 180 1 1 0 1 7000 +} +// brush 2869 +{ +( 11 -3296 192 ) ( -75 -3296 192 ) ( -72 -3264 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -72 -3264 160 ) ( -75 -3296 192 ) ( 11 -3296 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 0 -3272 160 ) ( 0 -3288 160 ) ( 0 -3280 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -64 -3280 160 ) ( -64 -3264 160 ) ( -64 -3272 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -8 -3288 168 ) ( 0 -3288 168 ) ( -4 -3288 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 2870 +{ +( 560 -2880 192 ) ( 344 -3096 192 ) ( 320 -3072 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 344 -3096 192 ) ( 560 -2880 192 ) ( 536 -2856 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 264 -3176 160 ) ( 240 -3152 160 ) ( 252 -3164 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 288 -3104 160 ) ( 312 -3128 160 ) ( 300 -3116 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 261 -3169 160 ) ( 305 -3125 160 ) ( 283 -3147 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +} +// brush 2871 +{ +( 560 -2880 192 ) ( 344 -3096 192 ) ( 320 -3072 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 304 -3088 192 ) ( 304 -3088 160 ) ( 536 -2856 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 344 -3096 192 ) ( 560 -2880 192 ) ( 536 -2856 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 264 -3176 160 ) ( 240 -3152 160 ) ( 252 -3164 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 288 -3104 160 ) ( 312 -3128 160 ) ( 300 -3116 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 292 -3114 160 ) ( 288 -3118 160 ) ( 290 -3116 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +} +// brush 2872 +{ +( 560 -2880 192 ) ( 344 -3096 192 ) ( 320 -3072 192 ) common/li_pv_v4a 9 7 45 1 1 0 1 7000 +( 344 -3096 192 ) ( 560 -2880 192 ) ( 536 -2856 160 ) common/li_pv_v4a 9 7 45 1 1 0 1 7000 +( 264 -3176 160 ) ( 240 -3152 160 ) ( 252 -3164 192 ) common/li_pv_v4a 9 7 45 1 1 0 1 7000 +( 288 -3104 160 ) ( 312 -3128 160 ) ( 300 -3116 192 ) common/li_pv_v4a 9 7 45 1 1 0 1 7000 +( 305 -3125 160 ) ( 261 -3169 160 ) ( 283 -3147 192 ) common/li_pv_v4a 9 7 45 1 1 0 1 7000 +( 288 -3118 160 ) ( 292 -3114 160 ) ( 290 -3116 192 ) common/li_pv_v4a 9 7 45 1 1 0 1 7000 +} +// brush 2873 +{ +( 560 -2880 192 ) ( 344 -3096 192 ) ( 320 -3072 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 304 -3088 192 ) ( 304 -3088 160 ) ( 536 -2856 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 344 -3096 192 ) ( 560 -2880 192 ) ( 536 -2856 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 312 -3128 160 ) ( 288 -3104 160 ) ( 300 -3116 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 480 -2912 160 ) ( 504 -2936 160 ) ( 492 -2924 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +} +// brush 2874 +{ +( 800 -2640 192 ) ( 584 -2856 192 ) ( 560 -2832 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 544 -2848 192 ) ( 544 -2848 160 ) ( 776 -2616 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 584 -2856 192 ) ( 800 -2640 192 ) ( 776 -2616 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 552 -2888 160 ) ( 528 -2864 160 ) ( 540 -2876 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 720 -2672 160 ) ( 744 -2696 160 ) ( 732 -2684 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +} +// brush 2875 +{ +( 800 -2640 192 ) ( 584 -2856 192 ) ( 560 -2832 192 ) common/li_pv_v4a -10 7 45 1 1 0 1 7000 +( 584 -2856 192 ) ( 800 -2640 192 ) ( 776 -2616 160 ) common/li_pv_v4a -10 7 45 1 1 0 1 7000 +( 504 -2936 160 ) ( 480 -2912 160 ) ( 492 -2924 192 ) common/li_pv_v4a -10 7 45 1 1 0 1 7000 +( 528 -2864 160 ) ( 552 -2888 160 ) ( 540 -2876 192 ) common/li_pv_v4a -10 7 45 1 1 0 1 7000 +( 545 -2885 160 ) ( 501 -2929 160 ) ( 523 -2907 192 ) common/li_pv_v4a -10 7 45 1 1 0 1 7000 +( 528 -2878 160 ) ( 532 -2874 160 ) ( 530 -2876 192 ) common/li_pv_v4a -10 7 45 1 1 0 1 7000 +} +// brush 2876 +{ +( 800 -2640 192 ) ( 584 -2856 192 ) ( 560 -2832 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 544 -2848 192 ) ( 544 -2848 160 ) ( 776 -2616 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 584 -2856 192 ) ( 800 -2640 192 ) ( 776 -2616 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 504 -2936 160 ) ( 480 -2912 160 ) ( 492 -2924 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 528 -2864 160 ) ( 552 -2888 160 ) ( 540 -2876 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 532 -2874 160 ) ( 528 -2878 160 ) ( 530 -2876 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +} +// brush 2877 +{ +( 800 -2640 192 ) ( 584 -2856 192 ) ( 560 -2832 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 584 -2856 192 ) ( 800 -2640 192 ) ( 776 -2616 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 504 -2936 160 ) ( 480 -2912 160 ) ( 492 -2924 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 528 -2864 160 ) ( 552 -2888 160 ) ( 540 -2876 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 501 -2929 160 ) ( 545 -2885 160 ) ( 523 -2907 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +} +// brush 2878 +{ +( 1040 -2400 192 ) ( 824 -2616 192 ) ( 800 -2592 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 824 -2616 192 ) ( 1040 -2400 192 ) ( 1016 -2376 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 744 -2696 160 ) ( 720 -2672 160 ) ( 732 -2684 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 768 -2624 160 ) ( 792 -2648 160 ) ( 780 -2636 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 741 -2689 160 ) ( 785 -2645 160 ) ( 763 -2667 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +} +// brush 2879 +{ +( 1040 -2400 192 ) ( 824 -2616 192 ) ( 800 -2592 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 784 -2608 192 ) ( 784 -2608 160 ) ( 1016 -2376 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 824 -2616 192 ) ( 1040 -2400 192 ) ( 1016 -2376 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 744 -2696 160 ) ( 720 -2672 160 ) ( 732 -2684 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 768 -2624 160 ) ( 792 -2648 160 ) ( 780 -2636 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 772 -2634 160 ) ( 768 -2638 160 ) ( 770 -2636 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +} +// brush 2880 +{ +( 1040 -2400 192 ) ( 824 -2616 192 ) ( 800 -2592 192 ) common/li_pv_v4a -29 7 45 1 1 0 1 7000 +( 824 -2616 192 ) ( 1040 -2400 192 ) ( 1016 -2376 160 ) common/li_pv_v4a -29 7 45 1 1 0 1 7000 +( 744 -2696 160 ) ( 720 -2672 160 ) ( 732 -2684 192 ) common/li_pv_v4a -29 7 45 1 1 0 1 7000 +( 768 -2624 160 ) ( 792 -2648 160 ) ( 780 -2636 192 ) common/li_pv_v4a -29 7 45 1 1 0 1 7000 +( 785 -2645 160 ) ( 741 -2689 160 ) ( 763 -2667 192 ) common/li_pv_v4a -29 7 45 1 1 0 1 7000 +( 768 -2638 160 ) ( 772 -2634 160 ) ( 770 -2636 192 ) common/li_pv_v4a -29 7 45 1 1 0 1 7000 +} +// brush 2881 +{ +( 1040 -2400 192 ) ( 824 -2616 192 ) ( 800 -2592 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 784 -2608 192 ) ( 784 -2608 160 ) ( 1016 -2376 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 824 -2616 192 ) ( 1040 -2400 192 ) ( 1016 -2376 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 792 -2648 160 ) ( 768 -2624 160 ) ( 780 -2636 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 960 -2432 160 ) ( 984 -2456 160 ) ( 972 -2444 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +} +// brush 2882 +{ +( 1280 -2160 192 ) ( 1064 -2376 192 ) ( 1040 -2352 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1024 -2368 192 ) ( 1024 -2368 160 ) ( 1256 -2136 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1064 -2376 192 ) ( 1280 -2160 192 ) ( 1256 -2136 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1032 -2408 160 ) ( 1008 -2384 160 ) ( 1020 -2396 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1200 -2192 160 ) ( 1224 -2216 160 ) ( 1212 -2204 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +} +// brush 2883 +{ +( 1280 -2160 192 ) ( 1064 -2376 192 ) ( 1040 -2352 192 ) common/li_pv_v4a 14 7 45 1 1 0 1 7000 +( 1064 -2376 192 ) ( 1280 -2160 192 ) ( 1256 -2136 160 ) common/li_pv_v4a 14 7 45 1 1 0 1 7000 +( 984 -2456 160 ) ( 960 -2432 160 ) ( 972 -2444 192 ) common/li_pv_v4a 14 7 45 1 1 0 1 7000 +( 1008 -2384 160 ) ( 1032 -2408 160 ) ( 1020 -2396 192 ) common/li_pv_v4a 14 7 45 1 1 0 1 7000 +( 1025 -2405 160 ) ( 981 -2449 160 ) ( 1003 -2427 192 ) common/li_pv_v4a 14 7 45 1 1 0 1 7000 +( 1008 -2398 160 ) ( 1012 -2394 160 ) ( 1010 -2396 192 ) common/li_pv_v4a 14 7 45 1 1 0 1 7000 +} +// brush 2884 +{ +( 1280 -2160 192 ) ( 1064 -2376 192 ) ( 1040 -2352 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1024 -2368 192 ) ( 1024 -2368 160 ) ( 1256 -2136 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1064 -2376 192 ) ( 1280 -2160 192 ) ( 1256 -2136 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 984 -2456 160 ) ( 960 -2432 160 ) ( 972 -2444 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1008 -2384 160 ) ( 1032 -2408 160 ) ( 1020 -2396 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1012 -2394 160 ) ( 1008 -2398 160 ) ( 1010 -2396 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +} +// brush 2885 +{ +( 1280 -2160 192 ) ( 1064 -2376 192 ) ( 1040 -2352 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1064 -2376 192 ) ( 1280 -2160 192 ) ( 1256 -2136 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 984 -2456 160 ) ( 960 -2432 160 ) ( 972 -2444 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1008 -2384 160 ) ( 1032 -2408 160 ) ( 1020 -2396 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 981 -2449 160 ) ( 1025 -2405 160 ) ( 1003 -2427 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +} +// brush 2886 +{ +( 1520 -1920 192 ) ( 1304 -2136 192 ) ( 1280 -2112 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1304 -2136 192 ) ( 1520 -1920 192 ) ( 1496 -1896 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1224 -2216 160 ) ( 1200 -2192 160 ) ( 1212 -2204 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1248 -2144 160 ) ( 1272 -2168 160 ) ( 1260 -2156 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1221 -2209 160 ) ( 1265 -2165 160 ) ( 1243 -2187 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +} +// brush 2887 +{ +( 1520 -1920 192 ) ( 1304 -2136 192 ) ( 1280 -2112 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1264 -2128 192 ) ( 1264 -2128 160 ) ( 1496 -1896 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1304 -2136 192 ) ( 1520 -1920 192 ) ( 1496 -1896 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1224 -2216 160 ) ( 1200 -2192 160 ) ( 1212 -2204 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1248 -2144 160 ) ( 1272 -2168 160 ) ( 1260 -2156 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1252 -2154 160 ) ( 1248 -2158 160 ) ( 1250 -2156 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +} +// brush 2888 +{ +( 1520 -1920 192 ) ( 1304 -2136 192 ) ( 1280 -2112 192 ) common/li_pv_v4a -5 7 45 1 1 0 1 7000 +( 1304 -2136 192 ) ( 1520 -1920 192 ) ( 1496 -1896 160 ) common/li_pv_v4a -5 7 45 1 1 0 1 7000 +( 1224 -2216 160 ) ( 1200 -2192 160 ) ( 1212 -2204 192 ) common/li_pv_v4a -5 7 45 1 1 0 1 7000 +( 1248 -2144 160 ) ( 1272 -2168 160 ) ( 1260 -2156 192 ) common/li_pv_v4a -5 7 45 1 1 0 1 7000 +( 1265 -2165 160 ) ( 1221 -2209 160 ) ( 1243 -2187 192 ) common/li_pv_v4a -5 7 45 1 1 0 1 7000 +( 1248 -2158 160 ) ( 1252 -2154 160 ) ( 1250 -2156 192 ) common/li_pv_v4a -5 7 45 1 1 0 1 7000 +} +// brush 2889 +{ +( 1520 -1920 192 ) ( 1304 -2136 192 ) ( 1280 -2112 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1264 -2128 192 ) ( 1264 -2128 160 ) ( 1496 -1896 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1304 -2136 192 ) ( 1520 -1920 192 ) ( 1496 -1896 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1272 -2168 160 ) ( 1248 -2144 160 ) ( 1260 -2156 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1456 -1936 160 ) ( 1480 -1960 160 ) ( 1468 -1948 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +} +// brush 2890 +{ +( 1776 -1664 192 ) ( 1560 -1880 192 ) ( 1536 -1856 192 ) common/li_pv_v4a 17 7 45 1 1 0 1 7000 +( 1560 -1880 192 ) ( 1776 -1664 192 ) ( 1752 -1640 160 ) common/li_pv_v4a 17 7 45 1 1 0 1 7000 +( 1480 -1960 160 ) ( 1456 -1936 160 ) ( 1468 -1948 192 ) common/li_pv_v4a 17 7 45 1 1 0 1 7000 +( 1504 -1888 160 ) ( 1528 -1912 160 ) ( 1516 -1900 192 ) common/li_pv_v4a 17 7 45 1 1 0 1 7000 +( 1521 -1909 160 ) ( 1477 -1953 160 ) ( 1499 -1931 192 ) common/li_pv_v4a 17 7 45 1 1 0 1 7000 +( 1504 -1902 160 ) ( 1508 -1898 160 ) ( 1506 -1900 192 ) common/li_pv_v4a 17 7 45 1 1 0 1 7000 +} +// brush 2891 +{ +( 1776 -1664 192 ) ( 1560 -1880 192 ) ( 1536 -1856 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1520 -1872 192 ) ( 1520 -1872 160 ) ( 1752 -1640 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1560 -1880 192 ) ( 1776 -1664 192 ) ( 1752 -1640 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1480 -1960 160 ) ( 1456 -1936 160 ) ( 1468 -1948 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1504 -1888 160 ) ( 1528 -1912 160 ) ( 1516 -1900 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1508 -1898 160 ) ( 1504 -1902 160 ) ( 1506 -1900 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +} +// brush 2892 +{ +( 1776 -1664 192 ) ( 1560 -1880 192 ) ( 1536 -1856 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1560 -1880 192 ) ( 1776 -1664 192 ) ( 1752 -1640 160 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1480 -1960 160 ) ( 1456 -1936 160 ) ( 1468 -1948 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1504 -1888 160 ) ( 1528 -1912 160 ) ( 1516 -1900 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +( 1477 -1953 160 ) ( 1521 -1909 160 ) ( 1499 -1931 192 ) bricks/c_tn_m1 0 0 225 1 1 0 0 0 +} +// brush 2893 +{ +( 556 -3332 192 ) ( 772 -3116 192 ) ( 796 -3140 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 812 -3124 192 ) ( 812 -3124 160 ) ( 580 -3356 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 772 -3116 192 ) ( 556 -3332 192 ) ( 580 -3356 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 752 -3184 160 ) ( 728 -3160 160 ) ( 740 -3172 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 528 -2864 160 ) ( 552 -2888 160 ) ( 540 -2876 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 746 -3178 160 ) ( 794 -3130 160 ) ( 770 -3154 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +} +// brush 2894 +{ +( 556 -3332 192 ) ( 772 -3116 192 ) ( 796 -3140 192 ) common/li_pv_v4a -10 -6 45 1 1 0 1 7000 +( 772 -3116 192 ) ( 556 -3332 192 ) ( 580 -3356 160 ) common/li_pv_v4a -10 -6 45 1 1 0 1 7000 +( 752 -3184 160 ) ( 728 -3160 160 ) ( 740 -3172 192 ) common/li_pv_v4a -10 -6 45 1 1 0 1 7000 +( 528 -2864 160 ) ( 552 -2888 160 ) ( 540 -2876 192 ) common/li_pv_v4a -10 -6 45 1 1 0 1 7000 +( 734 -3164 160 ) ( 780 -3118 160 ) ( 757 -3141 192 ) common/li_pv_v4a -10 -6 45 1 1 0 1 7000 +( 794 -3130 160 ) ( 746 -3178 160 ) ( 770 -3154 192 ) common/li_pv_v4a -10 -6 45 1 1 0 1 7000 +} +// brush 2895 +{ +( 556 -3332 192 ) ( 772 -3116 192 ) ( 796 -3140 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 772 -3116 192 ) ( 556 -3332 192 ) ( 580 -3356 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 752 -3184 160 ) ( 728 -3160 160 ) ( 740 -3172 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 528 -2864 160 ) ( 552 -2888 160 ) ( 540 -2876 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 780 -3118 160 ) ( 734 -3164 160 ) ( 757 -3141 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +} +// brush 2896 +{ +( 556 -3332 192 ) ( 772 -3116 192 ) ( 796 -3140 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 812 -3124 192 ) ( 812 -3124 160 ) ( 580 -3356 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 772 -3116 192 ) ( 556 -3332 192 ) ( 580 -3356 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 552 -2888 160 ) ( 528 -2864 160 ) ( 540 -2876 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 720 -2672 160 ) ( 744 -2696 160 ) ( 732 -2684 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +} +// brush 2897 +{ +( 796 -3092 192 ) ( 1012 -2876 192 ) ( 1036 -2900 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1052 -2884 192 ) ( 1052 -2884 160 ) ( 820 -3116 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1012 -2876 192 ) ( 796 -3092 192 ) ( 820 -3116 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 792 -2648 160 ) ( 768 -2624 160 ) ( 780 -2636 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 960 -2432 160 ) ( 984 -2456 160 ) ( 972 -2444 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +} +// brush 2898 +{ +( 796 -3092 192 ) ( 1012 -2876 192 ) ( 1036 -2900 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1012 -2876 192 ) ( 796 -3092 192 ) ( 820 -3116 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 992 -2944 160 ) ( 968 -2920 160 ) ( 980 -2932 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 768 -2624 160 ) ( 792 -2648 160 ) ( 780 -2636 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1020 -2878 160 ) ( 974 -2924 160 ) ( 997 -2901 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +} +// brush 2899 +{ +( 796 -3092 192 ) ( 1012 -2876 192 ) ( 1036 -2900 192 ) common/li_pv_v4a -30 -5 45 1 1 0 1 7000 +( 1012 -2876 192 ) ( 796 -3092 192 ) ( 820 -3116 160 ) common/li_pv_v4a -30 -5 45 1 1 0 1 7000 +( 992 -2944 160 ) ( 968 -2920 160 ) ( 980 -2932 192 ) common/li_pv_v4a -30 -5 45 1 1 0 1 7000 +( 768 -2624 160 ) ( 792 -2648 160 ) ( 780 -2636 192 ) common/li_pv_v4a -30 -5 45 1 1 0 1 7000 +( 974 -2924 160 ) ( 1020 -2878 160 ) ( 997 -2901 192 ) common/li_pv_v4a -30 -5 45 1 1 0 1 7000 +( 1034 -2890 160 ) ( 986 -2938 160 ) ( 1010 -2914 192 ) common/li_pv_v4a -30 -5 45 1 1 0 1 7000 +} +// brush 2900 +{ +( 796 -3092 192 ) ( 1012 -2876 192 ) ( 1036 -2900 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1052 -2884 192 ) ( 1052 -2884 160 ) ( 820 -3116 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1012 -2876 192 ) ( 796 -3092 192 ) ( 820 -3116 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 992 -2944 160 ) ( 968 -2920 160 ) ( 980 -2932 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 768 -2624 160 ) ( 792 -2648 160 ) ( 780 -2636 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 986 -2938 160 ) ( 1034 -2890 160 ) ( 1010 -2914 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +} +// brush 2901 +{ +( 1036 -2852 192 ) ( 1252 -2636 192 ) ( 1276 -2660 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1292 -2644 192 ) ( 1292 -2644 160 ) ( 1060 -2876 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1252 -2636 192 ) ( 1036 -2852 192 ) ( 1060 -2876 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1232 -2704 160 ) ( 1208 -2680 160 ) ( 1220 -2692 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1008 -2384 160 ) ( 1032 -2408 160 ) ( 1020 -2396 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1226 -2698 160 ) ( 1274 -2650 160 ) ( 1250 -2674 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +} +// brush 2902 +{ +( 1036 -2852 192 ) ( 1252 -2636 192 ) ( 1276 -2660 192 ) common/li_pv_v4a 15 -6 45 1 1 0 1 7000 +( 1252 -2636 192 ) ( 1036 -2852 192 ) ( 1060 -2876 160 ) common/li_pv_v4a 15 -6 45 1 1 0 1 7000 +( 1232 -2704 160 ) ( 1208 -2680 160 ) ( 1220 -2692 192 ) common/li_pv_v4a 15 -6 45 1 1 0 1 7000 +( 1008 -2384 160 ) ( 1032 -2408 160 ) ( 1020 -2396 192 ) common/li_pv_v4a 15 -6 45 1 1 0 1 7000 +( 1214 -2684 160 ) ( 1260 -2638 160 ) ( 1237 -2661 192 ) common/li_pv_v4a 15 -6 45 1 1 0 1 7000 +( 1274 -2650 160 ) ( 1226 -2698 160 ) ( 1250 -2674 192 ) common/li_pv_v4a 15 -6 45 1 1 0 1 7000 +} +// brush 2903 +{ +( 1036 -2852 192 ) ( 1252 -2636 192 ) ( 1276 -2660 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1252 -2636 192 ) ( 1036 -2852 192 ) ( 1060 -2876 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1232 -2704 160 ) ( 1208 -2680 160 ) ( 1220 -2692 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1008 -2384 160 ) ( 1032 -2408 160 ) ( 1020 -2396 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1260 -2638 160 ) ( 1214 -2684 160 ) ( 1237 -2661 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +} +// brush 2904 +{ +( 1036 -2852 192 ) ( 1252 -2636 192 ) ( 1276 -2660 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1292 -2644 192 ) ( 1292 -2644 160 ) ( 1060 -2876 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1252 -2636 192 ) ( 1036 -2852 192 ) ( 1060 -2876 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1032 -2408 160 ) ( 1008 -2384 160 ) ( 1020 -2396 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1200 -2192 160 ) ( 1224 -2216 160 ) ( 1212 -2204 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +} +// brush 2905 +{ +( 1276 -2612 192 ) ( 1492 -2396 192 ) ( 1516 -2420 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1532 -2404 192 ) ( 1532 -2404 160 ) ( 1300 -2636 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1492 -2396 192 ) ( 1276 -2612 192 ) ( 1300 -2636 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1272 -2168 160 ) ( 1248 -2144 160 ) ( 1260 -2156 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1456 -1936 160 ) ( 1480 -1960 160 ) ( 1468 -1948 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +} +// brush 2906 +{ +( 1276 -2612 192 ) ( 1492 -2396 192 ) ( 1516 -2420 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1492 -2396 192 ) ( 1276 -2612 192 ) ( 1300 -2636 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1472 -2464 160 ) ( 1448 -2440 160 ) ( 1460 -2452 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1248 -2144 160 ) ( 1272 -2168 160 ) ( 1260 -2156 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1500 -2398 160 ) ( 1454 -2444 160 ) ( 1477 -2421 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +} +// brush 2907 +{ +( 1276 -2612 192 ) ( 1492 -2396 192 ) ( 1516 -2420 192 ) common/li_pv_v4a -4 -5 45 1 1 0 1 7000 +( 1492 -2396 192 ) ( 1276 -2612 192 ) ( 1300 -2636 160 ) common/li_pv_v4a -4 -5 45 1 1 0 1 7000 +( 1472 -2464 160 ) ( 1448 -2440 160 ) ( 1460 -2452 192 ) common/li_pv_v4a -4 -5 45 1 1 0 1 7000 +( 1248 -2144 160 ) ( 1272 -2168 160 ) ( 1260 -2156 192 ) common/li_pv_v4a -4 -5 45 1 1 0 1 7000 +( 1454 -2444 160 ) ( 1500 -2398 160 ) ( 1477 -2421 192 ) common/li_pv_v4a -4 -5 45 1 1 0 1 7000 +( 1514 -2410 160 ) ( 1466 -2458 160 ) ( 1490 -2434 192 ) common/li_pv_v4a -4 -5 45 1 1 0 1 7000 +} +// brush 2908 +{ +( 1276 -2612 192 ) ( 1492 -2396 192 ) ( 1516 -2420 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1532 -2404 192 ) ( 1532 -2404 160 ) ( 1300 -2636 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1492 -2396 192 ) ( 1276 -2612 192 ) ( 1300 -2636 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1472 -2464 160 ) ( 1448 -2440 160 ) ( 1460 -2452 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1248 -2144 160 ) ( 1272 -2168 160 ) ( 1260 -2156 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1466 -2458 160 ) ( 1514 -2410 160 ) ( 1490 -2434 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +} +// brush 2909 +{ +( 1532 -2356 192 ) ( 1748 -2140 192 ) ( 1772 -2164 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1788 -2148 192 ) ( 1788 -2148 160 ) ( 1556 -2380 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1748 -2140 192 ) ( 1532 -2356 192 ) ( 1556 -2380 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1728 -2208 160 ) ( 1704 -2184 160 ) ( 1716 -2196 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1504 -1888 160 ) ( 1528 -1912 160 ) ( 1516 -1900 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1722 -2202 160 ) ( 1770 -2154 160 ) ( 1746 -2178 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +} +// brush 2910 +{ +( 1532 -2356 192 ) ( 1748 -2140 192 ) ( 1772 -2164 192 ) common/li_pv_v4a 18 -5 45 1 1 0 1 7000 +( 1748 -2140 192 ) ( 1532 -2356 192 ) ( 1556 -2380 160 ) common/li_pv_v4a 18 -5 45 1 1 0 1 7000 +( 1728 -2208 160 ) ( 1704 -2184 160 ) ( 1716 -2196 192 ) common/li_pv_v4a 18 -5 45 1 1 0 1 7000 +( 1504 -1888 160 ) ( 1528 -1912 160 ) ( 1516 -1900 192 ) common/li_pv_v4a 18 -5 45 1 1 0 1 7000 +( 1710 -2188 160 ) ( 1756 -2142 160 ) ( 1733 -2165 192 ) common/li_pv_v4a 18 -5 45 1 1 0 1 7000 +( 1770 -2154 160 ) ( 1722 -2202 160 ) ( 1746 -2178 192 ) common/li_pv_v4a 18 -5 45 1 1 0 1 7000 +} +// brush 2911 +{ +( 1532 -2356 192 ) ( 1748 -2140 192 ) ( 1772 -2164 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1748 -2140 192 ) ( 1532 -2356 192 ) ( 1556 -2380 160 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1728 -2208 160 ) ( 1704 -2184 160 ) ( 1716 -2196 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1504 -1888 160 ) ( 1528 -1912 160 ) ( 1516 -1900 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +( 1756 -2142 160 ) ( 1710 -2188 160 ) ( 1733 -2165 192 ) bricks/c_tn_m1 0 2 45 1 1 0 0 0 +} +// brush 2912 +{ +( -1344 -1008 320 ) ( -1344 -831 320 ) ( -1312 -828 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1312 -1592 304 ) ( -1312 -1592 320 ) ( -1312 -1240 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1312 -828 288 ) ( -1344 -831 320 ) ( -1344 -1008 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1320 -832 288 ) ( -1344 -832 288 ) ( -1332 -832 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1344 -824 288 ) ( -1320 -824 288 ) ( -1332 -824 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2913 +{ +( -1344 -928 320 ) ( -1344 -751 320 ) ( -1312 -748 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1312 -1512 304 ) ( -1312 -1512 320 ) ( -1312 -1160 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1312 -748 288 ) ( -1344 -751 320 ) ( -1344 -928 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1312 -824 288 ) ( -1344 -824 288 ) ( -1328 -824 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1344 -760 288 ) ( -1320 -760 288 ) ( -1332 -760 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1320 -776 288 ) ( -1320 -760 288 ) ( -1320 -768 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2914 +{ +( -1344 -928 320 ) ( -1344 -751 320 ) ( -1312 -748 320 ) common/li_pv_v4a -8 8 90 1 1 0 1 7000 +( -1312 -748 288 ) ( -1344 -751 320 ) ( -1344 -928 320 ) common/li_pv_v4a -8 8 90 1 1 0 1 7000 +( -1312 -824 288 ) ( -1344 -824 288 ) ( -1328 -824 320 ) common/li_pv_v4a -8 8 90 1 1 0 1 7000 +( -1344 -760 288 ) ( -1320 -760 288 ) ( -1332 -760 320 ) common/li_pv_v4a -8 8 90 1 1 0 1 7000 +( -1336 -776 288 ) ( -1336 -760 288 ) ( -1336 -768 320 ) common/li_pv_v4a -8 8 90 1 1 0 1 7000 +( -1320 -760 288 ) ( -1320 -776 288 ) ( -1320 -768 320 ) common/li_pv_v4a -8 8 90 1 1 0 1 7000 +} +// brush 2915 +{ +( -1344 -928 320 ) ( -1344 -751 320 ) ( -1312 -748 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1312 -748 288 ) ( -1344 -751 320 ) ( -1344 -928 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1312 -824 288 ) ( -1344 -824 288 ) ( -1328 -824 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1344 -760 288 ) ( -1320 -760 288 ) ( -1332 -760 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1336 -760 288 ) ( -1336 -776 288 ) ( -1336 -768 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2916 +{ +( -1344 -936 320 ) ( -1344 -759 320 ) ( -1312 -756 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1312 -1520 304 ) ( -1312 -1520 320 ) ( -1312 -1168 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1312 -756 288 ) ( -1344 -759 320 ) ( -1344 -936 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1312 -756 320 ) ( -1344 -759 320 ) ( -1312 -756 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1320 -760 288 ) ( -1344 -760 288 ) ( -1332 -760 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2917 +{ +( -896 -792 160 ) ( -880 -716 160 ) ( -911 -706 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -880 -716 208 ) ( -880 -716 160 ) ( -896 -792 160 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -896 -792 160 ) ( -911 -706 192 ) ( -911 -706 208 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -911 -684 192 ) ( -880 -672 192 ) ( -880 -696 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -914 -714 160 ) ( -884 -720 160 ) ( -899 -717 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -894 -784 160 ) ( -934 -776 160 ) ( -914 -780 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -906 -796 160 ) ( -888 -710 160 ) ( -897 -753 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +} +// brush 2918 +{ +( -896 -792 160 ) ( -880 -716 160 ) ( -911 -706 192 ) common/li_pv_v4a -8 1 78 1 1 0 1 7000 +( -896 -792 160 ) ( -911 -706 192 ) ( -911 -706 208 ) common/li_pv_v4a -8 1 78 1 1 0 1 7000 +( -911 -684 192 ) ( -880 -672 192 ) ( -880 -696 192 ) common/li_pv_v4a -8 1 78 1 1 0 1 7000 +( -914 -714 160 ) ( -884 -720 160 ) ( -899 -717 192 ) common/li_pv_v4a -8 1 78 1 1 0 1 7000 +( -920 -788 160 ) ( -904 -712 160 ) ( -912 -750 192 ) common/li_pv_v4a -8 1 78 1 1 0 1 7000 +( -888 -710 160 ) ( -906 -796 160 ) ( -897 -753 192 ) common/li_pv_v4a -8 1 78 1 1 0 1 7000 +} +// brush 2919 +{ +( -928 -789 192 ) ( -896 -792 160 ) ( -911 -706 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -911 -706 192 ) ( -896 -792 160 ) ( -896 -792 208 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -928 -684 192 ) ( -896 -672 192 ) ( -896 -696 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -894 -784 160 ) ( -934 -776 160 ) ( -914 -780 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -906 -796 163 ) ( -888 -710 163 ) ( -897 -753 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +} +// brush 2920 +{ +( -928 -789 192 ) ( -896 -792 160 ) ( -911 -706 192 ) common/li_pv_v4a -8 1 78 1 1 0 1 7000 +( -911 -706 192 ) ( -896 -792 160 ) ( -896 -792 208 ) common/li_pv_v4a -8 1 78 1 1 0 1 7000 +( -928 -684 192 ) ( -896 -672 192 ) ( -896 -696 192 ) common/li_pv_v4a -8 1 78 1 1 0 1 7000 +( -894 -784 160 ) ( -934 -776 160 ) ( -914 -780 192 ) common/li_pv_v4a -8 1 78 1 1 0 1 7000 +( -920 -788 163 ) ( -904 -712 163 ) ( -912 -750 192 ) common/li_pv_v4a -8 1 78 1 1 0 1 7000 +( -888 -710 163 ) ( -906 -796 163 ) ( -897 -753 192 ) common/li_pv_v4a -8 1 78 1 1 0 1 7000 +} +// brush 2921 +{ +( -928 -789 192 ) ( -896 -792 160 ) ( -911 -706 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -911 -706 192 ) ( -896 -792 160 ) ( -896 -792 208 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -928 -684 192 ) ( -896 -672 192 ) ( -896 -696 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -914 -714 160 ) ( -884 -720 160 ) ( -899 -717 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -894 -784 160 ) ( -934 -776 160 ) ( -914 -780 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -904 -712 163 ) ( -920 -788 163 ) ( -912 -750 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +} +// brush 2922 +{ +( -896 -792 160 ) ( -880 -716 160 ) ( -911 -706 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -896 -792 160 ) ( -911 -706 192 ) ( -911 -706 208 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -911 -684 192 ) ( -880 -672 192 ) ( -880 -696 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -914 -714 160 ) ( -884 -720 160 ) ( -899 -717 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -904 -712 160 ) ( -920 -788 160 ) ( -912 -750 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +} +// brush 2923 +{ +( -928 -789 192 ) ( -896 -792 160 ) ( -911 -706 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -896 -792 208 ) ( -896 -792 160 ) ( -928 -789 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -911 -706 192 ) ( -896 -792 160 ) ( -896 -792 208 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -928 -684 192 ) ( -896 -672 192 ) ( -896 -696 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -934 -776 160 ) ( -894 -784 160 ) ( -914 -780 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +} +// brush 2924 +{ +( -896 -792 160 ) ( -880 -716 160 ) ( -911 -706 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -880 -716 208 ) ( -880 -716 160 ) ( -896 -792 160 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -896 -792 160 ) ( -911 -706 192 ) ( -911 -706 208 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -911 -684 192 ) ( -880 -672 192 ) ( -880 -696 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -934 -776 160 ) ( -894 -784 160 ) ( -914 -780 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +} +// brush 2925 +{ +( -896 -792 160 ) ( -880 -716 160 ) ( -911 -706 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -880 -716 208 ) ( -880 -716 160 ) ( -896 -792 160 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -911 -706 192 ) ( -880 -716 160 ) ( -880 -716 208 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -896 -792 160 ) ( -911 -706 192 ) ( -911 -706 208 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -911 -684 192 ) ( -880 -672 192 ) ( -880 -696 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -884 -720 160 ) ( -914 -714 160 ) ( -899 -717 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +} +// brush 2926 +{ +( -928 -789 192 ) ( -896 -792 160 ) ( -911 -706 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -911 -706 192 ) ( -896 -792 160 ) ( -896 -792 208 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -928 -684 192 ) ( -896 -672 192 ) ( -896 -696 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -884 -720 160 ) ( -914 -714 160 ) ( -899 -717 192 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +} +// brush 2927 +{ +( -638 -433 192 ) ( -628 -464 160 ) ( -552 -448 160 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -552 -448 160 ) ( -628 -464 160 ) ( -628 -464 208 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -638 -433 208 ) ( -638 -433 192 ) ( -552 -448 160 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -638 -684 192 ) ( -552 -672 192 ) ( -552 -696 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -622 -470 160 ) ( -630 -430 160 ) ( -626 -450 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -566 -420 160 ) ( -560 -450 160 ) ( -563 -435 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -634 -456 160 ) ( -558 -440 160 ) ( -596 -448 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +} +// brush 2928 +{ +( -638 -433 192 ) ( -628 -464 160 ) ( -552 -448 160 ) common/li_pv_v4a 2 5 12 1 1 0 1 7000 +( -638 -433 208 ) ( -638 -433 192 ) ( -552 -448 160 ) common/li_pv_v4a 2 5 12 1 1 0 1 7000 +( -638 -684 192 ) ( -552 -672 192 ) ( -552 -696 192 ) common/li_pv_v4a 2 5 12 1 1 0 1 7000 +( -622 -470 160 ) ( -630 -430 160 ) ( -626 -450 192 ) common/li_pv_v4a 2 5 12 1 1 0 1 7000 +( -642 -442 160 ) ( -556 -424 160 ) ( -599 -433 192 ) common/li_pv_v4a 2 5 12 1 1 0 1 7000 +( -558 -440 160 ) ( -634 -456 160 ) ( -596 -448 192 ) common/li_pv_v4a 2 5 12 1 1 0 1 7000 +} +// brush 2929 +{ +( -638 -433 192 ) ( -552 -448 160 ) ( -555 -416 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -552 -448 208 ) ( -552 -448 160 ) ( -638 -433 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -638 -684 192 ) ( -552 -672 192 ) ( -552 -696 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -566 -420 160 ) ( -560 -450 160 ) ( -563 -435 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -634 -456 163 ) ( -558 -440 163 ) ( -596 -448 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +} +// brush 2930 +{ +( -638 -433 192 ) ( -552 -448 160 ) ( -555 -416 192 ) common/li_pv_v4a 2 5 12 1 1 0 1 7000 +( -552 -448 208 ) ( -552 -448 160 ) ( -638 -433 192 ) common/li_pv_v4a 2 5 12 1 1 0 1 7000 +( -638 -684 192 ) ( -552 -672 192 ) ( -552 -696 192 ) common/li_pv_v4a 2 5 12 1 1 0 1 7000 +( -566 -420 160 ) ( -560 -450 160 ) ( -563 -435 192 ) common/li_pv_v4a 2 5 12 1 1 0 1 7000 +( -642 -442 163 ) ( -556 -424 163 ) ( -599 -433 192 ) common/li_pv_v4a 2 5 12 1 1 0 1 7000 +( -558 -440 163 ) ( -634 -456 163 ) ( -596 -448 192 ) common/li_pv_v4a 2 5 12 1 1 0 1 7000 +} +// brush 2931 +{ +( -638 -433 192 ) ( -552 -448 160 ) ( -555 -416 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -552 -448 208 ) ( -552 -448 160 ) ( -638 -433 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -638 -684 192 ) ( -552 -672 192 ) ( -552 -696 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -622 -470 160 ) ( -630 -430 160 ) ( -626 -450 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -566 -420 160 ) ( -560 -450 160 ) ( -563 -435 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -556 -424 163 ) ( -642 -442 163 ) ( -599 -433 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +} +// brush 2932 +{ +( -638 -433 192 ) ( -628 -464 160 ) ( -552 -448 160 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -638 -433 208 ) ( -638 -433 192 ) ( -552 -448 160 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -638 -684 192 ) ( -552 -672 192 ) ( -552 -696 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -622 -470 160 ) ( -630 -430 160 ) ( -626 -450 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -556 -424 160 ) ( -642 -442 160 ) ( -599 -433 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +} +// brush 2933 +{ +( -638 -433 192 ) ( -552 -448 160 ) ( -555 -416 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -555 -416 192 ) ( -552 -448 160 ) ( -552 -448 208 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -552 -448 208 ) ( -552 -448 160 ) ( -638 -433 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -638 -684 192 ) ( -552 -672 192 ) ( -552 -696 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -560 -450 160 ) ( -566 -420 160 ) ( -563 -435 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +} +// brush 2934 +{ +( -638 -433 192 ) ( -628 -464 160 ) ( -552 -448 160 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -552 -448 160 ) ( -628 -464 160 ) ( -628 -464 208 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -638 -433 208 ) ( -638 -433 192 ) ( -552 -448 160 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -638 -684 192 ) ( -552 -672 192 ) ( -552 -696 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -560 -450 160 ) ( -566 -420 160 ) ( -563 -435 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +} +// brush 2935 +{ +( -638 -433 192 ) ( -628 -464 160 ) ( -552 -448 160 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -552 -448 160 ) ( -628 -464 160 ) ( -628 -464 208 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -628 -464 208 ) ( -628 -464 160 ) ( -638 -433 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -638 -433 208 ) ( -638 -433 192 ) ( -552 -448 160 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -638 -684 192 ) ( -552 -672 192 ) ( -552 -696 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -630 -430 160 ) ( -622 -470 160 ) ( -626 -450 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +} +// brush 2936 +{ +( -638 -433 192 ) ( -552 -448 160 ) ( -555 -416 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -552 -448 208 ) ( -552 -448 160 ) ( -638 -433 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -638 -684 192 ) ( -552 -672 192 ) ( -552 -696 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -630 -430 160 ) ( -622 -470 160 ) ( -626 -450 192 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +} +// brush 2937 +{ +( -872 -805 192 ) ( -840 -808 160 ) ( -855 -722 192 ) bricks/c_tn_m1 4 -4 78 1 1 0 0 0 +( -840 -808 208 ) ( -840 -808 160 ) ( -872 -805 192 ) bricks/c_tn_m1 -11 0 78 1 1 0 0 0 +( -855 -722 192 ) ( -840 -808 160 ) ( -840 -808 208 ) bricks/c_tn_m1 3 5 78 1 1 0 0 0 +( -872 -700 192 ) ( -840 -688 192 ) ( -840 -712 192 ) bricks/c_tn_m1 4 -4 78 1 1 0 0 0 +} +// brush 2938 +{ +( -840 -808 160 ) ( -824 -732 160 ) ( -855 -722 192 ) bricks/c_tn_m1 4 -4 78 1 1 0 0 0 +( -824 -732 208 ) ( -824 -732 160 ) ( -840 -808 160 ) bricks/c_tn_m1 3 5 78 1 1 0 0 0 +( -855 -722 192 ) ( -824 -732 160 ) ( -824 -732 208 ) bricks/c_tn_m1 -11 0 78 1 1 0 0 0 +( -840 -808 160 ) ( -855 -722 192 ) ( -855 -722 208 ) bricks/c_tn_m1 3 5 78 1 1 0 0 0 +( -855 -700 192 ) ( -824 -688 192 ) ( -824 -712 192 ) bricks/c_tn_m1 4 -4 78 1 1 0 0 0 +} +// brush 2939 +{ +( -622 -489 192 ) ( -612 -520 160 ) ( -536 -504 160 ) bricks/c_tn_m1 123 -20 12 1 1 0 0 0 +( -536 -504 160 ) ( -612 -520 160 ) ( -612 -520 208 ) bricks/c_tn_m1 112 2 12 1 1 0 0 0 +( -612 -520 208 ) ( -612 -520 160 ) ( -622 -489 192 ) bricks/c_tn_m1 182 17 12 1 1 0 0 0 +( -622 -489 208 ) ( -622 -489 192 ) ( -536 -504 160 ) bricks/c_tn_m1 112 2 12 1 1 0 0 0 +( -622 -740 192 ) ( -536 -728 192 ) ( -536 -752 192 ) bricks/c_tn_m1 123 -20 12 1 1 0 0 0 +} +// brush 2940 +{ +( -622 -489 192 ) ( -536 -504 160 ) ( -539 -472 192 ) bricks/c_tn_m1 123 -20 12 1 1 0 0 0 +( -539 -472 192 ) ( -536 -504 160 ) ( -536 -504 208 ) bricks/c_tn_m1 182 17 12 1 1 0 0 0 +( -536 -504 208 ) ( -536 -504 160 ) ( -622 -489 192 ) bricks/c_tn_m1 112 2 12 1 1 0 0 0 +( -622 -740 192 ) ( -536 -728 192 ) ( -536 -752 192 ) bricks/c_tn_m1 123 -20 12 1 1 0 0 0 +} +// brush 2941 +{ +( -588 -64 160 ) ( -744 -96 160 ) ( -734 -127 192 ) common/li_pv_v4a 5 -4 192 1 1 0 1 7000 +( -588 -64 208 ) ( -588 -64 160 ) ( -734 -127 192 ) common/li_pv_v4a 5 -4 192 1 1 0 1 7000 +( -1028 -64 192 ) ( -1000 -127 192 ) ( -1056 -127 192 ) common/li_pv_v4a 5 -4 192 1 1 0 1 7000 +( -632 -82 160 ) ( -628 -102 160 ) ( -630 -92 192 ) common/li_pv_v4a 5 -4 192 1 1 0 1 7000 +( -690 -120 160 ) ( -696 -90 160 ) ( -693 -105 192 ) common/li_pv_v4a 5 -4 192 1 1 0 1 7000 +( -710 -98 160 ) ( -622 -80 160 ) ( -666 -89 192 ) common/li_pv_v4a 5 -4 192 1 1 0 1 7000 +} +// brush 2942 +{ +( -588 -64 160 ) ( -744 -96 160 ) ( -734 -127 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -744 -96 208 ) ( -744 -96 160 ) ( -588 -64 160 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -1028 -64 192 ) ( -1000 -127 192 ) ( -1056 -127 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -632 -82 160 ) ( -628 -102 160 ) ( -630 -92 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -690 -120 160 ) ( -696 -90 160 ) ( -693 -105 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -622 -80 160 ) ( -710 -98 160 ) ( -666 -89 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +} +// brush 2943 +{ +( -585 -96 192 ) ( -588 -64 160 ) ( -734 -127 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -1028 -64 192 ) ( -1000 -127 192 ) ( -1056 -127 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -632 -82 160 ) ( -628 -102 160 ) ( -630 -92 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -690 -120 170 ) ( -696 -90 170 ) ( -693 -105 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -702 -112 170 ) ( -624 -96 170 ) ( -663 -104 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +} +// brush 2944 +{ +( -585 -96 192 ) ( -588 -64 160 ) ( -734 -127 192 ) common/li_pv_v4a 5 -4 192 1 1 0 1 7000 +( -734 -127 192 ) ( -588 -64 160 ) ( -588 -64 208 ) common/li_pv_v4a 5 -4 192 1 1 0 1 7000 +( -1028 -64 192 ) ( -1000 -127 192 ) ( -1056 -127 192 ) common/li_pv_v4a 5 -4 192 1 1 0 1 7000 +( -632 -82 160 ) ( -628 -102 160 ) ( -630 -92 192 ) common/li_pv_v4a 5 -4 192 1 1 0 1 7000 +( -690 -120 170 ) ( -696 -90 170 ) ( -693 -105 192 ) common/li_pv_v4a 5 -4 192 1 1 0 1 7000 +( -624 -96 170 ) ( -702 -112 170 ) ( -663 -104 192 ) common/li_pv_v4a 5 -4 192 1 1 0 1 7000 +} +// brush 2945 +{ +( -585 -96 192 ) ( -588 -64 160 ) ( -734 -127 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -734 -127 192 ) ( -588 -64 160 ) ( -588 -64 208 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -1028 -64 192 ) ( -1000 -127 192 ) ( -1056 -127 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -696 -90 170 ) ( -690 -120 170 ) ( -693 -105 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +} +// brush 2946 +{ +( -588 -64 160 ) ( -744 -96 160 ) ( -734 -127 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -734 -127 192 ) ( -744 -96 160 ) ( -744 -96 208 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -744 -96 208 ) ( -744 -96 160 ) ( -588 -64 160 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -588 -64 208 ) ( -588 -64 160 ) ( -734 -127 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -1028 -64 192 ) ( -1000 -127 192 ) ( -1056 -127 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -696 -90 160 ) ( -690 -120 160 ) ( -693 -105 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +} +// brush 2947 +{ +( -588 -64 160 ) ( -744 -96 160 ) ( -734 -127 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -744 -96 208 ) ( -744 -96 160 ) ( -588 -64 160 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -588 -64 208 ) ( -588 -64 160 ) ( -734 -127 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -1028 -64 192 ) ( -1000 -127 192 ) ( -1056 -127 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -628 -102 160 ) ( -632 -82 160 ) ( -630 -92 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +} +// brush 2948 +{ +( -585 -96 192 ) ( -588 -64 160 ) ( -734 -127 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -588 -64 208 ) ( -588 -64 160 ) ( -585 -96 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -734 -127 192 ) ( -588 -64 160 ) ( -588 -64 208 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -1028 -64 192 ) ( -1000 -127 192 ) ( -1056 -127 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +( -628 -102 160 ) ( -632 -82 160 ) ( -630 -92 192 ) bricks/c_tn_m1 0 4 192 1 1 0 0 0 +} +// brush 2949 +{ +( -1086 -365 192 ) ( -1000 -232 160 ) ( -1112 -344 160 ) common/li_pv_v4a 22 6 45 1 1 0 1 7000 +( -1106 -351 160 ) ( -994 -239 160 ) ( -994 -239 208 ) common/li_pv_v4a 22 6 45 1 1 0 1 7000 +( -1028 -232 192 ) ( -1000 -365 192 ) ( -1056 -365 192 ) common/li_pv_v4a 22 6 45 1 1 0 1 7000 +( -1062 -329 104 ) ( -1017 -284 104 ) ( -1062 -329 64 ) common/li_pv_v4a 22 6 45 1 1 0 1 7000 +( -1061 -328 160 ) ( -1077 -312 160 ) ( -1069 -320 192 ) common/li_pv_v4a 22 6 45 1 1 0 1 7000 +( -1027 -272 160 ) ( -1013 -286 160 ) ( -1020 -279 192 ) common/li_pv_v4a 22 6 45 1 1 0 1 7000 +} +// brush 2950 +{ +( -979 -258 192 ) ( -1000 -232 160 ) ( -1086 -365 192 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +( -1028 -232 192 ) ( -1000 -365 192 ) ( -1056 -365 192 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +( -1016 -283 104 ) ( -1061 -328 104 ) ( -1016 -283 64 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +( -1061 -328 184 ) ( -1077 -312 184 ) ( -1069 -320 192 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +( -1027 -272 184 ) ( -1013 -286 184 ) ( -1020 -279 192 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +} +// brush 2951 +{ +( -1086 -365 192 ) ( -1000 -232 160 ) ( -1112 -344 160 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +( -1112 -344 160 ) ( -1000 -232 160 ) ( -1000 -232 208 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +( -1028 -232 192 ) ( -1000 -365 192 ) ( -1056 -365 192 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +( -1072 -317 104 ) ( -1027 -272 104 ) ( -1072 -317 64 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +( -1061 -328 160 ) ( -1077 -312 160 ) ( -1069 -320 192 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +( -1027 -272 160 ) ( -1013 -286 160 ) ( -1020 -279 192 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +} +// brush 2952 +{ +( -979 -258 192 ) ( -1000 -232 160 ) ( -1086 -365 192 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +( -1000 -232 208 ) ( -1000 -232 160 ) ( -979 -258 192 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +( -1033 -265 192 ) ( -1033 -265 170 ) ( -1030 -262 169 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +( -1028 -232 192 ) ( -1000 -365 192 ) ( -1056 -365 192 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +( -1033 -265 104 ) ( -1078 -310 104 ) ( -1078 -310 64 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +( -1055 -335 104 ) ( -1010 -290 104 ) ( -1010 -290 64 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +( -1027 -272 170 ) ( -1027 -272 192 ) ( -1016 -283 192 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +} +// brush 2953 +{ +( -1086 -365 192 ) ( -1000 -232 160 ) ( -1112 -344 160 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +( -1086 -365 192 ) ( -1112 -344 160 ) ( -1112 -344 208 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +( -1055 -334 192 ) ( -1055 -334 183 ) ( -1086 -365 192 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +( -1028 -232 192 ) ( -1000 -365 192 ) ( -1056 -365 192 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +( -1034 -266 104 ) ( -1079 -311 104 ) ( -1079 -311 64 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +( -1055 -334 183 ) ( -1055 -334 192 ) ( -1072 -317 192 ) bricks/c_tn_m1 119 2 225 1 1 0 0 0 +} +// brush 2954 +{ +( -1217 -610 192 ) ( -1248 -600 160 ) ( -1280 -756 160 ) common/li_pv_v4a 0 0 258 1 1 0 1 7000 +( -1217 -610 192 ) ( -1280 -756 160 ) ( -1280 -756 208 ) common/li_pv_v4a 0 0 258 1 1 0 1 7000 +( -1028 -600 192 ) ( -1000 -756 192 ) ( -1056 -756 192 ) common/li_pv_v4a 0 0 258 1 1 0 1 7000 +( -1254 -650 160 ) ( -1234 -654 160 ) ( -1244 -652 192 ) common/li_pv_v4a 0 0 258 1 1 0 1 7000 +( -1244 -718 160 ) ( -1272 -712 160 ) ( -1258 -715 192 ) common/li_pv_v4a 0 0 258 1 1 0 1 7000 +( -1264 -718 160 ) ( -1250 -650 160 ) ( -1257 -684 192 ) common/li_pv_v4a 0 0 258 1 1 0 1 7000 +} +// brush 2955 +{ +( -1217 -610 192 ) ( -1248 -600 160 ) ( -1280 -756 160 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1280 -756 160 ) ( -1248 -600 160 ) ( -1248 -600 208 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1028 -600 192 ) ( -1000 -756 192 ) ( -1056 -756 192 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1254 -650 160 ) ( -1234 -654 160 ) ( -1244 -652 192 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1244 -718 160 ) ( -1272 -712 160 ) ( -1258 -715 192 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1250 -650 160 ) ( -1264 -718 160 ) ( -1257 -684 192 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +} +// brush 2956 +{ +( -1217 -610 192 ) ( -1280 -756 160 ) ( -1248 -759 192 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1028 -610 192 ) ( -1000 -759 192 ) ( -1056 -759 192 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1254 -650 160 ) ( -1234 -654 160 ) ( -1244 -652 192 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1244 -718 160 ) ( -1272 -712 160 ) ( -1258 -715 192 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1250 -726 169 ) ( -1234 -650 169 ) ( -1242 -688 192 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +} +// brush 2957 +{ +( -1217 -610 192 ) ( -1280 -756 160 ) ( -1248 -759 192 ) common/li_pv_v4a 0 0 258 1 1 0 1 7000 +( -1280 -756 208 ) ( -1280 -756 160 ) ( -1217 -610 192 ) common/li_pv_v4a 0 0 258 1 1 0 1 7000 +( -1028 -610 192 ) ( -1000 -759 192 ) ( -1056 -759 192 ) common/li_pv_v4a 0 0 258 1 1 0 1 7000 +( -1254 -650 160 ) ( -1234 -654 160 ) ( -1244 -652 192 ) common/li_pv_v4a 0 0 258 1 1 0 1 7000 +( -1244 -718 160 ) ( -1272 -712 160 ) ( -1258 -715 192 ) common/li_pv_v4a 0 0 258 1 1 0 1 7000 +( -1234 -650 169 ) ( -1250 -726 169 ) ( -1242 -688 192 ) common/li_pv_v4a 0 0 258 1 1 0 1 7000 +} +// brush 2958 +{ +( -1217 -610 192 ) ( -1280 -756 160 ) ( -1248 -759 192 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1248 -759 192 ) ( -1280 -756 160 ) ( -1280 -756 208 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1280 -756 208 ) ( -1280 -756 160 ) ( -1217 -610 192 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1028 -610 192 ) ( -1000 -759 192 ) ( -1056 -759 192 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1272 -712 160 ) ( -1244 -718 160 ) ( -1258 -715 192 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +} +// brush 2959 +{ +( -1217 -610 192 ) ( -1248 -600 160 ) ( -1280 -756 160 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1280 -756 160 ) ( -1248 -600 160 ) ( -1248 -600 208 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1217 -610 192 ) ( -1280 -756 160 ) ( -1280 -756 208 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1028 -600 192 ) ( -1000 -756 192 ) ( -1056 -756 192 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1272 -712 160 ) ( -1244 -718 160 ) ( -1258 -715 192 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +} +// brush 2960 +{ +( -1217 -610 192 ) ( -1248 -600 160 ) ( -1280 -756 160 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1248 -600 208 ) ( -1248 -600 160 ) ( -1217 -610 192 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1280 -756 160 ) ( -1248 -600 160 ) ( -1248 -600 208 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1217 -610 192 ) ( -1280 -756 160 ) ( -1280 -756 208 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1028 -600 192 ) ( -1000 -756 192 ) ( -1056 -756 192 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1234 -654 160 ) ( -1254 -650 160 ) ( -1244 -652 192 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +} +// brush 2961 +{ +( -1217 -610 192 ) ( -1280 -756 160 ) ( -1248 -759 192 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1280 -756 208 ) ( -1280 -756 160 ) ( -1217 -610 192 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1028 -610 192 ) ( -1000 -759 192 ) ( -1056 -759 192 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -1234 -654 160 ) ( -1254 -650 160 ) ( -1244 -652 192 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +} +// brush 2962 +{ +( -604 -8 160 ) ( -760 -40 160 ) ( -750 -71 192 ) bricks/c_tn_m1 -134 -31 192 1 1 0 0 0 +( -750 -71 192 ) ( -760 -40 160 ) ( -760 -40 208 ) bricks/c_tn_m1 -81 -12 192 1 1 0 0 0 +( -760 -40 208 ) ( -760 -40 160 ) ( -604 -8 160 ) bricks/c_tn_m1 -154 -25 192 1 1 0 0 0 +( -604 -8 208 ) ( -604 -8 160 ) ( -750 -71 192 ) bricks/c_tn_m1 -154 -25 192 1 1 0 0 0 +( -1044 -8 192 ) ( -1016 -71 192 ) ( -1072 -71 192 ) bricks/c_tn_m1 -134 -31 192 1 1 0 0 0 +} +// brush 2963 +{ +( -601 -40 192 ) ( -604 -8 160 ) ( -750 -71 192 ) bricks/c_tn_m1 -134 -31 192 1 1 0 0 0 +( -604 -8 208 ) ( -604 -8 160 ) ( -601 -40 192 ) bricks/c_tn_m1 -81 -12 192 1 1 0 0 0 +( -750 -71 192 ) ( -604 -8 160 ) ( -604 -8 208 ) bricks/c_tn_m1 -154 -25 192 1 1 0 0 0 +( -1044 -8 192 ) ( -1016 -71 192 ) ( -1072 -71 192 ) bricks/c_tn_m1 -134 -31 192 1 1 0 0 0 +} +// brush 2964 +{ +( -1126 -325 192 ) ( -1040 -192 160 ) ( -1152 -304 160 ) bricks/c_tn_m1 -61 -17 225 1 1 0 0 0 +( -1126 -325 192 ) ( -1152 -304 160 ) ( -1152 -304 208 ) bricks/c_tn_m1 -70 -8 225 1 1 0 0 0 +( -1152 -304 160 ) ( -1040 -192 160 ) ( -1040 -192 208 ) bricks/c_tn_m1 83 18 225 1 1 0 0 0 +( -1040 -192 208 ) ( -1040 -192 160 ) ( -1126 -325 192 ) bricks/c_tn_m1 83 18 225 1 1 0 0 0 +( -1068 -192 192 ) ( -1040 -325 192 ) ( -1096 -325 192 ) bricks/c_tn_m1 -61 -17 225 1 1 0 0 0 +} +// brush 2965 +{ +( -1019 -218 192 ) ( -1040 -192 160 ) ( -1126 -325 192 ) bricks/c_tn_m1 -61 -17 225 1 1 0 0 0 +( -1040 -192 208 ) ( -1040 -192 160 ) ( -1019 -218 192 ) bricks/c_tn_m1 83 18 225 1 1 0 0 0 +( -1126 -325 192 ) ( -1040 -192 160 ) ( -1040 -192 208 ) bricks/c_tn_m1 83 18 225 1 1 0 0 0 +( -1068 -192 192 ) ( -1040 -325 192 ) ( -1096 -325 192 ) bricks/c_tn_m1 -61 -17 225 1 1 0 0 0 +} +// brush 2966 +{ +( -1252 -445 192 ) ( -1315 -591 160 ) ( -1283 -594 192 ) bricks/c_tn_m1 -1 -25 258 1 1 0 0 0 +( -1283 -594 192 ) ( -1315 -591 160 ) ( -1315 -591 208 ) bricks/c_tn_m1 -179 -14 258 1 1 0 0 0 +( -1315 -591 208 ) ( -1315 -591 160 ) ( -1252 -445 192 ) bricks/c_tn_m1 147 25 258 1 1 0 0 0 +( -1063 -445 192 ) ( -1035 -594 192 ) ( -1091 -594 192 ) bricks/c_tn_m1 -1 -25 258 1 1 0 0 0 +} +// brush 2967 +{ +( -1252 -445 192 ) ( -1283 -435 160 ) ( -1315 -591 160 ) bricks/c_tn_m1 -1 -25 258 1 1 0 0 0 +( -1283 -435 208 ) ( -1283 -435 160 ) ( -1252 -445 192 ) bricks/c_tn_m1 -179 -14 258 1 1 0 0 0 +( -1315 -591 160 ) ( -1283 -435 160 ) ( -1283 -435 208 ) bricks/c_tn_m1 147 25 258 1 1 0 0 0 +( -1252 -445 192 ) ( -1315 -591 160 ) ( -1315 -591 208 ) bricks/c_tn_m1 147 25 258 1 1 0 0 0 +( -1063 -435 192 ) ( -1035 -591 192 ) ( -1091 -591 192 ) bricks/c_tn_m1 -1 -25 258 1 1 0 0 0 +} +// brush 2968 +{ +( -864 2039 448 ) ( -864 2185 448 ) ( -832 2188 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 2384 448 ) ( -832 2736 448 ) ( -832 2736 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 2188 416 ) ( -864 2185 448 ) ( -864 2039 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -840 2432 416 ) ( -832 2432 416 ) ( -836 2432 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -848 2176 416 ) ( -864 2176 416 ) ( -856 2176 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2969 +{ +( -864 2359 448 ) ( -864 2505 448 ) ( -832 2508 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 2704 448 ) ( -832 3056 448 ) ( -832 3056 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 2508 416 ) ( -864 2505 448 ) ( -864 2359 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -840 2432 416 ) ( -864 2432 416 ) ( -852 2432 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -864 2496 416 ) ( -848 2496 416 ) ( -856 2496 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -840 2480 416 ) ( -840 2496 416 ) ( -840 2488 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2970 +{ +( -864 2359 448 ) ( -864 2505 448 ) ( -832 2508 448 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -832 2508 416 ) ( -864 2505 448 ) ( -864 2359 448 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -840 2432 416 ) ( -864 2432 416 ) ( -852 2432 448 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -864 2496 416 ) ( -848 2496 416 ) ( -856 2496 448 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -856 2480 416 ) ( -856 2496 416 ) ( -856 2488 448 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -840 2496 416 ) ( -840 2480 416 ) ( -840 2488 448 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 2971 +{ +( -864 2359 448 ) ( -864 2505 448 ) ( -832 2508 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 2508 416 ) ( -864 2505 448 ) ( -864 2359 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -840 2432 416 ) ( -864 2432 416 ) ( -852 2432 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -864 2496 416 ) ( -848 2496 416 ) ( -856 2496 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -856 2496 416 ) ( -856 2480 416 ) ( -856 2488 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2972 +{ +( -1216 2152 448 ) ( -1184 2155 448 ) ( -1184 2069 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 2072 448 ) ( -1216 2072 416 ) ( -1216 2112 416 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 2069 448 ) ( -1184 2155 448 ) ( -1216 2152 416 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 2432 416 ) ( -1184 2432 416 ) ( -1200 2432 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 2176 416 ) ( -1216 2176 416 ) ( -1200 2176 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 2973 +{ +( -1216 2472 448 ) ( -1184 2475 448 ) ( -1184 2389 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 2389 448 ) ( -1184 2475 448 ) ( -1216 2472 416 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1192 2432 416 ) ( -1216 2432 416 ) ( -1204 2432 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 2496 416 ) ( -1184 2496 416 ) ( -1200 2496 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1192 2480 424 ) ( -1192 2496 424 ) ( -1192 2488 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 2974 +{ +( -1216 2472 448 ) ( -1184 2475 448 ) ( -1184 2389 448 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1184 2389 448 ) ( -1184 2475 448 ) ( -1216 2472 416 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1192 2432 416 ) ( -1216 2432 416 ) ( -1204 2432 448 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1216 2496 416 ) ( -1184 2496 416 ) ( -1200 2496 448 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1208 2480 416 ) ( -1208 2496 416 ) ( -1208 2488 448 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1192 2496 424 ) ( -1192 2480 424 ) ( -1192 2488 448 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 2975 +{ +( -1216 2472 448 ) ( -1184 2475 448 ) ( -1184 2389 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 2392 448 ) ( -1216 2392 416 ) ( -1216 2432 416 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 2389 448 ) ( -1184 2475 448 ) ( -1216 2472 416 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1192 2432 416 ) ( -1216 2432 416 ) ( -1204 2432 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 2496 416 ) ( -1184 2496 416 ) ( -1200 2496 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1208 2496 416 ) ( -1208 2480 416 ) ( -1208 2488 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 2976 +{ +( -1216 2152 448 ) ( -1184 2155 448 ) ( -1184 2069 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 2072 448 ) ( -1216 2072 416 ) ( -1216 2112 416 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 2069 448 ) ( -1184 2155 448 ) ( -1216 2152 416 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1192 2112 416 ) ( -1216 2112 416 ) ( -1204 2112 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 2176 416 ) ( -1184 2176 416 ) ( -1200 2176 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1208 2176 416 ) ( -1208 2160 416 ) ( -1208 2168 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 2977 +{ +( -1216 2152 448 ) ( -1184 2155 448 ) ( -1184 2069 448 ) common/li_pv_v4a 0 6 90 1 1 0 1 7000 +( -1184 2069 448 ) ( -1184 2155 448 ) ( -1216 2152 416 ) common/li_pv_v4a 0 6 90 1 1 0 1 7000 +( -1192 2112 416 ) ( -1216 2112 416 ) ( -1204 2112 448 ) common/li_pv_v4a 0 -7 90 1 1 0 1 7000 +( -1216 2176 416 ) ( -1184 2176 416 ) ( -1200 2176 448 ) common/li_pv_v4a 0 -7 90 1 1 0 1 7000 +( -1208 2160 416 ) ( -1208 2176 416 ) ( -1208 2168 448 ) common/li_pv_v4a 0 -7 90 1 1 0 1 7000 +( -1192 2176 424 ) ( -1192 2160 424 ) ( -1192 2168 448 ) common/li_pv_v4a 0 -7 90 1 1 0 1 7000 +} +// brush 2978 +{ +( -1216 2152 448 ) ( -1184 2155 448 ) ( -1184 2069 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 2069 448 ) ( -1184 2155 448 ) ( -1216 2152 416 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1192 2112 416 ) ( -1216 2112 416 ) ( -1204 2112 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 2176 416 ) ( -1184 2176 416 ) ( -1200 2176 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1192 2160 424 ) ( -1192 2176 424 ) ( -1192 2168 448 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 2979 +{ +( -864 2039 448 ) ( -864 2185 448 ) ( -832 2188 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 2188 416 ) ( -864 2185 448 ) ( -864 2039 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -840 2112 416 ) ( -864 2112 416 ) ( -852 2112 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -864 2176 416 ) ( -848 2176 416 ) ( -856 2176 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -856 2176 416 ) ( -856 2160 416 ) ( -856 2168 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2980 +{ +( -864 2039 448 ) ( -864 2185 448 ) ( -832 2188 448 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -832 2188 416 ) ( -864 2185 448 ) ( -864 2039 448 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -840 2112 416 ) ( -864 2112 416 ) ( -852 2112 448 ) common/li_pv_v4a 0 -5 90 1 1 0 1 7000 +( -864 2176 416 ) ( -848 2176 416 ) ( -856 2176 448 ) common/li_pv_v4a 0 -5 90 1 1 0 1 7000 +( -856 2160 416 ) ( -856 2176 416 ) ( -856 2168 448 ) common/li_pv_v4a 0 -5 90 1 1 0 1 7000 +( -840 2176 416 ) ( -840 2160 416 ) ( -840 2168 448 ) common/li_pv_v4a 0 -5 90 1 1 0 1 7000 +} +// brush 2981 +{ +( -864 2039 448 ) ( -864 2185 448 ) ( -832 2188 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 2384 448 ) ( -832 2736 448 ) ( -832 2736 432 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 2188 416 ) ( -864 2185 448 ) ( -864 2039 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -840 2112 416 ) ( -864 2112 416 ) ( -852 2112 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -864 2176 416 ) ( -848 2176 416 ) ( -856 2176 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -840 2160 416 ) ( -840 2176 416 ) ( -840 2168 448 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 2982 +{ +( -960 -888 192 ) ( -960 -824 192 ) ( -1264 -824 192 ) bricks/c_sr_mb1a -16 128 0 1 1 0 0 0 +( -1264 -896 256 ) ( -1264 -832 256 ) ( -960 -832 256 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1264 -896 240 ) ( -960 -896 240 ) ( -960 -896 112 ) bricks/c_sr_mb1 112 0 0 1 1 0 0 0 +( -928 -832 208 ) ( -928 -896 208 ) ( -928 -896 256 ) bricks/c_sr_mb1 -16 0 0 1 1 0 0 0 +( -960 -832 256 ) ( -1264 -832 256 ) ( -1264 -832 128 ) bricks/c_sr_mb1 112 0 0 1 1 0 0 0 +( -1264 -896 208 ) ( -1264 -832 208 ) ( -1264 -832 256 ) bricks/c_sr_mb1 -16 0 0 1 1 0 0 0 +} +// brush 2983 +{ +( -1248 -832 192 ) ( -1264 -832 176 ) ( -1264 -896 192 ) bricks/c_tn_m1 0 14 256 1 1 0 0 0 +( -1264 -896 192 ) ( -1264 -832 176 ) ( -1264 -832 208 ) bricks/c_tn_m1 0 14 256 1 1 0 0 0 +( -1264 -832 208 ) ( -1264 -832 176 ) ( -1248 -832 192 ) bricks/c_tn_m1 0 14 256 1 1 0 0 0 +( -1264 -844 192 ) ( -1248 -832 192 ) ( -1248 -856 192 ) bricks/c_tn_m1 0 14 256 1 1 0 0 0 +} +// brush 2984 +{ +( -928 -816 208 ) ( -1280 -816 208 ) ( -1280 -832 208 ) bricks/c_tn_m1 0 12 104 1 1 0 0 0 +( -1280 -832 320 ) ( -1280 -816 320 ) ( -928 -816 320 ) bricks/c_tn_m1 0 12 104 1 1 0 0 0 +( -1280 -832 320 ) ( -928 -832 320 ) ( -928 -832 192 ) bricks/c_sr_mb1b 192 64 0 1 -1 0 0 0 +( -896 -832 320 ) ( -896 -816 320 ) ( -896 -816 192 ) bricks/c_tn_m1 0 12 104 1 1 0 0 0 +( -928 -816 320 ) ( -1280 -816 320 ) ( -1280 -816 192 ) bricks/c_tn_m1 0 12 104 1 1 0 0 0 +( -1280 -816 320 ) ( -1280 -832 320 ) ( -1280 -832 192 ) bricks/c_tn_m1 0 12 104 1 1 0 0 0 +} +// brush 2985 +{ +( -1328 -896 320 ) ( -1328 -832 304 ) ( -1344 -832 320 ) bricks/c_tn_m1 0 2 104 1 1 0 0 0 +( -1328 -832 336 ) ( -1328 -832 304 ) ( -1328 -896 320 ) bricks/c_tn_m1 0 2 104 1 1 0 0 0 +( -1344 -832 320 ) ( -1328 -832 304 ) ( -1328 -832 336 ) bricks/c_tn_m1 0 2 104 1 1 0 0 0 +( -1344 -856 320 ) ( -1344 -832 320 ) ( -1328 -844 320 ) bricks/c_tn_m1 0 2 104 1 1 0 0 0 +} +// brush 2986 +{ +( -1312 -832 128 ) ( -1328 -832 128 ) ( -1328 -896 128 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1328 -896 192 ) ( -1328 -832 192 ) ( -1312 -832 192 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1328 -896 256 ) ( -1312 -896 256 ) ( -1312 -896 104 ) bricks/c_sr_mb1b 176 0 0 1 1 0 0 0 +( -1312 -896 256 ) ( -1312 -832 256 ) ( -1312 -832 104 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +( -1312 -832 256 ) ( -1328 -832 256 ) ( -1328 -832 104 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1328 -832 256 ) ( -1328 -896 256 ) ( -1328 -896 104 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +} +// brush 2987 +{ +( -1312 -832 192 ) ( -1328 -832 192 ) ( -1328 -896 192 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1328 -896 320 ) ( -1328 -832 320 ) ( -1312 -832 320 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1328 -896 320 ) ( -1312 -896 320 ) ( -1312 -896 168 ) bricks/c_sr_mb2 -17 0 0 1 1 0 0 0 +( -1312 -896 320 ) ( -1312 -832 320 ) ( -1312 -832 168 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1312 -832 320 ) ( -1328 -832 320 ) ( -1328 -832 168 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1328 -832 320 ) ( -1328 -896 320 ) ( -1328 -896 168 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +} +// brush 2988 +{ +( -1312 -904 320 ) ( -1312 -904 168 ) ( -1312 -832 168 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1280 -904 168 ) ( -1280 -904 320 ) ( -1280 -832 320 ) bricks/c_tn_m3 192 -128 0 1 1 0 0 0 +( -1312 -912 168 ) ( -1280 -912 168 ) ( -1280 -880 168 ) temp/c_tn_m2 -64 -64 0 1 1 0 0 0 +( -1280 -880 320 ) ( -1280 -912 320 ) ( -1312 -912 320 ) temp/c_tn_m2 -64 -64 0 1 1 0 0 0 +( -1312 -832 168 ) ( -1296 -832 168 ) ( -1304 -832 320 ) temp/c_tn_m2 -64 0 0 1 1 0 0 0 +( -1280 -896 168 ) ( -1304 -896 168 ) ( -1292 -896 320 ) bricks/c_sr_mb2 -17 0 0 1 1 0 0 0 +} +// brush 2989 +{ +( -1264 -832 128 ) ( -1280 -832 128 ) ( -1280 -896 128 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1280 -896 320 ) ( -1280 -832 320 ) ( -1264 -832 320 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1280 -896 296 ) ( -1264 -896 296 ) ( -1264 -896 96 ) bricks/c_sr_mb2 -17 0 0 1 1 0 0 0 +( -1264 -896 296 ) ( -1264 -832 296 ) ( -1264 -832 96 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1264 -832 296 ) ( -1280 -832 296 ) ( -1280 -832 96 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1280 -832 296 ) ( -1280 -896 296 ) ( -1280 -896 96 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +} +// brush 2990 +{ +( -1264 -832 0 ) ( -1280 -832 0 ) ( -1280 -896 0 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1280 -896 128 ) ( -1280 -832 128 ) ( -1264 -832 128 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1280 -896 168 ) ( -1264 -896 168 ) ( -1264 -896 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1264 -896 168 ) ( -1264 -832 168 ) ( -1264 -832 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1264 -832 168 ) ( -1280 -832 168 ) ( -1280 -832 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1280 -832 168 ) ( -1280 -896 168 ) ( -1280 -896 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +} +// brush 2991 +{ +( -1096 -768 192 ) ( -1096 -448 192 ) ( 448 -448 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1096 -464 -16 ) ( 448 -464 -16 ) ( 448 -464 -24 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -552 -448 192 ) ( -552 -448 -16 ) ( -439 -448 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -420 -450 -32 ) ( -420 -458 -32 ) ( -420 -454 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 176 -464 -16 ) ( 192 -464 -16 ) ( 184 -448 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -552 -448 -16 ) ( -552 -448 192 ) ( -550 -464 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2992 +{ +( -1096 -368 192 ) ( -1096 -48 192 ) ( 448 -48 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1136 -64 -16 ) ( 408 -64 -16 ) ( 408 -64 -24 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1116 -386 -16 ) ( 1116 -66 -16 ) ( 1116 -66 -24 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -590 -48 192 ) ( -590 -48 -16 ) ( 1138 -48 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 176 -64 -16 ) ( 192 -64 -16 ) ( 184 -48 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -590 -48 -16 ) ( -590 -48 192 ) ( -588 -64 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2993 +{ +( -912 -720 0 ) ( -912 -576 0 ) ( -896 -576 0 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -912 -2922 -16 ) ( -912 -2922 0 ) ( -896 -2920 0 ) bricks/c_sr_mr5 -13 -3 90 1 1 0 0 0 +( -896 -720 0 ) ( -896 -576 0 ) ( -896 -576 -32 ) bricks/c_sr_mr5 -13 29 90 1 1 0 0 0 +( -912 -2922 0 ) ( -912 -2922 -16 ) ( -912 -790 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -912 -2880 -16 ) ( -896 -2880 -16 ) ( -904 -576 -16 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -912 -790 0 ) ( -912 -790 -16 ) ( -896 -792 -16 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 2994 +{ +( -896 -1064 320 ) ( -896 -832 320 ) ( -880 -832 320 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -904 -1344 320 ) ( -888 -1344 320 ) ( -888 -1344 96 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -880 -1064 320 ) ( -880 -832 320 ) ( -880 -832 96 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -792 -16 ) ( -896 -792 320 ) ( -896 -1344 320 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -912 -1344 -16 ) ( -896 -1344 -16 ) ( -904 -576 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -792 320 ) ( -896 -792 -16 ) ( -880 -794 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2995 +{ +( -896 -736 192 ) ( -1264 -736 192 ) ( -1264 -608 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -880 -794 48 ) ( -864 -720 48 ) ( -864 -720 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -880 -716 176 ) ( -864 -720 176 ) ( -864 -720 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -792 48 ) ( -880 -794 48 ) ( -880 -794 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -888 -754 -32 ) ( -880 -716 -16 ) ( -896 -792 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 928 -716 -16 ) ( 912 -794 -16 ) ( 944 -794 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2996 +{ +( -864 -580 192 ) ( -1232 -580 192 ) ( -1232 -452 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -864 -720 -16 ) ( -838 -660 -16 ) ( -838 -660 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -852 -652 176 ) ( -838 -660 176 ) ( -838 -660 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -880 -716 192 ) ( -864 -720 192 ) ( -864 -720 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -866 -684 112 ) ( -852 -652 128 ) ( -880 -716 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 928 -652 -16 ) ( 912 -720 -16 ) ( 944 -720 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2997 +{ +( -808 -448 192 ) ( -1176 -448 192 ) ( -1176 -320 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -838 -660 48 ) ( -794 -594 48 ) ( -794 -594 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -808 -584 176 ) ( -794 -594 176 ) ( -794 -594 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -852 -652 192 ) ( -838 -660 192 ) ( -838 -660 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -830 -618 112 ) ( -808 -584 128 ) ( -852 -652 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 928 -584 -16 ) ( 912 -660 -16 ) ( 944 -660 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2998 +{ +( -1148 -248 192 ) ( -1020 -248 192 ) ( -1020 -616 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -750 -550 -32 ) ( -794 -594 -32 ) ( -794 -594 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -808 -584 192 ) ( -794 -594 192 ) ( -794 -594 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -760 -536 176 ) ( -750 -550 176 ) ( -750 -550 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -784 -560 128 ) ( -808 -584 112 ) ( -760 -536 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 928 -536 -16 ) ( 912 -594 -16 ) ( 944 -594 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 2999 +{ +( -1024 -168 192 ) ( -896 -168 192 ) ( -896 -536 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -684 -506 32 ) ( -750 -550 32 ) ( -750 -550 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -760 -536 192 ) ( -750 -550 192 ) ( -750 -550 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -692 -492 176 ) ( -684 -506 176 ) ( -684 -506 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -726 -514 128 ) ( -760 -536 112 ) ( -692 -492 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 928 -492 -16 ) ( 912 -550 -16 ) ( 944 -550 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 3000 +{ +( -892 -112 192 ) ( -764 -112 192 ) ( -764 -480 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -624 -480 -32 ) ( -684 -506 -32 ) ( -684 -506 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -692 -492 192 ) ( -684 -506 192 ) ( -684 -506 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -628 -464 176 ) ( -624 -480 176 ) ( -624 -480 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -660 -478 128 ) ( -692 -492 112 ) ( -628 -464 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 928 -464 -16 ) ( 912 -506 -16 ) ( 944 -506 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 3001 +{ +( -736 -80 192 ) ( -608 -80 192 ) ( -608 -448 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -550 -464 32 ) ( -624 -480 32 ) ( -624 -480 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -628 -464 192 ) ( -624 -480 192 ) ( -624 -480 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -552 -448 176 ) ( -550 -464 176 ) ( -550 -464 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -590 -456 128 ) ( -628 -464 112 ) ( -552 -448 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 928 -448 -16 ) ( 912 -480 -16 ) ( 944 -480 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 3002 +{ +( -736 -80 192 ) ( -608 -80 192 ) ( -608 -448 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -744 -96 176 ) ( -750 -80 176 ) ( -750 -80 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -590 -48 -16 ) ( -750 -80 -16 ) ( -750 -80 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -588 -64 192 ) ( -590 -48 192 ) ( -590 -48 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -666 -80 192 ) ( -588 -64 176 ) ( -744 -96 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1224 -48 -16 ) ( -1240 -96 -16 ) ( -1208 -96 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 3003 +{ +( -892 -112 192 ) ( -764 -112 192 ) ( -764 -480 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -876 -152 176 ) ( -884 -138 176 ) ( -884 -138 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -750 -80 -16 ) ( -884 -138 -16 ) ( -884 -138 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -744 -96 192 ) ( -750 -80 192 ) ( -750 -80 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -810 -124 192 ) ( -744 -96 176 ) ( -876 -152 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1224 -80 -16 ) ( -1240 -152 -16 ) ( -1208 -152 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 3004 +{ +( -1024 -168 192 ) ( -896 -168 192 ) ( -896 -536 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1000 -232 32 ) ( -1010 -220 32 ) ( -1010 -220 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -884 -138 -16 ) ( -1010 -220 -16 ) ( -1010 -220 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -876 -152 192 ) ( -884 -138 192 ) ( -884 -138 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -938 -192 192 ) ( -876 -152 176 ) ( -1000 -232 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1224 -138 -16 ) ( -1240 -232 -16 ) ( -1208 -232 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 3005 +{ +( -1112 -220 192 ) ( -1010 -220 192 ) ( -1010 -344 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1112 -344 192 ) ( -1000 -232 192 ) ( -1000 -232 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1112 -344 32 ) ( -1124 -334 32 ) ( -1124 -334 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1010 -220 128 ) ( -1124 -334 128 ) ( -1124 -334 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1010 -220 32 ) ( -1000 -232 32 ) ( -1000 -232 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1224 -220 -16 ) ( -1240 -344 -16 ) ( -1208 -344 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 3006 +{ +( -808 -448 192 ) ( -1176 -448 192 ) ( -1176 -320 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1112 -344 192 ) ( -1124 -334 192 ) ( -1124 -334 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1206 -460 112 ) ( -1124 -334 112 ) ( -1124 -334 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1192 -468 32 ) ( -1206 -460 32 ) ( -1206 -460 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1152 -406 32 ) ( -1192 -468 48 ) ( -1112 -344 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1224 -334 -16 ) ( -1240 -468 -16 ) ( -1208 -468 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 3007 +{ +( -864 -580 192 ) ( -1232 -580 192 ) ( -1232 -452 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1192 -468 48 ) ( -1206 -460 48 ) ( -1206 -460 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1264 -594 112 ) ( -1206 -460 112 ) ( -1206 -460 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1248 -600 32 ) ( -1264 -594 32 ) ( -1264 -594 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1220 -534 32 ) ( -1248 -600 48 ) ( -1192 -468 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1224 -460 -16 ) ( -1240 -600 -16 ) ( -1208 -600 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 3008 +{ +( -896 -736 192 ) ( -1264 -736 192 ) ( -1264 -608 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1248 -600 48 ) ( -1264 -594 48 ) ( -1264 -594 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1296 -754 112 ) ( -1264 -594 112 ) ( -1264 -594 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1280 -756 32 ) ( -1296 -754 32 ) ( -1296 -754 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1264 -678 -32 ) ( -1280 -756 -16 ) ( -1248 -600 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1224 -594 -16 ) ( -1240 -756 -16 ) ( -1208 -756 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 3009 +{ +( -912 -832 192 ) ( -1280 -832 192 ) ( -1280 -704 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1280 -756 48 ) ( -1296 -754 48 ) ( -1296 -754 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1296 -832 112 ) ( -1296 -754 112 ) ( -1296 -754 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -912 -832 256 ) ( -912 -832 96 ) ( -1280 -832 96 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1280 -822 112 ) ( -1280 -832 128 ) ( -1280 -812 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1224 -754 -16 ) ( -1240 -832 -16 ) ( -1208 -832 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 3010 +{ +( -876 -152 160 ) ( -1000 -232 160 ) ( -979 -258 192 ) bricks/c_tn_m1 0 3 213 1 1 0 0 0 +( -979 -258 192 ) ( -1000 -232 160 ) ( -1000 -232 208 ) bricks/c_tn_m1 0 3 213 1 1 0 0 0 +( -1000 -232 208 ) ( -1000 -232 160 ) ( -876 -152 160 ) bricks/c_tn_m1 0 3 213 1 1 0 0 0 +( -876 -152 208 ) ( -876 -152 160 ) ( -979 -258 192 ) bricks/c_tn_m1 0 3 213 1 1 0 0 0 +( -1028 -152 192 ) ( -1000 -258 192 ) ( -1056 -258 192 ) bricks/c_tn_m1 0 3 213 1 1 0 0 0 +} +// brush 3011 +{ +( -860 -181 192 ) ( -876 -152 160 ) ( -979 -258 192 ) bricks/c_tn_m1 0 3 213 1 1 0 0 0 +( -876 -152 208 ) ( -876 -152 160 ) ( -860 -181 192 ) bricks/c_tn_m1 0 3 213 1 1 0 0 0 +( -979 -258 192 ) ( -876 -152 160 ) ( -876 -152 208 ) bricks/c_tn_m1 0 3 213 1 1 0 0 0 +( -1028 -152 192 ) ( -1000 -258 192 ) ( -1056 -258 192 ) bricks/c_tn_m1 0 3 213 1 1 0 0 0 +} +// brush 3012 +{ +( -512 -64 -16 ) ( -588 -64 -16 ) ( -588 -64 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -588 -64 -16 ) ( -744 -96 -16 ) ( -744 -96 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -744 -96 -16 ) ( -876 -152 -16 ) ( -876 -152 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -876 -152 -16 ) ( -1000 -232 -16 ) ( -1000 -232 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1000 -232 -16 ) ( -1112 -344 -16 ) ( -1112 -344 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1112 -344 -16 ) ( -1192 -468 -16 ) ( -1192 -468 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1192 -468 -16 ) ( -1248 -600 -16 ) ( -1248 -600 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1280 -756 -32 ) ( -1248 -600 -32 ) ( -1248 -600 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1280 -832 -32 ) ( -1280 -756 -32 ) ( -1280 -756 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1280 -64 -32 ) ( -1280 -1600 -32 ) ( 256 -1600 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 256 -1600 -16 ) ( -1280 -1600 -16 ) ( -1280 -64 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -512 -284 -16 ) ( -512 -256 -80 ) ( -512 -312 -80 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1144 -832 -16 ) ( -1112 -832 -80 ) ( -1176 -832 -80 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -704 -640 -16 ) ( -512 -448 -32 ) ( -896 -832 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3013 +{ +( -512 -64 208 ) ( -588 -64 208 ) ( -588 -64 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -588 -64 208 ) ( -744 -96 208 ) ( -744 -96 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -744 -96 208 ) ( -876 -152 208 ) ( -876 -152 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -876 -152 208 ) ( -1000 -232 208 ) ( -1000 -232 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1000 -232 208 ) ( -1112 -344 208 ) ( -1112 -344 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1112 -344 208 ) ( -1192 -468 208 ) ( -1192 -468 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1192 -468 208 ) ( -1248 -600 208 ) ( -1248 -600 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1280 -756 192 ) ( -1248 -600 192 ) ( -1248 -600 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1280 -832 192 ) ( -1280 -756 192 ) ( -1280 -756 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1280 -64 192 ) ( -1280 -1600 192 ) ( 256 -1600 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 256 -1600 208 ) ( -1280 -1600 208 ) ( -1280 -64 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -512 -284 208 ) ( -512 -256 144 ) ( -512 -312 144 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1144 -832 208 ) ( -1112 -832 144 ) ( -1176 -832 144 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -704 -640 208 ) ( -512 -448 192 ) ( -896 -832 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 3014 +{ +( -707 -464 192 ) ( -628 -464 160 ) ( -638 -433 192 ) bricks/c_tn_m1 0 -9 24 1 1 0 0 0 +( -638 -433 192 ) ( -628 -464 160 ) ( -628 -464 208 ) bricks/c_tn_m1 0 -9 24 1 1 0 0 0 +( -628 -464 208 ) ( -628 -464 160 ) ( -707 -464 192 ) bricks/c_tn_m1 0 -9 24 1 1 0 0 0 +( -707 -684 192 ) ( -628 -672 192 ) ( -628 -696 192 ) bricks/c_tn_m1 0 -9 24 1 1 0 0 0 +} +// brush 3015 +{ +( -707 -464 192 ) ( -692 -492 160 ) ( -628 -464 160 ) bricks/c_tn_m1 0 -9 24 1 1 0 0 0 +( -628 -464 160 ) ( -692 -492 160 ) ( -692 -492 208 ) bricks/c_tn_m1 0 -9 24 1 1 0 0 0 +( -692 -492 208 ) ( -692 -492 160 ) ( -707 -464 192 ) bricks/c_tn_m1 0 -9 24 1 1 0 0 0 +( -707 -464 192 ) ( -628 -464 160 ) ( -628 -464 208 ) bricks/c_tn_m1 0 -9 24 1 1 0 0 0 +( -707 -684 192 ) ( -628 -672 192 ) ( -628 -696 192 ) bricks/c_tn_m1 0 -9 24 1 1 0 0 0 +} +// brush 3016 +{ +( -780 -511 192 ) ( -692 -492 160 ) ( -707 -464 192 ) bricks/c_tn_m1 0 12 32 1 1 0 0 0 +( -707 -464 192 ) ( -692 -492 160 ) ( -692 -492 208 ) bricks/c_tn_m1 0 12 32 1 1 0 0 0 +( -692 -492 208 ) ( -692 -492 160 ) ( -780 -511 192 ) bricks/c_tn_m1 0 12 32 1 1 0 0 0 +( -780 -684 192 ) ( -692 -672 192 ) ( -692 -696 192 ) bricks/c_tn_m1 0 12 32 1 1 0 0 0 +} +// brush 3017 +{ +( -780 -511 192 ) ( -760 -536 160 ) ( -692 -492 160 ) bricks/c_tn_m1 0 12 32 1 1 0 0 0 +( -692 -492 160 ) ( -760 -536 160 ) ( -760 -536 208 ) bricks/c_tn_m1 0 12 32 1 1 0 0 0 +( -760 -536 208 ) ( -760 -536 160 ) ( -780 -511 192 ) bricks/c_tn_m1 0 12 32 1 1 0 0 0 +( -780 -511 192 ) ( -692 -492 160 ) ( -692 -492 208 ) bricks/c_tn_m1 0 12 32 1 1 0 0 0 +( -780 -684 192 ) ( -692 -672 192 ) ( -692 -696 192 ) bricks/c_tn_m1 0 12 32 1 1 0 0 0 +} +// brush 3018 +{ +( -852 -652 160 ) ( -808 -584 160 ) ( -833 -564 192 ) bricks/c_tn_m1 0 7 57 1 1 0 0 0 +( -808 -584 208 ) ( -808 -584 160 ) ( -852 -652 160 ) bricks/c_tn_m1 0 7 57 1 1 0 0 0 +( -833 -564 192 ) ( -808 -584 160 ) ( -808 -584 208 ) bricks/c_tn_m1 0 7 57 1 1 0 0 0 +( -852 -652 208 ) ( -852 -652 160 ) ( -833 -564 192 ) bricks/c_tn_m1 0 7 57 1 1 0 0 0 +( -852 -684 192 ) ( -808 -672 192 ) ( -808 -696 192 ) bricks/c_tn_m1 0 7 57 1 1 0 0 0 +} +// brush 3019 +{ +( -880 -637 192 ) ( -852 -652 160 ) ( -833 -564 192 ) bricks/c_tn_m1 0 7 57 1 1 0 0 0 +( -852 -652 208 ) ( -852 -652 160 ) ( -880 -637 192 ) bricks/c_tn_m1 0 7 57 1 1 0 0 0 +( -833 -564 192 ) ( -852 -652 160 ) ( -852 -652 208 ) bricks/c_tn_m1 0 7 57 1 1 0 0 0 +( -880 -684 192 ) ( -833 -672 192 ) ( -833 -696 192 ) bricks/c_tn_m1 0 7 57 1 1 0 0 0 +} +// brush 3020 +{ +( -880 -716 160 ) ( -852 -652 160 ) ( -880 -637 192 ) bricks/c_tn_m1 0 1 66 1 1 0 0 0 +( -852 -652 208 ) ( -852 -652 160 ) ( -880 -716 160 ) bricks/c_tn_m1 0 1 66 1 1 0 0 0 +( -880 -637 192 ) ( -852 -652 160 ) ( -852 -652 208 ) bricks/c_tn_m1 0 1 66 1 1 0 0 0 +( -880 -716 208 ) ( -880 -716 160 ) ( -880 -637 192 ) bricks/c_tn_m1 0 1 66 1 1 0 0 0 +( -880 -684 192 ) ( -852 -672 192 ) ( -852 -696 192 ) bricks/c_tn_m1 0 1 66 1 1 0 0 0 +} +// brush 3021 +{ +( -911 -706 192 ) ( -880 -716 160 ) ( -880 -637 192 ) bricks/c_tn_m1 0 1 66 1 1 0 0 0 +( -880 -716 208 ) ( -880 -716 160 ) ( -911 -706 192 ) bricks/c_tn_m1 0 1 66 1 1 0 0 0 +( -880 -637 192 ) ( -880 -716 160 ) ( -880 -716 208 ) bricks/c_tn_m1 0 1 66 1 1 0 0 0 +( -911 -684 192 ) ( -880 -672 192 ) ( -880 -696 192 ) bricks/c_tn_m1 0 1 66 1 1 0 0 0 +} +// brush 3022 +{ +( -734 -127 192 ) ( -744 -96 160 ) ( -860 -181 192 ) bricks/c_tn_m1 20 -10 203 1 1 0 0 0 +( -744 -96 208 ) ( -744 -96 160 ) ( -734 -127 192 ) bricks/c_tn_m1 20 -10 203 1 1 0 0 0 +( -860 -181 192 ) ( -744 -96 160 ) ( -744 -96 208 ) bricks/c_tn_m1 20 -10 203 1 1 0 0 0 +( -1028 -96 192 ) ( -1000 -181 192 ) ( -1056 -181 192 ) bricks/c_tn_m1 20 -10 203 1 1 0 0 0 +} +// brush 3023 +{ +( -744 -96 160 ) ( -876 -152 160 ) ( -860 -181 192 ) bricks/c_tn_m1 20 -10 203 1 1 0 0 0 +( -860 -181 192 ) ( -876 -152 160 ) ( -876 -152 208 ) bricks/c_tn_m1 20 -10 203 1 1 0 0 0 +( -876 -152 208 ) ( -876 -152 160 ) ( -744 -96 160 ) bricks/c_tn_m1 20 -10 203 1 1 0 0 0 +( -744 -96 208 ) ( -744 -96 160 ) ( -860 -181 192 ) bricks/c_tn_m1 20 -10 203 1 1 0 0 0 +( -1028 -96 192 ) ( -1000 -181 192 ) ( -1056 -181 192 ) bricks/c_tn_m1 20 -10 203 1 1 0 0 0 +} +// brush 3024 +{ +( -1086 -365 192 ) ( -1112 -344 160 ) ( -1192 -468 160 ) bricks/c_tn_m1 -63 -8 237 1 1 0 0 0 +( -1112 -344 208 ) ( -1112 -344 160 ) ( -1086 -365 192 ) bricks/c_tn_m1 -63 -8 237 1 1 0 0 0 +( -1192 -468 160 ) ( -1112 -344 160 ) ( -1112 -344 208 ) bricks/c_tn_m1 -63 -8 237 1 1 0 0 0 +( -1086 -365 192 ) ( -1192 -468 160 ) ( -1192 -468 208 ) bricks/c_tn_m1 -63 -8 237 1 1 0 0 0 +( -1028 -344 192 ) ( -1000 -468 192 ) ( -1056 -468 192 ) bricks/c_tn_m1 -63 -8 237 1 1 0 0 0 +} +// brush 3025 +{ +( -1086 -365 192 ) ( -1192 -468 160 ) ( -1163 -484 192 ) bricks/c_tn_m1 -63 -8 237 1 1 0 0 0 +( -1163 -484 192 ) ( -1192 -468 160 ) ( -1192 -468 208 ) bricks/c_tn_m1 -63 -8 237 1 1 0 0 0 +( -1192 -468 208 ) ( -1192 -468 160 ) ( -1086 -365 192 ) bricks/c_tn_m1 -63 -8 237 1 1 0 0 0 +( -1028 -365 192 ) ( -1000 -484 192 ) ( -1056 -484 192 ) bricks/c_tn_m1 -63 -8 237 1 1 0 0 0 +} +// brush 3026 +{ +( -1163 -484 192 ) ( -1192 -468 160 ) ( -1248 -600 160 ) bricks/c_tn_m1 80 -18 247 1 1 0 0 0 +( -1192 -468 208 ) ( -1192 -468 160 ) ( -1163 -484 192 ) bricks/c_tn_m1 80 -18 247 1 1 0 0 0 +( -1248 -600 160 ) ( -1192 -468 160 ) ( -1192 -468 208 ) bricks/c_tn_m1 80 -18 247 1 1 0 0 0 +( -1163 -484 192 ) ( -1248 -600 160 ) ( -1248 -600 208 ) bricks/c_tn_m1 80 -18 247 1 1 0 0 0 +( -1028 -468 192 ) ( -1000 -600 192 ) ( -1056 -600 192 ) bricks/c_tn_m1 80 -18 247 1 1 0 0 0 +} +// brush 3027 +{ +( -1163 -484 192 ) ( -1248 -600 160 ) ( -1217 -610 192 ) bricks/c_tn_m1 80 -18 247 1 1 0 0 0 +( -1217 -610 192 ) ( -1248 -600 160 ) ( -1248 -600 208 ) bricks/c_tn_m1 80 -18 247 1 1 0 0 0 +( -1248 -600 208 ) ( -1248 -600 160 ) ( -1163 -484 192 ) bricks/c_tn_m1 80 -18 247 1 1 0 0 0 +( -1028 -484 192 ) ( -1000 -610 192 ) ( -1056 -610 192 ) bricks/c_tn_m1 80 -18 247 1 1 0 0 0 +} +// brush 3028 +{ +( -1280 -756 192 ) ( -1248 -759 192 ) ( -1248 -832 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1280 -1104 192 ) ( -1280 -1456 192 ) ( -1280 -1456 176 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1248 -832 192 ) ( -1248 -759 192 ) ( -1280 -756 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1248 -832 160 ) ( -1280 -832 160 ) ( -1264 -832 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1280 -756 160 ) ( -1248 -759 192 ) ( -1280 -756 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 3029 +{ +( -770 -584 -16 ) ( -770 -524 -16 ) ( -808 -524 -16 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -808 -524 0 ) ( -770 -524 0 ) ( -770 -584 0 ) bricks/c_sr_mr5 0 -3 45 1 1 0 0 0 +( -808 -584 0 ) ( -760 -536 0 ) ( -760 -536 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -808 -584 -16 ) ( -820 -574 -16 ) ( -820 -574 0 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -770 -524 0 ) ( -820 -574 0 ) ( -820 -574 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -770 -524 -16 ) ( -760 -536 -16 ) ( -760 -536 0 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +} +// brush 3030 +{ +( -896 -736 0 ) ( -1264 -736 0 ) ( -1264 -608 0 ) bricks/c_sr_mr5 0 -9 79 1 1 0 0 0 +( -1264 -608 -16 ) ( -1264 -736 -16 ) ( -896 -736 -16 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -896 -792 16 ) ( -880 -716 16 ) ( -880 -716 -144 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -896 -712 -144 ) ( -880 -716 -144 ) ( -880 -716 16 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -896 -792 -128 ) ( -880 -794 -128 ) ( -880 -794 -144 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -912 -790 -144 ) ( -896 -712 -144 ) ( -896 -712 16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3031 +{ +( -864 -580 0 ) ( -1232 -580 0 ) ( -1232 -452 0 ) bricks/c_sr_mr5 0 0 66 1 1 0 0 0 +( -1232 -452 -16 ) ( -1232 -580 -16 ) ( -864 -580 -16 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -880 -716 16 ) ( -852 -652 16 ) ( -852 -652 -144 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -852 -652 16 ) ( -866 -644 16 ) ( -866 -644 -144 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -880 -716 -144 ) ( -896 -712 -144 ) ( -896 -712 16 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -866 -644 16 ) ( -896 -712 16 ) ( -896 -712 -144 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3032 +{ +( -808 -448 0 ) ( -1176 -448 0 ) ( -1176 -320 0 ) bricks/c_sr_mr5 0 6 57 1 1 0 0 0 +( -1176 -320 -16 ) ( -1176 -448 -16 ) ( -808 -448 -16 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -852 -652 16 ) ( -808 -584 16 ) ( -808 -584 -144 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -808 -584 16 ) ( -820 -574 16 ) ( -820 -574 -144 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -852 -652 -144 ) ( -866 -644 -144 ) ( -866 -644 16 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -866 -644 -144 ) ( -820 -574 -144 ) ( -820 -574 16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3033 +{ +( -896 -536 -16 ) ( -896 -168 -16 ) ( -1024 -168 -16 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -1024 -168 0 ) ( -896 -168 0 ) ( -896 -536 0 ) bricks/c_sr_mr5 0 -5 33 1 1 0 0 0 +( -692 -492 -32 ) ( -760 -536 -32 ) ( -760 -536 128 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -760 -536 -32 ) ( -770 -524 -32 ) ( -770 -524 128 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -692 -492 128 ) ( -700 -478 128 ) ( -700 -478 -32 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -700 -478 128 ) ( -770 -524 128 ) ( -770 -524 -32 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3034 +{ +( -764 -480 -16 ) ( -764 -112 -16 ) ( -892 -112 -16 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -892 -112 0 ) ( -764 -112 0 ) ( -764 -480 0 ) bricks/c_sr_mr5 0 -9 24 1 1 0 0 0 +( -628 -464 -32 ) ( -692 -492 -32 ) ( -692 -492 128 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -692 -492 -32 ) ( -700 -478 -32 ) ( -700 -478 128 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -628 -464 128 ) ( -632 -448 128 ) ( -632 -448 -32 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -700 -478 -32 ) ( -632 -448 -32 ) ( -632 -448 128 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3035 +{ +( -608 -448 -16 ) ( -608 -80 -16 ) ( -736 -80 -16 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -736 -80 0 ) ( -608 -80 0 ) ( -608 -448 0 ) bricks/c_sr_mr5 0 -4 12 1 1 0 0 0 +( -552 -448 -32 ) ( -628 -464 -32 ) ( -628 -464 128 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -632 -448 128 ) ( -628 -464 128 ) ( -628 -464 -32 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -552 -448 112 ) ( -550 -464 112 ) ( -550 -464 128 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -554 -432 128 ) ( -632 -448 128 ) ( -632 -448 -32 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3036 +{ +( -1000 -318 -16 ) ( -1000 -234 -16 ) ( -1054 -234 -16 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -1054 -234 0 ) ( -1000 -234 0 ) ( -1000 -318 0 ) bricks/c_sr_mr5 0 0 225 1 1 0 0 0 +( -1099 -355 0 ) ( -1099 -355 -16 ) ( -1112 -344 -16 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -1000 -232 0 ) ( -1112 -344 0 ) ( -1112 -344 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -989 -245 -16 ) ( -989 -245 0 ) ( -1000 -232 0 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -989 -245 0 ) ( -989 -245 -16 ) ( -1099 -355 -16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3037 +{ +( -912 -832 0 ) ( -1280 -832 0 ) ( -1280 -704 0 ) bricks/c_sr_mr5 0 0 270 1 1 0 0 0 +( -1280 -704 -16 ) ( -1280 -832 -16 ) ( -912 -832 -16 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -1280 -756 -160 ) ( -1264 -758 -160 ) ( -1264 -758 0 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -1280 -832 -160 ) ( -1280 -756 -160 ) ( -1280 -756 0 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -912 -832 128 ) ( -912 -832 -32 ) ( -1280 -832 -32 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -1264 -832 0 ) ( -1264 -758 0 ) ( -1264 -758 -160 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3038 +{ +( -896 -736 0 ) ( -1264 -736 0 ) ( -1264 -608 0 ) bricks/c_sr_mr5 0 -8 258 1 1 0 0 0 +( -1264 -608 -16 ) ( -1264 -736 -16 ) ( -896 -736 -16 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -1233 -605 -16 ) ( -1233 -605 0 ) ( -1248 -600 0 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -1248 -600 16 ) ( -1280 -756 16 ) ( -1280 -756 -144 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -1264 -758 0 ) ( -1264 -758 -16 ) ( -1280 -756 -16 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -1264 -758 -16 ) ( -1264 -758 0 ) ( -1233 -605 0 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3039 +{ +( -864 -580 0 ) ( -1232 -580 0 ) ( -1232 -452 0 ) bricks/c_sr_mr5 0 11 247 1 1 0 0 0 +( -1232 -452 -16 ) ( -1232 -580 -16 ) ( -864 -580 -16 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -1178 -476 -16 ) ( -1178 -476 0 ) ( -1192 -468 0 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -1248 -600 -144 ) ( -1192 -468 -144 ) ( -1192 -468 16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -1233 -605 0 ) ( -1233 -605 -16 ) ( -1248 -600 -16 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -1233 -605 -16 ) ( -1233 -605 0 ) ( -1178 -476 0 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3040 +{ +( -808 -448 0 ) ( -1176 -448 0 ) ( -1176 -320 0 ) bricks/c_sr_mr5 0 -10 237 1 1 0 0 0 +( -1176 -320 -16 ) ( -1176 -448 -16 ) ( -808 -448 -16 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -1099 -355 -16 ) ( -1099 -355 0 ) ( -1112 -344 0 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -1112 -344 16 ) ( -1192 -468 16 ) ( -1192 -468 -144 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -1178 -476 0 ) ( -1178 -476 -16 ) ( -1192 -468 -16 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -1178 -476 -16 ) ( -1178 -476 0 ) ( -1099 -355 0 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3041 +{ +( -896 -536 -16 ) ( -896 -168 -16 ) ( -1024 -168 -16 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -1024 -168 0 ) ( -896 -168 0 ) ( -896 -536 0 ) bricks/c_sr_mr5 0 1 213 1 1 0 0 0 +( -989 -245 0 ) ( -989 -245 -16 ) ( -1000 -232 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -1000 -232 -32 ) ( -876 -152 -32 ) ( -876 -152 128 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -868 -167 -16 ) ( -868 -167 0 ) ( -876 -152 0 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -868 -167 0 ) ( -868 -167 -16 ) ( -989 -245 -16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3042 +{ +( -764 -480 -16 ) ( -764 -112 -16 ) ( -892 -112 -16 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -892 -112 0 ) ( -764 -112 0 ) ( -764 -480 0 ) bricks/c_sr_mr5 0 -12 203 1 1 0 0 0 +( -868 -167 0 ) ( -868 -167 -16 ) ( -876 -152 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -744 -96 128 ) ( -876 -152 128 ) ( -876 -152 -32 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -739 -112 -16 ) ( -739 -112 0 ) ( -744 -96 0 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -739 -112 0 ) ( -739 -112 -16 ) ( -868 -167 -16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3043 +{ +( -608 -448 -16 ) ( -608 -80 -16 ) ( -736 -80 -16 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -736 -80 0 ) ( -608 -80 0 ) ( -608 -448 0 ) bricks/c_sr_mr5 0 2 192 1 1 0 0 0 +( -739 -112 0 ) ( -739 -112 -16 ) ( -744 -96 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -744 -96 -32 ) ( -588 -64 -32 ) ( -588 -64 128 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -588 -64 -32 ) ( -586 -80 -32 ) ( -586 -80 128 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -739 -112 -16 ) ( -739 -112 0 ) ( -586 -80 0 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3044 +{ +( -1312 -1088 168 ) ( -1264 -1088 168 ) ( -1264 -1088 8 ) bricks/c_sr_mb2 -17 0 0 1 1 0 0 0 +( -1264 -1088 168 ) ( -1264 -1024 168 ) ( -1264 -1024 8 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1328 -1024 168 ) ( -1328 -1088 168 ) ( -1328 -1088 8 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1328 -1088 192 ) ( -1312 -1088 192 ) ( -1320 -1024 192 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +( -1312 -1088 256 ) ( -1328 -1088 256 ) ( -1320 -1024 256 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +( -1304 -1064 192 ) ( -1296 -1064 192 ) ( -1300 -1064 256 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +} +// brush 3045 +{ +( -1264 -1088 168 ) ( -1264 -1024 168 ) ( -1264 -1024 8 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1328 -1024 168 ) ( -1328 -1088 168 ) ( -1328 -1088 8 ) common/li_pv_v4a 0 8 90 1 1 0 1 9000 +( -1328 -1088 192 ) ( -1312 -1088 192 ) ( -1320 -1024 192 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +( -1312 -1088 256 ) ( -1328 -1088 256 ) ( -1320 -1024 256 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +( -1328 -1048 192 ) ( -1312 -1048 192 ) ( -1320 -1048 256 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +( -1296 -1064 192 ) ( -1304 -1064 192 ) ( -1300 -1064 256 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +} +// brush 3046 +{ +( -1264 -1088 168 ) ( -1264 -1024 168 ) ( -1264 -1024 8 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1264 -1024 168 ) ( -1312 -1024 168 ) ( -1312 -1024 8 ) bricks/c_sr_mb2 -17 0 0 1 1 0 0 0 +( -1328 -1024 168 ) ( -1328 -1088 168 ) ( -1328 -1088 8 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1328 -1088 192 ) ( -1312 -1088 192 ) ( -1320 -1024 192 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +( -1312 -1088 256 ) ( -1328 -1088 256 ) ( -1320 -1024 256 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +( -1312 -1048 192 ) ( -1328 -1048 192 ) ( -1320 -1048 256 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +} +// brush 3047 +{ +( -1312 -1088 320 ) ( -1312 -1024 320 ) ( -1264 -1024 320 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +( -1312 -1088 168 ) ( -1264 -1088 168 ) ( -1264 -1088 8 ) bricks/c_sr_mb2 -17 0 0 1 1 0 0 0 +( -1264 -1088 168 ) ( -1264 -1024 168 ) ( -1264 -1024 8 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1264 -1024 168 ) ( -1312 -1024 168 ) ( -1312 -1024 8 ) bricks/c_sr_mb2 -17 0 0 1 1 0 0 0 +( -1328 -1024 168 ) ( -1328 -1088 168 ) ( -1328 -1088 8 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1328 -1088 256 ) ( -1312 -1088 256 ) ( -1320 -1024 256 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +} +// brush 3048 +{ +( -1312 -1088 128 ) ( -1264 -1088 128 ) ( -1264 -1088 -32 ) bricks/c_sr_mb1b 176 0 0 1 1 0 0 0 +( -1264 -1088 128 ) ( -1264 -1024 128 ) ( -1264 -1024 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1280 -1024 128 ) ( -1280 -1088 128 ) ( -1280 -1088 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1256 -1088 128 ) ( -1280 -1088 128 ) ( -1268 -1024 128 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +( -1280 -1088 64 ) ( -1272 -1088 64 ) ( -1276 -1024 64 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +( -1280 -1064 64 ) ( -1264 -1064 64 ) ( -1272 -1064 128 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +} +// brush 3049 +{ +( -1264 -1088 128 ) ( -1264 -1024 128 ) ( -1264 -1024 -32 ) common/li_pv_v4a 0 8 90 1 1 0 1 9000 +( -1280 -1024 128 ) ( -1280 -1088 128 ) ( -1280 -1088 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1256 -1088 128 ) ( -1280 -1088 128 ) ( -1268 -1024 128 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +( -1280 -1088 64 ) ( -1272 -1088 64 ) ( -1276 -1024 64 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +( -1280 -1048 64 ) ( -1272 -1048 64 ) ( -1276 -1048 128 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +( -1264 -1064 64 ) ( -1280 -1064 64 ) ( -1272 -1064 128 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +} +// brush 3050 +{ +( -1264 -1088 128 ) ( -1264 -1024 128 ) ( -1264 -1024 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1264 -1024 128 ) ( -1312 -1024 128 ) ( -1312 -1024 -32 ) bricks/c_sr_mb1b 176 0 0 1 1 0 0 0 +( -1280 -1024 128 ) ( -1280 -1088 128 ) ( -1280 -1088 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1256 -1088 128 ) ( -1280 -1088 128 ) ( -1268 -1024 128 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +( -1280 -1088 64 ) ( -1272 -1088 64 ) ( -1276 -1024 64 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +( -1272 -1048 64 ) ( -1280 -1048 64 ) ( -1276 -1048 128 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +} +// brush 3051 +{ +( -1264 -1024 0 ) ( -1312 -1024 0 ) ( -1312 -1088 0 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +( -1312 -1088 128 ) ( -1264 -1088 128 ) ( -1264 -1088 -32 ) bricks/c_sr_mb1b 176 0 0 1 1 0 0 0 +( -1264 -1088 128 ) ( -1264 -1024 128 ) ( -1264 -1024 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1264 -1024 128 ) ( -1312 -1024 128 ) ( -1312 -1024 -32 ) bricks/c_sr_mb1b 176 0 0 1 1 0 0 0 +( -1280 -1024 128 ) ( -1280 -1088 128 ) ( -1280 -1088 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1272 -1088 64 ) ( -1280 -1088 64 ) ( -1276 -1024 64 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +} +// brush 3052 +{ +( -1312 -1408 128 ) ( -1264 -1408 128 ) ( -1264 -1408 -32 ) bricks/c_sr_mb1b 176 0 0 1 1 0 0 0 +( -1264 -1408 128 ) ( -1264 -1344 128 ) ( -1264 -1344 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1280 -1344 128 ) ( -1280 -1408 128 ) ( -1280 -1408 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1256 -1408 128 ) ( -1280 -1408 128 ) ( -1268 -1344 128 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +( -1280 -1408 64 ) ( -1272 -1408 64 ) ( -1276 -1344 64 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +( -1280 -1384 64 ) ( -1264 -1384 64 ) ( -1272 -1384 128 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +} +// brush 3053 +{ +( -1264 -1408 128 ) ( -1264 -1344 128 ) ( -1264 -1344 -32 ) common/li_pv_v4a 0 8 90 1 1 0 1 9000 +( -1280 -1344 128 ) ( -1280 -1408 128 ) ( -1280 -1408 -32 ) common/li_pv_v4a 0 8 90 1 1 0 1 9000 +( -1256 -1408 128 ) ( -1280 -1408 128 ) ( -1268 -1344 128 ) common/li_pv_v4a 0 8 90 1 1 0 1 9000 +( -1280 -1408 64 ) ( -1272 -1408 64 ) ( -1276 -1344 64 ) common/li_pv_v4a 0 8 90 1 1 0 1 9000 +( -1280 -1368 64 ) ( -1272 -1368 64 ) ( -1276 -1368 128 ) common/li_pv_v4a 0 8 90 1 1 0 1 9000 +( -1264 -1384 64 ) ( -1280 -1384 64 ) ( -1272 -1384 128 ) common/li_pv_v4a 0 8 90 1 1 0 1 9000 +} +// brush 3054 +{ +( -1264 -1408 128 ) ( -1264 -1344 128 ) ( -1264 -1344 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1264 -1344 128 ) ( -1312 -1344 128 ) ( -1312 -1344 -32 ) bricks/c_sr_mb1b 176 0 0 1 1 0 0 0 +( -1280 -1344 128 ) ( -1280 -1408 128 ) ( -1280 -1408 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1256 -1408 128 ) ( -1280 -1408 128 ) ( -1268 -1344 128 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +( -1280 -1408 64 ) ( -1272 -1408 64 ) ( -1276 -1344 64 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +( -1272 -1368 64 ) ( -1280 -1368 64 ) ( -1276 -1368 128 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +} +// brush 3055 +{ +( -1264 -1344 0 ) ( -1312 -1344 0 ) ( -1312 -1408 0 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +( -1312 -1408 128 ) ( -1264 -1408 128 ) ( -1264 -1408 -32 ) bricks/c_sr_mb1b 176 0 0 1 1 0 0 0 +( -1264 -1408 128 ) ( -1264 -1344 128 ) ( -1264 -1344 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1264 -1344 128 ) ( -1312 -1344 128 ) ( -1312 -1344 -32 ) bricks/c_sr_mb1b 176 0 0 1 1 0 0 0 +( -1280 -1344 128 ) ( -1280 -1408 128 ) ( -1280 -1408 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1272 -1408 64 ) ( -1280 -1408 64 ) ( -1276 -1344 64 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +} +// brush 3056 +{ +( -1312 -1408 168 ) ( -1264 -1408 168 ) ( -1264 -1408 8 ) bricks/c_sr_mb2 -17 0 0 1 1 0 0 0 +( -1264 -1408 168 ) ( -1264 -1344 168 ) ( -1264 -1344 8 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1328 -1344 168 ) ( -1328 -1408 168 ) ( -1328 -1408 8 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1328 -1408 192 ) ( -1312 -1408 192 ) ( -1320 -1344 192 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +( -1296 -1408 256 ) ( -1320 -1408 256 ) ( -1308 -1344 256 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +( -1296 -1384 192 ) ( -1272 -1384 192 ) ( -1284 -1384 256 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +} +// brush 3057 +{ +( -1264 -1408 168 ) ( -1264 -1344 168 ) ( -1264 -1344 8 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1328 -1344 168 ) ( -1328 -1408 168 ) ( -1328 -1408 8 ) common/li_pv_v4a 0 8 90 1 1 0 1 9000 +( -1328 -1408 192 ) ( -1312 -1408 192 ) ( -1320 -1344 192 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +( -1296 -1408 256 ) ( -1320 -1408 256 ) ( -1308 -1344 256 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +( -1320 -1368 192 ) ( -1296 -1368 192 ) ( -1308 -1368 256 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +( -1272 -1384 192 ) ( -1296 -1384 192 ) ( -1284 -1384 256 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +} +// brush 3058 +{ +( -1264 -1408 168 ) ( -1264 -1344 168 ) ( -1264 -1344 8 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1264 -1344 168 ) ( -1312 -1344 168 ) ( -1312 -1344 8 ) bricks/c_sr_mb2 -17 0 0 1 1 0 0 0 +( -1328 -1344 168 ) ( -1328 -1408 168 ) ( -1328 -1408 8 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1328 -1408 192 ) ( -1312 -1408 192 ) ( -1320 -1344 192 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +( -1296 -1408 256 ) ( -1320 -1408 256 ) ( -1308 -1344 256 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +( -1296 -1368 192 ) ( -1320 -1368 192 ) ( -1308 -1368 256 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +} +// brush 3059 +{ +( -1312 -1408 320 ) ( -1312 -1344 320 ) ( -1264 -1344 320 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +( -1312 -1408 168 ) ( -1264 -1408 168 ) ( -1264 -1408 8 ) bricks/c_sr_mb2 -17 0 0 1 1 0 0 0 +( -1264 -1408 168 ) ( -1264 -1344 168 ) ( -1264 -1344 8 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1264 -1344 168 ) ( -1312 -1344 168 ) ( -1312 -1344 8 ) bricks/c_sr_mb2 -17 0 0 1 1 0 0 0 +( -1328 -1344 168 ) ( -1328 -1408 168 ) ( -1328 -1408 8 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1320 -1408 256 ) ( -1296 -1408 256 ) ( -1308 -1344 256 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +} +// brush 3060 +{ +( -1312 -1728 80 ) ( -1328 -1728 80 ) ( -1328 -1728 120 ) bricks/c_sr_mb2 -16 0 0 1 1 0 0 0 +( -1312 -1728 128 ) ( -1312 -1664 128 ) ( -1312 -1664 -32 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1328 -1664 128 ) ( -1328 -1728 128 ) ( -1328 -1728 -32 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1328 -1728 216 ) ( -1328 -1704 216 ) ( -1312 -1716 216 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1328 -1720 152 ) ( -1328 -1728 152 ) ( -1312 -1724 152 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1328 -1704 152 ) ( -1312 -1704 152 ) ( -1320 -1704 216 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +} +// brush 3061 +{ +( -1312 -1728 128 ) ( -1312 -1664 128 ) ( -1312 -1664 -32 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1328 -1664 128 ) ( -1328 -1728 128 ) ( -1328 -1728 -32 ) common/li_pv_v4a -24 8 90 1 1 0 1 9000 +( -1328 -1728 216 ) ( -1328 -1704 216 ) ( -1312 -1716 216 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1328 -1720 152 ) ( -1328 -1728 152 ) ( -1312 -1724 152 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1328 -1688 152 ) ( -1320 -1688 152 ) ( -1324 -1688 216 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1312 -1704 152 ) ( -1328 -1704 152 ) ( -1320 -1704 216 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +} +// brush 3062 +{ +( -1312 -1728 128 ) ( -1312 -1664 128 ) ( -1312 -1664 -32 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1328 -1664 92 ) ( -1312 -1664 92 ) ( -1312 -1664 132 ) bricks/c_sr_mb2 -16 0 0 1 1 0 0 0 +( -1328 -1664 128 ) ( -1328 -1728 128 ) ( -1328 -1728 -32 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1328 -1728 216 ) ( -1328 -1704 216 ) ( -1312 -1716 216 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1328 -1720 152 ) ( -1328 -1728 152 ) ( -1312 -1724 152 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1320 -1688 152 ) ( -1328 -1688 152 ) ( -1324 -1688 216 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +} +// brush 3063 +{ +( -1264 -1728 128 ) ( -1264 -1664 128 ) ( -1264 -1664 -32 ) common/li_pv_v4a 0 8 90 1 1 0 1 9000 +( -1280 -1664 128 ) ( -1280 -1728 128 ) ( -1280 -1728 -32 ) common/li_pv_v4a 0 8 90 1 1 0 1 9000 +( -1264 -1728 128 ) ( -1280 -1728 128 ) ( -1280 -1664 128 ) common/li_pv_v4a 0 8 90 1 1 0 1 9000 +( -1280 -1708 64 ) ( -1280 -1728 64 ) ( -1264 -1718 64 ) common/li_pv_v4a 0 8 90 1 1 0 1 9000 +( -1280 -1688 64 ) ( -1264 -1688 64 ) ( -1272 -1688 128 ) common/li_pv_v4a 0 8 90 1 1 0 1 9000 +( -1264 -1704 64 ) ( -1280 -1704 64 ) ( -1272 -1704 128 ) common/li_pv_v4a 0 8 90 1 1 0 1 9000 +} +// brush 3064 +{ +( -1280 -1728 128 ) ( -1264 -1728 128 ) ( -1264 -1728 64 ) bricks/c_sr_mb2 -16 0 0 1 1 0 0 0 +( -1264 -1728 128 ) ( -1264 -1664 128 ) ( -1264 -1664 -32 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1280 -1664 128 ) ( -1280 -1728 128 ) ( -1280 -1728 -32 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1264 -1728 128 ) ( -1280 -1728 128 ) ( -1280 -1664 128 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1280 -1708 64 ) ( -1280 -1728 64 ) ( -1264 -1718 64 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1280 -1704 64 ) ( -1264 -1704 64 ) ( -1272 -1704 128 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +} +// brush 3065 +{ +( -1264 -1728 128 ) ( -1264 -1664 128 ) ( -1264 -1664 -32 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1264 -1664 128 ) ( -1280 -1664 128 ) ( -1280 -1664 64 ) bricks/c_sr_mb2 -16 0 0 1 1 0 0 0 +( -1280 -1664 128 ) ( -1280 -1728 128 ) ( -1280 -1728 -32 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1264 -1728 128 ) ( -1280 -1728 128 ) ( -1280 -1664 128 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1280 -1708 64 ) ( -1280 -1728 64 ) ( -1264 -1718 64 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1264 -1688 64 ) ( -1280 -1688 64 ) ( -1272 -1688 128 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +} +// brush 3066 +{ +( -1328 -1664 284 ) ( -1264 -1664 284 ) ( -1264 -1728 272 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1312 -1728 168 ) ( -1264 -1728 168 ) ( -1264 -1728 8 ) bricks/c_sr_mb2 -16 0 0 1 1 0 0 0 +( -1264 -1728 168 ) ( -1264 -1664 168 ) ( -1264 -1664 8 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1264 -1664 284 ) ( -1328 -1664 284 ) ( -1328 -1664 192 ) bricks/c_sr_mb2 -16 0 0 1 1 0 0 0 +( -1328 -1728 128 ) ( -1312 -1728 128 ) ( -1320 -1664 128 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1280 -1680 192 ) ( -1280 -1664 192 ) ( -1280 -1672 284 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +} +// brush 3067 +{ +( -1328 -1664 284 ) ( -1264 -1664 284 ) ( -1264 -1728 272 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1312 -1728 168 ) ( -1264 -1728 168 ) ( -1264 -1728 8 ) bricks/c_sr_mb2 -16 0 0 1 1 0 0 0 +( -1264 -1664 284 ) ( -1328 -1664 284 ) ( -1328 -1664 192 ) bricks/c_sr_mb2 -16 0 0 1 1 0 0 0 +( -1328 -1664 168 ) ( -1328 -1728 168 ) ( -1328 -1728 8 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1328 -1728 216 ) ( -1312 -1728 216 ) ( -1320 -1664 216 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1312 -1664 192 ) ( -1312 -1680 192 ) ( -1312 -1672 284 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +} +// brush 3068 +{ +( -1328 -1984 168 ) ( -1328 -2048 168 ) ( -1328 -2048 8 ) bricks/c_sr_mb2 63 0 0 1 1 0 0 0 +( -1264 -1984 64 ) ( -1328 -1984 64 ) ( -1328 -2048 64 ) bricks/c_sr_mb2 63 0 0 1 1 0 0 0 +( -1328 -2008 64 ) ( -1288 -2008 64 ) ( -1308 -2008 216 ) bricks/c_sr_mb2 63 0 0 1 1 0 0 0 +( -1280 -2024 64 ) ( -1328 -2024 64 ) ( -1304 -2024 213 ) bricks/c_sr_mb2 63 0 0 1 1 0 0 0 +( -1296 -2008 64 ) ( -1296 -2024 64 ) ( -1296 -2016 160 ) bricks/c_sr_mb2 63 0 0 1 1 0 0 0 +( -1312 -2024 96 ) ( -1328 -2024 96 ) ( -1320 -2008 96 ) bricks/c_sr_mb2 63 0 0 1 1 0 0 0 +} +// brush 3069 +{ +( -1328 -1984 168 ) ( -1328 -2048 168 ) ( -1328 -2048 8 ) common/li_pv_v4a -32 8 90 1 1 0 1 9000 +( -1328 -2008 64 ) ( -1288 -2008 64 ) ( -1308 -2008 216 ) common/li_pv_v4a -32 8 90 1 1 0 1 9000 +( -1280 -2024 64 ) ( -1328 -2024 64 ) ( -1304 -2024 213 ) common/li_pv_v4a -32 8 90 1 1 0 1 9000 +( -1328 -2032 160 ) ( -1328 -2016 160 ) ( -1264 -2024 160 ) common/li_pv_v4a -32 8 90 1 1 0 1 9000 +( -1296 -2008 64 ) ( -1296 -2024 64 ) ( -1296 -2016 160 ) common/li_pv_v4a -32 8 90 1 1 0 1 9000 +( -1328 -2024 96 ) ( -1312 -2024 96 ) ( -1320 -2008 96 ) common/li_pv_v4a -32 8 90 1 1 0 1 9000 +} +// brush 3070 +{ +( -1264 -2048 168 ) ( -1264 -1984 168 ) ( -1264 -1984 8 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1328 -1984 216 ) ( -1264 -1984 216 ) ( -1264 -2048 208 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +( -1328 -2008 64 ) ( -1288 -2008 64 ) ( -1308 -2008 216 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +( -1280 -2024 64 ) ( -1328 -2024 64 ) ( -1304 -2024 213 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +( -1328 -2016 128 ) ( -1328 -2032 128 ) ( -1264 -2024 128 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +( -1296 -2024 160 ) ( -1296 -2008 160 ) ( -1296 -2016 213 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +} +// brush 3071 +{ +( -1328 -1984 168 ) ( -1328 -2048 168 ) ( -1328 -2048 8 ) bricks/c_sr_mb2 63 0 0 1 1 0 0 0 +( -1328 -1984 216 ) ( -1264 -1984 216 ) ( -1264 -2048 208 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +( -1328 -2008 64 ) ( -1288 -2008 64 ) ( -1308 -2008 216 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +( -1280 -2024 64 ) ( -1328 -2024 64 ) ( -1304 -2024 213 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +( -1328 -2016 160 ) ( -1328 -2032 160 ) ( -1264 -2024 160 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +( -1296 -2008 160 ) ( -1296 -2024 160 ) ( -1296 -2016 213 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +} +// brush 3072 +{ +( -1264 -2048 168 ) ( -1264 -1984 168 ) ( -1264 -1984 8 ) common/li_pv_v4a 0 8 90 1 1 0 1 9000 +( -1264 -1984 64 ) ( -1328 -1984 64 ) ( -1328 -2048 64 ) common/li_pv_v4a 0 8 90 1 1 0 1 9000 +( -1328 -2008 64 ) ( -1288 -2008 64 ) ( -1308 -2008 216 ) common/li_pv_v4a 0 8 90 1 1 0 1 9000 +( -1280 -2024 64 ) ( -1328 -2024 64 ) ( -1304 -2024 213 ) common/li_pv_v4a 0 8 90 1 1 0 1 9000 +( -1328 -2032 128 ) ( -1328 -2016 128 ) ( -1264 -2024 128 ) common/li_pv_v4a 0 8 90 1 1 0 1 9000 +( -1296 -2024 64 ) ( -1296 -2008 64 ) ( -1296 -2016 160 ) common/li_pv_v4a 0 8 90 1 1 0 1 9000 +} +// brush 3073 +{ +( -1264 -2048 120 ) ( -1328 -2048 120 ) ( -1328 -2048 192 ) bricks/c_sr_mb2 -17 0 0 1 1 0 0 0 +( -1264 -2048 168 ) ( -1264 -1984 168 ) ( -1264 -1984 8 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1328 -1984 168 ) ( -1328 -2048 168 ) ( -1328 -2048 8 ) bricks/c_sr_mb2 63 0 0 1 1 0 0 0 +( -1264 -1984 64 ) ( -1328 -1984 64 ) ( -1328 -2048 64 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +( -1328 -1984 216 ) ( -1264 -1984 216 ) ( -1264 -2048 208 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +( -1328 -2024 64 ) ( -1280 -2024 64 ) ( -1304 -2024 213 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +} +// brush 3074 +{ +( -1264 -2048 168 ) ( -1264 -1984 168 ) ( -1264 -1984 8 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1328 -1984 120 ) ( -1264 -1984 120 ) ( -1264 -1984 216 ) bricks/c_sr_mb2 -17 0 0 1 1 0 0 0 +( -1328 -1984 168 ) ( -1328 -2048 168 ) ( -1328 -2048 8 ) bricks/c_sr_mb2 63 0 0 1 1 0 0 0 +( -1264 -1984 64 ) ( -1328 -1984 64 ) ( -1328 -2048 64 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +( -1328 -1984 216 ) ( -1264 -1984 216 ) ( -1264 -2048 208 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +( -1288 -2008 64 ) ( -1328 -2008 64 ) ( -1308 -2008 216 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +} +// brush 3075 +{ +( 130 -448 0 ) ( 0 -448 0 ) ( 0 -464 0 ) bricks/b_sr_20b 0 48 0 1 1 0 0 0 +( 4 -464 128 ) ( 4 -448 128 ) ( 134 -448 128 ) bricks/b_sr_20b 0 48 0 1 1 0 0 0 +( 3 -464 202 ) ( 133 -464 202 ) ( 133 -464 42 ) bricks/b_sr_20b 0 48 0 1 1 0 0 0 +( 217 -470 208 ) ( 217 -454 208 ) ( 217 -454 48 ) bricks/b_sr_20b 0 48 0 1 1 0 0 0 +( 133 -452 202 ) ( 3 -452 202 ) ( 3 -452 42 ) bricks/b_sr_20b 0 48 0 1 1 0 0 0 +( 178 -464 0 ) ( 178 -448 0 ) ( 178 -456 128 ) bricks/b_sr_20b 0 48 0 1 1 0 0 0 +} +// brush 3076 +{ +( 130 -448 0 ) ( 0 -448 0 ) ( 0 -464 0 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 4 -464 128 ) ( 4 -448 128 ) ( 134 -448 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 3 -464 202 ) ( 133 -464 202 ) ( 133 -464 42 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 128 -452 202 ) ( -2 -452 202 ) ( -2 -452 42 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 92 -448 198 ) ( 92 -464 198 ) ( 92 -464 38 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 178 -448 0 ) ( 178 -464 0 ) ( 178 -456 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 3077 +{ +( -1216 872 576 ) ( -1184 875 576 ) ( -1184 789 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 792 576 ) ( -1216 792 544 ) ( -1216 832 544 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 789 576 ) ( -1184 875 576 ) ( -1216 872 544 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 1152 544 ) ( -1184 1152 544 ) ( -1200 1152 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 896 544 ) ( -1216 896 544 ) ( -1200 896 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 3078 +{ +( -1216 872 576 ) ( -1184 875 576 ) ( -1184 789 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 792 576 ) ( -1216 792 544 ) ( -1216 832 544 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 789 576 ) ( -1184 875 576 ) ( -1216 872 544 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1192 832 544 ) ( -1216 832 544 ) ( -1204 832 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 896 544 ) ( -1184 896 544 ) ( -1200 896 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1208 896 544 ) ( -1208 880 544 ) ( -1208 888 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 3079 +{ +( -1216 872 576 ) ( -1184 875 576 ) ( -1184 789 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1184 789 576 ) ( -1184 875 576 ) ( -1216 872 544 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1192 832 544 ) ( -1216 832 544 ) ( -1204 832 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1216 896 544 ) ( -1184 896 544 ) ( -1200 896 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1208 880 544 ) ( -1208 896 544 ) ( -1208 888 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1192 896 552 ) ( -1192 880 552 ) ( -1192 888 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3080 +{ +( -1216 872 576 ) ( -1184 875 576 ) ( -1184 789 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 789 576 ) ( -1184 875 576 ) ( -1216 872 544 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1192 832 544 ) ( -1216 832 544 ) ( -1204 832 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 896 544 ) ( -1184 896 544 ) ( -1200 896 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1192 880 552 ) ( -1192 896 552 ) ( -1192 888 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 3081 +{ +( -864 759 576 ) ( -864 905 576 ) ( -832 908 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1104 576 ) ( -832 1456 576 ) ( -832 1456 560 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 908 544 ) ( -864 905 576 ) ( -864 759 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -840 1152 544 ) ( -832 1152 544 ) ( -836 1152 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -848 896 544 ) ( -864 896 544 ) ( -856 896 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3082 +{ +( -864 759 576 ) ( -864 905 576 ) ( -832 908 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 908 544 ) ( -864 905 576 ) ( -864 759 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -840 832 544 ) ( -864 832 544 ) ( -852 832 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -864 896 544 ) ( -848 896 544 ) ( -856 896 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -856 896 544 ) ( -856 880 544 ) ( -856 888 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3083 +{ +( -864 759 576 ) ( -864 905 576 ) ( -832 908 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -832 908 544 ) ( -864 905 576 ) ( -864 759 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -840 832 544 ) ( -864 832 544 ) ( -852 832 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -864 896 544 ) ( -848 896 544 ) ( -856 896 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -856 880 544 ) ( -856 896 544 ) ( -856 888 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -840 896 544 ) ( -840 880 544 ) ( -840 888 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3084 +{ +( -864 759 576 ) ( -864 905 576 ) ( -832 908 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 1104 576 ) ( -832 1456 576 ) ( -832 1456 560 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 908 544 ) ( -864 905 576 ) ( -864 759 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -840 832 544 ) ( -864 832 544 ) ( -852 832 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -864 896 544 ) ( -848 896 544 ) ( -856 896 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -840 880 544 ) ( -840 896 544 ) ( -840 888 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3085 +{ +( -949 164 576 ) ( -920 148 544 ) ( -864 280 544 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -864 280 544 ) ( -920 148 544 ) ( -920 148 592 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -949 -32 576 ) ( -949 24 576 ) ( -864 -4 576 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -904 258 544 ) ( -884 250 544 ) ( -894 254 576 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -906 190 544 ) ( -930 200 544 ) ( -918 195 576 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -912 186 544 ) ( -884 252 544 ) ( -898 219 576 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +} +// brush 3086 +{ +( -949 164 576 ) ( -920 148 544 ) ( -864 280 544 ) common/li_pv_v4a -12 1 67 1 1 0 1 7000 +( -949 164 576 ) ( -864 280 544 ) ( -864 280 592 ) common/li_pv_v4a -12 1 67 1 1 0 1 7000 +( -949 -32 576 ) ( -949 24 576 ) ( -864 -4 576 ) common/li_pv_v4a -12 1 67 1 1 0 1 7000 +( -904 258 544 ) ( -884 250 544 ) ( -894 254 576 ) common/li_pv_v4a -12 1 67 1 1 0 1 7000 +( -906 190 544 ) ( -930 200 544 ) ( -918 195 576 ) common/li_pv_v4a -12 1 67 1 1 0 1 7000 +( -884 252 544 ) ( -912 186 544 ) ( -898 219 576 ) common/li_pv_v4a -12 1 67 1 1 0 1 7000 +} +// brush 3087 +{ +( -949 164 576 ) ( -864 280 544 ) ( -895 290 576 ) common/li_pv_v4a -12 1 67 1 1 0 1 7000 +( -864 280 592 ) ( -864 280 544 ) ( -949 164 576 ) common/li_pv_v4a -12 1 67 1 1 0 1 7000 +( -949 -32 576 ) ( -949 24 576 ) ( -864 -4 576 ) common/li_pv_v4a -12 1 67 1 1 0 1 7000 +( -904 258 544 ) ( -884 250 544 ) ( -894 254 576 ) common/li_pv_v4a -12 1 67 1 1 0 1 7000 +( -906 190 552 ) ( -930 200 552 ) ( -918 195 576 ) common/li_pv_v4a -12 1 67 1 1 0 1 7000 +( -928 192 552 ) ( -898 262 552 ) ( -913 227 576 ) common/li_pv_v4a -12 1 67 1 1 0 1 7000 +} +// brush 3088 +{ +( -949 164 576 ) ( -864 280 544 ) ( -895 290 576 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -949 -32 576 ) ( -949 24 576 ) ( -864 -4 576 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -904 258 544 ) ( -884 250 544 ) ( -894 254 576 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -906 190 552 ) ( -930 200 552 ) ( -918 195 576 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -898 262 552 ) ( -928 192 552 ) ( -913 227 576 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +} +// brush 3089 +{ +( -949 164 576 ) ( -920 148 544 ) ( -864 280 544 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -920 148 592 ) ( -920 148 544 ) ( -949 164 576 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -864 280 544 ) ( -920 148 544 ) ( -920 148 592 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -949 164 576 ) ( -864 280 544 ) ( -864 280 592 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -949 -32 576 ) ( -949 24 576 ) ( -864 -4 576 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -930 200 544 ) ( -906 190 544 ) ( -918 195 576 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +} +// brush 3090 +{ +( -949 164 576 ) ( -864 280 544 ) ( -895 290 576 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -864 280 592 ) ( -864 280 544 ) ( -949 164 576 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -949 -32 576 ) ( -949 24 576 ) ( -864 -4 576 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -930 200 552 ) ( -906 190 552 ) ( -918 195 576 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +} +// brush 3091 +{ +( -949 164 576 ) ( -920 148 544 ) ( -864 280 544 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -864 280 544 ) ( -920 148 544 ) ( -920 148 592 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -949 164 576 ) ( -864 280 544 ) ( -864 280 592 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -949 -32 576 ) ( -949 24 576 ) ( -864 -4 576 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -884 250 544 ) ( -904 258 544 ) ( -894 254 576 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +} +// brush 3092 +{ +( -949 164 576 ) ( -864 280 544 ) ( -895 290 576 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -895 290 576 ) ( -864 280 544 ) ( -864 280 592 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -864 280 592 ) ( -864 280 544 ) ( -949 164 576 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -949 -32 576 ) ( -949 24 576 ) ( -864 -4 576 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +( -884 250 544 ) ( -904 258 544 ) ( -894 254 576 ) bricks/c_tn_m1 107 9 67 1 1 0 0 0 +} +// brush 3093 +{ +( -901 140 576 ) ( -816 256 544 ) ( -847 266 576 ) bricks/c_tn_m1 -76 -14 67 1 1.060000 0 0 0 +( -847 266 576 ) ( -816 256 544 ) ( -816 256 592 ) bricks/c_tn_m1 -98 -5 67 1 1.060000 0 0 0 +( -816 256 592 ) ( -816 256 544 ) ( -901 140 576 ) bricks/c_tn_m1 -70 24 67 1 1.060000 0 0 0 +( -901 -56 576 ) ( -901 0 576 ) ( -816 -28 576 ) bricks/c_tn_m1 -76 -14 67 1 1.060000 0 0 0 +} +// brush 3094 +{ +( -901 140 576 ) ( -872 124 544 ) ( -816 256 544 ) bricks/c_tn_m1 -76 -14 67 1 1.060000 0 0 0 +( -872 124 592 ) ( -872 124 544 ) ( -901 140 576 ) bricks/c_tn_m1 -98 -5 67 1 1.060000 0 0 0 +( -816 256 544 ) ( -872 124 544 ) ( -872 124 592 ) bricks/c_tn_m1 -70 24 67 1 1.060000 0 0 0 +( -901 140 576 ) ( -816 256 544 ) ( -816 256 592 ) bricks/c_tn_m1 -70 24 67 1 1.060000 0 0 0 +( -901 -56 576 ) ( -901 0 576 ) ( -816 -28 576 ) bricks/c_tn_m1 -76 -14 67 1 1.060000 0 0 0 +} +// brush 3095 +{ +( -1216 552 576 ) ( -1184 555 576 ) ( -1184 469 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 469 576 ) ( -1184 555 576 ) ( -1216 552 544 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1192 512 544 ) ( -1216 512 544 ) ( -1204 512 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 576 544 ) ( -1184 576 544 ) ( -1200 576 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1192 560 552 ) ( -1192 576 552 ) ( -1192 568 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 3096 +{ +( -1216 552 576 ) ( -1184 555 576 ) ( -1184 469 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1184 469 576 ) ( -1184 555 576 ) ( -1216 552 544 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1192 512 544 ) ( -1216 512 544 ) ( -1204 512 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1216 576 544 ) ( -1184 576 544 ) ( -1200 576 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1208 560 544 ) ( -1208 576 544 ) ( -1208 568 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1192 576 552 ) ( -1192 560 552 ) ( -1192 568 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3097 +{ +( -1216 552 576 ) ( -1184 555 576 ) ( -1184 469 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 472 576 ) ( -1216 472 544 ) ( -1216 512 544 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 469 576 ) ( -1184 555 576 ) ( -1216 552 544 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1192 512 544 ) ( -1216 512 544 ) ( -1204 512 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 576 544 ) ( -1184 576 544 ) ( -1200 576 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1208 576 544 ) ( -1208 560 544 ) ( -1208 568 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 3098 +{ +( -1216 552 576 ) ( -1184 555 576 ) ( -1184 469 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 472 576 ) ( -1216 472 544 ) ( -1216 512 544 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 469 576 ) ( -1184 555 576 ) ( -1216 552 544 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 832 544 ) ( -1184 832 544 ) ( -1200 832 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 576 544 ) ( -1216 576 544 ) ( -1200 576 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 3099 +{ +( -864 439 576 ) ( -864 585 576 ) ( -832 588 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 784 576 ) ( -832 1136 576 ) ( -832 1136 560 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 588 544 ) ( -864 585 576 ) ( -864 439 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -840 512 544 ) ( -864 512 544 ) ( -852 512 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -864 576 544 ) ( -848 576 544 ) ( -856 576 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -840 560 544 ) ( -840 576 544 ) ( -840 568 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3100 +{ +( -864 439 576 ) ( -864 585 576 ) ( -832 588 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -832 588 544 ) ( -864 585 576 ) ( -864 439 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -840 512 544 ) ( -864 512 544 ) ( -852 512 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -864 576 544 ) ( -848 576 544 ) ( -856 576 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -856 560 544 ) ( -856 576 544 ) ( -856 568 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -840 576 544 ) ( -840 560 544 ) ( -840 568 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3101 +{ +( -864 439 576 ) ( -864 585 576 ) ( -832 588 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 588 544 ) ( -864 585 576 ) ( -864 439 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -840 512 544 ) ( -864 512 544 ) ( -852 512 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -864 576 544 ) ( -848 576 544 ) ( -856 576 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -856 576 544 ) ( -856 560 544 ) ( -856 568 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3102 +{ +( -864 439 576 ) ( -864 585 576 ) ( -832 588 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 784 576 ) ( -832 1136 576 ) ( -832 1136 560 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 588 544 ) ( -864 585 576 ) ( -864 439 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -840 832 544 ) ( -832 832 544 ) ( -836 832 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -848 576 544 ) ( -864 576 544 ) ( -856 576 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3103 +{ +( -1216 552 576 ) ( -1184 555 576 ) ( -1184 469 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 472 576 ) ( -1216 472 544 ) ( -1216 512 544 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1184 469 576 ) ( -1184 555 576 ) ( -1216 552 544 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 472 576 ) ( -1184 469 576 ) ( -1216 472 544 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +( -1216 512 544 ) ( -1192 512 544 ) ( -1204 512 576 ) bricks/c_tn_m1 0 32 270 1 1 0 0 0 +} +// brush 3104 +{ +( -864 439 576 ) ( -864 585 576 ) ( -832 588 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 784 576 ) ( -832 1136 576 ) ( -832 1136 560 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 588 544 ) ( -864 585 576 ) ( -864 439 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -832 436 544 ) ( -864 439 576 ) ( -832 436 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -864 512 544 ) ( -840 512 544 ) ( -852 512 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3105 +{ +( -1300 -228 576 ) ( -1084 -12 576 ) ( -1060 -36 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1044 -20 576 ) ( -1044 -20 544 ) ( -1276 -252 544 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1084 -12 576 ) ( -1300 -228 576 ) ( -1276 -252 544 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1104 -80 544 ) ( -1128 -56 544 ) ( -1116 -68 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1328 240 544 ) ( -1304 216 544 ) ( -1316 228 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1110 -74 544 ) ( -1062 -26 544 ) ( -1086 -50 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +} +// brush 3106 +{ +( -1300 -228 576 ) ( -1084 -12 576 ) ( -1060 -36 576 ) common/li_pv_v4a 4 -2 45 1 1 0 1 7000 +( -1084 -12 576 ) ( -1300 -228 576 ) ( -1276 -252 544 ) common/li_pv_v4a 4 -2 45 1 1 0 1 7000 +( -1104 -80 544 ) ( -1128 -56 544 ) ( -1116 -68 576 ) common/li_pv_v4a 4 -2 45 1 1 0 1 7000 +( -1328 240 544 ) ( -1304 216 544 ) ( -1316 228 576 ) common/li_pv_v4a 4 -2 45 1 1 0 1 7000 +( -1122 -60 544 ) ( -1076 -14 544 ) ( -1099 -37 576 ) common/li_pv_v4a 4 -2 45 1 1 0 1 7000 +( -1062 -26 544 ) ( -1110 -74 544 ) ( -1086 -50 576 ) common/li_pv_v4a 4 -2 45 1 1 0 1 7000 +} +// brush 3107 +{ +( -1300 -228 576 ) ( -1084 -12 576 ) ( -1060 -36 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1084 -12 576 ) ( -1300 -228 576 ) ( -1276 -252 544 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1104 -80 544 ) ( -1128 -56 544 ) ( -1116 -68 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1328 240 544 ) ( -1304 216 544 ) ( -1316 228 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1076 -14 544 ) ( -1122 -60 544 ) ( -1099 -37 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +} +// brush 3108 +{ +( -1056 464 576 ) ( -1272 248 576 ) ( -1296 272 576 ) common/li_pv_v4a -4 5 225 1 1 0 1 7000 +( -1272 248 576 ) ( -1056 464 576 ) ( -1080 488 544 ) common/li_pv_v4a -4 5 225 1 1 0 1 7000 +( -1352 168 544 ) ( -1376 192 544 ) ( -1364 180 576 ) common/li_pv_v4a -4 5 225 1 1 0 1 7000 +( -1328 240 544 ) ( -1304 216 544 ) ( -1316 228 576 ) common/li_pv_v4a -4 5 225 1 1 0 1 7000 +( -1311 219 544 ) ( -1355 175 544 ) ( -1333 197 576 ) common/li_pv_v4a -4 5 225 1 1 0 1 7000 +( -1328 226 544 ) ( -1324 230 544 ) ( -1326 228 576 ) common/li_pv_v4a -4 5 225 1 1 0 1 7000 +} +// brush 3109 +{ +( -1056 464 576 ) ( -1272 248 576 ) ( -1296 272 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1312 256 576 ) ( -1312 256 544 ) ( -1080 488 544 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1272 248 576 ) ( -1056 464 576 ) ( -1080 488 544 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1352 168 544 ) ( -1376 192 544 ) ( -1364 180 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1328 240 544 ) ( -1304 216 544 ) ( -1316 228 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1324 230 544 ) ( -1328 226 544 ) ( -1326 228 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +} +// brush 3110 +{ +( -1056 464 576 ) ( -1272 248 576 ) ( -1296 272 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1272 248 576 ) ( -1056 464 576 ) ( -1080 488 544 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1352 168 544 ) ( -1376 192 544 ) ( -1364 180 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1328 240 544 ) ( -1304 216 544 ) ( -1316 228 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1355 175 544 ) ( -1311 219 544 ) ( -1333 197 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +} +// brush 3111 +{ +( -1296 224 576 ) ( -1512 8 576 ) ( -1536 32 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1512 8 576 ) ( -1296 224 576 ) ( -1320 248 544 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1592 -72 544 ) ( -1616 -48 544 ) ( -1604 -60 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1568 0 544 ) ( -1544 -24 544 ) ( -1556 -12 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1595 -65 544 ) ( -1551 -21 544 ) ( -1573 -43 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +} +// brush 3112 +{ +( -1296 224 576 ) ( -1512 8 576 ) ( -1536 32 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1552 16 576 ) ( -1552 16 544 ) ( -1320 248 544 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1512 8 576 ) ( -1296 224 576 ) ( -1320 248 544 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1592 -72 544 ) ( -1616 -48 544 ) ( -1604 -60 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1568 0 544 ) ( -1544 -24 544 ) ( -1556 -12 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1564 -10 544 ) ( -1568 -14 544 ) ( -1566 -12 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +} +// brush 3113 +{ +( -1296 224 576 ) ( -1512 8 576 ) ( -1536 32 576 ) common/li_pv_v4a -23 6 225 1 1 0 1 7000 +( -1512 8 576 ) ( -1296 224 576 ) ( -1320 248 544 ) common/li_pv_v4a -23 6 225 1 1 0 1 7000 +( -1592 -72 544 ) ( -1616 -48 544 ) ( -1604 -60 576 ) common/li_pv_v4a -23 6 225 1 1 0 1 7000 +( -1568 0 544 ) ( -1544 -24 544 ) ( -1556 -12 576 ) common/li_pv_v4a -23 6 225 1 1 0 1 7000 +( -1551 -21 544 ) ( -1595 -65 544 ) ( -1573 -43 576 ) common/li_pv_v4a -23 6 225 1 1 0 1 7000 +( -1568 -14 544 ) ( -1564 -10 544 ) ( -1566 -12 576 ) common/li_pv_v4a -23 6 225 1 1 0 1 7000 +} +// brush 3114 +{ +( -1296 224 576 ) ( -1512 8 576 ) ( -1536 32 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1552 16 576 ) ( -1552 16 544 ) ( -1320 248 544 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1512 8 576 ) ( -1296 224 576 ) ( -1320 248 544 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1544 -24 544 ) ( -1568 0 544 ) ( -1556 -12 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1376 192 544 ) ( -1352 168 544 ) ( -1364 180 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +} +// brush 3115 +{ +( -1528 -8 576 ) ( -1744 -224 576 ) ( -1768 -200 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1784 -216 576 ) ( -1784 -216 544 ) ( -1552 16 544 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1744 -224 576 ) ( -1528 -8 576 ) ( -1552 16 544 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1776 -256 544 ) ( -1800 -232 544 ) ( -1788 -244 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1616 -48 544 ) ( -1592 -72 544 ) ( -1604 -60 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +} +// brush 3116 +{ +( -1528 -8 576 ) ( -1744 -224 576 ) ( -1768 -200 576 ) common/li_pv_v4a -31 6 225 1 1 0 1 7000 +( -1744 -224 576 ) ( -1528 -8 576 ) ( -1552 16 544 ) common/li_pv_v4a -31 6 225 1 1 0 1 7000 +( -1824 -304 544 ) ( -1848 -280 544 ) ( -1836 -292 576 ) common/li_pv_v4a -31 6 225 1 1 0 1 7000 +( -1800 -232 544 ) ( -1776 -256 544 ) ( -1788 -244 576 ) common/li_pv_v4a -31 6 225 1 1 0 1 7000 +( -1783 -253 544 ) ( -1827 -297 544 ) ( -1805 -275 576 ) common/li_pv_v4a -31 6 225 1 1 0 1 7000 +( -1800 -246 544 ) ( -1796 -242 544 ) ( -1798 -244 576 ) common/li_pv_v4a -31 6 225 1 1 0 1 7000 +} +// brush 3117 +{ +( -1528 -8 576 ) ( -1744 -224 576 ) ( -1768 -200 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1784 -216 576 ) ( -1784 -216 544 ) ( -1552 16 544 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1744 -224 576 ) ( -1528 -8 576 ) ( -1552 16 544 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1824 -304 544 ) ( -1848 -280 544 ) ( -1836 -292 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1800 -232 544 ) ( -1776 -256 544 ) ( -1788 -244 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1796 -242 544 ) ( -1800 -246 544 ) ( -1798 -244 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +} +// brush 3118 +{ +( -1528 -8 576 ) ( -1744 -224 576 ) ( -1768 -200 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1744 -224 576 ) ( -1528 -8 576 ) ( -1552 16 544 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1824 -304 544 ) ( -1848 -280 544 ) ( -1836 -292 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1800 -232 544 ) ( -1776 -256 544 ) ( -1788 -244 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1827 -297 544 ) ( -1783 -253 544 ) ( -1805 -275 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +} +// brush 3119 +{ +( -1540 -468 576 ) ( -1324 -252 576 ) ( -1300 -276 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1284 -260 576 ) ( -1284 -260 544 ) ( -1516 -492 544 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1324 -252 576 ) ( -1540 -468 576 ) ( -1516 -492 544 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1544 -24 544 ) ( -1568 0 544 ) ( -1556 -12 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1376 192 544 ) ( -1352 168 544 ) ( -1364 180 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +} +// brush 3120 +{ +( -1540 -468 576 ) ( -1324 -252 576 ) ( -1300 -276 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1324 -252 576 ) ( -1540 -468 576 ) ( -1516 -492 544 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1344 -320 544 ) ( -1368 -296 544 ) ( -1356 -308 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1568 0 544 ) ( -1544 -24 544 ) ( -1556 -12 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1316 -254 544 ) ( -1362 -300 544 ) ( -1339 -277 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +} +// brush 3121 +{ +( -1540 -468 576 ) ( -1324 -252 576 ) ( -1300 -276 576 ) common/li_pv_v4a 23 -2 45 1 1 0 1 7000 +( -1324 -252 576 ) ( -1540 -468 576 ) ( -1516 -492 544 ) common/li_pv_v4a 23 -2 45 1 1 0 1 7000 +( -1344 -320 544 ) ( -1368 -296 544 ) ( -1356 -308 576 ) common/li_pv_v4a 23 -2 45 1 1 0 1 7000 +( -1568 0 544 ) ( -1544 -24 544 ) ( -1556 -12 576 ) common/li_pv_v4a 23 -2 45 1 1 0 1 7000 +( -1362 -300 544 ) ( -1316 -254 544 ) ( -1339 -277 576 ) common/li_pv_v4a 23 -2 45 1 1 0 1 7000 +( -1302 -266 544 ) ( -1350 -314 544 ) ( -1326 -290 576 ) common/li_pv_v4a 23 -2 45 1 1 0 1 7000 +} +// brush 3122 +{ +( -1540 -468 576 ) ( -1324 -252 576 ) ( -1300 -276 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1284 -260 576 ) ( -1284 -260 544 ) ( -1516 -492 544 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1324 -252 576 ) ( -1540 -468 576 ) ( -1516 -492 544 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1344 -320 544 ) ( -1368 -296 544 ) ( -1356 -308 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1568 0 544 ) ( -1544 -24 544 ) ( -1556 -12 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1350 -314 544 ) ( -1302 -266 544 ) ( -1326 -290 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +} +// brush 3123 +{ +( -1772 -700 576 ) ( -1556 -484 576 ) ( -1532 -508 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1516 -492 576 ) ( -1516 -492 544 ) ( -1748 -724 544 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1556 -484 576 ) ( -1772 -700 576 ) ( -1748 -724 544 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1576 -552 544 ) ( -1600 -528 544 ) ( -1588 -540 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1800 -232 544 ) ( -1776 -256 544 ) ( -1788 -244 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1582 -546 544 ) ( -1534 -498 544 ) ( -1558 -522 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +} +// brush 3124 +{ +( -1772 -700 576 ) ( -1556 -484 576 ) ( -1532 -508 576 ) common/li_pv_v4a 31 -2 45 1 1 0 1 7000 +( -1556 -484 576 ) ( -1772 -700 576 ) ( -1748 -724 544 ) common/li_pv_v4a 31 -2 45 1 1 0 1 7000 +( -1576 -552 544 ) ( -1600 -528 544 ) ( -1588 -540 576 ) common/li_pv_v4a 31 -2 45 1 1 0 1 7000 +( -1800 -232 544 ) ( -1776 -256 544 ) ( -1788 -244 576 ) common/li_pv_v4a 31 -2 45 1 1 0 1 7000 +( -1594 -532 544 ) ( -1548 -486 544 ) ( -1571 -509 576 ) common/li_pv_v4a 31 -2 45 1 1 0 1 7000 +( -1534 -498 544 ) ( -1582 -546 544 ) ( -1558 -522 576 ) common/li_pv_v4a 31 -2 45 1 1 0 1 7000 +} +// brush 3125 +{ +( -1772 -700 576 ) ( -1556 -484 576 ) ( -1532 -508 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1556 -484 576 ) ( -1772 -700 576 ) ( -1748 -724 544 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1576 -552 544 ) ( -1600 -528 544 ) ( -1588 -540 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1800 -232 544 ) ( -1776 -256 544 ) ( -1788 -244 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1548 -486 544 ) ( -1594 -532 544 ) ( -1571 -509 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +} +// brush 3126 +{ +( -1772 -700 576 ) ( -1556 -484 576 ) ( -1532 -508 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1516 -492 576 ) ( -1516 -492 544 ) ( -1748 -724 544 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1556 -484 576 ) ( -1772 -700 576 ) ( -1748 -724 544 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1776 -256 544 ) ( -1800 -232 544 ) ( -1788 -244 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1616 -48 544 ) ( -1592 -72 544 ) ( -1604 -60 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +} +// brush 3127 +{ +( -1760 -240 576 ) ( -1976 -456 576 ) ( -2000 -432 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1976 -456 576 ) ( -1760 -240 576 ) ( -1784 -216 544 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -2056 -536 544 ) ( -2080 -512 544 ) ( -2068 -524 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -2032 -464 544 ) ( -2008 -488 544 ) ( -2020 -476 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -2059 -529 544 ) ( -2015 -485 544 ) ( -2037 -507 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +} +// brush 3128 +{ +( -1760 -240 576 ) ( -1976 -456 576 ) ( -2000 -432 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -2016 -448 576 ) ( -2016 -448 544 ) ( -1784 -216 544 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1976 -456 576 ) ( -1760 -240 576 ) ( -1784 -216 544 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -2056 -536 544 ) ( -2080 -512 544 ) ( -2068 -524 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -2032 -464 544 ) ( -2008 -488 544 ) ( -2020 -476 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -2028 -474 544 ) ( -2032 -478 544 ) ( -2030 -476 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +} +// brush 3129 +{ +( -1760 -240 576 ) ( -1976 -456 576 ) ( -2000 -432 576 ) common/li_pv_v4a 25 6 225 1 1 0 1 7000 +( -1976 -456 576 ) ( -1760 -240 576 ) ( -1784 -216 544 ) common/li_pv_v4a 25 6 225 1 1 0 1 7000 +( -2056 -536 544 ) ( -2080 -512 544 ) ( -2068 -524 576 ) common/li_pv_v4a 25 6 225 1 1 0 1 7000 +( -2032 -464 544 ) ( -2008 -488 544 ) ( -2020 -476 576 ) common/li_pv_v4a 25 6 225 1 1 0 1 7000 +( -2015 -485 544 ) ( -2059 -529 544 ) ( -2037 -507 576 ) common/li_pv_v4a 25 6 225 1 1 0 1 7000 +( -2032 -478 544 ) ( -2028 -474 544 ) ( -2030 -476 576 ) common/li_pv_v4a 25 6 225 1 1 0 1 7000 +} +// brush 3130 +{ +( -1760 -240 576 ) ( -1976 -456 576 ) ( -2000 -432 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -2016 -448 576 ) ( -2016 -448 544 ) ( -1784 -216 544 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1976 -456 576 ) ( -1760 -240 576 ) ( -1784 -216 544 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -2008 -488 544 ) ( -2032 -464 544 ) ( -2020 -476 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1848 -280 544 ) ( -1824 -304 544 ) ( -1836 -292 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +} +// brush 3131 +{ +( -2004 -932 576 ) ( -1788 -716 576 ) ( -1764 -740 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1748 -724 576 ) ( -1748 -724 544 ) ( -1980 -956 544 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1788 -716 576 ) ( -2004 -932 576 ) ( -1980 -956 544 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -2008 -488 544 ) ( -2032 -464 544 ) ( -2020 -476 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1848 -280 544 ) ( -1824 -304 544 ) ( -1836 -292 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +} +// brush 3132 +{ +( -2004 -932 576 ) ( -1788 -716 576 ) ( -1764 -740 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1788 -716 576 ) ( -2004 -932 576 ) ( -1980 -956 544 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1808 -784 544 ) ( -1832 -760 544 ) ( -1820 -772 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -2032 -464 544 ) ( -2008 -488 544 ) ( -2020 -476 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1780 -718 544 ) ( -1826 -764 544 ) ( -1803 -741 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +} +// brush 3133 +{ +( -2004 -932 576 ) ( -1788 -716 576 ) ( -1764 -740 576 ) common/li_pv_v4a -25 -2 45 1 1 0 1 7000 +( -1788 -716 576 ) ( -2004 -932 576 ) ( -1980 -956 544 ) common/li_pv_v4a -25 -2 45 1 1 0 1 7000 +( -1808 -784 544 ) ( -1832 -760 544 ) ( -1820 -772 576 ) common/li_pv_v4a -25 -2 45 1 1 0 1 7000 +( -2032 -464 544 ) ( -2008 -488 544 ) ( -2020 -476 576 ) common/li_pv_v4a -25 -2 45 1 1 0 1 7000 +( -1826 -764 544 ) ( -1780 -718 544 ) ( -1803 -741 576 ) common/li_pv_v4a -25 -2 45 1 1 0 1 7000 +( -1766 -730 544 ) ( -1814 -778 544 ) ( -1790 -754 576 ) common/li_pv_v4a -25 -2 45 1 1 0 1 7000 +} +// brush 3134 +{ +( -2004 -932 576 ) ( -1788 -716 576 ) ( -1764 -740 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1748 -724 576 ) ( -1748 -724 544 ) ( -1980 -956 544 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1788 -716 576 ) ( -2004 -932 576 ) ( -1980 -956 544 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1808 -784 544 ) ( -1832 -760 544 ) ( -1820 -772 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -2032 -464 544 ) ( -2008 -488 544 ) ( -2020 -476 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1814 -778 544 ) ( -1766 -730 544 ) ( -1790 -754 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +} +// brush 3135 +{ +( -1920 -1096 576 ) ( -1952 -1099 576 ) ( -1952 -1013 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1920 -1016 576 ) ( -1920 -1016 544 ) ( -1920 -1056 544 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1952 -1013 576 ) ( -1952 -1099 576 ) ( -1920 -1096 544 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1952 -1024 544 ) ( -1928 -1024 544 ) ( -1940 -1024 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1920 -1088 544 ) ( -1936 -1088 544 ) ( -1928 -1088 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1928 -1040 544 ) ( -1928 -1024 544 ) ( -1928 -1032 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3136 +{ +( -1920 -1096 576 ) ( -1952 -1099 576 ) ( -1952 -1013 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1952 -1013 576 ) ( -1952 -1099 576 ) ( -1920 -1096 544 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1952 -1024 544 ) ( -1928 -1024 544 ) ( -1940 -1024 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1920 -1088 544 ) ( -1936 -1088 544 ) ( -1928 -1088 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1944 -1032 544 ) ( -1944 -1024 544 ) ( -1944 -1028 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1928 -1024 544 ) ( -1928 -1040 544 ) ( -1928 -1032 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3137 +{ +( -1920 -1096 576 ) ( -1952 -1099 576 ) ( -1952 -1013 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1952 -1013 576 ) ( -1952 -1099 576 ) ( -1920 -1096 544 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1952 -1024 544 ) ( -1928 -1024 544 ) ( -1940 -1024 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1920 -1088 544 ) ( -1936 -1088 544 ) ( -1928 -1088 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1944 -1024 544 ) ( -1944 -1032 544 ) ( -1944 -1028 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3138 +{ +( -1920 -1096 576 ) ( -1952 -1099 576 ) ( -1952 -1013 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1920 -1016 576 ) ( -1920 -1016 544 ) ( -1920 -1056 544 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1952 -1013 576 ) ( -1952 -1099 576 ) ( -1920 -1096 544 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1920 -1096 544 ) ( -1952 -1099 576 ) ( -1920 -1096 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1936 -1088 544 ) ( -1920 -1088 544 ) ( -1928 -1088 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3139 +{ +( -1920 -1096 576 ) ( -1952 -1099 576 ) ( -1952 -1013 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1920 -1016 576 ) ( -1920 -1016 544 ) ( -1920 -1056 544 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1952 -1013 576 ) ( -1952 -1099 576 ) ( -1920 -1096 544 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1920 -1016 576 ) ( -1952 -1013 576 ) ( -1920 -1016 544 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -1928 -1024 544 ) ( -1952 -1024 544 ) ( -1940 -1024 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3140 +{ +( -1612 -1572 576 ) ( -1828 -1356 576 ) ( -1804 -1332 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1828 -1356 576 ) ( -1612 -1572 576 ) ( -1588 -1548 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1760 -1376 544 ) ( -1784 -1400 544 ) ( -1772 -1388 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -2080 -1600 544 ) ( -2056 -1576 544 ) ( -2068 -1588 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1826 -1348 544 ) ( -1780 -1394 544 ) ( -1803 -1371 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +} +// brush 3141 +{ +( -1612 -1572 576 ) ( -1828 -1356 576 ) ( -1804 -1332 576 ) common/li_pv_v4a -17 3 135 1 1 0 1 7000 +( -1828 -1356 576 ) ( -1612 -1572 576 ) ( -1588 -1548 544 ) common/li_pv_v4a -17 3 135 1 1 0 1 7000 +( -1760 -1376 544 ) ( -1784 -1400 544 ) ( -1772 -1388 576 ) common/li_pv_v4a -17 3 135 1 1 0 1 7000 +( -2080 -1600 544 ) ( -2056 -1576 544 ) ( -2068 -1588 576 ) common/li_pv_v4a -17 3 135 1 1 0 1 7000 +( -1780 -1394 544 ) ( -1826 -1348 544 ) ( -1803 -1371 576 ) common/li_pv_v4a -17 3 135 1 1 0 1 7000 +( -1814 -1334 544 ) ( -1766 -1382 544 ) ( -1790 -1358 576 ) common/li_pv_v4a -17 3 135 1 1 0 1 7000 +} +// brush 3142 +{ +( -1612 -1572 576 ) ( -1828 -1356 576 ) ( -1804 -1332 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1820 -1316 576 ) ( -1820 -1316 544 ) ( -1588 -1548 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1828 -1356 576 ) ( -1612 -1572 576 ) ( -1588 -1548 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1760 -1376 544 ) ( -1784 -1400 544 ) ( -1772 -1388 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -2080 -1600 544 ) ( -2056 -1576 544 ) ( -2068 -1588 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1766 -1382 544 ) ( -1814 -1334 544 ) ( -1790 -1358 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +} +// brush 3143 +{ +( -1356 -1828 576 ) ( -1572 -1612 576 ) ( -1548 -1588 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1564 -1572 576 ) ( -1564 -1572 544 ) ( -1332 -1804 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1572 -1612 576 ) ( -1356 -1828 576 ) ( -1332 -1804 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1504 -1632 544 ) ( -1528 -1656 544 ) ( -1516 -1644 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1824 -1856 544 ) ( -1800 -1832 544 ) ( -1812 -1844 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1510 -1638 544 ) ( -1558 -1590 544 ) ( -1534 -1614 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +} +// brush 3144 +{ +( -1356 -1828 576 ) ( -1572 -1612 576 ) ( -1548 -1588 576 ) common/li_pv_v4a 24 3 135 1 1 0 1 7000 +( -1572 -1612 576 ) ( -1356 -1828 576 ) ( -1332 -1804 544 ) common/li_pv_v4a 24 3 135 1 1 0 1 7000 +( -1504 -1632 544 ) ( -1528 -1656 544 ) ( -1516 -1644 576 ) common/li_pv_v4a 24 3 135 1 1 0 1 7000 +( -1824 -1856 544 ) ( -1800 -1832 544 ) ( -1812 -1844 576 ) common/li_pv_v4a 24 3 135 1 1 0 1 7000 +( -1524 -1650 544 ) ( -1570 -1604 544 ) ( -1547 -1627 576 ) common/li_pv_v4a 24 3 135 1 1 0 1 7000 +( -1558 -1590 544 ) ( -1510 -1638 544 ) ( -1534 -1614 576 ) common/li_pv_v4a 24 3 135 1 1 0 1 7000 +} +// brush 3145 +{ +( -1356 -1828 576 ) ( -1572 -1612 576 ) ( -1548 -1588 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1572 -1612 576 ) ( -1356 -1828 576 ) ( -1332 -1804 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1504 -1632 544 ) ( -1528 -1656 544 ) ( -1516 -1644 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1824 -1856 544 ) ( -1800 -1832 544 ) ( -1812 -1844 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1570 -1604 544 ) ( -1524 -1650 544 ) ( -1547 -1627 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +} +// brush 3146 +{ +( -1356 -1828 576 ) ( -1572 -1612 576 ) ( -1548 -1588 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1564 -1572 576 ) ( -1564 -1572 544 ) ( -1332 -1804 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1572 -1612 576 ) ( -1356 -1828 576 ) ( -1332 -1804 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1800 -1832 544 ) ( -1824 -1856 544 ) ( -1812 -1844 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -2032 -1648 544 ) ( -2008 -1624 544 ) ( -2020 -1636 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +} +// brush 3147 +{ +( -1116 -2068 576 ) ( -1332 -1852 576 ) ( -1308 -1828 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1324 -1812 576 ) ( -1324 -1812 544 ) ( -1092 -2044 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1332 -1852 576 ) ( -1116 -2068 576 ) ( -1092 -2044 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1560 -2072 544 ) ( -1584 -2096 544 ) ( -1572 -2084 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1776 -1904 544 ) ( -1752 -1880 544 ) ( -1764 -1892 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +} +// brush 3148 +{ +( -1116 -2068 576 ) ( -1332 -1852 576 ) ( -1308 -1828 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1332 -1852 576 ) ( -1116 -2068 576 ) ( -1092 -2044 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1264 -1872 544 ) ( -1288 -1896 544 ) ( -1276 -1884 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1584 -2096 544 ) ( -1560 -2072 544 ) ( -1572 -2084 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1330 -1844 544 ) ( -1284 -1890 544 ) ( -1307 -1867 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +} +// brush 3149 +{ +( -1116 -2068 576 ) ( -1332 -1852 576 ) ( -1308 -1828 576 ) common/li_pv_v4a -20 3 135 1 1 0 1 7000 +( -1332 -1852 576 ) ( -1116 -2068 576 ) ( -1092 -2044 544 ) common/li_pv_v4a -20 3 135 1 1 0 1 7000 +( -1264 -1872 544 ) ( -1288 -1896 544 ) ( -1276 -1884 576 ) common/li_pv_v4a -20 3 135 1 1 0 1 7000 +( -1584 -2096 544 ) ( -1560 -2072 544 ) ( -1572 -2084 576 ) common/li_pv_v4a -20 3 135 1 1 0 1 7000 +( -1284 -1890 544 ) ( -1330 -1844 544 ) ( -1307 -1867 576 ) common/li_pv_v4a -20 3 135 1 1 0 1 7000 +( -1318 -1830 544 ) ( -1270 -1878 544 ) ( -1294 -1854 576 ) common/li_pv_v4a -20 3 135 1 1 0 1 7000 +} +// brush 3150 +{ +( -1116 -2068 576 ) ( -1332 -1852 576 ) ( -1308 -1828 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1324 -1812 576 ) ( -1324 -1812 544 ) ( -1092 -2044 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1332 -1852 576 ) ( -1116 -2068 576 ) ( -1092 -2044 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1264 -1872 544 ) ( -1288 -1896 544 ) ( -1276 -1884 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1584 -2096 544 ) ( -1560 -2072 544 ) ( -1572 -2084 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1270 -1878 544 ) ( -1318 -1830 544 ) ( -1294 -1854 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +} +// brush 3151 +{ +( -876 -2308 576 ) ( -1092 -2092 576 ) ( -1068 -2068 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1084 -2052 576 ) ( -1084 -2052 544 ) ( -852 -2284 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1092 -2092 576 ) ( -876 -2308 576 ) ( -852 -2284 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1024 -2112 544 ) ( -1048 -2136 544 ) ( -1036 -2124 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1344 -2336 544 ) ( -1320 -2312 544 ) ( -1332 -2324 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1030 -2118 544 ) ( -1078 -2070 544 ) ( -1054 -2094 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +} +// brush 3152 +{ +( -876 -2308 576 ) ( -1092 -2092 576 ) ( -1068 -2068 576 ) common/li_pv_v4a 0 3 135 1 1 0 1 7000 +( -1092 -2092 576 ) ( -876 -2308 576 ) ( -852 -2284 544 ) common/li_pv_v4a 0 3 135 1 1 0 1 7000 +( -1024 -2112 544 ) ( -1048 -2136 544 ) ( -1036 -2124 576 ) common/li_pv_v4a 0 3 135 1 1 0 1 7000 +( -1344 -2336 544 ) ( -1320 -2312 544 ) ( -1332 -2324 576 ) common/li_pv_v4a 0 3 135 1 1 0 1 7000 +( -1044 -2130 544 ) ( -1090 -2084 544 ) ( -1067 -2107 576 ) common/li_pv_v4a 0 3 135 1 1 0 1 7000 +( -1078 -2070 544 ) ( -1030 -2118 544 ) ( -1054 -2094 576 ) common/li_pv_v4a 0 3 135 1 1 0 1 7000 +} +// brush 3153 +{ +( -876 -2308 576 ) ( -1092 -2092 576 ) ( -1068 -2068 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1092 -2092 576 ) ( -876 -2308 576 ) ( -852 -2284 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1024 -2112 544 ) ( -1048 -2136 544 ) ( -1036 -2124 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1344 -2336 544 ) ( -1320 -2312 544 ) ( -1332 -2324 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1090 -2084 544 ) ( -1044 -2130 544 ) ( -1067 -2107 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +} +// brush 3154 +{ +( -876 -2308 576 ) ( -1092 -2092 576 ) ( -1068 -2068 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1084 -2052 576 ) ( -1084 -2052 544 ) ( -852 -2284 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1092 -2092 576 ) ( -876 -2308 576 ) ( -852 -2284 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1320 -2312 544 ) ( -1344 -2336 544 ) ( -1332 -2324 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1536 -2144 544 ) ( -1512 -2120 544 ) ( -1524 -2132 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +} +// brush 3155 +{ +( -636 -2548 576 ) ( -852 -2332 576 ) ( -828 -2308 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -844 -2292 576 ) ( -844 -2292 544 ) ( -612 -2524 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -852 -2332 576 ) ( -636 -2548 576 ) ( -612 -2524 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1080 -2552 544 ) ( -1104 -2576 544 ) ( -1092 -2564 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1296 -2384 544 ) ( -1272 -2360 544 ) ( -1284 -2372 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +} +// brush 3156 +{ +( -636 -2548 576 ) ( -852 -2332 576 ) ( -828 -2308 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -852 -2332 576 ) ( -636 -2548 576 ) ( -612 -2524 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -784 -2352 544 ) ( -808 -2376 544 ) ( -796 -2364 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1104 -2576 544 ) ( -1080 -2552 544 ) ( -1092 -2564 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -850 -2324 544 ) ( -804 -2370 544 ) ( -827 -2347 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +} +// brush 3157 +{ +( -636 -2548 576 ) ( -852 -2332 576 ) ( -828 -2308 576 ) common/li_pv_v4a 19 3 135 1 1 0 1 7000 +( -852 -2332 576 ) ( -636 -2548 576 ) ( -612 -2524 544 ) common/li_pv_v4a 19 3 135 1 1 0 1 7000 +( -784 -2352 544 ) ( -808 -2376 544 ) ( -796 -2364 576 ) common/li_pv_v4a 19 3 135 1 1 0 1 7000 +( -1104 -2576 544 ) ( -1080 -2552 544 ) ( -1092 -2564 576 ) common/li_pv_v4a 19 3 135 1 1 0 1 7000 +( -804 -2370 544 ) ( -850 -2324 544 ) ( -827 -2347 576 ) common/li_pv_v4a 19 3 135 1 1 0 1 7000 +( -838 -2310 544 ) ( -790 -2358 544 ) ( -814 -2334 576 ) common/li_pv_v4a 19 3 135 1 1 0 1 7000 +} +// brush 3158 +{ +( -636 -2548 576 ) ( -852 -2332 576 ) ( -828 -2308 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -844 -2292 576 ) ( -844 -2292 544 ) ( -612 -2524 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -852 -2332 576 ) ( -636 -2548 576 ) ( -612 -2524 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -784 -2352 544 ) ( -808 -2376 544 ) ( -796 -2364 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1104 -2576 544 ) ( -1080 -2552 544 ) ( -1092 -2564 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -790 -2358 544 ) ( -838 -2310 544 ) ( -814 -2334 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +} +// brush 3159 +{ +( -396 -2788 576 ) ( -612 -2572 576 ) ( -588 -2548 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -604 -2532 576 ) ( -604 -2532 544 ) ( -372 -2764 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -612 -2572 576 ) ( -396 -2788 576 ) ( -372 -2764 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -544 -2592 544 ) ( -568 -2616 544 ) ( -556 -2604 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -864 -2816 544 ) ( -840 -2792 544 ) ( -852 -2804 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -550 -2598 544 ) ( -598 -2550 544 ) ( -574 -2574 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +} +// brush 3160 +{ +( -396 -2788 576 ) ( -612 -2572 576 ) ( -588 -2548 576 ) common/li_pv_v4a -26 3 135 1 1 0 1 7000 +( -612 -2572 576 ) ( -396 -2788 576 ) ( -372 -2764 544 ) common/li_pv_v4a -26 3 135 1 1 0 1 7000 +( -544 -2592 544 ) ( -568 -2616 544 ) ( -556 -2604 576 ) common/li_pv_v4a -26 3 135 1 1 0 1 7000 +( -864 -2816 544 ) ( -840 -2792 544 ) ( -852 -2804 576 ) common/li_pv_v4a -26 3 135 1 1 0 1 7000 +( -564 -2610 544 ) ( -610 -2564 544 ) ( -587 -2587 576 ) common/li_pv_v4a -26 3 135 1 1 0 1 7000 +( -598 -2550 544 ) ( -550 -2598 544 ) ( -574 -2574 576 ) common/li_pv_v4a -26 3 135 1 1 0 1 7000 +} +// brush 3161 +{ +( -396 -2788 576 ) ( -612 -2572 576 ) ( -588 -2548 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -612 -2572 576 ) ( -396 -2788 576 ) ( -372 -2764 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -544 -2592 544 ) ( -568 -2616 544 ) ( -556 -2604 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -864 -2816 544 ) ( -840 -2792 544 ) ( -852 -2804 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -610 -2564 544 ) ( -564 -2610 544 ) ( -587 -2587 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +} +// brush 3162 +{ +( -396 -2788 576 ) ( -612 -2572 576 ) ( -588 -2548 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -604 -2532 576 ) ( -604 -2532 544 ) ( -372 -2764 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -612 -2572 576 ) ( -396 -2788 576 ) ( -372 -2764 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -840 -2792 544 ) ( -864 -2816 544 ) ( -852 -2804 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1056 -2624 544 ) ( -1032 -2600 544 ) ( -1044 -2612 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +} +// brush 3163 +{ +( -2304 -1328 576 ) ( -2088 -1544 576 ) ( -2112 -1568 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -2088 -1544 576 ) ( -2304 -1328 576 ) ( -2328 -1352 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -2008 -1624 544 ) ( -2032 -1648 544 ) ( -2020 -1636 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -2080 -1600 544 ) ( -2056 -1576 544 ) ( -2068 -1588 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -2015 -1627 544 ) ( -2059 -1583 544 ) ( -2037 -1605 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +} +// brush 3164 +{ +( -2304 -1328 576 ) ( -2088 -1544 576 ) ( -2112 -1568 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -2096 -1584 576 ) ( -2096 -1584 544 ) ( -2328 -1352 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -2088 -1544 576 ) ( -2304 -1328 576 ) ( -2328 -1352 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -2008 -1624 544 ) ( -2032 -1648 544 ) ( -2020 -1636 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -2080 -1600 544 ) ( -2056 -1576 544 ) ( -2068 -1588 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -2070 -1596 544 ) ( -2066 -1600 544 ) ( -2068 -1598 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +} +// brush 3165 +{ +( -2304 -1328 576 ) ( -2088 -1544 576 ) ( -2112 -1568 576 ) common/li_pv_v4a 17 0 315 1 1 0 1 7000 +( -2088 -1544 576 ) ( -2304 -1328 576 ) ( -2328 -1352 544 ) common/li_pv_v4a 17 0 315 1 1 0 1 7000 +( -2008 -1624 544 ) ( -2032 -1648 544 ) ( -2020 -1636 576 ) common/li_pv_v4a 17 0 315 1 1 0 1 7000 +( -2080 -1600 544 ) ( -2056 -1576 544 ) ( -2068 -1588 576 ) common/li_pv_v4a 17 0 315 1 1 0 1 7000 +( -2059 -1583 544 ) ( -2015 -1627 544 ) ( -2037 -1605 576 ) common/li_pv_v4a 17 0 315 1 1 0 1 7000 +( -2066 -1600 544 ) ( -2070 -1596 544 ) ( -2068 -1598 576 ) common/li_pv_v4a 17 0 315 1 1 0 1 7000 +} +// brush 3166 +{ +( -2048 -1584 576 ) ( -1832 -1800 576 ) ( -1856 -1824 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1840 -1840 576 ) ( -1840 -1840 544 ) ( -2072 -1608 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1832 -1800 576 ) ( -2048 -1584 576 ) ( -2072 -1608 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1800 -1832 544 ) ( -1824 -1856 544 ) ( -1812 -1844 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -2032 -1648 544 ) ( -2008 -1624 544 ) ( -2020 -1636 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +} +// brush 3167 +{ +( -2048 -1584 576 ) ( -1832 -1800 576 ) ( -1856 -1824 576 ) common/li_pv_v4a -25 0 315 1 1 0 1 7000 +( -1832 -1800 576 ) ( -2048 -1584 576 ) ( -2072 -1608 544 ) common/li_pv_v4a -25 0 315 1 1 0 1 7000 +( -1752 -1880 544 ) ( -1776 -1904 544 ) ( -1764 -1892 576 ) common/li_pv_v4a -25 0 315 1 1 0 1 7000 +( -1824 -1856 544 ) ( -1800 -1832 544 ) ( -1812 -1844 576 ) common/li_pv_v4a -25 0 315 1 1 0 1 7000 +( -1803 -1839 544 ) ( -1759 -1883 544 ) ( -1781 -1861 576 ) common/li_pv_v4a -25 0 315 1 1 0 1 7000 +( -1810 -1856 544 ) ( -1814 -1852 544 ) ( -1812 -1854 576 ) common/li_pv_v4a -25 0 315 1 1 0 1 7000 +} +// brush 3168 +{ +( -2048 -1584 576 ) ( -1832 -1800 576 ) ( -1856 -1824 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1840 -1840 576 ) ( -1840 -1840 544 ) ( -2072 -1608 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1832 -1800 576 ) ( -2048 -1584 576 ) ( -2072 -1608 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1752 -1880 544 ) ( -1776 -1904 544 ) ( -1764 -1892 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1824 -1856 544 ) ( -1800 -1832 544 ) ( -1812 -1844 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1814 -1852 544 ) ( -1810 -1856 544 ) ( -1812 -1854 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +} +// brush 3169 +{ +( -2048 -1584 576 ) ( -1832 -1800 576 ) ( -1856 -1824 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1832 -1800 576 ) ( -2048 -1584 576 ) ( -2072 -1608 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1752 -1880 544 ) ( -1776 -1904 544 ) ( -1764 -1892 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1824 -1856 544 ) ( -1800 -1832 544 ) ( -1812 -1844 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1759 -1883 544 ) ( -1803 -1839 544 ) ( -1781 -1861 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +} +// brush 3170 +{ +( -1808 -1824 576 ) ( -1592 -2040 576 ) ( -1616 -2064 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1592 -2040 576 ) ( -1808 -1824 576 ) ( -1832 -1848 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1512 -2120 544 ) ( -1536 -2144 544 ) ( -1524 -2132 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1584 -2096 544 ) ( -1560 -2072 544 ) ( -1572 -2084 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1519 -2123 544 ) ( -1563 -2079 544 ) ( -1541 -2101 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +} +// brush 3171 +{ +( -1808 -1824 576 ) ( -1592 -2040 576 ) ( -1616 -2064 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1600 -2080 576 ) ( -1600 -2080 544 ) ( -1832 -1848 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1592 -2040 576 ) ( -1808 -1824 576 ) ( -1832 -1848 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1512 -2120 544 ) ( -1536 -2144 544 ) ( -1524 -2132 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1584 -2096 544 ) ( -1560 -2072 544 ) ( -1572 -2084 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1574 -2092 544 ) ( -1570 -2096 544 ) ( -1572 -2094 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +} +// brush 3172 +{ +( -1808 -1824 576 ) ( -1592 -2040 576 ) ( -1616 -2064 576 ) common/li_pv_v4a 20 0 315 1 1 0 1 7000 +( -1592 -2040 576 ) ( -1808 -1824 576 ) ( -1832 -1848 544 ) common/li_pv_v4a 20 0 315 1 1 0 1 7000 +( -1512 -2120 544 ) ( -1536 -2144 544 ) ( -1524 -2132 576 ) common/li_pv_v4a 20 0 315 1 1 0 1 7000 +( -1584 -2096 544 ) ( -1560 -2072 544 ) ( -1572 -2084 576 ) common/li_pv_v4a 20 0 315 1 1 0 1 7000 +( -1563 -2079 544 ) ( -1519 -2123 544 ) ( -1541 -2101 576 ) common/li_pv_v4a 20 0 315 1 1 0 1 7000 +( -1570 -2096 544 ) ( -1574 -2092 544 ) ( -1572 -2094 576 ) common/li_pv_v4a 20 0 315 1 1 0 1 7000 +} +// brush 3173 +{ +( -1808 -1824 576 ) ( -1592 -2040 576 ) ( -1616 -2064 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1600 -2080 576 ) ( -1600 -2080 544 ) ( -1832 -1848 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1592 -2040 576 ) ( -1808 -1824 576 ) ( -1832 -1848 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1560 -2072 544 ) ( -1584 -2096 544 ) ( -1572 -2084 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1776 -1904 544 ) ( -1752 -1880 544 ) ( -1764 -1892 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +} +// brush 3174 +{ +( -1568 -2064 576 ) ( -1352 -2280 576 ) ( -1376 -2304 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1360 -2320 576 ) ( -1360 -2320 544 ) ( -1592 -2088 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1352 -2280 576 ) ( -1568 -2064 576 ) ( -1592 -2088 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1320 -2312 544 ) ( -1344 -2336 544 ) ( -1332 -2324 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1536 -2144 544 ) ( -1512 -2120 544 ) ( -1524 -2132 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +} +// brush 3175 +{ +( -1568 -2064 576 ) ( -1352 -2280 576 ) ( -1376 -2304 576 ) common/li_pv_v4a 0 0 315 1 1 0 1 7000 +( -1352 -2280 576 ) ( -1568 -2064 576 ) ( -1592 -2088 544 ) common/li_pv_v4a 0 0 315 1 1 0 1 7000 +( -1272 -2360 544 ) ( -1296 -2384 544 ) ( -1284 -2372 576 ) common/li_pv_v4a 0 0 315 1 1 0 1 7000 +( -1344 -2336 544 ) ( -1320 -2312 544 ) ( -1332 -2324 576 ) common/li_pv_v4a 0 0 315 1 1 0 1 7000 +( -1323 -2319 544 ) ( -1279 -2363 544 ) ( -1301 -2341 576 ) common/li_pv_v4a 0 0 315 1 1 0 1 7000 +( -1330 -2336 544 ) ( -1334 -2332 544 ) ( -1332 -2334 576 ) common/li_pv_v4a 0 0 315 1 1 0 1 7000 +} +// brush 3176 +{ +( -1568 -2064 576 ) ( -1352 -2280 576 ) ( -1376 -2304 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1360 -2320 576 ) ( -1360 -2320 544 ) ( -1592 -2088 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1352 -2280 576 ) ( -1568 -2064 576 ) ( -1592 -2088 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1272 -2360 544 ) ( -1296 -2384 544 ) ( -1284 -2372 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1344 -2336 544 ) ( -1320 -2312 544 ) ( -1332 -2324 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1334 -2332 544 ) ( -1330 -2336 544 ) ( -1332 -2334 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +} +// brush 3177 +{ +( -1568 -2064 576 ) ( -1352 -2280 576 ) ( -1376 -2304 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1352 -2280 576 ) ( -1568 -2064 576 ) ( -1592 -2088 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1272 -2360 544 ) ( -1296 -2384 544 ) ( -1284 -2372 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1344 -2336 544 ) ( -1320 -2312 544 ) ( -1332 -2324 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1279 -2363 544 ) ( -1323 -2319 544 ) ( -1301 -2341 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +} +// brush 3178 +{ +( -1328 -2304 576 ) ( -1112 -2520 576 ) ( -1136 -2544 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1112 -2520 576 ) ( -1328 -2304 576 ) ( -1352 -2328 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1032 -2600 544 ) ( -1056 -2624 544 ) ( -1044 -2612 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1104 -2576 544 ) ( -1080 -2552 544 ) ( -1092 -2564 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1039 -2603 544 ) ( -1083 -2559 544 ) ( -1061 -2581 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +} +// brush 3179 +{ +( -1328 -2304 576 ) ( -1112 -2520 576 ) ( -1136 -2544 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1120 -2560 576 ) ( -1120 -2560 544 ) ( -1352 -2328 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1112 -2520 576 ) ( -1328 -2304 576 ) ( -1352 -2328 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1032 -2600 544 ) ( -1056 -2624 544 ) ( -1044 -2612 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1104 -2576 544 ) ( -1080 -2552 544 ) ( -1092 -2564 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1094 -2572 544 ) ( -1090 -2576 544 ) ( -1092 -2574 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +} +// brush 3180 +{ +( -1328 -2304 576 ) ( -1112 -2520 576 ) ( -1136 -2544 576 ) common/li_pv_v4a -19 0 315 1 1 0 1 7000 +( -1112 -2520 576 ) ( -1328 -2304 576 ) ( -1352 -2328 544 ) common/li_pv_v4a -19 0 315 1 1 0 1 7000 +( -1032 -2600 544 ) ( -1056 -2624 544 ) ( -1044 -2612 576 ) common/li_pv_v4a -19 0 315 1 1 0 1 7000 +( -1104 -2576 544 ) ( -1080 -2552 544 ) ( -1092 -2564 576 ) common/li_pv_v4a -19 0 315 1 1 0 1 7000 +( -1083 -2559 544 ) ( -1039 -2603 544 ) ( -1061 -2581 576 ) common/li_pv_v4a -19 0 315 1 1 0 1 7000 +( -1090 -2576 544 ) ( -1094 -2572 544 ) ( -1092 -2574 576 ) common/li_pv_v4a -19 0 315 1 1 0 1 7000 +} +// brush 3181 +{ +( -1328 -2304 576 ) ( -1112 -2520 576 ) ( -1136 -2544 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1120 -2560 576 ) ( -1120 -2560 544 ) ( -1352 -2328 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1112 -2520 576 ) ( -1328 -2304 576 ) ( -1352 -2328 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1080 -2552 544 ) ( -1104 -2576 544 ) ( -1092 -2564 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1296 -2384 544 ) ( -1272 -2360 544 ) ( -1284 -2372 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +} +// brush 3182 +{ +( -1088 -2544 576 ) ( -872 -2760 576 ) ( -896 -2784 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -880 -2800 576 ) ( -880 -2800 544 ) ( -1112 -2568 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -872 -2760 576 ) ( -1088 -2544 576 ) ( -1112 -2568 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -840 -2792 544 ) ( -864 -2816 544 ) ( -852 -2804 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -1056 -2624 544 ) ( -1032 -2600 544 ) ( -1044 -2612 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +} +// brush 3183 +{ +( -1088 -2544 576 ) ( -872 -2760 576 ) ( -896 -2784 576 ) common/li_pv_v4a 26 0 315 1 1 0 1 7000 +( -872 -2760 576 ) ( -1088 -2544 576 ) ( -1112 -2568 544 ) common/li_pv_v4a 26 0 315 1 1 0 1 7000 +( -792 -2840 544 ) ( -816 -2864 544 ) ( -804 -2852 576 ) common/li_pv_v4a 26 0 315 1 1 0 1 7000 +( -864 -2816 544 ) ( -840 -2792 544 ) ( -852 -2804 576 ) common/li_pv_v4a 26 0 315 1 1 0 1 7000 +( -843 -2799 544 ) ( -799 -2843 544 ) ( -821 -2821 576 ) common/li_pv_v4a 26 0 315 1 1 0 1 7000 +( -850 -2816 544 ) ( -854 -2812 544 ) ( -852 -2814 576 ) common/li_pv_v4a 26 0 315 1 1 0 1 7000 +} +// brush 3184 +{ +( -1088 -2544 576 ) ( -872 -2760 576 ) ( -896 -2784 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -880 -2800 576 ) ( -880 -2800 544 ) ( -1112 -2568 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -872 -2760 576 ) ( -1088 -2544 576 ) ( -1112 -2568 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -792 -2840 544 ) ( -816 -2864 544 ) ( -804 -2852 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -864 -2816 544 ) ( -840 -2792 544 ) ( -852 -2804 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -854 -2812 544 ) ( -850 -2816 544 ) ( -852 -2814 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +} +// brush 3185 +{ +( -1088 -2544 576 ) ( -872 -2760 576 ) ( -896 -2784 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -872 -2760 576 ) ( -1088 -2544 576 ) ( -1112 -2568 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -792 -2840 544 ) ( -816 -2864 544 ) ( -804 -2852 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -864 -2816 544 ) ( -840 -2792 544 ) ( -852 -2804 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -799 -2843 544 ) ( -843 -2799 544 ) ( -821 -2821 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +} +// brush 3186 +{ +( -672 -3093 576 ) ( -672 -3179 576 ) ( -704 -3176 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -704 -3176 544 ) ( -672 -3179 576 ) ( -672 -3093 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -696 -3104 544 ) ( -680 -3104 544 ) ( -688 -3104 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -688 -3168 544 ) ( -704 -3168 544 ) ( -696 -3168 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -680 -3112 552 ) ( -680 -3104 552 ) ( -680 -3108 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 3187 +{ +( -672 -3093 576 ) ( -672 -3179 576 ) ( -704 -3176 576 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -704 -3176 544 ) ( -672 -3179 576 ) ( -672 -3093 576 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -696 -3104 544 ) ( -680 -3104 544 ) ( -688 -3104 576 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -688 -3168 544 ) ( -704 -3168 544 ) ( -696 -3168 576 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -696 -3112 544 ) ( -696 -3104 544 ) ( -696 -3108 576 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +( -680 -3104 552 ) ( -680 -3112 552 ) ( -680 -3108 576 ) common/li_pv_v4a 32 8 90 1 1 0 1 7000 +} +// brush 3188 +{ +( -672 -3093 576 ) ( -672 -3179 576 ) ( -704 -3176 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -704 -2952 544 ) ( -704 -2952 576 ) ( -704 -3208 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -704 -3176 544 ) ( -672 -3179 576 ) ( -672 -3093 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -696 -3104 544 ) ( -680 -3104 544 ) ( -688 -3104 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -688 -3168 544 ) ( -704 -3168 544 ) ( -696 -3168 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -696 -3104 544 ) ( -696 -3112 544 ) ( -696 -3108 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 3189 +{ +( -672 -3093 576 ) ( -672 -3179 576 ) ( -704 -3176 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -704 -2952 544 ) ( -704 -2952 576 ) ( -704 -3208 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -704 -3176 544 ) ( -672 -3179 576 ) ( -672 -3093 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -704 -3176 576 ) ( -672 -3179 576 ) ( -704 -3176 544 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -704 -3168 544 ) ( -688 -3168 544 ) ( -696 -3168 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 3190 +{ +( -672 -3093 576 ) ( -672 -3179 576 ) ( -704 -3176 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -704 -2952 544 ) ( -704 -2952 576 ) ( -704 -3208 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -704 -3176 544 ) ( -672 -3179 576 ) ( -672 -3093 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -704 -3096 544 ) ( -672 -3093 576 ) ( -704 -3096 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -680 -3104 544 ) ( -696 -3104 544 ) ( -688 -3104 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 3191 +{ +( -256 -3044 544 ) ( -288 -2888 544 ) ( -319 -2898 576 ) bricks/c_tn_m1 126 -4 102 1 1 0 0 0 +( -319 -2898 576 ) ( -288 -2888 544 ) ( -288 -2888 592 ) bricks/c_tn_m1 -62 -31 102 1 1 0 0 0 +( -288 -2888 592 ) ( -288 -2888 544 ) ( -256 -3044 544 ) bricks/c_tn_m1 -160 -16 102 1 1 0 0 0 +( -256 -3044 592 ) ( -256 -3044 544 ) ( -319 -2898 576 ) bricks/c_tn_m1 -160 -16 102 1 1 0 0 0 +( -480 -3044 576 ) ( -536 -3044 576 ) ( -508 -2888 576 ) bricks/c_tn_m1 126 -4 102 1 1 0 0 0 +} +// brush 3192 +{ +( -288 -3047 576 ) ( -256 -3044 544 ) ( -319 -2898 576 ) bricks/c_tn_m1 126 -4 102 1 1 0 0 0 +( -256 -3044 592 ) ( -256 -3044 544 ) ( -288 -3047 576 ) bricks/c_tn_m1 -62 -31 102 1 1 0 0 0 +( -319 -2898 576 ) ( -256 -3044 544 ) ( -256 -3044 592 ) bricks/c_tn_m1 -160 -16 102 1 1 0 0 0 +( -480 -3047 576 ) ( -536 -3047 576 ) ( -508 -2898 576 ) bricks/c_tn_m1 126 -4 102 1 1 0 0 0 +} +// brush 3193 +{ +( -437 -3484 576 ) ( -408 -3500 544 ) ( -352 -3368 544 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -352 -3368 544 ) ( -408 -3500 544 ) ( -408 -3500 592 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -572 -3500 576 ) ( -600 -3368 576 ) ( -544 -3368 576 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -392 -3390 544 ) ( -372 -3398 544 ) ( -382 -3394 576 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -394 -3458 544 ) ( -418 -3448 544 ) ( -406 -3453 576 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -400 -3462 544 ) ( -372 -3394 544 ) ( -386 -3428 576 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +} +// brush 3194 +{ +( -437 -3484 576 ) ( -408 -3500 544 ) ( -352 -3368 544 ) common/li_pv_v4a 10 -7 67 1 1 0 1 7000 +( -437 -3484 576 ) ( -352 -3368 544 ) ( -352 -3368 592 ) common/li_pv_v4a 10 -7 67 1 1 0 1 7000 +( -572 -3500 576 ) ( -600 -3368 576 ) ( -544 -3368 576 ) common/li_pv_v4a 10 -7 67 1 1 0 1 7000 +( -392 -3390 544 ) ( -372 -3398 544 ) ( -382 -3394 576 ) common/li_pv_v4a 10 -7 67 1 1 0 1 7000 +( -394 -3458 544 ) ( -418 -3448 544 ) ( -406 -3453 576 ) common/li_pv_v4a 10 -7 67 1 1 0 1 7000 +( -372 -3394 544 ) ( -400 -3462 544 ) ( -386 -3428 576 ) common/li_pv_v4a 10 -7 67 1 1 0 1 7000 +} +// brush 3195 +{ +( -437 -3484 576 ) ( -352 -3368 544 ) ( -383 -3358 576 ) common/li_pv_v4a 10 -7 67 1 1 0 1 7000 +( -352 -3368 592 ) ( -352 -3368 544 ) ( -437 -3484 576 ) common/li_pv_v4a 10 -7 67 1 1 0 1 7000 +( -572 -3484 576 ) ( -600 -3358 576 ) ( -544 -3358 576 ) common/li_pv_v4a 10 -7 67 1 1 0 1 7000 +( -392 -3390 544 ) ( -372 -3398 544 ) ( -382 -3394 576 ) common/li_pv_v4a 10 -7 67 1 1 0 1 7000 +( -394 -3458 552 ) ( -418 -3448 552 ) ( -406 -3453 576 ) common/li_pv_v4a 10 -7 67 1 1 0 1 7000 +( -416 -3454 552 ) ( -388 -3388 552 ) ( -402 -3421 576 ) common/li_pv_v4a 10 -7 67 1 1 0 1 7000 +} +// brush 3196 +{ +( -437 -3484 576 ) ( -352 -3368 544 ) ( -383 -3358 576 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -572 -3484 576 ) ( -600 -3358 576 ) ( -544 -3358 576 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -392 -3390 544 ) ( -372 -3398 544 ) ( -382 -3394 576 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -394 -3458 552 ) ( -418 -3448 552 ) ( -406 -3453 576 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -388 -3388 552 ) ( -416 -3454 552 ) ( -402 -3421 576 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +} +// brush 3197 +{ +( -437 -3484 576 ) ( -408 -3500 544 ) ( -352 -3368 544 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -408 -3500 592 ) ( -408 -3500 544 ) ( -437 -3484 576 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -352 -3368 544 ) ( -408 -3500 544 ) ( -408 -3500 592 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -437 -3484 576 ) ( -352 -3368 544 ) ( -352 -3368 592 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -572 -3500 576 ) ( -600 -3368 576 ) ( -544 -3368 576 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -418 -3448 544 ) ( -394 -3458 544 ) ( -406 -3453 576 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +} +// brush 3198 +{ +( -437 -3484 576 ) ( -352 -3368 544 ) ( -383 -3358 576 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -352 -3368 592 ) ( -352 -3368 544 ) ( -437 -3484 576 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -572 -3484 576 ) ( -600 -3358 576 ) ( -544 -3358 576 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -418 -3448 552 ) ( -394 -3458 552 ) ( -406 -3453 576 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +} +// brush 3199 +{ +( -437 -3484 576 ) ( -408 -3500 544 ) ( -352 -3368 544 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -352 -3368 544 ) ( -408 -3500 544 ) ( -408 -3500 592 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -437 -3484 576 ) ( -352 -3368 544 ) ( -352 -3368 592 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -572 -3500 576 ) ( -600 -3368 576 ) ( -544 -3368 576 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -372 -3398 544 ) ( -392 -3390 544 ) ( -382 -3394 576 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +} +// brush 3200 +{ +( -437 -3484 576 ) ( -352 -3368 544 ) ( -383 -3358 576 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -383 -3358 576 ) ( -352 -3368 544 ) ( -352 -3368 592 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -352 -3368 592 ) ( -352 -3368 544 ) ( -437 -3484 576 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -572 -3484 576 ) ( -600 -3358 576 ) ( -544 -3358 576 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +( -372 -3398 544 ) ( -392 -3390 544 ) ( -382 -3394 576 ) bricks/c_tn_m1 151 1 67 1 1 0 0 0 +} +// brush 3201 +{ +( -373 -3516 576 ) ( -288 -3400 544 ) ( -319 -3390 576 ) bricks/c_tn_m1 211 -14 67 1 1 0 0 0 +( -319 -3390 576 ) ( -288 -3400 544 ) ( -288 -3400 592 ) bricks/c_tn_m1 184 -28 67 1 1 0 0 0 +( -288 -3400 592 ) ( -288 -3400 544 ) ( -373 -3516 576 ) bricks/c_tn_m1 90 19 67 1 1 0 0 0 +( -508 -3516 576 ) ( -536 -3390 576 ) ( -480 -3390 576 ) bricks/c_tn_m1 211 -14 67 1 1 0 0 0 +} +// brush 3202 +{ +( -373 -3516 576 ) ( -344 -3532 544 ) ( -288 -3400 544 ) bricks/c_tn_m1 211 -14 67 1 1 0 0 0 +( -344 -3532 592 ) ( -344 -3532 544 ) ( -373 -3516 576 ) bricks/c_tn_m1 184 -28 67 1 1 0 0 0 +( -288 -3400 544 ) ( -344 -3532 544 ) ( -344 -3532 592 ) bricks/c_tn_m1 90 19 67 1 1 0 0 0 +( -373 -3516 576 ) ( -288 -3400 544 ) ( -288 -3400 592 ) bricks/c_tn_m1 90 19 67 1 1 0 0 0 +( -508 -3532 576 ) ( -536 -3400 576 ) ( -480 -3400 576 ) bricks/c_tn_m1 211 -14 67 1 1 0 0 0 +} +// brush 3203 +{ +( -408 -3500 544 ) ( -437 -3484 576 ) ( -514 -3603 576 ) bricks/c_tn_m1 -70 5 57 1 1 0 0 0 +( -408 -3500 592 ) ( -408 -3500 544 ) ( -514 -3603 576 ) bricks/c_tn_m1 -70 5 57 1 1 0 0 0 +( -514 -3603 576 ) ( -437 -3484 576 ) ( -408 -3500 576 ) bricks/c_tn_m1 -70 5 57 1 1 0 0 0 +( -408 -3500 576 ) ( -437 -3484 576 ) ( -408 -3500 544 ) bricks/c_tn_m1 -70 5 57 1 1 0 0 0 +} +// brush 3204 +{ +( -488 -3624 544 ) ( -408 -3500 544 ) ( -514 -3603 576 ) bricks/c_tn_m1 -70 5 57 1 1 0 0 0 +( -488 -3624 592 ) ( -488 -3624 544 ) ( -514 -3603 576 ) bricks/c_tn_m1 -70 5 57 1 1 0 0 0 +( -408 -3500 576 ) ( -408 -3500 544 ) ( -488 -3624 544 ) bricks/c_tn_m1 -70 5 57 1 1 0 0 0 +( -408 -3500 544 ) ( -408 -3500 576 ) ( -514 -3603 576 ) bricks/c_tn_m1 -70 5 57 1 1 0 0 0 +( -514 -3680 576 ) ( -514 -3624 576 ) ( -408 -3652 576 ) bricks/c_tn_m1 -70 5 57 1 1 0 0 0 +( -424 -3476 544 ) ( -404 -3488 544 ) ( -414 -3482 576 ) bricks/c_tn_m1 -70 5 57 1 1 0 0 0 +} +// brush 3205 +{ +( -1760 -240 576 ) ( -1976 -456 576 ) ( -2000 -432 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -2016 -448 576 ) ( -2016 -448 544 ) ( -1784 -216 544 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1976 -456 576 ) ( -1760 -240 576 ) ( -1784 -216 544 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1304 216 544 ) ( -1328 240 544 ) ( -1316 228 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1304 264 544 ) ( -1278 242 544 ) ( -1291 253 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +} +// brush 3206 +{ +( -2004 -932 576 ) ( -1788 -716 576 ) ( -1764 -740 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1748 -724 576 ) ( -1748 -724 544 ) ( -1980 -956 544 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1788 -716 576 ) ( -2004 -932 576 ) ( -1980 -956 544 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1270 294 544 ) ( -1246 270 544 ) ( -1258 282 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1056 -32 544 ) ( -1080 -8 544 ) ( -1068 -20 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +} +// brush 3207 +{ +( -1760 -240 576 ) ( -1976 -456 576 ) ( -2000 -432 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -2016 -448 576 ) ( -2016 -448 544 ) ( -1784 -216 544 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -1976 -456 576 ) ( -1760 -240 576 ) ( -1784 -216 544 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -2080 -512 544 ) ( -2056 -536 544 ) ( -2068 -524 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +( -2110 -590 544 ) ( -2136 -568 544 ) ( -2123 -579 576 ) bricks/c_tn_m1 0 13 225 1 1 0 0 0 +} +// brush 3208 +{ +( -396 -2788 576 ) ( -612 -2572 576 ) ( -588 -2548 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -604 -2532 576 ) ( -604 -2532 544 ) ( -372 -2764 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -612 -2572 576 ) ( -396 -2788 576 ) ( -372 -2764 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1808 -1328 544 ) ( -1824 -1344 544 ) ( -1816 -1336 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -1858 -1326 544 ) ( -1832 -1304 544 ) ( -1845 -1315 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +} +// brush 3209 +{ +( -2004 -932 576 ) ( -1788 -716 576 ) ( -1764 -740 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1748 -724 576 ) ( -1748 -724 544 ) ( -1980 -956 544 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1788 -716 576 ) ( -2004 -932 576 ) ( -1980 -956 544 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1832 -760 544 ) ( -1808 -784 544 ) ( -1820 -772 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +( -1832 -808 544 ) ( -1858 -786 544 ) ( -1845 -797 576 ) bricks/c_tn_m1 0 -11 45 1 1 0 0 0 +} +// brush 3210 +{ +( -488 -2648 576 ) ( -515 -2669 576 ) ( -568 -2616 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -604 -2532 576 ) ( -604 -2532 544 ) ( -372 -2764 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -568 -2616 576 ) ( -515 -2669 576 ) ( -488 -2648 544 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -488 -2648 544 ) ( -515 -2669 576 ) ( -488 -2648 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +( -568 -2616 544 ) ( -544 -2592 544 ) ( -556 -2604 576 ) bricks/c_tn_m1 0 11 135 1 1 0 0 0 +} +// brush 3211 +{ +( -792 -2840 576 ) ( -772 -2860 576 ) ( -792 -2888 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -880 -2800 576 ) ( -880 -2800 544 ) ( -1112 -2568 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -792 -2888 544 ) ( -772 -2860 576 ) ( -792 -2840 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -816 -2864 544 ) ( -792 -2840 544 ) ( -804 -2852 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -792 -2888 576 ) ( -772 -2860 576 ) ( -792 -2888 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +} +// brush 3212 +{ +( -1088 -2544 576 ) ( -872 -2760 576 ) ( -896 -2784 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -880 -2800 576 ) ( -880 -2800 544 ) ( -1112 -2568 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -872 -2760 576 ) ( -1088 -2544 576 ) ( -1112 -2568 544 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -2056 -1576 544 ) ( -2080 -1600 544 ) ( -2068 -1588 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +( -2136 -1544 544 ) ( -2110 -1522 544 ) ( -2123 -1533 576 ) bricks/c_tn_m1 0 -9 315 1 1 0 0 0 +} +// brush 3213 +{ +( -1736 -672 576 ) ( -1736 -528 576 ) ( -1896 -528 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1896 -528 592 ) ( -1736 -528 592 ) ( -1736 -672 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1808 -784 592 ) ( -1808 -784 576 ) ( -2080 -512 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1752 -752 592 ) ( -1752 -752 576 ) ( -1792 -792 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2048 -456 576 ) ( -2048 -456 592 ) ( -2088 -496 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1280 192 576 ) ( -1216 128 576 ) ( -1248 160 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 3214 +{ +( -824 744 368 ) ( -824 756 368 ) ( -840 756 368 ) bricks/c_tn_m3 -85 128 0 0.710000 1 0 0 0 +( -840 756 576 ) ( -824 756 576 ) ( -824 744 576 ) bricks/c_tn_m3 -85 128 0 0.710000 1 0 0 0 +( -2149 -557 368 ) ( -2149 -557 576 ) ( -2136 -568 576 ) bricks/c_tn_m3 -85 128 0 0.710000 1 0 0 0 +( -1304 264 576 ) ( -1304 264 368 ) ( -2080 -512 368 ) bricks/c_tn_m3 -85 128 0 0.710000 1 0 0 0 +( -2149 -557 576 ) ( -2149 -557 368 ) ( -1318 274 368 ) bricks/c_tn_m3 -85 128 0 0.710000 1 0 0 0 +( -1304 264 368 ) ( -1304 264 576 ) ( -1318 274 576 ) bricks/c_tn_m3 -85 128 0 0.710000 1 0 0 0 +} +// brush 3215 +{ +( -540 460 368 ) ( -540 472 368 ) ( -556 472 368 ) bricks/c_tn_m3 41 128 0 0.710000 1 0 0 0 +( -556 472 576 ) ( -540 472 576 ) ( -540 460 576 ) bricks/c_tn_m3 41 128 0 0.710000 1 0 0 0 +( -1832 -808 368 ) ( -1832 -808 576 ) ( -1818 -818 576 ) bricks/c_tn_m3 41 128 0 0.710000 1 0 0 0 +( -987 13 576 ) ( -987 13 368 ) ( -1796 -796 368 ) bricks/c_tn_m3 41 128 0 0.710000 1 0 0 0 +( -1832 -808 576 ) ( -1832 -808 368 ) ( -1000 24 368 ) bricks/c_tn_m3 41 128 0 0.710000 1 0 0 0 +( -987 13 368 ) ( -987 13 576 ) ( -1000 24 576 ) bricks/c_tn_m3 41 128 0 0.710000 1 0 0 0 +} +// brush 3216 +{ +( -805 725 368 ) ( -805 741 368 ) ( -833 741 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -833 741 384 ) ( -805 741 384 ) ( -805 725 384 ) bricks/c_sr_mr5 0 9 225 1 1 0 0 0 +( -2136 -568 368 ) ( -2136 -568 384 ) ( -2124 -578 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1292 254 384 ) ( -1292 254 368 ) ( -2069 -523 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -2136 -568 384 ) ( -2136 -568 368 ) ( -1304 264 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1292 254 368 ) ( -1292 254 384 ) ( -1304 264 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3217 +{ +( -544 464 368 ) ( -544 480 368 ) ( -572 480 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -572 480 384 ) ( -544 480 384 ) ( -544 464 384 ) bricks/c_sr_mr5 0 -13 45 1 1 0 0 0 +( -1845 -797 368 ) ( -1845 -797 384 ) ( -1832 -808 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -557 467 368 ) ( -557 467 384 ) ( -544 480 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1845 -797 384 ) ( -1845 -797 368 ) ( -1012 36 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1224 248 368 ) ( -1160 184 368 ) ( -1192 216 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3218 +{ +( -1736 -672 352 ) ( -1736 -528 352 ) ( -1896 -528 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1896 -528 368 ) ( -1736 -528 368 ) ( -1736 -672 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1808 -784 368 ) ( -1808 -784 352 ) ( -2080 -512 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1760 -760 368 ) ( -1760 -760 352 ) ( -1800 -800 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 128 368 ) ( -1216 128 352 ) ( -944 -144 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2048 -456 352 ) ( -2048 -456 368 ) ( -2088 -496 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3219 +{ +( -656 -2520 576 ) ( -800 -2520 576 ) ( -800 -2680 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -800 -2680 592 ) ( -800 -2520 592 ) ( -656 -2520 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -544 -2592 592 ) ( -544 -2592 576 ) ( -816 -2864 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -568 -2544 592 ) ( -568 -2544 576 ) ( -528 -2584 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1960 -1480 592 ) ( -1960 -1480 576 ) ( -1688 -1208 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -880 -2822 576 ) ( -880 -2822 592 ) ( -840 -2862 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 3220 +{ +( -2072 -1608 368 ) ( -2084 -1608 368 ) ( -2084 -1624 368 ) bricks/c_tn_m3 30 128 0 0.710000 1 0 0 0 +( -2084 -1624 576 ) ( -2084 -1608 576 ) ( -2072 -1608 576 ) bricks/c_tn_m3 30 128 0 0.710000 1 0 0 0 +( -805 -2897 368 ) ( -805 -2897 576 ) ( -792 -2888 576 ) bricks/c_tn_m3 30 128 0 0.710000 1 0 0 0 +( -2076 -1604 368 ) ( -2076 -1604 576 ) ( -2080 -1600 576 ) bricks/c_tn_m3 30 128 0 0.710000 1 0 0 0 +( -2148 -1554 576 ) ( -2148 -1554 368 ) ( -2136 -1544 368 ) bricks/c_tn_m3 30 128 0 0.710000 1 0 0 0 +( -805 -2897 576 ) ( -805 -2897 368 ) ( -2148 -1554 368 ) bricks/c_tn_m3 30 128 0 0.710000 1 0 0 0 +} +// brush 3221 +{ +( -1788 -1324 368 ) ( -1800 -1324 368 ) ( -1800 -1340 368 ) bricks/c_tn_m3 -98 128 0 0.710000 1 0 0 0 +( -1800 -1340 576 ) ( -1800 -1324 576 ) ( -1788 -1324 576 ) bricks/c_tn_m3 -98 128 0 0.710000 1 0 0 0 +( -475 -2637 576 ) ( -475 -2637 368 ) ( -488 -2648 368 ) bricks/c_tn_m3 -98 128 0 0.710000 1 0 0 0 +( -475 -2637 368 ) ( -475 -2637 576 ) ( -1818 -1294 576 ) bricks/c_tn_m3 -98 128 0 0.710000 1 0 0 0 +( -1818 -1294 368 ) ( -1818 -1294 576 ) ( -1832 -1304 576 ) bricks/c_tn_m3 -98 128 0 0.710000 1 0 0 0 +( -1584 -1552 576 ) ( -1584 -1552 368 ) ( -1588 -1548 368 ) bricks/c_tn_m3 -98 128 0 0.710000 1 0 0 0 +} +// brush 3222 +{ +( -2053 -1589 368 ) ( -2069 -1589 368 ) ( -2069 -1617 368 ) bricks/c_sr_mr5 7 -23 0 1 1 0 0 0 +( -2069 -1617 384 ) ( -2069 -1589 384 ) ( -2053 -1589 384 ) bricks/c_sr_mr5 0 -11 315 1 1 0 0 0 +( -792 -2888 368 ) ( -792 -2888 384 ) ( -780 -2878 384 ) bricks/c_sr_mr5 7 14 0 1 1 0 0 0 +( -780 -2878 368 ) ( -780 -2878 384 ) ( -2124 -1534 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -2136 -1544 384 ) ( -2136 -1544 368 ) ( -2124 -1534 368 ) bricks/c_sr_mr5 7 14 0 1 1 0 0 0 +( -792 -2888 384 ) ( -792 -2888 368 ) ( -2136 -1544 368 ) bricks/c_sr_mr5 7 14 0 1 1 0 0 0 +} +// brush 3223 +{ +( -1792 -1328 368 ) ( -1808 -1328 368 ) ( -1808 -1356 368 ) bricks/c_sr_mr5 2 14 0 1 1 0 0 0 +( -1808 -1356 384 ) ( -1808 -1328 384 ) ( -1792 -1328 384 ) bricks/c_sr_mr5 0 8 135 1 1 0 0 0 +( -488 -2648 384 ) ( -488 -2648 368 ) ( -500 -2658 368 ) bricks/c_sr_mr5 2 14 0 1 1 0 0 0 +( -488 -2648 368 ) ( -488 -2648 384 ) ( -1832 -1304 384 ) bricks/c_sr_mr5 2 14 0 1 1 0 0 0 +( -1844 -1314 384 ) ( -1844 -1314 368 ) ( -1832 -1304 368 ) bricks/c_sr_mr5 2 14 0 1 1 0 0 0 +( -1844 -1314 368 ) ( -1844 -1314 384 ) ( -555 -2603 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3224 +{ +( -1920 -1152 368 ) ( -2288 -1152 368 ) ( -2288 -1280 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2288 -1280 384 ) ( -2288 -1152 384 ) ( -1920 -1152 384 ) bricks/c_sr_mr5 0 6 282 1 1 0 0 0 +( -2272 -1288 512 ) ( -2258 -1284 512 ) ( -2258 -1284 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2272 -1288 352 ) ( -2304 -1132 352 ) ( -2304 -1132 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2304 -1132 352 ) ( -2288 -1130 352 ) ( -2288 -1130 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2288 -1130 352 ) ( -2258 -1284 352 ) ( -2258 -1284 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3225 +{ +( -1888 -1308 368 ) ( -2256 -1308 368 ) ( -2256 -1436 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2256 -1436 384 ) ( -2256 -1308 384 ) ( -1888 -1308 384 ) bricks/c_sr_mr5 0 -5 293 1 1 0 0 0 +( -2203 -1413 384 ) ( -2203 -1413 368 ) ( -2216 -1420 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2272 -1288 512 ) ( -2216 -1420 512 ) ( -2216 -1420 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2272 -1288 352 ) ( -2258 -1284 352 ) ( -2258 -1284 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2203 -1413 368 ) ( -2203 -1413 384 ) ( -2258 -1284 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3226 +{ +( -1832 -1440 368 ) ( -2200 -1440 368 ) ( -2200 -1568 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2200 -1568 384 ) ( -2200 -1440 384 ) ( -1832 -1440 384 ) bricks/c_sr_mr5 0 -10 303 1 1 0 0 0 +( -2124 -1534 384 ) ( -2124 -1534 368 ) ( -2136 -1544 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2136 -1544 352 ) ( -2216 -1420 352 ) ( -2216 -1420 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2203 -1413 368 ) ( -2203 -1413 384 ) ( -2216 -1420 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2124 -1534 368 ) ( -2124 -1534 384 ) ( -2203 -1413 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3227 +{ +( -1920 -1152 368 ) ( -2288 -1152 368 ) ( -2288 -1280 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2288 -1280 384 ) ( -2288 -1152 384 ) ( -1920 -1152 384 ) bricks/c_sr_mr5 0 -8 102 1 1 0 0 0 +( -1920 -1096 352 ) ( -1904 -1172 352 ) ( -1904 -1172 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1920 -1176 512 ) ( -1904 -1172 512 ) ( -1904 -1172 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1920 -1096 496 ) ( -1904 -1094 496 ) ( -1904 -1094 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1936 -1098 512 ) ( -1920 -1176 512 ) ( -1920 -1176 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3228 +{ +( -1888 -1308 368 ) ( -2256 -1308 368 ) ( -2256 -1436 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2256 -1436 384 ) ( -2256 -1308 384 ) ( -1888 -1308 384 ) bricks/c_sr_mr5 0 7 114 1 1 0 0 0 +( -1904 -1172 352 ) ( -1876 -1236 352 ) ( -1876 -1236 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1876 -1236 352 ) ( -1890 -1244 352 ) ( -1890 -1244 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1904 -1172 512 ) ( -1920 -1176 512 ) ( -1920 -1176 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1890 -1244 352 ) ( -1920 -1176 352 ) ( -1920 -1176 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3229 +{ +( -1832 -1440 368 ) ( -2200 -1440 368 ) ( -2200 -1568 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2200 -1568 384 ) ( -2200 -1440 384 ) ( -1832 -1440 384 ) bricks/c_sr_mr5 0 4 122 1 1 0 0 0 +( -1876 -1236 352 ) ( -1832 -1304 352 ) ( -1832 -1304 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1832 -1304 352 ) ( -1844 -1314 352 ) ( -1844 -1314 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1876 -1236 512 ) ( -1890 -1244 512 ) ( -1890 -1244 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1890 -1244 512 ) ( -1844 -1314 512 ) ( -1844 -1314 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3230 +{ +( -2272 -1288 544 ) ( -2216 -1420 544 ) ( -2187 -1404 576 ) bricks/c_tn_m1 0 -8 293 1 1.050000 0 0 0 +( -2187 -1404 576 ) ( -2216 -1420 544 ) ( -2216 -1420 592 ) bricks/c_tn_m1 0 -8 293 1 1.050000 0 0 0 +( -2216 -1420 592 ) ( -2216 -1420 544 ) ( -2272 -1288 544 ) bricks/c_tn_m1 0 -8 293 1 1.050000 0 0 0 +( -2272 -1288 592 ) ( -2272 -1288 544 ) ( -2187 -1404 576 ) bricks/c_tn_m1 0 -8 293 1 1.050000 0 0 0 +( -2272 -1572 576 ) ( -2187 -1544 576 ) ( -2187 -1600 576 ) bricks/c_tn_m1 0 -8 293 1 1.050000 0 0 0 +} +// brush 3231 +{ +( -2241 -1278 576 ) ( -2272 -1288 544 ) ( -2187 -1404 576 ) bricks/c_tn_m1 0 -8 293 1 1.050000 0 0 0 +( -2272 -1288 592 ) ( -2272 -1288 544 ) ( -2241 -1278 576 ) bricks/c_tn_m1 0 -8 293 1 1.050000 0 0 0 +( -2187 -1404 576 ) ( -2272 -1288 544 ) ( -2272 -1288 592 ) bricks/c_tn_m1 0 -8 293 1 1.050000 0 0 0 +( -2272 -1572 576 ) ( -2187 -1544 576 ) ( -2187 -1600 576 ) bricks/c_tn_m1 0 -8 293 1 1.050000 0 0 0 +} +// brush 3232 +{ +( -2376 -1148 544 ) ( -2344 -1304 544 ) ( -2313 -1294 576 ) bricks/c_tn_m1 31 -9 282 1 1.050000 0 0 0 +( -2313 -1294 576 ) ( -2344 -1304 544 ) ( -2344 -1304 592 ) bricks/c_tn_m1 46 -6 282 1 1.050000 0 0 0 +( -2344 -1304 592 ) ( -2344 -1304 544 ) ( -2376 -1148 544 ) bricks/c_tn_m1 35 14 282 1 1.050000 0 0 0 +( -2376 -1148 592 ) ( -2376 -1148 544 ) ( -2313 -1294 576 ) bricks/c_tn_m1 35 14 282 1 1.050000 0 0 0 +( -2376 -1588 576 ) ( -2313 -1560 576 ) ( -2313 -1616 576 ) bricks/c_tn_m1 31 -9 282 1 1.050000 0 0 0 +} +// brush 3233 +{ +( -2344 -1145 576 ) ( -2376 -1148 544 ) ( -2313 -1294 576 ) bricks/c_tn_m1 31 -9 282 1 1.050000 0 0 0 +( -2376 -1148 592 ) ( -2376 -1148 544 ) ( -2344 -1145 576 ) bricks/c_tn_m1 46 -6 282 1 1.050000 0 0 0 +( -2313 -1294 576 ) ( -2376 -1148 544 ) ( -2376 -1148 592 ) bricks/c_tn_m1 35 14 282 1 1.050000 0 0 0 +( -2376 -1588 576 ) ( -2313 -1560 576 ) ( -2313 -1616 576 ) bricks/c_tn_m1 31 -9 282 1 1.050000 0 0 0 +} +// brush 3234 +{ +( -1876 -1236 544 ) ( -1858 -1326 576 ) ( -1832 -1304 544 ) bricks/c_tn_m1 0 5 122 1 1 0 0 0 +( -1876 -1236 544 ) ( -1832 -1304 544 ) ( -1832 -1304 592 ) bricks/c_tn_m1 0 5 122 1 1 0 0 0 +( -1832 -1304 544 ) ( -1858 -1326 576 ) ( -1832 -1304 576 ) bricks/c_tn_m1 0 5 122 1 1 0 0 0 +( -1876 -1236 576 ) ( -1858 -1326 576 ) ( -1876 -1236 544 ) bricks/c_tn_m1 0 5 122 1 1 0 0 0 +( -1832 -1304 576 ) ( -1858 -1326 576 ) ( -1876 -1236 576 ) bricks/c_tn_m1 0 5 122 1 1 0 0 0 +} +// brush 3235 +{ +( -1904 -1251 576 ) ( -1858 -1326 576 ) ( -1876 -1236 544 ) bricks/c_tn_m1 0 5 122 1 1 0 0 0 +( -1904 -1251 576 ) ( -1876 -1236 544 ) ( -1876 -1236 592 ) bricks/c_tn_m1 0 5 122 1 1 0 0 0 +( -1876 -1236 544 ) ( -1858 -1326 576 ) ( -1876 -1236 576 ) bricks/c_tn_m1 0 5 122 1 1 0 0 0 +( -1876 -1236 576 ) ( -1858 -1326 576 ) ( -1904 -1251 576 ) bricks/c_tn_m1 0 5 122 1 1 0 0 0 +} +// brush 3236 +{ +( -1904 -1251 576 ) ( -1876 -1236 544 ) ( -1904 -1172 544 ) bricks/c_tn_m1 0 8 114 1 1 0 0 0 +( -1904 -1172 544 ) ( -1876 -1236 544 ) ( -1876 -1236 592 ) bricks/c_tn_m1 0 8 114 1 1 0 0 0 +( -1876 -1236 592 ) ( -1876 -1236 544 ) ( -1904 -1251 576 ) bricks/c_tn_m1 0 8 114 1 1 0 0 0 +( -1904 -1251 576 ) ( -1904 -1172 544 ) ( -1904 -1172 592 ) bricks/c_tn_m1 0 8 114 1 1 0 0 0 +( -1684 -1251 576 ) ( -1696 -1172 576 ) ( -1672 -1172 576 ) bricks/c_tn_m1 0 8 114 1 1 0 0 0 +} +// brush 3237 +{ +( -1904 -1251 576 ) ( -1904 -1172 544 ) ( -1935 -1182 576 ) bricks/c_tn_m1 0 8 114 1 1 0 0 0 +( -1935 -1182 576 ) ( -1904 -1172 544 ) ( -1904 -1172 592 ) bricks/c_tn_m1 0 8 114 1 1 0 0 0 +( -1904 -1172 592 ) ( -1904 -1172 544 ) ( -1904 -1251 576 ) bricks/c_tn_m1 0 8 114 1 1 0 0 0 +( -1684 -1251 576 ) ( -1696 -1172 576 ) ( -1672 -1172 576 ) bricks/c_tn_m1 0 8 114 1 1 0 0 0 +} +// brush 3238 +{ +( -1935 -1182 576 ) ( -1904 -1172 544 ) ( -1920 -1096 544 ) bricks/c_tn_m1 0 -6 102 1 1 0 0 0 +( -1920 -1096 544 ) ( -1904 -1172 544 ) ( -1904 -1172 592 ) bricks/c_tn_m1 0 -6 102 1 1 0 0 0 +( -1904 -1172 592 ) ( -1904 -1172 544 ) ( -1935 -1182 576 ) bricks/c_tn_m1 0 -6 102 1 1 0 0 0 +( -1935 -1182 592 ) ( -1935 -1182 576 ) ( -1920 -1096 544 ) bricks/c_tn_m1 0 -6 102 1 1 0 0 0 +( -1684 -1182 576 ) ( -1696 -1096 576 ) ( -1672 -1096 576 ) bricks/c_tn_m1 0 -6 102 1 1 0 0 0 +} +// brush 3239 +{ +( -1935 -1182 576 ) ( -1920 -1096 544 ) ( -1952 -1099 576 ) bricks/c_tn_m1 0 -6 102 1 1 0 0 0 +( -1952 -1099 576 ) ( -1920 -1096 544 ) ( -1920 -1096 592 ) bricks/c_tn_m1 0 -6 102 1 1 0 0 0 +( -1920 -1096 592 ) ( -1920 -1096 544 ) ( -1935 -1182 576 ) bricks/c_tn_m1 0 -6 102 1 1 0 0 0 +( -1684 -1182 576 ) ( -1696 -1096 576 ) ( -1672 -1096 576 ) bricks/c_tn_m1 0 -6 102 1 1 0 0 0 +} +// brush 3240 +{ +( -2304 -1056 592 ) ( -2304 -1132 592 ) ( -2304 -1132 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2304 -1132 592 ) ( -2272 -1288 592 ) ( -2272 -1288 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2272 -1288 592 ) ( -2216 -1420 592 ) ( -2216 -1420 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2216 -1420 592 ) ( -2136 -1544 592 ) ( -2136 -1544 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2136 -1544 592 ) ( -2024 -1656 592 ) ( -2024 -1656 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2304 -1824 576 ) ( -768 -1824 576 ) ( -768 -288 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -768 -288 592 ) ( -768 -1824 592 ) ( -2304 -1824 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2084 -1056 592 ) ( -2112 -1056 528 ) ( -2056 -1056 528 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1808 -1328 576 ) ( -1808 -1328 592 ) ( -1920 -1056 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1808 -1328 592 ) ( -1808 -1328 576 ) ( -2080 -1600 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 3241 +{ +( -2304 -1056 368 ) ( -2304 -1132 368 ) ( -2304 -1132 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2304 -1132 368 ) ( -2272 -1288 368 ) ( -2272 -1288 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2272 -1288 368 ) ( -2216 -1420 368 ) ( -2216 -1420 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2216 -1420 368 ) ( -2136 -1544 368 ) ( -2136 -1544 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2136 -1544 368 ) ( -2024 -1656 368 ) ( -2024 -1656 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2304 -1824 352 ) ( -768 -1824 352 ) ( -768 -288 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -768 -288 368 ) ( -768 -1824 368 ) ( -2304 -1824 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2084 -1056 368 ) ( -2112 -1056 304 ) ( -2056 -1056 304 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1808 -1328 352 ) ( -1808 -1328 368 ) ( -1920 -1056 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1808 -1328 368 ) ( -1808 -1328 352 ) ( -2080 -1600 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3242 +{ +( -2200 -1568 576 ) ( -2200 -1440 576 ) ( -1832 -1440 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2136 -1544 416 ) ( -2148 -1554 416 ) ( -2148 -1554 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2230 -1428 368 ) ( -2148 -1554 368 ) ( -2148 -1554 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2216 -1420 576 ) ( -2230 -1428 576 ) ( -2230 -1428 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2176 -1482 576 ) ( -2216 -1420 560 ) ( -2136 -1544 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2230 -1768 368 ) ( -2136 -1784 368 ) ( -2136 -1752 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3243 +{ +( -2256 -1436 576 ) ( -2256 -1308 576 ) ( -1888 -1308 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2216 -1420 560 ) ( -2230 -1428 560 ) ( -2230 -1428 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2288 -1294 368 ) ( -2230 -1428 368 ) ( -2230 -1428 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2272 -1288 576 ) ( -2288 -1294 576 ) ( -2288 -1294 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2244 -1354 576 ) ( -2272 -1288 560 ) ( -2216 -1420 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2288 -1768 368 ) ( -2216 -1784 368 ) ( -2216 -1752 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3244 +{ +( -2288 -1280 576 ) ( -2288 -1152 576 ) ( -1920 -1152 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2272 -1288 560 ) ( -2288 -1294 560 ) ( -2288 -1294 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2320 -1134 368 ) ( -2288 -1294 368 ) ( -2288 -1294 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2304 -1132 576 ) ( -2320 -1134 576 ) ( -2320 -1134 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2288 -1210 576 ) ( -2304 -1132 560 ) ( -2272 -1288 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2320 -1768 368 ) ( -2272 -1784 368 ) ( -2272 -1752 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3245 +{ +( -2288 -1280 576 ) ( -2288 -1152 576 ) ( -1920 -1152 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1904 -1094 416 ) ( -1888 -1168 416 ) ( -1888 -1168 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1904 -1172 576 ) ( -1888 -1168 576 ) ( -1888 -1168 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1920 -1096 560 ) ( -1904 -1094 560 ) ( -1904 -1094 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1912 -1134 512 ) ( -1904 -1172 496 ) ( -1920 -1096 496 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1920 384 368 ) ( -1888 368 368 ) ( -1888 400 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3246 +{ +( -2256 -1436 576 ) ( -2256 -1308 576 ) ( -1888 -1308 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1888 -1168 352 ) ( -1862 -1228 352 ) ( -1862 -1228 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1876 -1236 576 ) ( -1862 -1228 576 ) ( -1862 -1228 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1904 -1172 560 ) ( -1888 -1168 560 ) ( -1888 -1168 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1890 -1204 512 ) ( -1876 -1236 496 ) ( -1904 -1172 496 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1904 384 368 ) ( -1862 368 368 ) ( -1862 400 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3247 +{ +( -2200 -1568 576 ) ( -2200 -1440 576 ) ( -1832 -1440 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1862 -1228 416 ) ( -1818 -1294 416 ) ( -1818 -1294 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1832 -1304 576 ) ( -1818 -1294 576 ) ( -1818 -1294 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1876 -1236 560 ) ( -1862 -1228 560 ) ( -1862 -1228 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1854 -1270 512 ) ( -1832 -1304 496 ) ( -1876 -1236 496 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1876 384 368 ) ( -1818 368 368 ) ( -1818 400 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3248 +{ +( -2288 -982 368 ) ( -2304 -982 368 ) ( -2304 -1132 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2304 -1184 384 ) ( -2304 -1056 384 ) ( -1936 -1056 384 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -2304 -1132 528 ) ( -2288 -1130 528 ) ( -2288 -1130 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2304 -980 368 ) ( -2304 -980 384 ) ( -2304 -1132 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2288 -1056 368 ) ( -2288 -1130 368 ) ( -2288 -1130 528 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2304 -980 384 ) ( -2304 -980 368 ) ( -2288 -982 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3249 +{ +( -2304 -1184 576 ) ( -2304 -1056 576 ) ( -1936 -1056 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2304 -1132 560 ) ( -2320 -1134 560 ) ( -2320 -1134 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2320 -978 368 ) ( -2320 -978 576 ) ( -2320 -1134 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2304 -1066 368 ) ( -2304 -1056 352 ) ( -2304 -1076 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2320 -1768 368 ) ( -2304 -1784 368 ) ( -2304 -1752 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2320 -978 576 ) ( -2320 -978 368 ) ( -2304 -980 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3250 +{ +( -2304 -980 576 ) ( -2272 -983 576 ) ( -2272 -1129 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2304 -432 560 ) ( -2304 -432 576 ) ( -2304 -784 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2272 -1129 576 ) ( -2272 -983 576 ) ( -2304 -980 544 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2304 -1132 576 ) ( -2272 -1129 576 ) ( -2304 -1132 544 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2304 -980 544 ) ( -2272 -983 576 ) ( -2304 -980 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 3251 +{ +( -2216 -1420 544 ) ( -2110 -1522 576 ) ( -2187 -1404 576 ) bricks/c_tn_m1 0 -11 303 1 1.050000 0 0 0 +( -2216 -1420 592 ) ( -2216 -1420 544 ) ( -2187 -1404 576 ) bricks/c_tn_m1 0 -11 303 1 1.050000 0 0 0 +( -2216 -1420 576 ) ( -2110 -1522 576 ) ( -2216 -1420 544 ) bricks/c_tn_m1 0 -11 303 1 1.050000 0 0 0 +( -2187 -1404 576 ) ( -2110 -1522 576 ) ( -2216 -1420 576 ) bricks/c_tn_m1 0 -11 303 1 1.050000 0 0 0 +} +// brush 3252 +{ +( -2136 -1544 544 ) ( -2110 -1522 576 ) ( -2216 -1420 544 ) bricks/c_tn_m1 0 -11 303 1 1.050000 0 0 0 +( -2136 -1544 576 ) ( -2110 -1522 576 ) ( -2136 -1544 544 ) bricks/c_tn_m1 0 -11 303 1 1.050000 0 0 0 +( -2136 -1544 592 ) ( -2136 -1544 544 ) ( -2216 -1420 544 ) bricks/c_tn_m1 0 -11 303 1 1.050000 0 0 0 +( -2216 -1420 544 ) ( -2110 -1522 576 ) ( -2216 -1420 576 ) bricks/c_tn_m1 0 -11 303 1 1.050000 0 0 0 +( -2216 -1420 576 ) ( -2110 -1522 576 ) ( -2136 -1544 576 ) bricks/c_tn_m1 0 -11 303 1 1.050000 0 0 0 +} +// brush 3253 +{ +( -2216 -692 544 ) ( -2110 -590 576 ) ( -2136 -568 544 ) bricks/c_tn_m1 0 -9 237 1 1 0 0 0 +( -2136 -568 544 ) ( -2110 -590 576 ) ( -2136 -568 576 ) bricks/c_tn_m1 0 -9 237 1 1 0 0 0 +( -2216 -692 544 ) ( -2136 -568 544 ) ( -2136 -568 592 ) bricks/c_tn_m1 0 -9 237 1 1 0 0 0 +( -2216 -692 576 ) ( -2110 -590 576 ) ( -2216 -692 544 ) bricks/c_tn_m1 0 -9 237 1 1 0 0 0 +( -2136 -568 576 ) ( -2110 -590 576 ) ( -2216 -692 576 ) bricks/c_tn_m1 0 -9 237 1 1 0 0 0 +} +// brush 3254 +{ +( -2187 -708 576 ) ( -2110 -590 576 ) ( -2216 -692 544 ) bricks/c_tn_m1 0 -9 237 1 1 0 0 0 +( -2187 -708 576 ) ( -2216 -692 544 ) ( -2216 -692 592 ) bricks/c_tn_m1 0 -9 237 1 1 0 0 0 +( -2216 -692 544 ) ( -2110 -590 576 ) ( -2216 -692 576 ) bricks/c_tn_m1 0 -9 237 1 1 0 0 0 +( -2216 -692 576 ) ( -2110 -590 576 ) ( -2187 -708 576 ) bricks/c_tn_m1 0 -9 237 1 1 0 0 0 +} +// brush 3255 +{ +( -2304 -928 368 ) ( -2304 -1056 368 ) ( -1936 -1056 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1936 -1056 384 ) ( -2304 -1056 384 ) ( -2304 -928 384 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -1920 -1018 368 ) ( -1920 -1018 352 ) ( -1920 -1056 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1936 -1014 384 ) ( -1936 -1014 368 ) ( -1920 -1016 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1936 -1098 384 ) ( -1936 -1098 368 ) ( -1936 -1014 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1936 -1098 368 ) ( -1936 -1098 384 ) ( -1920 -1096 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3256 +{ +( -2304 -1184 576 ) ( -2304 -1056 576 ) ( -1936 -1056 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1904 -1094 368 ) ( -1904 -1094 576 ) ( -1904 -1018 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1920 -1016 576 ) ( -1920 -1016 368 ) ( -1904 -1018 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1920 -1016 368 ) ( -1920 -1016 576 ) ( -1920 -1096 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1920 384 368 ) ( -1904 368 368 ) ( -1904 400 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1904 -1094 576 ) ( -1904 -1094 368 ) ( -1920 -1096 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3257 +{ +( -1832 -672 576 ) ( -2200 -672 576 ) ( -2200 -544 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1818 -818 432 ) ( -1818 -818 416 ) ( -1862 -884 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1818 -818 560 ) ( -1818 -818 576 ) ( -1832 -808 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1862 -884 576 ) ( -1862 -884 560 ) ( -1876 -876 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1876 -876 496 ) ( -1832 -808 496 ) ( -1854 -842 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1818 -2512 368 ) ( -1818 -2480 368 ) ( -1876 -2496 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3258 +{ +( -1888 -804 576 ) ( -2256 -804 576 ) ( -2256 -676 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1862 -884 368 ) ( -1862 -884 352 ) ( -1888 -944 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1862 -884 560 ) ( -1862 -884 576 ) ( -1876 -876 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1888 -944 576 ) ( -1888 -944 560 ) ( -1904 -940 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1904 -940 496 ) ( -1876 -876 496 ) ( -1890 -908 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1862 -2512 368 ) ( -1862 -2480 368 ) ( -1904 -2496 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3259 +{ +( -1920 -960 576 ) ( -2288 -960 576 ) ( -2288 -832 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1888 -944 432 ) ( -1888 -944 416 ) ( -1904 -1018 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1888 -944 560 ) ( -1888 -944 576 ) ( -1904 -940 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1904 -1018 576 ) ( -1904 -1018 560 ) ( -1920 -1016 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1920 -1016 496 ) ( -1904 -940 496 ) ( -1912 -978 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1888 -2512 368 ) ( -1888 -2480 368 ) ( -1920 -2496 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3260 +{ +( -1920 -960 576 ) ( -2288 -960 576 ) ( -2288 -832 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2288 -818 576 ) ( -2288 -818 560 ) ( -2272 -824 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2288 -818 352 ) ( -2288 -818 368 ) ( -2320 -978 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2320 -978 560 ) ( -2320 -978 576 ) ( -2304 -980 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2272 -824 560 ) ( -2304 -980 560 ) ( -2288 -902 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2272 -360 368 ) ( -2272 -328 368 ) ( -2320 -344 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3261 +{ +( -1888 -804 576 ) ( -2256 -804 576 ) ( -2256 -676 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2230 -684 576 ) ( -2230 -684 560 ) ( -2216 -692 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2230 -684 352 ) ( -2230 -684 368 ) ( -2288 -818 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2288 -818 560 ) ( -2288 -818 576 ) ( -2272 -824 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2216 -692 560 ) ( -2272 -824 560 ) ( -2244 -758 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2216 -360 368 ) ( -2216 -328 368 ) ( -2288 -344 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3262 +{ +( -1832 -672 576 ) ( -2200 -672 576 ) ( -2200 -544 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2149 -557 576 ) ( -2149 -557 368 ) ( -2136 -568 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2149 -557 368 ) ( -2149 -557 576 ) ( -2230 -684 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2230 -684 560 ) ( -2230 -684 576 ) ( -2216 -692 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2136 -568 560 ) ( -2216 -692 560 ) ( -2176 -630 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2136 -360 368 ) ( -2136 -328 368 ) ( -2230 -344 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3263 +{ +( -2304 -980 352 ) ( -2304 -980 368 ) ( -2304 -1056 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2272 -824 352 ) ( -2272 -824 368 ) ( -2304 -980 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2216 -692 352 ) ( -2216 -692 368 ) ( -2272 -824 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2136 -568 352 ) ( -2136 -568 368 ) ( -2216 -692 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2024 -456 352 ) ( -2024 -456 368 ) ( -2136 -568 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -768 -1824 352 ) ( -768 -288 352 ) ( -2304 -288 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2304 -288 368 ) ( -768 -288 368 ) ( -768 -1824 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2056 -1056 304 ) ( -2112 -1056 304 ) ( -2084 -1056 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1808 -784 368 ) ( -1808 -784 352 ) ( -1920 -1056 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1808 -784 352 ) ( -1808 -784 368 ) ( -2080 -512 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3264 +{ +( -2304 -980 576 ) ( -2304 -980 592 ) ( -2304 -1056 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2272 -824 576 ) ( -2272 -824 592 ) ( -2304 -980 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2216 -692 576 ) ( -2216 -692 592 ) ( -2272 -824 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2136 -568 576 ) ( -2136 -568 592 ) ( -2216 -692 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2024 -456 576 ) ( -2024 -456 592 ) ( -2136 -568 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -768 -1824 576 ) ( -768 -288 576 ) ( -2304 -288 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2304 -288 592 ) ( -768 -288 592 ) ( -768 -1824 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2056 -1056 528 ) ( -2112 -1056 528 ) ( -2084 -1056 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1808 -784 592 ) ( -1808 -784 576 ) ( -1920 -1056 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1808 -784 576 ) ( -1808 -784 592 ) ( -2080 -512 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 3265 +{ +( -1952 -1013 576 ) ( -1920 -1016 544 ) ( -1935 -930 576 ) bricks/c_tn_m1 0 3 78 1 1 0 0 0 +( -1920 -1016 592 ) ( -1920 -1016 544 ) ( -1952 -1013 576 ) bricks/c_tn_m1 0 3 78 1 1 0 0 0 +( -1935 -930 576 ) ( -1920 -1016 544 ) ( -1920 -1016 592 ) bricks/c_tn_m1 0 3 78 1 1 0 0 0 +( -1672 -1016 576 ) ( -1696 -1016 576 ) ( -1684 -930 576 ) bricks/c_tn_m1 0 3 78 1 1 0 0 0 +} +// brush 3266 +{ +( -1920 -1016 544 ) ( -1904 -940 544 ) ( -1935 -930 576 ) bricks/c_tn_m1 0 3 78 1 1 0 0 0 +( -1904 -940 592 ) ( -1904 -940 544 ) ( -1920 -1016 544 ) bricks/c_tn_m1 0 3 78 1 1 0 0 0 +( -1935 -930 576 ) ( -1904 -940 544 ) ( -1904 -940 592 ) bricks/c_tn_m1 0 3 78 1 1 0 0 0 +( -1920 -1016 544 ) ( -1935 -930 576 ) ( -1935 -930 592 ) bricks/c_tn_m1 0 3 78 1 1 0 0 0 +( -1672 -1016 576 ) ( -1696 -1016 576 ) ( -1684 -930 576 ) bricks/c_tn_m1 0 3 78 1 1 0 0 0 +} +// brush 3267 +{ +( -1935 -930 576 ) ( -1904 -940 544 ) ( -1904 -861 576 ) bricks/c_tn_m1 0 13 66 1 1 0 0 0 +( -1904 -940 592 ) ( -1904 -940 544 ) ( -1935 -930 576 ) bricks/c_tn_m1 0 13 66 1 1 0 0 0 +( -1904 -861 576 ) ( -1904 -940 544 ) ( -1904 -940 592 ) bricks/c_tn_m1 0 13 66 1 1 0 0 0 +( -1672 -940 576 ) ( -1696 -940 576 ) ( -1684 -861 576 ) bricks/c_tn_m1 0 13 66 1 1 0 0 0 +} +// brush 3268 +{ +( -1904 -940 544 ) ( -1876 -876 544 ) ( -1904 -861 576 ) bricks/c_tn_m1 0 13 66 1 1 0 0 0 +( -1876 -876 592 ) ( -1876 -876 544 ) ( -1904 -940 544 ) bricks/c_tn_m1 0 13 66 1 1 0 0 0 +( -1904 -861 576 ) ( -1876 -876 544 ) ( -1876 -876 592 ) bricks/c_tn_m1 0 13 66 1 1 0 0 0 +( -1904 -940 592 ) ( -1904 -940 544 ) ( -1904 -861 576 ) bricks/c_tn_m1 0 13 66 1 1 0 0 0 +( -1672 -940 576 ) ( -1696 -940 576 ) ( -1684 -861 576 ) bricks/c_tn_m1 0 13 66 1 1 0 0 0 +} +// brush 3269 +{ +( -1876 -876 544 ) ( -1858 -786 576 ) ( -1904 -861 576 ) bricks/c_tn_m1 0 6 58 1 1 0 0 0 +( -1876 -876 592 ) ( -1876 -876 544 ) ( -1904 -861 576 ) bricks/c_tn_m1 0 6 58 1 1 0 0 0 +( -1876 -876 576 ) ( -1858 -786 576 ) ( -1876 -876 544 ) bricks/c_tn_m1 0 6 58 1 1 0 0 0 +( -1904 -861 576 ) ( -1858 -786 576 ) ( -1876 -876 576 ) bricks/c_tn_m1 0 6 58 1 1 0 0 0 +} +// brush 3270 +{ +( -1832 -808 544 ) ( -1858 -786 576 ) ( -1876 -876 544 ) bricks/c_tn_m1 0 6 58 1 1 0 0 0 +( -1832 -808 592 ) ( -1832 -808 544 ) ( -1876 -876 544 ) bricks/c_tn_m1 0 6 58 1 1 0 0 0 +( -1832 -808 576 ) ( -1858 -786 576 ) ( -1832 -808 544 ) bricks/c_tn_m1 0 6 58 1 1 0 0 0 +( -1876 -876 544 ) ( -1858 -786 576 ) ( -1876 -876 576 ) bricks/c_tn_m1 0 6 58 1 1 0 0 0 +( -1876 -876 576 ) ( -1858 -786 576 ) ( -1832 -808 576 ) bricks/c_tn_m1 0 6 58 1 1 0 0 0 +} +// brush 3271 +{ +( -2321 -818 576 ) ( -2384 -964 544 ) ( -2352 -967 576 ) bricks/c_tn_m1 18 15 258 1 1 0 0 0 +( -2352 -967 576 ) ( -2384 -964 544 ) ( -2384 -964 592 ) bricks/c_tn_m1 18 15 258 1 1 0 0 0 +( -2384 -964 592 ) ( -2384 -964 544 ) ( -2321 -818 576 ) bricks/c_tn_m1 18 15 258 1 1 0 0 0 +( -2321 -496 576 ) ( -2321 -552 576 ) ( -2384 -524 576 ) bricks/c_tn_m1 18 15 258 1 1 0 0 0 +} +// brush 3272 +{ +( -2321 -818 576 ) ( -2352 -808 544 ) ( -2384 -964 544 ) bricks/c_tn_m1 18 15 258 1 1 0 0 0 +( -2352 -808 592 ) ( -2352 -808 544 ) ( -2321 -818 576 ) bricks/c_tn_m1 18 15 258 1 1 0 0 0 +( -2384 -964 544 ) ( -2352 -808 544 ) ( -2352 -808 592 ) bricks/c_tn_m1 18 15 258 1 1 0 0 0 +( -2321 -818 576 ) ( -2384 -964 544 ) ( -2384 -964 592 ) bricks/c_tn_m1 18 15 258 1 1 0 0 0 +( -2321 -496 576 ) ( -2321 -552 576 ) ( -2384 -524 576 ) bricks/c_tn_m1 18 15 258 1 1 0 0 0 +} +// brush 3273 +{ +( -2187 -708 576 ) ( -2272 -824 544 ) ( -2241 -834 576 ) bricks/c_tn_m1 -48 -9 247 1 1 0 0 0 +( -2241 -834 576 ) ( -2272 -824 544 ) ( -2272 -824 592 ) bricks/c_tn_m1 -48 -9 247 1 1 0 0 0 +( -2272 -824 592 ) ( -2272 -824 544 ) ( -2187 -708 576 ) bricks/c_tn_m1 -48 -9 247 1 1 0 0 0 +( -2187 -512 576 ) ( -2187 -568 576 ) ( -2272 -540 576 ) bricks/c_tn_m1 -48 -9 247 1 1 0 0 0 +} +// brush 3274 +{ +( -2187 -708 576 ) ( -2216 -692 544 ) ( -2272 -824 544 ) bricks/c_tn_m1 -48 -9 247 1 1 0 0 0 +( -2216 -692 592 ) ( -2216 -692 544 ) ( -2187 -708 576 ) bricks/c_tn_m1 -48 -9 247 1 1 0 0 0 +( -2272 -824 544 ) ( -2216 -692 544 ) ( -2216 -692 592 ) bricks/c_tn_m1 -48 -9 247 1 1 0 0 0 +( -2187 -708 576 ) ( -2272 -824 544 ) ( -2272 -824 592 ) bricks/c_tn_m1 -48 -9 247 1 1 0 0 0 +( -2187 -512 576 ) ( -2187 -568 576 ) ( -2272 -540 576 ) bricks/c_tn_m1 -48 -9 247 1 1 0 0 0 +} +// brush 3275 +{ +( -2200 -544 368 ) ( -2200 -672 368 ) ( -1832 -672 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1832 -672 384 ) ( -2200 -672 384 ) ( -2200 -544 384 ) bricks/c_sr_mr5 0 4 58 1 1 0 0 0 +( -1832 -808 512 ) ( -1832 -808 352 ) ( -1876 -876 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1845 -797 384 ) ( -1845 -797 368 ) ( -1832 -808 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1890 -868 352 ) ( -1890 -868 512 ) ( -1876 -876 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1845 -797 368 ) ( -1845 -797 384 ) ( -1890 -868 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3276 +{ +( -2256 -676 368 ) ( -2256 -804 368 ) ( -1888 -804 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1888 -804 384 ) ( -2256 -804 384 ) ( -2256 -676 384 ) bricks/c_sr_mr5 0 12 66 1 1 0 0 0 +( -1876 -876 512 ) ( -1876 -876 352 ) ( -1904 -940 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1890 -868 512 ) ( -1890 -868 352 ) ( -1876 -876 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1920 -936 352 ) ( -1920 -936 512 ) ( -1904 -940 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1920 -936 512 ) ( -1920 -936 352 ) ( -1890 -868 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3277 +{ +( -2288 -832 368 ) ( -2288 -960 368 ) ( -1920 -960 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1920 -960 384 ) ( -2288 -960 384 ) ( -2288 -832 384 ) bricks/c_sr_mr5 0 1 78 1 1 0 0 0 +( -1904 -940 512 ) ( -1904 -940 352 ) ( -1920 -1016 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1904 -940 352 ) ( -1904 -940 512 ) ( -1920 -936 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1904 -1018 512 ) ( -1904 -1018 496 ) ( -1920 -1016 496 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1920 -936 352 ) ( -1920 -936 512 ) ( -1936 -1014 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3278 +{ +( -2200 -544 368 ) ( -2200 -672 368 ) ( -1832 -672 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1832 -672 384 ) ( -2200 -672 384 ) ( -2200 -544 384 ) bricks/c_sr_mr5 0 -12 237 1 1 0 0 0 +( -2124 -578 368 ) ( -2124 -578 384 ) ( -2136 -568 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2216 -692 512 ) ( -2216 -692 352 ) ( -2136 -568 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2204 -698 512 ) ( -2204 -698 352 ) ( -2216 -692 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2124 -578 384 ) ( -2124 -578 368 ) ( -2204 -698 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3279 +{ +( -2256 -676 368 ) ( -2256 -804 368 ) ( -1888 -804 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1888 -804 384 ) ( -2256 -804 384 ) ( -2256 -676 384 ) bricks/c_sr_mr5 0 -10 247 1 1 0 0 0 +( -2216 -692 512 ) ( -2216 -692 352 ) ( -2204 -698 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2216 -692 352 ) ( -2216 -692 512 ) ( -2272 -824 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2258 -828 512 ) ( -2258 -828 352 ) ( -2272 -824 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2204 -698 512 ) ( -2204 -698 352 ) ( -2258 -828 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3280 +{ +( -2288 -832 368 ) ( -2288 -960 368 ) ( -1920 -960 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1920 -960 384 ) ( -2288 -960 384 ) ( -2288 -832 384 ) bricks/c_sr_mr5 0 -4 258 1 1 0 0 0 +( -2258 -828 352 ) ( -2258 -828 512 ) ( -2272 -824 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2304 -980 512 ) ( -2304 -980 352 ) ( -2272 -824 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2288 -982 512 ) ( -2288 -982 352 ) ( -2304 -980 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2258 -828 512 ) ( -2258 -828 352 ) ( -2288 -982 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3281 +{ +( -656 -2520 352 ) ( -800 -2520 352 ) ( -800 -2680 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -800 -2680 368 ) ( -800 -2520 368 ) ( -656 -2520 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -544 -2592 368 ) ( -544 -2592 352 ) ( -816 -2864 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -568 -2544 368 ) ( -568 -2544 352 ) ( -528 -2584 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1960 -1480 368 ) ( -1960 -1480 352 ) ( -1688 -1208 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -872 -2830 352 ) ( -872 -2830 368 ) ( -832 -2870 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3282 +{ +( -848 288 368 ) ( -848 416 368 ) ( -1216 416 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1216 416 384 ) ( -848 416 384 ) ( -848 288 384 ) bricks/c_sr_mr5 0 5 78 1 1 0 0 0 +( -879 285 368 ) ( -879 285 384 ) ( -864 280 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -832 436 512 ) ( -832 436 352 ) ( -864 280 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -848 438 512 ) ( -848 438 352 ) ( -832 436 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -879 285 384 ) ( -879 285 368 ) ( -848 438 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3283 +{ +( -880 132 368 ) ( -880 260 368 ) ( -1248 260 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1248 260 384 ) ( -880 260 384 ) ( -880 132 384 ) bricks/c_sr_mr5 0 8 67 1 1 0 0 0 +( -934 156 368 ) ( -934 156 384 ) ( -920 148 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -920 148 352 ) ( -920 148 512 ) ( -864 280 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -879 285 384 ) ( -879 285 368 ) ( -864 280 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -879 285 368 ) ( -879 285 384 ) ( -934 156 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3284 +{ +( -936 0 368 ) ( -936 128 368 ) ( -1304 128 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1304 128 384 ) ( -936 128 384 ) ( -936 0 384 ) bricks/c_sr_mr5 0 -14 57 1 1 0 0 0 +( -1012 36 368 ) ( -1012 36 384 ) ( -1000 24 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -920 148 512 ) ( -920 148 352 ) ( -1000 24 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -934 156 384 ) ( -934 156 368 ) ( -920 148 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -934 156 368 ) ( -934 156 384 ) ( -1012 36 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3285 +{ +( -424 -2624 384 ) ( -424 -2752 384 ) ( -792 -2752 384 ) bricks/c_sr_mr5 0 -10 122 1 1 0 0 0 +( -792 -2752 368 ) ( -424 -2752 368 ) ( -424 -2624 368 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -500 -2658 384 ) ( -500 -2658 368 ) ( -488 -2648 368 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( -408 -2772 240 ) ( -408 -2772 400 ) ( -488 -2648 400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -421 -2779 368 ) ( -421 -2779 384 ) ( -408 -2772 384 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( -421 -2779 384 ) ( -421 -2779 368 ) ( -500 -2658 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3286 +{ +( -368 -2756 384 ) ( -368 -2884 384 ) ( -736 -2884 384 ) bricks/c_sr_mr5 0 -15 113 1 1 0 0 0 +( -736 -2884 368 ) ( -368 -2884 368 ) ( -368 -2756 368 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -421 -2779 384 ) ( -421 -2779 368 ) ( -408 -2772 368 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( -408 -2772 400 ) ( -408 -2772 240 ) ( -352 -2904 240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -367 -2909 368 ) ( -367 -2909 384 ) ( -352 -2904 384 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( -367 -2909 384 ) ( -367 -2909 368 ) ( -421 -2779 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3287 +{ +( -336 -2912 384 ) ( -336 -3040 384 ) ( -704 -3040 384 ) bricks/c_sr_mr5 0 1 101 1 1 0 0 0 +( -704 -3040 368 ) ( -336 -3040 368 ) ( -336 -2912 368 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -367 -2909 384 ) ( -367 -2909 368 ) ( -352 -2904 368 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( -320 -3060 240 ) ( -320 -3060 400 ) ( -352 -2904 400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -336 -3062 240 ) ( -336 -3062 400 ) ( -320 -3060 400 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( -367 -2909 368 ) ( -367 -2909 384 ) ( -336 -3062 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3288 +{ +( -320 -3008 384 ) ( -320 -3136 384 ) ( -688 -3136 384 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -688 -3136 368 ) ( -320 -3136 368 ) ( -320 -3008 368 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -336 -3062 384 ) ( -336 -3062 224 ) ( -320 -3060 224 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( -320 -3212 368 ) ( -320 -3212 384 ) ( -320 -3060 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -320 -3212 384 ) ( -320 -3212 368 ) ( -336 -3210 368 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( -336 -3062 224 ) ( -336 -3062 384 ) ( -336 -3136 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3289 +{ +( -848 288 368 ) ( -848 416 368 ) ( -1216 416 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1216 416 384 ) ( -848 416 384 ) ( -848 288 384 ) bricks/c_sr_mr5 0 -8 258 1 1 0 0 0 +( -1232 396 512 ) ( -1232 396 352 ) ( -1216 472 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1232 396 352 ) ( -1232 396 512 ) ( -1216 392 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1232 474 512 ) ( -1232 474 496 ) ( -1216 472 496 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1216 392 352 ) ( -1216 392 512 ) ( -1200 470 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3290 +{ +( -880 132 368 ) ( -880 260 368 ) ( -1248 260 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1248 260 384 ) ( -880 260 384 ) ( -880 132 384 ) bricks/c_sr_mr5 0 -7 246 1 1 0 0 0 +( -1260 332 512 ) ( -1260 332 352 ) ( -1232 396 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1246 324 512 ) ( -1246 324 352 ) ( -1260 332 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1216 392 352 ) ( -1216 392 512 ) ( -1232 396 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1216 392 512 ) ( -1216 392 352 ) ( -1246 324 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3291 +{ +( -936 0 368 ) ( -936 128 368 ) ( -1304 128 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1304 128 384 ) ( -936 128 384 ) ( -936 0 384 ) bricks/c_sr_mr5 0 9 237 1 1 0 0 0 +( -1304 264 512 ) ( -1304 264 352 ) ( -1260 332 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1292 254 512 ) ( -1292 254 352 ) ( -1304 264 352 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1246 324 352 ) ( -1246 324 512 ) ( -1260 332 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1292 254 352 ) ( -1292 254 512 ) ( -1246 324 512 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3292 +{ +( -424 -2624 384 ) ( -424 -2752 384 ) ( -792 -2752 384 ) bricks/c_sr_mr5 0 2 303 1 1 0 0 0 +( -792 -2752 368 ) ( -424 -2752 368 ) ( -424 -2624 368 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -792 -2888 240 ) ( -792 -2888 400 ) ( -748 -2956 400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -780 -2878 240 ) ( -780 -2878 400 ) ( -792 -2888 400 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( -734 -2948 400 ) ( -734 -2948 240 ) ( -748 -2956 240 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( -780 -2878 400 ) ( -780 -2878 240 ) ( -734 -2948 240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3293 +{ +( -368 -2756 384 ) ( -368 -2884 384 ) ( -736 -2884 384 ) bricks/c_sr_mr5 0 1 294 1 1 0 0 0 +( -736 -2884 368 ) ( -368 -2884 368 ) ( -368 -2756 368 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -748 -2956 240 ) ( -748 -2956 400 ) ( -720 -3020 400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -734 -2948 240 ) ( -734 -2948 400 ) ( -748 -2956 400 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( -704 -3016 400 ) ( -704 -3016 240 ) ( -720 -3020 240 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( -704 -3016 240 ) ( -704 -3016 400 ) ( -734 -2948 400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3294 +{ +( -336 -2912 384 ) ( -336 -3040 384 ) ( -704 -3040 384 ) bricks/c_sr_mr5 0 11 282 1 1 0 0 0 +( -704 -3040 368 ) ( -336 -3040 368 ) ( -336 -2912 368 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -720 -3020 240 ) ( -720 -3020 400 ) ( -704 -3096 400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -720 -3020 400 ) ( -720 -3020 240 ) ( -704 -3016 240 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( -720 -3098 240 ) ( -720 -3098 256 ) ( -704 -3096 256 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( -704 -3016 400 ) ( -704 -3016 240 ) ( -688 -3094 240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3295 +{ +( -320 -3008 384 ) ( -320 -3136 384 ) ( -688 -3136 384 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -688 -3136 368 ) ( -320 -3136 368 ) ( -320 -3008 368 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -704 -3098 384 ) ( -704 -3098 400 ) ( -704 -3136 400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -688 -3094 368 ) ( -688 -3094 384 ) ( -704 -3096 384 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( -688 -3178 384 ) ( -688 -3178 368 ) ( -704 -3176 368 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( -688 -3178 368 ) ( -688 -3178 384 ) ( -688 -3094 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3296 +{ +( -320 -3212 576 ) ( -352 -3209 576 ) ( -352 -3063 576 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +( -320 -3760 560 ) ( -320 -3760 576 ) ( -320 -3408 576 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +( -352 -3063 576 ) ( -352 -3209 576 ) ( -320 -3212 544 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +( -320 -3212 544 ) ( -352 -3209 576 ) ( -320 -3212 576 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +( -320 -3060 576 ) ( -352 -3063 576 ) ( -320 -3060 544 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +} +// brush 3297 +{ +( -383 -2914 576 ) ( -352 -2904 544 ) ( -437 -2788 576 ) bricks/c_tn_m1 136 -12 113 1 1 0 0 0 +( -352 -2904 592 ) ( -352 -2904 544 ) ( -383 -2914 576 ) bricks/c_tn_m1 136 -12 113 1 1 0 0 0 +( -437 -2788 576 ) ( -352 -2904 544 ) ( -352 -2904 592 ) bricks/c_tn_m1 136 -12 113 1 1 0 0 0 +( -544 -2914 576 ) ( -600 -2914 576 ) ( -572 -2788 576 ) bricks/c_tn_m1 136 -12 113 1 1 0 0 0 +} +// brush 3298 +{ +( -352 -2904 544 ) ( -408 -2772 544 ) ( -437 -2788 576 ) bricks/c_tn_m1 136 -12 113 1 1 0 0 0 +( -437 -2788 576 ) ( -408 -2772 544 ) ( -408 -2772 592 ) bricks/c_tn_m1 136 -12 113 1 1 0 0 0 +( -408 -2772 592 ) ( -408 -2772 544 ) ( -352 -2904 544 ) bricks/c_tn_m1 136 -12 113 1 1 0 0 0 +( -352 -2904 592 ) ( -352 -2904 544 ) ( -437 -2788 576 ) bricks/c_tn_m1 136 -12 113 1 1 0 0 0 +( -544 -2904 576 ) ( -600 -2904 576 ) ( -572 -2772 576 ) bricks/c_tn_m1 136 -12 113 1 1 0 0 0 +} +// brush 3299 +{ +( -895 290 576 ) ( -864 280 544 ) ( -832 436 544 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -864 280 592 ) ( -864 280 544 ) ( -895 290 576 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -832 436 544 ) ( -864 280 544 ) ( -864 280 592 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -895 290 576 ) ( -832 436 544 ) ( -832 436 592 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -895 -32 576 ) ( -895 24 576 ) ( -832 -4 576 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +} +// brush 3300 +{ +( -895 290 576 ) ( -832 436 544 ) ( -864 439 576 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -864 439 576 ) ( -832 436 544 ) ( -832 436 592 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -832 436 592 ) ( -832 436 544 ) ( -895 290 576 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +( -895 -32 576 ) ( -895 24 576 ) ( -832 -4 576 ) bricks/c_tn_m1 0 8 78 1 1 0 0 0 +} +// brush 3301 +{ +( -689 -3010 576 ) ( -704 -3096 544 ) ( -672 -3093 576 ) bricks/c_tn_m1 -41 12 282 1 1 0 0 0 +( -672 -3093 576 ) ( -704 -3096 544 ) ( -704 -3096 592 ) bricks/c_tn_m1 -41 12 282 1 1 0 0 0 +( -704 -3096 592 ) ( -704 -3096 544 ) ( -689 -3010 576 ) bricks/c_tn_m1 -41 12 282 1 1 0 0 0 +( -704 -3000 576 ) ( -704 -2976 576 ) ( -672 -2988 576 ) bricks/c_tn_m1 -41 12 282 1 1 0 0 0 +} +// brush 3302 +{ +( -689 -3010 576 ) ( -720 -3020 544 ) ( -704 -3096 544 ) bricks/c_tn_m1 -41 12 282 1 1 0 0 0 +( -704 -3096 544 ) ( -720 -3020 544 ) ( -720 -3020 592 ) bricks/c_tn_m1 -41 12 282 1 1 0 0 0 +( -720 -3020 592 ) ( -720 -3020 544 ) ( -689 -3010 576 ) bricks/c_tn_m1 -41 12 282 1 1 0 0 0 +( -689 -3010 592 ) ( -689 -3010 576 ) ( -704 -3096 544 ) bricks/c_tn_m1 -41 12 282 1 1 0 0 0 +( -720 -3000 576 ) ( -720 -2976 576 ) ( -689 -2988 576 ) bricks/c_tn_m1 -41 12 282 1 1 0 0 0 +} +// brush 3303 +{ +( -720 -2941 576 ) ( -720 -3020 544 ) ( -689 -3010 576 ) bricks/c_tn_m1 0 2 294 1 1 0 0 0 +( -689 -3010 576 ) ( -720 -3020 544 ) ( -720 -3020 592 ) bricks/c_tn_m1 0 2 294 1 1 0 0 0 +( -720 -3020 592 ) ( -720 -3020 544 ) ( -720 -2941 576 ) bricks/c_tn_m1 0 2 294 1 1 0 0 0 +( -720 -3000 576 ) ( -720 -2976 576 ) ( -689 -2988 576 ) bricks/c_tn_m1 0 2 294 1 1 0 0 0 +} +// brush 3304 +{ +( -720 -2941 576 ) ( -748 -2956 544 ) ( -720 -3020 544 ) bricks/c_tn_m1 0 2 294 1 1 0 0 0 +( -720 -3020 544 ) ( -748 -2956 544 ) ( -748 -2956 592 ) bricks/c_tn_m1 0 2 294 1 1 0 0 0 +( -748 -2956 592 ) ( -748 -2956 544 ) ( -720 -2941 576 ) bricks/c_tn_m1 0 2 294 1 1 0 0 0 +( -720 -2941 576 ) ( -720 -3020 544 ) ( -720 -3020 592 ) bricks/c_tn_m1 0 2 294 1 1 0 0 0 +( -748 -3000 576 ) ( -748 -2976 576 ) ( -720 -2988 576 ) bricks/c_tn_m1 0 2 294 1 1 0 0 0 +} +// brush 3305 +{ +( -720 -2941 576 ) ( -772 -2860 576 ) ( -748 -2956 544 ) bricks/c_tn_m1 -73 3 303 1 1 0 0 0 +( -720 -2941 576 ) ( -748 -2956 544 ) ( -748 -2956 592 ) bricks/c_tn_m1 -73 3 303 1 1 0 0 0 +( -748 -2956 544 ) ( -772 -2860 576 ) ( -748 -2956 576 ) bricks/c_tn_m1 -73 3 303 1 1 0 0 0 +( -748 -2956 576 ) ( -772 -2860 576 ) ( -720 -2941 576 ) bricks/c_tn_m1 -73 3 303 1 1 0 0 0 +} +// brush 3306 +{ +( -748 -2956 544 ) ( -772 -2860 576 ) ( -792 -2888 544 ) bricks/c_tn_m1 -73 3 303 1 1 0 0 0 +( -748 -2956 544 ) ( -792 -2888 544 ) ( -792 -2888 592 ) bricks/c_tn_m1 -73 3 303 1 1 0 0 0 +( -792 -2888 544 ) ( -772 -2860 576 ) ( -792 -2888 576 ) bricks/c_tn_m1 -73 3 303 1 1 0 0 0 +( -748 -2956 576 ) ( -772 -2860 576 ) ( -748 -2956 544 ) bricks/c_tn_m1 -73 3 303 1 1 0 0 0 +( -792 -2888 576 ) ( -772 -2860 576 ) ( -748 -2956 576 ) bricks/c_tn_m1 -73 3 303 1 1 0 0 0 +} +// brush 3307 +{ +( -1304 264 544 ) ( -1278 242 576 ) ( -1260 332 544 ) bricks/c_tn_m1 0 12 237 1 1 0 0 0 +( -1304 264 592 ) ( -1304 264 544 ) ( -1260 332 544 ) bricks/c_tn_m1 0 12 237 1 1 0 0 0 +( -1304 264 576 ) ( -1278 242 576 ) ( -1304 264 544 ) bricks/c_tn_m1 0 12 237 1 1 0 0 0 +( -1260 332 544 ) ( -1278 242 576 ) ( -1260 332 576 ) bricks/c_tn_m1 0 12 237 1 1 0 0 0 +( -1260 332 576 ) ( -1278 242 576 ) ( -1304 264 576 ) bricks/c_tn_m1 0 12 237 1 1 0 0 0 +} +// brush 3308 +{ +( -1278 242 576 ) ( -1231 316 576 ) ( -1260 332 544 ) bricks/c_tn_m1 0 12 237 1 1 0 0 0 +( -1260 332 544 ) ( -1231 316 576 ) ( -1260 332 576 ) bricks/c_tn_m1 0 12 237 1 1 0 0 0 +( -1260 332 576 ) ( -1278 242 576 ) ( -1260 332 544 ) bricks/c_tn_m1 0 12 237 1 1 0 0 0 +( -1260 332 576 ) ( -1231 316 576 ) ( -1278 242 576 ) bricks/c_tn_m1 0 12 237 1 1 0 0 0 +} +// brush 3309 +{ +( -1260 332 544 ) ( -1231 316 576 ) ( -1232 396 544 ) bricks/c_tn_m1 0 -9 247 1 1 0 0 0 +( -1260 332 592 ) ( -1260 332 544 ) ( -1232 396 544 ) bricks/c_tn_m1 0 -9 247 1 1 0 0 0 +( -1260 332 576 ) ( -1231 316 576 ) ( -1260 332 544 ) bricks/c_tn_m1 0 -9 247 1 1 0 0 0 +( -1232 396 544 ) ( -1231 316 576 ) ( -1232 396 576 ) bricks/c_tn_m1 0 -9 247 1 1 0 0 0 +( -1232 396 576 ) ( -1231 316 576 ) ( -1260 332 576 ) bricks/c_tn_m1 0 -9 247 1 1 0 0 0 +} +// brush 3310 +{ +( -1232 396 544 ) ( -1231 316 576 ) ( -1201 386 576 ) bricks/c_tn_m1 0 -9 247 1 1 0 0 0 +( -1232 396 592 ) ( -1232 396 544 ) ( -1201 386 576 ) bricks/c_tn_m1 0 -9 247 1 1 0 0 0 +( -1232 396 576 ) ( -1231 316 576 ) ( -1232 396 544 ) bricks/c_tn_m1 0 -9 247 1 1 0 0 0 +( -1201 386 576 ) ( -1231 316 576 ) ( -1232 396 576 ) bricks/c_tn_m1 0 -9 247 1 1 0 0 0 +} +// brush 3311 +{ +( -1216 472 544 ) ( -1232 396 544 ) ( -1201 386 576 ) bricks/c_tn_m1 0 -8 258 1 1 0 0 0 +( -1232 396 592 ) ( -1232 396 544 ) ( -1216 472 544 ) bricks/c_tn_m1 0 -8 258 1 1 0 0 0 +( -1201 386 576 ) ( -1232 396 544 ) ( -1232 396 592 ) bricks/c_tn_m1 0 -8 258 1 1 0 0 0 +( -1216 472 544 ) ( -1201 386 576 ) ( -1201 386 592 ) bricks/c_tn_m1 0 -8 258 1 1 0 0 0 +( -1464 472 576 ) ( -1440 472 576 ) ( -1452 386 576 ) bricks/c_tn_m1 0 -8 258 1 1 0 0 0 +} +// brush 3312 +{ +( -1184 469 576 ) ( -1216 472 544 ) ( -1201 386 576 ) bricks/c_tn_m1 0 -8 258 1 1 0 0 0 +( -1216 472 592 ) ( -1216 472 544 ) ( -1184 469 576 ) bricks/c_tn_m1 0 -8 258 1 1 0 0 0 +( -1201 386 576 ) ( -1216 472 544 ) ( -1216 472 592 ) bricks/c_tn_m1 0 -8 258 1 1 0 0 0 +( -1464 472 576 ) ( -1440 472 576 ) ( -1452 386 576 ) bricks/c_tn_m1 0 -8 258 1 1 0 0 0 +} +// brush 3313 +{ +( -832 436 576 ) ( -832 436 592 ) ( -832 512 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -864 280 576 ) ( -864 280 592 ) ( -832 436 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -920 148 576 ) ( -920 148 592 ) ( -864 280 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1000 24 576 ) ( -1000 24 592 ) ( -920 148 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1112 -88 576 ) ( -1112 -88 592 ) ( -1000 24 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2368 1280 576 ) ( -2368 -256 576 ) ( -832 -256 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -832 -256 592 ) ( -2368 -256 592 ) ( -2368 1280 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1080 512 528 ) ( -1024 512 528 ) ( -1052 512 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1328 240 592 ) ( -1328 240 576 ) ( -1216 512 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1328 240 576 ) ( -1328 240 592 ) ( -1056 -32 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 3314 +{ +( -488 -2648 576 ) ( -488 -2648 592 ) ( -600 -2536 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -408 -2772 576 ) ( -408 -2772 592 ) ( -488 -2648 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -352 -2904 576 ) ( -352 -2904 592 ) ( -408 -2772 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -352 -2904 592 ) ( -352 -2904 576 ) ( -320 -3060 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -320 -3060 592 ) ( -320 -3060 576 ) ( -320 -3136 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1856 -3904 576 ) ( -320 -3904 576 ) ( -320 -2368 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -320 -2368 592 ) ( -320 -3904 592 ) ( -1856 -3904 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -424 -3136 528 ) ( -488 -3136 528 ) ( -456 -3136 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -816 -2864 576 ) ( -816 -2864 592 ) ( -704 -3136 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -816 -2864 592 ) ( -816 -2864 576 ) ( -544 -2592 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 3315 +{ +( -832 436 352 ) ( -832 436 368 ) ( -832 512 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -864 280 352 ) ( -864 280 368 ) ( -832 436 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -920 148 352 ) ( -920 148 368 ) ( -864 280 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1000 24 352 ) ( -1000 24 368 ) ( -920 148 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1112 -88 352 ) ( -1112 -88 368 ) ( -1000 24 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2368 1280 352 ) ( -2368 -256 352 ) ( -832 -256 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -832 -256 368 ) ( -2368 -256 368 ) ( -2368 1280 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1080 512 304 ) ( -1024 512 304 ) ( -1052 512 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1328 240 368 ) ( -1328 240 352 ) ( -1216 512 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1328 240 352 ) ( -1328 240 368 ) ( -1056 -32 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3316 +{ +( -488 -2648 352 ) ( -488 -2648 368 ) ( -600 -2536 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -408 -2772 352 ) ( -408 -2772 368 ) ( -488 -2648 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -352 -2904 352 ) ( -352 -2904 368 ) ( -408 -2772 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -352 -2904 368 ) ( -352 -2904 352 ) ( -320 -3060 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -320 -3060 368 ) ( -320 -3060 352 ) ( -320 -3136 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1856 -3904 352 ) ( -320 -3904 352 ) ( -320 -2368 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -320 -2368 368 ) ( -320 -3904 368 ) ( -1856 -3904 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -424 -3136 304 ) ( -488 -3136 304 ) ( -456 -3136 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -816 -2864 352 ) ( -816 -2864 368 ) ( -704 -3136 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -816 -2864 368 ) ( -816 -2864 352 ) ( -544 -2592 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3317 +{ +( -320 -3008 576 ) ( -320 -3136 576 ) ( -688 -3136 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -304 -3058 416 ) ( -304 -3058 432 ) ( -320 -3060 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -304 -3214 368 ) ( -304 -3214 576 ) ( -304 -3058 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -304 -3214 576 ) ( -304 -3214 368 ) ( -320 -3212 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -320 -3116 512 ) ( -320 -3136 512 ) ( -320 -3126 496 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -392 -3136 368 ) ( -360 -3136 368 ) ( -376 -3058 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3318 +{ +( -336 -2912 576 ) ( -336 -3040 576 ) ( -704 -3040 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -336 -2898 416 ) ( -336 -2898 432 ) ( -352 -2904 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -336 -2898 512 ) ( -336 -2898 496 ) ( -304 -3058 496 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -304 -3058 432 ) ( -304 -3058 416 ) ( -320 -3060 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -352 -2904 368 ) ( -320 -3060 368 ) ( -336 -2982 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -392 -3060 368 ) ( -360 -3060 368 ) ( -376 -2898 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3319 +{ +( -368 -2756 576 ) ( -368 -2884 576 ) ( -736 -2884 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -394 -2764 416 ) ( -394 -2764 432 ) ( -408 -2772 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -394 -2764 512 ) ( -394 -2764 496 ) ( -336 -2898 496 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -336 -2898 432 ) ( -336 -2898 416 ) ( -352 -2904 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -408 -2772 432 ) ( -352 -2904 432 ) ( -380 -2838 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -392 -2904 368 ) ( -360 -2904 368 ) ( -376 -2764 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3320 +{ +( -424 -2624 576 ) ( -424 -2752 576 ) ( -792 -2752 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -475 -2637 368 ) ( -475 -2637 576 ) ( -488 -2648 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -475 -2637 576 ) ( -475 -2637 368 ) ( -394 -2764 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -394 -2764 432 ) ( -394 -2764 416 ) ( -408 -2772 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -488 -2648 432 ) ( -408 -2772 432 ) ( -448 -2710 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -392 -2772 368 ) ( -360 -2772 368 ) ( -376 -2638 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3321 +{ +( -1304 128 576 ) ( -936 128 576 ) ( -936 0 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -987 13 576 ) ( -987 13 368 ) ( -1000 24 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -987 13 368 ) ( -987 13 576 ) ( -906 140 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -906 140 560 ) ( -906 140 576 ) ( -920 148 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1000 24 560 ) ( -920 148 560 ) ( -960 86 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1000 -184 368 ) ( -1000 -216 368 ) ( -906 -200 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3322 +{ +( -1248 260 576 ) ( -880 260 576 ) ( -880 132 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -906 140 576 ) ( -906 140 560 ) ( -920 148 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -906 140 352 ) ( -906 140 368 ) ( -848 274 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -848 274 560 ) ( -848 274 576 ) ( -864 280 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -920 148 560 ) ( -864 280 560 ) ( -892 214 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -920 -184 368 ) ( -920 -216 368 ) ( -848 -200 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3323 +{ +( -1216 416 576 ) ( -848 416 576 ) ( -848 288 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -848 274 576 ) ( -848 274 560 ) ( -864 280 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -848 274 352 ) ( -848 274 368 ) ( -816 434 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -816 434 560 ) ( -816 434 576 ) ( -832 436 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -864 280 560 ) ( -832 436 560 ) ( -848 358 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -864 -184 368 ) ( -864 -216 368 ) ( -816 -200 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3324 +{ +( -1216 416 576 ) ( -848 416 576 ) ( -848 288 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1248 400 432 ) ( -1248 400 416 ) ( -1232 474 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1248 400 560 ) ( -1248 400 576 ) ( -1232 396 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1232 474 576 ) ( -1232 474 560 ) ( -1216 472 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1216 472 496 ) ( -1232 396 496 ) ( -1224 434 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1248 1968 368 ) ( -1248 1936 368 ) ( -1216 1952 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3325 +{ +( -1248 260 576 ) ( -880 260 576 ) ( -880 132 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1274 340 368 ) ( -1274 340 352 ) ( -1248 400 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1274 340 560 ) ( -1274 340 576 ) ( -1260 332 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1248 400 576 ) ( -1248 400 560 ) ( -1232 396 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1232 396 496 ) ( -1260 332 496 ) ( -1246 364 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1274 1968 368 ) ( -1274 1936 368 ) ( -1232 1952 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3326 +{ +( -1304 128 576 ) ( -936 128 576 ) ( -936 0 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1318 274 432 ) ( -1318 274 416 ) ( -1274 340 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1318 274 560 ) ( -1318 274 576 ) ( -1304 264 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1274 340 576 ) ( -1274 340 560 ) ( -1260 332 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1260 332 496 ) ( -1304 264 496 ) ( -1282 298 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1318 1968 368 ) ( -1318 1936 368 ) ( -1260 1952 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3327 +{ +( -424 -2624 576 ) ( -424 -2752 576 ) ( -792 -2752 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -805 -2897 368 ) ( -805 -2897 576 ) ( -762 -2964 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -805 -2897 576 ) ( -805 -2897 368 ) ( -792 -2888 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -762 -2964 560 ) ( -762 -2964 576 ) ( -748 -2956 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -748 -2956 512 ) ( -792 -2888 512 ) ( -770 -2922 496 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2544 -2964 368 ) ( -2512 -2964 368 ) ( -2528 -2888 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3328 +{ +( -368 -2756 576 ) ( -368 -2884 576 ) ( -736 -2884 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -762 -2964 352 ) ( -762 -2964 368 ) ( -736 -3024 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -762 -2964 576 ) ( -762 -2964 560 ) ( -748 -2956 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -736 -3024 560 ) ( -736 -3024 576 ) ( -720 -3020 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -720 -3020 512 ) ( -748 -2956 512 ) ( -734 -2988 496 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2544 -3024 368 ) ( -2512 -3024 368 ) ( -2528 -2956 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3329 +{ +( -336 -2912 576 ) ( -336 -3040 576 ) ( -704 -3040 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -736 -3024 416 ) ( -736 -3024 432 ) ( -720 -3098 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -736 -3024 576 ) ( -736 -3024 560 ) ( -720 -3020 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -720 -3098 416 ) ( -720 -3098 432 ) ( -704 -3096 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -704 -3096 368 ) ( -720 -3020 368 ) ( -712 -3058 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2544 -3098 368 ) ( -2512 -3098 368 ) ( -2528 -3020 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3330 +{ +( -320 -3008 576 ) ( -320 -3136 576 ) ( -688 -3136 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -720 -3098 352 ) ( -720 -3098 368 ) ( -720 -3136 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -720 -3098 432 ) ( -720 -3098 416 ) ( -704 -3096 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -704 -3176 576 ) ( -704 -3176 368 ) ( -720 -3174 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -704 -3176 368 ) ( -704 -3176 576 ) ( -704 -3096 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2544 -3136 368 ) ( -2512 -3136 368 ) ( -2528 -3096 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3331 +{ +( -949 164 576 ) ( -1024 48 576 ) ( -920 148 544 ) bricks/c_tn_m1 89 -11 57 1 1 0 0 0 +( -949 164 576 ) ( -920 148 544 ) ( -920 148 592 ) bricks/c_tn_m1 89 -11 57 1 1 0 0 0 +( -920 148 544 ) ( -1024 48 576 ) ( -920 148 576 ) bricks/c_tn_m1 89 -11 57 1 1 0 0 0 +( -920 148 576 ) ( -1024 48 576 ) ( -949 164 576 ) bricks/c_tn_m1 89 -11 57 1 1 0 0 0 +} +// brush 3332 +{ +( -920 148 544 ) ( -1024 48 576 ) ( -1000 24 544 ) bricks/c_tn_m1 89 -11 57 1 1 0 0 0 +( -1000 24 544 ) ( -1024 48 576 ) ( -1000 24 576 ) bricks/c_tn_m1 89 -11 57 1 1 0 0 0 +( -920 148 544 ) ( -1000 24 544 ) ( -1000 24 592 ) bricks/c_tn_m1 89 -11 57 1 1 0 0 0 +( -920 148 576 ) ( -1024 48 576 ) ( -920 148 544 ) bricks/c_tn_m1 89 -11 57 1 1 0 0 0 +( -1000 24 576 ) ( -1024 48 576 ) ( -920 148 576 ) bricks/c_tn_m1 89 -11 57 1 1 0 0 0 +} +// brush 3333 +{ +( -488 -2648 544 ) ( -515 -2669 576 ) ( -408 -2772 544 ) bricks/c_tn_m1 97 -3 123 1 1 0 0 0 +( -488 -2648 576 ) ( -515 -2669 576 ) ( -488 -2648 544 ) bricks/c_tn_m1 97 -3 123 1 1 0 0 0 +( -488 -2648 592 ) ( -488 -2648 544 ) ( -408 -2772 544 ) bricks/c_tn_m1 97 -3 123 1 1 0 0 0 +( -408 -2772 544 ) ( -515 -2669 576 ) ( -408 -2772 576 ) bricks/c_tn_m1 97 -3 123 1 1 0 0 0 +( -408 -2772 576 ) ( -515 -2669 576 ) ( -488 -2648 576 ) bricks/c_tn_m1 97 -3 123 1 1 0 0 0 +} +// brush 3334 +{ +( -408 -2772 544 ) ( -515 -2669 576 ) ( -437 -2788 576 ) bricks/c_tn_m1 97 -3 123 1 1 0 0 0 +( -408 -2772 592 ) ( -408 -2772 544 ) ( -437 -2788 576 ) bricks/c_tn_m1 97 -3 123 1 1 0 0 0 +( -408 -2772 576 ) ( -515 -2669 576 ) ( -408 -2772 544 ) bricks/c_tn_m1 97 -3 123 1 1 0 0 0 +( -437 -2788 576 ) ( -515 -2669 576 ) ( -408 -2772 576 ) bricks/c_tn_m1 97 -3 123 1 1 0 0 0 +} +// brush 3335 +{ +( -1672 1096 528 ) ( -1660 1108 528 ) ( -1868 1316 528 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1888 1304 536 ) ( -1872 1320 536 ) ( -1648 1096 536 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1776 1224 528 ) ( -1776 1224 568 ) ( -1848 1296 568 ) metals/mt_pv_m16bc 0 -8 0 1 1 0 0 0 +( -1888 1304 536 ) ( -1664 1080 536 ) ( -1660 1084 528 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1660 1108 528 ) ( -1672 1096 528 ) ( -1672 1088 536 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1880 1304 528 ) ( -1868 1316 528 ) ( -1872 1320 536 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 3336 +{ +( -1960 1280 576 ) ( -1960 1280 368 ) ( -1896 1344 368 ) common/li_track 16 16 -180 0.500000 -0.500000 0 0 0 +( -1960 1280 368 ) ( -1960 1280 576 ) ( -1912 1280 576 ) common/li_track 16 16 -180 0.500000 -0.500000 0 0 0 +( -1936 1304 384 ) ( -1912 1280 384 ) ( -1924 1292 576 ) common/li_track 16 16 -180 0.500000 -0.500000 0 0 0 +( -1960 1280 440 ) ( -1928 1280 440 ) ( -1944 1304 440 ) common/li_track 16 16 -180 0.500000 -0.500000 0 0 0 +( -1944 1280 440 ) ( -1944 1296 440 ) ( -1944 1288 496 ) common/li_track 16 16 -180 0.500000 -0.500000 0 0 0 +( -1928 1296 440 ) ( -1928 1280 440 ) ( -1928 1288 496 ) common/li_track 16 16 -180 0.500000 -0.500000 0 0 0 +( -1936 1280 456 ) ( -1944 1280 456 ) ( -1940 1304 456 ) common/li_track 16 16 -180 0.500000 -0.500000 0 0 0 +} +// brush 3337 +{ +( -1960 1280 576 ) ( -1960 1280 368 ) ( -1896 1344 368 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +( -1960 1280 368 ) ( -1960 1280 576 ) ( -1912 1280 576 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +( -1936 1304 384 ) ( -1912 1280 384 ) ( -1924 1292 576 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +( -1944 1280 440 ) ( -1944 1296 440 ) ( -1944 1288 496 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +( -1928 1296 440 ) ( -1928 1280 440 ) ( -1928 1288 496 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +( -1936 1280 480 ) ( -1944 1280 480 ) ( -1940 1304 480 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +( -1944 1280 456 ) ( -1936 1280 456 ) ( -1940 1304 456 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +} +// brush 3338 +{ +( -1960 1280 576 ) ( -1960 1280 368 ) ( -1896 1344 368 ) common/li_mf_v16 16 0 -180 0.500000 -0.500000 0 1 8000 +( -1960 1280 368 ) ( -1960 1280 576 ) ( -1912 1280 576 ) common/li_mf_v16 16 0 -180 0.500000 -0.500000 0 1 8000 +( -1936 1304 384 ) ( -1912 1280 384 ) ( -1924 1292 576 ) common/li_mf_v16 16 0 -180 0.500000 -0.500000 0 1 8000 +( -1936 1280 496 ) ( -1960 1280 496 ) ( -1948 1304 496 ) common/li_mf_v16 16 0 -180 0.500000 -0.500000 0 1 8000 +( -1944 1280 440 ) ( -1944 1296 440 ) ( -1944 1288 496 ) common/li_mf_v16 16 0 -180 0.500000 -0.500000 0 1 8000 +( -1928 1296 440 ) ( -1928 1280 440 ) ( -1928 1288 496 ) common/li_mf_v16 16 0 -180 0.500000 -0.500000 0 1 8000 +( -1944 1280 480 ) ( -1936 1280 480 ) ( -1940 1304 480 ) common/li_mf_v16 16 0 -180 0.500000 -0.500000 0 1 8000 +} +// brush 3339 +{ +( -1960 1280 368 ) ( -1960 1280 576 ) ( -1912 1280 576 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +( -1936 1304 384 ) ( -1912 1280 384 ) ( -1924 1292 576 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +( -1936 1280 496 ) ( -1960 1280 496 ) ( -1948 1304 496 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +( -1960 1280 440 ) ( -1928 1280 440 ) ( -1944 1304 440 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +( -1928 1280 440 ) ( -1928 1296 440 ) ( -1928 1288 496 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +} +// brush 3340 +{ +( -1960 1280 576 ) ( -1960 1280 368 ) ( -1896 1344 368 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +( -1960 1280 368 ) ( -1960 1280 576 ) ( -1912 1280 576 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +( -1936 1280 496 ) ( -1960 1280 496 ) ( -1948 1304 496 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +( -1960 1280 440 ) ( -1928 1280 440 ) ( -1944 1304 440 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +( -1944 1296 440 ) ( -1944 1280 440 ) ( -1944 1288 496 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +} +// brush 3341 +{ +( -1936 1320 384 ) ( -1936 1304 384 ) ( -1872 1304 384 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +( -1960 1280 576 ) ( -1960 1280 368 ) ( -1896 1344 368 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +( -1960 1280 368 ) ( -1960 1280 576 ) ( -1912 1280 576 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +( -1936 1304 384 ) ( -1912 1280 384 ) ( -1924 1292 576 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +( -1928 1280 440 ) ( -1960 1280 440 ) ( -1944 1304 440 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +} +// brush 3342 +{ +( -1872 1304 576 ) ( -1936 1304 576 ) ( -1936 1320 576 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +( -1960 1280 576 ) ( -1960 1280 368 ) ( -1896 1344 368 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +( -1960 1280 368 ) ( -1960 1280 576 ) ( -1912 1280 576 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +( -1936 1304 384 ) ( -1912 1280 384 ) ( -1924 1292 576 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +( -1960 1280 496 ) ( -1936 1280 496 ) ( -1948 1304 496 ) bricks/c_tn_m3 168 128 0 1 1 0 0 0 +} +// brush 3343 +{ +( -1936 1320 384 ) ( -1936 1304 384 ) ( -1872 1304 384 ) bricks/c_tn_m3 112 128 0 1 1 0 0 0 +( -1872 1304 576 ) ( -1936 1304 576 ) ( -1936 1320 576 ) bricks/c_tn_m3 112 128 0 1 1 0 0 0 +( -1910 1282 368 ) ( -1910 1282 576 ) ( -1870 1322 576 ) bricks/c_tn_m3 112 128 0 1 1 0 0 0 +( -1896 1344 576 ) ( -1896 1344 368 ) ( -1872 1320 368 ) bricks/c_tn_m3 112 128 0 1 1 0 0 0 +( -1960 1280 576 ) ( -1960 1280 368 ) ( -1896 1344 368 ) bricks/c_tn_m3 112 128 0 1 1 0 0 0 +( -1912 1280 384 ) ( -1936 1304 384 ) ( -1924 1292 576 ) bricks/c_tn_m3 112 128 0 1 1 0 0 0 +} +// brush 3344 +{ +( -1680 1512 576 ) ( -1896 1296 576 ) ( -1920 1320 576 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +( -1936 1304 576 ) ( -1936 1304 544 ) ( -1704 1536 544 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +( -1896 1296 576 ) ( -1680 1512 576 ) ( -1704 1536 544 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +( -2016 1176 544 ) ( -1984 1256 544 ) ( -2000 1216 576 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +( -1960 1280 544 ) ( -1944 1280 544 ) ( -1952 1280 576 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +} +// brush 3345 +{ +( -2056 -3536 368 ) ( -1800 -3536 368 ) ( -1800 -3336 368 ) bricks/c_sr_mr5 -64 -15 -180 1 1 0 0 0 +( -1800 -3336 384 ) ( -1800 -3536 384 ) ( -2056 -3536 384 ) bricks/c_sr_mr5 0 -5 135 1 1 0 0 0 +( -2048 -3304 368 ) ( -2048 -3304 384 ) ( -1816 -3536 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1816 -3520 384 ) ( -1816 -3520 368 ) ( -1816 -3536 368 ) bricks/c_sr_mr5 63 15 -180 1 -1 0 0 0 +( -2104 -3232 384 ) ( -2104 -3232 368 ) ( -1816 -3520 368 ) bricks/c_sr_mr5 95 15 -180 1 -1 0 0 0 +( -2104 -3232 368 ) ( -2104 -3232 384 ) ( -2104 -3248 384 ) bricks/c_sr_mr5 63 15 -180 1 -1 0 0 0 +} +// brush 3346 +{ +( -2192 -3208 368 ) ( -2128 -3208 368 ) ( -2128 -3192 368 ) bricks/c_tn_m3 119 -71 -90 1 1 0 0 0 +( -2128 -3192 384 ) ( -2128 -3208 384 ) ( -2192 -3208 384 ) bricks/c_sr_mr5 0 -5 135 1 1 0 0 0 +( -2185 -3207 576 ) ( -2145 -3247 576 ) ( -2145 -3247 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -2192 -3192 368 ) ( -2168 -3168 368 ) ( -2168 -3168 576 ) bricks/c_tn_m3 -112 127 0 1 1 0 0 0 +( -2168 -3168 368 ) ( -2104 -3232 368 ) ( -2104 -3232 576 ) bricks/c_tn_m3 80 127 -180 1 -1 0 0 0 +( -2144 -3240 384 ) ( -2144 -3232 368 ) ( -2144 -3248 368 ) bricks/c_sr_mr5 -8 15 -180 1 -1 0 0 0 +} +// brush 3347 +{ +( -2192 -3208 368 ) ( -2128 -3208 368 ) ( -2128 -3192 368 ) bricks/c_tn_m3 119 -71 -90 1 1 0 0 0 +( -2128 -3192 384 ) ( -2128 -3208 384 ) ( -2192 -3208 384 ) bricks/c_sr_mr5 0 -2 180 1 1 0 0 0 +( -2104 -3232 368 ) ( -2104 -3232 384 ) ( -2144 -3192 384 ) bricks/c_tn_m3 80 127 -180 1 -1 0 0 0 +( -2136 -3248 576 ) ( -2088 -3248 576 ) ( -2088 -3248 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -2104 -3232 384 ) ( -2104 -3232 368 ) ( -2104 -3248 368 ) bricks/c_sr_mr5 -8 15 -180 1 -1 0 0 0 +( -2144 -3240 384 ) ( -2144 -3248 368 ) ( -2144 -3232 368 ) bricks/c_sr_mr5 -8 15 -180 1 -1 0 0 0 +} +// brush 3348 +{ +( -2408 -3472 368 ) ( -2392 -3472 368 ) ( -2392 -3408 368 ) bricks/c_tn_m3 -64 -64 -180 1 1 0 0 0 +( -2392 -3408 384 ) ( -2392 -3472 384 ) ( -2408 -3472 384 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -2368 -3496 576 ) ( -2368 -3496 368 ) ( -2432 -3432 368 ) bricks/c_tn_m3 127 127 -180 1 -1 0 0 0 +( -2352 -3512 368 ) ( -2352 -3512 576 ) ( -2352 -3464 576 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -2352 -3496 368 ) ( -2368 -3496 368 ) ( -2360 -3496 384 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2368 -3456 368 ) ( -2352 -3456 368 ) ( -2360 -3456 384 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +} +// brush 3349 +{ +( -2408 -3472 368 ) ( -2392 -3472 368 ) ( -2392 -3408 368 ) bricks/c_tn_m3 -64 -64 -180 1 1 0 0 0 +( -2392 -3408 384 ) ( -2392 -3472 384 ) ( -2408 -3472 384 ) bricks/c_sr_mr5 0 10 315 1 1 0 0 0 +( -2353 -3455 368 ) ( -2353 -3455 576 ) ( -2393 -3415 576 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -2432 -3432 576 ) ( -2432 -3432 368 ) ( -2408 -3408 368 ) bricks/c_tn_m3 127 127 -180 1 -1 0 0 0 +( -2368 -3496 576 ) ( -2368 -3496 368 ) ( -2432 -3432 368 ) bricks/c_tn_m3 127 127 -180 1 -1 0 0 0 +( -2352 -3456 368 ) ( -2368 -3456 368 ) ( -2360 -3456 384 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +} +// brush 3350 +{ +( -2568 -3536 368 ) ( -2312 -3536 368 ) ( -2312 -3336 368 ) bricks/c_sr_mr5 -64 -15 -180 1 1 0 0 0 +( -2312 -3336 384 ) ( -2312 -3536 384 ) ( -2568 -3536 384 ) bricks/c_sr_mr5 0 12 315 1 1 0 0 0 +( -2368 -3496 368 ) ( -2368 -3496 384 ) ( -2344 -3520 384 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -2328 -3520 368 ) ( -2328 -3520 384 ) ( -2680 -3168 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -2328 -3520 368 ) ( -2344 -3520 368 ) ( -2336 -3520 384 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2368 -3496 384 ) ( -2368 -3496 368 ) ( -2352 -3496 368 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +} +// brush 3351 +{ +( -2192 -3208 384 ) ( -2128 -3208 384 ) ( -2128 -3192 384 ) bricks/c_tn_m3 -112 128 90 1 1 0 0 0 +( -2128 -3192 576 ) ( -2128 -3208 576 ) ( -2192 -3208 576 ) bricks/c_tn_m3 -112 128 90 1 1 0 0 0 +( -2193 -3191 576 ) ( -2153 -3231 576 ) ( -2153 -3231 368 ) bricks/c_tn_m3 39 128 0 0.710000 1 0 0 0 +( -2192 -3192 368 ) ( -2168 -3168 368 ) ( -2168 -3168 576 ) bricks/c_tn_m3 23 127 -180 1 -1 0 0 0 +( -2168 -3168 368 ) ( -2104 -3232 368 ) ( -2104 -3232 576 ) bricks/c_tn_m3 -7 128 0 1 1 0 0 0 +( -2152 -3232 576 ) ( -2104 -3232 576 ) ( -2104 -3232 368 ) bricks/c_tn_m3 104 128 0 1 1 0 0 0 +} +// brush 3352 +{ +( -1840 -3544 576 ) ( -2056 -3328 576 ) ( -2032 -3304 576 ) common/li_pv_v4a 0 8 316 1 1 0 1 7000 +( -2056 -3328 576 ) ( -1840 -3544 576 ) ( -1816 -3520 544 ) common/li_pv_v4a 0 8 316 1 1 0 1 7000 +( -1940 -3396 544 ) ( -1964 -3420 544 ) ( -1952 -3408 576 ) common/li_pv_v4a 0 8 316 1 1 0 1 7000 +( -2012 -3372 544 ) ( -1988 -3348 544 ) ( -2000 -3360 576 ) common/li_pv_v4a 0 8 316 1 1 0 1 7000 +( -1959 -3415 544 ) ( -2007 -3367 544 ) ( -1983 -3391 576 ) common/li_pv_v4a 0 8 316 1 1 0 1 7000 +( -1994 -3354 544 ) ( -1946 -3402 544 ) ( -1970 -3378 576 ) common/li_pv_v4a 0 8 316 1 1 0 1 7000 +} +// brush 3353 +{ +( -1840 -3544 576 ) ( -2056 -3328 576 ) ( -2032 -3304 576 ) bricks/c_tn_m1 0 -2 135 1 1 0 0 0 +( -2048 -3288 576 ) ( -2048 -3288 544 ) ( -1816 -3520 544 ) bricks/c_tn_m1 0 -2 135 1 1 0 0 0 +( -2056 -3328 576 ) ( -1840 -3544 576 ) ( -1816 -3520 544 ) bricks/c_tn_m1 0 -2 135 1 1 0 0 0 +( -1940 -3396 544 ) ( -1964 -3420 544 ) ( -1952 -3408 576 ) bricks/c_tn_m1 0 -2 135 1 1 0 0 0 +( -2012 -3372 544 ) ( -1988 -3348 544 ) ( -2000 -3360 576 ) bricks/c_tn_m1 0 -2 135 1 1 0 0 0 +( -1946 -3402 544 ) ( -1994 -3354 544 ) ( -1970 -3378 576 ) bricks/c_tn_m1 0 -2 135 1 1 0 0 0 +} +// brush 3354 +{ +( -1840 -3544 576 ) ( -2056 -3328 576 ) ( -2032 -3304 576 ) bricks/c_tn_m1 0 -2 135 1 1 0 0 0 +( -2056 -3328 576 ) ( -1840 -3544 576 ) ( -1816 -3520 544 ) bricks/c_tn_m1 0 -2 135 1 1 0 0 0 +( -1940 -3396 544 ) ( -1964 -3420 544 ) ( -1952 -3408 576 ) bricks/c_tn_m1 0 -2 135 1 1 0 0 0 +( -2012 -3372 544 ) ( -1988 -3348 544 ) ( -2000 -3360 576 ) bricks/c_tn_m1 0 -2 135 1 1 0 0 0 +( -2007 -3367 544 ) ( -1959 -3415 544 ) ( -1983 -3391 576 ) bricks/c_tn_m1 0 -2 135 1 1 0 0 0 +} +// brush 3355 +{ +( -1840 -3544 576 ) ( -2056 -3328 576 ) ( -2032 -3304 576 ) bricks/c_tn_m1 0 -2 135 1 1 0 0 0 +( -2048 -3288 576 ) ( -2048 -3288 544 ) ( -1816 -3520 544 ) bricks/c_tn_m1 0 -2 135 1 1 0 0 0 +( -2056 -3328 576 ) ( -1840 -3544 576 ) ( -1816 -3520 544 ) bricks/c_tn_m1 0 -2 135 1 1 0 0 0 +( -1816 -3520 544 ) ( -1832 -3552 544 ) ( -1824 -3536 576 ) bricks/c_tn_m1 0 -2 135 1 1 0 0 0 +( -1964 -3420 544 ) ( -1940 -3396 544 ) ( -1952 -3408 576 ) bricks/c_tn_m1 0 -2 135 1 1 0 0 0 +} +// brush 3356 +{ +( -2186 -3520 576 ) ( -2189 -3552 576 ) ( -2304 -3552 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2176 -3520 592 ) ( -2304 -3520 592 ) ( -2304 -3520 536 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2304 -3552 576 ) ( -2189 -3552 576 ) ( -2186 -3520 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2368 -3552 544 ) ( -2368 -3536 544 ) ( -2368 -3544 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2344 -3520 544 ) ( -2264 -3552 544 ) ( -2304 -3536 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 3357 +{ +( -1866 -3520 576 ) ( -1869 -3552 576 ) ( -1984 -3552 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1856 -3520 592 ) ( -1984 -3520 592 ) ( -1984 -3520 536 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1984 -3552 576 ) ( -1869 -3552 576 ) ( -1866 -3520 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1792 -3512 544 ) ( -1792 -3544 544 ) ( -1792 -3528 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1832 -3552 544 ) ( -1816 -3520 544 ) ( -1824 -3536 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 3358 +{ +( -2568 -3536 368 ) ( -2312 -3536 368 ) ( -2312 -3336 368 ) bricks/c_sr_mr5 -64 -15 -180 1 1 0 0 0 +( -2312 -3336 384 ) ( -2312 -3536 384 ) ( -2568 -3536 384 ) bricks/c_sr_mr5 0 -9 270 1 1 0 0 0 +( -2336 -3536 384 ) ( -2336 -3536 368 ) ( -2344 -3520 368 ) bricks/c_sr_mr5 87 16 -180 1 -1 0 0 0 +( -2328 -3528 368 ) ( -2328 -3528 384 ) ( -2328 -3520 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -2328 -3528 384 ) ( -2328 -3528 368 ) ( -2336 -3536 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -2344 -3520 368 ) ( -2328 -3520 368 ) ( -2336 -3520 384 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +} +// brush 3359 +{ +( -2288 -3504 576 ) ( -1984 -3504 576 ) ( -1984 -3288 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1984 -3288 592 ) ( -1984 -3504 592 ) ( -2288 -3504 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2152 -3152 576 ) ( -2152 -3152 592 ) ( -2448 -3448 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2392 -3504 592 ) ( -2392 -3504 576 ) ( -2448 -3448 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2392 -3504 576 ) ( -2392 -3504 592 ) ( -1800 -3504 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1800 -3504 576 ) ( -1800 -3504 592 ) ( -2152 -3152 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 3360 +{ +( -2288 -3504 352 ) ( -1984 -3504 352 ) ( -1984 -3288 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1984 -3288 368 ) ( -1984 -3504 368 ) ( -2288 -3504 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2152 -3152 352 ) ( -2152 -3152 368 ) ( -2448 -3448 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2392 -3504 368 ) ( -2392 -3504 352 ) ( -2448 -3448 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2392 -3504 352 ) ( -2392 -3504 368 ) ( -1800 -3504 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1800 -3504 352 ) ( -1800 -3504 368 ) ( -2152 -3152 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3361 +{ +( -2348 -3542 368 ) ( -2094 -3797 368 ) ( -2082 -3786 368 ) bricks/c_tn_m3 -112 128 90 1 1 0 0 0 +( -2082 -3786 576 ) ( -2094 -3797 576 ) ( -2348 -3542 576 ) bricks/c_tn_m3 -112 128 90 1 1 0 0 0 +( -2344 -3520 368 ) ( -2344 -3520 576 ) ( -2432 -3432 576 ) bricks/c_tn_m3 61 128 0 0.710000 1 0 0 0 +( -2128 -3768 368 ) ( -2128 -3768 576 ) ( -2096 -3800 576 ) bricks/c_tn_m3 -56 128 0 1 1 0 0 0 +( -2448 -3448 576 ) ( -2448 -3448 368 ) ( -2432 -3432 368 ) bricks/c_tn_m3 23 127 -180 1 -1 0 0 0 +( -2344 -3520 576 ) ( -2344 -3520 368 ) ( -2392 -3504 368 ) bricks/c_tn_m3 0 127 -180 1 -1 0 0 0 +} +// brush 3362 +{ +( -2068 -3262 368 ) ( -1814 -3517 368 ) ( -1802 -3506 368 ) bricks/c_tn_m3 -86 128 0 0.710000 1 0 0 0 +( -1802 -3506 576 ) ( -1814 -3517 576 ) ( -2068 -3262 576 ) bricks/c_tn_m3 -86 128 0 0.710000 1 0 0 0 +( -2152 -3152 576 ) ( -2152 -3152 368 ) ( -1744 -3560 368 ) bricks/c_tn_m3 -86 128 0 0.710000 1 0 0 0 +( -1816 -3520 576 ) ( -1816 -3520 368 ) ( -2168 -3168 368 ) bricks/c_tn_m3 -86 128 0 0.710000 1 0 0 0 +( -2168 -3168 576 ) ( -2168 -3168 368 ) ( -2152 -3152 368 ) bricks/c_tn_m3 -86 128 0 0.710000 1 0 0 0 +( -1816 -3520 368 ) ( -1816 -3520 576 ) ( -1800 -3504 576 ) bricks/c_tn_m3 -86 128 0 0.710000 1 0 0 0 +} +// brush 3363 +{ +( -2186 -3520 576 ) ( -2189 -3552 576 ) ( -2304 -3552 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2304 -3552 576 ) ( -2189 -3552 576 ) ( -2186 -3520 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2368 -3536 544 ) ( -2368 -3552 544 ) ( -2368 -3544 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2432 -3552 544 ) ( -2432 -3536 544 ) ( -2432 -3544 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2400 -3544 544 ) ( -2368 -3544 544 ) ( -2384 -3544 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 3364 +{ +( -2186 -3520 576 ) ( -2189 -3552 576 ) ( -2304 -3552 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2176 -3520 592 ) ( -2304 -3520 592 ) ( -2304 -3520 536 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2304 -3552 576 ) ( -2189 -3552 576 ) ( -2186 -3520 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2368 -3536 544 ) ( -2368 -3552 544 ) ( -2368 -3544 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2432 -3552 544 ) ( -2432 -3536 544 ) ( -2432 -3544 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2368 -3528 544 ) ( -2400 -3528 544 ) ( -2384 -3528 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 3365 +{ +( -2186 -3520 576 ) ( -2189 -3552 576 ) ( -2304 -3552 576 ) common/li_pv_v4a 0 -8 -180 1 1 0 1 7000 +( -2304 -3552 576 ) ( -2189 -3552 576 ) ( -2186 -3520 544 ) common/li_pv_v4a 0 -8 -180 1 1 0 1 7000 +( -2368 -3536 544 ) ( -2368 -3552 544 ) ( -2368 -3544 576 ) common/li_pv_v4a -1 7 -180 1 -1 0 1 7000 +( -2432 -3552 544 ) ( -2432 -3536 544 ) ( -2432 -3544 576 ) common/li_pv_v4a -1 7 -180 1 -1 0 1 7000 +( -2368 -3544 544 ) ( -2400 -3544 544 ) ( -2384 -3544 576 ) common/li_pv_v4a 0 7 -180 1 -1 0 1 7000 +( -2400 -3528 544 ) ( -2368 -3528 544 ) ( -2384 -3528 576 ) common/li_pv_v4a 0 7 -180 1 -1 0 1 7000 +} +// brush 3366 +{ +( -2808 -3872 576 ) ( -2765 -3872 576 ) ( -2768 -3904 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2768 -3904 576 ) ( -2768 -3904 544 ) ( -2808 -3904 544 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2768 -3904 544 ) ( -2765 -3872 576 ) ( -2808 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2112 -3880 544 ) ( -2112 -3896 544 ) ( -2112 -3888 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2368 -3904 544 ) ( -2368 -3888 544 ) ( -2368 -3896 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3367 +{ +( -2808 -3872 576 ) ( -2765 -3872 576 ) ( -2768 -3904 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2768 -3904 576 ) ( -2768 -3904 544 ) ( -2808 -3904 544 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2768 -3904 544 ) ( -2765 -3872 576 ) ( -2808 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2368 -3888 544 ) ( -2368 -3904 544 ) ( -2368 -3896 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2432 -3904 544 ) ( -2432 -3888 544 ) ( -2432 -3896 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2384 -3896 544 ) ( -2368 -3896 544 ) ( -2376 -3896 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3368 +{ +( -2808 -3872 576 ) ( -2765 -3872 576 ) ( -2768 -3904 576 ) common/li_pv_v4a 0 -8 -180 1 1 0 0 0 +( -2768 -3904 544 ) ( -2765 -3872 576 ) ( -2808 -3872 576 ) common/li_pv_v4a 0 -8 -180 1 1 0 0 0 +( -2368 -3888 544 ) ( -2368 -3904 544 ) ( -2368 -3896 576 ) common/li_pv_v4a -1 7 -180 1 -1 0 0 0 +( -2432 -3904 544 ) ( -2432 -3888 544 ) ( -2432 -3896 576 ) common/li_pv_v4a -1 7 -180 1 -1 0 0 0 +( -2368 -3896 544 ) ( -2384 -3896 544 ) ( -2376 -3896 576 ) common/li_pv_v4a 0 7 -180 1 -1 0 0 0 +( -2432 -3880 552 ) ( -2392 -3880 552 ) ( -2412 -3880 576 ) common/li_pv_v4a 0 7 -180 1 -1 0 0 0 +} +// brush 3369 +{ +( -2808 -3872 576 ) ( -2765 -3872 576 ) ( -2768 -3904 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2768 -3904 544 ) ( -2765 -3872 576 ) ( -2808 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2368 -3888 544 ) ( -2368 -3904 544 ) ( -2368 -3896 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2432 -3904 544 ) ( -2432 -3888 544 ) ( -2432 -3896 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2392 -3880 552 ) ( -2432 -3880 552 ) ( -2412 -3880 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3370 +{ +( -2488 -3872 576 ) ( -2445 -3872 576 ) ( -2448 -3904 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2448 -3904 544 ) ( -2445 -3872 576 ) ( -2488 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2048 -3888 544 ) ( -2048 -3904 544 ) ( -2048 -3896 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2112 -3904 544 ) ( -2112 -3888 544 ) ( -2112 -3896 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2072 -3880 552 ) ( -2112 -3880 552 ) ( -2092 -3880 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3371 +{ +( -2488 -3872 576 ) ( -2445 -3872 576 ) ( -2448 -3904 576 ) common/li_pv_v4a 0 -8 -180 1 1 0 1 7000 +( -2448 -3904 544 ) ( -2445 -3872 576 ) ( -2488 -3872 576 ) common/li_pv_v4a 0 -8 -180 1 1 0 1 7000 +( -2048 -3888 544 ) ( -2048 -3904 544 ) ( -2048 -3896 576 ) common/li_pv_v4a -1 7 -180 1 -1 0 1 7000 +( -2112 -3904 544 ) ( -2112 -3888 544 ) ( -2112 -3896 576 ) common/li_pv_v4a -1 7 -180 1 -1 0 1 7000 +( -2048 -3896 544 ) ( -2064 -3896 544 ) ( -2056 -3896 576 ) common/li_pv_v4a 0 7 -180 1 -1 0 1 7000 +( -2112 -3880 552 ) ( -2072 -3880 552 ) ( -2092 -3880 576 ) common/li_pv_v4a 0 7 -180 1 -1 0 1 7000 +} +// brush 3372 +{ +( -2488 -3872 576 ) ( -2445 -3872 576 ) ( -2448 -3904 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2448 -3904 576 ) ( -2448 -3904 544 ) ( -2488 -3904 544 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2448 -3904 544 ) ( -2445 -3872 576 ) ( -2488 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2048 -3888 544 ) ( -2048 -3904 544 ) ( -2048 -3896 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2112 -3904 544 ) ( -2112 -3888 544 ) ( -2112 -3896 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2064 -3896 544 ) ( -2048 -3896 544 ) ( -2056 -3896 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3373 +{ +( -2488 -3872 576 ) ( -2445 -3872 576 ) ( -2448 -3904 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2448 -3904 576 ) ( -2448 -3904 544 ) ( -2488 -3904 544 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2448 -3904 544 ) ( -2445 -3872 576 ) ( -2488 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1792 -3880 544 ) ( -1792 -3896 544 ) ( -1792 -3888 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2048 -3904 544 ) ( -2048 -3888 544 ) ( -2048 -3896 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3374 +{ +( -1546 -3520 576 ) ( -1549 -3552 576 ) ( -1664 -3552 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1664 -3552 576 ) ( -1549 -3552 576 ) ( -1546 -3520 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1728 -3536 544 ) ( -1728 -3552 544 ) ( -1728 -3544 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1792 -3552 544 ) ( -1792 -3536 544 ) ( -1792 -3544 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1760 -3544 544 ) ( -1728 -3544 544 ) ( -1744 -3544 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 3375 +{ +( -1546 -3520 576 ) ( -1549 -3552 576 ) ( -1664 -3552 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1536 -3520 592 ) ( -1664 -3520 592 ) ( -1664 -3520 536 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1664 -3552 576 ) ( -1549 -3552 576 ) ( -1546 -3520 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1728 -3536 544 ) ( -1728 -3552 544 ) ( -1728 -3544 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1792 -3552 544 ) ( -1792 -3536 544 ) ( -1792 -3544 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1728 -3528 544 ) ( -1760 -3528 544 ) ( -1744 -3528 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 3376 +{ +( -1546 -3520 576 ) ( -1549 -3552 576 ) ( -1664 -3552 576 ) common/li_pv_v4a 0 -8 -180 1 1 0 1 7000 +( -1664 -3552 576 ) ( -1549 -3552 576 ) ( -1546 -3520 544 ) common/li_pv_v4a 0 -8 -180 1 1 0 1 7000 +( -1728 -3536 544 ) ( -1728 -3552 544 ) ( -1728 -3544 576 ) common/li_pv_v4a -1 7 -180 1 -1 0 1 7000 +( -1792 -3552 544 ) ( -1792 -3536 544 ) ( -1792 -3544 576 ) common/li_pv_v4a -1 7 -180 1 -1 0 1 7000 +( -1728 -3544 544 ) ( -1760 -3544 544 ) ( -1744 -3544 576 ) common/li_pv_v4a 0 7 -180 1 -1 0 1 7000 +( -1760 -3528 544 ) ( -1728 -3528 544 ) ( -1744 -3528 576 ) common/li_pv_v4a 0 7 -180 1 -1 0 1 7000 +} +// brush 3377 +{ +( -2168 -3872 576 ) ( -2125 -3872 576 ) ( -2128 -3904 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2128 -3904 576 ) ( -2128 -3904 544 ) ( -2168 -3904 544 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2128 -3904 544 ) ( -2125 -3872 576 ) ( -2168 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1728 -3888 544 ) ( -1728 -3904 544 ) ( -1728 -3896 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1792 -3904 544 ) ( -1792 -3888 544 ) ( -1792 -3896 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1744 -3896 544 ) ( -1728 -3896 544 ) ( -1736 -3896 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3378 +{ +( -2168 -3872 576 ) ( -2125 -3872 576 ) ( -2128 -3904 576 ) common/li_pv_v4a 0 -8 -180 1 1 0 1 7000 +( -2128 -3904 544 ) ( -2125 -3872 576 ) ( -2168 -3872 576 ) common/li_pv_v4a 0 -8 -180 1 1 0 1 7000 +( -1728 -3888 544 ) ( -1728 -3904 544 ) ( -1728 -3896 576 ) common/li_pv_v4a -1 7 -180 1 -1 0 1 7000 +( -1792 -3904 544 ) ( -1792 -3888 544 ) ( -1792 -3896 576 ) common/li_pv_v4a -1 7 -180 1 -1 0 1 7000 +( -1728 -3896 544 ) ( -1744 -3896 544 ) ( -1736 -3896 576 ) common/li_pv_v4a 0 7 -180 1 -1 0 1 7000 +( -1792 -3880 552 ) ( -1752 -3880 552 ) ( -1772 -3880 576 ) common/li_pv_v4a 0 7 -180 1 -1 0 1 7000 +} +// brush 3379 +{ +( -2168 -3872 576 ) ( -2125 -3872 576 ) ( -2128 -3904 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2128 -3904 544 ) ( -2125 -3872 576 ) ( -2168 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1728 -3888 544 ) ( -1728 -3904 544 ) ( -1728 -3896 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1792 -3904 544 ) ( -1792 -3888 544 ) ( -1792 -3896 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1752 -3880 552 ) ( -1792 -3880 552 ) ( -1772 -3880 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3380 +{ +( -2168 -3872 576 ) ( -2125 -3872 576 ) ( -2128 -3904 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2128 -3904 576 ) ( -2128 -3904 544 ) ( -2168 -3904 544 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2128 -3904 544 ) ( -2125 -3872 576 ) ( -2168 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1728 -3904 544 ) ( -1728 -3888 544 ) ( -1728 -3896 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1600 -3504 544 ) ( -1600 -3568 544 ) ( -1600 -3536 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3381 +{ +( -1546 -3520 576 ) ( -1549 -3552 576 ) ( -1664 -3552 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1536 -3520 592 ) ( -1664 -3520 592 ) ( -1664 -3520 536 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1664 -3552 576 ) ( -1549 -3552 576 ) ( -1546 -3520 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1728 -3552 544 ) ( -1728 -3536 544 ) ( -1728 -3544 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1600 -3504 544 ) ( -1600 -3568 544 ) ( -1600 -3536 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 3382 +{ +( -1528 -3904 368 ) ( -1280 -3904 368 ) ( -1280 -3888 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1280 -3888 384 ) ( -1280 -3904 384 ) ( -1528 -3904 384 ) bricks/c_sr_mr5 0 0 0 1 1 0 0 0 +( -1280 -3888 384 ) ( -1528 -3888 384 ) ( -1528 -3888 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1240 -3904 384 ) ( -992 -3904 384 ) ( -992 -3904 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1600 -3504 368 ) ( -1600 -3568 368 ) ( -1600 -3536 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2560 -3608 368 ) ( -2560 -3536 368 ) ( -2560 -3572 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3383 +{ +( -1528 -3920 368 ) ( -1280 -3920 368 ) ( -1280 -3904 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1280 -3904 576 ) ( -1280 -3920 576 ) ( -1528 -3920 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1256 -3904 576 ) ( -1504 -3904 576 ) ( -1504 -3904 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1528 -3920 576 ) ( -1280 -3920 576 ) ( -1280 -3920 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1600 -3504 368 ) ( -1600 -3568 368 ) ( -1600 -3536 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2560 -3608 368 ) ( -2560 -3536 368 ) ( -2560 -3572 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3384 +{ +( -3128 -3872 576 ) ( -3085 -3872 576 ) ( -3088 -3904 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3088 -3904 576 ) ( -3088 -3904 544 ) ( -3128 -3904 544 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3088 -3904 544 ) ( -3085 -3872 576 ) ( -3128 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2432 -3880 544 ) ( -2432 -3896 544 ) ( -2432 -3888 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2560 -3608 544 ) ( -2560 -3536 544 ) ( -2560 -3572 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3385 +{ +( -2506 -3520 576 ) ( -2509 -3552 576 ) ( -2624 -3552 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2496 -3520 592 ) ( -2624 -3520 592 ) ( -2624 -3520 536 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2624 -3552 576 ) ( -2509 -3552 576 ) ( -2506 -3520 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2432 -3512 544 ) ( -2432 -3544 544 ) ( -2432 -3528 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2560 -3608 544 ) ( -2560 -3536 544 ) ( -2560 -3572 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 3386 +{ +( -1432 -3904 352 ) ( -1280 -3904 352 ) ( -1280 -3504 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1280 -3504 368 ) ( -1280 -3904 368 ) ( -1432 -3904 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1280 -3504 368 ) ( -1432 -3504 368 ) ( -1432 -3504 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1720 -3920 368 ) ( -1568 -3920 368 ) ( -1568 -3920 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1600 -3504 352 ) ( -1600 -3568 352 ) ( -1600 -3536 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2560 -3608 352 ) ( -2560 -3536 352 ) ( -2560 -3572 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3387 +{ +( -2376 -3400 368 ) ( -2296 -3400 368 ) ( -2296 -3320 368 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2296 -3320 536 ) ( -2296 -3400 536 ) ( -2376 -3400 536 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2304 -3320 496 ) ( -2304 -3320 536 ) ( -2376 -3392 536 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2392 -3424 368 ) ( -2392 -3424 536 ) ( -2392 -3416 536 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2392 -3416 496 ) ( -2384 -3424 496 ) ( -2388 -3420 536 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2392 -3424 536 ) ( -2392 -3424 368 ) ( -2400 -3416 368 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 3388 +{ +( -2512 -3416 368 ) ( -2312 -3416 368 ) ( -2312 -3112 368 ) props/dr_track2 -89 38 0 0.800000 1.250000 0 0 0 +( -2312 -3112 528 ) ( -2312 -3416 528 ) ( -2512 -3416 528 ) props/dr_track2 -89 38 0 0.800000 1.250000 0 0 0 +( -2448 -3448 576 ) ( -2448 -3448 368 ) ( -2136 -3136 368 ) props/dr_track2 -89 38 0 0.800000 1.250000 0 0 0 +( -2404 -3404 368 ) ( -2404 -3404 576 ) ( -2396 -3412 576 ) props/dr_track2 -89 38 0 0.800000 1.250000 0 0 0 +( -2144 -3160 576 ) ( -2144 -3160 368 ) ( -2440 -3456 368 ) props/dr_track2 -89 38 0 0.800000 1.250000 0 0 0 +( -2196 -3196 368 ) ( -2180 -3212 368 ) ( -2188 -3204 528 ) props/dr_track2 -89 38 0 0.800000 1.250000 0 0 0 +} +// brush 3389 +{ +( -2376 -3400 368 ) ( -2296 -3400 368 ) ( -2296 -3320 368 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2296 -3320 536 ) ( -2296 -3400 536 ) ( -2376 -3400 536 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2304 -3320 496 ) ( -2304 -3320 536 ) ( -2376 -3392 536 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2176 -3208 536 ) ( -2176 -3208 368 ) ( -2184 -3208 368 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2184 -3208 496 ) ( -2192 -3200 496 ) ( -2188 -3204 536 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2176 -3208 368 ) ( -2176 -3208 536 ) ( -2184 -3200 536 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 3390 +{ +( -2408 -3472 384 ) ( -2392 -3472 384 ) ( -2392 -3408 384 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +( -2392 -3408 576 ) ( -2392 -3472 576 ) ( -2408 -3472 576 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +( -2369 -3447 368 ) ( -2369 -3447 576 ) ( -2409 -3407 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2432 -3432 576 ) ( -2432 -3432 368 ) ( -2408 -3408 368 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +( -2368 -3496 576 ) ( -2368 -3496 368 ) ( -2432 -3432 368 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +( -2376 -3440 384 ) ( -2376 -3464 384 ) ( -2376 -3452 576 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +} +// brush 3391 +{ +( -2392 -3408 576 ) ( -2392 -3472 576 ) ( -2408 -3472 576 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +( -2369 -3447 368 ) ( -2369 -3447 576 ) ( -2409 -3407 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2368 -3496 576 ) ( -2368 -3496 368 ) ( -2432 -3432 368 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +( -2368 -3496 368 ) ( -2368 -3496 576 ) ( -2368 -3448 576 ) bricks/c_tn_m3 169 128 0 1 1 0 0 0 +( -2376 -3464 384 ) ( -2376 -3440 384 ) ( -2376 -3452 576 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +( -2376 -3440 496 ) ( -2376 -3480 496 ) ( -2368 -3460 496 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +} +// brush 3392 +{ +( -2408 -3472 384 ) ( -2392 -3472 384 ) ( -2392 -3408 384 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +( -2369 -3447 368 ) ( -2369 -3447 576 ) ( -2409 -3407 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2368 -3496 576 ) ( -2368 -3496 368 ) ( -2432 -3432 368 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +( -2368 -3496 368 ) ( -2368 -3496 576 ) ( -2368 -3448 576 ) bricks/c_tn_m3 169 128 0 1 1 0 0 0 +( -2376 -3464 384 ) ( -2376 -3440 384 ) ( -2376 -3452 576 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +( -2376 -3456 440 ) ( -2376 -3440 440 ) ( -2368 -3448 440 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +} +// brush 3393 +{ +( -2369 -3447 368 ) ( -2369 -3447 576 ) ( -2409 -3407 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2368 -3496 368 ) ( -2368 -3496 576 ) ( -2368 -3448 576 ) bricks/c_tn_m3 169 128 0 1 1 0 0 0 +( -2376 -3464 384 ) ( -2376 -3440 384 ) ( -2376 -3452 576 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +( -2376 -3480 496 ) ( -2376 -3440 496 ) ( -2368 -3460 496 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +( -2376 -3440 440 ) ( -2376 -3456 440 ) ( -2368 -3448 440 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +( -2368 -3464 440 ) ( -2376 -3456 440 ) ( -2372 -3460 496 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +} +// brush 3394 +{ +( -2368 -3496 576 ) ( -2368 -3496 368 ) ( -2432 -3432 368 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +( -2368 -3496 368 ) ( -2368 -3496 576 ) ( -2368 -3448 576 ) bricks/c_tn_m3 169 128 0 1 1 0 0 0 +( -2376 -3464 384 ) ( -2376 -3440 384 ) ( -2376 -3452 576 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +( -2376 -3480 496 ) ( -2376 -3440 496 ) ( -2368 -3460 496 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +( -2376 -3440 440 ) ( -2376 -3456 440 ) ( -2368 -3448 440 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +( -2376 -3472 440 ) ( -2368 -3480 440 ) ( -2372 -3476 496 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +} +// brush 3395 +{ +( -2368 -3496 368 ) ( -2368 -3496 576 ) ( -2368 -3448 576 ) common/li_mf_v16 -16 0 0 0.500000 0.500000 0 1 8000 +( -2376 -3464 384 ) ( -2376 -3440 384 ) ( -2376 -3452 576 ) common/li_mf_v16 -16 0 0 0.500000 0.500000 0 1 8000 +( -2376 -3480 496 ) ( -2376 -3440 496 ) ( -2368 -3460 496 ) common/li_mf_v16 -16 0 90 0.500000 0.500000 0 1 8000 +( -2376 -3456 440 ) ( -2368 -3464 440 ) ( -2372 -3460 496 ) common/li_mf_v16 0 0 0 0.500000 0.500000 0 1 8000 +( -2368 -3480 440 ) ( -2376 -3472 440 ) ( -2372 -3476 496 ) common/li_mf_v16 0 0 0 0.500000 0.500000 0 1 8000 +( -2376 -3456 480 ) ( -2376 -3464 480 ) ( -2368 -3460 480 ) common/li_mf_v16 -16 0 90 0.500000 0.500000 0 1 8000 +} +// brush 3396 +{ +( -2368 -3496 368 ) ( -2368 -3496 576 ) ( -2368 -3448 576 ) bricks/c_tn_m3 169 128 0 1 1 0 0 0 +( -2376 -3464 384 ) ( -2376 -3440 384 ) ( -2376 -3452 576 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +( -2376 -3456 440 ) ( -2368 -3464 440 ) ( -2372 -3460 496 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +( -2368 -3480 440 ) ( -2376 -3472 440 ) ( -2372 -3476 496 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +( -2376 -3464 480 ) ( -2376 -3456 480 ) ( -2368 -3460 480 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +( -2376 -3456 456 ) ( -2376 -3472 456 ) ( -2368 -3464 456 ) bricks/c_tn_m3 -25 128 0 1 1 0 0 0 +} +// brush 3397 +{ +( -2368 -3496 368 ) ( -2368 -3496 576 ) ( -2368 -3448 576 ) common/li_track -16 16 0 0.500000 0.500000 0 0 0 +( -2376 -3464 384 ) ( -2376 -3440 384 ) ( -2376 -3452 576 ) common/li_track -16 16 0 0.500000 0.500000 0 0 0 +( -2376 -3440 440 ) ( -2376 -3456 440 ) ( -2368 -3448 440 ) common/li_track -16 16 90 0.500000 0.500000 0 0 0 +( -2376 -3456 440 ) ( -2368 -3464 440 ) ( -2372 -3460 496 ) common/li_track 0 16 0 0.500000 0.500000 0 0 0 +( -2368 -3480 440 ) ( -2376 -3472 440 ) ( -2372 -3476 496 ) common/li_track 0 16 0 0.500000 0.500000 0 0 0 +( -2376 -3472 456 ) ( -2376 -3456 456 ) ( -2368 -3464 456 ) common/li_track -16 16 90 0.500000 0.500000 0 0 0 +} +// brush 3398 +{ +( -2296 -3320 576 ) ( -2296 -3400 576 ) ( -2376 -3400 576 ) bricks/c_tn_m3 -63 0 0 0.710000 1 0 0 0 +( -2312 -3312 544 ) ( -2312 -3312 584 ) ( -2384 -3384 584 ) bricks/c_tn_m3 -63 0 0 0.710000 1 0 0 0 +( -2296 -3328 568 ) ( -2296 -3328 528 ) ( -2368 -3400 528 ) bricks/c_tn_m3 -63 0 0 0.710000 1 0 0 0 +( -2400 -3416 536 ) ( -2416 -3400 536 ) ( -2408 -3408 576 ) bricks/c_tn_m3 -63 0 0 0.710000 1 0 0 0 +( -2192 -3192 528 ) ( -2176 -3208 528 ) ( -2184 -3200 568 ) bricks/c_tn_m3 -63 0 0 0.710000 1 0 0 0 +( -2408 -3200 536 ) ( -2408 -3216 536 ) ( -2176 -3208 536 ) bricks/c_tn_m3 -63 0 0 0.710000 1 0 0 0 +} +// brush 3399 +{ +( -2396 -3420 528 ) ( -2180 -3204 528 ) ( -2192 -3192 528 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2312 -3312 544 ) ( -2312 -3312 584 ) ( -2384 -3384 584 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2180 -3204 528 ) ( -2396 -3420 528 ) ( -2392 -3424 536 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2400 -3416 536 ) ( -2416 -3400 536 ) ( -2408 -3408 576 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2192 -3192 528 ) ( -2176 -3208 528 ) ( -2184 -3200 568 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2176 -3208 536 ) ( -2392 -3424 536 ) ( -2408 -3408 536 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 3400 +{ +( -2600 -3216 576 ) ( -2384 -3432 576 ) ( -2408 -3456 576 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +( -2392 -3472 576 ) ( -2392 -3472 544 ) ( -2624 -3240 544 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +( -2384 -3432 576 ) ( -2600 -3216 576 ) ( -2624 -3240 544 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +( -2264 -3552 544 ) ( -2344 -3520 544 ) ( -2304 -3536 576 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +( -2368 -3496 544 ) ( -2368 -3448 544 ) ( -2368 -3472 576 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +} +// brush 3401 +{ +( -1840 -3544 576 ) ( -2056 -3328 576 ) ( -2032 -3304 576 ) bricks/c_tn_m1 0 -2 135 1 1 0 0 0 +( -2048 -3288 576 ) ( -2048 -3288 544 ) ( -1816 -3520 544 ) bricks/c_tn_m1 0 -2 135 1 1 0 0 0 +( -2056 -3328 576 ) ( -1840 -3544 576 ) ( -1816 -3520 544 ) bricks/c_tn_m1 0 -2 135 1 1 0 0 0 +( -1988 -3348 544 ) ( -2012 -3372 544 ) ( -2000 -3360 576 ) bricks/c_tn_m1 0 -2 135 1 1 0 0 0 +( -2152 -3232 544 ) ( -2104 -3232 544 ) ( -2128 -3232 576 ) bricks/c_tn_m1 0 -2 135 1 1 0 0 0 +} +// brush 3402 +{ +( -1152 -3904 576 ) ( -1152 -3872 576 ) ( -880 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1152 -3872 576 ) ( -1152 -3904 576 ) ( -1152 -3904 536 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1152 -3872 576 ) ( -1152 -3904 544 ) ( -880 -3888 560 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1088 -3872 544 ) ( -1088 -3888 544 ) ( -1088 -3880 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1136 -3880 544 ) ( -1152 -3880 544 ) ( -1144 -3880 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3403 +{ +( -1152 -3904 576 ) ( -1152 -3872 576 ) ( -880 -3872 576 ) common/li_pv_v4a 0 -8 0 1 1 0 1 7000 +( -1152 -3872 576 ) ( -1152 -3904 576 ) ( -1152 -3904 536 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -1152 -3872 576 ) ( -1152 -3904 544 ) ( -880 -3888 560 ) common/li_pv_v4a 0 -8 0 1 1 0 1 7000 +( -1088 -3872 544 ) ( -1088 -3888 544 ) ( -1088 -3880 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -1152 -3880 544 ) ( -1136 -3880 544 ) ( -1144 -3880 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -1088 -3896 544 ) ( -1112 -3896 544 ) ( -1100 -3896 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 3404 +{ +( -1152 -3904 576 ) ( -1152 -3872 576 ) ( -880 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1152 -3904 576 ) ( -880 -3904 576 ) ( -880 -3904 536 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1152 -3872 576 ) ( -1152 -3904 576 ) ( -1152 -3904 536 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1152 -3872 576 ) ( -1152 -3904 544 ) ( -880 -3888 560 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1088 -3872 544 ) ( -1088 -3888 544 ) ( -1088 -3880 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1112 -3896 544 ) ( -1088 -3896 544 ) ( -1100 -3896 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3405 +{ +( -1472 -3904 576 ) ( -1472 -3872 576 ) ( -1200 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1472 -3904 576 ) ( -1200 -3904 576 ) ( -1200 -3904 536 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1472 -3872 576 ) ( -1472 -3904 576 ) ( -1472 -3904 536 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1472 -3872 576 ) ( -1472 -3904 544 ) ( -1200 -3888 560 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1408 -3872 544 ) ( -1408 -3888 544 ) ( -1408 -3880 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1432 -3896 544 ) ( -1408 -3896 544 ) ( -1420 -3896 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3406 +{ +( -1472 -3904 576 ) ( -1472 -3872 576 ) ( -1200 -3872 576 ) common/li_pv_v4a 0 -8 0 1 1 0 1 7000 +( -1472 -3872 576 ) ( -1472 -3904 576 ) ( -1472 -3904 536 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -1472 -3872 576 ) ( -1472 -3904 544 ) ( -1200 -3888 560 ) common/li_pv_v4a 0 -8 0 1 1 0 1 7000 +( -1408 -3872 544 ) ( -1408 -3888 544 ) ( -1408 -3880 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -1472 -3880 544 ) ( -1456 -3880 544 ) ( -1464 -3880 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -1408 -3896 544 ) ( -1432 -3896 544 ) ( -1420 -3896 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 3407 +{ +( -1472 -3904 576 ) ( -1472 -3872 576 ) ( -1200 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1472 -3872 576 ) ( -1472 -3904 576 ) ( -1472 -3904 536 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1472 -3872 576 ) ( -1472 -3904 544 ) ( -1200 -3888 560 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1408 -3872 544 ) ( -1408 -3888 544 ) ( -1408 -3880 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1456 -3880 544 ) ( -1472 -3880 544 ) ( -1464 -3880 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3408 +{ +( -1472 -3904 576 ) ( -1472 -3872 576 ) ( -1200 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1472 -3904 576 ) ( -1200 -3904 576 ) ( -1200 -3904 536 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1152 -3904 576 ) ( -1152 -3872 576 ) ( -1152 -3872 536 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1472 -3872 576 ) ( -1472 -3904 544 ) ( -1200 -3888 560 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1408 -3888 544 ) ( -1408 -3872 544 ) ( -1408 -3880 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3409 +{ +( -1792 -3904 576 ) ( -1792 -3872 576 ) ( -1520 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1792 -3904 576 ) ( -1520 -3904 576 ) ( -1520 -3904 536 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1472 -3904 576 ) ( -1472 -3872 576 ) ( -1472 -3872 536 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1792 -3872 576 ) ( -1792 -3904 544 ) ( -1520 -3888 560 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1600 -3536 544 ) ( -1600 -3504 544 ) ( -1600 -3520 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3410 +{ +( -2752 -3904 576 ) ( -2752 -3872 576 ) ( -2480 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2752 -3904 576 ) ( -2480 -3904 576 ) ( -2480 -3904 536 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2752 -3872 576 ) ( -2752 -3904 544 ) ( -2480 -3888 560 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2688 -3888 544 ) ( -2688 -3872 544 ) ( -2688 -3880 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2560 -3504 544 ) ( -2560 -3536 544 ) ( -2560 -3520 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3411 +{ +( -2752 -3904 576 ) ( -2752 -3872 576 ) ( -2480 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2752 -3872 576 ) ( -2752 -3904 576 ) ( -2752 -3904 536 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2752 -3872 576 ) ( -2752 -3904 544 ) ( -2480 -3888 560 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2688 -3872 544 ) ( -2688 -3888 544 ) ( -2688 -3880 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2736 -3880 544 ) ( -2752 -3880 544 ) ( -2744 -3880 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3412 +{ +( -2752 -3904 576 ) ( -2752 -3872 576 ) ( -2480 -3872 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -2752 -3872 576 ) ( -2752 -3904 576 ) ( -2752 -3904 536 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -2752 -3872 576 ) ( -2752 -3904 544 ) ( -2480 -3888 560 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -2688 -3872 544 ) ( -2688 -3888 544 ) ( -2688 -3880 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -2752 -3880 544 ) ( -2736 -3880 544 ) ( -2744 -3880 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -2688 -3896 544 ) ( -2712 -3896 544 ) ( -2700 -3896 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 3413 +{ +( -2752 -3904 576 ) ( -2752 -3872 576 ) ( -2480 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2752 -3904 576 ) ( -2480 -3904 576 ) ( -2480 -3904 536 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2752 -3872 576 ) ( -2752 -3904 576 ) ( -2752 -3904 536 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2752 -3872 576 ) ( -2752 -3904 544 ) ( -2480 -3888 560 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2688 -3872 544 ) ( -2688 -3888 544 ) ( -2688 -3880 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2712 -3896 544 ) ( -2688 -3896 544 ) ( -2700 -3896 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3414 +{ +( -3072 -3904 576 ) ( -3072 -3872 576 ) ( -2800 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3072 -3904 576 ) ( -2800 -3904 576 ) ( -2800 -3904 536 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3072 -3872 576 ) ( -3072 -3904 576 ) ( -3072 -3904 536 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3072 -3872 576 ) ( -3072 -3904 544 ) ( -2800 -3888 560 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3008 -3872 544 ) ( -3008 -3888 544 ) ( -3008 -3880 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3032 -3896 544 ) ( -3008 -3896 544 ) ( -3020 -3896 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3415 +{ +( -3072 -3904 576 ) ( -3072 -3872 576 ) ( -2800 -3872 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -3072 -3872 576 ) ( -3072 -3904 576 ) ( -3072 -3904 536 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -3072 -3872 576 ) ( -3072 -3904 544 ) ( -2800 -3888 560 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -3008 -3872 544 ) ( -3008 -3888 544 ) ( -3008 -3880 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -3072 -3880 544 ) ( -3056 -3880 544 ) ( -3064 -3880 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -3008 -3896 544 ) ( -3032 -3896 544 ) ( -3020 -3896 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 3416 +{ +( -3072 -3904 576 ) ( -3072 -3872 576 ) ( -2800 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3072 -3872 576 ) ( -3072 -3904 576 ) ( -3072 -3904 536 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3072 -3872 576 ) ( -3072 -3904 544 ) ( -2800 -3888 560 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3008 -3872 544 ) ( -3008 -3888 544 ) ( -3008 -3880 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3056 -3880 544 ) ( -3072 -3880 544 ) ( -3064 -3880 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3417 +{ +( -3072 -3904 576 ) ( -3072 -3872 576 ) ( -2800 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3072 -3904 576 ) ( -2800 -3904 576 ) ( -2800 -3904 536 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2752 -3904 576 ) ( -2752 -3872 576 ) ( -2752 -3872 536 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3072 -3872 576 ) ( -3072 -3904 544 ) ( -2800 -3888 560 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3008 -3888 544 ) ( -3008 -3872 544 ) ( -3008 -3880 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3418 +{ +( -1856 -3504 368 ) ( -2112 -3504 368 ) ( -2112 -3520 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2112 -3520 576 ) ( -2112 -3504 576 ) ( -1856 -3504 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1816 -3520 368 ) ( -1816 -3520 576 ) ( -1048 -3520 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1856 -3504 576 ) ( -2112 -3504 576 ) ( -2112 -3504 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1048 -3520 368 ) ( -1048 -3520 576 ) ( -1050 -3504 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1816 -3520 576 ) ( -1816 -3520 368 ) ( -1800 -3504 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3419 +{ +( -2816 -3504 368 ) ( -3072 -3504 368 ) ( -3072 -3520 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3072 -3520 576 ) ( -3072 -3504 576 ) ( -2816 -3504 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2344 -3520 576 ) ( -2344 -3520 368 ) ( -3112 -3520 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2816 -3504 576 ) ( -3072 -3504 576 ) ( -3072 -3504 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3112 -3520 576 ) ( -3112 -3520 368 ) ( -3110 -3504 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2344 -3520 368 ) ( -2344 -3520 576 ) ( -2392 -3504 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3420 +{ +( -1984 -3520 368 ) ( -2112 -3520 368 ) ( -2112 -3536 368 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -2112 -3536 384 ) ( -2112 -3520 384 ) ( -1984 -3520 384 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( -1046 -3536 384 ) ( -1046 -3536 368 ) ( -1600 -3536 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1984 -3520 384 ) ( -2112 -3520 384 ) ( -2112 -3520 368 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -1046 -3536 368 ) ( -1046 -3536 384 ) ( -1048 -3520 384 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +( -1816 -3536 368 ) ( -1816 -3504 368 ) ( -1816 -3520 384 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +} +// brush 3421 +{ +( -2944 -3520 368 ) ( -3072 -3520 368 ) ( -3072 -3536 368 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3072 -3536 384 ) ( -3072 -3520 384 ) ( -2944 -3520 384 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( -2336 -3536 384 ) ( -2336 -3536 368 ) ( -3112 -3536 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -2944 -3520 384 ) ( -3072 -3520 384 ) ( -3072 -3520 368 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3114 -3536 384 ) ( -3114 -3536 368 ) ( -3112 -3520 368 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2336 -3536 368 ) ( -2336 -3536 384 ) ( -2344 -3520 384 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +} +// brush 3422 +{ +( -1808 -3504 352 ) ( -2112 -3504 352 ) ( -2112 -3920 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2112 -3920 368 ) ( -2112 -3504 368 ) ( -1808 -3504 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2112 -3920 368 ) ( -1808 -3920 368 ) ( -1808 -3920 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1808 -3504 368 ) ( -2112 -3504 368 ) ( -2112 -3504 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1088 -3504 352 ) ( -1088 -3528 352 ) ( -1088 -3516 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1600 -3536 352 ) ( -1600 -3504 352 ) ( -1600 -3520 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3423 +{ +( -2768 -3504 352 ) ( -3072 -3504 352 ) ( -3072 -3920 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3072 -3920 368 ) ( -3072 -3504 368 ) ( -2768 -3504 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3072 -3920 368 ) ( -2768 -3920 368 ) ( -2768 -3920 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2768 -3504 368 ) ( -3072 -3504 368 ) ( -3072 -3504 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3072 -3504 368 ) ( -3072 -3920 368 ) ( -3072 -3920 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2560 -3504 352 ) ( -2560 -3536 352 ) ( -2560 -3520 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3424 +{ +( -1856 -3904 368 ) ( -2112 -3904 368 ) ( -2112 -3920 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2112 -3920 576 ) ( -2112 -3904 576 ) ( -1856 -3904 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1010 -3920 576 ) ( -1010 -3920 368 ) ( -1600 -3920 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1856 -3904 576 ) ( -2112 -3904 576 ) ( -2112 -3904 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1010 -3920 368 ) ( -1010 -3920 576 ) ( -1012 -3904 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1600 -3536 368 ) ( -1600 -3504 368 ) ( -1600 -3520 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3425 +{ +( -2816 -3904 368 ) ( -3072 -3904 368 ) ( -3072 -3920 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3072 -3920 576 ) ( -3072 -3904 576 ) ( -2816 -3904 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3150 -3920 368 ) ( -3150 -3920 576 ) ( -2560 -3920 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2816 -3904 576 ) ( -3072 -3904 576 ) ( -3072 -3904 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3150 -3920 576 ) ( -3150 -3920 368 ) ( -3148 -3904 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2560 -3504 368 ) ( -2560 -3536 368 ) ( -2560 -3520 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3426 +{ +( -1984 -3888 368 ) ( -2112 -3888 368 ) ( -2112 -3904 368 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -2112 -3904 384 ) ( -2112 -3888 384 ) ( -1984 -3888 384 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( -1012 -3904 384 ) ( -1012 -3904 368 ) ( -1600 -3904 368 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -1984 -3888 384 ) ( -2112 -3888 384 ) ( -2112 -3888 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1012 -3904 368 ) ( -1012 -3904 384 ) ( -1014 -3888 384 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +( -1600 -3536 368 ) ( -1600 -3504 368 ) ( -1600 -3520 384 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +} +// brush 3427 +{ +( -2944 -3888 368 ) ( -3072 -3888 368 ) ( -3072 -3904 368 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3072 -3904 384 ) ( -3072 -3888 384 ) ( -2944 -3888 384 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( -3148 -3904 368 ) ( -3148 -3904 384 ) ( -2560 -3904 384 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2944 -3888 384 ) ( -3072 -3888 384 ) ( -3072 -3888 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -3148 -3904 384 ) ( -3148 -3904 368 ) ( -3146 -3888 368 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2560 -3504 368 ) ( -2560 -3536 368 ) ( -2560 -3520 384 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +} +// brush 3428 +{ +( -3072 -3552 576 ) ( -3072 -3520 576 ) ( -2832 -3520 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2752 -3552 576 ) ( -2752 -3520 576 ) ( -2752 -3520 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -3144 -3520 576 ) ( -3384 -3520 576 ) ( -3384 -3520 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -3072 -3520 544 ) ( -3072 -3552 576 ) ( -2832 -3536 560 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -3008 -3536 544 ) ( -3008 -3520 544 ) ( -3008 -3528 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 3429 +{ +( -3072 -3552 576 ) ( -3072 -3520 576 ) ( -2832 -3520 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -3144 -3520 576 ) ( -3384 -3520 576 ) ( -3384 -3520 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -3072 -3520 576 ) ( -3072 -3552 576 ) ( -3072 -3552 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -3072 -3520 544 ) ( -3072 -3552 576 ) ( -2832 -3536 560 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -3008 -3520 544 ) ( -3008 -3536 544 ) ( -3008 -3528 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -3056 -3528 544 ) ( -3072 -3528 544 ) ( -3064 -3528 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 3430 +{ +( -3072 -3552 576 ) ( -3072 -3520 576 ) ( -2832 -3520 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -3072 -3520 576 ) ( -3072 -3552 576 ) ( -3072 -3552 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -3072 -3520 544 ) ( -3072 -3552 576 ) ( -2832 -3536 560 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -3008 -3520 544 ) ( -3008 -3536 544 ) ( -3008 -3528 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -3072 -3544 552 ) ( -3056 -3544 552 ) ( -3064 -3544 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 3431 +{ +( -3072 -3552 576 ) ( -3072 -3520 576 ) ( -2832 -3520 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -3072 -3520 576 ) ( -3072 -3552 576 ) ( -3072 -3552 544 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -3072 -3520 544 ) ( -3072 -3552 576 ) ( -2832 -3536 560 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -3008 -3520 544 ) ( -3008 -3536 544 ) ( -3008 -3528 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -3072 -3528 544 ) ( -3056 -3528 544 ) ( -3064 -3528 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -3056 -3544 552 ) ( -3072 -3544 552 ) ( -3064 -3544 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 3432 +{ +( -2752 -3552 576 ) ( -2752 -3520 576 ) ( -2512 -3520 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -2752 -3520 576 ) ( -2752 -3552 576 ) ( -2752 -3552 544 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -2752 -3520 544 ) ( -2752 -3552 576 ) ( -2512 -3536 560 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -2688 -3520 544 ) ( -2688 -3536 544 ) ( -2688 -3528 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -2752 -3528 544 ) ( -2736 -3528 544 ) ( -2744 -3528 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -2736 -3544 552 ) ( -2752 -3544 552 ) ( -2744 -3544 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 3433 +{ +( -2752 -3552 576 ) ( -2752 -3520 576 ) ( -2512 -3520 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2752 -3520 576 ) ( -2752 -3552 576 ) ( -2752 -3552 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2752 -3520 544 ) ( -2752 -3552 576 ) ( -2512 -3536 560 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2688 -3520 544 ) ( -2688 -3536 544 ) ( -2688 -3528 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2752 -3544 552 ) ( -2736 -3544 552 ) ( -2744 -3544 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 3434 +{ +( -2752 -3552 576 ) ( -2752 -3520 576 ) ( -2512 -3520 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2824 -3520 576 ) ( -3064 -3520 576 ) ( -3064 -3520 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2752 -3520 576 ) ( -2752 -3552 576 ) ( -2752 -3552 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2752 -3520 544 ) ( -2752 -3552 576 ) ( -2512 -3536 560 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2688 -3520 544 ) ( -2688 -3536 544 ) ( -2688 -3528 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2736 -3528 544 ) ( -2752 -3528 544 ) ( -2744 -3528 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 3435 +{ +( -1792 -3552 576 ) ( -1792 -3520 576 ) ( -1552 -3520 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1472 -3552 576 ) ( -1472 -3520 576 ) ( -1472 -3520 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1864 -3520 576 ) ( -2104 -3520 576 ) ( -2104 -3520 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1792 -3520 544 ) ( -1792 -3552 576 ) ( -1552 -3536 560 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1600 -3536 544 ) ( -1600 -3504 544 ) ( -1600 -3520 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 3436 +{ +( -2752 -3552 576 ) ( -2752 -3520 576 ) ( -2512 -3520 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2824 -3520 576 ) ( -3064 -3520 576 ) ( -3064 -3520 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2752 -3520 544 ) ( -2752 -3552 576 ) ( -2512 -3536 560 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2688 -3536 544 ) ( -2688 -3520 544 ) ( -2688 -3528 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2560 -3504 544 ) ( -2560 -3536 544 ) ( -2560 -3520 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 3437 +{ +( -1472 -3552 576 ) ( -1472 -3520 576 ) ( -1232 -3520 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1152 -3552 576 ) ( -1152 -3520 576 ) ( -1152 -3520 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1544 -3520 576 ) ( -1784 -3520 576 ) ( -1784 -3520 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1472 -3520 544 ) ( -1472 -3552 576 ) ( -1232 -3536 560 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1408 -3536 544 ) ( -1408 -3520 544 ) ( -1408 -3528 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 3438 +{ +( -1472 -3552 576 ) ( -1472 -3520 576 ) ( -1232 -3520 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1544 -3520 576 ) ( -1784 -3520 576 ) ( -1784 -3520 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1472 -3520 576 ) ( -1472 -3552 576 ) ( -1472 -3552 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1472 -3520 544 ) ( -1472 -3552 576 ) ( -1232 -3536 560 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1408 -3520 544 ) ( -1408 -3536 544 ) ( -1408 -3528 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1456 -3528 544 ) ( -1472 -3528 544 ) ( -1464 -3528 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 3439 +{ +( -1472 -3552 576 ) ( -1472 -3520 576 ) ( -1232 -3520 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1472 -3520 576 ) ( -1472 -3552 576 ) ( -1472 -3552 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1472 -3520 544 ) ( -1472 -3552 576 ) ( -1232 -3536 560 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1408 -3520 544 ) ( -1408 -3536 544 ) ( -1408 -3528 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1472 -3544 552 ) ( -1456 -3544 552 ) ( -1464 -3544 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 3440 +{ +( -1472 -3552 576 ) ( -1472 -3520 576 ) ( -1232 -3520 576 ) common/li_pv_v4a 0 -8 0 1 1 0 1 7000 +( -1472 -3520 576 ) ( -1472 -3552 576 ) ( -1472 -3552 544 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -1472 -3520 544 ) ( -1472 -3552 576 ) ( -1232 -3536 560 ) common/li_pv_v4a 0 -8 0 1 1 0 1 7000 +( -1408 -3520 544 ) ( -1408 -3536 544 ) ( -1408 -3528 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -1472 -3528 544 ) ( -1456 -3528 544 ) ( -1464 -3528 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -1456 -3544 552 ) ( -1472 -3544 552 ) ( -1464 -3544 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 3441 +{ +( -1152 -3552 576 ) ( -1152 -3520 576 ) ( -912 -3520 576 ) common/li_pv_v4a 0 -8 0 1 1 0 1 7000 +( -1152 -3520 576 ) ( -1152 -3552 576 ) ( -1152 -3552 544 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -1152 -3520 544 ) ( -1152 -3552 576 ) ( -912 -3536 560 ) common/li_pv_v4a 0 -8 0 1 1 0 1 7000 +( -1088 -3520 544 ) ( -1088 -3536 544 ) ( -1088 -3528 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -1152 -3528 544 ) ( -1136 -3528 544 ) ( -1144 -3528 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -1136 -3544 552 ) ( -1152 -3544 552 ) ( -1144 -3544 576 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 3442 +{ +( -1152 -3552 576 ) ( -1152 -3520 576 ) ( -912 -3520 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1152 -3520 576 ) ( -1152 -3552 576 ) ( -1152 -3552 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1152 -3520 544 ) ( -1152 -3552 576 ) ( -912 -3536 560 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1088 -3520 544 ) ( -1088 -3536 544 ) ( -1088 -3528 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1152 -3544 552 ) ( -1136 -3544 552 ) ( -1144 -3544 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 3443 +{ +( -1152 -3552 576 ) ( -1152 -3520 576 ) ( -912 -3520 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1224 -3520 576 ) ( -1464 -3520 576 ) ( -1464 -3520 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1152 -3520 576 ) ( -1152 -3552 576 ) ( -1152 -3552 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1152 -3520 544 ) ( -1152 -3552 576 ) ( -912 -3536 560 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1088 -3520 544 ) ( -1088 -3536 544 ) ( -1088 -3528 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1136 -3528 544 ) ( -1152 -3528 544 ) ( -1144 -3528 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 3444 +{ +( -3496 1552 320 ) ( -3712 1336 320 ) ( -3736 1360 320 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +( -3752 1344 320 ) ( -3752 1344 288 ) ( -3520 1576 288 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +( -3712 1336 320 ) ( -3496 1552 320 ) ( -3520 1576 288 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +( -3692 1404 288 ) ( -3668 1380 288 ) ( -3680 1392 320 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +( -3808 1240 288 ) ( -3808 1288 288 ) ( -3808 1264 320 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +} +// brush 3445 +{ +( -3824 792 320 ) ( -3608 1008 320 ) ( -3584 984 320 ) bricks/c_tn_m1 0 -1 45 1 1 0 0 0 +( -3568 1000 320 ) ( -3568 1000 288 ) ( -3800 768 288 ) bricks/c_tn_m1 0 -1 45 1 1 0 0 0 +( -3608 1008 320 ) ( -3824 792 320 ) ( -3800 768 288 ) bricks/c_tn_m1 0 -1 45 1 1 0 0 0 +( -3488 1128 288 ) ( -3520 1048 288 ) ( -3504 1088 320 ) bricks/c_tn_m1 0 -1 45 1 1 0 0 0 +( -3544 1024 288 ) ( -3592 1024 288 ) ( -3568 1024 320 ) bricks/c_tn_m1 0 -1 45 1 1 0 0 0 +} +// brush 3446 +{ +( -3520 1752 112 ) ( -3520 2112 112 ) ( -3536 2112 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 2112 320 ) ( -3520 2112 320 ) ( -3520 1752 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 242 320 ) ( -3536 242 112 ) ( -3536 1000 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3520 728 320 ) ( -3520 728 112 ) ( -3520 192 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 242 112 ) ( -3536 242 320 ) ( -3520 244 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 1000 112 ) ( -3520 1048 112 ) ( -3528 1024 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3447 +{ +( -3620 996 272 ) ( -3836 1212 272 ) ( -3848 1200 272 ) metals/mt_pv_m16bc -16 0 -180 1 -1 0 0 0 +( -3728 1080 288 ) ( -3728 1080 328 ) ( -3656 1008 328 ) metals/mt_pv_m16bc -16 0 -180 1 -1 0 0 0 +( -3836 1212 272 ) ( -3620 996 272 ) ( -3616 1000 280 ) metals/mt_pv_m16bc -16 0 -180 1 -1 0 0 0 +( -3624 992 280 ) ( -3640 976 280 ) ( -3632 984 320 ) metals/mt_pv_m16bc -16 0 -180 1 -1 0 0 0 +( -3848 1200 272 ) ( -3832 1216 272 ) ( -3840 1208 312 ) metals/mt_pv_m16bc -16 0 -180 1 -1 0 0 0 +( -3832 1216 280 ) ( -3616 1000 280 ) ( -3632 984 280 ) metals/mt_pv_m16bc -16 0 -180 1 -1 0 0 0 +} +// brush 3448 +{ +( -3720 1096 320 ) ( -3640 1096 320 ) ( -3640 1016 320 ) bricks/c_tn_m3 128 152 0 1 1 0 0 0 +( -3728 1080 288 ) ( -3728 1080 328 ) ( -3656 1008 328 ) bricks/c_tn_m3 128 152 0 1 1 0 0 0 +( -3712 1096 312 ) ( -3712 1096 272 ) ( -3640 1024 272 ) bricks/c_tn_m3 128 152 0 1 1 0 0 0 +( -3624 992 280 ) ( -3640 976 280 ) ( -3632 984 320 ) bricks/c_tn_m3 128 152 0 1 1 0 0 0 +( -3848 1200 272 ) ( -3832 1216 272 ) ( -3840 1208 312 ) bricks/c_tn_m3 128 152 0 1 1 0 0 0 +( -3840 984 280 ) ( -3824 984 280 ) ( -3832 1216 280 ) bricks/c_tn_m3 128 152 0 1 1 0 0 0 +} +// brush 3449 +{ +( -3544 1024 112 ) ( -3544 1024 320 ) ( -3592 1024 320 ) common/li_track -16 16 0 0.500000 0.500000 0 0 0 +( -3576 1016 128 ) ( -3600 1016 128 ) ( -3588 1016 320 ) common/li_track -16 16 0 0.500000 0.500000 0 0 0 +( -3600 1016 184 ) ( -3584 1016 184 ) ( -3592 1024 184 ) common/li_track -16 16 0 0.500000 0.500000 0 0 0 +( -3584 1016 184 ) ( -3576 1024 184 ) ( -3580 1020 240 ) common/li_track -16 16 0 0.500000 0.500000 0 0 0 +( -3560 1024 184 ) ( -3568 1016 184 ) ( -3564 1020 240 ) common/li_track -16 16 0 0.500000 0.500000 0 0 0 +( -3568 1016 200 ) ( -3584 1016 200 ) ( -3576 1024 200 ) common/li_track -16 16 0 0.500000 0.500000 0 0 0 +} +// brush 3450 +{ +( -3544 1024 112 ) ( -3544 1024 320 ) ( -3592 1024 320 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3576 1016 128 ) ( -3600 1016 128 ) ( -3588 1016 320 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3584 1016 184 ) ( -3576 1024 184 ) ( -3580 1020 240 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3560 1024 184 ) ( -3568 1016 184 ) ( -3564 1020 240 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3576 1016 224 ) ( -3584 1016 224 ) ( -3580 1024 224 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3584 1016 200 ) ( -3568 1016 200 ) ( -3576 1024 200 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +} +// brush 3451 +{ +( -3544 1024 112 ) ( -3544 1024 320 ) ( -3592 1024 320 ) common/li_mf_v16 16 0 0 0.500000 0.500000 0 1 8000 +( -3576 1016 128 ) ( -3600 1016 128 ) ( -3588 1016 320 ) common/li_mf_v16 16 0 0 0.500000 0.500000 0 1 8000 +( -3560 1016 240 ) ( -3600 1016 240 ) ( -3580 1024 240 ) common/li_mf_v16 16 0 0 0.500000 0.500000 0 1 8000 +( -3584 1016 184 ) ( -3576 1024 184 ) ( -3580 1020 240 ) common/li_mf_v16 16 0 0 0.500000 0.500000 0 1 8000 +( -3560 1024 184 ) ( -3568 1016 184 ) ( -3564 1020 240 ) common/li_mf_v16 16 0 0 0.500000 0.500000 0 1 8000 +( -3584 1016 224 ) ( -3576 1016 224 ) ( -3580 1024 224 ) common/li_mf_v16 16 0 0 0.500000 0.500000 0 1 8000 +} +// brush 3452 +{ +( -3544 1024 320 ) ( -3544 1024 112 ) ( -3608 960 112 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3544 1024 112 ) ( -3544 1024 320 ) ( -3592 1024 320 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3576 1016 128 ) ( -3600 1016 128 ) ( -3588 1016 320 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3560 1016 240 ) ( -3600 1016 240 ) ( -3580 1024 240 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3600 1016 184 ) ( -3584 1016 184 ) ( -3592 1024 184 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3568 1016 184 ) ( -3560 1024 184 ) ( -3564 1020 240 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +} +// brush 3453 +{ +( -3593 1023 112 ) ( -3593 1023 320 ) ( -3633 983 320 ) bricks/c_tn_m3 64 127 0 1 1 0 0 0 +( -3544 1024 112 ) ( -3544 1024 320 ) ( -3592 1024 320 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3576 1016 128 ) ( -3600 1016 128 ) ( -3588 1016 320 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3560 1016 240 ) ( -3600 1016 240 ) ( -3580 1024 240 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3600 1016 184 ) ( -3584 1016 184 ) ( -3592 1024 184 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3576 1024 184 ) ( -3584 1016 184 ) ( -3580 1020 240 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +} +// brush 3454 +{ +( -3568 984 128 ) ( -3568 1000 128 ) ( -3632 1000 128 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3593 1023 112 ) ( -3593 1023 320 ) ( -3633 983 320 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3544 1024 320 ) ( -3544 1024 112 ) ( -3608 960 112 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3544 1024 112 ) ( -3544 1024 320 ) ( -3592 1024 320 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3576 1016 128 ) ( -3600 1016 128 ) ( -3588 1016 320 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3584 1016 184 ) ( -3600 1016 184 ) ( -3592 1024 184 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +} +// brush 3455 +{ +( -3632 1000 320 ) ( -3568 1000 320 ) ( -3568 984 320 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3593 1023 112 ) ( -3593 1023 320 ) ( -3633 983 320 ) bricks/c_tn_m3 64 127 0 1 1 0 0 0 +( -3544 1024 320 ) ( -3544 1024 112 ) ( -3608 960 112 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3544 1024 112 ) ( -3544 1024 320 ) ( -3592 1024 320 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3576 1016 128 ) ( -3600 1016 128 ) ( -3588 1016 320 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +( -3600 1016 240 ) ( -3560 1016 240 ) ( -3580 1024 240 ) bricks/c_tn_m3 200 127 0 1 1 0 0 0 +} +// brush 3456 +{ +( -3568 984 128 ) ( -3568 1000 128 ) ( -3632 1000 128 ) bricks/c_tn_m3 64 127 0 1 1 0 0 0 +( -3632 1000 320 ) ( -3568 1000 320 ) ( -3568 984 320 ) bricks/c_tn_m3 64 127 0 1 1 0 0 0 +( -3593 1023 112 ) ( -3593 1023 320 ) ( -3633 983 320 ) bricks/c_tn_m3 64 127 0 1 1 0 0 0 +( -3608 960 320 ) ( -3608 960 112 ) ( -3632 984 112 ) bricks/c_tn_m3 64 127 0 1 1 0 0 0 +( -3544 1024 320 ) ( -3544 1024 112 ) ( -3608 960 112 ) bricks/c_tn_m3 64 127 0 1 1 0 0 0 +( -3600 1016 128 ) ( -3576 1016 128 ) ( -3588 1016 320 ) bricks/c_tn_m3 64 127 0 1 1 0 0 0 +} +// brush 3457 +{ +( -3640 1016 112 ) ( -3640 1096 112 ) ( -3720 1096 112 ) metals/mt_pv_m16bc 31 15 90 1 1 0 0 0 +( -3720 1096 280 ) ( -3640 1096 280 ) ( -3640 1016 280 ) metals/mt_pv_m16bc 31 15 90 1 1 0 0 0 +( -3720 1088 240 ) ( -3720 1088 280 ) ( -3648 1016 280 ) metals/mt_pv_m16bc 24 0 0 1 1 0 0 0 +( -3832 1216 280 ) ( -3832 1216 112 ) ( -3832 1208 112 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3832 1208 240 ) ( -3840 1200 240 ) ( -3836 1204 280 ) metals/mt_pv_m16bc -16 0 -180 1 -1 0 0 0 +( -3832 1216 112 ) ( -3832 1216 280 ) ( -3840 1208 280 ) metals/mt_pv_m16bc -16 0 -180 1 -1 0 0 0 +} +// brush 3458 +{ +( -3624 880 112 ) ( -3624 1080 112 ) ( -3928 1080 112 ) props/dr_track2 31 90 0 0.800000 1.250000 0 0 0 +( -3928 1080 272 ) ( -3624 1080 272 ) ( -3624 880 272 ) props/dr_track2 31 90 0 0.800000 1.250000 0 0 0 +( -3592 944 320 ) ( -3592 944 112 ) ( -3904 1256 112 ) props/dr_track2 31 90 0 0.800000 1.250000 0 0 0 +( -3636 988 112 ) ( -3636 988 320 ) ( -3628 996 320 ) props/dr_track2 31 90 0 0.800000 1.250000 0 0 0 +( -3880 1248 320 ) ( -3880 1248 112 ) ( -3584 952 112 ) props/dr_track2 31 90 0 0.800000 1.250000 0 0 0 +( -3844 1196 112 ) ( -3828 1212 112 ) ( -3836 1204 272 ) props/dr_track2 31 90 0 0.800000 1.250000 0 0 0 +} +// brush 3459 +{ +( -3640 1016 112 ) ( -3640 1096 112 ) ( -3720 1096 112 ) metals/mt_pv_m16bc 31 15 90 1 1 0 0 0 +( -3720 1096 280 ) ( -3640 1096 280 ) ( -3640 1016 280 ) metals/mt_pv_m16bc 31 15 90 1 1 0 0 0 +( -3720 1088 240 ) ( -3720 1088 280 ) ( -3648 1016 280 ) metals/mt_pv_m16bc 24 0 0 1 1 0 0 0 +( -3616 1000 112 ) ( -3616 1000 280 ) ( -3624 1000 280 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3624 1000 240 ) ( -3616 1008 240 ) ( -3620 1004 280 ) metals/mt_pv_m16bc -16 0 -180 1 -1 0 0 0 +( -3616 1000 280 ) ( -3616 1000 112 ) ( -3624 992 112 ) metals/mt_pv_m16bc -16 0 -180 1 -1 0 0 0 +} +// brush 3460 +{ +( 576 -3672 -16 ) ( 576 -3672 192 ) ( 576 -3720 192 ) common/li_mf_v16 -16 0 0 0.500000 0.500000 0 1 8000 +( 584 -3680 0 ) ( 584 -3720 0 ) ( 584 -3700 192 ) common/li_mf_v16 -16 0 0 0.500000 0.500000 0 1 8000 +( 576 -3688 0 ) ( 584 -3696 0 ) ( 580 -3692 192 ) common/li_mf_v16 -16 0 0 0.500000 0.500000 0 1 8000 +( 584 -3712 0 ) ( 576 -3704 0 ) ( 580 -3708 192 ) common/li_mf_v16 -16 0 0 0.500000 0.500000 0 1 8000 +( 584 -3712 112 ) ( 576 -3712 112 ) ( 580 -3688 112 ) common/li_mf_v16 -16 0 0 0.500000 0.500000 0 1 8000 +( 576 -3712 96 ) ( 584 -3712 96 ) ( 580 -3688 96 ) common/li_mf_v16 -16 0 0 0.500000 0.500000 0 1 8000 +} +// brush 3461 +{ +( 616 -3696 0 ) ( 600 -3696 0 ) ( 600 -3760 0 ) bricks/c_tn_m3 201 0 0 1 1 0 0 0 +( 576 -3672 -16 ) ( 576 -3672 192 ) ( 576 -3720 192 ) bricks/c_tn_m3 88 0 0 1 1 0 0 0 +( 584 -3680 0 ) ( 584 -3720 0 ) ( 584 -3700 192 ) bricks/c_tn_m3 201 0 0 1 1 0 0 0 +( 576 -3688 0 ) ( 584 -3696 0 ) ( 580 -3692 192 ) bricks/c_tn_m3 201 0 0 1 1 0 0 0 +( 584 -3712 0 ) ( 576 -3704 0 ) ( 580 -3708 192 ) bricks/c_tn_m3 201 0 0 1 1 0 0 0 +( 584 -3712 56 ) ( 576 -3712 56 ) ( 580 -3688 56 ) bricks/c_tn_m3 201 0 0 1 1 0 0 0 +} +// brush 3462 +{ +( 576 -3672 -16 ) ( 576 -3672 192 ) ( 576 -3720 192 ) common/li_track 16 16 0 0.500000 0.500000 0 0 0 +( 584 -3680 0 ) ( 584 -3720 0 ) ( 584 -3700 192 ) common/li_track 16 16 0 0.500000 0.500000 0 0 0 +( 576 -3688 0 ) ( 584 -3696 0 ) ( 580 -3692 192 ) common/li_track 16 16 0 0.500000 0.500000 0 0 0 +( 584 -3712 0 ) ( 576 -3704 0 ) ( 580 -3708 192 ) common/li_track 16 16 0 0.500000 0.500000 0 0 0 +( 584 -3712 72 ) ( 576 -3712 72 ) ( 580 -3688 72 ) common/li_track 16 16 0 0.500000 0.500000 0 0 0 +( 576 -3712 56 ) ( 584 -3712 56 ) ( 580 -3688 56 ) common/li_track 16 16 0 0.500000 0.500000 0 0 0 +} +// brush 3463 +{ +( 576 -3672 -16 ) ( 576 -3672 192 ) ( 576 -3720 192 ) bricks/c_tn_m3 88 0 0 1 1 0 0 0 +( 584 -3680 0 ) ( 584 -3720 0 ) ( 584 -3700 192 ) bricks/c_tn_m3 201 0 0 1 1 0 0 0 +( 576 -3688 0 ) ( 584 -3696 0 ) ( 580 -3692 192 ) bricks/c_tn_m3 201 0 0 1 1 0 0 0 +( 584 -3712 0 ) ( 576 -3704 0 ) ( 580 -3708 192 ) bricks/c_tn_m3 201 0 0 1 1 0 0 0 +( 584 -3712 96 ) ( 576 -3712 96 ) ( 580 -3688 96 ) bricks/c_tn_m3 201 0 0 1 1 0 0 0 +( 576 -3712 72 ) ( 584 -3712 72 ) ( 580 -3688 72 ) bricks/c_tn_m3 201 0 0 1 1 0 0 0 +} +// brush 3464 +{ +( 600 -3760 192 ) ( 600 -3696 192 ) ( 616 -3696 192 ) bricks/c_tn_m3 201 0 0 1 1 0 0 0 +( 576 -3672 -16 ) ( 576 -3672 192 ) ( 576 -3720 192 ) bricks/c_tn_m3 88 0 0 1 1 0 0 0 +( 584 -3680 0 ) ( 584 -3720 0 ) ( 584 -3700 192 ) bricks/c_tn_m3 201 0 0 1 1 0 0 0 +( 576 -3688 0 ) ( 584 -3696 0 ) ( 580 -3692 192 ) bricks/c_tn_m3 201 0 0 1 1 0 0 0 +( 584 -3712 0 ) ( 576 -3704 0 ) ( 580 -3708 192 ) bricks/c_tn_m3 201 0 0 1 1 0 0 0 +( 576 -3712 112 ) ( 584 -3712 112 ) ( 580 -3688 112 ) bricks/c_tn_m3 201 0 0 1 1 0 0 0 +} +// brush 3465 +{ +( 616 -3696 0 ) ( 600 -3696 0 ) ( 600 -3760 0 ) bricks/c_tn_m3 128 -192 0 1 1 0 0 0 +( 600 -3760 192 ) ( 600 -3696 192 ) ( 616 -3696 192 ) bricks/c_tn_m3 128 -192 0 1 1 0 0 0 +( 578 -3722 -16 ) ( 578 -3722 192 ) ( 618 -3762 192 ) bricks/c_tn_m3 207 0 0 1 1 0 0 0 +( 576 -3672 -16 ) ( 576 -3672 192 ) ( 576 -3720 192 ) bricks/c_tn_m3 88 0 0 1 1 0 0 0 +( 584 -3680 0 ) ( 584 -3720 0 ) ( 584 -3700 192 ) bricks/c_tn_m3 201 0 0 1 1 0 0 0 +( 576 -3704 0 ) ( 584 -3712 0 ) ( 580 -3708 192 ) bricks/c_tn_m3 201 0 0 1 1 0 0 0 +} +// brush 3466 +{ +( 616 -3696 0 ) ( 600 -3696 0 ) ( 600 -3760 0 ) bricks/c_tn_m3 128 -192 0 1 1 0 0 0 +( 600 -3760 192 ) ( 600 -3696 192 ) ( 616 -3696 192 ) bricks/c_tn_m3 128 -192 0 1 1 0 0 0 +( 576 -3672 192 ) ( 576 -3672 -16 ) ( 640 -3736 -16 ) bricks/c_tn_m3 192 0 0 1 1 0 0 0 +( 576 -3672 -16 ) ( 576 -3672 192 ) ( 576 -3720 192 ) bricks/c_tn_m3 88 0 0 1 1 0 0 0 +( 584 -3680 0 ) ( 584 -3720 0 ) ( 584 -3700 192 ) bricks/c_tn_m3 201 0 0 1 1 0 0 0 +( 584 -3696 0 ) ( 576 -3688 0 ) ( 580 -3692 192 ) bricks/c_tn_m3 201 0 0 1 1 0 0 0 +} +// brush 3467 +{ +( 616 -3696 0 ) ( 600 -3696 0 ) ( 600 -3760 0 ) bricks/c_tn_m3 128 -192 0 1 1 0 0 0 +( 600 -3760 192 ) ( 600 -3696 192 ) ( 616 -3696 192 ) bricks/c_tn_m3 128 -192 0 1 1 0 0 0 +( 578 -3722 -16 ) ( 578 -3722 192 ) ( 618 -3762 192 ) bricks/c_tn_m3 207 0 0 1 1 0 0 0 +( 640 -3736 192 ) ( 640 -3736 -16 ) ( 616 -3760 -16 ) bricks/c_tn_m3 192 0 0 1 1 0 0 0 +( 576 -3672 192 ) ( 576 -3672 -16 ) ( 640 -3736 -16 ) bricks/c_tn_m3 192 0 0 1 1 0 0 0 +( 584 -3720 0 ) ( 584 -3680 0 ) ( 584 -3700 192 ) bricks/c_tn_m3 201 0 0 1 1 0 0 0 +} +// brush 3468 +{ +( 496 -3664 -32 ) ( 192 -3664 -32 ) ( 192 -3880 -32 ) metals/mt_pv_m16l -5 0 135 1 1 0 0 0 +( 192 -3880 -16 ) ( 192 -3664 -16 ) ( 496 -3664 -16 ) metals/mt_pv_m16l -5 0 135 1 1 0 0 0 +( 360 -4016 -32 ) ( 360 -4016 -16 ) ( 656 -3720 -16 ) metals/mt_pv_m16l -5 0 135 1 1 0 0 0 +( 600 -3664 -16 ) ( 600 -3664 -32 ) ( 656 -3720 -32 ) metals/mt_pv_m16l -5 0 135 1 1 0 0 0 +( 8 -3664 -32 ) ( 8 -3664 -16 ) ( 360 -4016 -16 ) metals/mt_pv_m16l -5 0 135 1 1 0 0 0 +( 584 -3752 -32 ) ( 600 -3736 -32 ) ( 592 -3744 -16 ) metals/mt_pv_m16l -5 0 135 1 1 0 0 0 +} +// brush 3469 +{ +( 496 -3664 -32 ) ( 192 -3664 -32 ) ( 192 -3880 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 192 -3880 -16 ) ( 192 -3664 -16 ) ( 496 -3664 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 600 -3664 -16 ) ( 600 -3664 -32 ) ( 656 -3720 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 600 -3664 -32 ) ( 600 -3664 -16 ) ( 8 -3664 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 8 -3664 -32 ) ( 8 -3664 -16 ) ( 360 -4016 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 600 -3736 -32 ) ( 584 -3752 -32 ) ( 592 -3744 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3470 +{ +( 720 -3752 -16 ) ( 520 -3752 -16 ) ( 520 -4056 -16 ) props/dr_track2 -88 -13 0 -0.800000 1.250000 0 0 0 +( 520 -4056 144 ) ( 520 -3752 144 ) ( 720 -3752 144 ) props/dr_track2 -88 -13 0 -0.800000 1.250000 0 0 0 +( 656 -3720 192 ) ( 656 -3720 -16 ) ( 344 -4032 -16 ) props/dr_track2 -88 -13 0 -0.800000 1.250000 0 0 0 +( 352 -4008 192 ) ( 352 -4008 -16 ) ( 648 -3712 -16 ) props/dr_track2 -88 -13 0 -0.800000 1.250000 0 0 0 +( 400 -3976 -16 ) ( 392 -3968 -16 ) ( 396 -3972 144 ) props/dr_track2 -88 -13 0 -0.800000 1.250000 0 0 0 +( 608 -3752 -16 ) ( 616 -3760 -16 ) ( 612 -3756 144 ) props/dr_track2 -88 -13 0 -0.800000 1.250000 0 0 0 +} +// brush 3471 +{ +( 584 -3768 152 ) ( 504 -3768 152 ) ( 504 -3848 152 ) bricks/c_tn_m3 -79 0 0 0.710000 1 0 0 0 +( 504 -3848 192 ) ( 504 -3768 192 ) ( 584 -3768 192 ) bricks/c_tn_m3 -79 0 0 0.710000 1 0 0 0 +( 520 -3856 192 ) ( 520 -3856 232 ) ( 592 -3784 232 ) bricks/c_tn_m3 -79 0 0 0.710000 1 0 0 0 +( 504 -3840 208 ) ( 504 -3840 168 ) ( 576 -3768 168 ) bricks/c_tn_m3 -79 0 0 0.710000 1 0 0 0 +( 600 -3744 200 ) ( 616 -3760 200 ) ( 608 -3752 240 ) bricks/c_tn_m3 -79 0 0 0.710000 1 0 0 0 +( 400 -3976 152 ) ( 384 -3960 152 ) ( 392 -3968 192 ) bricks/c_tn_m3 -79 0 0 0.710000 1 0 0 0 +} +// brush 3472 +{ +( 808 -3952 192 ) ( 592 -3736 192 ) ( 616 -3712 192 ) bricks/c_tn_m1 0 14 135 1 1 0 0 0 +( 600 -3696 192 ) ( 600 -3696 160 ) ( 832 -3928 160 ) bricks/c_tn_m1 0 14 135 1 1 0 0 0 +( 592 -3736 192 ) ( 808 -3952 192 ) ( 832 -3928 160 ) bricks/c_tn_m1 0 14 135 1 1 0 0 0 +( 472 -3616 160 ) ( 552 -3648 160 ) ( 512 -3632 192 ) bricks/c_tn_m1 0 14 135 1 1 0 0 0 +( 576 -3672 160 ) ( 576 -3688 160 ) ( 576 -3680 192 ) bricks/c_tn_m1 0 14 135 1 1 0 0 0 +} +// brush 3473 +{ +( 48 -3624 192 ) ( 264 -3840 192 ) ( 240 -3864 192 ) bricks/c_tn_m1 0 -1 315 1 1 0 0 0 +( 256 -3880 192 ) ( 256 -3880 160 ) ( 24 -3648 160 ) bricks/c_tn_m1 0 -1 315 1 1 0 0 0 +( 264 -3840 192 ) ( 48 -3624 192 ) ( 24 -3648 160 ) bricks/c_tn_m1 0 -1 315 1 1 0 0 0 +( 196 -3820 160 ) ( 220 -3796 160 ) ( 208 -3808 192 ) bricks/c_tn_m1 0 -1 315 1 1 0 0 0 +( 360 -3936 160 ) ( 312 -3936 160 ) ( 336 -3936 192 ) bricks/c_tn_m1 0 -1 315 1 1 0 0 0 +} +// brush 3474 +{ +( 504 -3848 152 ) ( 504 -3768 152 ) ( 584 -3768 152 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 512 -3848 112 ) ( 512 -3848 152 ) ( 584 -3776 152 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 384 -3960 152 ) ( 384 -3960 -16 ) ( 392 -3960 -16 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 392 -3960 112 ) ( 400 -3968 112 ) ( 396 -3964 152 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 384 -3960 -16 ) ( 384 -3960 152 ) ( 392 -3968 152 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 376 -3968 0 ) ( 400 -3968 0 ) ( 388 -3960 0 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 3475 +{ +( 612 -3740 144 ) ( 380 -3972 144 ) ( 392 -3984 144 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 376 -3968 152 ) ( 608 -3736 152 ) ( 624 -3752 152 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 520 -3856 192 ) ( 520 -3856 232 ) ( 592 -3784 232 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 380 -3972 144 ) ( 612 -3740 144 ) ( 608 -3736 152 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 600 -3744 144 ) ( 608 -3752 144 ) ( 604 -3748 152 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 392 -3968 144 ) ( 384 -3960 144 ) ( 388 -3964 152 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 3476 +{ +( 504 -3848 152 ) ( 504 -3768 152 ) ( 584 -3768 152 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 512 -3848 112 ) ( 512 -3848 152 ) ( 584 -3776 152 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 600 -3744 -16 ) ( 600 -3744 152 ) ( 600 -3752 152 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 600 -3752 112 ) ( 592 -3744 112 ) ( 596 -3748 152 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 600 -3744 152 ) ( 600 -3744 -16 ) ( 608 -3752 -16 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( 592 -3756 0 ) ( 608 -3756 0 ) ( 600 -3744 0 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 3477 +{ +( -488 -3748 576 ) ( -590 -3748 576 ) ( -590 -3624 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -488 -3624 576 ) ( -600 -3736 576 ) ( -600 -3736 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -488 -3624 416 ) ( -476 -3634 416 ) ( -476 -3634 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -590 -3748 512 ) ( -476 -3634 512 ) ( -476 -3634 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -590 -3748 416 ) ( -600 -3736 416 ) ( -600 -3736 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -808 -3748 368 ) ( -776 -3748 368 ) ( -792 -3624 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3478 +{ +( -576 -3800 576 ) ( -704 -3800 576 ) ( -704 -3432 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -600 -3736 416 ) ( -590 -3748 416 ) ( -590 -3748 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -716 -3830 368 ) ( -590 -3748 368 ) ( -590 -3748 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -724 -3816 576 ) ( -716 -3830 576 ) ( -716 -3830 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -662 -3776 576 ) ( -724 -3816 560 ) ( -600 -3736 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -808 -3830 368 ) ( -776 -3830 368 ) ( -792 -3736 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3479 +{ +( -864 -3888 576 ) ( -992 -3888 576 ) ( -992 -3520 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -856 -3872 560 ) ( -850 -3888 560 ) ( -850 -3888 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1010 -3920 368 ) ( -850 -3888 368 ) ( -850 -3888 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1012 -3904 576 ) ( -1010 -3920 576 ) ( -1010 -3920 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -934 -3888 576 ) ( -1012 -3904 560 ) ( -856 -3872 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -808 -3920 368 ) ( -776 -3920 368 ) ( -792 -3872 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3480 +{ +( -708 -3856 576 ) ( -836 -3856 576 ) ( -836 -3488 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -724 -3816 560 ) ( -716 -3830 560 ) ( -716 -3830 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -850 -3888 368 ) ( -716 -3830 368 ) ( -716 -3830 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -856 -3872 576 ) ( -850 -3888 576 ) ( -850 -3888 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -790 -3844 576 ) ( -856 -3872 560 ) ( -724 -3816 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -808 -3888 368 ) ( -776 -3888 368 ) ( -792 -3816 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3481 +{ +( -704 -3232 576 ) ( -336 -3232 576 ) ( -336 -3360 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -352 -3368 432 ) ( -336 -3374 432 ) ( -336 -3374 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -304 -3214 496 ) ( -336 -3374 496 ) ( -336 -3374 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -320 -3212 416 ) ( -304 -3214 416 ) ( -304 -3214 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -336 -3290 352 ) ( -320 -3212 368 ) ( -352 -3368 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -808 -3374 368 ) ( -776 -3374 368 ) ( -792 -3212 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3482 +{ +( -736 -3388 576 ) ( -368 -3388 576 ) ( -368 -3516 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -408 -3500 432 ) ( -394 -3508 432 ) ( -394 -3508 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -336 -3374 496 ) ( -394 -3508 496 ) ( -394 -3508 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -352 -3368 416 ) ( -336 -3374 416 ) ( -336 -3374 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -380 -3434 416 ) ( -352 -3368 432 ) ( -408 -3500 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -808 -3508 368 ) ( -776 -3508 368 ) ( -792 -3368 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3483 +{ +( -792 -3520 576 ) ( -424 -3520 576 ) ( -424 -3648 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -488 -3624 576 ) ( -476 -3634 576 ) ( -476 -3634 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -394 -3508 496 ) ( -476 -3634 496 ) ( -476 -3634 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -408 -3500 416 ) ( -394 -3508 416 ) ( -394 -3508 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -448 -3562 416 ) ( -408 -3500 432 ) ( -488 -3624 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -808 -3634 368 ) ( -776 -3634 368 ) ( -792 -3500 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3484 +{ +( -864 -3888 576 ) ( -992 -3888 576 ) ( -992 -3520 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1050 -3504 416 ) ( -976 -3488 416 ) ( -976 -3488 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -972 -3504 576 ) ( -976 -3488 576 ) ( -976 -3488 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1048 -3520 560 ) ( -1050 -3504 560 ) ( -1050 -3504 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1010 -3512 512 ) ( -972 -3504 496 ) ( -1048 -3520 496 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -808 -3520 368 ) ( -776 -3520 368 ) ( -792 -3488 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3485 +{ +( -708 -3856 576 ) ( -836 -3856 576 ) ( -836 -3488 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -976 -3488 352 ) ( -916 -3462 352 ) ( -916 -3462 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -908 -3476 576 ) ( -916 -3462 576 ) ( -916 -3462 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -972 -3504 560 ) ( -976 -3488 560 ) ( -976 -3488 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -940 -3490 512 ) ( -908 -3476 496 ) ( -972 -3504 496 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -808 -3504 368 ) ( -776 -3504 368 ) ( -792 -3462 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3486 +{ +( -576 -3800 576 ) ( -704 -3800 576 ) ( -704 -3432 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -916 -3462 416 ) ( -850 -3418 416 ) ( -850 -3418 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -840 -3432 368 ) ( -840 -3432 576 ) ( -850 -3418 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -908 -3476 560 ) ( -916 -3462 560 ) ( -916 -3462 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -840 -3432 576 ) ( -840 -3432 368 ) ( -908 -3476 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -808 -3476 368 ) ( -776 -3476 368 ) ( -792 -3418 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3487 +{ +( -452 -3720 576 ) ( -580 -3720 576 ) ( -580 -3352 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -850 -3418 352 ) ( -806 -3374 352 ) ( -806 -3374 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -806 -3374 352 ) ( -791 -3385 352 ) ( -791 -3385 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -840 -3432 576 ) ( -840 -3432 368 ) ( -850 -3418 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -840 -3432 368 ) ( -840 -3432 576 ) ( -791 -3385 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -808 -3432 368 ) ( -776 -3432 368 ) ( -792 -3374 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3488 +{ +( -792 -3520 576 ) ( -424 -3520 576 ) ( -424 -3648 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -762 -3308 432 ) ( -806 -3374 432 ) ( -806 -3374 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -806 -3374 576 ) ( -791 -3385 576 ) ( -791 -3385 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -748 -3316 576 ) ( -762 -3308 576 ) ( -762 -3308 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -748 -3316 352 ) ( -791 -3385 352 ) ( -791 -3385 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -808 -3385 368 ) ( -776 -3385 368 ) ( -792 -3308 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3489 +{ +( -736 -3388 576 ) ( -368 -3388 576 ) ( -368 -3516 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -736 -3248 368 ) ( -762 -3308 368 ) ( -762 -3308 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -748 -3316 560 ) ( -762 -3308 560 ) ( -762 -3308 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -720 -3252 576 ) ( -736 -3248 576 ) ( -736 -3248 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -734 -3284 496 ) ( -748 -3316 512 ) ( -720 -3252 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -808 -3316 368 ) ( -776 -3316 368 ) ( -792 -3248 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3490 +{ +( -704 -3232 576 ) ( -336 -3232 576 ) ( -336 -3360 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -720 -3174 432 ) ( -736 -3248 432 ) ( -736 -3248 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -720 -3252 560 ) ( -736 -3248 560 ) ( -736 -3248 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -704 -3176 432 ) ( -720 -3174 432 ) ( -720 -3174 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -712 -3214 352 ) ( -720 -3252 368 ) ( -704 -3176 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -808 -3252 368 ) ( -776 -3252 368 ) ( -792 -3174 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3491 +{ +( -1088 -3904 368 ) ( -1012 -3904 368 ) ( -1012 -3904 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1012 -3904 368 ) ( -856 -3872 368 ) ( -856 -3872 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -856 -3872 368 ) ( -724 -3816 368 ) ( -724 -3816 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -724 -3816 368 ) ( -600 -3736 368 ) ( -600 -3736 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -600 -3736 368 ) ( -488 -3624 368 ) ( -488 -3624 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -488 -3624 368 ) ( -408 -3500 368 ) ( -408 -3500 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -408 -3500 368 ) ( -352 -3368 368 ) ( -352 -3368 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -320 -3212 352 ) ( -352 -3368 352 ) ( -352 -3368 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -320 -3136 352 ) ( -320 -3212 352 ) ( -320 -3212 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -320 -3904 352 ) ( -320 -2368 352 ) ( -1856 -2368 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1856 -2368 368 ) ( -320 -2368 368 ) ( -320 -3904 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1088 -3684 368 ) ( -1088 -3712 304 ) ( -1088 -3656 304 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -456 -3136 368 ) ( -488 -3136 304 ) ( -424 -3136 304 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -896 -3328 368 ) ( -1088 -3520 352 ) ( -704 -3136 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3492 +{ +( -1088 -3904 592 ) ( -1012 -3904 592 ) ( -1012 -3904 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1012 -3904 592 ) ( -856 -3872 592 ) ( -856 -3872 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -856 -3872 592 ) ( -724 -3816 592 ) ( -724 -3816 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -724 -3816 592 ) ( -600 -3736 592 ) ( -600 -3736 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -600 -3736 592 ) ( -488 -3624 592 ) ( -488 -3624 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -488 -3624 592 ) ( -408 -3500 592 ) ( -408 -3500 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -408 -3500 592 ) ( -352 -3368 592 ) ( -352 -3368 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -320 -3212 576 ) ( -352 -3368 576 ) ( -352 -3368 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -320 -3136 576 ) ( -320 -3212 576 ) ( -320 -3212 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -320 -3904 576 ) ( -320 -2368 576 ) ( -1856 -2368 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1856 -2368 592 ) ( -320 -2368 592 ) ( -320 -3904 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1088 -3684 592 ) ( -1088 -3712 528 ) ( -1088 -3656 528 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -456 -3136 592 ) ( -488 -3136 528 ) ( -424 -3136 528 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -896 -3328 592 ) ( -1088 -3520 576 ) ( -704 -3136 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 3493 +{ +( -962 -3535 576 ) ( -1048 -3520 544 ) ( -1045 -3552 576 ) bricks/c_tn_m1 60 -7 192 1 1 0 0 0 +( -1045 -3552 576 ) ( -1048 -3520 544 ) ( -1048 -3520 592 ) bricks/c_tn_m1 60 -7 192 1 1 0 0 0 +( -1048 -3520 592 ) ( -1048 -3520 544 ) ( -962 -3535 576 ) bricks/c_tn_m1 60 -7 192 1 1 0 0 0 +( -962 -3284 576 ) ( -1048 -3296 576 ) ( -1048 -3272 576 ) bricks/c_tn_m1 60 -7 192 1 1 0 0 0 +} +// brush 3494 +{ +( -962 -3535 576 ) ( -972 -3504 544 ) ( -1048 -3520 544 ) bricks/c_tn_m1 60 -7 192 1 1 0 0 0 +( -1048 -3520 544 ) ( -972 -3504 544 ) ( -972 -3504 592 ) bricks/c_tn_m1 60 -7 192 1 1 0 0 0 +( -972 -3504 592 ) ( -972 -3504 544 ) ( -962 -3535 576 ) bricks/c_tn_m1 60 -7 192 1 1 0 0 0 +( -962 -3535 592 ) ( -962 -3535 576 ) ( -1048 -3520 544 ) bricks/c_tn_m1 60 -7 192 1 1 0 0 0 +( -962 -3284 576 ) ( -1048 -3296 576 ) ( -1048 -3272 576 ) bricks/c_tn_m1 60 -7 192 1 1 0 0 0 +} +// brush 3495 +{ +( -893 -3504 576 ) ( -972 -3504 544 ) ( -962 -3535 576 ) bricks/c_tn_m1 -65 -10 204 1 1 0 0 0 +( -962 -3535 576 ) ( -972 -3504 544 ) ( -972 -3504 592 ) bricks/c_tn_m1 -65 -10 204 1 1 0 0 0 +( -972 -3504 592 ) ( -972 -3504 544 ) ( -893 -3504 576 ) bricks/c_tn_m1 -65 -10 204 1 1 0 0 0 +( -893 -3284 576 ) ( -972 -3296 576 ) ( -972 -3272 576 ) bricks/c_tn_m1 -65 -10 204 1 1 0 0 0 +} +// brush 3496 +{ +( -893 -3504 576 ) ( -908 -3476 544 ) ( -972 -3504 544 ) bricks/c_tn_m1 -65 -10 204 1 1 0 0 0 +( -972 -3504 544 ) ( -908 -3476 544 ) ( -908 -3476 592 ) bricks/c_tn_m1 -65 -10 204 1 1 0 0 0 +( -908 -3476 592 ) ( -908 -3476 544 ) ( -893 -3504 576 ) bricks/c_tn_m1 -65 -10 204 1 1 0 0 0 +( -893 -3504 576 ) ( -972 -3504 544 ) ( -972 -3504 592 ) bricks/c_tn_m1 -65 -10 204 1 1 0 0 0 +( -893 -3284 576 ) ( -972 -3296 576 ) ( -972 -3272 576 ) bricks/c_tn_m1 -65 -10 204 1 1 0 0 0 +} +// brush 3497 +{ +( -820 -3457 576 ) ( -908 -3476 544 ) ( -893 -3504 576 ) bricks/c_tn_m1 0 -12 213 1 1 0 0 0 +( -893 -3504 576 ) ( -908 -3476 544 ) ( -908 -3476 592 ) bricks/c_tn_m1 0 -12 213 1 1 0 0 0 +( -908 -3476 592 ) ( -908 -3476 544 ) ( -820 -3457 576 ) bricks/c_tn_m1 0 -12 213 1 1 0 0 0 +( -820 -3284 576 ) ( -908 -3296 576 ) ( -908 -3272 576 ) bricks/c_tn_m1 0 -12 213 1 1 0 0 0 +} +// brush 3498 +{ +( -820 -3457 576 ) ( -840 -3432 544 ) ( -908 -3476 544 ) bricks/c_tn_m1 0 -12 213 1 1 0 0 0 +( -908 -3476 544 ) ( -840 -3432 544 ) ( -840 -3432 592 ) bricks/c_tn_m1 0 -12 213 1 1 0 0 0 +( -840 -3432 592 ) ( -840 -3432 544 ) ( -820 -3457 576 ) bricks/c_tn_m1 0 -12 213 1 1 0 0 0 +( -820 -3457 576 ) ( -908 -3476 544 ) ( -908 -3476 592 ) bricks/c_tn_m1 0 -12 213 1 1 0 0 0 +( -820 -3284 576 ) ( -908 -3296 576 ) ( -908 -3272 576 ) bricks/c_tn_m1 0 -12 213 1 1 0 0 0 +} +// brush 3499 +{ +( -748 -3316 544 ) ( -792 -3384 544 ) ( -767 -3404 576 ) bricks/c_tn_m1 -130 -5 237 1 1 0 0 0 +( -792 -3384 592 ) ( -792 -3384 544 ) ( -748 -3316 544 ) bricks/c_tn_m1 -130 -5 237 1 1 0 0 0 +( -767 -3404 576 ) ( -792 -3384 544 ) ( -792 -3384 592 ) bricks/c_tn_m1 -130 -5 237 1 1 0 0 0 +( -748 -3316 592 ) ( -748 -3316 544 ) ( -767 -3404 576 ) bricks/c_tn_m1 -130 -5 237 1 1 0 0 0 +( -748 -3284 576 ) ( -792 -3296 576 ) ( -792 -3272 576 ) bricks/c_tn_m1 -130 -5 237 1 1 0 0 0 +} +// brush 3500 +{ +( -720 -3331 576 ) ( -748 -3316 544 ) ( -767 -3404 576 ) bricks/c_tn_m1 -130 -5 237 1 1 0 0 0 +( -748 -3316 592 ) ( -748 -3316 544 ) ( -720 -3331 576 ) bricks/c_tn_m1 -130 -5 237 1 1 0 0 0 +( -767 -3404 576 ) ( -748 -3316 544 ) ( -748 -3316 592 ) bricks/c_tn_m1 -130 -5 237 1 1 0 0 0 +( -720 -3284 576 ) ( -767 -3296 576 ) ( -767 -3272 576 ) bricks/c_tn_m1 -130 -5 237 1 1 0 0 0 +} +// brush 3501 +{ +( -720 -3252 544 ) ( -748 -3316 544 ) ( -720 -3331 576 ) bricks/c_tn_m1 -26 -6 246 1 1 0 0 0 +( -748 -3316 592 ) ( -748 -3316 544 ) ( -720 -3252 544 ) bricks/c_tn_m1 -26 -6 246 1 1 0 0 0 +( -720 -3331 576 ) ( -748 -3316 544 ) ( -748 -3316 592 ) bricks/c_tn_m1 -26 -6 246 1 1 0 0 0 +( -720 -3252 592 ) ( -720 -3252 544 ) ( -720 -3331 576 ) bricks/c_tn_m1 -26 -6 246 1 1 0 0 0 +( -720 -3284 576 ) ( -748 -3296 576 ) ( -748 -3272 576 ) bricks/c_tn_m1 -26 -6 246 1 1 0 0 0 +} +// brush 3502 +{ +( -689 -3262 576 ) ( -720 -3252 544 ) ( -720 -3331 576 ) bricks/c_tn_m1 -26 -6 246 1 1 0 0 0 +( -720 -3252 592 ) ( -720 -3252 544 ) ( -689 -3262 576 ) bricks/c_tn_m1 -26 -6 246 1 1 0 0 0 +( -720 -3331 576 ) ( -720 -3252 544 ) ( -720 -3252 592 ) bricks/c_tn_m1 -26 -6 246 1 1 0 0 0 +( -689 -3284 576 ) ( -720 -3296 576 ) ( -720 -3272 576 ) bricks/c_tn_m1 -26 -6 246 1 1 0 0 0 +} +// brush 3503 +{ +( -704 -3176 544 ) ( -720 -3252 544 ) ( -689 -3262 576 ) bricks/c_tn_m1 -100 4 258 1 1 0 0 0 +( -720 -3252 592 ) ( -720 -3252 544 ) ( -704 -3176 544 ) bricks/c_tn_m1 -100 4 258 1 1 0 0 0 +( -689 -3262 576 ) ( -720 -3252 544 ) ( -720 -3252 592 ) bricks/c_tn_m1 -100 4 258 1 1 0 0 0 +( -704 -3176 544 ) ( -689 -3262 576 ) ( -689 -3262 592 ) bricks/c_tn_m1 -100 4 258 1 1 0 0 0 +( -689 -3284 576 ) ( -720 -3296 576 ) ( -720 -3272 576 ) bricks/c_tn_m1 -100 4 258 1 1 0 0 0 +} +// brush 3504 +{ +( -672 -3179 576 ) ( -704 -3176 544 ) ( -689 -3262 576 ) bricks/c_tn_m1 -100 4 258 1 1 0 0 0 +( -704 -3176 592 ) ( -704 -3176 544 ) ( -672 -3179 576 ) bricks/c_tn_m1 -100 4 258 1 1 0 0 0 +( -689 -3262 576 ) ( -704 -3176 544 ) ( -704 -3176 592 ) bricks/c_tn_m1 -100 4 258 1 1 0 0 0 +( -672 -3284 576 ) ( -704 -3296 576 ) ( -704 -3272 576 ) bricks/c_tn_m1 -100 4 258 1 1 0 0 0 +} +// brush 3505 +{ +( -1048 -3520 576 ) ( -1045 -3552 576 ) ( -1088 -3552 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1088 -3520 544 ) ( -1048 -3520 544 ) ( -1048 -3520 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1088 -3552 576 ) ( -1045 -3552 576 ) ( -1048 -3520 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1088 -3552 544 ) ( -1088 -3520 544 ) ( -1088 -3536 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1048 -3520 544 ) ( -1045 -3552 576 ) ( -1048 -3520 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 3506 +{ +( -1015 -3872 576 ) ( -1012 -3904 544 ) ( -866 -3841 576 ) bricks/c_tn_m1 18 8 12 1 1 0 0 0 +( -1012 -3904 592 ) ( -1012 -3904 544 ) ( -1015 -3872 576 ) bricks/c_tn_m1 18 8 12 1 1 0 0 0 +( -866 -3841 576 ) ( -1012 -3904 544 ) ( -1012 -3904 592 ) bricks/c_tn_m1 18 8 12 1 1 0 0 0 +( -572 -3904 576 ) ( -600 -3841 576 ) ( -544 -3841 576 ) bricks/c_tn_m1 18 8 12 1 1 0 0 0 +} +// brush 3507 +{ +( -1012 -3904 544 ) ( -856 -3872 544 ) ( -866 -3841 576 ) bricks/c_tn_m1 18 8 12 1 1 0 0 0 +( -866 -3841 576 ) ( -856 -3872 544 ) ( -856 -3872 592 ) bricks/c_tn_m1 18 8 12 1 1 0 0 0 +( -856 -3872 592 ) ( -856 -3872 544 ) ( -1012 -3904 544 ) bricks/c_tn_m1 18 8 12 1 1 0 0 0 +( -1012 -3904 592 ) ( -1012 -3904 544 ) ( -866 -3841 576 ) bricks/c_tn_m1 18 8 12 1 1 0 0 0 +( -572 -3904 576 ) ( -600 -3841 576 ) ( -544 -3841 576 ) bricks/c_tn_m1 18 8 12 1 1 0 0 0 +} +// brush 3508 +{ +( -866 -3841 576 ) ( -856 -3872 544 ) ( -740 -3787 576 ) bricks/c_tn_m1 157 3 23 1 1 0 0 0 +( -856 -3872 592 ) ( -856 -3872 544 ) ( -866 -3841 576 ) bricks/c_tn_m1 157 3 23 1 1 0 0 0 +( -740 -3787 576 ) ( -856 -3872 544 ) ( -856 -3872 592 ) bricks/c_tn_m1 157 3 23 1 1 0 0 0 +( -572 -3872 576 ) ( -600 -3787 576 ) ( -544 -3787 576 ) bricks/c_tn_m1 157 3 23 1 1 0 0 0 +} +// brush 3509 +{ +( -856 -3872 544 ) ( -724 -3816 544 ) ( -740 -3787 576 ) bricks/c_tn_m1 157 3 23 1 1 0 0 0 +( -740 -3787 576 ) ( -724 -3816 544 ) ( -724 -3816 592 ) bricks/c_tn_m1 157 3 23 1 1 0 0 0 +( -724 -3816 592 ) ( -724 -3816 544 ) ( -856 -3872 544 ) bricks/c_tn_m1 157 3 23 1 1 0 0 0 +( -856 -3872 592 ) ( -856 -3872 544 ) ( -740 -3787 576 ) bricks/c_tn_m1 157 3 23 1 1 0 0 0 +( -572 -3872 576 ) ( -600 -3787 576 ) ( -544 -3787 576 ) bricks/c_tn_m1 157 3 23 1 1 0 0 0 +} +// brush 3510 +{ +( -621 -3710 576 ) ( -600 -3736 544 ) ( -514 -3603 576 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( -600 -3736 592 ) ( -600 -3736 544 ) ( -621 -3710 576 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( -514 -3603 576 ) ( -600 -3736 544 ) ( -600 -3736 592 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( -572 -3736 576 ) ( -600 -3603 576 ) ( -544 -3603 576 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +} +// brush 3511 +{ +( -514 -3603 576 ) ( -600 -3736 544 ) ( -488 -3624 544 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( -514 -3603 576 ) ( -488 -3624 544 ) ( -488 -3624 592 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( -488 -3624 544 ) ( -600 -3736 544 ) ( -600 -3736 592 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( -600 -3736 592 ) ( -600 -3736 544 ) ( -514 -3603 576 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +( -572 -3736 576 ) ( -600 -3603 576 ) ( -544 -3603 576 ) bricks/c_tn_m1 0 -8 45 1 1 0 0 0 +} +// brush 3512 +{ +( -383 -3358 576 ) ( -352 -3368 544 ) ( -320 -3212 544 ) bricks/c_tn_m1 0 -3 78 1 1 0 0 0 +( -352 -3368 592 ) ( -352 -3368 544 ) ( -383 -3358 576 ) bricks/c_tn_m1 0 -3 78 1 1 0 0 0 +( -320 -3212 544 ) ( -352 -3368 544 ) ( -352 -3368 592 ) bricks/c_tn_m1 0 -3 78 1 1 0 0 0 +( -383 -3358 576 ) ( -320 -3212 544 ) ( -320 -3212 592 ) bricks/c_tn_m1 0 -3 78 1 1 0 0 0 +( -572 -3368 576 ) ( -600 -3212 576 ) ( -544 -3212 576 ) bricks/c_tn_m1 0 -3 78 1 1 0 0 0 +} +// brush 3513 +{ +( -383 -3358 576 ) ( -320 -3212 544 ) ( -352 -3209 576 ) bricks/c_tn_m1 0 -3 78 1 1 0 0 0 +( -352 -3209 576 ) ( -320 -3212 544 ) ( -320 -3212 592 ) bricks/c_tn_m1 0 -3 78 1 1 0 0 0 +( -320 -3212 592 ) ( -320 -3212 544 ) ( -383 -3358 576 ) bricks/c_tn_m1 0 -3 78 1 1 0 0 0 +( -572 -3358 576 ) ( -600 -3209 576 ) ( -544 -3209 576 ) bricks/c_tn_m1 0 -3 78 1 1 0 0 0 +} +// brush 3514 +{ +( -1088 -3872 576 ) ( -1015 -3872 576 ) ( -1012 -3904 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1712 -3904 560 ) ( -1712 -3904 576 ) ( -1360 -3904 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1012 -3904 544 ) ( -1015 -3872 576 ) ( -1088 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1088 -3888 576 ) ( -1088 -3904 544 ) ( -1088 -3872 544 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1012 -3904 576 ) ( -1015 -3872 576 ) ( -1012 -3904 544 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3515 +{ +( -830 -3384 368 ) ( -830 -3444 368 ) ( -792 -3444 368 ) bricks/c_sr_mr5 -63 -14 -180 1 1 0 0 0 +( -792 -3444 384 ) ( -830 -3444 384 ) ( -830 -3384 384 ) bricks/c_sr_mr5 0 8 225 1 1 0 0 0 +( -792 -3384 384 ) ( -840 -3432 384 ) ( -840 -3432 368 ) bricks/c_sr_mr5 32 14 -180 1 -1 0 0 0 +( -792 -3384 368 ) ( -780 -3394 368 ) ( -780 -3394 384 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +( -830 -3444 384 ) ( -780 -3394 384 ) ( -780 -3394 368 ) bricks/c_sr_mr5 -52 14 -180 1 -1 0 0 0 +( -830 -3444 368 ) ( -840 -3432 368 ) ( -840 -3432 384 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +} +// brush 3516 +{ +( -704 -3232 384 ) ( -336 -3232 384 ) ( -336 -3360 384 ) bricks/c_sr_mr5 0 3 258 1 1 0 0 0 +( -336 -3360 368 ) ( -336 -3232 368 ) ( -704 -3232 368 ) bricks/c_sr_mr5 -63 -14 -180 1 1 0 0 0 +( -704 -3176 400 ) ( -720 -3252 400 ) ( -720 -3252 240 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -704 -3256 240 ) ( -720 -3252 240 ) ( -720 -3252 400 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +( -704 -3176 256 ) ( -720 -3174 256 ) ( -720 -3174 240 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +( -688 -3178 240 ) ( -704 -3256 240 ) ( -704 -3256 400 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +} +// brush 3517 +{ +( -736 -3388 384 ) ( -368 -3388 384 ) ( -368 -3516 384 ) bricks/c_sr_mr5 0 -8 246 1 1 0 0 0 +( -368 -3516 368 ) ( -368 -3388 368 ) ( -736 -3388 368 ) bricks/c_sr_mr5 -63 -14 -180 1 1 0 0 0 +( -720 -3252 400 ) ( -748 -3316 400 ) ( -748 -3316 240 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -748 -3316 400 ) ( -734 -3324 400 ) ( -734 -3324 240 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +( -720 -3252 240 ) ( -704 -3256 240 ) ( -704 -3256 400 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +( -734 -3324 400 ) ( -704 -3256 400 ) ( -704 -3256 240 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +} +// brush 3518 +{ +( -792 -3520 384 ) ( -424 -3520 384 ) ( -424 -3648 384 ) bricks/c_sr_mr5 0 -6 237 1 1 0 0 0 +( -424 -3648 368 ) ( -424 -3520 368 ) ( -792 -3520 368 ) bricks/c_sr_mr5 -63 -14 -180 1 1 0 0 0 +( -748 -3316 400 ) ( -792 -3384 400 ) ( -792 -3384 240 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -792 -3384 400 ) ( -780 -3394 400 ) ( -780 -3394 240 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +( -748 -3316 240 ) ( -734 -3324 240 ) ( -734 -3324 400 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +( -734 -3324 240 ) ( -780 -3394 240 ) ( -780 -3394 400 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +} +// brush 3519 +{ +( -704 -3432 368 ) ( -704 -3800 368 ) ( -576 -3800 368 ) bricks/c_sr_mr5 -63 -14 -180 1 1 0 0 0 +( -576 -3800 384 ) ( -704 -3800 384 ) ( -704 -3432 384 ) bricks/c_sr_mr5 0 0 212 1 1 0 0 0 +( -908 -3476 352 ) ( -840 -3432 352 ) ( -840 -3432 512 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +( -840 -3432 352 ) ( -830 -3444 352 ) ( -830 -3444 512 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -908 -3476 512 ) ( -900 -3490 512 ) ( -900 -3490 352 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -900 -3490 512 ) ( -830 -3444 512 ) ( -830 -3444 352 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +} +// brush 3520 +{ +( -836 -3488 368 ) ( -836 -3856 368 ) ( -708 -3856 368 ) bricks/c_sr_mr5 -63 -14 -180 1 1 0 0 0 +( -708 -3856 384 ) ( -836 -3856 384 ) ( -836 -3488 384 ) bricks/c_sr_mr5 0 -11 204 1 1 0 0 0 +( -972 -3504 352 ) ( -908 -3476 352 ) ( -908 -3476 512 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +( -908 -3476 352 ) ( -900 -3490 352 ) ( -900 -3490 512 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -972 -3504 512 ) ( -968 -3520 512 ) ( -968 -3520 352 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -900 -3490 352 ) ( -968 -3520 352 ) ( -968 -3520 512 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +} +// brush 3521 +{ +( -992 -3520 368 ) ( -992 -3888 368 ) ( -864 -3888 368 ) bricks/c_sr_mr5 -63 -14 -180 1 1 0 0 0 +( -864 -3888 384 ) ( -992 -3888 384 ) ( -992 -3520 384 ) bricks/c_sr_mr5 0 -8 192 1 1 0 0 0 +( -1048 -3520 352 ) ( -972 -3504 352 ) ( -972 -3504 512 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +( -968 -3520 512 ) ( -972 -3504 512 ) ( -972 -3504 352 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -1048 -3520 496 ) ( -1050 -3504 496 ) ( -1050 -3504 512 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -1046 -3536 512 ) ( -968 -3520 512 ) ( -968 -3520 352 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +} +// brush 3522 +{ +( -600 -3650 368 ) ( -600 -3734 368 ) ( -546 -3734 368 ) bricks/c_sr_mr5 -63 -14 -180 1 1 0 0 0 +( -546 -3734 384 ) ( -600 -3734 384 ) ( -600 -3650 384 ) bricks/c_sr_mr5 0 -11 45 1 1 0 0 0 +( -499 -3615 384 ) ( -499 -3615 368 ) ( -488 -3624 368 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +( -600 -3736 384 ) ( -488 -3624 384 ) ( -488 -3624 368 ) bricks/c_sr_mr5 -32 14 -180 1 -1 0 0 0 +( -609 -3725 368 ) ( -609 -3725 384 ) ( -600 -3736 384 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -609 -3725 384 ) ( -609 -3725 368 ) ( -499 -3615 368 ) bricks/c_sr_mr5 59 14 -180 1 -1 0 0 0 +} +// brush 3523 +{ +( -704 -3232 384 ) ( -336 -3232 384 ) ( -336 -3360 384 ) bricks/c_sr_mr5 0 -5 78 1 1 0 0 0 +( -336 -3360 368 ) ( -336 -3232 368 ) ( -704 -3232 368 ) bricks/c_sr_mr5 -63 -14 -180 1 1 0 0 0 +( -368 -3363 368 ) ( -368 -3363 384 ) ( -352 -3368 384 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +( -352 -3368 400 ) ( -320 -3212 400 ) ( -320 -3212 240 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -320 -3212 400 ) ( -336 -3210 400 ) ( -336 -3210 240 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +( -368 -3363 384 ) ( -368 -3363 368 ) ( -336 -3210 368 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +} +// brush 3524 +{ +( -736 -3388 384 ) ( -368 -3388 384 ) ( -368 -3516 384 ) bricks/c_sr_mr5 0 -1 67 1 1 0 0 0 +( -368 -3516 368 ) ( -368 -3388 368 ) ( -736 -3388 368 ) bricks/c_sr_mr5 -63 -14 -180 1 1 0 0 0 +( -421 -3493 368 ) ( -421 -3493 384 ) ( -408 -3500 384 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +( -352 -3368 240 ) ( -408 -3500 240 ) ( -408 -3500 400 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -368 -3363 384 ) ( -368 -3363 368 ) ( -352 -3368 368 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +( -421 -3493 384 ) ( -421 -3493 368 ) ( -368 -3363 368 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +} +// brush 3525 +{ +( -792 -3520 384 ) ( -424 -3520 384 ) ( -424 -3648 384 ) bricks/c_sr_mr5 0 2 57 1 1 0 0 0 +( -424 -3648 368 ) ( -424 -3520 368 ) ( -792 -3520 368 ) bricks/c_sr_mr5 -63 -14 -180 1 1 0 0 0 +( -499 -3615 368 ) ( -499 -3615 384 ) ( -488 -3624 384 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +( -488 -3624 400 ) ( -408 -3500 400 ) ( -408 -3500 240 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -421 -3493 384 ) ( -421 -3493 368 ) ( -408 -3500 368 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +( -499 -3615 384 ) ( -499 -3615 368 ) ( -421 -3493 368 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +} +// brush 3526 +{ +( -704 -3432 368 ) ( -704 -3800 368 ) ( -576 -3800 368 ) bricks/c_sr_mr5 -63 -14 -180 1 1 0 0 0 +( -576 -3800 384 ) ( -704 -3800 384 ) ( -704 -3432 384 ) bricks/c_sr_mr5 0 8 33 1 1 0 0 0 +( -609 -3725 384 ) ( -609 -3725 368 ) ( -600 -3736 368 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -600 -3736 352 ) ( -724 -3816 352 ) ( -724 -3816 512 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +( -731 -3803 368 ) ( -731 -3803 384 ) ( -724 -3816 384 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -731 -3803 384 ) ( -731 -3803 368 ) ( -609 -3725 368 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +} +// brush 3527 +{ +( -836 -3488 368 ) ( -836 -3856 368 ) ( -708 -3856 368 ) bricks/c_sr_mr5 -63 -14 -180 1 1 0 0 0 +( -708 -3856 384 ) ( -836 -3856 384 ) ( -836 -3488 384 ) bricks/c_sr_mr5 0 1 23 1 1 0 0 0 +( -731 -3803 384 ) ( -731 -3803 368 ) ( -724 -3816 368 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -856 -3872 512 ) ( -724 -3816 512 ) ( -724 -3816 352 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +( -856 -3872 352 ) ( -860 -3858 352 ) ( -860 -3858 512 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -731 -3803 368 ) ( -731 -3803 384 ) ( -860 -3858 384 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +} +// brush 3528 +{ +( -992 -3520 368 ) ( -992 -3888 368 ) ( -864 -3888 368 ) bricks/c_sr_mr5 -63 -14 -180 1 1 0 0 0 +( -864 -3888 384 ) ( -992 -3888 384 ) ( -992 -3520 384 ) bricks/c_sr_mr5 0 6 12 1 1 0 0 0 +( -856 -3872 512 ) ( -860 -3858 512 ) ( -860 -3858 352 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -856 -3872 352 ) ( -1012 -3904 352 ) ( -1012 -3904 512 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +( -1012 -3904 352 ) ( -1014 -3888 352 ) ( -1014 -3888 512 ) bricks/c_sr_mr5 0 14 -180 1 -1 0 0 0 +( -1014 -3888 352 ) ( -860 -3858 352 ) ( -860 -3858 512 ) bricks/c_sr_mr5 -64 14 -180 1 -1 0 0 0 +} +// brush 3529 +{ +( -3872 -2000 972 ) ( -3888 -2000 972 ) ( -3888 -2016 972 ) common/li_sr_m19a 2 2 0 1 1 0 1 6000 +( -3888 -2016 976 ) ( -3888 -2000 976 ) ( -3872 -2000 976 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3888 -2012 1120 ) ( -3872 -2012 1120 ) ( -3872 -2012 704 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3876 -2016 1120 ) ( -3876 -2000 1120 ) ( -3876 -2000 704 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3872 -2000 1120 ) ( -3888 -2000 1120 ) ( -3888 -2000 704 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3888 -2000 1120 ) ( -3888 -2016 1120 ) ( -3888 -2016 704 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 3530 +{ +( -3872 -1936 972 ) ( -3888 -1936 972 ) ( -3888 -1952 972 ) common/li_sr_m19a 2 14 0 1 1 0 1 6000 +( -3888 -1952 976 ) ( -3888 -1936 976 ) ( -3872 -1936 976 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3888 -1952 1120 ) ( -3872 -1952 1120 ) ( -3872 -1952 704 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3876 -1952 1120 ) ( -3876 -1936 1120 ) ( -3876 -1936 704 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3872 -1940 1120 ) ( -3888 -1940 1120 ) ( -3888 -1940 704 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3888 -1936 1120 ) ( -3888 -1952 1120 ) ( -3888 -1952 704 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 3531 +{ +( -3904 -888 1280 ) ( -3904 -832 1280 ) ( -3888 -832 1280 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3888 -1632 1280 ) ( -3888 -1576 1280 ) ( -3888 -1576 1152 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3904 -832 832 ) ( -3904 -888 832 ) ( -3904 -888 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3904 -1480 704 ) ( -3888 -1480 704 ) ( -3896 -1480 1280 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3880 -2560 704 ) ( -3904 -2560 704 ) ( -3892 -2560 1280 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3896 -2560 1120 ) ( -3888 -2560 1120 ) ( -3892 -1480 1120 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 3532 +{ +( -3888 -832 704 ) ( -3904 -832 704 ) ( -3904 -888 704 ) props/bld_rc_c7 60 44 0 2 2 0 0 0 +( -3888 -1632 1280 ) ( -3888 -1576 1280 ) ( -3888 -1576 1152 ) props/bld_rc_c7 28 44 0 2 2 0 0 0 +( -3904 -832 832 ) ( -3904 -888 832 ) ( -3904 -888 704 ) props/bld_rc_c7 60 44 0 2 2 0 0 0 +( -3904 -1504 704 ) ( -3888 -1504 704 ) ( -3896 -1504 1280 ) props/bld_rc_c7 60 44 0 2 2 0 0 0 +( -3880 -2560 704 ) ( -3904 -2560 704 ) ( -3892 -2560 1280 ) props/bld_rc_c7 60 44 0 2 2 0 0 0 +( -3888 -2560 1120 ) ( -3896 -2560 1120 ) ( -3892 -1480 1120 ) props/bld_rc_c7 60 44 0 2 2 0 0 0 +} +// brush 3533 +{ +( -3888 -832 704 ) ( -3904 -832 704 ) ( -3904 -888 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3904 -888 1280 ) ( -3904 -832 1280 ) ( -3888 -832 1280 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3848 -2768 832 ) ( -3832 -2768 832 ) ( -3832 -2768 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3888 -1632 1280 ) ( -3888 -1576 1280 ) ( -3888 -1576 1152 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3904 -464 832 ) ( -3904 -520 832 ) ( -3904 -520 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3904 -2560 704 ) ( -3880 -2560 704 ) ( -3892 -2560 1280 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 3534 +{ +( -3888 -832 704 ) ( -3904 -832 704 ) ( -3904 -888 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3904 -888 1280 ) ( -3904 -832 1280 ) ( -3888 -832 1280 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3888 -1656 1280 ) ( -3888 -1600 1280 ) ( -3888 -1600 1152 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3888 -1136 832 ) ( -3904 -1136 832 ) ( -3904 -1136 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3904 -832 832 ) ( -3904 -888 832 ) ( -3904 -888 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3888 -1504 704 ) ( -3904 -1504 704 ) ( -3896 -1504 1280 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 3535 +{ +( -3792 -1344 704 ) ( -3888 -1344 704 ) ( -3888 -1696 704 ) props/bld_rc_c10 8 0 0 2 2 0 0 0 +( -3888 -1696 1024 ) ( -3888 -1344 1024 ) ( -3792 -1344 1024 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3888 -1824 1240 ) ( -3792 -1824 1240 ) ( -3792 -1824 704 ) props/bld_rc_c10 24 0 0 2 2 0 0 0 +( -3792 -1696 1240 ) ( -3792 -1344 1240 ) ( -3792 -1344 704 ) props/bld_rc_c10 18 0 0 2 2 0 0 0 +( -3784 -1480 1240 ) ( -3880 -1480 1240 ) ( -3880 -1480 704 ) props/bld_rc_c10 24 0 0 2 2 0 0 0 +( -3888 -1344 1240 ) ( -3888 -1696 1240 ) ( -3888 -1696 704 ) props/bld_rc_c10 8 0 0 2 2 0 0 0 +} +// brush 3536 +{ +( -3792 -2112 704 ) ( -3888 -2112 704 ) ( -3888 -2464 704 ) props/bld_rc_c1 0 104 0 2 2 0 0 0 +( -3888 -2464 1240 ) ( -3888 -2112 1240 ) ( -3792 -2112 1240 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3888 -2560 1240 ) ( -3792 -2560 1240 ) ( -3792 -2560 704 ) props/bld_rc_c1 16 104 0 2 2 0 0 0 +( -3792 -2464 1240 ) ( -3792 -2112 1240 ) ( -3792 -2112 704 ) props/bld_rc_c1 0 104 0 2 2 0 0 0 +( -3792 -2112 1240 ) ( -3888 -2112 1240 ) ( -3888 -2112 704 ) props/bld_rc_c1 -16 104 0 2 2 0 0 0 +( -3888 -2112 1240 ) ( -3888 -2464 1240 ) ( -3888 -2464 704 ) props/bld_rc_c1 0 104 0 2 2 0 0 0 +} +// brush 3537 +{ +( -3208 -2144 704 ) ( -3336 -2144 704 ) ( -3336 -2400 704 ) props/bld_rc_c2 -40 0 0 2 2 0 0 0 +( -3336 -2400 1240 ) ( -3336 -2144 1240 ) ( -3208 -2144 1240 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3320 -2688 1240 ) ( -3192 -2688 1240 ) ( -3192 -2688 664 ) props/bld_rc_c2 -130 0 0 1.800000 2 0 0 0 +( -3208 -2400 1240 ) ( -3208 -2144 1240 ) ( -3208 -2144 664 ) props/bld_rc_c2 -40 0 0 2 2 0 0 0 +( -3208 -2144 1240 ) ( -3336 -2144 1240 ) ( -3336 -2144 664 ) props/bld_rc_c2 -130 0 0 1.800000 2 0 0 0 +( -3456 -2120 1240 ) ( -3456 -2376 1240 ) ( -3456 -2376 664 ) props/bld_rc_c2 -72 0 0 2 2 0 0 0 +} +// brush 3538 +{ +( -3208 -1680 1016 ) ( -3336 -1680 1016 ) ( -3336 -1936 1016 ) props/bld_rc_c11 32 -448 0 -2 2 0 0 0 +( -3336 -1936 1152 ) ( -3336 -1680 1152 ) ( -3208 -1680 1152 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3392 -1928 1384 ) ( -3264 -1928 1384 ) ( -3264 -1928 808 ) props/bld_rc_c11 32 -448 0 -2 2 0 0 0 +( -3208 -1936 1384 ) ( -3208 -1680 1384 ) ( -3208 -1680 808 ) props/bld_rc_c11 32 -448 0 -2 2 0 0 0 +( -3208 -1680 1384 ) ( -3336 -1680 1384 ) ( -3336 -1680 808 ) props/bld_rc_c11 32 -448 0 -2 2 0 0 0 +( -3264 -1664 1384 ) ( -3264 -1920 1384 ) ( -3264 -1920 808 ) props/bld_rc_c11 60 -448 0 -2 2 0 0 0 +} +// brush 3539 +{ +( -3208 -1680 704 ) ( -3336 -1680 704 ) ( -3336 -1936 704 ) props/bld_rc_c1 -16 0 0 2 2 0 0 0 +( -3336 -1936 1016 ) ( -3336 -1680 1016 ) ( -3208 -1680 1016 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3328 -2144 1240 ) ( -3200 -2144 1240 ) ( -3200 -2144 664 ) props/bld_rc_c1 4 0 0 2 2 0 0 0 +( -3208 -1936 1240 ) ( -3208 -1680 1240 ) ( -3208 -1680 664 ) props/bld_rc_c1 -16 0 0 2 2 0 0 0 +( -3208 -1680 1240 ) ( -3336 -1680 1240 ) ( -3336 -1680 664 ) props/bld_rc_c1 -16 0 0 2 2 0 0 0 +( -3328 -1672 1240 ) ( -3328 -1928 1240 ) ( -3328 -1928 664 ) props/bld_rc_c1 -16 0 0 2 2 0 0 0 +} +// brush 3540 +{ +( -3200 -1216 704 ) ( -3328 -1216 704 ) ( -3328 -1472 704 ) props/bld_rc_c4 -88 96 0 2 2 0 0 0 +( -3328 -1472 1240 ) ( -3328 -1216 1240 ) ( -3200 -1216 1240 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3320 -1680 1240 ) ( -3192 -1680 1240 ) ( -3192 -1680 664 ) props/bld_rc_c4 -130 96 0 2 2 0 0 0 +( -3200 -1472 1240 ) ( -3200 -1216 1240 ) ( -3200 -1216 664 ) props/bld_rc_c4 -88 96 0 2 2 0 0 0 +( -3200 -1216 1240 ) ( -3328 -1216 1240 ) ( -3328 -1216 664 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3392 -1208 1240 ) ( -3392 -1464 1240 ) ( -3392 -1464 664 ) props/bld_rc_c4 -88 96 0 2 2 0 0 0 +} +// brush 3541 +{ +( -3440 -1336 456 ) ( -3456 -1336 456 ) ( -3456 -1328 456 ) metals/mt_pv_m16bc -16 0 0 1 1 0 0 0 +( -3440 -1328 424 ) ( -3440 -1328 456 ) ( -3456 -1328 456 ) common/li_track2 8 0 270 1 1 0 1 10000 +( -3440 -1336 424 ) ( -3440 -1336 456 ) ( -3440 -1328 456 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3456 -1336 424 ) ( -3456 -1336 456 ) ( -3440 -1336 456 ) metals/mt_pv_m16bc -16 0 0 1 1 0 0 0 +( -3456 -1328 424 ) ( -3456 -1328 456 ) ( -3456 -1336 456 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3452 -1336 440 ) ( -3448 -1328 440 ) ( -3456 -1328 440 ) metals/mt_pv_m16bc -16 0 0 1 1 0 0 0 +} +// brush 3542 +{ +( -3456 -1328 424 ) ( -3456 -1336 424 ) ( -3440 -1336 424 ) metals/mt_pv_m16bc -16 0 0 1 1 0 0 0 +( -3440 -1328 424 ) ( -3440 -1328 456 ) ( -3456 -1328 456 ) common/li_track2 8 0 270 1 1 0 0 0 +( -3440 -1336 424 ) ( -3440 -1336 456 ) ( -3440 -1328 456 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3456 -1336 424 ) ( -3456 -1336 456 ) ( -3440 -1336 456 ) metals/mt_pv_m16bc -16 0 0 1 1 0 0 0 +( -3456 -1328 424 ) ( -3456 -1328 456 ) ( -3456 -1336 456 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3452 -1336 440 ) ( -3456 -1328 440 ) ( -3448 -1328 440 ) metals/mt_pv_m16bc -16 0 0 1 1 0 0 0 +} +// brush 3543 +{ +( -3440 -2632 424 ) ( -3456 -2632 424 ) ( -3456 -2640 424 ) metals/mt_pv_m16bc -16 0 0 1 1 0 0 0 +( -3456 -2640 456 ) ( -3440 -2640 456 ) ( -3440 -2640 424 ) common/li_track2 8 0 270 1 1 0 1 15000 +( -3440 -2640 456 ) ( -3440 -2632 456 ) ( -3440 -2632 424 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3440 -2632 456 ) ( -3456 -2632 456 ) ( -3456 -2632 424 ) metals/mt_pv_m16bc -16 0 0 1 1 0 0 0 +( -3456 -2632 456 ) ( -3456 -2640 456 ) ( -3456 -2640 424 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3448 -2640 440 ) ( -3456 -2640 440 ) ( -3452 -2632 440 ) metals/mt_pv_m16bc -16 0 0 1 1 0 0 0 +} +// brush 3544 +{ +( -3456 -2640 456 ) ( -3456 -2632 456 ) ( -3440 -2632 456 ) metals/mt_pv_m16bc -16 0 0 1 1 0 0 0 +( -3456 -2640 456 ) ( -3440 -2640 456 ) ( -3440 -2640 424 ) common/li_track2 8 0 270 1 1 0 0 0 +( -3440 -2640 456 ) ( -3440 -2632 456 ) ( -3440 -2632 424 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3440 -2632 456 ) ( -3456 -2632 456 ) ( -3456 -2632 424 ) metals/mt_pv_m16bc -16 0 0 1 1 0 0 0 +( -3456 -2632 456 ) ( -3456 -2640 456 ) ( -3456 -2640 424 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3456 -2640 440 ) ( -3448 -2640 440 ) ( -3452 -2632 440 ) metals/mt_pv_m16bc -16 0 0 1 1 0 0 0 +} +// brush 3545 +{ +( -3440 -832 576 ) ( -3856 -832 576 ) ( -3856 -1088 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3856 -1088 704 ) ( -3856 -832 704 ) ( -3440 -832 704 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3488 -1088 592 ) ( -3488 -832 592 ) ( -3488 -832 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3440 -832 592 ) ( -3856 -832 592 ) ( -3856 -832 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3808 -832 592 ) ( -3808 -1088 592 ) ( -3808 -1088 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3752 -1152 576 ) ( -3808 -1152 576 ) ( -3780 -1152 704 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 3546 +{ +( -3752 -832 1280 ) ( -3904 -832 1280 ) ( -3904 -976 1280 ) common/li_sr_v3 0 0 0 1 1 0 133 500 +( -3904 -976 1296 ) ( -3904 -832 1296 ) ( -3752 -832 1296 ) common/li_sr_v3 0 0 0 1 1 0 133 500 +( -3888 -2768 1296 ) ( -3736 -2768 1296 ) ( -3736 -2768 1168 ) common/li_sr_v3 0 0 0 1 1 0 133 500 +( -3184 -944 1296 ) ( -3184 -800 1296 ) ( -3184 -800 1168 ) common/li_sr_v3 0 0 0 1 1 0 133 500 +( -3752 -1136 1296 ) ( -3904 -1136 1296 ) ( -3904 -1136 1168 ) common/li_sr_v3 0 0 0 1 1 0 133 500 +( -3904 -832 1296 ) ( -3904 -976 1296 ) ( -3904 -976 1168 ) common/li_sr_v3 0 0 0 1 1 0 133 500 +} +// brush 3547 +{ +( -3200 -1136 704 ) ( -3888 -1136 704 ) ( -3888 -1152 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3888 -1152 1280 ) ( -3888 -1136 1280 ) ( -3200 -1136 1280 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3888 -1152 832 ) ( -3200 -1152 832 ) ( -3200 -1152 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3200 -1152 1280 ) ( -3200 -1136 1280 ) ( -3200 -1136 1152 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3200 -1136 832 ) ( -3888 -1136 832 ) ( -3888 -1136 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3888 -1136 1280 ) ( -3888 -1152 1280 ) ( -3888 -1152 1152 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 3548 +{ +( -3184 -832 704 ) ( -3200 -832 704 ) ( -3200 -888 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3200 -888 1280 ) ( -3200 -832 1280 ) ( -3184 -832 1280 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3144 -2768 832 ) ( -3128 -2768 832 ) ( -3128 -2768 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3184 -1632 832 ) ( -3184 -1576 832 ) ( -3184 -1576 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3184 -1136 832 ) ( -3200 -1136 832 ) ( -3200 -1136 704 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -3200 -832 1280 ) ( -3200 -888 1280 ) ( -3200 -888 1152 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +} +// brush 3549 +{ +( -3040 -2432 576 ) ( -3392 -2432 576 ) ( -3392 -2496 576 ) bricks/c_sr_mb1a -32 64 0 1 1 0 0 0 +( -3392 -2496 640 ) ( -3392 -2432 640 ) ( -3040 -2432 640 ) common/li_sr_v24 -33 0 0 1 1 0 132 0 +( -3392 -2496 640 ) ( -3040 -2496 640 ) ( -3040 -2496 576 ) bricks/c_sr_mb1 -33 0 0 1 1 0 0 0 +( -3040 -2432 640 ) ( -3392 -2432 640 ) ( -3392 -2432 576 ) bricks/c_sr_mb1 -33 0 0 1 1 0 0 0 +( -3424 -2432 640 ) ( -3424 -2496 640 ) ( -3424 -2496 576 ) bricks/c_sr_mb1 -33 0 0 1 1 0 0 0 +( -3232 -2432 576 ) ( -3232 -2456 576 ) ( -3232 -2444 640 ) bricks/c_sr_mb1 -33 0 0 1 1 0 0 0 +} +// brush 3550 +{ +( -3040 -2112 576 ) ( -3392 -2112 576 ) ( -3392 -2176 576 ) bricks/c_sr_mb1a -32 128 0 1 1 0 0 0 +( -3392 -2176 640 ) ( -3392 -2112 640 ) ( -3040 -2112 640 ) common/li_sr_v24 -32 0 0 1 1 0 132 0 +( -3392 -2176 640 ) ( -3040 -2176 640 ) ( -3040 -2176 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +( -3072 -2112 640 ) ( -3424 -2112 640 ) ( -3424 -2112 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +( -3424 -2112 640 ) ( -3424 -2176 640 ) ( -3424 -2176 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +( -3232 -2432 576 ) ( -3232 -2456 576 ) ( -3232 -2444 640 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +} +// brush 3551 +{ +( -3040 -1792 576 ) ( -3392 -1792 576 ) ( -3392 -1856 576 ) bricks/c_sr_mb1a -32 64 0 1 1 0 0 0 +( -3392 -1856 640 ) ( -3392 -1792 640 ) ( -3040 -1792 640 ) common/li_sr_v24 -32 0 0 1 1 0 132 0 +( -3392 -1856 640 ) ( -3040 -1856 640 ) ( -3040 -1856 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +( -3072 -1792 640 ) ( -3424 -1792 640 ) ( -3424 -1792 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +( -3424 -1792 640 ) ( -3424 -1856 640 ) ( -3424 -1856 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +( -3232 -2432 576 ) ( -3232 -2456 576 ) ( -3232 -2444 640 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +} +// brush 3552 +{ +( -3040 -1472 576 ) ( -3392 -1472 576 ) ( -3392 -1536 576 ) bricks/c_sr_mb1a -32 128 0 1 1 0 0 0 +( -3392 -1536 640 ) ( -3392 -1472 640 ) ( -3040 -1472 640 ) common/li_sr_v24 -32 0 0 1 1 0 132 0 +( -3392 -1536 640 ) ( -3040 -1536 640 ) ( -3040 -1536 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +( -3040 -1472 640 ) ( -3392 -1472 640 ) ( -3392 -1472 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +( -3424 -1472 640 ) ( -3424 -1536 640 ) ( -3424 -1536 576 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +( -3232 -2432 576 ) ( -3232 -2456 576 ) ( -3232 -2444 640 ) bricks/c_sr_mb1 -32 0 0 1 1 0 0 0 +} +// brush 3553 +{ +( -3456 -3176 576 ) ( -3488 -3179 576 ) ( -3488 -3080 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3456 -3080 544 ) ( -3456 -3120 544 ) ( -3456 -3120 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3488 -3080 576 ) ( -3488 -3179 576 ) ( -3456 -3176 544 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3488 -3080 544 ) ( -3456 -3080 544 ) ( -3472 -3080 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3456 -3176 544 ) ( -3488 -3179 576 ) ( -3456 -3176 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3554 +{ +( -3456 -3080 544 ) ( -3416 -2984 544 ) ( -3488 -3080 576 ) bricks/c_tn_m1 46 13 68 1 0.950000 0 0 0 +( -3416 -2984 576 ) ( -3416 -2984 544 ) ( -3456 -3080 544 ) bricks/c_tn_m1 46 13 68 1 0.950000 0 0 0 +( -3456 -3080 544 ) ( -3488 -3080 576 ) ( -3456 -3080 576 ) bricks/c_tn_m1 46 13 68 1 0.950000 0 0 0 +( -3488 -3080 576 ) ( -3416 -2984 544 ) ( -3416 -2984 576 ) bricks/c_tn_m1 46 13 68 1 0.950000 0 0 0 +( -3456 -3080 576 ) ( -3488 -3080 576 ) ( -3416 -2984 576 ) bricks/c_tn_m1 46 13 68 1 0.950000 0 0 0 +} +// brush 3555 +{ +( -3444 -2971 576 ) ( -3488 -3080 576 ) ( -3416 -2984 544 ) bricks/c_tn_m1 46 13 68 1 0.950000 0 0 0 +( -3416 -2984 576 ) ( -3444 -2971 576 ) ( -3416 -2984 544 ) bricks/c_tn_m1 46 13 68 1 0.950000 0 0 0 +( -3416 -2984 544 ) ( -3488 -3080 576 ) ( -3416 -2984 576 ) bricks/c_tn_m1 46 13 68 1 0.950000 0 0 0 +( -3416 -2984 576 ) ( -3488 -3080 576 ) ( -3444 -2971 576 ) bricks/c_tn_m1 46 13 68 1 0.950000 0 0 0 +} +// brush 3556 +{ +( -3232 -2736 576 ) ( -3271 -2809 576 ) ( -3200 -2736 544 ) bricks/c_tn_m1 79 12 65 1 0.950000 0 0 0 +( -3200 -2736 576 ) ( -3232 -2736 576 ) ( -3200 -2736 544 ) bricks/c_tn_m1 79 12 65 1 0.950000 0 0 0 +( -3200 -2736 544 ) ( -3271 -2809 576 ) ( -3200 -2736 576 ) bricks/c_tn_m1 79 12 65 1 0.950000 0 0 0 +( -3200 -2736 576 ) ( -3271 -2809 576 ) ( -3232 -2736 576 ) bricks/c_tn_m1 79 12 65 1 0.950000 0 0 0 +} +// brush 3557 +{ +( -3271 -2809 576 ) ( -3240 -2824 544 ) ( -3200 -2736 544 ) bricks/c_tn_m1 79 12 65 1 0.950000 0 0 0 +( -3200 -2736 544 ) ( -3240 -2824 544 ) ( -3240 -2824 576 ) bricks/c_tn_m1 79 12 65 1 0.950000 0 0 0 +( -3240 -2824 576 ) ( -3240 -2824 544 ) ( -3271 -2809 576 ) bricks/c_tn_m1 79 12 65 1 0.950000 0 0 0 +( -3200 -2736 576 ) ( -3271 -2809 576 ) ( -3200 -2736 544 ) bricks/c_tn_m1 79 12 65 1 0.950000 0 0 0 +( -3240 -2832 576 ) ( -3271 -2809 576 ) ( -3200 -2736 576 ) bricks/c_tn_m1 79 12 65 1 0.950000 0 0 0 +} +// brush 3558 +{ +( -3444 -2971 576 ) ( -3240 -2824 544 ) ( -3271 -2809 576 ) bricks/c_tn_m1 64 -7 43 1 0.950000 0 0 0 +( -3271 -2809 576 ) ( -3240 -2824 544 ) ( -3240 -2824 592 ) bricks/c_tn_m1 64 -7 43 1 0.950000 0 0 0 +( -3240 -2824 592 ) ( -3240 -2824 544 ) ( -3444 -2971 576 ) bricks/c_tn_m1 64 -7 43 1 0.950000 0 0 0 +( -3304 -2971 576 ) ( -3312 -2809 576 ) ( -3296 -2809 576 ) bricks/c_tn_m1 64 -7 43 1 0.950000 0 0 0 +} +// brush 3559 +{ +( -3444 -2971 576 ) ( -3416 -2984 544 ) ( -3240 -2824 544 ) bricks/c_tn_m1 64 -7 43 1 0.950000 0 0 0 +( -3240 -2824 544 ) ( -3416 -2984 544 ) ( -3416 -2984 592 ) bricks/c_tn_m1 64 -7 43 1 0.950000 0 0 0 +( -3416 -2984 592 ) ( -3416 -2984 544 ) ( -3444 -2971 576 ) bricks/c_tn_m1 64 -7 43 1 0.950000 0 0 0 +( -3444 -2971 592 ) ( -3444 -2971 576 ) ( -3240 -2824 544 ) bricks/c_tn_m1 64 -7 43 1 0.950000 0 0 0 +( -3304 -2984 576 ) ( -3312 -2824 576 ) ( -3296 -2824 576 ) bricks/c_tn_m1 64 -7 43 1 0.950000 0 0 0 +} +// brush 3560 +{ +( -3240 -1144 544 ) ( -3416 -984 544 ) ( -3444 -997 576 ) bricks/c_tn_m1 32 25 138 1 0.900000 0 0 0 +( -3416 -984 592 ) ( -3416 -984 544 ) ( -3240 -1144 544 ) bricks/c_tn_m1 32 25 138 1 0.900000 0 0 0 +( -3444 -997 576 ) ( -3416 -984 544 ) ( -3416 -984 592 ) bricks/c_tn_m1 32 25 138 1 0.900000 0 0 0 +( -3240 -1144 544 ) ( -3444 -997 576 ) ( -3444 -997 592 ) bricks/c_tn_m1 32 25 138 1 0.900000 0 0 0 +( -3296 -1144 576 ) ( -3312 -1144 576 ) ( -3304 -984 576 ) bricks/c_tn_m1 32 25 138 1 0.900000 0 0 0 +} +// brush 3561 +{ +( -3271 -1159 576 ) ( -3240 -1144 544 ) ( -3444 -997 576 ) bricks/c_tn_m1 32 25 138 1 0.900000 0 0 0 +( -3240 -1144 592 ) ( -3240 -1144 544 ) ( -3271 -1159 576 ) bricks/c_tn_m1 32 25 138 1 0.900000 0 0 0 +( -3444 -997 576 ) ( -3240 -1144 544 ) ( -3240 -1144 592 ) bricks/c_tn_m1 32 25 138 1 0.900000 0 0 0 +( -3296 -1159 576 ) ( -3312 -1159 576 ) ( -3304 -997 576 ) bricks/c_tn_m1 32 25 138 1 0.900000 0 0 0 +} +// brush 3562 +{ +( -3200 -1232 544 ) ( -3240 -1144 544 ) ( -3271 -1159 576 ) bricks/c_tn_m1 63 48 115 1 0.950000 0 0 0 +( -3240 -1144 576 ) ( -3240 -1144 544 ) ( -3200 -1232 544 ) bricks/c_tn_m1 63 48 115 1 0.950000 0 0 0 +( -3271 -1159 576 ) ( -3240 -1144 544 ) ( -3240 -1144 576 ) bricks/c_tn_m1 63 48 115 1 0.950000 0 0 0 +( -3200 -1232 544 ) ( -3271 -1159 576 ) ( -3200 -1232 576 ) bricks/c_tn_m1 63 48 115 1 0.950000 0 0 0 +( -3200 -1232 576 ) ( -3271 -1159 576 ) ( -3240 -1136 576 ) bricks/c_tn_m1 63 48 115 1 0.950000 0 0 0 +} +// brush 3563 +{ +( -3200 -1232 544 ) ( -3271 -1159 576 ) ( -3232 -1232 576 ) bricks/c_tn_m1 63 48 115 1 0.950000 0 0 0 +( -3200 -1232 544 ) ( -3232 -1232 576 ) ( -3200 -1232 576 ) bricks/c_tn_m1 63 48 115 1 0.950000 0 0 0 +( -3200 -1232 576 ) ( -3271 -1159 576 ) ( -3200 -1232 544 ) bricks/c_tn_m1 63 48 115 1 0.950000 0 0 0 +( -3232 -1232 576 ) ( -3271 -1159 576 ) ( -3200 -1232 576 ) bricks/c_tn_m1 63 48 115 1 0.950000 0 0 0 +} +// brush 3564 +{ +( -3416 -984 544 ) ( -3488 -888 576 ) ( -3444 -997 576 ) bricks/c_tn_m1 0 19 112 1 0.940000 0 0 0 +( -3416 -984 544 ) ( -3444 -997 576 ) ( -3416 -984 576 ) bricks/c_tn_m1 0 19 112 1 0.940000 0 0 0 +( -3416 -984 576 ) ( -3488 -888 576 ) ( -3416 -984 544 ) bricks/c_tn_m1 0 19 112 1 0.940000 0 0 0 +( -3444 -997 576 ) ( -3488 -888 576 ) ( -3416 -984 576 ) bricks/c_tn_m1 0 19 112 1 0.940000 0 0 0 +} +// brush 3565 +{ +( -3488 -888 576 ) ( -3416 -984 544 ) ( -3456 -888 544 ) bricks/c_tn_m1 0 19 112 1 0.940000 0 0 0 +( -3456 -888 544 ) ( -3416 -984 544 ) ( -3416 -984 576 ) bricks/c_tn_m1 0 19 112 1 0.940000 0 0 0 +( -3456 -888 576 ) ( -3488 -888 576 ) ( -3456 -888 544 ) bricks/c_tn_m1 0 19 112 1 0.940000 0 0 0 +( -3416 -984 576 ) ( -3416 -984 544 ) ( -3488 -888 576 ) bricks/c_tn_m1 0 19 112 1 0.940000 0 0 0 +( -3416 -984 576 ) ( -3488 -888 576 ) ( -3456 -888 576 ) bricks/c_tn_m1 0 19 112 1 0.940000 0 0 0 +} +// brush 3566 +{ +( -3152 -1280 576 ) ( -3152 -1232 576 ) ( -3120 -1232 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3120 -1280 576 ) ( -3120 -1232 576 ) ( -3120 -1232 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3120 -1136 576 ) ( -3152 -1136 576 ) ( -3152 -1136 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3152 -1280 576 ) ( -3120 -1280 544 ) ( -3136 -1232 560 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3128 -1232 544 ) ( -3152 -1232 544 ) ( -3140 -1232 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3567 +{ +( -3232 -1280 576 ) ( -3232 -1232 576 ) ( -3200 -1232 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3200 -1280 576 ) ( -3200 -1232 576 ) ( -3200 -1232 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3232 -1280 576 ) ( -3200 -1280 544 ) ( -3216 -1232 560 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3208 -1472 544 ) ( -3232 -1472 544 ) ( -3220 -1472 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3232 -1232 544 ) ( -3208 -1232 544 ) ( -3220 -1232 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3568 +{ +( -3232 -2560 576 ) ( -3232 -2512 576 ) ( -3200 -2512 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3200 -2560 576 ) ( -3200 -2512 576 ) ( -3200 -2512 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3200 -2496 576 ) ( -3232 -2496 576 ) ( -3232 -2496 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3232 -2544 576 ) ( -3200 -2544 544 ) ( -3216 -2496 560 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3208 -2736 544 ) ( -3232 -2736 544 ) ( -3220 -2736 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3569 +{ +( -3232 -2240 576 ) ( -3232 -2192 576 ) ( -3200 -2192 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3200 -2240 576 ) ( -3200 -2192 576 ) ( -3200 -2192 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3200 -2176 576 ) ( -3232 -2176 576 ) ( -3232 -2176 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3232 -2240 576 ) ( -3200 -2240 544 ) ( -3216 -2192 560 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3208 -2432 544 ) ( -3232 -2432 544 ) ( -3220 -2432 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3570 +{ +( -3232 -2240 576 ) ( -3232 -2192 576 ) ( -3200 -2192 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3256 -2496 576 ) ( -3224 -2496 576 ) ( -3224 -2496 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3232 -2240 576 ) ( -3200 -2240 544 ) ( -3216 -2192 560 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3232 -2432 544 ) ( -3208 -2432 544 ) ( -3220 -2432 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3224 -2432 544 ) ( -3224 -2448 544 ) ( -3224 -2440 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3571 +{ +( -3232 -2240 576 ) ( -3232 -2192 576 ) ( -3200 -2192 576 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +( -3256 -2496 576 ) ( -3224 -2496 576 ) ( -3224 -2496 368 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +( -3232 -2240 576 ) ( -3200 -2240 544 ) ( -3216 -2192 560 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +( -3232 -2432 544 ) ( -3208 -2432 544 ) ( -3220 -2432 576 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +( -3224 -2448 544 ) ( -3224 -2432 544 ) ( -3224 -2440 576 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +( -3208 -2432 544 ) ( -3208 -2440 544 ) ( -3208 -2436 576 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +} +// brush 3572 +{ +( -3232 -2240 576 ) ( -3232 -2192 576 ) ( -3200 -2192 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3256 -2496 576 ) ( -3224 -2496 576 ) ( -3224 -2496 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3200 -2240 576 ) ( -3200 -2192 576 ) ( -3200 -2192 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3232 -2240 576 ) ( -3200 -2240 544 ) ( -3216 -2192 560 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3232 -2432 544 ) ( -3208 -2432 544 ) ( -3220 -2432 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3208 -2440 544 ) ( -3208 -2432 544 ) ( -3208 -2436 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3573 +{ +( -3232 -1920 576 ) ( -3232 -1872 576 ) ( -3200 -1872 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3256 -2176 576 ) ( -3224 -2176 576 ) ( -3224 -2176 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3200 -1920 576 ) ( -3200 -1872 576 ) ( -3200 -1872 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3232 -1920 576 ) ( -3200 -1920 544 ) ( -3216 -1872 560 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3232 -2112 544 ) ( -3208 -2112 544 ) ( -3220 -2112 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3208 -2120 544 ) ( -3208 -2112 544 ) ( -3208 -2116 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3574 +{ +( -3232 -1920 576 ) ( -3232 -1872 576 ) ( -3200 -1872 576 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +( -3256 -2176 576 ) ( -3224 -2176 576 ) ( -3224 -2176 368 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +( -3232 -1920 576 ) ( -3200 -1920 544 ) ( -3216 -1872 560 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +( -3232 -2112 544 ) ( -3208 -2112 544 ) ( -3220 -2112 576 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +( -3224 -2128 544 ) ( -3224 -2112 544 ) ( -3224 -2120 576 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +( -3208 -2112 544 ) ( -3208 -2120 544 ) ( -3208 -2116 576 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +} +// brush 3575 +{ +( -3232 -1920 576 ) ( -3232 -1872 576 ) ( -3200 -1872 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3256 -2176 576 ) ( -3224 -2176 576 ) ( -3224 -2176 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3232 -1920 576 ) ( -3200 -1920 544 ) ( -3216 -1872 560 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3232 -2112 544 ) ( -3208 -2112 544 ) ( -3220 -2112 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3224 -2112 544 ) ( -3224 -2128 544 ) ( -3224 -2120 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3576 +{ +( -3232 -1920 576 ) ( -3232 -1872 576 ) ( -3200 -1872 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3200 -1920 576 ) ( -3200 -1872 576 ) ( -3200 -1872 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3200 -1856 576 ) ( -3232 -1856 576 ) ( -3232 -1856 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3232 -1920 576 ) ( -3200 -1920 544 ) ( -3216 -1872 560 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3208 -2112 544 ) ( -3232 -2112 544 ) ( -3220 -2112 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3577 +{ +( -3232 -1600 576 ) ( -3232 -1552 576 ) ( -3200 -1552 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3200 -1600 576 ) ( -3200 -1552 576 ) ( -3200 -1552 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3200 -1536 576 ) ( -3232 -1536 576 ) ( -3232 -1536 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3232 -1600 576 ) ( -3200 -1600 544 ) ( -3216 -1552 560 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3208 -1792 544 ) ( -3232 -1792 544 ) ( -3220 -1792 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3578 +{ +( -3232 -1600 576 ) ( -3232 -1552 576 ) ( -3200 -1552 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3256 -1856 576 ) ( -3224 -1856 576 ) ( -3224 -1856 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3232 -1600 576 ) ( -3200 -1600 544 ) ( -3216 -1552 560 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3232 -1792 544 ) ( -3208 -1792 544 ) ( -3220 -1792 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3224 -1792 544 ) ( -3224 -1808 544 ) ( -3224 -1800 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3579 +{ +( -3232 -1600 576 ) ( -3232 -1552 576 ) ( -3200 -1552 576 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +( -3256 -1856 576 ) ( -3224 -1856 576 ) ( -3224 -1856 368 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +( -3232 -1600 576 ) ( -3200 -1600 544 ) ( -3216 -1552 560 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +( -3232 -1792 544 ) ( -3208 -1792 544 ) ( -3220 -1792 576 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +( -3224 -1808 544 ) ( -3224 -1792 544 ) ( -3224 -1800 576 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +( -3208 -1792 544 ) ( -3208 -1800 544 ) ( -3208 -1796 576 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +} +// brush 3580 +{ +( -3232 -1600 576 ) ( -3232 -1552 576 ) ( -3200 -1552 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3256 -1856 576 ) ( -3224 -1856 576 ) ( -3224 -1856 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3200 -1600 576 ) ( -3200 -1552 576 ) ( -3200 -1552 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3232 -1600 576 ) ( -3200 -1600 544 ) ( -3216 -1552 560 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3232 -1792 544 ) ( -3208 -1792 544 ) ( -3220 -1792 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3208 -1800 544 ) ( -3208 -1792 544 ) ( -3208 -1796 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3581 +{ +( -3232 -1280 576 ) ( -3232 -1232 576 ) ( -3200 -1232 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3256 -1536 576 ) ( -3224 -1536 576 ) ( -3224 -1536 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3200 -1280 576 ) ( -3200 -1232 576 ) ( -3200 -1232 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3232 -1280 576 ) ( -3200 -1280 544 ) ( -3216 -1232 560 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3232 -1472 544 ) ( -3208 -1472 544 ) ( -3220 -1472 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3208 -1480 544 ) ( -3208 -1472 544 ) ( -3208 -1476 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3582 +{ +( -3232 -1280 576 ) ( -3232 -1232 576 ) ( -3200 -1232 576 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +( -3256 -1536 576 ) ( -3224 -1536 576 ) ( -3224 -1536 368 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +( -3232 -1280 576 ) ( -3200 -1280 544 ) ( -3216 -1232 560 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +( -3232 -1472 544 ) ( -3208 -1472 544 ) ( -3220 -1472 576 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +( -3224 -1488 544 ) ( -3224 -1472 544 ) ( -3224 -1480 576 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +( -3208 -1472 544 ) ( -3208 -1480 544 ) ( -3208 -1476 576 ) common/li_pv_v5a 0 8 90 1 1 0 1 7000 +} +// brush 3583 +{ +( -3232 -1280 576 ) ( -3232 -1232 576 ) ( -3200 -1232 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3256 -1536 576 ) ( -3224 -1536 576 ) ( -3224 -1536 368 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3232 -1280 576 ) ( -3200 -1280 544 ) ( -3216 -1232 560 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3232 -1472 544 ) ( -3208 -1472 544 ) ( -3220 -1472 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3224 -1472 544 ) ( -3224 -1488 544 ) ( -3224 -1480 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3584 +{ +( -3456 -2560 384 ) ( -3456 -2648 384 ) ( -3424 -2648 384 ) bricks/c_sr_mb1b 16 -16 0 1 1 0 0 0 +( -3424 -2648 416 ) ( -3456 -2648 416 ) ( -3456 -2560 416 ) bricks/c_sr_mb1 0 -48 90 1 1 0 0 0 +( -3424 -2560 384 ) ( -3424 -2560 416 ) ( -3456 -2560 416 ) bricks/c_sr_mb1b 16 -16 0 1 1 0 0 0 +( -3424 -2560 384 ) ( -3432 -2608 384 ) ( -3432 -2608 416 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +( -3456 -2656 416 ) ( -3448 -2656 416 ) ( -3448 -2656 384 ) bricks/c_sr_mb1b 16 -16 0 1 1 0 0 0 +( -3456 -2560 384 ) ( -3456 -2560 416 ) ( -3456 -2648 416 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +( -3448 -2656 416 ) ( -3432 -2608 416 ) ( -3432 -2608 384 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +( -3455 -2654 416 ) ( -3454 -2656 384 ) ( -3456 -2652 384 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +( -3448 -2653 416 ) ( -3446 -2650 384 ) ( -3450 -2656 384 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +} +// brush 3585 +{ +( -3424 -1320 384 ) ( -3456 -1320 384 ) ( -3456 -1408 384 ) bricks/c_sr_mb1b 16 -16 0 1 1 0 0 0 +( -3456 -1408 416 ) ( -3456 -1320 416 ) ( -3424 -1320 416 ) bricks/c_sr_mb1 0 -48 90 1 1 0 0 0 +( -3456 -1408 416 ) ( -3424 -1408 416 ) ( -3424 -1408 384 ) bricks/c_sr_mb1b 16 -16 0 1 1 0 0 0 +( -3432 -1360 416 ) ( -3432 -1360 384 ) ( -3424 -1408 384 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +( -3448 -1312 384 ) ( -3448 -1312 416 ) ( -3456 -1312 416 ) bricks/c_sr_mb1b 16 -16 0 1 1 0 0 0 +( -3456 -1320 416 ) ( -3456 -1408 416 ) ( -3456 -1408 384 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +( -3432 -1360 384 ) ( -3432 -1360 416 ) ( -3448 -1312 416 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +( -3456 -1316 384 ) ( -3454 -1312 384 ) ( -3455 -1314 416 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +( -3450 -1312 384 ) ( -3446 -1318 384 ) ( -3448 -1315 416 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +} +// brush 3586 +{ +( -3456 -1280 384 ) ( -3472 -1280 384 ) ( -3472 -1560 384 ) bricks/c_sr_mb1b 16 -16 0 1 1 0 0 0 +( -3472 -1560 416 ) ( -3472 -1280 416 ) ( -3456 -1280 416 ) bricks/c_sr_mb1 0 -48 90 1 1 0 0 0 +( -3488 -2560 592 ) ( -3472 -2560 592 ) ( -3472 -2560 384 ) bricks/c_sr_mb1b 16 -16 0 1 1 0 0 0 +( -3424 -1960 592 ) ( -3424 -1680 592 ) ( -3424 -1680 384 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +( -3456 -1280 592 ) ( -3456 -1560 592 ) ( -3456 -1560 384 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +( -3456 -1408 384 ) ( -3408 -1408 384 ) ( -3432 -1408 432 ) bricks/c_sr_mb1b 16 -16 0 1 1 0 0 0 +} +// brush 3587 +{ +( -3472 -2408 368 ) ( -3472 -2688 368 ) ( -3456 -2688 368 ) bricks/c_sr_mb1b 16 -16 0 1 1 0 0 0 +( -3464 -2688 384 ) ( -3472 -2672 384 ) ( -3472 -2560 384 ) bricks/c_sr_mb1a 0 -48 90 1 1 0 0 0 +( -3472 -2560 416 ) ( -3472 -2608 416 ) ( -3472 -2608 368 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +( -3416 -2608 368 ) ( -3448 -2688 368 ) ( -3448 -2688 416 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +( -3412 -2584 416 ) ( -3408 -2560 368 ) ( -3416 -2608 368 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +( -3432 -2560 416 ) ( -3456 -2560 368 ) ( -3408 -2560 368 ) bricks/c_sr_mb1b 16 -16 0 1 1 0 0 0 +( -3472 -2608 416 ) ( -3469 -2666 416 ) ( -3469 -2666 368 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +( -3456 -2684 368 ) ( -3468 -2676 368 ) ( -3468 -2676 416 ) bricks/c_sr_mb1b 16 -16 0 1 1 0 0 0 +( -3444 -2676 368 ) ( -3456 -2684 368 ) ( -3456 -2684 416 ) bricks/c_sr_mb1b 16 -16 0 1 1 0 0 0 +( -3465 -2678 368 ) ( -3469 -2666 368 ) ( -3469 -2666 416 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +} +// brush 3588 +{ +( -3456 -1280 368 ) ( -3472 -1280 368 ) ( -3472 -1560 368 ) bricks/c_sr_mb1b 16 -16 0 1 1 0 0 0 +( -3472 -1408 384 ) ( -3472 -1296 384 ) ( -3464 -1280 384 ) bricks/c_sr_mb1a 0 -48 90 1 1 0 0 0 +( -3472 -1360 368 ) ( -3472 -1360 416 ) ( -3472 -1408 416 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +( -3448 -1280 416 ) ( -3448 -1280 368 ) ( -3416 -1360 368 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +( -3416 -1360 368 ) ( -3408 -1408 368 ) ( -3412 -1384 416 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +( -3408 -1408 368 ) ( -3456 -1408 368 ) ( -3432 -1408 416 ) bricks/c_sr_mb1b 16 -16 0 1 1 0 0 0 +( -3469 -1302 368 ) ( -3469 -1302 416 ) ( -3472 -1360 416 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +( -3468 -1292 416 ) ( -3468 -1292 368 ) ( -3456 -1284 368 ) bricks/c_sr_mb1b 16 -16 0 1 1 0 0 0 +( -3456 -1284 416 ) ( -3456 -1284 368 ) ( -3444 -1292 368 ) bricks/c_sr_mb1b 16 -16 0 1 1 0 0 0 +( -3469 -1302 416 ) ( -3469 -1302 368 ) ( -3465 -1290 368 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +} +// brush 3589 +{ +( -3456 -1280 368 ) ( -3472 -1280 368 ) ( -3472 -1560 368 ) bricks/c_sr_mb1b 16 -16 0 1 1 0 0 0 +( -3472 -1560 384 ) ( -3472 -1280 384 ) ( -3456 -1280 384 ) bricks/c_sr_mb1a 0 -48 90 1 1 0 0 0 +( -3488 -2560 576 ) ( -3472 -2560 576 ) ( -3472 -2560 368 ) bricks/c_sr_mb1b 16 -16 0 1 1 0 0 0 +( -3408 -1960 576 ) ( -3408 -1680 576 ) ( -3408 -1680 368 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +( -3472 -1280 576 ) ( -3472 -1560 576 ) ( -3472 -1560 368 ) bricks/c_sr_mb1b 0 -16 0 1 1 0 0 0 +( -3456 -1408 368 ) ( -3408 -1408 368 ) ( -3432 -1408 416 ) bricks/c_sr_mb1b 16 -16 0 1 1 0 0 0 +} +// brush 3590 +{ +( -3840 -3176 576 ) ( -3840 -3072 576 ) ( -3808 -3072 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -3072 576 ) ( -3840 -3072 576 ) ( -3840 -3072 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -3072 576 ) ( -3840 -3176 576 ) ( -3840 -3176 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -3176 544 ) ( -3808 -3176 576 ) ( -3824 -3072 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -3136 544 ) ( -3840 -3136 544 ) ( -3824 -3136 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3832 -3072 544 ) ( -3832 -3088 544 ) ( -3832 -3080 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3591 +{ +( -3840 -3176 576 ) ( -3840 -3072 576 ) ( -3808 -3072 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -3072 576 ) ( -3840 -3072 576 ) ( -3840 -3072 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -3176 544 ) ( -3808 -3176 576 ) ( -3824 -3072 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -3136 544 ) ( -3840 -3136 544 ) ( -3824 -3136 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3816 -3136 552 ) ( -3816 -3120 552 ) ( -3816 -3128 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3592 +{ +( -3840 -3176 576 ) ( -3840 -3072 576 ) ( -3808 -3072 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3808 -3072 576 ) ( -3840 -3072 576 ) ( -3840 -3072 536 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3840 -3176 544 ) ( -3808 -3176 576 ) ( -3824 -3072 560 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3808 -3136 544 ) ( -3840 -3136 544 ) ( -3824 -3136 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3832 -3088 544 ) ( -3832 -3072 544 ) ( -3832 -3080 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3816 -3120 552 ) ( -3816 -3136 552 ) ( -3816 -3128 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3593 +{ +( -3840 -2856 576 ) ( -3840 -2752 576 ) ( -3808 -2752 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3808 -2752 576 ) ( -3840 -2752 576 ) ( -3840 -2752 536 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3840 -2856 544 ) ( -3808 -2856 576 ) ( -3824 -2752 560 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3808 -2816 544 ) ( -3840 -2816 544 ) ( -3824 -2816 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3832 -2768 544 ) ( -3832 -2752 544 ) ( -3832 -2760 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3816 -2800 552 ) ( -3816 -2816 552 ) ( -3816 -2808 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3594 +{ +( -3840 -2856 576 ) ( -3840 -2752 576 ) ( -3808 -2752 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -2752 576 ) ( -3840 -2752 576 ) ( -3840 -2752 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -2856 544 ) ( -3808 -2856 576 ) ( -3824 -2752 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -2816 544 ) ( -3840 -2816 544 ) ( -3824 -2816 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3816 -2816 552 ) ( -3816 -2800 552 ) ( -3816 -2808 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3595 +{ +( -3840 -2856 576 ) ( -3840 -2752 576 ) ( -3808 -2752 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -2752 576 ) ( -3840 -2752 576 ) ( -3840 -2752 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -2752 576 ) ( -3840 -2856 576 ) ( -3840 -2856 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -2856 544 ) ( -3808 -2856 576 ) ( -3824 -2752 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -2816 544 ) ( -3840 -2816 544 ) ( -3824 -2816 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3832 -2752 544 ) ( -3832 -2768 544 ) ( -3832 -2760 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3596 +{ +( -3840 -2856 576 ) ( -3840 -2752 576 ) ( -3808 -2752 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -3072 576 ) ( -3808 -3072 576 ) ( -3808 -3072 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -2752 576 ) ( -3840 -2856 576 ) ( -3840 -2856 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -2856 544 ) ( -3808 -2856 576 ) ( -3824 -2752 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -2816 544 ) ( -3808 -2816 544 ) ( -3824 -2816 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3597 +{ +( -3840 -2536 576 ) ( -3840 -2432 576 ) ( -3808 -2432 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -2752 576 ) ( -3808 -2752 576 ) ( -3808 -2752 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -2432 576 ) ( -3840 -2536 576 ) ( -3840 -2536 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -2536 544 ) ( -3808 -2536 576 ) ( -3824 -2432 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -2496 544 ) ( -3808 -2496 544 ) ( -3824 -2496 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3598 +{ +( -3840 -2536 576 ) ( -3840 -2432 576 ) ( -3808 -2432 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -2432 576 ) ( -3840 -2432 576 ) ( -3840 -2432 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -2432 576 ) ( -3840 -2536 576 ) ( -3840 -2536 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -2536 544 ) ( -3808 -2536 576 ) ( -3824 -2432 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -2496 544 ) ( -3840 -2496 544 ) ( -3824 -2496 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3832 -2432 544 ) ( -3832 -2448 544 ) ( -3832 -2440 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3599 +{ +( -3840 -2536 576 ) ( -3840 -2432 576 ) ( -3808 -2432 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -2432 576 ) ( -3840 -2432 576 ) ( -3840 -2432 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -2536 544 ) ( -3808 -2536 576 ) ( -3824 -2432 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -2496 544 ) ( -3840 -2496 544 ) ( -3824 -2496 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3816 -2496 552 ) ( -3816 -2480 552 ) ( -3816 -2488 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3600 +{ +( -3840 -2536 576 ) ( -3840 -2432 576 ) ( -3808 -2432 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3808 -2432 576 ) ( -3840 -2432 576 ) ( -3840 -2432 536 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3840 -2536 544 ) ( -3808 -2536 576 ) ( -3824 -2432 560 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3808 -2496 544 ) ( -3840 -2496 544 ) ( -3824 -2496 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3832 -2448 544 ) ( -3832 -2432 544 ) ( -3832 -2440 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3816 -2480 552 ) ( -3816 -2496 552 ) ( -3816 -2488 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3601 +{ +( -3840 -2216 576 ) ( -3840 -2112 576 ) ( -3808 -2112 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3808 -2112 576 ) ( -3840 -2112 576 ) ( -3840 -2112 536 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3840 -2216 544 ) ( -3808 -2216 576 ) ( -3824 -2112 560 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3808 -2176 544 ) ( -3840 -2176 544 ) ( -3824 -2176 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3832 -2128 544 ) ( -3832 -2112 544 ) ( -3832 -2120 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3816 -2160 552 ) ( -3816 -2176 552 ) ( -3816 -2168 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3602 +{ +( -3840 -2216 576 ) ( -3840 -2112 576 ) ( -3808 -2112 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -2112 576 ) ( -3840 -2112 576 ) ( -3840 -2112 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -2216 544 ) ( -3808 -2216 576 ) ( -3824 -2112 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -2176 544 ) ( -3840 -2176 544 ) ( -3824 -2176 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3816 -2176 552 ) ( -3816 -2160 552 ) ( -3816 -2168 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3603 +{ +( -3840 -2216 576 ) ( -3840 -2112 576 ) ( -3808 -2112 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -2112 576 ) ( -3840 -2112 576 ) ( -3840 -2112 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -2112 576 ) ( -3840 -2216 576 ) ( -3840 -2216 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -2216 544 ) ( -3808 -2216 576 ) ( -3824 -2112 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -2176 544 ) ( -3840 -2176 544 ) ( -3824 -2176 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3832 -2112 544 ) ( -3832 -2128 544 ) ( -3832 -2120 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3604 +{ +( -3840 -2216 576 ) ( -3840 -2112 576 ) ( -3808 -2112 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -2432 576 ) ( -3808 -2432 576 ) ( -3808 -2432 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -2112 576 ) ( -3840 -2216 576 ) ( -3840 -2216 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -2216 544 ) ( -3808 -2216 576 ) ( -3824 -2112 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -2176 544 ) ( -3808 -2176 544 ) ( -3824 -2176 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3605 +{ +( -3840 -1896 576 ) ( -3840 -1792 576 ) ( -3808 -1792 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -2112 576 ) ( -3808 -2112 576 ) ( -3808 -2112 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -1792 576 ) ( -3840 -1896 576 ) ( -3840 -1896 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -1896 544 ) ( -3808 -1896 576 ) ( -3824 -1792 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -1856 544 ) ( -3808 -1856 544 ) ( -3824 -1856 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3606 +{ +( -3840 -1896 576 ) ( -3840 -1792 576 ) ( -3808 -1792 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -1792 576 ) ( -3840 -1792 576 ) ( -3840 -1792 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -1792 576 ) ( -3840 -1896 576 ) ( -3840 -1896 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -1896 544 ) ( -3808 -1896 576 ) ( -3824 -1792 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -1856 544 ) ( -3840 -1856 544 ) ( -3824 -1856 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3832 -1792 544 ) ( -3832 -1808 544 ) ( -3832 -1800 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3607 +{ +( -3840 -1896 576 ) ( -3840 -1792 576 ) ( -3808 -1792 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -1792 576 ) ( -3840 -1792 576 ) ( -3840 -1792 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -1896 544 ) ( -3808 -1896 576 ) ( -3824 -1792 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -1856 544 ) ( -3840 -1856 544 ) ( -3824 -1856 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3816 -1856 552 ) ( -3816 -1840 552 ) ( -3816 -1848 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3608 +{ +( -3840 -1896 576 ) ( -3840 -1792 576 ) ( -3808 -1792 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3808 -1792 576 ) ( -3840 -1792 576 ) ( -3840 -1792 536 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3840 -1896 544 ) ( -3808 -1896 576 ) ( -3824 -1792 560 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3808 -1856 544 ) ( -3840 -1856 544 ) ( -3824 -1856 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3832 -1808 544 ) ( -3832 -1792 544 ) ( -3832 -1800 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3816 -1840 552 ) ( -3816 -1856 552 ) ( -3816 -1848 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3609 +{ +( -3840 -1576 576 ) ( -3840 -1472 576 ) ( -3808 -1472 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3808 -1472 576 ) ( -3840 -1472 576 ) ( -3840 -1472 536 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3840 -1576 544 ) ( -3808 -1576 576 ) ( -3824 -1472 560 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3808 -1536 544 ) ( -3840 -1536 544 ) ( -3824 -1536 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3832 -1488 544 ) ( -3832 -1472 544 ) ( -3832 -1480 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3816 -1520 552 ) ( -3816 -1536 552 ) ( -3816 -1528 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3610 +{ +( -3840 -1576 576 ) ( -3840 -1472 576 ) ( -3808 -1472 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -1472 576 ) ( -3840 -1472 576 ) ( -3840 -1472 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -1576 544 ) ( -3808 -1576 576 ) ( -3824 -1472 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -1536 544 ) ( -3840 -1536 544 ) ( -3824 -1536 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3816 -1536 552 ) ( -3816 -1520 552 ) ( -3816 -1528 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3611 +{ +( -3840 -1576 576 ) ( -3840 -1472 576 ) ( -3808 -1472 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -1472 576 ) ( -3840 -1472 576 ) ( -3840 -1472 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -1472 576 ) ( -3840 -1576 576 ) ( -3840 -1576 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -1576 544 ) ( -3808 -1576 576 ) ( -3824 -1472 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -1536 544 ) ( -3840 -1536 544 ) ( -3824 -1536 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3832 -1472 544 ) ( -3832 -1488 544 ) ( -3832 -1480 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3612 +{ +( -3840 -1576 576 ) ( -3840 -1472 576 ) ( -3808 -1472 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -1792 576 ) ( -3808 -1792 576 ) ( -3808 -1792 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -1472 576 ) ( -3840 -1576 576 ) ( -3840 -1576 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -1576 544 ) ( -3808 -1576 576 ) ( -3824 -1472 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -1536 544 ) ( -3808 -1536 544 ) ( -3824 -1536 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3613 +{ +( -3840 -1256 576 ) ( -3840 -1152 576 ) ( -3808 -1152 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -1472 576 ) ( -3808 -1472 576 ) ( -3808 -1472 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -1152 576 ) ( -3840 -1256 576 ) ( -3840 -1256 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -1256 544 ) ( -3808 -1256 576 ) ( -3824 -1152 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -1216 544 ) ( -3808 -1216 544 ) ( -3824 -1216 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3614 +{ +( -3840 -1256 576 ) ( -3840 -1152 576 ) ( -3808 -1152 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -1152 576 ) ( -3840 -1152 576 ) ( -3840 -1152 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -1152 576 ) ( -3840 -1256 576 ) ( -3840 -1256 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -1256 544 ) ( -3808 -1256 576 ) ( -3824 -1152 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -1216 544 ) ( -3840 -1216 544 ) ( -3824 -1216 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3832 -1152 544 ) ( -3832 -1168 544 ) ( -3832 -1160 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3615 +{ +( -3840 -1256 576 ) ( -3840 -1152 576 ) ( -3808 -1152 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -1152 576 ) ( -3840 -1152 576 ) ( -3840 -1152 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -1256 544 ) ( -3808 -1256 576 ) ( -3824 -1152 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -1216 544 ) ( -3840 -1216 544 ) ( -3824 -1216 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3816 -1216 552 ) ( -3816 -1200 552 ) ( -3816 -1208 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3616 +{ +( -3840 -1256 576 ) ( -3840 -1152 576 ) ( -3808 -1152 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3808 -1152 576 ) ( -3840 -1152 576 ) ( -3840 -1152 536 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3840 -1256 544 ) ( -3808 -1256 576 ) ( -3824 -1152 560 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3808 -1216 544 ) ( -3840 -1216 544 ) ( -3824 -1216 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3832 -1168 544 ) ( -3832 -1152 544 ) ( -3832 -1160 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3816 -1200 552 ) ( -3816 -1216 552 ) ( -3816 -1208 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3617 +{ +( -3840 -936 576 ) ( -3840 -832 576 ) ( -3808 -832 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3808 -832 576 ) ( -3840 -832 576 ) ( -3840 -832 536 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3840 -936 544 ) ( -3808 -936 576 ) ( -3824 -832 560 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3808 -896 544 ) ( -3840 -896 544 ) ( -3824 -896 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3832 -848 544 ) ( -3832 -832 544 ) ( -3832 -840 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -3816 -880 552 ) ( -3816 -896 552 ) ( -3816 -888 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3618 +{ +( -3840 -936 576 ) ( -3840 -832 576 ) ( -3808 -832 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -832 576 ) ( -3840 -832 576 ) ( -3840 -832 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -936 544 ) ( -3808 -936 576 ) ( -3824 -832 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -896 544 ) ( -3840 -896 544 ) ( -3824 -896 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3816 -896 552 ) ( -3816 -880 552 ) ( -3816 -888 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3619 +{ +( -3840 -936 576 ) ( -3840 -832 576 ) ( -3808 -832 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -832 576 ) ( -3840 -832 576 ) ( -3840 -832 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -832 576 ) ( -3840 -936 576 ) ( -3840 -936 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -936 544 ) ( -3808 -936 576 ) ( -3824 -832 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -896 544 ) ( -3840 -896 544 ) ( -3824 -896 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3832 -832 544 ) ( -3832 -848 544 ) ( -3832 -840 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3620 +{ +( -3840 -936 576 ) ( -3840 -832 576 ) ( -3808 -832 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -1152 576 ) ( -3808 -1152 576 ) ( -3808 -1152 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -832 576 ) ( -3840 -936 576 ) ( -3840 -936 536 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -936 544 ) ( -3808 -936 576 ) ( -3824 -832 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -896 544 ) ( -3808 -896 544 ) ( -3824 -896 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3621 +{ +( -3472 -2984 368 ) ( -3472 -3080 368 ) ( -3416 -3080 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3416 -3080 384 ) ( -3472 -3080 384 ) ( -3472 -2984 384 ) bricks/c_sr_mr5 0 7 69 1 1 0 0 0 +( -3416 -2984 384 ) ( -3432 -2976 384 ) ( -3432 -2976 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3416 -2984 368 ) ( -3456 -3080 368 ) ( -3456 -3080 384 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3472 -3080 384 ) ( -3456 -3080 384 ) ( -3456 -3080 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3472 -3080 368 ) ( -3432 -2976 368 ) ( -3432 -2976 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3622 +{ +( -3416 -2896 368 ) ( -3416 -2984 368 ) ( -3360 -2984 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3360 -2984 384 ) ( -3416 -2984 384 ) ( -3416 -2896 384 ) bricks/c_sr_mr5 0 4 42 1 1 0 0 0 +( -3416 -2984 384 ) ( -3240 -2824 384 ) ( -3240 -2824 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3432 -2976 384 ) ( -3416 -2984 384 ) ( -3416 -2984 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3432 -2976 368 ) ( -3256 -2816 368 ) ( -3256 -2816 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -3240 -2824 384 ) ( -3256 -2816 384 ) ( -3256 -2816 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 3623 +{ +( -3256 -2736 368 ) ( -3256 -2816 368 ) ( -3200 -2816 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3200 -2816 384 ) ( -3256 -2816 384 ) ( -3256 -2736 384 ) bricks/c_sr_mr5 0 -11 67 1 1 0 0 0 +( -3200 -2736 384 ) ( -3216 -2736 384 ) ( -3216 -2736 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3200 -2736 368 ) ( -3240 -2824 368 ) ( -3240 -2824 384 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3240 -2824 368 ) ( -3256 -2816 368 ) ( -3256 -2816 384 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3216 -2736 384 ) ( -3256 -2816 384 ) ( -3256 -2816 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3624 +{ +( -3200 -1232 368 ) ( -3216 -1232 368 ) ( -3216 -1376 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3216 -1376 384 ) ( -3216 -1232 384 ) ( -3200 -1232 384 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -3232 -2736 384 ) ( -3216 -2736 384 ) ( -3216 -2736 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3200 -2088 384 ) ( -3200 -1944 384 ) ( -3200 -1944 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3200 -1232 384 ) ( -3216 -1232 384 ) ( -3216 -1232 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3216 -1232 384 ) ( -3216 -1376 384 ) ( -3216 -1376 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3625 +{ +( -3200 -1152 368 ) ( -3256 -1152 368 ) ( -3256 -1232 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3256 -1232 384 ) ( -3256 -1152 384 ) ( -3200 -1152 384 ) bricks/c_sr_mr5 0 -38 115 1 1 0 0 0 +( -3216 -1232 368 ) ( -3216 -1232 384 ) ( -3200 -1232 384 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3240 -1144 384 ) ( -3240 -1144 368 ) ( -3200 -1232 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3256 -1152 384 ) ( -3256 -1152 368 ) ( -3240 -1144 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3256 -1152 368 ) ( -3256 -1152 384 ) ( -3216 -1232 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3626 +{ +( -3360 -984 368 ) ( -3416 -984 368 ) ( -3416 -1072 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3416 -1072 384 ) ( -3416 -984 384 ) ( -3360 -984 384 ) bricks/c_sr_mr5 0 -25 138 1 1 0 0 0 +( -3240 -1144 368 ) ( -3240 -1144 384 ) ( -3416 -984 384 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3416 -984 368 ) ( -3416 -984 384 ) ( -3432 -992 384 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3256 -1152 384 ) ( -3256 -1152 368 ) ( -3432 -992 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -3256 -1152 368 ) ( -3256 -1152 384 ) ( -3240 -1144 384 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 3627 +{ +( -3416 -888 368 ) ( -3472 -888 368 ) ( -3472 -984 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3472 -984 384 ) ( -3472 -888 384 ) ( -3416 -888 384 ) bricks/c_sr_mr5 0 15 112 1 1 0 0 0 +( -3432 -992 368 ) ( -3432 -992 384 ) ( -3416 -984 384 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3456 -888 384 ) ( -3456 -888 368 ) ( -3416 -984 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3456 -888 368 ) ( -3456 -888 384 ) ( -3472 -888 384 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3432 -992 384 ) ( -3432 -992 368 ) ( -3472 -888 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3628 +{ +( -3392 -1088 352 ) ( -3448 -1088 352 ) ( -3448 -1168 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3448 -1168 368 ) ( -3448 -1088 368 ) ( -3392 -1088 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3184 -1160 368 ) ( -3184 -1080 368 ) ( -3184 -1080 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3360 -920 368 ) ( -3416 -920 368 ) ( -3416 -920 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3440 -1088 368 ) ( -3440 -1168 368 ) ( -3440 -1168 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3408 -3048 352 ) ( -3448 -3048 352 ) ( -3428 -3048 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3224 -2832 352 ) ( -3400 -2992 352 ) ( -3312 -2912 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3184 -2736 352 ) ( -3224 -2832 352 ) ( -3204 -2784 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3400 -976 352 ) ( -3224 -1136 352 ) ( -3312 -1056 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3224 -1136 352 ) ( -3184 -1232 352 ) ( -3204 -1184 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3629 +{ +( -3456 -2984 368 ) ( -3456 -3080 368 ) ( -3432 -3080 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3432 -3080 576 ) ( -3456 -3080 576 ) ( -3456 -2984 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3416 -2984 368 ) ( -3400 -2992 368 ) ( -3400 -2992 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3440 -3080 576 ) ( -3400 -2992 576 ) ( -3400 -2992 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3456 -3080 368 ) ( -3456 -3080 576 ) ( -3432 -3080 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3456 -3080 368 ) ( -3416 -2984 368 ) ( -3416 -2984 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3630 +{ +( -3408 -2904 368 ) ( -3408 -2984 368 ) ( -3328 -2984 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3328 -2984 576 ) ( -3408 -2984 576 ) ( -3408 -2904 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3240 -2824 368 ) ( -3224 -2832 368 ) ( -3224 -2832 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3400 -2992 576 ) ( -3224 -2832 576 ) ( -3224 -2832 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3416 -2984 576 ) ( -3400 -2992 576 ) ( -3400 -2992 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3416 -2984 368 ) ( -3240 -2824 368 ) ( -3240 -2824 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3631 +{ +( -3240 -2736 368 ) ( -3240 -2832 368 ) ( -3184 -2832 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3184 -2832 576 ) ( -3240 -2832 576 ) ( -3240 -2736 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3184 -2736 576 ) ( -3200 -2736 576 ) ( -3200 -2736 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3184 -2736 368 ) ( -3224 -2832 368 ) ( -3224 -2832 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3224 -2832 368 ) ( -3240 -2824 368 ) ( -3240 -2824 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3200 -2736 576 ) ( -3240 -2824 576 ) ( -3240 -2824 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3632 +{ +( -3184 -1136 368 ) ( -3240 -1136 368 ) ( -3240 -1232 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3240 -1232 576 ) ( -3240 -1136 576 ) ( -3184 -1136 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3200 -1232 368 ) ( -3200 -1232 576 ) ( -3184 -1232 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3224 -1136 576 ) ( -3224 -1136 368 ) ( -3184 -1232 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3240 -1144 576 ) ( -3240 -1144 368 ) ( -3224 -1136 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3240 -1144 368 ) ( -3240 -1144 576 ) ( -3200 -1232 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3633 +{ +( -3184 -1232 368 ) ( -3200 -1232 368 ) ( -3200 -1344 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3200 -1344 576 ) ( -3200 -1232 576 ) ( -3184 -1232 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3224 -2736 576 ) ( -3208 -2736 576 ) ( -3208 -2736 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3184 -1344 576 ) ( -3184 -1232 576 ) ( -3184 -1232 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3184 -1232 576 ) ( -3200 -1232 576 ) ( -3200 -1232 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3200 -1232 576 ) ( -3200 -1344 576 ) ( -3200 -1344 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3634 +{ +( -3328 -984 368 ) ( -3408 -984 368 ) ( -3408 -1064 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3408 -1064 576 ) ( -3408 -984 576 ) ( -3328 -984 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3224 -1136 576 ) ( -3224 -1136 368 ) ( -3240 -1144 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3224 -1136 368 ) ( -3224 -1136 576 ) ( -3400 -976 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3400 -976 368 ) ( -3400 -976 576 ) ( -3416 -984 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3240 -1144 576 ) ( -3240 -1144 368 ) ( -3416 -984 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3635 +{ +( -3432 -888 368 ) ( -3456 -888 368 ) ( -3456 -984 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3456 -984 576 ) ( -3456 -888 576 ) ( -3432 -888 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3400 -976 576 ) ( -3400 -976 368 ) ( -3416 -984 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3400 -976 368 ) ( -3400 -976 576 ) ( -3440 -888 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3432 -888 576 ) ( -3456 -888 576 ) ( -3456 -888 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3416 -984 576 ) ( -3416 -984 368 ) ( -3456 -888 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3636 +{ +( -3148 -3904 352 ) ( -3148 -3904 368 ) ( -3072 -3904 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3304 -3872 352 ) ( -3304 -3872 368 ) ( -3148 -3904 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3436 -3816 352 ) ( -3436 -3816 368 ) ( -3304 -3872 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3560 -3736 352 ) ( -3560 -3736 368 ) ( -3436 -3816 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3672 -3624 352 ) ( -3672 -3624 368 ) ( -3560 -3736 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3752 -3500 352 ) ( -3752 -3500 368 ) ( -3672 -3624 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3808 -3368 352 ) ( -3808 -3368 368 ) ( -3752 -3500 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3808 -3368 368 ) ( -3808 -3368 352 ) ( -3840 -3212 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3840 -3212 368 ) ( -3840 -3212 352 ) ( -3840 -3136 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2304 -2368 352 ) ( -3840 -2368 352 ) ( -3840 -3904 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3840 -3904 368 ) ( -3840 -2368 368 ) ( -2304 -2368 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3072 -3656 304 ) ( -3072 -3712 304 ) ( -3072 -3684 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3736 -3136 304 ) ( -3672 -3136 304 ) ( -3704 -3136 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3456 -3136 352 ) ( -3072 -3520 352 ) ( -3264 -3328 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3637 +{ +( -3115 -3552 576 ) ( -3112 -3520 544 ) ( -3198 -3535 576 ) bricks/c_tn_m1 0 -6 168 1 1 0 0 0 +( -3112 -3520 592 ) ( -3112 -3520 544 ) ( -3115 -3552 576 ) bricks/c_tn_m1 0 -6 168 1 1 0 0 0 +( -3198 -3535 576 ) ( -3112 -3520 544 ) ( -3112 -3520 592 ) bricks/c_tn_m1 0 -6 168 1 1 0 0 0 +( -3112 -3272 576 ) ( -3112 -3296 576 ) ( -3198 -3284 576 ) bricks/c_tn_m1 0 -6 168 1 1 0 0 0 +} +// brush 3638 +{ +( -3112 -3520 544 ) ( -3188 -3504 544 ) ( -3198 -3535 576 ) bricks/c_tn_m1 0 -6 168 1 1 0 0 0 +( -3188 -3504 592 ) ( -3188 -3504 544 ) ( -3112 -3520 544 ) bricks/c_tn_m1 0 -6 168 1 1 0 0 0 +( -3198 -3535 576 ) ( -3188 -3504 544 ) ( -3188 -3504 592 ) bricks/c_tn_m1 0 -6 168 1 1 0 0 0 +( -3112 -3520 544 ) ( -3198 -3535 576 ) ( -3198 -3535 592 ) bricks/c_tn_m1 0 -6 168 1 1 0 0 0 +( -3112 -3272 576 ) ( -3112 -3296 576 ) ( -3198 -3284 576 ) bricks/c_tn_m1 0 -6 168 1 1 0 0 0 +} +// brush 3639 +{ +( -3198 -3535 576 ) ( -3188 -3504 544 ) ( -3267 -3504 576 ) bricks/c_tn_m1 -61 18 156 1 1 0 0 0 +( -3188 -3504 592 ) ( -3188 -3504 544 ) ( -3198 -3535 576 ) bricks/c_tn_m1 -61 18 156 1 1 0 0 0 +( -3267 -3504 576 ) ( -3188 -3504 544 ) ( -3188 -3504 592 ) bricks/c_tn_m1 -61 18 156 1 1 0 0 0 +( -3188 -3272 576 ) ( -3188 -3296 576 ) ( -3267 -3284 576 ) bricks/c_tn_m1 -61 18 156 1 1 0 0 0 +} +// brush 3640 +{ +( -3188 -3504 544 ) ( -3252 -3476 544 ) ( -3267 -3504 576 ) bricks/c_tn_m1 -61 18 156 1 1 0 0 0 +( -3252 -3476 592 ) ( -3252 -3476 544 ) ( -3188 -3504 544 ) bricks/c_tn_m1 -61 18 156 1 1 0 0 0 +( -3267 -3504 576 ) ( -3252 -3476 544 ) ( -3252 -3476 592 ) bricks/c_tn_m1 -61 18 156 1 1 0 0 0 +( -3188 -3504 592 ) ( -3188 -3504 544 ) ( -3267 -3504 576 ) bricks/c_tn_m1 -61 18 156 1 1 0 0 0 +( -3188 -3272 576 ) ( -3188 -3296 576 ) ( -3267 -3284 576 ) bricks/c_tn_m1 -61 18 156 1 1 0 0 0 +} +// brush 3641 +{ +( -3267 -3504 576 ) ( -3252 -3476 544 ) ( -3340 -3457 576 ) bricks/c_tn_m1 0 14 147 1 1 0 0 0 +( -3252 -3476 592 ) ( -3252 -3476 544 ) ( -3267 -3504 576 ) bricks/c_tn_m1 0 14 147 1 1 0 0 0 +( -3340 -3457 576 ) ( -3252 -3476 544 ) ( -3252 -3476 592 ) bricks/c_tn_m1 0 14 147 1 1 0 0 0 +( -3252 -3272 576 ) ( -3252 -3296 576 ) ( -3340 -3284 576 ) bricks/c_tn_m1 0 14 147 1 1 0 0 0 +} +// brush 3642 +{ +( -3252 -3476 544 ) ( -3320 -3432 544 ) ( -3340 -3457 576 ) bricks/c_tn_m1 0 14 147 1 1 0 0 0 +( -3320 -3432 592 ) ( -3320 -3432 544 ) ( -3252 -3476 544 ) bricks/c_tn_m1 0 14 147 1 1 0 0 0 +( -3340 -3457 576 ) ( -3320 -3432 544 ) ( -3320 -3432 592 ) bricks/c_tn_m1 0 14 147 1 1 0 0 0 +( -3252 -3476 592 ) ( -3252 -3476 544 ) ( -3340 -3457 576 ) bricks/c_tn_m1 0 14 147 1 1 0 0 0 +( -3252 -3272 576 ) ( -3252 -3296 576 ) ( -3340 -3284 576 ) bricks/c_tn_m1 0 14 147 1 1 0 0 0 +} +// brush 3643 +{ +( -3393 -3404 576 ) ( -3368 -3384 544 ) ( -3412 -3316 544 ) bricks/c_tn_m1 169 -4 123 1 1 0 0 0 +( -3412 -3316 544 ) ( -3368 -3384 544 ) ( -3368 -3384 592 ) bricks/c_tn_m1 169 -4 123 1 1 0 0 0 +( -3368 -3384 592 ) ( -3368 -3384 544 ) ( -3393 -3404 576 ) bricks/c_tn_m1 169 -4 123 1 1 0 0 0 +( -3393 -3404 576 ) ( -3412 -3316 544 ) ( -3412 -3316 592 ) bricks/c_tn_m1 169 -4 123 1 1 0 0 0 +( -3368 -3272 576 ) ( -3368 -3296 576 ) ( -3412 -3284 576 ) bricks/c_tn_m1 169 -4 123 1 1 0 0 0 +} +// brush 3644 +{ +( -3393 -3404 576 ) ( -3412 -3316 544 ) ( -3440 -3331 576 ) bricks/c_tn_m1 169 -4 123 1 1 0 0 0 +( -3440 -3331 576 ) ( -3412 -3316 544 ) ( -3412 -3316 592 ) bricks/c_tn_m1 169 -4 123 1 1 0 0 0 +( -3412 -3316 592 ) ( -3412 -3316 544 ) ( -3393 -3404 576 ) bricks/c_tn_m1 169 -4 123 1 1 0 0 0 +( -3393 -3272 576 ) ( -3393 -3296 576 ) ( -3440 -3284 576 ) bricks/c_tn_m1 169 -4 123 1 1 0 0 0 +} +// brush 3645 +{ +( -3440 -3331 576 ) ( -3412 -3316 544 ) ( -3440 -3252 544 ) bricks/c_tn_m1 0 18 114 1 1 0 0 0 +( -3440 -3252 544 ) ( -3412 -3316 544 ) ( -3412 -3316 592 ) bricks/c_tn_m1 0 18 114 1 1 0 0 0 +( -3412 -3316 592 ) ( -3412 -3316 544 ) ( -3440 -3331 576 ) bricks/c_tn_m1 0 18 114 1 1 0 0 0 +( -3440 -3331 576 ) ( -3440 -3252 544 ) ( -3440 -3252 592 ) bricks/c_tn_m1 0 18 114 1 1 0 0 0 +( -3412 -3272 576 ) ( -3412 -3296 576 ) ( -3440 -3284 576 ) bricks/c_tn_m1 0 18 114 1 1 0 0 0 +} +// brush 3646 +{ +( -3440 -3331 576 ) ( -3440 -3252 544 ) ( -3471 -3262 576 ) bricks/c_tn_m1 0 18 114 1 1 0 0 0 +( -3471 -3262 576 ) ( -3440 -3252 544 ) ( -3440 -3252 592 ) bricks/c_tn_m1 0 18 114 1 1 0 0 0 +( -3440 -3252 592 ) ( -3440 -3252 544 ) ( -3440 -3331 576 ) bricks/c_tn_m1 0 18 114 1 1 0 0 0 +( -3440 -3272 576 ) ( -3440 -3296 576 ) ( -3471 -3284 576 ) bricks/c_tn_m1 0 18 114 1 1 0 0 0 +} +// brush 3647 +{ +( -3471 -3262 576 ) ( -3440 -3252 544 ) ( -3456 -3176 544 ) bricks/c_tn_m1 0 -2 101 1 1 0 0 0 +( -3456 -3176 544 ) ( -3440 -3252 544 ) ( -3440 -3252 592 ) bricks/c_tn_m1 0 -2 101 1 1 0 0 0 +( -3440 -3252 592 ) ( -3440 -3252 544 ) ( -3471 -3262 576 ) bricks/c_tn_m1 0 -2 101 1 1 0 0 0 +( -3471 -3262 592 ) ( -3471 -3262 576 ) ( -3456 -3176 544 ) bricks/c_tn_m1 0 -2 101 1 1 0 0 0 +( -3440 -3272 576 ) ( -3440 -3296 576 ) ( -3471 -3284 576 ) bricks/c_tn_m1 0 -2 101 1 1 0 0 0 +} +// brush 3648 +{ +( -3471 -3262 576 ) ( -3456 -3176 544 ) ( -3488 -3179 576 ) bricks/c_tn_m1 0 -2 101 1 1 0 0 0 +( -3488 -3179 576 ) ( -3456 -3176 544 ) ( -3456 -3176 592 ) bricks/c_tn_m1 0 -2 101 1 1 0 0 0 +( -3456 -3176 592 ) ( -3456 -3176 544 ) ( -3471 -3262 576 ) bricks/c_tn_m1 0 -2 101 1 1 0 0 0 +( -3456 -3272 576 ) ( -3456 -3296 576 ) ( -3488 -3284 576 ) bricks/c_tn_m1 0 -2 101 1 1 0 0 0 +} +// brush 3649 +{ +( -3072 -3552 576 ) ( -3115 -3552 576 ) ( -3112 -3520 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -3112 -3520 576 ) ( -3112 -3520 544 ) ( -3072 -3520 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -3112 -3520 544 ) ( -3115 -3552 576 ) ( -3072 -3552 576 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -3072 -3536 576 ) ( -3072 -3520 544 ) ( -3072 -3552 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -3112 -3520 576 ) ( -3115 -3552 576 ) ( -3112 -3520 544 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 3650 +{ +( -3294 -3841 576 ) ( -3148 -3904 544 ) ( -3145 -3872 576 ) bricks/c_tn_m1 -61 7 348 1 1 0 0 0 +( -3145 -3872 576 ) ( -3148 -3904 544 ) ( -3148 -3904 592 ) bricks/c_tn_m1 -61 7 348 1 1 0 0 0 +( -3148 -3904 592 ) ( -3148 -3904 544 ) ( -3294 -3841 576 ) bricks/c_tn_m1 -61 7 348 1 1 0 0 0 +( -3616 -3841 576 ) ( -3560 -3841 576 ) ( -3588 -3904 576 ) bricks/c_tn_m1 -61 7 348 1 1 0 0 0 +} +// brush 3651 +{ +( -3294 -3841 576 ) ( -3304 -3872 544 ) ( -3148 -3904 544 ) bricks/c_tn_m1 -61 7 348 1 1 0 0 0 +( -3304 -3872 592 ) ( -3304 -3872 544 ) ( -3294 -3841 576 ) bricks/c_tn_m1 -61 7 348 1 1 0 0 0 +( -3148 -3904 544 ) ( -3304 -3872 544 ) ( -3304 -3872 592 ) bricks/c_tn_m1 -61 7 348 1 1 0 0 0 +( -3294 -3841 576 ) ( -3148 -3904 544 ) ( -3148 -3904 592 ) bricks/c_tn_m1 -61 7 348 1 1 0 0 0 +( -3616 -3841 576 ) ( -3560 -3841 576 ) ( -3588 -3904 576 ) bricks/c_tn_m1 -61 7 348 1 1 0 0 0 +} +// brush 3652 +{ +( -3420 -3787 576 ) ( -3304 -3872 544 ) ( -3294 -3841 576 ) bricks/c_tn_m1 19 10 337 1 1 0 0 0 +( -3294 -3841 576 ) ( -3304 -3872 544 ) ( -3304 -3872 592 ) bricks/c_tn_m1 19 10 337 1 1 0 0 0 +( -3304 -3872 592 ) ( -3304 -3872 544 ) ( -3420 -3787 576 ) bricks/c_tn_m1 19 10 337 1 1 0 0 0 +( -3616 -3787 576 ) ( -3560 -3787 576 ) ( -3588 -3872 576 ) bricks/c_tn_m1 19 10 337 1 1 0 0 0 +} +// brush 3653 +{ +( -3420 -3787 576 ) ( -3436 -3816 544 ) ( -3304 -3872 544 ) bricks/c_tn_m1 19 10 337 1 1 0 0 0 +( -3436 -3816 592 ) ( -3436 -3816 544 ) ( -3420 -3787 576 ) bricks/c_tn_m1 19 10 337 1 1 0 0 0 +( -3304 -3872 544 ) ( -3436 -3816 544 ) ( -3436 -3816 592 ) bricks/c_tn_m1 19 10 337 1 1 0 0 0 +( -3420 -3787 576 ) ( -3304 -3872 544 ) ( -3304 -3872 592 ) bricks/c_tn_m1 19 10 337 1 1 0 0 0 +( -3616 -3787 576 ) ( -3560 -3787 576 ) ( -3588 -3872 576 ) bricks/c_tn_m1 19 10 337 1 1 0 0 0 +} +// brush 3654 +{ +( -3591 -3756 576 ) ( -3488 -3862 544 ) ( -3472 -3833 576 ) bricks/c_tn_m1 -46 -12 147 1.000017 -1.000084 0 0 0 +( -3472 -3833 576 ) ( -3488 -3862 544 ) ( -3488 -3862 592 ) bricks/c_tn_m1 -73 -23 -146 0.999965 1.000007 0 0 0 +( -3488 -3862 592 ) ( -3488 -3862 544 ) ( -3591 -3756 576 ) bricks/c_tn_m1 -73 -23 -146 0.999965 1.000007 0 0 0 +( -3668 -3756 576 ) ( -3612 -3756 576 ) ( -3640 -3862 576 ) bricks/c_tn_m1 -46 -12 147 1.000017 -1.000084 0 0 0 +} +// brush 3655 +{ +( -3591 -3756 576 ) ( -3612 -3782 544 ) ( -3488 -3862 544 ) bricks/c_tn_m1 -46 -12 147 1.000017 -1.000084 0 0 0 +( -3612 -3782 592 ) ( -3612 -3782 544 ) ( -3591 -3756 576 ) bricks/c_tn_m1 -73 -23 -146 0.999965 1.000007 0 0 0 +( -3488 -3862 544 ) ( -3612 -3782 544 ) ( -3612 -3782 592 ) bricks/c_tn_m1 76 0 -147 1.000067 1.000045 0 0 0 +( -3591 -3756 576 ) ( -3488 -3862 544 ) ( -3488 -3862 592 ) bricks/c_tn_m1 -73 -23 -146 0.999965 1.000007 0 0 0 +( -3668 -3756 576 ) ( -3612 -3756 576 ) ( -3640 -3862 576 ) bricks/c_tn_m1 -46 -12 147 1.000017 -1.000084 0 0 0 +} +// brush 3656 +{ +( -3646 -3603 576 ) ( -3560 -3736 544 ) ( -3539 -3710 576 ) bricks/c_tn_m1 52 -6 315 1 1 0 0 0 +( -3539 -3710 576 ) ( -3560 -3736 544 ) ( -3560 -3736 592 ) bricks/c_tn_m1 52 -6 315 1 1 0 0 0 +( -3560 -3736 592 ) ( -3560 -3736 544 ) ( -3646 -3603 576 ) bricks/c_tn_m1 52 -6 315 1 1 0 0 0 +( -3616 -3603 576 ) ( -3560 -3603 576 ) ( -3588 -3736 576 ) bricks/c_tn_m1 52 -6 315 1 1 0 0 0 +} +// brush 3657 +{ +( -3672 -3624 544 ) ( -3560 -3736 544 ) ( -3646 -3603 576 ) bricks/c_tn_m1 52 -6 315 1 1 0 0 0 +( -3672 -3624 592 ) ( -3672 -3624 544 ) ( -3646 -3603 576 ) bricks/c_tn_m1 52 -6 315 1 1 0 0 0 +( -3560 -3736 592 ) ( -3560 -3736 544 ) ( -3672 -3624 544 ) bricks/c_tn_m1 52 -6 315 1 1 0 0 0 +( -3646 -3603 576 ) ( -3560 -3736 544 ) ( -3560 -3736 592 ) bricks/c_tn_m1 52 -6 315 1 1 0 0 0 +( -3616 -3603 576 ) ( -3560 -3603 576 ) ( -3588 -3736 576 ) bricks/c_tn_m1 52 -6 315 1 1 0 0 0 +} +// brush 3658 +{ +( -3804 -3546 544 ) ( -3724 -3670 544 ) ( -3698 -3649 576 ) bricks/c_tn_m1 -111 1 303 1 1 0 0 0 +( -3698 -3649 576 ) ( -3724 -3670 544 ) ( -3724 -3670 592 ) bricks/c_tn_m1 90 14 303 1 1 0 0 0 +( -3724 -3670 592 ) ( -3724 -3670 544 ) ( -3804 -3546 544 ) bricks/c_tn_m1 157 9 303 1 1 0 0 0 +( -3804 -3546 592 ) ( -3804 -3546 544 ) ( -3698 -3649 576 ) bricks/c_tn_m1 90 14 303 1 1 0 0 0 +( -3668 -3546 576 ) ( -3612 -3546 576 ) ( -3640 -3670 576 ) bricks/c_tn_m1 -111 1 303 1 1 0 0 0 +} +// brush 3659 +{ +( -3775 -3530 576 ) ( -3804 -3546 544 ) ( -3698 -3649 576 ) bricks/c_tn_m1 -111 1 303 1 1 0 0 0 +( -3804 -3546 592 ) ( -3804 -3546 544 ) ( -3775 -3530 576 ) bricks/c_tn_m1 90 14 303 1 1 0 0 0 +( -3698 -3649 576 ) ( -3804 -3546 544 ) ( -3804 -3546 592 ) bricks/c_tn_m1 90 14 303 1 1 0 0 0 +( -3668 -3530 576 ) ( -3612 -3530 576 ) ( -3640 -3649 576 ) bricks/c_tn_m1 -111 1 303 1 1 0 0 0 +} +// brush 3660 +{ +( -3808 -3368 544 ) ( -3752 -3500 544 ) ( -3723 -3484 576 ) bricks/c_tn_m1 0 12 293 1 1 0 0 0 +( -3723 -3484 576 ) ( -3752 -3500 544 ) ( -3752 -3500 592 ) bricks/c_tn_m1 0 12 293 1 1 0 0 0 +( -3752 -3500 592 ) ( -3752 -3500 544 ) ( -3808 -3368 544 ) bricks/c_tn_m1 0 12 293 1 1 0 0 0 +( -3808 -3368 592 ) ( -3808 -3368 544 ) ( -3723 -3484 576 ) bricks/c_tn_m1 0 12 293 1 1 0 0 0 +( -3616 -3368 576 ) ( -3560 -3368 576 ) ( -3588 -3500 576 ) bricks/c_tn_m1 0 12 293 1 1 0 0 0 +} +// brush 3661 +{ +( -3777 -3358 576 ) ( -3808 -3368 544 ) ( -3723 -3484 576 ) bricks/c_tn_m1 0 12 293 1 1 0 0 0 +( -3808 -3368 592 ) ( -3808 -3368 544 ) ( -3777 -3358 576 ) bricks/c_tn_m1 0 12 293 1 1 0 0 0 +( -3723 -3484 576 ) ( -3808 -3368 544 ) ( -3808 -3368 592 ) bricks/c_tn_m1 0 12 293 1 1 0 0 0 +( -3616 -3358 576 ) ( -3560 -3358 576 ) ( -3588 -3484 576 ) bricks/c_tn_m1 0 12 293 1 1 0 0 0 +} +// brush 3662 +{ +( -3840 -3212 544 ) ( -3808 -3368 544 ) ( -3777 -3358 576 ) bricks/c_tn_m1 99 -8 282 1 1 0 0 0 +( -3777 -3358 576 ) ( -3808 -3368 544 ) ( -3808 -3368 592 ) bricks/c_tn_m1 99 -8 282 1 1 0 0 0 +( -3808 -3368 592 ) ( -3808 -3368 544 ) ( -3840 -3212 544 ) bricks/c_tn_m1 99 -8 282 1 1 0 0 0 +( -3840 -3212 592 ) ( -3840 -3212 544 ) ( -3777 -3358 576 ) bricks/c_tn_m1 99 -8 282 1 1 0 0 0 +( -3616 -3212 576 ) ( -3560 -3212 576 ) ( -3588 -3368 576 ) bricks/c_tn_m1 99 -8 282 1 1 0 0 0 +} +// brush 3663 +{ +( -3808 -3209 576 ) ( -3840 -3212 544 ) ( -3777 -3358 576 ) bricks/c_tn_m1 99 -8 282 1 1 0 0 0 +( -3840 -3212 592 ) ( -3840 -3212 544 ) ( -3808 -3209 576 ) bricks/c_tn_m1 99 -8 282 1 1 0 0 0 +( -3777 -3358 576 ) ( -3840 -3212 544 ) ( -3840 -3212 592 ) bricks/c_tn_m1 99 -8 282 1 1 0 0 0 +( -3616 -3209 576 ) ( -3560 -3209 576 ) ( -3588 -3358 576 ) bricks/c_tn_m1 99 -8 282 1 1 0 0 0 +} +// brush 3664 +{ +( -3808 -3136 576 ) ( -3808 -3209 576 ) ( -3840 -3212 576 ) bricks/c_tn_m1 -64 0 -90 1 1 0 0 0 +( -3840 -2512 560 ) ( -3840 -2512 576 ) ( -3840 -2864 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -3212 544 ) ( -3808 -3209 576 ) ( -3808 -3136 576 ) bricks/c_tn_m1 -64 0 -90 1 1 0 0 0 +( -3824 -3136 576 ) ( -3840 -3136 544 ) ( -3808 -3136 544 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -3212 576 ) ( -3808 -3209 576 ) ( -3840 -3212 544 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3665 +{ +( -3148 -3904 576 ) ( -3145 -3872 576 ) ( -3072 -3872 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2800 -3904 576 ) ( -2448 -3904 576 ) ( -2448 -3904 560 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3072 -3872 576 ) ( -3145 -3872 576 ) ( -3148 -3904 544 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3072 -3872 544 ) ( -3072 -3904 544 ) ( -3072 -3888 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3148 -3904 544 ) ( -3145 -3872 576 ) ( -3148 -3904 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3666 +{ +( -3368 -3444 368 ) ( -3330 -3444 368 ) ( -3330 -3384 368 ) bricks/c_sr_mr5 -63 17 -180 1 1 0 0 0 +( -3330 -3384 384 ) ( -3330 -3444 384 ) ( -3368 -3444 384 ) bricks/c_sr_mr5 0 5 135 1 1 0 0 0 +( -3320 -3432 368 ) ( -3320 -3432 384 ) ( -3368 -3384 384 ) bricks/c_sr_mr5 -96 15 -180 1 -1 0 0 0 +( -3380 -3394 384 ) ( -3380 -3394 368 ) ( -3368 -3384 368 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3380 -3394 368 ) ( -3380 -3394 384 ) ( -3330 -3444 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -3320 -3432 384 ) ( -3320 -3432 368 ) ( -3330 -3444 368 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +} +// brush 3667 +{ +( -3840 -3264 384 ) ( -3840 -3136 384 ) ( -3472 -3136 384 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -3472 -3136 368 ) ( -3840 -3136 368 ) ( -3840 -3264 368 ) bricks/c_sr_mr5 -63 17 -180 1 1 0 0 0 +( -3456 -3174 384 ) ( -3456 -3174 400 ) ( -3456 -3136 400 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -3472 -3178 368 ) ( -3472 -3178 384 ) ( -3456 -3176 384 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3837 -3080 368 ) ( -3469 -3080 368 ) ( -3469 -3080 528 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3472 -3178 384 ) ( -3472 -3178 368 ) ( -3472 -3136 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3668 +{ +( -3824 -3360 384 ) ( -3824 -3232 384 ) ( -3456 -3232 384 ) bricks/c_sr_mr5 0 -3 101 1 1 0 0 0 +( -3456 -3232 368 ) ( -3824 -3232 368 ) ( -3824 -3360 368 ) bricks/c_sr_mr5 -63 17 -180 1 1 0 0 0 +( -3440 -3252 240 ) ( -3440 -3252 400 ) ( -3456 -3176 400 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -3440 -3252 400 ) ( -3440 -3252 240 ) ( -3456 -3256 240 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3440 -3174 240 ) ( -3440 -3174 256 ) ( -3456 -3176 256 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3456 -3256 400 ) ( -3456 -3256 240 ) ( -3472 -3178 240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3669 +{ +( -3792 -3516 384 ) ( -3792 -3388 384 ) ( -3424 -3388 384 ) bricks/c_sr_mr5 0 -12 113 1 1 0 0 0 +( -3424 -3388 368 ) ( -3792 -3388 368 ) ( -3792 -3516 368 ) bricks/c_sr_mr5 -63 17 -180 1 1 0 0 0 +( -3412 -3316 240 ) ( -3412 -3316 400 ) ( -3440 -3252 400 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -3426 -3324 240 ) ( -3426 -3324 400 ) ( -3412 -3316 400 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3456 -3256 400 ) ( -3456 -3256 240 ) ( -3440 -3252 240 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3456 -3256 240 ) ( -3456 -3256 400 ) ( -3426 -3324 400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3670 +{ +( -3736 -3648 384 ) ( -3736 -3520 384 ) ( -3368 -3520 384 ) bricks/c_sr_mr5 0 8 122 1 1 0 0 0 +( -3368 -3520 368 ) ( -3736 -3520 368 ) ( -3736 -3648 368 ) bricks/c_sr_mr5 -63 17 -180 1 1 0 0 0 +( -3368 -3384 240 ) ( -3368 -3384 400 ) ( -3412 -3316 400 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -3380 -3394 240 ) ( -3380 -3394 400 ) ( -3368 -3384 400 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3426 -3324 400 ) ( -3426 -3324 240 ) ( -3412 -3316 240 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3380 -3394 400 ) ( -3380 -3394 240 ) ( -3426 -3324 240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3671 +{ +( -3584 -3800 368 ) ( -3456 -3800 368 ) ( -3456 -3432 368 ) bricks/c_sr_mr5 -63 17 -180 1 1 0 0 0 +( -3456 -3432 384 ) ( -3456 -3800 384 ) ( -3584 -3800 384 ) bricks/c_sr_mr5 0 14 147 1 1 0 0 0 +( -3320 -3432 512 ) ( -3320 -3432 352 ) ( -3252 -3476 352 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3330 -3444 512 ) ( -3330 -3444 352 ) ( -3320 -3432 352 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -3260 -3490 352 ) ( -3260 -3490 512 ) ( -3252 -3476 512 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -3330 -3444 352 ) ( -3330 -3444 512 ) ( -3260 -3490 512 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3672 +{ +( -3452 -3856 368 ) ( -3324 -3856 368 ) ( -3324 -3488 368 ) bricks/c_sr_mr5 -63 17 -180 1 1 0 0 0 +( -3324 -3488 384 ) ( -3324 -3856 384 ) ( -3452 -3856 384 ) bricks/c_sr_mr5 0 -15 156 1 1 0 0 0 +( -3252 -3476 512 ) ( -3252 -3476 352 ) ( -3188 -3504 352 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3260 -3490 512 ) ( -3260 -3490 352 ) ( -3252 -3476 352 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -3192 -3520 352 ) ( -3192 -3520 512 ) ( -3188 -3504 512 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -3192 -3520 512 ) ( -3192 -3520 352 ) ( -3260 -3490 352 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3673 +{ +( -3296 -3888 368 ) ( -3168 -3888 368 ) ( -3168 -3520 368 ) bricks/c_sr_mr5 -63 17 -180 1 1 0 0 0 +( -3168 -3520 384 ) ( -3168 -3888 384 ) ( -3296 -3888 384 ) bricks/c_sr_mr5 0 -17 169 1 1 0 0 0 +( -3188 -3504 512 ) ( -3188 -3504 352 ) ( -3112 -3520 352 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3188 -3504 352 ) ( -3188 -3504 512 ) ( -3192 -3520 512 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -3110 -3504 512 ) ( -3110 -3504 496 ) ( -3112 -3520 496 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -3192 -3520 352 ) ( -3192 -3520 512 ) ( -3114 -3536 512 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3674 +{ +( -3614 -3734 368 ) ( -3560 -3734 368 ) ( -3560 -3650 368 ) bricks/c_sr_mr5 -63 17 -180 1 1 0 0 0 +( -3560 -3650 384 ) ( -3560 -3734 384 ) ( -3614 -3734 384 ) bricks/c_sr_mr5 0 -8 315 1 1 0 0 0 +( -3672 -3624 384 ) ( -3672 -3624 368 ) ( -3662 -3616 368 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3672 -3624 368 ) ( -3672 -3624 384 ) ( -3560 -3736 384 ) bricks/c_sr_mr5 -32 15 -180 1 -1 0 0 0 +( -3560 -3736 368 ) ( -3560 -3736 384 ) ( -3552 -3726 384 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -3608 -3670 384 ) ( -3608 -3670 368 ) ( -3552 -3726 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3675 +{ +( -3824 -3360 384 ) ( -3824 -3232 384 ) ( -3456 -3232 384 ) bricks/c_sr_mr5 0 -10 282 1 1 0 0 0 +( -3456 -3232 368 ) ( -3824 -3232 368 ) ( -3824 -3360 368 ) bricks/c_sr_mr5 -63 17 -180 1 1 0 0 0 +( -3794 -3364 400 ) ( -3794 -3364 240 ) ( -3808 -3368 240 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3840 -3212 240 ) ( -3840 -3212 400 ) ( -3808 -3368 400 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -3824 -3210 240 ) ( -3824 -3210 400 ) ( -3840 -3212 400 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3794 -3364 240 ) ( -3794 -3364 400 ) ( -3824 -3210 400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3676 +{ +( -3792 -3516 384 ) ( -3792 -3388 384 ) ( -3424 -3388 384 ) bricks/c_sr_mr5 0 10 293 1 1 0 0 0 +( -3424 -3388 368 ) ( -3792 -3388 368 ) ( -3792 -3516 368 ) bricks/c_sr_mr5 -63 17 -180 1 1 0 0 0 +( -3752 -3500 240 ) ( -3752 -3500 400 ) ( -3740 -3494 400 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3752 -3500 400 ) ( -3752 -3500 240 ) ( -3808 -3368 240 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -3794 -3364 240 ) ( -3794 -3364 400 ) ( -3808 -3368 400 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3740 -3494 240 ) ( -3740 -3494 400 ) ( -3794 -3364 400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3677 +{ +( -3736 -3648 384 ) ( -3736 -3520 384 ) ( -3368 -3520 384 ) bricks/c_sr_mr5 0 2 303 1 1 0 0 0 +( -3368 -3520 368 ) ( -3736 -3520 368 ) ( -3736 -3648 368 ) bricks/c_sr_mr5 -63 17 -180 1 1 0 0 0 +( -3662 -3616 400 ) ( -3662 -3616 240 ) ( -3672 -3624 240 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3752 -3500 240 ) ( -3752 -3500 400 ) ( -3672 -3624 400 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -3740 -3494 240 ) ( -3740 -3494 400 ) ( -3752 -3500 400 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3662 -3616 240 ) ( -3662 -3616 400 ) ( -3740 -3494 400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3678 +{ +( -3584 -3800 368 ) ( -3456 -3800 368 ) ( -3456 -3432 368 ) bricks/c_sr_mr5 -63 17 -180 1 1 0 0 0 +( -3456 -3432 384 ) ( -3456 -3800 384 ) ( -3584 -3800 384 ) bricks/c_sr_mr5 0 15 327 1 1 0 0 0 +( -3552 -3726 352 ) ( -3552 -3726 512 ) ( -3560 -3736 512 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -3436 -3816 512 ) ( -3436 -3816 352 ) ( -3560 -3736 352 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3430 -3804 512 ) ( -3430 -3804 352 ) ( -3436 -3816 352 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -3552 -3726 512 ) ( -3552 -3726 352 ) ( -3430 -3804 352 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3679 +{ +( -3452 -3856 368 ) ( -3324 -3856 368 ) ( -3324 -3488 368 ) bricks/c_sr_mr5 -63 17 -180 1 1 0 0 0 +( -3324 -3488 384 ) ( -3324 -3856 384 ) ( -3452 -3856 384 ) bricks/c_sr_mr5 0 3 338 1 1 0 0 0 +( -3436 -3816 512 ) ( -3436 -3816 352 ) ( -3430 -3804 352 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -3436 -3816 352 ) ( -3436 -3816 512 ) ( -3304 -3872 512 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3300 -3858 512 ) ( -3300 -3858 352 ) ( -3304 -3872 352 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -3430 -3804 512 ) ( -3430 -3804 352 ) ( -3300 -3858 352 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3680 +{ +( -3296 -3888 368 ) ( -3168 -3888 368 ) ( -3168 -3520 368 ) bricks/c_sr_mr5 -63 17 -180 1 1 0 0 0 +( -3168 -3520 384 ) ( -3168 -3888 384 ) ( -3296 -3888 384 ) bricks/c_sr_mr5 0 5 348 1 1 0 0 0 +( -3300 -3858 352 ) ( -3300 -3858 512 ) ( -3304 -3872 512 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -3148 -3904 512 ) ( -3148 -3904 352 ) ( -3304 -3872 352 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3146 -3888 512 ) ( -3146 -3888 352 ) ( -3148 -3904 352 ) bricks/c_sr_mr5 0 15 -180 1 -1 0 0 0 +( -3300 -3858 512 ) ( -3300 -3858 352 ) ( -3146 -3888 352 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3681 +{ +( -3280 -3392 544 ) ( -3328 -3344 544 ) ( -3300 -3417 576 ) bricks/c_tn_m1 75 3 135 1 1 0 0 0 +( -3328 -3344 592 ) ( -3328 -3344 544 ) ( -3280 -3392 544 ) bricks/c_tn_m1 -128 -8 135 1 1 0 0 0 +( -3280 -3392 592 ) ( -3280 -3392 544 ) ( -3300 -3417 576 ) bricks/c_tn_m1 -128 -8 135 1 1 0 0 0 +( -3300 -3417 576 ) ( -3328 -3344 544 ) ( -3328 -3344 592 ) bricks/c_tn_m1 -128 -8 135 1 1 0 0 0 +( -3280 -3232 576 ) ( -3280 -3256 576 ) ( -3328 -3244 576 ) bricks/c_tn_m1 75 3 135 1 1 0 0 0 +} +// brush 3682 +{ +( -3300 -3417 576 ) ( -3328 -3344 544 ) ( -3353 -3364 576 ) bricks/c_tn_m1 75 3 135 1 1 0 0 0 +( -3353 -3364 576 ) ( -3328 -3344 544 ) ( -3328 -3344 592 ) bricks/c_tn_m1 -95 -9 135 1 1 0 0 0 +( -3328 -3344 592 ) ( -3328 -3344 544 ) ( -3300 -3417 576 ) bricks/c_tn_m1 -128 -8 135 1 1 0 0 0 +( -3300 -3232 576 ) ( -3300 -3256 576 ) ( -3353 -3244 576 ) bricks/c_tn_m1 75 3 135 1 1 0 0 0 +} +// brush 3683 +{ +( -3168 -3520 576 ) ( -3168 -3888 576 ) ( -3296 -3888 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3184 -3488 432 ) ( -3184 -3488 416 ) ( -3110 -3504 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3184 -3488 560 ) ( -3184 -3488 576 ) ( -3188 -3504 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3110 -3504 576 ) ( -3110 -3504 560 ) ( -3112 -3520 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3112 -3520 496 ) ( -3188 -3504 496 ) ( -3150 -3512 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1704 -3520 368 ) ( -1672 -3520 368 ) ( -1688 -3488 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3684 +{ +( -3324 -3488 576 ) ( -3324 -3856 576 ) ( -3452 -3856 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3244 -3462 368 ) ( -3244 -3462 352 ) ( -3184 -3488 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3244 -3462 560 ) ( -3244 -3462 576 ) ( -3252 -3476 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3184 -3488 576 ) ( -3184 -3488 560 ) ( -3188 -3504 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3188 -3504 496 ) ( -3252 -3476 496 ) ( -3220 -3490 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1704 -3504 368 ) ( -1672 -3504 368 ) ( -1688 -3462 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3685 +{ +( -3456 -3432 576 ) ( -3456 -3800 576 ) ( -3584 -3800 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3310 -3418 432 ) ( -3310 -3418 416 ) ( -3244 -3462 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3310 -3418 560 ) ( -3310 -3418 576 ) ( -3320 -3432 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3244 -3462 576 ) ( -3244 -3462 560 ) ( -3252 -3476 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3252 -3476 496 ) ( -3320 -3432 496 ) ( -3286 -3454 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1704 -3476 368 ) ( -1672 -3476 368 ) ( -1688 -3418 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3686 +{ +( -3580 -3352 576 ) ( -3580 -3720 576 ) ( -3708 -3720 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3354 -3374 368 ) ( -3354 -3374 352 ) ( -3310 -3418 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3368 -3384 576 ) ( -3368 -3384 352 ) ( -3354 -3374 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3310 -3418 576 ) ( -3310 -3418 560 ) ( -3320 -3432 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3368 -3384 352 ) ( -3368 -3384 576 ) ( -3320 -3432 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1704 -3432 368 ) ( -1672 -3432 368 ) ( -1688 -3374 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3687 +{ +( -3736 -3648 576 ) ( -3736 -3520 576 ) ( -3368 -3520 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3354 -3374 416 ) ( -3354 -3374 432 ) ( -3398 -3308 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3368 -3384 352 ) ( -3368 -3384 576 ) ( -3354 -3374 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3398 -3308 560 ) ( -3398 -3308 576 ) ( -3412 -3316 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3368 -3384 576 ) ( -3368 -3384 352 ) ( -3412 -3316 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1704 -3384 368 ) ( -1672 -3384 368 ) ( -1688 -3308 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3688 +{ +( -3792 -3516 576 ) ( -3792 -3388 576 ) ( -3424 -3388 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3398 -3308 352 ) ( -3398 -3308 368 ) ( -3424 -3248 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3398 -3308 576 ) ( -3398 -3308 560 ) ( -3412 -3316 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3424 -3248 560 ) ( -3424 -3248 576 ) ( -3440 -3252 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3440 -3252 512 ) ( -3412 -3316 512 ) ( -3426 -3284 496 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1704 -3316 368 ) ( -1672 -3316 368 ) ( -1688 -3248 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3689 +{ +( -3840 -3264 576 ) ( -3840 -3136 576 ) ( -3472 -3136 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3440 -3174 352 ) ( -3440 -3174 368 ) ( -3440 -3136 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3440 -3174 432 ) ( -3440 -3174 416 ) ( -3456 -3176 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3839 -3080 336 ) ( -3471 -3080 336 ) ( -3471 -3080 496 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3456 -3136 368 ) ( -3456 -3144 368 ) ( -3456 -3140 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1704 -3176 368 ) ( -1672 -3176 368 ) ( -1688 -3136 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3690 +{ +( -3824 -3360 576 ) ( -3824 -3232 576 ) ( -3456 -3232 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3424 -3248 416 ) ( -3424 -3248 432 ) ( -3440 -3174 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3424 -3248 576 ) ( -3424 -3248 560 ) ( -3440 -3252 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3440 -3174 416 ) ( -3440 -3174 432 ) ( -3456 -3176 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3456 -3176 368 ) ( -3440 -3252 368 ) ( -3448 -3214 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1704 -3252 368 ) ( -1672 -3252 368 ) ( -1688 -3174 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3691 +{ +( -3824 -3360 576 ) ( -3824 -3232 576 ) ( -3456 -3232 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3824 -3374 416 ) ( -3824 -3374 432 ) ( -3808 -3368 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3824 -3374 512 ) ( -3824 -3374 496 ) ( -3856 -3214 496 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3856 -3214 432 ) ( -3856 -3214 416 ) ( -3840 -3212 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3808 -3368 368 ) ( -3840 -3212 368 ) ( -3824 -3290 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3856 -3374 368 ) ( -3824 -3374 368 ) ( -3840 -3212 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3692 +{ +( -3792 -3516 576 ) ( -3792 -3388 576 ) ( -3424 -3388 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3766 -3508 416 ) ( -3766 -3508 432 ) ( -3752 -3500 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3766 -3508 512 ) ( -3766 -3508 496 ) ( -3824 -3374 496 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3824 -3374 432 ) ( -3824 -3374 416 ) ( -3808 -3368 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3752 -3500 432 ) ( -3808 -3368 432 ) ( -3780 -3434 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3856 -3508 368 ) ( -3824 -3508 368 ) ( -3840 -3368 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3693 +{ +( -3736 -3648 576 ) ( -3736 -3520 576 ) ( -3368 -3520 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3684 -3634 560 ) ( -3684 -3634 576 ) ( -3672 -3624 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3684 -3634 512 ) ( -3684 -3634 496 ) ( -3766 -3508 496 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3766 -3508 432 ) ( -3766 -3508 416 ) ( -3752 -3500 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3672 -3624 432 ) ( -3752 -3500 432 ) ( -3712 -3562 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3856 -3634 368 ) ( -3824 -3634 368 ) ( -3840 -3500 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3694 +{ +( -3570 -3624 576 ) ( -3570 -3748 576 ) ( -3672 -3748 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3560 -3736 416 ) ( -3560 -3736 576 ) ( -3672 -3624 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3684 -3634 576 ) ( -3684 -3634 416 ) ( -3672 -3624 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3684 -3634 352 ) ( -3684 -3634 512 ) ( -3570 -3748 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3560 -3736 576 ) ( -3560 -3736 416 ) ( -3570 -3748 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3856 -3748 368 ) ( -3824 -3748 368 ) ( -3840 -3624 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3695 +{ +( -3456 -3432 576 ) ( -3456 -3800 576 ) ( -3584 -3800 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3570 -3748 432 ) ( -3570 -3748 416 ) ( -3560 -3736 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3570 -3748 352 ) ( -3570 -3748 368 ) ( -3444 -3830 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3444 -3830 560 ) ( -3444 -3830 576 ) ( -3436 -3816 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3560 -3736 560 ) ( -3436 -3816 560 ) ( -3498 -3776 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3856 -3830 368 ) ( -3824 -3830 368 ) ( -3840 -3736 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3696 +{ +( -3324 -3488 576 ) ( -3324 -3856 576 ) ( -3452 -3856 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3444 -3830 576 ) ( -3444 -3830 560 ) ( -3436 -3816 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3444 -3830 352 ) ( -3444 -3830 368 ) ( -3310 -3888 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3310 -3888 560 ) ( -3310 -3888 576 ) ( -3304 -3872 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3436 -3816 560 ) ( -3304 -3872 560 ) ( -3370 -3844 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3856 -3888 368 ) ( -3824 -3888 368 ) ( -3840 -3816 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3697 +{ +( -3168 -3520 576 ) ( -3168 -3888 576 ) ( -3296 -3888 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3310 -3888 576 ) ( -3310 -3888 560 ) ( -3304 -3872 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3310 -3888 352 ) ( -3310 -3888 368 ) ( -3150 -3920 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3150 -3920 560 ) ( -3150 -3920 576 ) ( -3148 -3904 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3304 -3872 560 ) ( -3148 -3904 560 ) ( -3226 -3888 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3856 -3920 368 ) ( -3824 -3920 368 ) ( -3840 -3872 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3698 +{ +( -3840 -824 368 ) ( -3856 -824 368 ) ( -3856 -1088 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3856 -1088 576 ) ( -3856 -824 576 ) ( -3840 -824 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3856 -3214 368 ) ( -3856 -3214 576 ) ( -3840 -3212 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3840 -3136 576 ) ( -3840 -2872 576 ) ( -3840 -2872 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3856 -754 576 ) ( -3856 -754 368 ) ( -3840 -756 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3856 -3214 576 ) ( -3856 -3214 368 ) ( -3856 -754 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3699 +{ +( -3824 -832 368 ) ( -3840 -832 368 ) ( -3840 -1088 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3840 -1088 384 ) ( -3840 -832 384 ) ( -3824 -832 384 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -3840 -3212 368 ) ( -3840 -3212 384 ) ( -3824 -3210 384 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3824 -1088 384 ) ( -3824 -832 384 ) ( -3824 -832 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -3840 -756 384 ) ( -3840 -756 368 ) ( -3824 -758 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3840 -3212 384 ) ( -3840 -3212 368 ) ( -3840 -756 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 3700 +{ +( -3440 -832 352 ) ( -3856 -832 352 ) ( -3856 -1120 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3856 -1120 368 ) ( -3856 -832 368 ) ( -3440 -832 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3848 -3136 368 ) ( -3432 -3136 368 ) ( -3432 -3136 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3440 -1136 368 ) ( -3440 -848 368 ) ( -3440 -848 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3440 -832 368 ) ( -3856 -832 368 ) ( -3856 -832 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3856 -832 368 ) ( -3856 -1120 368 ) ( -3856 -1120 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3701 +{ +( -3104 -96 576 ) ( -3104 -64 576 ) ( -2824 -64 576 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -2720 -96 576 ) ( -2720 -64 576 ) ( -2720 -64 544 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -3104 -64 544 ) ( -3104 -96 576 ) ( -2720 -80 560 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -2784 -72 544 ) ( -2784 -64 544 ) ( -2784 -68 576 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -2784 -72 544 ) ( -2768 -72 544 ) ( -2776 -72 576 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -2768 -88 552 ) ( -2784 -88 552 ) ( -2776 -88 576 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +} +// brush 3702 +{ +( -3104 -96 576 ) ( -3104 -64 576 ) ( -2824 -64 576 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -2720 -96 576 ) ( -2720 -64 576 ) ( -2720 -64 544 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -3104 -64 544 ) ( -3104 -96 576 ) ( -2720 -80 560 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -2784 -72 544 ) ( -2784 -64 544 ) ( -2784 -68 576 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -2784 -88 552 ) ( -2768 -88 552 ) ( -2776 -88 576 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +} +// brush 3703 +{ +( -3104 -96 576 ) ( -3104 -64 576 ) ( -2824 -64 576 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -2720 -96 576 ) ( -2720 -64 576 ) ( -2720 -64 544 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -2824 -64 576 ) ( -3104 -64 576 ) ( -3104 -64 544 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -3104 -64 544 ) ( -3104 -96 576 ) ( -2720 -80 560 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -2784 -72 544 ) ( -2784 -64 544 ) ( -2784 -68 576 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -2768 -72 544 ) ( -2784 -72 544 ) ( -2776 -72 576 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +} +// brush 3704 +{ +( -3104 -96 576 ) ( -3104 -64 576 ) ( -2824 -64 576 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -2824 -64 576 ) ( -3104 -64 576 ) ( -3104 -64 544 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -3104 -64 544 ) ( -3104 -96 576 ) ( -2720 -80 560 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -3040 -72 544 ) ( -3040 -64 544 ) ( -3040 -68 576 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -2784 -64 544 ) ( -2784 -72 544 ) ( -2784 -68 576 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +} +// brush 3705 +{ +( -3104 -96 576 ) ( -3104 -64 576 ) ( -2824 -64 576 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -3104 -64 576 ) ( -3104 -96 576 ) ( -3104 -96 544 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -3104 -64 544 ) ( -3104 -96 576 ) ( -2720 -80 560 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -3040 -64 544 ) ( -3040 -72 544 ) ( -3040 -68 576 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -3104 -72 544 ) ( -3072 -72 544 ) ( -3088 -72 576 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -3080 -88 552 ) ( -3104 -88 552 ) ( -3092 -88 576 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +} +// brush 3706 +{ +( -3104 -96 576 ) ( -3104 -64 576 ) ( -2824 -64 576 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -3104 -64 576 ) ( -3104 -96 576 ) ( -3104 -96 544 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -3104 -64 544 ) ( -3104 -96 576 ) ( -2720 -80 560 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -3040 -64 544 ) ( -3040 -72 544 ) ( -3040 -68 576 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -3104 -88 552 ) ( -3080 -88 552 ) ( -3092 -88 576 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +} +// brush 3707 +{ +( -3104 -96 576 ) ( -3104 -64 576 ) ( -2824 -64 576 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -2824 -64 576 ) ( -3104 -64 576 ) ( -3104 -64 544 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -3104 -64 576 ) ( -3104 -96 576 ) ( -3104 -96 544 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -3104 -64 544 ) ( -3104 -96 576 ) ( -2720 -80 560 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -3040 -64 544 ) ( -3040 -72 544 ) ( -3040 -68 576 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -3072 -72 544 ) ( -3104 -72 544 ) ( -3088 -72 576 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +} +// brush 3708 +{ +( -3104 -448 576 ) ( -3104 -416 576 ) ( -2720 -416 576 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -2720 -448 576 ) ( -2720 -416 576 ) ( -2720 -416 544 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -3104 -416 576 ) ( -3104 -448 544 ) ( -2720 -432 560 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -2784 -424 544 ) ( -2784 -416 544 ) ( -2784 -420 576 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -2784 -424 544 ) ( -2768 -424 544 ) ( -2776 -424 576 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -2768 -440 544 ) ( -2784 -440 544 ) ( -2776 -440 576 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +} +// brush 3709 +{ +( -3104 -448 576 ) ( -3104 -416 576 ) ( -2720 -416 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3104 -448 576 ) ( -2720 -448 576 ) ( -2720 -448 544 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2720 -448 576 ) ( -2720 -416 576 ) ( -2720 -416 544 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3104 -416 576 ) ( -3104 -448 544 ) ( -2720 -432 560 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2784 -424 544 ) ( -2784 -416 544 ) ( -2784 -420 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2784 -440 544 ) ( -2768 -440 544 ) ( -2776 -440 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3710 +{ +( -3104 -448 576 ) ( -3104 -416 576 ) ( -2720 -416 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2720 -448 576 ) ( -2720 -416 576 ) ( -2720 -416 544 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3104 -416 576 ) ( -3104 -448 544 ) ( -2720 -432 560 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2784 -424 544 ) ( -2784 -416 544 ) ( -2784 -420 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2768 -424 544 ) ( -2784 -424 544 ) ( -2776 -424 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3711 +{ +( -3104 -448 576 ) ( -3104 -416 576 ) ( -2720 -416 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3104 -448 576 ) ( -2720 -448 576 ) ( -2720 -448 544 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3104 -416 576 ) ( -3104 -448 544 ) ( -2720 -432 560 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3040 -424 544 ) ( -3040 -416 544 ) ( -3040 -420 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2784 -416 544 ) ( -2784 -424 544 ) ( -2784 -420 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3712 +{ +( -3104 -448 576 ) ( -3104 -416 576 ) ( -2720 -416 576 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -3104 -416 576 ) ( -3104 -448 576 ) ( -3104 -448 544 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -3104 -416 576 ) ( -3104 -448 544 ) ( -2720 -432 560 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -3040 -416 544 ) ( -3040 -424 544 ) ( -3040 -420 576 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -3104 -424 544 ) ( -3072 -424 544 ) ( -3088 -424 576 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -3080 -440 544 ) ( -3104 -440 544 ) ( -3092 -440 576 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +} +// brush 3713 +{ +( -3104 -448 576 ) ( -3104 -416 576 ) ( -2720 -416 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3104 -448 576 ) ( -2720 -448 576 ) ( -2720 -448 544 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3104 -416 576 ) ( -3104 -448 576 ) ( -3104 -448 544 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3104 -416 576 ) ( -3104 -448 544 ) ( -2720 -432 560 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3040 -416 544 ) ( -3040 -424 544 ) ( -3040 -420 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3104 -440 544 ) ( -3080 -440 544 ) ( -3092 -440 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3714 +{ +( -3104 -448 576 ) ( -3104 -416 576 ) ( -2720 -416 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3104 -416 576 ) ( -3104 -448 576 ) ( -3104 -448 544 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3104 -416 576 ) ( -3104 -448 544 ) ( -2720 -432 560 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3040 -416 544 ) ( -3040 -424 544 ) ( -3040 -420 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3072 -424 544 ) ( -3104 -424 544 ) ( -3088 -424 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3715 +{ +( -2752 -448 368 ) ( -3072 -448 368 ) ( -3072 -464 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3072 -464 576 ) ( -3072 -448 576 ) ( -2752 -448 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2674 -464 576 ) ( -2674 -464 368 ) ( -3110 -464 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2674 -464 368 ) ( -2674 -464 576 ) ( -2676 -448 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3112 -448 576 ) ( -3112 -448 368 ) ( -2752 -448 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3112 -448 368 ) ( -3112 -448 576 ) ( -3110 -464 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3716 +{ +( -2752 -432 368 ) ( -3072 -432 368 ) ( -3072 -448 368 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3072 -448 384 ) ( -3072 -432 384 ) ( -2752 -432 384 ) bricks/c_sr_mr5 0 -2 0 1 1 0 0 0 +( -2676 -448 384 ) ( -2676 -448 368 ) ( -3112 -448 368 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2676 -448 368 ) ( -2676 -448 384 ) ( -2678 -432 384 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2752 -432 384 ) ( -3072 -432 384 ) ( -3072 -432 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -3112 -448 384 ) ( -3112 -448 368 ) ( -3114 -432 368 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +} +// brush 3717 +{ +( -2752 -56 368 ) ( -3072 -56 368 ) ( -3072 -64 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3072 -64 576 ) ( -3072 -56 576 ) ( -2752 -56 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2712 -64 576 ) ( -2712 -64 368 ) ( -3148 -64 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2712 -64 368 ) ( -2712 -64 576 ) ( -2714 -48 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3150 -48 576 ) ( -3150 -48 368 ) ( -2752 -48 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3150 -48 368 ) ( -3150 -48 576 ) ( -3148 -64 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3718 +{ +( -2752 -64 368 ) ( -3072 -64 368 ) ( -3072 -80 368 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3072 -80 384 ) ( -3072 -64 384 ) ( -2752 -64 384 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( -2710 -80 384 ) ( -2710 -80 368 ) ( -3146 -80 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -2710 -80 368 ) ( -2710 -80 384 ) ( -2712 -64 384 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3148 -64 384 ) ( -3148 -64 368 ) ( -2752 -64 368 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -3148 -64 368 ) ( -3148 -64 384 ) ( -3146 -80 384 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +} +// brush 3719 +{ +( -2752 -48 576 ) ( -3072 -48 576 ) ( -3072 -464 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3072 -464 592 ) ( -3072 -48 592 ) ( -2752 -48 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3072 -464 592 ) ( -2752 -464 592 ) ( -2752 -464 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2752 -464 592 ) ( -2752 -48 592 ) ( -2752 -48 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2752 -48 592 ) ( -3072 -48 592 ) ( -3072 -48 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3072 -48 592 ) ( -3072 -464 592 ) ( -3072 -464 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 3720 +{ +( -2752 -48 352 ) ( -2888 -48 352 ) ( -2888 -464 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2888 -464 368 ) ( -2888 -48 368 ) ( -2752 -48 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2888 -464 368 ) ( -2752 -464 368 ) ( -2752 -464 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2752 -464 368 ) ( -2752 -48 368 ) ( -2752 -48 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2752 -48 368 ) ( -2888 -48 368 ) ( -2888 -48 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3072 -56 368 ) ( -3072 -472 368 ) ( -3072 -472 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3721 +{ +( -3646 -365 576 ) ( -3672 -344 544 ) ( -3752 -468 544 ) common/li_pv_v4a 35 -3 237 1 1 0 1 7000 +( -3646 -365 576 ) ( -3752 -468 544 ) ( -3752 -468 592 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3646 -288 576 ) ( -3646 -344 576 ) ( -3752 -316 576 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3708 -452 544 ) ( -3728 -440 544 ) ( -3718 -446 576 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3692 -384 544 ) ( -3672 -396 544 ) ( -3682 -390 576 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3728 -444 544 ) ( -3688 -384 544 ) ( -3708 -414 576 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 3722 +{ +( -3646 -365 576 ) ( -3752 -468 544 ) ( -3723 -484 576 ) common/li_pv_v4a 35 -3 237 1 1 0 1 7000 +( -3752 -468 592 ) ( -3752 -468 544 ) ( -3646 -365 576 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3646 -288 576 ) ( -3646 -344 576 ) ( -3752 -316 576 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3708 -452 544 ) ( -3728 -440 544 ) ( -3718 -446 576 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3692 -384 552 ) ( -3672 -396 552 ) ( -3682 -390 576 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3672 -390 552 ) ( -3712 -452 552 ) ( -3692 -421 576 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 3723 +{ +( -3472 -832 576 ) ( -3840 -832 576 ) ( -3840 -704 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3440 -832 368 ) ( -3440 -794 368 ) ( -3440 -794 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3456 -792 416 ) ( -3440 -794 416 ) ( -3440 -794 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3472 -888 496 ) ( -3472 -888 336 ) ( -3840 -888 336 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3456 -828 352 ) ( -3456 -824 368 ) ( -3456 -832 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1632 -792 368 ) ( -1648 -832 368 ) ( -1616 -832 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3724 +{ +( -3456 -736 576 ) ( -3824 -736 576 ) ( -3824 -608 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3440 -794 432 ) ( -3424 -720 432 ) ( -3424 -720 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3440 -716 560 ) ( -3424 -720 560 ) ( -3424 -720 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3456 -792 432 ) ( -3440 -794 432 ) ( -3440 -794 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3448 -754 352 ) ( -3440 -716 368 ) ( -3456 -792 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1632 -716 368 ) ( -1648 -794 368 ) ( -1616 -794 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3725 +{ +( -3424 -580 576 ) ( -3792 -580 576 ) ( -3792 -452 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3424 -720 368 ) ( -3398 -660 368 ) ( -3398 -660 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3412 -652 560 ) ( -3398 -660 560 ) ( -3398 -660 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3440 -716 576 ) ( -3424 -720 576 ) ( -3424 -720 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3426 -684 496 ) ( -3412 -652 512 ) ( -3440 -716 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1632 -652 368 ) ( -1648 -720 368 ) ( -1616 -720 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3726 +{ +( -3368 -448 576 ) ( -3736 -448 576 ) ( -3736 -320 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3398 -660 432 ) ( -3354 -594 432 ) ( -3354 -594 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3368 -584 560 ) ( -3354 -594 560 ) ( -3354 -594 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3412 -652 576 ) ( -3398 -660 576 ) ( -3398 -660 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3390 -618 496 ) ( -3368 -584 512 ) ( -3412 -652 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1632 -584 368 ) ( -1648 -660 368 ) ( -1616 -660 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3727 +{ +( -3708 -248 576 ) ( -3580 -248 576 ) ( -3580 -616 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3310 -550 352 ) ( -3354 -594 352 ) ( -3354 -594 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3368 -584 576 ) ( -3354 -594 576 ) ( -3354 -594 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3320 -536 560 ) ( -3310 -550 560 ) ( -3310 -550 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3344 -560 512 ) ( -3368 -584 496 ) ( -3320 -536 496 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1632 -536 368 ) ( -1648 -594 368 ) ( -1616 -594 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3728 +{ +( -3584 -168 576 ) ( -3456 -168 576 ) ( -3456 -536 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3244 -506 416 ) ( -3310 -550 416 ) ( -3310 -550 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3320 -536 576 ) ( -3310 -550 576 ) ( -3310 -550 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3252 -492 560 ) ( -3244 -506 560 ) ( -3244 -506 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3286 -514 512 ) ( -3320 -536 496 ) ( -3252 -492 496 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1632 -492 368 ) ( -1648 -550 368 ) ( -1616 -550 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3729 +{ +( -3452 -112 576 ) ( -3324 -112 576 ) ( -3324 -480 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3184 -480 352 ) ( -3244 -506 352 ) ( -3244 -506 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3252 -492 576 ) ( -3244 -506 576 ) ( -3244 -506 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3188 -464 560 ) ( -3184 -480 560 ) ( -3184 -480 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3220 -478 512 ) ( -3252 -492 496 ) ( -3188 -464 496 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1632 -464 368 ) ( -1648 -506 368 ) ( -1616 -506 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3730 +{ +( -3296 -80 576 ) ( -3168 -80 576 ) ( -3168 -448 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3110 -464 416 ) ( -3184 -480 416 ) ( -3184 -480 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3188 -464 576 ) ( -3184 -480 576 ) ( -3184 -480 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3112 -448 560 ) ( -3110 -464 560 ) ( -3110 -464 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3150 -456 512 ) ( -3188 -464 496 ) ( -3112 -448 496 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1632 -448 368 ) ( -1648 -480 368 ) ( -1616 -480 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3731 +{ +( -3296 -80 576 ) ( -3168 -80 576 ) ( -3168 -448 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3304 -96 560 ) ( -3310 -80 560 ) ( -3310 -80 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3150 -48 368 ) ( -3310 -80 368 ) ( -3310 -80 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3148 -64 576 ) ( -3150 -48 576 ) ( -3150 -48 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3226 -80 576 ) ( -3148 -64 560 ) ( -3304 -96 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3784 -48 368 ) ( -3800 -96 368 ) ( -3768 -96 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3732 +{ +( -3452 -112 576 ) ( -3324 -112 576 ) ( -3324 -480 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3436 -152 560 ) ( -3444 -138 560 ) ( -3444 -138 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3310 -80 368 ) ( -3444 -138 368 ) ( -3444 -138 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3304 -96 576 ) ( -3310 -80 576 ) ( -3310 -80 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3370 -124 576 ) ( -3304 -96 560 ) ( -3436 -152 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3784 -80 368 ) ( -3800 -152 368 ) ( -3768 -152 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3733 +{ +( -3584 -168 576 ) ( -3456 -168 576 ) ( -3456 -536 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3560 -232 416 ) ( -3570 -220 416 ) ( -3570 -220 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3444 -138 368 ) ( -3570 -220 368 ) ( -3570 -220 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3436 -152 576 ) ( -3444 -138 576 ) ( -3444 -138 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3498 -192 576 ) ( -3436 -152 560 ) ( -3560 -232 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3784 -138 368 ) ( -3800 -232 368 ) ( -3768 -232 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3734 +{ +( -3672 -220 576 ) ( -3570 -220 576 ) ( -3570 -344 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3672 -344 576 ) ( -3560 -232 576 ) ( -3560 -232 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3672 -344 416 ) ( -3684 -334 416 ) ( -3684 -334 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3570 -220 512 ) ( -3684 -334 512 ) ( -3684 -334 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3570 -220 416 ) ( -3560 -232 416 ) ( -3560 -232 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3784 -220 368 ) ( -3800 -344 368 ) ( -3768 -344 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3735 +{ +( -3368 -448 576 ) ( -3736 -448 576 ) ( -3736 -320 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3672 -344 576 ) ( -3684 -334 576 ) ( -3684 -334 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3766 -460 496 ) ( -3684 -334 496 ) ( -3684 -334 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3752 -468 416 ) ( -3766 -460 416 ) ( -3766 -460 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3712 -406 416 ) ( -3752 -468 432 ) ( -3672 -344 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3784 -334 368 ) ( -3800 -468 368 ) ( -3768 -468 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3736 +{ +( -3424 -580 576 ) ( -3792 -580 576 ) ( -3792 -452 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3752 -468 432 ) ( -3766 -460 432 ) ( -3766 -460 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3824 -594 496 ) ( -3766 -460 496 ) ( -3766 -460 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3808 -600 416 ) ( -3824 -594 416 ) ( -3824 -594 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3780 -534 416 ) ( -3808 -600 432 ) ( -3752 -468 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3784 -460 368 ) ( -3800 -600 368 ) ( -3768 -600 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3737 +{ +( -3456 -736 576 ) ( -3824 -736 576 ) ( -3824 -608 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3808 -600 432 ) ( -3824 -594 432 ) ( -3824 -594 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3856 -754 496 ) ( -3824 -594 496 ) ( -3824 -594 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3840 -756 416 ) ( -3856 -754 416 ) ( -3856 -754 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3824 -678 352 ) ( -3840 -756 368 ) ( -3808 -600 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3784 -594 368 ) ( -3800 -756 368 ) ( -3768 -756 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3738 +{ +( -3488 -1024 576 ) ( -3488 -789 576 ) ( -3456 -792 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3456 -904 576 ) ( -3456 -648 576 ) ( -3456 -648 544 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3456 -792 544 ) ( -3488 -789 576 ) ( -3488 -1024 576 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3456 -792 576 ) ( -3488 -789 576 ) ( -3456 -792 544 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3468 -888 576 ) ( -3464 -888 544 ) ( -3472 -888 544 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3739 +{ +( -3072 -64 368 ) ( -3148 -64 368 ) ( -3148 -64 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3148 -64 368 ) ( -3304 -96 368 ) ( -3304 -96 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3304 -96 368 ) ( -3436 -152 368 ) ( -3436 -152 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3436 -152 368 ) ( -3560 -232 368 ) ( -3560 -232 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3560 -232 368 ) ( -3672 -344 368 ) ( -3672 -344 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3672 -344 368 ) ( -3752 -468 368 ) ( -3752 -468 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3752 -468 368 ) ( -3808 -600 368 ) ( -3808 -600 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3840 -756 352 ) ( -3808 -600 352 ) ( -3808 -600 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3840 -832 352 ) ( -3840 -756 352 ) ( -3840 -756 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3840 -64 352 ) ( -3840 -1600 352 ) ( -2304 -1600 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2304 -1600 368 ) ( -3840 -1600 368 ) ( -3840 -64 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3072 -284 368 ) ( -3072 -256 304 ) ( -3072 -312 304 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3704 -832 368 ) ( -3672 -832 304 ) ( -3736 -832 304 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3264 -640 368 ) ( -3072 -448 352 ) ( -3456 -832 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3740 +{ +( -3072 -64 592 ) ( -3148 -64 592 ) ( -3148 -64 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3148 -64 592 ) ( -3304 -96 592 ) ( -3304 -96 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3304 -96 592 ) ( -3436 -152 592 ) ( -3436 -152 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3436 -152 592 ) ( -3560 -232 592 ) ( -3560 -232 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3560 -232 592 ) ( -3672 -344 592 ) ( -3672 -344 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3672 -344 592 ) ( -3752 -468 592 ) ( -3752 -468 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3752 -468 592 ) ( -3808 -600 592 ) ( -3808 -600 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3840 -756 576 ) ( -3808 -600 576 ) ( -3808 -600 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3840 -832 576 ) ( -3840 -756 576 ) ( -3840 -756 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3840 -64 576 ) ( -3840 -1600 576 ) ( -2304 -1600 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2304 -1600 592 ) ( -3840 -1600 592 ) ( -3840 -64 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3072 -284 592 ) ( -3072 -256 528 ) ( -3072 -312 528 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3704 -832 592 ) ( -3672 -832 528 ) ( -3736 -832 528 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3264 -640 592 ) ( -3072 -448 576 ) ( -3456 -832 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 3741 +{ +( -3198 -433 576 ) ( -3112 -448 544 ) ( -3115 -416 576 ) bricks/c_tn_m1 0 17 192 1 -1 0 0 0 +( -3115 -416 576 ) ( -3112 -448 544 ) ( -3112 -448 592 ) bricks/c_tn_m1 0 17 192 1 -1 0 0 0 +( -3112 -448 592 ) ( -3112 -448 544 ) ( -3198 -433 576 ) bricks/c_tn_m1 0 17 192 1 -1 0 0 0 +( -3198 -684 576 ) ( -3112 -672 576 ) ( -3112 -696 576 ) bricks/c_tn_m1 0 17 192 1 -1 0 0 0 +} +// brush 3742 +{ +( -3198 -433 576 ) ( -3188 -464 544 ) ( -3112 -448 544 ) bricks/c_tn_m1 0 17 192 1 -1 0 0 0 +( -3112 -448 544 ) ( -3188 -464 544 ) ( -3188 -464 592 ) bricks/c_tn_m1 0 17 192 1 -1 0 0 0 +( -3188 -464 592 ) ( -3188 -464 544 ) ( -3198 -433 576 ) bricks/c_tn_m1 0 17 192 1 -1 0 0 0 +( -3198 -433 592 ) ( -3198 -433 576 ) ( -3112 -448 544 ) bricks/c_tn_m1 0 17 192 1 -1 0 0 0 +( -3198 -684 576 ) ( -3112 -672 576 ) ( -3112 -696 576 ) bricks/c_tn_m1 0 17 192 1 -1 0 0 0 +} +// brush 3743 +{ +( -3267 -464 576 ) ( -3188 -464 544 ) ( -3198 -433 576 ) bricks/c_tn_m1 0 9 204 1 -1 0 0 0 +( -3198 -433 576 ) ( -3188 -464 544 ) ( -3188 -464 592 ) bricks/c_tn_m1 0 9 204 1 -1 0 0 0 +( -3188 -464 592 ) ( -3188 -464 544 ) ( -3267 -464 576 ) bricks/c_tn_m1 0 9 204 1 -1 0 0 0 +( -3267 -684 576 ) ( -3188 -672 576 ) ( -3188 -696 576 ) bricks/c_tn_m1 0 9 204 1 -1 0 0 0 +} +// brush 3744 +{ +( -3267 -464 576 ) ( -3252 -492 544 ) ( -3188 -464 544 ) bricks/c_tn_m1 0 9 204 1 -1 0 0 0 +( -3188 -464 544 ) ( -3252 -492 544 ) ( -3252 -492 592 ) bricks/c_tn_m1 0 9 204 1 -1 0 0 0 +( -3252 -492 592 ) ( -3252 -492 544 ) ( -3267 -464 576 ) bricks/c_tn_m1 0 9 204 1 -1 0 0 0 +( -3267 -464 576 ) ( -3188 -464 544 ) ( -3188 -464 592 ) bricks/c_tn_m1 0 9 204 1 -1 0 0 0 +( -3267 -684 576 ) ( -3188 -672 576 ) ( -3188 -696 576 ) bricks/c_tn_m1 0 9 204 1 -1 0 0 0 +} +// brush 3745 +{ +( -3340 -511 576 ) ( -3252 -492 544 ) ( -3267 -464 576 ) bricks/c_tn_m1 0 14 213 1 -1 0 0 0 +( -3267 -464 576 ) ( -3252 -492 544 ) ( -3252 -492 592 ) bricks/c_tn_m1 0 14 213 1 -1 0 0 0 +( -3252 -492 592 ) ( -3252 -492 544 ) ( -3340 -511 576 ) bricks/c_tn_m1 0 14 213 1 -1 0 0 0 +( -3340 -684 576 ) ( -3252 -672 576 ) ( -3252 -696 576 ) bricks/c_tn_m1 0 14 213 1 -1 0 0 0 +} +// brush 3746 +{ +( -3340 -511 576 ) ( -3320 -536 544 ) ( -3252 -492 544 ) bricks/c_tn_m1 0 14 213 1 -1 0 0 0 +( -3252 -492 544 ) ( -3320 -536 544 ) ( -3320 -536 592 ) bricks/c_tn_m1 0 14 213 1 -1 0 0 0 +( -3320 -536 592 ) ( -3320 -536 544 ) ( -3340 -511 576 ) bricks/c_tn_m1 0 14 213 1 -1 0 0 0 +( -3340 -511 576 ) ( -3252 -492 544 ) ( -3252 -492 592 ) bricks/c_tn_m1 0 14 213 1 -1 0 0 0 +( -3340 -684 576 ) ( -3252 -672 576 ) ( -3252 -696 576 ) bricks/c_tn_m1 0 14 213 1 -1 0 0 0 +} +// brush 3747 +{ +( -3412 -652 544 ) ( -3368 -584 544 ) ( -3393 -564 576 ) bricks/c_tn_m1 0 10 57 1 1 0 0 0 +( -3368 -584 592 ) ( -3368 -584 544 ) ( -3412 -652 544 ) bricks/c_tn_m1 0 10 57 1 1 0 0 0 +( -3393 -564 576 ) ( -3368 -584 544 ) ( -3368 -584 592 ) bricks/c_tn_m1 0 10 57 1 1 0 0 0 +( -3412 -652 592 ) ( -3412 -652 544 ) ( -3393 -564 576 ) bricks/c_tn_m1 0 10 57 1 1 0 0 0 +( -3412 -684 576 ) ( -3368 -672 576 ) ( -3368 -696 576 ) bricks/c_tn_m1 0 10 57 1 1 0 0 0 +} +// brush 3748 +{ +( -3440 -637 576 ) ( -3412 -652 544 ) ( -3393 -564 576 ) bricks/c_tn_m1 0 10 57 1 1 0 0 0 +( -3412 -652 592 ) ( -3412 -652 544 ) ( -3440 -637 576 ) bricks/c_tn_m1 0 10 57 1 1 0 0 0 +( -3393 -564 576 ) ( -3412 -652 544 ) ( -3412 -652 592 ) bricks/c_tn_m1 0 10 57 1 1 0 0 0 +( -3440 -684 576 ) ( -3393 -672 576 ) ( -3393 -696 576 ) bricks/c_tn_m1 0 10 57 1 1 0 0 0 +} +// brush 3749 +{ +( -3440 -716 544 ) ( -3412 -652 544 ) ( -3440 -637 576 ) bricks/c_tn_m1 99 3 66 1 1 0 0 0 +( -3412 -652 592 ) ( -3412 -652 544 ) ( -3440 -716 544 ) bricks/c_tn_m1 99 3 66 1 1 0 0 0 +( -3440 -637 576 ) ( -3412 -652 544 ) ( -3412 -652 592 ) bricks/c_tn_m1 99 3 66 1 1 0 0 0 +( -3440 -716 592 ) ( -3440 -716 544 ) ( -3440 -637 576 ) bricks/c_tn_m1 99 3 66 1 1 0 0 0 +( -3440 -684 576 ) ( -3412 -672 576 ) ( -3412 -696 576 ) bricks/c_tn_m1 99 3 66 1 1 0 0 0 +} +// brush 3750 +{ +( -3471 -706 576 ) ( -3440 -716 544 ) ( -3440 -637 576 ) bricks/c_tn_m1 99 3 66 1 1 0 0 0 +( -3440 -716 592 ) ( -3440 -716 544 ) ( -3471 -706 576 ) bricks/c_tn_m1 99 3 66 1 1 0 0 0 +( -3440 -637 576 ) ( -3440 -716 544 ) ( -3440 -716 592 ) bricks/c_tn_m1 99 3 66 1 1 0 0 0 +( -3471 -684 576 ) ( -3440 -672 576 ) ( -3440 -696 576 ) bricks/c_tn_m1 99 3 66 1 1 0 0 0 +} +// brush 3751 +{ +( -3456 -792 544 ) ( -3440 -716 544 ) ( -3471 -706 576 ) bricks/c_tn_m1 -67 16 78 1 1 0 0 0 +( -3440 -716 592 ) ( -3440 -716 544 ) ( -3456 -792 544 ) bricks/c_tn_m1 -67 16 78 1 1 0 0 0 +( -3471 -706 576 ) ( -3440 -716 544 ) ( -3440 -716 592 ) bricks/c_tn_m1 -67 16 78 1 1 0 0 0 +( -3456 -792 544 ) ( -3471 -706 576 ) ( -3471 -706 592 ) bricks/c_tn_m1 -67 16 78 1 1 0 0 0 +( -3471 -684 576 ) ( -3440 -672 576 ) ( -3440 -696 576 ) bricks/c_tn_m1 -67 16 78 1 1 0 0 0 +} +// brush 3752 +{ +( -3488 -789 576 ) ( -3456 -792 544 ) ( -3471 -706 576 ) bricks/c_tn_m1 -67 16 78 1 1 0 0 0 +( -3456 -792 592 ) ( -3456 -792 544 ) ( -3488 -789 576 ) bricks/c_tn_m1 -67 16 78 1 1 0 0 0 +( -3471 -706 576 ) ( -3456 -792 544 ) ( -3456 -792 592 ) bricks/c_tn_m1 -67 16 78 1 1 0 0 0 +( -3488 -684 576 ) ( -3456 -672 576 ) ( -3456 -696 576 ) bricks/c_tn_m1 -67 16 78 1 1 0 0 0 +} +// brush 3753 +{ +( -3145 -96 576 ) ( -3148 -64 544 ) ( -3294 -127 576 ) bricks/c_tn_m1 0 16 192 1 1 0 0 0 +( -3148 -64 592 ) ( -3148 -64 544 ) ( -3145 -96 576 ) bricks/c_tn_m1 0 16 192 1 1 0 0 0 +( -3294 -127 576 ) ( -3148 -64 544 ) ( -3148 -64 592 ) bricks/c_tn_m1 0 16 192 1 1 0 0 0 +( -3588 -64 576 ) ( -3560 -127 576 ) ( -3616 -127 576 ) bricks/c_tn_m1 0 16 192 1 1 0 0 0 +} +// brush 3754 +{ +( -3148 -64 544 ) ( -3304 -96 544 ) ( -3294 -127 576 ) bricks/c_tn_m1 0 16 192 1 1 0 0 0 +( -3294 -127 576 ) ( -3304 -96 544 ) ( -3304 -96 592 ) bricks/c_tn_m1 0 16 192 1 1 0 0 0 +( -3304 -96 592 ) ( -3304 -96 544 ) ( -3148 -64 544 ) bricks/c_tn_m1 0 16 192 1 1 0 0 0 +( -3148 -64 592 ) ( -3148 -64 544 ) ( -3294 -127 576 ) bricks/c_tn_m1 0 16 192 1 1 0 0 0 +( -3588 -64 576 ) ( -3560 -127 576 ) ( -3616 -127 576 ) bricks/c_tn_m1 0 16 192 1 1 0 0 0 +} +// brush 3755 +{ +( -3294 -127 576 ) ( -3304 -96 544 ) ( -3420 -181 576 ) bricks/c_tn_m1 -32 14 203 1 1 0 0 0 +( -3304 -96 592 ) ( -3304 -96 544 ) ( -3294 -127 576 ) bricks/c_tn_m1 -32 14 203 1 1 0 0 0 +( -3420 -181 576 ) ( -3304 -96 544 ) ( -3304 -96 592 ) bricks/c_tn_m1 -32 14 203 1 1 0 0 0 +( -3588 -96 576 ) ( -3560 -181 576 ) ( -3616 -181 576 ) bricks/c_tn_m1 -32 14 203 1 1 0 0 0 +} +// brush 3756 +{ +( -3304 -96 544 ) ( -3436 -152 544 ) ( -3420 -181 576 ) bricks/c_tn_m1 -32 14 203 1 1 0 0 0 +( -3420 -181 576 ) ( -3436 -152 544 ) ( -3436 -152 592 ) bricks/c_tn_m1 -32 14 203 1 1 0 0 0 +( -3436 -152 592 ) ( -3436 -152 544 ) ( -3304 -96 544 ) bricks/c_tn_m1 -32 14 203 1 1 0 0 0 +( -3304 -96 592 ) ( -3304 -96 544 ) ( -3420 -181 576 ) bricks/c_tn_m1 -32 14 203 1 1 0 0 0 +( -3588 -96 576 ) ( -3560 -181 576 ) ( -3616 -181 576 ) bricks/c_tn_m1 -32 14 203 1 1 0 0 0 +} +// brush 3757 +{ +( -3539 -258 576 ) ( -3560 -232 544 ) ( -3646 -365 576 ) bricks/c_tn_m1 101 16 225 1 1 0 0 0 +( -3560 -232 592 ) ( -3560 -232 544 ) ( -3539 -258 576 ) bricks/c_tn_m1 101 16 225 1 1 0 0 0 +( -3646 -365 576 ) ( -3560 -232 544 ) ( -3560 -232 592 ) bricks/c_tn_m1 101 16 225 1 1 0 0 0 +( -3588 -232 576 ) ( -3560 -365 576 ) ( -3616 -365 576 ) bricks/c_tn_m1 101 16 225 1 1 0 0 0 +} +// brush 3758 +{ +( -3646 -365 576 ) ( -3560 -232 544 ) ( -3672 -344 544 ) bricks/c_tn_m1 101 16 225 1 1 0 0 0 +( -3646 -365 576 ) ( -3672 -344 544 ) ( -3672 -344 592 ) bricks/c_tn_m1 101 16 225 1 1 0 0 0 +( -3672 -344 544 ) ( -3560 -232 544 ) ( -3560 -232 592 ) bricks/c_tn_m1 101 16 225 1 1 0 0 0 +( -3560 -232 592 ) ( -3560 -232 544 ) ( -3646 -365 576 ) bricks/c_tn_m1 101 16 225 1 1 0 0 0 +( -3588 -232 576 ) ( -3560 -365 576 ) ( -3616 -365 576 ) bricks/c_tn_m1 101 16 225 1 1 0 0 0 +} +// brush 3759 +{ +( -3723 -484 576 ) ( -3752 -468 544 ) ( -3808 -600 544 ) bricks/c_tn_m1 104 -6 247 1 1 0 0 0 +( -3752 -468 592 ) ( -3752 -468 544 ) ( -3723 -484 576 ) bricks/c_tn_m1 104 -6 247 1 1 0 0 0 +( -3808 -600 544 ) ( -3752 -468 544 ) ( -3752 -468 592 ) bricks/c_tn_m1 104 -6 247 1 1 0 0 0 +( -3723 -484 576 ) ( -3808 -600 544 ) ( -3808 -600 592 ) bricks/c_tn_m1 104 -6 247 1 1 0 0 0 +( -3588 -468 576 ) ( -3560 -600 576 ) ( -3616 -600 576 ) bricks/c_tn_m1 104 -6 247 1 1 0 0 0 +} +// brush 3760 +{ +( -3723 -484 576 ) ( -3808 -600 544 ) ( -3777 -610 576 ) bricks/c_tn_m1 104 -6 247 1 1 0 0 0 +( -3777 -610 576 ) ( -3808 -600 544 ) ( -3808 -600 592 ) bricks/c_tn_m1 104 -6 247 1 1 0 0 0 +( -3808 -600 592 ) ( -3808 -600 544 ) ( -3723 -484 576 ) bricks/c_tn_m1 104 -6 247 1 1 0 0 0 +( -3588 -484 576 ) ( -3560 -610 576 ) ( -3616 -610 576 ) bricks/c_tn_m1 104 -6 247 1 1 0 0 0 +} +// brush 3761 +{ +( -3777 -610 576 ) ( -3808 -600 544 ) ( -3840 -756 544 ) bricks/c_tn_m1 -9 -15 258 1 1 0 0 0 +( -3808 -600 592 ) ( -3808 -600 544 ) ( -3777 -610 576 ) bricks/c_tn_m1 -9 -15 258 1 1 0 0 0 +( -3840 -756 544 ) ( -3808 -600 544 ) ( -3808 -600 592 ) bricks/c_tn_m1 -9 -15 258 1 1 0 0 0 +( -3777 -610 576 ) ( -3840 -756 544 ) ( -3840 -756 592 ) bricks/c_tn_m1 -9 -15 258 1 1 0 0 0 +( -3588 -600 576 ) ( -3560 -756 576 ) ( -3616 -756 576 ) bricks/c_tn_m1 -9 -15 258 1 1 0 0 0 +} +// brush 3762 +{ +( -3777 -610 576 ) ( -3840 -756 544 ) ( -3808 -759 576 ) bricks/c_tn_m1 -9 -15 258 1 1 0 0 0 +( -3808 -759 576 ) ( -3840 -756 544 ) ( -3840 -756 592 ) bricks/c_tn_m1 -9 -15 258 1 1 0 0 0 +( -3840 -756 592 ) ( -3840 -756 544 ) ( -3777 -610 576 ) bricks/c_tn_m1 -9 -15 258 1 1 0 0 0 +( -3588 -610 576 ) ( -3560 -759 576 ) ( -3616 -759 576 ) bricks/c_tn_m1 -9 -15 258 1 1 0 0 0 +} +// brush 3763 +{ +( -3840 -756 576 ) ( -3808 -759 576 ) ( -3808 -832 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -1104 576 ) ( -3840 -1456 576 ) ( -3840 -1456 560 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -832 576 ) ( -3808 -759 576 ) ( -3840 -756 544 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3808 -832 544 ) ( -3840 -832 544 ) ( -3824 -832 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +( -3840 -756 544 ) ( -3808 -759 576 ) ( -3840 -756 576 ) bricks/c_tn_m1 0 0 -90 1 1 0 0 0 +} +// brush 3764 +{ +( -3330 -584 368 ) ( -3330 -524 368 ) ( -3368 -524 368 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -3368 -524 384 ) ( -3330 -524 384 ) ( -3330 -584 384 ) bricks/c_sr_mr5 0 -1 44 1 1 0 0 0 +( -3368 -584 384 ) ( -3320 -536 384 ) ( -3320 -536 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3368 -584 368 ) ( -3380 -574 368 ) ( -3380 -574 384 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -3330 -524 384 ) ( -3380 -574 384 ) ( -3380 -574 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -3330 -524 368 ) ( -3320 -536 368 ) ( -3320 -536 384 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 3765 +{ +( -3472 -832 384 ) ( -3840 -832 384 ) ( -3840 -704 384 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -3840 -704 368 ) ( -3840 -832 368 ) ( -3472 -832 368 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -3456 -832 400 ) ( -3456 -794 400 ) ( -3456 -794 384 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3456 -792 384 ) ( -3472 -790 384 ) ( -3472 -790 368 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -3472 -888 528 ) ( -3472 -888 368 ) ( -3840 -888 368 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -3472 -832 368 ) ( -3472 -790 368 ) ( -3472 -790 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3766 +{ +( -3456 -736 384 ) ( -3824 -736 384 ) ( -3824 -608 384 ) bricks/c_sr_mr5 0 6 79 1 1 0 0 0 +( -3824 -608 368 ) ( -3824 -736 368 ) ( -3456 -736 368 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -3456 -792 400 ) ( -3440 -716 400 ) ( -3440 -716 240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3456 -712 240 ) ( -3440 -716 240 ) ( -3440 -716 400 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -3456 -792 256 ) ( -3440 -794 256 ) ( -3440 -794 240 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -3472 -790 240 ) ( -3456 -712 240 ) ( -3456 -712 400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3767 +{ +( -3424 -580 384 ) ( -3792 -580 384 ) ( -3792 -452 384 ) bricks/c_sr_mr5 0 2 66 1 1 0 0 0 +( -3792 -452 368 ) ( -3792 -580 368 ) ( -3424 -580 368 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -3440 -716 400 ) ( -3412 -652 400 ) ( -3412 -652 240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3412 -652 400 ) ( -3426 -644 400 ) ( -3426 -644 240 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -3440 -716 240 ) ( -3456 -712 240 ) ( -3456 -712 400 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -3426 -644 400 ) ( -3456 -712 400 ) ( -3456 -712 240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3768 +{ +( -3368 -448 384 ) ( -3736 -448 384 ) ( -3736 -320 384 ) bricks/c_sr_mr5 0 9 57 1 1 0 0 0 +( -3736 -320 368 ) ( -3736 -448 368 ) ( -3368 -448 368 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -3412 -652 400 ) ( -3368 -584 400 ) ( -3368 -584 240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3368 -584 400 ) ( -3380 -574 400 ) ( -3380 -574 240 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -3412 -652 240 ) ( -3426 -644 240 ) ( -3426 -644 400 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -3426 -644 240 ) ( -3380 -574 240 ) ( -3380 -574 400 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3769 +{ +( -3456 -536 368 ) ( -3456 -168 368 ) ( -3584 -168 368 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -3584 -168 384 ) ( -3456 -168 384 ) ( -3456 -536 384 ) bricks/c_sr_mr5 0 -19 33 1 1 0 0 0 +( -3252 -492 352 ) ( -3320 -536 352 ) ( -3320 -536 512 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -3320 -536 352 ) ( -3330 -524 352 ) ( -3330 -524 512 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3252 -492 512 ) ( -3260 -478 512 ) ( -3260 -478 352 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3260 -478 512 ) ( -3330 -524 512 ) ( -3330 -524 352 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3770 +{ +( -3324 -480 368 ) ( -3324 -112 368 ) ( -3452 -112 368 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -3452 -112 384 ) ( -3324 -112 384 ) ( -3324 -480 384 ) bricks/c_sr_mr5 0 8 24 1 1 0 0 0 +( -3188 -464 352 ) ( -3252 -492 352 ) ( -3252 -492 512 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -3252 -492 352 ) ( -3260 -478 352 ) ( -3260 -478 512 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3188 -464 512 ) ( -3192 -448 512 ) ( -3192 -448 352 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3260 -478 352 ) ( -3192 -448 352 ) ( -3192 -448 512 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3771 +{ +( -3168 -448 368 ) ( -3168 -80 368 ) ( -3296 -80 368 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -3296 -80 384 ) ( -3168 -80 384 ) ( -3168 -448 384 ) bricks/c_sr_mr5 0 -17 12 1 1 0 0 0 +( -3112 -448 352 ) ( -3188 -464 352 ) ( -3188 -464 512 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -3192 -448 512 ) ( -3188 -464 512 ) ( -3188 -464 352 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3112 -448 496 ) ( -3110 -464 496 ) ( -3110 -464 512 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3114 -432 512 ) ( -3192 -448 512 ) ( -3192 -448 352 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3772 +{ +( -3560 -318 368 ) ( -3560 -234 368 ) ( -3614 -234 368 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -3614 -234 384 ) ( -3560 -234 384 ) ( -3560 -318 384 ) bricks/c_sr_mr5 0 -19 225 1 1 0 0 0 +( -3662 -352 368 ) ( -3672 -344 368 ) ( -3672 -344 384 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -3560 -232 384 ) ( -3672 -344 384 ) ( -3672 -344 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3552 -242 384 ) ( -3560 -232 384 ) ( -3560 -232 368 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3552 -242 368 ) ( -3608 -298 368 ) ( -3608 -298 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3773 +{ +( -3456 -736 384 ) ( -3824 -736 384 ) ( -3824 -608 384 ) bricks/c_sr_mr5 0 -17 258 1 1 0 0 0 +( -3824 -608 368 ) ( -3824 -736 368 ) ( -3456 -736 368 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -3808 -600 240 ) ( -3794 -604 240 ) ( -3794 -604 400 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -3808 -600 400 ) ( -3840 -756 400 ) ( -3840 -756 240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3840 -756 400 ) ( -3824 -758 400 ) ( -3824 -758 240 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -3824 -758 400 ) ( -3794 -604 400 ) ( -3794 -604 240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3774 +{ +( -3424 -580 384 ) ( -3792 -580 384 ) ( -3792 -452 384 ) bricks/c_sr_mr5 0 -8 247 1 1 0 0 0 +( -3792 -452 368 ) ( -3792 -580 368 ) ( -3424 -580 368 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -3740 -474 400 ) ( -3752 -468 400 ) ( -3752 -468 240 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -3808 -600 240 ) ( -3752 -468 240 ) ( -3752 -468 400 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3808 -600 400 ) ( -3794 -604 400 ) ( -3794 -604 240 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -3794 -604 400 ) ( -3740 -474 400 ) ( -3740 -474 240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3775 +{ +( -3368 -448 384 ) ( -3736 -448 384 ) ( -3736 -320 384 ) bricks/c_sr_mr5 0 -13 237 1 1 0 0 0 +( -3736 -320 368 ) ( -3736 -448 368 ) ( -3368 -448 368 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -3672 -344 240 ) ( -3662 -352 240 ) ( -3662 -352 400 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -3672 -344 400 ) ( -3752 -468 400 ) ( -3752 -468 240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3752 -468 400 ) ( -3740 -474 400 ) ( -3740 -474 240 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -3740 -474 400 ) ( -3662 -352 400 ) ( -3662 -352 240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3776 +{ +( -3456 -536 368 ) ( -3456 -168 368 ) ( -3584 -168 368 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -3584 -168 384 ) ( -3456 -168 384 ) ( -3456 -536 384 ) bricks/c_sr_mr5 0 -17 213 1 1 0 0 0 +( -3560 -232 512 ) ( -3552 -242 512 ) ( -3552 -242 352 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3560 -232 352 ) ( -3436 -152 352 ) ( -3436 -152 512 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -3436 -152 352 ) ( -3430 -164 352 ) ( -3430 -164 512 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3430 -164 352 ) ( -3552 -242 352 ) ( -3552 -242 512 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3777 +{ +( -3324 -480 368 ) ( -3324 -112 368 ) ( -3452 -112 368 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -3452 -112 384 ) ( -3324 -112 384 ) ( -3324 -480 384 ) bricks/c_sr_mr5 0 -20 203 1 1 0 0 0 +( -3430 -164 352 ) ( -3436 -152 352 ) ( -3436 -152 512 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3304 -96 512 ) ( -3436 -152 512 ) ( -3436 -152 352 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -3304 -96 352 ) ( -3300 -110 352 ) ( -3300 -110 512 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3300 -110 352 ) ( -3430 -164 352 ) ( -3430 -164 512 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3778 +{ +( -3168 -448 368 ) ( -3168 -80 368 ) ( -3296 -80 368 ) bricks/c_sr_mr5 96 16 0 1 1 0 0 0 +( -3296 -80 384 ) ( -3168 -80 384 ) ( -3168 -448 384 ) bricks/c_sr_mr5 0 -18 192 1 1 0 0 0 +( -3304 -96 512 ) ( -3300 -110 512 ) ( -3300 -110 352 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3304 -96 352 ) ( -3148 -64 352 ) ( -3148 -64 512 ) bricks/c_sr_mr5 96 -16 0 1 1 0 0 0 +( -3148 -64 352 ) ( -3146 -80 352 ) ( -3146 -80 512 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -3146 -80 352 ) ( -3300 -110 352 ) ( -3300 -110 512 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3779 +{ +( -2999 -96 576 ) ( -3145 -96 576 ) ( -3148 -64 576 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -3344 -64 576 ) ( -3696 -64 576 ) ( -3696 -64 560 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -3148 -64 544 ) ( -3145 -96 576 ) ( -2999 -96 576 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -3148 -64 576 ) ( -3145 -96 576 ) ( -3148 -64 544 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -3104 -64 544 ) ( -3104 -72 544 ) ( -3104 -68 576 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +} +// brush 3780 +{ +( -3112 -448 576 ) ( -3115 -416 576 ) ( -3029 -416 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3032 -448 576 ) ( -3032 -448 544 ) ( -3072 -448 544 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3029 -416 576 ) ( -3115 -416 576 ) ( -3112 -448 544 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3112 -448 544 ) ( -3115 -416 576 ) ( -3112 -448 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3104 -424 544 ) ( -3104 -432 544 ) ( -3104 -428 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3781 +{ +( -1984 458 576 ) ( -2016 461 576 ) ( -2016 576 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -1984 448 592 ) ( -1984 576 592 ) ( -1984 576 536 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -2016 576 576 ) ( -2016 461 576 ) ( -1984 458 544 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -1960 320 544 ) ( -2024 320 544 ) ( -1992 320 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -2016 384 544 ) ( -2000 384 544 ) ( -2008 384 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -1992 376 544 ) ( -1992 384 544 ) ( -1992 380 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +} +// brush 3782 +{ +( -1984 458 576 ) ( -2016 461 576 ) ( -2016 576 576 ) common/li_pv_v4a 63 7 -90 1 1 0 1 7000 +( -2016 576 576 ) ( -2016 461 576 ) ( -1984 458 544 ) common/li_pv_v4a 63 7 -90 1 1 0 1 7000 +( -1960 320 544 ) ( -2024 320 544 ) ( -1992 320 576 ) common/li_pv_v4a 63 7 -90 1 1 0 1 7000 +( -2016 384 544 ) ( -2000 384 544 ) ( -2008 384 576 ) common/li_pv_v4a 63 7 -90 1 1 0 1 7000 +( -2008 376 544 ) ( -2008 384 544 ) ( -2008 380 576 ) common/li_pv_v4a 63 7 -90 1 1 0 1 7000 +( -1992 384 544 ) ( -1992 376 544 ) ( -1992 380 576 ) common/li_pv_v4a 63 7 -90 1 1 0 1 7000 +} +// brush 3783 +{ +( -1984 458 576 ) ( -2016 461 576 ) ( -2016 576 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -2016 576 576 ) ( -2016 461 576 ) ( -1984 458 544 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -1960 320 544 ) ( -2024 320 544 ) ( -1992 320 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -2016 384 544 ) ( -2000 384 544 ) ( -2008 384 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -2008 384 544 ) ( -2008 376 544 ) ( -2008 380 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +} +// brush 3784 +{ +( -1984 458 576 ) ( -2016 461 576 ) ( -2016 576 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -1984 448 592 ) ( -1984 576 592 ) ( -1984 576 536 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -2016 576 576 ) ( -2016 461 576 ) ( -1984 458 544 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -2016 640 544 ) ( -2000 640 544 ) ( -2008 640 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -2000 384 544 ) ( -2016 384 544 ) ( -2008 384 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +} +// brush 3785 +{ +( -2336 1080 576 ) ( -2336 1037 576 ) ( -2368 1040 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1040 544 ) ( -2336 1037 576 ) ( -2336 1080 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1968 320 544 ) ( -2032 320 544 ) ( -2000 320 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 384 544 ) ( -2344 384 544 ) ( -2356 384 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2344 376 552 ) ( -2344 384 552 ) ( -2344 380 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 3786 +{ +( -2336 1080 576 ) ( -2336 1037 576 ) ( -2368 1040 576 ) common/li_pv_v4a 63 7 -90 1 1 0 1 7000 +( -2368 1040 544 ) ( -2336 1037 576 ) ( -2336 1080 576 ) common/li_pv_v4a 63 7 -90 1 1 0 1 7000 +( -1968 320 544 ) ( -2032 320 544 ) ( -2000 320 576 ) common/li_pv_v4a 63 7 -90 1 1 0 1 7000 +( -2368 384 544 ) ( -2344 384 544 ) ( -2356 384 576 ) common/li_pv_v4a 63 7 -90 1 1 0 1 7000 +( -2360 376 544 ) ( -2360 384 544 ) ( -2360 380 576 ) common/li_pv_v4a 63 7 -90 1 1 0 1 7000 +( -2344 384 552 ) ( -2344 376 552 ) ( -2344 380 576 ) common/li_pv_v4a 63 7 -90 1 1 0 1 7000 +} +// brush 3787 +{ +( -2336 1080 576 ) ( -2336 1037 576 ) ( -2368 1040 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1040 576 ) ( -2368 1040 544 ) ( -2368 1080 544 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1040 544 ) ( -2336 1037 576 ) ( -2336 1080 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1968 320 544 ) ( -2032 320 544 ) ( -2000 320 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 384 544 ) ( -2344 384 544 ) ( -2356 384 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2360 384 544 ) ( -2360 376 544 ) ( -2360 380 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 3788 +{ +( -2336 1080 576 ) ( -2336 1037 576 ) ( -2368 1040 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1040 576 ) ( -2368 1040 544 ) ( -2368 1080 544 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1040 544 ) ( -2336 1037 576 ) ( -2336 1080 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 640 544 ) ( -2352 640 544 ) ( -2360 640 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2344 384 544 ) ( -2368 384 544 ) ( -2356 384 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 3789 +{ +( -2368 344 352 ) ( -2368 192 352 ) ( -1968 192 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 192 368 ) ( -2368 192 368 ) ( -2368 344 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 192 368 ) ( -1968 344 368 ) ( -1968 344 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 632 368 ) ( -2384 480 368 ) ( -2384 480 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1960 320 352 ) ( -2024 320 352 ) ( -1992 320 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2352 1600 352 ) ( -2312 1600 352 ) ( -2332 1600 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3790 +{ +( -2000 656 368 ) ( -2000 192 368 ) ( -1984 192 368 ) bricks/c_sr_mr5 0 -16 90 1 1 0 0 0 +( -1984 192 384 ) ( -2000 192 384 ) ( -2000 656 384 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -1984 1280 384 ) ( -1984 1744 384 ) ( -1984 1744 368 ) bricks/c_sr_mr5 64 -1 -90 1 -1 0 0 0 +( -2000 1240 384 ) ( -2000 1240 368 ) ( -2000 1792 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -2000 1240 368 ) ( -2000 1240 384 ) ( -1984 1256 384 ) bricks/c_sr_mr5 64 -1 -90 1 -1 0 0 0 +( -2352 1600 368 ) ( -2312 1600 368 ) ( -2332 1600 384 ) bricks/c_sr_mr5 64 -16 -90 1 -1 0 0 0 +} +// brush 3791 +{ +( -1984 552 368 ) ( -1984 192 368 ) ( -1968 192 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1968 192 576 ) ( -1984 192 576 ) ( -1984 552 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1968 1304 368 ) ( -1968 1304 576 ) ( -1968 1472 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1984 1704 576 ) ( -1984 1704 368 ) ( -1984 2240 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1968 1304 576 ) ( -1968 1304 368 ) ( -1984 1256 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2352 1600 368 ) ( -2312 1600 368 ) ( -2332 1600 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3792 +{ +( -1984 1418 576 ) ( -2016 1421 576 ) ( -2016 1536 576 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +( -1984 1408 592 ) ( -1984 1536 592 ) ( -1984 1536 536 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +( -2016 1536 576 ) ( -2016 1421 576 ) ( -1984 1418 544 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +( -1976 1344 544 ) ( -2008 1344 544 ) ( -1992 1344 576 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +( -2344 1600 544 ) ( -2304 1600 544 ) ( -2324 1600 576 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +} +// brush 3793 +{ +( -2384 360 576 ) ( -2384 192 576 ) ( -1968 192 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 192 592 ) ( -2384 192 592 ) ( -2384 360 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 192 592 ) ( -1968 360 592 ) ( -1968 360 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 360 592 ) ( -2384 192 592 ) ( -2384 192 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 320 576 ) ( -2032 320 576 ) ( -2000 320 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2352 1600 576 ) ( -2312 1600 576 ) ( -2332 1600 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 3794 +{ +( -2336 2040 576 ) ( -2336 1997 576 ) ( -2368 2000 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 2000 576 ) ( -2368 2000 544 ) ( -2368 2040 544 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 2000 544 ) ( -2336 1997 576 ) ( -2336 2040 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2344 1344 544 ) ( -2360 1344 544 ) ( -2352 1344 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2344 1600 544 ) ( -2304 1600 544 ) ( -2324 1600 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 3795 +{ +( -2384 440 368 ) ( -2384 192 368 ) ( -2368 192 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2368 192 576 ) ( -2384 192 576 ) ( -2384 440 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2368 408 368 ) ( -2368 408 576 ) ( -2368 1600 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2384 440 576 ) ( -2384 192 576 ) ( -2384 192 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2368 280 576 ) ( -2368 280 368 ) ( -2384 282 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2352 1600 368 ) ( -2312 1600 368 ) ( -2332 1600 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3796 +{ +( -2368 440 368 ) ( -2368 192 368 ) ( -2352 192 368 ) bricks/c_sr_mr5 126 13 -90 1 1 0 0 0 +( -2352 192 384 ) ( -2368 192 384 ) ( -2368 440 384 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -2352 278 368 ) ( -2352 278 384 ) ( -2352 1472 384 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2368 88 384 ) ( -2368 -160 384 ) ( -2368 -160 368 ) bricks/c_sr_mr5 -64 31 90 1 -1 0 0 0 +( -2352 278 384 ) ( -2352 278 368 ) ( -2368 280 368 ) bricks/c_sr_mr5 -64 14 90 1 -1 0 0 0 +( -2352 1600 368 ) ( -2312 1600 368 ) ( -2332 1600 384 ) bricks/c_sr_mr5 -64 14 90 1 -1 0 0 0 +} +// brush 3797 +{ +( -2656 -64 368 ) ( -2656 -432 368 ) ( -2528 -432 368 ) bricks/c_sr_mr5 -64 17 -180 1 1 0 0 0 +( -2528 -432 384 ) ( -2656 -432 384 ) ( -2656 -64 384 ) bricks/c_sr_mr5 0 -12 12 1 1 0 0 0 +( -2520 -416 512 ) ( -2524 -402 512 ) ( -2524 -402 352 ) bricks/c_sr_mr5 0 16 -180 1 -1 0 0 0 +( -2520 -416 352 ) ( -2676 -448 352 ) ( -2676 -448 512 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2676 -448 352 ) ( -2678 -432 352 ) ( -2678 -432 512 ) bricks/c_sr_mr5 0 16 -180 1 -1 0 0 0 +( -2678 -432 352 ) ( -2524 -402 352 ) ( -2524 -402 512 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3798 +{ +( -2500 -32 368 ) ( -2500 -400 368 ) ( -2372 -400 368 ) bricks/c_sr_mr5 -64 17 -180 1 1 0 0 0 +( -2372 -400 384 ) ( -2500 -400 384 ) ( -2500 -32 384 ) bricks/c_sr_mr5 0 -8 23 1 1 0 0 0 +( -2394 -348 352 ) ( -2388 -360 352 ) ( -2388 -360 512 ) bricks/c_sr_mr5 0 16 -180 1 -1 0 0 0 +( -2520 -416 512 ) ( -2388 -360 512 ) ( -2388 -360 352 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2520 -416 352 ) ( -2524 -402 352 ) ( -2524 -402 512 ) bricks/c_sr_mr5 0 16 -180 1 -1 0 0 0 +( -2524 -402 352 ) ( -2394 -348 352 ) ( -2394 -348 512 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3799 +{ +( -2368 24 368 ) ( -2368 -344 368 ) ( -2240 -344 368 ) bricks/c_sr_mr5 -64 17 -180 1 1 0 0 0 +( -2240 -344 384 ) ( -2368 -344 384 ) ( -2368 24 384 ) bricks/c_sr_mr5 0 5 33 1 1 0 0 0 +( -2264 -280 512 ) ( -2272 -270 512 ) ( -2272 -270 352 ) bricks/c_sr_mr5 0 16 -180 1 -1 0 0 0 +( -2264 -280 352 ) ( -2388 -360 352 ) ( -2388 -360 512 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2388 -360 352 ) ( -2394 -348 352 ) ( -2394 -348 512 ) bricks/c_sr_mr5 0 16 -180 1 -1 0 0 0 +( -2394 -348 352 ) ( -2272 -270 352 ) ( -2272 -270 512 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3800 +{ +( -2456 -64 384 ) ( -2088 -64 384 ) ( -2088 -192 384 ) bricks/c_sr_mr5 0 16 57 1 1 0 0 0 +( -2088 -192 368 ) ( -2088 -64 368 ) ( -2456 -64 368 ) bricks/c_sr_mr5 -64 17 -180 1 1 0 0 0 +( -2152 -168 240 ) ( -2162 -160 240 ) ( -2162 -160 400 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2152 -168 400 ) ( -2072 -44 400 ) ( -2072 -44 240 ) bricks/c_sr_mr5 0 16 -180 1 -1 0 0 0 +( -2072 -44 400 ) ( -2084 -38 400 ) ( -2084 -38 240 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2084 -38 400 ) ( -2162 -160 400 ) ( -2162 -160 240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3801 +{ +( -2400 68 384 ) ( -2032 68 384 ) ( -2032 -60 384 ) bricks/c_sr_mr5 0 1 67 1 1 0 0 0 +( -2032 -60 368 ) ( -2032 68 368 ) ( -2400 68 368 ) bricks/c_sr_mr5 -64 17 -180 1 1 0 0 0 +( -2084 -38 400 ) ( -2072 -44 400 ) ( -2072 -44 240 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2016 88 240 ) ( -2072 -44 240 ) ( -2072 -44 400 ) bricks/c_sr_mr5 0 16 -180 1 -1 0 0 0 +( -2016 88 400 ) ( -2030 92 400 ) ( -2030 92 240 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2030 92 400 ) ( -2084 -38 400 ) ( -2084 -38 240 ) bricks/c_sr_mr5 0 16 -180 1 -1 0 0 0 +} +// brush 3802 +{ +( -2368 224 384 ) ( -2000 224 384 ) ( -2000 96 384 ) bricks/c_sr_mr5 0 6 78 1 1 0 0 0 +( -2000 96 368 ) ( -2000 224 368 ) ( -2368 224 368 ) bricks/c_sr_mr5 -64 17 -180 1 1 0 0 0 +( -2016 88 240 ) ( -2030 92 240 ) ( -2030 92 400 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2016 88 400 ) ( -1984 244 400 ) ( -1984 244 240 ) bricks/c_sr_mr5 0 16 -180 1 -1 0 0 0 +( -1984 244 400 ) ( -2000 246 400 ) ( -2000 246 240 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2000 246 400 ) ( -2030 92 400 ) ( -2030 92 240 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3803 +{ +( -2352 320 384 ) ( -1984 320 384 ) ( -1984 192 384 ) bricks/c_sr_mr5 62 0 90 1 1 0 0 0 +( -1984 192 368 ) ( -1984 320 368 ) ( -2352 320 368 ) bricks/c_sr_mr5 -64 17 -180 1 1 0 0 0 +( -1984 244 224 ) ( -2000 246 224 ) ( -2000 246 384 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -1984 320 224 ) ( -1984 244 224 ) ( -1984 244 384 ) bricks/c_sr_mr5 0 16 -180 1 -1 0 0 0 +( -2352 320 512 ) ( -2352 320 352 ) ( -1984 320 352 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2000 320 384 ) ( -2000 246 384 ) ( -2000 246 224 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3804 +{ +( -2264 -194 368 ) ( -2264 -278 368 ) ( -2210 -278 368 ) bricks/c_sr_mr5 -64 17 -180 1 1 0 0 0 +( -2210 -278 384 ) ( -2264 -278 384 ) ( -2264 -194 384 ) bricks/c_sr_mr5 0 -7 45 1 1 0 0 0 +( -2162 -160 368 ) ( -2152 -168 368 ) ( -2152 -168 384 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2264 -280 384 ) ( -2152 -168 384 ) ( -2152 -168 368 ) bricks/c_sr_mr5 -32 16 -180 1 -1 0 0 0 +( -2272 -270 384 ) ( -2264 -280 384 ) ( -2264 -280 368 ) bricks/c_sr_mr5 0 16 -180 1 -1 0 0 0 +( -2272 -270 368 ) ( -2216 -214 368 ) ( -2216 -214 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3805 +{ +( -2656 -64 368 ) ( -2656 -432 368 ) ( -2528 -432 368 ) bricks/c_sr_mr5 -64 17 -180 1 1 0 0 0 +( -2528 -432 384 ) ( -2656 -432 384 ) ( -2656 -64 384 ) bricks/c_sr_mr5 0 9 192 1 1 0 0 0 +( -2712 -64 352 ) ( -2636 -48 352 ) ( -2636 -48 512 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2632 -64 512 ) ( -2636 -48 512 ) ( -2636 -48 352 ) bricks/c_sr_mr5 0 16 -180 1 -1 0 0 0 +( -2712 -64 496 ) ( -2714 -48 496 ) ( -2714 -48 512 ) bricks/c_sr_mr5 0 16 -180 1 -1 0 0 0 +( -2710 -80 512 ) ( -2632 -64 512 ) ( -2632 -64 352 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3806 +{ +( -2500 -32 368 ) ( -2500 -400 368 ) ( -2372 -400 368 ) bricks/c_sr_mr5 -64 17 -180 1 1 0 0 0 +( -2372 -400 384 ) ( -2500 -400 384 ) ( -2500 -32 384 ) bricks/c_sr_mr5 0 -6 204 1 1 0 0 0 +( -2636 -48 352 ) ( -2572 -20 352 ) ( -2572 -20 512 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2572 -20 352 ) ( -2564 -34 352 ) ( -2564 -34 512 ) bricks/c_sr_mr5 0 16 -180 1 -1 0 0 0 +( -2636 -48 512 ) ( -2632 -64 512 ) ( -2632 -64 352 ) bricks/c_sr_mr5 0 16 -180 1 -1 0 0 0 +( -2564 -34 352 ) ( -2632 -64 352 ) ( -2632 -64 512 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3807 +{ +( -2368 24 368 ) ( -2368 -344 368 ) ( -2240 -344 368 ) bricks/c_sr_mr5 -64 17 -180 1 1 0 0 0 +( -2240 -344 384 ) ( -2368 -344 384 ) ( -2368 24 384 ) bricks/c_sr_mr5 0 -4 212 1 1 0 0 0 +( -2572 -20 352 ) ( -2504 24 352 ) ( -2504 24 512 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2504 24 352 ) ( -2494 12 352 ) ( -2494 12 512 ) bricks/c_sr_mr5 0 16 -180 1 -1 0 0 0 +( -2572 -20 512 ) ( -2564 -34 512 ) ( -2564 -34 352 ) bricks/c_sr_mr5 0 16 -180 1 -1 0 0 0 +( -2564 -34 512 ) ( -2494 12 512 ) ( -2494 12 352 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 3808 +{ +( -2456 -64 384 ) ( -2088 -64 384 ) ( -2088 -192 384 ) bricks/c_sr_mr5 0 12 237 1 1 0 0 0 +( -2088 -192 368 ) ( -2088 -64 368 ) ( -2456 -64 368 ) bricks/c_sr_mr5 -64 17 -180 1 1 0 0 0 +( -2412 140 400 ) ( -2456 72 400 ) ( -2456 72 240 ) bricks/c_sr_mr5 0 16 -180 1 -1 0 0 0 +( -2456 72 400 ) ( -2444 62 400 ) ( -2444 62 240 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2412 140 240 ) ( -2398 132 240 ) ( -2398 132 400 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2398 132 240 ) ( -2444 62 240 ) ( -2444 62 400 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3809 +{ +( -2400 68 384 ) ( -2032 68 384 ) ( -2032 -60 384 ) bricks/c_sr_mr5 0 9 246 1 1 0 0 0 +( -2032 -60 368 ) ( -2032 68 368 ) ( -2400 68 368 ) bricks/c_sr_mr5 -64 17 -180 1 1 0 0 0 +( -2384 204 400 ) ( -2412 140 400 ) ( -2412 140 240 ) bricks/c_sr_mr5 0 16 -180 1 -1 0 0 0 +( -2412 140 400 ) ( -2398 132 400 ) ( -2398 132 240 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2384 204 240 ) ( -2368 200 240 ) ( -2368 200 400 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2398 132 400 ) ( -2368 200 400 ) ( -2368 200 240 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3810 +{ +( -2368 224 384 ) ( -2000 224 384 ) ( -2000 96 384 ) bricks/c_sr_mr5 0 -7 258 1 1 0 0 0 +( -2000 96 368 ) ( -2000 224 368 ) ( -2368 224 368 ) bricks/c_sr_mr5 -64 17 -180 1 1 0 0 0 +( -2368 280 400 ) ( -2384 204 400 ) ( -2384 204 240 ) bricks/c_sr_mr5 0 16 -180 1 -1 0 0 0 +( -2368 200 240 ) ( -2384 204 240 ) ( -2384 204 400 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2368 280 256 ) ( -2384 282 256 ) ( -2384 282 240 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2352 278 240 ) ( -2368 200 240 ) ( -2368 200 400 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 3811 +{ +( -2494 72 368 ) ( -2494 12 368 ) ( -2456 12 368 ) bricks/c_sr_mr5 -64 17 -180 1 1 0 0 0 +( -2456 12 384 ) ( -2494 12 384 ) ( -2494 72 384 ) bricks/c_sr_mr5 0 3 225 1 1 0 0 0 +( -2456 72 384 ) ( -2504 24 384 ) ( -2504 24 368 ) bricks/c_sr_mr5 -96 16 -180 1 -1 0 0 0 +( -2456 72 368 ) ( -2444 62 368 ) ( -2444 62 384 ) bricks/c_sr_mr5 -64 15 -180 1 -1 0 0 0 +( -2494 12 384 ) ( -2444 62 384 ) ( -2444 62 368 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2494 12 368 ) ( -2504 24 368 ) ( -2504 24 384 ) bricks/c_sr_mr5 0 16 -180 1 -1 0 0 0 +} +// brush 3812 +{ +( -2752 -416 576 ) ( -2679 -416 576 ) ( -2676 -448 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -3376 -448 560 ) ( -3376 -448 576 ) ( -3024 -448 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2676 -448 544 ) ( -2679 -416 576 ) ( -2752 -416 576 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2720 -432 576 ) ( -2720 -448 544 ) ( -2720 -416 544 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2676 -448 576 ) ( -2679 -416 576 ) ( -2676 -448 544 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 3813 +{ +( -1984 244 576 ) ( -2016 247 576 ) ( -2016 320 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -1984 592 576 ) ( -1984 944 576 ) ( -1984 944 560 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -2016 320 576 ) ( -2016 247 576 ) ( -1984 244 544 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -2016 320 544 ) ( -1984 320 544 ) ( -2000 320 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -1984 244 544 ) ( -2016 247 576 ) ( -1984 244 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +} +// brush 3814 +{ +( -2047 98 576 ) ( -1984 244 544 ) ( -2016 247 576 ) bricks/c_tn_m1 -88 7 78 1 1 0 0 0 +( -2016 247 576 ) ( -1984 244 544 ) ( -1984 244 592 ) bricks/c_tn_m1 -88 7 78 1 1 0 0 0 +( -1984 244 592 ) ( -1984 244 544 ) ( -2047 98 576 ) bricks/c_tn_m1 -88 7 78 1 1 0 0 0 +( -2236 98 576 ) ( -2264 247 576 ) ( -2208 247 576 ) bricks/c_tn_m1 -88 7 78 1 1 0 0 0 +} +// brush 3815 +{ +( -2047 98 576 ) ( -2016 88 544 ) ( -1984 244 544 ) bricks/c_tn_m1 -88 7 78 1 1 0 0 0 +( -2016 88 592 ) ( -2016 88 544 ) ( -2047 98 576 ) bricks/c_tn_m1 -88 7 78 1 1 0 0 0 +( -1984 244 544 ) ( -2016 88 544 ) ( -2016 88 592 ) bricks/c_tn_m1 -88 7 78 1 1 0 0 0 +( -2047 98 576 ) ( -1984 244 544 ) ( -1984 244 592 ) bricks/c_tn_m1 -88 7 78 1 1 0 0 0 +( -2236 88 576 ) ( -2264 244 576 ) ( -2208 244 576 ) bricks/c_tn_m1 -88 7 78 1 1 0 0 0 +} +// brush 3816 +{ +( -2101 -28 576 ) ( -2016 88 544 ) ( -2047 98 576 ) bricks/c_tn_m1 35 3 67 1 1 0 0 0 +( -2047 98 576 ) ( -2016 88 544 ) ( -2016 88 592 ) bricks/c_tn_m1 35 3 67 1 1 0 0 0 +( -2016 88 592 ) ( -2016 88 544 ) ( -2101 -28 576 ) bricks/c_tn_m1 35 3 67 1 1 0 0 0 +( -2236 -28 576 ) ( -2264 98 576 ) ( -2208 98 576 ) bricks/c_tn_m1 35 3 67 1 1 0 0 0 +} +// brush 3817 +{ +( -2101 -28 576 ) ( -2072 -44 544 ) ( -2016 88 544 ) bricks/c_tn_m1 35 3 67 1 1 0 0 0 +( -2072 -44 592 ) ( -2072 -44 544 ) ( -2101 -28 576 ) bricks/c_tn_m1 35 3 67 1 1 0 0 0 +( -2016 88 544 ) ( -2072 -44 544 ) ( -2072 -44 592 ) bricks/c_tn_m1 35 3 67 1 1 0 0 0 +( -2101 -28 576 ) ( -2016 88 544 ) ( -2016 88 592 ) bricks/c_tn_m1 35 3 67 1 1 0 0 0 +( -2236 -44 576 ) ( -2264 88 576 ) ( -2208 88 576 ) bricks/c_tn_m1 35 3 67 1 1 0 0 0 +} +// brush 3818 +{ +( -2178 -147 576 ) ( -2264 -280 544 ) ( -2152 -168 544 ) bricks/c_tn_m1 -27 -3 45 1 1 0 0 0 +( -2178 -147 576 ) ( -2152 -168 544 ) ( -2152 -168 592 ) bricks/c_tn_m1 -27 -3 45 1 1 0 0 0 +( -2152 -168 544 ) ( -2264 -280 544 ) ( -2264 -280 592 ) bricks/c_tn_m1 -27 -3 45 1 1 0 0 0 +( -2264 -280 592 ) ( -2264 -280 544 ) ( -2178 -147 576 ) bricks/c_tn_m1 -27 -3 45 1 1 0 0 0 +( -2236 -280 576 ) ( -2264 -147 576 ) ( -2208 -147 576 ) bricks/c_tn_m1 -27 -3 45 1 1 0 0 0 +} +// brush 3819 +{ +( -2285 -254 576 ) ( -2264 -280 544 ) ( -2178 -147 576 ) bricks/c_tn_m1 -27 -3 45 1 1 0 0 0 +( -2264 -280 592 ) ( -2264 -280 544 ) ( -2285 -254 576 ) bricks/c_tn_m1 -27 -3 45 1 1 0 0 0 +( -2178 -147 576 ) ( -2264 -280 544 ) ( -2264 -280 592 ) bricks/c_tn_m1 -27 -3 45 1 1 0 0 0 +( -2236 -280 576 ) ( -2264 -147 576 ) ( -2208 -147 576 ) bricks/c_tn_m1 -27 -3 45 1 1 0 0 0 +} +// brush 3820 +{ +( -2520 -416 544 ) ( -2388 -360 544 ) ( -2404 -331 576 ) bricks/c_tn_m1 -46 -5 23 1 1 0 0 0 +( -2404 -331 576 ) ( -2388 -360 544 ) ( -2388 -360 592 ) bricks/c_tn_m1 -46 -5 23 1 1 0 0 0 +( -2388 -360 592 ) ( -2388 -360 544 ) ( -2520 -416 544 ) bricks/c_tn_m1 -46 -5 23 1 1 0 0 0 +( -2520 -416 592 ) ( -2520 -416 544 ) ( -2404 -331 576 ) bricks/c_tn_m1 -46 -5 23 1 1 0 0 0 +( -2236 -416 576 ) ( -2264 -331 576 ) ( -2208 -331 576 ) bricks/c_tn_m1 -46 -5 23 1 1 0 0 0 +} +// brush 3821 +{ +( -2530 -385 576 ) ( -2520 -416 544 ) ( -2404 -331 576 ) bricks/c_tn_m1 -46 -5 23 1 1 0 0 0 +( -2520 -416 592 ) ( -2520 -416 544 ) ( -2530 -385 576 ) bricks/c_tn_m1 -46 -5 23 1 1 0 0 0 +( -2404 -331 576 ) ( -2520 -416 544 ) ( -2520 -416 592 ) bricks/c_tn_m1 -46 -5 23 1 1 0 0 0 +( -2236 -416 576 ) ( -2264 -331 576 ) ( -2208 -331 576 ) bricks/c_tn_m1 -46 -5 23 1 1 0 0 0 +} +// brush 3822 +{ +( -2676 -448 544 ) ( -2520 -416 544 ) ( -2530 -385 576 ) bricks/c_tn_m1 32 -10 12 1 1 0 0 0 +( -2530 -385 576 ) ( -2520 -416 544 ) ( -2520 -416 592 ) bricks/c_tn_m1 32 -10 12 1 1 0 0 0 +( -2520 -416 592 ) ( -2520 -416 544 ) ( -2676 -448 544 ) bricks/c_tn_m1 32 -10 12 1 1 0 0 0 +( -2676 -448 592 ) ( -2676 -448 544 ) ( -2530 -385 576 ) bricks/c_tn_m1 32 -10 12 1 1 0 0 0 +( -2236 -448 576 ) ( -2264 -385 576 ) ( -2208 -385 576 ) bricks/c_tn_m1 32 -10 12 1 1 0 0 0 +} +// brush 3823 +{ +( -2679 -416 576 ) ( -2676 -448 544 ) ( -2530 -385 576 ) bricks/c_tn_m1 32 -10 12 1 1 0 0 0 +( -2676 -448 592 ) ( -2676 -448 544 ) ( -2679 -416 576 ) bricks/c_tn_m1 32 -10 12 1 1 0 0 0 +( -2530 -385 576 ) ( -2676 -448 544 ) ( -2676 -448 592 ) bricks/c_tn_m1 32 -10 12 1 1 0 0 0 +( -2236 -448 576 ) ( -2264 -385 576 ) ( -2208 -385 576 ) bricks/c_tn_m1 32 -10 12 1 1 0 0 0 +} +// brush 3824 +{ +( -2712 -64 576 ) ( -2709 -96 576 ) ( -2752 -96 576 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -2752 -64 544 ) ( -2712 -64 544 ) ( -2712 -64 576 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -2752 -96 576 ) ( -2709 -96 576 ) ( -2712 -64 544 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -2720 -96 544 ) ( -2720 -64 544 ) ( -2720 -80 576 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +( -2712 -64 544 ) ( -2709 -96 576 ) ( -2712 -64 576 ) bricks/c_tn_m1 0 0 0 1 -1 0 0 0 +} +// brush 3825 +{ +( -2336 320 576 ) ( -2336 277 576 ) ( -2368 280 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 280 576 ) ( -2368 280 544 ) ( -2368 320 544 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 280 544 ) ( -2336 277 576 ) ( -2336 320 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2352 320 576 ) ( -2368 320 544 ) ( -2336 320 544 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 280 576 ) ( -2336 277 576 ) ( -2368 280 544 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 3826 +{ +( -2336 277 576 ) ( -2368 280 544 ) ( -2353 194 576 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -2368 280 592 ) ( -2368 280 544 ) ( -2336 277 576 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -2353 194 576 ) ( -2368 280 544 ) ( -2368 280 592 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -2336 172 576 ) ( -2368 160 576 ) ( -2368 184 576 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +} +// brush 3827 +{ +( -2368 280 544 ) ( -2384 204 544 ) ( -2353 194 576 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -2384 204 592 ) ( -2384 204 544 ) ( -2368 280 544 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -2353 194 576 ) ( -2384 204 544 ) ( -2384 204 592 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -2368 280 544 ) ( -2353 194 576 ) ( -2353 194 592 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -2353 172 576 ) ( -2384 160 576 ) ( -2384 184 576 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +} +// brush 3828 +{ +( -2353 194 576 ) ( -2384 204 544 ) ( -2384 125 576 ) bricks/c_tn_m1 0 11 246 1 1 0 0 0 +( -2384 204 592 ) ( -2384 204 544 ) ( -2353 194 576 ) bricks/c_tn_m1 0 11 246 1 1 0 0 0 +( -2384 125 576 ) ( -2384 204 544 ) ( -2384 204 592 ) bricks/c_tn_m1 0 11 246 1 1 0 0 0 +( -2353 172 576 ) ( -2384 160 576 ) ( -2384 184 576 ) bricks/c_tn_m1 0 11 246 1 1 0 0 0 +} +// brush 3829 +{ +( -2384 204 544 ) ( -2412 140 544 ) ( -2384 125 576 ) bricks/c_tn_m1 0 11 246 1 1 0 0 0 +( -2412 140 592 ) ( -2412 140 544 ) ( -2384 204 544 ) bricks/c_tn_m1 0 11 246 1 1 0 0 0 +( -2384 125 576 ) ( -2412 140 544 ) ( -2412 140 592 ) bricks/c_tn_m1 0 11 246 1 1 0 0 0 +( -2384 204 592 ) ( -2384 204 544 ) ( -2384 125 576 ) bricks/c_tn_m1 0 11 246 1 1 0 0 0 +( -2384 172 576 ) ( -2412 160 576 ) ( -2412 184 576 ) bricks/c_tn_m1 0 11 246 1 1 0 0 0 +} +// brush 3830 +{ +( -2384 125 576 ) ( -2412 140 544 ) ( -2431 52 576 ) bricks/c_tn_m1 0 12 237 1 1 0 0 0 +( -2412 140 592 ) ( -2412 140 544 ) ( -2384 125 576 ) bricks/c_tn_m1 0 12 237 1 1 0 0 0 +( -2431 52 576 ) ( -2412 140 544 ) ( -2412 140 592 ) bricks/c_tn_m1 0 12 237 1 1 0 0 0 +( -2384 172 576 ) ( -2431 160 576 ) ( -2431 184 576 ) bricks/c_tn_m1 0 12 237 1 1 0 0 0 +} +// brush 3831 +{ +( -2412 140 544 ) ( -2456 72 544 ) ( -2431 52 576 ) bricks/c_tn_m1 0 12 237 1 1 0 0 0 +( -2456 72 592 ) ( -2456 72 544 ) ( -2412 140 544 ) bricks/c_tn_m1 0 12 237 1 1 0 0 0 +( -2431 52 576 ) ( -2456 72 544 ) ( -2456 72 592 ) bricks/c_tn_m1 0 12 237 1 1 0 0 0 +( -2412 140 592 ) ( -2412 140 544 ) ( -2431 52 576 ) bricks/c_tn_m1 0 12 237 1 1 0 0 0 +( -2412 172 576 ) ( -2456 160 576 ) ( -2456 184 576 ) bricks/c_tn_m1 0 12 237 1 1 0 0 0 +} +// brush 3832 +{ +( -2484 -1 576 ) ( -2504 24 544 ) ( -2572 -20 544 ) bricks/c_tn_m1 0 -8 213 1 1 0 0 0 +( -2572 -20 544 ) ( -2504 24 544 ) ( -2504 24 592 ) bricks/c_tn_m1 0 -8 213 1 1 0 0 0 +( -2504 24 592 ) ( -2504 24 544 ) ( -2484 -1 576 ) bricks/c_tn_m1 0 -8 213 1 1 0 0 0 +( -2484 -1 576 ) ( -2572 -20 544 ) ( -2572 -20 592 ) bricks/c_tn_m1 0 -8 213 1 1 0 0 0 +( -2484 172 576 ) ( -2572 160 576 ) ( -2572 184 576 ) bricks/c_tn_m1 0 -8 213 1 1 0 0 0 +} +// brush 3833 +{ +( -2484 -1 576 ) ( -2572 -20 544 ) ( -2557 -48 576 ) bricks/c_tn_m1 0 -8 213 1 1 0 0 0 +( -2557 -48 576 ) ( -2572 -20 544 ) ( -2572 -20 592 ) bricks/c_tn_m1 0 -8 213 1 1 0 0 0 +( -2572 -20 592 ) ( -2572 -20 544 ) ( -2484 -1 576 ) bricks/c_tn_m1 0 -8 213 1 1 0 0 0 +( -2484 172 576 ) ( -2572 160 576 ) ( -2572 184 576 ) bricks/c_tn_m1 0 -8 213 1 1 0 0 0 +} +// brush 3834 +{ +( -2557 -48 576 ) ( -2572 -20 544 ) ( -2636 -48 544 ) bricks/c_tn_m1 0 -4 204 1 1 0 0 0 +( -2636 -48 544 ) ( -2572 -20 544 ) ( -2572 -20 592 ) bricks/c_tn_m1 0 -4 204 1 1 0 0 0 +( -2572 -20 592 ) ( -2572 -20 544 ) ( -2557 -48 576 ) bricks/c_tn_m1 0 -4 204 1 1 0 0 0 +( -2557 -48 576 ) ( -2636 -48 544 ) ( -2636 -48 592 ) bricks/c_tn_m1 0 -4 204 1 1 0 0 0 +( -2557 172 576 ) ( -2636 160 576 ) ( -2636 184 576 ) bricks/c_tn_m1 0 -4 204 1 1 0 0 0 +} +// brush 3835 +{ +( -2557 -48 576 ) ( -2636 -48 544 ) ( -2626 -79 576 ) bricks/c_tn_m1 0 -4 204 1 1 0 0 0 +( -2626 -79 576 ) ( -2636 -48 544 ) ( -2636 -48 592 ) bricks/c_tn_m1 0 -4 204 1 1 0 0 0 +( -2636 -48 592 ) ( -2636 -48 544 ) ( -2557 -48 576 ) bricks/c_tn_m1 0 -4 204 1 1 0 0 0 +( -2557 172 576 ) ( -2636 160 576 ) ( -2636 184 576 ) bricks/c_tn_m1 0 -4 204 1 1 0 0 0 +} +// brush 3836 +{ +( -2626 -79 576 ) ( -2636 -48 544 ) ( -2712 -64 544 ) bricks/c_tn_m1 0 11 192 1 1 0 0 0 +( -2712 -64 544 ) ( -2636 -48 544 ) ( -2636 -48 592 ) bricks/c_tn_m1 0 11 192 1 1 0 0 0 +( -2636 -48 592 ) ( -2636 -48 544 ) ( -2626 -79 576 ) bricks/c_tn_m1 0 11 192 1 1 0 0 0 +( -2626 -79 592 ) ( -2626 -79 576 ) ( -2712 -64 544 ) bricks/c_tn_m1 0 11 192 1 1 0 0 0 +( -2626 172 576 ) ( -2712 160 576 ) ( -2712 184 576 ) bricks/c_tn_m1 0 11 192 1 1 0 0 0 +} +// brush 3837 +{ +( -2626 -79 576 ) ( -2712 -64 544 ) ( -2709 -96 576 ) bricks/c_tn_m1 0 11 192 1 1 0 0 0 +( -2709 -96 576 ) ( -2712 -64 544 ) ( -2712 -64 592 ) bricks/c_tn_m1 0 11 192 1 1 0 0 0 +( -2712 -64 592 ) ( -2712 -64 544 ) ( -2626 -79 576 ) bricks/c_tn_m1 0 11 192 1 1 0 0 0 +( -2626 172 576 ) ( -2712 160 576 ) ( -2712 184 576 ) bricks/c_tn_m1 0 11 192 1 1 0 0 0 +} +// brush 3838 +{ +( -2752 -448 592 ) ( -2676 -448 592 ) ( -2676 -448 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2676 -448 592 ) ( -2520 -416 592 ) ( -2520 -416 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2520 -416 592 ) ( -2388 -360 592 ) ( -2388 -360 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2388 -360 592 ) ( -2264 -280 592 ) ( -2264 -280 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2264 -280 592 ) ( -2152 -168 592 ) ( -2152 -168 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2152 -168 592 ) ( -2072 -44 592 ) ( -2072 -44 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2072 -44 592 ) ( -2016 88 592 ) ( -2016 88 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1984 244 576 ) ( -2016 88 576 ) ( -2016 88 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1984 320 576 ) ( -1984 244 576 ) ( -1984 244 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1984 -448 576 ) ( -1984 1088 576 ) ( -3520 1088 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3520 1088 592 ) ( -1984 1088 592 ) ( -1984 -448 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2752 -228 592 ) ( -2752 -256 528 ) ( -2752 -200 528 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2120 320 592 ) ( -2152 320 528 ) ( -2088 320 528 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2560 128 592 ) ( -2752 -64 576 ) ( -2368 320 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 3839 +{ +( -2752 -448 368 ) ( -2676 -448 368 ) ( -2676 -448 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2676 -448 368 ) ( -2520 -416 368 ) ( -2520 -416 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2520 -416 368 ) ( -2388 -360 368 ) ( -2388 -360 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2388 -360 368 ) ( -2264 -280 368 ) ( -2264 -280 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2264 -280 368 ) ( -2152 -168 368 ) ( -2152 -168 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2152 -168 368 ) ( -2072 -44 368 ) ( -2072 -44 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2072 -44 368 ) ( -2016 88 368 ) ( -2016 88 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1984 244 352 ) ( -2016 88 352 ) ( -2016 88 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1984 320 352 ) ( -1984 244 352 ) ( -1984 244 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1984 -448 352 ) ( -1984 1088 352 ) ( -3520 1088 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3520 1088 368 ) ( -1984 1088 368 ) ( -1984 -448 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2752 -228 368 ) ( -2752 -256 304 ) ( -2752 -200 304 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2120 320 368 ) ( -2152 320 304 ) ( -2088 320 304 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2560 128 368 ) ( -2752 -64 352 ) ( -2368 320 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3840 +{ +( -2368 224 576 ) ( -2000 224 576 ) ( -2000 96 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2384 282 432 ) ( -2400 208 432 ) ( -2400 208 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2384 204 560 ) ( -2400 208 560 ) ( -2400 208 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2368 280 432 ) ( -2384 282 432 ) ( -2384 282 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2376 242 352 ) ( -2384 204 368 ) ( -2368 280 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2472 204 368 ) ( -2440 204 368 ) ( -2456 282 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3841 +{ +( -2400 68 576 ) ( -2032 68 576 ) ( -2032 -60 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2400 208 368 ) ( -2426 148 368 ) ( -2426 148 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2412 140 560 ) ( -2426 148 560 ) ( -2426 148 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2384 204 576 ) ( -2400 208 576 ) ( -2400 208 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2398 172 496 ) ( -2412 140 512 ) ( -2384 204 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2472 140 368 ) ( -2440 140 368 ) ( -2456 208 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3842 +{ +( -2456 -64 576 ) ( -2088 -64 576 ) ( -2088 -192 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2426 148 432 ) ( -2470 82 432 ) ( -2470 82 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2456 72 576 ) ( -2456 72 368 ) ( -2470 82 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2412 140 576 ) ( -2426 148 576 ) ( -2426 148 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2456 72 368 ) ( -2456 72 576 ) ( -2412 140 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2472 71 368 ) ( -2440 71 368 ) ( -2456 148 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3843 +{ +( -2116 -264 576 ) ( -2244 -264 576 ) ( -2244 104 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2514 38 352 ) ( -2470 82 352 ) ( -2470 82 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2456 72 368 ) ( -2456 72 576 ) ( -2470 82 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2504 24 576 ) ( -2504 24 368 ) ( -2514 38 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2456 72 576 ) ( -2456 72 368 ) ( -2504 24 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2472 24 368 ) ( -2440 24 368 ) ( -2456 82 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3844 +{ +( -2240 -344 576 ) ( -2368 -344 576 ) ( -2368 24 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2580 -6 416 ) ( -2514 38 416 ) ( -2514 38 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2504 24 368 ) ( -2504 24 576 ) ( -2514 38 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2572 -20 560 ) ( -2580 -6 560 ) ( -2580 -6 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2504 24 576 ) ( -2504 24 368 ) ( -2572 -20 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2472 -20 368 ) ( -2440 -20 368 ) ( -2456 38 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3845 +{ +( -2372 -400 576 ) ( -2500 -400 576 ) ( -2500 -32 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2640 -32 352 ) ( -2580 -6 352 ) ( -2580 -6 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2572 -20 576 ) ( -2580 -6 576 ) ( -2580 -6 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2636 -48 560 ) ( -2640 -32 560 ) ( -2640 -32 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2604 -34 512 ) ( -2572 -20 496 ) ( -2636 -48 496 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2472 -48 368 ) ( -2440 -48 368 ) ( -2456 -6 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3846 +{ +( -2528 -432 576 ) ( -2656 -432 576 ) ( -2656 -64 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2714 -48 416 ) ( -2640 -32 416 ) ( -2640 -32 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2636 -48 576 ) ( -2640 -32 576 ) ( -2640 -32 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2712 -64 560 ) ( -2714 -48 560 ) ( -2714 -48 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2674 -56 512 ) ( -2636 -48 496 ) ( -2712 -64 496 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2472 -64 368 ) ( -2440 -64 368 ) ( -2456 -32 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3847 +{ +( -2352 320 576 ) ( -1984 320 576 ) ( -1984 192 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1984 244 432 ) ( -1968 242 432 ) ( -1968 242 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1968 320 496 ) ( -1968 242 496 ) ( -1968 242 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2352 320 640 ) ( -2352 320 480 ) ( -1984 320 480 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1984 310 496 ) ( -1984 320 512 ) ( -1984 300 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2472 242 368 ) ( -2440 242 368 ) ( -2456 320 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3848 +{ +( -2456 -64 576 ) ( -2088 -64 576 ) ( -2088 -192 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2152 -168 576 ) ( -2140 -178 576 ) ( -2140 -178 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2058 -52 496 ) ( -2140 -178 496 ) ( -2140 -178 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2072 -44 416 ) ( -2058 -52 416 ) ( -2058 -52 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2112 -106 416 ) ( -2072 -44 432 ) ( -2152 -168 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2472 -178 368 ) ( -2440 -178 368 ) ( -2456 -44 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3849 +{ +( -2400 68 576 ) ( -2032 68 576 ) ( -2032 -60 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2072 -44 432 ) ( -2058 -52 432 ) ( -2058 -52 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2000 82 496 ) ( -2058 -52 496 ) ( -2058 -52 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2016 88 416 ) ( -2000 82 416 ) ( -2000 82 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2044 22 416 ) ( -2016 88 432 ) ( -2072 -44 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2472 -52 368 ) ( -2440 -52 368 ) ( -2456 88 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3850 +{ +( -2368 224 576 ) ( -2000 224 576 ) ( -2000 96 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2016 88 432 ) ( -2000 82 432 ) ( -2000 82 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1968 242 496 ) ( -2000 82 496 ) ( -2000 82 512 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1984 244 416 ) ( -1968 242 416 ) ( -1968 242 432 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2000 166 352 ) ( -1984 244 368 ) ( -2016 88 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2472 82 368 ) ( -2440 82 368 ) ( -2456 244 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3851 +{ +( -2372 -400 576 ) ( -2500 -400 576 ) ( -2500 -32 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2388 -360 560 ) ( -2380 -374 560 ) ( -2380 -374 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2514 -432 368 ) ( -2380 -374 368 ) ( -2380 -374 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2520 -416 576 ) ( -2514 -432 576 ) ( -2514 -432 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2454 -388 576 ) ( -2520 -416 560 ) ( -2388 -360 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2472 -432 368 ) ( -2440 -432 368 ) ( -2456 -360 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3852 +{ +( -2528 -432 576 ) ( -2656 -432 576 ) ( -2656 -64 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2520 -416 560 ) ( -2514 -432 560 ) ( -2514 -432 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2674 -464 368 ) ( -2514 -432 368 ) ( -2514 -432 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2676 -448 576 ) ( -2674 -464 576 ) ( -2674 -464 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2598 -432 576 ) ( -2676 -448 560 ) ( -2520 -416 560 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2472 -464 368 ) ( -2440 -464 368 ) ( -2456 -416 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3853 +{ +( -2240 -344 576 ) ( -2368 -344 576 ) ( -2368 24 576 ) bricks/c_tn_m3 -67 128 0 1 1 0 0 0 +( -2264 -280 416 ) ( -2254 -292 416 ) ( -2254 -292 432 ) bricks/c_tn_m3 -67 128 0 1 1 0 0 0 +( -2380 -374 368 ) ( -2254 -292 368 ) ( -2254 -292 352 ) bricks/c_tn_m3 -67 128 0 1 1 0 0 0 +( -2388 -360 576 ) ( -2380 -374 576 ) ( -2380 -374 560 ) bricks/c_tn_m3 -67 128 0 1 1 0 0 0 +( -2326 -320 576 ) ( -2388 -360 560 ) ( -2264 -280 560 ) bricks/c_tn_m3 -67 128 0 1 1 0 0 0 +( -2472 -374 368 ) ( -2440 -374 368 ) ( -2456 -280 368 ) bricks/c_tn_m3 -67 128 0 1 1 0 0 0 +} +// brush 3854 +{ +( -2152 -292 576 ) ( -2254 -292 576 ) ( -2254 -168 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2152 -168 576 ) ( -2264 -280 576 ) ( -2264 -280 416 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2152 -168 416 ) ( -2140 -178 416 ) ( -2140 -178 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2254 -292 512 ) ( -2140 -178 512 ) ( -2140 -178 352 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2254 -292 416 ) ( -2264 -280 416 ) ( -2264 -280 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2472 -292 368 ) ( -2440 -292 368 ) ( -2456 -168 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3855 +{ +( -2016 2944 320 ) ( -1984 2944 320 ) ( -1984 2816 328 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +( -1984 2944 320 ) ( -1984 2944 288 ) ( -1984 2816 296 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +( -1984 2944 288 ) ( -2016 2944 320 ) ( -2016 2816 328 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +( -2016 2944 272 ) ( -1984 2944 272 ) ( -2000 2944 304 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +( -1984 2880 288 ) ( -2016 2880 288 ) ( -2000 2880 328 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +( -1992 2928 288 ) ( -1992 2944 288 ) ( -1992 2936 324 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +} +// brush 3856 +{ +( -2016 2944 320 ) ( -1984 2944 320 ) ( -1984 2816 328 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1984 2944 288 ) ( -2016 2944 320 ) ( -2016 2816 328 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2016 2944 272 ) ( -1984 2944 272 ) ( -2000 2944 304 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1984 2880 288 ) ( -2016 2880 288 ) ( -2000 2880 328 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2008 2928 288 ) ( -2008 2944 288 ) ( -2008 2936 324 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1992 2944 288 ) ( -1992 2928 288 ) ( -1992 2936 324 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3857 +{ +( -2016 2944 320 ) ( -1984 2944 320 ) ( -1984 2816 328 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +( -1984 2944 288 ) ( -2016 2944 320 ) ( -2016 2816 328 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +( -2016 2944 272 ) ( -1984 2944 272 ) ( -2000 2944 304 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +( -1984 2880 288 ) ( -2016 2880 288 ) ( -2000 2880 328 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +( -2008 2944 288 ) ( -2008 2928 288 ) ( -2008 2936 324 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +} +// brush 3858 +{ +( -2016 2944 320 ) ( -1984 2944 320 ) ( -1984 2816 328 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +( -1984 2944 320 ) ( -1984 2944 288 ) ( -1984 2816 296 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +( -1984 2944 288 ) ( -2016 2944 320 ) ( -2016 2816 328 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +( -1992 2816 296 ) ( -2016 2816 296 ) ( -2004 2816 328 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +( -2016 2880 288 ) ( -1984 2880 288 ) ( -2000 2880 328 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +} +// brush 3859 +{ +( -2016 2688 344 ) ( -1984 2688 344 ) ( -1984 2560 368 ) bricks/c_tn_m1 6 32 90 1 1 0 0 0 +( -1984 2688 344 ) ( -1984 2688 312 ) ( -1984 2560 336 ) bricks/c_tn_m1 6 32 90 1 1 0 0 0 +( -1984 2688 312 ) ( -2016 2688 344 ) ( -2016 2560 368 ) bricks/c_tn_m1 6 32 90 1 1 0 0 0 +( -1992 2560 336 ) ( -2016 2560 336 ) ( -2004 2560 368 ) bricks/c_tn_m1 6 32 90 1 1 0 0 0 +( -2016 2624 312 ) ( -2008 2624 312 ) ( -2012 2624 368 ) bricks/c_tn_m1 6 32 90 1 1 0 0 0 +( -1992 2608 324 ) ( -1992 2624 324 ) ( -1992 2616 368 ) bricks/c_tn_m1 6 32 90 1 1 0 0 0 +} +// brush 3860 +{ +( -2016 2688 344 ) ( -1984 2688 344 ) ( -1984 2560 368 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1984 2688 312 ) ( -2016 2688 344 ) ( -2016 2560 368 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1992 2560 336 ) ( -2016 2560 336 ) ( -2004 2560 368 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2016 2624 312 ) ( -2008 2624 312 ) ( -2012 2624 368 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2008 2608 324 ) ( -2008 2624 324 ) ( -2008 2616 368 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1992 2624 324 ) ( -1992 2608 324 ) ( -1992 2616 368 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3861 +{ +( -2016 2688 344 ) ( -1984 2688 344 ) ( -1984 2560 368 ) bricks/c_tn_m1 6 32 90 1 1 0 0 0 +( -1984 2688 312 ) ( -2016 2688 344 ) ( -2016 2560 368 ) bricks/c_tn_m1 6 32 90 1 1 0 0 0 +( -1992 2560 336 ) ( -2016 2560 336 ) ( -2004 2560 368 ) bricks/c_tn_m1 6 32 90 1 1 0 0 0 +( -2016 2624 312 ) ( -2008 2624 312 ) ( -2012 2624 368 ) bricks/c_tn_m1 6 32 90 1 1 0 0 0 +( -2008 2624 324 ) ( -2008 2608 324 ) ( -2008 2616 368 ) bricks/c_tn_m1 6 32 90 1 1 0 0 0 +} +// brush 3862 +{ +( -2016 2688 344 ) ( -1984 2688 344 ) ( -1984 2560 368 ) bricks/c_tn_m1 6 32 90 1 1 0 0 0 +( -1984 2688 344 ) ( -1984 2688 312 ) ( -1984 2560 336 ) bricks/c_tn_m1 6 32 90 1 1 0 0 0 +( -1984 2688 312 ) ( -2016 2688 344 ) ( -2016 2560 368 ) bricks/c_tn_m1 6 32 90 1 1 0 0 0 +( -2016 2688 296 ) ( -1984 2688 296 ) ( -2000 2688 328 ) bricks/c_tn_m1 6 32 90 1 1 0 0 0 +( -2008 2624 312 ) ( -2016 2624 312 ) ( -2012 2624 368 ) bricks/c_tn_m1 6 32 90 1 1 0 0 0 +} +// brush 3863 +{ +( -2016 2432 400 ) ( -1984 2432 400 ) ( -1984 2112 496 ) bricks/c_tn_m1 -21 32 90 1 1 0 0 0 +( -1984 2432 400 ) ( -1984 2432 368 ) ( -1984 2112 464 ) bricks/c_tn_m1 -21 32 90 1 1 0 0 0 +( -1984 2432 368 ) ( -2016 2432 400 ) ( -2016 2112 496 ) bricks/c_tn_m1 -21 32 90 1 1 0 0 0 +( -2016 2304 368 ) ( -1984 2304 368 ) ( -2000 2304 496 ) bricks/c_tn_m1 -21 32 90 1 1 0 0 0 +( -1992 2240 406 ) ( -2016 2240 406 ) ( -2004 2240 496 ) bricks/c_tn_m1 -21 32 90 1 1 0 0 0 +( -1992 2288 406 ) ( -1992 2304 406 ) ( -1992 2296 458 ) bricks/c_tn_m1 -21 32 90 1 1 0 0 0 +} +// brush 3864 +{ +( -2016 2432 400 ) ( -1984 2432 400 ) ( -1984 2112 496 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1984 2432 368 ) ( -2016 2432 400 ) ( -2016 2112 496 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2016 2304 368 ) ( -1984 2304 368 ) ( -2000 2304 496 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1992 2240 406 ) ( -2016 2240 406 ) ( -2004 2240 496 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2008 2280 406 ) ( -2008 2304 406 ) ( -2008 2292 458 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1992 2304 406 ) ( -1992 2288 406 ) ( -1992 2296 458 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3865 +{ +( -2016 2432 400 ) ( -1984 2432 400 ) ( -1984 2112 496 ) bricks/c_tn_m1 -21 32 90 1 1 0 0 0 +( -1984 2432 368 ) ( -2016 2432 400 ) ( -2016 2112 496 ) bricks/c_tn_m1 -21 32 90 1 1 0 0 0 +( -2016 2304 368 ) ( -1984 2304 368 ) ( -2000 2304 496 ) bricks/c_tn_m1 -21 32 90 1 1 0 0 0 +( -1992 2240 406 ) ( -2016 2240 406 ) ( -2004 2240 496 ) bricks/c_tn_m1 -21 32 90 1 1 0 0 0 +( -2008 2304 406 ) ( -2008 2280 406 ) ( -2008 2292 458 ) bricks/c_tn_m1 -21 32 90 1 1 0 0 0 +} +// brush 3866 +{ +( -2016 2432 400 ) ( -1984 2432 400 ) ( -1984 2112 496 ) bricks/c_tn_m1 -21 32 90 1 1 0 0 0 +( -1984 2432 400 ) ( -1984 2432 368 ) ( -1984 2112 464 ) bricks/c_tn_m1 -21 32 90 1 1 0 0 0 +( -1984 2432 368 ) ( -2016 2432 400 ) ( -2016 2112 496 ) bricks/c_tn_m1 -21 32 90 1 1 0 0 0 +( -2008 2112 368 ) ( -2048 2112 368 ) ( -2028 2112 496 ) bricks/c_tn_m1 -21 32 90 1 1 0 0 0 +( -2016 2240 406 ) ( -1992 2240 406 ) ( -2004 2240 496 ) bricks/c_tn_m1 -21 32 90 1 1 0 0 0 +} +// brush 3867 +{ +( -2016 2432 400 ) ( -1984 2432 400 ) ( -1984 2112 496 ) bricks/c_tn_m1 -12 32 90 1 1 0 0 0 +( -1984 2432 400 ) ( -1984 2432 368 ) ( -1984 2112 464 ) bricks/c_tn_m1 -12 32 90 1 1 0 0 0 +( -1984 2432 368 ) ( -2016 2432 400 ) ( -2016 2112 496 ) bricks/c_tn_m1 -12 32 90 1 1 0 0 0 +( -2016 2432 368 ) ( -1984 2432 368 ) ( -2000 2432 400 ) bricks/c_tn_m1 -12 32 90 1 1 0 0 0 +( -1984 2304 368 ) ( -2016 2304 368 ) ( -2000 2304 496 ) bricks/c_tn_m1 -12 32 90 1 1 0 0 0 +} +// brush 3868 +{ +( -2016 1984 528 ) ( -1984 1984 528 ) ( -1984 1856 552 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1984 1984 496 ) ( -2016 1984 528 ) ( -2016 1856 552 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2016 1984 496 ) ( -1984 1984 496 ) ( -2000 1984 528 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2000 1920 496 ) ( -2016 1920 496 ) ( -2008 1920 552 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1992 1976 496 ) ( -1992 1960 496 ) ( -1992 1968 540 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2008 1960 504 ) ( -2008 1984 504 ) ( -2008 1972 540 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3869 +{ +( -2016 1984 528 ) ( -1984 1984 528 ) ( -1984 1856 552 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -1984 1984 496 ) ( -2016 1984 528 ) ( -2016 1856 552 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -2016 1984 496 ) ( -1984 1984 496 ) ( -2000 1984 528 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -2000 1920 496 ) ( -2016 1920 496 ) ( -2008 1920 552 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -2008 1984 504 ) ( -2008 1960 504 ) ( -2008 1972 540 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +} +// brush 3870 +{ +( -2016 1984 528 ) ( -1984 1984 528 ) ( -1984 1856 552 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -1984 1984 528 ) ( -1984 1984 496 ) ( -1984 1856 520 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -1984 1984 496 ) ( -2016 1984 528 ) ( -2016 1856 552 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -2016 1984 496 ) ( -1984 1984 496 ) ( -2000 1984 528 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -2000 1920 496 ) ( -2016 1920 496 ) ( -2008 1920 552 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -1992 1960 496 ) ( -1992 1976 496 ) ( -1992 1968 540 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +} +// brush 3871 +{ +( -2016 1984 528 ) ( -1984 1984 528 ) ( -1984 1856 552 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -1984 1984 528 ) ( -1984 1984 496 ) ( -1984 1856 520 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -1984 1984 496 ) ( -2016 1984 528 ) ( -2016 1856 552 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -1992 1856 520 ) ( -2016 1856 520 ) ( -2004 1856 552 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -2016 1920 496 ) ( -2000 1920 496 ) ( -2008 1920 552 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +} +// brush 3872 +{ +( -2016 1728 568 ) ( -1984 1728 568 ) ( -1984 1600 576 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -1984 1728 568 ) ( -1984 1728 536 ) ( -1984 1600 544 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -1984 1728 536 ) ( -2016 1728 568 ) ( -2016 1600 576 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -1992 1600 544 ) ( -2016 1600 544 ) ( -2004 1600 576 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -2016 1664 536 ) ( -1984 1664 536 ) ( -2000 1664 576 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -1992 1640 540 ) ( -1992 1664 540 ) ( -1992 1652 576 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +} +// brush 3873 +{ +( -2016 1728 568 ) ( -1984 1728 568 ) ( -1984 1600 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1984 1728 536 ) ( -2016 1728 568 ) ( -2016 1600 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1992 1600 544 ) ( -2016 1600 544 ) ( -2004 1600 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2016 1664 536 ) ( -1984 1664 536 ) ( -2000 1664 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2008 1640 540 ) ( -2008 1656 540 ) ( -2008 1648 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -1992 1664 540 ) ( -1992 1640 540 ) ( -1992 1652 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3874 +{ +( -2016 1728 568 ) ( -1984 1728 568 ) ( -1984 1600 576 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -1984 1728 536 ) ( -2016 1728 568 ) ( -2016 1600 576 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -1992 1600 544 ) ( -2016 1600 544 ) ( -2004 1600 576 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -2016 1664 536 ) ( -1984 1664 536 ) ( -2000 1664 576 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -2008 1656 540 ) ( -2008 1640 540 ) ( -2008 1648 576 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +} +// brush 3875 +{ +( -2016 1728 568 ) ( -1984 1728 568 ) ( -1984 1600 576 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -1984 1728 568 ) ( -1984 1728 536 ) ( -1984 1600 544 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -1984 1728 536 ) ( -2016 1728 568 ) ( -2016 1600 576 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -2016 1728 536 ) ( -1984 1728 536 ) ( -2000 1728 568 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -1984 1664 536 ) ( -2016 1664 536 ) ( -2000 1664 576 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +} +// brush 3876 +{ +( -2368 1728 568 ) ( -2336 1728 568 ) ( -2336 1600 576 ) bricks/c_tn_m1 0 -32 -90 1 1 0 0 0 +( -2336 1728 568 ) ( -2368 1728 536 ) ( -2368 1600 544 ) bricks/c_tn_m1 0 -32 -90 1 1 0 0 0 +( -2352 1600 544 ) ( -2368 1600 544 ) ( -2360 1600 576 ) bricks/c_tn_m1 63 -1 -90 1 1 0 0 0 +( -2360 1664 536 ) ( -2352 1664 536 ) ( -2356 1664 576 ) bricks/c_tn_m1 63 -1 -90 1 1 0 0 0 +( -2344 1648 548 ) ( -2344 1664 548 ) ( -2344 1656 576 ) bricks/c_tn_m1 63 -1 -90 1 1 0 0 0 +} +// brush 3877 +{ +( -2368 1728 568 ) ( -2336 1728 568 ) ( -2336 1600 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2336 1728 568 ) ( -2368 1728 536 ) ( -2368 1600 544 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2352 1600 544 ) ( -2368 1600 544 ) ( -2360 1600 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2360 1664 536 ) ( -2352 1664 536 ) ( -2356 1664 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2360 1648 540 ) ( -2360 1664 540 ) ( -2360 1656 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2344 1664 548 ) ( -2344 1648 548 ) ( -2344 1656 576 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3878 +{ +( -2368 1728 568 ) ( -2336 1728 568 ) ( -2336 1600 576 ) bricks/c_tn_m1 0 -32 -90 1 1 0 0 0 +( -2368 1728 536 ) ( -2368 1728 568 ) ( -2368 1600 576 ) bricks/c_tn_m1 62 -1 -90 1 1 0 0 0 +( -2336 1728 568 ) ( -2368 1728 536 ) ( -2368 1600 544 ) bricks/c_tn_m1 0 -32 -90 1 1 0 0 0 +( -2352 1600 544 ) ( -2368 1600 544 ) ( -2360 1600 576 ) bricks/c_tn_m1 63 -1 -90 1 1 0 0 0 +( -2360 1664 536 ) ( -2352 1664 536 ) ( -2356 1664 576 ) bricks/c_tn_m1 63 -1 -90 1 1 0 0 0 +( -2360 1664 540 ) ( -2360 1648 540 ) ( -2360 1656 576 ) bricks/c_tn_m1 63 -1 -90 1 1 0 0 0 +} +// brush 3879 +{ +( -2368 1728 568 ) ( -2336 1728 568 ) ( -2336 1600 576 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +( -2368 1728 536 ) ( -2368 1728 568 ) ( -2368 1600 576 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +( -2336 1728 568 ) ( -2368 1728 536 ) ( -2368 1600 544 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +( -2352 1728 568 ) ( -2368 1728 536 ) ( -2336 1728 536 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +( -2352 1664 536 ) ( -2360 1664 536 ) ( -2356 1664 576 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +} +// brush 3880 +{ +( -2368 1984 528 ) ( -2336 1984 528 ) ( -2336 1856 552 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2336 1984 528 ) ( -2368 1984 496 ) ( -2368 1856 520 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2352 1984 528 ) ( -2368 1984 496 ) ( -2336 1984 496 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2336 1920 496 ) ( -2368 1920 496 ) ( -2352 1920 552 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2360 1968 496 ) ( -2360 1984 496 ) ( -2360 1976 540 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2344 1936 504 ) ( -2344 1920 504 ) ( -2344 1928 540 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3881 +{ +( -2368 1984 528 ) ( -2336 1984 528 ) ( -2336 1856 552 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +( -2336 1984 528 ) ( -2368 1984 496 ) ( -2368 1856 520 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +( -2352 1984 528 ) ( -2368 1984 496 ) ( -2336 1984 496 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +( -2336 1920 496 ) ( -2368 1920 496 ) ( -2352 1920 552 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +( -2344 1920 504 ) ( -2344 1936 504 ) ( -2344 1928 540 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +} +// brush 3882 +{ +( -2368 1984 528 ) ( -2336 1984 528 ) ( -2336 1856 552 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +( -2368 1984 496 ) ( -2368 1984 528 ) ( -2368 1856 552 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +( -2336 1984 528 ) ( -2368 1984 496 ) ( -2368 1856 520 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +( -2352 1984 528 ) ( -2368 1984 496 ) ( -2336 1984 496 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +( -2336 1920 496 ) ( -2368 1920 496 ) ( -2352 1920 552 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +( -2360 1984 496 ) ( -2360 1968 496 ) ( -2360 1976 540 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +} +// brush 3883 +{ +( -2368 1984 528 ) ( -2336 1984 528 ) ( -2336 1856 552 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +( -2368 1984 496 ) ( -2368 1984 528 ) ( -2368 1856 552 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +( -2336 1984 528 ) ( -2368 1984 496 ) ( -2368 1856 520 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +( -2352 1856 520 ) ( -2368 1856 520 ) ( -2360 1856 552 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +( -2368 1920 496 ) ( -2336 1920 496 ) ( -2352 1920 552 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +} +// brush 3884 +{ +( -2368 2432 400 ) ( -2336 2432 400 ) ( -2336 2112 496 ) bricks/c_tn_m1 22 -32 -90 1 1 0 0 0 +( -2336 2432 400 ) ( -2368 2432 368 ) ( -2368 2112 464 ) bricks/c_tn_m1 22 -32 -90 1 1 0 0 0 +( -2368 2304 368 ) ( -2336 2304 368 ) ( -2352 2304 496 ) bricks/c_tn_m1 85 -1 -90 1 1 0 0 0 +( -2336 2240 406 ) ( -2376 2240 406 ) ( -2356 2240 496 ) bricks/c_tn_m1 85 -1 -90 1 1 0 0 0 +( -2344 2288 414 ) ( -2344 2304 414 ) ( -2344 2296 458 ) bricks/c_tn_m1 85 -1 -90 1 1 0 0 0 +} +// brush 3885 +{ +( -2368 2432 400 ) ( -2336 2432 400 ) ( -2336 2112 496 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2336 2432 400 ) ( -2368 2432 368 ) ( -2368 2112 464 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2368 2304 368 ) ( -2336 2304 368 ) ( -2352 2304 496 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2336 2240 406 ) ( -2376 2240 406 ) ( -2356 2240 496 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2360 2288 406 ) ( -2360 2304 406 ) ( -2360 2296 458 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2344 2304 414 ) ( -2344 2288 414 ) ( -2344 2296 458 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3886 +{ +( -2368 2432 400 ) ( -2336 2432 400 ) ( -2336 2112 496 ) bricks/c_tn_m1 22 -32 -90 1 1 0 0 0 +( -2368 2432 368 ) ( -2368 2432 400 ) ( -2368 2112 496 ) bricks/c_tn_m1 84 -1 -90 1 1 0 0 0 +( -2336 2432 400 ) ( -2368 2432 368 ) ( -2368 2112 464 ) bricks/c_tn_m1 22 -32 -90 1 1 0 0 0 +( -2368 2304 368 ) ( -2336 2304 368 ) ( -2352 2304 496 ) bricks/c_tn_m1 85 -1 -90 1 1 0 0 0 +( -2336 2240 406 ) ( -2376 2240 406 ) ( -2356 2240 496 ) bricks/c_tn_m1 85 -1 -90 1 1 0 0 0 +( -2360 2304 406 ) ( -2360 2288 406 ) ( -2360 2296 458 ) bricks/c_tn_m1 85 -1 -90 1 1 0 0 0 +} +// brush 3887 +{ +( -2368 2432 400 ) ( -2336 2432 400 ) ( -2336 2112 496 ) bricks/c_tn_m1 22 -32 -90 1 1 0 0 0 +( -2368 2432 368 ) ( -2368 2432 400 ) ( -2368 2112 496 ) bricks/c_tn_m1 84 -1 -90 1 1 0 0 0 +( -2336 2432 400 ) ( -2368 2432 368 ) ( -2368 2112 464 ) bricks/c_tn_m1 22 -32 -90 1 1 0 0 0 +( -2008 2112 368 ) ( -2048 2112 368 ) ( -2028 2112 496 ) bricks/c_tn_m1 85 -1 -90 1 1 0 0 0 +( -2376 2240 406 ) ( -2336 2240 406 ) ( -2356 2240 496 ) bricks/c_tn_m1 85 -1 -90 1 1 0 0 0 +} +// brush 3888 +{ +( -2368 2432 400 ) ( -2336 2432 400 ) ( -2336 2112 496 ) bricks/c_tn_m1 13 -32 -90 1 1 0 0 0 +( -2368 2432 368 ) ( -2368 2432 400 ) ( -2368 2112 496 ) bricks/c_tn_m1 75 -1 -90 1 1 0 0 0 +( -2336 2432 400 ) ( -2368 2432 368 ) ( -2368 2112 464 ) bricks/c_tn_m1 13 -32 -90 1 1 0 0 0 +( -2352 2432 400 ) ( -2368 2432 368 ) ( -2336 2432 368 ) bricks/c_tn_m1 76 -1 -90 1 1 0 0 0 +( -2336 2304 368 ) ( -2368 2304 368 ) ( -2352 2304 496 ) bricks/c_tn_m1 76 -1 -90 1 1 0 0 0 +} +// brush 3889 +{ +( -2368 2688 344 ) ( -2336 2688 344 ) ( -2336 2560 368 ) bricks/c_tn_m1 -6 -32 -90 1 1 0 0 0 +( -2336 2688 344 ) ( -2368 2688 312 ) ( -2368 2560 336 ) bricks/c_tn_m1 -6 -32 -90 1 1 0 0 0 +( -2352 2560 336 ) ( -2368 2560 336 ) ( -2360 2560 368 ) bricks/c_tn_m1 -6 -32 -90 1 1 0 0 0 +( -2368 2624 312 ) ( -2344 2624 312 ) ( -2356 2624 368 ) bricks/c_tn_m1 -6 -32 -90 1 1 0 0 0 +( -2344 2616 332 ) ( -2344 2624 332 ) ( -2344 2620 368 ) bricks/c_tn_m1 -6 -32 -90 1 1 0 0 0 +} +// brush 3890 +{ +( -2368 2688 344 ) ( -2336 2688 344 ) ( -2336 2560 368 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2336 2688 344 ) ( -2368 2688 312 ) ( -2368 2560 336 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2352 2560 336 ) ( -2368 2560 336 ) ( -2360 2560 368 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2368 2624 312 ) ( -2344 2624 312 ) ( -2356 2624 368 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2360 2616 324 ) ( -2360 2624 324 ) ( -2360 2620 368 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2344 2624 332 ) ( -2344 2616 332 ) ( -2344 2620 368 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3891 +{ +( -2368 2688 344 ) ( -2336 2688 344 ) ( -2336 2560 368 ) bricks/c_tn_m1 -6 -32 -90 1 1 0 0 0 +( -2368 2688 312 ) ( -2368 2688 344 ) ( -2368 2560 368 ) bricks/c_tn_m1 -6 -32 -90 1 1 0 0 0 +( -2336 2688 344 ) ( -2368 2688 312 ) ( -2368 2560 336 ) bricks/c_tn_m1 -6 -32 -90 1 1 0 0 0 +( -2352 2560 336 ) ( -2368 2560 336 ) ( -2360 2560 368 ) bricks/c_tn_m1 -6 -32 -90 1 1 0 0 0 +( -2368 2624 312 ) ( -2344 2624 312 ) ( -2356 2624 368 ) bricks/c_tn_m1 -6 -32 -90 1 1 0 0 0 +( -2360 2624 324 ) ( -2360 2616 324 ) ( -2360 2620 368 ) bricks/c_tn_m1 -6 -32 -90 1 1 0 0 0 +} +// brush 3892 +{ +( -2368 2688 344 ) ( -2336 2688 344 ) ( -2336 2560 368 ) bricks/c_tn_m1 -6 -32 -90 1 1 0 0 0 +( -2368 2688 312 ) ( -2368 2688 344 ) ( -2368 2560 368 ) bricks/c_tn_m1 -6 -32 -90 1 1 0 0 0 +( -2336 2688 344 ) ( -2368 2688 312 ) ( -2368 2560 336 ) bricks/c_tn_m1 -6 -32 -90 1 1 0 0 0 +( -2352 2688 344 ) ( -2368 2688 312 ) ( -2336 2688 312 ) bricks/c_tn_m1 -6 -32 -90 1 1 0 0 0 +( -2344 2624 312 ) ( -2368 2624 312 ) ( -2356 2624 368 ) bricks/c_tn_m1 -6 -32 -90 1 1 0 0 0 +} +// brush 3893 +{ +( -2368 2944 320 ) ( -2336 2944 320 ) ( -2336 2816 328 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +( -2336 2944 320 ) ( -2368 2944 288 ) ( -2368 2816 296 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +( -2352 2944 320 ) ( -2368 2944 288 ) ( -2336 2944 288 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +( -2336 2880 288 ) ( -2368 2880 288 ) ( -2352 2880 328 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +( -2344 2928 296 ) ( -2344 2944 296 ) ( -2344 2936 324 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +} +// brush 3894 +{ +( -2368 2944 320 ) ( -2336 2944 320 ) ( -2336 2816 328 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2336 2944 320 ) ( -2368 2944 288 ) ( -2368 2816 296 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2352 2944 320 ) ( -2368 2944 288 ) ( -2336 2944 288 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2336 2880 288 ) ( -2368 2880 288 ) ( -2352 2880 328 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2360 2928 288 ) ( -2360 2944 288 ) ( -2360 2936 324 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +( -2344 2944 296 ) ( -2344 2928 296 ) ( -2344 2936 324 ) common/li_pv_v4a 0 8 90 1 1 0 1 7000 +} +// brush 3895 +{ +( -2368 2944 320 ) ( -2336 2944 320 ) ( -2336 2816 328 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +( -2368 2944 288 ) ( -2368 2944 320 ) ( -2368 2816 328 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +( -2336 2944 320 ) ( -2368 2944 288 ) ( -2368 2816 296 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +( -2352 2944 320 ) ( -2368 2944 288 ) ( -2336 2944 288 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +( -2336 2880 288 ) ( -2368 2880 288 ) ( -2352 2880 328 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +( -2360 2944 288 ) ( -2360 2928 288 ) ( -2360 2936 324 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +} +// brush 3896 +{ +( -2368 2944 320 ) ( -2336 2944 320 ) ( -2336 2816 328 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +( -2368 2944 288 ) ( -2368 2944 320 ) ( -2368 2816 328 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +( -2336 2944 320 ) ( -2368 2944 288 ) ( -2368 2816 296 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +( -2352 2816 296 ) ( -2368 2816 296 ) ( -2360 2816 328 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +( -2368 2880 288 ) ( -2336 2880 288 ) ( -2352 2880 328 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +} +// brush 3897 +{ +( -1312 -1728 80 ) ( -1328 -1728 80 ) ( -1328 -1728 120 ) bricks/c_sr_mb2 -16 0 0 1 1 0 0 0 +( -1312 -1728 128 ) ( -1312 -1664 128 ) ( -1312 -1664 -32 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1328 -1664 92 ) ( -1312 -1664 92 ) ( -1312 -1664 132 ) bricks/c_sr_mb2 -16 0 0 1 1 0 0 0 +( -1328 -1664 128 ) ( -1328 -1728 128 ) ( -1328 -1728 -32 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1328 -1728 152 ) ( -1328 -1704 152 ) ( -1312 -1716 152 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1328 -1720 128 ) ( -1328 -1728 128 ) ( -1312 -1724 128 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +} +// brush 3898 +{ +( -1312 -1728 80 ) ( -1328 -1728 80 ) ( -1328 -1728 120 ) bricks/c_sr_mb1b 0 -22 0 1 0.750000 0 0 0 +( -1312 -1728 128 ) ( -1312 -1664 128 ) ( -1312 -1664 -32 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1328 -1664 92 ) ( -1312 -1664 92 ) ( -1312 -1664 132 ) bricks/c_sr_mb1b 0 -6 0 1 0.750000 0 0 0 +( -1328 -1664 128 ) ( -1328 -1728 128 ) ( -1328 -1728 -32 ) bricks/c_sr_mb1b 0 -20 0 1 0.750000 0 0 0 +( -1328 -1728 80 ) ( -1312 -1728 80 ) ( -1312 -1664 92 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +( -1328 -1728 128 ) ( -1328 -1720 128 ) ( -1312 -1724 128 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +} +// brush 3899 +{ +( -1264 -1728 120 ) ( -1328 -1728 120 ) ( -1328 -1728 192 ) bricks/c_sr_mb2 -16 0 0 1 1 0 0 0 +( -1280 -1728 168 ) ( -1280 -1664 168 ) ( -1280 -1664 8 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1280 -1664 284 ) ( -1312 -1664 284 ) ( -1312 -1664 132 ) bricks/c_sr_mb2 -16 0 0 1 1 0 0 0 +( -1328 -1728 120 ) ( -1264 -1728 120 ) ( -1264 -1664 132 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1312 -1664 284 ) ( -1280 -1664 284 ) ( -1280 -1728 272 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( -1312 -1680 120 ) ( -1312 -1664 120 ) ( -1312 -1672 192 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +} +// brush 3900 +{ +( -2000 968 368 ) ( -2000 712 368 ) ( -1800 712 368 ) bricks/c_sr_mr5 63 14 -90 1 1 0 0 0 +( -1800 712 384 ) ( -2000 712 384 ) ( -2000 968 384 ) bricks/c_sr_mr5 0 -3 45 1 1 0 0 0 +( -1768 960 368 ) ( -1768 960 384 ) ( -2000 728 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1984 728 384 ) ( -1984 728 368 ) ( -2000 728 368 ) bricks/c_sr_mr5 -32 15 0 1 1 0 0 0 +( -1984 728 368 ) ( -1984 728 384 ) ( -1632 1080 384 ) bricks/c_sr_mr5 -72 15 0 1 1 0 0 0 +( -1712 1016 368 ) ( -1696 1016 368 ) ( -1704 1016 384 ) bricks/c_sr_mr5 -32 15 0 1 1 0 0 0 +} +// brush 3901 +{ +( -1672 1104 368 ) ( -1672 1040 368 ) ( -1656 1040 368 ) bricks/c_tn_m3 -233 56 0 1 1 0 0 0 +( -1656 1040 384 ) ( -1672 1040 384 ) ( -1672 1104 384 ) bricks/c_sr_mr5 0 -7 45 1 1 0 0 0 +( -1671 1097 576 ) ( -1711 1057 576 ) ( -1711 1057 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1656 1104 368 ) ( -1632 1080 368 ) ( -1632 1080 576 ) bricks/c_tn_m3 -88 128 0 1 0.999992 0 0 0 +( -1632 1080 368 ) ( -1696 1016 368 ) ( -1696 1016 576 ) bricks/c_tn_m3 -87 128 0 1 1 0 0 0 +( -1704 1056 384 ) ( -1696 1056 368 ) ( -1712 1056 368 ) bricks/c_sr_mr5 -104 15 0 1 1 0 0 0 +} +// brush 3902 +{ +( -1672 1104 368 ) ( -1672 1040 368 ) ( -1656 1040 368 ) bricks/c_tn_m3 -233 56 0 1 1 0 0 0 +( -1656 1040 384 ) ( -1672 1040 384 ) ( -1672 1104 384 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -1632 1080 368 ) ( -1696 1016 368 ) ( -1696 1016 576 ) bricks/c_tn_m3 -87 128 0 1 1 0 0 0 +( -1712 1048 576 ) ( -1712 1000 576 ) ( -1712 1000 368 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1704 1016 384 ) ( -1696 1016 368 ) ( -1712 1016 368 ) bricks/c_sr_mr5 -104 15 0 1 1 0 0 0 +( -1704 1056 384 ) ( -1712 1056 368 ) ( -1696 1056 368 ) bricks/c_sr_mr5 -104 15 0 1 1 0 0 0 +} +// brush 3903 +{ +( -1936 1320 368 ) ( -1936 1304 368 ) ( -1872 1304 368 ) bricks/c_tn_m3 63 30 -90 1 1 0 0 0 +( -1872 1304 384 ) ( -1936 1304 384 ) ( -1936 1320 384 ) bricks/c_sr_mr5 31 -2 -180 1 1 0 0 0 +( -1960 1280 576 ) ( -1960 1280 368 ) ( -1896 1344 368 ) bricks/c_tn_m3 -24 127 0 1 1.000008 0 0 0 +( -1976 1264 368 ) ( -1976 1264 576 ) ( -1928 1264 576 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1960 1264 368 ) ( -1960 1280 368 ) ( -1960 1272 384 ) bricks/c_sr_mr5 64 16 -180 1 -1 0 0 0 +( -1920 1280 368 ) ( -1920 1264 368 ) ( -1920 1272 384 ) bricks/c_sr_mr5 64 16 -180 1 -1 0 0 0 +} +// brush 3904 +{ +( -1936 1320 368 ) ( -1936 1304 368 ) ( -1872 1304 368 ) bricks/c_tn_m3 63 30 -90 1 1 0 0 0 +( -1872 1304 384 ) ( -1936 1304 384 ) ( -1936 1320 384 ) bricks/c_sr_mr5 75 -22 -135 1.000239 1.000929 0 0 0 +( -1919 1265 368 ) ( -1919 1265 576 ) ( -1879 1305 576 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1896 1344 576 ) ( -1896 1344 368 ) ( -1872 1320 368 ) bricks/c_tn_m3 104 127 -180 1 -1.000008 0 0 0 +( -1960 1280 576 ) ( -1960 1280 368 ) ( -1896 1344 368 ) bricks/c_tn_m3 -24 127 0 1 1.000008 0 0 0 +( -1920 1264 368 ) ( -1920 1280 368 ) ( -1920 1272 384 ) bricks/c_sr_mr5 64 16 -180 1 -1 0 0 0 +} +// brush 3905 +{ +( -2000 1480 368 ) ( -2000 1224 368 ) ( -1800 1224 368 ) bricks/c_sr_mr5 63 14 -90 1 1 0 0 0 +( -1800 1224 384 ) ( -2000 1224 384 ) ( -2000 1480 384 ) bricks/c_sr_mr5 13 -20 -135 0.999893 0.999893 0 0 0 +( -1960 1280 368 ) ( -1960 1280 384 ) ( -1984 1256 384 ) bricks/c_sr_mr5 -24 16 0 1 1 0 0 0 +( -1984 1240 368 ) ( -1984 1240 384 ) ( -1632 1592 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1984 1240 368 ) ( -1984 1256 368 ) ( -1984 1248 384 ) bricks/c_sr_mr5 64 16 -180 1 -1 0 0 0 +( -1960 1280 384 ) ( -1960 1280 368 ) ( -1960 1264 368 ) bricks/c_sr_mr5 64 16 -180 1 -1 0 0 0 +} +// brush 3906 +{ +( -1864 1288 536 ) ( -1864 1208 536 ) ( -1784 1208 536 ) bricks/c_tn_m3 -29 128 0 1 1 0 0 0 +( -1784 1208 576 ) ( -1864 1208 576 ) ( -1864 1288 576 ) bricks/c_tn_m3 -29 128 0 1 1 0 0 0 +( -1776 1224 544 ) ( -1776 1224 584 ) ( -1848 1296 584 ) bricks/c_tn_m3 -29 128 0 1 1 0 0 0 +( -1792 1208 584 ) ( -1792 1208 544 ) ( -1864 1280 544 ) bricks/c_tn_m3 -29 128 0 1 1 0 0 0 +( -1664 1080 544 ) ( -1664 1080 584 ) ( -1648 1096 584 ) bricks/c_tn_m3 -29 128 0 1 1 0 0 0 +( -1880 1312 544 ) ( -1864 1328 544 ) ( -1872 1320 584 ) bricks/c_tn_m3 -29 128 0 1 1 0 0 0 +} +// brush 3907 +{ +( -1864 1288 368 ) ( -1864 1208 368 ) ( -1784 1208 368 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1868 1316 528 ) ( -1880 1304 528 ) ( -1888 1304 536 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1776 1224 488 ) ( -1776 1224 528 ) ( -1848 1296 528 ) metals/mt_pv_m16bc 0 -8 0 1 1 0 0 0 +( -1872 1320 536 ) ( -1888 1304 536 ) ( -1888 1304 360 ) metals/mt_pv_m16bc 0 -8 0 1 1 0 0 0 +( -1888 1304 360 ) ( -1888 1304 528 ) ( -1880 1304 528 ) metals/mt_pv_m16bc 0 -8 0 1 1 0 0 0 +( -1880 1304 528 ) ( -1868 1316 528 ) ( -1868 1316 360 ) metals/mt_pv_m16bc 0 -8 0 1 1 0 0 0 +} +// brush 3908 +{ +( -1864 1288 368 ) ( -1864 1208 368 ) ( -1784 1208 368 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1672 1096 528 ) ( -1660 1108 528 ) ( -1656 1104 536 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1776 1224 488 ) ( -1776 1224 528 ) ( -1848 1296 528 ) metals/mt_pv_m16bc 0 -8 0 1 1 0 0 0 +( -1672 1088 528 ) ( -1672 1088 360 ) ( -1672 1096 360 ) metals/mt_pv_m16bc 0 -8 0 1 1 0 0 0 +( -1672 1088 536 ) ( -1656 1104 536 ) ( -1656 1104 360 ) metals/mt_pv_m16bc 0 -8 0 1 1 0 0 0 +( -1660 1108 528 ) ( -1672 1096 528 ) ( -1672 1096 360 ) metals/mt_pv_m16bc 0 -8 0 1 1 0 0 0 +} +// brush 3909 +{ +( -1672 1104 384 ) ( -1672 1040 384 ) ( -1656 1040 384 ) bricks/c_tn_m3 72 128 0 1 1 0 0 0 +( -1656 1040 576 ) ( -1672 1040 576 ) ( -1672 1104 576 ) bricks/c_tn_m3 72 128 0 1 1 0 0 0 +( -1657 1103 576 ) ( -1697 1063 576 ) ( -1697 1063 368 ) bricks/c_tn_m3 73 128 0 1 1 0 0 0 +( -1656 1104 368 ) ( -1632 1080 368 ) ( -1632 1080 576 ) bricks/c_tn_m3 72 128 0 1 1 0 0 0 +( -1632 1080 368 ) ( -1696 1016 368 ) ( -1696 1016 576 ) bricks/c_tn_m3 72 128 0 1 1 0 0 0 +( -1696 1064 576 ) ( -1696 1016 576 ) ( -1696 1016 368 ) bricks/c_tn_m3 8 128 0 1 1 0 0 0 +} +// brush 3910 +{ +( -2008 752 576 ) ( -1792 968 576 ) ( -1768 944 576 ) common/li_pv_v4a 7 -9 45 1 1 0 1 7000 +( -1792 968 576 ) ( -2008 752 576 ) ( -1984 728 544 ) common/li_pv_v4a 7 -9 45 1 1 0 1 7000 +( -1860 852 544 ) ( -1884 876 544 ) ( -1872 864 576 ) common/li_pv_v4a 7 -9 45 1 1 0 1 7000 +( -1836 924 544 ) ( -1812 900 544 ) ( -1824 912 576 ) common/li_pv_v4a 7 -9 45 1 1 0 1 7000 +( -1879 871 544 ) ( -1831 919 544 ) ( -1855 895 576 ) common/li_pv_v4a 7 -9 45 1 1 0 1 7000 +( -1818 906 544 ) ( -1866 858 544 ) ( -1842 882 576 ) common/li_pv_v4a 7 -9 45 1 1 0 1 7000 +} +// brush 3911 +{ +( -2008 752 576 ) ( -1792 968 576 ) ( -1768 944 576 ) bricks/c_tn_m1 -27 31 45 1 1 0 0 0 +( -1752 960 576 ) ( -1752 960 544 ) ( -1984 728 544 ) bricks/c_tn_m1 -27 31 45 1 1 0 0 0 +( -1792 968 576 ) ( -2008 752 576 ) ( -1984 728 544 ) bricks/c_tn_m1 -27 31 45 1 1 0 0 0 +( -1860 852 544 ) ( -1884 876 544 ) ( -1872 864 576 ) bricks/c_tn_m1 -27 31 45 1 1 0 0 0 +( -1836 924 544 ) ( -1812 900 544 ) ( -1824 912 576 ) bricks/c_tn_m1 -27 31 45 1 1 0 0 0 +( -1866 858 544 ) ( -1818 906 544 ) ( -1842 882 576 ) bricks/c_tn_m1 -27 31 45 1 1 0 0 0 +} +// brush 3912 +{ +( -2008 752 576 ) ( -1792 968 576 ) ( -1768 944 576 ) bricks/c_tn_m1 -27 31 45 1 1 0 0 0 +( -1792 968 576 ) ( -2008 752 576 ) ( -1984 728 544 ) bricks/c_tn_m1 -27 31 45 1 1 0 0 0 +( -1860 852 544 ) ( -1884 876 544 ) ( -1872 864 576 ) bricks/c_tn_m1 -27 31 45 1 1 0 0 0 +( -1836 924 544 ) ( -1812 900 544 ) ( -1824 912 576 ) bricks/c_tn_m1 -27 31 45 1 1 0 0 0 +( -1831 919 544 ) ( -1879 871 544 ) ( -1855 895 576 ) bricks/c_tn_m1 -27 31 45 1 1 0 0 0 +} +// brush 3913 +{ +( -2008 752 576 ) ( -1792 968 576 ) ( -1768 944 576 ) bricks/c_tn_m1 -27 31 45 1 1 0 0 0 +( -1752 960 576 ) ( -1752 960 544 ) ( -1984 728 544 ) bricks/c_tn_m1 -27 31 45 1 1 0 0 0 +( -1792 968 576 ) ( -2008 752 576 ) ( -1984 728 544 ) bricks/c_tn_m1 -27 31 45 1 1 0 0 0 +( -1640 1088 544 ) ( -1624 1072 544 ) ( -1632 1080 576 ) bricks/c_tn_m1 -27 31 45 1 1 0 0 0 +( -1812 900 544 ) ( -1836 924 544 ) ( -1824 912 576 ) bricks/c_tn_m1 -27 31 45 1 1 0 0 0 +} +// brush 3914 +{ +( -2008 752 576 ) ( -1792 968 576 ) ( -1768 944 576 ) bricks/c_tn_m1 -27 31 45 1 1 0 0 0 +( -1752 960 576 ) ( -1752 960 544 ) ( -1984 728 544 ) bricks/c_tn_m1 -27 31 45 1 1 0 0 0 +( -1792 968 576 ) ( -2008 752 576 ) ( -1984 728 544 ) bricks/c_tn_m1 -27 31 45 1 1 0 0 0 +( -1984 728 544 ) ( -2016 744 544 ) ( -2000 736 576 ) bricks/c_tn_m1 -27 31 45 1 1 0 0 0 +( -1884 876 544 ) ( -1860 852 544 ) ( -1872 864 576 ) bricks/c_tn_m1 -27 31 45 1 1 0 0 0 +} +// brush 3915 +{ +( -1984 1098 576 ) ( -2016 1101 576 ) ( -2016 1216 576 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +( -1984 1088 592 ) ( -1984 1216 592 ) ( -1984 1216 536 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +( -2016 1216 576 ) ( -2016 1101 576 ) ( -1984 1098 544 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +( -2016 1280 544 ) ( -2000 1280 544 ) ( -2008 1280 576 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +( -1984 1256 544 ) ( -2016 1176 544 ) ( -2000 1216 576 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +} +// brush 3916 +{ +( -1984 778 576 ) ( -2016 781 576 ) ( -2016 896 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -1984 768 592 ) ( -1984 896 592 ) ( -1984 896 536 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -2016 896 576 ) ( -2016 781 576 ) ( -1984 778 544 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -1976 704 544 ) ( -2008 704 544 ) ( -1992 704 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -2016 744 544 ) ( -1984 728 544 ) ( -2000 736 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +} +// brush 3917 +{ +( -2000 1480 368 ) ( -2000 1224 368 ) ( -1800 1224 368 ) bricks/c_sr_mr5 63 14 -90 1 1 0 0 0 +( -1800 1224 384 ) ( -2000 1224 384 ) ( -2000 1480 384 ) bricks/c_sr_mr5 13 -20 -135 0.999893 0.999893 0 0 0 +( -1984 1256 384 ) ( -1984 1256 368 ) ( -1896 1344 368 ) bricks/c_sr_mr5 -24 16 0 1 1 0 0 0 +( -1984 1240 368 ) ( -1984 1240 384 ) ( -1632 1592 384 ) bricks/c_sr_mr5 -72 16 0 1 1 0 0 0 +( -1992 1232 368 ) ( -2000 1240 368 ) ( -1996 1236 384 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1984 1256 368 ) ( -1984 1240 368 ) ( -1984 1248 384 ) bricks/c_sr_mr5 64 16 -180 1 -1 0 0 0 +} +// brush 3918 +{ +( -1968 1200 576 ) ( -1968 896 576 ) ( -1752 896 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1752 896 592 ) ( -1968 896 592 ) ( -1968 1200 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1616 1064 576 ) ( -1616 1064 592 ) ( -1912 1360 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 1304 592 ) ( -1968 1304 576 ) ( -1912 1360 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 1304 576 ) ( -1968 1304 592 ) ( -1968 712 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 712 576 ) ( -1968 712 592 ) ( -1616 1064 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 3919 +{ +( -1968 1200 352 ) ( -1968 896 352 ) ( -1752 896 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1752 896 368 ) ( -1968 896 368 ) ( -1968 1200 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1616 1064 352 ) ( -1616 1064 368 ) ( -1912 1360 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 1304 368 ) ( -1968 1304 352 ) ( -1912 1360 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 1304 352 ) ( -1968 1304 368 ) ( -1968 712 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 712 352 ) ( -1968 712 368 ) ( -1616 1064 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3920 +{ +( -2006 1260 368 ) ( -2261 1006 368 ) ( -2250 994 368 ) bricks/c_tn_m3 63 30 -90 1 1 0 0 0 +( -2250 994 576 ) ( -2261 1006 576 ) ( -2006 1260 576 ) bricks/c_tn_m3 63 30 -90 1 1 0 0 0 +( -1984 1256 368 ) ( -1984 1256 576 ) ( -1896 1344 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2232 1040 368 ) ( -2232 1040 576 ) ( -2264 1008 576 ) bricks/c_tn_m3 72 127 0 1 1.000008 0 0 0 +( -1912 1360 576 ) ( -1912 1360 368 ) ( -1896 1344 368 ) bricks/c_tn_m3 104 127 -180 1 -1.000008 0 0 0 +( -1984 1256 576 ) ( -1984 1256 368 ) ( -1968 1304 368 ) bricks/c_tn_m3 64 128 -180 1 -1 0 0 0 +} +// brush 3921 +{ +( -1726 980 368 ) ( -1981 726 368 ) ( -1970 714 368 ) bricks/c_tn_m3 -131 128 0 0.720000 1 0 0 0 +( -1970 714 576 ) ( -1981 726 576 ) ( -1726 980 576 ) bricks/c_tn_m3 -131 128 0 0.720000 1 0 0 0 +( -1616 1064 576 ) ( -1616 1064 368 ) ( -2024 656 368 ) bricks/c_tn_m3 -131 128 0 0.720000 1 0 0 0 +( -1984 728 576 ) ( -1984 728 368 ) ( -1632 1080 368 ) bricks/c_tn_m3 -131 128 0 0.720000 1 0 0 0 +( -1632 1080 576 ) ( -1632 1080 368 ) ( -1616 1064 368 ) bricks/c_tn_m3 -131 128 0 0.720000 1 0 0 0 +( -1984 728 368 ) ( -1984 728 576 ) ( -1968 712 576 ) bricks/c_tn_m3 -131 128 0 0.720000 1 0 0 0 +} +// brush 3922 +{ +( -1880 1424 368 ) ( -1880 1224 368 ) ( -1576 1224 368 ) props/dr_track2 -60 12 0 -0.800000 1.250000 0 0 0 +( -1576 1224 528 ) ( -1880 1224 528 ) ( -1880 1424 528 ) props/dr_track2 -60 12 0 -0.800000 1.250000 0 0 0 +( -1912 1360 576 ) ( -1912 1360 368 ) ( -1600 1048 368 ) props/dr_track2 100 38 0 -0.800000 1.250000 0 0 0 +( -1872 1320 368 ) ( -1872 1320 576 ) ( -1880 1312 576 ) props/dr_track2 100 38 0 -0.800000 1.250000 0 0 0 +( -1624 1056 576 ) ( -1624 1056 368 ) ( -1920 1352 368 ) props/dr_track2 100 38 0 -0.800000 1.250000 0 0 0 +( -1670 1098 368 ) ( -1670 1098 576 ) ( -1662 1106 576 ) props/dr_track2 100 38 0 -0.800000 1.250000 0 0 0 +} +// brush 3923 +{ +( -1984 1098 576 ) ( -2016 1101 576 ) ( -2016 1216 576 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +( -2016 1216 576 ) ( -2016 1101 576 ) ( -1984 1098 544 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +( -2000 1280 544 ) ( -2016 1280 544 ) ( -2008 1280 576 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +( -2016 1344 544 ) ( -2000 1344 544 ) ( -2008 1344 576 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +( -2008 1312 544 ) ( -2008 1280 544 ) ( -2008 1296 576 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +} +// brush 3924 +{ +( -1984 1098 576 ) ( -2016 1101 576 ) ( -2016 1216 576 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +( -1984 1088 592 ) ( -1984 1216 592 ) ( -1984 1216 536 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +( -2016 1216 576 ) ( -2016 1101 576 ) ( -1984 1098 544 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +( -2000 1280 544 ) ( -2016 1280 544 ) ( -2008 1280 576 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +( -2016 1344 544 ) ( -2000 1344 544 ) ( -2008 1344 576 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +( -1992 1280 544 ) ( -1992 1312 544 ) ( -1992 1296 576 ) bricks/c_tn_m1 0 32 90 1 1 0 0 0 +} +// brush 3925 +{ +( -1984 1098 576 ) ( -2016 1101 576 ) ( -2016 1216 576 ) common/li_pv_v4a 63 6 -90 1 1 0 1 7000 +( -2016 1216 576 ) ( -2016 1101 576 ) ( -1984 1098 544 ) common/li_pv_v4a 63 6 -90 1 1 0 1 7000 +( -2000 1280 544 ) ( -2016 1280 544 ) ( -2008 1280 576 ) common/li_pv_v4a -33 8 0 1 1 0 1 7000 +( -2016 1344 544 ) ( -2000 1344 544 ) ( -2008 1344 576 ) common/li_pv_v4a -33 8 0 1 1 0 1 7000 +( -2008 1280 544 ) ( -2008 1312 544 ) ( -2008 1296 576 ) common/li_pv_v4a 0 9 -180 1 -1 0 1 7000 +( -1992 1312 544 ) ( -1992 1280 544 ) ( -1992 1296 576 ) common/li_pv_v4a 0 9 -180 1 -1 0 1 7000 +} +// brush 3926 +{ +( -2336 1720 576 ) ( -2336 1677 576 ) ( -2368 1680 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1680 576 ) ( -2368 1680 544 ) ( -2368 1720 544 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1680 544 ) ( -2336 1677 576 ) ( -2336 1720 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2344 1024 544 ) ( -2360 1024 544 ) ( -2352 1024 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1280 544 ) ( -2352 1280 544 ) ( -2360 1280 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 3927 +{ +( -2336 1720 576 ) ( -2336 1677 576 ) ( -2368 1680 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1680 576 ) ( -2368 1680 544 ) ( -2368 1720 544 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1680 544 ) ( -2336 1677 576 ) ( -2336 1720 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2352 1280 544 ) ( -2368 1280 544 ) ( -2360 1280 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1344 544 ) ( -2352 1344 544 ) ( -2360 1344 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2360 1296 544 ) ( -2360 1280 544 ) ( -2360 1288 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 3928 +{ +( -2336 1720 576 ) ( -2336 1677 576 ) ( -2368 1680 576 ) common/li_pv_v4a 63 7 -90 1 1 0 0 0 +( -2368 1680 544 ) ( -2336 1677 576 ) ( -2336 1720 576 ) common/li_pv_v4a 63 7 -90 1 1 0 0 0 +( -2352 1280 544 ) ( -2368 1280 544 ) ( -2360 1280 576 ) common/li_pv_v4a -33 9 0 1 1 0 0 0 +( -2368 1344 544 ) ( -2352 1344 544 ) ( -2360 1344 576 ) common/li_pv_v4a -33 9 0 1 1 0 0 0 +( -2360 1280 544 ) ( -2360 1296 544 ) ( -2360 1288 576 ) common/li_pv_v4a 0 10 -180 1 -1 0 0 0 +( -2344 1344 552 ) ( -2344 1304 552 ) ( -2344 1324 576 ) common/li_pv_v4a 0 10 -180 1 -1 0 0 0 +} +// brush 3929 +{ +( -2336 1720 576 ) ( -2336 1677 576 ) ( -2368 1680 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1680 544 ) ( -2336 1677 576 ) ( -2336 1720 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2352 1280 544 ) ( -2368 1280 544 ) ( -2360 1280 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1344 544 ) ( -2352 1344 544 ) ( -2360 1344 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2344 1304 552 ) ( -2344 1344 552 ) ( -2344 1324 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 3930 +{ +( -2336 1400 576 ) ( -2336 1357 576 ) ( -2368 1360 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1360 544 ) ( -2336 1357 576 ) ( -2336 1400 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2352 960 544 ) ( -2368 960 544 ) ( -2360 960 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1024 544 ) ( -2352 1024 544 ) ( -2360 1024 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2344 984 552 ) ( -2344 1024 552 ) ( -2344 1004 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 3931 +{ +( -2336 1400 576 ) ( -2336 1357 576 ) ( -2368 1360 576 ) common/li_pv_v4a 63 7 -90 1 1 0 1 7000 +( -2368 1360 544 ) ( -2336 1357 576 ) ( -2336 1400 576 ) common/li_pv_v4a 63 7 -90 1 1 0 1 7000 +( -2352 960 544 ) ( -2368 960 544 ) ( -2360 960 576 ) common/li_pv_v4a -33 9 0 1 1 0 1 7000 +( -2368 1024 544 ) ( -2352 1024 544 ) ( -2360 1024 576 ) common/li_pv_v4a -33 9 0 1 1 0 1 7000 +( -2360 960 544 ) ( -2360 976 544 ) ( -2360 968 576 ) common/li_pv_v4a 0 10 -180 1 -1 0 1 7000 +( -2344 1024 552 ) ( -2344 984 552 ) ( -2344 1004 576 ) common/li_pv_v4a 0 10 -180 1 -1 0 1 7000 +} +// brush 3932 +{ +( -2336 1400 576 ) ( -2336 1357 576 ) ( -2368 1360 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1360 576 ) ( -2368 1360 544 ) ( -2368 1400 544 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1360 544 ) ( -2336 1357 576 ) ( -2336 1400 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2352 960 544 ) ( -2368 960 544 ) ( -2360 960 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1024 544 ) ( -2352 1024 544 ) ( -2360 1024 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2360 976 544 ) ( -2360 960 544 ) ( -2360 968 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 3933 +{ +( -2336 1400 576 ) ( -2336 1357 576 ) ( -2368 1360 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1360 576 ) ( -2368 1360 544 ) ( -2368 1400 544 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1360 544 ) ( -2336 1357 576 ) ( -2336 1400 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2344 704 544 ) ( -2360 704 544 ) ( -2352 704 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 960 544 ) ( -2352 960 544 ) ( -2360 960 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 3934 +{ +( -1984 458 576 ) ( -2016 461 576 ) ( -2016 576 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -2016 576 576 ) ( -2016 461 576 ) ( -1984 458 544 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -2000 640 544 ) ( -2016 640 544 ) ( -2008 640 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -2016 704 544 ) ( -2000 704 544 ) ( -2008 704 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -2008 672 544 ) ( -2008 640 544 ) ( -2008 656 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +} +// brush 3935 +{ +( -1984 458 576 ) ( -2016 461 576 ) ( -2016 576 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -1984 448 592 ) ( -1984 576 592 ) ( -1984 576 536 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -2016 576 576 ) ( -2016 461 576 ) ( -1984 458 544 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -2000 640 544 ) ( -2016 640 544 ) ( -2008 640 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -2016 704 544 ) ( -2000 704 544 ) ( -2008 704 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +( -1992 640 544 ) ( -1992 672 544 ) ( -1992 656 576 ) bricks/c_tn_m1 1 0 90 1 1 0 0 0 +} +// brush 3936 +{ +( -1984 458 576 ) ( -2016 461 576 ) ( -2016 576 576 ) common/li_pv_v4a 63 7 -90 1 1 0 1 7000 +( -2016 576 576 ) ( -2016 461 576 ) ( -1984 458 544 ) common/li_pv_v4a 63 7 -90 1 1 0 1 7000 +( -2000 640 544 ) ( -2016 640 544 ) ( -2008 640 576 ) common/li_pv_v4a -33 9 0 1 1 0 1 7000 +( -2016 704 544 ) ( -2000 704 544 ) ( -2008 704 576 ) common/li_pv_v4a -33 9 0 1 1 0 1 7000 +( -2008 640 544 ) ( -2008 672 544 ) ( -2008 656 576 ) common/li_pv_v4a 0 10 -180 1 -1 0 1 7000 +( -1992 672 544 ) ( -1992 640 544 ) ( -1992 656 576 ) common/li_pv_v4a 0 10 -180 1 -1 0 1 7000 +} +// brush 3937 +{ +( -2336 1080 576 ) ( -2336 1037 576 ) ( -2368 1040 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1040 576 ) ( -2368 1040 544 ) ( -2368 1080 544 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1040 544 ) ( -2336 1037 576 ) ( -2336 1080 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2352 640 544 ) ( -2368 640 544 ) ( -2360 640 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 704 544 ) ( -2352 704 544 ) ( -2360 704 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2360 656 544 ) ( -2360 640 544 ) ( -2360 648 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 3938 +{ +( -2336 1080 576 ) ( -2336 1037 576 ) ( -2368 1040 576 ) common/li_pv_v4a 63 7 -90 1 1 0 1 7000 +( -2368 1040 544 ) ( -2336 1037 576 ) ( -2336 1080 576 ) common/li_pv_v4a 63 7 -90 1 1 0 1 7000 +( -2352 640 544 ) ( -2368 640 544 ) ( -2360 640 576 ) common/li_pv_v4a -33 9 0 1 1 0 1 7000 +( -2368 704 544 ) ( -2352 704 544 ) ( -2360 704 576 ) common/li_pv_v4a -33 9 0 1 1 0 1 7000 +( -2360 640 544 ) ( -2360 656 544 ) ( -2360 648 576 ) common/li_pv_v4a 0 10 -180 1 -1 0 1 7000 +( -2344 704 552 ) ( -2344 664 552 ) ( -2344 684 576 ) common/li_pv_v4a 0 10 -180 1 -1 0 1 7000 +} +// brush 3939 +{ +( -2336 1080 576 ) ( -2336 1037 576 ) ( -2368 1040 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 1040 544 ) ( -2336 1037 576 ) ( -2336 1080 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2352 640 544 ) ( -2368 640 544 ) ( -2360 640 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2368 704 544 ) ( -2352 704 544 ) ( -2360 704 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -2344 664 552 ) ( -2344 704 552 ) ( -2344 684 576 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 3940 +{ +( -2000 656 368 ) ( -2000 192 368 ) ( -1984 192 368 ) bricks/c_sr_mr5 63 -1 -90 1 1 0 0 0 +( -1984 192 384 ) ( -2000 192 384 ) ( -2000 656 384 ) bricks/c_sr_mr5 -65 31 90 1 1 0 0 0 +( -1984 640 384 ) ( -1984 1104 384 ) ( -1984 1104 368 ) bricks/c_sr_mr5 64 0 -180 1 -1 0 0 0 +( -2000 728 368 ) ( -2000 728 384 ) ( -2000 192 384 ) bricks/c_sr_mr5 64 16 -180 1 -1 0 0 0 +( -2000 728 384 ) ( -2000 728 368 ) ( -1984 728 368 ) bricks/c_sr_mr5 -32 31 0 1 1 0 0 0 +( -1968 320 368 ) ( -2032 320 368 ) ( -2000 320 384 ) bricks/c_sr_mr5 -32 31 0 1 1 0 0 0 +} +// brush 3941 +{ +( -1984 552 368 ) ( -1984 192 368 ) ( -1968 192 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1968 192 576 ) ( -1984 192 576 ) ( -1984 552 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1968 712 576 ) ( -1968 712 368 ) ( -1968 320 368 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1984 536 368 ) ( -1984 536 576 ) ( -1984 0 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1968 712 368 ) ( -1968 712 576 ) ( -1984 728 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1968 320 368 ) ( -2032 320 368 ) ( -2000 320 576 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3942 +{ +( -3504 1648 112 ) ( -3504 2112 112 ) ( -3520 2112 112 ) bricks/c_sr_mr5 0 0 -90 1 1 0 0 0 +( -3520 2112 128 ) ( -3504 2112 128 ) ( -3504 1648 128 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -3520 244 128 ) ( -3520 244 112 ) ( -3520 1048 112 ) bricks/c_sr_mr5 64 -1 -90 1 1 0 0 0 +( -3504 1056 128 ) ( -3504 1056 112 ) ( -3504 832 112 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -3504 1056 112 ) ( -3504 1056 128 ) ( -3520 1048 128 ) bricks/c_sr_mr5 64 -1 -90 1 1 0 0 0 +( -3520 244 112 ) ( -3520 244 128 ) ( -3504 246 128 ) bricks/c_sr_mr5 64 -1 -90 1 1 0 0 0 +} +// brush 3943 +{ +( -3520 886 320 ) ( -3488 883 320 ) ( -3488 768 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 896 336 ) ( -3520 768 336 ) ( -3520 768 280 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 768 320 ) ( -3488 883 320 ) ( -3520 886 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 704 288 ) ( -3504 704 288 ) ( -3496 704 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3496 960 288 ) ( -3424 960 288 ) ( -3460 960 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 3944 +{ +( -3168 264 320 ) ( -3168 307 320 ) ( -3136 304 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 304 320 ) ( -3136 304 288 ) ( -3136 264 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 304 288 ) ( -3168 307 320 ) ( -3168 264 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3160 960 288 ) ( -3144 960 288 ) ( -3152 960 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3432 832 288 ) ( -3504 832 288 ) ( -3468 832 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3945 +{ +( -3168 264 320 ) ( -3168 307 320 ) ( -3136 304 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 304 320 ) ( -3136 304 288 ) ( -3136 264 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 304 288 ) ( -3168 307 320 ) ( -3168 264 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 704 288 ) ( -3152 704 288 ) ( -3144 704 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3504 832 288 ) ( -3432 832 288 ) ( -3468 832 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3946 +{ +( -3120 1864 112 ) ( -3120 2112 112 ) ( -3136 2112 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3136 2112 320 ) ( -3120 2112 320 ) ( -3120 1864 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3136 2136 320 ) ( -3136 1888 320 ) ( -3136 1888 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3120 1864 320 ) ( -3120 2112 320 ) ( -3120 2112 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 1792 112 ) ( -3472 1792 112 ) ( -3504 1792 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3432 832 112 ) ( -3504 832 112 ) ( -3468 832 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3947 +{ +( -3120 1864 112 ) ( -3120 2112 112 ) ( -3136 2112 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3136 2112 320 ) ( -3120 2112 320 ) ( -3120 1864 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3136 280 320 ) ( -3136 280 112 ) ( -3136 832 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3136 280 112 ) ( -3136 280 320 ) ( -3120 282 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3120 1864 320 ) ( -3120 2112 320 ) ( -3120 2112 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3504 832 112 ) ( -3432 832 112 ) ( -3468 832 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3948 +{ +( -3136 1864 112 ) ( -3136 2112 112 ) ( -3152 2112 112 ) bricks/c_sr_mr5 126 -1 90 1 1 0 0 0 +( -3152 2112 128 ) ( -3136 2112 128 ) ( -3136 1864 128 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -3152 2112 128 ) ( -3152 1864 128 ) ( -3152 1864 112 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -3136 2152 128 ) ( -3136 2400 128 ) ( -3136 2400 112 ) bricks/c_sr_mr5 -65 30 90 1 1 0 0 0 +( -3536 1792 112 ) ( -3472 1792 112 ) ( -3504 1792 128 ) bricks/c_sr_mr5 -65 -2 90 1 1 0 0 0 +( -3432 832 112 ) ( -3504 832 112 ) ( -3468 832 128 ) bricks/c_sr_mr5 -65 -2 90 1 1 0 0 0 +} +// brush 3949 +{ +( -3136 1864 112 ) ( -3136 2112 112 ) ( -3152 2112 112 ) bricks/c_sr_mr5 126 -1 90 1 1 0 0 0 +( -3152 2112 128 ) ( -3136 2112 128 ) ( -3136 1864 128 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -3152 278 128 ) ( -3152 278 112 ) ( -3152 832 112 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -3152 278 112 ) ( -3152 278 128 ) ( -3136 280 128 ) bricks/c_sr_mr5 -65 -2 90 1 1 0 0 0 +( -3136 2152 128 ) ( -3136 2400 128 ) ( -3136 2400 112 ) bricks/c_sr_mr5 -65 30 90 1 1 0 0 0 +( -3504 832 112 ) ( -3432 832 112 ) ( -3468 832 128 ) bricks/c_sr_mr5 -65 -2 90 1 1 0 0 0 +} +// brush 3950 +{ +( -3136 1960 96 ) ( -3136 2112 96 ) ( -3536 2112 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3536 2112 112 ) ( -3136 2112 112 ) ( -3136 1960 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3536 2112 112 ) ( -3536 1960 112 ) ( -3536 1960 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3120 1672 112 ) ( -3120 1824 112 ) ( -3120 1824 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3152 2944 112 ) ( -3552 2944 112 ) ( -3552 2944 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3392 320 96 ) ( -3456 320 96 ) ( -3424 320 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3951 +{ +( -3520 1752 112 ) ( -3520 2112 112 ) ( -3536 2112 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 2112 320 ) ( -3520 2112 320 ) ( -3520 1752 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 3022 112 ) ( -3536 3022 320 ) ( -3536 1792 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3520 1576 112 ) ( -3520 1576 320 ) ( -3520 2112 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 3022 320 ) ( -3536 3022 112 ) ( -3520 3020 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3472 1792 112 ) ( -3536 1792 112 ) ( -3504 1792 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3952 +{ +( -3520 1752 112 ) ( -3520 2112 112 ) ( -3536 2112 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 2112 320 ) ( -3520 2112 320 ) ( -3520 1752 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 1592 320 ) ( -3536 1592 112 ) ( -3536 1792 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3520 1576 112 ) ( -3520 1576 320 ) ( -3520 2112 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 1592 112 ) ( -3536 1592 320 ) ( -3520 1576 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 1792 112 ) ( -3472 1792 112 ) ( -3504 1792 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3953 +{ +( -3504 1648 112 ) ( -3504 2112 112 ) ( -3520 2112 112 ) bricks/c_sr_mr5 63 15 90 1 1 0 0 0 +( -3520 2112 128 ) ( -3504 2112 128 ) ( -3504 1648 128 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -3520 3020 112 ) ( -3520 3020 128 ) ( -3520 1792 128 ) bricks/c_sr_mr5 64 0 0 1 1 0 0 0 +( -3504 1576 112 ) ( -3504 1576 128 ) ( -3504 2112 128 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -3520 3020 128 ) ( -3520 3020 112 ) ( -3504 3018 112 ) bricks/c_sr_mr5 -48 31 -180 1 -1 0 0 0 +( -3472 1792 112 ) ( -3536 1792 112 ) ( -3504 1792 128 ) bricks/c_sr_mr5 -48 31 -180 1 -1 0 0 0 +} +// brush 3954 +{ +( -3504 1648 112 ) ( -3504 2112 112 ) ( -3520 2112 112 ) bricks/c_sr_mr5 63 15 90 1 1 0 0 0 +( -3520 2112 128 ) ( -3504 2112 128 ) ( -3504 1648 128 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -3520 1472 128 ) ( -3520 1008 128 ) ( -3520 1008 112 ) bricks/c_sr_mr5 64 0 0 1 1 0 0 0 +( -3504 1576 112 ) ( -3504 1576 128 ) ( -3504 2112 128 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -3504 1576 128 ) ( -3504 1576 112 ) ( -3520 1576 112 ) bricks/c_sr_mr5 -48 31 -180 1 -1 0 0 0 +( -3536 1792 112 ) ( -3472 1792 112 ) ( -3504 1792 128 ) bricks/c_sr_mr5 -48 31 -180 1 -1 0 0 0 +} +// brush 3955 +{ +( -3520 1846 320 ) ( -3488 1843 320 ) ( -3488 1728 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 1856 336 ) ( -3520 1728 336 ) ( -3520 1728 280 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 1728 320 ) ( -3488 1843 320 ) ( -3520 1846 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3528 1920 288 ) ( -3496 1920 288 ) ( -3512 1920 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3472 1792 288 ) ( -3536 1792 288 ) ( -3504 1792 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 3956 +{ +( -3520 1846 320 ) ( -3488 1843 320 ) ( -3488 1728 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 1856 336 ) ( -3520 1728 336 ) ( -3520 1728 280 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 1728 320 ) ( -3488 1843 320 ) ( -3520 1846 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 1664 288 ) ( -3504 1664 288 ) ( -3496 1664 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3536 1792 288 ) ( -3472 1792 288 ) ( -3504 1792 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 3957 +{ +( -3120 1944 320 ) ( -3120 2112 320 ) ( -3536 2112 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3536 2112 336 ) ( -3120 2112 336 ) ( -3120 1944 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3536 2112 336 ) ( -3536 1944 336 ) ( -3536 1944 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3120 1944 336 ) ( -3120 2112 336 ) ( -3120 2112 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3136 2944 336 ) ( -3552 2944 336 ) ( -3552 2944 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3496 320 320 ) ( -3560 320 320 ) ( -3528 320 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 3958 +{ +( -3168 1224 320 ) ( -3168 1267 320 ) ( -3136 1264 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1264 320 ) ( -3136 1264 288 ) ( -3136 1224 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1264 288 ) ( -3168 1267 320 ) ( -3168 1224 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3160 1920 288 ) ( -3144 1920 288 ) ( -3152 1920 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3472 1792 288 ) ( -3536 1792 288 ) ( -3504 1792 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3959 +{ +( -3168 1224 320 ) ( -3168 1267 320 ) ( -3136 1264 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1264 320 ) ( -3136 1264 288 ) ( -3136 1224 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1264 288 ) ( -3168 1267 320 ) ( -3168 1224 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1664 288 ) ( -3152 1664 288 ) ( -3144 1664 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3536 1792 288 ) ( -3472 1792 288 ) ( -3504 1792 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 3960 +{ +( -3120 1864 112 ) ( -3120 2112 112 ) ( -3136 2112 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3136 2112 320 ) ( -3120 2112 320 ) ( -3120 1864 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3136 2984 112 ) ( -3136 2984 320 ) ( -3136 1792 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3120 1864 320 ) ( -3120 2112 320 ) ( -3120 2112 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3136 2984 320 ) ( -3136 2984 112 ) ( -3120 2982 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3472 1792 112 ) ( -3536 1792 112 ) ( -3504 1792 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 3961 +{ +( -3136 1864 112 ) ( -3136 2112 112 ) ( -3152 2112 112 ) bricks/c_sr_mr5 126 -1 90 1 1 0 0 0 +( -3152 2112 128 ) ( -3136 2112 128 ) ( -3136 1864 128 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -3152 2986 112 ) ( -3152 2986 128 ) ( -3152 1792 128 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -3136 2152 128 ) ( -3136 2400 128 ) ( -3136 2400 112 ) bricks/c_sr_mr5 -65 30 90 1 1 0 0 0 +( -3152 2986 128 ) ( -3152 2986 112 ) ( -3136 2984 112 ) bricks/c_sr_mr5 -65 -2 90 1 1 0 0 0 +( -3472 1792 112 ) ( -3536 1792 112 ) ( -3504 1792 128 ) bricks/c_sr_mr5 -65 -2 90 1 1 0 0 0 +} +// brush 3962 +{ +( -1968 1728 344 ) ( -2384 1728 344 ) ( -2384 1600 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 1728 360 ) ( -1968 1728 360 ) ( -1968 1600 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 1600 368 ) ( -1968 1600 368 ) ( -1968 1600 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 1728 360 ) ( -1968 1728 344 ) ( -1968 1600 352 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 1728 360 ) ( -2384 1728 360 ) ( -2384 1728 344 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 1728 344 ) ( -2384 1728 360 ) ( -2384 1600 368 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3963 +{ +( -1968 1856 328 ) ( -2384 1856 328 ) ( -2384 1728 344 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 1856 344 ) ( -1968 1856 344 ) ( -1968 1728 360 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 1728 360 ) ( -1968 1728 360 ) ( -1968 1728 344 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 1856 344 ) ( -1968 1856 328 ) ( -1968 1728 344 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 1856 344 ) ( -2384 1856 344 ) ( -2384 1856 328 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 1856 328 ) ( -2384 1856 344 ) ( -2384 1728 360 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3964 +{ +( -1968 1984 304 ) ( -2384 1984 304 ) ( -2384 1856 328 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 1984 320 ) ( -1968 1984 320 ) ( -1968 1856 344 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 1856 344 ) ( -1968 1856 344 ) ( -1968 1856 328 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 1984 320 ) ( -1968 1984 304 ) ( -1968 1856 328 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 1984 320 ) ( -2384 1984 320 ) ( -2384 1984 304 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 1984 304 ) ( -2384 1984 320 ) ( -2384 1856 344 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3965 +{ +( -1968 2112 272 ) ( -2384 2112 272 ) ( -2384 1984 304 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 2112 288 ) ( -1968 2112 288 ) ( -1968 1984 320 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 1984 320 ) ( -1968 1984 320 ) ( -1968 1984 304 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 2112 288 ) ( -1968 2112 272 ) ( -1968 1984 304 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 2112 288 ) ( -2384 2112 288 ) ( -2384 2112 272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 2112 272 ) ( -2384 2112 288 ) ( -2384 1984 320 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3966 +{ +( -1968 2432 176 ) ( -2384 2432 176 ) ( -2384 2112 272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 2432 192 ) ( -1968 2432 192 ) ( -1968 2112 288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 2112 288 ) ( -1968 2112 288 ) ( -1968 2112 272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 2432 196 ) ( -1968 2432 180 ) ( -1968 2112 272 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 2432 192 ) ( -2384 2432 192 ) ( -2384 2432 176 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 2432 180 ) ( -2384 2432 196 ) ( -2384 2112 288 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3967 +{ +( -1968 2560 144 ) ( -2384 2560 144 ) ( -2384 2432 176 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 2560 160 ) ( -1968 2560 160 ) ( -1968 2432 192 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 2432 192 ) ( -1968 2432 192 ) ( -1968 2432 176 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 2560 160 ) ( -1968 2560 144 ) ( -1968 2432 176 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 2560 160 ) ( -2384 2560 160 ) ( -2384 2560 144 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 2560 144 ) ( -2384 2560 160 ) ( -2384 2432 192 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3968 +{ +( -1968 2688 120 ) ( -2384 2688 120 ) ( -2384 2560 144 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 2688 136 ) ( -1968 2688 136 ) ( -1968 2560 160 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 2560 160 ) ( -1968 2560 160 ) ( -1968 2560 144 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 2688 136 ) ( -1968 2688 120 ) ( -1968 2560 144 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 2688 136 ) ( -2384 2688 136 ) ( -2384 2688 120 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 2688 120 ) ( -2384 2688 136 ) ( -2384 2560 160 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3969 +{ +( -1968 2816 104 ) ( -2384 2816 104 ) ( -2384 2688 120 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 2816 120 ) ( -1968 2816 120 ) ( -1968 2688 136 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 2688 136 ) ( -1968 2688 136 ) ( -1968 2688 120 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 2816 120 ) ( -1968 2816 104 ) ( -1968 2688 120 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 2816 120 ) ( -2384 2816 120 ) ( -2384 2816 104 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 2816 104 ) ( -2384 2816 120 ) ( -2384 2688 136 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3970 +{ +( -1968 2944 96 ) ( -2384 2944 96 ) ( -2384 2816 104 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 2944 112 ) ( -1968 2944 112 ) ( -1968 2816 120 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 2816 120 ) ( -1968 2816 120 ) ( -1968 2816 104 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 2944 112 ) ( -1968 2944 96 ) ( -1968 2816 104 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 2944 112 ) ( -2384 2944 112 ) ( -2384 2944 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2384 2944 96 ) ( -2384 2944 112 ) ( -2384 2816 120 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 3971 +{ +( -1952 1728 360 ) ( -2368 1728 360 ) ( -2368 1600 368 ) bricks/c_sr_mr5 0 -1 -90 1 1 0 0 0 +( -2368 1728 376 ) ( -1952 1728 376 ) ( -1952 1600 384 ) bricks/c_sr_mr5 0 -1 -90 1 1 0 0 0 +( -2400 1600 384 ) ( -1984 1600 384 ) ( -1984 1600 368 ) bricks/c_sr_mr5 64 -2 -90 1 1 0 0 0 +( -1984 1728 376 ) ( -2400 1728 376 ) ( -2400 1728 360 ) bricks/c_sr_mr5 64 -2 -90 1 1 0 0 0 +( -2368 1728 360 ) ( -2368 1728 376 ) ( -2368 1600 384 ) bricks/c_sr_mr5 62 29 -90 1 1 0 0 0 +( -2352 1528 360 ) ( -2352 1472 360 ) ( -2352 1500 384 ) bricks/c_sr_mr5 0 -2 356 1 1 0 0 0 +} +// brush 3972 +{ +( -1952 1856 344 ) ( -2368 1856 344 ) ( -2368 1728 360 ) bricks/c_sr_mr5 0 -1 -90 1 1 0 0 0 +( -2368 1856 360 ) ( -1952 1856 360 ) ( -1952 1728 376 ) bricks/c_sr_mr5 0 -1 -90 1 1 0 0 0 +( -2400 1728 376 ) ( -1984 1728 376 ) ( -1984 1728 360 ) bricks/c_sr_mr5 64 -2 -90 1 1 0 0 0 +( -1984 1856 360 ) ( -2400 1856 360 ) ( -2400 1856 344 ) bricks/c_sr_mr5 64 -2 -90 1 1 0 0 0 +( -2368 1856 344 ) ( -2368 1856 360 ) ( -2368 1728 376 ) bricks/c_sr_mr5 62 29 -90 1 1 0 0 0 +( -2352 1528 344 ) ( -2352 1472 344 ) ( -2352 1500 376 ) bricks/c_sr_mr5 0 -10 353 1 1 0 0 0 +} +// brush 3973 +{ +( -1952 1984 320 ) ( -2368 1984 320 ) ( -2368 1856 344 ) bricks/c_sr_mr5 0 -1 -90 1 1 0 0 0 +( -2368 1984 336 ) ( -1952 1984 336 ) ( -1952 1856 360 ) bricks/c_sr_mr5 0 -1 -90 1 1 0 0 0 +( -2400 1856 360 ) ( -1984 1856 360 ) ( -1984 1856 344 ) bricks/c_sr_mr5 64 -2 -90 1 1 0 0 0 +( -1984 1984 336 ) ( -2400 1984 336 ) ( -2400 1984 320 ) bricks/c_sr_mr5 64 -2 -90 1 1 0 0 0 +( -2368 1984 320 ) ( -2368 1984 336 ) ( -2368 1856 360 ) bricks/c_sr_mr5 62 29 -90 1 1 0 0 0 +( -2352 1528 320 ) ( -2352 1472 320 ) ( -2352 1500 360 ) bricks/c_sr_mr5 0 -12 350 1 1 0 0 0 +} +// brush 3974 +{ +( -1952 2112 288 ) ( -2368 2112 288 ) ( -2368 1984 320 ) bricks/c_sr_mr5 0 -1 -90 1 1 0 0 0 +( -2368 2112 304 ) ( -1952 2112 304 ) ( -1952 1984 336 ) bricks/c_sr_mr5 0 -1 -90 1 1 0 0 0 +( -2400 1984 336 ) ( -1984 1984 336 ) ( -1984 1984 320 ) bricks/c_sr_mr5 64 -2 -90 1 1 0 0 0 +( -1984 2112 304 ) ( -2400 2112 304 ) ( -2400 2112 288 ) bricks/c_sr_mr5 64 -2 -90 1 1 0 0 0 +( -2368 2112 288 ) ( -2368 2112 304 ) ( -2368 1984 336 ) bricks/c_sr_mr5 62 29 -90 1 1 0 0 0 +( -2352 1528 288 ) ( -2352 1472 288 ) ( -2352 1500 336 ) bricks/c_sr_mr5 0 -11 346 1 1 0 0 0 +} +// brush 3975 +{ +( -1952 2432 192 ) ( -2368 2432 192 ) ( -2368 2112 288 ) bricks/c_sr_mr5 0 -1 -90 1 1 0 0 0 +( -2368 2432 208 ) ( -1952 2432 208 ) ( -1952 2112 304 ) bricks/c_sr_mr5 0 -1 -90 1 1 0 0 0 +( -2400 2112 304 ) ( -1984 2112 304 ) ( -1984 2112 288 ) bricks/c_sr_mr5 64 -2 -90 1 1 0 0 0 +( -1984 2432 208 ) ( -2400 2432 208 ) ( -2400 2432 192 ) bricks/c_sr_mr5 64 -2 -90 1 1 0 0 0 +( -2368 2432 196 ) ( -2368 2432 212 ) ( -2368 2112 304 ) bricks/c_sr_mr5 62 29 -90 1 1 0 0 0 +( -2352 1528 192 ) ( -2352 1472 192 ) ( -2352 1500 304 ) bricks/c_sr_mr5 0 -4 343 1 1 0 0 0 +} +// brush 3976 +{ +( -1952 2560 160 ) ( -2368 2560 160 ) ( -2368 2432 192 ) bricks/c_sr_mr5 0 -1 -90 1 1 0 0 0 +( -2368 2560 176 ) ( -1952 2560 176 ) ( -1952 2432 208 ) bricks/c_sr_mr5 0 -1 -90 1 1 0 0 0 +( -2400 2432 208 ) ( -1984 2432 208 ) ( -1984 2432 192 ) bricks/c_sr_mr5 64 -2 -90 1 1 0 0 0 +( -1984 2560 176 ) ( -2400 2560 176 ) ( -2400 2560 160 ) bricks/c_sr_mr5 64 -2 -90 1 1 0 0 0 +( -2368 2560 160 ) ( -2368 2560 176 ) ( -2368 2432 208 ) bricks/c_sr_mr5 62 29 -90 1 1 0 0 0 +( -2352 1528 160 ) ( -2352 1472 160 ) ( -2352 1500 208 ) bricks/c_sr_mr5 0 5 346 1 1 0 0 0 +} +// brush 3977 +{ +( -1952 2688 136 ) ( -2368 2688 136 ) ( -2368 2560 160 ) bricks/c_sr_mr5 0 -1 -90 1 1 0 0 0 +( -2368 2688 152 ) ( -1952 2688 152 ) ( -1952 2560 176 ) bricks/c_sr_mr5 0 -1 -90 1 1 0 0 0 +( -2400 2560 176 ) ( -1984 2560 176 ) ( -1984 2560 160 ) bricks/c_sr_mr5 64 -2 -90 1 1 0 0 0 +( -1984 2688 152 ) ( -2400 2688 152 ) ( -2400 2688 136 ) bricks/c_sr_mr5 64 -2 -90 1 1 0 0 0 +( -2368 2688 136 ) ( -2368 2688 152 ) ( -2368 2560 176 ) bricks/c_sr_mr5 62 29 -90 1 1 0 0 0 +( -2352 1528 136 ) ( -2352 1472 136 ) ( -2352 1500 176 ) bricks/c_sr_mr5 0 5 349 1 1 0 0 0 +} +// brush 3978 +{ +( -1952 2816 120 ) ( -2368 2816 120 ) ( -2368 2688 136 ) bricks/c_sr_mr5 0 -1 -90 1 1 0 0 0 +( -2368 2816 136 ) ( -1952 2816 136 ) ( -1952 2688 152 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -2400 2688 152 ) ( -1984 2688 152 ) ( -1984 2688 136 ) bricks/c_sr_mr5 64 -2 -90 1 1 0 0 0 +( -1984 2816 136 ) ( -2400 2816 136 ) ( -2400 2816 120 ) bricks/c_sr_mr5 64 -2 -90 1 1 0 0 0 +( -2368 2816 120 ) ( -2368 2816 136 ) ( -2368 2688 152 ) bricks/c_sr_mr5 62 29 -90 1 1 0 0 0 +( -2352 1528 120 ) ( -2352 1472 120 ) ( -2352 1500 152 ) bricks/c_sr_mr5 0 12 353 1 1 0 0 0 +} +// brush 3979 +{ +( -1952 2944 112 ) ( -2368 2944 112 ) ( -2368 2816 120 ) bricks/c_sr_mr5 -65 31 90 1 1 0 0 0 +( -2368 2944 128 ) ( -1952 2944 128 ) ( -1952 2816 136 ) bricks/c_sr_mr5 -65 31 90 1 1 0 0 0 +( -2400 2816 136 ) ( -1984 2816 136 ) ( -1984 2816 120 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -1984 2944 128 ) ( -1984 2944 112 ) ( -1984 2816 120 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -1984 2944 128 ) ( -2400 2944 128 ) ( -2400 2944 112 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -2000 2512 112 ) ( -2000 2528 112 ) ( -2000 2520 136 ) bricks/c_sr_mr5 0 10 357 1 1 0 0 0 +} +// brush 3980 +{ +( -1952 2816 120 ) ( -2368 2816 120 ) ( -2368 2688 136 ) bricks/c_sr_mr5 -65 31 90 1 1 0 0 0 +( -2368 2816 136 ) ( -1952 2816 136 ) ( -1952 2688 152 ) bricks/c_sr_mr5 -65 31 90 1 1 0 0 0 +( -2400 2688 152 ) ( -1984 2688 152 ) ( -1984 2688 136 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -1984 2816 136 ) ( -1984 2816 120 ) ( -1984 2688 136 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -1984 2816 136 ) ( -2400 2816 136 ) ( -2400 2816 120 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -2000 2512 120 ) ( -2000 2528 120 ) ( -2000 2520 152 ) bricks/c_sr_mr5 0 12 353 1 1 0 0 0 +} +// brush 3981 +{ +( -1952 2688 136 ) ( -2368 2688 136 ) ( -2368 2560 160 ) bricks/c_sr_mr5 -65 31 90 1 1 0 0 0 +( -2368 2688 152 ) ( -1952 2688 152 ) ( -1952 2560 176 ) bricks/c_sr_mr5 -65 31 90 1 1 0 0 0 +( -2400 2560 176 ) ( -1984 2560 176 ) ( -1984 2560 160 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -1984 2688 152 ) ( -1984 2688 136 ) ( -1984 2560 160 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -1984 2688 152 ) ( -2400 2688 152 ) ( -2400 2688 136 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -2000 2512 136 ) ( -2000 2528 136 ) ( -2000 2520 176 ) bricks/c_sr_mr5 0 5 349 1 1 0 0 0 +} +// brush 3982 +{ +( -1952 2560 160 ) ( -2368 2560 160 ) ( -2368 2432 192 ) bricks/c_sr_mr5 -65 31 90 1 1 0 0 0 +( -2368 2560 176 ) ( -1952 2560 176 ) ( -1952 2432 208 ) bricks/c_sr_mr5 -65 31 90 1 1 0 0 0 +( -2400 2432 208 ) ( -1984 2432 208 ) ( -1984 2432 192 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -1984 2560 176 ) ( -1984 2560 160 ) ( -1984 2432 192 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -1984 2560 176 ) ( -2400 2560 176 ) ( -2400 2560 160 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -2000 2512 160 ) ( -2000 2528 160 ) ( -2000 2520 208 ) bricks/c_sr_mr5 0 5 346 1 1 0 0 0 +} +// brush 3983 +{ +( -1952 2432 192 ) ( -2368 2432 192 ) ( -2368 2112 288 ) bricks/c_sr_mr5 -65 31 90 1 1 0 0 0 +( -2368 2432 208 ) ( -1952 2432 208 ) ( -1952 2112 304 ) bricks/c_sr_mr5 -65 31 90 1 1 0 0 0 +( -2400 2112 304 ) ( -1984 2112 304 ) ( -1984 2112 288 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -1984 2432 212 ) ( -1984 2432 196 ) ( -1984 2112 288 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -1984 2432 208 ) ( -2400 2432 208 ) ( -2400 2432 192 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -2000 2512 192 ) ( -2000 2528 192 ) ( -2000 2520 304 ) bricks/c_sr_mr5 0 -4 343 1 1 0 0 0 +} +// brush 3984 +{ +( -1952 2112 288 ) ( -2368 2112 288 ) ( -2368 1984 320 ) bricks/c_sr_mr5 -65 31 90 1 1 0 0 0 +( -2368 2112 304 ) ( -1952 2112 304 ) ( -1952 1984 336 ) bricks/c_sr_mr5 -65 31 90 1 1 0 0 0 +( -2400 1984 336 ) ( -1984 1984 336 ) ( -1984 1984 320 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -1984 2112 304 ) ( -1984 2112 288 ) ( -1984 1984 320 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -1984 2112 304 ) ( -2400 2112 304 ) ( -2400 2112 288 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -2000 2512 288 ) ( -2000 2528 288 ) ( -2000 2520 336 ) bricks/c_sr_mr5 0 -11 346 1 1 0 0 0 +} +// brush 3985 +{ +( -1952 1984 320 ) ( -2368 1984 320 ) ( -2368 1856 344 ) bricks/c_sr_mr5 -65 31 90 1 1 0 0 0 +( -2368 1984 336 ) ( -1952 1984 336 ) ( -1952 1856 360 ) bricks/c_sr_mr5 -65 31 90 1 1 0 0 0 +( -2400 1856 360 ) ( -1984 1856 360 ) ( -1984 1856 344 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -1984 1984 336 ) ( -1984 1984 320 ) ( -1984 1856 344 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -1984 1984 336 ) ( -2400 1984 336 ) ( -2400 1984 320 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -2000 2512 320 ) ( -2000 2528 320 ) ( -2000 2520 360 ) bricks/c_sr_mr5 0 -12 350 1 1 0 0 0 +} +// brush 3986 +{ +( -1952 1856 344 ) ( -2368 1856 344 ) ( -2368 1728 360 ) bricks/c_sr_mr5 -65 31 90 1 1 0 0 0 +( -2368 1856 360 ) ( -1952 1856 360 ) ( -1952 1728 376 ) bricks/c_sr_mr5 -65 31 90 1 1 0 0 0 +( -2400 1728 376 ) ( -1984 1728 376 ) ( -1984 1728 360 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -1984 1856 360 ) ( -1984 1856 344 ) ( -1984 1728 360 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -1984 1856 360 ) ( -2400 1856 360 ) ( -2400 1856 344 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -2000 2512 344 ) ( -2000 2528 344 ) ( -2000 2520 376 ) bricks/c_sr_mr5 0 -10 353 1 1 0 0 0 +} +// brush 3987 +{ +( -1952 1728 360 ) ( -2368 1728 360 ) ( -2368 1600 368 ) bricks/c_sr_mr5 -65 31 90 1 1 0 0 0 +( -2368 1728 376 ) ( -1952 1728 376 ) ( -1952 1600 384 ) bricks/c_sr_mr5 -65 31 90 1 1 0 0 0 +( -2400 1600 384 ) ( -1984 1600 384 ) ( -1984 1600 368 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -1984 1728 376 ) ( -1984 1728 360 ) ( -1984 1600 368 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -1984 1728 376 ) ( -2400 1728 376 ) ( -2400 1728 360 ) bricks/c_sr_mr5 -127 0 90 1 1 0 0 0 +( -2000 2512 360 ) ( -2000 2528 360 ) ( -2000 2520 384 ) bricks/c_sr_mr5 0 -2 356 1 1 0 0 0 +} +// brush 3988 +{ +( -1936 1728 360 ) ( -2352 1728 360 ) ( -2352 1600 368 ) bricks/c_tn_m3 32 -17 356 1 1 0 0 0 +( -1984 1728 568 ) ( -1968 1728 568 ) ( -1968 1600 576 ) bricks/c_tn_m3 32 -17 356 1 1 0 0 0 +( -1984 1600 576 ) ( -1968 1600 576 ) ( -1968 1600 368 ) bricks/c_tn_m3 32 -17 356 1 1 0 0 0 +( -1968 1728 376 ) ( -1968 1728 360 ) ( -1968 1600 368 ) bricks/c_tn_m3 32 -17 356 1 1 0 0 0 +( -1968 1728 568 ) ( -1984 1728 568 ) ( -1984 1728 360 ) bricks/c_tn_m3 32 -17 356 1 1 0 0 0 +( -1984 2512 360 ) ( -1984 2528 360 ) ( -1984 2520 384 ) bricks/c_tn_m3 32 -17 356 1 1 0 0 0 +} +// brush 3989 +{ +( -1936 1856 344 ) ( -2352 1856 344 ) ( -2352 1728 360 ) bricks/c_tn_m3 61 71 353 1 1 0 0 0 +( -1984 1856 552 ) ( -1968 1856 552 ) ( -1968 1728 568 ) bricks/c_tn_m3 61 71 353 1 1 0 0 0 +( -1984 1728 568 ) ( -1968 1728 568 ) ( -1968 1728 360 ) bricks/c_tn_m3 61 71 353 1 1 0 0 0 +( -1968 1856 360 ) ( -1968 1856 344 ) ( -1968 1728 360 ) bricks/c_tn_m3 61 71 353 1 1 0 0 0 +( -1968 1856 552 ) ( -1984 1856 552 ) ( -1984 1856 344 ) bricks/c_tn_m3 61 71 353 1 1 0 0 0 +( -1984 2512 344 ) ( -1984 2528 344 ) ( -1984 2520 376 ) bricks/c_tn_m3 61 71 353 1 1 0 0 0 +} +// brush 3990 +{ +( -1936 1984 320 ) ( -2352 1984 320 ) ( -2352 1856 344 ) bricks/c_tn_m3 95 -92 350 1 1 0 0 0 +( -1968 1856 552 ) ( -1984 1856 552 ) ( -1984 1984 528 ) bricks/c_tn_m3 95 -92 350 1 1 0 0 0 +( -1984 1856 552 ) ( -1968 1856 552 ) ( -1968 1856 344 ) bricks/c_tn_m3 95 -92 350 1 1 0 0 0 +( -1968 1984 336 ) ( -1968 1984 320 ) ( -1968 1856 344 ) bricks/c_tn_m3 95 -92 350 1 1 0 0 0 +( -1968 1984 528 ) ( -1984 1984 528 ) ( -1984 1984 320 ) bricks/c_tn_m3 95 -92 350 1 1 0 0 0 +( -1984 2512 320 ) ( -1984 2528 320 ) ( -1984 2520 360 ) bricks/c_tn_m3 95 -92 350 1 1 0 0 0 +} +// brush 3991 +{ +( -1936 2112 288 ) ( -2352 2112 288 ) ( -2352 1984 320 ) bricks/c_tn_m3 -101 38 346 1 1 0 0 0 +( -2352 2080 504 ) ( -1936 2080 504 ) ( -1936 1952 536 ) bricks/c_tn_m3 -101 38 346 1 1 0 0 0 +( -2384 1984 336 ) ( -1968 1984 336 ) ( -1968 1984 320 ) bricks/c_tn_m3 -101 38 346 1 1 0 0 0 +( -1968 2112 304 ) ( -1968 2112 288 ) ( -1968 1984 320 ) bricks/c_tn_m3 -101 38 346 1 1 0 0 0 +( -1968 2112 304 ) ( -2384 2112 304 ) ( -2384 2112 288 ) bricks/c_tn_m3 -101 38 346 1 1 0 0 0 +( -1984 2512 288 ) ( -1984 2528 288 ) ( -1984 2520 336 ) bricks/c_tn_m3 -101 38 346 1 1 0 0 0 +} +// brush 3992 +{ +( -1936 2432 192 ) ( -2352 2432 192 ) ( -2352 2112 288 ) bricks/c_tn_m3 -49 -116 343 1 1 0 0 0 +( -2352 2432 400 ) ( -1936 2432 400 ) ( -1936 2112 496 ) bricks/c_tn_m3 -49 -116 343 1 1 0 0 0 +( -2384 2112 304 ) ( -1968 2112 304 ) ( -1968 2112 288 ) bricks/c_tn_m3 -49 -116 343 1 1 0 0 0 +( -1968 2432 212 ) ( -1968 2432 196 ) ( -1968 2112 288 ) bricks/c_tn_m3 -49 -116 343 1 1 0 0 0 +( -1968 2432 208 ) ( -2384 2432 208 ) ( -2384 2432 192 ) bricks/c_tn_m3 -49 -116 343 1 1 0 0 0 +( -1984 2512 192 ) ( -1984 2528 192 ) ( -1984 2520 304 ) bricks/c_tn_m3 -49 -116 343 1 1 0 0 0 +} +// brush 3993 +{ +( -1936 2560 160 ) ( -2352 2560 160 ) ( -2352 2432 192 ) bricks/c_tn_m3 163 22 346 1 1 0 0 0 +( -2352 2560 368 ) ( -1936 2560 368 ) ( -1936 2432 400 ) bricks/c_tn_m3 163 22 346 1 1 0 0 0 +( -2384 2432 208 ) ( -1968 2432 208 ) ( -1968 2432 192 ) bricks/c_tn_m3 163 22 346 1 1 0 0 0 +( -1968 2560 176 ) ( -1968 2560 160 ) ( -1968 2432 192 ) bricks/c_tn_m3 163 22 346 1 1 0 0 0 +( -1968 2560 176 ) ( -2384 2560 176 ) ( -2384 2560 160 ) bricks/c_tn_m3 163 22 346 1 1 0 0 0 +( -1984 2512 160 ) ( -1984 2528 160 ) ( -1984 2520 208 ) bricks/c_tn_m3 163 22 346 1 1 0 0 0 +} +// brush 3994 +{ +( -1936 2688 136 ) ( -2352 2688 136 ) ( -2352 2560 160 ) bricks/c_tn_m3 115 -107 349 1 1 0 0 0 +( -2352 2688 344 ) ( -1936 2688 344 ) ( -1936 2560 368 ) bricks/c_tn_m3 115 -107 349 1 1 0 0 0 +( -2384 2560 176 ) ( -1968 2560 176 ) ( -1968 2560 160 ) bricks/c_tn_m3 115 -107 349 1 1 0 0 0 +( -1968 2688 152 ) ( -1968 2688 136 ) ( -1968 2560 160 ) bricks/c_tn_m3 115 -107 349 1 1 0 0 0 +( -1968 2688 152 ) ( -2384 2688 152 ) ( -2384 2688 136 ) bricks/c_tn_m3 115 -107 349 1 1 0 0 0 +( -1984 2512 136 ) ( -1984 2528 136 ) ( -1984 2520 176 ) bricks/c_tn_m3 115 -107 349 1 1 0 0 0 +} +// brush 3995 +{ +( -1936 2816 120 ) ( -2352 2816 120 ) ( -2352 2688 136 ) bricks/c_tn_m3 73 -34 353 1 1 0 0 0 +( -2352 2816 328 ) ( -1936 2816 328 ) ( -1936 2688 344 ) bricks/c_tn_m3 73 -34 353 1 1 0 0 0 +( -2384 2688 152 ) ( -1968 2688 152 ) ( -1968 2688 136 ) bricks/c_tn_m3 73 -34 353 1 1 0 0 0 +( -1968 2816 136 ) ( -1968 2816 120 ) ( -1968 2688 136 ) bricks/c_tn_m3 73 -34 353 1 1 0 0 0 +( -1968 2816 136 ) ( -2384 2816 136 ) ( -2384 2816 120 ) bricks/c_tn_m3 73 -34 353 1 1 0 0 0 +( -1984 2512 120 ) ( -1984 2528 120 ) ( -1984 2520 152 ) bricks/c_tn_m3 73 -34 353 1 1 0 0 0 +} +// brush 3996 +{ +( -1936 2944 112 ) ( -2352 2944 112 ) ( -2352 2816 120 ) bricks/c_tn_m3 45 27 357 1 1 0 0 0 +( -2352 2944 320 ) ( -1936 2944 320 ) ( -1936 2816 328 ) bricks/c_tn_m3 45 27 357 1 1 0 0 0 +( -2384 2816 136 ) ( -1968 2816 136 ) ( -1968 2816 120 ) bricks/c_tn_m3 45 27 357 1 1 0 0 0 +( -1968 2944 128 ) ( -1968 2944 112 ) ( -1968 2816 120 ) bricks/c_tn_m3 45 27 357 1 1 0 0 0 +( -1968 2944 128 ) ( -2384 2944 128 ) ( -2384 2944 112 ) bricks/c_tn_m3 45 27 357 1 1 0 0 0 +( -1984 2512 112 ) ( -1984 2528 112 ) ( -1984 2520 136 ) bricks/c_tn_m3 45 27 357 1 1 0 0 0 +} +// brush 3997 +{ +( -2336 2944 112 ) ( -2752 2944 112 ) ( -2752 2816 120 ) bricks/c_tn_m3 45 27 357 1 1 0 0 0 +( -2752 2944 320 ) ( -2336 2944 320 ) ( -2336 2816 328 ) bricks/c_tn_m3 45 27 357 1 1 0 0 0 +( -2784 2816 136 ) ( -2368 2816 136 ) ( -2368 2816 120 ) bricks/c_tn_m3 45 27 357 1 1 0 0 0 +( -2368 2944 128 ) ( -2368 2944 112 ) ( -2368 2816 120 ) bricks/c_tn_m3 45 27 357 1 1 0 0 0 +( -2368 2944 128 ) ( -2784 2944 128 ) ( -2784 2944 112 ) bricks/c_tn_m3 45 27 357 1 1 0 0 0 +( -2384 2512 112 ) ( -2384 2528 112 ) ( -2384 2520 136 ) bricks/c_tn_m3 45 27 357 1 1 0 0 0 +} +// brush 3998 +{ +( -2336 2816 120 ) ( -2752 2816 120 ) ( -2752 2688 136 ) bricks/c_tn_m3 73 -34 353 1 1 0 0 0 +( -2752 2816 328 ) ( -2336 2816 328 ) ( -2336 2688 344 ) bricks/c_tn_m3 73 -34 353 1 1 0 0 0 +( -2784 2688 152 ) ( -2368 2688 152 ) ( -2368 2688 136 ) bricks/c_tn_m3 73 -34 353 1 1 0 0 0 +( -2368 2816 136 ) ( -2368 2816 120 ) ( -2368 2688 136 ) bricks/c_tn_m3 73 -34 353 1 1 0 0 0 +( -2368 2816 136 ) ( -2784 2816 136 ) ( -2784 2816 120 ) bricks/c_tn_m3 73 -34 353 1 1 0 0 0 +( -2384 2512 120 ) ( -2384 2528 120 ) ( -2384 2520 152 ) bricks/c_tn_m3 73 -34 353 1 1 0 0 0 +} +// brush 3999 +{ +( -2336 2688 136 ) ( -2752 2688 136 ) ( -2752 2560 160 ) bricks/c_tn_m3 115 -107 349 1 1 0 0 0 +( -2752 2688 344 ) ( -2336 2688 344 ) ( -2336 2560 368 ) bricks/c_tn_m3 115 -107 349 1 1 0 0 0 +( -2784 2560 176 ) ( -2368 2560 176 ) ( -2368 2560 160 ) bricks/c_tn_m3 115 -107 349 1 1 0 0 0 +( -2368 2688 152 ) ( -2368 2688 136 ) ( -2368 2560 160 ) bricks/c_tn_m3 115 -107 349 1 1 0 0 0 +( -2368 2688 152 ) ( -2784 2688 152 ) ( -2784 2688 136 ) bricks/c_tn_m3 115 -107 349 1 1 0 0 0 +( -2384 2512 136 ) ( -2384 2528 136 ) ( -2384 2520 176 ) bricks/c_tn_m3 115 -107 349 1 1 0 0 0 +} +// brush 4000 +{ +( -2336 2560 160 ) ( -2752 2560 160 ) ( -2752 2432 192 ) bricks/c_tn_m3 163 22 346 1 1 0 0 0 +( -2752 2560 368 ) ( -2336 2560 368 ) ( -2336 2432 400 ) bricks/c_tn_m3 163 22 346 1 1 0 0 0 +( -2784 2432 208 ) ( -2368 2432 208 ) ( -2368 2432 192 ) bricks/c_tn_m3 163 22 346 1 1 0 0 0 +( -2368 2560 176 ) ( -2368 2560 160 ) ( -2368 2432 192 ) bricks/c_tn_m3 163 22 346 1 1 0 0 0 +( -2368 2560 176 ) ( -2784 2560 176 ) ( -2784 2560 160 ) bricks/c_tn_m3 163 22 346 1 1 0 0 0 +( -2384 2512 160 ) ( -2384 2528 160 ) ( -2384 2520 208 ) bricks/c_tn_m3 163 22 346 1 1 0 0 0 +} +// brush 4001 +{ +( -2336 2432 192 ) ( -2752 2432 192 ) ( -2752 2112 288 ) bricks/c_tn_m3 -49 -116 343 1 1 0 0 0 +( -2752 2432 400 ) ( -2336 2432 400 ) ( -2336 2112 496 ) bricks/c_tn_m3 -49 -116 343 1 1 0 0 0 +( -2784 2112 304 ) ( -2368 2112 304 ) ( -2368 2112 288 ) bricks/c_tn_m3 -49 -116 343 1 1 0 0 0 +( -2368 2432 212 ) ( -2368 2432 196 ) ( -2368 2112 288 ) bricks/c_tn_m3 -49 -116 343 1 1 0 0 0 +( -2368 2432 208 ) ( -2784 2432 208 ) ( -2784 2432 192 ) bricks/c_tn_m3 -49 -116 343 1 1 0 0 0 +( -2384 2512 192 ) ( -2384 2528 192 ) ( -2384 2520 304 ) bricks/c_tn_m3 -49 -116 343 1 1 0 0 0 +} +// brush 4002 +{ +( -2336 2112 288 ) ( -2752 2112 288 ) ( -2752 1984 320 ) bricks/c_tn_m3 -101 38 346 1 1 0 0 0 +( -2752 2080 504 ) ( -2336 2080 504 ) ( -2336 1952 536 ) bricks/c_tn_m3 -101 38 346 1 1 0 0 0 +( -2784 1984 336 ) ( -2368 1984 336 ) ( -2368 1984 320 ) bricks/c_tn_m3 -101 38 346 1 1 0 0 0 +( -2368 2112 304 ) ( -2368 2112 288 ) ( -2368 1984 320 ) bricks/c_tn_m3 -101 38 346 1 1 0 0 0 +( -2368 2112 304 ) ( -2784 2112 304 ) ( -2784 2112 288 ) bricks/c_tn_m3 -101 38 346 1 1 0 0 0 +( -2384 2512 288 ) ( -2384 2528 288 ) ( -2384 2520 336 ) bricks/c_tn_m3 -101 38 346 1 1 0 0 0 +} +// brush 4003 +{ +( -2336 1984 320 ) ( -2752 1984 320 ) ( -2752 1856 344 ) bricks/c_tn_m3 95 -92 350 1 1 0 0 0 +( -2368 1856 552 ) ( -2384 1856 552 ) ( -2384 1984 528 ) bricks/c_tn_m3 95 -92 350 1 1 0 0 0 +( -2384 1856 552 ) ( -2368 1856 552 ) ( -2368 1856 344 ) bricks/c_tn_m3 95 -92 350 1 1 0 0 0 +( -2368 1984 336 ) ( -2368 1984 320 ) ( -2368 1856 344 ) bricks/c_tn_m3 95 -92 350 1 1 0 0 0 +( -2368 1984 528 ) ( -2384 1984 528 ) ( -2384 1984 320 ) bricks/c_tn_m3 95 -92 350 1 1 0 0 0 +( -2384 2512 320 ) ( -2384 2528 320 ) ( -2384 2520 360 ) bricks/c_tn_m3 95 -92 350 1 1 0 0 0 +} +// brush 4004 +{ +( -2336 1856 344 ) ( -2752 1856 344 ) ( -2752 1728 360 ) bricks/c_tn_m3 61 71 353 1 1 0 0 0 +( -2384 1856 552 ) ( -2368 1856 552 ) ( -2368 1728 568 ) bricks/c_tn_m3 61 71 353 1 1 0 0 0 +( -2384 1728 568 ) ( -2368 1728 568 ) ( -2368 1728 360 ) bricks/c_tn_m3 61 71 353 1 1 0 0 0 +( -2368 1856 360 ) ( -2368 1856 344 ) ( -2368 1728 360 ) bricks/c_tn_m3 61 71 353 1 1 0 0 0 +( -2368 1856 552 ) ( -2384 1856 552 ) ( -2384 1856 344 ) bricks/c_tn_m3 61 71 353 1 1 0 0 0 +( -2384 2512 344 ) ( -2384 2528 344 ) ( -2384 2520 376 ) bricks/c_tn_m3 61 71 353 1 1 0 0 0 +} +// brush 4005 +{ +( -2336 1728 360 ) ( -2752 1728 360 ) ( -2752 1600 368 ) bricks/c_tn_m3 32 -17 356 1 1 0 0 0 +( -2384 1728 568 ) ( -2368 1728 568 ) ( -2368 1600 576 ) bricks/c_tn_m3 32 -17 356 1 1 0 0 0 +( -2384 1600 576 ) ( -2368 1600 576 ) ( -2368 1600 368 ) bricks/c_tn_m3 32 -17 356 1 1 0 0 0 +( -2368 1728 376 ) ( -2368 1728 360 ) ( -2368 1600 368 ) bricks/c_tn_m3 32 -17 356 1 1 0 0 0 +( -2368 1728 568 ) ( -2384 1728 568 ) ( -2384 1728 360 ) bricks/c_tn_m3 32 -17 356 1 1 0 0 0 +( -2384 2512 360 ) ( -2384 2528 360 ) ( -2384 2520 384 ) bricks/c_tn_m3 32 -17 356 1 1 0 0 0 +} +// brush 4006 +{ +( -1968 2944 320 ) ( -2384 2944 320 ) ( -2384 2816 328 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 2944 336 ) ( -1968 2944 336 ) ( -1968 2816 344 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 2816 344 ) ( -1968 2816 344 ) ( -1968 2816 328 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 2944 336 ) ( -1968 2944 320 ) ( -1968 2816 328 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 2944 336 ) ( -2384 2944 336 ) ( -2384 2944 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 2944 320 ) ( -2384 2944 336 ) ( -2384 2816 344 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4007 +{ +( -1968 2816 328 ) ( -2384 2816 328 ) ( -2384 2688 344 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 2816 344 ) ( -1968 2816 344 ) ( -1968 2688 360 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 2688 360 ) ( -1968 2688 360 ) ( -1968 2688 344 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 2816 344 ) ( -1968 2816 328 ) ( -1968 2688 344 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 2816 344 ) ( -2384 2816 344 ) ( -2384 2816 328 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 2816 328 ) ( -2384 2816 344 ) ( -2384 2688 360 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4008 +{ +( -1968 2688 344 ) ( -2384 2688 344 ) ( -2384 2560 368 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 2688 360 ) ( -1968 2688 360 ) ( -1968 2560 384 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 2560 384 ) ( -1968 2560 384 ) ( -1968 2560 368 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 2688 360 ) ( -1968 2688 344 ) ( -1968 2560 368 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 2688 360 ) ( -2384 2688 360 ) ( -2384 2688 344 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 2688 344 ) ( -2384 2688 360 ) ( -2384 2560 384 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4009 +{ +( -1968 2560 368 ) ( -2384 2560 368 ) ( -2384 2432 400 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 2560 384 ) ( -1968 2560 384 ) ( -1968 2432 416 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 2432 416 ) ( -1968 2432 416 ) ( -1968 2432 400 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 2560 384 ) ( -1968 2560 368 ) ( -1968 2432 400 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 2560 384 ) ( -2384 2560 384 ) ( -2384 2560 368 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 2560 368 ) ( -2384 2560 384 ) ( -2384 2432 416 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4010 +{ +( -1968 2432 400 ) ( -2384 2432 400 ) ( -2384 2112 496 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 2432 416 ) ( -1968 2432 416 ) ( -1968 2112 512 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 2112 512 ) ( -1968 2112 512 ) ( -1968 2112 496 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 2432 420 ) ( -1968 2432 404 ) ( -1968 2112 496 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 2432 416 ) ( -2384 2432 416 ) ( -2384 2432 400 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 2432 404 ) ( -2384 2432 420 ) ( -2384 2112 512 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4011 +{ +( -1968 2112 496 ) ( -2384 2112 496 ) ( -2384 1984 528 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 2112 512 ) ( -1968 2112 512 ) ( -1968 1984 544 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 1984 544 ) ( -1968 1984 544 ) ( -1968 1984 528 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 2112 512 ) ( -1968 2112 496 ) ( -1968 1984 528 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 2112 512 ) ( -2384 2112 512 ) ( -2384 2112 496 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 2112 496 ) ( -2384 2112 512 ) ( -2384 1984 544 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4012 +{ +( -1968 1984 528 ) ( -2384 1984 528 ) ( -2384 1856 552 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 1984 544 ) ( -1968 1984 544 ) ( -1968 1856 568 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 1856 568 ) ( -1968 1856 568 ) ( -1968 1856 552 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 1984 544 ) ( -1968 1984 528 ) ( -1968 1856 552 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 1984 544 ) ( -2384 1984 544 ) ( -2384 1984 528 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 1984 528 ) ( -2384 1984 544 ) ( -2384 1856 568 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4013 +{ +( -1968 1856 552 ) ( -2384 1856 552 ) ( -2384 1728 568 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 1856 568 ) ( -1968 1856 568 ) ( -1968 1728 584 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 1728 584 ) ( -1968 1728 584 ) ( -1968 1728 568 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 1856 568 ) ( -1968 1856 552 ) ( -1968 1728 568 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 1856 568 ) ( -2384 1856 568 ) ( -2384 1856 552 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 1856 552 ) ( -2384 1856 568 ) ( -2384 1728 584 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4014 +{ +( -1968 1728 568 ) ( -2384 1728 568 ) ( -2384 1600 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 1728 584 ) ( -1968 1728 584 ) ( -1968 1600 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 1600 592 ) ( -1968 1600 592 ) ( -1968 1600 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 1728 584 ) ( -1968 1728 568 ) ( -1968 1600 576 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1968 1728 584 ) ( -2384 1728 584 ) ( -2384 1728 568 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2384 1728 568 ) ( -2384 1728 584 ) ( -2384 1600 592 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4015 +{ +( -2368 2112 496 ) ( -2336 2112 496 ) ( -2336 1984 528 ) bricks/c_tn_m1 22 -32 -90 1 1 0 0 0 +( -2368 2112 464 ) ( -2368 2112 496 ) ( -2368 1984 528 ) bricks/c_tn_m1 84 -1 -90 1 1 0 0 0 +( -2336 2112 496 ) ( -2368 2112 464 ) ( -2368 1984 496 ) bricks/c_tn_m1 22 -32 -90 1 1 0 0 0 +( -2352 2112 496 ) ( -2368 2112 464 ) ( -2336 2112 464 ) bricks/c_tn_m1 85 -1 -90 1 1 0 0 0 +( -2352 1984 496 ) ( -2368 1984 496 ) ( -2360 1984 528 ) bricks/c_tn_m1 85 -1 -90 1 1 0 0 0 +} +// brush 4016 +{ +( -2016 2112 496 ) ( -1984 2112 496 ) ( -1984 1984 528 ) bricks/c_tn_m1 -21 32 90 1 1 0 0 0 +( -1984 2112 496 ) ( -1984 2112 464 ) ( -1984 1984 496 ) bricks/c_tn_m1 -21 32 90 1 1 0 0 0 +( -1984 2112 464 ) ( -2016 2112 496 ) ( -2016 1984 528 ) bricks/c_tn_m1 -21 32 90 1 1 0 0 0 +( -2016 2112 464 ) ( -1984 2112 464 ) ( -2000 2112 496 ) bricks/c_tn_m1 -21 32 90 1 1 0 0 0 +( -1992 1984 496 ) ( -2016 1984 496 ) ( -2004 1984 528 ) bricks/c_tn_m1 -21 32 90 1 1 0 0 0 +} +// brush 4017 +{ +( -2016 1856 552 ) ( -1984 1856 552 ) ( -1984 1728 568 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -1984 1856 552 ) ( -1984 1856 520 ) ( -1984 1728 536 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -1984 1856 520 ) ( -2016 1856 552 ) ( -2016 1728 568 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -1992 1728 536 ) ( -2016 1728 536 ) ( -2004 1728 568 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +( -2016 1856 520 ) ( -1992 1856 520 ) ( -2004 1856 568 ) bricks/c_tn_m1 -16 32 90 1 1 0 0 0 +} +// brush 4018 +{ +( -2368 1856 552 ) ( -2336 1856 552 ) ( -2336 1728 568 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +( -2368 1856 520 ) ( -2368 1856 552 ) ( -2368 1728 568 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +( -2336 1856 552 ) ( -2368 1856 520 ) ( -2368 1728 536 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +( -2352 1728 536 ) ( -2368 1728 536 ) ( -2360 1728 568 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +( -2360 1856 520 ) ( -2344 1856 520 ) ( -2352 1856 568 ) bricks/c_tn_m1 17 -32 270 1 1 0 0 0 +} +// brush 4019 +{ +( -2368 2560 368 ) ( -2336 2560 368 ) ( -2336 2432 400 ) bricks/c_tn_m1 -6 -32 -90 1 1 0 0 0 +( -2368 2560 336 ) ( -2368 2560 368 ) ( -2368 2432 400 ) bricks/c_tn_m1 -6 -32 -90 1 1 0 0 0 +( -2336 2560 368 ) ( -2368 2560 336 ) ( -2368 2432 368 ) bricks/c_tn_m1 -6 -32 -90 1 1 0 0 0 +( -2352 2560 368 ) ( -2368 2560 336 ) ( -2336 2560 336 ) bricks/c_tn_m1 -6 -32 -90 1 1 0 0 0 +( -2344 2432 336 ) ( -2360 2432 336 ) ( -2352 2432 400 ) bricks/c_tn_m1 -6 -32 -90 1 1 0 0 0 +} +// brush 4020 +{ +( -2016 2560 368 ) ( -1984 2560 368 ) ( -1984 2432 400 ) bricks/c_tn_m1 6 32 90 1 1 0 0 0 +( -1984 2560 368 ) ( -1984 2560 336 ) ( -1984 2432 368 ) bricks/c_tn_m1 6 32 90 1 1 0 0 0 +( -1984 2560 336 ) ( -2016 2560 368 ) ( -2016 2432 400 ) bricks/c_tn_m1 6 32 90 1 1 0 0 0 +( -2016 2560 320 ) ( -1984 2560 320 ) ( -2000 2560 352 ) bricks/c_tn_m1 6 32 90 1 1 0 0 0 +( -1992 2432 336 ) ( -2008 2432 336 ) ( -2000 2432 400 ) bricks/c_tn_m1 6 32 90 1 1 0 0 0 +} +// brush 4021 +{ +( -2368 2880 320 ) ( -2336 2880 320 ) ( -2336 2752 336 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +( -2368 2880 288 ) ( -2368 2880 320 ) ( -2368 2752 336 ) bricks/c_tn_m1 47 -1 -90 1 1 0 0 0 +( -2336 2880 320 ) ( -2368 2880 288 ) ( -2368 2752 304 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +( -2352 2688 304 ) ( -2368 2688 304 ) ( -2360 2688 336 ) bricks/c_tn_m1 48 -1 -90 1 1 0 0 0 +( -2368 2816 288 ) ( -2344 2816 288 ) ( -2356 2816 336 ) bricks/c_tn_m1 48 -1 -90 1 1 0 0 0 +} +// brush 4022 +{ +( -2016 2816 328 ) ( -1984 2816 328 ) ( -1984 2688 344 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +( -1984 2816 328 ) ( -1984 2816 296 ) ( -1984 2688 312 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +( -1984 2816 296 ) ( -2016 2816 328 ) ( -2016 2688 344 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +( -1992 2688 312 ) ( -2016 2688 312 ) ( -2004 2688 344 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +( -2024 2816 296 ) ( -2016 2816 296 ) ( -2020 2816 344 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +} +// brush 4023 +{ +( -2792 3328 320 ) ( -2795 3360 320 ) ( -2709 3360 320 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -2709 3360 320 ) ( -2795 3360 320 ) ( -2792 3328 288 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -2784 3352 288 ) ( -2784 3360 288 ) ( -2784 3356 320 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -2720 3360 288 ) ( -2720 3328 288 ) ( -2720 3344 320 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -2784 3352 288 ) ( -2768 3352 288 ) ( -2776 3352 320 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -2768 3336 288 ) ( -2784 3336 288 ) ( -2776 3336 320 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +} +// brush 4024 +{ +( -2792 3328 320 ) ( -2795 3360 320 ) ( -2709 3360 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2712 3328 320 ) ( -2712 3328 288 ) ( -2752 3328 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2709 3360 320 ) ( -2795 3360 320 ) ( -2792 3328 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2784 3352 288 ) ( -2784 3360 288 ) ( -2784 3356 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2720 3360 288 ) ( -2720 3328 288 ) ( -2720 3344 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2784 3336 288 ) ( -2768 3336 288 ) ( -2776 3336 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4025 +{ +( -2792 3328 320 ) ( -2795 3360 320 ) ( -2709 3360 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2709 3360 320 ) ( -2795 3360 320 ) ( -2792 3328 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2784 3352 288 ) ( -2784 3360 288 ) ( -2784 3356 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2720 3360 288 ) ( -2720 3328 288 ) ( -2720 3344 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2768 3352 288 ) ( -2784 3352 288 ) ( -2776 3352 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4026 +{ +( -2792 3328 320 ) ( -2795 3360 320 ) ( -2709 3360 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2712 3328 320 ) ( -2712 3328 288 ) ( -2752 3328 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2709 3360 320 ) ( -2795 3360 320 ) ( -2792 3328 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2712 3328 320 ) ( -2709 3360 320 ) ( -2712 3328 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2720 3328 288 ) ( -2720 3360 288 ) ( -2720 3344 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4027 +{ +( -2792 3328 320 ) ( -2795 3360 320 ) ( -2709 3360 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2712 3328 320 ) ( -2712 3328 288 ) ( -2752 3328 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2709 3360 320 ) ( -2795 3360 320 ) ( -2792 3328 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2792 3328 288 ) ( -2795 3360 320 ) ( -2792 3328 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2784 3360 288 ) ( -2784 3352 288 ) ( -2784 3356 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4028 +{ +( -2679 3680 320 ) ( -2825 3680 320 ) ( -2828 3712 320 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -2828 3712 288 ) ( -2825 3680 320 ) ( -2679 3680 320 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -2784 3704 288 ) ( -2784 3712 288 ) ( -2784 3708 320 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -2720 3712 288 ) ( -2720 3704 288 ) ( -2720 3708 320 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -2784 3704 288 ) ( -2768 3704 288 ) ( -2776 3704 320 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +( -2760 3688 296 ) ( -2784 3688 296 ) ( -2772 3688 320 ) common/li_pv_v4a 32 8 0 1 1 0 1 7000 +} +// brush 4029 +{ +( -2679 3680 320 ) ( -2825 3680 320 ) ( -2828 3712 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2828 3712 288 ) ( -2825 3680 320 ) ( -2679 3680 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2784 3704 288 ) ( -2784 3712 288 ) ( -2784 3708 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2720 3712 288 ) ( -2720 3704 288 ) ( -2720 3708 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2784 3688 296 ) ( -2760 3688 296 ) ( -2772 3688 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4030 +{ +( -2679 3680 320 ) ( -2825 3680 320 ) ( -2828 3712 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -3024 3712 320 ) ( -3376 3712 320 ) ( -3376 3712 304 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2828 3712 288 ) ( -2825 3680 320 ) ( -2679 3680 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2784 3704 288 ) ( -2784 3712 288 ) ( -2784 3708 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2720 3712 288 ) ( -2720 3704 288 ) ( -2720 3708 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2768 3704 288 ) ( -2784 3704 288 ) ( -2776 3704 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4031 +{ +( -2679 3680 320 ) ( -2825 3680 320 ) ( -2828 3712 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -3024 3712 320 ) ( -3376 3712 320 ) ( -3376 3712 304 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2828 3712 288 ) ( -2825 3680 320 ) ( -2679 3680 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2676 3712 288 ) ( -2679 3680 320 ) ( -2676 3712 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2720 3704 288 ) ( -2720 3712 288 ) ( -2720 3708 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4032 +{ +( -2679 3680 320 ) ( -2825 3680 320 ) ( -2828 3712 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -3024 3712 320 ) ( -3376 3712 320 ) ( -3376 3712 304 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2828 3712 288 ) ( -2825 3680 320 ) ( -2679 3680 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2828 3712 320 ) ( -2825 3680 320 ) ( -2828 3712 288 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2784 3712 288 ) ( -2784 3704 288 ) ( -2784 3708 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4033 +{ +( -2676 3712 112 ) ( -2826 3712 112 ) ( -2826 3696 112 ) bricks/c_sr_mr5 64 0 0 1 1 0 0 0 +( -2752 3344 128 ) ( -2752 3712 128 ) ( -2624 3712 128 ) bricks/c_sr_mr5 0 -2 180 1 1 0 0 0 +( -2678 3696 112 ) ( -2678 3696 272 ) ( -2676 3712 272 ) bricks/c_sr_mr5 -64 0 0 1 1 0 0 0 +( -2828 3712 128 ) ( -2828 3712 112 ) ( -2676 3712 112 ) bricks/c_sr_mr5 64 0 0 1 1 0 0 0 +( -2828 3712 112 ) ( -2828 3712 128 ) ( -2826 3696 128 ) bricks/c_sr_mr5 -64 0 0 1 1 0 0 0 +( -2678 3696 272 ) ( -2678 3696 112 ) ( -2752 3696 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +} +// brush 4034 +{ +( -2528 3696 112 ) ( -2656 3696 112 ) ( -2656 3328 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2656 3328 128 ) ( -2656 3696 128 ) ( -2528 3696 128 ) bricks/c_sr_mr5 0 2 169 1 1 0 0 0 +( -2524 3666 96 ) ( -2524 3666 256 ) ( -2520 3680 256 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2676 3712 256 ) ( -2676 3712 96 ) ( -2520 3680 96 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2678 3696 256 ) ( -2678 3696 96 ) ( -2676 3712 96 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2524 3666 256 ) ( -2524 3666 96 ) ( -2678 3696 96 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +} +// brush 4035 +{ +( -2372 3664 112 ) ( -2500 3664 112 ) ( -2500 3296 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2500 3296 128 ) ( -2500 3664 128 ) ( -2372 3664 128 ) bricks/c_sr_mr5 0 -4 157 1 1 0 0 0 +( -2388 3624 256 ) ( -2388 3624 96 ) ( -2394 3612 96 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2388 3624 96 ) ( -2388 3624 256 ) ( -2520 3680 256 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2524 3666 256 ) ( -2524 3666 96 ) ( -2520 3680 96 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2394 3612 256 ) ( -2394 3612 96 ) ( -2524 3666 96 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +} +// brush 4036 +{ +( -2240 3608 112 ) ( -2368 3608 112 ) ( -2368 3240 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2368 3240 128 ) ( -2368 3608 128 ) ( -2240 3608 128 ) bricks/c_sr_mr5 0 20 147 1 1 0 0 0 +( -2272 3534 96 ) ( -2272 3534 256 ) ( -2264 3544 256 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2388 3624 256 ) ( -2388 3624 96 ) ( -2264 3544 96 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2394 3612 256 ) ( -2394 3612 96 ) ( -2388 3624 96 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2272 3534 256 ) ( -2272 3534 96 ) ( -2394 3612 96 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +} +// brush 4037 +{ +( -2088 3456 128 ) ( -2088 3328 128 ) ( -2456 3328 128 ) bricks/c_sr_mr5 0 4 122 1 1 0 0 0 +( -2456 3328 112 ) ( -2088 3328 112 ) ( -2088 3456 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2162 3424 144 ) ( -2162 3424 -16 ) ( -2152 3432 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2072 3308 -16 ) ( -2072 3308 144 ) ( -2152 3432 144 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2084 3302 -16 ) ( -2084 3302 144 ) ( -2072 3308 144 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2162 3424 -16 ) ( -2162 3424 144 ) ( -2084 3302 144 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 4038 +{ +( -2032 3324 128 ) ( -2032 3196 128 ) ( -2400 3196 128 ) bricks/c_sr_mr5 0 6 113 1 1 0 0 0 +( -2400 3196 112 ) ( -2032 3196 112 ) ( -2032 3324 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2072 3308 -16 ) ( -2072 3308 144 ) ( -2084 3302 144 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2072 3308 144 ) ( -2072 3308 -16 ) ( -2016 3176 -16 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2030 3172 -16 ) ( -2030 3172 144 ) ( -2016 3176 144 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2084 3302 -16 ) ( -2084 3302 144 ) ( -2030 3172 144 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 4039 +{ +( -2000 3168 128 ) ( -2000 3040 128 ) ( -2368 3040 128 ) bricks/c_sr_mr5 0 -5 101 1 1 0 0 0 +( -2368 3040 112 ) ( -2000 3040 112 ) ( -2000 3168 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2030 3172 144 ) ( -2030 3172 -16 ) ( -2016 3176 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -1984 3020 -16 ) ( -1984 3020 144 ) ( -2016 3176 144 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2000 3018 -16 ) ( -2000 3018 144 ) ( -1984 3020 144 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2030 3172 -16 ) ( -2030 3172 144 ) ( -2000 3018 144 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 4040 +{ +( -1984 3072 128 ) ( -1984 2944 128 ) ( -2352 2944 128 ) bricks/c_sr_mr5 -64 31 90 1 1 0 0 0 +( -2352 2944 112 ) ( -1984 2944 112 ) ( -1984 3072 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2000 3018 128 ) ( -2000 3018 -32 ) ( -1984 3020 -32 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -1984 3020 128 ) ( -1984 3020 -32 ) ( -1984 2944 -32 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1984 2944 96 ) ( -2352 2944 96 ) ( -2352 2944 256 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2000 3018 -32 ) ( -2000 3018 128 ) ( -2000 2944 128 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 4041 +{ +( -2210 3542 112 ) ( -2264 3542 112 ) ( -2264 3458 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2264 3458 128 ) ( -2264 3542 128 ) ( -2210 3542 128 ) bricks/c_sr_mr5 0 22 135 1 1 0 0 0 +( -2152 3432 128 ) ( -2152 3432 112 ) ( -2162 3424 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2152 3432 112 ) ( -2152 3432 128 ) ( -2264 3544 128 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2264 3544 112 ) ( -2264 3544 128 ) ( -2272 3534 128 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2216 3478 128 ) ( -2216 3478 112 ) ( -2272 3534 112 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 4042 +{ +( -2624 3712 112 ) ( -2752 3712 112 ) ( -2752 3344 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2752 3344 128 ) ( -2752 3712 128 ) ( -2624 3712 128 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( -2714 3328 112 ) ( -2714 3328 96 ) ( -2752 3328 96 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2710 3344 128 ) ( -2710 3344 112 ) ( -2712 3328 112 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2794 3344 112 ) ( -2794 3344 128 ) ( -2792 3328 128 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2794 3344 128 ) ( -2794 3344 112 ) ( -2710 3344 112 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4043 +{ +( -2528 3696 112 ) ( -2656 3696 112 ) ( -2656 3328 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2656 3328 128 ) ( -2656 3696 128 ) ( -2528 3696 128 ) bricks/c_sr_mr5 0 -4 349 1 1 0 0 0 +( -2636 3312 256 ) ( -2636 3312 96 ) ( -2712 3328 96 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2636 3312 96 ) ( -2636 3312 256 ) ( -2632 3328 256 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2714 3312 256 ) ( -2714 3312 240 ) ( -2712 3328 240 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2632 3328 96 ) ( -2632 3328 256 ) ( -2710 3344 256 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4044 +{ +( -2372 3664 112 ) ( -2500 3664 112 ) ( -2500 3296 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2500 3296 128 ) ( -2500 3664 128 ) ( -2372 3664 128 ) bricks/c_sr_mr5 0 0 336 1 1 0 0 0 +( -2572 3284 256 ) ( -2572 3284 96 ) ( -2636 3312 96 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2564 3298 256 ) ( -2564 3298 96 ) ( -2572 3284 96 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2632 3328 96 ) ( -2632 3328 256 ) ( -2636 3312 256 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2632 3328 256 ) ( -2632 3328 96 ) ( -2564 3298 96 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4045 +{ +( -2240 3608 112 ) ( -2368 3608 112 ) ( -2368 3240 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2368 3240 128 ) ( -2368 3608 128 ) ( -2240 3608 128 ) bricks/c_sr_mr5 0 8 327 1 1 0 0 0 +( -2504 3240 256 ) ( -2504 3240 96 ) ( -2572 3284 96 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2494 3252 256 ) ( -2494 3252 96 ) ( -2504 3240 96 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2564 3298 96 ) ( -2564 3298 256 ) ( -2572 3284 256 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2494 3252 96 ) ( -2494 3252 256 ) ( -2564 3298 256 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4046 +{ +( -2088 3456 128 ) ( -2088 3328 128 ) ( -2456 3328 128 ) bricks/c_sr_mr5 0 -2 303 1 1 0 0 0 +( -2456 3328 112 ) ( -2088 3328 112 ) ( -2088 3456 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2456 3192 -16 ) ( -2456 3192 144 ) ( -2412 3124 144 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2444 3202 -16 ) ( -2444 3202 144 ) ( -2456 3192 144 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2398 3132 144 ) ( -2398 3132 -16 ) ( -2412 3124 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2444 3202 144 ) ( -2444 3202 -16 ) ( -2398 3132 -16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4047 +{ +( -2032 3324 128 ) ( -2032 3196 128 ) ( -2400 3196 128 ) bricks/c_sr_mr5 0 -7 294 1 1 0 0 0 +( -2400 3196 112 ) ( -2032 3196 112 ) ( -2032 3324 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2412 3124 -16 ) ( -2412 3124 144 ) ( -2384 3060 144 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2398 3132 -16 ) ( -2398 3132 144 ) ( -2412 3124 144 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2368 3064 144 ) ( -2368 3064 -16 ) ( -2384 3060 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2368 3064 -16 ) ( -2368 3064 144 ) ( -2398 3132 144 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4048 +{ +( -2000 3168 128 ) ( -2000 3040 128 ) ( -2368 3040 128 ) bricks/c_sr_mr5 0 -1 282 1 1 0 0 0 +( -2368 3040 112 ) ( -2000 3040 112 ) ( -2000 3168 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2384 3060 -16 ) ( -2384 3060 144 ) ( -2368 2984 144 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2384 3060 144 ) ( -2384 3060 -16 ) ( -2368 3064 -16 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2384 2982 -16 ) ( -2384 2982 0 ) ( -2368 2984 0 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2368 3064 144 ) ( -2368 3064 -16 ) ( -2352 2986 -16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4049 +{ +( -2456 3252 112 ) ( -2494 3252 112 ) ( -2494 3192 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2494 3192 128 ) ( -2494 3252 128 ) ( -2456 3252 128 ) bricks/c_sr_mr5 0 8 315 1 1 0 0 0 +( -2504 3240 112 ) ( -2504 3240 128 ) ( -2456 3192 128 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -2444 3202 128 ) ( -2444 3202 112 ) ( -2456 3192 112 ) bricks/c_sr_mr5 64 -16 0 1 1 0 0 0 +( -2444 3202 112 ) ( -2444 3202 128 ) ( -2494 3252 128 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2504 3240 128 ) ( -2504 3240 112 ) ( -2494 3252 112 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 4050 +{ +( -2016 2944 320 ) ( -2016 3017 320 ) ( -1984 3020 320 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +( -1984 2320 304 ) ( -1984 2320 320 ) ( -1984 2672 320 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +( -1984 3020 288 ) ( -2016 3017 320 ) ( -2016 2944 320 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +( -2000 2944 320 ) ( -1984 2944 288 ) ( -2016 2944 288 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +( -1984 3020 320 ) ( -2016 3017 320 ) ( -1984 3020 288 ) bricks/c_tn_m1 16 32 90 1 1 0 0 0 +} +// brush 4051 +{ +( -2016 3017 320 ) ( -1984 3020 288 ) ( -2047 3166 320 ) bricks/c_tn_m1 -91 0 102 1 1 0 0 0 +( -1984 3020 336 ) ( -1984 3020 288 ) ( -2016 3017 320 ) bricks/c_tn_m1 -91 0 102 1 1 0 0 0 +( -2047 3166 320 ) ( -1984 3020 288 ) ( -1984 3020 336 ) bricks/c_tn_m1 -91 0 102 1 1 0 0 0 +( -2208 3017 320 ) ( -2264 3017 320 ) ( -2236 3166 320 ) bricks/c_tn_m1 -91 0 102 1 1 0 0 0 +} +// brush 4052 +{ +( -1984 3020 288 ) ( -2016 3176 288 ) ( -2047 3166 320 ) bricks/c_tn_m1 -91 0 102 1 1 0 0 0 +( -2047 3166 320 ) ( -2016 3176 288 ) ( -2016 3176 336 ) bricks/c_tn_m1 -91 0 102 1 1 0 0 0 +( -2016 3176 336 ) ( -2016 3176 288 ) ( -1984 3020 288 ) bricks/c_tn_m1 -91 0 102 1 1 0 0 0 +( -1984 3020 336 ) ( -1984 3020 288 ) ( -2047 3166 320 ) bricks/c_tn_m1 -91 0 102 1 1 0 0 0 +( -2208 3020 320 ) ( -2264 3020 320 ) ( -2236 3176 320 ) bricks/c_tn_m1 -91 0 102 1 1 0 0 0 +} +// brush 4053 +{ +( -2047 3166 320 ) ( -2016 3176 288 ) ( -2101 3292 320 ) bricks/c_tn_m1 -34 7 113 1 1 0 0 0 +( -2016 3176 336 ) ( -2016 3176 288 ) ( -2047 3166 320 ) bricks/c_tn_m1 -34 7 113 1 1 0 0 0 +( -2101 3292 320 ) ( -2016 3176 288 ) ( -2016 3176 336 ) bricks/c_tn_m1 -34 7 113 1 1 0 0 0 +( -2208 3166 320 ) ( -2264 3166 320 ) ( -2236 3292 320 ) bricks/c_tn_m1 -34 7 113 1 1 0 0 0 +} +// brush 4054 +{ +( -2016 3176 288 ) ( -2072 3308 288 ) ( -2101 3292 320 ) bricks/c_tn_m1 -34 7 113 1 1 0 0 0 +( -2101 3292 320 ) ( -2072 3308 288 ) ( -2072 3308 336 ) bricks/c_tn_m1 -34 7 113 1 1 0 0 0 +( -2072 3308 336 ) ( -2072 3308 288 ) ( -2016 3176 288 ) bricks/c_tn_m1 -34 7 113 1 1 0 0 0 +( -2016 3176 336 ) ( -2016 3176 288 ) ( -2101 3292 320 ) bricks/c_tn_m1 -34 7 113 1 1 0 0 0 +( -2208 3176 320 ) ( -2264 3176 320 ) ( -2236 3308 320 ) bricks/c_tn_m1 -34 7 113 1 1 0 0 0 +} +// brush 4055 +{ +( -2152 3432 288 ) ( -2264 3544 288 ) ( -2178 3411 320 ) bricks/c_tn_m1 -55 -8 135 1 1 0 0 0 +( -2152 3432 336 ) ( -2152 3432 288 ) ( -2178 3411 320 ) bricks/c_tn_m1 -55 -8 135 1 1 0 0 0 +( -2264 3544 336 ) ( -2264 3544 288 ) ( -2152 3432 288 ) bricks/c_tn_m1 -55 -8 135 1 1 0 0 0 +( -2178 3411 320 ) ( -2264 3544 288 ) ( -2264 3544 336 ) bricks/c_tn_m1 -55 -8 135 1 1 0 0 0 +( -2208 3411 320 ) ( -2264 3411 320 ) ( -2236 3544 320 ) bricks/c_tn_m1 -55 -8 135 1 1 0 0 0 +} +// brush 4056 +{ +( -2178 3411 320 ) ( -2264 3544 288 ) ( -2285 3518 320 ) bricks/c_tn_m1 -55 -8 135 1 1 0 0 0 +( -2285 3518 320 ) ( -2264 3544 288 ) ( -2264 3544 336 ) bricks/c_tn_m1 -55 -8 135 1 1 0 0 0 +( -2264 3544 336 ) ( -2264 3544 288 ) ( -2178 3411 320 ) bricks/c_tn_m1 -55 -8 135 1 1 0 0 0 +( -2208 3411 320 ) ( -2264 3411 320 ) ( -2236 3544 320 ) bricks/c_tn_m1 -55 -8 135 1 1 0 0 0 +} +// brush 4057 +{ +( -2404 3595 320 ) ( -2388 3624 288 ) ( -2520 3680 288 ) bricks/c_tn_m1 0 -2 157 1 1 0 0 0 +( -2388 3624 336 ) ( -2388 3624 288 ) ( -2404 3595 320 ) bricks/c_tn_m1 0 -2 157 1 1 0 0 0 +( -2520 3680 288 ) ( -2388 3624 288 ) ( -2388 3624 336 ) bricks/c_tn_m1 0 -2 157 1 1 0 0 0 +( -2404 3595 320 ) ( -2520 3680 288 ) ( -2520 3680 336 ) bricks/c_tn_m1 0 -2 157 1 1 0 0 0 +( -2208 3595 320 ) ( -2264 3595 320 ) ( -2236 3680 320 ) bricks/c_tn_m1 0 -2 157 1 1 0 0 0 +} +// brush 4058 +{ +( -2404 3595 320 ) ( -2520 3680 288 ) ( -2530 3649 320 ) bricks/c_tn_m1 0 -2 157 1 1 0 0 0 +( -2530 3649 320 ) ( -2520 3680 288 ) ( -2520 3680 336 ) bricks/c_tn_m1 0 -2 157 1 1 0 0 0 +( -2520 3680 336 ) ( -2520 3680 288 ) ( -2404 3595 320 ) bricks/c_tn_m1 0 -2 157 1 1 0 0 0 +( -2208 3595 320 ) ( -2264 3595 320 ) ( -2236 3680 320 ) bricks/c_tn_m1 0 -2 157 1 1 0 0 0 +} +// brush 4059 +{ +( -2530 3649 320 ) ( -2520 3680 288 ) ( -2676 3712 288 ) bricks/c_tn_m1 112 -3 168 1 1 0 0 0 +( -2520 3680 336 ) ( -2520 3680 288 ) ( -2530 3649 320 ) bricks/c_tn_m1 112 -3 168 1 1 0 0 0 +( -2676 3712 288 ) ( -2520 3680 288 ) ( -2520 3680 336 ) bricks/c_tn_m1 112 -3 168 1 1 0 0 0 +( -2530 3649 320 ) ( -2676 3712 288 ) ( -2676 3712 336 ) bricks/c_tn_m1 112 -3 168 1 1 0 0 0 +( -2208 3649 320 ) ( -2264 3649 320 ) ( -2236 3712 320 ) bricks/c_tn_m1 112 -3 168 1 1 0 0 0 +} +// brush 4060 +{ +( -2530 3649 320 ) ( -2676 3712 288 ) ( -2679 3680 320 ) bricks/c_tn_m1 112 -3 168 1 1 0 0 0 +( -2679 3680 320 ) ( -2676 3712 288 ) ( -2676 3712 336 ) bricks/c_tn_m1 112 -3 168 1 1 0 0 0 +( -2676 3712 336 ) ( -2676 3712 288 ) ( -2530 3649 320 ) bricks/c_tn_m1 112 -3 168 1 1 0 0 0 +( -2208 3649 320 ) ( -2264 3649 320 ) ( -2236 3712 320 ) bricks/c_tn_m1 112 -3 168 1 1 0 0 0 +} +// brush 4061 +{ +( -2353 3070 320 ) ( -2368 2984 288 ) ( -2336 2987 320 ) bricks/c_tn_m1 0 0 282 1 1 0 0 0 +( -2336 2987 320 ) ( -2368 2984 288 ) ( -2368 2984 336 ) bricks/c_tn_m1 0 0 282 1 1 0 0 0 +( -2368 2984 336 ) ( -2368 2984 288 ) ( -2353 3070 320 ) bricks/c_tn_m1 0 0 282 1 1 0 0 0 +( -2368 3080 320 ) ( -2368 3104 320 ) ( -2336 3092 320 ) bricks/c_tn_m1 0 0 282 1 1 0 0 0 +} +// brush 4062 +{ +( -2353 3070 320 ) ( -2384 3060 288 ) ( -2368 2984 288 ) bricks/c_tn_m1 0 0 282 1 1 0 0 0 +( -2368 2984 288 ) ( -2384 3060 288 ) ( -2384 3060 336 ) bricks/c_tn_m1 0 0 282 1 1 0 0 0 +( -2384 3060 336 ) ( -2384 3060 288 ) ( -2353 3070 320 ) bricks/c_tn_m1 0 0 282 1 1 0 0 0 +( -2353 3070 336 ) ( -2353 3070 320 ) ( -2368 2984 288 ) bricks/c_tn_m1 0 0 282 1 1 0 0 0 +( -2384 3080 320 ) ( -2384 3104 320 ) ( -2353 3092 320 ) bricks/c_tn_m1 0 0 282 1 1 0 0 0 +} +// brush 4063 +{ +( -2384 3139 320 ) ( -2384 3060 288 ) ( -2353 3070 320 ) bricks/c_tn_m1 0 -5 294 1 1 0 0 0 +( -2353 3070 320 ) ( -2384 3060 288 ) ( -2384 3060 336 ) bricks/c_tn_m1 0 -5 294 1 1 0 0 0 +( -2384 3060 336 ) ( -2384 3060 288 ) ( -2384 3139 320 ) bricks/c_tn_m1 0 -5 294 1 1 0 0 0 +( -2384 3080 320 ) ( -2384 3104 320 ) ( -2353 3092 320 ) bricks/c_tn_m1 0 -5 294 1 1 0 0 0 +} +// brush 4064 +{ +( -2384 3139 320 ) ( -2412 3124 288 ) ( -2384 3060 288 ) bricks/c_tn_m1 0 -5 294 1 1 0 0 0 +( -2384 3060 288 ) ( -2412 3124 288 ) ( -2412 3124 336 ) bricks/c_tn_m1 0 -5 294 1 1 0 0 0 +( -2412 3124 336 ) ( -2412 3124 288 ) ( -2384 3139 320 ) bricks/c_tn_m1 0 -5 294 1 1 0 0 0 +( -2384 3139 320 ) ( -2384 3060 288 ) ( -2384 3060 336 ) bricks/c_tn_m1 0 -5 294 1 1 0 0 0 +( -2412 3080 320 ) ( -2412 3104 320 ) ( -2384 3092 320 ) bricks/c_tn_m1 0 -5 294 1 1 0 0 0 +} +// brush 4065 +{ +( -2431 3212 320 ) ( -2412 3124 288 ) ( -2384 3139 320 ) bricks/c_tn_m1 0 -2 303 1 1 0 0 0 +( -2384 3139 320 ) ( -2412 3124 288 ) ( -2412 3124 336 ) bricks/c_tn_m1 0 -2 303 1 1 0 0 0 +( -2412 3124 336 ) ( -2412 3124 288 ) ( -2431 3212 320 ) bricks/c_tn_m1 0 -2 303 1 1 0 0 0 +( -2431 3080 320 ) ( -2431 3104 320 ) ( -2384 3092 320 ) bricks/c_tn_m1 0 -2 303 1 1 0 0 0 +} +// brush 4066 +{ +( -2431 3212 320 ) ( -2456 3192 288 ) ( -2412 3124 288 ) bricks/c_tn_m1 0 -2 303 1 1 0 0 0 +( -2412 3124 288 ) ( -2456 3192 288 ) ( -2456 3192 336 ) bricks/c_tn_m1 0 -2 303 1 1 0 0 0 +( -2456 3192 336 ) ( -2456 3192 288 ) ( -2431 3212 320 ) bricks/c_tn_m1 0 -2 303 1 1 0 0 0 +( -2431 3212 320 ) ( -2412 3124 288 ) ( -2412 3124 336 ) bricks/c_tn_m1 0 -2 303 1 1 0 0 0 +( -2456 3080 320 ) ( -2456 3104 320 ) ( -2412 3092 320 ) bricks/c_tn_m1 0 -2 303 1 1 0 0 0 +} +// brush 4067 +{ +( -2572 3284 288 ) ( -2504 3240 288 ) ( -2484 3265 320 ) bricks/c_tn_m1 91 9 327 1 1 0 0 0 +( -2504 3240 336 ) ( -2504 3240 288 ) ( -2572 3284 288 ) bricks/c_tn_m1 91 9 327 1 1 0 0 0 +( -2484 3265 320 ) ( -2504 3240 288 ) ( -2504 3240 336 ) bricks/c_tn_m1 91 9 327 1 1 0 0 0 +( -2572 3284 336 ) ( -2572 3284 288 ) ( -2484 3265 320 ) bricks/c_tn_m1 91 9 327 1 1 0 0 0 +( -2572 3080 320 ) ( -2572 3104 320 ) ( -2484 3092 320 ) bricks/c_tn_m1 91 9 327 1 1 0 0 0 +} +// brush 4068 +{ +( -2557 3312 320 ) ( -2572 3284 288 ) ( -2484 3265 320 ) bricks/c_tn_m1 91 9 327 1 1 0 0 0 +( -2572 3284 336 ) ( -2572 3284 288 ) ( -2557 3312 320 ) bricks/c_tn_m1 91 9 327 1 1 0 0 0 +( -2484 3265 320 ) ( -2572 3284 288 ) ( -2572 3284 336 ) bricks/c_tn_m1 91 9 327 1 1 0 0 0 +( -2572 3080 320 ) ( -2572 3104 320 ) ( -2484 3092 320 ) bricks/c_tn_m1 91 9 327 1 1 0 0 0 +} +// brush 4069 +{ +( -2636 3312 288 ) ( -2572 3284 288 ) ( -2557 3312 320 ) bricks/c_tn_m1 0 2 336 1 1 0 0 0 +( -2572 3284 336 ) ( -2572 3284 288 ) ( -2636 3312 288 ) bricks/c_tn_m1 0 2 336 1 1 0 0 0 +( -2557 3312 320 ) ( -2572 3284 288 ) ( -2572 3284 336 ) bricks/c_tn_m1 0 2 336 1 1 0 0 0 +( -2636 3312 336 ) ( -2636 3312 288 ) ( -2557 3312 320 ) bricks/c_tn_m1 0 2 336 1 1 0 0 0 +( -2636 3080 320 ) ( -2636 3104 320 ) ( -2557 3092 320 ) bricks/c_tn_m1 0 2 336 1 1 0 0 0 +} +// brush 4070 +{ +( -2626 3343 320 ) ( -2636 3312 288 ) ( -2557 3312 320 ) bricks/c_tn_m1 0 2 336 1 1 0 0 0 +( -2636 3312 336 ) ( -2636 3312 288 ) ( -2626 3343 320 ) bricks/c_tn_m1 0 2 336 1 1 0 0 0 +( -2557 3312 320 ) ( -2636 3312 288 ) ( -2636 3312 336 ) bricks/c_tn_m1 0 2 336 1 1 0 0 0 +( -2636 3080 320 ) ( -2636 3104 320 ) ( -2557 3092 320 ) bricks/c_tn_m1 0 2 336 1 1 0 0 0 +} +// brush 4071 +{ +( -2712 3328 288 ) ( -2636 3312 288 ) ( -2626 3343 320 ) bricks/c_tn_m1 0 4 348 1 1 0 0 0 +( -2636 3312 336 ) ( -2636 3312 288 ) ( -2712 3328 288 ) bricks/c_tn_m1 0 4 348 1 1 0 0 0 +( -2626 3343 320 ) ( -2636 3312 288 ) ( -2636 3312 336 ) bricks/c_tn_m1 0 4 348 1 1 0 0 0 +( -2712 3328 288 ) ( -2626 3343 320 ) ( -2626 3343 336 ) bricks/c_tn_m1 0 4 348 1 1 0 0 0 +( -2712 3080 320 ) ( -2712 3104 320 ) ( -2626 3092 320 ) bricks/c_tn_m1 0 4 348 1 1 0 0 0 +} +// brush 4072 +{ +( -2709 3360 320 ) ( -2712 3328 288 ) ( -2626 3343 320 ) bricks/c_tn_m1 0 4 348 1 1 0 0 0 +( -2712 3328 336 ) ( -2712 3328 288 ) ( -2709 3360 320 ) bricks/c_tn_m1 0 4 348 1 1 0 0 0 +( -2626 3343 320 ) ( -2712 3328 288 ) ( -2712 3328 336 ) bricks/c_tn_m1 0 4 348 1 1 0 0 0 +( -2712 3080 320 ) ( -2712 3104 320 ) ( -2626 3092 320 ) bricks/c_tn_m1 0 4 348 1 1 0 0 0 +} +// brush 4073 +{ +( -2676 3712 320 ) ( -2676 3712 336 ) ( -2752 3712 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2520 3680 320 ) ( -2520 3680 336 ) ( -2676 3712 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2388 3624 320 ) ( -2388 3624 336 ) ( -2520 3680 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2264 3544 320 ) ( -2264 3544 336 ) ( -2388 3624 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2152 3432 320 ) ( -2152 3432 336 ) ( -2264 3544 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2072 3308 320 ) ( -2072 3308 336 ) ( -2152 3432 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2016 3176 320 ) ( -2016 3176 336 ) ( -2072 3308 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2016 3176 336 ) ( -2016 3176 320 ) ( -1984 3020 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1984 3020 336 ) ( -1984 3020 320 ) ( -1984 2944 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3520 2176 320 ) ( -1984 2176 320 ) ( -1984 3712 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1984 3712 336 ) ( -1984 2176 336 ) ( -3520 2176 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2752 3464 272 ) ( -2752 3520 272 ) ( -2752 3492 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2088 2944 272 ) ( -2152 2944 272 ) ( -2120 2944 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2368 2944 320 ) ( -2752 3328 320 ) ( -2560 3136 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4074 +{ +( -2676 3712 96 ) ( -2676 3712 112 ) ( -2752 3712 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2520 3680 96 ) ( -2520 3680 112 ) ( -2676 3712 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2388 3624 96 ) ( -2388 3624 112 ) ( -2520 3680 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2264 3544 96 ) ( -2264 3544 112 ) ( -2388 3624 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2152 3432 96 ) ( -2152 3432 112 ) ( -2264 3544 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2072 3308 96 ) ( -2072 3308 112 ) ( -2152 3432 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2016 3176 96 ) ( -2016 3176 112 ) ( -2072 3308 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2016 3176 112 ) ( -2016 3176 96 ) ( -1984 3020 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1984 3020 112 ) ( -1984 3020 96 ) ( -1984 2944 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3520 2176 96 ) ( -1984 2176 96 ) ( -1984 3712 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1984 3712 112 ) ( -1984 2176 112 ) ( -3520 2176 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2752 3464 48 ) ( -2752 3520 48 ) ( -2752 3492 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2088 2944 48 ) ( -2152 2944 48 ) ( -2120 2944 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2368 2944 96 ) ( -2752 3328 96 ) ( -2560 3136 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 4075 +{ +( -2368 2984 320 ) ( -2336 2987 320 ) ( -2336 2752 320 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +( -2368 3128 288 ) ( -2368 3128 320 ) ( -2368 2872 320 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +( -2336 2752 320 ) ( -2336 2987 320 ) ( -2368 2984 288 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +( -2368 2984 288 ) ( -2336 2987 320 ) ( -2368 2984 320 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +( -2352 2944 288 ) ( -2360 2944 288 ) ( -2356 2944 320 ) bricks/c_tn_m1 -15 -32 -90 1 1 0 0 0 +} +// brush 4076 +{ +( -1984 3072 320 ) ( -1984 2944 320 ) ( -2352 2944 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1968 3022 160 ) ( -1968 3022 176 ) ( -1984 3020 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1968 3022 256 ) ( -1968 3022 240 ) ( -1968 2944 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1984 2944 224 ) ( -2352 2944 224 ) ( -2352 2944 384 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1984 2964 256 ) ( -1984 2944 256 ) ( -1984 2954 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2056 2944 112 ) ( -2024 2944 112 ) ( -2040 3022 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4077 +{ +( -2000 3168 320 ) ( -2000 3040 320 ) ( -2368 3040 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2000 3182 160 ) ( -2000 3182 176 ) ( -2016 3176 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2000 3182 256 ) ( -2000 3182 240 ) ( -1968 3022 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1968 3022 176 ) ( -1968 3022 160 ) ( -1984 3020 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2016 3176 112 ) ( -1984 3020 112 ) ( -2000 3098 96 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2056 3020 112 ) ( -2024 3020 112 ) ( -2040 3182 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4078 +{ +( -2032 3324 320 ) ( -2032 3196 320 ) ( -2400 3196 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2058 3316 160 ) ( -2058 3316 176 ) ( -2072 3308 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2058 3316 256 ) ( -2058 3316 240 ) ( -2000 3182 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2000 3182 176 ) ( -2000 3182 160 ) ( -2016 3176 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2072 3308 176 ) ( -2016 3176 176 ) ( -2044 3242 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2056 3176 112 ) ( -2024 3176 112 ) ( -2040 3316 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4079 +{ +( -2088 3456 320 ) ( -2088 3328 320 ) ( -2456 3328 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2140 3442 304 ) ( -2140 3442 320 ) ( -2152 3432 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2140 3442 256 ) ( -2140 3442 240 ) ( -2058 3316 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2058 3316 176 ) ( -2058 3316 160 ) ( -2072 3308 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2152 3432 176 ) ( -2072 3308 176 ) ( -2112 3370 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2056 3308 112 ) ( -2024 3308 112 ) ( -2040 3442 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4080 +{ +( -2254 3432 320 ) ( -2254 3556 320 ) ( -2152 3556 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2264 3544 160 ) ( -2264 3544 320 ) ( -2152 3432 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2140 3442 320 ) ( -2140 3442 160 ) ( -2152 3432 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2140 3442 96 ) ( -2140 3442 256 ) ( -2254 3556 256 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2264 3544 320 ) ( -2264 3544 160 ) ( -2254 3556 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2056 3432 112 ) ( -2024 3432 112 ) ( -2040 3556 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4081 +{ +( -2368 3240 320 ) ( -2368 3608 320 ) ( -2240 3608 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2254 3556 176 ) ( -2254 3556 160 ) ( -2264 3544 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2254 3556 96 ) ( -2254 3556 112 ) ( -2380 3638 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2380 3638 304 ) ( -2380 3638 320 ) ( -2388 3624 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2264 3544 304 ) ( -2388 3624 304 ) ( -2326 3584 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2056 3544 112 ) ( -2024 3544 112 ) ( -2040 3638 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4082 +{ +( -2500 3296 320 ) ( -2500 3664 320 ) ( -2372 3664 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2380 3638 320 ) ( -2380 3638 304 ) ( -2388 3624 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2380 3638 96 ) ( -2380 3638 112 ) ( -2514 3696 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2514 3696 304 ) ( -2514 3696 320 ) ( -2520 3680 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2388 3624 304 ) ( -2520 3680 304 ) ( -2454 3652 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2056 3624 112 ) ( -2024 3624 112 ) ( -2040 3696 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4083 +{ +( -2752 3344 320 ) ( -2752 3712 320 ) ( -2624 3712 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2674 3728 320 ) ( -2674 3728 304 ) ( -2676 3712 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2830 3728 320 ) ( -2830 3728 112 ) ( -2674 3728 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2830 3728 112 ) ( -2830 3728 320 ) ( -2828 3712 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2732 3712 96 ) ( -2752 3712 96 ) ( -2742 3712 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2056 3712 112 ) ( -2024 3712 112 ) ( -2040 3728 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4084 +{ +( -2656 3328 320 ) ( -2656 3696 320 ) ( -2528 3696 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2514 3696 320 ) ( -2514 3696 304 ) ( -2520 3680 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2514 3696 96 ) ( -2514 3696 112 ) ( -2674 3728 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2674 3728 304 ) ( -2674 3728 320 ) ( -2676 3712 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2520 3680 304 ) ( -2676 3712 304 ) ( -2598 3696 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2056 3680 112 ) ( -2024 3680 112 ) ( -2040 3728 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4085 +{ +( -2656 3328 320 ) ( -2656 3696 320 ) ( -2528 3696 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2640 3296 176 ) ( -2640 3296 160 ) ( -2714 3312 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2640 3296 304 ) ( -2640 3296 320 ) ( -2636 3312 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2714 3312 320 ) ( -2714 3312 304 ) ( -2712 3328 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2712 3328 240 ) ( -2636 3312 240 ) ( -2674 3320 256 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -4208 3296 112 ) ( -4176 3296 112 ) ( -4192 3328 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4086 +{ +( -2500 3296 320 ) ( -2500 3664 320 ) ( -2372 3664 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2580 3270 112 ) ( -2580 3270 96 ) ( -2640 3296 96 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2580 3270 304 ) ( -2580 3270 320 ) ( -2572 3284 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2640 3296 320 ) ( -2640 3296 304 ) ( -2636 3312 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2636 3312 240 ) ( -2572 3284 240 ) ( -2604 3298 256 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -4208 3270 112 ) ( -4176 3270 112 ) ( -4192 3312 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4087 +{ +( -2368 3240 320 ) ( -2368 3608 320 ) ( -2240 3608 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2514 3226 176 ) ( -2514 3226 160 ) ( -2580 3270 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2514 3226 304 ) ( -2514 3226 320 ) ( -2504 3240 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2580 3270 320 ) ( -2580 3270 304 ) ( -2572 3284 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2572 3284 240 ) ( -2504 3240 240 ) ( -2538 3262 256 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -4208 3226 112 ) ( -4176 3226 112 ) ( -4192 3284 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4088 +{ +( -2244 3160 320 ) ( -2244 3528 320 ) ( -2116 3528 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2470 3182 112 ) ( -2470 3182 96 ) ( -2514 3226 96 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2470 3182 304 ) ( -2470 3182 320 ) ( -2456 3192 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2514 3226 320 ) ( -2514 3226 304 ) ( -2504 3240 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2504 3240 240 ) ( -2456 3192 240 ) ( -2480 3216 256 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -4208 3182 112 ) ( -4176 3182 112 ) ( -4192 3240 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4089 +{ +( -2088 3456 320 ) ( -2088 3328 320 ) ( -2456 3328 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2470 3182 160 ) ( -2470 3182 176 ) ( -2426 3116 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2470 3182 320 ) ( -2470 3182 304 ) ( -2456 3192 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2426 3116 304 ) ( -2426 3116 320 ) ( -2412 3124 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2412 3124 256 ) ( -2456 3192 256 ) ( -2434 3158 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -4208 3116 112 ) ( -4176 3116 112 ) ( -4192 3192 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4090 +{ +( -2032 3324 320 ) ( -2032 3196 320 ) ( -2400 3196 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2426 3116 96 ) ( -2426 3116 112 ) ( -2400 3056 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2426 3116 320 ) ( -2426 3116 304 ) ( -2412 3124 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2400 3056 304 ) ( -2400 3056 320 ) ( -2384 3060 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2384 3060 256 ) ( -2412 3124 256 ) ( -2398 3092 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -4208 3056 112 ) ( -4176 3056 112 ) ( -4192 3124 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4091 +{ +( -2000 3168 320 ) ( -2000 3040 320 ) ( -2368 3040 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2400 3056 160 ) ( -2400 3056 176 ) ( -2384 2982 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2400 3056 320 ) ( -2400 3056 304 ) ( -2384 3060 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2384 2982 160 ) ( -2384 2982 176 ) ( -2368 2984 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2368 2984 112 ) ( -2384 3060 112 ) ( -2376 3022 96 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -4208 2982 112 ) ( -4176 2982 112 ) ( -4192 3060 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4092 +{ +( -2101 3292 320 ) ( -2072 3308 288 ) ( -2178 3411 320 ) common/li_pv_v4a 27 -8 123 1 1 0 1 7000 +( -2178 3411 320 ) ( -2072 3308 288 ) ( -2072 3308 336 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2072 3460 320 ) ( -2178 3432 320 ) ( -2178 3488 320 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2106 3330 320 ) ( -2096 3336 288 ) ( -2116 3324 288 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2142 3386 320 ) ( -2152 3380 296 ) ( -2132 3392 296 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2132 3355 320 ) ( -2112 3324 296 ) ( -2152 3386 296 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 4093 +{ +( -2072 3308 288 ) ( -2152 3432 288 ) ( -2178 3411 320 ) common/li_pv_v4a 27 -8 123 1 1 0 1 7000 +( -2072 3308 336 ) ( -2072 3308 288 ) ( -2178 3411 320 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2072 3460 320 ) ( -2178 3432 320 ) ( -2178 3488 320 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2106 3330 320 ) ( -2096 3336 288 ) ( -2116 3324 288 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2142 3386 320 ) ( -2152 3380 288 ) ( -2132 3392 288 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -2116 3362 320 ) ( -2136 3392 288 ) ( -2096 3332 288 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 4094 +{ +( -3520 2806 320 ) ( -3488 2803 320 ) ( -3488 2688 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 2808 336 ) ( -3520 2680 336 ) ( -3520 2680 280 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 2688 320 ) ( -3488 2803 320 ) ( -3520 2806 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3536 2880 288 ) ( -3504 2880 288 ) ( -3520 2880 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 2624 288 ) ( -3504 2624 288 ) ( -3496 2624 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4095 +{ +( -3520 3126 320 ) ( -3488 3123 320 ) ( -3488 3008 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3488 3008 320 ) ( -3488 3123 320 ) ( -3520 3126 288 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3504 2944 288 ) ( -3488 2944 288 ) ( -3496 2944 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 1 7000 +( -3488 2880 288 ) ( -3504 2880 288 ) ( -3496 2880 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 1 7000 +( -3496 2944 288 ) ( -3496 2912 288 ) ( -3496 2928 320 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -3512 2912 288 ) ( -3512 2944 288 ) ( -3512 2928 320 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 4096 +{ +( -3520 3126 320 ) ( -3488 3123 320 ) ( -3488 3008 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 3136 336 ) ( -3520 3008 336 ) ( -3520 3008 280 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 3008 320 ) ( -3488 3123 320 ) ( -3520 3126 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3504 2944 288 ) ( -3488 2944 288 ) ( -3496 2944 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 2880 288 ) ( -3504 2880 288 ) ( -3496 2880 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3512 2944 288 ) ( -3512 2912 288 ) ( -3512 2928 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4097 +{ +( -3520 3126 320 ) ( -3488 3123 320 ) ( -3488 3008 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 3008 320 ) ( -3488 3123 320 ) ( -3520 3126 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3504 2944 288 ) ( -3488 2944 288 ) ( -3496 2944 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 2880 288 ) ( -3504 2880 288 ) ( -3496 2880 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3496 2912 288 ) ( -3496 2944 288 ) ( -3496 2928 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4098 +{ +( -3168 2184 320 ) ( -3168 2227 320 ) ( -3136 2224 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 2224 320 ) ( -3136 2224 288 ) ( -3136 2184 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 2224 288 ) ( -3168 2227 320 ) ( -3168 2184 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3152 2880 288 ) ( -3136 2880 288 ) ( -3144 2880 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 2624 288 ) ( -3152 2624 288 ) ( -3144 2624 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4099 +{ +( -3168 2504 320 ) ( -3168 2547 320 ) ( -3136 2544 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 2544 288 ) ( -3168 2547 320 ) ( -3168 2504 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3152 2944 288 ) ( -3136 2944 288 ) ( -3144 2944 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 2880 288 ) ( -3152 2880 288 ) ( -3144 2880 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3160 2920 296 ) ( -3160 2880 296 ) ( -3160 2900 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4100 +{ +( -3168 2504 320 ) ( -3168 2547 320 ) ( -3136 2544 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3136 2544 288 ) ( -3168 2547 320 ) ( -3168 2504 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3152 2944 288 ) ( -3136 2944 288 ) ( -3144 2944 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3136 2880 288 ) ( -3152 2880 288 ) ( -3144 2880 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3144 2944 288 ) ( -3144 2928 288 ) ( -3144 2936 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3160 2880 296 ) ( -3160 2920 296 ) ( -3160 2900 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +} +// brush 4101 +{ +( -3168 2504 320 ) ( -3168 2547 320 ) ( -3136 2544 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 2544 320 ) ( -3136 2544 288 ) ( -3136 2504 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 2544 288 ) ( -3168 2547 320 ) ( -3168 2504 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3152 2944 288 ) ( -3136 2944 288 ) ( -3144 2944 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 2880 288 ) ( -3152 2880 288 ) ( -3144 2880 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3144 2928 288 ) ( -3144 2944 288 ) ( -3144 2936 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4102 +{ +( -2848 3328 112 ) ( -2848 3696 112 ) ( -2976 3696 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -2976 3696 128 ) ( -2848 3696 128 ) ( -2848 3328 128 ) bricks/c_sr_mr5 0 -29 192 1 1 0 0 0 +( -2984 3680 256 ) ( -2980 3666 256 ) ( -2980 3666 96 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -2984 3680 96 ) ( -2828 3712 96 ) ( -2828 3712 256 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -2828 3712 96 ) ( -2826 3696 96 ) ( -2826 3696 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -2826 3696 96 ) ( -2980 3666 96 ) ( -2980 3666 256 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +} +// brush 4103 +{ +( -3004 3296 112 ) ( -3004 3664 112 ) ( -3132 3664 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3132 3664 128 ) ( -3004 3664 128 ) ( -3004 3296 128 ) bricks/c_sr_mr5 0 -10 203 1 1 0 0 0 +( -3110 3612 96 ) ( -3116 3624 96 ) ( -3116 3624 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -2984 3680 256 ) ( -3116 3624 256 ) ( -3116 3624 96 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -2984 3680 96 ) ( -2980 3666 96 ) ( -2980 3666 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -2980 3666 96 ) ( -3110 3612 96 ) ( -3110 3612 256 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +} +// brush 4104 +{ +( -3136 3240 112 ) ( -3136 3608 112 ) ( -3264 3608 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3264 3608 128 ) ( -3136 3608 128 ) ( -3136 3240 128 ) bricks/c_sr_mr5 0 -2 213 1 1 0 0 0 +( -3240 3544 256 ) ( -3232 3534 256 ) ( -3232 3534 96 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -3240 3544 96 ) ( -3116 3624 96 ) ( -3116 3624 256 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3116 3624 96 ) ( -3110 3612 96 ) ( -3110 3612 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -3110 3612 96 ) ( -3232 3534 96 ) ( -3232 3534 256 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +} +// brush 4105 +{ +( -3048 3328 128 ) ( -3416 3328 128 ) ( -3416 3456 128 ) bricks/c_sr_mr5 0 -9 237 1 1 0 0 0 +( -3416 3456 112 ) ( -3416 3328 112 ) ( -3048 3328 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3352 3432 -16 ) ( -3342 3424 -16 ) ( -3342 3424 144 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3352 3432 144 ) ( -3432 3308 144 ) ( -3432 3308 -16 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -3432 3308 144 ) ( -3420 3302 144 ) ( -3420 3302 -16 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3420 3302 144 ) ( -3342 3424 144 ) ( -3342 3424 -16 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 4106 +{ +( -3104 3196 128 ) ( -3472 3196 128 ) ( -3472 3324 128 ) bricks/c_sr_mr5 0 -5 247 1 1 0 0 0 +( -3472 3324 112 ) ( -3472 3196 112 ) ( -3104 3196 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3420 3302 144 ) ( -3432 3308 144 ) ( -3432 3308 -16 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3488 3176 -16 ) ( -3432 3308 -16 ) ( -3432 3308 144 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -3488 3176 144 ) ( -3474 3172 144 ) ( -3474 3172 -16 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3474 3172 144 ) ( -3420 3302 144 ) ( -3420 3302 -16 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 4107 +{ +( -3136 3040 128 ) ( -3504 3040 128 ) ( -3504 3168 128 ) bricks/c_sr_mr5 0 23 258 1 1 0 0 0 +( -3504 3168 112 ) ( -3504 3040 112 ) ( -3136 3040 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3488 3176 -16 ) ( -3474 3172 -16 ) ( -3474 3172 144 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3488 3176 144 ) ( -3520 3020 144 ) ( -3520 3020 -16 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -3520 3020 144 ) ( -3504 3018 144 ) ( -3504 3018 -16 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3504 3018 144 ) ( -3474 3172 144 ) ( -3474 3172 -16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4108 +{ +( -3240 3458 112 ) ( -3240 3542 112 ) ( -3294 3542 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3294 3542 128 ) ( -3240 3542 128 ) ( -3240 3458 128 ) bricks/c_sr_mr5 0 2 225 1 1 0 0 0 +( -3342 3424 112 ) ( -3352 3432 112 ) ( -3352 3432 128 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3240 3544 128 ) ( -3352 3432 128 ) ( -3352 3432 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -3232 3534 128 ) ( -3240 3544 128 ) ( -3240 3544 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -3232 3534 112 ) ( -3288 3478 112 ) ( -3288 3478 128 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 4109 +{ +( -2848 3328 112 ) ( -2848 3696 112 ) ( -2976 3696 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -2976 3696 128 ) ( -2848 3696 128 ) ( -2848 3328 128 ) bricks/c_sr_mr5 0 -6 12 1 1 0 0 0 +( -2792 3328 96 ) ( -2868 3312 96 ) ( -2868 3312 256 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -2872 3328 256 ) ( -2868 3312 256 ) ( -2868 3312 96 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -2792 3328 240 ) ( -2790 3312 240 ) ( -2790 3312 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -2794 3344 256 ) ( -2872 3328 256 ) ( -2872 3328 96 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4110 +{ +( -3004 3296 112 ) ( -3004 3664 112 ) ( -3132 3664 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3132 3664 128 ) ( -3004 3664 128 ) ( -3004 3296 128 ) bricks/c_sr_mr5 0 -1 24 1 1 0 0 0 +( -2868 3312 96 ) ( -2932 3284 96 ) ( -2932 3284 256 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -2932 3284 96 ) ( -2940 3298 96 ) ( -2940 3298 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -2868 3312 256 ) ( -2872 3328 256 ) ( -2872 3328 96 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -2940 3298 96 ) ( -2872 3328 96 ) ( -2872 3328 256 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4111 +{ +( -3136 3240 112 ) ( -3136 3608 112 ) ( -3264 3608 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3264 3608 128 ) ( -3136 3608 128 ) ( -3136 3240 128 ) bricks/c_sr_mr5 0 -2 33 1 1 0 0 0 +( -2932 3284 96 ) ( -3000 3240 96 ) ( -3000 3240 256 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3000 3240 96 ) ( -3010 3252 96 ) ( -3010 3252 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -2932 3284 256 ) ( -2940 3298 256 ) ( -2940 3298 96 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -2940 3298 256 ) ( -3010 3252 256 ) ( -3010 3252 96 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4112 +{ +( -3048 3328 128 ) ( -3416 3328 128 ) ( -3416 3456 128 ) bricks/c_sr_mr5 0 6 57 1 1 0 0 0 +( -3416 3456 112 ) ( -3416 3328 112 ) ( -3048 3328 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3092 3124 144 ) ( -3048 3192 144 ) ( -3048 3192 -16 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -3048 3192 144 ) ( -3060 3202 144 ) ( -3060 3202 -16 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3092 3124 -16 ) ( -3106 3132 -16 ) ( -3106 3132 144 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3106 3132 -16 ) ( -3060 3202 -16 ) ( -3060 3202 144 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4113 +{ +( -3104 3196 128 ) ( -3472 3196 128 ) ( -3472 3324 128 ) bricks/c_sr_mr5 0 -2 66 1 1 0 0 0 +( -3472 3324 112 ) ( -3472 3196 112 ) ( -3104 3196 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3120 3060 144 ) ( -3092 3124 144 ) ( -3092 3124 -16 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -3092 3124 144 ) ( -3106 3132 144 ) ( -3106 3132 -16 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3120 3060 -16 ) ( -3136 3064 -16 ) ( -3136 3064 144 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3106 3132 144 ) ( -3136 3064 144 ) ( -3136 3064 -16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4114 +{ +( -3136 3040 128 ) ( -3504 3040 128 ) ( -3504 3168 128 ) bricks/c_sr_mr5 0 -2 79 1 1 0 0 0 +( -3504 3168 112 ) ( -3504 3040 112 ) ( -3136 3040 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3136 2984 144 ) ( -3120 3060 144 ) ( -3120 3060 -16 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -3136 3064 -16 ) ( -3120 3060 -16 ) ( -3120 3060 144 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3136 2984 0 ) ( -3120 2982 0 ) ( -3120 2982 -16 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3152 2986 -16 ) ( -3136 3064 -16 ) ( -3136 3064 144 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 4115 +{ +( -3010 3192 112 ) ( -3010 3252 112 ) ( -3048 3252 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3048 3252 128 ) ( -3010 3252 128 ) ( -3010 3192 128 ) bricks/c_sr_mr5 0 -3 44 1 1 0 0 0 +( -3048 3192 128 ) ( -3000 3240 128 ) ( -3000 3240 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -3048 3192 112 ) ( -3060 3202 112 ) ( -3060 3202 128 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -3010 3252 128 ) ( -3060 3202 128 ) ( -3060 3202 112 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -3010 3252 112 ) ( -3000 3240 112 ) ( -3000 3240 128 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 4116 +{ +( -3520 3020 320 ) ( -3488 3017 320 ) ( -3488 2944 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 2672 320 ) ( -3520 2320 320 ) ( -3520 2320 304 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 2944 320 ) ( -3488 3017 320 ) ( -3520 3020 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 2944 288 ) ( -3520 2944 288 ) ( -3504 2944 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 3020 288 ) ( -3488 3017 320 ) ( -3520 3020 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4117 +{ +( -3457 3166 320 ) ( -3520 3020 288 ) ( -3488 3017 320 ) bricks/c_tn_m1 -28 -7 258 1 1 0 0 0 +( -3488 3017 320 ) ( -3520 3020 288 ) ( -3520 3020 336 ) bricks/c_tn_m1 -28 -7 258 1 1 0 0 0 +( -3520 3020 336 ) ( -3520 3020 288 ) ( -3457 3166 320 ) bricks/c_tn_m1 -28 -7 258 1 1 0 0 0 +( -3268 3166 320 ) ( -3240 3017 320 ) ( -3296 3017 320 ) bricks/c_tn_m1 -28 -7 258 1 1 0 0 0 +} +// brush 4118 +{ +( -3457 3166 320 ) ( -3488 3176 288 ) ( -3520 3020 288 ) bricks/c_tn_m1 -28 -7 258 1 1 0 0 0 +( -3488 3176 336 ) ( -3488 3176 288 ) ( -3457 3166 320 ) bricks/c_tn_m1 -28 -7 258 1 1 0 0 0 +( -3520 3020 288 ) ( -3488 3176 288 ) ( -3488 3176 336 ) bricks/c_tn_m1 -28 -7 258 1 1 0 0 0 +( -3457 3166 320 ) ( -3520 3020 288 ) ( -3520 3020 336 ) bricks/c_tn_m1 -28 -7 258 1 1 0 0 0 +( -3268 3176 320 ) ( -3240 3020 320 ) ( -3296 3020 320 ) bricks/c_tn_m1 -28 -7 258 1 1 0 0 0 +} +// brush 4119 +{ +( -3403 3292 320 ) ( -3488 3176 288 ) ( -3457 3166 320 ) bricks/c_tn_m1 0 -3 247 1 1 0 0 0 +( -3457 3166 320 ) ( -3488 3176 288 ) ( -3488 3176 336 ) bricks/c_tn_m1 0 -3 247 1 1 0 0 0 +( -3488 3176 336 ) ( -3488 3176 288 ) ( -3403 3292 320 ) bricks/c_tn_m1 0 -3 247 1 1 0 0 0 +( -3268 3292 320 ) ( -3240 3166 320 ) ( -3296 3166 320 ) bricks/c_tn_m1 0 -3 247 1 1 0 0 0 +} +// brush 4120 +{ +( -3403 3292 320 ) ( -3432 3308 288 ) ( -3488 3176 288 ) bricks/c_tn_m1 0 -3 247 1 1 0 0 0 +( -3432 3308 336 ) ( -3432 3308 288 ) ( -3403 3292 320 ) bricks/c_tn_m1 0 -3 247 1 1 0 0 0 +( -3488 3176 288 ) ( -3432 3308 288 ) ( -3432 3308 336 ) bricks/c_tn_m1 0 -3 247 1 1 0 0 0 +( -3403 3292 320 ) ( -3488 3176 288 ) ( -3488 3176 336 ) bricks/c_tn_m1 0 -3 247 1 1 0 0 0 +( -3268 3308 320 ) ( -3240 3176 320 ) ( -3296 3176 320 ) bricks/c_tn_m1 0 -3 247 1 1 0 0 0 +} +// brush 4121 +{ +( -3326 3411 320 ) ( -3240 3544 288 ) ( -3352 3432 288 ) bricks/c_tn_m1 0 4 225 1 1 0 0 0 +( -3326 3411 320 ) ( -3352 3432 288 ) ( -3352 3432 336 ) bricks/c_tn_m1 0 4 225 1 1 0 0 0 +( -3352 3432 288 ) ( -3240 3544 288 ) ( -3240 3544 336 ) bricks/c_tn_m1 0 4 225 1 1 0 0 0 +( -3240 3544 336 ) ( -3240 3544 288 ) ( -3326 3411 320 ) bricks/c_tn_m1 0 4 225 1 1 0 0 0 +( -3268 3544 320 ) ( -3240 3411 320 ) ( -3296 3411 320 ) bricks/c_tn_m1 0 4 225 1 1 0 0 0 +} +// brush 4122 +{ +( -3219 3518 320 ) ( -3240 3544 288 ) ( -3326 3411 320 ) bricks/c_tn_m1 0 4 225 1 1 0 0 0 +( -3240 3544 336 ) ( -3240 3544 288 ) ( -3219 3518 320 ) bricks/c_tn_m1 0 4 225 1 1 0 0 0 +( -3326 3411 320 ) ( -3240 3544 288 ) ( -3240 3544 336 ) bricks/c_tn_m1 0 4 225 1 1 0 0 0 +( -3268 3544 320 ) ( -3240 3411 320 ) ( -3296 3411 320 ) bricks/c_tn_m1 0 4 225 1 1 0 0 0 +} +// brush 4123 +{ +( -2984 3680 288 ) ( -3116 3624 288 ) ( -3100 3595 320 ) bricks/c_tn_m1 132 -8 203 1 1 0 0 0 +( -3100 3595 320 ) ( -3116 3624 288 ) ( -3116 3624 336 ) bricks/c_tn_m1 132 -8 203 1 1 0 0 0 +( -3116 3624 336 ) ( -3116 3624 288 ) ( -2984 3680 288 ) bricks/c_tn_m1 132 -8 203 1 1 0 0 0 +( -2984 3680 336 ) ( -2984 3680 288 ) ( -3100 3595 320 ) bricks/c_tn_m1 132 -8 203 1 1 0 0 0 +( -3268 3680 320 ) ( -3240 3595 320 ) ( -3296 3595 320 ) bricks/c_tn_m1 132 -8 203 1 1 0 0 0 +} +// brush 4124 +{ +( -2974 3649 320 ) ( -2984 3680 288 ) ( -3100 3595 320 ) bricks/c_tn_m1 132 -8 203 1 1 0 0 0 +( -2984 3680 336 ) ( -2984 3680 288 ) ( -2974 3649 320 ) bricks/c_tn_m1 132 -8 203 1 1 0 0 0 +( -3100 3595 320 ) ( -2984 3680 288 ) ( -2984 3680 336 ) bricks/c_tn_m1 132 -8 203 1 1 0 0 0 +( -3268 3680 320 ) ( -3240 3595 320 ) ( -3296 3595 320 ) bricks/c_tn_m1 132 -8 203 1 1 0 0 0 +} +// brush 4125 +{ +( -2828 3712 288 ) ( -2984 3680 288 ) ( -2974 3649 320 ) bricks/c_tn_m1 66 5 192 1 1 0 0 0 +( -2974 3649 320 ) ( -2984 3680 288 ) ( -2984 3680 336 ) bricks/c_tn_m1 66 5 192 1 1 0 0 0 +( -2984 3680 336 ) ( -2984 3680 288 ) ( -2828 3712 288 ) bricks/c_tn_m1 66 5 192 1 1 0 0 0 +( -2828 3712 336 ) ( -2828 3712 288 ) ( -2974 3649 320 ) bricks/c_tn_m1 66 5 192 1 1 0 0 0 +( -3268 3712 320 ) ( -3240 3649 320 ) ( -3296 3649 320 ) bricks/c_tn_m1 66 5 192 1 1 0 0 0 +} +// brush 4126 +{ +( -2825 3680 320 ) ( -2828 3712 288 ) ( -2974 3649 320 ) bricks/c_tn_m1 66 5 192 1 1 0 0 0 +( -2828 3712 336 ) ( -2828 3712 288 ) ( -2825 3680 320 ) bricks/c_tn_m1 66 5 192 1 1 0 0 0 +( -2974 3649 320 ) ( -2828 3712 288 ) ( -2828 3712 336 ) bricks/c_tn_m1 66 5 192 1 1 0 0 0 +( -3268 3712 320 ) ( -3240 3649 320 ) ( -3296 3649 320 ) bricks/c_tn_m1 66 5 192 1 1 0 0 0 +} +// brush 4127 +{ +( -3168 2987 320 ) ( -3136 2984 288 ) ( -3151 3070 320 ) bricks/c_tn_m1 -59 8 78 1 1 0 0 0 +( -3136 2984 336 ) ( -3136 2984 288 ) ( -3168 2987 320 ) bricks/c_tn_m1 -59 8 78 1 1 0 0 0 +( -3151 3070 320 ) ( -3136 2984 288 ) ( -3136 2984 336 ) bricks/c_tn_m1 -59 8 78 1 1 0 0 0 +( -3168 3092 320 ) ( -3136 3104 320 ) ( -3136 3080 320 ) bricks/c_tn_m1 -59 8 78 1 1 0 0 0 +} +// brush 4128 +{ +( -3136 2984 288 ) ( -3120 3060 288 ) ( -3151 3070 320 ) bricks/c_tn_m1 -59 8 78 1 1 0 0 0 +( -3120 3060 336 ) ( -3120 3060 288 ) ( -3136 2984 288 ) bricks/c_tn_m1 -59 8 78 1 1 0 0 0 +( -3151 3070 320 ) ( -3120 3060 288 ) ( -3120 3060 336 ) bricks/c_tn_m1 -59 8 78 1 1 0 0 0 +( -3136 2984 288 ) ( -3151 3070 320 ) ( -3151 3070 336 ) bricks/c_tn_m1 -59 8 78 1 1 0 0 0 +( -3151 3092 320 ) ( -3120 3104 320 ) ( -3120 3080 320 ) bricks/c_tn_m1 -59 8 78 1 1 0 0 0 +} +// brush 4129 +{ +( -3151 3070 320 ) ( -3120 3060 288 ) ( -3120 3139 320 ) bricks/c_tn_m1 -3 -1 66 1 1 0 0 0 +( -3120 3060 336 ) ( -3120 3060 288 ) ( -3151 3070 320 ) bricks/c_tn_m1 -3 -1 66 1 1 0 0 0 +( -3120 3139 320 ) ( -3120 3060 288 ) ( -3120 3060 336 ) bricks/c_tn_m1 -3 -1 66 1 1 0 0 0 +( -3151 3092 320 ) ( -3120 3104 320 ) ( -3120 3080 320 ) bricks/c_tn_m1 -3 -1 66 1 1 0 0 0 +} +// brush 4130 +{ +( -3120 3060 288 ) ( -3092 3124 288 ) ( -3120 3139 320 ) bricks/c_tn_m1 -3 -1 66 1 1 0 0 0 +( -3092 3124 336 ) ( -3092 3124 288 ) ( -3120 3060 288 ) bricks/c_tn_m1 -3 -1 66 1 1 0 0 0 +( -3120 3139 320 ) ( -3092 3124 288 ) ( -3092 3124 336 ) bricks/c_tn_m1 -3 -1 66 1 1 0 0 0 +( -3120 3060 336 ) ( -3120 3060 288 ) ( -3120 3139 320 ) bricks/c_tn_m1 -3 -1 66 1 1 0 0 0 +( -3120 3092 320 ) ( -3092 3104 320 ) ( -3092 3080 320 ) bricks/c_tn_m1 -3 -1 66 1 1 0 0 0 +} +// brush 4131 +{ +( -3120 3139 320 ) ( -3092 3124 288 ) ( -3073 3212 320 ) bricks/c_tn_m1 0 6 57 1 1 0 0 0 +( -3092 3124 336 ) ( -3092 3124 288 ) ( -3120 3139 320 ) bricks/c_tn_m1 0 6 57 1 1 0 0 0 +( -3073 3212 320 ) ( -3092 3124 288 ) ( -3092 3124 336 ) bricks/c_tn_m1 0 6 57 1 1 0 0 0 +( -3120 3092 320 ) ( -3073 3104 320 ) ( -3073 3080 320 ) bricks/c_tn_m1 0 6 57 1 1 0 0 0 +} +// brush 4132 +{ +( -3092 3124 288 ) ( -3048 3192 288 ) ( -3073 3212 320 ) bricks/c_tn_m1 0 6 57 1 1 0 0 0 +( -3048 3192 336 ) ( -3048 3192 288 ) ( -3092 3124 288 ) bricks/c_tn_m1 0 6 57 1 1 0 0 0 +( -3073 3212 320 ) ( -3048 3192 288 ) ( -3048 3192 336 ) bricks/c_tn_m1 0 6 57 1 1 0 0 0 +( -3092 3124 336 ) ( -3092 3124 288 ) ( -3073 3212 320 ) bricks/c_tn_m1 0 6 57 1 1 0 0 0 +( -3092 3092 320 ) ( -3048 3104 320 ) ( -3048 3080 320 ) bricks/c_tn_m1 0 6 57 1 1 0 0 0 +} +// brush 4133 +{ +( -3020 3265 320 ) ( -3000 3240 288 ) ( -2932 3284 288 ) bricks/c_tn_m1 0 -1 33 1 1 0 0 0 +( -2932 3284 288 ) ( -3000 3240 288 ) ( -3000 3240 336 ) bricks/c_tn_m1 0 -1 33 1 1 0 0 0 +( -3000 3240 336 ) ( -3000 3240 288 ) ( -3020 3265 320 ) bricks/c_tn_m1 0 -1 33 1 1 0 0 0 +( -3020 3265 320 ) ( -2932 3284 288 ) ( -2932 3284 336 ) bricks/c_tn_m1 0 -1 33 1 1 0 0 0 +( -3020 3092 320 ) ( -2932 3104 320 ) ( -2932 3080 320 ) bricks/c_tn_m1 0 -1 33 1 1 0 0 0 +} +// brush 4134 +{ +( -3020 3265 320 ) ( -2932 3284 288 ) ( -2947 3312 320 ) bricks/c_tn_m1 0 -1 33 1 1 0 0 0 +( -2947 3312 320 ) ( -2932 3284 288 ) ( -2932 3284 336 ) bricks/c_tn_m1 0 -1 33 1 1 0 0 0 +( -2932 3284 336 ) ( -2932 3284 288 ) ( -3020 3265 320 ) bricks/c_tn_m1 0 -1 33 1 1 0 0 0 +( -3020 3092 320 ) ( -2932 3104 320 ) ( -2932 3080 320 ) bricks/c_tn_m1 0 -1 33 1 1 0 0 0 +} +// brush 4135 +{ +( -2947 3312 320 ) ( -2932 3284 288 ) ( -2868 3312 288 ) bricks/c_tn_m1 0 0 24 1 1 0 0 0 +( -2868 3312 288 ) ( -2932 3284 288 ) ( -2932 3284 336 ) bricks/c_tn_m1 0 0 24 1 1 0 0 0 +( -2932 3284 336 ) ( -2932 3284 288 ) ( -2947 3312 320 ) bricks/c_tn_m1 0 0 24 1 1 0 0 0 +( -2947 3312 320 ) ( -2868 3312 288 ) ( -2868 3312 336 ) bricks/c_tn_m1 0 0 24 1 1 0 0 0 +( -2947 3092 320 ) ( -2868 3104 320 ) ( -2868 3080 320 ) bricks/c_tn_m1 0 0 24 1 1 0 0 0 +} +// brush 4136 +{ +( -2947 3312 320 ) ( -2868 3312 288 ) ( -2878 3343 320 ) bricks/c_tn_m1 0 0 24 1 1 0 0 0 +( -2878 3343 320 ) ( -2868 3312 288 ) ( -2868 3312 336 ) bricks/c_tn_m1 0 0 24 1 1 0 0 0 +( -2868 3312 336 ) ( -2868 3312 288 ) ( -2947 3312 320 ) bricks/c_tn_m1 0 0 24 1 1 0 0 0 +( -2947 3092 320 ) ( -2868 3104 320 ) ( -2868 3080 320 ) bricks/c_tn_m1 0 0 24 1 1 0 0 0 +} +// brush 4137 +{ +( -2878 3343 320 ) ( -2868 3312 288 ) ( -2792 3328 288 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -2792 3328 288 ) ( -2868 3312 288 ) ( -2868 3312 336 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -2868 3312 336 ) ( -2868 3312 288 ) ( -2878 3343 320 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -2878 3343 336 ) ( -2878 3343 320 ) ( -2792 3328 288 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -2878 3092 320 ) ( -2792 3104 320 ) ( -2792 3080 320 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +} +// brush 4138 +{ +( -2878 3343 320 ) ( -2792 3328 288 ) ( -2795 3360 320 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -2795 3360 320 ) ( -2792 3328 288 ) ( -2792 3328 336 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -2792 3328 336 ) ( -2792 3328 288 ) ( -2878 3343 320 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +( -2878 3092 320 ) ( -2792 3104 320 ) ( -2792 3080 320 ) bricks/c_tn_m1 0 -4 12 1 1 0 0 0 +} +// brush 4139 +{ +( -2752 3712 336 ) ( -2828 3712 336 ) ( -2828 3712 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2828 3712 336 ) ( -2984 3680 336 ) ( -2984 3680 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2984 3680 336 ) ( -3116 3624 336 ) ( -3116 3624 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3116 3624 336 ) ( -3240 3544 336 ) ( -3240 3544 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3240 3544 336 ) ( -3352 3432 336 ) ( -3352 3432 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3352 3432 336 ) ( -3432 3308 336 ) ( -3432 3308 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3432 3308 336 ) ( -3488 3176 336 ) ( -3488 3176 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3520 3020 320 ) ( -3488 3176 320 ) ( -3488 3176 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3520 2944 320 ) ( -3520 3020 320 ) ( -3520 3020 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3520 3712 320 ) ( -3520 2176 320 ) ( -1984 2176 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1984 2176 336 ) ( -3520 2176 336 ) ( -3520 3712 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2752 3492 336 ) ( -2752 3520 272 ) ( -2752 3464 272 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3384 2944 336 ) ( -3352 2944 272 ) ( -3416 2944 272 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2944 3136 336 ) ( -2752 3328 320 ) ( -3136 2944 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4140 +{ +( -2752 3712 112 ) ( -2828 3712 112 ) ( -2828 3712 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2828 3712 112 ) ( -2984 3680 112 ) ( -2984 3680 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2984 3680 112 ) ( -3116 3624 112 ) ( -3116 3624 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3116 3624 112 ) ( -3240 3544 112 ) ( -3240 3544 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3240 3544 112 ) ( -3352 3432 112 ) ( -3352 3432 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3352 3432 112 ) ( -3432 3308 112 ) ( -3432 3308 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3432 3308 112 ) ( -3488 3176 112 ) ( -3488 3176 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3520 3020 96 ) ( -3488 3176 96 ) ( -3488 3176 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3520 2944 96 ) ( -3520 3020 96 ) ( -3520 3020 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3520 3712 96 ) ( -3520 2176 96 ) ( -1984 2176 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1984 2176 112 ) ( -3520 2176 112 ) ( -3520 3712 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2752 3492 112 ) ( -2752 3520 48 ) ( -2752 3464 48 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3384 2944 112 ) ( -3352 2944 48 ) ( -3416 2944 48 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2944 3136 112 ) ( -2752 3328 96 ) ( -3136 2944 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 4141 +{ +( -3136 3040 320 ) ( -3504 3040 320 ) ( -3504 3168 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3488 3176 176 ) ( -3504 3182 176 ) ( -3504 3182 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 3022 240 ) ( -3504 3182 240 ) ( -3504 3182 256 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3520 3020 160 ) ( -3536 3022 160 ) ( -3536 3022 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3504 3098 96 ) ( -3520 3020 112 ) ( -3488 3176 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3464 3182 112 ) ( -3480 3020 112 ) ( -3448 3020 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4142 +{ +( -3104 3196 320 ) ( -3472 3196 320 ) ( -3472 3324 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3432 3308 176 ) ( -3446 3316 176 ) ( -3446 3316 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3504 3182 240 ) ( -3446 3316 240 ) ( -3446 3316 256 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3488 3176 160 ) ( -3504 3182 160 ) ( -3504 3182 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3460 3242 160 ) ( -3488 3176 176 ) ( -3432 3308 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3464 3316 112 ) ( -3480 3176 112 ) ( -3448 3176 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4143 +{ +( -3048 3328 320 ) ( -3416 3328 320 ) ( -3416 3456 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3352 3432 320 ) ( -3364 3442 320 ) ( -3364 3442 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3446 3316 240 ) ( -3364 3442 240 ) ( -3364 3442 256 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3432 3308 160 ) ( -3446 3316 160 ) ( -3446 3316 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3392 3370 160 ) ( -3432 3308 176 ) ( -3352 3432 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3464 3442 112 ) ( -3480 3308 112 ) ( -3448 3308 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4144 +{ +( -3352 3556 320 ) ( -3250 3556 320 ) ( -3250 3432 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3352 3432 320 ) ( -3240 3544 320 ) ( -3240 3544 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3352 3432 160 ) ( -3364 3442 160 ) ( -3364 3442 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3250 3556 256 ) ( -3364 3442 256 ) ( -3364 3442 96 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3250 3556 160 ) ( -3240 3544 160 ) ( -3240 3544 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3464 3556 112 ) ( -3480 3432 112 ) ( -3448 3432 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4145 +{ +( -3264 3608 320 ) ( -3136 3608 320 ) ( -3136 3240 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3240 3544 160 ) ( -3250 3556 160 ) ( -3250 3556 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3124 3638 112 ) ( -3250 3556 112 ) ( -3250 3556 96 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3116 3624 320 ) ( -3124 3638 320 ) ( -3124 3638 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3178 3584 320 ) ( -3116 3624 304 ) ( -3240 3544 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3464 3638 112 ) ( -3480 3544 112 ) ( -3448 3544 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4146 +{ +( -3132 3664 320 ) ( -3004 3664 320 ) ( -3004 3296 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3116 3624 304 ) ( -3124 3638 304 ) ( -3124 3638 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2990 3696 112 ) ( -3124 3638 112 ) ( -3124 3638 96 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2984 3680 320 ) ( -2990 3696 320 ) ( -2990 3696 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3050 3652 320 ) ( -2984 3680 304 ) ( -3116 3624 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3464 3696 112 ) ( -3480 3624 112 ) ( -3448 3624 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4147 +{ +( -2976 3696 320 ) ( -2848 3696 320 ) ( -2848 3328 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2984 3680 304 ) ( -2990 3696 304 ) ( -2990 3696 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2830 3728 112 ) ( -2990 3696 112 ) ( -2990 3696 96 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2828 3712 320 ) ( -2830 3728 320 ) ( -2830 3728 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2906 3696 320 ) ( -2828 3712 304 ) ( -2984 3680 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3464 3728 112 ) ( -3480 3680 112 ) ( -3448 3680 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4148 +{ +( -2880 3712 320 ) ( -2752 3712 320 ) ( -2752 3344 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2752 3312 96 ) ( -2790 3312 96 ) ( -2790 3312 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2792 3328 320 ) ( -2790 3312 320 ) ( -2790 3312 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2712 3328 320 ) ( -2712 3328 112 ) ( -2714 3312 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2712 3328 112 ) ( -2712 3328 320 ) ( -2792 3328 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1312 3328 112 ) ( -1328 3312 112 ) ( -1296 3312 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4149 +{ +( -2976 3696 320 ) ( -2848 3696 320 ) ( -2848 3328 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2790 3312 160 ) ( -2864 3296 160 ) ( -2864 3296 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2868 3312 320 ) ( -2864 3296 320 ) ( -2864 3296 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2792 3328 304 ) ( -2790 3312 304 ) ( -2790 3312 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2830 3320 256 ) ( -2868 3312 240 ) ( -2792 3328 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1312 3328 112 ) ( -1328 3296 112 ) ( -1296 3296 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4150 +{ +( -3132 3664 320 ) ( -3004 3664 320 ) ( -3004 3296 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2864 3296 96 ) ( -2924 3270 96 ) ( -2924 3270 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2932 3284 320 ) ( -2924 3270 320 ) ( -2924 3270 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2868 3312 304 ) ( -2864 3296 304 ) ( -2864 3296 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2900 3298 256 ) ( -2932 3284 240 ) ( -2868 3312 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1312 3312 112 ) ( -1328 3270 112 ) ( -1296 3270 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4151 +{ +( -3264 3608 320 ) ( -3136 3608 320 ) ( -3136 3240 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2924 3270 160 ) ( -2990 3226 160 ) ( -2990 3226 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3000 3240 320 ) ( -2990 3226 320 ) ( -2990 3226 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2932 3284 304 ) ( -2924 3270 304 ) ( -2924 3270 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2966 3262 256 ) ( -3000 3240 240 ) ( -2932 3284 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1312 3284 112 ) ( -1328 3226 112 ) ( -1296 3226 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4152 +{ +( -3388 3528 320 ) ( -3260 3528 320 ) ( -3260 3160 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2990 3226 96 ) ( -3034 3182 96 ) ( -3034 3182 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3048 3192 320 ) ( -3034 3182 320 ) ( -3034 3182 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3000 3240 304 ) ( -2990 3226 304 ) ( -2990 3226 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3024 3216 256 ) ( -3048 3192 240 ) ( -3000 3240 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1312 3240 112 ) ( -1328 3182 112 ) ( -1296 3182 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4153 +{ +( -3048 3328 320 ) ( -3416 3328 320 ) ( -3416 3456 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3078 3116 176 ) ( -3034 3182 176 ) ( -3034 3182 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3048 3192 304 ) ( -3034 3182 304 ) ( -3034 3182 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3092 3124 320 ) ( -3078 3116 320 ) ( -3078 3116 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3070 3158 240 ) ( -3048 3192 256 ) ( -3092 3124 256 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1312 3192 112 ) ( -1328 3116 112 ) ( -1296 3116 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4154 +{ +( -3104 3196 320 ) ( -3472 3196 320 ) ( -3472 3324 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3104 3056 112 ) ( -3078 3116 112 ) ( -3078 3116 96 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3092 3124 304 ) ( -3078 3116 304 ) ( -3078 3116 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3120 3060 320 ) ( -3104 3056 320 ) ( -3104 3056 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3106 3092 240 ) ( -3092 3124 256 ) ( -3120 3060 256 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1312 3124 112 ) ( -1328 3056 112 ) ( -1296 3056 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4155 +{ +( -3136 3040 320 ) ( -3504 3040 320 ) ( -3504 3168 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3120 2982 176 ) ( -3104 3056 176 ) ( -3104 3056 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3120 3060 304 ) ( -3104 3056 304 ) ( -3104 3056 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3136 2984 176 ) ( -3120 2982 176 ) ( -3120 2982 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3128 3022 96 ) ( -3120 3060 112 ) ( -3136 2984 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1312 3060 112 ) ( -1328 2982 112 ) ( -1296 2982 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4156 +{ +( -3326 3411 320 ) ( -3432 3308 288 ) ( -3403 3292 320 ) common/li_pv_v4a -17 0 237 1 1 0 1 7000 +( -3432 3308 336 ) ( -3432 3308 288 ) ( -3326 3411 320 ) common/li_pv_v4a 17 2 237 1 1 0 1 7000 +( -3326 3488 320 ) ( -3326 3432 320 ) ( -3432 3460 320 ) common/li_pv_v4a 17 2 237 1 1 0 1 7000 +( -3388 3324 288 ) ( -3408 3336 288 ) ( -3398 3330 320 ) common/li_pv_v4a 17 2 237 1 1 0 1 7000 +( -3372 3392 296 ) ( -3352 3380 296 ) ( -3362 3386 320 ) common/li_pv_v4a 17 2 237 1 1 0 1 7000 +( -3352 3386 296 ) ( -3392 3324 296 ) ( -3372 3355 320 ) common/li_pv_v4a 17 2 237 1 1 0 1 7000 +} +// brush 4157 +{ +( -3326 3411 320 ) ( -3352 3432 288 ) ( -3432 3308 288 ) common/li_pv_v4a -17 0 237 1 1 0 1 7000 +( -3326 3411 320 ) ( -3432 3308 288 ) ( -3432 3308 336 ) common/li_pv_v4a 17 2 237 1 1 0 1 7000 +( -3326 3488 320 ) ( -3326 3432 320 ) ( -3432 3460 320 ) common/li_pv_v4a 17 2 237 1 1 0 1 7000 +( -3388 3324 288 ) ( -3408 3336 288 ) ( -3398 3330 320 ) common/li_pv_v4a 17 2 237 1 1 0 1 7000 +( -3372 3392 288 ) ( -3352 3380 288 ) ( -3362 3386 320 ) common/li_pv_v4a 17 2 237 1 1 0 1 7000 +( -3408 3332 288 ) ( -3368 3392 288 ) ( -3388 3362 320 ) common/li_pv_v4a 17 2 237 1 1 0 1 7000 +} +// brush 4158 +{ +( -3168 2184 320 ) ( -3168 2227 320 ) ( -3136 2224 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 2224 320 ) ( -3136 2224 288 ) ( -3136 2184 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 2224 288 ) ( -3168 2227 320 ) ( -3168 2184 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3152 2624 288 ) ( -3136 2624 288 ) ( -3144 2624 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 2560 288 ) ( -3152 2560 288 ) ( -3144 2560 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3144 2608 288 ) ( -3144 2624 288 ) ( -3144 2616 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4159 +{ +( -3168 2184 320 ) ( -3168 2227 320 ) ( -3136 2224 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3136 2224 288 ) ( -3168 2227 320 ) ( -3168 2184 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3152 2624 288 ) ( -3136 2624 288 ) ( -3144 2624 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3136 2560 288 ) ( -3152 2560 288 ) ( -3144 2560 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3144 2624 288 ) ( -3144 2608 288 ) ( -3144 2616 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3160 2560 296 ) ( -3160 2600 296 ) ( -3160 2580 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +} +// brush 4160 +{ +( -3168 2184 320 ) ( -3168 2227 320 ) ( -3136 2224 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 2224 288 ) ( -3168 2227 320 ) ( -3168 2184 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3152 2624 288 ) ( -3136 2624 288 ) ( -3144 2624 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 2560 288 ) ( -3152 2560 288 ) ( -3144 2560 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3160 2600 296 ) ( -3160 2560 296 ) ( -3160 2580 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4161 +{ +( -3168 1864 320 ) ( -3168 1907 320 ) ( -3136 1904 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1904 288 ) ( -3168 1907 320 ) ( -3168 1864 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3152 2304 288 ) ( -3136 2304 288 ) ( -3144 2304 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 2240 288 ) ( -3152 2240 288 ) ( -3144 2240 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3160 2280 296 ) ( -3160 2240 296 ) ( -3160 2260 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4162 +{ +( -3168 1864 320 ) ( -3168 1907 320 ) ( -3136 1904 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3136 1904 288 ) ( -3168 1907 320 ) ( -3168 1864 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3152 2304 288 ) ( -3136 2304 288 ) ( -3144 2304 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3136 2240 288 ) ( -3152 2240 288 ) ( -3144 2240 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3144 2304 288 ) ( -3144 2288 288 ) ( -3144 2296 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3160 2240 296 ) ( -3160 2280 296 ) ( -3160 2260 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +} +// brush 4163 +{ +( -3168 1864 320 ) ( -3168 1907 320 ) ( -3136 1904 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1904 320 ) ( -3136 1904 288 ) ( -3136 1864 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1904 288 ) ( -3168 1907 320 ) ( -3168 1864 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3152 2304 288 ) ( -3136 2304 288 ) ( -3144 2304 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 2240 288 ) ( -3152 2240 288 ) ( -3144 2240 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3144 2288 288 ) ( -3144 2304 288 ) ( -3144 2296 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4164 +{ +( -3168 1864 320 ) ( -3168 1907 320 ) ( -3136 1904 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1904 320 ) ( -3136 1904 288 ) ( -3136 1864 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1904 288 ) ( -3168 1907 320 ) ( -3168 1864 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3152 2560 288 ) ( -3136 2560 288 ) ( -3144 2560 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 2304 288 ) ( -3152 2304 288 ) ( -3144 2304 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4165 +{ +( -3520 2806 320 ) ( -3488 2803 320 ) ( -3488 2688 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 2688 320 ) ( -3488 2803 320 ) ( -3520 2806 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3504 2624 288 ) ( -3488 2624 288 ) ( -3496 2624 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 2560 288 ) ( -3504 2560 288 ) ( -3496 2560 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3496 2592 288 ) ( -3496 2624 288 ) ( -3496 2608 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4166 +{ +( -3520 2806 320 ) ( -3488 2803 320 ) ( -3488 2688 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 2816 336 ) ( -3520 2688 336 ) ( -3520 2688 280 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 2688 320 ) ( -3488 2803 320 ) ( -3520 2806 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3504 2624 288 ) ( -3488 2624 288 ) ( -3496 2624 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 2560 288 ) ( -3504 2560 288 ) ( -3496 2560 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3512 2624 288 ) ( -3512 2592 288 ) ( -3512 2608 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4167 +{ +( -3520 2806 320 ) ( -3488 2803 320 ) ( -3488 2688 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3488 2688 320 ) ( -3488 2803 320 ) ( -3520 2806 288 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3504 2624 288 ) ( -3488 2624 288 ) ( -3496 2624 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 1 7000 +( -3488 2560 288 ) ( -3504 2560 288 ) ( -3496 2560 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 1 7000 +( -3496 2624 288 ) ( -3496 2592 288 ) ( -3496 2608 320 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -3512 2592 288 ) ( -3512 2624 288 ) ( -3512 2608 320 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 4168 +{ +( -3520 2486 320 ) ( -3488 2483 320 ) ( -3488 2368 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3488 2368 320 ) ( -3488 2483 320 ) ( -3520 2486 288 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3504 2304 288 ) ( -3488 2304 288 ) ( -3496 2304 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 1 7000 +( -3488 2240 288 ) ( -3504 2240 288 ) ( -3496 2240 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 1 7000 +( -3496 2304 288 ) ( -3496 2272 288 ) ( -3496 2288 320 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -3512 2272 288 ) ( -3512 2304 288 ) ( -3512 2288 320 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 4169 +{ +( -3520 2486 320 ) ( -3488 2483 320 ) ( -3488 2368 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 2496 336 ) ( -3520 2368 336 ) ( -3520 2368 280 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 2368 320 ) ( -3488 2483 320 ) ( -3520 2486 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3504 2304 288 ) ( -3488 2304 288 ) ( -3496 2304 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 2240 288 ) ( -3504 2240 288 ) ( -3496 2240 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3512 2304 288 ) ( -3512 2272 288 ) ( -3512 2288 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4170 +{ +( -3520 2486 320 ) ( -3488 2483 320 ) ( -3488 2368 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 2368 320 ) ( -3488 2483 320 ) ( -3520 2486 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3504 2304 288 ) ( -3488 2304 288 ) ( -3496 2304 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 2240 288 ) ( -3504 2240 288 ) ( -3496 2240 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3496 2272 288 ) ( -3496 2304 288 ) ( -3496 2288 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4171 +{ +( -3520 2486 320 ) ( -3488 2483 320 ) ( -3488 2368 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 2488 336 ) ( -3520 2360 336 ) ( -3520 2360 280 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 2368 320 ) ( -3488 2483 320 ) ( -3520 2486 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3536 2560 288 ) ( -3504 2560 288 ) ( -3520 2560 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 2304 288 ) ( -3504 2304 288 ) ( -3496 2304 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4172 +{ +( -1400 -468 288 ) ( -1480 -344 288 ) ( -1506 -365 320 ) common/li_pv_v4a -25 -3 123 1 1 0 1 7000 +( -1400 -468 336 ) ( -1400 -468 288 ) ( -1506 -365 320 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1400 -316 320 ) ( -1506 -344 320 ) ( -1506 -288 320 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1434 -446 320 ) ( -1424 -440 288 ) ( -1444 -452 288 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1470 -390 320 ) ( -1480 -396 288 ) ( -1460 -384 288 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1444 -414 320 ) ( -1464 -384 288 ) ( -1424 -444 288 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 4173 +{ +( -1429 -484 320 ) ( -1400 -468 288 ) ( -1506 -365 320 ) common/li_pv_v4a -25 -3 123 1 1 0 1 7000 +( -1506 -365 320 ) ( -1400 -468 288 ) ( -1400 -468 336 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1400 -316 320 ) ( -1506 -344 320 ) ( -1506 -288 320 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1434 -446 320 ) ( -1424 -440 288 ) ( -1444 -452 288 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1470 -390 320 ) ( -1480 -396 296 ) ( -1460 -384 296 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1460 -421 320 ) ( -1440 -452 296 ) ( -1480 -390 296 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 4174 +{ +( -1712 -1064 320 ) ( -1712 -832 320 ) ( -1696 -832 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1720 -1344 320 ) ( -1704 -1344 320 ) ( -1704 -1344 96 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1696 -792 320 ) ( -1696 -792 112 ) ( -1696 -1344 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1696 -792 112 ) ( -1696 -792 320 ) ( -1712 -794 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1712 -832 320 ) ( -1712 -1064 320 ) ( -1712 -1064 96 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 -1344 112 ) ( -3504 -1344 112 ) ( -3520 -832 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4175 +{ +( -1328 -608 320 ) ( -1328 -736 320 ) ( -1696 -736 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1728 -720 160 ) ( -1728 -720 176 ) ( -1712 -794 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1728 -720 320 ) ( -1728 -720 304 ) ( -1712 -716 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1712 -794 160 ) ( -1712 -794 176 ) ( -1696 -792 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1696 -792 112 ) ( -1712 -716 112 ) ( -1704 -754 96 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 -794 112 ) ( -3504 -794 112 ) ( -3520 -716 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4176 +{ +( -1360 -452 320 ) ( -1360 -580 320 ) ( -1728 -580 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1754 -660 96 ) ( -1754 -660 112 ) ( -1728 -720 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1754 -660 320 ) ( -1754 -660 304 ) ( -1740 -652 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1728 -720 304 ) ( -1728 -720 320 ) ( -1712 -716 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1712 -716 256 ) ( -1740 -652 256 ) ( -1726 -684 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 -720 112 ) ( -3504 -720 112 ) ( -3520 -652 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4177 +{ +( -1416 -320 320 ) ( -1416 -448 320 ) ( -1784 -448 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1798 -594 160 ) ( -1798 -594 176 ) ( -1754 -660 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1798 -594 320 ) ( -1798 -594 304 ) ( -1784 -584 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1754 -660 304 ) ( -1754 -660 320 ) ( -1740 -652 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1740 -652 256 ) ( -1784 -584 256 ) ( -1762 -618 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 -660 112 ) ( -3504 -660 112 ) ( -3520 -584 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4178 +{ +( -1572 -616 320 ) ( -1572 -248 320 ) ( -1444 -248 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1798 -594 112 ) ( -1798 -594 96 ) ( -1842 -550 96 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1798 -594 304 ) ( -1798 -594 320 ) ( -1784 -584 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1842 -550 320 ) ( -1842 -550 304 ) ( -1832 -536 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1832 -536 240 ) ( -1784 -584 240 ) ( -1808 -560 256 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 -594 112 ) ( -3504 -594 112 ) ( -3520 -536 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4179 +{ +( -1696 -536 320 ) ( -1696 -168 320 ) ( -1568 -168 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1842 -550 176 ) ( -1842 -550 160 ) ( -1908 -506 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1842 -550 304 ) ( -1842 -550 320 ) ( -1832 -536 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1908 -506 320 ) ( -1908 -506 304 ) ( -1900 -492 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1900 -492 240 ) ( -1832 -536 240 ) ( -1866 -514 256 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 -550 112 ) ( -3504 -550 112 ) ( -3520 -492 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4180 +{ +( -1828 -480 320 ) ( -1828 -112 320 ) ( -1700 -112 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1908 -506 112 ) ( -1908 -506 96 ) ( -1968 -480 96 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1908 -506 304 ) ( -1908 -506 320 ) ( -1900 -492 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1968 -480 320 ) ( -1968 -480 304 ) ( -1964 -464 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1964 -464 240 ) ( -1900 -492 240 ) ( -1932 -478 256 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 -506 112 ) ( -3504 -506 112 ) ( -3520 -464 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4181 +{ +( -1984 -448 320 ) ( -1984 -80 320 ) ( -1856 -80 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1968 -480 176 ) ( -1968 -480 160 ) ( -2042 -464 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1968 -480 304 ) ( -1968 -480 320 ) ( -1964 -464 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2042 -464 320 ) ( -2042 -464 304 ) ( -2040 -448 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2040 -448 240 ) ( -1964 -464 240 ) ( -2002 -456 256 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 -480 112 ) ( -3504 -480 112 ) ( -3520 -448 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4182 +{ +( -2752 -464 320 ) ( -2752 -448 320 ) ( -2080 -448 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2830 -464 112 ) ( -2830 -464 320 ) ( -2080 -464 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2040 -448 320 ) ( -2040 -448 112 ) ( -2042 -464 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2040 -448 112 ) ( -2040 -448 320 ) ( -2828 -448 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2830 -464 320 ) ( -2830 -464 112 ) ( -2828 -448 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 -464 112 ) ( -3504 -464 112 ) ( -3520 -448 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4183 +{ +( -2848 -64 320 ) ( -2848 -432 320 ) ( -2976 -432 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2990 -432 320 ) ( -2990 -432 304 ) ( -2984 -416 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2990 -432 96 ) ( -2990 -432 112 ) ( -2830 -464 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2830 -464 304 ) ( -2830 -464 320 ) ( -2828 -448 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2984 -416 304 ) ( -2828 -448 304 ) ( -2906 -432 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 -464 112 ) ( -3504 -464 112 ) ( -3520 -416 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4184 +{ +( -3004 -32 320 ) ( -3004 -400 320 ) ( -3132 -400 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3124 -374 320 ) ( -3124 -374 304 ) ( -3116 -360 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3124 -374 96 ) ( -3124 -374 112 ) ( -2990 -432 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2990 -432 304 ) ( -2990 -432 320 ) ( -2984 -416 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3116 -360 304 ) ( -2984 -416 304 ) ( -3050 -388 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 -432 112 ) ( -3504 -432 112 ) ( -3520 -360 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4185 +{ +( -3136 24 320 ) ( -3136 -344 320 ) ( -3264 -344 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3250 -292 176 ) ( -3250 -292 160 ) ( -3240 -280 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3250 -292 96 ) ( -3250 -292 112 ) ( -3124 -374 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3124 -374 304 ) ( -3124 -374 320 ) ( -3116 -360 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3240 -280 304 ) ( -3116 -360 304 ) ( -3178 -320 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 -374 112 ) ( -3504 -374 112 ) ( -3520 -280 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4186 +{ +( -3250 -168 320 ) ( -3250 -292 320 ) ( -3352 -292 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3240 -280 160 ) ( -3240 -280 320 ) ( -3352 -168 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3364 -178 320 ) ( -3364 -178 160 ) ( -3352 -168 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3364 -178 96 ) ( -3364 -178 256 ) ( -3250 -292 256 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3240 -280 320 ) ( -3240 -280 160 ) ( -3250 -292 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 -292 112 ) ( -3504 -292 112 ) ( -3520 -168 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4187 +{ +( -3416 -192 320 ) ( -3416 -64 320 ) ( -3048 -64 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3364 -178 304 ) ( -3364 -178 320 ) ( -3352 -168 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3364 -178 256 ) ( -3364 -178 240 ) ( -3446 -52 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3446 -52 176 ) ( -3446 -52 160 ) ( -3432 -44 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3352 -168 176 ) ( -3432 -44 176 ) ( -3392 -106 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 -178 112 ) ( -3504 -178 112 ) ( -3520 -44 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4188 +{ +( -3472 -60 320 ) ( -3472 68 320 ) ( -3104 68 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3446 -52 160 ) ( -3446 -52 176 ) ( -3432 -44 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3446 -52 256 ) ( -3446 -52 240 ) ( -3504 82 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3504 82 176 ) ( -3504 82 160 ) ( -3488 88 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3432 -44 176 ) ( -3488 88 176 ) ( -3460 22 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 -52 112 ) ( -3504 -52 112 ) ( -3520 88 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4189 +{ +( -3504 96 320 ) ( -3504 224 320 ) ( -3136 224 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3504 82 160 ) ( -3504 82 176 ) ( -3488 88 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3504 82 256 ) ( -3504 82 240 ) ( -3536 242 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 242 176 ) ( -3536 242 160 ) ( -3520 244 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3488 88 112 ) ( -3520 244 112 ) ( -3504 166 96 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3536 82 112 ) ( -3504 82 112 ) ( -3520 244 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4190 +{ +( -3504 96 320 ) ( -3504 224 320 ) ( -3136 224 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3104 208 160 ) ( -3104 208 176 ) ( -3120 282 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3104 208 320 ) ( -3104 208 304 ) ( -3120 204 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3120 282 160 ) ( -3120 282 176 ) ( -3136 280 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3136 280 112 ) ( -3120 204 112 ) ( -3128 242 96 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1384 204 112 ) ( -1352 204 112 ) ( -1368 282 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4191 +{ +( -3472 -60 320 ) ( -3472 68 320 ) ( -3104 68 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3078 148 96 ) ( -3078 148 112 ) ( -3104 208 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3078 148 320 ) ( -3078 148 304 ) ( -3092 140 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3104 208 304 ) ( -3104 208 320 ) ( -3120 204 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3120 204 256 ) ( -3092 140 256 ) ( -3106 172 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1384 140 112 ) ( -1352 140 112 ) ( -1368 208 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4192 +{ +( -3416 -192 320 ) ( -3416 -64 320 ) ( -3048 -64 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3034 82 160 ) ( -3034 82 176 ) ( -3078 148 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3048 72 96 ) ( -3048 72 320 ) ( -3034 82 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3078 148 304 ) ( -3078 148 320 ) ( -3092 140 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3048 72 320 ) ( -3048 72 96 ) ( -3092 140 96 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1384 72 112 ) ( -1352 72 112 ) ( -1368 148 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4193 +{ +( -3260 104 320 ) ( -3260 -264 320 ) ( -3388 -264 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3034 82 112 ) ( -3034 82 96 ) ( -2990 38 96 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3048 72 320 ) ( -3048 72 96 ) ( -3034 82 96 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2990 38 320 ) ( -2990 38 304 ) ( -3000 24 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3048 72 96 ) ( -3048 72 320 ) ( -3000 24 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1384 24 112 ) ( -1352 24 112 ) ( -1368 82 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4194 +{ +( -3136 24 320 ) ( -3136 -344 320 ) ( -3264 -344 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2990 38 176 ) ( -2990 38 160 ) ( -2924 -6 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2990 38 304 ) ( -2990 38 320 ) ( -3000 24 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2924 -6 320 ) ( -2924 -6 304 ) ( -2932 -20 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2932 -20 240 ) ( -3000 24 240 ) ( -2966 2 256 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1384 -20 112 ) ( -1352 -20 112 ) ( -1368 38 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4195 +{ +( -3004 -32 320 ) ( -3004 -400 320 ) ( -3132 -400 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2924 -6 112 ) ( -2924 -6 96 ) ( -2864 -32 96 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2924 -6 304 ) ( -2924 -6 320 ) ( -2932 -20 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2864 -32 320 ) ( -2864 -32 304 ) ( -2868 -48 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2868 -48 240 ) ( -2932 -20 240 ) ( -2900 -34 256 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1384 -48 112 ) ( -1352 -48 112 ) ( -1368 -6 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4196 +{ +( -2848 -64 320 ) ( -2848 -432 320 ) ( -2976 -432 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2864 -32 176 ) ( -2864 -32 160 ) ( -2790 -48 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2864 -32 304 ) ( -2864 -32 320 ) ( -2868 -48 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2790 -48 320 ) ( -2790 -48 304 ) ( -2792 -64 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2792 -64 240 ) ( -2868 -48 240 ) ( -2830 -56 256 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1384 -64 112 ) ( -1352 -64 112 ) ( -1368 -32 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4197 +{ +( -2752 -64 320 ) ( -2752 -48 320 ) ( -2080 -48 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2792 -64 112 ) ( -2792 -64 320 ) ( -2080 -64 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2002 -48 320 ) ( -2002 -48 112 ) ( -2004 -64 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2002 -48 112 ) ( -2002 -48 320 ) ( -2790 -48 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2792 -64 320 ) ( -2792 -64 112 ) ( -2790 -48 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1384 -64 112 ) ( -1352 -64 112 ) ( -1368 -48 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4198 +{ +( -1984 -448 320 ) ( -1984 -80 320 ) ( -1856 -80 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1842 -80 320 ) ( -1842 -80 304 ) ( -1848 -96 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1842 -80 96 ) ( -1842 -80 112 ) ( -2002 -48 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -2002 -48 304 ) ( -2002 -48 320 ) ( -2004 -64 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1848 -96 304 ) ( -2004 -64 304 ) ( -1926 -80 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1384 -96 112 ) ( -1352 -96 112 ) ( -1368 -48 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4199 +{ +( -1828 -480 320 ) ( -1828 -112 320 ) ( -1700 -112 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1708 -138 320 ) ( -1708 -138 304 ) ( -1716 -152 304 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1708 -138 96 ) ( -1708 -138 112 ) ( -1842 -80 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1842 -80 304 ) ( -1842 -80 320 ) ( -1848 -96 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1716 -152 304 ) ( -1848 -96 304 ) ( -1782 -124 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1384 -152 112 ) ( -1352 -152 112 ) ( -1368 -80 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4200 +{ +( -1696 -536 320 ) ( -1696 -168 320 ) ( -1568 -168 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1582 -220 176 ) ( -1582 -220 160 ) ( -1592 -232 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1582 -220 96 ) ( -1582 -220 112 ) ( -1708 -138 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1708 -138 304 ) ( -1708 -138 320 ) ( -1716 -152 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1592 -232 304 ) ( -1716 -152 304 ) ( -1654 -192 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1384 -232 112 ) ( -1352 -232 112 ) ( -1368 -138 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4201 +{ +( -1582 -344 320 ) ( -1582 -220 320 ) ( -1480 -220 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1592 -232 160 ) ( -1592 -232 320 ) ( -1480 -344 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1468 -334 320 ) ( -1468 -334 160 ) ( -1480 -344 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1468 -334 96 ) ( -1468 -334 256 ) ( -1582 -220 256 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1592 -232 320 ) ( -1592 -232 160 ) ( -1582 -220 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1384 -344 112 ) ( -1352 -344 112 ) ( -1368 -220 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4202 +{ +( -1416 -320 320 ) ( -1416 -448 320 ) ( -1784 -448 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1468 -334 304 ) ( -1468 -334 320 ) ( -1480 -344 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1468 -334 256 ) ( -1468 -334 240 ) ( -1386 -460 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1386 -460 176 ) ( -1386 -460 160 ) ( -1400 -468 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1480 -344 176 ) ( -1400 -468 176 ) ( -1440 -406 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1384 -468 112 ) ( -1352 -468 112 ) ( -1368 -334 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4203 +{ +( -1360 -452 320 ) ( -1360 -580 320 ) ( -1728 -580 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1386 -460 160 ) ( -1386 -460 176 ) ( -1400 -468 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1386 -460 256 ) ( -1386 -460 240 ) ( -1328 -594 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1328 -594 176 ) ( -1328 -594 160 ) ( -1344 -600 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1400 -468 176 ) ( -1344 -600 176 ) ( -1372 -534 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1384 -600 112 ) ( -1352 -600 112 ) ( -1368 -460 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4204 +{ +( -1328 -608 320 ) ( -1328 -736 320 ) ( -1696 -736 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1328 -594 160 ) ( -1328 -594 176 ) ( -1344 -600 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1328 -594 256 ) ( -1328 -594 240 ) ( -1296 -754 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1296 -754 176 ) ( -1296 -754 160 ) ( -1312 -756 160 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1344 -600 112 ) ( -1312 -756 112 ) ( -1328 -678 96 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1384 -756 112 ) ( -1352 -756 112 ) ( -1368 -594 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4205 +{ +( -1312 -704 320 ) ( -1312 -832 320 ) ( -1680 -832 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1296 -754 160 ) ( -1296 -754 176 ) ( -1312 -756 176 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1296 -754 256 ) ( -1296 -754 240 ) ( -1296 -832 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1312 -832 224 ) ( -1680 -832 224 ) ( -1680 -832 384 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1312 -812 256 ) ( -1312 -832 256 ) ( -1312 -822 240 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -1384 -832 112 ) ( -1352 -832 112 ) ( -1368 -754 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4206 +{ +( -3168 1544 320 ) ( -3168 1587 320 ) ( -3136 1584 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1584 320 ) ( -3136 1584 288 ) ( -3136 1544 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1584 288 ) ( -3168 1587 320 ) ( -3168 1544 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3152 2240 288 ) ( -3136 2240 288 ) ( -3144 2240 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1984 288 ) ( -3152 1984 288 ) ( -3144 1984 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4207 +{ +( -3168 1544 320 ) ( -3168 1587 320 ) ( -3136 1584 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1584 320 ) ( -3136 1584 288 ) ( -3136 1544 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1584 288 ) ( -3168 1587 320 ) ( -3168 1544 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3152 1984 288 ) ( -3136 1984 288 ) ( -3144 1984 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1920 288 ) ( -3152 1920 288 ) ( -3144 1920 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3144 1968 288 ) ( -3144 1984 288 ) ( -3144 1976 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4208 +{ +( -3168 1544 320 ) ( -3168 1587 320 ) ( -3136 1584 320 ) common/li_pv_v4a 63 7 90 1 1 0 0 0 +( -3136 1584 288 ) ( -3168 1587 320 ) ( -3168 1544 320 ) common/li_pv_v4a 63 7 90 1 1 0 0 0 +( -3152 1984 288 ) ( -3136 1984 288 ) ( -3144 1984 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 0 0 +( -3136 1920 288 ) ( -3152 1920 288 ) ( -3144 1920 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 0 0 +( -3144 1984 288 ) ( -3144 1968 288 ) ( -3144 1976 320 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +( -3160 1920 296 ) ( -3160 1960 296 ) ( -3160 1940 320 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +} +// brush 4209 +{ +( -3168 1544 320 ) ( -3168 1587 320 ) ( -3136 1584 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1584 288 ) ( -3168 1587 320 ) ( -3168 1544 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3152 1984 288 ) ( -3136 1984 288 ) ( -3144 1984 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1920 288 ) ( -3152 1920 288 ) ( -3144 1920 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3160 1960 296 ) ( -3160 1920 296 ) ( -3160 1940 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4210 +{ +( -3520 2166 320 ) ( -3488 2163 320 ) ( -3488 2048 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 2168 336 ) ( -3520 2040 336 ) ( -3520 2040 280 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 2048 320 ) ( -3488 2163 320 ) ( -3520 2166 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3536 2240 288 ) ( -3504 2240 288 ) ( -3520 2240 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 1984 288 ) ( -3504 1984 288 ) ( -3496 1984 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4211 +{ +( -3520 2166 320 ) ( -3488 2163 320 ) ( -3488 2048 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 2048 320 ) ( -3488 2163 320 ) ( -3520 2166 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3504 1984 288 ) ( -3488 1984 288 ) ( -3496 1984 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 1920 288 ) ( -3504 1920 288 ) ( -3496 1920 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3496 1952 288 ) ( -3496 1984 288 ) ( -3496 1968 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4212 +{ +( -3520 2166 320 ) ( -3488 2163 320 ) ( -3488 2048 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 2176 336 ) ( -3520 2048 336 ) ( -3520 2048 280 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 2048 320 ) ( -3488 2163 320 ) ( -3520 2166 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3504 1984 288 ) ( -3488 1984 288 ) ( -3496 1984 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 1920 288 ) ( -3504 1920 288 ) ( -3496 1920 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3512 1984 288 ) ( -3512 1952 288 ) ( -3512 1968 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4213 +{ +( -3520 2166 320 ) ( -3488 2163 320 ) ( -3488 2048 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3488 2048 320 ) ( -3488 2163 320 ) ( -3520 2166 288 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3504 1984 288 ) ( -3488 1984 288 ) ( -3496 1984 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 1 7000 +( -3488 1920 288 ) ( -3504 1920 288 ) ( -3496 1920 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 1 7000 +( -3496 1984 288 ) ( -3496 1952 288 ) ( -3496 1968 320 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -3512 1952 288 ) ( -3512 1984 288 ) ( -3512 1968 320 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 4214 +{ +( -3168 1224 320 ) ( -3168 1267 320 ) ( -3136 1264 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1264 288 ) ( -3168 1267 320 ) ( -3168 1224 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3152 1664 288 ) ( -3136 1664 288 ) ( -3144 1664 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1600 288 ) ( -3152 1600 288 ) ( -3144 1600 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3160 1640 296 ) ( -3160 1600 296 ) ( -3160 1620 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4215 +{ +( -3168 1224 320 ) ( -3168 1267 320 ) ( -3136 1264 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3136 1264 288 ) ( -3168 1267 320 ) ( -3168 1224 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3152 1664 288 ) ( -3136 1664 288 ) ( -3144 1664 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 1 7000 +( -3136 1600 288 ) ( -3152 1600 288 ) ( -3144 1600 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 1 7000 +( -3144 1664 288 ) ( -3144 1648 288 ) ( -3144 1656 320 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -3160 1600 296 ) ( -3160 1640 296 ) ( -3160 1620 320 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 4216 +{ +( -3168 1224 320 ) ( -3168 1267 320 ) ( -3136 1264 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1264 320 ) ( -3136 1264 288 ) ( -3136 1224 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1264 288 ) ( -3168 1267 320 ) ( -3168 1224 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3152 1664 288 ) ( -3136 1664 288 ) ( -3144 1664 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1600 288 ) ( -3152 1600 288 ) ( -3144 1600 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3144 1648 288 ) ( -3144 1664 288 ) ( -3144 1656 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4217 +{ +( -3520 1846 320 ) ( -3488 1843 320 ) ( -3488 1728 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3488 1728 320 ) ( -3488 1843 320 ) ( -3520 1846 288 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3504 1664 288 ) ( -3488 1664 288 ) ( -3496 1664 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3488 1600 288 ) ( -3504 1600 288 ) ( -3496 1600 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3496 1664 288 ) ( -3496 1632 288 ) ( -3496 1648 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3512 1632 288 ) ( -3512 1664 288 ) ( -3512 1648 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +} +// brush 4218 +{ +( -3520 1846 320 ) ( -3488 1843 320 ) ( -3488 1728 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 1856 336 ) ( -3520 1728 336 ) ( -3520 1728 280 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 1728 320 ) ( -3488 1843 320 ) ( -3520 1846 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3504 1664 288 ) ( -3488 1664 288 ) ( -3496 1664 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 1600 288 ) ( -3504 1600 288 ) ( -3496 1600 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3512 1664 288 ) ( -3512 1632 288 ) ( -3512 1648 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4219 +{ +( -3520 1846 320 ) ( -3488 1843 320 ) ( -3488 1728 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 1728 320 ) ( -3488 1843 320 ) ( -3520 1846 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3504 1664 288 ) ( -3488 1664 288 ) ( -3496 1664 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 1600 288 ) ( -3504 1600 288 ) ( -3496 1600 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3496 1632 288 ) ( -3496 1664 288 ) ( -3496 1648 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4220 +{ +( -3168 904 320 ) ( -3168 947 320 ) ( -3136 944 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 944 320 ) ( -3136 944 288 ) ( -3136 904 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 944 288 ) ( -3168 947 320 ) ( -3168 904 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3160 1600 288 ) ( -3144 1600 288 ) ( -3152 1600 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1344 288 ) ( -3152 1344 288 ) ( -3144 1344 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4221 +{ +( -3168 904 320 ) ( -3168 947 320 ) ( -3136 944 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 944 320 ) ( -3136 944 288 ) ( -3136 904 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 944 288 ) ( -3168 947 320 ) ( -3168 904 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3152 1344 288 ) ( -3136 1344 288 ) ( -3144 1344 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1280 288 ) ( -3152 1280 288 ) ( -3144 1280 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3144 1328 288 ) ( -3144 1344 288 ) ( -3144 1336 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4222 +{ +( -3168 904 320 ) ( -3168 947 320 ) ( -3136 944 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3136 944 288 ) ( -3168 947 320 ) ( -3168 904 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3152 1344 288 ) ( -3136 1344 288 ) ( -3144 1344 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 1 7000 +( -3136 1280 288 ) ( -3152 1280 288 ) ( -3144 1280 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 1 7000 +( -3144 1344 288 ) ( -3144 1328 288 ) ( -3144 1336 320 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -3160 1280 296 ) ( -3160 1320 296 ) ( -3160 1300 320 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 4223 +{ +( -3168 904 320 ) ( -3168 947 320 ) ( -3136 944 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 944 288 ) ( -3168 947 320 ) ( -3168 904 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3152 1344 288 ) ( -3136 1344 288 ) ( -3144 1344 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1280 288 ) ( -3152 1280 288 ) ( -3144 1280 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3160 1320 296 ) ( -3160 1280 296 ) ( -3160 1300 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4224 +{ +( -3168 584 320 ) ( -3168 627 320 ) ( -3136 624 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 624 288 ) ( -3168 627 320 ) ( -3168 584 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3152 1024 288 ) ( -3136 1024 288 ) ( -3144 1024 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 960 288 ) ( -3152 960 288 ) ( -3144 960 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3160 1000 296 ) ( -3160 960 296 ) ( -3160 980 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4225 +{ +( -3168 584 320 ) ( -3168 627 320 ) ( -3136 624 320 ) common/li_pv_v4a 63 7 90 1 1 0 0 0 +( -3136 624 288 ) ( -3168 627 320 ) ( -3168 584 320 ) common/li_pv_v4a 63 7 90 1 1 0 0 0 +( -3152 1024 288 ) ( -3136 1024 288 ) ( -3144 1024 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 0 0 +( -3136 960 288 ) ( -3152 960 288 ) ( -3144 960 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 0 0 +( -3144 1024 288 ) ( -3144 1008 288 ) ( -3144 1016 320 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +( -3160 960 296 ) ( -3160 1000 296 ) ( -3160 980 320 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +} +// brush 4226 +{ +( -3168 584 320 ) ( -3168 627 320 ) ( -3136 624 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 624 320 ) ( -3136 624 288 ) ( -3136 584 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 624 288 ) ( -3168 627 320 ) ( -3168 584 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3152 1024 288 ) ( -3136 1024 288 ) ( -3144 1024 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 960 288 ) ( -3152 960 288 ) ( -3144 960 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3144 1008 288 ) ( -3144 1024 288 ) ( -3144 1016 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4227 +{ +( -3168 584 320 ) ( -3168 627 320 ) ( -3136 624 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 624 320 ) ( -3136 624 288 ) ( -3136 584 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 624 288 ) ( -3168 627 320 ) ( -3168 584 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3160 1280 288 ) ( -3144 1280 288 ) ( -3152 1280 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 1024 288 ) ( -3152 1024 288 ) ( -3144 1024 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4228 +{ +( -3168 264 320 ) ( -3168 307 320 ) ( -3136 304 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 304 320 ) ( -3136 304 288 ) ( -3136 264 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 304 288 ) ( -3168 307 320 ) ( -3168 264 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3152 704 288 ) ( -3136 704 288 ) ( -3144 704 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 640 288 ) ( -3152 640 288 ) ( -3144 640 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3144 688 288 ) ( -3144 704 288 ) ( -3144 696 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4229 +{ +( -3168 264 320 ) ( -3168 307 320 ) ( -3136 304 320 ) common/li_pv_v4a 63 7 90 1 1 0 0 0 +( -3136 304 288 ) ( -3168 307 320 ) ( -3168 264 320 ) common/li_pv_v4a 63 7 90 1 1 0 0 0 +( -3152 704 288 ) ( -3136 704 288 ) ( -3144 704 320 ) common/li_pv_v4a 63 7 90 1 1 0 0 0 +( -3136 640 288 ) ( -3152 640 288 ) ( -3144 640 320 ) common/li_pv_v4a 63 7 90 1 1 0 0 0 +( -3144 704 288 ) ( -3144 688 288 ) ( -3144 696 320 ) common/li_pv_v4a 63 7 90 1 1 0 0 0 +( -3160 640 296 ) ( -3160 680 296 ) ( -3160 660 320 ) common/li_pv_v4a 63 7 90 1 1 0 0 0 +} +// brush 4230 +{ +( -3168 264 320 ) ( -3168 307 320 ) ( -3136 304 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 304 288 ) ( -3168 307 320 ) ( -3168 264 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3152 704 288 ) ( -3136 704 288 ) ( -3144 704 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 640 288 ) ( -3152 640 288 ) ( -3144 640 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3160 680 296 ) ( -3160 640 296 ) ( -3160 660 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4231 +{ +( -3520 1206 320 ) ( -3488 1203 320 ) ( -3488 1088 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3488 1088 320 ) ( -3488 1203 320 ) ( -3520 1206 288 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3504 1024 288 ) ( -3488 1024 288 ) ( -3496 1024 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 1 7000 +( -3488 960 288 ) ( -3504 960 288 ) ( -3496 960 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 1 7000 +( -3496 1024 288 ) ( -3496 992 288 ) ( -3496 1008 320 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -3512 992 288 ) ( -3512 1024 288 ) ( -3512 1008 320 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 4232 +{ +( -3520 1206 320 ) ( -3488 1203 320 ) ( -3488 1088 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 1216 336 ) ( -3520 1088 336 ) ( -3520 1088 280 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 1088 320 ) ( -3488 1203 320 ) ( -3520 1206 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3504 1024 288 ) ( -3488 1024 288 ) ( -3496 1024 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 960 288 ) ( -3504 960 288 ) ( -3496 960 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3512 1024 288 ) ( -3512 992 288 ) ( -3512 1008 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4233 +{ +( -3520 1206 320 ) ( -3488 1203 320 ) ( -3488 1088 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 1088 320 ) ( -3488 1203 320 ) ( -3520 1206 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3504 1024 288 ) ( -3488 1024 288 ) ( -3496 1024 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 960 288 ) ( -3504 960 288 ) ( -3496 960 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3496 992 288 ) ( -3496 1024 288 ) ( -3496 1008 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4234 +{ +( -3520 886 320 ) ( -3488 883 320 ) ( -3488 768 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 768 320 ) ( -3488 883 320 ) ( -3520 886 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3504 704 288 ) ( -3488 704 288 ) ( -3496 704 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 640 288 ) ( -3504 640 288 ) ( -3496 640 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3496 672 288 ) ( -3496 704 288 ) ( -3496 688 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4235 +{ +( -3520 886 320 ) ( -3488 883 320 ) ( -3488 768 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 896 336 ) ( -3520 768 336 ) ( -3520 768 280 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 768 320 ) ( -3488 883 320 ) ( -3520 886 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3504 704 288 ) ( -3488 704 288 ) ( -3496 704 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 640 288 ) ( -3504 640 288 ) ( -3496 640 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3512 704 288 ) ( -3512 672 288 ) ( -3512 688 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4236 +{ +( -3520 886 320 ) ( -3488 883 320 ) ( -3488 768 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3488 768 320 ) ( -3488 883 320 ) ( -3520 886 288 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3504 704 288 ) ( -3488 704 288 ) ( -3496 704 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 1 7000 +( -3488 640 288 ) ( -3504 640 288 ) ( -3496 640 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 1 7000 +( -3496 704 288 ) ( -3496 672 288 ) ( -3496 688 320 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -3512 672 288 ) ( -3512 704 288 ) ( -3512 688 320 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 4237 +{ +( -3520 566 320 ) ( -3488 563 320 ) ( -3488 448 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 576 336 ) ( -3520 448 336 ) ( -3520 448 280 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 448 320 ) ( -3488 563 320 ) ( -3520 566 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3528 640 288 ) ( -3496 640 288 ) ( -3512 640 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 384 288 ) ( -3512 384 288 ) ( -3500 384 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4238 +{ +( -3168 -56 320 ) ( -3168 -13 320 ) ( -3136 -16 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 -16 320 ) ( -3136 -16 288 ) ( -3136 -56 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 -16 288 ) ( -3168 -13 320 ) ( -3168 -56 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3160 640 288 ) ( -3144 640 288 ) ( -3152 640 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3144 384 288 ) ( -3160 384 288 ) ( -3152 384 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4239 +{ +( -3778 1324 112 ) ( -3523 1578 112 ) ( -3534 1590 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3534 1590 320 ) ( -3523 1578 320 ) ( -3778 1324 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3888 1240 320 ) ( -3888 1240 112 ) ( -3480 1648 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3520 1576 320 ) ( -3520 1576 112 ) ( -3872 1224 112 ) bricks/c_tn_m3 104 128 0 1 1 0 0 0 +( -3872 1224 320 ) ( -3872 1224 112 ) ( -3888 1240 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3520 1576 112 ) ( -3520 1576 320 ) ( -3536 1592 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4240 +{ +( -3498 1044 112 ) ( -3243 1298 112 ) ( -3254 1310 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3254 1310 320 ) ( -3243 1298 320 ) ( -3498 1044 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3520 1048 112 ) ( -3520 1048 320 ) ( -3608 960 320 ) bricks/c_tn_m3 -143 127 0 1 1 0 0 0 +( -3272 1264 112 ) ( -3272 1264 320 ) ( -3240 1296 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3592 944 320 ) ( -3592 944 112 ) ( -3608 960 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3520 1048 320 ) ( -3520 1048 112 ) ( -3536 1000 112 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +} +// brush 4241 +{ +( -3536 1104 96 ) ( -3536 1408 96 ) ( -3752 1408 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3752 1408 112 ) ( -3536 1408 112 ) ( -3536 1104 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3888 1240 96 ) ( -3888 1240 112 ) ( -3592 944 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3536 1000 112 ) ( -3536 1000 96 ) ( -3592 944 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3536 1000 96 ) ( -3536 1000 112 ) ( -3536 1592 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3536 1592 96 ) ( -3536 1592 112 ) ( -3888 1240 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 4242 +{ +( -3536 1104 320 ) ( -3536 1408 320 ) ( -3752 1408 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3752 1408 336 ) ( -3536 1408 336 ) ( -3536 1104 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3888 1240 320 ) ( -3888 1240 336 ) ( -3592 944 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3536 1000 336 ) ( -3536 1000 320 ) ( -3592 944 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3536 1000 320 ) ( -3536 1000 336 ) ( -3536 1592 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3536 1592 320 ) ( -3536 1592 336 ) ( -3888 1240 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4243 +{ +( -3504 824 112 ) ( -3504 1080 112 ) ( -3704 1080 112 ) bricks/c_sr_mr5 63 0 90 1 1 0 0 0 +( -3704 1080 128 ) ( -3504 1080 128 ) ( -3504 824 128 ) bricks/c_sr_mb1 0 28 45 1 1 0 0 0 +( -3504 1056 128 ) ( -3504 1056 112 ) ( -3520 1048 112 ) bricks/c_sr_mr5 -24 16 -180 1 -1 0 0 0 +( -3512 1064 112 ) ( -3512 1064 128 ) ( -3520 1064 128 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -3512 1064 128 ) ( -3512 1064 112 ) ( -3504 1056 112 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -3520 1048 112 ) ( -3520 1064 112 ) ( -3520 1056 128 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +} +// brush 4244 +{ +( -3520 1526 320 ) ( -3488 1523 320 ) ( -3488 1408 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 1536 336 ) ( -3520 1408 336 ) ( -3520 1408 280 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 1408 320 ) ( -3488 1523 320 ) ( -3520 1526 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3528 1600 288 ) ( -3496 1600 288 ) ( -3512 1600 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 1560 288 ) ( -3520 1576 288 ) ( -3504 1568 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4245 +{ +( -3520 1206 320 ) ( -3488 1203 320 ) ( -3488 1088 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 1216 336 ) ( -3520 1088 336 ) ( -3520 1088 280 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 1088 320 ) ( -3488 1203 320 ) ( -3520 1206 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 1024 288 ) ( -3504 1024 288 ) ( -3496 1024 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 1048 288 ) ( -3488 1128 288 ) ( -3504 1088 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4246 +{ +( -3496 1552 320 ) ( -3712 1336 320 ) ( -3736 1360 320 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +( -3752 1344 320 ) ( -3752 1344 288 ) ( -3520 1576 288 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +( -3712 1336 320 ) ( -3496 1552 320 ) ( -3520 1576 288 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +( -3520 1576 288 ) ( -3488 1560 288 ) ( -3504 1568 320 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +( -3620 1428 288 ) ( -3644 1452 288 ) ( -3632 1440 320 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +} +// brush 4247 +{ +( -3496 1552 320 ) ( -3712 1336 320 ) ( -3736 1360 320 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +( -3712 1336 320 ) ( -3496 1552 320 ) ( -3520 1576 288 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +( -3644 1452 288 ) ( -3620 1428 288 ) ( -3632 1440 320 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +( -3668 1380 288 ) ( -3692 1404 288 ) ( -3680 1392 320 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +( -3673 1385 288 ) ( -3625 1433 288 ) ( -3649 1409 320 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +} +// brush 4248 +{ +( -3496 1552 320 ) ( -3712 1336 320 ) ( -3736 1360 320 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +( -3752 1344 320 ) ( -3752 1344 288 ) ( -3520 1576 288 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +( -3712 1336 320 ) ( -3496 1552 320 ) ( -3520 1576 288 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +( -3644 1452 288 ) ( -3620 1428 288 ) ( -3632 1440 320 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +( -3668 1380 288 ) ( -3692 1404 288 ) ( -3680 1392 320 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +( -3638 1446 288 ) ( -3686 1398 288 ) ( -3662 1422 320 ) bricks/c_tn_m1 0 14 225 1 1 0 0 0 +} +// brush 4249 +{ +( -3496 1552 320 ) ( -3712 1336 320 ) ( -3736 1360 320 ) common/li_pv_v4a -15 7 225 1 1 0 1 7000 +( -3712 1336 320 ) ( -3496 1552 320 ) ( -3520 1576 288 ) common/li_pv_v4a -15 7 225 1 1 0 1 7000 +( -3644 1452 288 ) ( -3620 1428 288 ) ( -3632 1440 320 ) common/li_pv_v4a -15 7 225 1 1 0 1 7000 +( -3668 1380 288 ) ( -3692 1404 288 ) ( -3680 1392 320 ) common/li_pv_v4a -15 7 225 1 1 0 1 7000 +( -3625 1433 288 ) ( -3673 1385 288 ) ( -3649 1409 320 ) common/li_pv_v4a -15 7 225 1 1 0 1 7000 +( -3686 1398 288 ) ( -3638 1446 288 ) ( -3662 1422 320 ) common/li_pv_v4a -15 7 225 1 1 0 1 7000 +} +// brush 4250 +{ +( -3832 1200 128 ) ( -3832 1264 128 ) ( -3848 1264 128 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3848 1264 320 ) ( -3832 1264 320 ) ( -3832 1200 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3849 1199 320 ) ( -3809 1239 320 ) ( -3809 1239 112 ) bricks/c_tn_m3 104 128 0 1 1 0 0 0 +( -3848 1200 112 ) ( -3872 1224 112 ) ( -3872 1224 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3872 1224 112 ) ( -3808 1288 112 ) ( -3808 1288 320 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -3808 1240 320 ) ( -3808 1288 320 ) ( -3808 1288 112 ) bricks/c_tn_m3 104 128 0 1 1 0 0 0 +} +// brush 4251 +{ +( -3504 824 112 ) ( -3504 1080 112 ) ( -3704 1080 112 ) bricks/c_sr_mr5 63 0 90 1 1 0 0 0 +( -3704 1080 128 ) ( -3504 1080 128 ) ( -3504 824 128 ) bricks/c_sr_mb1 0 28 45 1 1 0 0 0 +( -3544 1024 112 ) ( -3544 1024 128 ) ( -3520 1048 128 ) bricks/c_sr_mr5 -24 16 -180 1 -1 0 0 0 +( -3520 1064 112 ) ( -3520 1064 128 ) ( -3872 712 128 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -3520 1064 112 ) ( -3520 1048 112 ) ( -3520 1056 128 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( -3544 1024 128 ) ( -3544 1024 112 ) ( -3544 1040 112 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +} +// brush 4252 +{ +( -3568 984 112 ) ( -3568 1000 112 ) ( -3632 1000 112 ) bricks/c_tn_m3 191 47 90 1 1 0 0 0 +( -3632 1000 128 ) ( -3568 1000 128 ) ( -3568 984 128 ) bricks/c_sr_mb1 0 58 45 1 1 0 0 0 +( -3585 1039 112 ) ( -3585 1039 320 ) ( -3625 999 320 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -3608 960 320 ) ( -3608 960 112 ) ( -3632 984 112 ) bricks/c_tn_m3 104 128 0 1 1 0 0 0 +( -3544 1024 320 ) ( -3544 1024 112 ) ( -3608 960 112 ) bricks/c_tn_m3 -152 128 -180 1 -1 0 0 0 +( -3584 1040 112 ) ( -3584 1024 112 ) ( -3584 1032 128 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +} +// brush 4253 +{ +( -3568 984 112 ) ( -3568 1000 112 ) ( -3632 1000 112 ) bricks/c_tn_m3 191 47 90 1 1 0 0 0 +( -3632 1000 128 ) ( -3568 1000 128 ) ( -3568 984 128 ) bricks/c_sr_mb1 0 -2 0 1 1 0 0 0 +( -3544 1024 320 ) ( -3544 1024 112 ) ( -3608 960 112 ) bricks/c_tn_m3 -152 128 -180 1 -1 0 0 0 +( -3528 1040 112 ) ( -3528 1040 320 ) ( -3576 1040 320 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -3544 1040 112 ) ( -3544 1024 112 ) ( -3544 1032 128 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( -3584 1024 112 ) ( -3584 1040 112 ) ( -3584 1032 128 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +} +// brush 4254 +{ +( -3832 1200 112 ) ( -3832 1264 112 ) ( -3848 1264 112 ) bricks/c_tn_m3 7 184 -180 1 1 0 0 0 +( -3848 1264 128 ) ( -3832 1264 128 ) ( -3832 1200 128 ) bricks/c_sr_mb1 0 31 270 1 1 0 0 0 +( -3808 1288 112 ) ( -3808 1288 128 ) ( -3848 1248 128 ) bricks/c_tn_m3 -183 128 -180 1 -1 0 0 0 +( -3792 1256 320 ) ( -3792 1304 320 ) ( -3792 1304 112 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -3808 1288 128 ) ( -3808 1288 112 ) ( -3792 1288 112 ) bricks/c_sr_mr5 8 15 -180 1 -1 0 0 0 +( -3800 1248 128 ) ( -3792 1248 112 ) ( -3808 1248 112 ) bricks/c_sr_mr5 8 15 -180 1 -1 0 0 0 +} +// brush 4255 +{ +( -3832 1200 112 ) ( -3832 1264 112 ) ( -3848 1264 112 ) bricks/c_tn_m3 7 184 -180 1 1 0 0 0 +( -3848 1264 128 ) ( -3832 1264 128 ) ( -3832 1200 128 ) bricks/c_sr_mb1 0 8 225 1 1 0 0 0 +( -3833 1207 320 ) ( -3793 1247 320 ) ( -3793 1247 112 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -3848 1200 112 ) ( -3872 1224 112 ) ( -3872 1224 320 ) bricks/c_tn_m3 -88 128 -180 1 -1 0 0 0 +( -3872 1224 112 ) ( -3808 1288 112 ) ( -3808 1288 320 ) bricks/c_tn_m3 -183 128 -180 1 -1 0 0 0 +( -3800 1248 128 ) ( -3808 1248 112 ) ( -3792 1248 112 ) bricks/c_sr_mr5 8 15 -180 1 -1 0 0 0 +} +// brush 4256 +{ +( -3504 1336 112 ) ( -3504 1592 112 ) ( -3704 1592 112 ) bricks/c_sr_mr5 63 0 90 1 1 0 0 0 +( -3704 1592 128 ) ( -3504 1592 128 ) ( -3504 1336 128 ) bricks/c_sr_mb1 0 -21 225 1 1 0 0 0 +( -3736 1344 112 ) ( -3736 1344 128 ) ( -3504 1576 128 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -3520 1576 128 ) ( -3520 1576 112 ) ( -3504 1576 112 ) bricks/c_sr_mr5 -48 15 -180 1 -1 0 0 0 +( -3808 1288 128 ) ( -3808 1288 112 ) ( -3520 1576 112 ) bricks/c_sr_mr5 -40 16 -180 1 -1 0 0 0 +( -3808 1288 112 ) ( -3808 1288 128 ) ( -3792 1288 128 ) bricks/c_sr_mr5 -48 15 -180 1 -1 0 0 0 +} +// brush 4257 +{ +( -3520 566 320 ) ( -3488 563 320 ) ( -3488 448 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 3000 +( -3488 448 320 ) ( -3488 563 320 ) ( -3520 566 288 ) common/li_pv_v4a 63 7 90 1 1 0 1 3000 +( -3504 384 288 ) ( -3488 384 288 ) ( -3496 384 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 1 3000 +( -3488 320 288 ) ( -3504 320 288 ) ( -3496 320 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 1 3000 +( -3496 384 288 ) ( -3496 352 288 ) ( -3496 368 320 ) common/li_pv_v4a 0 8 0 1 1 0 1 3000 +( -3512 352 288 ) ( -3512 384 288 ) ( -3512 368 320 ) common/li_pv_v4a 0 8 0 1 1 0 1 3000 +} +// brush 4258 +{ +( -3520 566 320 ) ( -3488 563 320 ) ( -3488 448 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 576 336 ) ( -3520 448 336 ) ( -3520 448 280 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 448 320 ) ( -3488 563 320 ) ( -3520 566 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3504 384 288 ) ( -3488 384 288 ) ( -3496 384 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 320 288 ) ( -3504 320 288 ) ( -3496 320 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3512 384 288 ) ( -3512 352 288 ) ( -3512 368 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4259 +{ +( -3520 566 320 ) ( -3488 563 320 ) ( -3488 448 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 448 320 ) ( -3488 563 320 ) ( -3520 566 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3504 384 288 ) ( -3488 384 288 ) ( -3496 384 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3488 320 288 ) ( -3504 320 288 ) ( -3496 320 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3496 352 288 ) ( -3496 384 288 ) ( -3496 368 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4260 +{ +( -3168 -56 320 ) ( -3168 -13 320 ) ( -3136 -16 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 -16 288 ) ( -3168 -13 320 ) ( -3168 -56 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3152 384 288 ) ( -3136 384 288 ) ( -3144 384 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 320 288 ) ( -3152 320 288 ) ( -3144 320 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3160 360 296 ) ( -3160 320 296 ) ( -3160 340 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4261 +{ +( -3168 -56 320 ) ( -3168 -13 320 ) ( -3136 -16 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3136 -16 288 ) ( -3168 -13 320 ) ( -3168 -56 320 ) common/li_pv_v4a 63 7 90 1 1 0 1 7000 +( -3152 384 288 ) ( -3136 384 288 ) ( -3144 384 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 1 7000 +( -3136 320 288 ) ( -3152 320 288 ) ( -3144 320 320 ) common/li_pv_v4a 15 7 -180 1 -1 0 1 7000 +( -3144 384 288 ) ( -3144 368 288 ) ( -3144 376 320 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -3160 320 296 ) ( -3160 360 296 ) ( -3160 340 320 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 4262 +{ +( -3168 -56 320 ) ( -3168 -13 320 ) ( -3136 -16 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 -16 320 ) ( -3136 -16 288 ) ( -3136 -56 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 -16 288 ) ( -3168 -13 320 ) ( -3168 -56 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3152 384 288 ) ( -3136 384 288 ) ( -3144 384 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 320 288 ) ( -3152 320 288 ) ( -3144 320 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3144 368 288 ) ( -3144 384 288 ) ( -3144 376 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4263 +{ +( -1072 -2016 168 ) ( -1104 -2016 168 ) ( -1104 -2024 168 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1104 -2024 184 ) ( -1104 -2016 184 ) ( -1072 -2016 184 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1104 -2024 256 ) ( -1072 -2024 256 ) ( -1072 -2024 192 ) common/li_track2 0 8 0 1 1 0 0 0 +( -1088 -2024 256 ) ( -1088 -2016 256 ) ( -1088 -2016 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1072 -2016 256 ) ( -1104 -2016 256 ) ( -1104 -2016 192 ) common/li_track2 0 8 0 -1 1 0 0 0 +( -1104 -2016 256 ) ( -1104 -2024 256 ) ( -1104 -2024 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 4264 +{ +( -1056 -2016 168 ) ( -1088 -2016 168 ) ( -1088 -2024 168 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1088 -2024 184 ) ( -1088 -2016 184 ) ( -1056 -2016 184 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1088 -2024 256 ) ( -1056 -2024 256 ) ( -1056 -2024 192 ) common/li_track2 0 8 0 1 1 0 1 5000 +( -1072 -2024 256 ) ( -1072 -2016 256 ) ( -1072 -2016 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1056 -2016 256 ) ( -1088 -2016 256 ) ( -1088 -2016 192 ) common/li_track2 0 8 0 -1 1 0 1 10000 +( -1088 -2016 256 ) ( -1088 -2024 256 ) ( -1088 -2024 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 4265 +{ +( -1056 -1696 168 ) ( -1088 -1696 168 ) ( -1088 -1704 168 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1088 -1704 184 ) ( -1088 -1696 184 ) ( -1056 -1696 184 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1088 -1704 256 ) ( -1056 -1704 256 ) ( -1056 -1704 192 ) common/li_track2 0 8 0 1 1 0 1 5000 +( -1072 -1704 256 ) ( -1072 -1696 256 ) ( -1072 -1696 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1056 -1696 256 ) ( -1088 -1696 256 ) ( -1088 -1696 192 ) common/li_track2 0 8 0 -1 1 0 1 10000 +( -1088 -1696 256 ) ( -1088 -1704 256 ) ( -1088 -1704 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 4266 +{ +( -1072 -1696 168 ) ( -1104 -1696 168 ) ( -1104 -1704 168 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1104 -1704 184 ) ( -1104 -1696 184 ) ( -1072 -1696 184 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1104 -1704 256 ) ( -1072 -1704 256 ) ( -1072 -1704 192 ) common/li_track2 0 8 0 1 1 0 0 0 +( -1088 -1704 256 ) ( -1088 -1696 256 ) ( -1088 -1696 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1072 -1696 256 ) ( -1104 -1696 256 ) ( -1104 -1696 192 ) common/li_track2 0 8 0 -1 1 0 0 0 +( -1104 -1696 256 ) ( -1104 -1704 256 ) ( -1104 -1704 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 4267 +{ +( -1072 -1376 168 ) ( -1104 -1376 168 ) ( -1104 -1384 168 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1104 -1384 184 ) ( -1104 -1376 184 ) ( -1072 -1376 184 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1104 -1384 256 ) ( -1072 -1384 256 ) ( -1072 -1384 192 ) common/li_track2 0 8 0 1 1 0 0 0 +( -1088 -1384 256 ) ( -1088 -1376 256 ) ( -1088 -1376 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1072 -1376 256 ) ( -1104 -1376 256 ) ( -1104 -1376 192 ) common/li_track2 0 8 0 -1 1 0 0 0 +( -1104 -1376 256 ) ( -1104 -1384 256 ) ( -1104 -1384 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 4268 +{ +( -1056 -1376 168 ) ( -1088 -1376 168 ) ( -1088 -1384 168 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1088 -1384 184 ) ( -1088 -1376 184 ) ( -1056 -1376 184 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1088 -1384 256 ) ( -1056 -1384 256 ) ( -1056 -1384 192 ) common/li_track2 0 8 0 1 1 0 1 5000 +( -1072 -1384 256 ) ( -1072 -1376 256 ) ( -1072 -1376 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1056 -1376 256 ) ( -1088 -1376 256 ) ( -1088 -1376 192 ) common/li_track2 0 8 0 -1 1 0 1 10000 +( -1088 -1376 256 ) ( -1088 -1384 256 ) ( -1088 -1384 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 4269 +{ +( -1585 -210 320 ) ( -1564 -184 288 ) ( -1688 -104 288 ) bricks/c_tn_m1 -101 4 327 1 -1 0 0 0 +( -1564 -184 336 ) ( -1564 -184 288 ) ( -1585 -210 320 ) bricks/c_tn_m1 -76 24 327 1 -1 0 0 0 +( -1688 -104 288 ) ( -1564 -184 288 ) ( -1564 -184 336 ) bricks/c_tn_m1 16 -4 327 1 -1 0 0 0 +( -1585 -210 320 ) ( -1688 -104 288 ) ( -1688 -104 336 ) bricks/c_tn_m1 -76 24 327 1 -1 0 0 0 +( -1508 -210 320 ) ( -1564 -210 320 ) ( -1536 -104 320 ) bricks/c_tn_m1 -101 4 327 1 -1 0 0 0 +} +// brush 4270 +{ +( -1585 -210 320 ) ( -1688 -104 288 ) ( -1704 -133 320 ) bricks/c_tn_m1 -101 4 327 1 -1 0 0 0 +( -1704 -133 320 ) ( -1688 -104 288 ) ( -1688 -104 336 ) bricks/c_tn_m1 -76 24 327 1 -1 0 0 0 +( -1688 -104 336 ) ( -1688 -104 288 ) ( -1585 -210 320 ) bricks/c_tn_m1 -76 24 327 1 -1 0 0 0 +( -1508 -210 320 ) ( -1564 -210 320 ) ( -1536 -104 320 ) bricks/c_tn_m1 -101 4 327 1 -1 0 0 0 +} +// brush 4271 +{ +( -1464 -416 320 ) ( -1421 -416 320 ) ( -1424 -448 320 ) bricks/c_tn_m1 160 0 0 1 1 0 0 0 +( -1424 -448 288 ) ( -1421 -416 320 ) ( -1464 -416 320 ) common/li_pv_v4a 0 -8 0 1 1 0 1 8000 +( -2112 -432 320 ) ( -2112 -448 288 ) ( -2112 -416 288 ) bricks/c_tn_m1 -32 0 0 1 1 0 0 0 +( -2048 -416 288 ) ( -2048 -424 288 ) ( -2048 -420 320 ) bricks/c_tn_m1 -32 0 0 1 1 0 0 0 +( -2112 -424 288 ) ( -2096 -424 288 ) ( -2104 -424 320 ) bricks/c_tn_m1 160 0 0 1 1 0 0 0 +( -2104 -440 288 ) ( -2112 -440 288 ) ( -2108 -440 320 ) bricks/c_tn_m1 160 0 0 1 1 0 0 0 +} +// brush 4272 +{ +( -1464 -416 320 ) ( -1421 -416 320 ) ( -1424 -448 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1424 -448 320 ) ( -1424 -448 288 ) ( -1464 -448 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1424 -448 288 ) ( -1421 -416 320 ) ( -1464 -416 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2112 -432 320 ) ( -2112 -448 288 ) ( -2112 -416 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2048 -416 288 ) ( -2048 -424 288 ) ( -2048 -420 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2112 -440 288 ) ( -2104 -440 288 ) ( -2108 -440 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4273 +{ +( -1464 -416 320 ) ( -1421 -416 320 ) ( -1424 -448 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1424 -448 288 ) ( -1421 -416 320 ) ( -1464 -416 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2112 -432 320 ) ( -2112 -448 288 ) ( -2112 -416 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2048 -416 288 ) ( -2048 -424 288 ) ( -2048 -420 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2096 -424 288 ) ( -2112 -424 288 ) ( -2104 -424 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4274 +{ +( -1784 -416 320 ) ( -1741 -416 320 ) ( -1744 -448 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1744 -448 320 ) ( -1744 -448 288 ) ( -1784 -448 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1744 -448 288 ) ( -1741 -416 320 ) ( -1784 -416 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2112 -436 288 ) ( -2112 -468 288 ) ( -2112 -452 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2368 -424 288 ) ( -2368 -416 288 ) ( -2368 -420 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4275 +{ +( -1784 -416 320 ) ( -1741 -416 320 ) ( -1744 -448 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1744 -448 288 ) ( -1741 -416 320 ) ( -1784 -416 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2432 -432 320 ) ( -2432 -448 288 ) ( -2432 -416 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2368 -416 288 ) ( -2368 -424 288 ) ( -2368 -420 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2416 -424 288 ) ( -2432 -424 288 ) ( -2424 -424 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4276 +{ +( -1784 -416 320 ) ( -1741 -416 320 ) ( -1744 -448 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1744 -448 320 ) ( -1744 -448 288 ) ( -1784 -448 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1744 -448 288 ) ( -1741 -416 320 ) ( -1784 -416 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2432 -432 320 ) ( -2432 -448 288 ) ( -2432 -416 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2368 -416 288 ) ( -2368 -424 288 ) ( -2368 -420 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2432 -440 288 ) ( -2424 -440 288 ) ( -2428 -440 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4277 +{ +( -1784 -416 320 ) ( -1741 -416 320 ) ( -1744 -448 320 ) bricks/c_tn_m1 160 0 0 1 1 0 0 0 +( -1744 -448 288 ) ( -1741 -416 320 ) ( -1784 -416 320 ) common/li_pv_v4a 0 -8 0 1 1 0 1 8000 +( -2432 -432 320 ) ( -2432 -448 288 ) ( -2432 -416 288 ) bricks/c_tn_m1 -32 0 0 1 1 0 0 0 +( -2368 -416 288 ) ( -2368 -424 288 ) ( -2368 -420 320 ) bricks/c_tn_m1 -32 0 0 1 1 0 0 0 +( -2432 -424 288 ) ( -2416 -424 288 ) ( -2424 -424 320 ) bricks/c_tn_m1 160 0 0 1 1 0 0 0 +( -2424 -440 288 ) ( -2432 -440 288 ) ( -2428 -440 320 ) bricks/c_tn_m1 160 0 0 1 1 0 0 0 +} +// brush 4278 +{ +( -2104 -416 320 ) ( -2061 -416 320 ) ( -2064 -448 320 ) bricks/c_tn_m1 160 0 0 1 1 0 0 0 +( -2064 -448 288 ) ( -2061 -416 320 ) ( -2104 -416 320 ) common/li_pv_v4a 0 -8 0 1 1 0 1 8000 +( -2752 -432 320 ) ( -2752 -448 288 ) ( -2752 -416 288 ) bricks/c_tn_m1 -32 0 0 1 1 0 0 0 +( -2688 -416 288 ) ( -2688 -424 288 ) ( -2688 -420 320 ) bricks/c_tn_m1 -32 0 0 1 1 0 0 0 +( -2752 -424 288 ) ( -2736 -424 288 ) ( -2744 -424 320 ) bricks/c_tn_m1 160 0 0 1 1 0 0 0 +( -2744 -440 288 ) ( -2752 -440 288 ) ( -2748 -440 320 ) bricks/c_tn_m1 160 0 0 1 1 0 0 0 +} +// brush 4279 +{ +( -2104 -416 320 ) ( -2061 -416 320 ) ( -2064 -448 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2064 -448 320 ) ( -2064 -448 288 ) ( -2104 -448 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2064 -448 288 ) ( -2061 -416 320 ) ( -2104 -416 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2752 -432 320 ) ( -2752 -448 288 ) ( -2752 -416 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2688 -416 288 ) ( -2688 -424 288 ) ( -2688 -420 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2752 -440 288 ) ( -2744 -440 288 ) ( -2748 -440 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4280 +{ +( -2104 -416 320 ) ( -2061 -416 320 ) ( -2064 -448 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2064 -448 288 ) ( -2061 -416 320 ) ( -2104 -416 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2752 -432 320 ) ( -2752 -448 288 ) ( -2752 -416 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2688 -416 288 ) ( -2688 -424 288 ) ( -2688 -420 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2736 -424 288 ) ( -2752 -424 288 ) ( -2744 -424 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4281 +{ +( -2104 -416 320 ) ( -2061 -416 320 ) ( -2064 -448 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2064 -448 320 ) ( -2064 -448 288 ) ( -2104 -448 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2064 -448 288 ) ( -2061 -416 320 ) ( -2104 -416 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2432 -436 288 ) ( -2432 -468 288 ) ( -2432 -452 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2688 -424 288 ) ( -2688 -416 288 ) ( -2688 -420 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4282 +{ +( -1748 -64 320 ) ( -1751 -96 320 ) ( -1824 -96 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2096 -64 320 ) ( -2448 -64 320 ) ( -2448 -64 304 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1824 -96 320 ) ( -1751 -96 320 ) ( -1748 -64 288 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2112 -88 288 ) ( -2112 -104 288 ) ( -2112 -96 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2368 -80 288 ) ( -2368 -64 288 ) ( -2368 -72 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4283 +{ +( -1428 -64 320 ) ( -1431 -96 320 ) ( -1504 -96 320 ) common/li_pv_v4a 0 -8 0 1 1 0 0 0 +( -1504 -96 320 ) ( -1431 -96 320 ) ( -1428 -64 288 ) common/li_pv_v4a 0 -8 0 1 1 0 0 0 +( -2112 -88 288 ) ( -2112 -56 288 ) ( -2112 -72 320 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +( -2048 -64 288 ) ( -2048 -80 288 ) ( -2048 -72 320 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +( -2112 -72 288 ) ( -2064 -72 288 ) ( -2088 -72 320 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +( -2104 -88 296 ) ( -2112 -88 296 ) ( -2108 -88 320 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +} +// brush 4284 +{ +( -1428 -64 320 ) ( -1431 -96 320 ) ( -1504 -96 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1504 -96 320 ) ( -1431 -96 320 ) ( -1428 -64 288 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2112 -88 288 ) ( -2112 -56 288 ) ( -2112 -72 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2048 -64 288 ) ( -2048 -80 288 ) ( -2048 -72 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2112 -88 296 ) ( -2104 -88 296 ) ( -2108 -88 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4285 +{ +( -1428 -64 320 ) ( -1431 -96 320 ) ( -1504 -96 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1776 -64 320 ) ( -2128 -64 320 ) ( -2128 -64 304 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1504 -96 320 ) ( -1431 -96 320 ) ( -1428 -64 288 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2112 -88 288 ) ( -2112 -56 288 ) ( -2112 -72 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2048 -64 288 ) ( -2048 -80 288 ) ( -2048 -72 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2064 -72 288 ) ( -2112 -72 288 ) ( -2088 -72 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4286 +{ +( -1748 -64 320 ) ( -1751 -96 320 ) ( -1824 -96 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2096 -64 320 ) ( -2448 -64 320 ) ( -2448 -64 304 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1824 -96 320 ) ( -1751 -96 320 ) ( -1748 -64 288 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2432 -88 288 ) ( -2432 -56 288 ) ( -2432 -72 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2368 -64 288 ) ( -2368 -80 288 ) ( -2368 -72 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2384 -72 288 ) ( -2432 -72 288 ) ( -2408 -72 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4287 +{ +( -1748 -64 320 ) ( -1751 -96 320 ) ( -1824 -96 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -1824 -96 320 ) ( -1751 -96 320 ) ( -1748 -64 288 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2432 -88 288 ) ( -2432 -56 288 ) ( -2432 -72 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2368 -64 288 ) ( -2368 -80 288 ) ( -2368 -72 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2432 -88 296 ) ( -2424 -88 296 ) ( -2428 -88 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4288 +{ +( -1748 -64 320 ) ( -1751 -96 320 ) ( -1824 -96 320 ) bricks/c_tn_m1 96 0 0 1 -1 0 0 0 +( -1824 -96 320 ) ( -1751 -96 320 ) ( -1748 -64 288 ) common/li_pv_v4a 0 -8 0 1 1 0 1 8000 +( -2432 -88 288 ) ( -2432 -56 288 ) ( -2432 -72 320 ) bricks/c_tn_m1 -32 0 0 1 -1 0 0 0 +( -2368 -64 288 ) ( -2368 -80 288 ) ( -2368 -72 320 ) bricks/c_tn_m1 -32 0 0 1 -1 0 0 0 +( -2432 -72 288 ) ( -2384 -72 288 ) ( -2408 -72 320 ) bricks/c_tn_m1 96 0 0 1 -1 0 0 0 +( -2424 -88 296 ) ( -2432 -88 296 ) ( -2428 -88 320 ) bricks/c_tn_m1 96 0 0 1 -1 0 0 0 +} +// brush 4289 +{ +( -2068 -64 320 ) ( -2071 -96 320 ) ( -2144 -96 320 ) bricks/c_tn_m1 160 0 0 1 -1 0 0 0 +( -2144 -96 320 ) ( -2071 -96 320 ) ( -2068 -64 288 ) common/li_pv_v4a 0 -8 0 1 1 0 1 8000 +( -2752 -88 288 ) ( -2752 -56 288 ) ( -2752 -72 320 ) bricks/c_tn_m1 -32 0 0 1 -1 0 0 0 +( -2688 -64 288 ) ( -2688 -80 288 ) ( -2688 -72 320 ) bricks/c_tn_m1 -32 0 0 1 -1 0 0 0 +( -2752 -72 288 ) ( -2704 -72 288 ) ( -2728 -72 320 ) bricks/c_tn_m1 160 0 0 1 -1 0 0 0 +( -2744 -88 296 ) ( -2752 -88 296 ) ( -2748 -88 320 ) bricks/c_tn_m1 160 0 0 1 -1 0 0 0 +} +// brush 4290 +{ +( -2068 -64 320 ) ( -2071 -96 320 ) ( -2144 -96 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2144 -96 320 ) ( -2071 -96 320 ) ( -2068 -64 288 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2752 -88 288 ) ( -2752 -56 288 ) ( -2752 -72 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2688 -64 288 ) ( -2688 -80 288 ) ( -2688 -72 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2752 -88 296 ) ( -2744 -88 296 ) ( -2748 -88 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4291 +{ +( -2068 -64 320 ) ( -2071 -96 320 ) ( -2144 -96 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2416 -64 320 ) ( -2768 -64 320 ) ( -2768 -64 304 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2144 -96 320 ) ( -2071 -96 320 ) ( -2068 -64 288 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2752 -88 288 ) ( -2752 -56 288 ) ( -2752 -72 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2688 -64 288 ) ( -2688 -80 288 ) ( -2688 -72 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2704 -72 288 ) ( -2752 -72 288 ) ( -2728 -72 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4292 +{ +( -2068 -64 320 ) ( -2071 -96 320 ) ( -2144 -96 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2416 -64 320 ) ( -2768 -64 320 ) ( -2768 -64 304 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2144 -96 320 ) ( -2071 -96 320 ) ( -2068 -64 288 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2432 -88 288 ) ( -2432 -104 288 ) ( -2432 -96 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2688 -80 288 ) ( -2688 -64 288 ) ( -2688 -72 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4293 +{ +( -1056 -1056 168 ) ( -1088 -1056 168 ) ( -1088 -1064 168 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1088 -1064 184 ) ( -1088 -1056 184 ) ( -1056 -1056 184 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1088 -1064 256 ) ( -1056 -1064 256 ) ( -1056 -1064 192 ) common/li_track2 0 8 0 1 1 0 1 5000 +( -1072 -1064 256 ) ( -1072 -1056 256 ) ( -1072 -1056 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1056 -1056 256 ) ( -1088 -1056 256 ) ( -1088 -1056 192 ) common/li_track2 0 8 0 -1 1 0 1 10000 +( -1088 -1056 256 ) ( -1088 -1064 256 ) ( -1088 -1064 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 4294 +{ +( -1072 -1056 168 ) ( -1104 -1056 168 ) ( -1104 -1064 168 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1104 -1064 184 ) ( -1104 -1056 184 ) ( -1072 -1056 184 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1104 -1064 256 ) ( -1072 -1064 256 ) ( -1072 -1064 192 ) common/li_track2 0 8 0 1 1 0 0 0 +( -1088 -1064 256 ) ( -1088 -1056 256 ) ( -1088 -1056 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -1072 -1056 256 ) ( -1104 -1056 256 ) ( -1104 -1056 192 ) common/li_track2 0 8 0 -1 1 0 0 0 +( -1104 -1056 256 ) ( -1104 -1064 256 ) ( -1104 -1064 192 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +} +// brush 4295 +{ +( 264 -3632 -16 ) ( 8 -3632 -16 ) ( 8 -3832 -16 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 8 -3832 0 ) ( 8 -3632 0 ) ( 264 -3632 0 ) bricks/c_sr_mr5 0 -4 315 1 1 0 0 0 +( 24 -3632 0 ) ( 24 -3632 -16 ) ( 312 -3920 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 24 -3632 -16 ) ( 24 -3632 0 ) ( 24 -3648 0 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( 24 -3648 -16 ) ( 24 -3648 0 ) ( 376 -4000 0 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( 312 -3920 -16 ) ( 312 -3936 -16 ) ( 312 -3928 0 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +} +// brush 4296 +{ +( 400 -3960 -16 ) ( 336 -3960 -16 ) ( 336 -3976 -16 ) bricks/c_tn_m3 247 120 90 1 1 0 0 0 +( 336 -3976 0 ) ( 336 -3960 0 ) ( 400 -3960 0 ) bricks/c_sr_mr5 0 -6 315 1 1 0 0 0 +( 393 -3961 192 ) ( 353 -3921 192 ) ( 353 -3921 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 400 -3976 -16 ) ( 376 -4000 -16 ) ( 376 -4000 192 ) bricks/c_tn_m3 -176 0 -180 1 -1 0 0 0 +( 376 -4000 -16 ) ( 312 -3936 -16 ) ( 312 -3936 192 ) bricks/c_tn_m3 177 0 0 1 1 0 0 0 +( 352 -3928 0 ) ( 352 -3936 -16 ) ( 352 -3920 -16 ) bricks/c_sr_mr5 120 16 0 1 1 0 0 0 +} +// brush 4297 +{ +( 400 -3960 -16 ) ( 336 -3960 -16 ) ( 336 -3976 -16 ) bricks/c_tn_m3 247 120 90 1 1 0 0 0 +( 336 -3976 0 ) ( 336 -3960 0 ) ( 400 -3960 0 ) bricks/c_sr_mr5 0 -2 0 1 1 0 0 0 +( 376 -4000 -16 ) ( 312 -3936 -16 ) ( 312 -3936 192 ) bricks/c_tn_m3 177 0 0 1 1 0 0 0 +( 344 -3920 192 ) ( 296 -3920 192 ) ( 296 -3920 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 312 -3928 0 ) ( 312 -3936 -16 ) ( 312 -3920 -16 ) bricks/c_sr_mr5 120 16 0 1 1 0 0 0 +( 352 -3928 0 ) ( 352 -3920 -16 ) ( 352 -3936 -16 ) bricks/c_sr_mr5 120 16 0 1 1 0 0 0 +} +// brush 4298 +{ +( 616 -3696 -16 ) ( 600 -3696 -16 ) ( 600 -3760 -16 ) bricks/c_tn_m3 128 -192 0 1 1 0 0 0 +( 600 -3760 0 ) ( 600 -3696 0 ) ( 616 -3696 0 ) bricks/c_sr_mr5 -63 -1 270 1 -1 0 0 0 +( 576 -3672 192 ) ( 576 -3672 -16 ) ( 640 -3736 -16 ) bricks/c_tn_m3 192 0 0 1 1 0 0 0 +( 560 -3656 -16 ) ( 560 -3656 192 ) ( 560 -3704 192 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 560 -3672 -16 ) ( 576 -3672 -16 ) ( 568 -3672 0 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 576 -3712 -16 ) ( 560 -3712 -16 ) ( 568 -3712 0 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 4299 +{ +( 616 -3696 -16 ) ( 600 -3696 -16 ) ( 600 -3760 -16 ) bricks/c_tn_m3 128 -192 0 1 1 0 0 0 +( 600 -3760 0 ) ( 600 -3696 0 ) ( 616 -3696 0 ) bricks/c_sr_mr5 0 7 135 1 1 0 0 0 +( 561 -3713 -16 ) ( 561 -3713 192 ) ( 601 -3753 192 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 640 -3736 192 ) ( 640 -3736 -16 ) ( 616 -3760 -16 ) bricks/c_tn_m3 192 0 0 1 1 0 0 0 +( 576 -3672 192 ) ( 576 -3672 -16 ) ( 640 -3736 -16 ) bricks/c_tn_m3 192 0 0 1 1 0 0 0 +( 560 -3712 -16 ) ( 576 -3712 -16 ) ( 568 -3712 0 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 4300 +{ +( 776 -3632 -16 ) ( 520 -3632 -16 ) ( 520 -3832 -16 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 520 -3832 0 ) ( 520 -3632 0 ) ( 776 -3632 0 ) bricks/c_sr_mr5 0 11 135 1 1 0 0 0 +( 576 -3672 -16 ) ( 576 -3672 0 ) ( 552 -3648 0 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( 536 -3648 -16 ) ( 536 -3648 0 ) ( 888 -4000 0 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 536 -3648 -16 ) ( 552 -3648 -16 ) ( 544 -3648 0 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 576 -3672 0 ) ( 576 -3672 -16 ) ( 560 -3672 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 4301 +{ +( 400 -3960 0 ) ( 336 -3960 0 ) ( 336 -3976 0 ) bricks/c_tn_m3 291 104 90 1 1 0 0 0 +( 336 -3976 192 ) ( 336 -3960 192 ) ( 400 -3960 192 ) bricks/c_tn_m3 291 104 90 1 1 0 0 0 +( 402 -3978 192 ) ( 362 -3938 192 ) ( 362 -3938 -16 ) bricks/c_tn_m3 464 0 0 -1 1 0 0 0 +( 400 -3976 -16 ) ( 376 -4000 -16 ) ( 376 -4000 192 ) bricks/c_tn_m3 -84 0 -180 1 -1 0 0 0 +( 376 -4000 -16 ) ( 312 -3936 -16 ) ( 312 -3936 192 ) bricks/c_tn_m3 249 0 0 1 1 0 0 0 +( 360 -3936 192 ) ( 312 -3936 192 ) ( 312 -3936 -16 ) bricks/c_tn_m3 456 0 0 1 1 0 0 0 +} +// brush 4302 +{ +( 48 -3624 192 ) ( 264 -3840 192 ) ( 240 -3864 192 ) common/li_pv_v4a 21 9 135 1 1 0 1 7000 +( 264 -3840 192 ) ( 48 -3624 192 ) ( 24 -3648 160 ) common/li_pv_v4a 21 9 135 1 1 0 1 7000 +( 148 -3772 160 ) ( 172 -3748 160 ) ( 160 -3760 192 ) common/li_pv_v4a 21 9 135 1 1 0 1 7000 +( 220 -3796 160 ) ( 196 -3820 160 ) ( 208 -3808 192 ) common/li_pv_v4a 21 9 135 1 1 0 1 7000 +( 167 -3753 160 ) ( 215 -3801 160 ) ( 191 -3777 192 ) common/li_pv_v4a 21 9 135 1 1 0 1 7000 +( 202 -3814 160 ) ( 154 -3766 160 ) ( 178 -3790 192 ) common/li_pv_v4a 21 9 135 1 1 0 1 7000 +} +// brush 4303 +{ +( 48 -3624 192 ) ( 264 -3840 192 ) ( 240 -3864 192 ) bricks/c_tn_m1 0 -1 315 1 1 0 0 0 +( 256 -3880 192 ) ( 256 -3880 160 ) ( 24 -3648 160 ) bricks/c_tn_m1 0 -1 315 1 1 0 0 0 +( 264 -3840 192 ) ( 48 -3624 192 ) ( 24 -3648 160 ) bricks/c_tn_m1 0 -1 315 1 1 0 0 0 +( 148 -3772 160 ) ( 172 -3748 160 ) ( 160 -3760 192 ) bricks/c_tn_m1 0 -1 315 1 1 0 0 0 +( 220 -3796 160 ) ( 196 -3820 160 ) ( 208 -3808 192 ) bricks/c_tn_m1 0 -1 315 1 1 0 0 0 +( 154 -3766 160 ) ( 202 -3814 160 ) ( 178 -3790 192 ) bricks/c_tn_m1 0 -1 315 1 1 0 0 0 +} +// brush 4304 +{ +( 48 -3624 192 ) ( 264 -3840 192 ) ( 240 -3864 192 ) bricks/c_tn_m1 0 -1 315 1 1 0 0 0 +( 264 -3840 192 ) ( 48 -3624 192 ) ( 24 -3648 160 ) bricks/c_tn_m1 0 -1 315 1 1 0 0 0 +( 148 -3772 160 ) ( 172 -3748 160 ) ( 160 -3760 192 ) bricks/c_tn_m1 0 -1 315 1 1 0 0 0 +( 220 -3796 160 ) ( 196 -3820 160 ) ( 208 -3808 192 ) bricks/c_tn_m1 0 -1 315 1 1 0 0 0 +( 215 -3801 160 ) ( 167 -3753 160 ) ( 191 -3777 192 ) bricks/c_tn_m1 0 -1 315 1 1 0 0 0 +} +// brush 4305 +{ +( 48 -3624 192 ) ( 264 -3840 192 ) ( 240 -3864 192 ) bricks/c_tn_m1 0 -1 315 1 1 0 0 0 +( 256 -3880 192 ) ( 256 -3880 160 ) ( 24 -3648 160 ) bricks/c_tn_m1 0 -1 315 1 1 0 0 0 +( 264 -3840 192 ) ( 48 -3624 192 ) ( 24 -3648 160 ) bricks/c_tn_m1 0 -1 315 1 1 0 0 0 +( 24 -3648 160 ) ( 40 -3616 160 ) ( 32 -3632 192 ) bricks/c_tn_m1 0 -1 315 1 1 0 0 0 +( 172 -3748 160 ) ( 148 -3772 160 ) ( 160 -3760 192 ) bricks/c_tn_m1 0 -1 315 1 1 0 0 0 +} +// brush 4306 +{ +( 394 -3648 192 ) ( 397 -3616 192 ) ( 512 -3616 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 384 -3648 208 ) ( 512 -3648 208 ) ( 512 -3648 152 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 512 -3616 192 ) ( 397 -3616 192 ) ( 394 -3648 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 576 -3616 160 ) ( 576 -3632 160 ) ( 576 -3624 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 552 -3648 160 ) ( 472 -3616 160 ) ( 512 -3632 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4307 +{ +( 74 -3648 192 ) ( 77 -3616 192 ) ( 192 -3616 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 64 -3648 208 ) ( 192 -3648 208 ) ( 192 -3648 152 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 192 -3616 192 ) ( 77 -3616 192 ) ( 74 -3648 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 0 -3656 160 ) ( 0 -3624 160 ) ( 0 -3640 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 40 -3616 160 ) ( 24 -3648 160 ) ( 32 -3632 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4308 +{ +( 776 -3632 -16 ) ( 520 -3632 -16 ) ( 520 -3832 -16 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( 520 -3832 0 ) ( 520 -3632 0 ) ( 776 -3632 0 ) bricks/c_sr_mr5 0 37 45 1 1 0 0 0 +( 544 -3632 0 ) ( 544 -3632 -16 ) ( 552 -3648 -16 ) bricks/c_sr_mr5 64 16 0 1 1 0 0 0 +( 536 -3640 -16 ) ( 536 -3640 0 ) ( 536 -3648 0 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 536 -3640 0 ) ( 536 -3640 -16 ) ( 544 -3632 -16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( 552 -3648 -16 ) ( 536 -3648 -16 ) ( 544 -3648 0 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 4309 +{ +( 496 -3664 192 ) ( 192 -3664 192 ) ( 192 -3880 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 192 -3880 208 ) ( 192 -3664 208 ) ( 496 -3664 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 360 -4016 192 ) ( 360 -4016 208 ) ( 656 -3720 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 600 -3664 208 ) ( 600 -3664 192 ) ( 656 -3720 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 600 -3664 192 ) ( 600 -3664 208 ) ( 8 -3664 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 8 -3664 192 ) ( 8 -3664 208 ) ( 360 -4016 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4310 +{ +( -48 -3632 -16 ) ( -512 -3632 -16 ) ( -512 -3648 -16 ) bricks/c_sr_mr5 0 0 0 1 1 0 0 0 +( -512 -3648 0 ) ( -512 -3632 0 ) ( -48 -3632 0 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( -630 -3648 -16 ) ( -630 -3648 0 ) ( 24 -3648 0 ) bricks/c_sr_mr5 0 0 0 1 1 0 0 0 +( 24 -3632 -16 ) ( 24 -3632 0 ) ( -512 -3632 0 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -630 -3648 0 ) ( -630 -3648 -16 ) ( -628 -3632 -16 ) bricks/c_sr_mr5 64 0 0 1 1 0 0 0 +( 24 -3632 0 ) ( 24 -3632 -16 ) ( 24 -3648 -16 ) bricks/c_sr_mr5 64 0 0 1 1 0 0 0 +} +// brush 4311 +{ +( -152 -3648 -16 ) ( -512 -3648 -16 ) ( -512 -3664 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -512 -3664 192 ) ( -512 -3648 192 ) ( -152 -3648 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 8 -3664 192 ) ( 8 -3664 -16 ) ( -632 -3664 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 24 -3648 -16 ) ( 24 -3648 192 ) ( -512 -3648 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -632 -3664 192 ) ( -632 -3664 -16 ) ( -630 -3648 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 8 -3664 -16 ) ( 8 -3664 192 ) ( 24 -3648 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4312 +{ +( 556 -3626 -16 ) ( 302 -3371 -16 ) ( 290 -3382 -16 ) bricks/c_tn_m3 128 -192 0 1 1 0 0 0 +( 290 -3382 192 ) ( 302 -3371 192 ) ( 556 -3626 192 ) bricks/c_tn_m3 128 -192 0 1 1 0 0 0 +( 552 -3648 -16 ) ( 552 -3648 192 ) ( 640 -3736 192 ) bricks/c_tn_m3 52 0 0 0.710000 1 0 0 0 +( 336 -3400 -16 ) ( 336 -3400 192 ) ( 304 -3368 192 ) bricks/c_tn_m3 192 0 0 1 1 0 0 0 +( 656 -3720 192 ) ( 656 -3720 -16 ) ( 640 -3736 -16 ) bricks/c_tn_m3 192 0 0 1 1 0 0 0 +( 552 -3648 192 ) ( 552 -3648 -16 ) ( 600 -3664 -16 ) bricks/c_tn_m3 128 0 0 1 1 0 0 0 +} +// brush 4313 +{ +( 276 -3906 -16 ) ( 22 -3651 -16 ) ( 10 -3662 -16 ) bricks/c_tn_m3 -18 0 0 0.710000 1 0 0 0 +( 10 -3662 192 ) ( 22 -3651 192 ) ( 276 -3906 192 ) bricks/c_tn_m3 -18 0 0 0.710000 1 0 0 0 +( 360 -4016 192 ) ( 360 -4016 -16 ) ( -48 -3608 -16 ) bricks/c_tn_m3 -18 0 0 0.710000 1 0 0 0 +( 24 -3648 192 ) ( 24 -3648 -16 ) ( 376 -4000 -16 ) bricks/c_tn_m3 -18 0 0 0.710000 1 0 0 0 +( 376 -4000 192 ) ( 376 -4000 -16 ) ( 360 -4016 -16 ) bricks/c_tn_m3 -18 0 0 0.710000 1 0 0 0 +( 24 -3648 -16 ) ( 24 -3648 192 ) ( 8 -3664 192 ) bricks/c_tn_m3 -18 0 0 0.710000 1 0 0 0 +} +// brush 4314 +{ +( -1576 -3032 0 ) ( -1560 -3024 0 ) ( -1427 -3221 0 ) bricks/c_sr_mr5 0 -9 304 1 1 0 0 0 +( -1560 -3024 -16 ) ( -1576 -3032 -16 ) ( -1440 -3232 -16 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1427 -3221 -32 ) ( -1427 -3221 192 ) ( -1413 -3210 192 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1546 -3016 192 ) ( -1546 -3016 -32 ) ( -1413 -3210 -32 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1561 -3024 192 ) ( -1561 -3024 -32 ) ( -1546 -3016 -32 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1561 -3024 -32 ) ( -1561 -3024 192 ) ( -1427 -3221 192 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 4315 +{ +( -1561 -3024 160 ) ( -1427 -3221 160 ) ( -1402 -3201 192 ) common/li_pv_v4a 2 -1 124 1 1 134217728 1 7000 +( -1561 -3024 208 ) ( -1561 -3024 160 ) ( -1402 -3201 192 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -904 -3221 192 ) ( -920 -3221 192 ) ( -912 -3024 192 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -1500 -3098 160 ) ( -1488 -3090 160 ) ( -1494 -3094 192 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -1450 -3142 160 ) ( -1466 -3152 160 ) ( -1458 -3147 192 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -1462 -3154 160 ) ( -1502 -3094 160 ) ( -1482 -3124 192 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +} +// brush 4316 +{ +( -1533 -3008 192 ) ( -1561 -3024 160 ) ( -1402 -3201 192 ) common/li_pv_v4a 2 -1 124 1 1 134217728 1 7000 +( -1402 -3201 192 ) ( -1561 -3024 160 ) ( -1561 -3024 208 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -904 -3201 192 ) ( -920 -3201 192 ) ( -912 -3008 192 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -1500 -3098 160 ) ( -1488 -3090 160 ) ( -1494 -3094 192 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -1450 -3142 173 ) ( -1466 -3152 173 ) ( -1458 -3147 192 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -1488 -3086 173 ) ( -1450 -3142 173 ) ( -1469 -3114 192 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +} +// brush 4317 +{ +( -632 -3664 -16 ) ( -632 -3648 -16 ) ( -856 -3600 -16 ) bricks/c_sr_mr5 -43 -9 -90 1 -1 0 0 0 +( -632 -3648 0 ) ( -632 -3664 0 ) ( -864 -3616 0 ) bricks/c_sr_mr5 0 11 348 1 1 0 0 0 +( -859 -3600 16 ) ( -859 -3600 -208 ) ( -854 -3584 -208 ) bricks/c_sr_mr5 -43 -27 -180 1 1 0 0 0 +( -628 -3632 -208 ) ( -628 -3632 16 ) ( -854 -3584 16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -628 -3632 16 ) ( -628 -3632 -208 ) ( -630 -3648 -208 ) bricks/c_sr_mr5 -43 -27 -180 1 1 0 0 0 +( -630 -3648 16 ) ( -630 -3648 -208 ) ( -859 -3600 -208 ) bricks/c_sr_mr5 25 -28 -180 1 1 0 0 0 +} +// brush 4318 +{ +( -859 -3600 208 ) ( -859 -3600 160 ) ( -627 -3616 192 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -859 -3600 160 ) ( -630 -3648 160 ) ( -627 -3616 192 ) common/li_pv_v4a -6 -5 168 1 1 134217728 1 7000 +( -904 -3648 192 ) ( -920 -3648 192 ) ( -912 -3600 192 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -774 -3612 160 ) ( -768 -3588 160 ) ( -771 -3600 192 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -706 -3604 160 ) ( -712 -3628 160 ) ( -709 -3616 192 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -706 -3624 160 ) ( -776 -3608 160 ) ( -741 -3616 192 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +} +// brush 4319 +{ +( -627 -3616 192 ) ( -859 -3600 160 ) ( -859 -3600 208 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -849 -3569 192 ) ( -859 -3600 160 ) ( -627 -3616 192 ) common/li_pv_v4a -6 -5 168 1 1 134217728 1 7000 +( -904 -3616 192 ) ( -920 -3616 192 ) ( -912 -3569 192 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -774 -3612 160 ) ( -768 -3588 160 ) ( -771 -3600 192 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -706 -3604 172 ) ( -712 -3628 172 ) ( -709 -3616 192 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -774 -3592 172 ) ( -704 -3608 172 ) ( -739 -3600 192 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +} +// brush 4320 +{ +( -246 -3648 192 ) ( -243 -3616 192 ) ( -128 -3616 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -256 -3648 208 ) ( -128 -3648 208 ) ( -128 -3648 152 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -128 -3616 192 ) ( -243 -3616 192 ) ( -246 -3648 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -320 -3656 160 ) ( -320 -3624 160 ) ( -320 -3640 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -64 -3616 160 ) ( -64 -3632 160 ) ( -64 -3624 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4321 +{ +( -246 -3648 192 ) ( -243 -3616 192 ) ( -128 -3616 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -128 -3616 192 ) ( -243 -3616 192 ) ( -246 -3648 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -64 -3632 160 ) ( -64 -3616 160 ) ( -64 -3624 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 0 -3616 160 ) ( 0 -3632 160 ) ( 0 -3624 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -32 -3624 160 ) ( -64 -3624 160 ) ( -48 -3624 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4322 +{ +( -246 -3648 192 ) ( -243 -3616 192 ) ( -128 -3616 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -256 -3648 208 ) ( -128 -3648 208 ) ( -128 -3648 152 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -128 -3616 192 ) ( -243 -3616 192 ) ( -246 -3648 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -64 -3632 160 ) ( -64 -3616 160 ) ( -64 -3624 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 0 -3616 160 ) ( 0 -3632 160 ) ( 0 -3624 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -64 -3640 160 ) ( -32 -3640 160 ) ( -48 -3640 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4323 +{ +( -246 -3648 192 ) ( -243 -3616 192 ) ( -128 -3616 192 ) common/li_pv_v4a 0 -8 0 1 1 0 1 7000 +( -128 -3616 192 ) ( -243 -3616 192 ) ( -246 -3648 160 ) common/li_pv_v4a 0 -8 0 1 1 0 1 7000 +( -64 -3632 160 ) ( -64 -3616 160 ) ( -64 -3624 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( 0 -3616 160 ) ( 0 -3632 160 ) ( 0 -3624 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -64 -3624 160 ) ( -32 -3624 160 ) ( -48 -3624 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -32 -3640 160 ) ( -64 -3640 160 ) ( -48 -3640 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 4324 +{ +( 376 -3296 192 ) ( 333 -3296 192 ) ( 336 -3264 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 336 -3264 192 ) ( 336 -3264 160 ) ( 376 -3264 160 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 336 -3264 160 ) ( 333 -3296 192 ) ( 376 -3296 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -320 -3288 160 ) ( -320 -3272 160 ) ( -320 -3280 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -64 -3264 160 ) ( -64 -3280 160 ) ( -64 -3272 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4325 +{ +( -566 -3648 192 ) ( -563 -3616 192 ) ( -448 -3616 192 ) common/li_pv_v4a 0 -8 0 1 1 0 1 7000 +( -448 -3616 192 ) ( -563 -3616 192 ) ( -566 -3648 160 ) common/li_pv_v4a 0 -8 0 1 1 0 1 7000 +( -384 -3632 160 ) ( -384 -3616 160 ) ( -384 -3624 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -320 -3616 160 ) ( -320 -3632 160 ) ( -320 -3624 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -384 -3624 160 ) ( -352 -3624 160 ) ( -368 -3624 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +( -352 -3640 160 ) ( -384 -3640 160 ) ( -368 -3640 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 7000 +} +// brush 4326 +{ +( -566 -3648 192 ) ( -563 -3616 192 ) ( -448 -3616 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -576 -3648 208 ) ( -448 -3648 208 ) ( -448 -3648 152 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -448 -3616 192 ) ( -563 -3616 192 ) ( -566 -3648 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -384 -3632 160 ) ( -384 -3616 160 ) ( -384 -3624 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -320 -3616 160 ) ( -320 -3632 160 ) ( -320 -3624 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -384 -3640 160 ) ( -352 -3640 160 ) ( -368 -3640 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4327 +{ +( -566 -3648 192 ) ( -563 -3616 192 ) ( -448 -3616 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -448 -3616 192 ) ( -563 -3616 192 ) ( -566 -3648 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -384 -3632 160 ) ( -384 -3616 160 ) ( -384 -3624 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -320 -3616 160 ) ( -320 -3632 160 ) ( -320 -3624 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -352 -3624 160 ) ( -384 -3624 160 ) ( -368 -3624 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4328 +{ +( -630 -3648 192 ) ( -627 -3616 192 ) ( -384 -3616 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -576 -3648 208 ) ( -448 -3648 208 ) ( -448 -3648 152 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -384 -3616 192 ) ( -627 -3616 192 ) ( -630 -3648 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -630 -3648 160 ) ( -627 -3616 192 ) ( -630 -3648 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -384 -3616 160 ) ( -384 -3632 160 ) ( -384 -3624 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4329 +{ +( 56 -3296 192 ) ( 13 -3296 192 ) ( 16 -3264 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 16 -3264 160 ) ( 13 -3296 192 ) ( 56 -3296 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -384 -3280 160 ) ( -384 -3264 160 ) ( -384 -3272 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -320 -3264 160 ) ( -320 -3280 160 ) ( -320 -3272 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -360 -3288 168 ) ( -320 -3288 168 ) ( -340 -3288 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4330 +{ +( 56 -3296 192 ) ( 13 -3296 192 ) ( 16 -3264 192 ) common/li_pv_v4a 0 -8 0 1 1 0 0 0 +( 16 -3264 160 ) ( 13 -3296 192 ) ( 56 -3296 192 ) common/li_pv_v4a 0 -8 0 1 1 0 0 0 +( -384 -3280 160 ) ( -384 -3264 160 ) ( -384 -3272 192 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +( -320 -3264 160 ) ( -320 -3280 160 ) ( -320 -3272 192 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +( -384 -3272 160 ) ( -368 -3272 160 ) ( -376 -3272 192 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +( -320 -3288 168 ) ( -360 -3288 168 ) ( -340 -3288 192 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +} +// brush 4331 +{ +( 56 -3296 192 ) ( 13 -3296 192 ) ( 16 -3264 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 16 -3264 192 ) ( 16 -3264 160 ) ( 56 -3264 160 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 16 -3264 160 ) ( 13 -3296 192 ) ( 56 -3296 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -384 -3280 160 ) ( -384 -3264 160 ) ( -384 -3272 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -320 -3264 160 ) ( -320 -3280 160 ) ( -320 -3272 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -368 -3272 160 ) ( -384 -3272 160 ) ( -376 -3272 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4332 +{ +( -384 -3296 192 ) ( -555 -3296 192 ) ( -552 -3264 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 16 -3264 192 ) ( 16 -3264 160 ) ( 56 -3264 160 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -552 -3264 160 ) ( -555 -3296 192 ) ( -384 -3296 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -552 -3264 192 ) ( -555 -3296 192 ) ( -552 -3264 160 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -384 -3264 160 ) ( -384 -3280 160 ) ( -384 -3272 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4333 +{ +( -632 -3664 -32 ) ( -632 -3664 -16 ) ( -512 -3664 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -864 -3616 -32 ) ( -864 -3616 -16 ) ( -632 -3664 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1080 -3528 -32 ) ( -1080 -3528 -16 ) ( -864 -3616 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1280 -3392 -32 ) ( -1280 -3392 -16 ) ( -1080 -3528 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1440 -3232 -32 ) ( -1440 -3232 -16 ) ( -1280 -3392 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1576 -3032 -32 ) ( -1576 -3032 -16 ) ( -1440 -3232 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1664 -2816 -32 ) ( -1664 -2816 -16 ) ( -1576 -3032 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1712 -3664 -32 ) ( 656 -3664 -32 ) ( 656 -1296 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 656 -1296 -16 ) ( 656 -3664 -16 ) ( -1712 -3664 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -512 -3248 -16 ) ( -512 -3248 -32 ) ( -512 -3664 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -880 -2816 -16 ) ( -880 -2816 -32 ) ( -512 -3248 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -880 -2816 -32 ) ( -880 -2816 -16 ) ( -1664 -2816 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 4334 +{ +( -1312 -1856 -32 ) ( -1696 -1856 -32 ) ( -1696 -1936 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1696 -1936 -16 ) ( -1696 -1856 -16 ) ( -1312 -1856 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1586 -2816 -16 ) ( -1202 -2816 -16 ) ( -1202 -2816 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -880 -1944 -16 ) ( -880 -1864 -16 ) ( -880 -1864 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1344 -2240 -16 ) ( -1728 -2240 -16 ) ( -1728 -2240 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1712 -1856 -16 ) ( -1712 -1936 -16 ) ( -1712 -1936 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1664 -2816 -32 ) ( -1712 -2584 -32 ) ( -1688 -2700 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 4335 +{ +( -1712 -2368 192 ) ( -880 -2368 192 ) ( -880 -2240 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -880 -2368 208 ) ( -1712 -2368 208 ) ( -1712 -2240 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1272 -2816 208 ) ( -856 -2816 208 ) ( -856 -2816 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -880 -2368 192 ) ( -880 -2368 208 ) ( -880 -2240 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -888 -2240 208 ) ( -1304 -2240 208 ) ( -1304 -2240 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1712 -2368 208 ) ( -1712 -2368 192 ) ( -1712 -2240 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1664 -2816 192 ) ( -1712 -2584 192 ) ( -1688 -2700 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4336 +{ +( -632 -3664 192 ) ( -632 -3664 208 ) ( -512 -3664 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -864 -3616 192 ) ( -864 -3616 208 ) ( -632 -3664 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1080 -3528 192 ) ( -1080 -3528 208 ) ( -864 -3616 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1280 -3392 192 ) ( -1280 -3392 208 ) ( -1080 -3528 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1440 -3232 192 ) ( -1440 -3232 208 ) ( -1280 -3392 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1576 -3032 192 ) ( -1576 -3032 208 ) ( -1440 -3232 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1664 -2816 192 ) ( -1664 -2816 208 ) ( -1576 -3032 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1712 -3664 192 ) ( 656 -3664 192 ) ( 656 -1296 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( 656 -1296 208 ) ( 656 -3664 208 ) ( -1712 -3664 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -512 -3248 208 ) ( -512 -3248 192 ) ( -512 -3664 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -880 -2816 208 ) ( -880 -2816 192 ) ( -512 -3248 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -880 -2816 192 ) ( -880 -2816 208 ) ( -1664 -2816 208 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4337 +{ +( -632 -3648 192 ) ( -632 -3664 192 ) ( -864 -3616 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -859 -3600 -32 ) ( -859 -3600 192 ) ( -864 -3616 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -859 -3600 192 ) ( -859 -3600 -32 ) ( -630 -3648 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -630 -3648 192 ) ( -630 -3648 -32 ) ( -632 -3664 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -632 -3664 192 ) ( -632 -3664 -32 ) ( -864 -3616 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -904 -3664 -16 ) ( -864 -3664 -16 ) ( -884 -3600 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4338 +{ +( -857 -3603 192 ) ( -864 -3616 192 ) ( -1080 -3528 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1072 -3513 -32 ) ( -1072 -3513 192 ) ( -1080 -3528 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -859 -3600 -32 ) ( -859 -3600 192 ) ( -1072 -3513 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -859 -3600 192 ) ( -859 -3600 -32 ) ( -864 -3616 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -864 -3616 192 ) ( -864 -3616 -32 ) ( -1080 -3528 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -904 -3616 -16 ) ( -864 -3616 -16 ) ( -884 -3513 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4339 +{ +( -1072 -3512 192 ) ( -1080 -3528 192 ) ( -1280 -3392 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1269 -3379 -32 ) ( -1269 -3379 192 ) ( -1280 -3392 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1269 -3379 192 ) ( -1269 -3379 -32 ) ( -1072 -3513 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1073 -3515 192 ) ( -1073 -3515 -32 ) ( -1080 -3528 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1080 -3528 192 ) ( -1080 -3528 -32 ) ( -1280 -3392 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -904 -3528 -16 ) ( -864 -3528 -16 ) ( -884 -3379 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4340 +{ +( -1424 -3400 192 ) ( -1424 -3224 192 ) ( -1272 -3224 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1280 -3392 192 ) ( -1280 -3392 -32 ) ( -1440 -3232 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1269 -3379 192 ) ( -1269 -3379 -32 ) ( -1280 -3392 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1269 -3379 -32 ) ( -1269 -3379 192 ) ( -1427 -3221 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1427 -3221 -32 ) ( -1427 -3221 192 ) ( -1440 -3232 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -904 -3392 -16 ) ( -864 -3392 -16 ) ( -884 -3221 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4341 +{ +( -1576 -3032 192 ) ( -1560 -3024 192 ) ( -1427 -3221 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1427 -3221 192 ) ( -1427 -3221 -32 ) ( -1440 -3232 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1427 -3221 -32 ) ( -1427 -3221 192 ) ( -1561 -3024 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1563 -3025 -32 ) ( -1563 -3025 192 ) ( -1576 -3032 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1576 -3032 -32 ) ( -1576 -3032 192 ) ( -1440 -3232 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -904 -3232 -16 ) ( -864 -3232 -16 ) ( -884 -3024 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4342 +{ +( -1664 -2816 192 ) ( -1651 -2809 192 ) ( -1563 -3025 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1561 -3024 192 ) ( -1561 -3024 -32 ) ( -1576 -3032 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1648 -2811 192 ) ( -1648 -2811 -32 ) ( -1561 -3024 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1648 -2811 -32 ) ( -1648 -2811 192 ) ( -1664 -2816 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1664 -2816 -32 ) ( -1664 -2816 192 ) ( -1576 -3032 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -904 -3032 -16 ) ( -864 -3032 -16 ) ( -884 -2811 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4343 +{ +( -1712 -2584 192 ) ( -1696 -2584 192 ) ( -1648 -2808 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1648 -2811 192 ) ( -1648 -2811 -32 ) ( -1664 -2816 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1648 -2811 -32 ) ( -1648 -2811 192 ) ( -1696 -2582 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1696 -2582 -32 ) ( -1696 -2582 192 ) ( -1712 -2584 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1712 -2584 -32 ) ( -1712 -2584 192 ) ( -1664 -2816 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -904 -2816 -16 ) ( -864 -2816 -16 ) ( -884 -2582 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4344 +{ +( -1712 -2368 192 ) ( -1712 -2240 192 ) ( -1696 -2240 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1696 -2582 -32 ) ( -1696 -2582 192 ) ( -1696 -2240 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1696 -2240 200 ) ( -1712 -2240 200 ) ( -1712 -2240 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1712 -2584 192 ) ( -1712 -2584 -16 ) ( -1712 -2240 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1712 -2584 -16 ) ( -1712 -2584 192 ) ( -1696 -2582 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -904 -2464 -16 ) ( -864 -2464 -16 ) ( -884 -2240 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4345 +{ +( -1264 -3104 192 ) ( -1264 -2976 192 ) ( -896 -2976 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -864 -2992 32 ) ( -864 -2992 48 ) ( -880 -2918 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -864 -2992 192 ) ( -864 -2992 176 ) ( -880 -2996 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -880 -2918 32 ) ( -880 -2918 48 ) ( -896 -2920 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -2920 -16 ) ( -880 -2996 -16 ) ( -888 -2958 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -760 -2996 -16 ) ( -728 -2996 -16 ) ( -744 -2918 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4346 +{ +( -1232 -3260 192 ) ( -1232 -3132 192 ) ( -864 -3132 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -838 -3052 -32 ) ( -838 -3052 -16 ) ( -864 -2992 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -838 -3052 192 ) ( -838 -3052 176 ) ( -852 -3060 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -864 -2992 176 ) ( -864 -2992 192 ) ( -880 -2996 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -880 -2996 128 ) ( -852 -3060 128 ) ( -866 -3028 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -760 -3060 -16 ) ( -728 -3060 -16 ) ( -744 -2992 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4347 +{ +( -1176 -3392 192 ) ( -1176 -3264 192 ) ( -808 -3264 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -794 -3118 32 ) ( -794 -3118 48 ) ( -838 -3052 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -794 -3118 192 ) ( -794 -3118 176 ) ( -808 -3128 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -838 -3052 176 ) ( -838 -3052 192 ) ( -852 -3060 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -852 -3060 128 ) ( -808 -3128 128 ) ( -830 -3094 112 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -760 -3128 -16 ) ( -728 -3128 -16 ) ( -744 -3052 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4348 +{ +( -1020 -3096 192 ) ( -1020 -3464 192 ) ( -1148 -3464 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -794 -3118 -16 ) ( -794 -3118 -32 ) ( -750 -3162 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -794 -3118 176 ) ( -794 -3118 192 ) ( -808 -3128 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -750 -3162 192 ) ( -750 -3162 176 ) ( -760 -3176 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -760 -3176 112 ) ( -808 -3128 112 ) ( -784 -3152 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -760 -3176 -16 ) ( -728 -3176 -16 ) ( -744 -3118 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4349 +{ +( -896 -3176 192 ) ( -896 -3544 192 ) ( -1024 -3544 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -750 -3162 48 ) ( -750 -3162 32 ) ( -684 -3206 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -750 -3162 176 ) ( -750 -3162 192 ) ( -760 -3176 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -684 -3206 192 ) ( -684 -3206 176 ) ( -692 -3220 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -692 -3220 112 ) ( -760 -3176 112 ) ( -726 -3198 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -760 -3220 -16 ) ( -728 -3220 -16 ) ( -744 -3162 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4350 +{ +( -764 -3232 192 ) ( -764 -3600 192 ) ( -892 -3600 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -684 -3206 -16 ) ( -684 -3206 -32 ) ( -624 -3232 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -684 -3206 176 ) ( -684 -3206 192 ) ( -692 -3220 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -624 -3232 192 ) ( -624 -3232 176 ) ( -628 -3248 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -628 -3248 112 ) ( -692 -3220 112 ) ( -660 -3234 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -760 -3248 -16 ) ( -728 -3248 -16 ) ( -744 -3206 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4351 +{ +( -608 -3264 192 ) ( -608 -3632 192 ) ( -736 -3632 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -624 -3232 48 ) ( -624 -3232 32 ) ( -550 -3248 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -624 -3232 176 ) ( -624 -3232 192 ) ( -628 -3248 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -550 -3248 192 ) ( -550 -3248 176 ) ( -552 -3264 176 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -552 -3264 112 ) ( -628 -3248 112 ) ( -590 -3256 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -760 -3264 -16 ) ( -728 -3264 -16 ) ( -744 -3232 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4352 +{ +( -1617 -2802 192 ) ( -1648 -2811 160 ) ( -1533 -3008 192 ) bricks/c_tn_m1 54 12 292 1 1 0 0 0 +( -1648 -2811 208 ) ( -1648 -2811 160 ) ( -1617 -2802 192 ) bricks/c_tn_m1 54 12 292 1 1 0 0 0 +( -1533 -3008 192 ) ( -1648 -2811 160 ) ( -1648 -2811 208 ) bricks/c_tn_m1 54 12 292 1 1 0 0 0 +( -904 -3008 192 ) ( -920 -3008 192 ) ( -912 -2802 192 ) bricks/c_tn_m1 54 12 292 1 1 0 0 0 +} +// brush 4353 +{ +( -1648 -2811 160 ) ( -1561 -3024 160 ) ( -1533 -3008 192 ) bricks/c_tn_m1 54 12 292 1 1 0 0 0 +( -1561 -3024 208 ) ( -1561 -3024 160 ) ( -1648 -2811 160 ) bricks/c_tn_m1 54 12 292 1 1 0 0 0 +( -1533 -3008 192 ) ( -1561 -3024 160 ) ( -1561 -3024 208 ) bricks/c_tn_m1 54 12 292 1 1 0 0 0 +( -1648 -2811 208 ) ( -1648 -2811 160 ) ( -1533 -3008 192 ) bricks/c_tn_m1 54 12 292 1 1 0 0 0 +( -904 -3024 192 ) ( -920 -3024 192 ) ( -912 -2811 192 ) bricks/c_tn_m1 54 12 292 1 1 0 0 0 +} +// brush 4354 +{ +( -1427 -3221 208 ) ( -1427 -3221 160 ) ( -1402 -3201 192 ) bricks/c_tn_m1 -139 9 315 1 1 0 0 0 +( -1248 -3353 192 ) ( -1427 -3221 160 ) ( -1427 -3221 208 ) bricks/c_tn_m1 -139 9 315 1 1 0 0 0 +( -1402 -3201 192 ) ( -1427 -3221 160 ) ( -1248 -3353 192 ) bricks/c_tn_m1 -139 9 315 1 1 0 0 0 +( -904 -3353 192 ) ( -920 -3353 192 ) ( -912 -3201 192 ) bricks/c_tn_m1 -139 9 315 1 1 0 0 0 +} +// brush 4355 +{ +( -1269 -3379 208 ) ( -1269 -3379 160 ) ( -1427 -3221 160 ) bricks/c_tn_m1 -139 9 315 1 1 0 0 0 +( -1248 -3353 192 ) ( -1269 -3379 160 ) ( -1269 -3379 208 ) bricks/c_tn_m1 -139 9 315 1 1 0 0 0 +( -1427 -3221 208 ) ( -1427 -3221 160 ) ( -1248 -3353 192 ) bricks/c_tn_m1 -139 9 315 1 1 0 0 0 +( -1427 -3221 160 ) ( -1269 -3379 160 ) ( -1248 -3353 192 ) bricks/c_tn_m1 -139 9 315 1 1 0 0 0 +( -904 -3379 192 ) ( -920 -3379 192 ) ( -912 -3221 192 ) bricks/c_tn_m1 -139 9 315 1 1 0 0 0 +} +// brush 4356 +{ +( -1072 -3513 208 ) ( -1072 -3513 160 ) ( -1056 -3485 192 ) bricks/c_tn_m1 138 -11 338 1 1 0 0 0 +( -849 -3569 192 ) ( -1072 -3513 160 ) ( -1072 -3513 208 ) bricks/c_tn_m1 138 -11 338 1 1 0 0 0 +( -1056 -3485 192 ) ( -1072 -3513 160 ) ( -849 -3569 192 ) bricks/c_tn_m1 138 -11 338 1 1 0 0 0 +( -904 -3569 192 ) ( -920 -3569 192 ) ( -912 -3485 192 ) bricks/c_tn_m1 138 -11 338 1 1 0 0 0 +} +// brush 4357 +{ +( -859 -3600 208 ) ( -859 -3600 160 ) ( -1072 -3513 160 ) bricks/c_tn_m1 138 -11 338 1 1 0 0 0 +( -849 -3569 192 ) ( -859 -3600 160 ) ( -859 -3600 208 ) bricks/c_tn_m1 138 -11 338 1 1 0 0 0 +( -1072 -3513 208 ) ( -1072 -3513 160 ) ( -849 -3569 192 ) bricks/c_tn_m1 138 -11 338 1 1 0 0 0 +( -1072 -3513 160 ) ( -859 -3600 160 ) ( -849 -3569 192 ) bricks/c_tn_m1 138 -11 338 1 1 0 0 0 +( -904 -3600 192 ) ( -920 -3600 192 ) ( -912 -3513 192 ) bricks/c_tn_m1 138 -11 338 1 1 0 0 0 +} +// brush 4358 +{ +( -1272 -3224 -16 ) ( -1424 -3224 -16 ) ( -1424 -3400 -16 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1424 -3400 0 ) ( -1424 -3224 0 ) ( -1272 -3224 0 ) bricks/c_sr_mr5 0 9 315 1 1 0 0 0 +( -1269 -3379 192 ) ( -1269 -3379 -32 ) ( -1427 -3221 -32 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1258 -3365 192 ) ( -1258 -3365 -32 ) ( -1269 -3379 -32 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1258 -3365 -32 ) ( -1258 -3365 192 ) ( -1413 -3210 192 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1413 -3210 -32 ) ( -1413 -3210 192 ) ( -1427 -3221 192 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +} +// brush 4359 +{ +( -864 -3616 -16 ) ( -857 -3603 -16 ) ( -1073 -3515 -16 ) bricks/c_sr_mr5 -43 -9 -90 1 -1 0 0 0 +( -857 -3603 0 ) ( -864 -3616 0 ) ( -1080 -3528 0 ) bricks/c_sr_mr5 0 -12 338 1 1 0 0 0 +( -1072 -3513 16 ) ( -1072 -3513 -208 ) ( -1064 -3498 -208 ) bricks/c_sr_mr5 -43 -27 -180 1 1 0 0 0 +( -1064 -3498 16 ) ( -1064 -3498 -208 ) ( -854 -3584 -208 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -859 -3600 16 ) ( -859 -3600 -208 ) ( -864 -3616 -208 ) bricks/c_sr_mr5 -43 -27 -180 1 1 0 0 0 +( -1072 -3513 -208 ) ( -1072 -3513 16 ) ( -859 -3600 16 ) bricks/c_sr_mr5 25 -28 -180 1 1 0 0 0 +} +// brush 4360 +{ +( -1664 -2816 0 ) ( -1651 -2809 0 ) ( -1563 -3025 0 ) bricks/c_sr_mr5 0 11 292 1 1 0 0 0 +( -1651 -2809 -16 ) ( -1664 -2816 -16 ) ( -1576 -3032 -16 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1561 -3024 -32 ) ( -1561 -3024 192 ) ( -1546 -3016 192 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1546 -3016 -32 ) ( -1546 -3016 192 ) ( -1632 -2806 192 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1648 -2811 -32 ) ( -1648 -2811 192 ) ( -1664 -2816 192 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1561 -3024 192 ) ( -1561 -3024 -32 ) ( -1648 -2811 -32 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 4361 +{ +( -960 -2040 192 ) ( -960 -1976 192 ) ( -1264 -1976 192 ) bricks/c_sr_mb1a -16 128 0 1 1 0 0 0 +( -928 -2048 208 ) ( -1264 -2048 208 ) ( -1264 -1984 216 ) bricks/c_sr_mb1 112 -64 0 1 1 0 0 0 +( -1264 -2048 208 ) ( -928 -2048 208 ) ( -928 -2048 192 ) bricks/c_sr_mb1 112 0 0 1 1 0 0 0 +( -928 -1984 208 ) ( -928 -2048 208 ) ( -928 -2048 256 ) bricks/c_sr_mb1 176 0 0 1 1 0 0 0 +( -960 -1984 256 ) ( -1264 -1984 256 ) ( -1264 -1984 128 ) bricks/c_sr_mb1 112 0 0 1 1 0 0 0 +( -1264 -2048 208 ) ( -1264 -1984 208 ) ( -1264 -1984 256 ) bricks/c_sr_mb1 176 0 0 1 1 0 0 0 +} +// brush 4362 +{ +( -1312 -2048 120 ) ( -1296 -2048 120 ) ( -1296 -2048 0 ) bricks/c_sr_mb2 -17 0 0 1 1 0 0 0 +( -1280 -2048 128 ) ( -1280 -1984 128 ) ( -1280 -1984 -32 ) bricks/c_sr_mb2 47 0 0 1 1 0 0 0 +( -1312 -1984 128 ) ( -1312 -2048 128 ) ( -1312 -2048 -32 ) bricks/c_sr_mb2 47 0 0 1 1 0 0 0 +( -1312 -2048 64 ) ( -1312 -2028 64 ) ( -1296 -2038 64 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +( -1312 -1984 64 ) ( -1312 -2048 56 ) ( -1280 -2016 60 ) bricks/c_sr_mb2 -17 -64 0 1 1 0 0 0 +} +// brush 4363 +{ +( -1312 -1984 24 ) ( -1328 -1984 24 ) ( -1328 -2048 16 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +( -1328 -2048 120 ) ( -1312 -2048 120 ) ( -1312 -2048 0 ) bricks/c_sr_mb1b 0 16 0 1 0.800000 0 0 0 +( -1312 -2048 128 ) ( -1312 -1984 128 ) ( -1312 -1984 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1328 -1984 24 ) ( -1312 -1984 24 ) ( -1312 -1984 64 ) bricks/c_sr_mb1b 0 34 0 1 0.700000 0 0 0 +( -1328 -1984 128 ) ( -1328 -2048 128 ) ( -1328 -2048 -32 ) bricks/c_sr_mb1b 0 16 0 1 0.800000 0 0 0 +( -1328 -2048 64 ) ( -1328 -2028 64 ) ( -1312 -2038 64 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +} +// brush 4364 +{ +( -1264 -1984 0 ) ( -1312 -1984 0 ) ( -1312 -2048 0 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +( -1280 -2048 120 ) ( -1264 -2048 120 ) ( -1264 -2048 0 ) bricks/c_sr_mb1b 176 0 0 1 1 0 0 0 +( -1264 -2048 128 ) ( -1264 -1984 128 ) ( -1264 -1984 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1264 -1984 128 ) ( -1312 -1984 128 ) ( -1312 -1984 -32 ) bricks/c_sr_mb1b 176 0 0 1 1 0 0 0 +( -1280 -1984 128 ) ( -1280 -2048 128 ) ( -1280 -2048 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1280 -2048 64 ) ( -1280 -2028 64 ) ( -1264 -2038 64 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +} +// brush 4365 +{ +( -1264 -1664 0 ) ( -1312 -1664 0 ) ( -1312 -1728 0 ) bricks/c_sr_mb1b 0 0 0 1 1 0 0 0 +( -1280 -1728 120 ) ( -1264 -1728 120 ) ( -1264 -1728 0 ) bricks/c_sr_mb1b 0 0 0 1 1 0 0 0 +( -1264 -1728 128 ) ( -1264 -1664 128 ) ( -1264 -1664 -32 ) bricks/c_sr_mb1b 0 0 0 1 1 0 0 0 +( -1264 -1664 128 ) ( -1312 -1664 128 ) ( -1312 -1664 -32 ) bricks/c_sr_mb1b 0 0 0 1 1 0 0 0 +( -1280 -1664 128 ) ( -1280 -1728 128 ) ( -1280 -1728 -32 ) bricks/c_sr_mb1b 0 0 0 1 1 0 0 0 +( -1280 -1728 64 ) ( -1280 -1708 64 ) ( -1264 -1718 64 ) bricks/c_sr_mb1b 0 0 0 1 1 0 0 0 +} +// brush 4366 +{ +( -960 -1720 192 ) ( -960 -1656 192 ) ( -1264 -1656 192 ) bricks/c_sr_mb1a -16 64 0 1 1 0 0 0 +( -1264 -1728 256 ) ( -1264 -1664 256 ) ( -960 -1664 256 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1264 -1728 256 ) ( -960 -1728 256 ) ( -960 -1728 128 ) bricks/c_sr_mb1 112 0 0 1 1 0 0 0 +( -928 -1664 208 ) ( -928 -1728 208 ) ( -928 -1728 256 ) bricks/c_sr_mb1 176 0 0 1 1 0 0 0 +( -960 -1664 256 ) ( -1264 -1664 256 ) ( -1264 -1664 128 ) bricks/c_sr_mb1 112 0 0 1 1 0 0 0 +( -1264 -1728 208 ) ( -1264 -1664 208 ) ( -1264 -1664 256 ) bricks/c_sr_mb1 176 0 0 1 1 0 0 0 +} +// brush 4367 +{ +( -1696 -792 320 ) ( -1664 -789 320 ) ( -1664 -1024 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1664 -1024 320 ) ( -1664 -789 320 ) ( -1696 -792 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1688 -800 288 ) ( -1680 -800 288 ) ( -1684 -800 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1672 -864 288 ) ( -1680 -864 288 ) ( -1676 -864 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1672 -808 296 ) ( -1672 -800 296 ) ( -1672 -804 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4368 +{ +( -1696 -792 320 ) ( -1664 -789 320 ) ( -1664 -1024 320 ) bricks/c_tn_m1 0 0 90 1 -1 0 0 0 +( -1664 -1024 320 ) ( -1664 -789 320 ) ( -1696 -792 288 ) common/li_pv_v4a 31 8 90 1 1 0 1 9000 +( -1688 -800 288 ) ( -1680 -800 288 ) ( -1684 -800 320 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +( -1672 -864 288 ) ( -1680 -864 288 ) ( -1676 -864 320 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +( -1688 -808 288 ) ( -1688 -800 288 ) ( -1688 -804 320 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +( -1672 -800 296 ) ( -1672 -808 296 ) ( -1672 -804 320 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +} +// brush 4369 +{ +( -1696 -792 320 ) ( -1664 -789 320 ) ( -1664 -1024 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -648 288 ) ( -1696 -648 320 ) ( -1696 -904 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1664 -1024 320 ) ( -1664 -789 320 ) ( -1696 -792 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1688 -800 288 ) ( -1680 -800 288 ) ( -1684 -800 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1672 -864 288 ) ( -1680 -864 288 ) ( -1676 -864 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1688 -800 288 ) ( -1688 -808 288 ) ( -1688 -804 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4370 +{ +( -1696 -792 320 ) ( -1664 -789 320 ) ( -1664 -1024 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -648 288 ) ( -1696 -648 320 ) ( -1696 -904 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1664 -1024 320 ) ( -1664 -789 320 ) ( -1696 -792 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1680 -1024 288 ) ( -1688 -1024 288 ) ( -1684 -1024 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1680 -864 288 ) ( -1672 -864 288 ) ( -1676 -864 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4371 +{ +( -1696 -792 320 ) ( -1664 -789 320 ) ( -1664 -1024 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -648 288 ) ( -1696 -648 320 ) ( -1696 -904 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1664 -1024 320 ) ( -1664 -789 320 ) ( -1696 -792 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -792 288 ) ( -1664 -789 320 ) ( -1696 -792 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1680 -800 288 ) ( -1688 -800 288 ) ( -1684 -800 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4372 +{ +( -1664 -832 320 ) ( -1664 -912 320 ) ( -1696 -904 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -904 288 ) ( -1664 -912 320 ) ( -1664 -832 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1688 -1024 288 ) ( -1680 -1024 288 ) ( -1684 -1024 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1680 -1088 288 ) ( -1688 -1088 288 ) ( -1684 -1088 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1672 -1032 296 ) ( -1672 -1024 296 ) ( -1672 -1028 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4373 +{ +( -1664 -832 320 ) ( -1664 -912 320 ) ( -1696 -904 320 ) bricks/c_tn_m1 0 0 90 1 -1 0 0 0 +( -1696 -904 288 ) ( -1664 -912 320 ) ( -1664 -832 320 ) common/li_pv_v4a 63 8 90 1 1 0 1 9000 +( -1688 -1024 288 ) ( -1680 -1024 288 ) ( -1684 -1024 320 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +( -1680 -1088 288 ) ( -1688 -1088 288 ) ( -1684 -1088 320 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +( -1688 -1032 288 ) ( -1688 -1024 288 ) ( -1688 -1028 320 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +( -1672 -1024 296 ) ( -1672 -1032 296 ) ( -1672 -1028 320 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +} +// brush 4374 +{ +( -1664 -832 320 ) ( -1664 -912 320 ) ( -1696 -904 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -648 288 ) ( -1696 -648 320 ) ( -1696 -904 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -904 288 ) ( -1664 -912 320 ) ( -1664 -832 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1688 -1024 288 ) ( -1680 -1024 288 ) ( -1684 -1024 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1680 -1088 288 ) ( -1688 -1088 288 ) ( -1684 -1088 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1688 -1024 288 ) ( -1688 -1032 288 ) ( -1688 -1028 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4375 +{ +( -1664 -832 320 ) ( -1664 -912 320 ) ( -1696 -904 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -648 288 ) ( -1696 -648 320 ) ( -1696 -904 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -904 288 ) ( -1664 -912 320 ) ( -1664 -832 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1692 -1344 320 ) ( -1680 -1344 288 ) ( -1704 -1344 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1688 -1088 288 ) ( -1680 -1088 288 ) ( -1684 -1088 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4376 +{ +( -1664 -1472 312 ) ( -1696 -1472 312 ) ( -1696 -1344 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1472 280 ) ( -1664 -1472 312 ) ( -1664 -1344 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1344 288 ) ( -1672 -1344 288 ) ( -1684 -1344 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1680 -1408 280 ) ( -1688 -1408 280 ) ( -1684 -1408 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1672 -1352 292 ) ( -1672 -1344 292 ) ( -1672 -1348 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4377 +{ +( -1664 -1472 312 ) ( -1696 -1472 312 ) ( -1696 -1344 320 ) bricks/c_tn_m1 0 0 90 1 -1 0 0 0 +( -1696 -1472 280 ) ( -1664 -1472 312 ) ( -1664 -1344 320 ) common/li_pv_v4a 63 8 90 1 1 0 1 9000 +( -1696 -1344 288 ) ( -1672 -1344 288 ) ( -1684 -1344 320 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +( -1680 -1408 280 ) ( -1688 -1408 280 ) ( -1684 -1408 320 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +( -1688 -1352 284 ) ( -1688 -1344 284 ) ( -1688 -1348 320 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +( -1672 -1344 292 ) ( -1672 -1352 292 ) ( -1672 -1348 320 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +} +// brush 4378 +{ +( -1664 -1472 312 ) ( -1696 -1472 312 ) ( -1696 -1344 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1472 312 ) ( -1696 -1472 280 ) ( -1696 -1344 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1472 280 ) ( -1664 -1472 312 ) ( -1664 -1344 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1344 288 ) ( -1672 -1344 288 ) ( -1684 -1344 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1680 -1408 280 ) ( -1688 -1408 280 ) ( -1684 -1408 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1688 -1344 284 ) ( -1688 -1352 284 ) ( -1688 -1348 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4379 +{ +( -1664 -1472 312 ) ( -1696 -1472 312 ) ( -1696 -1344 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1472 312 ) ( -1696 -1472 280 ) ( -1696 -1344 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1472 280 ) ( -1664 -1472 312 ) ( -1664 -1344 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1692 -1472 312 ) ( -1680 -1472 280 ) ( -1704 -1472 280 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1688 -1408 280 ) ( -1680 -1408 280 ) ( -1684 -1408 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4380 +{ +( -1664 -1728 272 ) ( -1696 -1728 272 ) ( -1696 -1600 296 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1728 240 ) ( -1664 -1728 272 ) ( -1664 -1600 296 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1692 -1728 272 ) ( -1680 -1728 240 ) ( -1704 -1728 240 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1692 -1664 240 ) ( -1684 -1664 240 ) ( -1688 -1664 296 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1672 -1668 248 ) ( -1672 -1664 248 ) ( -1672 -1666 284 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4381 +{ +( -1664 -1728 272 ) ( -1696 -1728 272 ) ( -1696 -1600 296 ) bricks/c_tn_m1 0 0 90 1 -1 0 0 0 +( -1696 -1728 240 ) ( -1664 -1728 272 ) ( -1664 -1600 296 ) common/li_pv_v4a 63 8 90 1 1 0 1 9000 +( -1692 -1728 272 ) ( -1680 -1728 240 ) ( -1704 -1728 240 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +( -1692 -1664 240 ) ( -1684 -1664 240 ) ( -1688 -1664 296 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +( -1688 -1672 240 ) ( -1688 -1664 240 ) ( -1688 -1668 284 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +( -1672 -1664 248 ) ( -1672 -1668 248 ) ( -1672 -1666 284 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +} +// brush 4382 +{ +( -1664 -1728 272 ) ( -1696 -1728 272 ) ( -1696 -1600 296 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1728 272 ) ( -1696 -1728 240 ) ( -1696 -1600 264 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1728 240 ) ( -1664 -1728 272 ) ( -1664 -1600 296 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1692 -1728 272 ) ( -1680 -1728 240 ) ( -1704 -1728 240 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1692 -1664 240 ) ( -1684 -1664 240 ) ( -1688 -1664 296 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1688 -1664 240 ) ( -1688 -1672 240 ) ( -1688 -1668 284 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4383 +{ +( -1664 -1728 272 ) ( -1696 -1728 272 ) ( -1696 -1600 296 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1728 272 ) ( -1696 -1728 240 ) ( -1696 -1600 264 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1728 240 ) ( -1664 -1728 272 ) ( -1664 -1600 296 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1600 264 ) ( -1672 -1600 264 ) ( -1684 -1600 296 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1684 -1664 240 ) ( -1692 -1664 240 ) ( -1688 -1664 296 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4384 +{ +( -1664 -2112 200 ) ( -1696 -2112 200 ) ( -1696 -1984 216 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -2112 168 ) ( -1664 -2112 200 ) ( -1664 -1984 216 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1984 184 ) ( -1672 -1984 184 ) ( -1684 -1984 216 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1688 -2048 168 ) ( -1696 -2048 168 ) ( -1692 -2048 216 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1672 -1988 184 ) ( -1672 -1984 184 ) ( -1672 -1986 216 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4385 +{ +( -1664 -2112 200 ) ( -1696 -2112 200 ) ( -1696 -1984 216 ) bricks/c_tn_m1 0 0 90 1 -1 0 0 0 +( -1696 -2112 168 ) ( -1664 -2112 200 ) ( -1664 -1984 216 ) common/li_pv_v4a 63 8 90 1 1 0 1 9000 +( -1696 -1984 184 ) ( -1672 -1984 184 ) ( -1684 -1984 216 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +( -1688 -2048 168 ) ( -1696 -2048 168 ) ( -1692 -2048 216 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +( -1688 -1996 176 ) ( -1688 -1984 176 ) ( -1688 -1990 216 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +( -1672 -1984 184 ) ( -1672 -1988 184 ) ( -1672 -1986 216 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +} +// brush 4386 +{ +( -1664 -2112 200 ) ( -1696 -2112 200 ) ( -1696 -1984 216 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -2112 200 ) ( -1696 -2112 168 ) ( -1696 -1984 184 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -2112 168 ) ( -1664 -2112 200 ) ( -1664 -1984 216 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1984 184 ) ( -1672 -1984 184 ) ( -1684 -1984 216 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1688 -2048 168 ) ( -1696 -2048 168 ) ( -1692 -2048 216 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1688 -1984 176 ) ( -1688 -1996 176 ) ( -1688 -1990 216 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4387 +{ +( -1664 -2112 200 ) ( -1696 -2112 200 ) ( -1696 -1984 216 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -2112 200 ) ( -1696 -2112 168 ) ( -1696 -1984 184 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -2112 168 ) ( -1664 -2112 200 ) ( -1664 -1984 216 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1692 -2112 200 ) ( -1680 -2112 168 ) ( -1704 -2112 168 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -2048 168 ) ( -1688 -2048 168 ) ( -1692 -2048 216 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4388 +{ +( -1664 -2368 192 ) ( -1696 -2368 192 ) ( -1696 -2240 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -2368 160 ) ( -1664 -2368 192 ) ( -1664 -2240 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1688 -2304 160 ) ( -1680 -2304 160 ) ( -1684 -2304 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1680 -2368 160 ) ( -1688 -2368 160 ) ( -1684 -2368 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1672 -2312 168 ) ( -1672 -2304 168 ) ( -1672 -2308 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4389 +{ +( -1664 -2368 192 ) ( -1696 -2368 192 ) ( -1696 -2240 192 ) bricks/c_tn_m1 0 0 90 1 -1 0 0 0 +( -1696 -2368 160 ) ( -1664 -2368 192 ) ( -1664 -2240 192 ) common/li_pv_v4a 63 7 90 1 1 0 1 9000 +( -1688 -2304 160 ) ( -1680 -2304 160 ) ( -1684 -2304 192 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +( -1680 -2368 160 ) ( -1688 -2368 160 ) ( -1684 -2368 192 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +( -1688 -2312 160 ) ( -1688 -2304 160 ) ( -1688 -2308 192 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +( -1672 -2304 168 ) ( -1672 -2312 168 ) ( -1672 -2308 192 ) bricks/c_tn_m1 -192 0 90 1 -1 0 0 0 +} +// brush 4390 +{ +( -1664 -2368 192 ) ( -1696 -2368 192 ) ( -1696 -2240 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -2368 192 ) ( -1696 -2368 160 ) ( -1696 -2240 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -2368 160 ) ( -1664 -2368 192 ) ( -1664 -2240 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1688 -2304 160 ) ( -1680 -2304 160 ) ( -1684 -2304 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1680 -2368 160 ) ( -1688 -2368 160 ) ( -1684 -2368 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1688 -2304 160 ) ( -1688 -2312 160 ) ( -1688 -2308 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4391 +{ +( -1664 -2368 192 ) ( -1664 -2579 192 ) ( -1696 -2582 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -2384 192 ) ( -1696 -2384 160 ) ( -1696 -2256 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -2582 160 ) ( -1664 -2579 192 ) ( -1664 -2368 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -2582 192 ) ( -1664 -2579 192 ) ( -1696 -2582 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1688 -2368 160 ) ( -1680 -2368 160 ) ( -1684 -2368 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4392 +{ +( -1664 -2368 192 ) ( -1696 -2368 192 ) ( -1696 -2240 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -2368 192 ) ( -1696 -2368 160 ) ( -1696 -2240 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -2368 160 ) ( -1664 -2368 192 ) ( -1664 -2240 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -2240 160 ) ( -1672 -2240 160 ) ( -1684 -2240 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1680 -2304 160 ) ( -1688 -2304 160 ) ( -1684 -2304 192 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4393 +{ +( -896 -2920 192 ) ( -928 -2923 192 ) ( -928 -2688 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -896 -4288 160 ) ( -896 -4288 192 ) ( -896 -4160 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -2688 192 ) ( -928 -2923 192 ) ( -896 -2920 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -2688 160 ) ( -912 -2688 160 ) ( -920 -2688 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -896 -2920 160 ) ( -928 -2923 192 ) ( -896 -2920 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4394 +{ +( -896 -4288 192 ) ( -928 -4288 192 ) ( -928 -4160 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -896 -4288 160 ) ( -896 -4288 192 ) ( -896 -4160 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -4288 192 ) ( -896 -4288 160 ) ( -896 -4160 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -2624 160 ) ( -920 -2624 160 ) ( -924 -2624 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -912 -2688 160 ) ( -928 -2688 160 ) ( -920 -2688 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -904 -2632 160 ) ( -904 -2624 160 ) ( -904 -2628 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4395 +{ +( -896 -4288 192 ) ( -928 -4288 192 ) ( -928 -4160 192 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -928 -4288 192 ) ( -896 -4288 160 ) ( -896 -4160 160 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -928 -2624 160 ) ( -920 -2624 160 ) ( -924 -2624 192 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -912 -2688 160 ) ( -928 -2688 160 ) ( -920 -2688 192 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -920 -2632 160 ) ( -920 -2624 160 ) ( -920 -2628 192 ) common/li_pv_v4a 0 9 90 1 1 0 1 8000 +( -904 -2624 160 ) ( -904 -2632 160 ) ( -904 -2628 192 ) common/li_pv_v4a 0 9 90 1 1 0 1 8000 +} +// brush 4396 +{ +( -896 -4288 192 ) ( -928 -4288 192 ) ( -928 -4160 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -4288 192 ) ( -896 -4288 160 ) ( -896 -4160 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -2624 160 ) ( -920 -2624 160 ) ( -924 -2624 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -912 -2688 160 ) ( -928 -2688 160 ) ( -920 -2688 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -920 -2624 160 ) ( -920 -2632 160 ) ( -920 -2628 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4397 +{ +( -896 -3968 192 ) ( -928 -3968 192 ) ( -928 -3840 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -3968 192 ) ( -896 -3968 160 ) ( -896 -3840 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -2304 160 ) ( -920 -2304 160 ) ( -924 -2304 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -912 -2368 160 ) ( -928 -2368 160 ) ( -920 -2368 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -920 -2304 160 ) ( -920 -2312 160 ) ( -920 -2308 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4398 +{ +( -896 -3968 192 ) ( -928 -3968 192 ) ( -928 -3840 192 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -928 -3968 192 ) ( -896 -3968 160 ) ( -896 -3840 160 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -928 -2304 160 ) ( -920 -2304 160 ) ( -924 -2304 192 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -912 -2368 160 ) ( -928 -2368 160 ) ( -920 -2368 192 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -920 -2312 160 ) ( -920 -2304 160 ) ( -920 -2308 192 ) common/li_pv_v4a 0 9 90 1 1 0 1 8000 +( -904 -2304 160 ) ( -904 -2312 160 ) ( -904 -2308 192 ) common/li_pv_v4a 0 9 90 1 1 0 1 8000 +} +// brush 4399 +{ +( -896 -3968 192 ) ( -928 -3968 192 ) ( -928 -3840 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -896 -3968 160 ) ( -896 -3968 192 ) ( -896 -3840 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -3968 192 ) ( -896 -3968 160 ) ( -896 -3840 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -2304 160 ) ( -920 -2304 160 ) ( -924 -2304 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -912 -2368 160 ) ( -928 -2368 160 ) ( -920 -2368 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -904 -2312 160 ) ( -904 -2304 160 ) ( -904 -2308 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4400 +{ +( -896 -3968 192 ) ( -928 -3968 192 ) ( -928 -3840 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -896 -3968 160 ) ( -896 -3968 192 ) ( -896 -3840 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -3968 192 ) ( -896 -3968 160 ) ( -896 -3840 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -2368 160 ) ( -912 -2368 160 ) ( -920 -2368 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -920 -2624 160 ) ( -928 -2624 160 ) ( -924 -2624 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4401 +{ +( -896 -3648 192 ) ( -928 -3648 192 ) ( -928 -3520 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -896 -3648 160 ) ( -896 -3648 192 ) ( -896 -3520 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -3648 192 ) ( -896 -3648 160 ) ( -896 -3520 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -2048 160 ) ( -912 -2048 160 ) ( -920 -2048 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -920 -2304 160 ) ( -928 -2304 160 ) ( -924 -2304 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4402 +{ +( -896 -3648 192 ) ( -928 -3648 192 ) ( -928 -3520 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -896 -3648 160 ) ( -896 -3648 192 ) ( -896 -3520 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -3648 192 ) ( -896 -3648 160 ) ( -896 -3520 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -1984 160 ) ( -920 -1984 160 ) ( -924 -1984 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -912 -2048 160 ) ( -928 -2048 160 ) ( -920 -2048 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -904 -1992 160 ) ( -904 -1984 160 ) ( -904 -1988 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4403 +{ +( -896 -3648 192 ) ( -928 -3648 192 ) ( -928 -3520 192 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -928 -3648 192 ) ( -896 -3648 160 ) ( -896 -3520 160 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -928 -1984 160 ) ( -920 -1984 160 ) ( -924 -1984 192 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -912 -2048 160 ) ( -928 -2048 160 ) ( -920 -2048 192 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -920 -1992 160 ) ( -920 -1984 160 ) ( -920 -1988 192 ) common/li_pv_v4a 0 9 90 1 1 0 1 8000 +( -904 -1984 160 ) ( -904 -1992 160 ) ( -904 -1988 192 ) common/li_pv_v4a 0 9 90 1 1 0 1 8000 +} +// brush 4404 +{ +( -896 -3648 192 ) ( -928 -3648 192 ) ( -928 -3520 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -3648 192 ) ( -896 -3648 160 ) ( -896 -3520 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -1984 160 ) ( -920 -1984 160 ) ( -924 -1984 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -912 -2048 160 ) ( -928 -2048 160 ) ( -920 -2048 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -920 -1984 160 ) ( -920 -1992 160 ) ( -920 -1988 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4405 +{ +( -896 -3328 192 ) ( -928 -3328 192 ) ( -928 -3200 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -3328 192 ) ( -896 -3328 160 ) ( -896 -3200 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -1664 160 ) ( -920 -1664 160 ) ( -924 -1664 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -912 -1728 160 ) ( -928 -1728 160 ) ( -920 -1728 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -920 -1664 160 ) ( -920 -1672 160 ) ( -920 -1668 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4406 +{ +( -896 -3328 192 ) ( -928 -3328 192 ) ( -928 -3200 192 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -928 -3328 192 ) ( -896 -3328 160 ) ( -896 -3200 160 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -928 -1664 160 ) ( -920 -1664 160 ) ( -924 -1664 192 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -912 -1728 160 ) ( -928 -1728 160 ) ( -920 -1728 192 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -920 -1672 160 ) ( -920 -1664 160 ) ( -920 -1668 192 ) common/li_pv_v4a 0 9 90 1 1 0 1 8000 +( -904 -1664 160 ) ( -904 -1672 160 ) ( -904 -1668 192 ) common/li_pv_v4a 0 9 90 1 1 0 1 8000 +} +// brush 4407 +{ +( -896 -3328 192 ) ( -928 -3328 192 ) ( -928 -3200 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -896 -3328 160 ) ( -896 -3328 192 ) ( -896 -3200 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -3328 192 ) ( -896 -3328 160 ) ( -896 -3200 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -1664 160 ) ( -920 -1664 160 ) ( -924 -1664 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -912 -1728 160 ) ( -928 -1728 160 ) ( -920 -1728 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -904 -1672 160 ) ( -904 -1664 160 ) ( -904 -1668 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4408 +{ +( -896 -3328 192 ) ( -928 -3328 192 ) ( -928 -3200 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -896 -3328 160 ) ( -896 -3328 192 ) ( -896 -3200 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -3328 192 ) ( -896 -3328 160 ) ( -896 -3200 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -1728 160 ) ( -912 -1728 160 ) ( -920 -1728 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -920 -1984 160 ) ( -928 -1984 160 ) ( -924 -1984 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4409 +{ +( -896 -3008 192 ) ( -928 -3008 192 ) ( -928 -2880 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -896 -3008 160 ) ( -896 -3008 192 ) ( -896 -2880 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -3008 192 ) ( -896 -3008 160 ) ( -896 -2880 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -1408 160 ) ( -912 -1408 160 ) ( -920 -1408 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -920 -1664 160 ) ( -928 -1664 160 ) ( -924 -1664 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4410 +{ +( -896 -3008 192 ) ( -928 -3008 192 ) ( -928 -2880 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -896 -3008 160 ) ( -896 -3008 192 ) ( -896 -2880 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -3008 192 ) ( -896 -3008 160 ) ( -896 -2880 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -1344 160 ) ( -920 -1344 160 ) ( -924 -1344 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -912 -1408 160 ) ( -928 -1408 160 ) ( -920 -1408 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -904 -1352 160 ) ( -904 -1344 160 ) ( -904 -1348 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4411 +{ +( -896 -3008 192 ) ( -928 -3008 192 ) ( -928 -2880 192 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -928 -3008 192 ) ( -896 -3008 160 ) ( -896 -2880 160 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -928 -1344 160 ) ( -920 -1344 160 ) ( -924 -1344 192 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -912 -1408 160 ) ( -928 -1408 160 ) ( -920 -1408 192 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -920 -1352 160 ) ( -920 -1344 160 ) ( -920 -1348 192 ) common/li_pv_v4a 0 9 90 1 1 0 1 8000 +( -904 -1344 160 ) ( -904 -1352 160 ) ( -904 -1348 192 ) common/li_pv_v4a 0 9 90 1 1 0 1 8000 +} +// brush 4412 +{ +( -896 -3008 192 ) ( -928 -3008 192 ) ( -928 -2880 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -3008 192 ) ( -896 -3008 160 ) ( -896 -2880 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -1344 160 ) ( -920 -1344 160 ) ( -924 -1344 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -912 -1408 160 ) ( -928 -1408 160 ) ( -920 -1408 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -920 -1344 160 ) ( -920 -1352 160 ) ( -920 -1348 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4413 +{ +( -896 -2688 192 ) ( -928 -2688 192 ) ( -928 -2560 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -2688 192 ) ( -896 -2688 160 ) ( -896 -2560 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -1024 160 ) ( -920 -1024 160 ) ( -924 -1024 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -912 -1088 160 ) ( -928 -1088 160 ) ( -920 -1088 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -920 -1024 160 ) ( -920 -1032 160 ) ( -920 -1028 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4414 +{ +( -896 -2688 192 ) ( -928 -2688 192 ) ( -928 -2560 192 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -928 -2688 192 ) ( -896 -2688 160 ) ( -896 -2560 160 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -928 -1024 160 ) ( -920 -1024 160 ) ( -924 -1024 192 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -912 -1088 160 ) ( -928 -1088 160 ) ( -920 -1088 192 ) common/li_pv_v4a 63 9 90 1 1 0 1 8000 +( -920 -1032 160 ) ( -920 -1024 160 ) ( -920 -1028 192 ) common/li_pv_v4a 0 9 90 1 1 0 1 8000 +( -904 -1024 160 ) ( -904 -1032 160 ) ( -904 -1028 192 ) common/li_pv_v4a 0 9 90 1 1 0 1 8000 +} +// brush 4415 +{ +( -896 -2688 192 ) ( -928 -2688 192 ) ( -928 -2560 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -896 -2688 160 ) ( -896 -2688 192 ) ( -896 -2560 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -2688 192 ) ( -896 -2688 160 ) ( -896 -2560 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -1024 160 ) ( -920 -1024 160 ) ( -924 -1024 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -912 -1088 160 ) ( -928 -1088 160 ) ( -920 -1088 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -904 -1032 160 ) ( -904 -1024 160 ) ( -904 -1028 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4416 +{ +( -896 -2688 192 ) ( -928 -2688 192 ) ( -928 -2560 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -896 -2688 160 ) ( -896 -2688 192 ) ( -896 -2560 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -2688 192 ) ( -896 -2688 160 ) ( -896 -2560 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -928 -1088 160 ) ( -912 -1088 160 ) ( -920 -1088 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -920 -1344 160 ) ( -928 -1344 160 ) ( -924 -1344 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4417 +{ +( -928 -1024 192 ) ( -928 -789 192 ) ( -896 -792 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -896 -2368 160 ) ( -896 -2368 192 ) ( -896 -2240 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -896 -792 160 ) ( -928 -789 192 ) ( -928 -1024 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -896 -792 192 ) ( -928 -789 192 ) ( -896 -792 160 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -920 -1024 160 ) ( -928 -1024 160 ) ( -924 -1024 192 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4418 +{ +( -880 -1600 296 ) ( -896 -1600 296 ) ( -896 -1472 312 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -1600 296 ) ( -880 -1600 296 ) ( -880 -1600 72 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -880 -1600 72 ) ( -880 -1600 296 ) ( -880 -1472 312 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -1472 -32 ) ( -880 -1472 -32 ) ( -880 -1472 312 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -1600 296 ) ( -896 -1600 72 ) ( -896 -1472 88 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -912 -1600 -16 ) ( -896 -1600 -16 ) ( -904 -1472 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4419 +{ +( -880 -1472 312 ) ( -896 -1472 312 ) ( -896 -1344 320 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -880 -1472 -32 ) ( -896 -1472 -32 ) ( -896 -1472 312 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -880 -1472 88 ) ( -880 -1472 312 ) ( -880 -1344 320 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -880 -1344 320 ) ( -896 -1344 320 ) ( -896 -1344 96 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -1472 312 ) ( -896 -1472 88 ) ( -896 -1344 96 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -912 -1472 -16 ) ( -896 -1472 -16 ) ( -904 -1344 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4420 +{ +( -880 -1728 272 ) ( -896 -1728 272 ) ( -896 -1600 296 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -1728 272 ) ( -880 -1728 272 ) ( -880 -1728 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -880 -1728 48 ) ( -880 -1728 272 ) ( -880 -1600 296 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -1600 -32 ) ( -880 -1600 -32 ) ( -880 -1600 296 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -1728 272 ) ( -896 -1728 48 ) ( -896 -1600 72 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -912 -1728 -16 ) ( -896 -1728 -16 ) ( -904 -1600 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4421 +{ +( -880 -1856 240 ) ( -896 -1856 240 ) ( -896 -1728 272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -1856 240 ) ( -880 -1856 240 ) ( -880 -1856 16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -880 -1856 16 ) ( -880 -1856 240 ) ( -880 -1728 272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -1728 -32 ) ( -880 -1728 -32 ) ( -880 -1728 272 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -1856 240 ) ( -896 -1856 16 ) ( -896 -1728 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -912 -1856 -16 ) ( -896 -1856 -16 ) ( -904 -1728 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4422 +{ +( -880 -1984 216 ) ( -896 -1984 216 ) ( -896 -1856 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -1984 216 ) ( -880 -1984 216 ) ( -880 -1984 -8 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -880 -1984 -8 ) ( -880 -1984 216 ) ( -880 -1856 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -1856 -32 ) ( -880 -1856 -32 ) ( -880 -1856 240 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -1984 216 ) ( -896 -1984 -8 ) ( -896 -1856 16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -912 -1984 -16 ) ( -896 -1984 -16 ) ( -904 -1856 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4423 +{ +( -880 -2112 200 ) ( -896 -2112 200 ) ( -896 -1984 216 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -2112 200 ) ( -880 -2112 200 ) ( -880 -2112 -24 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -880 -2112 -24 ) ( -880 -2112 200 ) ( -880 -1984 216 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -1984 -32 ) ( -880 -1984 -32 ) ( -880 -1984 216 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -2112 200 ) ( -896 -2112 -24 ) ( -896 -1984 -8 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -912 -2112 -16 ) ( -896 -2112 -16 ) ( -904 -1984 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4424 +{ +( -880 -2240 192 ) ( -896 -2240 192 ) ( -896 -2112 200 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -2240 192 ) ( -880 -2240 192 ) ( -880 -2240 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -880 -2240 -32 ) ( -880 -2240 192 ) ( -880 -2112 200 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -2112 -32 ) ( -880 -2112 -32 ) ( -880 -2112 200 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -2240 192 ) ( -896 -2240 -32 ) ( -896 -2112 -24 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -912 -2240 -16 ) ( -896 -2240 -16 ) ( -904 -2112 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4425 +{ +( -896 -2368 192 ) ( -896 -2240 192 ) ( -880 -2240 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -2920 -16 ) ( -896 -2920 192 ) ( -880 -2918 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -880 -2368 200 ) ( -880 -2240 200 ) ( -880 -2240 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -880 -2240 200 ) ( -896 -2240 200 ) ( -896 -2240 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -896 -2920 192 ) ( -896 -2920 -16 ) ( -896 -2240 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -912 -2880 -16 ) ( -896 -2880 -16 ) ( -904 -2240 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4426 +{ +( 504 -368 192 ) ( 504 -48 192 ) ( 2048 -48 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1384 -64 192 ) ( 1384 -64 -16 ) ( 1161 -64 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 2048 -48 -16 ) ( 504 -48 -16 ) ( 504 -48 -24 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1384 -64 -16 ) ( 1384 -64 192 ) ( 1382 -48 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1161 -52 32 ) ( 1161 -48 32 ) ( 1161 -50 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 176 -64 -16 ) ( 192 -64 -16 ) ( 184 -48 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4427 +{ +( 1114 -64 128 ) ( 1158 -64 128 ) ( 1158 -64 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1161 -64 128 ) ( 1161 -49 128 ) ( 1161 -49 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1158 -48 128 ) ( 1114 -48 128 ) ( 1114 -48 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1116 -49 128 ) ( 1116 -64 128 ) ( 1116 -64 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1130 -64 42 ) ( 1113 -64 42 ) ( 1122 -48 42 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 154 -64 -16 ) ( 170 -64 -16 ) ( 162 -48 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4428 +{ +( 87 -464 0 ) ( 87 -449 0 ) ( 124 -449 0 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( 87 -464 0 ) ( 124 -464 0 ) ( 124 -464 -32 ) bricks/c_tn_m3 128 0 0 1 1 0 0 0 +( 217 -463 0 ) ( 217 -448 0 ) ( 217 -448 -32 ) bricks/c_tn_m3 128 0 0 1 1 0 0 0 +( 124 -448 0 ) ( 87 -448 0 ) ( 87 -448 -32 ) bricks/c_tn_m3 128 0 0 1 1 0 0 0 +( 92 -450 0 ) ( 92 -465 0 ) ( 92 -465 -32 ) bricks/c_tn_m3 128 0 0 1 1 0 0 0 +( 215 -464 -16 ) ( 231 -464 -16 ) ( 223 -448 -16 ) bricks/c_tn_m3 128 0 0 1 1 0 0 0 +} +// brush 4429 +{ +( -1096 -768 192 ) ( -1096 -448 192 ) ( 448 -448 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1096 -464 -16 ) ( 448 -464 -16 ) ( 448 -464 -24 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 448 -448 -16 ) ( -1096 -448 -16 ) ( -1096 -448 -24 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 92 -448 32 ) ( 92 -464 32 ) ( 92 -456 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -375 -457 32 ) ( -375 -449 32 ) ( -375 -453 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 176 -464 -16 ) ( 192 -464 -16 ) ( 184 -448 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4430 +{ +( -420 -464 128 ) ( -375 -464 128 ) ( -375 -464 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -375 -464 128 ) ( -375 -448 128 ) ( -375 -448 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -375 -448 128 ) ( -420 -448 128 ) ( -420 -448 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -420 -448 128 ) ( -420 -464 128 ) ( -420 -464 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -371 -464 43 ) ( -427 -464 43 ) ( -399 -448 43 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 221 -464 -16 ) ( 237 -464 -16 ) ( 229 -448 -16 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4431 +{ +( -552 -448 192 ) ( -555 -416 192 ) ( -320 -416 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2048 -448 192 ) ( -1696 -448 192 ) ( -1696 -448 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -320 -440 192 ) ( -320 -376 192 ) ( -320 -376 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -320 -416 192 ) ( -555 -416 192 ) ( -552 -448 160 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -552 -448 160 ) ( -555 -416 192 ) ( -552 -448 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4432 +{ +( -1728 -448 192 ) ( -1728 -384 192 ) ( -1376 -384 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1728 -448 192 ) ( -1376 -448 192 ) ( -1376 -448 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 0 -440 192 ) ( 0 -376 192 ) ( 0 -376 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1728 -416 192 ) ( -1728 -448 160 ) ( -1376 -432 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -256 -432 160 ) ( -256 -416 160 ) ( -256 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4433 +{ +( -1728 -448 192 ) ( -1728 -384 192 ) ( -1376 -384 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1728 -416 192 ) ( -1728 -448 160 ) ( -1376 -432 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -256 -416 160 ) ( -256 -432 160 ) ( -256 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -320 -448 160 ) ( -320 -440 160 ) ( -320 -444 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -296 -424 160 ) ( -320 -424 160 ) ( -308 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4434 +{ +( -1728 -448 192 ) ( -1728 -384 192 ) ( -1376 -384 192 ) common/li_pv_v4a 0 -8 0 1 1 0 1 8000 +( -1728 -416 192 ) ( -1728 -448 160 ) ( -1376 -432 176 ) common/li_pv_v4a 0 -8 0 1 1 0 1 8000 +( -256 -416 160 ) ( -256 -432 160 ) ( -256 -424 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( -320 -448 160 ) ( -320 -440 160 ) ( -320 -444 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( -320 -424 160 ) ( -296 -424 160 ) ( -308 -424 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( -256 -440 160 ) ( -280 -440 160 ) ( -268 -440 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +} +// brush 4435 +{ +( -1728 -448 192 ) ( -1728 -384 192 ) ( -1376 -384 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1728 -448 192 ) ( -1376 -448 192 ) ( -1376 -448 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1728 -416 192 ) ( -1728 -448 160 ) ( -1376 -432 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -256 -416 160 ) ( -256 -432 160 ) ( -256 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -320 -448 160 ) ( -320 -440 160 ) ( -320 -444 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -280 -440 160 ) ( -256 -440 160 ) ( -268 -440 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4436 +{ +( -1408 -448 192 ) ( -1408 -384 192 ) ( -1056 -384 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1408 -448 192 ) ( -1056 -448 192 ) ( -1056 -448 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1408 -416 192 ) ( -1408 -448 160 ) ( -1056 -432 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 64 -416 160 ) ( 64 -432 160 ) ( 64 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 0 -448 160 ) ( 0 -440 160 ) ( 0 -444 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 40 -440 160 ) ( 64 -440 160 ) ( 52 -440 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4437 +{ +( -1408 -448 192 ) ( -1408 -384 192 ) ( -1056 -384 192 ) common/li_pv_v4a 0 -8 0 1 1 0 0 0 +( -1408 -416 192 ) ( -1408 -448 160 ) ( -1056 -432 176 ) common/li_pv_v4a 0 -8 0 1 1 0 0 0 +( 64 -416 160 ) ( 64 -432 160 ) ( 64 -424 192 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +( 0 -448 160 ) ( 0 -440 160 ) ( 0 -444 192 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +( 0 -424 160 ) ( 24 -424 160 ) ( 12 -424 192 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +( 64 -440 160 ) ( 40 -440 160 ) ( 52 -440 192 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +} +// brush 4438 +{ +( -1408 -448 192 ) ( -1408 -384 192 ) ( -1056 -384 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1408 -416 192 ) ( -1408 -448 160 ) ( -1056 -432 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 64 -416 160 ) ( 64 -432 160 ) ( 64 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 0 -448 160 ) ( 0 -440 160 ) ( 0 -444 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 24 -424 160 ) ( 0 -424 160 ) ( 12 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4439 +{ +( -1408 -448 192 ) ( -1408 -384 192 ) ( -1056 -384 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1408 -448 192 ) ( -1056 -448 192 ) ( -1056 -448 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 320 -440 192 ) ( 320 -376 192 ) ( 320 -376 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1408 -416 192 ) ( -1408 -448 160 ) ( -1056 -432 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 64 -432 160 ) ( 64 -416 160 ) ( 64 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4440 +{ +( -1088 -448 192 ) ( -1088 -384 192 ) ( -736 -384 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1088 -448 192 ) ( -736 -448 192 ) ( -736 -448 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 640 -440 192 ) ( 640 -376 192 ) ( 640 -376 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1088 -416 192 ) ( -1088 -448 160 ) ( -736 -432 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 384 -432 160 ) ( 384 -416 160 ) ( 384 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4441 +{ +( -1088 -448 192 ) ( -1088 -384 192 ) ( -736 -384 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1088 -416 192 ) ( -1088 -448 160 ) ( -736 -432 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 384 -416 160 ) ( 384 -432 160 ) ( 384 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 320 -448 160 ) ( 320 -440 160 ) ( 320 -444 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 344 -424 160 ) ( 320 -424 160 ) ( 332 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4442 +{ +( -1088 -448 192 ) ( -1088 -384 192 ) ( -736 -384 192 ) common/li_pv_v4a 0 -8 0 1 1 0 1 8000 +( -1088 -416 192 ) ( -1088 -448 160 ) ( -736 -432 176 ) common/li_pv_v4a 0 -8 0 1 1 0 1 8000 +( 384 -416 160 ) ( 384 -432 160 ) ( 384 -424 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( 320 -448 160 ) ( 320 -440 160 ) ( 320 -444 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( 320 -424 160 ) ( 344 -424 160 ) ( 332 -424 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( 384 -440 160 ) ( 360 -440 160 ) ( 372 -440 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +} +// brush 4443 +{ +( -1088 -448 192 ) ( -1088 -384 192 ) ( -736 -384 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1088 -448 192 ) ( -736 -448 192 ) ( -736 -448 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -1088 -416 192 ) ( -1088 -448 160 ) ( -736 -432 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 384 -416 160 ) ( 384 -432 160 ) ( 384 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 320 -448 160 ) ( 320 -440 160 ) ( 320 -444 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 360 -440 160 ) ( 384 -440 160 ) ( 372 -440 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4444 +{ +( -768 -448 192 ) ( -768 -384 192 ) ( -416 -384 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -768 -448 192 ) ( -416 -448 192 ) ( -416 -448 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -768 -416 192 ) ( -768 -448 160 ) ( -416 -432 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 704 -416 160 ) ( 704 -432 160 ) ( 704 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 640 -448 160 ) ( 640 -440 160 ) ( 640 -444 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 680 -440 160 ) ( 704 -440 160 ) ( 692 -440 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4445 +{ +( -768 -448 192 ) ( -768 -384 192 ) ( -416 -384 192 ) common/li_pv_v4a 0 -8 0 1 1 0 1 8000 +( -768 -416 192 ) ( -768 -448 160 ) ( -416 -432 176 ) common/li_pv_v4a 0 -8 0 1 1 0 1 8000 +( 704 -416 160 ) ( 704 -432 160 ) ( 704 -424 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( 640 -448 160 ) ( 640 -440 160 ) ( 640 -444 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( 640 -424 160 ) ( 664 -424 160 ) ( 652 -424 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( 704 -440 160 ) ( 680 -440 160 ) ( 692 -440 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +} +// brush 4446 +{ +( -768 -448 192 ) ( -768 -384 192 ) ( -416 -384 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -768 -416 192 ) ( -768 -448 160 ) ( -416 -432 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 704 -416 160 ) ( 704 -432 160 ) ( 704 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 640 -448 160 ) ( 640 -440 160 ) ( 640 -444 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 664 -424 160 ) ( 640 -424 160 ) ( 652 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4447 +{ +( -768 -448 192 ) ( -768 -384 192 ) ( -416 -384 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -768 -448 192 ) ( -416 -448 192 ) ( -416 -448 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 960 -440 192 ) ( 960 -376 192 ) ( 960 -376 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -768 -416 192 ) ( -768 -448 160 ) ( -416 -432 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 704 -432 160 ) ( 704 -416 160 ) ( 704 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4448 +{ +( -448 -448 192 ) ( -448 -384 192 ) ( -96 -384 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -448 -448 192 ) ( -96 -448 192 ) ( -96 -448 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 -440 192 ) ( 1280 -376 192 ) ( 1280 -376 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -448 -416 192 ) ( -448 -448 160 ) ( -96 -432 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1024 -432 160 ) ( 1024 -416 160 ) ( 1024 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4449 +{ +( -448 -448 192 ) ( -448 -384 192 ) ( -96 -384 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -448 -416 192 ) ( -448 -448 160 ) ( -96 -432 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1024 -416 160 ) ( 1024 -432 160 ) ( 1024 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 960 -448 160 ) ( 960 -440 160 ) ( 960 -444 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 984 -424 160 ) ( 960 -424 160 ) ( 972 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4450 +{ +( -448 -448 192 ) ( -448 -384 192 ) ( -96 -384 192 ) common/li_pv_v4a 0 -8 0 1 1 0 0 0 +( -448 -416 192 ) ( -448 -448 160 ) ( -96 -432 176 ) common/li_pv_v4a 0 -8 0 1 1 0 0 0 +( 1024 -416 160 ) ( 1024 -432 160 ) ( 1024 -424 192 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +( 960 -448 160 ) ( 960 -440 160 ) ( 960 -444 192 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +( 960 -424 160 ) ( 984 -424 160 ) ( 972 -424 192 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +( 1024 -440 160 ) ( 1000 -440 160 ) ( 1012 -440 192 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +} +// brush 4451 +{ +( -448 -448 192 ) ( -448 -384 192 ) ( -96 -384 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -448 -448 192 ) ( -96 -448 192 ) ( -96 -448 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -448 -416 192 ) ( -448 -448 160 ) ( -96 -432 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1024 -416 160 ) ( 1024 -432 160 ) ( 1024 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 960 -448 160 ) ( 960 -440 160 ) ( 960 -444 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1000 -440 160 ) ( 1024 -440 160 ) ( 1012 -440 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4452 +{ +( -128 -448 192 ) ( -128 -384 192 ) ( 224 -384 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -128 -448 192 ) ( 224 -448 192 ) ( 224 -448 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -128 -416 192 ) ( -128 -448 160 ) ( 224 -432 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1344 -416 160 ) ( 1344 -432 160 ) ( 1344 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 -448 160 ) ( 1280 -440 160 ) ( 1280 -444 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1320 -440 160 ) ( 1344 -440 160 ) ( 1332 -440 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4453 +{ +( -128 -448 192 ) ( -128 -384 192 ) ( 224 -384 192 ) common/li_pv_v4a 0 -8 0 1 1 0 1 8000 +( -128 -416 192 ) ( -128 -448 160 ) ( 224 -432 176 ) common/li_pv_v4a 0 -8 0 1 1 0 1 8000 +( 1344 -416 160 ) ( 1344 -432 160 ) ( 1344 -424 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( 1280 -448 160 ) ( 1280 -440 160 ) ( 1280 -444 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( 1280 -424 160 ) ( 1304 -424 160 ) ( 1292 -424 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( 1344 -440 160 ) ( 1320 -440 160 ) ( 1332 -440 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +} +// brush 4454 +{ +( -128 -448 192 ) ( -128 -384 192 ) ( 224 -384 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -128 -416 192 ) ( -128 -448 160 ) ( 224 -432 176 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1344 -416 160 ) ( 1344 -432 160 ) ( 1344 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1280 -448 160 ) ( 1280 -440 160 ) ( 1280 -444 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( 1304 -424 160 ) ( 1280 -424 160 ) ( 1292 -424 192 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4455 +{ +( -320 -96 192 ) ( -585 -96 192 ) ( -588 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -672 -64 176 ) ( -672 -64 192 ) ( -1024 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -588 -64 160 ) ( -585 -96 192 ) ( -320 -96 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -320 -64 160 ) ( -320 -72 160 ) ( -320 -68 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -588 -64 192 ) ( -585 -96 192 ) ( -588 -64 160 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4456 +{ +( -416 -128 192 ) ( -768 -128 192 ) ( -768 -64 192 ) common/li_pv_v4a 0 -8 0 1 1 0 0 0 +( -416 -80 176 ) ( -768 -64 160 ) ( -768 -96 192 ) common/li_pv_v4a 0 -8 0 1 1 0 0 0 +( -320 -72 160 ) ( -320 -64 160 ) ( -320 -68 192 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +( -256 -72 160 ) ( -256 -88 160 ) ( -256 -80 192 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +( -320 -72 160 ) ( -312 -72 160 ) ( -316 -72 192 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +( -312 -88 168 ) ( -320 -88 168 ) ( -316 -88 192 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +} +// brush 4457 +{ +( -416 -128 192 ) ( -768 -128 192 ) ( -768 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -416 -80 176 ) ( -768 -64 160 ) ( -768 -96 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -320 -72 160 ) ( -320 -64 160 ) ( -320 -68 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -256 -72 160 ) ( -256 -88 160 ) ( -256 -80 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -320 -88 168 ) ( -312 -88 168 ) ( -316 -88 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4458 +{ +( -416 -128 192 ) ( -768 -128 192 ) ( -768 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -352 -64 176 ) ( -352 -64 192 ) ( -704 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -416 -80 176 ) ( -768 -64 160 ) ( -768 -96 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -320 -72 160 ) ( -320 -64 160 ) ( -320 -68 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -256 -72 160 ) ( -256 -88 160 ) ( -256 -80 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -312 -72 160 ) ( -320 -72 160 ) ( -316 -72 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4459 +{ +( -416 -128 192 ) ( -768 -128 192 ) ( -768 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -352 -64 176 ) ( -352 -64 192 ) ( -704 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -416 -80 176 ) ( -768 -64 160 ) ( -768 -96 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 0 -64 160 ) ( 0 -72 160 ) ( 0 -68 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -256 -88 160 ) ( -256 -72 160 ) ( -256 -80 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4460 +{ +( -96 -128 192 ) ( -448 -128 192 ) ( -448 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -32 -64 176 ) ( -32 -64 192 ) ( -384 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -96 -80 176 ) ( -448 -64 160 ) ( -448 -96 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 320 -64 160 ) ( 320 -72 160 ) ( 320 -68 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 64 -88 160 ) ( 64 -72 160 ) ( 64 -80 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4461 +{ +( -96 -128 192 ) ( -448 -128 192 ) ( -448 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -32 -64 176 ) ( -32 -64 192 ) ( -384 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -96 -80 176 ) ( -448 -64 160 ) ( -448 -96 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 0 -72 160 ) ( 0 -64 160 ) ( 0 -68 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 64 -72 160 ) ( 64 -88 160 ) ( 64 -80 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 8 -72 160 ) ( 0 -72 160 ) ( 4 -72 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4462 +{ +( -96 -128 192 ) ( -448 -128 192 ) ( -448 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -96 -80 176 ) ( -448 -64 160 ) ( -448 -96 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 0 -72 160 ) ( 0 -64 160 ) ( 0 -68 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 64 -72 160 ) ( 64 -88 160 ) ( 64 -80 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 0 -88 168 ) ( 8 -88 168 ) ( 4 -88 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4463 +{ +( -96 -128 192 ) ( -448 -128 192 ) ( -448 -64 192 ) common/li_pv_v4a 0 -8 0 1 1 0 0 0 +( -96 -80 176 ) ( -448 -64 160 ) ( -448 -96 192 ) common/li_pv_v4a 0 -8 0 1 1 0 0 0 +( 0 -72 160 ) ( 0 -64 160 ) ( 0 -68 192 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +( 64 -72 160 ) ( 64 -88 160 ) ( 64 -80 192 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +( 0 -72 160 ) ( 8 -72 160 ) ( 4 -72 192 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +( 8 -88 168 ) ( 0 -88 168 ) ( 4 -88 192 ) common/li_pv_v4a 0 8 0 1 1 0 0 0 +} +// brush 4464 +{ +( 224 -128 192 ) ( -128 -128 192 ) ( -128 -64 192 ) common/li_pv_v4a 0 -8 0 1 1 0 1 8000 +( 224 -80 176 ) ( -128 -64 160 ) ( -128 -96 192 ) common/li_pv_v4a 0 -8 0 1 1 0 1 8000 +( 320 -72 160 ) ( 320 -64 160 ) ( 320 -68 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( 384 -72 160 ) ( 384 -88 160 ) ( 384 -80 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( 320 -72 160 ) ( 328 -72 160 ) ( 324 -72 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( 328 -88 168 ) ( 320 -88 168 ) ( 324 -88 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +} +// brush 4465 +{ +( 224 -128 192 ) ( -128 -128 192 ) ( -128 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 224 -80 176 ) ( -128 -64 160 ) ( -128 -96 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 320 -72 160 ) ( 320 -64 160 ) ( 320 -68 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 384 -72 160 ) ( 384 -88 160 ) ( 384 -80 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 320 -88 168 ) ( 328 -88 168 ) ( 324 -88 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4466 +{ +( 224 -128 192 ) ( -128 -128 192 ) ( -128 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 288 -64 176 ) ( 288 -64 192 ) ( -64 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 224 -80 176 ) ( -128 -64 160 ) ( -128 -96 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 320 -72 160 ) ( 320 -64 160 ) ( 320 -68 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 384 -72 160 ) ( 384 -88 160 ) ( 384 -80 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 328 -72 160 ) ( 320 -72 160 ) ( 324 -72 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4467 +{ +( 224 -128 192 ) ( -128 -128 192 ) ( -128 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 288 -64 176 ) ( 288 -64 192 ) ( -64 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 224 -80 176 ) ( -128 -64 160 ) ( -128 -96 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 640 -64 160 ) ( 640 -72 160 ) ( 640 -68 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 384 -88 160 ) ( 384 -72 160 ) ( 384 -80 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4468 +{ +( 544 -128 192 ) ( 192 -128 192 ) ( 192 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 608 -64 176 ) ( 608 -64 192 ) ( 256 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 544 -80 176 ) ( 192 -64 160 ) ( 192 -96 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 960 -64 160 ) ( 960 -72 160 ) ( 960 -68 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 704 -88 160 ) ( 704 -72 160 ) ( 704 -80 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4469 +{ +( 544 -128 192 ) ( 192 -128 192 ) ( 192 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 608 -64 176 ) ( 608 -64 192 ) ( 256 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 544 -80 176 ) ( 192 -64 160 ) ( 192 -96 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 640 -72 160 ) ( 640 -64 160 ) ( 640 -68 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 704 -72 160 ) ( 704 -88 160 ) ( 704 -80 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 648 -72 160 ) ( 640 -72 160 ) ( 644 -72 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4470 +{ +( 544 -128 192 ) ( 192 -128 192 ) ( 192 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 544 -80 176 ) ( 192 -64 160 ) ( 192 -96 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 640 -72 160 ) ( 640 -64 160 ) ( 640 -68 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 704 -72 160 ) ( 704 -88 160 ) ( 704 -80 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 640 -88 168 ) ( 648 -88 168 ) ( 644 -88 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4471 +{ +( 544 -128 192 ) ( 192 -128 192 ) ( 192 -64 192 ) common/li_pv_v4a 0 -8 0 1 1 0 1 8000 +( 544 -80 176 ) ( 192 -64 160 ) ( 192 -96 192 ) common/li_pv_v4a 0 -8 0 1 1 0 1 8000 +( 640 -72 160 ) ( 640 -64 160 ) ( 640 -68 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( 704 -72 160 ) ( 704 -88 160 ) ( 704 -80 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( 640 -72 160 ) ( 648 -72 160 ) ( 644 -72 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( 648 -88 168 ) ( 640 -88 168 ) ( 644 -88 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +} +// brush 4472 +{ +( 864 -128 192 ) ( 512 -128 192 ) ( 512 -64 192 ) common/li_pv_v4a 0 -8 0 1 1 0 1 8000 +( 864 -80 176 ) ( 512 -64 160 ) ( 512 -96 192 ) common/li_pv_v4a 0 -8 0 1 1 0 1 8000 +( 960 -72 160 ) ( 960 -64 160 ) ( 960 -68 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( 1024 -72 160 ) ( 1024 -88 160 ) ( 1024 -80 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( 960 -72 160 ) ( 968 -72 160 ) ( 964 -72 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( 968 -88 168 ) ( 960 -88 168 ) ( 964 -88 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +} +// brush 4473 +{ +( 864 -128 192 ) ( 512 -128 192 ) ( 512 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 864 -80 176 ) ( 512 -64 160 ) ( 512 -96 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 960 -72 160 ) ( 960 -64 160 ) ( 960 -68 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1024 -72 160 ) ( 1024 -88 160 ) ( 1024 -80 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 960 -88 168 ) ( 968 -88 168 ) ( 964 -88 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4474 +{ +( 864 -128 192 ) ( 512 -128 192 ) ( 512 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 928 -64 176 ) ( 928 -64 192 ) ( 576 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 864 -80 176 ) ( 512 -64 160 ) ( 512 -96 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 960 -72 160 ) ( 960 -64 160 ) ( 960 -68 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1024 -72 160 ) ( 1024 -88 160 ) ( 1024 -80 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 968 -72 160 ) ( 960 -72 160 ) ( 964 -72 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4475 +{ +( 864 -128 192 ) ( 512 -128 192 ) ( 512 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 928 -64 176 ) ( 928 -64 192 ) ( 576 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 864 -80 176 ) ( 512 -64 160 ) ( 512 -96 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 -64 160 ) ( 1280 -72 160 ) ( 1280 -68 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1024 -88 160 ) ( 1024 -72 160 ) ( 1024 -80 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4476 +{ +( 864 -128 192 ) ( 512 -128 192 ) ( 512 -64 192 ) common/li_pv_v4a 0 -8 0 1 1 0 1 8000 +( 864 -80 176 ) ( 512 -64 160 ) ( 512 -96 192 ) common/li_pv_v4a 0 -8 0 1 1 0 1 8000 +( 1280 -72 160 ) ( 1280 -64 160 ) ( 1280 -68 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( 1344 -80 160 ) ( 1344 -88 160 ) ( 1344 -84 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( 1280 -72 160 ) ( 1296 -72 160 ) ( 1288 -72 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +( 1304 -88 168 ) ( 1280 -88 168 ) ( 1292 -88 192 ) common/li_pv_v4a 0 8 0 1 1 0 1 8000 +} +// brush 4477 +{ +( 864 -128 192 ) ( 512 -128 192 ) ( 512 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 864 -80 176 ) ( 512 -64 160 ) ( 512 -96 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 -72 160 ) ( 1280 -64 160 ) ( 1280 -68 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1344 -80 160 ) ( 1344 -88 160 ) ( 1344 -84 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 -88 168 ) ( 1304 -88 168 ) ( 1292 -88 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4478 +{ +( 864 -128 192 ) ( 512 -128 192 ) ( 512 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 928 -64 176 ) ( 928 -64 192 ) ( 576 -64 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 864 -80 176 ) ( 512 -64 160 ) ( 512 -96 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1280 -72 160 ) ( 1280 -64 160 ) ( 1280 -68 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1344 -80 160 ) ( 1344 -88 160 ) ( 1344 -84 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( 1296 -72 160 ) ( 1280 -72 160 ) ( 1288 -72 192 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4479 +{ +( -1360 -1408 160 ) ( -1360 -1344 160 ) ( -1312 -1344 160 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +( -1312 -1408 124 ) ( -1328 -1408 124 ) ( -1328 -1408 160 ) bricks/c_sr_mb1b 176 0 0 1 1 0 0 0 +( -1312 -1408 128 ) ( -1312 -1344 128 ) ( -1312 -1344 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1312 -1344 128 ) ( -1360 -1344 128 ) ( -1360 -1344 -32 ) bricks/c_sr_mb1b 176 0 0 1 1 0 0 0 +( -1328 -1344 128 ) ( -1328 -1408 128 ) ( -1328 -1408 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1328 -1396 128 ) ( -1328 -1408 128 ) ( -1312 -1402 128 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +} +// brush 4480 +{ +( -1328 -1408 124 ) ( -1312 -1408 124 ) ( -1312 -1344 128 ) bricks/c_tn_m3 128 -64 0 1 1 0 0 0 +( -1312 -1408 124 ) ( -1328 -1408 124 ) ( -1328 -1408 160 ) bricks/c_tn_m3 128 -128 0 1 1 0 0 0 +( -1312 -1408 128 ) ( -1312 -1344 128 ) ( -1312 -1344 -32 ) bricks/c_tn_m3 192 -128 0 1 1 0 0 0 +( -1328 -1344 128 ) ( -1328 -1408 128 ) ( -1328 -1408 -32 ) bricks/c_tn_m3 192 -128 0 1 1 0 0 0 +( -1328 -1408 128 ) ( -1328 -1396 128 ) ( -1312 -1402 128 ) bricks/c_tn_m3 128 -64 0 1 1 0 0 0 +} +// brush 4481 +{ +( 135 -456 128 ) ( 87 -456 128 ) ( 87 -464 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 87 -464 192 ) ( 87 -456 192 ) ( 135 -456 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 87 -464 192 ) ( 135 -464 192 ) ( 135 -464 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 137 -463 192 ) ( 137 -455 192 ) ( 137 -455 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 135 -448 192 ) ( 87 -448 192 ) ( 87 -448 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 92 -455 192 ) ( 92 -463 192 ) ( 92 -463 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4482 +{ +( -1280 -576 -32 ) ( -1296 -576 -32 ) ( -1296 -680 -32 ) bricks/c_tn_m3 128 -192 0 1 1 0 0 0 +( -1296 -680 168 ) ( -1296 -576 168 ) ( -1280 -576 168 ) bricks/c_sr_mb1a 0 0 90 0.500000 0.500000 0 0 0 +( -1280 -872 -32 ) ( -1280 -872 128 ) ( -1280 -768 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1312 -576 -32 ) ( -1312 -576 128 ) ( -1312 -680 128 ) bricks/c_tn_m3 0 128 0 1 1 0 0 0 +( -992 -1344 -16 ) ( -1280 -1344 -16 ) ( -1136 -1344 144 ) bricks/c_tn_m3 128 0 0 1 1 0 0 0 +( -1296 -832 -32 ) ( -1280 -832 -32 ) ( -1288 -832 168 ) bricks/c_tn_m3 128 0 0 1 1 0 0 0 +} +// brush 4483 +{ +( -1680 -2240 -16 ) ( -1696 -2240 -16 ) ( -1696 -2304 -16 ) bricks/c_sr_mr5 0 -2 270 1 1 0 0 0 +( -1696 -2304 0 ) ( -1696 -2240 0 ) ( -1680 -2240 0 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -1680 -2580 0 ) ( -1680 -2580 -16 ) ( -1696 -2582 -16 ) bricks/c_sr_mr5 63 -2 270 1 1 0 0 0 +( -1680 -2580 -16 ) ( -1680 -2580 0 ) ( -1680 -2240 0 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -1680 -2240 8 ) ( -1696 -2240 8 ) ( -1696 -2240 -16 ) bricks/c_sr_mr5 63 -2 270 1 1 0 0 0 +( -1696 -2256 8 ) ( -1696 -2320 8 ) ( -1696 -2320 -16 ) bricks/c_sr_mr5 63 -2 270 1 1 0 0 0 +} +// brush 4484 +{ +( -896 -1728 192 ) ( -928 -1728 192 ) ( -928 -1984 192 ) bricks/c_sr_mb1b 128 0 0 1 -1 0 0 0 +( -896 -1984 224 ) ( -896 -1728 224 ) ( -896 -1728 192 ) bricks/c_sr_mb1b 192 64 0 1 -1 0 0 0 +( -896 -2112 216 ) ( -928 -2112 216 ) ( -928 -2112 192 ) bricks/c_sr_mb1b 128 64 0 1 -1 0 0 0 +( -928 -1728 224 ) ( -928 -1984 224 ) ( -928 -1984 192 ) bricks/c_sr_mb1b 192 64 0 1 -1 0 0 0 +( -928 -2240 192 ) ( -928 -2112 200 ) ( -896 -2176 196 ) bricks/c_sr_mb1b 128 0 0 1 -1 0 0 0 +} +// brush 4485 +{ +( -896 -1600 192 ) ( -928 -1600 192 ) ( -928 -1856 192 ) bricks/c_sr_mb1b 128 0 0 1 -1 0 0 0 +( -928 -1984 216 ) ( -896 -1984 216 ) ( -896 -2112 200 ) bricks/c_sr_mb1b 128 0 0 1 -1 0 0 0 +( -928 -2112 216 ) ( -896 -2112 216 ) ( -896 -2112 192 ) bricks/c_sr_mb1b 128 64 0 1 -1 0 0 0 +( -896 -1856 224 ) ( -896 -1600 224 ) ( -896 -1600 192 ) bricks/c_sr_mb1b 192 64 0 1 -1 0 0 0 +( -896 -1984 216 ) ( -928 -1984 216 ) ( -928 -1984 192 ) bricks/c_sr_mb1b 128 64 0 1 -1 0 0 0 +( -928 -1600 224 ) ( -928 -1856 224 ) ( -928 -1856 192 ) bricks/c_sr_mb1b 192 64 0 1 -1 0 0 0 +} +// brush 4486 +{ +( -896 -1472 192 ) ( -928 -1472 192 ) ( -928 -1728 192 ) bricks/c_sr_mb1b 128 0 0 1 -1 0 0 0 +( -896 -1984 216 ) ( -928 -1984 216 ) ( -928 -1856 240 ) bricks/c_sr_mb1b 128 0 0 1 -1 0 0 0 +( -928 -1984 216 ) ( -896 -1984 216 ) ( -896 -1984 192 ) bricks/c_sr_mb1b 128 64 0 1 -1 0 0 0 +( -896 -1728 224 ) ( -896 -1472 224 ) ( -896 -1472 192 ) bricks/c_sr_mb1b 192 64 0 1 -1 0 0 0 +( -896 -1856 216 ) ( -928 -1856 216 ) ( -928 -1856 184 ) bricks/c_sr_mb1b 128 64 0 1 -1 0 0 0 +( -928 -1472 224 ) ( -928 -1728 224 ) ( -928 -1728 192 ) bricks/c_sr_mb1b 192 64 0 1 -1 0 0 0 +} +// brush 4487 +{ +( -896 -1344 192 ) ( -928 -1344 192 ) ( -928 -1600 192 ) bricks/c_sr_mb1b 128 0 0 1 -1 0 0 0 +( -896 -1856 240 ) ( -928 -1856 240 ) ( -928 -1728 272 ) bricks/c_sr_mb1b 128 0 0 1 -1 0 0 0 +( -928 -1856 240 ) ( -896 -1856 240 ) ( -896 -1856 192 ) bricks/c_sr_mb1b 128 64 0 1 -1 0 0 0 +( -896 -1600 224 ) ( -896 -1344 224 ) ( -896 -1344 192 ) bricks/c_sr_mb1b 192 64 0 1 -1 0 0 0 +( -896 -1728 216 ) ( -928 -1728 216 ) ( -928 -1728 184 ) bricks/c_sr_mb1b 128 64 0 1 -1 0 0 0 +( -928 -1344 224 ) ( -928 -1600 224 ) ( -928 -1600 192 ) bricks/c_sr_mb1b 192 64 0 1 -1 0 0 0 +} +// brush 4488 +{ +( -896 -1216 192 ) ( -928 -1216 192 ) ( -928 -1472 192 ) bricks/c_sr_mb1b 128 0 0 1 -1 0 0 0 +( -896 -1728 272 ) ( -928 -1728 272 ) ( -928 -1600 296 ) bricks/c_sr_mb1b 128 0 0 1 -1 0 0 0 +( -928 -1728 272 ) ( -896 -1728 272 ) ( -896 -1728 192 ) bricks/c_sr_mb1b 128 64 0 1 -1 0 0 0 +( -896 -1472 224 ) ( -896 -1216 224 ) ( -896 -1216 192 ) bricks/c_sr_mb1b 192 64 0 1 -1 0 0 0 +( -896 -1600 216 ) ( -928 -1600 216 ) ( -928 -1600 184 ) bricks/c_sr_mb1b 128 64 0 1 -1 0 0 0 +( -928 -1216 224 ) ( -928 -1472 224 ) ( -928 -1472 192 ) bricks/c_sr_mb1b 192 64 0 1 -1 0 0 0 +} +// brush 4489 +{ +( -896 -1088 192 ) ( -928 -1088 192 ) ( -928 -1344 192 ) bricks/c_sr_mb1b 128 0 0 1 -1 0 0 0 +( -896 -1600 296 ) ( -928 -1600 296 ) ( -928 -1472 312 ) bricks/c_sr_mb1b 128 0 0 1 -1 0 0 0 +( -928 -1600 296 ) ( -896 -1600 296 ) ( -896 -1600 192 ) bricks/c_sr_mb1b 128 64 0 1 -1 0 0 0 +( -896 -1344 224 ) ( -896 -1088 224 ) ( -896 -1088 192 ) bricks/c_sr_mb1b 192 64 0 1 -1 0 0 0 +( -896 -1472 216 ) ( -928 -1472 216 ) ( -928 -1472 184 ) bricks/c_sr_mb1b 128 64 0 1 -1 0 0 0 +( -928 -1088 224 ) ( -928 -1344 224 ) ( -928 -1344 192 ) bricks/c_sr_mb1b 192 64 0 1 -1 0 0 0 +} +// brush 4490 +{ +( -896 -960 192 ) ( -928 -960 192 ) ( -928 -1216 192 ) bricks/c_sr_mb1b 128 0 0 1 -1 0 0 0 +( -896 -1472 312 ) ( -928 -1472 312 ) ( -928 -1344 320 ) bricks/c_sr_mb1b 128 0 0 1 -1 0 0 0 +( -928 -1472 312 ) ( -896 -1472 312 ) ( -896 -1472 192 ) bricks/c_sr_mb1b 128 64 0 1 -1 0 0 0 +( -896 -1216 224 ) ( -896 -960 224 ) ( -896 -960 192 ) bricks/c_sr_mb1b 192 64 0 1 -1 0 0 0 +( -896 -1344 216 ) ( -928 -1344 216 ) ( -928 -1344 184 ) bricks/c_sr_mb1b 128 64 0 1 -1 0 0 0 +( -928 -960 224 ) ( -928 -1216 224 ) ( -928 -1216 192 ) bricks/c_sr_mb1b 192 64 0 1 -1 0 0 0 +} +// brush 4491 +{ +( -896 -832 192 ) ( -928 -832 192 ) ( -928 -1088 192 ) bricks/c_sr_mb1b 128 0 0 1 -1 0 0 0 +( -928 -1088 320 ) ( -928 -832 320 ) ( -896 -832 320 ) bricks/c_sr_mb1b 128 0 0 1 -1 0 0 0 +( -928 -1344 232 ) ( -896 -1344 232 ) ( -896 -1344 200 ) bricks/c_sr_mb1b 128 64 0 1 -1 0 0 0 +( -896 -1088 224 ) ( -896 -832 224 ) ( -896 -832 192 ) bricks/c_sr_mb1b 192 64 0 1 -1 0 0 0 +( -896 -832 224 ) ( -928 -832 224 ) ( -928 -832 192 ) bricks/c_sr_mb1b 128 64 0 1 -1 0 0 0 +( -928 -832 224 ) ( -928 -1088 224 ) ( -928 -1088 192 ) bricks/c_sr_mb1b 192 64 0 1 -1 0 0 0 +} +// brush 4492 +{ +( -960 -1400 192 ) ( -960 -1336 192 ) ( -1264 -1336 192 ) bricks/c_sr_mb1a -16 128 0 1 1 0 0 0 +( -1264 -1408 256 ) ( -1264 -1344 256 ) ( -960 -1344 256 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1264 -1408 256 ) ( -960 -1408 256 ) ( -960 -1408 128 ) bricks/c_sr_mb1 112 0 0 1 1 0 0 0 +( -928 -1344 208 ) ( -928 -1408 208 ) ( -928 -1408 256 ) bricks/c_sr_mb1 176 0 0 1 1 0 0 0 +( -960 -1344 256 ) ( -1264 -1344 256 ) ( -1264 -1344 128 ) bricks/c_sr_mb1 112 0 0 1 1 0 0 0 +( -1264 -1408 208 ) ( -1264 -1344 208 ) ( -1264 -1344 256 ) bricks/c_sr_mb1 176 0 0 1 1 0 0 0 +} +// brush 4493 +{ +( -960 -1080 192 ) ( -960 -1016 192 ) ( -1264 -1016 192 ) bricks/c_sr_mb1a -16 64 0 1 1 0 0 0 +( -1264 -1088 256 ) ( -1264 -1024 256 ) ( -960 -1024 256 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -1264 -1088 240 ) ( -960 -1088 240 ) ( -960 -1088 112 ) bricks/c_sr_mb1 112 0 0 1 1 0 0 0 +( -928 -1024 208 ) ( -928 -1088 208 ) ( -928 -1088 256 ) bricks/c_sr_mb1 176 0 0 1 1 0 0 0 +( -960 -1024 256 ) ( -1264 -1024 256 ) ( -1264 -1024 128 ) bricks/c_sr_mb1 112 0 0 1 1 0 0 0 +( -1264 -1088 208 ) ( -1264 -1024 208 ) ( -1264 -1024 256 ) bricks/c_sr_mb1 176 0 0 1 1 0 0 0 +} +// brush 4494 +{ +( -1312 -1408 160 ) ( -1312 -1344 160 ) ( -1264 -1344 160 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +( -1312 -1408 128 ) ( -1264 -1408 128 ) ( -1264 -1408 -32 ) bricks/c_sr_mb2 -17 0 0 1 1 0 0 0 +( -1264 -1408 128 ) ( -1264 -1344 128 ) ( -1264 -1344 -32 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1264 -1344 128 ) ( -1312 -1344 128 ) ( -1312 -1344 -32 ) bricks/c_sr_mb2 -17 0 0 1 1 0 0 0 +( -1280 -1344 128 ) ( -1280 -1408 128 ) ( -1280 -1408 -32 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1280 -1408 128 ) ( -1256 -1408 128 ) ( -1268 -1344 128 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +} +// brush 4495 +{ +( -1312 -1408 168 ) ( -1264 -1408 168 ) ( -1264 -1408 8 ) bricks/c_sr_mb1b 176 0 0 1 1 0 0 0 +( -1264 -1408 168 ) ( -1264 -1344 168 ) ( -1264 -1344 8 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1264 -1344 168 ) ( -1312 -1344 168 ) ( -1312 -1344 8 ) bricks/c_sr_mb1b 176 0 0 1 1 0 0 0 +( -1328 -1344 168 ) ( -1328 -1408 168 ) ( -1328 -1408 8 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1280 -1408 160 ) ( -1256 -1408 160 ) ( -1268 -1344 160 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +( -1312 -1408 192 ) ( -1328 -1408 192 ) ( -1320 -1344 192 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +} +// brush 4496 +{ +( -1312 -1088 168 ) ( -1264 -1088 168 ) ( -1264 -1088 8 ) bricks/c_sr_mb1b 176 0 0 1 1 0 0 0 +( -1264 -1088 168 ) ( -1264 -1024 168 ) ( -1264 -1024 8 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1264 -1024 168 ) ( -1312 -1024 168 ) ( -1312 -1024 8 ) bricks/c_sr_mb1b 176 0 0 1 1 0 0 0 +( -1328 -1024 168 ) ( -1328 -1088 168 ) ( -1328 -1088 8 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1280 -1088 168 ) ( -1256 -1088 168 ) ( -1268 -1024 168 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +( -1312 -1088 192 ) ( -1328 -1088 192 ) ( -1320 -1024 192 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +} +// brush 4497 +{ +( -1312 -1088 168 ) ( -1312 -1024 168 ) ( -1264 -1024 168 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +( -1312 -1088 128 ) ( -1264 -1088 128 ) ( -1264 -1088 -32 ) bricks/c_sr_mb2 -17 0 0 1 1 0 0 0 +( -1264 -1088 128 ) ( -1264 -1024 128 ) ( -1264 -1024 -32 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1264 -1024 128 ) ( -1312 -1024 128 ) ( -1312 -1024 -32 ) bricks/c_sr_mb2 -17 0 0 1 1 0 0 0 +( -1280 -1024 128 ) ( -1280 -1088 128 ) ( -1280 -1088 -32 ) bricks/c_sr_mb2 64 0 0 1 1 0 0 0 +( -1280 -1088 128 ) ( -1256 -1088 128 ) ( -1268 -1024 128 ) bricks/c_sr_mb2 0 -64 0 1 1 0 0 0 +} +// brush 4498 +{ +( -1312 -1024 128 ) ( -1360 -1024 128 ) ( -1360 -1088 128 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +( -1360 -1088 168 ) ( -1360 -1024 168 ) ( -1312 -1024 168 ) bricks/c_sr_mb1b 128 -64 0 1 1 0 0 0 +( -1360 -1088 128 ) ( -1312 -1088 128 ) ( -1312 -1088 -32 ) bricks/c_sr_mb1b 176 0 0 1 1 0 0 0 +( -1312 -1088 128 ) ( -1312 -1024 128 ) ( -1312 -1024 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +( -1312 -1024 128 ) ( -1360 -1024 128 ) ( -1360 -1024 -32 ) bricks/c_sr_mb1b 176 0 0 1 1 0 0 0 +( -1328 -1024 128 ) ( -1328 -1088 128 ) ( -1328 -1088 -32 ) bricks/c_sr_mb1b 192 0 0 1 1 0 0 0 +} +// brush 4499 +{ +( -2976 -432 112 ) ( -2848 -432 112 ) ( -2848 -64 112 ) bricks/c_sr_mr5 0 17 -180 1 1 0 0 0 +( -2848 -64 128 ) ( -2848 -432 128 ) ( -2976 -432 128 ) bricks/c_sr_mr5 72 -10 168 0.999819 -1.000035 0 0 0 +( -2980 -402 96 ) ( -2980 -402 256 ) ( -2984 -416 256 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -2828 -448 256 ) ( -2828 -448 96 ) ( -2984 -416 96 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -2826 -432 256 ) ( -2826 -432 96 ) ( -2828 -448 96 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -2980 -402 256 ) ( -2980 -402 96 ) ( -2826 -432 96 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +} +// brush 4500 +{ +( -3132 -400 112 ) ( -3004 -400 112 ) ( -3004 -32 112 ) bricks/c_sr_mr5 0 17 -180 1 1 0 0 0 +( -3004 -32 128 ) ( -3004 -400 128 ) ( -3132 -400 128 ) bricks/c_sr_mr5 14 -2 158 1 -1 0 0 0 +( -3116 -360 256 ) ( -3116 -360 96 ) ( -3110 -348 96 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3116 -360 96 ) ( -3116 -360 256 ) ( -2984 -416 256 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -2980 -402 256 ) ( -2980 -402 96 ) ( -2984 -416 96 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3110 -348 256 ) ( -3110 -348 96 ) ( -2980 -402 96 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +} +// brush 4501 +{ +( -3264 -344 112 ) ( -3136 -344 112 ) ( -3136 24 112 ) bricks/c_sr_mr5 0 17 -180 1 1 0 0 0 +( -3136 24 128 ) ( -3136 -344 128 ) ( -3264 -344 128 ) bricks/c_sr_mr5 83 -14 147 0.999915 -1.000017 0 0 0 +( -3232 -270 96 ) ( -3232 -270 256 ) ( -3240 -280 256 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3116 -360 256 ) ( -3116 -360 96 ) ( -3240 -280 96 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3110 -348 256 ) ( -3110 -348 96 ) ( -3116 -360 96 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3232 -270 256 ) ( -3232 -270 96 ) ( -3110 -348 96 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +} +// brush 4502 +{ +( -3416 -192 128 ) ( -3416 -64 128 ) ( -3048 -64 128 ) bricks/c_sr_mr5 69 -28 123 1 -1 0 0 0 +( -3048 -64 112 ) ( -3416 -64 112 ) ( -3416 -192 112 ) bricks/c_sr_mr5 0 17 -180 1 1 0 0 0 +( -3342 -160 144 ) ( -3342 -160 -16 ) ( -3352 -168 -16 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3432 -44 -16 ) ( -3432 -44 144 ) ( -3352 -168 144 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3420 -38 -16 ) ( -3420 -38 144 ) ( -3432 -44 144 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3342 -160 -16 ) ( -3342 -160 144 ) ( -3420 -38 144 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +} +// brush 4503 +{ +( -3472 -60 128 ) ( -3472 68 128 ) ( -3104 68 128 ) bricks/c_sr_mr5 33 -19 113 1.000031 -0.999919 0 0 0 +( -3104 68 112 ) ( -3472 68 112 ) ( -3472 -60 112 ) bricks/c_sr_mr5 0 17 -180 1 1 0 0 0 +( -3432 -44 -16 ) ( -3432 -44 144 ) ( -3420 -38 144 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3432 -44 144 ) ( -3432 -44 -16 ) ( -3488 88 -16 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3474 92 -16 ) ( -3474 92 144 ) ( -3488 88 144 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3420 -38 -16 ) ( -3420 -38 144 ) ( -3474 92 144 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +} +// brush 4504 +{ +( -3504 96 128 ) ( -3504 224 128 ) ( -3136 224 128 ) bricks/c_sr_mr5 -53 -12 -78 0.999962 1.000059 0 0 0 +( -3136 224 112 ) ( -3504 224 112 ) ( -3504 96 112 ) bricks/c_sr_mr5 0 17 -180 1 1 0 0 0 +( -3474 92 144 ) ( -3474 92 -16 ) ( -3488 88 -16 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3520 244 -16 ) ( -3520 244 144 ) ( -3488 88 144 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3504 246 -16 ) ( -3504 246 144 ) ( -3520 244 144 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3474 92 -16 ) ( -3474 92 144 ) ( -3504 246 144 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +} +// brush 4505 +{ +( -3294 -278 112 ) ( -3240 -278 112 ) ( -3240 -194 112 ) bricks/c_sr_mr5 0 17 -180 1 1 0 0 0 +( -3240 -194 128 ) ( -3240 -278 128 ) ( -3294 -278 128 ) bricks/c_sr_mr5 38 -14 135 1.000066 -1.000066 0 0 0 +( -3352 -168 128 ) ( -3352 -168 112 ) ( -3342 -160 112 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3352 -168 112 ) ( -3352 -168 128 ) ( -3240 -280 128 ) bricks/c_sr_mr5 -32 -16 -180 1 -1 0 0 0 +( -3240 -280 112 ) ( -3240 -280 128 ) ( -3232 -270 128 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3288 -214 128 ) ( -3288 -214 112 ) ( -3232 -270 112 ) bricks/c_sr_mr5 -69 -16 -180 1 -1 0 0 0 +} +// brush 4506 +{ +( -2976 -432 112 ) ( -2848 -432 112 ) ( -2848 -64 112 ) bricks/c_sr_mr5 0 17 -180 1 1 0 0 0 +( -2848 -64 128 ) ( -2848 -432 128 ) ( -2976 -432 128 ) bricks/c_sr_mr5 0 18 169 1 1 0 0 0 +( -2868 -48 256 ) ( -2868 -48 96 ) ( -2792 -64 96 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -2868 -48 96 ) ( -2868 -48 256 ) ( -2872 -64 256 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -2790 -48 256 ) ( -2790 -48 240 ) ( -2792 -64 240 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -2872 -64 96 ) ( -2872 -64 256 ) ( -2794 -80 256 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4507 +{ +( -3132 -400 112 ) ( -3004 -400 112 ) ( -3004 -32 112 ) bricks/c_sr_mr5 0 17 -180 1 1 0 0 0 +( -3004 -32 128 ) ( -3004 -400 128 ) ( -3132 -400 128 ) bricks/c_sr_mr5 0 -7 156 1 1 0 0 0 +( -2932 -20 256 ) ( -2932 -20 96 ) ( -2868 -48 96 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -2940 -34 256 ) ( -2940 -34 96 ) ( -2932 -20 96 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -2872 -64 96 ) ( -2872 -64 256 ) ( -2868 -48 256 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -2872 -64 256 ) ( -2872 -64 96 ) ( -2940 -34 96 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4508 +{ +( -3264 -344 112 ) ( -3136 -344 112 ) ( -3136 24 112 ) bricks/c_sr_mr5 0 17 -180 1 1 0 0 0 +( -3136 24 128 ) ( -3136 -344 128 ) ( -3264 -344 128 ) bricks/c_sr_mr5 0 12 147 1 1 0 0 0 +( -3000 24 256 ) ( -3000 24 96 ) ( -2932 -20 96 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3010 12 256 ) ( -3010 12 96 ) ( -3000 24 96 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -2940 -34 96 ) ( -2940 -34 256 ) ( -2932 -20 256 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3010 12 96 ) ( -3010 12 256 ) ( -2940 -34 256 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4509 +{ +( -3416 -192 128 ) ( -3416 -64 128 ) ( -3048 -64 128 ) bricks/c_sr_mr5 0 -15 122 1 1 0 0 0 +( -3048 -64 112 ) ( -3416 -64 112 ) ( -3416 -192 112 ) bricks/c_sr_mr5 0 17 -180 1 1 0 0 0 +( -3048 72 -16 ) ( -3048 72 144 ) ( -3092 140 144 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3060 62 -16 ) ( -3060 62 144 ) ( -3048 72 144 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3106 132 144 ) ( -3106 132 -16 ) ( -3092 140 -16 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3060 62 144 ) ( -3060 62 -16 ) ( -3106 132 -16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4510 +{ +( -3472 -60 128 ) ( -3472 68 128 ) ( -3104 68 128 ) bricks/c_sr_mr5 0 6 113 1 1 0 0 0 +( -3104 68 112 ) ( -3472 68 112 ) ( -3472 -60 112 ) bricks/c_sr_mr5 0 17 -180 1 1 0 0 0 +( -3092 140 -16 ) ( -3092 140 144 ) ( -3120 204 144 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3106 132 -16 ) ( -3106 132 144 ) ( -3092 140 144 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3136 200 144 ) ( -3136 200 -16 ) ( -3120 204 -16 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3136 200 -16 ) ( -3136 200 144 ) ( -3106 132 144 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4511 +{ +( -3504 96 128 ) ( -3504 224 128 ) ( -3136 224 128 ) bricks/c_sr_mr5 0 -17 101 1 1 0 0 0 +( -3136 224 112 ) ( -3504 224 112 ) ( -3504 96 112 ) bricks/c_sr_mr5 0 17 -180 1 1 0 0 0 +( -3120 204 -16 ) ( -3120 204 144 ) ( -3136 280 144 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3120 204 144 ) ( -3120 204 -16 ) ( -3136 200 -16 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3120 282 -16 ) ( -3120 282 0 ) ( -3136 280 0 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3136 200 144 ) ( -3136 200 -16 ) ( -3152 278 -16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4512 +{ +( -3048 12 112 ) ( -3010 12 112 ) ( -3010 72 112 ) bricks/c_sr_mr5 0 17 -180 1 1 0 0 0 +( -3010 72 128 ) ( -3010 12 128 ) ( -3048 12 128 ) bricks/c_sr_mr5 0 23 135 1 1 0 0 0 +( -3000 24 112 ) ( -3000 24 128 ) ( -3048 72 128 ) bricks/c_sr_mr5 -96 -16 -180 1 -1 0 0 0 +( -3060 62 128 ) ( -3060 62 112 ) ( -3048 72 112 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -3060 62 112 ) ( -3060 62 128 ) ( -3010 12 128 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -3000 24 128 ) ( -3000 24 112 ) ( -3010 12 112 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +} +// brush 4513 +{ +( -2828 -448 320 ) ( -2825 -416 320 ) ( -2752 -416 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2480 -448 320 ) ( -2128 -448 320 ) ( -2128 -448 304 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2752 -416 320 ) ( -2825 -416 320 ) ( -2828 -448 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2752 -416 288 ) ( -2752 -448 288 ) ( -2752 -432 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2828 -448 288 ) ( -2825 -416 320 ) ( -2828 -448 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4514 +{ +( -3488 320 320 ) ( -3488 247 320 ) ( -3520 244 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 944 304 ) ( -3520 944 320 ) ( -3520 592 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 244 288 ) ( -3488 247 320 ) ( -3488 320 320 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3504 320 320 ) ( -3520 320 288 ) ( -3488 320 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -3520 244 320 ) ( -3488 247 320 ) ( -3520 244 288 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4515 +{ +( -3488 247 320 ) ( -3520 244 288 ) ( -3457 98 320 ) bricks/c_tn_m1 0 0 282 1 1 0 0 0 +( -3520 244 336 ) ( -3520 244 288 ) ( -3488 247 320 ) bricks/c_tn_m1 0 0 282 1 1 0 0 0 +( -3457 98 320 ) ( -3520 244 288 ) ( -3520 244 336 ) bricks/c_tn_m1 0 0 282 1 1 0 0 0 +( -3296 247 320 ) ( -3240 247 320 ) ( -3268 98 320 ) bricks/c_tn_m1 0 0 282 1 1 0 0 0 +} +// brush 4516 +{ +( -3520 244 288 ) ( -3488 88 288 ) ( -3457 98 320 ) bricks/c_tn_m1 0 0 282 1 1 0 0 0 +( -3457 98 320 ) ( -3488 88 288 ) ( -3488 88 336 ) bricks/c_tn_m1 0 0 282 1 1 0 0 0 +( -3488 88 336 ) ( -3488 88 288 ) ( -3520 244 288 ) bricks/c_tn_m1 0 0 282 1 1 0 0 0 +( -3520 244 336 ) ( -3520 244 288 ) ( -3457 98 320 ) bricks/c_tn_m1 0 0 282 1 1 0 0 0 +( -3296 244 320 ) ( -3240 244 320 ) ( -3268 88 320 ) bricks/c_tn_m1 0 0 282 1 1 0 0 0 +} +// brush 4517 +{ +( -3457 98 320 ) ( -3488 88 288 ) ( -3403 -28 320 ) bricks/c_tn_m1 0 -7 293 1 1 0 0 0 +( -3488 88 336 ) ( -3488 88 288 ) ( -3457 98 320 ) bricks/c_tn_m1 0 -7 293 1 1 0 0 0 +( -3403 -28 320 ) ( -3488 88 288 ) ( -3488 88 336 ) bricks/c_tn_m1 0 -7 293 1 1 0 0 0 +( -3296 98 320 ) ( -3240 98 320 ) ( -3268 -28 320 ) bricks/c_tn_m1 0 -7 293 1 1 0 0 0 +} +// brush 4518 +{ +( -3488 88 288 ) ( -3432 -44 288 ) ( -3403 -28 320 ) bricks/c_tn_m1 0 -7 293 1 1 0 0 0 +( -3403 -28 320 ) ( -3432 -44 288 ) ( -3432 -44 336 ) bricks/c_tn_m1 0 -7 293 1 1 0 0 0 +( -3432 -44 336 ) ( -3432 -44 288 ) ( -3488 88 288 ) bricks/c_tn_m1 0 -7 293 1 1 0 0 0 +( -3488 88 336 ) ( -3488 88 288 ) ( -3403 -28 320 ) bricks/c_tn_m1 0 -7 293 1 1 0 0 0 +( -3296 88 320 ) ( -3240 88 320 ) ( -3268 -44 320 ) bricks/c_tn_m1 0 -7 293 1 1 0 0 0 +} +// brush 4519 +{ +( -3352 -168 288 ) ( -3240 -280 288 ) ( -3326 -147 320 ) bricks/c_tn_m1 79 8 315 1 1 0 0 0 +( -3352 -168 336 ) ( -3352 -168 288 ) ( -3326 -147 320 ) bricks/c_tn_m1 79 8 315 1 1 0 0 0 +( -3240 -280 336 ) ( -3240 -280 288 ) ( -3352 -168 288 ) bricks/c_tn_m1 79 8 315 1 1 0 0 0 +( -3326 -147 320 ) ( -3240 -280 288 ) ( -3240 -280 336 ) bricks/c_tn_m1 79 8 315 1 1 0 0 0 +( -3296 -147 320 ) ( -3240 -147 320 ) ( -3268 -280 320 ) bricks/c_tn_m1 79 8 315 1 1 0 0 0 +} +// brush 4520 +{ +( -3326 -147 320 ) ( -3240 -280 288 ) ( -3219 -254 320 ) bricks/c_tn_m1 79 8 315 1 1 0 0 0 +( -3219 -254 320 ) ( -3240 -280 288 ) ( -3240 -280 336 ) bricks/c_tn_m1 79 8 315 1 1 0 0 0 +( -3240 -280 336 ) ( -3240 -280 288 ) ( -3326 -147 320 ) bricks/c_tn_m1 79 8 315 1 1 0 0 0 +( -3296 -147 320 ) ( -3240 -147 320 ) ( -3268 -280 320 ) bricks/c_tn_m1 79 8 315 1 1 0 0 0 +} +// brush 4521 +{ +( -3100 -331 320 ) ( -3116 -360 288 ) ( -2984 -416 288 ) bricks/c_tn_m1 -135 -12 337 1 1 0 0 0 +( -3116 -360 336 ) ( -3116 -360 288 ) ( -3100 -331 320 ) bricks/c_tn_m1 -135 -12 337 1 1 0 0 0 +( -2984 -416 288 ) ( -3116 -360 288 ) ( -3116 -360 336 ) bricks/c_tn_m1 -135 -12 337 1 1 0 0 0 +( -3100 -331 320 ) ( -2984 -416 288 ) ( -2984 -416 336 ) bricks/c_tn_m1 -135 -12 337 1 1 0 0 0 +( -3296 -331 320 ) ( -3240 -331 320 ) ( -3268 -416 320 ) bricks/c_tn_m1 -135 -12 337 1 1 0 0 0 +} +// brush 4522 +{ +( -3100 -331 320 ) ( -2984 -416 288 ) ( -2974 -385 320 ) bricks/c_tn_m1 -135 -12 337 1 1 0 0 0 +( -2974 -385 320 ) ( -2984 -416 288 ) ( -2984 -416 336 ) bricks/c_tn_m1 -135 -12 337 1 1 0 0 0 +( -2984 -416 336 ) ( -2984 -416 288 ) ( -3100 -331 320 ) bricks/c_tn_m1 -135 -12 337 1 1 0 0 0 +( -3296 -331 320 ) ( -3240 -331 320 ) ( -3268 -416 320 ) bricks/c_tn_m1 -135 -12 337 1 1 0 0 0 +} +// brush 4523 +{ +( -2974 -385 320 ) ( -2984 -416 288 ) ( -2828 -448 288 ) bricks/c_tn_m1 109 -2 348 1 1 0 0 0 +( -2984 -416 336 ) ( -2984 -416 288 ) ( -2974 -385 320 ) bricks/c_tn_m1 109 -2 348 1 1 0 0 0 +( -2828 -448 288 ) ( -2984 -416 288 ) ( -2984 -416 336 ) bricks/c_tn_m1 109 -2 348 1 1 0 0 0 +( -2974 -385 320 ) ( -2828 -448 288 ) ( -2828 -448 336 ) bricks/c_tn_m1 109 -2 348 1 1 0 0 0 +( -3296 -385 320 ) ( -3240 -385 320 ) ( -3268 -448 320 ) bricks/c_tn_m1 109 -2 348 1 1 0 0 0 +} +// brush 4524 +{ +( -2974 -385 320 ) ( -2828 -448 288 ) ( -2825 -416 320 ) bricks/c_tn_m1 109 -2 348 1 1 0 0 0 +( -2825 -416 320 ) ( -2828 -448 288 ) ( -2828 -448 336 ) bricks/c_tn_m1 109 -2 348 1 1 0 0 0 +( -2828 -448 336 ) ( -2828 -448 288 ) ( -2974 -385 320 ) bricks/c_tn_m1 109 -2 348 1 1 0 0 0 +( -3296 -385 320 ) ( -3240 -385 320 ) ( -3268 -448 320 ) bricks/c_tn_m1 109 -2 348 1 1 0 0 0 +} +// brush 4525 +{ +( -2752 -96 320 ) ( -2795 -96 320 ) ( -2792 -64 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2792 -64 320 ) ( -2792 -64 288 ) ( -2752 -64 288 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2792 -64 288 ) ( -2795 -96 320 ) ( -2752 -96 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2752 -80 320 ) ( -2752 -64 288 ) ( -2752 -96 288 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2792 -64 320 ) ( -2795 -96 320 ) ( -2792 -64 288 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4526 +{ +( -3136 280 320 ) ( -3168 277 320 ) ( -3168 320 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 320 288 ) ( -3136 280 288 ) ( -3136 280 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3168 320 320 ) ( -3168 277 320 ) ( -3136 280 288 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3168 320 288 ) ( -3136 320 288 ) ( -3152 320 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +( -3136 280 288 ) ( -3168 277 320 ) ( -3136 280 320 ) bricks/c_tn_m1 0 0 90 1 1 0 0 0 +} +// brush 4527 +{ +( -3151 194 320 ) ( -3136 280 288 ) ( -3168 277 320 ) bricks/c_tn_m1 0 17 101 1 1 0 0 0 +( -3168 277 320 ) ( -3136 280 288 ) ( -3136 280 336 ) bricks/c_tn_m1 0 17 101 1 1 0 0 0 +( -3136 280 336 ) ( -3136 280 288 ) ( -3151 194 320 ) bricks/c_tn_m1 0 17 101 1 1 0 0 0 +( -3136 184 320 ) ( -3136 160 320 ) ( -3168 172 320 ) bricks/c_tn_m1 0 17 101 1 1 0 0 0 +} +// brush 4528 +{ +( -3151 194 320 ) ( -3120 204 288 ) ( -3136 280 288 ) bricks/c_tn_m1 0 17 101 1 1 0 0 0 +( -3136 280 288 ) ( -3120 204 288 ) ( -3120 204 336 ) bricks/c_tn_m1 0 17 101 1 1 0 0 0 +( -3120 204 336 ) ( -3120 204 288 ) ( -3151 194 320 ) bricks/c_tn_m1 0 17 101 1 1 0 0 0 +( -3151 194 336 ) ( -3151 194 320 ) ( -3136 280 288 ) bricks/c_tn_m1 0 17 101 1 1 0 0 0 +( -3120 184 320 ) ( -3120 160 320 ) ( -3151 172 320 ) bricks/c_tn_m1 0 17 101 1 1 0 0 0 +} +// brush 4529 +{ +( -3120 125 320 ) ( -3120 204 288 ) ( -3151 194 320 ) bricks/c_tn_m1 0 16 114 1 1 0 0 0 +( -3151 194 320 ) ( -3120 204 288 ) ( -3120 204 336 ) bricks/c_tn_m1 0 16 114 1 1 0 0 0 +( -3120 204 336 ) ( -3120 204 288 ) ( -3120 125 320 ) bricks/c_tn_m1 0 16 114 1 1 0 0 0 +( -3120 184 320 ) ( -3120 160 320 ) ( -3151 172 320 ) bricks/c_tn_m1 0 16 114 1 1 0 0 0 +} +// brush 4530 +{ +( -3120 125 320 ) ( -3092 140 288 ) ( -3120 204 288 ) bricks/c_tn_m1 0 16 114 1 1 0 0 0 +( -3120 204 288 ) ( -3092 140 288 ) ( -3092 140 336 ) bricks/c_tn_m1 0 16 114 1 1 0 0 0 +( -3092 140 336 ) ( -3092 140 288 ) ( -3120 125 320 ) bricks/c_tn_m1 0 16 114 1 1 0 0 0 +( -3120 125 320 ) ( -3120 204 288 ) ( -3120 204 336 ) bricks/c_tn_m1 0 16 114 1 1 0 0 0 +( -3092 184 320 ) ( -3092 160 320 ) ( -3120 172 320 ) bricks/c_tn_m1 0 16 114 1 1 0 0 0 +} +// brush 4531 +{ +( -3073 52 320 ) ( -3092 140 288 ) ( -3120 125 320 ) bricks/c_tn_m1 0 -11 123 1 1 0 0 0 +( -3120 125 320 ) ( -3092 140 288 ) ( -3092 140 336 ) bricks/c_tn_m1 0 -11 123 1 1 0 0 0 +( -3092 140 336 ) ( -3092 140 288 ) ( -3073 52 320 ) bricks/c_tn_m1 0 -11 123 1 1 0 0 0 +( -3073 184 320 ) ( -3073 160 320 ) ( -3120 172 320 ) bricks/c_tn_m1 0 -11 123 1 1 0 0 0 +} +// brush 4532 +{ +( -3073 52 320 ) ( -3048 72 288 ) ( -3092 140 288 ) bricks/c_tn_m1 0 -11 123 1 1 0 0 0 +( -3092 140 288 ) ( -3048 72 288 ) ( -3048 72 336 ) bricks/c_tn_m1 0 -11 123 1 1 0 0 0 +( -3048 72 336 ) ( -3048 72 288 ) ( -3073 52 320 ) bricks/c_tn_m1 0 -11 123 1 1 0 0 0 +( -3073 52 320 ) ( -3092 140 288 ) ( -3092 140 336 ) bricks/c_tn_m1 0 -11 123 1 1 0 0 0 +( -3048 184 320 ) ( -3048 160 320 ) ( -3092 172 320 ) bricks/c_tn_m1 0 -11 123 1 1 0 0 0 +} +// brush 4533 +{ +( -2932 -20 288 ) ( -3000 24 288 ) ( -3020 -1 320 ) bricks/c_tn_m1 0 13 147 1 1 0 0 0 +( -3000 24 336 ) ( -3000 24 288 ) ( -2932 -20 288 ) bricks/c_tn_m1 0 13 147 1 1 0 0 0 +( -3020 -1 320 ) ( -3000 24 288 ) ( -3000 24 336 ) bricks/c_tn_m1 0 13 147 1 1 0 0 0 +( -2932 -20 336 ) ( -2932 -20 288 ) ( -3020 -1 320 ) bricks/c_tn_m1 0 13 147 1 1 0 0 0 +( -2932 184 320 ) ( -2932 160 320 ) ( -3020 172 320 ) bricks/c_tn_m1 0 13 147 1 1 0 0 0 +} +// brush 4534 +{ +( -2947 -48 320 ) ( -2932 -20 288 ) ( -3020 -1 320 ) bricks/c_tn_m1 0 13 147 1 1 0 0 0 +( -2932 -20 336 ) ( -2932 -20 288 ) ( -2947 -48 320 ) bricks/c_tn_m1 0 13 147 1 1 0 0 0 +( -3020 -1 320 ) ( -2932 -20 288 ) ( -2932 -20 336 ) bricks/c_tn_m1 0 13 147 1 1 0 0 0 +( -2932 184 320 ) ( -2932 160 320 ) ( -3020 172 320 ) bricks/c_tn_m1 0 13 147 1 1 0 0 0 +} +// brush 4535 +{ +( -2868 -48 288 ) ( -2932 -20 288 ) ( -2947 -48 320 ) bricks/c_tn_m1 0 -6 156 1 1 0 0 0 +( -2932 -20 336 ) ( -2932 -20 288 ) ( -2868 -48 288 ) bricks/c_tn_m1 0 -6 156 1 1 0 0 0 +( -2947 -48 320 ) ( -2932 -20 288 ) ( -2932 -20 336 ) bricks/c_tn_m1 0 -6 156 1 1 0 0 0 +( -2868 -48 336 ) ( -2868 -48 288 ) ( -2947 -48 320 ) bricks/c_tn_m1 0 -6 156 1 1 0 0 0 +( -2868 184 320 ) ( -2868 160 320 ) ( -2947 172 320 ) bricks/c_tn_m1 0 -6 156 1 1 0 0 0 +} +// brush 4536 +{ +( -2878 -79 320 ) ( -2868 -48 288 ) ( -2947 -48 320 ) bricks/c_tn_m1 0 -6 156 1 1 0 0 0 +( -2868 -48 336 ) ( -2868 -48 288 ) ( -2878 -79 320 ) bricks/c_tn_m1 0 -6 156 1 1 0 0 0 +( -2947 -48 320 ) ( -2868 -48 288 ) ( -2868 -48 336 ) bricks/c_tn_m1 0 -6 156 1 1 0 0 0 +( -2868 184 320 ) ( -2868 160 320 ) ( -2947 172 320 ) bricks/c_tn_m1 0 -6 156 1 1 0 0 0 +} +// brush 4537 +{ +( -2792 -64 288 ) ( -2868 -48 288 ) ( -2878 -79 320 ) bricks/c_tn_m1 0 3 168 1 1 0 0 0 +( -2868 -48 336 ) ( -2868 -48 288 ) ( -2792 -64 288 ) bricks/c_tn_m1 0 3 168 1 1 0 0 0 +( -2878 -79 320 ) ( -2868 -48 288 ) ( -2868 -48 336 ) bricks/c_tn_m1 0 3 168 1 1 0 0 0 +( -2792 -64 288 ) ( -2878 -79 320 ) ( -2878 -79 336 ) bricks/c_tn_m1 0 3 168 1 1 0 0 0 +( -2792 184 320 ) ( -2792 160 320 ) ( -2878 172 320 ) bricks/c_tn_m1 0 3 168 1 1 0 0 0 +} +// brush 4538 +{ +( -2795 -96 320 ) ( -2792 -64 288 ) ( -2878 -79 320 ) bricks/c_tn_m1 0 3 168 1 1 0 0 0 +( -2792 -64 336 ) ( -2792 -64 288 ) ( -2795 -96 320 ) bricks/c_tn_m1 0 3 168 1 1 0 0 0 +( -2878 -79 320 ) ( -2792 -64 288 ) ( -2792 -64 336 ) bricks/c_tn_m1 0 3 168 1 1 0 0 0 +( -2792 184 320 ) ( -2792 160 320 ) ( -2878 172 320 ) bricks/c_tn_m1 0 3 168 1 1 0 0 0 +} +// brush 4539 +{ +( -2828 -448 320 ) ( -2828 -448 336 ) ( -2752 -448 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2984 -416 320 ) ( -2984 -416 336 ) ( -2828 -448 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3116 -360 320 ) ( -3116 -360 336 ) ( -2984 -416 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3240 -280 320 ) ( -3240 -280 336 ) ( -3116 -360 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3352 -168 320 ) ( -3352 -168 336 ) ( -3240 -280 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3432 -44 320 ) ( -3432 -44 336 ) ( -3352 -168 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3488 88 320 ) ( -3488 88 336 ) ( -3432 -44 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3488 88 336 ) ( -3488 88 320 ) ( -3520 244 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3520 244 336 ) ( -3520 244 320 ) ( -3520 320 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1984 1088 320 ) ( -3520 1088 320 ) ( -3520 -448 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3520 -448 336 ) ( -3520 1088 336 ) ( -1984 1088 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2752 -200 272 ) ( -2752 -256 272 ) ( -2752 -228 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3416 320 272 ) ( -3352 320 272 ) ( -3384 320 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -3136 320 320 ) ( -2752 -64 320 ) ( -2944 128 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4540 +{ +( -2828 -448 96 ) ( -2828 -448 112 ) ( -2752 -448 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2984 -416 96 ) ( -2984 -416 112 ) ( -2828 -448 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3116 -360 96 ) ( -3116 -360 112 ) ( -2984 -416 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3240 -280 96 ) ( -3240 -280 112 ) ( -3116 -360 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3352 -168 96 ) ( -3352 -168 112 ) ( -3240 -280 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3432 -44 96 ) ( -3432 -44 112 ) ( -3352 -168 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3488 88 96 ) ( -3488 88 112 ) ( -3432 -44 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3488 88 112 ) ( -3488 88 96 ) ( -3520 244 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3520 244 112 ) ( -3520 244 96 ) ( -3520 320 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1984 1088 96 ) ( -3520 1088 96 ) ( -3520 -448 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3520 -448 112 ) ( -3520 1088 112 ) ( -1984 1088 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2752 -200 48 ) ( -2752 -256 48 ) ( -2752 -228 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3416 320 48 ) ( -3352 320 48 ) ( -3384 320 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -3136 320 96 ) ( -2752 -64 96 ) ( -2944 128 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 4541 +{ +( -2004 -64 96 ) ( -2004 -64 112 ) ( -2080 -64 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1848 -96 96 ) ( -1848 -96 112 ) ( -2004 -64 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1716 -152 96 ) ( -1716 -152 112 ) ( -1848 -96 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1592 -232 96 ) ( -1592 -232 112 ) ( -1716 -152 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1480 -344 96 ) ( -1480 -344 112 ) ( -1592 -232 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1400 -468 96 ) ( -1400 -468 112 ) ( -1480 -344 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1344 -600 96 ) ( -1344 -600 112 ) ( -1400 -468 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1344 -600 112 ) ( -1344 -600 96 ) ( -1312 -756 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1312 -756 112 ) ( -1312 -756 96 ) ( -1312 -832 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2848 -1600 96 ) ( -1312 -1600 96 ) ( -1312 -64 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1312 -64 112 ) ( -1312 -1600 112 ) ( -2848 -1600 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2080 -312 48 ) ( -2080 -256 48 ) ( -2080 -284 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1416 -832 48 ) ( -1480 -832 48 ) ( -1448 -832 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1696 -832 96 ) ( -2080 -448 96 ) ( -1888 -640 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 4542 +{ +( -2080 -48 320 ) ( -2248 -48 320 ) ( -2248 -464 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2248 -464 336 ) ( -2248 -48 336 ) ( -2080 -48 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2248 -464 336 ) ( -2080 -464 336 ) ( -2080 -464 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2080 -464 336 ) ( -2080 -48 336 ) ( -2080 -48 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2080 -48 336 ) ( -2248 -48 336 ) ( -2248 -48 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2752 -48 336 ) ( -2752 -464 336 ) ( -2752 -464 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4543 +{ +( -2080 -432 112 ) ( -2752 -432 112 ) ( -2752 -448 112 ) bricks/c_sr_mr5 32 0 0 1 1 0 0 0 +( -2752 -448 128 ) ( -2752 -432 128 ) ( -2080 -432 128 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +( -2828 -448 112 ) ( -2828 -448 128 ) ( -2080 -448 128 ) bricks/c_sr_mr5 32 0 0 1 1 0 0 0 +( -2038 -432 128 ) ( -2038 -432 112 ) ( -2040 -448 112 ) bricks/c_sr_mr5 96 0 0 1 1 0 0 0 +( -2038 -432 112 ) ( -2038 -432 128 ) ( -2826 -432 128 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2828 -448 128 ) ( -2828 -448 112 ) ( -2826 -432 112 ) bricks/c_sr_mr5 96 0 0 1 1 0 0 0 +} +// brush 4544 +{ +( -2080 -64 112 ) ( -2752 -64 112 ) ( -2752 -80 112 ) bricks/c_sr_mr5 32 0 180 -1 1 0 0 0 +( -2752 -80 128 ) ( -2752 -64 128 ) ( -2080 -64 128 ) bricks/c_sr_mr5 0 -1 180 1 1 0 0 0 +( -2794 -80 112 ) ( -2794 -80 128 ) ( -2080 -80 128 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -2004 -64 128 ) ( -2004 -64 112 ) ( -2006 -80 112 ) bricks/c_sr_mr5 96 -31 180 -1 1 0 0 0 +( -2004 -64 112 ) ( -2004 -64 128 ) ( -2792 -64 128 ) bricks/c_sr_mr5 32 -31 180 -1 1 0 0 0 +( -2794 -80 128 ) ( -2794 -80 112 ) ( -2792 -64 112 ) bricks/c_sr_mr5 96 -31 180 -1 1 0 0 0 +} +// brush 4545 +{ +( -2080 -64 96 ) ( -2368 -64 96 ) ( -2368 -448 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2368 -448 112 ) ( -2368 -64 112 ) ( -2080 -64 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2368 -448 112 ) ( -2080 -448 112 ) ( -2080 -448 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2080 -448 112 ) ( -2080 -64 112 ) ( -2080 -64 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2080 -64 112 ) ( -2368 -64 112 ) ( -2368 -64 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2752 -136 112 ) ( -2752 -520 112 ) ( -2752 -520 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 4546 +{ +( -1712 -2240 192 ) ( -880 -2240 192 ) ( -880 -2112 200 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -880 -2240 208 ) ( -1712 -2240 208 ) ( -1712 -2112 216 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1272 -2240 208 ) ( -856 -2240 208 ) ( -856 -2240 192 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -880 -2240 192 ) ( -880 -2240 208 ) ( -880 -2112 216 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -888 -2112 216 ) ( -1304 -2112 216 ) ( -1304 -2112 200 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1712 -2240 208 ) ( -1712 -2240 192 ) ( -1712 -2112 200 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4547 +{ +( -1712 -2112 200 ) ( -880 -2112 200 ) ( -880 -1984 216 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -880 -2112 216 ) ( -1712 -2112 216 ) ( -1712 -1984 232 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1272 -2112 216 ) ( -856 -2112 216 ) ( -856 -2112 200 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -880 -2112 200 ) ( -880 -2112 216 ) ( -880 -1984 232 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -888 -1984 232 ) ( -1304 -1984 232 ) ( -1304 -1984 216 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1712 -2112 216 ) ( -1712 -2112 200 ) ( -1712 -1984 216 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4548 +{ +( -1712 -1984 216 ) ( -880 -1984 216 ) ( -880 -1856 240 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -880 -1984 232 ) ( -1712 -1984 232 ) ( -1712 -1856 256 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1272 -1984 232 ) ( -856 -1984 232 ) ( -856 -1984 216 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -880 -1984 216 ) ( -880 -1984 232 ) ( -880 -1856 256 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -888 -1856 256 ) ( -1304 -1856 256 ) ( -1304 -1856 240 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1712 -1984 232 ) ( -1712 -1984 216 ) ( -1712 -1856 240 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4549 +{ +( -1712 -1856 240 ) ( -880 -1856 240 ) ( -880 -1728 272 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -880 -1856 256 ) ( -1712 -1856 256 ) ( -1712 -1728 288 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1272 -1856 256 ) ( -856 -1856 256 ) ( -856 -1856 240 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -880 -1856 240 ) ( -880 -1856 256 ) ( -880 -1728 288 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -888 -1728 288 ) ( -1304 -1728 288 ) ( -1304 -1728 272 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1712 -1856 256 ) ( -1712 -1856 240 ) ( -1712 -1728 272 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4550 +{ +( -1712 -1728 272 ) ( -880 -1728 272 ) ( -880 -1600 296 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -880 -1728 288 ) ( -1712 -1728 288 ) ( -1712 -1600 312 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1272 -1728 288 ) ( -856 -1728 288 ) ( -856 -1728 272 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -880 -1728 272 ) ( -880 -1728 288 ) ( -880 -1600 312 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -888 -1600 312 ) ( -1304 -1600 312 ) ( -1304 -1600 296 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1712 -1728 288 ) ( -1712 -1728 272 ) ( -1712 -1600 296 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4551 +{ +( -1712 -1600 296 ) ( -880 -1600 296 ) ( -880 -1472 312 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -880 -1600 312 ) ( -1712 -1600 312 ) ( -1712 -1472 328 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1272 -1600 312 ) ( -856 -1600 312 ) ( -856 -1600 296 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -880 -1600 296 ) ( -880 -1600 312 ) ( -880 -1472 328 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -888 -1472 328 ) ( -1304 -1472 328 ) ( -1304 -1472 312 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1712 -1600 312 ) ( -1712 -1600 296 ) ( -1712 -1472 312 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4552 +{ +( -1712 -1472 312 ) ( -880 -1472 312 ) ( -880 -1344 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -880 -1472 328 ) ( -1712 -1472 328 ) ( -1712 -1344 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1272 -1472 328 ) ( -856 -1472 328 ) ( -856 -1472 312 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -880 -1472 312 ) ( -880 -1472 328 ) ( -880 -1344 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -888 -1344 336 ) ( -1304 -1344 336 ) ( -1304 -1344 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1712 -1472 328 ) ( -1712 -1472 312 ) ( -1712 -1344 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4553 +{ +( -1280 -2280 -32 ) ( -1296 -2280 -32 ) ( -1296 -2312 -32 ) bricks/c_sr_mb1b -191 53 270 1 1 0 0 0 +( -1296 -2312 0 ) ( -1296 -2280 0 ) ( -1280 -2280 0 ) bricks/c_sr_mr5 0 -2 180 1 1 0 0 0 +( -1284 -2320 0 ) ( -1284 -2320 -32 ) ( -1308 -2320 -32 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1308 -2320 0 ) ( -1308 -2320 -32 ) ( -1296 -2280 -32 ) bricks/c_sr_mb1b 0 -10 270 1 1 0 0 0 +( -1284 -2320 -32 ) ( -1284 -2320 0 ) ( -1296 -2280 0 ) bricks/c_sr_mb1b 0 -10 270 1 1 0 0 0 +} +// brush 4554 +{ +( -1280 -2240 -32 ) ( -1312 -2240 -32 ) ( -1312 -2304 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1312 -2304 40 ) ( -1312 -2240 40 ) ( -1280 -2240 40 ) bricks/c_sr_mb1a 0 0 90 0.500000 0.500000 0 0 0 +( -1312 -2304 48 ) ( -1280 -2304 48 ) ( -1280 -2304 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1280 -2280 -32 ) ( -1280 -2280 48 ) ( -1280 -2240 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1280 -2240 48 ) ( -1312 -2240 48 ) ( -1312 -2240 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1312 -2280 48 ) ( -1312 -2280 -32 ) ( -1312 -2240 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1312 -2280 -32 ) ( -1312 -2280 48 ) ( -1304 -2304 48 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1280 -2280 48 ) ( -1280 -2280 -32 ) ( -1288 -2304 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4555 +{ +( -1664 -2240 192 ) ( -1696 -2240 192 ) ( -1696 -2112 200 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -2240 192 ) ( -1696 -2240 160 ) ( -1696 -2112 168 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -2240 160 ) ( -1664 -2240 192 ) ( -1664 -2112 200 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1692 -2240 192 ) ( -1680 -2240 160 ) ( -1704 -2240 160 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -2112 168 ) ( -1672 -2112 168 ) ( -1684 -2112 200 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4556 +{ +( -1664 -1984 216 ) ( -1696 -1984 216 ) ( -1696 -1856 240 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1984 216 ) ( -1696 -1984 184 ) ( -1696 -1856 208 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1984 184 ) ( -1664 -1984 216 ) ( -1664 -1856 240 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1692 -1984 216 ) ( -1680 -1984 184 ) ( -1704 -1984 184 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1856 208 ) ( -1672 -1856 208 ) ( -1684 -1856 240 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4557 +{ +( -1664 -1856 240 ) ( -1696 -1856 240 ) ( -1696 -1728 272 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1856 240 ) ( -1696 -1856 208 ) ( -1696 -1728 240 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1856 208 ) ( -1664 -1856 240 ) ( -1664 -1728 272 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1692 -1856 240 ) ( -1680 -1856 208 ) ( -1704 -1856 208 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1728 240 ) ( -1672 -1728 240 ) ( -1684 -1728 272 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4558 +{ +( -1664 -1600 296 ) ( -1696 -1600 296 ) ( -1696 -1472 312 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1600 296 ) ( -1696 -1600 264 ) ( -1696 -1472 280 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1600 264 ) ( -1664 -1600 296 ) ( -1664 -1472 312 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1692 -1600 296 ) ( -1680 -1600 264 ) ( -1704 -1600 264 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +( -1696 -1472 280 ) ( -1672 -1472 280 ) ( -1684 -1472 312 ) bricks/c_tn_m1 0 0 270 1 1 0 0 0 +} +// brush 4559 +{ +( -880 -832 320 ) ( -1296 -832 320 ) ( -1296 -960 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1296 -960 336 ) ( -1296 -832 336 ) ( -880 -832 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1272 -1344 336 ) ( -856 -1344 336 ) ( -856 -1344 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -880 -960 336 ) ( -880 -832 336 ) ( -880 -832 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -880 -832 336 ) ( -1296 -832 336 ) ( -1296 -832 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1712 -840 336 ) ( -1712 -968 336 ) ( -1712 -968 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4560 +{ +( -1712 -2240 -32 ) ( -1696 -2240 -32 ) ( -1696 -2112 -24 ) bricks/c_tn_m3 -22 -100 4 1 1 0 0 0 +( -1696 -2240 192 ) ( -1712 -2240 192 ) ( -1712 -2112 200 ) bricks/c_tn_m3 -22 -100 4 1 1 0 0 0 +( -1712 -2240 192 ) ( -1696 -2240 192 ) ( -1696 -2240 -32 ) bricks/c_tn_m3 -22 -100 4 1 1 0 0 0 +( -1696 -2240 -32 ) ( -1696 -2240 192 ) ( -1696 -2112 200 ) bricks/c_tn_m3 -22 -100 4 1 1 0 0 0 +( -1696 -2112 200 ) ( -1712 -2112 200 ) ( -1712 -2112 -24 ) bricks/c_tn_m3 -22 -100 4 1 1 0 0 0 +( -1712 -2240 192 ) ( -1712 -2240 -32 ) ( -1712 -2112 -24 ) bricks/c_tn_m3 -22 -100 4 1 1 0 0 0 +} +// brush 4561 +{ +( -1712 -2112 -24 ) ( -1696 -2112 -24 ) ( -1696 -1984 -8 ) bricks/c_tn_m3 -37 10 7 1 1 0 0 0 +( -1696 -2112 200 ) ( -1712 -2112 200 ) ( -1712 -1984 216 ) bricks/c_tn_m3 -37 10 7 1 1 0 0 0 +( -1712 -2112 200 ) ( -1696 -2112 200 ) ( -1696 -2112 -24 ) bricks/c_tn_m3 -37 10 7 1 1 0 0 0 +( -1696 -2112 -24 ) ( -1696 -2112 200 ) ( -1696 -1984 216 ) bricks/c_tn_m3 -37 10 7 1 1 0 0 0 +( -1696 -1984 216 ) ( -1712 -1984 216 ) ( -1712 -1984 -8 ) bricks/c_tn_m3 -37 10 7 1 1 0 0 0 +( -1712 -2112 200 ) ( -1712 -2112 -24 ) ( -1712 -1984 -8 ) bricks/c_tn_m3 -37 10 7 1 1 0 0 0 +} +// brush 4562 +{ +( -1712 -1984 -8 ) ( -1696 -1984 -8 ) ( -1696 -1856 16 ) bricks/c_tn_m3 -77 -110 11 1 1 0 0 0 +( -1696 -1984 216 ) ( -1712 -1984 216 ) ( -1712 -1856 240 ) bricks/c_tn_m3 -77 -110 11 1 1 0 0 0 +( -1712 -1984 216 ) ( -1696 -1984 216 ) ( -1696 -1984 -8 ) bricks/c_tn_m3 -77 -110 11 1 1 0 0 0 +( -1696 -1984 -8 ) ( -1696 -1984 216 ) ( -1696 -1856 240 ) bricks/c_tn_m3 -77 -110 11 1 1 0 0 0 +( -1696 -1856 240 ) ( -1712 -1856 240 ) ( -1712 -1856 16 ) bricks/c_tn_m3 -77 -110 11 1 1 0 0 0 +( -1712 -1984 216 ) ( -1712 -1984 -8 ) ( -1712 -1856 16 ) bricks/c_tn_m3 -77 -110 11 1 1 0 0 0 +} +// brush 4563 +{ +( -1712 -1856 16 ) ( -1696 -1856 16 ) ( -1696 -1728 48 ) bricks/c_tn_m3 -106 -16 14 1 1 0 0 0 +( -1696 -1856 240 ) ( -1712 -1856 240 ) ( -1712 -1728 272 ) bricks/c_tn_m3 -106 -16 14 1 1 0 0 0 +( -1712 -1856 240 ) ( -1696 -1856 240 ) ( -1696 -1856 16 ) bricks/c_tn_m3 -106 -16 14 1 1 0 0 0 +( -1696 -1856 16 ) ( -1696 -1856 240 ) ( -1696 -1728 272 ) bricks/c_tn_m3 -106 -16 14 1 1 0 0 0 +( -1696 -1728 272 ) ( -1712 -1728 272 ) ( -1712 -1728 48 ) bricks/c_tn_m3 -106 -16 14 1 1 0 0 0 +( -1712 -1856 240 ) ( -1712 -1856 16 ) ( -1712 -1728 48 ) bricks/c_tn_m3 -106 -16 14 1 1 0 0 0 +} +// brush 4564 +{ +( -1712 -1728 48 ) ( -1696 -1728 48 ) ( -1696 -1600 72 ) bricks/c_tn_m3 -61 124 10 1 1 0 0 0 +( -1696 -1728 272 ) ( -1712 -1728 272 ) ( -1712 -1600 296 ) bricks/c_tn_m3 -61 124 10 1 1 0 0 0 +( -1712 -1728 272 ) ( -1696 -1728 272 ) ( -1696 -1728 48 ) bricks/c_tn_m3 -61 124 10 1 1 0 0 0 +( -1696 -1728 48 ) ( -1696 -1728 272 ) ( -1696 -1600 296 ) bricks/c_tn_m3 -61 124 10 1 1 0 0 0 +( -1696 -1600 296 ) ( -1712 -1600 296 ) ( -1712 -1600 72 ) bricks/c_tn_m3 -61 124 10 1 1 0 0 0 +( -1712 -1728 272 ) ( -1712 -1728 48 ) ( -1712 -1600 72 ) bricks/c_tn_m3 -61 124 10 1 1 0 0 0 +} +// brush 4565 +{ +( -1712 -1600 72 ) ( -1696 -1600 72 ) ( -1696 -1472 88 ) bricks/c_tn_m3 -43 42 7 1 1 0 0 0 +( -1696 -1600 296 ) ( -1712 -1600 296 ) ( -1712 -1472 312 ) bricks/c_tn_m3 -43 42 7 1 1 0 0 0 +( -1712 -1600 296 ) ( -1696 -1600 296 ) ( -1696 -1600 72 ) bricks/c_tn_m3 -43 42 7 1 1 0 0 0 +( -1696 -1600 72 ) ( -1696 -1600 296 ) ( -1696 -1472 312 ) bricks/c_tn_m3 -43 42 7 1 1 0 0 0 +( -1696 -1472 312 ) ( -1712 -1472 312 ) ( -1712 -1472 88 ) bricks/c_tn_m3 -43 42 7 1 1 0 0 0 +( -1712 -1600 296 ) ( -1712 -1600 72 ) ( -1712 -1472 88 ) bricks/c_tn_m3 -43 42 7 1 1 0 0 0 +} +// brush 4566 +{ +( -1712 -1472 88 ) ( -1696 -1472 88 ) ( -1696 -1344 96 ) bricks/c_tn_m3 -13 -58 3 1 1 0 0 0 +( -1696 -1472 312 ) ( -1712 -1472 312 ) ( -1712 -1344 320 ) bricks/c_tn_m3 -13 -58 3 1 1 0 0 0 +( -1712 -1472 312 ) ( -1696 -1472 312 ) ( -1696 -1472 88 ) bricks/c_tn_m3 -13 -58 3 1 1 0 0 0 +( -1696 -1472 88 ) ( -1696 -1472 312 ) ( -1696 -1344 320 ) bricks/c_tn_m3 -13 -58 3 1 1 0 0 0 +( -1696 -1344 320 ) ( -1712 -1344 320 ) ( -1712 -1344 96 ) bricks/c_tn_m3 -13 -58 3 1 1 0 0 0 +( -1712 -1472 312 ) ( -1712 -1472 88 ) ( -1712 -1344 96 ) bricks/c_tn_m3 -13 -58 3 1 1 0 0 0 +} +// brush 4567 +{ +( -736 -3632 -16 ) ( -608 -3632 -16 ) ( -608 -3264 -16 ) bricks/c_sr_mr5 0 17 -180 1 1 0 0 0 +( -608 -3264 0 ) ( -608 -3632 0 ) ( -736 -3632 0 ) bricks/c_sr_mr5 0 12 169 1 1 0 0 0 +( -628 -3248 128 ) ( -628 -3248 -32 ) ( -552 -3264 -32 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -628 -3248 -32 ) ( -628 -3248 128 ) ( -632 -3264 128 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -550 -3248 128 ) ( -550 -3248 112 ) ( -552 -3264 112 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -632 -3264 -32 ) ( -632 -3264 128 ) ( -554 -3280 128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 4568 +{ +( -892 -3600 -16 ) ( -764 -3600 -16 ) ( -764 -3232 -16 ) bricks/c_sr_mr5 0 17 -180 1 1 0 0 0 +( -764 -3232 0 ) ( -764 -3600 0 ) ( -892 -3600 0 ) bricks/c_sr_mr5 0 -11 156 1 1 0 0 0 +( -692 -3220 128 ) ( -692 -3220 -32 ) ( -628 -3248 -32 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -700 -3234 128 ) ( -700 -3234 -32 ) ( -692 -3220 -32 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -632 -3264 -32 ) ( -632 -3264 128 ) ( -628 -3248 128 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -632 -3264 128 ) ( -632 -3264 -32 ) ( -700 -3234 -32 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 4569 +{ +( -1024 -3544 -16 ) ( -896 -3544 -16 ) ( -896 -3176 -16 ) bricks/c_sr_mr5 0 17 -180 1 1 0 0 0 +( -896 -3176 0 ) ( -896 -3544 0 ) ( -1024 -3544 0 ) bricks/c_sr_mr5 0 5 147 1 1 0 0 0 +( -760 -3176 128 ) ( -760 -3176 -32 ) ( -692 -3220 -32 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -770 -3188 128 ) ( -770 -3188 -32 ) ( -760 -3176 -32 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -700 -3234 -32 ) ( -700 -3234 128 ) ( -692 -3220 128 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -770 -3188 -32 ) ( -770 -3188 128 ) ( -700 -3234 128 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 4570 +{ +( -1176 -3392 0 ) ( -1176 -3264 0 ) ( -808 -3264 0 ) bricks/c_sr_mr5 0 6 122 1 1 0 0 0 +( -808 -3264 -16 ) ( -1176 -3264 -16 ) ( -1176 -3392 -16 ) bricks/c_sr_mr5 0 17 -180 1 1 0 0 0 +( -808 -3128 -144 ) ( -808 -3128 16 ) ( -852 -3060 16 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -820 -3138 -144 ) ( -820 -3138 16 ) ( -808 -3128 16 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -866 -3068 16 ) ( -866 -3068 -144 ) ( -852 -3060 -144 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -820 -3138 16 ) ( -820 -3138 -144 ) ( -866 -3068 -144 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 4571 +{ +( -1232 -3260 0 ) ( -1232 -3132 0 ) ( -864 -3132 0 ) bricks/c_sr_mr5 0 -5 113 1 1 0 0 0 +( -864 -3132 -16 ) ( -1232 -3132 -16 ) ( -1232 -3260 -16 ) bricks/c_sr_mr5 0 17 -180 1 1 0 0 0 +( -852 -3060 -144 ) ( -852 -3060 16 ) ( -880 -2996 16 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -866 -3068 -144 ) ( -866 -3068 16 ) ( -852 -3060 16 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -896 -3000 16 ) ( -896 -3000 -144 ) ( -880 -2996 -144 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -896 -3000 -144 ) ( -896 -3000 16 ) ( -866 -3068 16 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 4572 +{ +( -1264 -3104 0 ) ( -1264 -2976 0 ) ( -896 -2976 0 ) bricks/c_sr_mr5 0 -5 101 1 1 0 0 0 +( -896 -2976 -16 ) ( -1264 -2976 -16 ) ( -1264 -3104 -16 ) bricks/c_sr_mr5 0 17 -180 1 1 0 0 0 +( -880 -2996 -144 ) ( -880 -2996 16 ) ( -896 -2920 16 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -880 -2996 16 ) ( -880 -2996 -144 ) ( -896 -3000 -144 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -880 -2918 -144 ) ( -880 -2918 -128 ) ( -896 -2920 -128 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -896 -3000 16 ) ( -896 -3000 -144 ) ( -912 -2922 -144 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +} +// brush 4573 +{ +( -808 -3188 -16 ) ( -770 -3188 -16 ) ( -770 -3128 -16 ) bricks/c_sr_mr5 0 17 -180 1 1 0 0 0 +( -770 -3128 0 ) ( -770 -3188 0 ) ( -808 -3188 0 ) bricks/c_sr_mr5 0 -2 135 1 1 0 0 0 +( -760 -3176 -16 ) ( -760 -3176 0 ) ( -808 -3128 0 ) bricks/c_sr_mr5 -96 -16 -180 1 -1 0 0 0 +( -820 -3138 0 ) ( -820 -3138 -16 ) ( -808 -3128 -16 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +( -820 -3138 -16 ) ( -820 -3138 0 ) ( -770 -3188 0 ) bricks/c_sr_mr5 0 16 0 1 1 0 0 0 +( -760 -3176 0 ) ( -760 -3176 -16 ) ( -770 -3188 -16 ) bricks/c_sr_mr5 0 -16 -180 1 -1 0 0 0 +} +// brush 4574 +{ +( -880 -3075 192 ) ( -880 -2996 160 ) ( -911 -3006 192 ) bricks/c_tn_m1 0 7 114 1 1 0 0 0 +( -911 -3006 192 ) ( -880 -2996 160 ) ( -880 -2996 208 ) bricks/c_tn_m1 0 7 114 1 1 0 0 0 +( -880 -2996 208 ) ( -880 -2996 160 ) ( -880 -3075 192 ) bricks/c_tn_m1 0 7 114 1 1 0 0 0 +( -880 -3016 192 ) ( -880 -3040 192 ) ( -911 -3028 192 ) bricks/c_tn_m1 0 7 114 1 1 0 0 0 +} +// brush 4575 +{ +( -880 -3075 192 ) ( -852 -3060 160 ) ( -880 -2996 160 ) bricks/c_tn_m1 0 7 114 1 1 0 0 0 +( -880 -2996 160 ) ( -852 -3060 160 ) ( -852 -3060 208 ) bricks/c_tn_m1 0 7 114 1 1 0 0 0 +( -852 -3060 208 ) ( -852 -3060 160 ) ( -880 -3075 192 ) bricks/c_tn_m1 0 7 114 1 1 0 0 0 +( -880 -3075 192 ) ( -880 -2996 160 ) ( -880 -2996 208 ) bricks/c_tn_m1 0 7 114 1 1 0 0 0 +( -852 -3016 192 ) ( -852 -3040 192 ) ( -880 -3028 192 ) bricks/c_tn_m1 0 7 114 1 1 0 0 0 +} +// brush 4576 +{ +( -833 -3148 192 ) ( -852 -3060 160 ) ( -880 -3075 192 ) bricks/c_tn_m1 -187 13 123 1 1 0 0 0 +( -880 -3075 192 ) ( -852 -3060 160 ) ( -852 -3060 208 ) bricks/c_tn_m1 -187 13 123 1 1 0 0 0 +( -852 -3060 208 ) ( -852 -3060 160 ) ( -833 -3148 192 ) bricks/c_tn_m1 -187 13 123 1 1 0 0 0 +( -833 -3016 192 ) ( -833 -3040 192 ) ( -880 -3028 192 ) bricks/c_tn_m1 -187 13 123 1 1 0 0 0 +} +// brush 4577 +{ +( -833 -3148 192 ) ( -808 -3128 160 ) ( -852 -3060 160 ) bricks/c_tn_m1 -187 13 123 1 1 0 0 0 +( -852 -3060 160 ) ( -808 -3128 160 ) ( -808 -3128 208 ) bricks/c_tn_m1 -187 13 123 1 1 0 0 0 +( -808 -3128 208 ) ( -808 -3128 160 ) ( -833 -3148 192 ) bricks/c_tn_m1 -187 13 123 1 1 0 0 0 +( -833 -3148 192 ) ( -852 -3060 160 ) ( -852 -3060 208 ) bricks/c_tn_m1 -187 13 123 1 1 0 0 0 +( -808 -3016 192 ) ( -808 -3040 192 ) ( -852 -3028 192 ) bricks/c_tn_m1 -187 13 123 1 1 0 0 0 +} +// brush 4578 +{ +( -760 -3176 160 ) ( -808 -3128 160 ) ( -780 -3201 192 ) bricks/c_tn_m1 0 -1 135 1 1 0 0 0 +( -808 -3128 208 ) ( -808 -3128 160 ) ( -760 -3176 160 ) bricks/c_tn_m1 0 -1 135 1 1 0 0 0 +( -760 -3176 208 ) ( -760 -3176 160 ) ( -780 -3201 192 ) bricks/c_tn_m1 0 -1 135 1 1 0 0 0 +( -780 -3201 192 ) ( -808 -3128 160 ) ( -808 -3128 208 ) bricks/c_tn_m1 0 -1 135 1 1 0 0 0 +( -760 -3016 192 ) ( -760 -3040 192 ) ( -808 -3028 192 ) bricks/c_tn_m1 0 -1 135 1 1 0 0 0 +} +// brush 4579 +{ +( -780 -3201 192 ) ( -808 -3128 160 ) ( -833 -3148 192 ) bricks/c_tn_m1 0 -1 135 1 1 0 0 0 +( -833 -3148 192 ) ( -808 -3128 160 ) ( -808 -3128 208 ) bricks/c_tn_m1 0 -1 135 1 1 0 0 0 +( -808 -3128 208 ) ( -808 -3128 160 ) ( -780 -3201 192 ) bricks/c_tn_m1 0 -1 135 1 1 0 0 0 +( -780 -3016 192 ) ( -780 -3040 192 ) ( -833 -3028 192 ) bricks/c_tn_m1 0 -1 135 1 1 0 0 0 +} +// brush 4580 +{ +( -692 -3220 160 ) ( -760 -3176 160 ) ( -780 -3201 192 ) bricks/c_tn_m1 0 6 147 1 1 0 0 0 +( -760 -3176 208 ) ( -760 -3176 160 ) ( -692 -3220 160 ) bricks/c_tn_m1 0 6 147 1 1 0 0 0 +( -780 -3201 192 ) ( -760 -3176 160 ) ( -760 -3176 208 ) bricks/c_tn_m1 0 6 147 1 1 0 0 0 +( -692 -3220 208 ) ( -692 -3220 160 ) ( -780 -3201 192 ) bricks/c_tn_m1 0 6 147 1 1 0 0 0 +( -692 -3016 192 ) ( -692 -3040 192 ) ( -780 -3028 192 ) bricks/c_tn_m1 0 6 147 1 1 0 0 0 +} +// brush 4581 +{ +( -707 -3248 192 ) ( -692 -3220 160 ) ( -780 -3201 192 ) bricks/c_tn_m1 0 6 147 1 1 0 0 0 +( -692 -3220 208 ) ( -692 -3220 160 ) ( -707 -3248 192 ) bricks/c_tn_m1 0 6 147 1 1 0 0 0 +( -780 -3201 192 ) ( -692 -3220 160 ) ( -692 -3220 208 ) bricks/c_tn_m1 0 6 147 1 1 0 0 0 +( -692 -3016 192 ) ( -692 -3040 192 ) ( -780 -3028 192 ) bricks/c_tn_m1 0 6 147 1 1 0 0 0 +} +// brush 4582 +{ +( -628 -3248 160 ) ( -692 -3220 160 ) ( -707 -3248 192 ) bricks/c_tn_m1 0 -8 156 1 1 0 0 0 +( -692 -3220 208 ) ( -692 -3220 160 ) ( -628 -3248 160 ) bricks/c_tn_m1 0 -8 156 1 1 0 0 0 +( -707 -3248 192 ) ( -692 -3220 160 ) ( -692 -3220 208 ) bricks/c_tn_m1 0 -8 156 1 1 0 0 0 +( -628 -3248 208 ) ( -628 -3248 160 ) ( -707 -3248 192 ) bricks/c_tn_m1 0 -8 156 1 1 0 0 0 +( -628 -3016 192 ) ( -628 -3040 192 ) ( -707 -3028 192 ) bricks/c_tn_m1 0 -8 156 1 1 0 0 0 +} +// brush 4583 +{ +( -638 -3279 192 ) ( -628 -3248 160 ) ( -707 -3248 192 ) bricks/c_tn_m1 0 -8 156 1 1 0 0 0 +( -628 -3248 208 ) ( -628 -3248 160 ) ( -638 -3279 192 ) bricks/c_tn_m1 0 -8 156 1 1 0 0 0 +( -707 -3248 192 ) ( -628 -3248 160 ) ( -628 -3248 208 ) bricks/c_tn_m1 0 -8 156 1 1 0 0 0 +( -628 -3016 192 ) ( -628 -3040 192 ) ( -707 -3028 192 ) bricks/c_tn_m1 0 -8 156 1 1 0 0 0 +} +// brush 4584 +{ +( -1280 -2112 -32 ) ( -1312 -2112 -32 ) ( -1312 -2240 -32 ) bricks/c_tn_m3 140 -18 4 1 1 0 0 0 +( -1280 -2240 40 ) ( -1312 -2240 40 ) ( -1312 -2112 48 ) bricks/c_sr_mb1a 0 0 90 0.500000 0.500000 0 0 0 +( -1312 -2240 40 ) ( -1280 -2240 40 ) ( -1280 -2240 -32 ) bricks/c_tn_m3 127 172 4 1 1 0 0 0 +( -1280 -2240 168 ) ( -1280 -2112 168 ) ( -1280 -2112 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1280 -2112 8 ) ( -1312 -2112 8 ) ( -1312 -2112 -32 ) bricks/c_tn_m3 127 172 4 1 1 0 0 0 +( -1312 -2112 168 ) ( -1312 -2240 168 ) ( -1312 -2240 128 ) bricks/c_tn_m3 -22 -100 4 1 1 0 0 0 +} +// brush 4585 +{ +( -1280 -1984 -32 ) ( -1312 -1984 -32 ) ( -1312 -2112 -32 ) bricks/c_tn_m3 148 -151 7 1 1 0 0 0 +( -1280 -2112 48 ) ( -1312 -2112 48 ) ( -1312 -1984 64 ) bricks/c_sr_mb1a 0 0 90 0.500000 0.500000 0 0 0 +( -1312 -2112 48 ) ( -1280 -2112 48 ) ( -1280 -2112 -32 ) bricks/c_tn_m3 125 38 7 1 1 0 0 0 +( -1280 -2112 168 ) ( -1280 -1984 168 ) ( -1280 -1984 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1280 -1984 8 ) ( -1312 -1984 8 ) ( -1312 -1984 -32 ) bricks/c_tn_m3 125 38 7 1 1 0 0 0 +( -1312 -1984 168 ) ( -1312 -2112 168 ) ( -1312 -2112 128 ) bricks/c_tn_m3 -37 10 7 1 1 0 0 0 +} +// brush 4586 +{ +( -1280 -1856 -32 ) ( -1312 -1856 -32 ) ( -1312 -1984 -32 ) bricks/c_tn_m3 157 4 11 1 1 0 0 0 +( -1280 -1984 64 ) ( -1312 -1984 64 ) ( -1312 -1856 88 ) bricks/c_sr_mb1a 0 0 90 0.500000 0.500000 0 0 0 +( -1312 -1984 64 ) ( -1280 -1984 64 ) ( -1280 -1984 -32 ) bricks/c_tn_m3 120 193 11 1 1 0 0 0 +( -1280 -1984 168 ) ( -1280 -1856 168 ) ( -1280 -1856 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1280 -1856 8 ) ( -1312 -1856 8 ) ( -1312 -1856 -32 ) bricks/c_tn_m3 120 193 11 1 1 0 0 0 +( -1312 -1856 168 ) ( -1312 -1984 168 ) ( -1312 -1984 128 ) bricks/c_tn_m3 -77 -110 11 1 1 0 0 0 +} +// brush 4587 +{ +( -1280 -1728 -32 ) ( -1312 -1728 -32 ) ( -1312 -1856 -32 ) bricks/c_tn_m3 163 -142 14 1 1 0 0 0 +( -1280 -1856 88 ) ( -1312 -1856 88 ) ( -1312 -1728 120 ) bricks/c_sr_mb1a 0 0 90 0.500000 0.500000 0 0 0 +( -1312 -1856 88 ) ( -1280 -1856 88 ) ( -1280 -1856 -32 ) bricks/c_tn_m3 116 43 14 1 1 0 0 0 +( -1280 -1856 168 ) ( -1280 -1728 168 ) ( -1280 -1728 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1280 -1728 8 ) ( -1312 -1728 8 ) ( -1312 -1728 -32 ) bricks/c_tn_m3 116 43 14 1 1 0 0 0 +( -1312 -1728 168 ) ( -1312 -1856 168 ) ( -1312 -1856 128 ) bricks/c_tn_m3 -106 -16 14 1 1 0 0 0 +} +// brush 4588 +{ +( -1280 -1600 -32 ) ( -1312 -1600 -32 ) ( -1312 -1728 -32 ) bricks/c_tn_m3 199 -245 11 1 1 0 0 0 +( -1280 -1728 120 ) ( -1312 -1728 120 ) ( -1312 -1600 144 ) bricks/c_sr_mb1a 0 0 90 0.500000 0.500000 0 0 0 +( -1312 -1728 120 ) ( -1280 -1728 120 ) ( -1280 -1728 -32 ) bricks/c_tn_m3 162 -56 11 1 1 0 0 0 +( -1280 -1728 168 ) ( -1280 -1600 168 ) ( -1280 -1600 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1280 -1600 8 ) ( -1312 -1600 8 ) ( -1312 -1600 -32 ) bricks/c_tn_m3 162 -56 11 1 1 0 0 0 +( -1312 -1600 168 ) ( -1312 -1728 168 ) ( -1312 -1728 128 ) bricks/c_tn_m3 -61 124 10 1 1 0 0 0 +} +// brush 4589 +{ +( -1280 -1472 -32 ) ( -1312 -1472 -32 ) ( -1312 -1600 -32 ) bricks/c_tn_m3 148 -117 7 1 1 0 0 0 +( -1280 -1600 144 ) ( -1312 -1600 144 ) ( -1312 -1472 160 ) bricks/c_sr_mb1a 0 0 90 0.500000 0.500000 0 0 0 +( -1312 -1600 144 ) ( -1280 -1600 144 ) ( -1280 -1600 -32 ) bricks/c_tn_m3 125 72 7 1 1 0 0 0 +( -1280 -1600 168 ) ( -1280 -1472 168 ) ( -1280 -1472 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1280 -1472 8 ) ( -1312 -1472 8 ) ( -1312 -1472 -32 ) bricks/c_tn_m3 125 72 7 1 1 0 0 0 +( -1312 -1472 168 ) ( -1312 -1600 168 ) ( -1312 -1600 128 ) bricks/c_tn_m3 -43 42 7 1 1 0 0 0 +} +// brush 4590 +{ +( -1280 -1344 -32 ) ( -1312 -1344 -32 ) ( -1312 -1472 -32 ) bricks/c_tn_m3 143 -178 5 1 1 0 0 0 +( -1280 -1472 160 ) ( -1312 -1472 160 ) ( -1312 -1344 168 ) bricks/c_sr_mb1a 0 0 90 0.500000 0.500000 0 0 0 +( -1312 -1472 160 ) ( -1280 -1472 160 ) ( -1280 -1472 -32 ) bricks/c_tn_m3 126 12 5 1 1 0 0 0 +( -1280 -1472 168 ) ( -1280 -1344 168 ) ( -1280 -1344 128 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -1280 -1344 168 ) ( -1312 -1344 168 ) ( -1312 -1344 128 ) bricks/c_tn_m3 126 12 5 1 1 0 0 0 +( -1312 -1344 168 ) ( -1312 -1472 168 ) ( -1312 -1472 128 ) bricks/c_tn_m3 -13 -58 3 1 1 0 0 0 +} +// brush 4591 +{ +( -1696 -1472 104 ) ( -1312 -1472 104 ) ( -1312 -1344 112 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1312 -1472 120 ) ( -1696 -1472 120 ) ( -1696 -1344 128 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -1672 -1472 120 ) ( -1288 -1472 120 ) ( -1288 -1472 104 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1344 -1344 128 ) ( -1728 -1344 128 ) ( -1728 -1344 112 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1696 -1472 120 ) ( -1696 -1472 104 ) ( -1696 -1344 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1680 -2168 104 ) ( -1680 -2240 104 ) ( -1680 -2204 128 ) bricks/c_sr_mr5 0 -12 3 1 1 0 0 0 +} +// brush 4592 +{ +( -1696 -1600 88 ) ( -1312 -1600 88 ) ( -1312 -1472 104 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1312 -1600 104 ) ( -1696 -1600 104 ) ( -1696 -1472 120 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -1672 -1600 104 ) ( -1288 -1600 104 ) ( -1288 -1600 88 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1344 -1472 120 ) ( -1728 -1472 120 ) ( -1728 -1472 104 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1696 -1600 104 ) ( -1696 -1600 88 ) ( -1696 -1472 104 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1680 -2168 88 ) ( -1680 -2240 88 ) ( -1680 -2204 120 ) bricks/c_sr_mr5 0 -7 7 1 1 0 0 0 +} +// brush 4593 +{ +( -1696 -1728 64 ) ( -1312 -1728 64 ) ( -1312 -1600 88 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1312 -1728 80 ) ( -1696 -1728 80 ) ( -1696 -1600 104 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -1672 -1728 80 ) ( -1288 -1728 80 ) ( -1288 -1728 64 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1344 -1600 104 ) ( -1728 -1600 104 ) ( -1728 -1600 88 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1696 -1728 80 ) ( -1696 -1728 64 ) ( -1696 -1600 88 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1680 -2168 64 ) ( -1680 -2240 64 ) ( -1680 -2204 104 ) bricks/c_sr_mr5 0 11 10 1 1 0 0 0 +} +// brush 4594 +{ +( -1696 -1856 32 ) ( -1312 -1856 32 ) ( -1312 -1728 64 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1312 -1856 48 ) ( -1696 -1856 48 ) ( -1696 -1728 80 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -1672 -1856 48 ) ( -1288 -1856 48 ) ( -1288 -1856 32 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1344 -1728 80 ) ( -1728 -1728 80 ) ( -1728 -1728 64 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1696 -1856 48 ) ( -1696 -1856 32 ) ( -1696 -1728 64 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1680 -2168 32 ) ( -1680 -2240 32 ) ( -1680 -2204 80 ) bricks/c_sr_mr5 0 0 14 1 1 0 0 0 +} +// brush 4595 +{ +( -1696 -1984 8 ) ( -1312 -1984 8 ) ( -1312 -1856 32 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1312 -1984 24 ) ( -1696 -1984 24 ) ( -1696 -1856 48 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -1672 -1984 24 ) ( -1288 -1984 24 ) ( -1288 -1984 8 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1344 -1856 48 ) ( -1728 -1856 48 ) ( -1728 -1856 32 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1696 -1984 24 ) ( -1696 -1984 8 ) ( -1696 -1856 32 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1680 -2168 8 ) ( -1680 -2240 8 ) ( -1680 -2204 48 ) bricks/c_sr_mr5 0 2 11 1 1 0 0 0 +} +// brush 4596 +{ +( -1696 -2112 -8 ) ( -1312 -2112 -8 ) ( -1312 -1984 8 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1312 -2112 8 ) ( -1696 -2112 8 ) ( -1696 -1984 24 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -1672 -2112 8 ) ( -1288 -2112 8 ) ( -1288 -2112 -8 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1344 -1984 24 ) ( -1728 -1984 24 ) ( -1728 -1984 8 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1696 -2112 8 ) ( -1696 -2112 -8 ) ( -1696 -1984 8 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1680 -2168 -8 ) ( -1680 -2240 -8 ) ( -1680 -2204 24 ) bricks/c_sr_mr5 0 -8 7 1 1 0 0 0 +} +// brush 4597 +{ +( -1696 -2240 -16 ) ( -1312 -2240 -16 ) ( -1312 -2112 -8 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1312 -2240 0 ) ( -1696 -2240 0 ) ( -1696 -2112 8 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -1672 -2240 0 ) ( -1288 -2240 0 ) ( -1288 -2240 -16 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1344 -2112 8 ) ( -1728 -2112 8 ) ( -1728 -2112 -8 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1696 -2240 0 ) ( -1696 -2240 -16 ) ( -1696 -2112 -8 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1680 -2168 -16 ) ( -1680 -2240 -16 ) ( -1680 -2204 8 ) bricks/c_sr_mr5 0 -22 4 1 1 0 0 0 +} +// brush 4598 +{ +( -1696 -2240 -16 ) ( -1312 -2240 -16 ) ( -1312 -2112 -8 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1312 -2240 0 ) ( -1696 -2240 0 ) ( -1696 -2112 8 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -1672 -2240 0 ) ( -1288 -2240 0 ) ( -1288 -2240 -16 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1312 -2240 -16 ) ( -1312 -2240 0 ) ( -1312 -2112 8 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1344 -2112 8 ) ( -1728 -2112 8 ) ( -1728 -2112 -8 ) bricks/c_sr_mr5 -64 -16 0 1 1 0 0 0 +( -1328 -1368 -16 ) ( -1328 -1344 -16 ) ( -1328 -1356 8 ) bricks/c_sr_mr5 0 -22 4 1 1 0 0 0 +} +// brush 4599 +{ +( -1696 -2112 -8 ) ( -1312 -2112 -8 ) ( -1312 -1984 8 ) bricks/c_sr_mr5 20 -7 7 1 1 0 0 0 +( -1312 -2112 8 ) ( -1696 -2112 8 ) ( -1696 -1984 24 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -1672 -2112 8 ) ( -1288 -2112 8 ) ( -1288 -2112 -8 ) bricks/c_sr_mr5 -2 22 7 1 1 0 0 0 +( -1312 -2112 -8 ) ( -1312 -2112 8 ) ( -1312 -1984 24 ) bricks/c_sr_mr5 62 31 7 1 1 0 0 0 +( -1344 -1984 24 ) ( -1728 -1984 24 ) ( -1728 -1984 8 ) bricks/c_sr_mr5 -2 22 7 1 1 0 0 0 +( -1328 -1368 -8 ) ( -1328 -1344 -8 ) ( -1328 -1356 24 ) bricks/c_sr_mr5 0 -8 7 1 1 0 0 0 +} +// brush 4600 +{ +( -1696 -1984 8 ) ( -1312 -1984 8 ) ( -1312 -1856 32 ) bricks/c_sr_mr5 29 -11 11 1 1 0 0 0 +( -1312 -1984 24 ) ( -1696 -1984 24 ) ( -1696 -1856 48 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -1672 -1984 24 ) ( -1288 -1984 24 ) ( -1288 -1984 8 ) bricks/c_sr_mr5 -7 17 11 1 1 0 0 0 +( -1312 -1984 8 ) ( -1312 -1984 24 ) ( -1312 -1856 48 ) bricks/c_sr_mr5 60 12 11 1 1 0 0 0 +( -1344 -1856 48 ) ( -1728 -1856 48 ) ( -1728 -1856 32 ) bricks/c_sr_mr5 -7 17 11 1 1 0 0 0 +( -1328 -1368 8 ) ( -1328 -1344 8 ) ( -1328 -1356 48 ) bricks/c_sr_mr5 0 2 11 1 1 0 0 0 +} +// brush 4601 +{ +( -1696 -1856 32 ) ( -1312 -1856 32 ) ( -1312 -1728 64 ) bricks/c_sr_mr5 35 -30 14 1 1 0 0 0 +( -1312 -1856 48 ) ( -1696 -1856 48 ) ( -1696 -1728 80 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -1672 -1856 48 ) ( -1288 -1856 48 ) ( -1288 -1856 32 ) bricks/c_sr_mr5 -11 -4 14 1 1 0 0 0 +( -1312 -1856 32 ) ( -1312 -1856 48 ) ( -1312 -1728 80 ) bricks/c_sr_mr5 58 13 14 1 1 0 0 0 +( -1344 -1728 80 ) ( -1728 -1728 80 ) ( -1728 -1728 64 ) bricks/c_sr_mr5 -11 -4 14 1 1 0 0 0 +( -1328 -1368 32 ) ( -1328 -1344 32 ) ( -1328 -1356 80 ) bricks/c_sr_mr5 0 0 14 1 1 0 0 0 +} +// brush 4602 +{ +( -1696 -1728 64 ) ( -1312 -1728 64 ) ( -1312 -1600 88 ) bricks/c_sr_mr5 71 -5 11 1 1 0 0 0 +( -1312 -1728 80 ) ( -1696 -1728 80 ) ( -1696 -1600 104 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -1672 -1728 80 ) ( -1288 -1728 80 ) ( -1288 -1728 64 ) bricks/c_sr_mr5 34 -8 11 1 1 0 0 0 +( -1312 -1728 64 ) ( -1312 -1728 80 ) ( -1312 -1600 104 ) bricks/c_sr_mr5 102 18 11 1 1 0 0 0 +( -1344 -1600 104 ) ( -1728 -1600 104 ) ( -1728 -1600 88 ) bricks/c_sr_mr5 34 -8 11 1 1 0 0 0 +( -1328 -1368 64 ) ( -1328 -1344 64 ) ( -1328 -1356 104 ) bricks/c_sr_mr5 0 11 10 1 1 0 0 0 +} +// brush 4603 +{ +( -1696 -1600 88 ) ( -1312 -1600 88 ) ( -1312 -1472 104 ) bricks/c_sr_mr5 20 -5 7 1 1 0 0 0 +( -1312 -1600 104 ) ( -1696 -1600 104 ) ( -1696 -1472 120 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -1672 -1600 104 ) ( -1288 -1600 104 ) ( -1288 -1600 88 ) bricks/c_sr_mr5 -2 -7 7 1 1 0 0 0 +( -1312 -1600 88 ) ( -1312 -1600 104 ) ( -1312 -1472 120 ) bricks/c_sr_mr5 62 1 7 1 1 0 0 0 +( -1344 -1472 120 ) ( -1728 -1472 120 ) ( -1728 -1472 104 ) bricks/c_sr_mr5 -2 -7 7 1 1 0 0 0 +( -1328 -1368 88 ) ( -1328 -1344 88 ) ( -1328 -1356 120 ) bricks/c_sr_mr5 0 -7 7 1 1 0 0 0 +} +// brush 4604 +{ +( -1696 -1472 104 ) ( -1312 -1472 104 ) ( -1312 -1344 112 ) bricks/c_sr_mr5 15 -2 5 1 1 0 0 0 +( -1312 -1472 120 ) ( -1696 -1472 120 ) ( -1696 -1344 128 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -1672 -1472 120 ) ( -1288 -1472 120 ) ( -1288 -1472 104 ) bricks/c_sr_mr5 -1 -3 5 1 1 0 0 0 +( -1312 -1472 104 ) ( -1312 -1472 120 ) ( -1312 -1344 128 ) bricks/c_sr_mr5 63 11 5 1 1 0 0 0 +( -1344 -1344 128 ) ( -1728 -1344 128 ) ( -1728 -1344 112 ) bricks/c_sr_mr5 -1 -3 5 1 1 0 0 0 +( -1328 -1368 104 ) ( -1328 -1344 104 ) ( -1328 -1356 128 ) bricks/c_sr_mr5 0 -12 3 1 1 0 0 0 +} +// brush 4605 +{ +( -1680 -832 112 ) ( -1696 -832 112 ) ( -1696 -1016 112 ) bricks/c_sr_mr5 0 -2 270 1 1 0 0 0 +( -1696 -1016 128 ) ( -1696 -832 128 ) ( -1680 -832 128 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -1696 -1344 128 ) ( -1680 -1344 128 ) ( -1680 -1344 112 ) bricks/c_sr_mr5 63 -2 270 1 1 0 0 0 +( -1680 -790 128 ) ( -1680 -790 112 ) ( -1680 -1344 112 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1680 -790 112 ) ( -1680 -790 128 ) ( -1696 -792 128 ) bricks/c_sr_mr5 63 -2 270 1 1 0 0 0 +( -1696 -832 128 ) ( -1696 -1016 128 ) ( -1696 -1016 112 ) bricks/c_sr_mr5 63 -2 270 1 1 0 0 0 +} +// brush 4606 +{ +( -1312 -832 112 ) ( -1328 -832 112 ) ( -1328 -1016 112 ) bricks/c_sr_mr5 0 0 90 1 1 0 0 0 +( -1328 -1016 128 ) ( -1328 -832 128 ) ( -1312 -832 128 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -1328 -1344 128 ) ( -1312 -1344 128 ) ( -1312 -1344 112 ) bricks/c_sr_mr5 -63 -1 90 1 1 0 0 0 +( -1312 -1016 128 ) ( -1312 -832 128 ) ( -1312 -832 112 ) bricks/c_sr_mr5 -63 31 90 1 1 0 0 0 +( -1312 -832 128 ) ( -1328 -832 128 ) ( -1328 -832 112 ) bricks/c_sr_mr5 -63 -1 90 1 1 0 0 0 +( -1328 -832 128 ) ( -1328 -1016 128 ) ( -1328 -1016 112 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4607 +{ +( -1696 -2240 -32 ) ( -1312 -2240 -32 ) ( -1312 -2112 -24 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1312 -2240 -16 ) ( -1696 -2240 -16 ) ( -1696 -2112 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1672 -2240 -16 ) ( -1288 -2240 -16 ) ( -1288 -2240 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1312 -2240 -32 ) ( -1312 -2240 -16 ) ( -1312 -2112 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1360 -2112 -8 ) ( -1744 -2112 -8 ) ( -1744 -2112 -24 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1712 -2240 -16 ) ( -1712 -2240 -32 ) ( -1712 -2112 -24 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 4608 +{ +( -1696 -2112 -24 ) ( -1312 -2112 -24 ) ( -1312 -1984 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1312 -2112 -8 ) ( -1696 -2112 -8 ) ( -1696 -1984 8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1688 -2112 -8 ) ( -1304 -2112 -8 ) ( -1304 -2112 -24 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1312 -2112 -24 ) ( -1312 -2112 -8 ) ( -1312 -1984 8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1360 -1984 8 ) ( -1744 -1984 8 ) ( -1744 -1984 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1712 -2112 -8 ) ( -1712 -2112 -24 ) ( -1712 -1984 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 4609 +{ +( -1696 -1984 -8 ) ( -1312 -1984 -8 ) ( -1312 -1856 16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1312 -1984 8 ) ( -1696 -1984 8 ) ( -1696 -1856 32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1688 -1984 8 ) ( -1304 -1984 8 ) ( -1304 -1984 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1312 -1984 -8 ) ( -1312 -1984 8 ) ( -1312 -1856 32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1360 -1856 32 ) ( -1744 -1856 32 ) ( -1744 -1856 16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1712 -1984 8 ) ( -1712 -1984 -8 ) ( -1712 -1856 16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 4610 +{ +( -1696 -1856 16 ) ( -1312 -1856 16 ) ( -1312 -1728 48 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1312 -1856 32 ) ( -1696 -1856 32 ) ( -1696 -1728 64 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1688 -1856 32 ) ( -1304 -1856 32 ) ( -1304 -1856 16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1312 -1856 16 ) ( -1312 -1856 32 ) ( -1312 -1728 64 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1344 -1728 64 ) ( -1728 -1728 64 ) ( -1728 -1728 48 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1712 -1856 32 ) ( -1712 -1856 16 ) ( -1712 -1728 48 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 4611 +{ +( -1696 -1728 48 ) ( -1312 -1728 48 ) ( -1312 -1600 72 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1312 -1728 64 ) ( -1696 -1728 64 ) ( -1696 -1600 88 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1672 -1728 64 ) ( -1288 -1728 64 ) ( -1288 -1728 48 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1312 -1728 48 ) ( -1312 -1728 64 ) ( -1312 -1600 88 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1360 -1600 88 ) ( -1744 -1600 88 ) ( -1744 -1600 72 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1712 -1728 64 ) ( -1712 -1728 48 ) ( -1712 -1600 72 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 4612 +{ +( -1696 -1600 72 ) ( -1312 -1600 72 ) ( -1312 -1472 88 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1312 -1600 88 ) ( -1696 -1600 88 ) ( -1696 -1472 104 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1688 -1600 88 ) ( -1304 -1600 88 ) ( -1304 -1600 72 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1312 -1600 72 ) ( -1312 -1600 88 ) ( -1312 -1472 104 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1360 -1472 104 ) ( -1744 -1472 104 ) ( -1744 -1472 88 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1712 -1600 88 ) ( -1712 -1600 72 ) ( -1712 -1472 88 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 4613 +{ +( -1696 -1472 88 ) ( -1312 -1472 88 ) ( -1312 -1344 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1312 -1472 104 ) ( -1696 -1472 104 ) ( -1696 -1344 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1688 -1472 104 ) ( -1304 -1472 104 ) ( -1304 -1472 88 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1312 -1472 88 ) ( -1312 -1472 104 ) ( -1312 -1344 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1360 -1344 112 ) ( -1744 -1344 112 ) ( -1744 -1344 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1712 -1472 104 ) ( -1712 -1472 88 ) ( -1712 -1344 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 4614 +{ +( -1312 -832 96 ) ( -1696 -832 96 ) ( -1696 -912 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1696 -912 112 ) ( -1696 -832 112 ) ( -1312 -832 112 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1688 -1344 112 ) ( -1304 -1344 112 ) ( -1304 -1344 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1312 -912 112 ) ( -1312 -832 112 ) ( -1312 -832 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1312 -832 112 ) ( -1696 -832 112 ) ( -1696 -832 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1712 -832 112 ) ( -1712 -912 112 ) ( -1712 -912 96 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 4615 +{ +( -2004 -64 320 ) ( -2004 -64 336 ) ( -2080 -64 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1848 -96 320 ) ( -1848 -96 336 ) ( -2004 -64 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1716 -152 320 ) ( -1716 -152 336 ) ( -1848 -96 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1592 -232 320 ) ( -1592 -232 336 ) ( -1716 -152 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1480 -344 320 ) ( -1480 -344 336 ) ( -1592 -232 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1400 -468 320 ) ( -1400 -468 336 ) ( -1480 -344 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1344 -600 320 ) ( -1344 -600 336 ) ( -1400 -468 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1344 -600 336 ) ( -1344 -600 320 ) ( -1312 -756 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1312 -756 336 ) ( -1312 -756 320 ) ( -1312 -832 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2848 -1600 320 ) ( -1312 -1600 320 ) ( -1312 -64 320 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1312 -64 336 ) ( -1312 -1600 336 ) ( -2848 -1600 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -2080 -312 272 ) ( -2080 -256 272 ) ( -2080 -284 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1416 -832 272 ) ( -1480 -832 272 ) ( -1448 -832 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +( -1696 -832 320 ) ( -2080 -448 320 ) ( -1888 -640 336 ) bricks/c_sr_m2a 0 0 0 1 1 0 0 0 +} +// brush 4616 +{ +( -2037 -416 320 ) ( -2040 -448 288 ) ( -1954 -433 320 ) bricks/c_tn_m1 0 2 348 1 1 0 0 0 +( -2040 -448 336 ) ( -2040 -448 288 ) ( -2037 -416 320 ) bricks/c_tn_m1 0 2 348 1 1 0 0 0 +( -1954 -433 320 ) ( -2040 -448 288 ) ( -2040 -448 336 ) bricks/c_tn_m1 0 2 348 1 1 0 0 0 +( -2040 -696 320 ) ( -2040 -672 320 ) ( -1954 -684 320 ) bricks/c_tn_m1 0 2 348 1 1 0 0 0 +} +// brush 4617 +{ +( -2040 -448 288 ) ( -1964 -464 288 ) ( -1954 -433 320 ) bricks/c_tn_m1 0 2 348 1 1 0 0 0 +( -1964 -464 336 ) ( -1964 -464 288 ) ( -2040 -448 288 ) bricks/c_tn_m1 0 2 348 1 1 0 0 0 +( -1954 -433 320 ) ( -1964 -464 288 ) ( -1964 -464 336 ) bricks/c_tn_m1 0 2 348 1 1 0 0 0 +( -2040 -448 288 ) ( -1954 -433 320 ) ( -1954 -433 336 ) bricks/c_tn_m1 0 2 348 1 1 0 0 0 +( -2040 -696 320 ) ( -2040 -672 320 ) ( -1954 -684 320 ) bricks/c_tn_m1 0 2 348 1 1 0 0 0 +} +// brush 4618 +{ +( -1954 -433 320 ) ( -1964 -464 288 ) ( -1885 -464 320 ) bricks/c_tn_m1 -7 -6 336 1 1 0 0 0 +( -1964 -464 336 ) ( -1964 -464 288 ) ( -1954 -433 320 ) bricks/c_tn_m1 -7 -6 336 1 1 0 0 0 +( -1885 -464 320 ) ( -1964 -464 288 ) ( -1964 -464 336 ) bricks/c_tn_m1 -7 -6 336 1 1 0 0 0 +( -1964 -696 320 ) ( -1964 -672 320 ) ( -1885 -684 320 ) bricks/c_tn_m1 -7 -6 336 1 1 0 0 0 +} +// brush 4619 +{ +( -1964 -464 288 ) ( -1900 -492 288 ) ( -1885 -464 320 ) bricks/c_tn_m1 -7 -6 336 1 1 0 0 0 +( -1900 -492 336 ) ( -1900 -492 288 ) ( -1964 -464 288 ) bricks/c_tn_m1 -7 -6 336 1 1 0 0 0 +( -1885 -464 320 ) ( -1900 -492 288 ) ( -1900 -492 336 ) bricks/c_tn_m1 -7 -6 336 1 1 0 0 0 +( -1964 -464 336 ) ( -1964 -464 288 ) ( -1885 -464 320 ) bricks/c_tn_m1 -7 -6 336 1 1 0 0 0 +( -1964 -696 320 ) ( -1964 -672 320 ) ( -1885 -684 320 ) bricks/c_tn_m1 -7 -6 336 1 1 0 0 0 +} +// brush 4620 +{ +( -1885 -464 320 ) ( -1900 -492 288 ) ( -1812 -511 320 ) bricks/c_tn_m1 67 -7 327 1 1 0 0 0 +( -1900 -492 336 ) ( -1900 -492 288 ) ( -1885 -464 320 ) bricks/c_tn_m1 67 -7 327 1 1 0 0 0 +( -1812 -511 320 ) ( -1900 -492 288 ) ( -1900 -492 336 ) bricks/c_tn_m1 67 -7 327 1 1 0 0 0 +( -1900 -696 320 ) ( -1900 -672 320 ) ( -1812 -684 320 ) bricks/c_tn_m1 67 -7 327 1 1 0 0 0 +} +// brush 4621 +{ +( -1900 -492 288 ) ( -1832 -536 288 ) ( -1812 -511 320 ) bricks/c_tn_m1 67 -7 327 1 1 0 0 0 +( -1832 -536 336 ) ( -1832 -536 288 ) ( -1900 -492 288 ) bricks/c_tn_m1 67 -7 327 1 1 0 0 0 +( -1812 -511 320 ) ( -1832 -536 288 ) ( -1832 -536 336 ) bricks/c_tn_m1 67 -7 327 1 1 0 0 0 +( -1900 -492 336 ) ( -1900 -492 288 ) ( -1812 -511 320 ) bricks/c_tn_m1 67 -7 327 1 1 0 0 0 +( -1900 -696 320 ) ( -1900 -672 320 ) ( -1812 -684 320 ) bricks/c_tn_m1 67 -7 327 1 1 0 0 0 +} +// brush 4622 +{ +( -1860 -559 320 ) ( -1832 -632 288 ) ( -1807 -612 320 ) bricks/c_tn_m1 37 0 315 1 1 0 0 0 +( -1807 -612 320 ) ( -1832 -632 288 ) ( -1832 -632 336 ) bricks/c_tn_m1 113 10 315 1 1 0 0 0 +( -1832 -632 336 ) ( -1832 -632 288 ) ( -1860 -559 320 ) bricks/c_tn_m1 75 -15 315 1 1 0 0 0 +( -1860 -744 320 ) ( -1860 -720 320 ) ( -1807 -732 320 ) bricks/c_tn_m1 37 0 315 1 1 0 0 0 +} +// brush 4623 +{ +( -1880 -584 288 ) ( -1832 -632 288 ) ( -1860 -559 320 ) bricks/c_tn_m1 37 0 315 1 1 0 0 0 +( -1832 -632 336 ) ( -1832 -632 288 ) ( -1880 -584 288 ) bricks/c_tn_m1 75 -15 315 1 1 0 0 0 +( -1880 -584 336 ) ( -1880 -584 288 ) ( -1860 -559 320 ) bricks/c_tn_m1 75 -15 315 1 1 0 0 0 +( -1860 -559 320 ) ( -1832 -632 288 ) ( -1832 -632 336 ) bricks/c_tn_m1 75 -15 315 1 1 0 0 0 +( -1880 -744 320 ) ( -1880 -720 320 ) ( -1832 -732 320 ) bricks/c_tn_m1 37 0 315 1 1 0 0 0 +} +// brush 4624 +{ +( -1759 -564 320 ) ( -1784 -584 288 ) ( -1740 -652 288 ) bricks/c_tn_m1 0 9 303 1 1 0 0 0 +( -1740 -652 288 ) ( -1784 -584 288 ) ( -1784 -584 336 ) bricks/c_tn_m1 0 9 303 1 1 0 0 0 +( -1784 -584 336 ) ( -1784 -584 288 ) ( -1759 -564 320 ) bricks/c_tn_m1 0 9 303 1 1 0 0 0 +( -1759 -564 320 ) ( -1740 -652 288 ) ( -1740 -652 336 ) bricks/c_tn_m1 0 9 303 1 1 0 0 0 +( -1784 -696 320 ) ( -1784 -672 320 ) ( -1740 -684 320 ) bricks/c_tn_m1 0 9 303 1 1 0 0 0 +} +// brush 4625 +{ +( -1759 -564 320 ) ( -1740 -652 288 ) ( -1712 -637 320 ) bricks/c_tn_m1 0 9 303 1 1 0 0 0 +( -1712 -637 320 ) ( -1740 -652 288 ) ( -1740 -652 336 ) bricks/c_tn_m1 0 9 303 1 1 0 0 0 +( -1740 -652 336 ) ( -1740 -652 288 ) ( -1759 -564 320 ) bricks/c_tn_m1 0 9 303 1 1 0 0 0 +( -1759 -696 320 ) ( -1759 -672 320 ) ( -1712 -684 320 ) bricks/c_tn_m1 0 9 303 1 1 0 0 0 +} +// brush 4626 +{ +( -1712 -637 320 ) ( -1740 -652 288 ) ( -1712 -716 288 ) bricks/c_tn_m1 -10 0 294 1 1 0 0 0 +( -1712 -716 288 ) ( -1740 -652 288 ) ( -1740 -652 336 ) bricks/c_tn_m1 -10 0 294 1 1 0 0 0 +( -1740 -652 336 ) ( -1740 -652 288 ) ( -1712 -637 320 ) bricks/c_tn_m1 -10 0 294 1 1 0 0 0 +( -1712 -637 320 ) ( -1712 -716 288 ) ( -1712 -716 336 ) bricks/c_tn_m1 -10 0 294 1 1 0 0 0 +( -1740 -696 320 ) ( -1740 -672 320 ) ( -1712 -684 320 ) bricks/c_tn_m1 -10 0 294 1 1 0 0 0 +} +// brush 4627 +{ +( -1712 -637 320 ) ( -1712 -716 288 ) ( -1681 -706 320 ) bricks/c_tn_m1 -10 0 294 1 1 0 0 0 +( -1681 -706 320 ) ( -1712 -716 288 ) ( -1712 -716 336 ) bricks/c_tn_m1 -10 0 294 1 1 0 0 0 +( -1712 -716 336 ) ( -1712 -716 288 ) ( -1712 -637 320 ) bricks/c_tn_m1 -10 0 294 1 1 0 0 0 +( -1712 -696 320 ) ( -1712 -672 320 ) ( -1681 -684 320 ) bricks/c_tn_m1 -10 0 294 1 1 0 0 0 +} +// brush 4628 +{ +( -1681 -706 320 ) ( -1712 -716 288 ) ( -1696 -792 288 ) bricks/c_tn_m1 -140 0 282 1 1 0 0 0 +( -1696 -792 288 ) ( -1712 -716 288 ) ( -1712 -716 336 ) bricks/c_tn_m1 -140 0 282 1 1 0 0 0 +( -1712 -716 336 ) ( -1712 -716 288 ) ( -1681 -706 320 ) bricks/c_tn_m1 -140 0 282 1 1 0 0 0 +( -1681 -706 336 ) ( -1681 -706 320 ) ( -1696 -792 288 ) bricks/c_tn_m1 -140 0 282 1 1 0 0 0 +( -1712 -696 320 ) ( -1712 -672 320 ) ( -1681 -684 320 ) bricks/c_tn_m1 -140 0 282 1 1 0 0 0 +} +// brush 4629 +{ +( -1681 -706 320 ) ( -1696 -792 288 ) ( -1664 -789 320 ) bricks/c_tn_m1 -140 0 282 1 1 0 0 0 +( -1664 -789 320 ) ( -1696 -792 288 ) ( -1696 -792 336 ) bricks/c_tn_m1 -140 0 282 1 1 0 0 0 +( -1696 -792 336 ) ( -1696 -792 288 ) ( -1681 -706 320 ) bricks/c_tn_m1 -140 0 282 1 1 0 0 0 +( -1696 -696 320 ) ( -1696 -672 320 ) ( -1664 -684 320 ) bricks/c_tn_m1 -140 0 282 1 1 0 0 0 +} +// brush 4630 +{ +( -2080 -416 320 ) ( -2037 -416 320 ) ( -2040 -448 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2040 -448 320 ) ( -2040 -448 288 ) ( -2080 -448 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2040 -448 288 ) ( -2037 -416 320 ) ( -2080 -416 320 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2048 -432 320 ) ( -2048 -448 288 ) ( -2048 -416 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +( -2040 -448 320 ) ( -2037 -416 320 ) ( -2040 -448 288 ) bricks/c_tn_m1 0 0 0 1 1 0 0 0 +} +// brush 4631 +{ +( -1858 -127 320 ) ( -2004 -64 288 ) ( -2007 -96 320 ) bricks/c_tn_m1 55 -1 168 1 1 0 0 0 +( -2007 -96 320 ) ( -2004 -64 288 ) ( -2004 -64 336 ) bricks/c_tn_m1 55 -1 168 1 1 0 0 0 +( -2004 -64 336 ) ( -2004 -64 288 ) ( -1858 -127 320 ) bricks/c_tn_m1 55 -1 168 1 1 0 0 0 +( -1536 -127 320 ) ( -1592 -127 320 ) ( -1564 -64 320 ) bricks/c_tn_m1 55 -1 168 1 1 0 0 0 +} +// brush 4632 +{ +( -1858 -127 320 ) ( -1848 -96 288 ) ( -2004 -64 288 ) bricks/c_tn_m1 55 -1 168 1 1 0 0 0 +( -1848 -96 336 ) ( -1848 -96 288 ) ( -1858 -127 320 ) bricks/c_tn_m1 55 -1 168 1 1 0 0 0 +( -2004 -64 288 ) ( -1848 -96 288 ) ( -1848 -96 336 ) bricks/c_tn_m1 55 -1 168 1 1 0 0 0 +( -1858 -127 320 ) ( -2004 -64 288 ) ( -2004 -64 336 ) bricks/c_tn_m1 55 -1 168 1 1 0 0 0 +( -1536 -127 320 ) ( -1592 -127 320 ) ( -1564 -64 320 ) bricks/c_tn_m1 55 -1 168 1 1 0 0 0 +} +// brush 4633 +{ +( -1732 -181 320 ) ( -1848 -96 288 ) ( -1858 -127 320 ) bricks/c_tn_m1 -67 11 157 1 1 0 0 0 +( -1858 -127 320 ) ( -1848 -96 288 ) ( -1848 -96 336 ) bricks/c_tn_m1 -67 11 157 1 1 0 0 0 +( -1848 -96 336 ) ( -1848 -96 288 ) ( -1732 -181 320 ) bricks/c_tn_m1 -67 11 157 1 1 0 0 0 +( -1536 -181 320 ) ( -1592 -181 320 ) ( -1564 -96 320 ) bricks/c_tn_m1 -67 11 157 1 1 0 0 0 +} +// brush 4634 +{ +( -1732 -181 320 ) ( -1716 -152 288 ) ( -1848 -96 288 ) bricks/c_tn_m1 -67 11 157 1 1 0 0 0 +( -1716 -152 336 ) ( -1716 -152 288 ) ( -1732 -181 320 ) bricks/c_tn_m1 -67 11 157 1 1 0 0 0 +( -1848 -96 288 ) ( -1716 -152 288 ) ( -1716 -152 336 ) bricks/c_tn_m1 -67 11 157 1 1 0 0 0 +( -1732 -181 320 ) ( -1848 -96 288 ) ( -1848 -96 336 ) bricks/c_tn_m1 -67 11 157 1 1 0 0 0 +( -1536 -181 320 ) ( -1592 -181 320 ) ( -1564 -96 320 ) bricks/c_tn_m1 -67 11 157 1 1 0 0 0 +} +// brush 4635 +{ +( -1506 -365 320 ) ( -1592 -232 288 ) ( -1613 -258 320 ) bricks/c_tn_m1 97 11 135 1 1 0 0 0 +( -1613 -258 320 ) ( -1592 -232 288 ) ( -1592 -232 336 ) bricks/c_tn_m1 97 11 135 1 1 0 0 0 +( -1592 -232 336 ) ( -1592 -232 288 ) ( -1506 -365 320 ) bricks/c_tn_m1 97 11 135 1 1 0 0 0 +( -1536 -365 320 ) ( -1592 -365 320 ) ( -1564 -232 320 ) bricks/c_tn_m1 97 11 135 1 1 0 0 0 +} +// brush 4636 +{ +( -1480 -344 288 ) ( -1592 -232 288 ) ( -1506 -365 320 ) bricks/c_tn_m1 97 11 135 1 1 0 0 0 +( -1480 -344 336 ) ( -1480 -344 288 ) ( -1506 -365 320 ) bricks/c_tn_m1 97 11 135 1 1 0 0 0 +( -1592 -232 336 ) ( -1592 -232 288 ) ( -1480 -344 288 ) bricks/c_tn_m1 97 11 135 1 1 0 0 0 +( -1506 -365 320 ) ( -1592 -232 288 ) ( -1592 -232 336 ) bricks/c_tn_m1 97 11 135 1 1 0 0 0 +( -1536 -365 320 ) ( -1592 -365 320 ) ( -1564 -232 320 ) bricks/c_tn_m1 97 11 135 1 1 0 0 0 +} +// brush 4637 +{ +( -1350 -434 288 ) ( -1430 -310 288 ) ( -1456 -331 320 ) bricks/c_tn_m1 -45 2 122 1 1 0 0 0 +( -1456 -331 320 ) ( -1430 -310 288 ) ( -1430 -310 336 ) bricks/c_tn_m1 -85 8 122 1 1 0 0 0 +( -1430 -310 336 ) ( -1430 -310 288 ) ( -1350 -434 288 ) bricks/c_tn_m1 135 9 122 1 1 0 0 0 +( -1350 -434 336 ) ( -1350 -434 288 ) ( -1456 -331 320 ) bricks/c_tn_m1 -85 8 122 1 1 0 0 0 +( -1486 -434 320 ) ( -1542 -434 320 ) ( -1514 -310 320 ) bricks/c_tn_m1 -45 2 122 1 1 0 0 0 +} +// brush 4638 +{ +( -1379 -450 320 ) ( -1350 -434 288 ) ( -1456 -331 320 ) bricks/c_tn_m1 -45 2 122 1 1 0 0 0 +( -1350 -434 336 ) ( -1350 -434 288 ) ( -1379 -450 320 ) bricks/c_tn_m1 -85 8 122 1 1 0 0 0 +( -1456 -331 320 ) ( -1350 -434 288 ) ( -1350 -434 336 ) bricks/c_tn_m1 -85 8 122 1 1 0 0 0 +( -1486 -450 320 ) ( -1542 -450 320 ) ( -1514 -331 320 ) bricks/c_tn_m1 -45 2 122 1 1 0 0 0 +} +// brush 4639 +{ +( -1344 -600 288 ) ( -1400 -468 288 ) ( -1429 -484 320 ) bricks/c_tn_m1 -68 0 113 1 1 0 0 0 +( -1429 -484 320 ) ( -1400 -468 288 ) ( -1400 -468 336 ) bricks/c_tn_m1 -68 0 113 1 1 0 0 0 +( -1400 -468 336 ) ( -1400 -468 288 ) ( -1344 -600 288 ) bricks/c_tn_m1 -68 0 113 1 1 0 0 0 +( -1344 -600 336 ) ( -1344 -600 288 ) ( -1429 -484 320 ) bricks/c_tn_m1 -68 0 113 1 1 0 0 0 +( -1536 -600 320 ) ( -1592 -600 320 ) ( -1564 -468 320 ) bricks/c_tn_m1 -68 0 113 1 1 0 0 0 +} +// brush 4640 +{ +( -1375 -610 320 ) ( -1344 -600 288 ) ( -1429 -484 320 ) bricks/c_tn_m1 -68 0 113 1 1 0 0 0 +( -1344 -600 336 ) ( -1344 -600 288 ) ( -1375 -610 320 ) bricks/c_tn_m1 -68 0 113 1 1 0 0 0 +( -1429 -484 320 ) ( -1344 -600 288 ) ( -1344 -600 336 ) bricks/c_tn_m1 -68 0 113 1 1 0 0 0 +( -1536 -610 320 ) ( -1592 -610 320 ) ( -1564 -484 320 ) bricks/c_tn_m1 -68 0 113 1 1 0 0 0 +} +// brush 4641 +{ +( -1312 -756 288 ) ( -1344 -600 288 ) ( -1375 -610 320 ) bricks/c_tn_m1 0 0 102 1 1 0 0 0 +( -1375 -610 320 ) ( -1344 -600 288 ) ( -1344 -600 336 ) bricks/c_tn_m1 0 0 102 1 1 0 0 0 +( -1344 -600 336 ) ( -1344 -600 288 ) ( -1312 -756 288 ) bricks/c_tn_m1 0 0 102 1 1 0 0 0 +( -1312 -756 336 ) ( -1312 -756 288 ) ( -1375 -610 320 ) bricks/c_tn_m1 0 0 102 1 1 0 0 0 +( -1536 -756 320 ) ( -1592 -756 320 ) ( -1564 -600 320 ) bricks/c_tn_m1 0 0 102 1 1 0 0 0 +} +// brush 4642 +{ +( -1344 -759 320 ) ( -1312 -756 288 ) ( -1375 -610 320 ) bricks/c_tn_m1 0 0 102 1 1 0 0 0 +( -1312 -756 336 ) ( -1312 -756 288 ) ( -1344 -759 320 ) bricks/c_tn_m1 0 0 102 1 1 0 0 0 +( -1375 -610 320 ) ( -1312 -756 288 ) ( -1312 -756 336 ) bricks/c_tn_m1 0 0 102 1 1 0 0 0 +( -1536 -759 320 ) ( -1592 -759 320 ) ( -1564 -610 320 ) bricks/c_tn_m1 0 0 102 1 1 0 0 0 +} +// brush 4643 +{ +( -2004 -64 320 ) ( -2007 -96 320 ) ( -2080 -96 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2352 -64 320 ) ( -2704 -64 320 ) ( -2704 -64 304 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2080 -96 320 ) ( -2007 -96 320 ) ( -2004 -64 288 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2048 -96 288 ) ( -2048 -64 288 ) ( -2048 -80 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +( -2004 -64 288 ) ( -2007 -96 320 ) ( -2004 -64 320 ) bricks/c_tn_m1 0 0 180 1 1 0 0 0 +} +// brush 4644 +{ +( -1784 -524 112 ) ( -1822 -524 112 ) ( -1822 -584 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1822 -584 128 ) ( -1822 -524 128 ) ( -1784 -524 128 ) bricks/c_sr_mr5 0 -12 315 1 1 0 0 0 +( -1832 -536 112 ) ( -1832 -536 128 ) ( -1784 -584 128 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1772 -574 128 ) ( -1772 -574 112 ) ( -1784 -584 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1772 -574 112 ) ( -1772 -574 128 ) ( -1822 -524 128 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1832 -536 128 ) ( -1832 -536 112 ) ( -1822 -524 112 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +} +// brush 4645 +{ +( -1328 -608 128 ) ( -1328 -736 128 ) ( -1696 -736 128 ) bricks/c_sr_mr5 0 -1 282 1 1 0 0 0 +( -1696 -736 112 ) ( -1328 -736 112 ) ( -1328 -608 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1712 -716 -16 ) ( -1712 -716 144 ) ( -1696 -792 144 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1712 -716 144 ) ( -1712 -716 -16 ) ( -1696 -712 -16 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1712 -794 -16 ) ( -1712 -794 0 ) ( -1696 -792 0 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1696 -712 144 ) ( -1696 -712 -16 ) ( -1680 -790 -16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4646 +{ +( -1360 -452 128 ) ( -1360 -580 128 ) ( -1728 -580 128 ) bricks/c_sr_mr5 0 0 294 1 1 0 0 0 +( -1728 -580 112 ) ( -1360 -580 112 ) ( -1360 -452 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1740 -652 -16 ) ( -1740 -652 144 ) ( -1712 -716 144 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1726 -644 -16 ) ( -1726 -644 144 ) ( -1740 -652 144 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1696 -712 144 ) ( -1696 -712 -16 ) ( -1712 -716 -16 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1696 -712 -16 ) ( -1696 -712 144 ) ( -1726 -644 144 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4647 +{ +( -1416 -320 128 ) ( -1416 -448 128 ) ( -1784 -448 128 ) bricks/c_sr_mr5 0 8 303 1 1 0 0 0 +( -1784 -448 112 ) ( -1416 -448 112 ) ( -1416 -320 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1784 -584 -16 ) ( -1784 -584 144 ) ( -1740 -652 144 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1772 -574 -16 ) ( -1772 -574 144 ) ( -1784 -584 144 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1726 -644 144 ) ( -1726 -644 -16 ) ( -1740 -652 -16 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1772 -574 144 ) ( -1772 -574 -16 ) ( -1726 -644 -16 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4648 +{ +( -1568 -168 112 ) ( -1696 -168 112 ) ( -1696 -536 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1696 -536 128 ) ( -1696 -168 128 ) ( -1568 -168 128 ) bricks/c_sr_mr5 0 -9 327 1 1 0 0 0 +( -1832 -536 256 ) ( -1832 -536 96 ) ( -1900 -492 96 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1822 -524 256 ) ( -1822 -524 96 ) ( -1832 -536 96 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1892 -478 96 ) ( -1892 -478 256 ) ( -1900 -492 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1822 -524 96 ) ( -1822 -524 256 ) ( -1892 -478 256 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4649 +{ +( -1700 -112 112 ) ( -1828 -112 112 ) ( -1828 -480 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1828 -480 128 ) ( -1828 -112 128 ) ( -1700 -112 128 ) bricks/c_sr_mr5 0 -8 336 1 1 0 0 0 +( -1900 -492 256 ) ( -1900 -492 96 ) ( -1964 -464 96 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1892 -478 256 ) ( -1892 -478 96 ) ( -1900 -492 96 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1960 -448 96 ) ( -1960 -448 256 ) ( -1964 -464 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1960 -448 256 ) ( -1960 -448 96 ) ( -1892 -478 96 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4650 +{ +( -1856 -80 112 ) ( -1984 -80 112 ) ( -1984 -448 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1984 -448 128 ) ( -1984 -80 128 ) ( -1856 -80 128 ) bricks/c_sr_mr5 0 1 349 1 1 0 0 0 +( -1964 -464 256 ) ( -1964 -464 96 ) ( -2040 -448 96 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1964 -464 96 ) ( -1964 -464 256 ) ( -1960 -448 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -2042 -464 256 ) ( -2042 -464 240 ) ( -2040 -448 240 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1960 -448 96 ) ( -1960 -448 256 ) ( -2038 -432 256 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4651 +{ +( -1538 -234 112 ) ( -1592 -234 112 ) ( -1592 -318 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1592 -318 128 ) ( -1592 -234 128 ) ( -1538 -234 128 ) bricks/c_sr_mr5 0 8 135 1 1 0 0 0 +( -1480 -344 128 ) ( -1480 -344 112 ) ( -1490 -352 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1480 -344 112 ) ( -1480 -344 128 ) ( -1592 -232 128 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1592 -232 112 ) ( -1592 -232 128 ) ( -1600 -242 128 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1544 -298 128 ) ( -1544 -298 112 ) ( -1600 -242 112 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4652 +{ +( -1312 -704 128 ) ( -1312 -832 128 ) ( -1680 -832 128 ) bricks/c_sr_mr5 0 -1 90 1 1 0 0 0 +( -1680 -832 112 ) ( -1312 -832 112 ) ( -1312 -704 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1328 -758 128 ) ( -1328 -758 -32 ) ( -1312 -756 -32 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1312 -756 128 ) ( -1312 -756 -32 ) ( -1312 -832 -32 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1312 -832 96 ) ( -1680 -832 96 ) ( -1680 -832 256 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1328 -758 -32 ) ( -1328 -758 128 ) ( -1328 -832 128 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4653 +{ +( -1328 -608 128 ) ( -1328 -736 128 ) ( -1696 -736 128 ) bricks/c_sr_mr5 0 -9 101 1 1 0 0 0 +( -1696 -736 112 ) ( -1328 -736 112 ) ( -1328 -608 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1358 -604 144 ) ( -1358 -604 -16 ) ( -1344 -600 -16 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1312 -756 -16 ) ( -1312 -756 144 ) ( -1344 -600 144 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1328 -758 -16 ) ( -1328 -758 144 ) ( -1312 -756 144 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1358 -604 -16 ) ( -1358 -604 144 ) ( -1328 -758 144 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4654 +{ +( -1360 -452 128 ) ( -1360 -580 128 ) ( -1728 -580 128 ) bricks/c_sr_mr5 0 -1 113 1 1 0 0 0 +( -1728 -580 112 ) ( -1360 -580 112 ) ( -1360 -452 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1400 -468 -16 ) ( -1400 -468 144 ) ( -1412 -474 144 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1400 -468 144 ) ( -1400 -468 -16 ) ( -1344 -600 -16 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1358 -604 -16 ) ( -1358 -604 144 ) ( -1344 -600 144 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1412 -474 -16 ) ( -1412 -474 144 ) ( -1358 -604 144 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4655 +{ +( -1416 -320 128 ) ( -1416 -448 128 ) ( -1784 -448 128 ) bricks/c_sr_mr5 0 -6 122 1 1 0 0 0 +( -1784 -448 112 ) ( -1416 -448 112 ) ( -1416 -320 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1490 -352 144 ) ( -1490 -352 -16 ) ( -1480 -344 -16 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1400 -468 -16 ) ( -1400 -468 144 ) ( -1480 -344 144 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1412 -474 -16 ) ( -1412 -474 144 ) ( -1400 -468 144 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1490 -352 -16 ) ( -1490 -352 144 ) ( -1412 -474 144 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4656 +{ +( -1568 -168 112 ) ( -1696 -168 112 ) ( -1696 -536 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1696 -536 128 ) ( -1696 -168 128 ) ( -1568 -168 128 ) bricks/c_sr_mr5 0 4 147 1 1 0 0 0 +( -1600 -242 96 ) ( -1600 -242 256 ) ( -1592 -232 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1716 -152 256 ) ( -1716 -152 96 ) ( -1592 -232 96 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1722 -164 256 ) ( -1722 -164 96 ) ( -1716 -152 96 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1600 -242 256 ) ( -1600 -242 96 ) ( -1722 -164 96 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4657 +{ +( -1700 -112 112 ) ( -1828 -112 112 ) ( -1828 -480 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1828 -480 128 ) ( -1828 -112 128 ) ( -1700 -112 128 ) bricks/c_sr_mr5 0 9 157 1 1 0 0 0 +( -1716 -152 256 ) ( -1716 -152 96 ) ( -1722 -164 96 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1716 -152 96 ) ( -1716 -152 256 ) ( -1848 -96 256 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1852 -110 256 ) ( -1852 -110 96 ) ( -1848 -96 96 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1722 -164 256 ) ( -1722 -164 96 ) ( -1852 -110 96 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4658 +{ +( -1856 -80 112 ) ( -1984 -80 112 ) ( -1984 -448 112 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -1984 -448 128 ) ( -1984 -80 128 ) ( -1856 -80 128 ) bricks/c_sr_mr5 0 -4 169 1 1 0 0 0 +( -1852 -110 96 ) ( -1852 -110 256 ) ( -1848 -96 256 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -2004 -64 256 ) ( -2004 -64 96 ) ( -1848 -96 96 ) bricks/c_sr_mr5 32 -16 0 1 1 0 0 0 +( -2006 -80 256 ) ( -2006 -80 96 ) ( -2004 -64 96 ) bricks/c_sr_mr5 0 -16 0 1 1 0 0 0 +( -1852 -110 256 ) ( -1852 -110 96 ) ( -2006 -80 96 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +} +// brush 4659 +{ +( -1264 -576 -32 ) ( -1280 -576 -32 ) ( -1280 -752 -32 ) bricks/c_sr_mb1b -191 62 270 1 1 0 0 0 +( -1280 -752 0 ) ( -1280 -576 0 ) ( -1264 -576 0 ) bricks/c_sr_mr5 0 -1 270 1 1 0 0 0 +( -1264 -2240 -16 ) ( -1248 -2240 -16 ) ( -1248 -2240 -48 ) bricks/c_sr_mb1b 0 63 270 1 1 0 0 0 +( -1264 -752 0 ) ( -1264 -576 0 ) ( -1264 -576 -32 ) bricks/c_sr_mr5 0 15 0 1 1 0 0 0 +( -1264 -832 0 ) ( -1280 -832 0 ) ( -1280 -832 -32 ) bricks/c_sr_mb1b 0 63 270 1 1 0 0 0 +( -1280 -808 0 ) ( -1280 -984 0 ) ( -1280 -984 -32 ) bricks/c_sr_mb1b 0 -1 270 1 1 0 0 0 +} +// brush 4660 +{ +( -912 -576 -32 ) ( -1216 -576 -32 ) ( -1216 -928 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 -928 -16 ) ( -1216 -576 -16 ) ( -912 -576 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 -2240 -16 ) ( -912 -2240 -16 ) ( -912 -2240 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -880 -928 -16 ) ( -880 -576 -16 ) ( -880 -576 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -912 -832 -16 ) ( -1216 -832 -16 ) ( -1216 -832 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1264 -576 -16 ) ( -1264 -928 -16 ) ( -1264 -928 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 4661 +{ +( 216 -448 0 ) ( 86 -448 0 ) ( 86 -464 0 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 87 -452 42 ) ( 87 -436 42 ) ( 217 -436 42 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 82 -452 128 ) ( 212 -452 128 ) ( 212 -452 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 178 -468 128 ) ( 178 -452 128 ) ( 178 -452 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 217 -448 128 ) ( 87 -448 128 ) ( 87 -448 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 92 -448 128 ) ( 92 -464 128 ) ( 92 -464 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4662 +{ +( 217 -436 42 ) ( 87 -436 42 ) ( 87 -452 42 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 88 -464 192 ) ( 88 -448 192 ) ( 218 -448 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 87 -452 202 ) ( 217 -452 202 ) ( 217 -452 42 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 217 -470 266 ) ( 217 -454 266 ) ( 217 -454 106 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 217 -448 202 ) ( 87 -448 202 ) ( 87 -448 42 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 178 -448 262 ) ( 178 -464 262 ) ( 178 -464 102 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4663 +{ +( 168 -436 85 ) ( 38 -436 85 ) ( 38 -452 85 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 46 -464 192 ) ( 46 -448 192 ) ( 176 -448 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 45 -452 202 ) ( 175 -452 202 ) ( 175 -452 42 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 178 -470 266 ) ( 178 -454 266 ) ( 178 -454 106 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 175 -448 202 ) ( 45 -448 202 ) ( 45 -448 42 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 137 -448 198 ) ( 137 -464 198 ) ( 137 -464 38 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4664 +{ +( 209 -448 0 ) ( 209 -464 0 ) ( 217 -464 0 ) bricks/c_tn_m3 128 0 0 1 1 0 0 0 +( 129 -452 128 ) ( 259 -452 128 ) ( 259 -452 -32 ) bricks/c_tn_m3 128 0 0 1 1 0 0 0 +( 217 -464 16 ) ( 217 -448 17 ) ( 217 -448 0 ) bricks/c_tn_m3 128 0 0 1 1 0 0 0 +( 259 -448 128 ) ( 129 -448 128 ) ( 129 -448 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 209 -452 0 ) ( 209 -436 0 ) ( 217 -436 17 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +} +// brush 4665 +{ +( 209 -464 0 ) ( 209 -448 0 ) ( 175 -448 0 ) bricks/c_tn_m3 128 0 0 1 1 0 0 0 +( 129 -452 128 ) ( 259 -452 128 ) ( 259 -452 -32 ) bricks/c_tn_m3 128 0 0 1 1 0 0 0 +( 259 -448 128 ) ( 129 -448 128 ) ( 129 -448 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 209 -436 0 ) ( 209 -452 0 ) ( 217 -452 17 ) bricks/c_tn_m3 128 0 0 1 1 0 0 0 +( 212 -452 6 ) ( 200 -452 0 ) ( 206 -448 3 ) bricks/c_sr_mr5 0 -1 0 1 1 0 0 0 +} +// brush 4666 +{ +( -420 -464 192 ) ( -420 -448 192 ) ( -375 -448 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -420 -464 128 ) ( -375 -464 128 ) ( -375 -464 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -375 -464 192 ) ( -375 -448 192 ) ( -375 -448 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -375 -448 128 ) ( -420 -448 128 ) ( -420 -448 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -420 -448 128 ) ( -420 -464 128 ) ( -420 -464 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( -427 -464 85 ) ( -371 -464 85 ) ( -399 -448 85 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4667 +{ +( -378 -448 43 ) ( -423 -448 43 ) ( -423 -464 43 ) bricks/b_sr_20b 0 -40 0 1 1 0 0 0 +( -420 -464 170 ) ( -375 -464 170 ) ( -375 -464 10 ) bricks/b_sr_20b 0 -40 0 1 1 0 0 0 +( -375 -464 170 ) ( -375 -448 170 ) ( -375 -448 10 ) bricks/b_sr_20b 0 -40 0 1 1 0 0 0 +( -375 -452 170 ) ( -420 -452 170 ) ( -420 -452 10 ) bricks/b_sr_20b 0 -40 0 1 1 0 0 0 +( -420 -448 170 ) ( -420 -464 170 ) ( -420 -464 10 ) bricks/b_sr_20b 0 -40 0 1 1 0 0 0 +( -371 -464 85 ) ( -427 -464 85 ) ( -399 -448 85 ) bricks/b_sr_20b 0 -40 0 1 1 0 0 0 +} +// brush 4668 +{ +( 1114 -64 192 ) ( 1114 -49 192 ) ( 1158 -49 192 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1114 -64 128 ) ( 1158 -64 128 ) ( 1158 -64 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1161 -64 192 ) ( 1161 -49 192 ) ( 1161 -49 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1158 -48 128 ) ( 1114 -48 128 ) ( 1114 -48 -32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1116 -49 192 ) ( 1116 -64 192 ) ( 1116 -64 32 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1110 -64 85 ) ( 1127 -64 85 ) ( 1119 -48 85 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4669 +{ +( 1157 -49 42 ) ( 1113 -49 42 ) ( 1113 -64 42 ) bricks/b_sr_20b 0 -40 0 1 1 0 0 0 +( 1114 -60 172 ) ( 1158 -60 172 ) ( 1158 -60 12 ) bricks/b_sr_20b 0 -40 0 1 1 0 0 0 +( 1161 -64 171 ) ( 1161 -49 171 ) ( 1161 -49 11 ) bricks/b_sr_20b 0 -40 0 1 1 0 0 0 +( 1158 -48 171 ) ( 1114 -48 171 ) ( 1114 -48 11 ) bricks/b_sr_20b 0 -40 0 1 1 0 0 0 +( 1116 -49 171 ) ( 1116 -64 171 ) ( 1116 -64 11 ) bricks/b_sr_20b 0 -40 0 1 1 0 0 0 +( 1130 -64 85 ) ( 1113 -64 85 ) ( 1122 -48 85 ) bricks/b_sr_20b 0 -40 0 1 1 0 0 0 +} +// brush 4670 +{ +( 1138 -64 42 ) ( 1138 -60 42 ) ( 1116 -60 42 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1160 -60 171 ) ( 1116 -60 171 ) ( 1116 -60 11 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1116 -60 64 ) ( 1116 -64 64 ) ( 1116 -64 42 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1116 -64 63 ) ( 1116 -60 63 ) ( 1132 -60 85 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1138 -60 42 ) ( 1138 -64 42 ) ( 1122 -64 71 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1138 -60 42 ) ( 1116 -64 42 ) ( 1127 -62 71 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +// brush 4671 +{ +( 1160 -60 171 ) ( 1116 -60 171 ) ( 1116 -60 11 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1116 -64 63 ) ( 1116 -60 63 ) ( 1116 -60 85 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1132 -60 85 ) ( 1132 -64 85 ) ( 1116 -64 85 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1116 -60 63 ) ( 1116 -64 63 ) ( 1132 -64 85 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +( 1132 -60 63 ) ( 1116 -64 63 ) ( 1124 -62 85 ) bricks/c_tn_m3 0 0 0 1 1 0 0 0 +} +} +// entity 1 +{ +"classname" "func_group" +// brush 0 +{ +( 213 224 -64 ) ( 216 256 -96 ) ( 130 241 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 216 256 -48 ) ( 216 256 -96 ) ( 213 224 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 130 241 -64 ) ( 216 256 -96 ) ( 216 256 -48 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 108 224 -64 ) ( 96 256 -64 ) ( 120 256 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 200 218 -96 ) ( 208 258 -96 ) ( 204 238 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +} +// brush 1 +{ +( 213 224 -64 ) ( 216 256 -96 ) ( 130 241 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 130 241 -64 ) ( 216 256 -96 ) ( 216 256 -48 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 108 224 -64 ) ( 96 256 -64 ) ( 120 256 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 138 238 -96 ) ( 144 268 -96 ) ( 141 253 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 208 258 -96 ) ( 200 218 -96 ) ( 204 238 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 136 248 -93 ) ( 212 232 -93 ) ( 174 240 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +} +// brush 2 +{ +( 216 256 -96 ) ( 140 272 -96 ) ( 130 241 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 216 256 -96 ) ( 130 241 -64 ) ( 130 241 -48 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 108 241 -64 ) ( 96 272 -64 ) ( 120 272 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 138 238 -96 ) ( 144 268 -96 ) ( 141 253 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 136 248 -96 ) ( 212 232 -96 ) ( 174 240 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +} +// brush 3 +{ +( 216 256 -96 ) ( 140 272 -96 ) ( 130 241 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 140 272 -48 ) ( 140 272 -96 ) ( 216 256 -96 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 130 241 -64 ) ( 140 272 -96 ) ( 140 272 -48 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 216 256 -96 ) ( 130 241 -64 ) ( 130 241 -48 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 108 241 -64 ) ( 96 272 -64 ) ( 120 272 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 144 268 -96 ) ( 138 238 -96 ) ( 141 253 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +} +// brush 4 +{ +( 213 224 -64 ) ( 216 256 -96 ) ( 130 241 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 130 241 -64 ) ( 216 256 -96 ) ( 216 256 -48 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 108 224 -64 ) ( 96 256 -64 ) ( 120 256 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 144 268 -96 ) ( 138 238 -96 ) ( 141 253 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +} +// brush 5 +{ +( 216 256 -96 ) ( 140 272 -96 ) ( 130 241 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 140 272 -48 ) ( 140 272 -96 ) ( 216 256 -96 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 216 256 -96 ) ( 130 241 -64 ) ( 130 241 -48 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 108 241 -64 ) ( 96 272 -64 ) ( 120 272 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 138 238 -96 ) ( 144 268 -96 ) ( 141 253 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 208 258 -96 ) ( 200 218 -96 ) ( 204 238 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 220 246 -96 ) ( 134 264 -96 ) ( 177 255 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +} +// brush 6 +{ +( 213 224 -64 ) ( 216 256 -96 ) ( 130 241 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 130 241 -64 ) ( 216 256 -96 ) ( 216 256 -48 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 108 224 -64 ) ( 96 256 -64 ) ( 120 256 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 208 258 -96 ) ( 200 218 -96 ) ( 204 238 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 220 246 -93 ) ( 134 264 -93 ) ( 177 255 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +} +// brush 7 +{ +( 216 256 -96 ) ( 140 272 -96 ) ( 130 241 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 140 272 -48 ) ( 140 272 -96 ) ( 216 256 -96 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 216 256 -96 ) ( 130 241 -64 ) ( 130 241 -48 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 108 241 -64 ) ( 96 272 -64 ) ( 120 272 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +( 200 218 -96 ) ( 208 258 -96 ) ( 204 238 -64 ) bricks/c_tn_m1 -59 -7 168 1 1 0 0 0 +} +} +// entity 2 +{ +"classname" "func_wall" +// brush 0 +{ +( -3040 -1856 576 ) ( -3392 -1856 576 ) ( -3392 -1920 576 ) sprites/win_bars 0 0 0 1 1 0 4096 0 +( -3392 -1920 640 ) ( -3392 -1856 640 ) ( -3040 -1856 640 ) sprites/win_bars 0 0 0 1 1 0 4096 0 +( -3392 -2112 640 ) ( -3040 -2112 640 ) ( -3040 -2112 576 ) sprites/win_bars 0 0 0 1 1 0 4096 0 +( -3072 -1856 640 ) ( -3424 -1856 640 ) ( -3424 -1856 576 ) sprites/win_bars 0 0 0 1 1 0 4096 0 +( -3424 -1856 640 ) ( -3424 -1920 640 ) ( -3424 -1920 576 ) sprites/win_bars 0 0 0 1 1 0 4096 0 +( -3232 -2496 576 ) ( -3232 -2520 576 ) ( -3232 -2508 640 ) sprites/win_bars 0 0 0 1 1 0 4096 0 +} +} +// entity 3 +{ +"classname" "func_group" +// brush 0 +{ +( -88 2950 764 ) ( -104 2950 764 ) ( -104 2942 764 ) common/li_sr_m19a 8 -6 0 1.500000 1 134217728 1 20000 +( -88 2950 766 ) ( -88 2942 766 ) ( -104 2942 768 ) common/li_sr_v3 0 0 0 1 1 134217728 132 0 +( -104 2942 768 ) ( -88 2942 768 ) ( -88 2942 764 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -88 2942 766 ) ( -88 2950 766 ) ( -88 2950 764 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -88 2950 768 ) ( -104 2950 768 ) ( -104 2950 764 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -104 2950 768 ) ( -104 2942 768 ) ( -104 2942 764 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +} +// brush 1 +{ +( -94 2948 764 ) ( -124 2948 764 ) ( -124 2944 764 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -124 2944 768 ) ( -124 2948 768 ) ( -94 2948 768 ) common/li_sr_v3 0 0 0 1 1 134217728 132 0 +( -124 2944 768 ) ( -94 2944 768 ) ( -94 2944 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -104 2944 768 ) ( -104 2948 768 ) ( -104 2948 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -94 2948 768 ) ( -124 2948 768 ) ( -124 2948 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -124 2948 768 ) ( -124 2944 768 ) ( -124 2944 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +} +// brush 2 +{ +( -126 2946 648 ) ( -128 2946 648 ) ( -128 2944 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -128 2944 768 ) ( -128 2946 768 ) ( -126 2946 768 ) common/li_sr_v3 0 0 0 1 1 134217728 132 0 +( -128 2944 672 ) ( -126 2944 672 ) ( -126 2944 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -124 2944 672 ) ( -124 2946 672 ) ( -124 2946 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -126 2948 672 ) ( -128 2948 672 ) ( -128 2948 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -128 2946 672 ) ( -128 2944 672 ) ( -128 2944 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +} +} +// entity 4 +{ +"classname" "func_group" +// brush 0 +{ +( -88 3076 764 ) ( -104 3076 764 ) ( -104 3068 764 ) common/li_sr_m19a 8 -8 0 1.500000 1 134217728 1 20000 +( -88 3076 766 ) ( -88 3068 766 ) ( -104 3068 768 ) common/li_sr_v3 0 0 0 1 1 134217728 132 0 +( -104 3068 768 ) ( -88 3068 768 ) ( -88 3068 764 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -88 3068 766 ) ( -88 3076 766 ) ( -88 3076 764 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -88 3076 768 ) ( -104 3076 768 ) ( -104 3076 764 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -104 3076 768 ) ( -104 3068 768 ) ( -104 3068 764 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +} +// brush 1 +{ +( -94 3074 764 ) ( -124 3074 764 ) ( -124 3070 764 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -124 3070 768 ) ( -124 3074 768 ) ( -94 3074 768 ) common/li_sr_v3 0 0 0 1 1 134217728 132 0 +( -124 3070 768 ) ( -94 3070 768 ) ( -94 3070 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -104 3070 768 ) ( -104 3074 768 ) ( -104 3074 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -94 3074 768 ) ( -124 3074 768 ) ( -124 3074 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -124 3074 768 ) ( -124 3070 768 ) ( -124 3070 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +} +// brush 2 +{ +( -126 3072 648 ) ( -128 3072 648 ) ( -128 3070 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -128 3070 768 ) ( -128 3072 768 ) ( -126 3072 768 ) common/li_sr_v3 0 0 0 1 1 134217728 132 0 +( -128 3070 672 ) ( -126 3070 672 ) ( -126 3070 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -124 3070 672 ) ( -124 3072 672 ) ( -124 3072 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -126 3074 672 ) ( -128 3074 672 ) ( -128 3074 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -128 3072 672 ) ( -128 3070 672 ) ( -128 3070 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +} +} +// entity 5 +{ +"classname" "func_group" +// brush 0 +{ +( -88 3206 764 ) ( -104 3206 764 ) ( -104 3198 764 ) common/li_sr_m19a 8 -6 0 1.500000 1 134217728 1 20000 +( -88 3206 766 ) ( -88 3198 766 ) ( -104 3198 768 ) common/li_sr_v3 0 0 0 1 1 134217728 132 0 +( -104 3198 768 ) ( -88 3198 768 ) ( -88 3198 764 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -88 3198 766 ) ( -88 3206 766 ) ( -88 3206 764 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -88 3206 768 ) ( -104 3206 768 ) ( -104 3206 764 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -104 3206 768 ) ( -104 3198 768 ) ( -104 3198 764 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +} +// brush 1 +{ +( -94 3204 764 ) ( -124 3204 764 ) ( -124 3200 764 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -124 3200 768 ) ( -124 3204 768 ) ( -94 3204 768 ) common/li_sr_v3 0 0 0 1 1 134217728 132 0 +( -124 3200 768 ) ( -94 3200 768 ) ( -94 3200 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -104 3200 768 ) ( -104 3204 768 ) ( -104 3204 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -94 3204 768 ) ( -124 3204 768 ) ( -124 3204 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -124 3204 768 ) ( -124 3200 768 ) ( -124 3200 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +} +// brush 2 +{ +( -126 3202 648 ) ( -128 3202 648 ) ( -128 3200 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -128 3200 768 ) ( -128 3202 768 ) ( -126 3202 768 ) common/li_sr_v3 0 0 0 1 1 134217728 132 0 +( -128 3200 672 ) ( -126 3200 672 ) ( -126 3200 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -124 3200 672 ) ( -124 3202 672 ) ( -124 3202 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -126 3204 672 ) ( -128 3204 672 ) ( -128 3204 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +( -128 3202 672 ) ( -128 3200 672 ) ( -128 3200 648 ) metals/mt_pv_m16bc 0 0 0 1 1 134217728 0 0 +} +} +// entity 6 +{ +"classname" "light" +"light" "150" +"origin" "-96 2946 744" +} +// entity 7 +{ +"classname" "func_wall" +// brush 0 +{ +( -127 3242 648 ) ( -128 3242 648 ) ( -128 3241 648 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -128 3241 672 ) ( -128 3242 672 ) ( -127 3242 672 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -126 3023 656 ) ( -126 3024 656 ) ( -126 3024 648 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -127 3328 656 ) ( -128 3328 656 ) ( -128 3328 648 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -128 3242 656 ) ( -128 3241 656 ) ( -128 3241 648 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -122 3200 648 ) ( -126 3200 648 ) ( -124 3200 672 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +} +// brush 1 +{ +( -127 3242 648 ) ( -128 3242 648 ) ( -128 3241 648 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -128 3241 672 ) ( -128 3242 672 ) ( -127 3242 672 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -126 3019 656 ) ( -126 3020 656 ) ( -126 3020 648 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -128 3242 656 ) ( -128 3241 656 ) ( -128 3241 648 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -126 3200 648 ) ( -122 3200 648 ) ( -124 3200 672 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -122 3074 648 ) ( -130 3074 648 ) ( -126 3074 672 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +} +// brush 2 +{ +( -127 3242 648 ) ( -128 3242 648 ) ( -128 3241 648 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -128 3241 672 ) ( -128 3242 672 ) ( -127 3242 672 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -126 3019 656 ) ( -126 3020 656 ) ( -126 3020 648 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -128 3242 656 ) ( -128 3241 656 ) ( -128 3241 648 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -124 2948 648 ) ( -128 2948 648 ) ( -126 2948 672 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -130 3070 648 ) ( -122 3070 648 ) ( -126 3070 672 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +} +// brush 3 +{ +( -127 3242 648 ) ( -128 3242 648 ) ( -128 3241 648 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -128 3241 672 ) ( -128 3242 672 ) ( -127 3242 672 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -119 2624 656 ) ( -118 2624 656 ) ( -118 2624 648 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -126 3015 656 ) ( -126 3016 656 ) ( -126 3016 648 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -128 3242 656 ) ( -128 3241 656 ) ( -128 3241 648 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -128 2936 648 ) ( -124 2936 648 ) ( -126 2936 672 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +} +} +// entity 8 +{ +"classname" "elements_raincloud" +"fxdensity" "800" +// brush 0 +{ +( 976 2224 1384 ) ( 776 2224 1384 ) ( 776 2032 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 776 2032 1400 ) ( 776 2224 1400 ) ( 976 2224 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1415 2103 1400 ) ( 1415 2103 1384 ) ( 8 696 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1080 2216 1400 ) ( 1080 2216 1384 ) ( 1415 2103 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1080 2216 1384 ) ( 1080 2216 1400 ) ( -216 920 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 512 1520 1384 ) ( 496 1536 1384 ) ( 504 1528 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 9 +{ +"classname" "elements_raincloud" +"fxdensity" "800" +// brush 0 +{ +( 976 2224 1384 ) ( 776 2224 1384 ) ( 776 2032 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 776 2032 1400 ) ( 776 2224 1400 ) ( 976 2224 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 200 504 1400 ) ( 200 504 1384 ) ( -360 1064 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1415 2103 1400 ) ( 1415 2103 1384 ) ( 8 696 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1080 2216 1384 ) ( 1080 2216 1400 ) ( -216 920 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 496 1536 1384 ) ( 512 1520 1384 ) ( 504 1528 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 10 +{ +"classname" "func_wall" +// brush 0 +{ +( -896 2496 448 ) ( -1152 2496 448 ) ( -1152 2432 448 ) bricks/c_sr_mb1a 0 128 0 1 1 0 0 0 +( -1152 2432 512 ) ( -1152 2496 512 ) ( -896 2496 512 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -1152 2432 576 ) ( -896 2432 576 ) ( -896 2432 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -864 2432 576 ) ( -864 2496 576 ) ( -864 2496 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -896 2496 576 ) ( -1152 2496 576 ) ( -1152 2496 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -1184 2496 576 ) ( -1184 2432 576 ) ( -1184 2432 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +} +} +// entity 11 +{ +"classname" "func_wall" +// brush 0 +{ +( -1051 2856 448 ) ( -836 2717 448 ) ( -802 2770 448 ) bricks/c_sr_mb1a -42 32 327 1.150000 1 0 0 0 +( -802 2770 512 ) ( -836 2717 512 ) ( -1051 2856 512 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -802 2770 576 ) ( -1016 2910 576 ) ( -1016 2910 448 ) bricks/c_sr_mb1a 30 0 0 1 1 0 0 0 +( -1046 2927 576 ) ( -1081 2873 576 ) ( -1081 2873 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -1051 2856 576 ) ( -836 2717 576 ) ( -836 2717 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -810 2700 576 ) ( -775 2754 576 ) ( -775 2754 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +} +} +// entity 12 +{ +"classname" "func_wall" +// brush 0 +{ +( -863 3067 448 ) ( -724 2852 448 ) ( -670 2887 448 ) bricks/c_sr_mb1a 215 178 303 1 1 0 0 0 +( -670 2887 512 ) ( -724 2852 512 ) ( -863 3067 512 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -670 2887 576 ) ( -810 3101 576 ) ( -810 3101 448 ) bricks/c_sr_mb1a 231 0 -180 0.838623 -1 0 0 0 +( -827 3128 576 ) ( -881 3093 576 ) ( -881 3093 448 ) bricks/c_sr_mb1a -81 0 0 0.838379 1 0 0 0 +( -863 3067 576 ) ( -724 2852 576 ) ( -724 2852 448 ) bricks/c_sr_mb1a -1 0 -180 0.838623 -1 0 0 0 +( -697 2828 576 ) ( -643 2863 576 ) ( -643 2863 448 ) bricks/c_sr_mb1a -48 0 0 0.838867 1 0 0 0 +} +} +// entity 13 +{ +"classname" "func_wall" +// brush 0 +{ +( -384 3232 448 ) ( -448 3232 448 ) ( -448 2912 448 ) bricks/c_sr_mb1a 0 128 90 1 1 0 0 0 +( -448 2912 512 ) ( -448 3232 512 ) ( -384 3232 512 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -448 2912 512 ) ( -384 2912 512 ) ( -384 2912 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -384 2912 512 ) ( -384 3232 512 ) ( -384 3232 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -384 3232 512 ) ( -448 3232 512 ) ( -448 3232 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -448 3232 512 ) ( -448 2912 512 ) ( -448 2912 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +} +} +// entity 14 +{ +"classname" "func_wall" +// brush 0 +{ +( 0 3232 448 ) ( -64 3232 448 ) ( -64 2912 448 ) bricks/c_sr_mb1a 0 128 90 1 1 0 0 0 +( -64 2912 512 ) ( -64 3232 512 ) ( 0 3232 512 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -64 2912 512 ) ( 0 2912 512 ) ( 0 2912 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( 0 2912 512 ) ( 0 3232 512 ) ( 0 3232 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( 0 3232 512 ) ( -64 3232 512 ) ( -64 3232 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -64 3232 512 ) ( -64 2912 512 ) ( -64 2912 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +} +} +// entity 15 +{ +"classname" "func_wall" +// brush 0 +{ +( 384 3232 448 ) ( 320 3232 448 ) ( 320 2912 448 ) bricks/c_sr_mb1a 0 128 90 1 1 0 0 0 +( 320 2912 512 ) ( 320 3232 512 ) ( 384 3232 512 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( 320 2912 512 ) ( 384 2912 512 ) ( 384 2912 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( 384 2912 512 ) ( 384 3232 512 ) ( 384 3232 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( 384 3232 512 ) ( 320 3232 512 ) ( 320 3232 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( 320 3232 512 ) ( 320 2912 512 ) ( 320 2912 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +} +} +// entity 16 +{ +"classname" "func_wall" +// brush 0 +{ +( 768 3232 448 ) ( 704 3232 448 ) ( 704 2912 448 ) bricks/c_sr_mb1a 0 128 90 1 1 0 0 0 +( 704 2912 512 ) ( 704 3232 512 ) ( 768 3232 512 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( 704 2912 512 ) ( 768 2912 512 ) ( 768 2912 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( 768 2912 512 ) ( 768 3232 512 ) ( 768 3232 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( 768 3232 512 ) ( 704 3232 512 ) ( 704 3232 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( 704 3232 512 ) ( 704 2912 512 ) ( 704 2912 448 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +} +} +// entity 17 +{ +"classname" "func_wall" +// brush 0 +{ +( 1128 3099 448 ) ( 989 2884 448 ) ( 1042 2850 448 ) bricks/c_sr_mb1a -144 166 57 1.150000 1 0 0 0 +( 1042 2850 512 ) ( 989 2884 512 ) ( 1128 3099 512 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( 1042 2850 576 ) ( 1182 3064 576 ) ( 1182 3064 448 ) bricks/c_sr_mb1a -26 0 0 1 1 0 0 0 +( 1199 3094 576 ) ( 1145 3129 576 ) ( 1145 3129 448 ) bricks/c_sr_mb1a 248 0 -180 1 -1 0 0 0 +( 1128 3099 576 ) ( 989 2884 576 ) ( 989 2884 448 ) bricks/c_sr_mb1a -56 0 0 1 1 0 0 0 +( 972 2858 576 ) ( 1026 2823 576 ) ( 1026 2823 448 ) bricks/c_sr_mb1a 248 0 -180 1 -1 0 0 0 +} +} +// entity 18 +{ +"classname" "func_wall" +// brush 0 +{ +( 1171 2609 448 ) ( 1185 2547 448 ) ( 1498 2613 448 ) bricks/c_sr_mb1a 129 -101 -167 1.000141 0.999902 0 0 0 +( 1498 2613 512 ) ( 1185 2547 512 ) ( 1171 2609 512 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( 1497 2613 512 ) ( 1483 2676 512 ) ( 1483 2676 448 ) bricks/c_sr_mb1a -41 0 0 0.978149 1 0 0 0 +( 1484 2676 512 ) ( 1171 2609 512 ) ( 1171 2609 448 ) bricks/c_sr_mb1a 146 0 -180 0.978027 -1 0 0 0 +( 1171 2598 512 ) ( 1184 2535 512 ) ( 1184 2535 448 ) bricks/c_sr_mb1a -202 0 0 0.978149 1 0 0 0 +( 1185 2547 512 ) ( 1498 2613 512 ) ( 1498 2613 448 ) bricks/c_sr_mb1a 160 0 -180 0.978027 -1 0 0 0 +} +} +// entity 19 +{ +"classname" "func_wall" +// brush 0 +{ +( 1131 2291 448 ) ( 1096 2237 448 ) ( 1364 2063 448 ) bricks/c_sr_mb1a 69 -86 327 1 1 0 0 0 +( 1364 2063 512 ) ( 1096 2237 512 ) ( 1131 2291 512 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( 1364 2062 512 ) ( 1399 2116 512 ) ( 1399 2116 448 ) bricks/c_sr_mb1a -75 0 0 0.838623 1 0 0 0 +( 1399 2117 512 ) ( 1131 2291 512 ) ( 1131 2291 448 ) bricks/c_sr_mb1a 96 0 -180 0.838623 -1 0 0 0 +( 1128 2291 512 ) ( 1093 2237 512 ) ( 1093 2237 448 ) bricks/c_sr_mb1a -109 0 0 0.838623 1 0 0 0 +( 1096 2237 512 ) ( 1364 2063 512 ) ( 1364 2063 448 ) bricks/c_sr_mb1a 55 0 -180 0.838379 -1 0 0 0 +} +} +// entity 20 +{ +"classname" "func_wall" +// brush 0 +{ +( 1091 1776 448 ) ( 1136 1821 448 ) ( 909 2048 448 ) bricks/c_sr_mb1a 0 -44 135 1 1 0 0 0 +( 909 2048 512 ) ( 1136 1821 512 ) ( 1091 1776 512 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( 911 2047 512 ) ( 866 2002 512 ) ( 866 2002 448 ) bricks/c_sr_mb1a -120 0 0 0.707520 1 0 0 0 +( 864 2003 512 ) ( 1091 1776 512 ) ( 1091 1776 448 ) bricks/c_sr_mb1a 43 0 0 0.707153 1 0 0 0 +( 1090 1778 512 ) ( 1135 1823 512 ) ( 1135 1823 448 ) bricks/c_sr_mb1a -189 0 0 0.707031 1 0 0 0 +( 1136 1821 512 ) ( 909 2048 512 ) ( 909 2048 448 ) bricks/c_sr_mb1a 43 0 0 0.707153 1 0 0 0 +} +} +// entity 21 +{ +"classname" "func_wall" +// brush 0 +{ +( 859 1544 448 ) ( 904 1589 448 ) ( 677 1816 448 ) bricks/c_sr_mb1a 32 -227 135 1 1 0 0 0 +( 677 1816 512 ) ( 904 1589 512 ) ( 859 1544 512 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( 679 1815 512 ) ( 634 1770 512 ) ( 634 1770 448 ) bricks/c_sr_mb1a -120 0 0 0.707520 1 0 0 0 +( 632 1771 512 ) ( 859 1544 512 ) ( 859 1544 448 ) bricks/c_sr_mb1a 43 0 0 0.707153 1 0 0 0 +( 858 1546 512 ) ( 903 1591 512 ) ( 903 1591 448 ) bricks/c_sr_mb1a -189 0 0 0.707031 1 0 0 0 +( 904 1589 512 ) ( 677 1816 512 ) ( 677 1816 448 ) bricks/c_sr_mb1a 43 0 0 0.707153 1 0 0 0 +} +} +// entity 22 +{ +"classname" "func_wall" +// brush 0 +{ +( 627 1312 448 ) ( 672 1357 448 ) ( 445 1584 448 ) bricks/c_sr_mb1a 32 -156 135 1 1 0 0 0 +( 445 1584 512 ) ( 672 1357 512 ) ( 627 1312 512 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( 447 1583 512 ) ( 402 1538 512 ) ( 402 1538 448 ) bricks/c_sr_mb1a -120 0 0 0.707520 1 0 0 0 +( 400 1539 512 ) ( 627 1312 512 ) ( 627 1312 448 ) bricks/c_sr_mb1a 43 0 0 0.707153 1 0 0 0 +( 626 1314 512 ) ( 671 1359 512 ) ( 671 1359 448 ) bricks/c_sr_mb1a -189 0 0 0.707031 1 0 0 0 +( 672 1357 512 ) ( 445 1584 512 ) ( 445 1584 448 ) bricks/c_sr_mb1a 43 0 0 0.707153 1 0 0 0 +} +} +// entity 23 +{ +"classname" "func_wall" +// brush 0 +{ +( 395 1080 448 ) ( 440 1125 448 ) ( 213 1352 448 ) bricks/c_sr_mb1a 32 -211 135 1 1 0 0 0 +( 213 1352 512 ) ( 440 1125 512 ) ( 395 1080 512 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( 215 1351 512 ) ( 170 1306 512 ) ( 170 1306 448 ) bricks/c_sr_mb1a -120 0 0 0.707520 1 0 0 0 +( 168 1307 512 ) ( 395 1080 512 ) ( 395 1080 448 ) bricks/c_sr_mb1a 43 0 0 0.707153 1 0 0 0 +( 394 1082 512 ) ( 439 1127 512 ) ( 439 1127 448 ) bricks/c_sr_mb1a -189 0 0 0.707031 1 0 0 0 +( 440 1125 512 ) ( 213 1352 512 ) ( 213 1352 448 ) bricks/c_sr_mb1a 43 0 0 0.707153 1 0 0 0 +} +} +// entity 24 +{ +"classname" "func_wall" +// brush 0 +{ +( 163 848 448 ) ( 208 893 448 ) ( -19 1120 448 ) bricks/c_sr_mb1a 32 -140 135 1 1 0 0 0 +( -19 1120 512 ) ( 208 893 512 ) ( 163 848 512 ) bricks/c_sr_mb1a 0 0 0 1 1 0 0 0 +( -17 1119 512 ) ( -62 1074 512 ) ( -62 1074 448 ) bricks/c_sr_mb1a -120 0 0 0.707520 1 0 0 0 +( -64 1075 512 ) ( 163 848 512 ) ( 163 848 448 ) bricks/c_sr_mb1a 43 0 0 0.707153 1 0 0 0 +( 162 850 512 ) ( 207 895 512 ) ( 207 895 448 ) bricks/c_sr_mb1a -189 0 0 0.707031 1 0 0 0 +( 208 893 512 ) ( -19 1120 512 ) ( -19 1120 448 ) bricks/c_sr_mb1a 43 0 0 0.707153 1 0 0 0 +} +} +// entity 25 +{ +"classname" "elements_raincloud" +"fxdensity" "250" +// brush 0 +{ +( 1032 2496 1384 ) ( 832 2496 1384 ) ( 832 2304 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 832 2304 1400 ) ( 832 2496 1400 ) ( 1032 2496 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1415 2103 1400 ) ( 1415 2103 1384 ) ( 1080 2216 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1415 2103 1384 ) ( 1415 2103 1400 ) ( 1472 2496 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1472 2496 1384 ) ( 1472 2496 1400 ) ( 1216 2496 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1216 2496 1384 ) ( 1216 2496 1400 ) ( 1080 2216 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 26 +{ +"classname" "elements_raincloud" +"fxdensity" "250" +// brush 0 +{ +( 1464 2600 1384 ) ( 1208 2600 1384 ) ( 1208 2496 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1208 2496 1400 ) ( 1208 2600 1400 ) ( 1464 2600 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1208 2496 1400 ) ( 1464 2496 1400 ) ( 1464 2496 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1368 2896 1400 ) ( 1368 2896 1384 ) ( 1464 2496 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1368 2896 1384 ) ( 1368 2896 1400 ) ( 1104 2712 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1040 2848 1384 ) ( 1040 2848 1400 ) ( 1208 2496 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 27 +{ +"classname" "elements_raincloud" +"fxdensity" "250" +// brush 0 +{ +( 1368 3088 1384 ) ( 920 3088 1384 ) ( 920 2896 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 920 2896 1400 ) ( 920 3088 1400 ) ( 1368 3088 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1104 2712 1384 ) ( 1104 2712 1400 ) ( 1368 2896 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 960 3200 1400 ) ( 960 3200 1384 ) ( 1368 2896 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 960 3200 1384 ) ( 960 3200 1400 ) ( 832 2944 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 832 2944 1384 ) ( 832 2944 1400 ) ( 1104 2712 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 28 +{ +"classname" "elements_raincloud" +"fxdensity" "1000" +// brush 0 +{ +( 856 3200 1384 ) ( 496 3200 1384 ) ( 496 2944 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 496 2944 1400 ) ( 496 3200 1400 ) ( 856 3200 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 496 2944 1400 ) ( 856 2944 1400 ) ( 856 2944 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 960 3200 1400 ) ( 960 3200 1384 ) ( 832 2944 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -648 3200 1400 ) ( -648 3200 1384 ) ( 960 3200 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -648 3200 1384 ) ( -648 3200 1400 ) ( -520 2944 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 29 +{ +"classname" "elements_raincloud" +"fxdensity" "250" +// brush 0 +{ +( -608 2896 1384 ) ( -608 3088 1384 ) ( -1056 3088 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -1056 3088 1400 ) ( -608 3088 1400 ) ( -608 2896 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -1056 2896 1400 ) ( -792 2712 1400 ) ( -792 2712 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -1056 2896 1384 ) ( -648 3200 1384 ) ( -648 3200 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -520 2944 1400 ) ( -648 3200 1400 ) ( -648 3200 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -792 2712 1400 ) ( -520 2944 1400 ) ( -520 2944 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 30 +{ +"classname" "elements_raincloud" +"fxdensity" "250" +// brush 0 +{ +( -896 2496 1384 ) ( -896 2600 1384 ) ( -1152 2600 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -1152 2600 1400 ) ( -896 2600 1400 ) ( -896 2496 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -1152 2496 1384 ) ( -1152 2496 1400 ) ( -896 2496 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -1152 2496 1384 ) ( -1056 2896 1384 ) ( -1056 2896 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -792 2712 1400 ) ( -1056 2896 1400 ) ( -1056 2896 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -896 2496 1400 ) ( -728 2848 1400 ) ( -728 2848 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 31 +{ +"classname" "elements_raincloud" +"fxdensity" "250" +// brush 0 +{ +( -896 2496 1384 ) ( -1152 2496 1384 ) ( -1152 2128 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -1152 2128 1400 ) ( -1152 2496 1400 ) ( -896 2496 1400 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -1152 2112 1400 ) ( -896 2112 1400 ) ( -896 2112 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -896 2128 1400 ) ( -896 2496 1400 ) ( -896 2496 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -896 2496 1400 ) ( -1152 2496 1400 ) ( -1152 2496 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -1152 2496 1400 ) ( -1152 2128 1400 ) ( -1152 2128 1384 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 32 +{ +"classname" "func_wall" +// brush 0 +{ +( 1245 -1 0 ) ( 1204 14 0 ) ( 1147 -135 0 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( 1166 -86 4 ) ( 1166 -86 0 ) ( 1173 -66 0 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( 1188 -72 0 ) ( 1188 -72 4 ) ( 1173 -66 4 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( 1166 -86 0 ) ( 1166 -86 4 ) ( 1188 -72 4 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +( 1181 -92 0 ) ( 1166 -86 4 ) ( 1181 -69 2 ) bricks/c_sr_mb2 0 0 0 1 1 0 0 0 +} +} +// entity 33 +{ +"classname" "func_wall" +// brush 0 +{ +( 3188 -144 -96 ) ( 3252 -172 -96 ) ( 3267 -144 -64 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3252 -172 -48 ) ( 3252 -172 -96 ) ( 3188 -144 -96 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3188 -144 -48 ) ( 3188 -144 -96 ) ( 3267 -144 -64 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3188 -376 -64 ) ( 3188 -352 -64 ) ( 3267 -364 -64 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3255 -156 -64 ) ( 3258 -149 -96 ) ( 3252 -163 -96 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3197 -130 -64 ) ( 3194 -137 -96 ) ( 3200 -123 -96 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3223 -150 -64 ) ( 3194 -137 -96 ) ( 3252 -163 -96 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +} +// brush 1 +{ +( 3198 -113 -64 ) ( 3188 -144 -96 ) ( 3267 -144 -64 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3267 -144 -64 ) ( 3188 -144 -96 ) ( 3188 -144 -48 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3188 -376 -64 ) ( 3188 -352 -64 ) ( 3267 -364 -64 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3197 -130 -64 ) ( 3194 -137 -96 ) ( 3200 -123 -96 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3223 -150 -64 ) ( 3194 -137 -95 ) ( 3252 -163 -95 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +} +// brush 2 +{ +( 3198 -113 -64 ) ( 3188 -144 -96 ) ( 3267 -144 -64 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3188 -144 -48 ) ( 3188 -144 -96 ) ( 3198 -113 -64 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3267 -144 -64 ) ( 3188 -144 -96 ) ( 3188 -144 -48 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3188 -376 -64 ) ( 3188 -352 -64 ) ( 3267 -364 -64 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3197 -130 -64 ) ( 3200 -123 -96 ) ( 3194 -137 -96 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +} +// brush 3 +{ +( 3188 -144 -96 ) ( 3252 -172 -96 ) ( 3267 -144 -64 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3252 -172 -48 ) ( 3252 -172 -96 ) ( 3188 -144 -96 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3188 -144 -48 ) ( 3188 -144 -96 ) ( 3267 -144 -64 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3188 -376 -64 ) ( 3188 -352 -64 ) ( 3267 -364 -64 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3197 -130 -64 ) ( 3200 -123 -96 ) ( 3194 -137 -96 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +} +// brush 4 +{ +( 3198 -113 -64 ) ( 3188 -144 -96 ) ( 3267 -144 -64 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3267 -144 -64 ) ( 3188 -144 -96 ) ( 3188 -144 -48 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3188 -376 -64 ) ( 3188 -352 -64 ) ( 3267 -364 -64 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3255 -156 -64 ) ( 3258 -149 -96 ) ( 3252 -163 -96 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3197 -130 -64 ) ( 3194 -137 -96 ) ( 3200 -123 -96 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3229 -136 -64 ) ( 3258 -149 -95 ) ( 3200 -123 -95 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +} +// brush 5 +{ +( 3188 -144 -96 ) ( 3252 -172 -96 ) ( 3267 -144 -64 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3188 -144 -48 ) ( 3188 -144 -96 ) ( 3267 -144 -64 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3188 -376 -64 ) ( 3188 -352 -64 ) ( 3267 -364 -64 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3255 -156 -64 ) ( 3258 -149 -96 ) ( 3252 -163 -96 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3229 -136 -64 ) ( 3258 -149 -96 ) ( 3200 -123 -96 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +} +// brush 6 +{ +( 3198 -113 -64 ) ( 3188 -144 -96 ) ( 3267 -144 -64 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3267 -144 -64 ) ( 3188 -144 -96 ) ( 3188 -144 -48 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3188 -376 -64 ) ( 3188 -352 -64 ) ( 3267 -364 -64 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3255 -156 -64 ) ( 3252 -163 -96 ) ( 3258 -149 -96 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +} +// brush 7 +{ +( 3188 -144 -96 ) ( 3252 -172 -96 ) ( 3267 -144 -64 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3252 -172 -48 ) ( 3252 -172 -96 ) ( 3188 -144 -96 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3267 -144 -64 ) ( 3252 -172 -96 ) ( 3252 -172 -48 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3188 -144 -48 ) ( 3188 -144 -96 ) ( 3267 -144 -64 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3188 -376 -64 ) ( 3188 -352 -64 ) ( 3267 -364 -64 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +( 3255 -156 -64 ) ( 3252 -163 -96 ) ( 3258 -149 -96 ) bricks/c_tn_m1 0 13 336 1 1 0 0 0 +} +} +// entity 34 +{ +"classname" "func_wall" +// brush 0 +{ +( 3440 -317 -64 ) ( 3412 -332 -96 ) ( 3440 -396 -96 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3440 -396 -96 ) ( 3412 -332 -96 ) ( 3412 -332 -48 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3440 -317 -64 ) ( 3440 -396 -96 ) ( 3440 -396 -48 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3220 -317 -64 ) ( 3232 -396 -64 ) ( 3208 -396 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3421 -332 -96 ) ( 3435 -326 -96 ) ( 3428 -329 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3461 -384 -96 ) ( 3447 -390 -96 ) ( 3454 -387 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3421 -332 -96 ) ( 3447 -390 -96 ) ( 3434 -361 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +} +// brush 1 +{ +( 3440 -317 -64 ) ( 3440 -396 -96 ) ( 3471 -386 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3440 -396 -48 ) ( 3440 -396 -96 ) ( 3440 -317 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3220 -317 -64 ) ( 3232 -396 -64 ) ( 3208 -396 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3461 -384 -96 ) ( 3447 -390 -96 ) ( 3454 -387 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3421 -332 -95 ) ( 3447 -390 -95 ) ( 3434 -361 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +} +// brush 2 +{ +( 3440 -317 -64 ) ( 3440 -396 -96 ) ( 3471 -386 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3471 -386 -64 ) ( 3440 -396 -96 ) ( 3440 -396 -48 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3440 -396 -48 ) ( 3440 -396 -96 ) ( 3440 -317 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3220 -317 -64 ) ( 3232 -396 -64 ) ( 3208 -396 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3447 -390 -96 ) ( 3461 -384 -96 ) ( 3454 -387 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +} +// brush 3 +{ +( 3440 -317 -64 ) ( 3412 -332 -96 ) ( 3440 -396 -96 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3440 -396 -96 ) ( 3412 -332 -96 ) ( 3412 -332 -48 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3440 -317 -64 ) ( 3440 -396 -96 ) ( 3440 -396 -48 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3220 -317 -64 ) ( 3232 -396 -64 ) ( 3208 -396 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3447 -390 -96 ) ( 3461 -384 -96 ) ( 3454 -387 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +} +// brush 4 +{ +( 3440 -317 -64 ) ( 3440 -396 -96 ) ( 3471 -386 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3440 -396 -48 ) ( 3440 -396 -96 ) ( 3440 -317 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3220 -317 -64 ) ( 3232 -396 -64 ) ( 3208 -396 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3421 -332 -96 ) ( 3435 -326 -96 ) ( 3428 -329 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3461 -384 -96 ) ( 3447 -390 -96 ) ( 3454 -387 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3461 -384 -95 ) ( 3435 -326 -95 ) ( 3448 -355 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +} +// brush 5 +{ +( 3440 -317 -64 ) ( 3412 -332 -96 ) ( 3440 -396 -96 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3440 -317 -64 ) ( 3440 -396 -96 ) ( 3440 -396 -48 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3220 -317 -64 ) ( 3232 -396 -64 ) ( 3208 -396 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3421 -332 -96 ) ( 3435 -326 -96 ) ( 3428 -329 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3461 -384 -96 ) ( 3435 -326 -96 ) ( 3448 -355 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +} +// brush 6 +{ +( 3440 -317 -64 ) ( 3412 -332 -96 ) ( 3440 -396 -96 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3440 -396 -96 ) ( 3412 -332 -96 ) ( 3412 -332 -48 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3412 -332 -48 ) ( 3412 -332 -96 ) ( 3440 -317 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3440 -317 -64 ) ( 3440 -396 -96 ) ( 3440 -396 -48 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3220 -317 -64 ) ( 3232 -396 -64 ) ( 3208 -396 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3435 -326 -96 ) ( 3421 -332 -96 ) ( 3428 -329 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +} +// brush 7 +{ +( 3440 -317 -64 ) ( 3440 -396 -96 ) ( 3471 -386 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3440 -396 -48 ) ( 3440 -396 -96 ) ( 3440 -317 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3220 -317 -64 ) ( 3232 -396 -64 ) ( 3208 -396 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +( 3435 -326 -96 ) ( 3421 -332 -96 ) ( 3428 -329 -64 ) bricks/c_tn_m1 0 6 294 1 1 0 0 0 +} +} +// entity 35 +{ +"classname" "func_wall" +// brush 0 +{ +( 3440 -628 -96 ) ( 3412 -692 -96 ) ( 3440 -707 -64 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3412 -692 -48 ) ( 3412 -692 -96 ) ( 3440 -628 -96 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3440 -628 -48 ) ( 3440 -628 -96 ) ( 3440 -707 -64 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3208 -628 -64 ) ( 3232 -628 -64 ) ( 3220 -707 -64 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3428 -695 -64 ) ( 3435 -698 -96 ) ( 3421 -692 -96 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3454 -637 -64 ) ( 3447 -634 -96 ) ( 3461 -640 -96 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3434 -663 -64 ) ( 3447 -634 -96 ) ( 3421 -692 -96 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +} +// brush 1 +{ +( 3440 -628 -96 ) ( 3412 -692 -96 ) ( 3440 -707 -64 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3412 -692 -48 ) ( 3412 -692 -96 ) ( 3440 -628 -96 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3440 -707 -64 ) ( 3412 -692 -96 ) ( 3412 -692 -48 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3440 -628 -48 ) ( 3440 -628 -96 ) ( 3440 -707 -64 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3208 -628 -64 ) ( 3232 -628 -64 ) ( 3220 -707 -64 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3428 -695 -64 ) ( 3421 -692 -96 ) ( 3435 -698 -96 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +} +// brush 2 +{ +( 3471 -638 -64 ) ( 3440 -628 -96 ) ( 3440 -707 -64 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3440 -707 -64 ) ( 3440 -628 -96 ) ( 3440 -628 -48 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3208 -628 -64 ) ( 3232 -628 -64 ) ( 3220 -707 -64 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3428 -695 -64 ) ( 3421 -692 -96 ) ( 3435 -698 -96 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +} +// brush 3 +{ +( 3471 -638 -64 ) ( 3440 -628 -96 ) ( 3440 -707 -64 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3440 -707 -64 ) ( 3440 -628 -96 ) ( 3440 -628 -48 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3208 -628 -64 ) ( 3232 -628 -64 ) ( 3220 -707 -64 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3428 -695 -64 ) ( 3435 -698 -96 ) ( 3421 -692 -96 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3454 -637 -64 ) ( 3447 -634 -96 ) ( 3461 -640 -96 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3448 -669 -64 ) ( 3435 -698 -95 ) ( 3461 -640 -95 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +} +// brush 4 +{ +( 3440 -628 -96 ) ( 3412 -692 -96 ) ( 3440 -707 -64 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3440 -628 -48 ) ( 3440 -628 -96 ) ( 3440 -707 -64 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3208 -628 -64 ) ( 3232 -628 -64 ) ( 3220 -707 -64 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3428 -695 -64 ) ( 3435 -698 -96 ) ( 3421 -692 -96 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3448 -669 -64 ) ( 3435 -698 -96 ) ( 3461 -640 -96 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +} +// brush 5 +{ +( 3471 -638 -64 ) ( 3440 -628 -96 ) ( 3440 -707 -64 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3440 -628 -48 ) ( 3440 -628 -96 ) ( 3471 -638 -64 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3440 -707 -64 ) ( 3440 -628 -96 ) ( 3440 -628 -48 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3208 -628 -64 ) ( 3232 -628 -64 ) ( 3220 -707 -64 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3454 -637 -64 ) ( 3461 -640 -96 ) ( 3447 -634 -96 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +} +// brush 6 +{ +( 3471 -638 -64 ) ( 3440 -628 -96 ) ( 3440 -707 -64 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3440 -707 -64 ) ( 3440 -628 -96 ) ( 3440 -628 -48 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3208 -628 -64 ) ( 3232 -628 -64 ) ( 3220 -707 -64 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3454 -637 -64 ) ( 3447 -634 -96 ) ( 3461 -640 -96 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3434 -663 -64 ) ( 3447 -634 -95 ) ( 3421 -692 -95 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +} +// brush 7 +{ +( 3440 -628 -96 ) ( 3412 -692 -96 ) ( 3440 -707 -64 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3412 -692 -48 ) ( 3412 -692 -96 ) ( 3440 -628 -96 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3440 -628 -48 ) ( 3440 -628 -96 ) ( 3440 -707 -64 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3208 -628 -64 ) ( 3232 -628 -64 ) ( 3220 -707 -64 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +( 3454 -637 -64 ) ( 3461 -640 -96 ) ( 3447 -634 -96 ) bricks/c_tn_m1 -113 7 246 1 1 0 0 0 +} +} +// entity 36 +{ +"classname" "func_wall" +// brush 0 +{ +( 3267 -880 -64 ) ( 3188 -880 -96 ) ( 3198 -911 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3198 -911 -64 ) ( 3188 -880 -96 ) ( 3188 -880 -48 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3188 -880 -48 ) ( 3188 -880 -96 ) ( 3267 -880 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3267 -660 -64 ) ( 3188 -672 -64 ) ( 3188 -648 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3194 -887 -96 ) ( 3200 -901 -96 ) ( 3197 -894 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +} +// brush 1 +{ +( 3267 -880 -64 ) ( 3188 -880 -96 ) ( 3198 -911 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3188 -880 -48 ) ( 3188 -880 -96 ) ( 3267 -880 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3267 -660 -64 ) ( 3188 -672 -64 ) ( 3188 -648 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3252 -861 -96 ) ( 3258 -875 -96 ) ( 3255 -868 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3200 -901 -96 ) ( 3194 -887 -96 ) ( 3197 -894 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3200 -901 -95 ) ( 3258 -875 -95 ) ( 3229 -888 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +} +// brush 2 +{ +( 3267 -880 -64 ) ( 3252 -852 -96 ) ( 3188 -880 -96 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3267 -880 -64 ) ( 3188 -880 -96 ) ( 3188 -880 -48 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3267 -660 -64 ) ( 3188 -672 -64 ) ( 3188 -648 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3252 -861 -96 ) ( 3258 -875 -96 ) ( 3255 -868 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3200 -901 -96 ) ( 3258 -875 -96 ) ( 3229 -888 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +} +// brush 3 +{ +( 3267 -880 -64 ) ( 3252 -852 -96 ) ( 3188 -880 -96 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3188 -880 -96 ) ( 3252 -852 -96 ) ( 3252 -852 -48 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3252 -852 -48 ) ( 3252 -852 -96 ) ( 3267 -880 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3267 -880 -64 ) ( 3188 -880 -96 ) ( 3188 -880 -48 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3267 -660 -64 ) ( 3188 -672 -64 ) ( 3188 -648 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3258 -875 -96 ) ( 3252 -861 -96 ) ( 3255 -868 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +} +// brush 4 +{ +( 3267 -880 -64 ) ( 3188 -880 -96 ) ( 3198 -911 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3188 -880 -48 ) ( 3188 -880 -96 ) ( 3267 -880 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3267 -660 -64 ) ( 3188 -672 -64 ) ( 3188 -648 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3258 -875 -96 ) ( 3252 -861 -96 ) ( 3255 -868 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +} +// brush 5 +{ +( 3267 -880 -64 ) ( 3252 -852 -96 ) ( 3188 -880 -96 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3188 -880 -96 ) ( 3252 -852 -96 ) ( 3252 -852 -48 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3267 -880 -64 ) ( 3188 -880 -96 ) ( 3188 -880 -48 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3267 -660 -64 ) ( 3188 -672 -64 ) ( 3188 -648 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3252 -861 -96 ) ( 3258 -875 -96 ) ( 3255 -868 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3200 -901 -96 ) ( 3194 -887 -96 ) ( 3197 -894 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3252 -861 -96 ) ( 3194 -887 -96 ) ( 3223 -874 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +} +// brush 6 +{ +( 3267 -880 -64 ) ( 3188 -880 -96 ) ( 3198 -911 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3188 -880 -48 ) ( 3188 -880 -96 ) ( 3267 -880 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3267 -660 -64 ) ( 3188 -672 -64 ) ( 3188 -648 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3200 -901 -96 ) ( 3194 -887 -96 ) ( 3197 -894 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3252 -861 -95 ) ( 3194 -887 -95 ) ( 3223 -874 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +} +// brush 7 +{ +( 3267 -880 -64 ) ( 3252 -852 -96 ) ( 3188 -880 -96 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3188 -880 -96 ) ( 3252 -852 -96 ) ( 3252 -852 -48 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3267 -880 -64 ) ( 3188 -880 -96 ) ( 3188 -880 -48 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3267 -660 -64 ) ( 3188 -672 -64 ) ( 3188 -648 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 3194 -887 -96 ) ( 3200 -901 -96 ) ( 3197 -894 -64 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +} +} +// entity 37 +{ +"classname" "func_wall" +// brush 0 +{ +( 1277 -1296 -64 ) ( 1356 -1296 -96 ) ( 1346 -1265 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1356 -1296 -48 ) ( 1356 -1296 -96 ) ( 1277 -1296 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1277 -1516 -64 ) ( 1356 -1504 -64 ) ( 1356 -1528 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1344 -1275 -96 ) ( 1350 -1289 -96 ) ( 1347 -1282 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1292 -1315 -95 ) ( 1350 -1289 -95 ) ( 1321 -1302 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +} +// brush 1 +{ +( 1277 -1296 -64 ) ( 1356 -1296 -96 ) ( 1346 -1265 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1346 -1265 -64 ) ( 1356 -1296 -96 ) ( 1356 -1296 -48 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1356 -1296 -48 ) ( 1356 -1296 -96 ) ( 1277 -1296 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1277 -1516 -64 ) ( 1356 -1504 -64 ) ( 1356 -1528 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1350 -1289 -96 ) ( 1344 -1275 -96 ) ( 1347 -1282 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +} +// brush 2 +{ +( 1277 -1296 -64 ) ( 1292 -1324 -96 ) ( 1356 -1296 -96 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1356 -1296 -96 ) ( 1292 -1324 -96 ) ( 1292 -1324 -48 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1277 -1296 -64 ) ( 1356 -1296 -96 ) ( 1356 -1296 -48 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1277 -1516 -64 ) ( 1356 -1504 -64 ) ( 1356 -1528 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1350 -1289 -96 ) ( 1344 -1275 -96 ) ( 1347 -1282 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +} +// brush 3 +{ +( 1277 -1296 -64 ) ( 1292 -1324 -96 ) ( 1356 -1296 -96 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1356 -1296 -96 ) ( 1292 -1324 -96 ) ( 1292 -1324 -48 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1277 -1296 -64 ) ( 1356 -1296 -96 ) ( 1356 -1296 -48 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1277 -1516 -64 ) ( 1356 -1504 -64 ) ( 1356 -1528 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1292 -1315 -96 ) ( 1286 -1301 -96 ) ( 1289 -1308 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1344 -1275 -96 ) ( 1350 -1289 -96 ) ( 1347 -1282 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1292 -1315 -96 ) ( 1350 -1289 -96 ) ( 1321 -1302 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +} +// brush 4 +{ +( 1277 -1296 -64 ) ( 1292 -1324 -96 ) ( 1356 -1296 -96 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1356 -1296 -96 ) ( 1292 -1324 -96 ) ( 1292 -1324 -48 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1292 -1324 -48 ) ( 1292 -1324 -96 ) ( 1277 -1296 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1277 -1296 -64 ) ( 1356 -1296 -96 ) ( 1356 -1296 -48 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1277 -1516 -64 ) ( 1356 -1504 -64 ) ( 1356 -1528 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1286 -1301 -96 ) ( 1292 -1315 -96 ) ( 1289 -1308 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +} +// brush 5 +{ +( 1277 -1296 -64 ) ( 1356 -1296 -96 ) ( 1346 -1265 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1356 -1296 -48 ) ( 1356 -1296 -96 ) ( 1277 -1296 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1277 -1516 -64 ) ( 1356 -1504 -64 ) ( 1356 -1528 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1286 -1301 -96 ) ( 1292 -1315 -96 ) ( 1289 -1308 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +} +// brush 6 +{ +( 1277 -1296 -64 ) ( 1356 -1296 -96 ) ( 1346 -1265 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1356 -1296 -48 ) ( 1356 -1296 -96 ) ( 1277 -1296 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1277 -1516 -64 ) ( 1356 -1504 -64 ) ( 1356 -1528 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1292 -1315 -96 ) ( 1286 -1301 -96 ) ( 1289 -1308 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1344 -1275 -96 ) ( 1350 -1289 -96 ) ( 1347 -1282 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1344 -1275 -95 ) ( 1286 -1301 -95 ) ( 1315 -1288 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +} +// brush 7 +{ +( 1277 -1296 -64 ) ( 1292 -1324 -96 ) ( 1356 -1296 -96 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1277 -1296 -64 ) ( 1356 -1296 -96 ) ( 1356 -1296 -48 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1277 -1516 -64 ) ( 1356 -1504 -64 ) ( 1356 -1528 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1292 -1315 -96 ) ( 1286 -1301 -96 ) ( 1289 -1308 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +( 1344 -1275 -96 ) ( 1286 -1301 -96 ) ( 1315 -1288 -64 ) bricks/c_tn_m1 0 -8 24 1 1 0 0 0 +} +} +// entity 38 +{ +"classname" "func_wall" +// brush 0 +{ +( 2435 -3248 192 ) ( 2420 -3220 160 ) ( 2356 -3248 160 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2356 -3248 160 ) ( 2420 -3220 160 ) ( 2420 -3220 208 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2435 -3248 192 ) ( 2356 -3248 160 ) ( 2356 -3248 208 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2435 -3028 192 ) ( 2356 -3040 192 ) ( 2356 -3016 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2420 -3229 160 ) ( 2426 -3243 160 ) ( 2423 -3236 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2368 -3269 160 ) ( 2362 -3255 160 ) ( 2365 -3262 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2420 -3229 160 ) ( 2362 -3255 160 ) ( 2391 -3242 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +} +// brush 1 +{ +( 2435 -3248 192 ) ( 2420 -3220 160 ) ( 2356 -3248 160 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2356 -3248 160 ) ( 2420 -3220 160 ) ( 2420 -3220 208 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2420 -3220 208 ) ( 2420 -3220 160 ) ( 2435 -3248 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2435 -3248 192 ) ( 2356 -3248 160 ) ( 2356 -3248 208 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2435 -3028 192 ) ( 2356 -3040 192 ) ( 2356 -3016 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2426 -3243 160 ) ( 2420 -3229 160 ) ( 2423 -3236 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +} +// brush 2 +{ +( 2435 -3248 192 ) ( 2356 -3248 160 ) ( 2366 -3279 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2356 -3248 208 ) ( 2356 -3248 160 ) ( 2435 -3248 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2435 -3028 192 ) ( 2356 -3040 192 ) ( 2356 -3016 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2426 -3243 160 ) ( 2420 -3229 160 ) ( 2423 -3236 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +} +// brush 3 +{ +( 2435 -3248 192 ) ( 2356 -3248 160 ) ( 2366 -3279 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2356 -3248 208 ) ( 2356 -3248 160 ) ( 2435 -3248 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2435 -3028 192 ) ( 2356 -3040 192 ) ( 2356 -3016 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2420 -3229 160 ) ( 2426 -3243 160 ) ( 2423 -3236 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2368 -3269 160 ) ( 2362 -3255 160 ) ( 2365 -3262 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2368 -3269 161 ) ( 2426 -3243 161 ) ( 2397 -3256 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +} +// brush 4 +{ +( 2435 -3248 192 ) ( 2420 -3220 160 ) ( 2356 -3248 160 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2435 -3248 192 ) ( 2356 -3248 160 ) ( 2356 -3248 208 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2435 -3028 192 ) ( 2356 -3040 192 ) ( 2356 -3016 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2420 -3229 160 ) ( 2426 -3243 160 ) ( 2423 -3236 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2368 -3269 160 ) ( 2426 -3243 160 ) ( 2397 -3256 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +} +// brush 5 +{ +( 2435 -3248 192 ) ( 2356 -3248 160 ) ( 2366 -3279 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2366 -3279 192 ) ( 2356 -3248 160 ) ( 2356 -3248 208 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2356 -3248 208 ) ( 2356 -3248 160 ) ( 2435 -3248 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2435 -3028 192 ) ( 2356 -3040 192 ) ( 2356 -3016 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2362 -3255 160 ) ( 2368 -3269 160 ) ( 2365 -3262 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +} +// brush 6 +{ +( 2435 -3248 192 ) ( 2356 -3248 160 ) ( 2366 -3279 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2356 -3248 208 ) ( 2356 -3248 160 ) ( 2435 -3248 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2435 -3028 192 ) ( 2356 -3040 192 ) ( 2356 -3016 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2368 -3269 160 ) ( 2362 -3255 160 ) ( 2365 -3262 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2420 -3229 161 ) ( 2362 -3255 161 ) ( 2391 -3242 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +} +// brush 7 +{ +( 2435 -3248 192 ) ( 2420 -3220 160 ) ( 2356 -3248 160 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2356 -3248 160 ) ( 2420 -3220 160 ) ( 2420 -3220 208 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2435 -3248 192 ) ( 2356 -3248 160 ) ( 2356 -3248 208 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2435 -3028 192 ) ( 2356 -3040 192 ) ( 2356 -3016 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +( 2362 -3255 160 ) ( 2368 -3269 160 ) ( 2365 -3262 192 ) bricks/c_tn_m1 0 -9 204 1 1 0 0 0 +} +} +// entity 39 +{ +"classname" "func_wall" +// brush 0 +{ +( 2608 -2996 160 ) ( 2580 -3060 160 ) ( 2608 -3075 192 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2580 -3060 208 ) ( 2580 -3060 160 ) ( 2608 -2996 160 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2608 -2996 208 ) ( 2608 -2996 160 ) ( 2608 -3075 192 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2376 -2996 192 ) ( 2400 -2996 192 ) ( 2388 -3075 192 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2596 -3063 192 ) ( 2603 -3066 160 ) ( 2589 -3060 160 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2622 -3005 192 ) ( 2615 -3002 160 ) ( 2629 -3008 160 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2602 -3031 192 ) ( 2615 -3002 160 ) ( 2589 -3060 160 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +} +// brush 1 +{ +( 2608 -2996 160 ) ( 2580 -3060 160 ) ( 2608 -3075 192 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2580 -3060 208 ) ( 2580 -3060 160 ) ( 2608 -2996 160 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2608 -3075 192 ) ( 2580 -3060 160 ) ( 2580 -3060 208 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2608 -2996 208 ) ( 2608 -2996 160 ) ( 2608 -3075 192 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2376 -2996 192 ) ( 2400 -2996 192 ) ( 2388 -3075 192 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2596 -3063 192 ) ( 2589 -3060 160 ) ( 2603 -3066 160 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +} +// brush 2 +{ +( 2639 -3006 192 ) ( 2608 -2996 160 ) ( 2608 -3075 192 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2608 -3075 192 ) ( 2608 -2996 160 ) ( 2608 -2996 208 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2376 -2996 192 ) ( 2400 -2996 192 ) ( 2388 -3075 192 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2596 -3063 192 ) ( 2589 -3060 160 ) ( 2603 -3066 160 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +} +// brush 3 +{ +( 2639 -3006 192 ) ( 2608 -2996 160 ) ( 2608 -3075 192 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2608 -3075 192 ) ( 2608 -2996 160 ) ( 2608 -2996 208 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2376 -2996 192 ) ( 2400 -2996 192 ) ( 2388 -3075 192 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2596 -3063 192 ) ( 2603 -3066 160 ) ( 2589 -3060 160 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2622 -3005 192 ) ( 2615 -3002 160 ) ( 2629 -3008 160 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2616 -3037 192 ) ( 2603 -3066 161 ) ( 2629 -3008 161 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +} +// brush 4 +{ +( 2608 -2996 160 ) ( 2580 -3060 160 ) ( 2608 -3075 192 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2608 -2996 208 ) ( 2608 -2996 160 ) ( 2608 -3075 192 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2376 -2996 192 ) ( 2400 -2996 192 ) ( 2388 -3075 192 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2596 -3063 192 ) ( 2603 -3066 160 ) ( 2589 -3060 160 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2616 -3037 192 ) ( 2603 -3066 160 ) ( 2629 -3008 160 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +} +// brush 5 +{ +( 2639 -3006 192 ) ( 2608 -2996 160 ) ( 2608 -3075 192 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2608 -2996 208 ) ( 2608 -2996 160 ) ( 2639 -3006 192 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2608 -3075 192 ) ( 2608 -2996 160 ) ( 2608 -2996 208 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2376 -2996 192 ) ( 2400 -2996 192 ) ( 2388 -3075 192 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2622 -3005 192 ) ( 2629 -3008 160 ) ( 2615 -3002 160 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +} +// brush 6 +{ +( 2608 -2996 160 ) ( 2580 -3060 160 ) ( 2608 -3075 192 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2580 -3060 208 ) ( 2580 -3060 160 ) ( 2608 -2996 160 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2608 -2996 208 ) ( 2608 -2996 160 ) ( 2608 -3075 192 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2376 -2996 192 ) ( 2400 -2996 192 ) ( 2388 -3075 192 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2622 -3005 192 ) ( 2629 -3008 160 ) ( 2615 -3002 160 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +} +// brush 7 +{ +( 2639 -3006 192 ) ( 2608 -2996 160 ) ( 2608 -3075 192 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2608 -3075 192 ) ( 2608 -2996 160 ) ( 2608 -2996 208 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2376 -2996 192 ) ( 2400 -2996 192 ) ( 2388 -3075 192 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2622 -3005 192 ) ( 2615 -3002 160 ) ( 2629 -3008 160 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +( 2602 -3031 192 ) ( 2615 -3002 161 ) ( 2589 -3060 161 ) bricks/c_tn_m1 0 -14 246 1 1 0 0 0 +} +} +// entity 40 +{ +"classname" "func_wall" +// brush 0 +{ +( 2608 -2237 192 ) ( 2580 -2252 160 ) ( 2608 -2316 160 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2608 -2316 160 ) ( 2580 -2252 160 ) ( 2580 -2252 208 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2608 -2237 192 ) ( 2608 -2316 160 ) ( 2608 -2316 208 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2388 -2237 192 ) ( 2400 -2316 192 ) ( 2376 -2316 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2589 -2252 160 ) ( 2603 -2246 160 ) ( 2596 -2249 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2629 -2304 160 ) ( 2615 -2310 160 ) ( 2622 -2307 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2589 -2252 160 ) ( 2615 -2310 160 ) ( 2602 -2281 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +} +// brush 1 +{ +( 2608 -2237 192 ) ( 2608 -2316 160 ) ( 2639 -2306 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2608 -2316 208 ) ( 2608 -2316 160 ) ( 2608 -2237 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2388 -2237 192 ) ( 2400 -2316 192 ) ( 2376 -2316 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2629 -2304 160 ) ( 2615 -2310 160 ) ( 2622 -2307 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2589 -2252 161 ) ( 2615 -2310 161 ) ( 2602 -2281 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +} +// brush 2 +{ +( 2608 -2237 192 ) ( 2608 -2316 160 ) ( 2639 -2306 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2639 -2306 192 ) ( 2608 -2316 160 ) ( 2608 -2316 208 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2608 -2316 208 ) ( 2608 -2316 160 ) ( 2608 -2237 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2388 -2237 192 ) ( 2400 -2316 192 ) ( 2376 -2316 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2615 -2310 160 ) ( 2629 -2304 160 ) ( 2622 -2307 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +} +// brush 3 +{ +( 2608 -2237 192 ) ( 2580 -2252 160 ) ( 2608 -2316 160 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2608 -2316 160 ) ( 2580 -2252 160 ) ( 2580 -2252 208 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2608 -2237 192 ) ( 2608 -2316 160 ) ( 2608 -2316 208 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2388 -2237 192 ) ( 2400 -2316 192 ) ( 2376 -2316 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2615 -2310 160 ) ( 2629 -2304 160 ) ( 2622 -2307 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +} +// brush 4 +{ +( 2608 -2237 192 ) ( 2608 -2316 160 ) ( 2639 -2306 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2608 -2316 208 ) ( 2608 -2316 160 ) ( 2608 -2237 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2388 -2237 192 ) ( 2400 -2316 192 ) ( 2376 -2316 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2589 -2252 160 ) ( 2603 -2246 160 ) ( 2596 -2249 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2629 -2304 160 ) ( 2615 -2310 160 ) ( 2622 -2307 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2629 -2304 161 ) ( 2603 -2246 161 ) ( 2616 -2275 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +} +// brush 5 +{ +( 2608 -2237 192 ) ( 2580 -2252 160 ) ( 2608 -2316 160 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2608 -2237 192 ) ( 2608 -2316 160 ) ( 2608 -2316 208 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2388 -2237 192 ) ( 2400 -2316 192 ) ( 2376 -2316 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2589 -2252 160 ) ( 2603 -2246 160 ) ( 2596 -2249 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2629 -2304 160 ) ( 2603 -2246 160 ) ( 2616 -2275 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +} +// brush 6 +{ +( 2608 -2237 192 ) ( 2580 -2252 160 ) ( 2608 -2316 160 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2608 -2316 160 ) ( 2580 -2252 160 ) ( 2580 -2252 208 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2580 -2252 208 ) ( 2580 -2252 160 ) ( 2608 -2237 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2608 -2237 192 ) ( 2608 -2316 160 ) ( 2608 -2316 208 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2388 -2237 192 ) ( 2400 -2316 192 ) ( 2376 -2316 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2603 -2246 160 ) ( 2589 -2252 160 ) ( 2596 -2249 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +} +// brush 7 +{ +( 2608 -2237 192 ) ( 2608 -2316 160 ) ( 2639 -2306 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2608 -2316 208 ) ( 2608 -2316 160 ) ( 2608 -2237 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2388 -2237 192 ) ( 2400 -2316 192 ) ( 2376 -2316 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +( 2603 -2246 160 ) ( 2589 -2252 160 ) ( 2596 -2249 192 ) bricks/c_tn_m1 166 0 294 1 1 0 0 0 +} +} +// entity 41 +{ +"classname" "func_wall" +// brush 0 +{ +( 2356 -2064 160 ) ( 2420 -2092 160 ) ( 2435 -2064 192 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2420 -2092 208 ) ( 2420 -2092 160 ) ( 2356 -2064 160 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2435 -2064 192 ) ( 2420 -2092 160 ) ( 2420 -2092 208 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2356 -2064 208 ) ( 2356 -2064 160 ) ( 2435 -2064 192 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2356 -2296 192 ) ( 2356 -2272 192 ) ( 2435 -2284 192 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2423 -2076 192 ) ( 2420 -2083 160 ) ( 2426 -2069 160 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +} +// brush 1 +{ +( 2366 -2033 192 ) ( 2356 -2064 160 ) ( 2435 -2064 192 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2435 -2064 192 ) ( 2356 -2064 160 ) ( 2356 -2064 208 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2356 -2296 192 ) ( 2356 -2272 192 ) ( 2435 -2284 192 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2423 -2076 192 ) ( 2420 -2083 160 ) ( 2426 -2069 160 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +} +// brush 2 +{ +( 2366 -2033 192 ) ( 2356 -2064 160 ) ( 2435 -2064 192 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2435 -2064 192 ) ( 2356 -2064 160 ) ( 2356 -2064 208 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2356 -2296 192 ) ( 2356 -2272 192 ) ( 2435 -2284 192 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2423 -2076 192 ) ( 2426 -2069 160 ) ( 2420 -2083 160 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2365 -2050 192 ) ( 2362 -2057 160 ) ( 2368 -2043 160 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2397 -2056 192 ) ( 2426 -2069 161 ) ( 2368 -2043 161 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +} +// brush 3 +{ +( 2356 -2064 160 ) ( 2420 -2092 160 ) ( 2435 -2064 192 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2356 -2064 208 ) ( 2356 -2064 160 ) ( 2435 -2064 192 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2356 -2296 192 ) ( 2356 -2272 192 ) ( 2435 -2284 192 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2423 -2076 192 ) ( 2426 -2069 160 ) ( 2420 -2083 160 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2397 -2056 192 ) ( 2426 -2069 160 ) ( 2368 -2043 160 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +} +// brush 4 +{ +( 2366 -2033 192 ) ( 2356 -2064 160 ) ( 2435 -2064 192 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2356 -2064 208 ) ( 2356 -2064 160 ) ( 2366 -2033 192 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2435 -2064 192 ) ( 2356 -2064 160 ) ( 2356 -2064 208 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2356 -2296 192 ) ( 2356 -2272 192 ) ( 2435 -2284 192 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2365 -2050 192 ) ( 2368 -2043 160 ) ( 2362 -2057 160 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +} +// brush 5 +{ +( 2366 -2033 192 ) ( 2356 -2064 160 ) ( 2435 -2064 192 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2435 -2064 192 ) ( 2356 -2064 160 ) ( 2356 -2064 208 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2356 -2296 192 ) ( 2356 -2272 192 ) ( 2435 -2284 192 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2365 -2050 192 ) ( 2362 -2057 160 ) ( 2368 -2043 160 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2391 -2070 192 ) ( 2362 -2057 161 ) ( 2420 -2083 161 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +} +// brush 6 +{ +( 2356 -2064 160 ) ( 2420 -2092 160 ) ( 2435 -2064 192 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2420 -2092 208 ) ( 2420 -2092 160 ) ( 2356 -2064 160 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2356 -2064 208 ) ( 2356 -2064 160 ) ( 2435 -2064 192 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2356 -2296 192 ) ( 2356 -2272 192 ) ( 2435 -2284 192 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2423 -2076 192 ) ( 2426 -2069 160 ) ( 2420 -2083 160 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2365 -2050 192 ) ( 2362 -2057 160 ) ( 2368 -2043 160 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2391 -2070 192 ) ( 2362 -2057 160 ) ( 2420 -2083 160 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +} +// brush 7 +{ +( 2356 -2064 160 ) ( 2420 -2092 160 ) ( 2435 -2064 192 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2420 -2092 208 ) ( 2420 -2092 160 ) ( 2356 -2064 160 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2356 -2064 208 ) ( 2356 -2064 160 ) ( 2435 -2064 192 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2356 -2296 192 ) ( 2356 -2272 192 ) ( 2435 -2284 192 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +( 2365 -2050 192 ) ( 2368 -2043 160 ) ( 2362 -2057 160 ) bricks/c_tn_m1 0 1 336 1 1 0 0 0 +} +} +// entity 42 +{ +"classname" "func_wall" +// brush 0 +{ +( 1853 -2064 192 ) ( 1932 -2064 160 ) ( 1922 -2033 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1922 -2033 192 ) ( 1932 -2064 160 ) ( 1932 -2064 208 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1932 -2064 208 ) ( 1932 -2064 160 ) ( 1853 -2064 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1853 -2284 192 ) ( 1932 -2272 192 ) ( 1932 -2296 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1926 -2057 160 ) ( 1920 -2043 160 ) ( 1923 -2050 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +} +// brush 1 +{ +( 1853 -2064 192 ) ( 1932 -2064 160 ) ( 1922 -2033 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1932 -2064 208 ) ( 1932 -2064 160 ) ( 1853 -2064 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1853 -2284 192 ) ( 1932 -2272 192 ) ( 1932 -2296 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1920 -2043 160 ) ( 1926 -2057 160 ) ( 1923 -2050 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1868 -2083 161 ) ( 1926 -2057 161 ) ( 1897 -2070 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +} +// brush 2 +{ +( 1853 -2064 192 ) ( 1868 -2092 160 ) ( 1932 -2064 160 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1932 -2064 160 ) ( 1868 -2092 160 ) ( 1868 -2092 208 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1853 -2064 192 ) ( 1932 -2064 160 ) ( 1932 -2064 208 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1853 -2284 192 ) ( 1932 -2272 192 ) ( 1932 -2296 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1926 -2057 160 ) ( 1920 -2043 160 ) ( 1923 -2050 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +} +// brush 3 +{ +( 1853 -2064 192 ) ( 1868 -2092 160 ) ( 1932 -2064 160 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1932 -2064 160 ) ( 1868 -2092 160 ) ( 1868 -2092 208 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1853 -2064 192 ) ( 1932 -2064 160 ) ( 1932 -2064 208 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1853 -2284 192 ) ( 1932 -2272 192 ) ( 1932 -2296 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1868 -2083 160 ) ( 1862 -2069 160 ) ( 1865 -2076 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1920 -2043 160 ) ( 1926 -2057 160 ) ( 1923 -2050 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1868 -2083 160 ) ( 1926 -2057 160 ) ( 1897 -2070 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +} +// brush 4 +{ +( 1853 -2064 192 ) ( 1868 -2092 160 ) ( 1932 -2064 160 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1932 -2064 160 ) ( 1868 -2092 160 ) ( 1868 -2092 208 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1868 -2092 208 ) ( 1868 -2092 160 ) ( 1853 -2064 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1853 -2064 192 ) ( 1932 -2064 160 ) ( 1932 -2064 208 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1853 -2284 192 ) ( 1932 -2272 192 ) ( 1932 -2296 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1862 -2069 160 ) ( 1868 -2083 160 ) ( 1865 -2076 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +} +// brush 5 +{ +( 1853 -2064 192 ) ( 1868 -2092 160 ) ( 1932 -2064 160 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1853 -2064 192 ) ( 1932 -2064 160 ) ( 1932 -2064 208 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1853 -2284 192 ) ( 1932 -2272 192 ) ( 1932 -2296 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1868 -2083 160 ) ( 1862 -2069 160 ) ( 1865 -2076 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1920 -2043 160 ) ( 1862 -2069 160 ) ( 1891 -2056 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +} +// brush 6 +{ +( 1853 -2064 192 ) ( 1932 -2064 160 ) ( 1922 -2033 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1932 -2064 208 ) ( 1932 -2064 160 ) ( 1853 -2064 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1853 -2284 192 ) ( 1932 -2272 192 ) ( 1932 -2296 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1868 -2083 160 ) ( 1862 -2069 160 ) ( 1865 -2076 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1920 -2043 160 ) ( 1926 -2057 160 ) ( 1923 -2050 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1920 -2043 161 ) ( 1862 -2069 161 ) ( 1891 -2056 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +} +// brush 7 +{ +( 1853 -2064 192 ) ( 1932 -2064 160 ) ( 1922 -2033 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1932 -2064 208 ) ( 1932 -2064 160 ) ( 1853 -2064 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1853 -2284 192 ) ( 1932 -2272 192 ) ( 1932 -2296 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +( 1862 -2069 160 ) ( 1868 -2083 160 ) ( 1865 -2076 192 ) bricks/c_tn_m1 0 16 24 1 1 0 0 0 +} +} +// entity 43 +{ +"classname" "func_wall" +// brush 0 +{ +( 2 -385 448 ) ( 148 -448 416 ) ( 151 -416 448 ) bricks/c_tn_m1 -87 8 348 1 1 0 0 0 +( 151 -416 448 ) ( 148 -448 416 ) ( 148 -448 464 ) bricks/c_tn_m1 -87 8 348 1 1 0 0 0 +( 148 -448 464 ) ( 148 -448 416 ) ( 2 -385 448 ) bricks/c_tn_m1 -87 8 348 1 1 0 0 0 +( -320 -385 448 ) ( -264 -385 448 ) ( -292 -448 448 ) bricks/c_tn_m1 -87 8 348 1 1 0 0 0 +} +// brush 1 +{ +( 2 -385 448 ) ( -8 -416 416 ) ( 148 -448 416 ) bricks/c_tn_m1 -87 8 348 1 1 0 0 0 +( -8 -416 464 ) ( -8 -416 416 ) ( 2 -385 448 ) bricks/c_tn_m1 -87 8 348 1 1 0 0 0 +( 148 -448 416 ) ( -8 -416 416 ) ( -8 -416 464 ) bricks/c_tn_m1 -87 8 348 1 1 0 0 0 +( 2 -385 448 ) ( 148 -448 416 ) ( 148 -448 464 ) bricks/c_tn_m1 -87 8 348 1 1 0 0 0 +( -320 -385 448 ) ( -264 -385 448 ) ( -292 -448 448 ) bricks/c_tn_m1 -87 8 348 1 1 0 0 0 +} +} +// entity 44 +{ +"classname" "func_wall" +// brush 0 +{ +( 2356 -464 416 ) ( 2420 -492 416 ) ( 2435 -464 448 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2420 -492 464 ) ( 2420 -492 416 ) ( 2356 -464 416 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2435 -464 448 ) ( 2420 -492 416 ) ( 2420 -492 464 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2356 -464 464 ) ( 2356 -464 416 ) ( 2435 -464 448 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2356 -696 448 ) ( 2356 -672 448 ) ( 2435 -684 448 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2423 -476 448 ) ( 2420 -483 416 ) ( 2426 -469 416 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +} +// brush 1 +{ +( 2366 -433 448 ) ( 2356 -464 416 ) ( 2435 -464 448 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2435 -464 448 ) ( 2356 -464 416 ) ( 2356 -464 464 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2356 -696 448 ) ( 2356 -672 448 ) ( 2435 -684 448 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2423 -476 448 ) ( 2420 -483 416 ) ( 2426 -469 416 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +} +// brush 2 +{ +( 2366 -433 448 ) ( 2356 -464 416 ) ( 2435 -464 448 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2435 -464 448 ) ( 2356 -464 416 ) ( 2356 -464 464 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2356 -696 448 ) ( 2356 -672 448 ) ( 2435 -684 448 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2423 -476 448 ) ( 2426 -469 416 ) ( 2420 -483 416 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2365 -450 448 ) ( 2362 -457 416 ) ( 2368 -443 416 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2397 -456 448 ) ( 2426 -469 417 ) ( 2368 -443 417 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +} +// brush 3 +{ +( 2356 -464 416 ) ( 2420 -492 416 ) ( 2435 -464 448 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2356 -464 464 ) ( 2356 -464 416 ) ( 2435 -464 448 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2356 -696 448 ) ( 2356 -672 448 ) ( 2435 -684 448 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2423 -476 448 ) ( 2426 -469 416 ) ( 2420 -483 416 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2397 -456 448 ) ( 2426 -469 416 ) ( 2368 -443 416 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +} +// brush 4 +{ +( 2366 -433 448 ) ( 2356 -464 416 ) ( 2435 -464 448 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2356 -464 464 ) ( 2356 -464 416 ) ( 2366 -433 448 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2435 -464 448 ) ( 2356 -464 416 ) ( 2356 -464 464 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2356 -696 448 ) ( 2356 -672 448 ) ( 2435 -684 448 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2365 -450 448 ) ( 2368 -443 416 ) ( 2362 -457 416 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +} +// brush 5 +{ +( 2356 -464 416 ) ( 2420 -492 416 ) ( 2435 -464 448 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2420 -492 464 ) ( 2420 -492 416 ) ( 2356 -464 416 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2356 -464 464 ) ( 2356 -464 416 ) ( 2435 -464 448 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2356 -696 448 ) ( 2356 -672 448 ) ( 2435 -684 448 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2365 -450 448 ) ( 2368 -443 416 ) ( 2362 -457 416 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +} +// brush 6 +{ +( 2356 -464 416 ) ( 2420 -492 416 ) ( 2435 -464 448 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2420 -492 464 ) ( 2420 -492 416 ) ( 2356 -464 416 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2356 -464 464 ) ( 2356 -464 416 ) ( 2435 -464 448 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2356 -696 448 ) ( 2356 -672 448 ) ( 2435 -684 448 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2423 -476 448 ) ( 2426 -469 416 ) ( 2420 -483 416 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2365 -450 448 ) ( 2362 -457 416 ) ( 2368 -443 416 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2391 -470 448 ) ( 2362 -457 416 ) ( 2420 -483 416 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +} +// brush 7 +{ +( 2366 -433 448 ) ( 2356 -464 416 ) ( 2435 -464 448 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2435 -464 448 ) ( 2356 -464 416 ) ( 2356 -464 464 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2356 -696 448 ) ( 2356 -672 448 ) ( 2435 -684 448 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2365 -450 448 ) ( 2362 -457 416 ) ( 2368 -443 416 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +( 2391 -470 448 ) ( 2362 -457 417 ) ( 2420 -483 417 ) bricks/c_tn_m1 0 -10 336 1 1 0 0 0 +} +} +// entity 45 +{ +"classname" "func_wall" +// brush 0 +{ +( 2608 -637 448 ) ( 2608 -716 416 ) ( 2639 -706 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2608 -716 464 ) ( 2608 -716 416 ) ( 2608 -637 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2388 -637 448 ) ( 2400 -716 448 ) ( 2376 -716 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2589 -652 416 ) ( 2603 -646 416 ) ( 2596 -649 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2629 -704 416 ) ( 2615 -710 416 ) ( 2622 -707 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2629 -704 417 ) ( 2603 -646 417 ) ( 2616 -675 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +} +// brush 1 +{ +( 2608 -637 448 ) ( 2608 -716 416 ) ( 2639 -706 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2639 -706 448 ) ( 2608 -716 416 ) ( 2608 -716 464 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2608 -716 464 ) ( 2608 -716 416 ) ( 2608 -637 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2388 -637 448 ) ( 2400 -716 448 ) ( 2376 -716 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2615 -710 416 ) ( 2629 -704 416 ) ( 2622 -707 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +} +// brush 2 +{ +( 2608 -637 448 ) ( 2580 -652 416 ) ( 2608 -716 416 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2608 -716 416 ) ( 2580 -652 416 ) ( 2580 -652 464 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2608 -637 448 ) ( 2608 -716 416 ) ( 2608 -716 464 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2388 -637 448 ) ( 2400 -716 448 ) ( 2376 -716 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2615 -710 416 ) ( 2629 -704 416 ) ( 2622 -707 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +} +// brush 3 +{ +( 2608 -637 448 ) ( 2580 -652 416 ) ( 2608 -716 416 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2608 -716 416 ) ( 2580 -652 416 ) ( 2580 -652 464 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2608 -637 448 ) ( 2608 -716 416 ) ( 2608 -716 464 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2388 -637 448 ) ( 2400 -716 448 ) ( 2376 -716 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2589 -652 416 ) ( 2603 -646 416 ) ( 2596 -649 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2629 -704 416 ) ( 2615 -710 416 ) ( 2622 -707 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2589 -652 416 ) ( 2615 -710 416 ) ( 2602 -681 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +} +// brush 4 +{ +( 2608 -637 448 ) ( 2608 -716 416 ) ( 2639 -706 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2608 -716 464 ) ( 2608 -716 416 ) ( 2608 -637 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2388 -637 448 ) ( 2400 -716 448 ) ( 2376 -716 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2629 -704 416 ) ( 2615 -710 416 ) ( 2622 -707 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2589 -652 417 ) ( 2615 -710 417 ) ( 2602 -681 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +} +// brush 5 +{ +( 2608 -637 448 ) ( 2580 -652 416 ) ( 2608 -716 416 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2608 -716 416 ) ( 2580 -652 416 ) ( 2580 -652 464 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2580 -652 464 ) ( 2580 -652 416 ) ( 2608 -637 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2608 -637 448 ) ( 2608 -716 416 ) ( 2608 -716 464 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2388 -637 448 ) ( 2400 -716 448 ) ( 2376 -716 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2603 -646 416 ) ( 2589 -652 416 ) ( 2596 -649 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +} +// brush 6 +{ +( 2608 -637 448 ) ( 2580 -652 416 ) ( 2608 -716 416 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2608 -637 448 ) ( 2608 -716 416 ) ( 2608 -716 464 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2388 -637 448 ) ( 2400 -716 448 ) ( 2376 -716 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2589 -652 416 ) ( 2603 -646 416 ) ( 2596 -649 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2629 -704 416 ) ( 2603 -646 416 ) ( 2616 -675 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +} +// brush 7 +{ +( 2608 -637 448 ) ( 2608 -716 416 ) ( 2639 -706 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2608 -716 464 ) ( 2608 -716 416 ) ( 2608 -637 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2388 -637 448 ) ( 2400 -716 448 ) ( 2376 -716 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +( 2603 -646 416 ) ( 2589 -652 416 ) ( 2596 -649 448 ) bricks/c_tn_m1 0 11 294 1 1 0 0 0 +} +} +// entity 46 +{ +"classname" "func_wall" +// brush 0 +{ +( 2608 -2996 416 ) ( 2580 -3060 416 ) ( 2608 -3075 448 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2580 -3060 464 ) ( 2580 -3060 416 ) ( 2608 -2996 416 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2608 -2996 464 ) ( 2608 -2996 416 ) ( 2608 -3075 448 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2376 -2996 448 ) ( 2400 -2996 448 ) ( 2388 -3075 448 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2596 -3063 448 ) ( 2603 -3066 416 ) ( 2589 -3060 416 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2622 -3005 448 ) ( 2615 -3002 416 ) ( 2629 -3008 416 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2602 -3031 448 ) ( 2615 -3002 416 ) ( 2589 -3060 416 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +} +// brush 1 +{ +( 2639 -3006 448 ) ( 2608 -2996 416 ) ( 2608 -3075 448 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2608 -3075 448 ) ( 2608 -2996 416 ) ( 2608 -2996 464 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2376 -2996 448 ) ( 2400 -2996 448 ) ( 2388 -3075 448 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2596 -3063 448 ) ( 2589 -3060 416 ) ( 2603 -3066 416 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +} +// brush 2 +{ +( 2639 -3006 448 ) ( 2608 -2996 416 ) ( 2608 -3075 448 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2608 -3075 448 ) ( 2608 -2996 416 ) ( 2608 -2996 464 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2376 -2996 448 ) ( 2400 -2996 448 ) ( 2388 -3075 448 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2596 -3063 448 ) ( 2603 -3066 416 ) ( 2589 -3060 416 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2622 -3005 448 ) ( 2615 -3002 416 ) ( 2629 -3008 416 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2616 -3037 448 ) ( 2603 -3066 417 ) ( 2629 -3008 417 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +} +// brush 3 +{ +( 2608 -2996 416 ) ( 2580 -3060 416 ) ( 2608 -3075 448 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2580 -3060 464 ) ( 2580 -3060 416 ) ( 2608 -2996 416 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2608 -3075 448 ) ( 2580 -3060 416 ) ( 2580 -3060 464 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2608 -2996 464 ) ( 2608 -2996 416 ) ( 2608 -3075 448 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2376 -2996 448 ) ( 2400 -2996 448 ) ( 2388 -3075 448 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2596 -3063 448 ) ( 2589 -3060 416 ) ( 2603 -3066 416 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +} +// brush 4 +{ +( 2608 -2996 416 ) ( 2580 -3060 416 ) ( 2608 -3075 448 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2608 -2996 464 ) ( 2608 -2996 416 ) ( 2608 -3075 448 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2376 -2996 448 ) ( 2400 -2996 448 ) ( 2388 -3075 448 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2596 -3063 448 ) ( 2603 -3066 416 ) ( 2589 -3060 416 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2616 -3037 448 ) ( 2603 -3066 416 ) ( 2629 -3008 416 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +} +// brush 5 +{ +( 2639 -3006 448 ) ( 2608 -2996 416 ) ( 2608 -3075 448 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2608 -2996 464 ) ( 2608 -2996 416 ) ( 2639 -3006 448 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2608 -3075 448 ) ( 2608 -2996 416 ) ( 2608 -2996 464 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2376 -2996 448 ) ( 2400 -2996 448 ) ( 2388 -3075 448 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2622 -3005 448 ) ( 2629 -3008 416 ) ( 2615 -3002 416 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +} +// brush 6 +{ +( 2608 -2996 416 ) ( 2580 -3060 416 ) ( 2608 -3075 448 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2580 -3060 464 ) ( 2580 -3060 416 ) ( 2608 -2996 416 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2608 -2996 464 ) ( 2608 -2996 416 ) ( 2608 -3075 448 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2376 -2996 448 ) ( 2400 -2996 448 ) ( 2388 -3075 448 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2622 -3005 448 ) ( 2629 -3008 416 ) ( 2615 -3002 416 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +} +// brush 7 +{ +( 2639 -3006 448 ) ( 2608 -2996 416 ) ( 2608 -3075 448 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2608 -3075 448 ) ( 2608 -2996 416 ) ( 2608 -2996 464 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2376 -2996 448 ) ( 2400 -2996 448 ) ( 2388 -3075 448 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2622 -3005 448 ) ( 2615 -3002 416 ) ( 2629 -3008 416 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +( 2602 -3031 448 ) ( 2615 -3002 417 ) ( 2589 -3060 417 ) bricks/c_tn_m1 0 18 246 1 1 0 0 0 +} +} +// entity 47 +{ +"classname" "func_wall" +// brush 0 +{ +( 2435 -3248 448 ) ( 2356 -3248 416 ) ( 2366 -3279 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2356 -3248 464 ) ( 2356 -3248 416 ) ( 2435 -3248 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2435 -3028 448 ) ( 2356 -3040 448 ) ( 2356 -3016 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2420 -3229 416 ) ( 2426 -3243 416 ) ( 2423 -3236 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2368 -3269 416 ) ( 2362 -3255 416 ) ( 2365 -3262 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2368 -3269 417 ) ( 2426 -3243 417 ) ( 2397 -3256 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +} +// brush 1 +{ +( 2435 -3248 448 ) ( 2356 -3248 416 ) ( 2366 -3279 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2366 -3279 448 ) ( 2356 -3248 416 ) ( 2356 -3248 464 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2356 -3248 464 ) ( 2356 -3248 416 ) ( 2435 -3248 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2435 -3028 448 ) ( 2356 -3040 448 ) ( 2356 -3016 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2362 -3255 416 ) ( 2368 -3269 416 ) ( 2365 -3262 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +} +// brush 2 +{ +( 2435 -3248 448 ) ( 2420 -3220 416 ) ( 2356 -3248 416 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2356 -3248 416 ) ( 2420 -3220 416 ) ( 2420 -3220 464 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2435 -3248 448 ) ( 2356 -3248 416 ) ( 2356 -3248 464 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2435 -3028 448 ) ( 2356 -3040 448 ) ( 2356 -3016 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2362 -3255 416 ) ( 2368 -3269 416 ) ( 2365 -3262 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +} +// brush 3 +{ +( 2435 -3248 448 ) ( 2420 -3220 416 ) ( 2356 -3248 416 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2356 -3248 416 ) ( 2420 -3220 416 ) ( 2420 -3220 464 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2435 -3248 448 ) ( 2356 -3248 416 ) ( 2356 -3248 464 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2435 -3028 448 ) ( 2356 -3040 448 ) ( 2356 -3016 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2420 -3229 416 ) ( 2426 -3243 416 ) ( 2423 -3236 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2368 -3269 416 ) ( 2362 -3255 416 ) ( 2365 -3262 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2420 -3229 416 ) ( 2362 -3255 416 ) ( 2391 -3242 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +} +// brush 4 +{ +( 2435 -3248 448 ) ( 2356 -3248 416 ) ( 2366 -3279 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2356 -3248 464 ) ( 2356 -3248 416 ) ( 2435 -3248 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2435 -3028 448 ) ( 2356 -3040 448 ) ( 2356 -3016 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2368 -3269 416 ) ( 2362 -3255 416 ) ( 2365 -3262 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2420 -3229 417 ) ( 2362 -3255 417 ) ( 2391 -3242 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +} +// brush 5 +{ +( 2435 -3248 448 ) ( 2420 -3220 416 ) ( 2356 -3248 416 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2356 -3248 416 ) ( 2420 -3220 416 ) ( 2420 -3220 464 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2420 -3220 464 ) ( 2420 -3220 416 ) ( 2435 -3248 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2435 -3248 448 ) ( 2356 -3248 416 ) ( 2356 -3248 464 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2435 -3028 448 ) ( 2356 -3040 448 ) ( 2356 -3016 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2426 -3243 416 ) ( 2420 -3229 416 ) ( 2423 -3236 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +} +// brush 6 +{ +( 2435 -3248 448 ) ( 2420 -3220 416 ) ( 2356 -3248 416 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2435 -3248 448 ) ( 2356 -3248 416 ) ( 2356 -3248 464 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2435 -3028 448 ) ( 2356 -3040 448 ) ( 2356 -3016 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2420 -3229 416 ) ( 2426 -3243 416 ) ( 2423 -3236 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2368 -3269 416 ) ( 2426 -3243 416 ) ( 2397 -3256 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +} +// brush 7 +{ +( 2435 -3248 448 ) ( 2356 -3248 416 ) ( 2366 -3279 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2356 -3248 464 ) ( 2356 -3248 416 ) ( 2435 -3248 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2435 -3028 448 ) ( 2356 -3040 448 ) ( 2356 -3016 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +( 2426 -3243 416 ) ( 2420 -3229 416 ) ( 2423 -3236 448 ) bricks/c_tn_m1 0 -10 204 1 1 0 0 0 +} +} +// entity 48 +{ +"classname" "func_group" +// brush 0 +{ +( 1064 2248 416 ) ( 1088 2224 448 ) ( 1108 2316 416 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1064 2248 464 ) ( 1064 2248 416 ) ( 1108 2316 416 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1064 2248 448 ) ( 1088 2224 448 ) ( 1064 2248 416 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1108 2316 416 ) ( 1088 2224 448 ) ( 1108 2316 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1108 2316 448 ) ( 1088 2224 448 ) ( 1064 2248 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1076 2252 416 ) ( 1096 2238 416 ) ( 1086 2245 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +} +// brush 1 +{ +( 1108 2316 416 ) ( 1088 2224 448 ) ( 1136 2301 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1108 2316 448 ) ( 1088 2224 448 ) ( 1108 2316 416 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1136 2301 448 ) ( 1088 2224 448 ) ( 1108 2316 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1076 2252 419 ) ( 1096 2238 419 ) ( 1086 2245 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +} +// brush 2 +{ +( 1108 2316 416 ) ( 1088 2224 448 ) ( 1136 2301 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1108 2316 448 ) ( 1088 2224 448 ) ( 1108 2316 416 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1136 2301 448 ) ( 1088 2224 448 ) ( 1108 2316 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1104 2310 416 ) ( 1124 2296 416 ) ( 1114 2303 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1096 2238 419 ) ( 1076 2252 419 ) ( 1086 2245 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1078 2226 424 ) ( 1124 2296 424 ) ( 1101 2261 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +} +// brush 3 +{ +( 1064 2248 416 ) ( 1088 2224 448 ) ( 1108 2316 416 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1108 2316 416 ) ( 1088 2224 448 ) ( 1108 2316 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1108 2316 448 ) ( 1088 2224 448 ) ( 1064 2248 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1096 2238 416 ) ( 1076 2252 416 ) ( 1086 2245 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1078 2226 424 ) ( 1124 2296 424 ) ( 1101 2261 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +} +// brush 4 +{ +( 1108 2316 416 ) ( 1088 2224 448 ) ( 1136 2301 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1108 2316 464 ) ( 1108 2316 416 ) ( 1136 2301 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1108 2316 448 ) ( 1088 2224 448 ) ( 1108 2316 416 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1136 2301 448 ) ( 1088 2224 448 ) ( 1108 2316 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1124 2296 416 ) ( 1104 2310 416 ) ( 1114 2303 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +} +// brush 5 +{ +( 1064 2248 416 ) ( 1088 2224 448 ) ( 1108 2316 416 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1064 2248 464 ) ( 1064 2248 416 ) ( 1108 2316 416 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1108 2316 416 ) ( 1088 2224 448 ) ( 1108 2316 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1108 2316 448 ) ( 1088 2224 448 ) ( 1064 2248 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1124 2296 416 ) ( 1104 2310 416 ) ( 1114 2303 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +} +// brush 6 +{ +( 1064 2248 416 ) ( 1088 2224 448 ) ( 1108 2316 416 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1064 2248 464 ) ( 1064 2248 416 ) ( 1108 2316 416 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1108 2316 416 ) ( 1088 2224 448 ) ( 1108 2316 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1108 2316 448 ) ( 1088 2224 448 ) ( 1064 2248 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1104 2310 416 ) ( 1124 2296 416 ) ( 1114 2303 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1096 2238 416 ) ( 1076 2252 416 ) ( 1086 2245 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1126 2328 416 ) ( 1076 2252 416 ) ( 1101 2290 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +} +// brush 7 +{ +( 1108 2316 416 ) ( 1088 2224 448 ) ( 1136 2301 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1108 2316 448 ) ( 1088 2224 448 ) ( 1108 2316 416 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1136 2301 448 ) ( 1088 2224 448 ) ( 1108 2316 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1104 2310 416 ) ( 1124 2296 416 ) ( 1114 2303 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +( 1126 2328 419 ) ( 1076 2252 419 ) ( 1101 2290 448 ) bricks/c_tn_m1 -28 -11 237 1 1 0 0 0 +} +} +// entity 49 +{ +"classname" "func_group" +// brush 0 +{ +( 1560 2752 416 ) ( 1504 2884 416 ) ( 1475 2868 448 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1504 2884 464 ) ( 1504 2884 416 ) ( 1560 2752 416 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1368 2752 448 ) ( 1312 2752 448 ) ( 1340 2884 448 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1530 2778 448 ) ( 1540 2782 416 ) ( 1520 2774 416 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1506 2837 448 ) ( 1494 2832 416 ) ( 1518 2842 416 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1526 2812 448 ) ( 1540 2778 416 ) ( 1512 2846 416 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +} +// brush 1 +{ +( 1560 2752 416 ) ( 1504 2884 416 ) ( 1475 2868 448 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1475 2868 448 ) ( 1504 2884 416 ) ( 1504 2884 464 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1504 2884 464 ) ( 1504 2884 416 ) ( 1560 2752 416 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1560 2752 464 ) ( 1560 2752 416 ) ( 1475 2868 448 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1368 2752 448 ) ( 1312 2752 448 ) ( 1340 2884 448 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1506 2837 448 ) ( 1518 2842 416 ) ( 1494 2832 416 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +} +// brush 2 +{ +( 1529 2742 448 ) ( 1560 2752 416 ) ( 1475 2868 448 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1475 2868 448 ) ( 1560 2752 416 ) ( 1560 2752 464 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1368 2742 448 ) ( 1312 2742 448 ) ( 1340 2868 448 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1506 2837 448 ) ( 1518 2842 424 ) ( 1494 2832 424 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +} +// brush 3 +{ +( 1529 2742 448 ) ( 1560 2752 416 ) ( 1475 2868 448 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1368 2742 448 ) ( 1312 2742 448 ) ( 1340 2868 448 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1530 2778 448 ) ( 1540 2782 416 ) ( 1520 2774 416 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1506 2837 448 ) ( 1494 2832 424 ) ( 1518 2842 424 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1510 2805 448 ) ( 1496 2838 424 ) ( 1524 2772 424 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +} +// brush 4 +{ +( 1529 2742 448 ) ( 1560 2752 416 ) ( 1475 2868 448 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1560 2752 464 ) ( 1560 2752 416 ) ( 1529 2742 448 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1475 2868 448 ) ( 1560 2752 416 ) ( 1560 2752 464 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1368 2742 448 ) ( 1312 2742 448 ) ( 1340 2868 448 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1530 2778 448 ) ( 1520 2774 416 ) ( 1540 2782 416 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +} +// brush 5 +{ +( 1560 2752 416 ) ( 1504 2884 416 ) ( 1475 2868 448 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1504 2884 464 ) ( 1504 2884 416 ) ( 1560 2752 416 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1560 2752 464 ) ( 1560 2752 416 ) ( 1475 2868 448 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1368 2752 448 ) ( 1312 2752 448 ) ( 1340 2884 448 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +( 1530 2778 448 ) ( 1520 2774 416 ) ( 1540 2782 416 ) bricks/c_tn_m1 0 -7 113 1 1 0 0 0 +} +// brush 6 +{ +( 1529 2742 448 ) ( 1560 2752 416 ) ( 1475 2868 448 ) common/li_pv_v4a 8 0 113 1 1 0 1 7000 +( 1475 2868 448 ) ( 1560 2752 416 ) ( 1560 2752 464 ) common/li_pv_v4a 8 0 113 1 1 0 1 7000 +( 1368 2742 448 ) ( 1312 2742 448 ) ( 1340 2868 448 ) common/li_pv_v4a 8 0 113 1 1 0 1 7000 +( 1530 2778 448 ) ( 1540 2782 416 ) ( 1520 2774 416 ) common/li_pv_v4a 8 0 113 1 1 0 1 7000 +( 1506 2837 448 ) ( 1494 2832 424 ) ( 1518 2842 424 ) common/li_pv_v4a 8 0 113 1 1 0 1 7000 +( 1510 2805 448 ) ( 1524 2772 424 ) ( 1496 2838 424 ) common/li_pv_v4a 8 0 113 1 1 0 1 7000 +} +// brush 7 +{ +( 1560 2752 416 ) ( 1504 2884 416 ) ( 1475 2868 448 ) common/li_pv_v4a 8 0 113 1 1 0 1 7000 +( 1560 2752 464 ) ( 1560 2752 416 ) ( 1475 2868 448 ) common/li_pv_v4a 8 0 113 1 1 0 1 7000 +( 1368 2752 448 ) ( 1312 2752 448 ) ( 1340 2884 448 ) common/li_pv_v4a 8 0 113 1 1 0 1 7000 +( 1530 2778 448 ) ( 1540 2782 416 ) ( 1520 2774 416 ) common/li_pv_v4a 8 0 113 1 1 0 1 7000 +( 1506 2837 448 ) ( 1494 2832 416 ) ( 1518 2842 416 ) common/li_pv_v4a 8 0 113 1 1 0 1 7000 +( 1526 2812 448 ) ( 1512 2846 416 ) ( 1540 2778 416 ) common/li_pv_v4a 8 0 113 1 1 0 1 7000 +} +} +// entity 50 +{ +"origin" "-2032 -1600 552" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 51 +{ +"classname" "func_wall" +// brush 0 +{ +( -3442 -2630 416 ) ( -3458 -2630 416 ) ( -3458 -2638 416 ) metals/mt_pv_m16bc -16 0 0 1 1 0 0 0 +( -3458 -2638 448 ) ( -3442 -2638 448 ) ( -3442 -2638 416 ) metals/mt_pv_m16bc -16 0 0 1 1 0 0 0 +( -3446 -2638 448 ) ( -3446 -2630 448 ) ( -3446 -2630 416 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3442 -2634 448 ) ( -3458 -2634 448 ) ( -3458 -2634 416 ) metals/mt_pv_m16bc -16 0 0 1 1 0 0 0 +( -3450 -2630 448 ) ( -3450 -2638 448 ) ( -3450 -2638 416 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3450 -2638 424 ) ( -3458 -2638 424 ) ( -3454 -2630 424 ) metals/mt_pv_m16bc -16 0 0 1 1 0 0 0 +} +} +// entity 52 +{ +"origin" "-3448 -2648 432" +"_color" "0.000000 1.000000 0.000000" +"light" "100" +"classname" "light" +} +// entity 53 +{ +"origin" "-3448 -1320 448" +"_color" "1.000000 0.000000 0.000000" +"light" "80" +"classname" "light" +} +// entity 54 +{ +"fxdensity" "600" +"classname" "elements_raincloud" +// brush 0 +{ +( -3752 -824 1256 ) ( -3904 -824 1256 ) ( -3904 -968 1256 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -3904 -968 1272 ) ( -3904 -824 1272 ) ( -3752 -824 1272 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -3912 -2696 1272 ) ( -3760 -2696 1272 ) ( -3760 -2696 1144 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -3512 -968 1272 ) ( -3512 -824 1272 ) ( -3512 -824 1144 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -3720 -1272 1272 ) ( -3872 -1272 1272 ) ( -3872 -1272 1144 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -3752 -816 1272 ) ( -3752 -960 1272 ) ( -3752 -960 1144 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 55 +{ +"origin" "-3816 -864 544" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 56 +{ +"classname" "light" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"origin" "-3072 -88 552" +} +// entity 57 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-2008 2912 296" +} +// entity 58 +{ +"classname" "func_wall" +// brush 0 +{ +( -1400 -468 288 ) ( -1480 -344 288 ) ( -1506 -365 320 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1506 -365 320 ) ( -1480 -344 288 ) ( -1480 -344 336 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1480 -344 336 ) ( -1480 -344 288 ) ( -1400 -468 288 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1400 -468 336 ) ( -1400 -468 288 ) ( -1506 -365 320 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1400 -316 320 ) ( -1506 -344 320 ) ( -1506 -288 320 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1470 -390 320 ) ( -1460 -384 288 ) ( -1480 -396 288 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +} +// brush 1 +{ +( -1400 -468 288 ) ( -1480 -344 288 ) ( -1506 -365 320 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1480 -344 336 ) ( -1480 -344 288 ) ( -1400 -468 288 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1400 -316 320 ) ( -1506 -344 320 ) ( -1506 -288 320 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1434 -446 320 ) ( -1424 -440 288 ) ( -1444 -452 288 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1470 -390 320 ) ( -1480 -396 288 ) ( -1460 -384 288 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1444 -414 320 ) ( -1424 -444 288 ) ( -1464 -384 288 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +} +// brush 2 +{ +( -1429 -484 320 ) ( -1400 -468 288 ) ( -1506 -365 320 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1506 -365 320 ) ( -1400 -468 288 ) ( -1400 -468 336 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1400 -316 320 ) ( -1506 -344 320 ) ( -1506 -288 320 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1470 -390 320 ) ( -1460 -384 296 ) ( -1480 -396 296 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +} +// brush 3 +{ +( -1429 -484 320 ) ( -1400 -468 288 ) ( -1506 -365 320 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1400 -316 320 ) ( -1506 -344 320 ) ( -1506 -288 320 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1434 -446 320 ) ( -1424 -440 288 ) ( -1444 -452 288 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1470 -390 320 ) ( -1480 -396 296 ) ( -1460 -384 296 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1460 -421 320 ) ( -1480 -390 296 ) ( -1440 -452 296 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +} +// brush 4 +{ +( -1429 -484 320 ) ( -1400 -468 288 ) ( -1506 -365 320 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1400 -468 336 ) ( -1400 -468 288 ) ( -1429 -484 320 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1506 -365 320 ) ( -1400 -468 288 ) ( -1400 -468 336 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1400 -316 320 ) ( -1506 -344 320 ) ( -1506 -288 320 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1434 -446 320 ) ( -1444 -452 288 ) ( -1424 -440 288 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +} +// brush 5 +{ +( -1400 -468 288 ) ( -1480 -344 288 ) ( -1506 -365 320 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1480 -344 336 ) ( -1480 -344 288 ) ( -1400 -468 288 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1400 -468 336 ) ( -1400 -468 288 ) ( -1506 -365 320 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1400 -316 320 ) ( -1506 -344 320 ) ( -1506 -288 320 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +( -1434 -446 320 ) ( -1444 -452 288 ) ( -1424 -440 288 ) bricks/c_tn_m1 -68 -10 123 1 1 0 0 0 +} +} +// entity 59 +{ +"classname" "func_wall" +// brush 0 +{ +( -1084 -1056 184 ) ( -1092 -1056 184 ) ( -1092 -1064 184 ) bricks/s_sr_m12ab 128 -192 0 1 1 0 0 0 +( -1092 -1064 192 ) ( -1092 -1056 192 ) ( -1084 -1056 192 ) bricks/s_sr_m12ab 128 -192 0 1 1 0 0 0 +( -1092 -1062 192 ) ( -1084 -1062 192 ) ( -1084 -1062 176 ) bricks/s_sr_m12ab 128 0 0 1 1 0 0 0 +( -1086 -1064 192 ) ( -1086 -1056 192 ) ( -1086 -1056 176 ) bricks/s_sr_m12ab 192 0 0 1 1 0 0 0 +( -1084 -1058 192 ) ( -1092 -1058 192 ) ( -1092 -1058 176 ) bricks/s_sr_m12ab 128 0 0 1 1 0 0 0 +( -1090 -1056 192 ) ( -1090 -1064 192 ) ( -1090 -1064 176 ) bricks/s_sr_m12ab 192 0 0 1 1 0 0 0 +} +} +// entity 60 +{ +"classname" "func_group" +// brush 0 +{ +( -1613 -258 320 ) ( -1716 -152 288 ) ( -1732 -181 320 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1536 -258 320 ) ( -1592 -258 320 ) ( -1564 -152 320 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1700 -196 288 ) ( -1688 -176 288 ) ( -1694 -186 320 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1632 -212 296 ) ( -1644 -232 296 ) ( -1638 -222 320 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1700 -192 296 ) ( -1638 -232 296 ) ( -1669 -212 320 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +} +// brush 1 +{ +( -1613 -258 320 ) ( -1716 -152 288 ) ( -1732 -181 320 ) common/li_pv_v4a 26 -1 147 1 1 0 1 7000 +( -1716 -152 336 ) ( -1716 -152 288 ) ( -1613 -258 320 ) common/li_pv_v4a 26 -1 147 1 1 0 1 7000 +( -1536 -258 320 ) ( -1592 -258 320 ) ( -1564 -152 320 ) common/li_pv_v4a 26 -1 147 1 1 0 1 7000 +( -1700 -196 288 ) ( -1688 -176 288 ) ( -1694 -186 320 ) common/li_pv_v4a 26 -1 147 1 1 0 1 7000 +( -1632 -212 296 ) ( -1644 -232 296 ) ( -1638 -222 320 ) common/li_pv_v4a 26 -1 147 1 1 0 1 7000 +( -1638 -232 296 ) ( -1700 -192 296 ) ( -1669 -212 320 ) common/li_pv_v4a 26 -1 147 1 1 0 1 7000 +} +// brush 2 +{ +( -1613 -258 320 ) ( -1592 -232 288 ) ( -1716 -152 288 ) common/li_pv_v4a 26 -1 147 1 1 0 1 7000 +( -1613 -258 320 ) ( -1716 -152 288 ) ( -1716 -152 336 ) common/li_pv_v4a 26 -1 147 1 1 0 1 7000 +( -1536 -258 320 ) ( -1592 -258 320 ) ( -1564 -152 320 ) common/li_pv_v4a 26 -1 147 1 1 0 1 7000 +( -1700 -196 288 ) ( -1688 -176 288 ) ( -1694 -186 320 ) common/li_pv_v4a 26 -1 147 1 1 0 1 7000 +( -1632 -212 288 ) ( -1644 -232 288 ) ( -1638 -222 320 ) common/li_pv_v4a 26 -1 147 1 1 0 1 7000 +( -1692 -176 288 ) ( -1632 -216 288 ) ( -1662 -196 320 ) common/li_pv_v4a 26 -1 147 1 1 0 1 7000 +} +// brush 3 +{ +( -1613 -258 320 ) ( -1592 -232 288 ) ( -1716 -152 288 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1716 -152 288 ) ( -1592 -232 288 ) ( -1592 -232 336 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1536 -258 320 ) ( -1592 -258 320 ) ( -1564 -152 320 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1700 -196 288 ) ( -1688 -176 288 ) ( -1694 -186 320 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1632 -212 288 ) ( -1644 -232 288 ) ( -1638 -222 320 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1632 -216 288 ) ( -1692 -176 288 ) ( -1662 -196 320 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +} +// brush 4 +{ +( -1613 -258 320 ) ( -1592 -232 288 ) ( -1716 -152 288 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1592 -232 336 ) ( -1592 -232 288 ) ( -1613 -258 320 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1716 -152 288 ) ( -1592 -232 288 ) ( -1592 -232 336 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1613 -258 320 ) ( -1716 -152 288 ) ( -1716 -152 336 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1536 -258 320 ) ( -1592 -258 320 ) ( -1564 -152 320 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1644 -232 288 ) ( -1632 -212 288 ) ( -1638 -222 320 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +} +// brush 5 +{ +( -1613 -258 320 ) ( -1716 -152 288 ) ( -1732 -181 320 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1716 -152 336 ) ( -1716 -152 288 ) ( -1613 -258 320 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1536 -258 320 ) ( -1592 -258 320 ) ( -1564 -152 320 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1644 -232 296 ) ( -1632 -212 296 ) ( -1638 -222 320 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +} +// brush 6 +{ +( -1613 -258 320 ) ( -1716 -152 288 ) ( -1732 -181 320 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1732 -181 320 ) ( -1716 -152 288 ) ( -1716 -152 336 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1716 -152 336 ) ( -1716 -152 288 ) ( -1613 -258 320 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1536 -258 320 ) ( -1592 -258 320 ) ( -1564 -152 320 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1688 -176 288 ) ( -1700 -196 288 ) ( -1694 -186 320 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +} +// brush 7 +{ +( -1613 -258 320 ) ( -1592 -232 288 ) ( -1716 -152 288 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1716 -152 288 ) ( -1592 -232 288 ) ( -1592 -232 336 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1613 -258 320 ) ( -1716 -152 288 ) ( -1716 -152 336 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1536 -258 320 ) ( -1592 -258 320 ) ( -1564 -152 320 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +( -1688 -176 288 ) ( -1700 -196 288 ) ( -1694 -186 320 ) bricks/c_tn_m1 0 7 147 1 1 0 0 0 +} +} +// entity 61 +{ +"origin" "568 -3696 104" +"light" "50" +"_color" "1.000000 0.000000 0.000000" +"classname" "light" +} +// entity 62 +{ +"classname" "func_wall" +// brush 0 +{ +( -1561 -3024 160 ) ( -1427 -3221 160 ) ( -1402 -3201 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -1427 -3221 208 ) ( -1427 -3221 160 ) ( -1561 -3024 160 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -1402 -3201 192 ) ( -1427 -3221 160 ) ( -1427 -3221 208 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -1561 -3024 208 ) ( -1561 -3024 160 ) ( -1402 -3201 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -904 -3221 192 ) ( -920 -3221 192 ) ( -912 -3024 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -1466 -3152 160 ) ( -1450 -3142 160 ) ( -1458 -3147 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +} +// brush 1 +{ +( -1533 -3008 192 ) ( -1561 -3024 160 ) ( -1402 -3201 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -1402 -3201 192 ) ( -1561 -3024 160 ) ( -1561 -3024 208 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -904 -3201 192 ) ( -920 -3201 192 ) ( -912 -3008 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -1466 -3152 173 ) ( -1450 -3142 173 ) ( -1458 -3147 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +} +// brush 2 +{ +( -1533 -3008 192 ) ( -1561 -3024 160 ) ( -1402 -3201 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -904 -3201 192 ) ( -920 -3201 192 ) ( -912 -3008 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -1500 -3098 160 ) ( -1488 -3090 160 ) ( -1494 -3094 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -1450 -3142 173 ) ( -1466 -3152 173 ) ( -1458 -3147 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -1450 -3142 173 ) ( -1488 -3086 173 ) ( -1469 -3114 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +} +// brush 3 +{ +( -1561 -3024 160 ) ( -1427 -3221 160 ) ( -1402 -3201 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -1427 -3221 208 ) ( -1427 -3221 160 ) ( -1561 -3024 160 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -904 -3221 192 ) ( -920 -3221 192 ) ( -912 -3024 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -1500 -3098 160 ) ( -1488 -3090 160 ) ( -1494 -3094 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -1450 -3142 160 ) ( -1466 -3152 160 ) ( -1458 -3147 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -1502 -3094 160 ) ( -1462 -3154 160 ) ( -1482 -3124 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +} +// brush 4 +{ +( -1561 -3024 160 ) ( -1427 -3221 160 ) ( -1402 -3201 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -1427 -3221 208 ) ( -1427 -3221 160 ) ( -1561 -3024 160 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -1561 -3024 208 ) ( -1561 -3024 160 ) ( -1402 -3201 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -904 -3221 192 ) ( -920 -3221 192 ) ( -912 -3024 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -1488 -3090 160 ) ( -1500 -3098 160 ) ( -1494 -3094 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +} +// brush 5 +{ +( -1533 -3008 192 ) ( -1561 -3024 160 ) ( -1402 -3201 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -1561 -3024 208 ) ( -1561 -3024 160 ) ( -1533 -3008 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -1402 -3201 192 ) ( -1561 -3024 160 ) ( -1561 -3024 208 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -904 -3201 192 ) ( -920 -3201 192 ) ( -912 -3008 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +( -1488 -3090 160 ) ( -1500 -3098 160 ) ( -1494 -3094 192 ) bricks/c_tn_m1 101 -9 304 1 1 0 0 0 +} +} +// entity 63 +{ +"classname" "func_wall" +// brush 0 +{ +( -630 -3648 208 ) ( -630 -3648 160 ) ( -859 -3600 160 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -859 -3600 160 ) ( -630 -3648 160 ) ( -627 -3616 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -904 -3648 192 ) ( -920 -3648 192 ) ( -912 -3600 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -774 -3612 160 ) ( -768 -3588 160 ) ( -771 -3600 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -706 -3604 160 ) ( -712 -3628 160 ) ( -709 -3616 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -776 -3608 160 ) ( -706 -3624 160 ) ( -741 -3616 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +} +// brush 1 +{ +( -630 -3648 208 ) ( -630 -3648 160 ) ( -859 -3600 160 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -627 -3616 192 ) ( -630 -3648 160 ) ( -630 -3648 208 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -859 -3600 208 ) ( -859 -3600 160 ) ( -627 -3616 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -859 -3600 160 ) ( -630 -3648 160 ) ( -627 -3616 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -904 -3648 192 ) ( -920 -3648 192 ) ( -912 -3600 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -712 -3628 160 ) ( -706 -3604 160 ) ( -709 -3616 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +} +// brush 2 +{ +( -627 -3616 192 ) ( -859 -3600 160 ) ( -859 -3600 208 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -849 -3569 192 ) ( -859 -3600 160 ) ( -627 -3616 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -904 -3616 192 ) ( -920 -3616 192 ) ( -912 -3569 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -712 -3628 172 ) ( -706 -3604 172 ) ( -709 -3616 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +} +// brush 3 +{ +( -849 -3569 192 ) ( -859 -3600 160 ) ( -627 -3616 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -904 -3616 192 ) ( -920 -3616 192 ) ( -912 -3569 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -774 -3612 160 ) ( -768 -3588 160 ) ( -771 -3600 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -706 -3604 172 ) ( -712 -3628 172 ) ( -709 -3616 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -704 -3608 172 ) ( -774 -3592 172 ) ( -739 -3600 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +} +// brush 4 +{ +( -859 -3600 208 ) ( -859 -3600 160 ) ( -849 -3569 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -627 -3616 192 ) ( -859 -3600 160 ) ( -859 -3600 208 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -849 -3569 192 ) ( -859 -3600 160 ) ( -627 -3616 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -904 -3616 192 ) ( -920 -3616 192 ) ( -912 -3569 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -768 -3588 160 ) ( -774 -3612 160 ) ( -771 -3600 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +} +// brush 5 +{ +( -630 -3648 208 ) ( -630 -3648 160 ) ( -859 -3600 160 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -859 -3600 208 ) ( -859 -3600 160 ) ( -627 -3616 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -859 -3600 160 ) ( -630 -3648 160 ) ( -627 -3616 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -904 -3648 192 ) ( -920 -3648 192 ) ( -912 -3600 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +( -768 -3588 160 ) ( -774 -3612 160 ) ( -771 -3600 192 ) bricks/c_tn_m1 -1 12 348 1 1 0 0 0 +} +} +// entity 64 +{ +"noise" "world/fluorescent_broke.wav" +"origin" "1312 -108 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 65 +{ +"classname" "func_wall" +// brush 0 +{ +( 114 -391 -28 ) ( 223 -320 -28 ) ( 223 -320 -12 ) bricks/c_tn_m3 -13 2 33 1 1 0 0 0 +( 239 -361 0 ) ( 239 -361 -16 ) ( 130 -432 -16 ) bricks/c_tn_m3 -13 2 33 1 1 0 0 0 +( 280 -422 -12 ) ( 171 -493 -12 ) ( 84 -359 -12 ) bricks/c_tn_m3 127 36 33 1 1 0 0 0 +( 171 -493 6 ) ( 171 -493 -10 ) ( 84 -359 -10 ) bricks/c_tn_m3 -13 2 33 1 1 0 0 0 +( 171 -493 -16 ) ( 280 -422 -16 ) ( 193 -288 -16 ) bricks/c_tn_m3 -13 2 33 1 1 0 0 0 +( 204 -467 -16 ) ( 204 -467 0 ) ( 117 -333 0 ) bricks/c_tn_m3 -13 2 33 1 1 0 0 0 +} +} +// entity 66 +{ +"fxdensity" "2" +"classname" "elements_raincloud" +// brush 0 +{ +( 448 -96 190 ) ( 440 -96 190 ) ( 440 -104 190 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 440 -104 192 ) ( 440 -96 192 ) ( 448 -96 192 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 440 -104 192 ) ( 448 -104 192 ) ( 448 -104 160 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 448 -104 192 ) ( 448 -96 192 ) ( 448 -96 160 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 448 -96 192 ) ( 440 -96 192 ) ( 440 -96 160 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 256 -104 192 ) ( 256 -112 192 ) ( 256 -112 160 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 67 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"style" "10" +"light" "135" +"origin" "1312 -88 168" +} +// entity 68 +{ +"angle" "180" +"classname" "info_player_start" +"origin" "1216 -256 8" +} +// entity 69 +{ +"origin" "1312 -72 128" +"light" "100" +"style" "10" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 70 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"style" "10" +"light" "100" +"origin" "1312 -120 184" +} +// entity 71 +{ +"origin" "1312 -424 168" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 72 +{ +"origin" "352 -424 168" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 73 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "672 -424 168" +} +// entity 74 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-288 -424 168" +} +// entity 75 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "352 -88 168" +} +// entity 76 +{ +"origin" "672 -88 168" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 77 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "992 -88 168" +} +// entity 78 +{ +"classname" "elements_raincloud" +"fxdensity" "1" +// brush 0 +{ +( -16 -408 190 ) ( -24 -408 190 ) ( -24 -416 190 ) common/0_trigger 16 -24 0 1 1 0 128 0 +( -24 -416 192 ) ( -24 -408 192 ) ( -16 -408 192 ) common/0_trigger 16 -24 0 1 1 0 128 0 +( -24 -416 192 ) ( -16 -416 192 ) ( -16 -416 160 ) common/0_trigger 16 0 0 1 1 0 128 0 +( -16 -416 192 ) ( -16 -408 192 ) ( -16 -408 160 ) common/0_trigger 24 0 0 1 1 0 128 0 +( -16 -408 192 ) ( -24 -408 192 ) ( -24 -408 160 ) common/0_trigger 16 0 0 1 1 0 128 0 +( -24 -408 192 ) ( -24 -416 192 ) ( -24 -416 160 ) common/0_trigger 24 0 0 1 1 0 128 0 +} +} +// entity 79 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1312 -404 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 80 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "992 -108 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 81 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "672 -108 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 82 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "672 -404 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 83 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "352 -108 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 84 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "352 -404 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 85 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-288 -404 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 86 +{ +"origin" "-2720 -424 296" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 87 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-2720 -88 296" +} +// entity 88 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-2720 -104 258" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 89 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-2720 -408 258" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 90 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-1674 -216 294" +} +// entity 91 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1682 -228 256" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 92 +{ +"origin" "-1464 -426 294" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 93 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1476 -434 256" +"noise" "world/fluorescent_hum.wav" +} +// entity 94 +{ +"origin" "-1670 -832 294" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 95 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1652 -832 256" +"noise" "world/fluorescent_hum.wav" +} +// entity 96 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-921 -1056 169" +} +// entity 97 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-940 -1056 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 98 +{ +"origin" "-921 -1376 169" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 99 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-940 -1376 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 100 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-921 -1696 169" +} +// entity 101 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-940 -1696 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 102 +{ +"origin" "-921 -2016 169" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 103 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-940 -2016 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 104 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-921 -2336 169" +} +// entity 105 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-940 -2336 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 106 +{ +"origin" "-921 -2656 169" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 107 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-940 -2656 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 108 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-1670 -1056 294" +} +// entity 109 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1652 -1056 256" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 110 +{ +"origin" "-1670 -1376 294" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 111 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1652 -1376 256" +"noise" "world/fluorescent_hum.wav" +} +// entity 112 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-1344 -1056 222" +} +// entity 113 +{ +"origin" "-1670 -2336 166" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 114 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1652 -2336 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 115 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-1670 -2016 182" +} +// entity 116 +{ +"origin" "-1670 -1696 254" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 117 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-924 -2968 166" +} +// entity 118 +{ +"origin" "-598 -3294 166" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 119 +{ +"origin" "-1344 -1376 222" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 120 +{ +"origin" "-1248 -1056 94" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 121 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-1248 -1376 94" +} +// entity 122 +{ +"origin" "-1248 -1696 94" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 123 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-1344 -1696 182" +} +// entity 124 +{ +"origin" "-1344 -2016 126" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 125 +{ +"origin" "-1462 -3104 166" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 126 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-1142 -3424 166" +} +// entity 127 +{ +"origin" "-734 -3592 166" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 128 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-352 -3616 166" +} +// entity 129 +{ +"origin" "-32 -3616 166" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 130 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1444 -3088 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 131 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1124 -3408 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 132 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-732 -3576 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 133 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-352 -3600 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 134 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-32 -3600 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 135 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-606 -3320 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 136 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-950 -2968 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 137 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "200 -3768 166" +} +// entity 138 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "212 -3756 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 139 +{ +"origin" "-2400 -88 296" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 140 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-2400 -104 258" +"noise" "world/fluorescent_hum.wav" +} +// entity 141 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-2400 -424 296" +} +// entity 142 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-2400 -408 258" +"noise" "world/fluorescent_hum.wav" +} +// entity 143 +{ +"origin" "-2080 -424 296" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 144 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-2080 -408 258" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 145 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-1784 -536 296" +} +// entity 146 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1768 -520 258" +"noise" "world/fluorescent_hum.wav" +} +// entity 147 +{ +"classname" "func_group" +// brush 0 +{ +( -3219 -254 320 ) ( -3116 -360 288 ) ( -3100 -331 320 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3296 -254 320 ) ( -3240 -254 320 ) ( -3268 -360 320 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3132 -316 288 ) ( -3144 -336 288 ) ( -3138 -326 320 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3200 -300 296 ) ( -3188 -280 296 ) ( -3194 -290 320 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3132 -320 296 ) ( -3194 -280 296 ) ( -3163 -300 320 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +} +// brush 1 +{ +( -3219 -254 320 ) ( -3116 -360 288 ) ( -3100 -331 320 ) common/li_pv_v4a -23 7 147 1 1 0 1 7000 +( -3116 -360 336 ) ( -3116 -360 288 ) ( -3219 -254 320 ) common/li_pv_v4a -23 7 147 1 1 0 1 7000 +( -3296 -254 320 ) ( -3240 -254 320 ) ( -3268 -360 320 ) common/li_pv_v4a -23 7 147 1 1 0 1 7000 +( -3132 -316 288 ) ( -3144 -336 288 ) ( -3138 -326 320 ) common/li_pv_v4a -23 7 147 1 1 0 1 7000 +( -3200 -300 296 ) ( -3188 -280 296 ) ( -3194 -290 320 ) common/li_pv_v4a -23 7 147 1 1 0 1 7000 +( -3194 -280 296 ) ( -3132 -320 296 ) ( -3163 -300 320 ) common/li_pv_v4a -23 7 147 1 1 0 1 7000 +} +// brush 2 +{ +( -3219 -254 320 ) ( -3240 -280 288 ) ( -3116 -360 288 ) common/li_pv_v4a -23 7 147 1 1 0 1 7000 +( -3219 -254 320 ) ( -3116 -360 288 ) ( -3116 -360 336 ) common/li_pv_v4a -23 7 147 1 1 0 1 7000 +( -3296 -254 320 ) ( -3240 -254 320 ) ( -3268 -360 320 ) common/li_pv_v4a -23 7 147 1 1 0 1 7000 +( -3132 -316 288 ) ( -3144 -336 288 ) ( -3138 -326 320 ) common/li_pv_v4a -23 7 147 1 1 0 1 7000 +( -3200 -300 288 ) ( -3188 -280 288 ) ( -3194 -290 320 ) common/li_pv_v4a -23 7 147 1 1 0 1 7000 +( -3140 -336 288 ) ( -3200 -296 288 ) ( -3170 -316 320 ) common/li_pv_v4a -23 7 147 1 1 0 1 7000 +} +// brush 3 +{ +( -3219 -254 320 ) ( -3240 -280 288 ) ( -3116 -360 288 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3116 -360 288 ) ( -3240 -280 288 ) ( -3240 -280 336 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3296 -254 320 ) ( -3240 -254 320 ) ( -3268 -360 320 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3132 -316 288 ) ( -3144 -336 288 ) ( -3138 -326 320 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3200 -300 288 ) ( -3188 -280 288 ) ( -3194 -290 320 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3200 -296 288 ) ( -3140 -336 288 ) ( -3170 -316 320 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +} +// brush 4 +{ +( -3219 -254 320 ) ( -3240 -280 288 ) ( -3116 -360 288 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3240 -280 336 ) ( -3240 -280 288 ) ( -3219 -254 320 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3116 -360 288 ) ( -3240 -280 288 ) ( -3240 -280 336 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3219 -254 320 ) ( -3116 -360 288 ) ( -3116 -360 336 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3296 -254 320 ) ( -3240 -254 320 ) ( -3268 -360 320 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3188 -280 288 ) ( -3200 -300 288 ) ( -3194 -290 320 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +} +// brush 5 +{ +( -3219 -254 320 ) ( -3116 -360 288 ) ( -3100 -331 320 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3116 -360 336 ) ( -3116 -360 288 ) ( -3219 -254 320 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3296 -254 320 ) ( -3240 -254 320 ) ( -3268 -360 320 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3188 -280 296 ) ( -3200 -300 296 ) ( -3194 -290 320 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +} +// brush 6 +{ +( -3219 -254 320 ) ( -3116 -360 288 ) ( -3100 -331 320 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3100 -331 320 ) ( -3116 -360 288 ) ( -3116 -360 336 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3116 -360 336 ) ( -3116 -360 288 ) ( -3219 -254 320 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3296 -254 320 ) ( -3240 -254 320 ) ( -3268 -360 320 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3144 -336 288 ) ( -3132 -316 288 ) ( -3138 -326 320 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +} +// brush 7 +{ +( -3219 -254 320 ) ( -3240 -280 288 ) ( -3116 -360 288 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3116 -360 288 ) ( -3240 -280 288 ) ( -3240 -280 336 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3219 -254 320 ) ( -3116 -360 288 ) ( -3116 -360 336 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3296 -254 320 ) ( -3240 -254 320 ) ( -3268 -360 320 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +( -3144 -336 288 ) ( -3132 -316 288 ) ( -3138 -326 320 ) bricks/c_tn_m1 34 18 327 1 1 0 0 0 +} +} +// entity 148 +{ +"origin" "-3158 -296 294" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 149 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-3150 -284 256" +"noise" "world/fluorescent_hum.wav" +} +// entity 150 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-3368 -86 294" +} +// entity 151 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-3356 -78 256" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 152 +{ +"classname" "func_group" +// brush 0 +{ +( -3403 -28 320 ) ( -3432 -44 288 ) ( -3326 -147 320 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3432 -196 320 ) ( -3326 -168 320 ) ( -3326 -224 320 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3398 -66 320 ) ( -3408 -72 288 ) ( -3388 -60 288 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3362 -122 320 ) ( -3352 -116 296 ) ( -3372 -128 296 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3372 -91 320 ) ( -3352 -122 296 ) ( -3392 -60 296 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +} +// brush 1 +{ +( -3403 -28 320 ) ( -3432 -44 288 ) ( -3326 -147 320 ) common/li_pv_v4a -3 -2 123 1 1 0 1 7000 +( -3326 -147 320 ) ( -3432 -44 288 ) ( -3432 -44 336 ) common/li_pv_v4a -3 -2 123 1 1 0 1 7000 +( -3432 -196 320 ) ( -3326 -168 320 ) ( -3326 -224 320 ) common/li_pv_v4a -3 -2 123 1 1 0 1 7000 +( -3398 -66 320 ) ( -3408 -72 288 ) ( -3388 -60 288 ) common/li_pv_v4a -3 -2 123 1 1 0 1 7000 +( -3362 -122 320 ) ( -3352 -116 296 ) ( -3372 -128 296 ) common/li_pv_v4a -3 -2 123 1 1 0 1 7000 +( -3372 -91 320 ) ( -3392 -60 296 ) ( -3352 -122 296 ) common/li_pv_v4a -3 -2 123 1 1 0 1 7000 +} +// brush 2 +{ +( -3432 -44 288 ) ( -3352 -168 288 ) ( -3326 -147 320 ) common/li_pv_v4a -3 -2 123 1 1 0 1 7000 +( -3432 -44 336 ) ( -3432 -44 288 ) ( -3326 -147 320 ) common/li_pv_v4a -3 -2 123 1 1 0 1 7000 +( -3432 -196 320 ) ( -3326 -168 320 ) ( -3326 -224 320 ) common/li_pv_v4a -3 -2 123 1 1 0 1 7000 +( -3398 -66 320 ) ( -3408 -72 288 ) ( -3388 -60 288 ) common/li_pv_v4a -3 -2 123 1 1 0 1 7000 +( -3362 -122 320 ) ( -3352 -116 288 ) ( -3372 -128 288 ) common/li_pv_v4a -3 -2 123 1 1 0 1 7000 +( -3388 -98 320 ) ( -3368 -128 288 ) ( -3408 -68 288 ) common/li_pv_v4a -3 -2 123 1 1 0 1 7000 +} +// brush 3 +{ +( -3432 -44 288 ) ( -3352 -168 288 ) ( -3326 -147 320 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3352 -168 336 ) ( -3352 -168 288 ) ( -3432 -44 288 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3432 -196 320 ) ( -3326 -168 320 ) ( -3326 -224 320 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3398 -66 320 ) ( -3408 -72 288 ) ( -3388 -60 288 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3362 -122 320 ) ( -3352 -116 288 ) ( -3372 -128 288 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3388 -98 320 ) ( -3408 -68 288 ) ( -3368 -128 288 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +} +// brush 4 +{ +( -3432 -44 288 ) ( -3352 -168 288 ) ( -3326 -147 320 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3326 -147 320 ) ( -3352 -168 288 ) ( -3352 -168 336 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3352 -168 336 ) ( -3352 -168 288 ) ( -3432 -44 288 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3432 -44 336 ) ( -3432 -44 288 ) ( -3326 -147 320 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3432 -196 320 ) ( -3326 -168 320 ) ( -3326 -224 320 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3362 -122 320 ) ( -3372 -128 288 ) ( -3352 -116 288 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +} +// brush 5 +{ +( -3403 -28 320 ) ( -3432 -44 288 ) ( -3326 -147 320 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3326 -147 320 ) ( -3432 -44 288 ) ( -3432 -44 336 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3432 -196 320 ) ( -3326 -168 320 ) ( -3326 -224 320 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3362 -122 320 ) ( -3372 -128 296 ) ( -3352 -116 296 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +} +// brush 6 +{ +( -3403 -28 320 ) ( -3432 -44 288 ) ( -3326 -147 320 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3432 -44 336 ) ( -3432 -44 288 ) ( -3403 -28 320 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3326 -147 320 ) ( -3432 -44 288 ) ( -3432 -44 336 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3432 -196 320 ) ( -3326 -168 320 ) ( -3326 -224 320 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3398 -66 320 ) ( -3388 -60 288 ) ( -3408 -72 288 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +} +// brush 7 +{ +( -3432 -44 288 ) ( -3352 -168 288 ) ( -3326 -147 320 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3352 -168 336 ) ( -3352 -168 288 ) ( -3432 -44 288 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3432 -44 336 ) ( -3432 -44 288 ) ( -3326 -147 320 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3432 -196 320 ) ( -3326 -168 320 ) ( -3326 -224 320 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +( -3398 -66 320 ) ( -3388 -60 288 ) ( -3408 -72 288 ) bricks/c_tn_m1 0 11 303 1 1 0 0 0 +} +} +// entity 153 +{ +"classname" "func_wall" +// brush 0 +{ +( -1084 -1376 184 ) ( -1092 -1376 184 ) ( -1092 -1384 184 ) bricks/s_sr_m12ab 128 -192 0 1 1 0 0 0 +( -1092 -1384 192 ) ( -1092 -1376 192 ) ( -1084 -1376 192 ) bricks/s_sr_m12ab 128 -192 0 1 1 0 0 0 +( -1092 -1382 192 ) ( -1084 -1382 192 ) ( -1084 -1382 176 ) bricks/s_sr_m12ab 128 0 0 1 1 0 0 0 +( -1086 -1384 192 ) ( -1086 -1376 192 ) ( -1086 -1376 176 ) bricks/s_sr_m12ab 192 0 0 1 1 0 0 0 +( -1084 -1378 192 ) ( -1092 -1378 192 ) ( -1092 -1378 176 ) bricks/s_sr_m12ab 128 0 0 1 1 0 0 0 +( -1090 -1376 192 ) ( -1090 -1384 192 ) ( -1090 -1384 176 ) bricks/s_sr_m12ab 192 0 0 1 1 0 0 0 +} +} +// entity 154 +{ +"classname" "func_wall" +// brush 0 +{ +( -1084 -1696 184 ) ( -1092 -1696 184 ) ( -1092 -1704 184 ) bricks/s_sr_m12ab 128 -192 0 1 1 0 0 0 +( -1092 -1704 192 ) ( -1092 -1696 192 ) ( -1084 -1696 192 ) bricks/s_sr_m12ab 128 -192 0 1 1 0 0 0 +( -1092 -1702 192 ) ( -1084 -1702 192 ) ( -1084 -1702 176 ) bricks/s_sr_m12ab 128 0 0 1 1 0 0 0 +( -1086 -1704 192 ) ( -1086 -1696 192 ) ( -1086 -1696 176 ) bricks/s_sr_m12ab 192 0 0 1 1 0 0 0 +( -1084 -1698 192 ) ( -1092 -1698 192 ) ( -1092 -1698 176 ) bricks/s_sr_m12ab 128 0 0 1 1 0 0 0 +( -1090 -1696 192 ) ( -1090 -1704 192 ) ( -1090 -1704 176 ) bricks/s_sr_m12ab 192 0 0 1 1 0 0 0 +} +} +// entity 155 +{ +"classname" "func_wall" +// brush 0 +{ +( -1084 -2016 184 ) ( -1092 -2016 184 ) ( -1092 -2024 184 ) bricks/s_sr_m12ab 128 -192 0 1 1 0 0 0 +( -1092 -2024 192 ) ( -1092 -2016 192 ) ( -1084 -2016 192 ) bricks/s_sr_m12ab 128 -192 0 1 1 0 0 0 +( -1092 -2022 192 ) ( -1084 -2022 192 ) ( -1084 -2022 176 ) bricks/s_sr_m12ab 128 0 0 1 1 0 0 0 +( -1086 -2024 192 ) ( -1086 -2016 192 ) ( -1086 -2016 176 ) bricks/s_sr_m12ab 192 0 0 1 1 0 0 0 +( -1084 -2018 192 ) ( -1092 -2018 192 ) ( -1092 -2018 176 ) bricks/s_sr_m12ab 128 0 0 1 1 0 0 0 +( -1090 -2016 192 ) ( -1090 -2024 192 ) ( -1090 -2024 176 ) bricks/s_sr_m12ab 192 0 0 1 1 0 0 0 +} +} +// entity 156 +{ +"origin" "-1080 -2008 176" +"light" "80" +"_color" "0.000000 1.000000 0.000000" +"classname" "light" +} +// entity 157 +{ +"classname" "light" +"_color" "0.000000 1.000000 0.000000" +"light" "80" +"origin" "-1080 -1688 176" +} +// entity 158 +{ +"origin" "-1080 -1368 176" +"light" "80" +"_color" "0.000000 1.000000 0.000000" +"classname" "light" +} +// entity 159 +{ +"classname" "light" +"_color" "0.000000 1.000000 0.000000" +"light" "80" +"origin" "-1080 -1048 176" +} +// entity 160 +{ +"style" "10" +"origin" "-3048 24 296" +"light" "135" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 161 +{ +"style" "10" +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-3032 40 264" +} +// entity 162 +{ +"style" "10" +"origin" "-3072 0 312" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 163 +{ +"noise" "world/fluorescent_broke.wav" +"origin" "-3056 16 256" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 164 +{ +"classname" "light" +"_color" "1.000000 0.000000 0.000000" +"light" "50" +"origin" "-3568 1032 232" +} +// entity 165 +{ +"origin" "-3488 1952 294" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 166 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-3488 1632 294" +} +// entity 167 +{ +"origin" "-3168 1632 294" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 168 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-3168 1312 294" +} +// entity 169 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-3472 1952 256" +"noise" "world/fluorescent_hum.wav" +} +// entity 170 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-3472 1632 256" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 171 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-3184 1632 256" +"noise" "world/fluorescent_hum.wav" +} +// entity 172 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-3184 1312 256" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 173 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-3488 992 294" +} +// entity 174 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-3472 992 256" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 175 +{ +"origin" "-3488 672 294" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 176 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-3472 672 256" +"noise" "world/fluorescent_hum.wav" +} +// entity 177 +{ +"origin" "-3640 1400 294" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 178 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-3628 1388 256" +"noise" "world/fluorescent_hum.wav" +} +// entity 179 +{ +"origin" "-3168 352 294" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 180 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-3184 352 256" +"noise" "world/fluorescent_hum.wav" +} +// entity 181 +{ +"noise" "world/fluorescent_broke.wav" +"origin" "-3180 672 256" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 182 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"style" "10" +"light" "135" +"origin" "-3160 672 296" +} +// entity 183 +{ +"origin" "-3144 672 256" +"light" "100" +"style" "10" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 184 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"style" "10" +"light" "100" +"origin" "-3192 672 312" +} +// entity 185 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "75" +"origin" "-3496 352 294" +} +// entity 186 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-3480 352 256" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 187 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-3488 2272 294" +} +// entity 188 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-3472 2272 256" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 189 +{ +"origin" "-3488 2592 294" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"classname" "light" +} +// entity 190 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-3472 2592 256" +"noise" "world/fluorescent_hum.wav" +} +// entity 191 +{ +"origin" "-3160 2272 294" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 192 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-3176 2272 256" +"noise" "world/fluorescent_hum.wav" +} +// entity 193 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-3160 2592 294" +} +// entity 194 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-3176 2592 256" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 195 +{ +"classname" "func_wall" +// brush 0 +{ +( -3326 3411 320 ) ( -3352 3432 288 ) ( -3432 3308 288 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3352 3432 336 ) ( -3352 3432 288 ) ( -3326 3411 320 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3432 3308 288 ) ( -3352 3432 288 ) ( -3352 3432 336 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3326 3411 320 ) ( -3432 3308 288 ) ( -3432 3308 336 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3326 3488 320 ) ( -3326 3432 320 ) ( -3432 3460 320 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3352 3380 288 ) ( -3372 3392 288 ) ( -3362 3386 320 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +} +// brush 1 +{ +( -3326 3411 320 ) ( -3352 3432 288 ) ( -3432 3308 288 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3432 3308 288 ) ( -3352 3432 288 ) ( -3352 3432 336 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3326 3488 320 ) ( -3326 3432 320 ) ( -3432 3460 320 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3388 3324 288 ) ( -3408 3336 288 ) ( -3398 3330 320 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3372 3392 288 ) ( -3352 3380 288 ) ( -3362 3386 320 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3368 3392 288 ) ( -3408 3332 288 ) ( -3388 3362 320 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +} +// brush 2 +{ +( -3326 3411 320 ) ( -3432 3308 288 ) ( -3403 3292 320 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3432 3308 336 ) ( -3432 3308 288 ) ( -3326 3411 320 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3326 3488 320 ) ( -3326 3432 320 ) ( -3432 3460 320 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3352 3380 296 ) ( -3372 3392 296 ) ( -3362 3386 320 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +} +// brush 3 +{ +( -3326 3411 320 ) ( -3432 3308 288 ) ( -3403 3292 320 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3326 3488 320 ) ( -3326 3432 320 ) ( -3432 3460 320 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3388 3324 288 ) ( -3408 3336 288 ) ( -3398 3330 320 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3372 3392 296 ) ( -3352 3380 296 ) ( -3362 3386 320 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3392 3324 296 ) ( -3352 3386 296 ) ( -3372 3355 320 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +} +// brush 4 +{ +( -3326 3411 320 ) ( -3432 3308 288 ) ( -3403 3292 320 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3403 3292 320 ) ( -3432 3308 288 ) ( -3432 3308 336 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3432 3308 336 ) ( -3432 3308 288 ) ( -3326 3411 320 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3326 3488 320 ) ( -3326 3432 320 ) ( -3432 3460 320 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3408 3336 288 ) ( -3388 3324 288 ) ( -3398 3330 320 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +} +// brush 5 +{ +( -3326 3411 320 ) ( -3352 3432 288 ) ( -3432 3308 288 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3432 3308 288 ) ( -3352 3432 288 ) ( -3352 3432 336 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3326 3411 320 ) ( -3432 3308 288 ) ( -3432 3308 336 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3326 3488 320 ) ( -3326 3432 320 ) ( -3432 3460 320 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +( -3408 3336 288 ) ( -3388 3324 288 ) ( -3398 3330 320 ) bricks/c_tn_m1 -94 -7 237 1 1 0 0 0 +} +} +// entity 196 +{ +"classname" "func_group" +// brush 0 +{ +( -3100 3595 320 ) ( -3116 3624 288 ) ( -3219 3518 320 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3268 3624 320 ) ( -3240 3518 320 ) ( -3296 3518 320 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3138 3590 320 ) ( -3144 3600 288 ) ( -3132 3580 288 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3194 3554 320 ) ( -3188 3544 296 ) ( -3200 3564 296 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3163 3564 320 ) ( -3194 3544 296 ) ( -3132 3584 296 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +} +// brush 1 +{ +( -3100 3595 320 ) ( -3116 3624 288 ) ( -3219 3518 320 ) common/li_pv_v4a 27 -8 213 1 1 0 1 7000 +( -3219 3518 320 ) ( -3116 3624 288 ) ( -3116 3624 336 ) common/li_pv_v4a 22 5 213 1 1 0 1 7000 +( -3268 3624 320 ) ( -3240 3518 320 ) ( -3296 3518 320 ) common/li_pv_v4a 22 5 213 1 1 0 1 7000 +( -3138 3590 320 ) ( -3144 3600 288 ) ( -3132 3580 288 ) common/li_pv_v4a 22 5 213 1 1 0 1 7000 +( -3194 3554 320 ) ( -3188 3544 296 ) ( -3200 3564 296 ) common/li_pv_v4a 22 5 213 1 1 0 1 7000 +( -3163 3564 320 ) ( -3132 3584 296 ) ( -3194 3544 296 ) common/li_pv_v4a 22 5 213 1 1 0 1 7000 +} +// brush 2 +{ +( -3116 3624 288 ) ( -3240 3544 288 ) ( -3219 3518 320 ) common/li_pv_v4a 27 -8 213 1 1 0 1 7000 +( -3116 3624 336 ) ( -3116 3624 288 ) ( -3219 3518 320 ) common/li_pv_v4a 22 5 213 1 1 0 1 7000 +( -3268 3624 320 ) ( -3240 3518 320 ) ( -3296 3518 320 ) common/li_pv_v4a 22 5 213 1 1 0 1 7000 +( -3138 3590 320 ) ( -3144 3600 288 ) ( -3132 3580 288 ) common/li_pv_v4a 22 5 213 1 1 0 1 7000 +( -3194 3554 320 ) ( -3188 3544 288 ) ( -3200 3564 288 ) common/li_pv_v4a 22 5 213 1 1 0 1 7000 +( -3170 3580 320 ) ( -3200 3560 288 ) ( -3140 3600 288 ) common/li_pv_v4a 22 5 213 1 1 0 1 7000 +} +// brush 3 +{ +( -3116 3624 288 ) ( -3240 3544 288 ) ( -3219 3518 320 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3240 3544 336 ) ( -3240 3544 288 ) ( -3116 3624 288 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3268 3624 320 ) ( -3240 3518 320 ) ( -3296 3518 320 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3138 3590 320 ) ( -3144 3600 288 ) ( -3132 3580 288 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3194 3554 320 ) ( -3188 3544 288 ) ( -3200 3564 288 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3170 3580 320 ) ( -3140 3600 288 ) ( -3200 3560 288 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +} +// brush 4 +{ +( -3116 3624 288 ) ( -3240 3544 288 ) ( -3219 3518 320 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3219 3518 320 ) ( -3240 3544 288 ) ( -3240 3544 336 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3240 3544 336 ) ( -3240 3544 288 ) ( -3116 3624 288 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3116 3624 336 ) ( -3116 3624 288 ) ( -3219 3518 320 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3268 3624 320 ) ( -3240 3518 320 ) ( -3296 3518 320 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3194 3554 320 ) ( -3200 3564 288 ) ( -3188 3544 288 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +} +// brush 5 +{ +( -3100 3595 320 ) ( -3116 3624 288 ) ( -3219 3518 320 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3219 3518 320 ) ( -3116 3624 288 ) ( -3116 3624 336 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3268 3624 320 ) ( -3240 3518 320 ) ( -3296 3518 320 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3194 3554 320 ) ( -3200 3564 296 ) ( -3188 3544 296 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +} +// brush 6 +{ +( -3100 3595 320 ) ( -3116 3624 288 ) ( -3219 3518 320 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3116 3624 336 ) ( -3116 3624 288 ) ( -3100 3595 320 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3219 3518 320 ) ( -3116 3624 288 ) ( -3116 3624 336 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3268 3624 320 ) ( -3240 3518 320 ) ( -3296 3518 320 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3138 3590 320 ) ( -3132 3580 288 ) ( -3144 3600 288 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +} +// brush 7 +{ +( -3116 3624 288 ) ( -3240 3544 288 ) ( -3219 3518 320 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3240 3544 336 ) ( -3240 3544 288 ) ( -3116 3624 288 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3116 3624 336 ) ( -3116 3624 288 ) ( -3219 3518 320 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3268 3624 320 ) ( -3240 3518 320 ) ( -3296 3518 320 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +( -3138 3590 320 ) ( -3132 3580 288 ) ( -3144 3600 288 ) bricks/c_tn_m1 29 0 213 1 1 0 0 0 +} +} +// entity 197 +{ +"origin" "-3158 3560 294" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 198 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-3150 3548 256" +"noise" "world/fluorescent_hum.wav" +} +// entity 199 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-3368 3350 294" +} +// entity 200 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-3356 3342 256" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 201 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-2752 3352 296" +} +// entity 202 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-2752 3368 258" +"noise" "world/fluorescent_hum.wav" +} +// entity 203 +{ +"origin" "-3048 3240 296" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 204 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-3064 3256 258" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 205 +{ +"classname" "light" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"origin" "-3488 2912 294" +} +// entity 206 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-3472 2912 256" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 207 +{ +"origin" "-3160 2912 294" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 208 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-3176 2912 256" +"noise" "world/fluorescent_hum.wav" +} +// entity 209 +{ +"classname" "func_wall" +// brush 0 +{ +( -2072 3308 288 ) ( -2152 3432 288 ) ( -2178 3411 320 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2178 3411 320 ) ( -2152 3432 288 ) ( -2152 3432 336 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2152 3432 336 ) ( -2152 3432 288 ) ( -2072 3308 288 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2072 3308 336 ) ( -2072 3308 288 ) ( -2178 3411 320 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2072 3460 320 ) ( -2178 3432 320 ) ( -2178 3488 320 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2142 3386 320 ) ( -2132 3392 288 ) ( -2152 3380 288 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +} +// brush 1 +{ +( -2072 3308 288 ) ( -2152 3432 288 ) ( -2178 3411 320 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2152 3432 336 ) ( -2152 3432 288 ) ( -2072 3308 288 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2072 3460 320 ) ( -2178 3432 320 ) ( -2178 3488 320 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2106 3330 320 ) ( -2096 3336 288 ) ( -2116 3324 288 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2142 3386 320 ) ( -2152 3380 288 ) ( -2132 3392 288 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2116 3362 320 ) ( -2096 3332 288 ) ( -2136 3392 288 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +} +// brush 2 +{ +( -2101 3292 320 ) ( -2072 3308 288 ) ( -2178 3411 320 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2178 3411 320 ) ( -2072 3308 288 ) ( -2072 3308 336 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2072 3460 320 ) ( -2178 3432 320 ) ( -2178 3488 320 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2142 3386 320 ) ( -2132 3392 296 ) ( -2152 3380 296 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +} +// brush 3 +{ +( -2101 3292 320 ) ( -2072 3308 288 ) ( -2178 3411 320 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2072 3460 320 ) ( -2178 3432 320 ) ( -2178 3488 320 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2106 3330 320 ) ( -2096 3336 288 ) ( -2116 3324 288 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2142 3386 320 ) ( -2152 3380 296 ) ( -2132 3392 296 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2132 3355 320 ) ( -2152 3386 296 ) ( -2112 3324 296 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +} +// brush 4 +{ +( -2101 3292 320 ) ( -2072 3308 288 ) ( -2178 3411 320 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2072 3308 336 ) ( -2072 3308 288 ) ( -2101 3292 320 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2178 3411 320 ) ( -2072 3308 288 ) ( -2072 3308 336 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2072 3460 320 ) ( -2178 3432 320 ) ( -2178 3488 320 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2106 3330 320 ) ( -2116 3324 288 ) ( -2096 3336 288 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +} +// brush 5 +{ +( -2072 3308 288 ) ( -2152 3432 288 ) ( -2178 3411 320 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2152 3432 336 ) ( -2152 3432 288 ) ( -2072 3308 288 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2072 3308 336 ) ( -2072 3308 288 ) ( -2178 3411 320 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2072 3460 320 ) ( -2178 3432 320 ) ( -2178 3488 320 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +( -2106 3330 320 ) ( -2116 3324 288 ) ( -2096 3336 288 ) bricks/c_tn_m1 -86 0 123 1 1 0 0 0 +} +} +// entity 210 +{ +"classname" "func_group" +// brush 0 +{ +( -2285 3518 320 ) ( -2388 3624 288 ) ( -2404 3595 320 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2208 3518 320 ) ( -2264 3518 320 ) ( -2236 3624 320 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2372 3580 288 ) ( -2360 3600 288 ) ( -2366 3590 320 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2304 3564 296 ) ( -2316 3544 296 ) ( -2310 3554 320 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2372 3584 296 ) ( -2310 3544 296 ) ( -2341 3564 320 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +} +// brush 1 +{ +( -2285 3518 320 ) ( -2388 3624 288 ) ( -2404 3595 320 ) common/li_pv_v4a 33 -11 327 1 1 0 1 7000 +( -2388 3624 336 ) ( -2388 3624 288 ) ( -2285 3518 320 ) common/li_pv_v4a 13 -9 327 1 1 0 1 7000 +( -2208 3518 320 ) ( -2264 3518 320 ) ( -2236 3624 320 ) common/li_pv_v4a 33 -11 327 1 1 0 1 7000 +( -2372 3580 288 ) ( -2360 3600 288 ) ( -2366 3590 320 ) common/li_pv_v4a 13 -9 327 1 1 0 1 7000 +( -2304 3564 296 ) ( -2316 3544 296 ) ( -2310 3554 320 ) common/li_pv_v4a 13 -9 327 1 1 0 1 7000 +( -2310 3544 296 ) ( -2372 3584 296 ) ( -2341 3564 320 ) common/li_pv_v4a 0 -9 327 1 1 0 1 7000 +} +// brush 2 +{ +( -2285 3518 320 ) ( -2264 3544 288 ) ( -2388 3624 288 ) common/li_pv_v4a 33 -11 327 1 1 0 1 7000 +( -2285 3518 320 ) ( -2388 3624 288 ) ( -2388 3624 336 ) common/li_pv_v4a 13 -9 327 1 1 0 1 7000 +( -2208 3518 320 ) ( -2264 3518 320 ) ( -2236 3624 320 ) common/li_pv_v4a 33 -11 327 1 1 0 1 7000 +( -2372 3580 288 ) ( -2360 3600 288 ) ( -2366 3590 320 ) common/li_pv_v4a 13 -9 327 1 1 0 1 7000 +( -2304 3564 288 ) ( -2316 3544 288 ) ( -2310 3554 320 ) common/li_pv_v4a 13 -9 327 1 1 0 1 7000 +( -2364 3600 288 ) ( -2304 3560 288 ) ( -2334 3580 320 ) common/li_pv_v4a 0 -9 327 1 1 0 1 7000 +} +// brush 3 +{ +( -2285 3518 320 ) ( -2264 3544 288 ) ( -2388 3624 288 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2388 3624 288 ) ( -2264 3544 288 ) ( -2264 3544 336 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2208 3518 320 ) ( -2264 3518 320 ) ( -2236 3624 320 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2372 3580 288 ) ( -2360 3600 288 ) ( -2366 3590 320 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2304 3564 288 ) ( -2316 3544 288 ) ( -2310 3554 320 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2304 3560 288 ) ( -2364 3600 288 ) ( -2334 3580 320 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +} +// brush 4 +{ +( -2285 3518 320 ) ( -2264 3544 288 ) ( -2388 3624 288 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2264 3544 336 ) ( -2264 3544 288 ) ( -2285 3518 320 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2388 3624 288 ) ( -2264 3544 288 ) ( -2264 3544 336 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2285 3518 320 ) ( -2388 3624 288 ) ( -2388 3624 336 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2208 3518 320 ) ( -2264 3518 320 ) ( -2236 3624 320 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2316 3544 288 ) ( -2304 3564 288 ) ( -2310 3554 320 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +} +// brush 5 +{ +( -2285 3518 320 ) ( -2388 3624 288 ) ( -2404 3595 320 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2388 3624 336 ) ( -2388 3624 288 ) ( -2285 3518 320 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2208 3518 320 ) ( -2264 3518 320 ) ( -2236 3624 320 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2316 3544 296 ) ( -2304 3564 296 ) ( -2310 3554 320 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +} +// brush 6 +{ +( -2285 3518 320 ) ( -2388 3624 288 ) ( -2404 3595 320 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2404 3595 320 ) ( -2388 3624 288 ) ( -2388 3624 336 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2388 3624 336 ) ( -2388 3624 288 ) ( -2285 3518 320 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2208 3518 320 ) ( -2264 3518 320 ) ( -2236 3624 320 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2360 3600 288 ) ( -2372 3580 288 ) ( -2366 3590 320 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +} +// brush 7 +{ +( -2285 3518 320 ) ( -2264 3544 288 ) ( -2388 3624 288 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2388 3624 288 ) ( -2264 3544 288 ) ( -2264 3544 336 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2285 3518 320 ) ( -2388 3624 288 ) ( -2388 3624 336 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2208 3518 320 ) ( -2264 3518 320 ) ( -2236 3624 320 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +( -2360 3600 288 ) ( -2372 3580 288 ) ( -2366 3590 320 ) bricks/c_tn_m1 -36 -10 147 1 1 0 0 0 +} +} +// entity 211 +{ +"origin" "-2346 3560 294" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 212 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-2354 3548 256" +"noise" "world/fluorescent_hum.wav" +} +// entity 213 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-2136 3350 294" +} +// entity 214 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-2148 3342 256" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 215 +{ +"origin" "-2456 3240 296" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 216 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-2440 3256 258" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 217 +{ +"origin" "-2752 3688 294" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"classname" "light" +} +// entity 218 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-2752 3672 256" +"noise" "world/fluorescent_hum.wav" +} +// entity 219 +{ +"origin" "-1936 1272 488" +"light" "50" +"_color" "1.000000 0.000000 0.000000" +"classname" "light" +} +// entity 220 +{ +"origin" "-2008 672 550" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 221 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-2344 672 550" +} +// entity 222 +{ +"origin" "-2344 992 550" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 223 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-2024 672 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 224 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-2328 672 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 225 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-2328 992 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 226 +{ +"origin" "-2008 1312 550" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 227 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-2024 1312 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 228 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-1864 904 550" +} +// entity 229 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1876 916 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 230 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-2024 2912 258" +"noise" "world/fluorescent_hum.wav" +} +// entity 231 +{ +"origin" "-2008 2592 336" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 232 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-2024 2592 298" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 233 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-2008 2272 416" +} +// entity 234 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-2024 2272 378" +"noise" "world/fluorescent_hum.wav" +} +// entity 235 +{ +"origin" "-2008 1952 504" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 236 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-2024 1952 466" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 237 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-2008 1632 544" +} +// entity 238 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-2024 1632 506" +"noise" "world/fluorescent_hum.wav" +} +// entity 239 +{ +"origin" "-2344 2912 296" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 240 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-2328 2912 258" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 241 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-2344 2592 336" +} +// entity 242 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-2328 2592 298" +"noise" "world/fluorescent_hum.wav" +} +// entity 243 +{ +"origin" "-2344 2272 416" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 244 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-2328 2272 378" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 245 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-2344 1952 504" +} +// entity 246 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-2328 1952 466" +"noise" "world/fluorescent_hum.wav" +} +// entity 247 +{ +"origin" "-2344 1632 544" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 248 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-2328 1632 506" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 249 +{ +"classname" "func_group" +// brush 0 +{ +( -2404 -331 576 ) ( -2388 -360 544 ) ( -2285 -254 576 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2236 -360 576 ) ( -2264 -254 576 ) ( -2208 -254 576 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2366 -326 576 ) ( -2360 -336 544 ) ( -2372 -316 544 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2310 -290 576 ) ( -2316 -280 552 ) ( -2304 -300 552 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2341 -300 576 ) ( -2310 -280 552 ) ( -2372 -320 552 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +} +// brush 1 +{ +( -2404 -331 576 ) ( -2388 -360 544 ) ( -2285 -254 576 ) common/li_pv_v4a -15 -1 33 1 1 0 1 7000 +( -2285 -254 576 ) ( -2388 -360 544 ) ( -2388 -360 592 ) common/li_pv_v4a -15 -1 33 1 1 0 1 7000 +( -2236 -360 576 ) ( -2264 -254 576 ) ( -2208 -254 576 ) common/li_pv_v4a -15 -1 33 1 1 0 1 7000 +( -2366 -326 576 ) ( -2360 -336 544 ) ( -2372 -316 544 ) common/li_pv_v4a -15 -1 33 1 1 0 1 7000 +( -2310 -290 576 ) ( -2316 -280 552 ) ( -2304 -300 552 ) common/li_pv_v4a -15 -1 33 1 1 0 1 7000 +( -2341 -300 576 ) ( -2372 -320 552 ) ( -2310 -280 552 ) common/li_pv_v4a -15 -1 33 1 1 0 1 7000 +} +// brush 2 +{ +( -2388 -360 544 ) ( -2264 -280 544 ) ( -2285 -254 576 ) common/li_pv_v4a -15 -1 33 1 1 0 1 7000 +( -2388 -360 592 ) ( -2388 -360 544 ) ( -2285 -254 576 ) common/li_pv_v4a -15 -1 33 1 1 0 1 7000 +( -2236 -360 576 ) ( -2264 -254 576 ) ( -2208 -254 576 ) common/li_pv_v4a -15 -1 33 1 1 0 1 7000 +( -2366 -326 576 ) ( -2360 -336 544 ) ( -2372 -316 544 ) common/li_pv_v4a -15 -1 33 1 1 0 1 7000 +( -2310 -290 576 ) ( -2316 -280 544 ) ( -2304 -300 544 ) common/li_pv_v4a -15 -1 33 1 1 0 1 7000 +( -2334 -316 576 ) ( -2304 -296 544 ) ( -2364 -336 544 ) common/li_pv_v4a -15 -1 33 1 1 0 1 7000 +} +// brush 3 +{ +( -2388 -360 544 ) ( -2264 -280 544 ) ( -2285 -254 576 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2264 -280 592 ) ( -2264 -280 544 ) ( -2388 -360 544 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2236 -360 576 ) ( -2264 -254 576 ) ( -2208 -254 576 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2366 -326 576 ) ( -2360 -336 544 ) ( -2372 -316 544 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2310 -290 576 ) ( -2316 -280 544 ) ( -2304 -300 544 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2334 -316 576 ) ( -2364 -336 544 ) ( -2304 -296 544 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +} +// brush 4 +{ +( -2388 -360 544 ) ( -2264 -280 544 ) ( -2285 -254 576 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2285 -254 576 ) ( -2264 -280 544 ) ( -2264 -280 592 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2264 -280 592 ) ( -2264 -280 544 ) ( -2388 -360 544 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2388 -360 592 ) ( -2388 -360 544 ) ( -2285 -254 576 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2236 -360 576 ) ( -2264 -254 576 ) ( -2208 -254 576 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2310 -290 576 ) ( -2304 -300 544 ) ( -2316 -280 544 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +} +// brush 5 +{ +( -2404 -331 576 ) ( -2388 -360 544 ) ( -2285 -254 576 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2285 -254 576 ) ( -2388 -360 544 ) ( -2388 -360 592 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2236 -360 576 ) ( -2264 -254 576 ) ( -2208 -254 576 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2310 -290 576 ) ( -2304 -300 552 ) ( -2316 -280 552 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +} +// brush 6 +{ +( -2404 -331 576 ) ( -2388 -360 544 ) ( -2285 -254 576 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2388 -360 592 ) ( -2388 -360 544 ) ( -2404 -331 576 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2285 -254 576 ) ( -2388 -360 544 ) ( -2388 -360 592 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2236 -360 576 ) ( -2264 -254 576 ) ( -2208 -254 576 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2366 -326 576 ) ( -2372 -316 544 ) ( -2360 -336 544 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +} +// brush 7 +{ +( -2388 -360 544 ) ( -2264 -280 544 ) ( -2285 -254 576 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2264 -280 592 ) ( -2264 -280 544 ) ( -2388 -360 544 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2388 -360 592 ) ( -2388 -360 544 ) ( -2285 -254 576 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2236 -360 576 ) ( -2264 -254 576 ) ( -2208 -254 576 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +( -2366 -326 576 ) ( -2372 -316 544 ) ( -2360 -336 544 ) bricks/c_tn_m1 0 8 33 1 1 0 0 0 +} +} +// entity 250 +{ +"origin" "-2346 -296 550" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 251 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-2354 -284 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 252 +{ +"classname" "func_group" +// brush 0 +{ +( -2178 -147 576 ) ( -2072 -44 544 ) ( -2101 -28 576 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2178 -224 576 ) ( -2178 -168 576 ) ( -2072 -196 576 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2116 -60 544 ) ( -2096 -72 544 ) ( -2106 -66 576 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2132 -128 552 ) ( -2152 -116 552 ) ( -2142 -122 576 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2112 -60 552 ) ( -2152 -122 552 ) ( -2132 -91 576 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +} +// brush 1 +{ +( -2178 -147 576 ) ( -2072 -44 544 ) ( -2101 -28 576 ) common/li_pv_v4a -13 -6 57 1 1 0 0 0 +( -2072 -44 592 ) ( -2072 -44 544 ) ( -2178 -147 576 ) common/li_pv_v4a -13 -6 57 1 1 0 0 0 +( -2178 -224 576 ) ( -2178 -168 576 ) ( -2072 -196 576 ) common/li_pv_v4a -13 -6 57 1 1 0 0 0 +( -2116 -60 544 ) ( -2096 -72 544 ) ( -2106 -66 576 ) common/li_pv_v4a -13 -6 57 1 1 0 0 0 +( -2132 -128 552 ) ( -2152 -116 552 ) ( -2142 -122 576 ) common/li_pv_v4a -13 -6 57 1 1 0 0 0 +( -2152 -122 552 ) ( -2112 -60 552 ) ( -2132 -91 576 ) common/li_pv_v4a -13 -6 57 1 1 0 0 0 +} +// brush 2 +{ +( -2178 -147 576 ) ( -2152 -168 544 ) ( -2072 -44 544 ) common/li_pv_v4a -13 -6 57 1 1 0 0 0 +( -2178 -147 576 ) ( -2072 -44 544 ) ( -2072 -44 592 ) common/li_pv_v4a -13 -6 57 1 1 0 0 0 +( -2178 -224 576 ) ( -2178 -168 576 ) ( -2072 -196 576 ) common/li_pv_v4a -13 -6 57 1 1 0 0 0 +( -2116 -60 544 ) ( -2096 -72 544 ) ( -2106 -66 576 ) common/li_pv_v4a -13 -6 57 1 1 0 0 0 +( -2132 -128 544 ) ( -2152 -116 544 ) ( -2142 -122 576 ) common/li_pv_v4a -13 -6 57 1 1 0 0 0 +( -2096 -68 544 ) ( -2136 -128 544 ) ( -2116 -98 576 ) common/li_pv_v4a -13 -6 57 1 1 0 0 0 +} +// brush 3 +{ +( -2178 -147 576 ) ( -2152 -168 544 ) ( -2072 -44 544 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2072 -44 544 ) ( -2152 -168 544 ) ( -2152 -168 592 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2178 -224 576 ) ( -2178 -168 576 ) ( -2072 -196 576 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2116 -60 544 ) ( -2096 -72 544 ) ( -2106 -66 576 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2132 -128 544 ) ( -2152 -116 544 ) ( -2142 -122 576 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2136 -128 544 ) ( -2096 -68 544 ) ( -2116 -98 576 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +} +// brush 4 +{ +( -2178 -147 576 ) ( -2152 -168 544 ) ( -2072 -44 544 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2152 -168 592 ) ( -2152 -168 544 ) ( -2178 -147 576 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2072 -44 544 ) ( -2152 -168 544 ) ( -2152 -168 592 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2178 -147 576 ) ( -2072 -44 544 ) ( -2072 -44 592 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2178 -224 576 ) ( -2178 -168 576 ) ( -2072 -196 576 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2152 -116 544 ) ( -2132 -128 544 ) ( -2142 -122 576 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +} +// brush 5 +{ +( -2178 -147 576 ) ( -2072 -44 544 ) ( -2101 -28 576 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2072 -44 592 ) ( -2072 -44 544 ) ( -2178 -147 576 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2178 -224 576 ) ( -2178 -168 576 ) ( -2072 -196 576 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2152 -116 552 ) ( -2132 -128 552 ) ( -2142 -122 576 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +} +// brush 6 +{ +( -2178 -147 576 ) ( -2072 -44 544 ) ( -2101 -28 576 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2101 -28 576 ) ( -2072 -44 544 ) ( -2072 -44 592 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2072 -44 592 ) ( -2072 -44 544 ) ( -2178 -147 576 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2178 -224 576 ) ( -2178 -168 576 ) ( -2072 -196 576 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2096 -72 544 ) ( -2116 -60 544 ) ( -2106 -66 576 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +} +// brush 7 +{ +( -2178 -147 576 ) ( -2152 -168 544 ) ( -2072 -44 544 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2072 -44 544 ) ( -2152 -168 544 ) ( -2152 -168 592 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2178 -147 576 ) ( -2072 -44 544 ) ( -2072 -44 592 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2178 -224 576 ) ( -2178 -168 576 ) ( -2072 -196 576 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +( -2096 -72 544 ) ( -2116 -60 544 ) ( -2106 -66 576 ) bricks/c_tn_m1 0 -13 57 1 1 0 0 0 +} +} +// entity 253 +{ +"style" "10" +"origin" "-2456 24 552" +"light" "135" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 254 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-2448 16 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 255 +{ +"origin" "-2344 352 550" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 256 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-2328 352 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 257 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-2008 352 550" +} +// entity 258 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-2024 352 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 259 +{ +"classname" "func_wall" +// brush 0 +{ +( -3646 -365 576 ) ( -3672 -344 544 ) ( -3752 -468 544 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3672 -344 592 ) ( -3672 -344 544 ) ( -3646 -365 576 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3752 -468 544 ) ( -3672 -344 544 ) ( -3672 -344 592 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3646 -365 576 ) ( -3752 -468 544 ) ( -3752 -468 592 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3646 -288 576 ) ( -3646 -344 576 ) ( -3752 -316 576 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3672 -396 544 ) ( -3692 -384 544 ) ( -3682 -390 576 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +} +// brush 1 +{ +( -3646 -365 576 ) ( -3672 -344 544 ) ( -3752 -468 544 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3752 -468 544 ) ( -3672 -344 544 ) ( -3672 -344 592 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3646 -288 576 ) ( -3646 -344 576 ) ( -3752 -316 576 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3708 -452 544 ) ( -3728 -440 544 ) ( -3718 -446 576 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3692 -384 544 ) ( -3672 -396 544 ) ( -3682 -390 576 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3688 -384 544 ) ( -3728 -444 544 ) ( -3708 -414 576 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +} +// brush 2 +{ +( -3646 -365 576 ) ( -3752 -468 544 ) ( -3723 -484 576 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3752 -468 592 ) ( -3752 -468 544 ) ( -3646 -365 576 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3646 -288 576 ) ( -3646 -344 576 ) ( -3752 -316 576 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3672 -396 552 ) ( -3692 -384 552 ) ( -3682 -390 576 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +} +// brush 3 +{ +( -3646 -365 576 ) ( -3752 -468 544 ) ( -3723 -484 576 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3646 -288 576 ) ( -3646 -344 576 ) ( -3752 -316 576 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3708 -452 544 ) ( -3728 -440 544 ) ( -3718 -446 576 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3692 -384 552 ) ( -3672 -396 552 ) ( -3682 -390 576 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3712 -452 552 ) ( -3672 -390 552 ) ( -3692 -421 576 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +} +// brush 4 +{ +( -3646 -365 576 ) ( -3752 -468 544 ) ( -3723 -484 576 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3723 -484 576 ) ( -3752 -468 544 ) ( -3752 -468 592 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3752 -468 592 ) ( -3752 -468 544 ) ( -3646 -365 576 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3646 -288 576 ) ( -3646 -344 576 ) ( -3752 -316 576 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3728 -440 544 ) ( -3708 -452 544 ) ( -3718 -446 576 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +} +// brush 5 +{ +( -3646 -365 576 ) ( -3672 -344 544 ) ( -3752 -468 544 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3752 -468 544 ) ( -3672 -344 544 ) ( -3672 -344 592 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3646 -365 576 ) ( -3752 -468 544 ) ( -3752 -468 592 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3646 -288 576 ) ( -3646 -344 576 ) ( -3752 -316 576 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +( -3728 -440 544 ) ( -3708 -452 544 ) ( -3718 -446 576 ) bricks/c_tn_m1 56 21 237 1 1 0 0 0 +} +} +// entity 260 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-3478 -216 550" +} +// entity 261 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-3470 -228 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 262 +{ +"origin" "-3688 -426 550" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 263 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-3676 -434 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 264 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-3368 -536 552" +} +// entity 265 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-3384 -520 514" +"noise" "world/fluorescent_hum.wav" +} +// entity 266 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-3072 -104 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 267 +{ +"origin" "-2752 -88 552" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"classname" "light" +} +// entity 268 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-2752 -104 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 269 +{ +"origin" "-3072 -424 552" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"classname" "light" +} +// entity 270 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-3072 -408 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 271 +{ +"classname" "light" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"origin" "-2752 -424 552" +} +// entity 272 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-2752 -408 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 273 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-3478 -3752 550" +} +// entity 274 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-3470 -3740 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 275 +{ +"origin" "-3688 -3542 550" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 276 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-3676 -3534 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 277 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "135" +"origin" "-3368 -3432 552" +"style" "10" +} +// entity 278 +{ +"origin" "-3352 -3416 520" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +"style" "10" +} +// entity 279 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-3392 -3456 568" +"style" "10" +} +// entity 280 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-3376 -3440 512" +"noise" "world/fluorescent_broke.wav" +} +// entity 281 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-3800 -864 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 282 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-3816 -1184 544" +} +// entity 283 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-3800 -1184 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 284 +{ +"origin" "-3816 -1504 544" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 285 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-3800 -1504 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 286 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-3816 -1824 544" +} +// entity 287 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-3800 -1824 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 288 +{ +"origin" "-3816 -2144 544" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 289 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-3800 -2144 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 290 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-3816 -2464 544" +} +// entity 291 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-3800 -2464 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 292 +{ +"origin" "-3816 -2784 544" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 293 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-3800 -2784 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 294 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-3816 -3104 544" +} +// entity 295 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-3800 -3104 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 296 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 1.000000 1.000000" +"origin" "-3224 -1504 544" +} +// entity 297 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-3240 -1504 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 298 +{ +"origin" "-3224 -1824 544" +"_color" "1.000000 1.000000 1.000000" +"light" "100" +"classname" "light" +} +// entity 299 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-3240 -1824 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 300 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 1.000000 1.000000" +"origin" "-3224 -2144 544" +} +// entity 301 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-3240 -2144 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 302 +{ +"origin" "-3224 -2464 544" +"_color" "1.000000 1.000000 1.000000" +"light" "100" +"classname" "light" +} +// entity 303 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-3240 -2464 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 304 +{ +"classname" "func_wall" +// brush 0 +{ +( -3458 -1330 416 ) ( -3458 -1338 416 ) ( -3442 -1338 416 ) metals/mt_pv_m16bc -16 0 0 1 1 0 0 0 +( -3442 -1330 416 ) ( -3442 -1330 448 ) ( -3458 -1330 448 ) metals/mt_pv_m16bc -16 0 0 1 1 0 0 0 +( -3446 -1338 416 ) ( -3446 -1338 448 ) ( -3446 -1330 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3458 -1334 416 ) ( -3458 -1334 448 ) ( -3442 -1334 448 ) metals/mt_pv_m16bc -16 0 0 1 1 0 0 0 +( -3450 -1330 416 ) ( -3450 -1330 448 ) ( -3450 -1338 448 ) metals/mt_pv_m16bc 0 0 0 1 1 0 0 0 +( -3454 -1338 424 ) ( -3458 -1330 424 ) ( -3450 -1330 424 ) metals/mt_pv_m16bc -16 0 0 1 1 0 0 0 +} +} +// entity 305 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-682 -3752 550" +} +// entity 306 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-690 -3740 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 307 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "135" +"origin" "-792 -3432 552" +"style" "10" +} +// entity 308 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-784 -3440 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 309 +{ +"classname" "light" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"origin" "-1120 -3544 552" +} +// entity 310 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1120 -3560 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 311 +{ +"origin" "-1120 -3880 552" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"classname" "light" +} +// entity 312 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1120 -3864 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 313 +{ +"origin" "-1440 -3544 552" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"classname" "light" +} +// entity 314 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1440 -3560 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 315 +{ +"classname" "light" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"origin" "-1440 -3880 552" +} +// entity 316 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1440 -3864 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 317 +{ +"classname" "light" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"origin" "-2720 -3544 552" +} +// entity 318 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-2720 -3560 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 319 +{ +"origin" "-2720 -3880 552" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"classname" "light" +} +// entity 320 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-2720 -3864 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 321 +{ +"origin" "-3040 -3544 552" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"classname" "light" +} +// entity 322 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-3040 -3560 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 323 +{ +"classname" "light" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"origin" "-3040 -3880 552" +} +// entity 324 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-3040 -3864 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 325 +{ +"origin" "-2360 -3472 488" +"light" "50" +"_color" "1.000000 0.000000 0.000000" +"classname" "light" +} +// entity 326 +{ +"origin" "-1760 -3552 550" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 327 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-1760 -3872 550" +} +// entity 328 +{ +"origin" "-2080 -3872 550" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 329 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1760 -3568 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 330 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1760 -3856 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 331 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-2080 -3856 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 332 +{ +"origin" "-2400 -3552 550" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 333 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-2400 -3568 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 334 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-1992 -3400 550" +} +// entity 335 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-2004 -3412 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 336 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-2016 -1584 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 337 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-1776 -1856 552" +} +// entity 338 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1760 -1840 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 339 +{ +"origin" "-1536 -2096 552" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 340 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1520 -2080 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 341 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-1296 -2336 552" +} +// entity 342 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1280 -2320 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 343 +{ +"origin" "-1056 -2576 552" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 344 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1040 -2560 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 345 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-816 -2816 552" +} +// entity 346 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-800 -2800 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 347 +{ +"origin" "-592 -2592 552" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 348 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-608 -2608 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 349 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-832 -2352 552" +} +// entity 350 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-848 -2368 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 351 +{ +"origin" "-1072 -2112 552" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 352 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1088 -2128 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 353 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-1312 -1872 552" +} +// entity 354 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1328 -1888 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 355 +{ +"origin" "-1552 -1632 552" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 356 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1568 -1648 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 357 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-1808 -1376 552" +} +// entity 358 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1824 -1392 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 359 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-368 -2992 552" +} +// entity 360 +{ +"origin" "-408 -3416 552" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 361 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-680 -3136 552" +} +// entity 362 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-664 -3136 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 363 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-424 -3408 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 364 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-384 -2992 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 365 +{ +"origin" "-1944 -1056 552" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 366 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1960 -1056 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 367 +{ +"origin" "-2256 -1200 552" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 368 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-2240 -1200 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 369 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-2256 -912 552" +} +// entity 370 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-2240 -912 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 371 +{ +"origin" "-2032 -512 552" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 372 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-2016 -528 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 373 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-1808 -736 552" +} +// entity 374 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1824 -720 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 375 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-1800 -280 552" +} +// entity 376 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1784 -296 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 377 +{ +"origin" "-1568 -48 552" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 378 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1552 -64 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 379 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-1328 192 552" +} +// entity 380 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1312 176 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 381 +{ +"origin" "-1576 -504 552" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 382 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1592 -488 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 383 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-1344 -272 552" +} +// entity 384 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1360 -256 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 385 +{ +"origin" "-1104 -32 552" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 386 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1120 -16 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 387 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-920 232 552" +} +// entity 388 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-936 240 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 389 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-856 544 552" +} +// entity 390 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-872 544 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 391 +{ +"origin" "-1192 544 552" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 392 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1176 544 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 393 +{ +"origin" "-856 864 552" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 394 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-872 864 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 395 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-1192 864 552" +} +// entity 396 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1176 864 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 397 +{ +"origin" "-856 2144 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 398 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-872 2144 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 399 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-1192 2144 424" +} +// entity 400 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1176 2144 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 401 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-856 2464 424" +} +// entity 402 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-872 2464 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 403 +{ +"origin" "-1192 2464 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 404 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1176 2464 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 405 +{ +"origin" "-660 -108 168" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 406 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-656 -124 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 407 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-1240 -688 168" +} +// entity 408 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1224 -692 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 409 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-1032 -312 168" +} +// entity 410 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1016 -328 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 411 +{ +"origin" "-808 -536 168" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 412 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-824 -520 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 413 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-600 -424 168" +} +// entity 414 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-608 -408 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 415 +{ +"origin" "-920 -744 168" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 416 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-936 -736 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 417 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-1338 -792 294" +} +// entity 418 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1356 -792 256" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 419 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1504 -1936 168" +} +// entity 420 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1520 -1952 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 421 +{ +"origin" "1248 -2192 168" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 422 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1264 -2208 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 423 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1008 -2432 168" +} +// entity 424 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1024 -2448 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 425 +{ +"origin" "768 -2672 168" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 426 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "784 -2688 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 427 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "528 -2912 168" +} +// entity 428 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "544 -2928 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 429 +{ +"origin" "288 -3152 168" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 430 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "304 -3168 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 431 +{ +"origin" "752 -3136 168" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 432 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "736 -3120 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 433 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "992 -2896 168" +} +// entity 434 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "976 -2880 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 435 +{ +"origin" "1232 -2656 168" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 436 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1216 -2640 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 437 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1472 -2416 168" +} +// entity 438 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1456 -2400 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 439 +{ +"origin" "1728 -2160 168" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 440 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1712 -2144 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 441 +{ +"origin" "-32 -3288 168" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 442 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-32 -3304 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 443 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "2208 -3288 166" +} +// entity 444 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2208 -3304 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 445 +{ +"origin" "1888 -3288 142" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 446 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1888 -3304 104" +"noise" "world/fluorescent_hum.wav" +} +// entity 447 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "1568 -3288 70" +} +// entity 448 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1568 -3304 32" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 449 +{ +"origin" "1248 -3288 -18" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 450 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1248 -3304 -56" +"noise" "world/fluorescent_hum.wav" +} +// entity 451 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "928 -3288 -82" +} +// entity 452 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "928 -3304 -120" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 453 +{ +"origin" "2208 -3624 166" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 454 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2208 -3608 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 455 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "1888 -3624 142" +} +// entity 456 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1888 -3608 104" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 457 +{ +"origin" "1568 -3624 70" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 458 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1568 -3608 32" +"noise" "world/fluorescent_hum.wav" +} +// entity 459 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "1248 -3624 -18" +} +// entity 460 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1248 -3608 -56" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 461 +{ +"origin" "928 -3624 -82" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 462 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "928 -3608 -120" +"noise" "world/fluorescent_hum.wav" +} +// entity 463 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "608 -3624 -88" +} +// entity 464 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "608 -3608 -126" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 465 +{ +"origin" "288 -3624 -88" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 466 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "288 -3608 -126" +"noise" "world/fluorescent_hum.wav" +} +// entity 467 +{ +"origin" "608 -3288 -88" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 468 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "608 -3304 -126" +"noise" "world/fluorescent_hum.wav" +} +// entity 469 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "288 -3288 -88" +} +// entity 470 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "288 -3304 -126" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 471 +{ +"origin" "2208 -3288 422" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 472 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2208 -3304 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 473 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "1888 -3288 398" +} +// entity 474 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1888 -3304 360" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 475 +{ +"origin" "1568 -3288 326" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 476 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1568 -3304 288" +"noise" "world/fluorescent_hum.wav" +} +// entity 477 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "1248 -3288 238" +} +// entity 478 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1248 -3304 200" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 479 +{ +"origin" "928 -3288 174" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 480 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "928 -3304 136" +"noise" "world/fluorescent_hum.wav" +} +// entity 481 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "2208 -3624 422" +} +// entity 482 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2208 -3608 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 483 +{ +"origin" "1888 -3624 398" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 484 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1888 -3608 360" +"noise" "world/fluorescent_hum.wav" +} +// entity 485 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "1568 -3624 326" +} +// entity 486 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1568 -3608 288" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 487 +{ +"origin" "1248 -3624 238" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 488 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1248 -3608 200" +"noise" "world/fluorescent_hum.wav" +} +// entity 489 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "928 -3624 174" +} +// entity 490 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "928 -3608 136" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 491 +{ +"origin" "608 -3624 168" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 492 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "608 -3608 130" +"noise" "world/fluorescent_hum.wav" +} +// entity 493 +{ +"origin" "1760 -1752 168" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 494 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2144 -1688 168" +} +// entity 495 +{ +"origin" "2144 -2024 168" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 496 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1888 -2048 168" +} +// entity 497 +{ +"origin" "2528 -1752 168" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 498 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2760 -1912 168" +} +// entity 499 +{ +"origin" "2920 -2144 168" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 500 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2624 -2272 168" +} +// entity 501 +{ +"origin" "2400 -2048 168" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 502 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1880 -2032 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 503 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1768 -1768 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 504 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2144 -1704 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 505 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2144 -2008 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 506 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2408 -2032 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 507 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2520 -1768 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 508 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2744 -1928 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 509 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2904 -2152 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 510 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2640 -2264 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 511 +{ +"origin" "2648 -2496 168" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 512 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2664 -2496 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 513 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2984 -2496 168" +} +// entity 514 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2968 -2496 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 515 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2648 -2816 168" +} +// entity 516 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2664 -2816 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 517 +{ +"origin" "2984 -2816 168" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 518 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2968 -2816 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 519 +{ +"origin" "2616 -3040 168" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 520 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2632 -3048 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 521 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2920 -3168 168" +} +// entity 522 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2904 -3160 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 523 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2400 -3256 168" +} +// entity 524 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2408 -3272 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 525 +{ +"origin" "2760 -3400 168" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 526 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2744 -3384 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 527 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2528 -3560 168" +} +// entity 528 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2520 -3544 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 529 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2616 -3040 424" +} +// entity 530 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2632 -3048 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 531 +{ +"origin" "2920 -3168 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 532 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2904 -3160 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 533 +{ +"origin" "2400 -3256 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 534 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2408 -3272 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 535 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2760 -3400 424" +} +// entity 536 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2744 -3384 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 537 +{ +"origin" "2528 -3560 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 538 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2520 -3544 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 539 +{ +"origin" "2648 -2816 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 540 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2664 -2816 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 541 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2984 -2816 424" +} +// entity 542 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2968 -2816 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 543 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2648 -2496 424" +} +// entity 544 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2664 -2496 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 545 +{ +"origin" "2984 -2496 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 546 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2968 -2496 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 547 +{ +"origin" "2648 -2176 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 548 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2664 -2176 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 549 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2984 -2176 424" +} +// entity 550 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2968 -2176 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 551 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2648 -1856 424" +} +// entity 552 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2664 -1856 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 553 +{ +"origin" "2984 -1856 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 554 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2968 -1856 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 555 +{ +"origin" "2648 -1536 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 556 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2664 -1536 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 557 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2984 -1536 424" +} +// entity 558 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2968 -1536 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 559 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2648 -1216 424" +} +// entity 560 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2664 -1216 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 561 +{ +"origin" "2984 -1216 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 562 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2968 -1216 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 563 +{ +"origin" "2648 -896 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 564 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2664 -896 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 565 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2984 -896 424" +} +// entity 566 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2968 -896 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 567 +{ +"classname" "func_group" +// brush 0 +{ +( -481 542 448 ) ( -512 552 416 ) ( -544 396 416 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -544 396 416 ) ( -512 552 416 ) ( -512 552 464 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -292 552 448 ) ( -264 396 448 ) ( -320 396 448 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -505 499 448 ) ( -518 502 416 ) ( -492 496 416 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -520 437 448 ) ( -506 434 416 ) ( -534 440 416 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -521 469 448 ) ( -514 502 416 ) ( -528 436 416 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +} +// brush 1 +{ +( -481 542 448 ) ( -512 552 416 ) ( -544 396 416 ) common/li_pv_v4a 0 1 258 1 1 0 1 7000 +( -481 542 448 ) ( -544 396 416 ) ( -544 396 464 ) common/li_pv_v4a 0 1 258 1 1 0 1 7000 +( -292 552 448 ) ( -264 396 448 ) ( -320 396 448 ) common/li_pv_v4a 0 1 258 1 1 0 1 7000 +( -505 499 448 ) ( -518 502 416 ) ( -492 496 416 ) common/li_pv_v4a 0 1 258 1 1 0 1 7000 +( -520 437 448 ) ( -506 434 416 ) ( -534 440 416 ) common/li_pv_v4a 0 1 258 1 1 0 1 7000 +( -521 469 448 ) ( -528 436 416 ) ( -514 502 416 ) common/li_pv_v4a 0 1 258 1 1 0 1 7000 +} +// brush 2 +{ +( -481 542 448 ) ( -544 396 416 ) ( -512 393 448 ) common/li_pv_v4a 0 1 258 1 1 0 1 7000 +( -544 396 464 ) ( -544 396 416 ) ( -481 542 448 ) common/li_pv_v4a 0 1 258 1 1 0 1 7000 +( -292 542 448 ) ( -264 393 448 ) ( -320 393 448 ) common/li_pv_v4a 0 1 258 1 1 0 1 7000 +( -505 499 448 ) ( -518 502 416 ) ( -492 496 416 ) common/li_pv_v4a 0 1 258 1 1 0 1 7000 +( -520 437 448 ) ( -506 434 416 ) ( -534 440 416 ) common/li_pv_v4a 0 1 258 1 1 0 1 7000 +( -506 463 448 ) ( -498 500 425 ) ( -514 426 425 ) common/li_pv_v4a 0 1 258 1 1 0 1 7000 +} +// brush 3 +{ +( -481 542 448 ) ( -544 396 416 ) ( -512 393 448 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -292 542 448 ) ( -264 393 448 ) ( -320 393 448 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -505 499 448 ) ( -518 502 416 ) ( -492 496 416 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -520 437 448 ) ( -506 434 416 ) ( -534 440 416 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -506 463 448 ) ( -514 426 425 ) ( -498 500 425 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +} +// brush 4 +{ +( -481 542 448 ) ( -512 552 416 ) ( -544 396 416 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -512 552 464 ) ( -512 552 416 ) ( -481 542 448 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -544 396 416 ) ( -512 552 416 ) ( -512 552 464 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -481 542 448 ) ( -544 396 416 ) ( -544 396 464 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -292 552 448 ) ( -264 396 448 ) ( -320 396 448 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -505 499 448 ) ( -492 496 416 ) ( -518 502 416 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +} +// brush 5 +{ +( -481 542 448 ) ( -544 396 416 ) ( -512 393 448 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -512 393 448 ) ( -544 396 416 ) ( -544 396 464 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -544 396 464 ) ( -544 396 416 ) ( -481 542 448 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -292 542 448 ) ( -264 393 448 ) ( -320 393 448 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -520 437 448 ) ( -534 440 416 ) ( -506 434 416 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +} +// brush 6 +{ +( -481 542 448 ) ( -512 552 416 ) ( -544 396 416 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -544 396 416 ) ( -512 552 416 ) ( -512 552 464 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -481 542 448 ) ( -544 396 416 ) ( -544 396 464 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -292 552 448 ) ( -264 396 448 ) ( -320 396 448 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -520 437 448 ) ( -534 440 416 ) ( -506 434 416 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +} +// brush 7 +{ +( -481 542 448 ) ( -544 396 416 ) ( -512 393 448 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -544 396 464 ) ( -544 396 416 ) ( -481 542 448 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -292 542 448 ) ( -264 393 448 ) ( -320 393 448 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +( -505 499 448 ) ( -492 496 416 ) ( -518 502 416 ) bricks/c_tn_m1 0 -7 258 1 1 0 0 0 +} +} +// entity 568 +{ +"classname" "func_group" +// brush 0 +{ +( -243 -254 448 ) ( -140 -360 416 ) ( -124 -331 448 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -320 -254 448 ) ( -264 -254 448 ) ( -292 -360 448 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -156 -316 416 ) ( -168 -336 416 ) ( -162 -326 448 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -224 -300 424 ) ( -212 -280 424 ) ( -218 -290 448 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -156 -320 424 ) ( -218 -280 424 ) ( -187 -300 448 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +} +// brush 1 +{ +( -243 -254 448 ) ( -140 -360 416 ) ( -124 -331 448 ) common/li_pv_v4a 24 -2 327 1 1 0 1 7000 +( -140 -360 464 ) ( -140 -360 416 ) ( -243 -254 448 ) common/li_pv_v4a 24 -2 327 1 1 0 1 7000 +( -320 -254 448 ) ( -264 -254 448 ) ( -292 -360 448 ) common/li_pv_v4a 24 -2 327 1 1 0 1 7000 +( -156 -316 416 ) ( -168 -336 416 ) ( -162 -326 448 ) common/li_pv_v4a 24 -2 327 1 1 0 1 7000 +( -224 -300 424 ) ( -212 -280 424 ) ( -218 -290 448 ) common/li_pv_v4a 24 -2 327 1 1 0 1 7000 +( -218 -280 424 ) ( -156 -320 424 ) ( -187 -300 448 ) common/li_pv_v4a 24 -2 327 1 1 0 1 7000 +} +// brush 2 +{ +( -243 -254 448 ) ( -264 -280 416 ) ( -140 -360 416 ) common/li_pv_v4a 24 -2 327 1 1 0 1 7000 +( -243 -254 448 ) ( -140 -360 416 ) ( -140 -360 464 ) common/li_pv_v4a 24 -2 327 1 1 0 1 7000 +( -320 -254 448 ) ( -264 -254 448 ) ( -292 -360 448 ) common/li_pv_v4a 24 -2 327 1 1 0 1 7000 +( -156 -316 416 ) ( -168 -336 416 ) ( -162 -326 448 ) common/li_pv_v4a 24 -2 327 1 1 0 1 7000 +( -224 -300 416 ) ( -212 -280 416 ) ( -218 -290 448 ) common/li_pv_v4a 24 -2 327 1 1 0 1 7000 +( -164 -336 416 ) ( -224 -296 416 ) ( -194 -316 448 ) common/li_pv_v4a 24 -2 327 1 1 0 1 7000 +} +// brush 3 +{ +( -243 -254 448 ) ( -264 -280 416 ) ( -140 -360 416 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -140 -360 416 ) ( -264 -280 416 ) ( -264 -280 464 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -320 -254 448 ) ( -264 -254 448 ) ( -292 -360 448 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -156 -316 416 ) ( -168 -336 416 ) ( -162 -326 448 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -224 -300 416 ) ( -212 -280 416 ) ( -218 -290 448 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -224 -296 416 ) ( -164 -336 416 ) ( -194 -316 448 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +} +// brush 4 +{ +( -243 -254 448 ) ( -264 -280 416 ) ( -140 -360 416 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -264 -280 464 ) ( -264 -280 416 ) ( -243 -254 448 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -140 -360 416 ) ( -264 -280 416 ) ( -264 -280 464 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -243 -254 448 ) ( -140 -360 416 ) ( -140 -360 464 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -320 -254 448 ) ( -264 -254 448 ) ( -292 -360 448 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -212 -280 416 ) ( -224 -300 416 ) ( -218 -290 448 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +} +// brush 5 +{ +( -243 -254 448 ) ( -140 -360 416 ) ( -124 -331 448 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -140 -360 464 ) ( -140 -360 416 ) ( -243 -254 448 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -320 -254 448 ) ( -264 -254 448 ) ( -292 -360 448 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -212 -280 424 ) ( -224 -300 424 ) ( -218 -290 448 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +} +// brush 6 +{ +( -243 -254 448 ) ( -140 -360 416 ) ( -124 -331 448 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -124 -331 448 ) ( -140 -360 416 ) ( -140 -360 464 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -140 -360 464 ) ( -140 -360 416 ) ( -243 -254 448 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -320 -254 448 ) ( -264 -254 448 ) ( -292 -360 448 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -168 -336 416 ) ( -156 -316 416 ) ( -162 -326 448 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +} +// brush 7 +{ +( -243 -254 448 ) ( -264 -280 416 ) ( -140 -360 416 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -140 -360 416 ) ( -264 -280 416 ) ( -264 -280 464 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -243 -254 448 ) ( -140 -360 416 ) ( -140 -360 464 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -320 -254 448 ) ( -264 -254 448 ) ( -292 -360 448 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +( -168 -336 416 ) ( -156 -316 416 ) ( -162 -326 448 ) bricks/c_tn_m1 0 7 327 1 1 0 0 0 +} +} +// entity 569 +{ +"origin" "-182 -296 422" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 570 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-174 -284 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 571 +{ +"style" "10" +"origin" "-72 24 424" +"light" "135" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 572 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-80 16 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 573 +{ +"origin" "-496 464 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 574 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-456 40 424" +} +// entity 575 +{ +"origin" "-184 320 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 576 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-200 320 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 577 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-440 48 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 578 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-480 464 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 579 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2176 -424 424" +} +// entity 580 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2176 -408 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 581 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2176 -104 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 582 +{ +"origin" "2176 -88 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 583 +{ +"origin" "1856 -424 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 584 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1856 -408 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 585 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1856 -104 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 586 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1856 -88 424" +} +// entity 587 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1536 -424 424" +} +// entity 588 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1536 -408 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 589 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1536 -104 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 590 +{ +"origin" "1536 -88 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 591 +{ +"origin" "1216 -424 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 592 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1216 -408 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 593 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1216 -104 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 594 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1216 -88 424" +} +// entity 595 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "896 -424 424" +} +// entity 596 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "896 -408 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 597 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "896 -104 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 598 +{ +"origin" "896 -88 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 599 +{ +"origin" "576 -424 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 600 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "576 -408 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 601 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "576 -104 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 602 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "576 -88 424" +} +// entity 603 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "256 -424 424" +} +// entity 604 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "256 -408 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 605 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "256 -104 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 606 +{ +"origin" "256 -88 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 607 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-272 864 424" +} +// entity 608 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-256 848 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 609 +{ +"origin" "-48 640 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 610 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-64 656 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 611 +{ +"classname" "func_group" +// brush 0 +{ +( 1529 2258 448 ) ( 1560 2248 416 ) ( 1592 2404 416 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1592 2404 416 ) ( 1560 2248 416 ) ( 1560 2248 464 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1340 2248 448 ) ( 1312 2404 448 ) ( 1368 2404 448 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1553 2301 448 ) ( 1566 2298 416 ) ( 1540 2304 416 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1568 2363 448 ) ( 1554 2366 416 ) ( 1582 2360 416 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1569 2331 448 ) ( 1562 2298 416 ) ( 1576 2364 416 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +} +// brush 1 +{ +( 1529 2258 448 ) ( 1560 2248 416 ) ( 1592 2404 416 ) common/li_pv_v4a 21 -1 78 1 1 0 1 7000 +( 1529 2258 448 ) ( 1592 2404 416 ) ( 1592 2404 464 ) common/li_pv_v4a 21 -1 78 1 1 0 1 7000 +( 1340 2248 448 ) ( 1312 2404 448 ) ( 1368 2404 448 ) common/li_pv_v4a 21 -1 78 1 1 0 1 7000 +( 1553 2301 448 ) ( 1566 2298 416 ) ( 1540 2304 416 ) common/li_pv_v4a 21 -1 78 1 1 0 1 7000 +( 1568 2363 448 ) ( 1554 2366 416 ) ( 1582 2360 416 ) common/li_pv_v4a 21 -1 78 1 1 0 1 7000 +( 1569 2331 448 ) ( 1576 2364 416 ) ( 1562 2298 416 ) common/li_pv_v4a 21 -1 78 1 1 0 1 7000 +} +// brush 2 +{ +( 1529 2258 448 ) ( 1592 2404 416 ) ( 1560 2407 448 ) common/li_pv_v4a 21 -1 78 1 1 0 1 7000 +( 1592 2404 464 ) ( 1592 2404 416 ) ( 1529 2258 448 ) common/li_pv_v4a 21 -1 78 1 1 0 1 7000 +( 1340 2258 448 ) ( 1312 2407 448 ) ( 1368 2407 448 ) common/li_pv_v4a 21 -1 78 1 1 0 1 7000 +( 1553 2301 448 ) ( 1566 2298 416 ) ( 1540 2304 416 ) common/li_pv_v4a 21 -1 78 1 1 0 1 7000 +( 1568 2363 448 ) ( 1554 2366 416 ) ( 1582 2360 416 ) common/li_pv_v4a 21 -1 78 1 1 0 1 7000 +( 1554 2337 448 ) ( 1546 2300 425 ) ( 1562 2374 425 ) common/li_pv_v4a 21 -1 78 1 1 0 1 7000 +} +// brush 3 +{ +( 1529 2258 448 ) ( 1592 2404 416 ) ( 1560 2407 448 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1340 2258 448 ) ( 1312 2407 448 ) ( 1368 2407 448 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1553 2301 448 ) ( 1566 2298 416 ) ( 1540 2304 416 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1568 2363 448 ) ( 1554 2366 416 ) ( 1582 2360 416 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1554 2337 448 ) ( 1562 2374 425 ) ( 1546 2300 425 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +} +// brush 4 +{ +( 1529 2258 448 ) ( 1560 2248 416 ) ( 1592 2404 416 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1560 2248 464 ) ( 1560 2248 416 ) ( 1529 2258 448 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1592 2404 416 ) ( 1560 2248 416 ) ( 1560 2248 464 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1529 2258 448 ) ( 1592 2404 416 ) ( 1592 2404 464 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1340 2248 448 ) ( 1312 2404 448 ) ( 1368 2404 448 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1553 2301 448 ) ( 1540 2304 416 ) ( 1566 2298 416 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +} +// brush 5 +{ +( 1529 2258 448 ) ( 1592 2404 416 ) ( 1560 2407 448 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1560 2407 448 ) ( 1592 2404 416 ) ( 1592 2404 464 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1592 2404 464 ) ( 1592 2404 416 ) ( 1529 2258 448 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1340 2258 448 ) ( 1312 2407 448 ) ( 1368 2407 448 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1568 2363 448 ) ( 1582 2360 416 ) ( 1554 2366 416 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +} +// brush 6 +{ +( 1529 2258 448 ) ( 1560 2248 416 ) ( 1592 2404 416 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1592 2404 416 ) ( 1560 2248 416 ) ( 1560 2248 464 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1529 2258 448 ) ( 1592 2404 416 ) ( 1592 2404 464 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1340 2248 448 ) ( 1312 2404 448 ) ( 1368 2404 448 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1568 2363 448 ) ( 1582 2360 416 ) ( 1554 2366 416 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +} +// brush 7 +{ +( 1529 2258 448 ) ( 1592 2404 416 ) ( 1560 2407 448 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1592 2404 464 ) ( 1592 2404 416 ) ( 1529 2258 448 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1340 2258 448 ) ( 1312 2407 448 ) ( 1368 2407 448 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +( 1553 2301 448 ) ( 1540 2304 416 ) ( 1566 2298 416 ) bricks/c_tn_m1 0 7 78 1 1 0 0 0 +} +} +// entity 612 +{ +"classname" "func_group" +// brush 0 +{ +( 988 2769 448 ) ( 1016 2696 416 ) ( 1041 2716 448 ) common/li_pv_v4a -10 -7 135 1.100000 1 0 1 7000 +( 1041 2716 448 ) ( 1016 2696 416 ) ( 1016 2696 464 ) common/li_pv_v4a 6 4 135 1.100000 1 0 1 7000 +( 1016 2696 464 ) ( 1016 2696 416 ) ( 988 2769 448 ) common/li_pv_v4a 25 0 135 1.100000 1 0 1 7000 +( 988 2584 448 ) ( 988 2608 448 ) ( 1041 2596 448 ) common/li_pv_v4a -10 -7 135 1.100000 1 0 1 7000 +( 984 2764 416 ) ( 1036 2712 416 ) ( 1010 2738 448 ) common/li_pv_v4a 25 0 135 1.100000 1 0 1 7000 +( 1020 2702 416 ) ( 974 2748 416 ) ( 997 2725 448 ) common/li_pv_v4a 25 0 135 1.100000 1 0 1 7000 +} +// brush 1 +{ +( 968 2744 416 ) ( 1016 2696 416 ) ( 988 2769 448 ) common/li_pv_v4a -10 -7 135 1.100000 1 0 1 7000 +( 968 2744 464 ) ( 968 2744 416 ) ( 988 2769 448 ) common/li_pv_v4a 25 0 135 1.100000 1 0 1 7000 +( 988 2769 448 ) ( 1016 2696 416 ) ( 1016 2696 464 ) common/li_pv_v4a 25 0 135 1.100000 1 0 1 7000 +( 968 2584 448 ) ( 968 2608 448 ) ( 1016 2596 448 ) common/li_pv_v4a -10 -7 135 1.100000 1 0 1 7000 +( 984 2764 416 ) ( 1036 2712 416 ) ( 1010 2738 448 ) common/li_pv_v4a 25 0 135 1.100000 1 0 1 7000 +( 1020 2702 416 ) ( 974 2748 416 ) ( 997 2725 448 ) common/li_pv_v4a 25 0 135 1.100000 1 0 1 7000 +} +// brush 2 +{ +( 988 2769 448 ) ( 1016 2696 416 ) ( 1041 2716 448 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +( 1041 2716 448 ) ( 1016 2696 416 ) ( 1016 2696 464 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +( 1016 2696 464 ) ( 1016 2696 416 ) ( 988 2769 448 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +( 988 2584 448 ) ( 988 2608 448 ) ( 1041 2596 448 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +( 1036 2712 416 ) ( 984 2764 416 ) ( 1010 2738 448 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +} +// brush 3 +{ +( 968 2744 416 ) ( 1016 2696 416 ) ( 988 2769 448 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +( 968 2744 464 ) ( 968 2744 416 ) ( 988 2769 448 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +( 988 2769 448 ) ( 1016 2696 416 ) ( 1016 2696 464 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +( 968 2584 448 ) ( 968 2608 448 ) ( 1016 2596 448 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +( 1036 2712 416 ) ( 984 2764 416 ) ( 1010 2738 448 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +} +// brush 4 +{ +( 968 2744 416 ) ( 1016 2696 416 ) ( 988 2769 448 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +( 1016 2696 464 ) ( 1016 2696 416 ) ( 968 2744 416 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +( 968 2744 464 ) ( 968 2744 416 ) ( 988 2769 448 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +( 988 2769 448 ) ( 1016 2696 416 ) ( 1016 2696 464 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +( 968 2584 448 ) ( 968 2608 448 ) ( 1016 2596 448 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +( 974 2748 416 ) ( 1020 2702 416 ) ( 997 2725 448 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +} +// brush 5 +{ +( 988 2769 448 ) ( 1016 2696 416 ) ( 1041 2716 448 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +( 1041 2716 448 ) ( 1016 2696 416 ) ( 1016 2696 464 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +( 1016 2696 464 ) ( 1016 2696 416 ) ( 988 2769 448 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +( 988 2584 448 ) ( 988 2608 448 ) ( 1041 2596 448 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +( 974 2748 416 ) ( 1020 2702 416 ) ( 997 2725 448 ) bricks/c_tn_m1 0 15 315 1 1 0 0 0 +} +} +// entity 613 +{ +"classname" "func_group" +// brush 0 +{ +( 1235 3070 448 ) ( 1132 3176 416 ) ( 1116 3147 448 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1312 3070 448 ) ( 1256 3070 448 ) ( 1284 3176 448 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1148 3132 416 ) ( 1160 3152 416 ) ( 1154 3142 448 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1216 3116 424 ) ( 1204 3096 424 ) ( 1210 3106 448 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1148 3136 424 ) ( 1210 3096 424 ) ( 1179 3116 448 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +} +// brush 1 +{ +( 1235 3070 448 ) ( 1132 3176 416 ) ( 1116 3147 448 ) common/li_pv_v4a 28 7 147 1 1 0 1 7000 +( 1132 3176 464 ) ( 1132 3176 416 ) ( 1235 3070 448 ) common/li_pv_v4a 28 7 147 1 1 0 1 7000 +( 1312 3070 448 ) ( 1256 3070 448 ) ( 1284 3176 448 ) common/li_pv_v4a 28 7 147 1 1 0 1 7000 +( 1148 3132 416 ) ( 1160 3152 416 ) ( 1154 3142 448 ) common/li_pv_v4a 28 7 147 1 1 0 1 7000 +( 1216 3116 424 ) ( 1204 3096 424 ) ( 1210 3106 448 ) common/li_pv_v4a 28 7 147 1 1 0 1 7000 +( 1210 3096 424 ) ( 1148 3136 424 ) ( 1179 3116 448 ) common/li_pv_v4a 28 7 147 1 1 0 1 7000 +} +// brush 2 +{ +( 1235 3070 448 ) ( 1256 3096 416 ) ( 1132 3176 416 ) common/li_pv_v4a 28 7 147 1 1 0 1 7000 +( 1235 3070 448 ) ( 1132 3176 416 ) ( 1132 3176 464 ) common/li_pv_v4a 28 7 147 1 1 0 1 7000 +( 1312 3070 448 ) ( 1256 3070 448 ) ( 1284 3176 448 ) common/li_pv_v4a 28 7 147 1 1 0 1 7000 +( 1148 3132 416 ) ( 1160 3152 416 ) ( 1154 3142 448 ) common/li_pv_v4a 28 7 147 1 1 0 1 7000 +( 1216 3116 416 ) ( 1204 3096 416 ) ( 1210 3106 448 ) common/li_pv_v4a 28 7 147 1 1 0 1 7000 +( 1156 3152 416 ) ( 1216 3112 416 ) ( 1186 3132 448 ) common/li_pv_v4a 28 7 147 1 1 0 1 7000 +} +// brush 3 +{ +( 1235 3070 448 ) ( 1256 3096 416 ) ( 1132 3176 416 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1132 3176 416 ) ( 1256 3096 416 ) ( 1256 3096 464 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1312 3070 448 ) ( 1256 3070 448 ) ( 1284 3176 448 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1148 3132 416 ) ( 1160 3152 416 ) ( 1154 3142 448 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1216 3116 416 ) ( 1204 3096 416 ) ( 1210 3106 448 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1216 3112 416 ) ( 1156 3152 416 ) ( 1186 3132 448 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +} +// brush 4 +{ +( 1235 3070 448 ) ( 1256 3096 416 ) ( 1132 3176 416 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1256 3096 464 ) ( 1256 3096 416 ) ( 1235 3070 448 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1132 3176 416 ) ( 1256 3096 416 ) ( 1256 3096 464 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1235 3070 448 ) ( 1132 3176 416 ) ( 1132 3176 464 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1312 3070 448 ) ( 1256 3070 448 ) ( 1284 3176 448 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1204 3096 416 ) ( 1216 3116 416 ) ( 1210 3106 448 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +} +// brush 5 +{ +( 1235 3070 448 ) ( 1132 3176 416 ) ( 1116 3147 448 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1132 3176 464 ) ( 1132 3176 416 ) ( 1235 3070 448 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1312 3070 448 ) ( 1256 3070 448 ) ( 1284 3176 448 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1204 3096 424 ) ( 1216 3116 424 ) ( 1210 3106 448 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +} +// brush 6 +{ +( 1235 3070 448 ) ( 1132 3176 416 ) ( 1116 3147 448 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1116 3147 448 ) ( 1132 3176 416 ) ( 1132 3176 464 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1132 3176 464 ) ( 1132 3176 416 ) ( 1235 3070 448 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1312 3070 448 ) ( 1256 3070 448 ) ( 1284 3176 448 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1160 3152 416 ) ( 1148 3132 416 ) ( 1154 3142 448 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +} +// brush 7 +{ +( 1235 3070 448 ) ( 1256 3096 416 ) ( 1132 3176 416 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1132 3176 416 ) ( 1256 3096 416 ) ( 1256 3096 464 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1235 3070 448 ) ( 1132 3176 416 ) ( 1132 3176 464 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1312 3070 448 ) ( 1256 3070 448 ) ( 1284 3176 448 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +( 1160 3152 416 ) ( 1148 3132 416 ) ( 1154 3142 448 ) bricks/c_tn_m1 -41 -15 147 1 1 0 0 0 +} +} +// entity 614 +{ +"classname" "func_wall" +// brush 0 +{ +( -1022 2963 448 ) ( -1048 2984 416 ) ( -1128 2860 416 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1048 2984 464 ) ( -1048 2984 416 ) ( -1022 2963 448 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1128 2860 416 ) ( -1048 2984 416 ) ( -1048 2984 464 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1022 2963 448 ) ( -1128 2860 416 ) ( -1128 2860 464 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1022 3040 448 ) ( -1022 2984 448 ) ( -1128 3012 448 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1048 2932 416 ) ( -1068 2944 416 ) ( -1058 2938 448 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +} +// brush 1 +{ +( -1022 2963 448 ) ( -1048 2984 416 ) ( -1128 2860 416 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1128 2860 416 ) ( -1048 2984 416 ) ( -1048 2984 464 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1022 3040 448 ) ( -1022 2984 448 ) ( -1128 3012 448 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1084 2876 416 ) ( -1104 2888 416 ) ( -1094 2882 448 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1068 2944 416 ) ( -1048 2932 416 ) ( -1058 2938 448 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1064 2944 416 ) ( -1104 2884 416 ) ( -1084 2914 448 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +} +// brush 2 +{ +( -1022 2963 448 ) ( -1128 2860 416 ) ( -1099 2844 448 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1128 2860 464 ) ( -1128 2860 416 ) ( -1022 2963 448 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1022 3040 448 ) ( -1022 2984 448 ) ( -1128 3012 448 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1048 2932 424 ) ( -1068 2944 424 ) ( -1058 2938 448 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +} +// brush 3 +{ +( -1022 2963 448 ) ( -1128 2860 416 ) ( -1099 2844 448 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1022 3040 448 ) ( -1022 2984 448 ) ( -1128 3012 448 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1084 2876 416 ) ( -1104 2888 416 ) ( -1094 2882 448 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1068 2944 424 ) ( -1048 2932 424 ) ( -1058 2938 448 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1088 2876 424 ) ( -1048 2938 424 ) ( -1068 2907 448 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +} +// brush 4 +{ +( -1022 2963 448 ) ( -1128 2860 416 ) ( -1099 2844 448 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1099 2844 448 ) ( -1128 2860 416 ) ( -1128 2860 464 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1128 2860 464 ) ( -1128 2860 416 ) ( -1022 2963 448 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1022 3040 448 ) ( -1022 2984 448 ) ( -1128 3012 448 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1104 2888 416 ) ( -1084 2876 416 ) ( -1094 2882 448 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +} +// brush 5 +{ +( -1022 2963 448 ) ( -1048 2984 416 ) ( -1128 2860 416 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1128 2860 416 ) ( -1048 2984 416 ) ( -1048 2984 464 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1022 2963 448 ) ( -1128 2860 416 ) ( -1128 2860 464 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1022 3040 448 ) ( -1022 2984 448 ) ( -1128 3012 448 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +( -1104 2888 416 ) ( -1084 2876 416 ) ( -1094 2882 448 ) bricks/c_tn_m1 -52 -7 237 1 1 0 0 0 +} +} +// entity 615 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-854 3112 422" +} +// entity 616 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-846 3100 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 617 +{ +"origin" "-1064 2902 422" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 618 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1052 2894 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 619 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-744 2792 424" +} +// entity 620 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-760 2808 386" +"noise" "world/fluorescent_hum.wav" +} +// entity 621 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-858 1184 550" +} +// entity 622 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-876 1184 512" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 623 +{ +"origin" "-858 1824 438" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 624 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-858 1504 510" +} +// entity 625 +{ +"origin" "-1190 1184 550" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 626 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1172 1184 512" +"noise" "world/fluorescent_hum.wav" +} +// entity 627 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-1190 1824 438" +} +// entity 628 +{ +"origin" "-1190 1504 510" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 629 +{ +"origin" "-40 1096 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 630 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-24 1080 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 631 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "192 1328 424" +} +// entity 632 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "208 1312 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 633 +{ +"origin" "424 1560 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 634 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "440 1544 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 635 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "656 1792 424" +} +// entity 636 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "672 1776 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 637 +{ +"origin" "888 2024 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 638 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "904 2008 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 639 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "184 872 424" +} +// entity 640 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "168 888 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 641 +{ +"origin" "416 1104 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 642 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "400 1120 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 643 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "648 1336 424" +} +// entity 644 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "632 1352 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 645 +{ +"origin" "880 1568 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 646 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "864 1584 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 647 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1112 1800 424" +} +// entity 648 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1096 1816 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 649 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1112 2264 424" +} +// entity 650 +{ +"origin" "1176 2576 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 651 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1000 2840 424" +} +// entity 652 +{ +"origin" "736 2904 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 653 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "736 3240 424" +} +// entity 654 +{ +"origin" "1176 3112 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 655 +{ +"origin" "1376 2096 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 656 +{ +"origin" "1480 2648 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 657 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "352 2904 424" +} +// entity 658 +{ +"origin" "352 3240 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 659 +{ +"origin" "-32 2904 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 660 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-32 3240 424" +} +// entity 661 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-416 2904 424" +} +// entity 662 +{ +"origin" "-416 3240 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 663 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "736 2920 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 664 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "736 3224 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 665 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "352 2920 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 666 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "352 3224 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 667 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-32 2920 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 668 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-32 3224 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 669 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-416 2920 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 670 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-416 3224 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 671 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1016 2856 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 672 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1160 3096 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 673 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1464 2640 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 674 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1192 2584 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 675 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1128 2248 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 676 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1360 2112 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 677 +{ +"origin" "2400 -456 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 678 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2408 -440 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 679 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2528 -152 424" +} +// entity 680 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2520 -168 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 681 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2616 -672 424" +} +// entity 682 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2632 -664 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 683 +{ +"origin" "2760 -312 424" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 684 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2744 -328 384" +"noise" "world/fluorescent_hum.wav" +} +// entity 685 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2920 -544 424" +} +// entity 686 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2904 -552 384" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 687 +{ +"classname" "func_group" +// brush 0 +{ +( -449 -2658 -64 ) ( -480 -2648 -96 ) ( -512 -2804 -96 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -512 -2804 -96 ) ( -480 -2648 -96 ) ( -480 -2648 -48 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -260 -2648 -64 ) ( -232 -2804 -64 ) ( -288 -2804 -64 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -473 -2701 -64 ) ( -486 -2698 -96 ) ( -460 -2704 -96 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -488 -2763 -64 ) ( -474 -2766 -96 ) ( -502 -2760 -96 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -489 -2731 -64 ) ( -482 -2698 -96 ) ( -496 -2764 -96 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +} +// brush 1 +{ +( -449 -2658 -64 ) ( -480 -2648 -96 ) ( -512 -2804 -96 ) common/li_pv_v4a 11 -7 258 1 1 0 1 7000 +( -449 -2658 -64 ) ( -512 -2804 -96 ) ( -512 -2804 -48 ) common/li_pv_v4a 11 -7 258 1 1 0 1 7000 +( -260 -2648 -64 ) ( -232 -2804 -64 ) ( -288 -2804 -64 ) common/li_pv_v4a 11 -7 258 1 1 0 1 7000 +( -473 -2701 -64 ) ( -486 -2698 -96 ) ( -460 -2704 -96 ) common/li_pv_v4a 11 -7 258 1 1 0 1 7000 +( -488 -2763 -64 ) ( -474 -2766 -96 ) ( -502 -2760 -96 ) common/li_pv_v4a 11 -7 258 1 1 0 1 7000 +( -489 -2731 -64 ) ( -496 -2764 -96 ) ( -482 -2698 -96 ) common/li_pv_v4a 11 -7 258 1 1 0 1 7000 +} +// brush 2 +{ +( -449 -2658 -64 ) ( -512 -2804 -96 ) ( -480 -2807 -64 ) common/li_pv_v4a 11 -7 258 1 1 0 1 7000 +( -512 -2804 -48 ) ( -512 -2804 -96 ) ( -449 -2658 -64 ) common/li_pv_v4a 11 -7 258 1 1 0 1 7000 +( -260 -2658 -64 ) ( -232 -2807 -64 ) ( -288 -2807 -64 ) common/li_pv_v4a 11 -7 258 1 1 0 1 7000 +( -473 -2701 -64 ) ( -486 -2698 -96 ) ( -460 -2704 -96 ) common/li_pv_v4a 11 -7 258 1 1 0 1 7000 +( -488 -2763 -64 ) ( -474 -2766 -96 ) ( -502 -2760 -96 ) common/li_pv_v4a 11 -7 258 1 1 0 1 7000 +( -474 -2737 -64 ) ( -466 -2700 -87 ) ( -482 -2774 -87 ) common/li_pv_v4a 11 -7 258 1 1 0 1 7000 +} +// brush 3 +{ +( -449 -2658 -64 ) ( -512 -2804 -96 ) ( -480 -2807 -64 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -260 -2658 -64 ) ( -232 -2807 -64 ) ( -288 -2807 -64 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -473 -2701 -64 ) ( -486 -2698 -96 ) ( -460 -2704 -96 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -488 -2763 -64 ) ( -474 -2766 -96 ) ( -502 -2760 -96 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -474 -2737 -64 ) ( -482 -2774 -87 ) ( -466 -2700 -87 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +} +// brush 4 +{ +( -449 -2658 -64 ) ( -480 -2648 -96 ) ( -512 -2804 -96 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -480 -2648 -48 ) ( -480 -2648 -96 ) ( -449 -2658 -64 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -512 -2804 -96 ) ( -480 -2648 -96 ) ( -480 -2648 -48 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -449 -2658 -64 ) ( -512 -2804 -96 ) ( -512 -2804 -48 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -260 -2648 -64 ) ( -232 -2804 -64 ) ( -288 -2804 -64 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -473 -2701 -64 ) ( -460 -2704 -96 ) ( -486 -2698 -96 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +} +// brush 5 +{ +( -449 -2658 -64 ) ( -512 -2804 -96 ) ( -480 -2807 -64 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -480 -2807 -64 ) ( -512 -2804 -96 ) ( -512 -2804 -48 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -512 -2804 -48 ) ( -512 -2804 -96 ) ( -449 -2658 -64 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -260 -2658 -64 ) ( -232 -2807 -64 ) ( -288 -2807 -64 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -488 -2763 -64 ) ( -502 -2760 -96 ) ( -474 -2766 -96 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +} +// brush 6 +{ +( -449 -2658 -64 ) ( -480 -2648 -96 ) ( -512 -2804 -96 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -512 -2804 -96 ) ( -480 -2648 -96 ) ( -480 -2648 -48 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -449 -2658 -64 ) ( -512 -2804 -96 ) ( -512 -2804 -48 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -260 -2648 -64 ) ( -232 -2804 -64 ) ( -288 -2804 -64 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -488 -2763 -64 ) ( -502 -2760 -96 ) ( -474 -2766 -96 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +} +// brush 7 +{ +( -449 -2658 -64 ) ( -512 -2804 -96 ) ( -480 -2807 -64 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -512 -2804 -48 ) ( -512 -2804 -96 ) ( -449 -2658 -64 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -260 -2658 -64 ) ( -232 -2807 -64 ) ( -288 -2807 -64 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +( -473 -2701 -64 ) ( -460 -2704 -96 ) ( -486 -2698 -96 ) bricks/c_tn_m1 -36 -14 258 1 1 0 0 0 +} +} +// entity 688 +{ +"classname" "func_group" +// brush 0 +{ +( -211 -3454 -64 ) ( -108 -3560 -96 ) ( -92 -3531 -64 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -288 -3454 -64 ) ( -232 -3454 -64 ) ( -260 -3560 -64 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -124 -3516 -96 ) ( -136 -3536 -96 ) ( -130 -3526 -64 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -192 -3500 -88 ) ( -180 -3480 -88 ) ( -186 -3490 -64 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -124 -3520 -88 ) ( -186 -3480 -88 ) ( -155 -3500 -64 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +} +// brush 1 +{ +( -211 -3454 -64 ) ( -108 -3560 -96 ) ( -92 -3531 -64 ) common/li_pv_v4a -18 4 327 1 1 0 1 7000 +( -108 -3560 -48 ) ( -108 -3560 -96 ) ( -211 -3454 -64 ) common/li_pv_v4a -18 4 327 1 1 0 1 7000 +( -288 -3454 -64 ) ( -232 -3454 -64 ) ( -260 -3560 -64 ) common/li_pv_v4a -18 4 327 1 1 0 1 7000 +( -124 -3516 -96 ) ( -136 -3536 -96 ) ( -130 -3526 -64 ) common/li_pv_v4a -18 4 327 1 1 0 1 7000 +( -192 -3500 -88 ) ( -180 -3480 -88 ) ( -186 -3490 -64 ) common/li_pv_v4a -18 4 327 1 1 0 1 7000 +( -186 -3480 -88 ) ( -124 -3520 -88 ) ( -155 -3500 -64 ) common/li_pv_v4a -18 4 327 1 1 0 1 7000 +} +// brush 2 +{ +( -211 -3454 -64 ) ( -232 -3480 -96 ) ( -108 -3560 -96 ) common/li_pv_v4a -18 4 327 1 1 0 1 7000 +( -211 -3454 -64 ) ( -108 -3560 -96 ) ( -108 -3560 -48 ) common/li_pv_v4a -18 4 327 1 1 0 1 7000 +( -288 -3454 -64 ) ( -232 -3454 -64 ) ( -260 -3560 -64 ) common/li_pv_v4a -18 4 327 1 1 0 1 7000 +( -124 -3516 -96 ) ( -136 -3536 -96 ) ( -130 -3526 -64 ) common/li_pv_v4a -18 4 327 1 1 0 1 7000 +( -192 -3500 -96 ) ( -180 -3480 -96 ) ( -186 -3490 -64 ) common/li_pv_v4a -18 4 327 1 1 0 1 7000 +( -132 -3536 -96 ) ( -192 -3496 -96 ) ( -162 -3516 -64 ) common/li_pv_v4a -18 4 327 1 1 0 1 7000 +} +// brush 3 +{ +( -211 -3454 -64 ) ( -232 -3480 -96 ) ( -108 -3560 -96 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -108 -3560 -96 ) ( -232 -3480 -96 ) ( -232 -3480 -48 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -288 -3454 -64 ) ( -232 -3454 -64 ) ( -260 -3560 -64 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -124 -3516 -96 ) ( -136 -3536 -96 ) ( -130 -3526 -64 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -192 -3500 -96 ) ( -180 -3480 -96 ) ( -186 -3490 -64 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -192 -3496 -96 ) ( -132 -3536 -96 ) ( -162 -3516 -64 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +} +// brush 4 +{ +( -211 -3454 -64 ) ( -232 -3480 -96 ) ( -108 -3560 -96 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -232 -3480 -48 ) ( -232 -3480 -96 ) ( -211 -3454 -64 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -108 -3560 -96 ) ( -232 -3480 -96 ) ( -232 -3480 -48 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -211 -3454 -64 ) ( -108 -3560 -96 ) ( -108 -3560 -48 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -288 -3454 -64 ) ( -232 -3454 -64 ) ( -260 -3560 -64 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -180 -3480 -96 ) ( -192 -3500 -96 ) ( -186 -3490 -64 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +} +// brush 5 +{ +( -211 -3454 -64 ) ( -108 -3560 -96 ) ( -92 -3531 -64 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -108 -3560 -48 ) ( -108 -3560 -96 ) ( -211 -3454 -64 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -288 -3454 -64 ) ( -232 -3454 -64 ) ( -260 -3560 -64 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -180 -3480 -88 ) ( -192 -3500 -88 ) ( -186 -3490 -64 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +} +// brush 6 +{ +( -211 -3454 -64 ) ( -108 -3560 -96 ) ( -92 -3531 -64 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -92 -3531 -64 ) ( -108 -3560 -96 ) ( -108 -3560 -48 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -108 -3560 -48 ) ( -108 -3560 -96 ) ( -211 -3454 -64 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -288 -3454 -64 ) ( -232 -3454 -64 ) ( -260 -3560 -64 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -136 -3536 -96 ) ( -124 -3516 -96 ) ( -130 -3526 -64 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +} +// brush 7 +{ +( -211 -3454 -64 ) ( -232 -3480 -96 ) ( -108 -3560 -96 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -108 -3560 -96 ) ( -232 -3480 -96 ) ( -232 -3480 -48 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -211 -3454 -64 ) ( -108 -3560 -96 ) ( -108 -3560 -48 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -288 -3454 -64 ) ( -232 -3454 -64 ) ( -260 -3560 -64 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +( -136 -3536 -96 ) ( -124 -3516 -96 ) ( -130 -3526 -64 ) bricks/c_tn_m1 0 -4 327 1 1 0 0 0 +} +} +// entity 689 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-150 -3496 -90" +} +// entity 690 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-142 -3484 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 691 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "135" +"origin" "-40 -3176 -88" +"style" "10" +} +// entity 692 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-48 -3184 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 693 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-464 -2736 -88" +} +// entity 694 +{ +"origin" "-424 -3160 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 695 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-152 -2880 -88" +} +// entity 696 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-168 -2880 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 697 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-408 -3152 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 698 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-448 -2736 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 699 +{ +"origin" "-240 -2336 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 700 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-224 -2352 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 701 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-16 -2560 -88" +} +// entity 702 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-32 -2544 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 703 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-8 -2104 -88" +} +// entity 704 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "8 -2120 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 705 +{ +"origin" "224 -1872 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 706 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "240 -1888 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 707 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "456 -1640 -88" +} +// entity 708 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "472 -1656 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 709 +{ +"origin" "688 -1408 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 710 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "704 -1424 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 711 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "920 -1176 -88" +} +// entity 712 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "936 -1192 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 713 +{ +"origin" "216 -2328 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 714 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "200 -2312 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 715 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "448 -2096 -88" +} +// entity 716 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "432 -2080 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 717 +{ +"origin" "680 -1864 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 718 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "664 -1848 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 719 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "912 -1632 -88" +} +// entity 720 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "896 -1616 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 721 +{ +"origin" "1144 -1400 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 722 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1128 -1384 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 723 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1184 -984 -88" +} +// entity 724 +{ +"origin" "1312 -1280 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 725 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1304 -1264 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 726 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1192 -1000 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 727 +{ +"origin" "1504 -920 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 728 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1824 -920 -88" +} +// entity 729 +{ +"origin" "2144 -920 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 730 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2464 -920 -88" +} +// entity 731 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "3040 -920 -88" +} +// entity 732 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "3448 -672 -88" +} +// entity 733 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "3464 -680 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 734 +{ +"origin" "3752 -800 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 735 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "3736 -792 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 736 +{ +"origin" "3232 -888 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 737 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "3240 -904 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 738 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "3592 -1032 -88" +} +// entity 739 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "3576 -1016 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 740 +{ +"origin" "3360 -1192 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 741 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "3352 -1176 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 742 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "3360 168 -88" +} +// entity 743 +{ +"origin" "3592 8 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 744 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "3752 -224 -88" +} +// entity 745 +{ +"origin" "3456 -352 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 746 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "3232 -128 -88" +} +// entity 747 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "3240 -112 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 748 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "3352 152 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 749 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "3576 -8 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 750 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "3736 -232 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 751 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "3472 -344 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 752 +{ +"origin" "-1640 1568 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 753 +{ +"origin" "-1368 1888 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 754 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1384 1888 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 755 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1624 1576 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 756 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-1456 1312 -88" +} +// entity 757 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1440 1328 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 758 +{ +"origin" "-1232 1536 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 759 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1248 1520 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 760 +{ +"origin" "-1224 1080 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 761 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1208 1096 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 762 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-992 848 -88" +} +// entity 763 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-976 864 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 764 +{ +"origin" "-760 616 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 765 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-744 632 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 766 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-528 384 -88" +} +// entity 767 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-512 400 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 768 +{ +"origin" "-296 152 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 769 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-280 168 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 770 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-1000 1304 -88" +} +// entity 771 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1016 1288 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 772 +{ +"origin" "-768 1072 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 773 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-784 1056 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 774 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-536 840 -88" +} +// entity 775 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-552 824 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 776 +{ +"origin" "-304 608 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 777 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-320 592 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 778 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-72 376 -88" +} +// entity 779 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-88 360 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 780 +{ +"origin" "-32 -40 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 781 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "168 232 -88" +} +// entity 782 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "168 216 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 783 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-24 -24 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 784 +{ +"classname" "func_wall" +// brush 0 +{ +( -1534 3603 -64 ) ( -1560 3624 -96 ) ( -1640 3500 -96 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1560 3624 -48 ) ( -1560 3624 -96 ) ( -1534 3603 -64 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1640 3500 -96 ) ( -1560 3624 -96 ) ( -1560 3624 -48 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1534 3603 -64 ) ( -1640 3500 -96 ) ( -1640 3500 -48 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1534 3680 -64 ) ( -1534 3624 -64 ) ( -1640 3652 -64 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1560 3572 -96 ) ( -1580 3584 -96 ) ( -1570 3578 -64 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +} +// brush 1 +{ +( -1534 3603 -64 ) ( -1560 3624 -96 ) ( -1640 3500 -96 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1640 3500 -96 ) ( -1560 3624 -96 ) ( -1560 3624 -48 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1534 3680 -64 ) ( -1534 3624 -64 ) ( -1640 3652 -64 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1596 3516 -96 ) ( -1616 3528 -96 ) ( -1606 3522 -64 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1580 3584 -96 ) ( -1560 3572 -96 ) ( -1570 3578 -64 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1576 3584 -96 ) ( -1616 3524 -96 ) ( -1596 3554 -64 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +} +// brush 2 +{ +( -1534 3603 -64 ) ( -1640 3500 -96 ) ( -1611 3484 -64 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1640 3500 -48 ) ( -1640 3500 -96 ) ( -1534 3603 -64 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1534 3680 -64 ) ( -1534 3624 -64 ) ( -1640 3652 -64 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1560 3572 -88 ) ( -1580 3584 -88 ) ( -1570 3578 -64 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +} +// brush 3 +{ +( -1534 3603 -64 ) ( -1640 3500 -96 ) ( -1611 3484 -64 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1534 3680 -64 ) ( -1534 3624 -64 ) ( -1640 3652 -64 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1596 3516 -96 ) ( -1616 3528 -96 ) ( -1606 3522 -64 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1580 3584 -88 ) ( -1560 3572 -88 ) ( -1570 3578 -64 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1600 3516 -88 ) ( -1560 3578 -88 ) ( -1580 3547 -64 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +} +// brush 4 +{ +( -1534 3603 -64 ) ( -1640 3500 -96 ) ( -1611 3484 -64 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1611 3484 -64 ) ( -1640 3500 -96 ) ( -1640 3500 -48 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1640 3500 -48 ) ( -1640 3500 -96 ) ( -1534 3603 -64 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1534 3680 -64 ) ( -1534 3624 -64 ) ( -1640 3652 -64 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1616 3528 -96 ) ( -1596 3516 -96 ) ( -1606 3522 -64 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +} +// brush 5 +{ +( -1534 3603 -64 ) ( -1560 3624 -96 ) ( -1640 3500 -96 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1640 3500 -96 ) ( -1560 3624 -96 ) ( -1560 3624 -48 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1534 3603 -64 ) ( -1640 3500 -96 ) ( -1640 3500 -48 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1534 3680 -64 ) ( -1534 3624 -64 ) ( -1640 3652 -64 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +( -1616 3528 -96 ) ( -1596 3516 -96 ) ( -1606 3522 -64 ) bricks/c_tn_m1 18 15 237 1 1 0 0 0 +} +} +// entity 785 +{ +"classname" "func_group" +// brush 0 +{ +( -1308 3787 -64 ) ( -1324 3816 -96 ) ( -1427 3710 -64 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1476 3816 -64 ) ( -1448 3710 -64 ) ( -1504 3710 -64 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1346 3782 -64 ) ( -1352 3792 -96 ) ( -1340 3772 -96 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1402 3746 -64 ) ( -1396 3736 -88 ) ( -1408 3756 -88 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1371 3756 -64 ) ( -1402 3736 -88 ) ( -1340 3776 -88 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +} +// brush 1 +{ +( -1308 3787 -64 ) ( -1324 3816 -96 ) ( -1427 3710 -64 ) common/li_pv_v4a 34 -9 213 1 1 0 1 7000 +( -1427 3710 -64 ) ( -1324 3816 -96 ) ( -1324 3816 -48 ) common/li_pv_v4a -26 13 213 1 1 0 1 7000 +( -1476 3816 -64 ) ( -1448 3710 -64 ) ( -1504 3710 -64 ) common/li_pv_v4a 30 -12 213 1 1 0 1 7000 +( -1346 3782 -64 ) ( -1352 3792 -96 ) ( -1340 3772 -96 ) common/li_pv_v4a -26 13 213 1 1 0 1 7000 +( -1402 3746 -64 ) ( -1396 3736 -88 ) ( -1408 3756 -88 ) common/li_pv_v4a -26 13 213 1 1 0 1 7000 +( -1371 3756 -64 ) ( -1340 3776 -88 ) ( -1402 3736 -88 ) common/li_pv_v4a -27 5 213 1 1 0 1 7000 +} +// brush 2 +{ +( -1324 3816 -96 ) ( -1448 3736 -96 ) ( -1427 3710 -64 ) common/li_pv_v4a 34 -9 213 1 1 0 1 7000 +( -1324 3816 -48 ) ( -1324 3816 -96 ) ( -1427 3710 -64 ) common/li_pv_v4a -26 13 213 1 1 0 1 7000 +( -1476 3816 -64 ) ( -1448 3710 -64 ) ( -1504 3710 -64 ) common/li_pv_v4a 30 -12 213 1 1 0 1 7000 +( -1346 3782 -64 ) ( -1352 3792 -96 ) ( -1340 3772 -96 ) common/li_pv_v4a -26 13 213 1 1 0 1 7000 +( -1402 3746 -64 ) ( -1396 3736 -96 ) ( -1408 3756 -96 ) common/li_pv_v4a -26 13 213 1 1 0 1 7000 +( -1378 3772 -64 ) ( -1408 3752 -96 ) ( -1348 3792 -96 ) common/li_pv_v4a -27 5 213 1 1 0 1 7000 +} +// brush 3 +{ +( -1324 3816 -96 ) ( -1448 3736 -96 ) ( -1427 3710 -64 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1448 3736 -48 ) ( -1448 3736 -96 ) ( -1324 3816 -96 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1476 3816 -64 ) ( -1448 3710 -64 ) ( -1504 3710 -64 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1346 3782 -64 ) ( -1352 3792 -96 ) ( -1340 3772 -96 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1402 3746 -64 ) ( -1396 3736 -96 ) ( -1408 3756 -96 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1378 3772 -64 ) ( -1348 3792 -96 ) ( -1408 3752 -96 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +} +// brush 4 +{ +( -1324 3816 -96 ) ( -1448 3736 -96 ) ( -1427 3710 -64 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1427 3710 -64 ) ( -1448 3736 -96 ) ( -1448 3736 -48 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1448 3736 -48 ) ( -1448 3736 -96 ) ( -1324 3816 -96 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1324 3816 -48 ) ( -1324 3816 -96 ) ( -1427 3710 -64 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1476 3816 -64 ) ( -1448 3710 -64 ) ( -1504 3710 -64 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1402 3746 -64 ) ( -1408 3756 -96 ) ( -1396 3736 -96 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +} +// brush 5 +{ +( -1308 3787 -64 ) ( -1324 3816 -96 ) ( -1427 3710 -64 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1427 3710 -64 ) ( -1324 3816 -96 ) ( -1324 3816 -48 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1476 3816 -64 ) ( -1448 3710 -64 ) ( -1504 3710 -64 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1402 3746 -64 ) ( -1408 3756 -88 ) ( -1396 3736 -88 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +} +// brush 6 +{ +( -1308 3787 -64 ) ( -1324 3816 -96 ) ( -1427 3710 -64 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1324 3816 -48 ) ( -1324 3816 -96 ) ( -1308 3787 -64 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1427 3710 -64 ) ( -1324 3816 -96 ) ( -1324 3816 -48 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1476 3816 -64 ) ( -1448 3710 -64 ) ( -1504 3710 -64 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1346 3782 -64 ) ( -1340 3772 -96 ) ( -1352 3792 -96 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +} +// brush 7 +{ +( -1324 3816 -96 ) ( -1448 3736 -96 ) ( -1427 3710 -64 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1448 3736 -48 ) ( -1448 3736 -96 ) ( -1324 3816 -96 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1324 3816 -48 ) ( -1324 3816 -96 ) ( -1427 3710 -64 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1476 3816 -64 ) ( -1448 3710 -64 ) ( -1504 3710 -64 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +( -1346 3782 -64 ) ( -1340 3772 -96 ) ( -1352 3792 -96 ) bricks/c_tn_m1 0 15 213 1 1 0 0 0 +} +} +// entity 786 +{ +"origin" "-1366 3752 -90" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 787 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1358 3740 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 788 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-1576 3542 -90" +} +// entity 789 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1564 3534 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 790 +{ +"origin" "-1256 3432 -88" +"light" "100" +"_color" "1.000000 0.705882 0.007843" +"classname" "light" +} +// entity 791 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1272 3448 -126" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 792 +{ +"origin" "2088 2208 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 793 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2072 2208 -126" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 794 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2088 1888 -48" +} +// entity 795 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2072 1888 -86" +"noise" "world/fluorescent_hum.wav" +} +// entity 796 +{ +"origin" "2088 1568 32" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 797 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2072 1568 -6" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 798 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2088 1248 120" +} +// entity 799 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2072 1248 82" +"noise" "world/fluorescent_hum.wav" +} +// entity 800 +{ +"origin" "2088 928 160" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 801 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2072 928 122" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 802 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1752 2208 -88" +} +// entity 803 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1768 2208 -126" +"noise" "world/fluorescent_hum.wav" +} +// entity 804 +{ +"origin" "1752 1888 -48" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 805 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1768 1888 -86" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 806 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1752 1568 32" +} +// entity 807 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1768 1568 -6" +"noise" "world/fluorescent_hum.wav" +} +// entity 808 +{ +"origin" "1752 1248 120" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 809 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1768 1248 82" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 810 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1752 928 160" +} +// entity 811 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1768 928 122" +"noise" "world/fluorescent_hum.wav" +} +// entity 812 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2024 32 168" +} +// entity 813 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2008 40 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 814 +{ +"origin" "1864 -200 168" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 815 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1848 -184 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 816 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1632 -360 168" +} +// entity 817 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1624 -344 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 818 +{ +"origin" "1632 3816 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 819 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1864 3656 -88" +} +// entity 820 +{ +"origin" "2024 3424 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 821 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1624 3800 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 822 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1848 3640 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 823 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2008 3416 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 824 +{ +"origin" "3040 -104 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 825 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "3040 -88 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 826 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2720 -88 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 827 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2720 -104 -88" +} +// entity 828 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2400 -88 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 829 +{ +"origin" "2400 -104 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 830 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2080 -88 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 831 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2080 -104 -88" +} +// entity 832 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1760 -88 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 833 +{ +"origin" "1760 -104 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 834 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1440 -88 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 835 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1440 -104 -88" +} +// entity 836 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1120 -88 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 837 +{ +"origin" "1120 -104 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 838 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "800 -88 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 839 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "800 -104 -88" +} +// entity 840 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "480 -88 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 841 +{ +"origin" "480 -104 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 842 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "224 -88 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 843 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "224 -104 -88" +} +// entity 844 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "3040 232 -88" +} +// entity 845 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "3040 216 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 846 +{ +"origin" "2720 232 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 847 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2720 216 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 848 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2400 232 -88" +} +// entity 849 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2400 216 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 850 +{ +"origin" "2080 232 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 851 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2080 216 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 852 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1760 232 -88" +} +// entity 853 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1760 216 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 854 +{ +"origin" "1440 232 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 855 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1440 216 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 856 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1120 232 -88" +} +// entity 857 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1120 216 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 858 +{ +"origin" "800 232 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 859 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "800 216 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 860 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "480 232 -88" +} +// entity 861 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "480 216 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 862 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "3040 -936 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 863 +{ +"origin" "2784 -920 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 864 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2784 -936 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 865 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2464 -936 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 866 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2144 -936 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 867 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1824 -936 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 868 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1504 -936 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 869 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1504 -1256 -88" +} +// entity 870 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1504 -1240 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 871 +{ +"origin" "1824 -1256 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 872 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1824 -1240 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 873 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2144 -1256 -88" +} +// entity 874 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2144 -1240 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 875 +{ +"origin" "2464 -1256 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 876 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2464 -1240 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 877 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2784 -1256 -88" +} +// entity 878 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2784 -1240 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 879 +{ +"origin" "3040 -1256 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 880 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "3040 -1240 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 881 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-1368 2176 -88" +} +// entity 882 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1384 2176 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 883 +{ +"origin" "-1368 2496 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 884 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1384 2496 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 885 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-1368 2816 -88" +} +// entity 886 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1384 2816 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 887 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-1704 1888 -88" +} +// entity 888 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1688 1888 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 889 +{ +"origin" "-1704 2176 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 890 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1688 2176 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 891 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-1704 2496 -88" +} +// entity 892 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1688 2496 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 893 +{ +"origin" "-1704 2816 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 894 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1688 2816 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 895 +{ +"origin" "1640 3432 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 896 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1656 3448 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 897 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1752 3136 -88" +} +// entity 898 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1768 3136 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 899 +{ +"origin" "1752 2816 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 900 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1768 2816 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 901 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1752 2496 -88" +} +// entity 902 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1768 2496 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 903 +{ +"origin" "2088 2496 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 904 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2072 2496 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 905 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2088 2816 -88" +} +// entity 906 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2072 2816 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 907 +{ +"origin" "2088 3136 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 908 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2072 3136 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 909 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1312 3880 -88" +} +// entity 910 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1312 3864 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 911 +{ +"origin" "1312 3544 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 912 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1312 3560 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 913 +{ +"origin" "992 3880 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 914 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "992 3864 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 915 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "992 3544 -88" +} +// entity 916 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "992 3560 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 917 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "672 3880 -88" +} +// entity 918 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "672 3864 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 919 +{ +"origin" "672 3544 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 920 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "672 3560 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 921 +{ +"origin" "352 3880 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 922 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "352 3864 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 923 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "352 3544 -88" +} +// entity 924 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "352 3560 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 925 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "32 3880 -88" +} +// entity 926 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "32 3864 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 927 +{ +"origin" "32 3544 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 928 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "32 3560 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 929 +{ +"origin" "-288 3880 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 930 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-288 3864 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 931 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-288 3544 -88" +} +// entity 932 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-288 3560 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 933 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-608 3880 -88" +} +// entity 934 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-608 3864 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 935 +{ +"origin" "-608 3544 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 936 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-608 3560 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 937 +{ +"origin" "-928 3880 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 938 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-928 3864 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 939 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-928 3544 -88" +} +// entity 940 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-928 3560 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 941 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "-1704 3136 -88" +} +// entity 942 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "-1688 3136 -128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 943 +{ +"origin" "-1368 3136 -88" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 944 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "-1384 3136 -128" +"noise" "world/fluorescent_hum.wav" +} +// entity 945 +{ +"classname" "light" +"_color" "1.000000 0.705882 0.007843" +"light" "100" +"origin" "-1248 -2016 94" +} +// entity 946 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1640 24 168" +} +// entity 947 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1656 8 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 948 +{ +"origin" "1752 320 168" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 949 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "1768 320 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 950 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "1752 640 168" +} +// entity 951 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "1768 640 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 952 +{ +"origin" "2088 640 168" +"_color" "1.000000 0.701961 0.003922" +"light" "100" +"classname" "light" +} +// entity 953 +{ +"classname" "target_speaker" +"spawnflags" "1" +"origin" "2072 640 128" +"noise" "world/fluorescent_hum.wav" +} +// entity 954 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.701961 0.003922" +"origin" "2088 320 168" +} +// entity 955 +{ +"noise" "world/fluorescent_hum.wav" +"origin" "2072 320 128" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 956 +{ +"classname" "func_wall" +// brush 0 +{ +( -65 3242 648 ) ( -66 3242 648 ) ( -66 3241 648 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -66 3241 672 ) ( -66 3242 672 ) ( -65 3242 672 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -57 2624 656 ) ( -56 2624 656 ) ( -56 2624 648 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -64 3023 656 ) ( -64 3024 656 ) ( -64 3024 648 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -65 3392 656 ) ( -66 3392 656 ) ( -66 3392 648 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -66 3242 656 ) ( -66 3241 656 ) ( -66 3241 648 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +} +} +// entity 957 +{ +"classname" "func_wall" +// brush 0 +{ +( -127 3244 648 ) ( -128 3244 648 ) ( -128 3243 648 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -128 3243 672 ) ( -128 3244 672 ) ( -127 3244 672 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -126 3025 656 ) ( -126 3026 656 ) ( -126 3026 648 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -127 3330 656 ) ( -128 3330 656 ) ( -128 3330 648 ) common/li_sr_v3 0 0 0 1 1 0 132 0 +( -256 3244 656 ) ( -256 3243 656 ) ( -256 3243 648 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +( -142 3328 648 ) ( -150 3328 648 ) ( -146 3328 672 ) sprites/rail_c2a 0 5 0 0.500000 0.500000 0 4096 0 +} +} +// entity 958 +{ +"origin" "-96 3072 744" +"light" "150" +"classname" "light" +} +// entity 959 +{ +"classname" "light" +"light" "150" +"origin" "-96 3202 744" +} +// entity 960 +{ +"classname" "func_group" +// brush 0 +{ +( 1142 3136 764 ) ( 1153 3147 764 ) ( 1147 3153 764 ) common/li_sr_m19a 13 10 44 1.500000 1 134217728 1 20000 +( 1142 3136 766 ) ( 1136 3142 766 ) ( 1147 3153 768 ) common/li_sr_v3 0 0 0 1 1 134217728 132 0 +( 1147 3153 768 ) ( 1136 3142 768 ) ( 1136 3142 764 ) metals/mt_pv_m16bc -20 0 0 0.707031 1 134217728 0 0 +( 1136 3142 766 ) ( 1142 3136 766 ) ( 1142 3136 764 ) metals/mt_pv_m16bc 0 0 0 0.707275 1 134217728 0 0 +( 1142 3136 768 ) ( 1153 3147 768 ) ( 1153 3147 764 ) metals/mt_pv_m16bc -11 0 0 0.707275 1 134217728 0 0 +( 1153 3147 768 ) ( 1147 3153 768 ) ( 1147 3153 764 ) metals/mt_pv_m16bc -18 0 0 0.707031 1 134217728 0 0 +} +// brush 1 +{ +( 1145 3142 764 ) ( 1166 3163 764 ) ( 1163 3166 764 ) metals/mt_pv_m16bc 8 11 45 0.999979 0.999893 134217728 0 0 +( 1163 3166 768 ) ( 1166 3163 768 ) ( 1145 3142 768 ) common/li_sr_v3 0 0 0 1 1 134217728 132 0 +( 1163 3166 768 ) ( 1142 3145 768 ) ( 1142 3145 648 ) metals/mt_pv_m16bc -17 0 0 0.707275 1 134217728 0 0 +( 1148 3152 768 ) ( 1151 3149 768 ) ( 1151 3149 648 ) metals/mt_pv_m16bc -18 0 0 0.707031 1 134217728 0 0 +( 1145 3142 768 ) ( 1166 3163 768 ) ( 1166 3163 648 ) metals/mt_pv_m16bc -14 0 0 0.707031 1 134217728 0 0 +( 1166 3163 768 ) ( 1163 3166 768 ) ( 1163 3166 648 ) metals/mt_pv_m16bc -6 0 0 0.707031 1 134217728 0 0 +} +// brush 2 +{ +( 1166 3166 576 ) ( 1167 3167 576 ) ( 1166 3169 576 ) metals/mt_pv_m16bc 8 11 45 0.999979 0.999893 134217728 0 0 +( 1166 3169 768 ) ( 1167 3167 768 ) ( 1166 3166 768 ) common/li_sr_v3 0 0 0 1 1 134217728 132 0 +( 1166 3169 672 ) ( 1164 3167 672 ) ( 1164 3167 648 ) metals/mt_pv_m16bc -17 0 0 0.707275 1 134217728 0 0 +( 1166 3163 768 ) ( 1166 3163 648 ) ( 1163 3166 648 ) metals/mt_pv_m16bc -6 0 0 0.707031 1 134217728 0 0 +( 1166 3163 648 ) ( 1166 3163 768 ) ( 1169 3166 768 ) metals/mt_pv_m16bc -14 0 0 0.707031 1 134217728 0 0 +( 1169 3166 648 ) ( 1169 3166 768 ) ( 1166 3169 768 ) common/li_sr_v3 0 0 0 1 1 134217728 132 0 +} +} +// entity 961 +{ +"origin" "1144 3144 744" +"light" "150" +"classname" "light" +} +// entity 962 +{ +"classname" "func_group" +// brush 0 +{ +( 1350 2944 764 ) ( 1361 2955 764 ) ( 1355 2961 764 ) common/li_sr_m19a 2 0 44 1.500000 1 134217728 1 20000 +( 1350 2944 766 ) ( 1344 2950 766 ) ( 1355 2961 768 ) common/li_sr_v3 40 43 45 0.999979 0.999893 134217728 132 0 +( 1355 2961 768 ) ( 1344 2950 768 ) ( 1344 2950 764 ) metals/mt_pv_m16bc -20 0 0 0.707031 1 134217728 0 0 +( 1344 2950 766 ) ( 1350 2944 766 ) ( 1350 2944 764 ) metals/mt_pv_m16bc 0 0 0 0.707275 1 134217728 0 0 +( 1350 2944 768 ) ( 1361 2955 768 ) ( 1361 2955 764 ) metals/mt_pv_m16bc -11 0 0 0.707275 1 134217728 0 0 +( 1361 2955 768 ) ( 1355 2961 768 ) ( 1355 2961 764 ) metals/mt_pv_m16bc -18 0 0 0.707031 1 134217728 0 0 +} +// brush 1 +{ +( 1353 2950 764 ) ( 1374 2971 764 ) ( 1371 2974 764 ) metals/mt_pv_m16bc 8 11 45 0.999979 0.999893 134217728 0 0 +( 1371 2974 768 ) ( 1374 2971 768 ) ( 1353 2950 768 ) common/li_sr_v3 40 43 45 0.999979 0.999893 134217728 132 0 +( 1371 2974 768 ) ( 1350 2953 768 ) ( 1350 2953 648 ) metals/mt_pv_m16bc -17 0 0 0.707275 1 134217728 0 0 +( 1356 2960 768 ) ( 1359 2957 768 ) ( 1359 2957 648 ) metals/mt_pv_m16bc -18 0 0 0.707031 1 134217728 0 0 +( 1353 2950 768 ) ( 1374 2971 768 ) ( 1374 2971 648 ) metals/mt_pv_m16bc -14 0 0 0.707031 1 134217728 0 0 +( 1374 2971 768 ) ( 1371 2974 768 ) ( 1371 2974 648 ) metals/mt_pv_m16bc -6 0 0 0.707031 1 134217728 0 0 +} +// brush 2 +{ +( 1374 2974 576 ) ( 1375 2975 576 ) ( 1374 2977 576 ) metals/mt_pv_m16bc 8 11 45 0.999979 0.999893 134217728 0 0 +( 1374 2977 768 ) ( 1375 2975 768 ) ( 1374 2974 768 ) common/li_sr_v3 0 0 0 1 1 134217728 132 0 +( 1374 2977 672 ) ( 1372 2975 672 ) ( 1372 2975 648 ) metals/mt_pv_m16bc -17 0 0 0.707275 1 134217728 0 0 +( 1374 2971 768 ) ( 1374 2971 648 ) ( 1371 2974 648 ) metals/mt_pv_m16bc -6 0 0 0.707031 1 134217728 0 0 +( 1374 2971 648 ) ( 1374 2971 768 ) ( 1377 2974 768 ) metals/mt_pv_m16bc -14 0 0 0.707031 1 134217728 0 0 +( 1377 2974 648 ) ( 1377 2974 768 ) ( 1374 2977 768 ) common/li_sr_v3 0 0 0 1 1 134217728 132 0 +} +} +// entity 963 +{ +"classname" "light" +"light" "150" +"origin" "1352 2952 744" +} +// entity 964 +{ +"classname" "func_wall" +// brush 0 +{ +( -3040 -1536 576 ) ( -3392 -1536 576 ) ( -3392 -1600 576 ) sprites/win_bars 0 0 0 1 1 0 4096 0 +( -3392 -1600 640 ) ( -3392 -1536 640 ) ( -3040 -1536 640 ) sprites/win_bars 0 0 0 1 1 0 4096 0 +( -3392 -1792 640 ) ( -3040 -1792 640 ) ( -3040 -1792 576 ) sprites/win_bars 0 0 0 1 1 0 4096 0 +( -3072 -1536 640 ) ( -3424 -1536 640 ) ( -3424 -1536 576 ) sprites/win_bars 0 0 0 1 1 0 4096 0 +( -3424 -1536 640 ) ( -3424 -1600 640 ) ( -3424 -1600 576 ) sprites/win_bars 0 0 0 1 1 0 4096 0 +( -3232 -2176 576 ) ( -3232 -2200 576 ) ( -3232 -2188 640 ) sprites/win_bars 0 0 0 1 1 0 4096 0 +} +} +// entity 965 +{ +"classname" "func_wall" +// brush 0 +{ +( -3040 -2176 576 ) ( -3392 -2176 576 ) ( -3392 -2240 576 ) sprites/win_bars 0 0 0 1 1 0 4096 0 +( -3392 -2240 640 ) ( -3392 -2176 640 ) ( -3040 -2176 640 ) sprites/win_bars 0 0 0 1 1 0 4096 0 +( -3392 -2432 640 ) ( -3040 -2432 640 ) ( -3040 -2432 576 ) sprites/win_bars 0 0 0 1 1 0 4096 0 +( -3072 -2176 640 ) ( -3424 -2176 640 ) ( -3424 -2176 576 ) sprites/win_bars 0 0 0 1 1 0 4096 0 +( -3424 -2176 640 ) ( -3424 -2240 640 ) ( -3424 -2240 576 ) sprites/win_bars 0 0 0 1 1 0 4096 0 +( -3232 -2816 576 ) ( -3232 -2840 576 ) ( -3232 -2828 640 ) sprites/win_bars 0 0 0 1 1 0 4096 0 +} +} diff --git a/examples/maps/sr1.map b/examples/maps/sr1.map new file mode 100644 index 0000000..c4b7993 --- /dev/null +++ b/examples/maps/sr1.map @@ -0,0 +1,37007 @@ +{ +"sounds" "6" +"message" "Skidrow" +"fogdensity2" "0.000125" +"fogval2" "0.25 0.3 0.35" +"episode" "1" +"fogval" "0.3 0.3 0.35" +"fogdensity" "0.00025" +"classname" "worldspawn" +"sky" "sr" +// brush 0 +{ +( -1960 2592 -14 ) ( -1912 2608 -6 ) ( -1912 2592 -54 ) bricks/s_sr_m12ab -8 -38 0 1 1 134217728 0 0 +( -1976 2592 -54 ) ( -2000 2624 -54 ) ( -1968 2624 -6 ) bricks/s_sr_m12ab 0 -38 0 1 1 134217728 0 0 +( -1984 2696 -54 ) ( -1944 2744 -54 ) ( -1944 2648 2 ) bricks/s_sr_m12ab -8 -16 0 1 1 134217728 0 0 +( -1929 2643 -54 ) ( -1929 2643 -6 ) ( -1952 2650 -6 ) bricks/s_sr_m12ab -8 -38 0 1 1 134217728 0 0 +( -1912 2608 -6 ) ( -1960 2592 -14 ) ( -1968 2624 -6 ) bricks/s_sr_m12ab -8 0 0 1 1 134217728 0 0 +( -1912 2640 -30 ) ( -1912 2600 -30 ) ( -1920 2608 -6 ) bricks/s_sr_m12ab 0 -38 0 1 1 134217728 0 0 +( -2021 2624 0 ) ( -2021 2662 0 ) ( -1912 2643 0 ) bricks/s_sr_m12ab -8 -32 0 1 1 134217728 0 0 +( -1972 2594 -8 ) ( -1946 2594 -8 ) ( -1959 2653 -8 ) bricks/s_sr_m12ab -8 -32 0 1 1 134217728 0 0 +} +// brush 1 +{ +( -1990 2608 -4 ) ( -1990 2664 -4 ) ( -1984 2664 2 ) props/barrel_v4 0 24 0 1 1 134217728 16777216 0 +( -1992 2608 -10 ) ( -1992 2664 -10 ) ( -1992 2664 -2 ) props/barrel_v4 0 30 0 1 1 134217728 0 0 +( -1976 2608 -10 ) ( -1976 2664 -10 ) ( -1976 2664 -18 ) props/barrel_v4 0 30 0 1 1 134217728 0 0 +( -1978 2608 -4 ) ( -1978 2664 -4 ) ( -1972 2664 -10 ) props/barrel_v4 0 24 0 1 1 134217728 16777216 0 +( -1984 2608 -2 ) ( -1984 2664 -2 ) ( -1976 2664 -2 ) props/barrel_v4 0 24 0 1 1 134217728 16777216 0 +( -2008 2536 -18 ) ( -2008 2536 -2 ) ( -1992 2536 -2 ) props/barrel_v4 0 30 0 1 1 134217728 0 0 +( -1976 2688 -2 ) ( -1992 2688 -2 ) ( -1992 2688 -18 ) props/barrel_v4 0 30 0 1 1 134217728 0 0 +( -1992 2536 -8 ) ( -1988 2536 -8 ) ( -1990 2688 -8 ) props/barrel_v4 0 24 0 1 1 134217728 0 0 +} +// brush 2 +{ +( -1928 2632 -8 ) ( -1960 2632 -56 ) ( -1936 2664 -56 ) bricks/s_sr_m12ab -24 -24 0 1 1 134217728 0 0 +( -1904 2608 0 ) ( -1904 2512 -56 ) ( -1944 2560 -56 ) bricks/s_sr_m12ab -48 8 0 1 1 134217728 0 0 +( -1912 2606 -8 ) ( -1889 2613 -8 ) ( -1889 2613 -56 ) bricks/s_sr_m12ab -48 -24 0 1 1 134217728 0 0 +( -1928 2632 -8 ) ( -1920 2664 -16 ) ( -1872 2648 -8 ) bricks/s_sr_m12ab -48 24 0 1 1 134217728 0 0 +( -1880 2648 -8 ) ( -1872 2656 -32 ) ( -1872 2616 -32 ) bricks/s_sr_m12ab -24 -24 0 1 1 134217728 0 0 +( -1872 2613 -2 ) ( -1981 2594 -2 ) ( -1981 2632 -2 ) bricks/s_sr_m12ab -48 -8 0 1 1 134217728 0 0 +( -2016 2589 -8 ) ( -1848 2589 -8 ) ( -1932 2679 -8 ) bricks/s_sr_m12ab -48 -8 0 1 1 134217728 0 0 +} +// brush 3 +{ +( 936 -544 392 ) ( 904 -544 392 ) ( 904 -576 392 ) props/box_c_m5 16 0 0 -0.500000 0.500000 0 2097152 0 +( 904 -576 424 ) ( 904 -544 424 ) ( 936 -544 424 ) props/box_c_m6 16 0 0 -0.500000 0.500000 0 2097152 0 +( 904 -576 424 ) ( 936 -576 424 ) ( 936 -576 392 ) props/box_c_m5 16 16 0 -0.500000 0.500000 0 2097152 0 +( 936 -576 424 ) ( 936 -544 424 ) ( 936 -544 392 ) props/box_c_m5 0 16 0 -0.500000 0.500000 0 2097152 0 +( 936 -544 424 ) ( 904 -544 424 ) ( 904 -544 392 ) props/box_c_m5 16 16 0 -0.500000 0.500000 0 2097152 0 +( 904 -544 424 ) ( 904 -576 424 ) ( 904 -576 392 ) props/box_c_m5 0 16 0 -0.500000 0.500000 0 2097152 0 +} +// brush 4 +{ +( 952 -544 264 ) ( 920 -544 264 ) ( 920 -576 264 ) props/box_c_m5 48 0 0 -0.500000 0.500000 0 2097152 0 +( 920 -576 296 ) ( 920 -544 296 ) ( 952 -544 296 ) props/box_c_m6 48 0 0 -0.500000 0.500000 0 2097152 0 +( 920 -576 296 ) ( 952 -576 296 ) ( 952 -576 264 ) props/box_c_m5 48 16 0 -0.500000 0.500000 0 2097152 0 +( 952 -576 296 ) ( 952 -544 296 ) ( 952 -544 264 ) props/box_c_m5 0 16 0 -0.500000 0.500000 0 2097152 0 +( 952 -544 296 ) ( 920 -544 296 ) ( 920 -544 264 ) props/box_c_m5 48 16 0 -0.500000 0.500000 0 2097152 0 +( 920 -544 296 ) ( 920 -576 296 ) ( 920 -576 264 ) props/box_c_m5 0 16 0 -0.500000 0.500000 0 2097152 0 +} +// brush 5 +{ +( 873 -544 392 ) ( 841 -542 392 ) ( 839 -574 392 ) props/box_sr_m11 -6 -4 174 0.500000 -0.500000 0 134217728 0 +( 839 -574 424 ) ( 841 -542 424 ) ( 873 -544 424 ) props/box_sr_m11 -5 60 174 0.500000 -0.500000 0 134217728 0 +( 839 -574 424 ) ( 871 -576 424 ) ( 871 -576 392 ) props/box_sr_m11 -50 17 -180 0.500000 -0.500000 0 134217728 0 +( 871 -576 424 ) ( 873 -544 424 ) ( 873 -544 392 ) props/box_sr_m11 0 16 -180 0.500000 -0.500000 0 134217728 0 +( 873 -544 424 ) ( 841 -542 424 ) ( 841 -542 392 ) props/box_sr_m11 -46 16 -180 0.500000 -0.500000 0 134217728 0 +( 841 -542 424 ) ( 839 -574 424 ) ( 839 -574 392 ) props/box_sr_m11 4 16 -180 0.500000 -0.500000 0 134217728 0 +} +// brush 6 +{ +( 860 -544 320 ) ( 828 -544 320 ) ( 828 -576 320 ) props/box_sr_m11 -8 0 0 -0.500000 0.500000 0 134217728 0 +( 828 -576 352 ) ( 828 -544 352 ) ( 860 -544 352 ) props/box_sr_m11 -8 0 0 -0.500000 0.500000 0 134217728 0 +( 828 -576 352 ) ( 860 -576 352 ) ( 860 -576 320 ) props/box_sr_m11 -8 0 0 -0.500000 0.500000 0 134217728 0 +( 860 -576 352 ) ( 860 -544 352 ) ( 860 -544 320 ) props/box_sr_m11 0 0 0 -0.500000 0.500000 0 134217728 0 +( 860 -544 352 ) ( 828 -544 352 ) ( 828 -544 320 ) props/box_sr_m11 -8 0 0 -0.500000 0.500000 0 134217728 0 +( 828 -544 352 ) ( 828 -576 352 ) ( 828 -576 320 ) props/box_sr_m11 0 0 0 -0.500000 0.500000 0 134217728 0 +} +// brush 7 +{ +( 1280 1120 56 ) ( 1248 1120 56 ) ( 1248 1088 56 ) props/box_sr_m11 0 0 0 0.500000 0.500000 0 134217728 0 +( 1248 1088 88 ) ( 1248 1120 88 ) ( 1280 1120 88 ) props/box_sr_m11 0 0 0 0.500000 0.500000 0 134217728 0 +( 1248 1088 120 ) ( 1280 1088 120 ) ( 1280 1088 56 ) props/box_sr_m11 0 -16 0 0.500000 0.500000 0 134217728 0 +( 1280 1088 120 ) ( 1280 1120 120 ) ( 1280 1120 56 ) props/box_sr_m11 0 -16 0 0.500000 0.500000 0 134217728 0 +( 1280 1120 120 ) ( 1248 1120 120 ) ( 1248 1120 56 ) props/box_sr_m11 0 -16 0 0.500000 0.500000 0 134217728 0 +( 1248 1120 120 ) ( 1248 1088 120 ) ( 1248 1088 56 ) props/box_sr_m11 0 -16 0 0.500000 0.500000 0 134217728 0 +} +// brush 8 +{ +( 1216 1280 96 ) ( 1184 1280 96 ) ( 1184 1248 96 ) props/box_sr_m11 0 0 0 0.500000 0.500000 0 134217728 0 +( 1184 1248 128 ) ( 1184 1280 128 ) ( 1216 1280 128 ) props/box_sr_m11 0 0 0 0.500000 0.500000 0 134217728 0 +( 1184 1248 160 ) ( 1216 1248 160 ) ( 1216 1248 96 ) props/box_sr_m11 0 0 0 0.500000 0.500000 0 134217728 0 +( 1216 1248 160 ) ( 1216 1280 160 ) ( 1216 1280 96 ) props/box_sr_m11 0 0 0 0.500000 0.500000 0 134217728 0 +( 1216 1280 160 ) ( 1184 1280 160 ) ( 1184 1280 96 ) props/box_sr_m11 0 0 0 0.500000 0.500000 0 134217728 0 +( 1184 1280 160 ) ( 1184 1248 160 ) ( 1184 1248 96 ) props/box_sr_m11 0 0 0 0.500000 0.500000 0 134217728 0 +} +// brush 9 +{ +( 2051 370 -80 ) ( 2115 375 -80 ) ( 2110 439 -80 ) props/box_sr_m11 63 -11 -176 0.499995 -0.500000 0 134217728 0 +( 2110 439 -48 ) ( 2115 375 -48 ) ( 2051 370 -48 ) props/box_sr_m11 64 -11 -176 0.500000 -0.500000 0 134217728 0 +( 2111 431 -16 ) ( 2047 426 -16 ) ( 2047 426 -80 ) props/box_sr_m11 14 33 -180 0.500000 -0.500000 0 134217728 0 +( 2054 435 -16 ) ( 2059 371 -16 ) ( 2059 371 -80 ) props/box_sr_m11 21 33 -180 0.500000 -0.500000 0 134217728 0 +( 2049 394 -16 ) ( 2113 399 -16 ) ( 2113 399 -80 ) props/box_sr_m11 18 32 -180 0.500000 -0.500000 0 134217728 0 +( 2091 373 -16 ) ( 2086 437 -16 ) ( 2086 437 -80 ) props/box_sr_m11 26 32 -180 0.500000 -0.500000 0 134217728 0 +} +// brush 10 +{ +( 2250 286 -80 ) ( 2190 265 -80 ) ( 2212 204 -80 ) props/box_c_m5 -55 -8 -160 0.500120 -0.500048 0 2097152 0 +( 2212 204 -48 ) ( 2190 265 -48 ) ( 2250 286 -48 ) props/box_c_m6 -55 -9 -160 0.500000 -0.500000 0 2097152 0 +( 2206 219 112 ) ( 2267 241 112 ) ( 2267 241 -80 ) props/box_c_m5 41 32 0 0.470000 0.500000 0 2097152 0 +( 2242 215 112 ) ( 2220 276 112 ) ( 2220 276 -80 ) props/box_c_m5 22 32 0 0.470000 0.500000 0 2097152 0 +( 2256 271 112 ) ( 2195 250 112 ) ( 2195 250 -80 ) props/box_c_m5 0 32 -180 0.470000 -0.500000 0 2097152 0 +( 2190 265 112 ) ( 2212 204 112 ) ( 2212 204 -80 ) props/box_c_m5 20 32 -180 0.470000 -0.500000 0 2097152 0 +} +// brush 11 +{ +( 1004 719 80 ) ( 942 701 80 ) ( 960 639 80 ) props/box_sr_m6 54 -35 -163 0.499961 -0.499961 0 134217728 0 +( 960 639 112 ) ( 942 701 112 ) ( 1004 719 112 ) props/box_sr_m5 67 -12 -163 0.500000 -0.500000 0 134217728 0 +( 956 655 126 ) ( 1017 672 126 ) ( 1017 672 78 ) props/box_sr_m6 39 32 -180 0.480000 -0.500000 0 134217728 0 +( 1006 653 120 ) ( 989 714 120 ) ( 989 714 72 ) props/box_sr_m6 49 32 -180 0.480000 -0.500000 0 134217728 0 +( 1008 703 128 ) ( 947 686 128 ) ( 947 686 80 ) props/box_sr_m6 22 32 -180 0.480000 -0.500000 0 134217728 0 +( 958 705 126 ) ( 975 644 126 ) ( 975 644 78 ) props/box_sr_m6 30 32 -180 0.480000 -0.500000 0 134217728 0 +} +// brush 12 +{ +( 808 2872 332 ) ( 808 2876 332 ) ( 732 2878 328 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 810 2876 336 ) ( 810 2872 336 ) ( 732 2870 336 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 808 2872 336 ) ( 808 2872 328 ) ( 732 2870 328 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 810 2872 336 ) ( 810 2876 336 ) ( 809 2876 332 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 808 2876 328 ) ( 808 2876 336 ) ( 732 2878 336 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 732 2874 16 ) ( 724 2874 16 ) ( 726 2870 336 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 734 2874 16 ) ( 734 2886 16 ) ( 734 2870 336 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +} +// brush 13 +{ +( 814 1982 331 ) ( 814 1986 331 ) ( 738 1988 329 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 816 1986 335 ) ( 816 1982 335 ) ( 738 1980 337 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 814 1982 335 ) ( 814 1982 327 ) ( 738 1980 329 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 816 1982 335 ) ( 816 1986 335 ) ( 815 1986 331 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 814 1986 327 ) ( 814 1986 335 ) ( 738 1988 337 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 734 1978 16 ) ( 734 1990 16 ) ( 738 1980 337 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +} +// brush 14 +{ +( -1150 1767 322 ) ( -1150 1774 322 ) ( -1227 1772 323 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1151 1775 329 ) ( -1151 1767 329 ) ( -1229 1769 327 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1227 1773 327 ) ( -1226 1772 319 ) ( -1150 1774 321 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1151 1767 329 ) ( -1151 1767 322 ) ( -1227 1769 323 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1229 1773 327 ) ( -1229 1769 327 ) ( -1226 1772 319 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1142 1766 8 ) ( -1142 1754 8 ) ( -1151 1775 329 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +} +// brush 15 +{ +( 896 1792 -32 ) ( 640 1792 -32 ) ( 640 1472 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 1472 -16 ) ( 640 1792 -16 ) ( 896 1792 -16 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 624 1792 -16 ) ( 624 1472 -16 ) ( 624 1472 -32 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( 640 2560 -32 ) ( 664 2560 -32 ) ( 652 2560 -16 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( 656 2432 -32 ) ( 640 2432 -32 ) ( 648 2432 -16 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( 704 2560 -32 ) ( 704 2536 -32 ) ( 704 2548 -16 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +} +// brush 16 +{ +( 864 1438 49 ) ( 864 1437 49 ) ( 864 1437 51 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 912 1436 50 ) ( 896 1436 50 ) ( 896 1437 51 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 768 1437 51 ) ( 768 1437 49 ) ( 784 1437 49 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 896 1436 49 ) ( 912 1436 49 ) ( 912 1437 48 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 912 1436 49 ) ( 896 1436 49 ) ( 896 1436 50 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 826 1436 52 ) ( 821 1436 47 ) ( 824 1437 50 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +} +// brush 17 +{ +( 825 1437 76 ) ( 823 1437 76 ) ( 823 1438 76 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 824 1436 -16 ) ( 824 1436 0 ) ( 825 1437 0 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 825 1437 140 ) ( 823 1437 140 ) ( 823 1437 124 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 823 1436 0 ) ( 823 1436 -16 ) ( 822 1437 -16 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 823 1436 -16 ) ( 823 1436 0 ) ( 824 1436 0 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 821 1436 47 ) ( 826 1436 52 ) ( 824 1437 50 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +} +// brush 18 +{ +( 821 1503 73 ) ( 821 1505 73 ) ( 822 1505 73 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 820 1504 -19 ) ( 820 1504 -3 ) ( 821 1503 -3 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 821 1503 137 ) ( 821 1505 137 ) ( 821 1505 121 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 820 1505 -3 ) ( 820 1505 -19 ) ( 821 1506 -19 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 820 1505 -19 ) ( 820 1505 -3 ) ( 820 1504 -3 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 820 1508 43 ) ( 820 1502 49 ) ( 821 1505 46 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +} +// brush 19 +{ +( 822 1472 46 ) ( 821 1472 46 ) ( 821 1472 48 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 820 1416 47 ) ( 820 1432 47 ) ( 821 1432 48 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 821 1568 48 ) ( 821 1568 46 ) ( 821 1552 46 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 820 1432 46 ) ( 820 1416 46 ) ( 821 1416 45 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 820 1416 46 ) ( 820 1432 46 ) ( 820 1432 47 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 820 1502 49 ) ( 820 1508 43 ) ( 821 1505 46 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +} +// brush 20 +{ +( 1096 1592 144 ) ( 1088 1592 144 ) ( 1088 1536 144 ) props2/sail_v 0 0 0 1 1 134217728 0 0 +( 1088 1536 216 ) ( 1096 1536 216 ) ( 1096 1536 144 ) props2/sail_v 0 0 0 1 1 134217728 0 0 +( 888 1616 168 ) ( 888 1560 168 ) ( 888 1560 144 ) props2/sail_v -8 16 0 1 1 134217728 2097152 0 +( 1096 1536 222 ) ( 1088 1536 222 ) ( 1088 1592 174 ) props2/sail_v 0 0 0 1 1 134217728 0 0 +( 1096 1598 166 ) ( 1088 1598 166 ) ( 1088 1598 142 ) props2/sail_v 0 0 0 1 1 134217728 0 0 +( 890 1562 166 ) ( 890 1618 166 ) ( 890 1562 142 ) props2/sail_v -8 16 0 1 1 134217728 0 0 +} +// brush 21 +{ +( 1096 1592 144 ) ( 1088 1592 144 ) ( 1088 1536 144 ) props2/sail_v 0 0 0 1 1 134217728 0 0 +( 1096 1600 168 ) ( 1088 1600 168 ) ( 1088 1600 144 ) props2/sail_v -8 16 0 1 1 134217728 2097152 0 +( 888 1616 168 ) ( 888 1560 168 ) ( 888 1560 144 ) props2/sail_v -8 16 0 1 1 134217728 2097152 0 +( 1096 1536 222 ) ( 1088 1536 222 ) ( 1088 1592 174 ) props2/sail_v 0 0 0 1 1 134217728 0 0 +( 1094 1536 166 ) ( 1094 1592 166 ) ( 1094 1592 142 ) props2/sail_v 0 0 0 1 1 134217728 0 0 +( 1088 1598 166 ) ( 1096 1598 166 ) ( 1088 1598 142 ) props2/sail_v -8 16 0 1 1 134217728 2097152 0 +} +// brush 22 +{ +( 1096 1592 144 ) ( 1088 1592 144 ) ( 1088 1536 144 ) props2/sail_v 0 0 0 1 1 134217728 0 0 +( 1088 1536 216 ) ( 1096 1536 216 ) ( 1096 1536 144 ) props2/sail_v 0 0 0 1 1 134217728 0 0 +( 1096 1536 168 ) ( 1096 1592 168 ) ( 1096 1592 144 ) props2/sail_v -8 16 0 1 1 134217728 2097152 0 +( 1096 1600 168 ) ( 1088 1600 168 ) ( 1088 1600 144 ) props2/sail_v 0 0 0 1 1 134217728 0 0 +( 1096 1536 222 ) ( 1088 1536 222 ) ( 1088 1592 174 ) props2/sail_v 0 0 0 1 1 134217728 0 0 +( 1094 1592 166 ) ( 1094 1536 166 ) ( 1094 1592 142 ) props2/sail_v -8 16 0 1 1 134217728 0 0 +} +// brush 23 +{ +( 1096 1536 224 ) ( 1088 1536 224 ) ( 1088 1592 176 ) props2/sail_v -8 0 0 1 1 134217728 2097152 0 +( 1088 1536 216 ) ( 1096 1536 216 ) ( 1096 1536 144 ) props2/sail_v 0 0 0 1 1 134217728 0 0 +( 1096 1536 168 ) ( 1096 1592 168 ) ( 1096 1592 144 ) props2/sail_v 0 0 0 1 1 134217728 0 0 +( 1096 1600 168 ) ( 1088 1600 168 ) ( 1088 1600 144 ) props2/sail_v -8 16 0 1 1 134217728 2097152 0 +( 888 1616 168 ) ( 888 1560 168 ) ( 888 1560 144 ) props2/sail_v -8 16 0 1 1 134217728 2097152 0 +( 1088 1536 222 ) ( 1096 1536 222 ) ( 1088 1592 174 ) props2/sail_v -8 0 0 1 1 134217728 2097152 0 +} +// brush 24 +{ +( 2112 1984 0 ) ( 1952 1984 0 ) ( 1952 1856 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1952 1856 16 ) ( 1952 1984 16 ) ( 2112 1984 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1952 1856 16 ) ( 2112 1856 16 ) ( 2112 1856 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2528 1912 0 ) ( 2552 1912 0 ) ( 2540 1912 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2304 2008 0 ) ( 2304 1928 0 ) ( 2304 1968 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1968 1968 0 ) ( 1968 1984 0 ) ( 1968 1976 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 25 +{ +( 2112 1984 0 ) ( 1952 1984 0 ) ( 1952 1856 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1952 1856 16 ) ( 1952 1984 16 ) ( 2112 1984 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1952 1928 0 ) ( 1968 1928 0 ) ( 1960 1928 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1976 1912 0 ) ( 1952 1912 0 ) ( 1964 1912 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2040 1920 0 ) ( 2040 1912 0 ) ( 2040 1916 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1968 1968 0 ) ( 1968 1984 0 ) ( 1968 1976 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 26 +{ +( 2112 1984 0 ) ( 1952 1984 0 ) ( 1952 1856 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1952 1856 16 ) ( 1952 1984 16 ) ( 2112 1984 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2112 1984 16 ) ( 1952 1984 16 ) ( 1952 1984 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2544 1928 0 ) ( 2528 1928 0 ) ( 2536 1928 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2304 2008 0 ) ( 2304 1928 0 ) ( 2304 1968 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1968 1968 0 ) ( 1968 1984 0 ) ( 1968 1976 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 27 +{ +( 496 1856 0 ) ( 320 1856 0 ) ( 320 1728 0 ) common/0_hint 0 0 0 1 1 0 384 0 +( 320 1728 128 ) ( 320 1856 128 ) ( 496 1856 128 ) common/0_hint 0 0 0 1 1 0 384 0 +( 320 1728 128 ) ( 496 1728 128 ) ( 496 1728 0 ) common/0_hint 0 0 0 1 1 0 384 0 +( 496 1728 128 ) ( 496 1856 128 ) ( 496 1856 0 ) common/0_hint 0 0 0 1 1 0 384 0 +( 496 1856 128 ) ( 320 1856 128 ) ( 320 1856 0 ) common/0_hint 0 0 0 1 1 0 384 0 +( 320 1856 128 ) ( 320 1728 128 ) ( 320 1728 0 ) common/0_hint 0 0 0 1 1 0 384 0 +} +// brush 28 +{ +( 1360 3072 0 ) ( 1344 3072 0 ) ( 1344 2944 0 ) common/0_hint -24 0 0 1 1 0 384 0 +( 1344 2944 128 ) ( 1344 3072 128 ) ( 1360 3072 128 ) common/0_hint -24 0 0 1 1 0 384 0 +( 1344 2944 128 ) ( 1360 2944 128 ) ( 1360 2944 0 ) common/0_hint -24 0 0 1 1 0 384 0 +( 1472 2952 128 ) ( 1472 3080 128 ) ( 1472 3080 0 ) common/0_hint 0 0 0 1 1 0 384 0 +( 1360 3072 128 ) ( 1344 3072 128 ) ( 1344 3072 0 ) common/0_hint -24 0 0 1 1 0 384 0 +( 1344 3072 128 ) ( 1344 2944 128 ) ( 1344 2944 0 ) common/0_hint 0 0 0 1 1 0 384 0 +} +// brush 29 +{ +( 1280 128 144 ) ( 1320 128 144 ) ( 1320 -216 304 ) bricks/c_pv_m2 56 -64 0 1 1 0 0 0 +( 1280 63 32 ) ( 1280 79 32 ) ( 1280 71 160 ) bricks/c_pv_m2 40 0 0 1 1 0 0 0 +( 1321 128 32 ) ( 1321 112 32 ) ( 1321 120 160 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1279 128 128 ) ( 1279 96 128 ) ( 1320 112 128 ) bricks/c_pv_m2 -24 31 -180 1 -1 0 0 0 +( 1296 -192 128 ) ( 1272 -192 128 ) ( 1284 -192 288 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1280 128 152 ) ( 1280 128 120 ) ( 1321 128 136 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +} +// brush 30 +{ +( 1432 128 144 ) ( 1472 128 144 ) ( 1472 -216 304 ) bricks/c_pv_m2 32 -64 0 1 1 0 0 0 +( 1431 63 32 ) ( 1431 79 32 ) ( 1431 71 160 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1472 128 32 ) ( 1472 112 32 ) ( 1472 120 160 ) bricks/c_pv_m2 64 32 0 1 1 0 0 0 +( 1431 128 128 ) ( 1431 96 128 ) ( 1472 112 128 ) bricks/c_pv_m2 0 32 -180 1 -1 0 0 0 +( 1296 -192 128 ) ( 1272 -192 128 ) ( 1284 -192 288 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1431 128 152 ) ( 1431 128 112 ) ( 1472 128 132 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +} +// brush 31 +{ +( 1312 -192 144 ) ( 1321 -192 144 ) ( 1321 152 144 ) bricks/b_mf_v2 -47 55 -180 1 1 0 0 0 +( 1321 152 152 ) ( 1312 152 152 ) ( 1312 152 144 ) bricks/b_sr_24 96 16 0 1 1 0 0 0 +( 1312 152 136 ) ( 1312 -192 136 ) ( 1312 -192 128 ) bricks/b_mf_v2 -56 16 -180 1 -1 0 0 0 +( 1321 128 152 ) ( 1321 472 152 ) ( 1321 472 144 ) bricks/b_sr_21 16 0 90 1 1 0 0 0 +( 1321 -192 152 ) ( 1312 -192 152 ) ( 1312 152 152 ) bricks/b_mf_v2 -47 55 -180 1 1 0 0 0 +( 1312 128 152 ) ( 1321 128 152 ) ( 1321 128 144 ) bricks/b_mf_v2 -31 16 -90 1 1 0 0 0 +} +// brush 32 +{ +( 1312 -192 136 ) ( 1321 -192 136 ) ( 1321 152 136 ) bricks/b_mf_v2 -47 55 -180 1 1 0 0 0 +( 1321 152 144 ) ( 1312 152 144 ) ( 1312 152 136 ) bricks/b_sr_24 96 8 0 1 1 0 0 0 +( 1312 152 128 ) ( 1312 -192 128 ) ( 1312 -192 120 ) bricks/b_mf_v2 -56 8 -180 1 -1 0 0 0 +( 1321 128 144 ) ( 1321 472 144 ) ( 1321 472 136 ) bricks/b_sr_21 16 0 90 1 1 0 0 0 +( 1321 -192 144 ) ( 1312 -192 144 ) ( 1312 152 144 ) bricks/b_mf_v2 -47 55 -180 1 1 0 0 0 +( 1312 128 144 ) ( 1321 128 144 ) ( 1321 128 136 ) bricks/b_mf_v2 -39 16 -90 1 1 0 0 0 +} +// brush 33 +{ +( 1431 -192 144 ) ( 1440 -192 144 ) ( 1440 152 144 ) bricks/b_mf_v2 32 -40 0 1 1 0 0 0 +( 1440 152 152 ) ( 1431 152 152 ) ( 1431 152 144 ) bricks/b_sr_24 96 16 0 1 1 0 0 0 +( 1440 -192 168 ) ( 1440 152 168 ) ( 1440 152 160 ) bricks/b_mf_v2 40 16 0 1 1 0 0 0 +( 1431 472 152 ) ( 1431 128 152 ) ( 1431 128 144 ) bricks/b_sr_21 16 0 90 1 1 0 0 0 +( 1440 -192 152 ) ( 1431 -192 152 ) ( 1431 152 152 ) bricks/b_mf_v2 32 -40 0 1 1 0 0 0 +( 1431 128 152 ) ( 1440 128 152 ) ( 1440 128 144 ) bricks/b_mf_v2 15 0 90 1.000015 1 0 0 0 +} +// brush 34 +{ +( 1431 -192 136 ) ( 1440 -192 136 ) ( 1440 152 136 ) bricks/b_mf_v2 32 -40 0 1 1 0 0 0 +( 1440 152 144 ) ( 1431 152 144 ) ( 1431 152 136 ) bricks/b_sr_24 96 8 0 1 1 0 0 0 +( 1440 -192 160 ) ( 1440 152 160 ) ( 1440 152 152 ) bricks/b_mf_v2 40 8 0 1 1 0 0 0 +( 1431 472 144 ) ( 1431 128 144 ) ( 1431 128 136 ) bricks/b_sr_21 16 0 90 1 1 0 0 0 +( 1440 -192 144 ) ( 1431 -192 144 ) ( 1431 152 144 ) bricks/b_mf_v2 32 -40 0 1 1 0 0 0 +( 1431 128 144 ) ( 1440 128 144 ) ( 1440 128 136 ) bricks/b_mf_v2 23 0 90 1.000015 1 0 0 0 +} +// brush 35 +{ +( 1468 -509 264 ) ( 1405 -500 264 ) ( 1396 -563 264 ) props/box_sr_m5 -11 -43 172 1.000086 -1.000056 0 134217728 0 +( 1396 -563 328 ) ( 1405 -500 328 ) ( 1468 -509 328 ) props/box_sr_m5 17 -4 -7 1 1 0 134217728 0 +( 1396 -563 304 ) ( 1459 -572 304 ) ( 1459 -572 296 ) props/box_sr_m6 0 8 -180 0.991089 -1 0 134217728 0 +( 1459 -572 304 ) ( 1468 -509 304 ) ( 1468 -509 296 ) props/box_sr_m6 -1 8 -180 0.991089 -1 0 134217728 0 +( 1468 -509 304 ) ( 1405 -500 304 ) ( 1405 -500 296 ) props/box_sr_m6 -54 8 -180 0.991089 -1 0 134217728 0 +( 1405 -500 304 ) ( 1396 -563 304 ) ( 1396 -563 296 ) props/box_sr_m6 7 8 -180 0.990967 -1 0 134217728 0 +} +// brush 36 +{ +( 2379 1912 -6 ) ( 2379 1928 -6 ) ( 2376 1928 0 ) metals/mt_pv_m26y 8 -1 -180 1 -1.000046 134217728 0 0 +( 2389 1928 -6 ) ( 2389 1912 -6 ) ( 2392 1912 0 ) metals/mt_pv_m26y 8 -1 -180 1 -1.000046 134217728 0 0 +( 2382 1928 0 ) ( 2382 1912 0 ) ( 2376 1912 0 ) metals/mt_pv_m26y 8 24 -90 1 -1 134217728 0 0 +( 2389 1915 -6 ) ( 2379 1915 -6 ) ( 2376 1912 0 ) metals/mt_pv_m26y 18 24 90 1 1 134217728 0 0 +( 2379 1925 -6 ) ( 2389 1925 -6 ) ( 2392 1928 0 ) metals/mt_pv_m26y 18 25 90 1 1 134217728 0 0 +( 2376 1925 -3 ) ( 2376 1917 -3 ) ( 2392 1921 -3 ) metals/mt_pv_m26y 8 24 -90 1 -1 134217728 0 0 +} +// brush 37 +{ +( 2635 1912 -6 ) ( 2635 1928 -6 ) ( 2632 1928 0 ) metals/mt_pv_m26y 8 -1 -180 1 -1.000046 134217728 0 0 +( 2645 1928 -6 ) ( 2645 1912 -6 ) ( 2648 1912 0 ) metals/mt_pv_m26y 8 -1 -180 1 -1.000046 134217728 0 0 +( 2638 1928 0 ) ( 2638 1912 0 ) ( 2632 1912 0 ) metals/mt_pv_m26y 8 24 -90 1 -1 134217728 0 0 +( 2645 1915 -6 ) ( 2635 1915 -6 ) ( 2632 1912 0 ) metals/mt_pv_m26y 18 24 90 1 1 134217728 0 0 +( 2635 1925 -6 ) ( 2645 1925 -6 ) ( 2648 1928 0 ) metals/mt_pv_m26y 18 25 90 1 1 134217728 0 0 +( 2632 1925 -3 ) ( 2632 1917 -3 ) ( 2648 1921 -3 ) metals/mt_pv_m26y 8 24 -90 1 -1 134217728 0 0 +} +// brush 38 +{ +( 2507 1912 -6 ) ( 2507 1928 -6 ) ( 2504 1928 0 ) metals/mt_pv_m26y 8 -1 -180 1 -1.000046 134217728 0 0 +( 2517 1928 -6 ) ( 2517 1912 -6 ) ( 2520 1912 0 ) metals/mt_pv_m26y 8 -1 -180 1 -1.000046 134217728 0 0 +( 2510 1928 0 ) ( 2510 1912 0 ) ( 2504 1912 0 ) metals/mt_pv_m26y 8 24 -90 1 -1 134217728 0 0 +( 2517 1915 -6 ) ( 2507 1915 -6 ) ( 2504 1912 0 ) metals/mt_pv_m26y 18 24 90 1 1 134217728 0 0 +( 2507 1925 -6 ) ( 2517 1925 -6 ) ( 2520 1928 0 ) metals/mt_pv_m26y 18 25 90 1 1 134217728 0 0 +( 2504 1925 -3 ) ( 2504 1917 -3 ) ( 2520 1921 -3 ) metals/mt_pv_m26y 8 24 -90 1 -1 134217728 0 0 +} +// brush 39 +{ +( 976 384 304 ) ( 960 384 304 ) ( 960 320 304 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 960 320 320 ) ( 960 384 320 ) ( 976 384 320 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +( 960 320 312 ) ( 976 320 312 ) ( 976 320 304 ) metals/mt_sr_b1a 0 8 0 1 1 0 16777216 0 +( 976 320 312 ) ( 976 384 312 ) ( 976 384 304 ) metals/mt_sr_b1a 0 8 0 1 1 0 16777216 0 +( 976 384 312 ) ( 960 384 312 ) ( 960 384 304 ) metals/mt_sr_b1a 0 8 0 1 1 0 16777216 0 +( 960 384 312 ) ( 960 320 312 ) ( 960 320 304 ) metals/mt_sr_b1a 0 8 0 1 1 0 16777216 0 +} +// brush 40 +{ +( 976 384 232 ) ( 960 384 232 ) ( 960 320 232 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +( 960 320 240 ) ( 960 384 240 ) ( 976 384 240 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 960 320 240 ) ( 976 320 240 ) ( 976 320 232 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +( 976 320 240 ) ( 976 384 240 ) ( 976 384 232 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +( 976 384 240 ) ( 960 384 240 ) ( 960 384 232 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +( 960 384 240 ) ( 960 320 240 ) ( 960 320 232 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +} +// brush 41 +{ +( 1184 320 232 ) ( 1176 320 232 ) ( 1176 128 248 ) metals/m_pv_v5 0 40 0 1 1 0 0 0 +( 896 128 528 ) ( 1280 128 528 ) ( 1280 128 272 ) metals/m_pv_v5 -1 32 0 1 1 0 16777216 0 +( 1184 320 312 ) ( 1184 320 232 ) ( 1184 128 248 ) metals/m_pv_v5 -8 44 -5 1 1 0 16777216 0 +( 1176 312 232 ) ( 1176 312 312 ) ( 1176 128 328 ) metals/m_pv_v5 8 16 0 1 1 0 0 0 +( 1176 320 312 ) ( 1184 320 312 ) ( 1184 128 328 ) metals/m_pv_v5 0 40 0 1 1 0 0 0 +( 1176 312 312 ) ( 1176 312 232 ) ( 1184 320 232 ) metals/m_pv_v5 0 40 0 1 1 0 0 0 +} +// brush 42 +{ +( 976 312 224 ) ( 960 312 224 ) ( 960 272 224 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 960 272 312 ) ( 960 312 312 ) ( 976 312 312 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 960 272 312 ) ( 976 272 312 ) ( 976 272 224 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 976 272 312 ) ( 976 312 312 ) ( 976 312 224 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 976 320 312 ) ( 960 320 312 ) ( 960 320 224 ) metals/m_pv_v5 -1 8 0 1 1 0 16777216 0 +( 960 312 312 ) ( 960 272 312 ) ( 960 272 224 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +} +// brush 43 +{ +( 976 512 224 ) ( 960 512 224 ) ( 960 384 224 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 960 384 312 ) ( 960 512 312 ) ( 976 512 312 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 960 384 312 ) ( 976 384 312 ) ( 976 384 224 ) metals/m_pv_v5 -1 16 0 1 1 0 16777216 0 +( 976 496 312 ) ( 976 496 224 ) ( 976 384 224 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 976 496 224 ) ( 976 496 312 ) ( 960 512 312 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 960 512 312 ) ( 960 384 312 ) ( 960 384 224 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +} +// brush 44 +{ +( 1216 392 304 ) ( 832 392 304 ) ( 832 376 304 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 832 320 592 ) ( 1216 320 592 ) ( 1216 320 336 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1248 376 592 ) ( 1248 392 592 ) ( 1248 392 336 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1224 384 592 ) ( 840 384 592 ) ( 840 384 336 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1216 376 312 ) ( 1192 376 312 ) ( 1204 392 312 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1184 352 304 ) ( 1184 384 304 ) ( 1184 368 312 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +} +// brush 45 +{ +( 1216 392 232 ) ( 832 392 232 ) ( 832 376 232 ) metals/m_pv_v5 0 -104 180 1 1 0 0 0 +( 832 320 520 ) ( 1216 320 520 ) ( 1216 320 264 ) metals/m_pv_v5 0 8 0 1 1 0 0 0 +( 1248 376 520 ) ( 1248 392 520 ) ( 1248 392 264 ) metals/m_pv_v5 104 -8 180 1 1 0 0 0 +( 1224 384 520 ) ( 840 384 520 ) ( 840 384 264 ) metals/m_pv_v5 0 -8 180 1 1 0 0 0 +( 1216 376 240 ) ( 1192 376 240 ) ( 1204 392 240 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1184 352 232 ) ( 1184 384 232 ) ( 1184 368 240 ) metals/m_pv_v5 -8 0 90 1 1 0 16777216 0 +} +// brush 46 +{ +( 1352 336 232 ) ( 968 336 232 ) ( 968 320 232 ) metals/m_pv_v5 -72 56 0 1 1 0 0 0 +( 1256 392 312 ) ( 1256 392 232 ) ( 1256 320 232 ) metals/m_pv_v5 -48 16 0 1 1 0 0 0 +( 1256 392 232 ) ( 1256 392 312 ) ( 1248 384 312 ) metals/m_pv_v5 -72 16 0 1 1 0 0 0 +( 1248 288 408 ) ( 1248 272 408 ) ( 1248 272 152 ) metals/m_pv_v5 -1 16 0 1 1 0 16777216 0 +( 1352 320 312 ) ( 1328 320 312 ) ( 1340 336 312 ) metals/m_pv_v5 -72 56 0 1 1 0 0 0 +( 1256 320 232 ) ( 1248 320 232 ) ( 1252 320 312 ) metals/m_pv_v5 -72 40 0 1 1 0 0 0 +} +// brush 47 +{ +( 1216 400 232 ) ( 832 400 232 ) ( 832 384 232 ) metals/m_pv_v5 -1 16 0 1 1 0 16777216 0 +( 1248 384 312 ) ( 1248 384 232 ) ( 1184 384 232 ) metals/m_pv_v5 -1 16 0 1 1 0 16777216 0 +( 1248 384 232 ) ( 1248 384 312 ) ( 1256 392 312 ) metals/m_pv_v5 -1 16 0 1 1 0 16777216 0 +( 1360 392 520 ) ( 976 392 520 ) ( 976 392 264 ) metals/m_pv_v5 -1 16 0 1 1 0 16777216 0 +( 1216 384 312 ) ( 1192 384 312 ) ( 1204 400 312 ) metals/m_pv_v5 -1 16 0 1 1 0 16777216 0 +( 1184 384 232 ) ( 1184 392 232 ) ( 1184 388 312 ) metals/m_pv_v5 -1 16 0 1 1 0 16777216 0 +} +// brush 48 +{ +( 976 392 232 ) ( 976 384 232 ) ( 1184 384 232 ) metals/m_pv_v5 -1 16 0 1 1 0 16777216 0 +( 976 384 232 ) ( 976 384 312 ) ( 1184 384 312 ) metals/m_pv_v5 -1 16 0 1 1 0 16777216 0 +( 976 392 312 ) ( 976 392 232 ) ( 1184 392 232 ) metals/m_pv_v5 -1 16 0 1 1 0 16777216 0 +( 976 392 248 ) ( 976 392 328 ) ( 976 384 328 ) metals/m_pv_v5 -1 16 0 1 1 0 16777216 0 +( 976 384 312 ) ( 976 392 312 ) ( 1184 392 312 ) metals/m_pv_v5 -1 16 0 1 1 0 16777216 0 +( 1184 392 312 ) ( 1184 392 232 ) ( 1184 384 232 ) metals/m_pv_v5 -1 16 0 1 1 0 16777216 0 +} +// brush 49 +{ +( 1216 392 232 ) ( 832 392 232 ) ( 832 376 232 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 832 320 520 ) ( 1216 320 520 ) ( 1216 320 264 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1224 384 520 ) ( 840 384 520 ) ( 840 384 264 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 976 392 520 ) ( 976 376 520 ) ( 976 376 264 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1216 376 240 ) ( 1192 376 240 ) ( 1204 392 240 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1184 384 232 ) ( 1184 352 232 ) ( 1184 368 240 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +} +// brush 50 +{ +( 1184 128 320 ) ( 1248 128 320 ) ( 1248 320 304 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1184 320 304 ) ( 1184 320 312 ) ( 1184 128 328 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1248 128 320 ) ( 1184 128 320 ) ( 1184 128 328 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1248 320 312 ) ( 1248 320 304 ) ( 1248 128 320 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1184 320 304 ) ( 1248 320 304 ) ( 1248 320 312 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1184 320 312 ) ( 1248 320 312 ) ( 1248 128 328 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +} +// brush 51 +{ +( 1256 320 232 ) ( 1248 320 232 ) ( 1248 128 248 ) metals/m_pv_v5 -8 44 -5 1 1 0 16777216 0 +( 1256 320 312 ) ( 1256 320 232 ) ( 1256 128 248 ) metals/m_pv_v5 -8 44 -5 1 1 0 16777216 0 +( 1248 320 232 ) ( 1248 320 312 ) ( 1248 128 328 ) metals/m_pv_v5 -8 44 -5 1 1 0 16777216 0 +( 1248 320 312 ) ( 1256 320 312 ) ( 1256 128 328 ) metals/m_pv_v5 -8 44 -5 1 1 0 16777216 0 +( 1256 128 248 ) ( 1248 128 248 ) ( 1252 128 328 ) metals/m_pv_v5 -8 44 -5 1 1 0 16777216 0 +( 1248 320 232 ) ( 1256 320 232 ) ( 1252 320 312 ) metals/m_pv_v5 -8 44 -5 1 1 0 16777216 0 +} +// brush 52 +{ +( 1248 320 232 ) ( 1184 320 232 ) ( 1184 128 248 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1184 320 232 ) ( 1184 320 240 ) ( 1184 128 256 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1184 128 256 ) ( 1248 128 256 ) ( 1248 128 248 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1248 320 240 ) ( 1248 320 232 ) ( 1248 128 248 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1248 320 240 ) ( 1184 320 240 ) ( 1184 320 232 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1184 320 240 ) ( 1248 320 240 ) ( 1248 128 256 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +} +// brush 53 +{ +( 1352 336 248 ) ( 968 336 248 ) ( 968 320 248 ) metals/m_pv_v5 -1 32 0 1 1 0 16777216 0 +( 968 64 536 ) ( 1352 64 536 ) ( 1352 64 280 ) metals/m_pv_v5 -1 32 0 1 1 0 16777216 0 +( 1256 320 528 ) ( 1256 336 528 ) ( 1256 336 272 ) metals/m_pv_v5 -1 32 0 1 1 0 16777216 0 +( 1248 288 424 ) ( 1248 272 424 ) ( 1248 272 168 ) metals/m_pv_v5 -1 32 0 1 1 0 16777216 0 +( 1352 320 328 ) ( 1328 320 328 ) ( 1340 336 328 ) metals/m_pv_v5 -1 32 0 1 1 0 16777216 0 +( 1248 128 248 ) ( 1256 128 248 ) ( 1252 128 328 ) metals/m_pv_v5 -1 32 0 1 1 0 16777216 0 +} +// brush 54 +{ +( 1080 206 256 ) ( 1028 206 256 ) ( 1028 162 256 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 1080 148 260 ) ( 1036 192 260 ) ( 1036 208 260 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 1064 148 252 ) ( 1064 148 324 ) ( 1080 164 324 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 1080 164 252 ) ( 1080 164 324 ) ( 1036 208 324 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 1020 192 324 ) ( 1020 192 252 ) ( 1036 208 252 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 1036 192 260 ) ( 1080 148 260 ) ( 1064 148 256 ) common/0_clip 0 16 0 1 1 196608 128 0 +} +// brush 55 +{ +( 704 256 8 ) ( 640 256 8 ) ( 640 192 8 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 640 192 72 ) ( 640 256 72 ) ( 704 256 72 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 640 192 56 ) ( 704 192 56 ) ( 704 192 8 ) props/box_sr_m6 0 8 0 1 1 0 134217728 0 +( 704 192 56 ) ( 704 256 56 ) ( 704 256 8 ) props/box_sr_m6 0 -56 0 1 1 0 134217728 0 +( 704 256 56 ) ( 640 256 56 ) ( 640 256 8 ) props/box_sr_m6 0 -56 0 1 1 0 134217728 0 +( 640 256 56 ) ( 640 192 56 ) ( 640 192 8 ) props/box_sr_m6 0 8 0 1 1 0 134217728 0 +} +// brush 56 +{ +( 1356 296 248 ) ( 972 296 248 ) ( 972 280 248 ) metals/m_pv_v5 -72 8 0 1 1 0 0 0 +( 968 56 544 ) ( 1352 56 544 ) ( 1352 56 288 ) metals/m_pv_v5 -72 32 0 1 1 0 0 0 +( 1256 280 544 ) ( 1256 296 544 ) ( 1256 296 288 ) metals/m_pv_v5 -8 32 0 1 1 0 0 0 +( 1352 64 544 ) ( 968 64 544 ) ( 968 64 288 ) metals/m_pv_v5 -1 32 0 1 1 0 16777216 0 +( 1184 248 432 ) ( 1184 232 432 ) ( 1184 232 176 ) metals/m_pv_v5 39 32 0 1 1 0 0 0 +( 1352 280 328 ) ( 1328 280 328 ) ( 1340 296 328 ) metals/m_pv_v5 -72 8 0 1 1 0 0 0 +} +// brush 57 +{ +( 1184 48 248 ) ( 1184 64 248 ) ( 1152 64 248 ) metals/m_pv_v5 -1 32 0 1 1 0 16777216 0 +( 1184 64 328 ) ( 1184 48 328 ) ( 1152 48 328 ) metals/m_pv_v5 -1 32 0 1 1 0 16777216 0 +( 1184 64 240 ) ( 1184 0 240 ) ( 1184 0 256 ) metals/m_pv_v5 -1 32 0 1 1 0 16777216 0 +( 1184 64 240 ) ( 1184 64 320 ) ( 1152 64 320 ) metals/m_pv_v5 -1 32 0 1 1 0 16777216 0 +( 1152 -264 256 ) ( 1152 -264 240 ) ( 1152 120 240 ) metals/m_pv_v5 -1 32 0 1 1 0 16777216 0 +( 1184 56 320 ) ( 1184 56 240 ) ( 1152 56 240 ) metals/m_pv_v5 -1 32 0 1 1 0 16777216 0 +} +// brush 58 +{ +( 1184 128 256 ) ( 1184 144 256 ) ( 1152 144 256 ) metals/m_pv_v5 2 33 325 1 1 0 0 0 +( 1184 144 328 ) ( 1184 128 328 ) ( 1152 128 328 ) metals/m_pv_v5 2 33 325 1 1 0 0 0 +( 1176 144 256 ) ( 1176 80 256 ) ( 1176 80 272 ) metals/m_pv_v5 -1 24 0 1 1 0 0 0 +( 1176 136 256 ) ( 1176 136 336 ) ( 1144 136 336 ) metals/m_pv_v5 11 46 325 1 1 0 0 0 +( 1152 -184 272 ) ( 1152 -184 256 ) ( 1152 200 256 ) metals/m_pv_v5 11 46 325 1 1 0 0 0 +( 1184 128 336 ) ( 1184 128 256 ) ( 1152 128 256 ) metals/m_pv_v5 -1 32 0 1 1 0 16777216 0 +} +// brush 59 +{ +( 1188 64 320 ) ( 1188 128 320 ) ( 1152 128 320 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1188 128 328 ) ( 1188 64 328 ) ( 1152 64 328 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1248 128 320 ) ( 1248 64 320 ) ( 1248 64 336 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1188 128 320 ) ( 1188 128 336 ) ( 1152 128 336 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1152 -200 336 ) ( 1152 -200 320 ) ( 1152 184 320 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1188 64 336 ) ( 1188 64 320 ) ( 1152 64 320 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +} +// brush 60 +{ +( 1184 64 248 ) ( 1184 128 248 ) ( 1152 128 248 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1184 128 256 ) ( 1184 64 256 ) ( 1152 64 256 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1248 128 240 ) ( 1248 64 240 ) ( 1248 64 256 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1184 128 240 ) ( 1184 128 256 ) ( 1152 128 256 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1152 -200 256 ) ( 1152 -200 240 ) ( 1152 184 240 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1184 64 256 ) ( 1184 64 240 ) ( 1152 64 240 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +} +// brush 61 +{ +( 824 376 240 ) ( 776 376 240 ) ( 776 256 240 ) bricks/c_sr_m8d -8 -8 0 1 1 0 0 0 +( 776 256 256 ) ( 776 376 256 ) ( 824 376 256 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1152 512 256 ) ( 1152 512 240 ) ( 1152 -256 240 ) bricks/c_sr_m8d 8 0 0 1 1 0 0 0 +( 1160 128 240 ) ( 1160 128 256 ) ( 1096 128 256 ) bricks/c_sr_m8d -8 0 0 1 1 0 0 0 +( 1128 -200 256 ) ( 1128 -200 240 ) ( 1128 184 240 ) bricks/c_sr_m8d 8 0 0 1 1 0 0 0 +( 1104 64 240 ) ( 1104 64 256 ) ( 1168 64 256 ) bricks/c_sr_m8d -8 0 0 1 1 0 0 0 +} +// brush 62 +{ +( 1168 400 320 ) ( 1152 400 320 ) ( 1152 128 320 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1152 128 384 ) ( 1152 400 384 ) ( 1168 400 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1152 64 384 ) ( 1168 64 384 ) ( 1168 64 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1152 128 384 ) ( 1152 400 384 ) ( 1152 400 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1184 128 384 ) ( 1168 128 384 ) ( 1168 128 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1128 416 384 ) ( 1128 144 384 ) ( 1128 144 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 63 +{ +( 1168 464 256 ) ( 1152 464 256 ) ( 1152 192 256 ) bricks/b_sr_20a 0 64 0 1 1 0 0 0 +( 1152 192 384 ) ( 1152 464 384 ) ( 1168 464 384 ) bricks/b_sr_20a 0 64 0 1 1 0 0 0 +( 1136 128 384 ) ( 1152 128 384 ) ( 1152 128 128 ) metals/m_pv_v5 -1 32 0 1 1 0 16777216 0 +( 1152 192 384 ) ( 1152 464 384 ) ( 1152 464 128 ) bricks/b_sr_20a -64 0 0 1 1 0 0 0 +( 1176 256 384 ) ( 1160 256 384 ) ( 1160 256 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1128 480 384 ) ( 1128 208 384 ) ( 1128 208 128 ) bricks/b_sr_20a -64 0 0 1 1 0 0 0 +} +// brush 64 +{ +( 640 184 256 ) ( 624 184 256 ) ( 624 -88 256 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 624 -88 288 ) ( 624 184 288 ) ( 640 184 288 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 624 592 272 ) ( 640 592 272 ) ( 640 592 128 ) metals/mt_sr_b1a 0 6 0 1 1 0 8388608 0 +( 1296 -440 272 ) ( 1296 -168 272 ) ( 1296 -168 128 ) metals/mt_sr_b1a 0 6 0 1 1 0 8388608 0 +( 1032 624 272 ) ( 1016 624 272 ) ( 1016 624 128 ) metals/mt_sr_b1a 0 6 0 1 1 0 8388608 0 +( 1280 560 272 ) ( 1280 288 272 ) ( 1280 288 128 ) common/li_mf_v16 16 0 0 1 1 0 8388609 1500 +} +// brush 65 +{ +( 640 184 232 ) ( 624 184 232 ) ( 624 -88 232 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 624 -88 256 ) ( 624 184 256 ) ( 640 184 256 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 624 592 248 ) ( 640 592 248 ) ( 640 592 104 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 1296 -440 248 ) ( 1296 -168 248 ) ( 1296 -168 104 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 1032 624 248 ) ( 1016 624 248 ) ( 1016 624 104 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 1280 560 248 ) ( 1280 288 248 ) ( 1280 288 104 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +} +// brush 66 +{ +( 640 184 288 ) ( 624 184 288 ) ( 624 -88 288 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 624 -88 312 ) ( 624 184 312 ) ( 640 184 312 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 624 592 304 ) ( 640 592 304 ) ( 640 592 160 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 1296 -440 304 ) ( 1296 -168 304 ) ( 1296 -168 160 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 1032 624 304 ) ( 1016 624 304 ) ( 1016 624 160 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 1280 560 304 ) ( 1280 288 304 ) ( 1280 288 160 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +} +// brush 67 +{ +( 640 104 232 ) ( 624 104 232 ) ( 624 -168 232 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 624 -168 312 ) ( 624 104 312 ) ( 640 104 312 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 624 512 304 ) ( 640 512 304 ) ( 640 512 160 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 1296 -520 304 ) ( 1296 -248 304 ) ( 1296 -248 160 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 1032 592 304 ) ( 1016 592 304 ) ( 1016 592 160 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 1280 480 304 ) ( 1280 208 304 ) ( 1280 208 160 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +} +// brush 68 +{ +( 1232 280 256 ) ( 848 280 256 ) ( 848 264 256 ) metals/mt_sr_b1a 32 -18 0 1 1 0 8388608 0 +( 696 264 480 ) ( 1080 264 480 ) ( 1080 264 224 ) metals/mt_sr_b1a 32 -18 0 1 1 0 8388608 0 +( 880 256 480 ) ( 880 272 480 ) ( 880 272 224 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 1224 272 480 ) ( 840 272 480 ) ( 840 272 224 ) common/li_mf_v16 48 0 0 1 1 0 8388609 1500 +( 848 288 480 ) ( 848 272 480 ) ( 848 272 224 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 1232 264 288 ) ( 1208 264 288 ) ( 1220 280 288 ) metals/mt_sr_b1a 32 -18 0 1 1 0 8388608 0 +} +// brush 69 +{ +( 1264 272 256 ) ( 880 272 256 ) ( 880 256 256 ) metals/mt_sr_b1a 0 -26 0 1 1 0 8388608 0 +( 728 264 480 ) ( 1112 264 480 ) ( 1112 264 224 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 960 248 480 ) ( 960 264 480 ) ( 960 264 224 ) metals/mt_sr_b1a 8 -18 0 1 1 0 8388608 0 +( 1256 272 480 ) ( 872 272 480 ) ( 872 272 224 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 880 280 480 ) ( 880 264 480 ) ( 880 264 224 ) metals/mt_sr_b1a 8 -18 0 1 1 0 8388608 0 +( 1264 256 288 ) ( 1240 256 288 ) ( 1252 272 288 ) metals/mt_sr_b1a 0 -26 0 1 1 0 8388608 0 +} +// brush 70 +{ +( 1152 280 256 ) ( 768 280 256 ) ( 768 264 256 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 616 264 480 ) ( 1000 264 480 ) ( 1000 264 224 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 848 256 480 ) ( 848 272 480 ) ( 848 272 224 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 1144 272 480 ) ( 760 272 480 ) ( 760 272 224 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 768 288 480 ) ( 768 272 480 ) ( 768 272 224 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 1152 264 288 ) ( 1128 264 288 ) ( 1140 280 288 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +} +// brush 71 +{ +( 1152 280 232 ) ( 768 280 232 ) ( 768 264 232 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 728 264 456 ) ( 1112 264 456 ) ( 1112 264 200 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 960 264 456 ) ( 960 280 456 ) ( 960 280 200 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 1144 272 456 ) ( 760 272 456 ) ( 760 272 200 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 768 288 456 ) ( 768 272 456 ) ( 768 272 200 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 1152 264 256 ) ( 1128 264 256 ) ( 1140 280 256 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +} +// brush 72 +{ +( 432 448 144 ) ( -16 448 144 ) ( -16 432 144 ) floors/dr_pv_vv1d 0 64 0 1 1 0 8388608 0 +( -16 440 288 ) ( 432 440 288 ) ( 432 440 160 ) floors/dr_pv_vv1d 0 64 0 1 1 0 8388608 0 +( 432 448 288 ) ( -16 448 288 ) ( -16 448 160 ) floors/dr_pv_vv1d 0 64 0 1 1 0 8388608 0 +( 64 432 152 ) ( 16 432 152 ) ( 40 448 152 ) floors/dr_pv_vv1d 0 64 0 1 1 0 8388608 0 +( 48 432 96 ) ( 48 448 96 ) ( 48 440 256 ) floors/dr_pv_vv1d 0 64 0 1 1 0 8388608 0 +( 64 448 96 ) ( 64 432 96 ) ( 64 440 256 ) floors/dr_pv_vv1d 0 64 0 1 1 0 8388608 0 +} +// brush 73 +{ +( 384 448 144 ) ( -64 448 144 ) ( -64 432 144 ) floors/dr_pv_vv1d 0 64 0 1 1 0 8388608 0 +( -64 440 280 ) ( 384 440 280 ) ( 384 440 152 ) floors/dr_pv_vv1d 0 64 0 1 1 0 8388608 0 +( 384 448 280 ) ( -64 448 280 ) ( -64 448 152 ) floors/dr_pv_vv1d 0 64 0 1 1 0 8388608 0 +( 16 432 152 ) ( -32 432 152 ) ( -8 448 152 ) floors/dr_pv_vv1d 0 64 0 1 1 0 8388608 0 +( 0 432 88 ) ( 0 448 88 ) ( 0 440 248 ) floors/dr_pv_vv1d 0 64 0 1 1 0 8388608 0 +( 16 448 88 ) ( 16 432 88 ) ( 16 440 248 ) floors/dr_pv_vv1d 0 64 0 1 1 0 8388608 0 +} +// brush 74 +{ +( 384 448 152 ) ( -64 448 152 ) ( -64 432 152 ) floors/dr_pv_vv1d 0 64 0 1 1 0 8388608 0 +( -64 440 288 ) ( 384 440 288 ) ( 384 440 160 ) floors/dr_pv_vv1d 0 64 0 1 1 0 8388608 0 +( 384 448 288 ) ( -64 448 288 ) ( -64 448 160 ) floors/dr_pv_vv1d 0 64 0 1 1 0 8388608 0 +( 16 432 176 ) ( -32 432 176 ) ( -8 448 176 ) floors/dr_pv_vv1d 0 64 0 1 1 0 8388608 0 +( 0 432 96 ) ( 0 448 96 ) ( 0 440 256 ) floors/dr_pv_vv1d 0 64 0 1 1 0 8388608 0 +( 64 448 96 ) ( 64 432 96 ) ( 64 440 256 ) floors/dr_pv_vv1d 0 64 0 1 1 0 8388608 0 +} +// brush 75 +{ +( 384 440 144 ) ( -64 440 144 ) ( -64 424 144 ) props/sign_v1 0 64 0 0.500000 0.500000 0 0 0 +( -64 440 256 ) ( 384 440 256 ) ( 384 440 128 ) props/sign_v2 32 64 0 0.500000 0.500000 0 8388608 0 +( 384 448 256 ) ( -64 448 256 ) ( -64 448 128 ) props/sign_v1 0 64 0 0.500000 0.500000 0 0 0 +( 16 424 152 ) ( -32 424 152 ) ( -8 440 152 ) props/sign_v1 0 64 0 0.500000 0.500000 0 0 0 +( 16 424 64 ) ( 16 440 64 ) ( 16 432 224 ) props/sign_v1 0 64 0 0.500000 0.500000 0 0 0 +( 48 440 64 ) ( 48 424 64 ) ( 48 432 224 ) props/sign_v1 0 64 0 0.500000 0.500000 0 0 0 +} +// brush 76 +{ +( 1216 704 312 ) ( 960 704 312 ) ( 960 512 312 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +( 960 512 320 ) ( 960 704 320 ) ( 1216 704 320 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +( 960 512 320 ) ( 1216 512 320 ) ( 1216 512 312 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +( 1296 512 320 ) ( 1296 704 320 ) ( 1296 704 312 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +( 768 704 320 ) ( 768 704 312 ) ( 1344 704 312 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +( 768 704 312 ) ( 768 704 320 ) ( 960 512 320 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +} +// brush 77 +{ +( 640 216 232 ) ( 624 216 232 ) ( 624 -56 232 ) metals/mt_sr_b1a 0 -18 0 1 1 0 0 0 +( 624 -56 312 ) ( 624 216 312 ) ( 640 216 312 ) metals/mt_sr_b1a 0 -18 0 1 1 0 0 0 +( 624 624 304 ) ( 640 624 304 ) ( 640 624 160 ) metals/mt_sr_b1a 0 -18 0 1 1 0 0 0 +( 1296 -408 304 ) ( 1296 -136 304 ) ( 1296 -136 160 ) metals/mt_sr_b1a 0 -18 0 1 1 0 0 0 +( 1032 704 304 ) ( 1016 704 304 ) ( 1016 704 160 ) metals/mt_sr_b1a 0 -18 0 1 1 0 0 0 +( 1280 592 304 ) ( 1280 320 304 ) ( 1280 320 160 ) metals/mt_sr_b1a 0 -18 0 1 1 0 0 0 +} +// brush 78 +{ +( 1344 512 224 ) ( 1056 512 224 ) ( 1056 496 224 ) bricks/b_mf_v2 -64 24 0 1 1 0 0 0 +( 1056 496 312 ) ( 1056 512 312 ) ( 1344 512 312 ) bricks/b_mf_v2 -64 24 0 1 1 0 0 0 +( 1056 496 312 ) ( 1344 496 312 ) ( 1344 496 224 ) bricks/b_mf_v2 -64 24 0 1 1 0 0 0 +( 1296 496 312 ) ( 1296 512 312 ) ( 1296 512 224 ) bricks/b_mf_v2 -64 24 0 1 1 0 0 0 +( 1344 512 312 ) ( 1056 512 312 ) ( 1056 512 224 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 1056 512 312 ) ( 1056 496 312 ) ( 1056 496 224 ) bricks/b_mf_v2 -64 24 0 1 1 0 0 0 +} +// brush 79 +{ +( 1152 576 224 ) ( 896 576 224 ) ( 896 384 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 896 384 232 ) ( 896 576 232 ) ( 1152 576 232 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +( 888 512 232 ) ( 1144 512 232 ) ( 1144 512 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1184 384 232 ) ( 1184 576 232 ) ( 1184 576 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1152 576 232 ) ( 896 576 232 ) ( 896 576 224 ) metals/mt_sr_b1a 32 -26 0 1 1 0 0 0 +( 1120 576 232 ) ( 1120 384 232 ) ( 1120 384 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +} +// brush 80 +{ +( 1152 704 224 ) ( 896 704 224 ) ( 896 512 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 896 512 232 ) ( 896 704 232 ) ( 1152 704 232 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +( 888 640 232 ) ( 1144 640 232 ) ( 1144 640 224 ) metals/mt_sr_b1a 32 -26 0 1 1 0 0 0 +( 1184 512 232 ) ( 1184 704 232 ) ( 1184 704 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1152 704 232 ) ( 896 704 232 ) ( 896 704 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1120 704 232 ) ( 1120 512 232 ) ( 1120 512 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +} +// brush 81 +{ +( 992 704 224 ) ( 736 704 224 ) ( 736 512 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 736 512 232 ) ( 736 704 232 ) ( 992 704 232 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +( 736 512 232 ) ( 992 512 232 ) ( 992 512 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1120 512 232 ) ( 1120 704 232 ) ( 1120 704 224 ) metals/mt_sr_b1a 0 38 0 1 1 0 0 0 +( 768 704 232 ) ( 768 704 224 ) ( 1120 704 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 768 704 224 ) ( 768 704 232 ) ( 960 512 232 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +} +// brush 82 +{ +( 688 232 224 ) ( 672 232 224 ) ( 672 -40 224 ) bricks/b_mf_v2 96 32 0 1 1 0 0 0 +( 672 -40 312 ) ( 672 232 312 ) ( 688 232 312 ) bricks/b_mf_v2 96 32 0 1 1 0 0 0 +( 680 704 304 ) ( 696 704 304 ) ( 696 704 160 ) metals/mt_sr_b1a 0 -18 0 1 1 0 0 0 +( 1296 -232 304 ) ( 1296 40 304 ) ( 1296 40 160 ) bricks/b_mf_v2 -64 24 0 1 1 0 0 0 +( 640 720 304 ) ( 624 720 304 ) ( 624 720 160 ) metals/m_pv_v5 32 8 0 1 1 0 0 0 +( 768 608 304 ) ( 768 336 304 ) ( 768 336 160 ) bricks/b_mf_v2 -64 32 0 1 1 0 0 0 +} +// brush 83 +{ +( 960 48 312 ) ( 768 48 312 ) ( 768 -72 312 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +( 768 -72 320 ) ( 768 48 320 ) ( 960 48 320 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +( 824 272 232 ) ( 1016 272 232 ) ( 1016 272 224 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +( 960 512 320 ) ( 960 512 312 ) ( 960 272 312 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +( 960 512 312 ) ( 960 512 320 ) ( 768 704 320 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +( 768 48 232 ) ( 768 -72 232 ) ( 768 -72 224 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +} +// brush 84 +{ +( 688 232 224 ) ( 672 232 224 ) ( 672 -40 224 ) bricks/b_mf_v2 96 32 0 1 1 0 0 0 +( 672 -40 312 ) ( 672 232 312 ) ( 688 232 312 ) bricks/b_mf_v2 96 32 0 1 1 0 0 0 +( 672 272 304 ) ( 688 272 304 ) ( 688 272 160 ) bricks/b_mf_v2 96 32 0 1 1 0 0 0 +( 768 -232 304 ) ( 768 40 304 ) ( 768 40 160 ) metals/mt_sr_b1a 0 -18 0 1 1 0 0 0 +( 688 720 304 ) ( 672 720 304 ) ( 672 720 160 ) metals/m_pv_v5 32 8 0 1 1 0 0 0 +( 752 608 304 ) ( 752 336 304 ) ( 752 336 160 ) bricks/b_mf_v2 -64 32 0 1 1 0 0 0 +} +// brush 85 +{ +( 1152 280 288 ) ( 768 280 288 ) ( 768 264 288 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 728 264 512 ) ( 1112 264 512 ) ( 1112 264 256 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 1056 264 512 ) ( 1056 280 512 ) ( 1056 280 256 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 1152 272 512 ) ( 768 272 512 ) ( 768 272 256 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 768 280 512 ) ( 768 264 512 ) ( 768 264 256 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 1152 264 384 ) ( 1128 264 384 ) ( 1140 280 384 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +} +// brush 86 +{ +( 976 384 224 ) ( 960 384 224 ) ( 960 112 224 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 960 112 312 ) ( 960 384 312 ) ( 976 384 312 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 976 496 224 ) ( 976 496 312 ) ( 1056 496 312 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 1056 240 304 ) ( 1056 512 304 ) ( 1056 512 160 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 960 512 304 ) ( 944 512 304 ) ( 944 512 160 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +( 976 496 312 ) ( 976 496 224 ) ( 960 512 224 ) metals/mt_sr_b1a 0 -18 0 1 1 0 8388608 0 +} +// brush 87 +{ +( 976 384 304 ) ( 976 320 304 ) ( 1184 320 304 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 976 320 304 ) ( 976 320 312 ) ( 1184 320 312 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 1184 368 592 ) ( 1184 384 592 ) ( 1184 384 336 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 976 384 312 ) ( 976 384 304 ) ( 1184 384 304 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 976 400 592 ) ( 976 384 592 ) ( 976 384 336 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +( 976 320 312 ) ( 976 384 312 ) ( 1184 384 312 ) metals/m_pv_v5 0 0 90 1 1 0 16777216 0 +} +// brush 88 +{ +( 976 320 232 ) ( 976 312 232 ) ( 1184 312 232 ) metals/m_pv_v5 0 8 0 1 1 0 0 0 +( 976 312 232 ) ( 976 312 312 ) ( 1184 312 312 ) metals/m_pv_v5 0 8 0 1 1 0 0 0 +( 1184 320 312 ) ( 1184 320 232 ) ( 1176 312 232 ) metals/m_pv_v5 0 8 0 1 1 0 0 0 +( 1184 320 232 ) ( 1184 320 312 ) ( 976 320 312 ) metals/m_pv_v5 -1 8 0 1 1 0 16777216 0 +( 976 288 528 ) ( 976 272 528 ) ( 976 272 272 ) metals/m_pv_v5 0 8 0 1 1 0 0 0 +( 976 312 312 ) ( 976 320 312 ) ( 1184 320 312 ) metals/m_pv_v5 0 32 180 1 1 0 0 0 +} +// brush 89 +{ +( 176 -1152 -16 ) ( 96 -1152 -16 ) ( 96 -1408 -16 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 96 -1408 0 ) ( 96 -1152 0 ) ( 176 -1152 0 ) bricks/s_sr_m12ab 0 -192 0 1 1 0 0 0 +( 96 -1408 0 ) ( 176 -1408 0 ) ( 176 -1408 -16 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 176 -1408 0 ) ( 176 -1152 0 ) ( 176 -1152 -16 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 176 -1152 0 ) ( 96 -1152 0 ) ( 96 -1152 -16 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 96 -1152 0 ) ( 96 -1408 0 ) ( 96 -1408 -16 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 90 +{ +( 560 -656 -16 ) ( -256 -656 -16 ) ( -256 -1336 -16 ) bricks/s_sr_m12ab 64 -16 0 1 1 0 0 0 +( -256 -1336 0 ) ( -256 -656 0 ) ( 560 -656 0 ) bricks/s_sr_m12ab 0 -192 0 1 1 0 0 0 +( -272 -1408 0 ) ( 544 -1408 0 ) ( 544 -1408 -16 ) bricks/s_sr_m12ab 64 0 0 1 1 0 0 0 +( 768 -576 0 ) ( -48 -576 0 ) ( -48 -576 -16 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( 176 -576 0 ) ( 176 -1256 0 ) ( 176 -1256 -16 ) bricks/s_sr_m12ab 16 0 0 1 1 0 0 0 +( 416 -1432 -16 ) ( 416 -1464 -16 ) ( 416 -1448 0 ) bricks/s_sr_m12ab 16 0 0 1 1 0 0 0 +} +// brush 91 +{ +( -1848 2688 -24 ) ( -2048 2688 -24 ) ( -2048 2536 -24 ) common/0_clip 0 0 0 1 1 131072 128 131072 +( -2048 2536 -8 ) ( -2048 2688 -8 ) ( -1848 2688 -8 ) common/0_clip 0 0 0 1 1 131072 128 131072 +( -2048 2552 -8 ) ( -1848 2552 -8 ) ( -1848 2552 -24 ) common/0_clip 0 0 0 1 1 131072 128 131072 +( -1864 2536 -8 ) ( -1864 2688 -8 ) ( -1864 2688 -24 ) common/0_clip 0 0 0 1 1 131072 128 131072 +( -1848 2688 -8 ) ( -2048 2688 -8 ) ( -2048 2688 -24 ) common/0_clip 0 0 0 1 1 131072 128 131072 +( -2040 2688 -8 ) ( -2040 2536 -8 ) ( -2040 2536 -24 ) common/0_clip 0 0 0 1 1 131072 128 131072 +} +// brush 92 +{ +( -2064 2368 62 ) ( -2064 2432 62 ) ( -2032 2432 62 ) bricks/b_sr_20ag 0 0 0 1 1 0 0 0 +( -2064 2048 128 ) ( -2032 2048 128 ) ( -2032 2048 0 ) bricks/b_sr_20ag 0 -64 0 1 1 0 0 0 +( -1984 2368 128 ) ( -1984 2432 128 ) ( -1984 2432 0 ) props2/si_sewer1 0 0 0 1 1 0 0 0 +( -2032 2496 128 ) ( -2064 2496 128 ) ( -2064 2496 0 ) props2/si_sewer2 -124 0 0 -1 1 0 0 0 +( -2112 2440 128 ) ( -2112 2376 128 ) ( -2112 2376 0 ) bricks/b_sr_20ag 0 -64 0 1 1 0 0 0 +( -2112 2048 0 ) ( -2104 2048 0 ) ( -2108 2496 0 ) bricks/b_sr_20ag 0 0 0 1 1 0 0 0 +} +// brush 93 +{ +( 1600 3264 0 ) ( 1344 3264 0 ) ( 1344 3136 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1344 3136 62 ) ( 1344 3264 62 ) ( 1600 3264 62 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1352 3072 64 ) ( 1608 3072 64 ) ( 1608 3072 -64 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1600 3136 64 ) ( 1600 3264 64 ) ( 1600 3264 -64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( 1280 3272 64 ) ( 1280 3144 64 ) ( 1280 3144 -64 ) props2/si_sewer1 -72 0 0 -1 1 0 0 0 +( 1280 3264 -64 ) ( 1304 3264 -64 ) ( 1292 3264 64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +} +// brush 94 +{ +( 2072 3088 0 ) ( 1792 3088 0 ) ( 1792 3072 0 ) bricks/b_sr_20a -64 0 0 1 1 0 0 0 +( 1792 3072 62 ) ( 1792 3088 62 ) ( 2072 3088 62 ) bricks/b_sr_20a -64 0 0 1 1 0 0 0 +( 1792 3072 64 ) ( 2072 3072 64 ) ( 2072 3072 -64 ) props2/si_sewer2 -256 0 0 1 1 0 0 0 +( 2048 3064 64 ) ( 2048 3080 64 ) ( 2048 3080 -64 ) bricks/b_sr_20ap 0 -64 0 1 1 0 0 0 +( 2072 3088 64 ) ( 1792 3088 64 ) ( 1792 3088 -64 ) bricks/b_sr_20a -64 -64 0 1 1 0 0 0 +( 1792 3088 64 ) ( 1792 3072 64 ) ( 1792 3072 -64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +} +// brush 95 +{ +( 1880 3088 0 ) ( 1600 3088 0 ) ( 1600 3072 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1600 3072 62 ) ( 1600 3088 62 ) ( 1880 3088 62 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1600 3072 64 ) ( 1880 3072 64 ) ( 1880 3072 -64 ) bricks/b_sr_20ag 0 0 0 1 1 0 0 0 +( 1792 3064 64 ) ( 1792 3080 64 ) ( 1792 3080 -64 ) bricks/b_sr_20ap 0 -64 0 1 1 0 0 0 +( 1880 3088 64 ) ( 1600 3088 64 ) ( 1600 3088 -64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( 1600 3088 64 ) ( 1600 3072 64 ) ( 1600 3072 -64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +} +// brush 96 +{ +( 848 1872 0 ) ( 256 1872 0 ) ( 256 1856 0 ) props2/si_sewer2 0 0 0 1 1 0 0 0 +( 256 1856 60 ) ( 256 1872 60 ) ( 848 1872 60 ) props2/si_sewer2 0 0 0 1 1 0 0 0 +( 256 1856 128 ) ( 848 1856 128 ) ( 848 1856 0 ) props2/si_sewer2 4 0 0 1 1 0 0 0 +( 512 1848 128 ) ( 512 1864 128 ) ( 512 1864 0 ) bricks/b_sr_20ag 0 0 0 1 1 0 0 0 +( 848 1872 128 ) ( 256 1872 128 ) ( 256 1872 0 ) props2/si_sewer2 0 0 0 1 1 0 0 0 +( 256 1872 128 ) ( 256 1856 128 ) ( 256 1856 0 ) props2/si_sewer2 0 0 0 1 1 0 0 0 +} +// brush 97 +{ +( 512 1872 60 ) ( -80 1872 60 ) ( -80 1856 60 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -80 1856 128 ) ( -80 1872 128 ) ( 512 1872 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -80 1856 192 ) ( 512 1856 192 ) ( 512 1856 64 ) bricks/b_sr_20a 4 0 0 1 1 0 0 0 +( 512 1856 192 ) ( 512 1872 192 ) ( 512 1872 64 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 512 1872 192 ) ( -80 1872 192 ) ( -80 1872 64 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -80 1872 192 ) ( -80 1856 192 ) ( -80 1856 64 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 98 +{ +( 2708 1968 -128 ) ( 2724 1968 -128 ) ( 2724 1984 -128 ) common/0_clip 22 -7 -180 1 1 196608 128 0 +( 2724 1984 0 ) ( 2724 1968 0 ) ( 2708 1968 0 ) common/0_clip 22 -7 -180 1 1 196608 128 0 +( 2724 1984 64 ) ( 2708 1984 64 ) ( 2708 1984 -128 ) common/0_clip 21 0 -180 1 -1 196608 128 0 +( 2708 1984 64 ) ( 2708 1968 64 ) ( 2708 1968 -128 ) common/0_clip 8 0 -180 1 -1 196608 128 0 +( 2724 1984 -128 ) ( 2708 1968 -128 ) ( 2716 1976 0 ) common/0_clip 9 1 -180 1 -1 196608 128 0 +} +// brush 99 +{ +( 2724 1856 -128 ) ( 2724 1872 -128 ) ( 2708 1872 -128 ) common/0_clip 22 -24 -180 1 1 196608 128 0 +( 2708 1872 0 ) ( 2724 1872 0 ) ( 2724 1856 0 ) common/0_clip 22 -24 -180 1 1 196608 128 0 +( 2708 1856 -128 ) ( 2708 1856 64 ) ( 2724 1856 64 ) common/0_clip 21 0 -180 1 -1 196608 128 0 +( 2708 1872 -128 ) ( 2708 1872 64 ) ( 2708 1856 64 ) common/0_clip 24 0 -180 1 -1 196608 128 0 +( 2716 1864 0 ) ( 2708 1872 -128 ) ( 2724 1856 -128 ) common/0_clip 22 0 -180 1 -1 196608 128 0 +} +// brush 100 +{ +( 2700 1872 -128 ) ( 2684 1872 -128 ) ( 2684 1856 -128 ) common/0_clip -11 26 0 1 1 196608 128 0 +( 2684 1856 0 ) ( 2684 1872 0 ) ( 2700 1872 0 ) common/0_clip -11 26 0 1 1 196608 128 0 +( 2684 1856 64 ) ( 2700 1856 64 ) ( 2700 1856 -128 ) common/0_clip -12 0 0 1 1 196608 128 0 +( 2700 1856 64 ) ( 2700 1872 64 ) ( 2700 1872 -128 ) common/0_clip -25 0 0 1 1 196608 128 0 +( 2684 1856 -128 ) ( 2700 1872 -128 ) ( 2692 1864 0 ) common/0_clip -7 0 0 1 1 196608 128 0 +} +// brush 101 +{ +( 2684 1984 -128 ) ( 2684 1968 -128 ) ( 2700 1968 -128 ) common/0_clip -11 10 0 1 1 196608 128 0 +( 2700 1968 0 ) ( 2684 1968 0 ) ( 2684 1984 0 ) common/0_clip -11 10 0 1 1 196608 128 0 +( 2700 1984 -128 ) ( 2700 1984 64 ) ( 2684 1984 64 ) common/0_clip -12 0 0 1 1 196608 128 0 +( 2700 1968 -128 ) ( 2700 1968 64 ) ( 2700 1984 64 ) common/0_clip -9 0 0 1 1 196608 128 0 +( 2692 1976 0 ) ( 2700 1968 -128 ) ( 2684 1984 -128 ) common/0_clip -23 1 0 1 1.000015 196608 128 0 +} +// brush 102 +{ +( 2763 1912 -6 ) ( 2763 1928 -6 ) ( 2760 1928 0 ) common/li_pv_v7 0 -5 -180 0.500000 -0.500000 134217728 1 8000 +( 2773 1928 -6 ) ( 2773 1912 -6 ) ( 2776 1912 0 ) common/li_pv_v7 0 -5 -180 0.500000 -0.500000 134217728 1 8000 +( 2773 1915 -6 ) ( 2763 1915 -6 ) ( 2760 1912 0 ) common/li_pv_v7 5 -1 90 0.500000 0.500000 134217728 1 8000 +( 2763 1915 -6 ) ( 2773 1915 -6 ) ( 2773 1925 -6 ) common/li_pv_v7 0 -1 -90 0.500000 -0.500000 134217728 1 15000 +( 2763 1925 -6 ) ( 2773 1925 -6 ) ( 2776 1928 0 ) common/li_pv_v7 5 -1 90 0.500000 0.500000 134217728 1 8000 +( 2760 1917 -3 ) ( 2760 1925 -3 ) ( 2776 1921 -3 ) common/li_pv_v7 3 -1 -90 0.500000 -0.500000 134217728 0 0 +} +// brush 103 +{ +( 2688 1968 -128 ) ( 2720 1968 -128 ) ( 2720 1984 -128 ) metals/mt_pv_m26 40 -35 -180 1 1 134217728 8388608 0 +( 2720 1984 0 ) ( 2720 1968 0 ) ( 2688 1968 0 ) metals/mt_pv_m26 40 -35 -180 1 1 134217728 8388608 0 +( 2720 1984 0 ) ( 2688 1984 0 ) ( 2688 1984 -16 ) metals/mt_pv_m26 40 2 -180 1 -1 134217728 8388608 0 +( 2700 1984 0 ) ( 2700 1968 0 ) ( 2700 1968 -16 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2688 1968 0 ) ( 2720 1968 0 ) ( 2720 1968 -16 ) metals/mt_pv_m26y 15 -31 90 1 1 134217728 8388608 0 +( 2708 1972 0 ) ( 2708 1988 0 ) ( 2708 1988 -16 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +} +// brush 104 +{ +( 2688 1856 -128 ) ( 2720 1856 -128 ) ( 2720 1872 -128 ) metals/mt_pv_m26 40 -35 -180 1 1 134217728 8388608 0 +( 2720 1872 0 ) ( 2720 1856 0 ) ( 2688 1856 0 ) metals/mt_pv_m26 40 -35 -180 1 1 134217728 8388608 0 +( 2720 1872 0 ) ( 2688 1872 0 ) ( 2688 1872 -16 ) metals/mt_pv_m26y 15 -31 90 1 1 134217728 8388608 0 +( 2700 1872 0 ) ( 2700 1856 0 ) ( 2700 1856 -16 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2688 1856 0 ) ( 2720 1856 0 ) ( 2720 1856 -16 ) metals/mt_pv_m26 40 2 -180 1 -1 134217728 8388608 0 +( 2708 1856 0 ) ( 2708 1872 0 ) ( 2708 1872 -16 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +} +// brush 105 +{ +( 2704 1072 0 ) ( 2688 1072 0 ) ( 2688 1616 0 ) metals/mt_pv_m26 40 -35 -180 1 1 134217728 8388608 0 +( 2708 1072 -48 ) ( 2708 1616 -48 ) ( 2708 1616 -256 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2700 1620 -56 ) ( 2700 1076 -56 ) ( 2700 1076 -264 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2704 1824 -19 ) ( 2704 1840 -19 ) ( 2688 1832 -19 ) metals/mt_pv_m26y -32 32 0 1 1 134217728 8388608 0 +( 2720 1872 0 ) ( 2704 1872 0 ) ( 2712 1872 64 ) metals/mt_pv_m26 40 2 -180 1 -1 134217728 8388608 0 +( 2712 1968 0 ) ( 2720 1968 0 ) ( 2716 1968 64 ) metals/mt_pv_m26 40 2 -180 1 -1 134217728 8388608 0 +} +// brush 106 +{ +( 2700 1968 -19 ) ( 2708 1968 -19 ) ( 2708 1944 -19 ) metals/mt_pv_m26 49 -35 -180 1 1 134217728 8388608 0 +( 2708 1968 -19 ) ( 2700 1968 -19 ) ( 2700 1968 -32 ) metals/mt_pv_m26 48 2 -180 1 -1 134217728 8388608 0 +( 2700 1972 64 ) ( 2700 1956 64 ) ( 2700 1956 -128 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2708 1956 64 ) ( 2708 1972 64 ) ( 2708 1972 -128 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2700 1944 -19 ) ( 2708 1944 -19 ) ( 2708 1968 -32 ) metals/mt_pv_m26y -32 32 0 1 1 134217728 8388608 0 +} +// brush 107 +{ +( 2700 1896 -19 ) ( 2708 1896 -19 ) ( 2708 1872 -19 ) metals/mt_pv_m26 40 -35 -180 1 1 134217728 8388608 0 +( 2700 1872 -19 ) ( 2708 1872 -19 ) ( 2708 1872 -32 ) metals/mt_pv_m26 40 2 -180 1 -1 134217728 8388608 0 +( 2708 1872 64 ) ( 2708 1888 64 ) ( 2708 1888 -128 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2700 1888 64 ) ( 2700 1872 64 ) ( 2700 1872 -128 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2708 1896 -19 ) ( 2700 1896 -19 ) ( 2700 1872 -32 ) metals/mt_pv_m26y -32 32 0 1 1 134217728 8388608 0 +} +// brush 108 +{ +( 832 1568 16 ) ( 704 1568 16 ) ( 704 1520 16 ) common/0_clip 0 0 0 1 1 131072 128 0 +( 704 1520 192 ) ( 704 1568 192 ) ( 832 1568 192 ) common/0_clip 0 0 0 1 1 131072 128 0 +( 704 1520 32 ) ( 832 1520 32 ) ( 832 1520 16 ) common/0_clip 0 0 0 1 1 131072 128 0 +( 824 1520 32 ) ( 824 1568 32 ) ( 824 1568 16 ) common/0_clip 0 0 0 1 1 131072 128 0 +( 832 1552 32 ) ( 704 1552 32 ) ( 704 1552 16 ) common/0_clip 0 0 0 1 1 131072 128 0 +( 712 1568 32 ) ( 712 1520 32 ) ( 712 1520 16 ) common/0_clip 0 0 0 1 1 131072 128 0 +} +// brush 109 +{ +( -473 1514 44 ) ( -473 1486 44 ) ( -473 1486 -4 ) props/dump_m4a -32 -32 0 0.750000 0.750000 134217728 16777216 0 +( -467 1486 -3 ) ( -467 1486 45 ) ( -467 1514 45 ) metals/mt_sr_m7 12 25 0 1 -1 134217728 8388608 0 +( -433 1486 4 ) ( -433 1514 4 ) ( -505 1514 4 ) metals/mt_sr_b1b -53 4 90 1 1 134217728 0 0 +( -433 1509 -3 ) ( -433 1509 45 ) ( -505 1509 45 ) metals/m_hl_c10b 1 0 0 1 1 134217728 0 0 +( -433 1514 28 ) ( -433 1486 28 ) ( -505 1486 28 ) metals/m_hl_c10b 1 0 0 1 1 134217728 0 0 +( -433 1480 45 ) ( -433 1480 -3 ) ( -505 1480 -3 ) metals/m_hl_c10b -71 88 -90 1 1 134217728 0 0 +} +// brush 110 +{ +( -473 1512 44 ) ( -473 1484 44 ) ( -473 1484 -4 ) props/dump_m4a -32 -32 0 0.750000 0.750000 134217728 16777216 0 +( -466 1484 -3 ) ( -466 1484 45 ) ( -466 1512 45 ) props2/stove_pv_v -16 13 -90 0.500000 0.500000 134217728 16777216 0 +( -432 1484 4 ) ( -432 1512 4 ) ( -504 1512 4 ) metals/m_hl_c10b 0 0 0 1 1 134217728 16777216 0 +( -432 1480 -3 ) ( -432 1480 45 ) ( -504 1480 45 ) metals/m_hl_c10b 0 0 0 1 1 134217728 16777216 0 +( -432 1512 28 ) ( -432 1484 28 ) ( -504 1484 28 ) metals/m_hl_c10b 0 0 0 1 1 134217728 16777216 0 +( -432 1478 45 ) ( -432 1478 -3 ) ( -504 1478 -3 ) metals/m_hl_c10b -37 61 0 0.500000 0.500000 134217728 8388608 0 +} +// brush 111 +{ +( -473 1519 44 ) ( -473 1491 44 ) ( -473 1491 -4 ) metals/mt_sr_b1b -58 -16 0 1 1 134217728 8388608 0 +( -466 1491 -3 ) ( -466 1491 45 ) ( -466 1519 45 ) props2/stove_pv_v -16 13 -90 0.500000 0.500000 134217728 16777216 0 +( -432 1491 4 ) ( -432 1519 4 ) ( -504 1519 4 ) metals/mt_sr_b1b -58 3 90 1 1 134217728 0 0 +( -432 1514 -3 ) ( -432 1514 45 ) ( -504 1514 45 ) metals/m_hl_c10b 0 0 0 1 1 134217728 0 0 +( -432 1519 28 ) ( -432 1491 28 ) ( -504 1491 28 ) metals/m_hl_c10b 0 5 0 1 1 134217728 0 0 +( -433 1509 45 ) ( -433 1509 -3 ) ( -505 1509 -3 ) metals/m_hl_c10b -71 89 -90 1 1 134217728 0 0 +} +// brush 112 +{ +( -504 1514 47 ) ( -504 1486 47 ) ( -504 1486 -1 ) props/dump_m4a -32 -32 0 0.750000 0.750000 134217728 16777216 0 +( -466 1486 -1 ) ( -466 1486 47 ) ( -466 1514 47 ) props2/stove_pv_v -18 13 -90 0.500000 0.500000 134217728 16777216 0 +( -432 1486 52 ) ( -432 1514 52 ) ( -504 1514 52 ) props/dump_m4a -32 -32 0 0.750000 0.750000 134217728 16777216 0 +( -432 1514 -1 ) ( -432 1514 47 ) ( -504 1514 47 ) metals/m_hl_c10b 0 0 0 1 1 134217728 16777216 0 +( -432 1514 55 ) ( -432 1486 55 ) ( -504 1486 55 ) props2/stove_pv_v3 0 13 270 0.500000 0.500000 134217728 16777216 0 +( -432 1478 47 ) ( -432 1478 -1 ) ( -504 1478 -1 ) metals/m_hl_c10b -37 50 0 0.500000 0.500000 134217728 8388608 0 +} +// brush 113 +{ +( -500 1478 55 ) ( -500 1476 55 ) ( -500 1476 -1 ) metals/mt_sr_b1b -53 10 0 1 1 134217728 0 0 +( -473 1477 -1 ) ( -473 1477 55 ) ( -473 1479 55 ) metals/m_hl_c10b 70 -40 90 1 1 134217728 0 0 +( -464 1478 52 ) ( -504 1478 52 ) ( -504 1476 52 ) metals/mt_sr_b1b -53 1 90 1 1 134217728 8388608 0 +( -504 1478 33 ) ( -464 1478 33 ) ( -464 1478 55 ) metals/m_hl_c10b -77 1 -90 1 1 134217728 16384 0 +( -464 1476 53 ) ( -504 1476 53 ) ( -504 1478 55 ) props2/stove_pv_v3 10 -115 90 0.500000 -0.500000 134217728 16777216 0 +( -520 1476 53 ) ( -480 1476 53 ) ( -480 1476 1 ) props2/stove_pv_v3 10 -115 90 0.500000 -0.500000 134217728 16777216 0 +} +// brush 114 +{ +( -500 1477 55 ) ( -500 1475 55 ) ( -500 1475 -1 ) metals/mt_sr_b1b -53 10 0 1 1 134217728 0 0 +( -473 1476 -1 ) ( -473 1476 55 ) ( -473 1478 55 ) metals/m_hl_c10b 70 -40 90 1 1 134217728 0 0 +( -504 1476 1 ) ( -464 1476 1 ) ( -464 1478 -1 ) props2/stove_pv_v3 10 -115 90 0.500000 -0.500000 134217728 16777216 0 +( -464 1478 14 ) ( -504 1478 14 ) ( -504 1478 0 ) metals/m_hl_c10b -77 1 -90 1 1 134217728 16384 0 +( -504 1477 4 ) ( -464 1477 4 ) ( -464 1475 4 ) props/dump_m4a -32 -32 0 0.750000 0.750000 134217728 16777216 0 +( -520 1476 53 ) ( -480 1476 53 ) ( -480 1476 1 ) props2/stove_pv_v2 -14 13 270 0.500000 0.500000 134217728 16777216 0 +} +// brush 115 +{ +( -504 1514 43 ) ( -504 1486 43 ) ( -504 1486 -5 ) props/dump_m4a -32 -32 0 0.750000 0.750000 134217728 16777216 0 +( -473 1486 -5 ) ( -473 1486 43 ) ( -473 1514 43 ) props2/stove_pv_v -28 52 -90 0.500000 0.500000 134217728 0 0 +( -432 1486 -1 ) ( -432 1514 -1 ) ( -504 1514 -1 ) props2/stove_pv_v3 -13 85 90 0.500000 -0.500000 134217728 0 0 +( -432 1514 -5 ) ( -432 1514 43 ) ( -504 1514 43 ) metals/m_hl_c10b 0 0 0 1 1 134217728 0 0 +( -432 1514 52 ) ( -432 1486 52 ) ( -504 1486 52 ) props2/stove_pv_v3 10 -59 -90 0.500000 -0.500000 134217728 0 0 +( -432 1508 43 ) ( -432 1508 -5 ) ( -504 1508 -5 ) props/dump_m4a -32 -32 0 0.750000 0.750000 134217728 16777216 0 +} +// brush 116 +{ +( -504 1514 -5 ) ( -504 1486 -5 ) ( -504 1486 -53 ) props/dump_m4a -32 -32 0 0.750000 0.750000 134217728 16777216 0 +( -466 1486 -50 ) ( -466 1486 -2 ) ( -466 1514 -2 ) props2/stove_pv_v -16 13 -90 0.500000 0.500000 134217728 16777216 0 +( -432 1486 0 ) ( -432 1514 0 ) ( -504 1514 0 ) metals/m_hl_c10b 0 0 0 1 1 134217728 16777216 0 +( -432 1514 -53 ) ( -432 1514 -5 ) ( -504 1514 -5 ) metals/m_hl_c10b 0 0 0 1 1 134217728 16777216 0 +( -432 1514 4 ) ( -432 1486 4 ) ( -504 1486 4 ) props/dump_m4a -32 -32 0 0.750000 0.750000 134217728 16777216 0 +( -432 1478 -5 ) ( -432 1478 -53 ) ( -504 1478 -53 ) metals/m_hl_c10b -37 61 0 0.500000 0.500000 134217728 8388608 0 +} +// brush 117 +{ +( -504 1478 55 ) ( -504 1476 55 ) ( -504 1476 -1 ) props/dump_m4a -32 -32 0 0.750000 0.750000 134217728 16777216 0 +( -500 1476 -1 ) ( -500 1476 55 ) ( -500 1478 55 ) metals/mt_sr_b1b -53 -16 0 1 1 134217728 8388608 0 +( -504 1476 1 ) ( -464 1476 1 ) ( -464 1478 -1 ) props2/stove_pv_v3 10 -115 90 0.500000 -0.500000 134217728 16777216 0 +( -465 1478 -1 ) ( -465 1478 55 ) ( -505 1478 55 ) props/dump_m4a -32 -32 0 0.750000 0.750000 134217728 16777216 0 +( -464 1476 53 ) ( -504 1476 53 ) ( -504 1478 55 ) props2/stove_pv_v3 10 -115 90 0.500000 -0.500000 134217728 16777216 0 +( -533 1476 53 ) ( -493 1476 53 ) ( -493 1476 1 ) props2/stove_pv_v3 10 -115 90 0.500000 -0.500000 134217728 16777216 0 +} +// brush 118 +{ +( -504 1508 43 ) ( -504 1480 43 ) ( -504 1480 -5 ) props/dump_m4a -32 -32 0 0.750000 0.750000 134217728 16777216 0 +( -502 1479 -5 ) ( -502 1479 43 ) ( -502 1507 43 ) props/dump_m4a -32 -32 0 0.750000 0.750000 134217728 16777216 0 +( -432 1480 4 ) ( -432 1508 4 ) ( -504 1508 4 ) props2/stove_pv_v3 6 85 90 0.500000 -0.500000 134217728 0 0 +( -432 1508 -5 ) ( -432 1508 43 ) ( -504 1508 43 ) props2/stove_pv_v3 -12 21 90 0.500000 -0.500000 134217728 0 0 +( -432 1508 52 ) ( -432 1480 52 ) ( -504 1480 52 ) props2/stove_pv_v3 21 -59 -90 0.500000 -0.500000 134217728 0 0 +( -431 1478 43 ) ( -431 1478 -5 ) ( -503 1478 -5 ) metals/mt_sr_b1b -1 10 -180 1 -1 134217728 0 0 +} +// brush 119 +{ +( -473 1514 68 ) ( -473 1486 68 ) ( -473 1486 20 ) props/dump_m4a -32 -32 0 0.750000 0.750000 134217728 16777216 0 +( -466 1486 21 ) ( -466 1486 69 ) ( -466 1514 69 ) props2/stove_pv_v -18 13 -90 0.500000 0.500000 134217728 16777216 0 +( -432 1486 28 ) ( -432 1514 28 ) ( -504 1514 28 ) metals/m_hl_c10b 0 0 0 1 1 134217728 16777216 0 +( -434 1480 21 ) ( -434 1480 69 ) ( -506 1480 69 ) metals/m_hl_c10b 49 60 0 0.500000 0.500000 134217728 16777216 0 +( -432 1514 52 ) ( -432 1486 52 ) ( -504 1486 52 ) metals/m_hl_c10b 0 0 0 1 1 134217728 16777216 0 +( -433 1478 69 ) ( -433 1478 21 ) ( -505 1478 21 ) metals/m_hl_c10b -37 50 0 0.500000 0.500000 134217728 8388608 0 +} +// brush 120 +{ +( -473 1516 68 ) ( -473 1488 68 ) ( -473 1488 20 ) props/dump_m4a -32 -32 0 0.750000 0.750000 134217728 16777216 0 +( -467 1488 21 ) ( -467 1488 69 ) ( -467 1516 69 ) metals/mt_sr_m7 12 17 0 1 1 134217728 8388608 0 +( -432 1488 28 ) ( -432 1516 28 ) ( -504 1516 28 ) metals/mt_sr_b1b -51 3 90 1 1 134217728 0 0 +( -434 1509 21 ) ( -434 1509 69 ) ( -506 1509 69 ) props2/stove_pv_v3 -31 21 90 0.500001 -0.500000 134217728 0 0 +( -432 1516 52 ) ( -432 1488 52 ) ( -504 1488 52 ) props2/stove_pv_v3 6 -59 -90 0.500000 -0.500000 134217728 0 0 +( -433 1480 69 ) ( -433 1480 21 ) ( -505 1480 21 ) metals/m_hl_c10b -47 89 -90 1 1 134217728 0 0 +} +// brush 121 +{ +( -473 1521 68 ) ( -473 1493 68 ) ( -473 1493 20 ) metals/mt_sr_b1b -46 32 0 1 1 134217728 0 0 +( -466 1493 21 ) ( -466 1493 69 ) ( -466 1521 69 ) props2/stove_pv_v -18 13 -90 0.500000 0.500000 134217728 16777216 0 +( -432 1493 28 ) ( -432 1521 28 ) ( -504 1521 28 ) metals/mt_sr_b1b -46 3 90 1 1 134217728 0 0 +( -434 1514 21 ) ( -434 1514 69 ) ( -506 1514 69 ) metals/m_hl_c10b 0 0 0 1 1 134217728 0 0 +( -432 1521 52 ) ( -432 1493 52 ) ( -504 1493 52 ) props2/stove_pv_v3 -3 -59 -90 0.500000 -0.500000 134217728 0 0 +( -434 1509 69 ) ( -434 1509 21 ) ( -506 1509 21 ) metals/m_hl_c10b 49 60 0 0.500000 0.500000 134217728 16777216 0 +} +// brush 122 +{ +( -1088 1824 0 ) ( -1104 1824 0 ) ( -1104 1584 0 ) bricks/b_sr_20a 63 48 -180 1 -1 0 0 0 +( -1104 1584 128 ) ( -1104 1824 128 ) ( -1088 1824 128 ) bricks/b_sr_20a 63 48 -180 1 -1 0 0 0 +( -1112 1472 128 ) ( -1096 1472 128 ) ( -1096 1472 0 ) bricks/b_sr_20a 64 0 -180 1 -1 0 0 0 +( -1088 1584 128 ) ( -1088 1824 128 ) ( -1088 1824 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -1088 1648 128 ) ( -1104 1648 128 ) ( -1104 1648 0 ) bricks/b_sr_20a 64 0 -180 1 -1 0 0 0 +( -1104 1824 128 ) ( -1104 1584 128 ) ( -1104 1584 0 ) bricks/b_sr_20a 112 0 -180 1 -1 0 0 0 +} +// brush 123 +{ +( 2375 704 80 ) ( 2367 704 80 ) ( 2367 672 80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2367 672 112 ) ( 2367 704 112 ) ( 2375 704 112 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2367 688 112 ) ( 2375 688 112 ) ( 2375 688 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2368 696 112 ) ( 2368 728 112 ) ( 2368 728 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2375 704 112 ) ( 2367 704 112 ) ( 2367 704 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2352 704 112 ) ( 2352 672 112 ) ( 2352 672 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 124 +{ +( 2352 448 80 ) ( 2352 688 80 ) ( 2368 688 80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2344 656 -48 ) ( 2360 656 -48 ) ( 2360 656 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2368 448 16 ) ( 2368 688 16 ) ( 2368 688 -64 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2368 704 -48 ) ( 2352 704 -48 ) ( 2352 704 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2352 688 -48 ) ( 2352 448 -48 ) ( 2352 448 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2352 276 0 ) ( 2352 248 0 ) ( 2368 262 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 125 +{ +( 2352 448 128 ) ( 2352 688 128 ) ( 2368 688 128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2344 656 0 ) ( 2360 656 0 ) ( 2360 656 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2368 448 64 ) ( 2368 688 64 ) ( 2368 688 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2368 704 0 ) ( 2352 704 0 ) ( 2352 704 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2352 688 0 ) ( 2352 448 0 ) ( 2352 448 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2352 276 112 ) ( 2352 248 112 ) ( 2368 262 112 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 126 +{ +( 2375 688 80 ) ( 2367 688 80 ) ( 2367 656 80 ) common/li_mf_v16 16 16 0 1 1 0 0 0 +( 2367 656 112 ) ( 2367 688 112 ) ( 2375 688 112 ) common/li_mf_v16 16 16 0 1 1 0 0 0 +( 2367 656 112 ) ( 2375 656 112 ) ( 2375 656 -16 ) common/li_mf_v16 16 16 0 1 1 0 0 0 +( 2368 680 112 ) ( 2368 712 112 ) ( 2368 712 -16 ) common/li_mf_v16 16 16 0 1 1 0 1 500 +( 2375 688 112 ) ( 2367 688 112 ) ( 2367 688 -16 ) common/li_mf_v16 16 16 0 1 1 0 0 0 +( 2352 688 112 ) ( 2352 656 112 ) ( 2352 656 -16 ) common/li_mf_v16 16 16 0 1 1 0 0 0 +} +// brush 127 +{ +( 2748 636 -128 ) ( 2684 636 -128 ) ( 2684 572 -128 ) props/box_sr_m6 4 0 0 1 1 0 2097152 0 +( 2684 572 -64 ) ( 2684 636 -64 ) ( 2748 636 -64 ) props/box_sr_m5 60 60 0 -1 1 0 134217728 0 +( 2684 572 -64 ) ( 2748 572 -64 ) ( 2748 572 -128 ) props/box_sr_m6 4 0 0 1 1 0 134217728 0 +( 2748 572 -64 ) ( 2748 636 -64 ) ( 2748 636 -128 ) props/box_sr_m6 4 0 0 1 1 0 134217728 0 +( 2748 636 -64 ) ( 2684 636 -64 ) ( 2684 636 -128 ) props/box_sr_m6 4 0 0 1 1 0 2097152 0 +( 2684 636 -64 ) ( 2684 572 -64 ) ( 2684 572 -128 ) props/box_sr_m6 4 0 0 1 1 0 134217728 0 +} +// brush 128 +{ +( 1091 231 316 ) ( 1074 248 316 ) ( 1029 202 316 ) props/safe_w -38 0 0 0.710000 1 0 8388608 0 +( 1035 208 320 ) ( 1080 253 320 ) ( 1097 236 320 ) props/safe_w -38 0 315 0.710000 1 0 8388608 0 +( 1035 208 320 ) ( 1052 191 320 ) ( 1052 191 256 ) props/safe 82 0 -180 0.350000 -0.500000 0 8388608 0 +( 1080 163 320 ) ( 1125 208 320 ) ( 1125 208 256 ) props/safe_w -38 0 0 0.710000 1 0 8388608 0 +( 1093 240 320 ) ( 1076 257 320 ) ( 1076 257 256 ) props/safe_w -38 0 0 0.710000 1 0 8388608 0 +( 1080 253 320 ) ( 1035 208 320 ) ( 1035 208 256 ) props/safe_w -38 0 0 0.710000 1 0 8388608 0 +} +// brush 129 +{ +( 1091 231 256 ) ( 1074 248 256 ) ( 1029 202 256 ) props/safe_w -38 0 0 0.710000 1 0 8388608 0 +( 1035 208 260 ) ( 1080 253 260 ) ( 1097 236 260 ) props/safe_w -38 0 315 0.710000 1 0 8388608 0 +( 1035 208 260 ) ( 1052 191 260 ) ( 1052 191 196 ) props/safe 82 0 -180 0.350000 -0.500000 0 8388608 0 +( 1080 163 260 ) ( 1125 208 260 ) ( 1125 208 196 ) props/safe_w -38 0 0 0.710000 1 0 8388608 0 +( 1093 240 260 ) ( 1076 257 260 ) ( 1076 257 196 ) props/safe_w -38 0 0 0.710000 1 0 8388608 0 +( 1080 253 260 ) ( 1035 208 260 ) ( 1035 208 196 ) props/safe_w -38 0 0 0.710000 1 0 8388608 0 +} +// brush 130 +{ +( 1094 239 260 ) ( 1077 256 260 ) ( 1032 211 260 ) props/safe_w -46 -4 45 1.000066 1.000023 0 0 0 +( 1032 211 316 ) ( 1077 256 316 ) ( 1094 239 316 ) props/safe_w -46 -4 45 1.000066 1.000023 0 0 0 +( 1032 211 320 ) ( 1049 194 320 ) ( 1049 194 256 ) props/safe 82 0 -180 0.350000 -0.500000 0 8388608 0 +( 1035 202 320 ) ( 1080 248 320 ) ( 1080 248 256 ) props/safe_w -34 0 0 0.710000 1 0 8388608 0 +( 1090 243 320 ) ( 1073 260 320 ) ( 1073 260 256 ) props/safe_w -38 0 0 0.710000 1 0 8388608 0 +( 1080 253 320 ) ( 1035 208 320 ) ( 1035 208 256 ) props/safe_w -38 0 0 0.710000 1 0 8388608 0 +} +// brush 131 +{ +( 1137 197 260 ) ( 1120 214 260 ) ( 1074 168 260 ) props/safe_w -38 0 0 0.710000 1 0 8388608 0 +( 1074 168 316 ) ( 1120 214 316 ) ( 1137 197 316 ) props/safe_w -38 0 0 0.710000 1 0 8388608 0 +( 1077 166 260 ) ( 1077 166 316 ) ( 1080 163 316 ) props/safe 82 0 -180 0.350000 -0.500000 0 8388608 0 +( 1080 163 260 ) ( 1080 163 316 ) ( 1125 208 316 ) props/safe_w -38 0 0 0.710000 1 0 8388608 0 +( 1133 200 320 ) ( 1116 217 320 ) ( 1116 217 256 ) props/safe_w -38 0 0 0.710000 1 0 8388608 0 +( 1077 166 316 ) ( 1077 166 260 ) ( 1122 211 260 ) props/safe_w -38 0 0 0.710000 1 0 8388608 0 +} +// brush 132 +{ +( 1137 276 260 ) ( 1120 293 260 ) ( 1074 248 260 ) props/safe_w -46 -8 45 1.000066 1.000023 0 0 0 +( 1074 248 316 ) ( 1120 293 316 ) ( 1137 276 316 ) props/safe_w -46 -8 45 1.000066 1.000023 0 0 0 +( 1074 248 320 ) ( 1091 231 320 ) ( 1091 231 256 ) props/safe_w -41 0 0 0.710000 1 0 8388608 0 +( 1117 206 320 ) ( 1162 251 320 ) ( 1162 251 256 ) props/safe_w -53 0 0 0.707092 1 0 0 0 +( 1093 240 320 ) ( 1076 257 320 ) ( 1076 257 256 ) props/safe_w -38 0 0 0.710000 1 0 8388608 0 +( 1122 290 320 ) ( 1077 245 320 ) ( 1077 245 256 ) props/safe_w -34 0 0 0.707092 1 0 0 0 +} +// brush 133 +{ +( 514 848 56 ) ( 506 848 56 ) ( 506 784 56 ) metals/mt_sr_b1a -15 -63 270 1 1 134217728 0 0 +( 506 784 88 ) ( 506 848 88 ) ( 514 848 88 ) metals/mt_sr_b1a -15 -63 270 1 1 134217728 0 0 +( 506 784 72 ) ( 514 784 72 ) ( 514 784 40 ) props/si_rc_c13 -65 -8 0 1 1 134217728 8388608 0 +( 512 784 72 ) ( 512 848 72 ) ( 512 848 40 ) metals/mt_sr_b1a -32 -48 0 -0.500000 0.500000 134217728 0 0 +( 514 848 72 ) ( 506 848 72 ) ( 506 848 40 ) metals/mt_sr_b1a 0 -56 0 1 0.999847 134217728 0 0 +( 511 840 72 ) ( 511 776 72 ) ( 511 776 40 ) props/si_rc_c13 -16 -8 0 1 1 134217728 8388608 0 +} +// brush 134 +{ +( 514 927 39 ) ( 506 927 39 ) ( 506 863 41 ) metals/mt_sr_b1a 0 -63 -90 0.999878 1 134217728 0 0 +( 506 865 105 ) ( 506 929 103 ) ( 514 929 103 ) metals/mt_sr_b1a 0 -63 -90 0.999878 1 134217728 0 0 +( 506 864 73 ) ( 514 864 73 ) ( 514 863 41 ) metals/mt_sr_b1a 0 -25 0 1 0.999847 134217728 0 0 +( 512 864 73 ) ( 512 928 71 ) ( 512 927 39 ) metals/mt_sr_b1a -2 47 178 0.500015 -0.500000 134217728 0 0 +( 514 928 71 ) ( 506 928 71 ) ( 506 927 39 ) metals/mt_sr_b1a 0 -56 0 1 0.999847 134217728 0 0 +( 511 920 72 ) ( 511 856 73 ) ( 511 855 41 ) props2/si_st_m3a 29 7 178 1 -1 134217728 8388608 0 +} +// brush 135 +{ +( 2242 456 -55 ) ( 2234 456 -55 ) ( 2234 392 -56 ) metals/mt_sr_b1a 0 55 0 1 0.999847 134217728 0 0 +( 2234 392 -40 ) ( 2234 456 -39 ) ( 2242 456 -39 ) metals/mt_sr_b1a 0 54 0 1 0.999847 134217728 0 0 +( 2234 392 -56 ) ( 2242 392 -56 ) ( 2242 393 -88 ) metals/mt_sr_b1a 0 -32 0 1 0.999847 134217728 0 0 +( 2240 360 -57 ) ( 2240 424 -56 ) ( 2240 425 -88 ) metals/mt_sr_b1a 14 -61 -178 0.499985 -0.500002 134217728 0 0 +( 2242 424 -56 ) ( 2234 424 -56 ) ( 2234 425 -88 ) metals/mt_sr_b1a 0 -31 0 1 0.999847 134217728 0 0 +( 2238 400 -56 ) ( 2238 336 -57 ) ( 2238 337 -89 ) props2/si_st_m1b -50 -30 -179 0.500000 -0.500000 134217728 8388608 0 +} +// brush 136 +{ +( 1016 706 106 ) ( 1016 698 106 ) ( 1080 698 103 ) metals/mt_sr_b1a 48 7 -90 1 0.999512 134217728 0 0 +( 1080 698 119 ) ( 1016 698 122 ) ( 1016 706 122 ) metals/mt_sr_b1a 48 7 -90 1 0.999390 134217728 0 0 +( 1080 698 103 ) ( 1080 706 103 ) ( 1079 706 71 ) metals/mt_sr_b1a 48 0 -180 1 -0.999390 134217728 0 0 +( 1112 704 102 ) ( 1048 704 105 ) ( 1047 704 73 ) metals/mt_sr_b1a 38 26 178 0.500060 -0.500003 134217728 0 0 +( 1048 706 105 ) ( 1048 698 105 ) ( 1047 698 73 ) metals/mt_sr_b1a 48 0 -180 1 -0.999390 134217728 0 0 +( 1040 703 105 ) ( 1104 703 103 ) ( 1103 703 71 ) props2/si_st_m1a -39 25 -2 0.500000 0.500000 134217728 8388608 0 +} +// brush 137 +{ +( 706 -176 104 ) ( 698 -176 104 ) ( 698 -240 104 ) metals/mt_sr_b1a 0 0 0 1 1 134217728 0 0 +( 698 -240 120 ) ( 698 -176 120 ) ( 706 -176 120 ) metals/mt_sr_b1a 0 0 0 1 1 134217728 0 0 +( 698 -240 104 ) ( 706 -240 104 ) ( 706 -240 72 ) metals/mt_sr_b1a 0 0 0 1 1 134217728 0 0 +( 704 -272 104 ) ( 704 -208 104 ) ( 704 -208 72 ) metals/mt_sr_b1a -96 16 0 -0.500000 0.500000 134217728 0 0 +( 706 -208 104 ) ( 698 -208 104 ) ( 698 -208 72 ) metals/mt_sr_b1a 0 0 0 1 1 134217728 0 0 +( 703 -199 104 ) ( 703 -263 104 ) ( 703 -263 72 ) props2/si_st_m2b -32 -16 0 -0.500000 0.500000 134217728 8388608 0 +} +// brush 138 +{ +( 706 16 104 ) ( 698 16 104 ) ( 698 -48 104 ) metals/mt_sr_b1a 0 0 0 1 1 134217728 0 0 +( 698 -48 120 ) ( 698 16 120 ) ( 706 16 120 ) metals/mt_sr_b1a 0 0 0 1 1 134217728 0 0 +( 698 -48 104 ) ( 706 -48 104 ) ( 706 -48 72 ) metals/mt_sr_b1a 0 0 0 1 1 134217728 0 0 +( 704 -80 104 ) ( 704 -16 104 ) ( 704 -16 72 ) metals/mt_sr_b1a 32 16 0 -0.500000 0.500000 134217728 0 0 +( 706 -16 104 ) ( 698 -16 104 ) ( 698 -16 72 ) metals/mt_sr_b1a 0 0 0 1 1 134217728 0 0 +( 703 -8 104 ) ( 703 -72 104 ) ( 703 -72 72 ) props2/si_st_m2a 32 -16 0 -0.500000 0.500000 134217728 8388608 0 +} +// brush 139 +{ +( 784 84 196 ) ( 784 52 196 ) ( 768 52 196 ) metals/m_hl_c10b 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 776 84 168 ) ( 776 52 168 ) ( 784 52 200 ) props2/speaker1 0 -53 0 0.400000 0.500000 134217728 8388608 0 +( 768 260 232 ) ( 768 -252 232 ) ( 768 -252 104 ) bricks/b_mf_v2 -4 8 0 1 1 134217728 0 0 +( 712 76 40 ) ( 728 76 40 ) ( 720 76 232 ) metals/m_hl_c10b 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 728 52 40 ) ( 704 52 40 ) ( 716 52 232 ) metals/m_hl_c10b 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 776 52 172 ) ( 776 84 172 ) ( 768 84 172 ) metals/m_hl_c10b 0 0 0 0.500000 0.500000 134217728 8388608 0 +} +// brush 140 +{ +( -1344 2808 -144 ) ( -1440 2808 -144 ) ( -1440 2712 -144 ) common/0_clip 0 0 0 1 1 196608 128 0 +( -1440 2712 -128 ) ( -1440 2808 -128 ) ( -1344 2808 -128 ) common/0_clip 0 0 0 1 1 196608 128 0 +( -1360 2712 -128 ) ( -1360 2808 -128 ) ( -1360 2808 -144 ) common/0_clip 0 0 0 1 1 196608 128 0 +( -1428 2808 -128 ) ( -1428 2712 -128 ) ( -1428 2712 -144 ) common/0_clip 0 0 0 1 1 196608 128 0 +( -1440 2644 -144 ) ( -1424 2644 -144 ) ( -1432 2644 -128 ) common/0_clip 0 0 0 1 1 196608 128 0 +( -1424 2560 -144 ) ( -1440 2560 -144 ) ( -1432 2560 -128 ) common/0_clip 0 0 0 1 1 196608 128 0 +} +// brush 141 +{ +( 896 704 32 ) ( 768 704 32 ) ( 768 576 32 ) wood/wd_sr_m3a 0 0 0 0.500000 0.500000 134217728 0 0 +( 768 576 40 ) ( 768 704 40 ) ( 896 704 40 ) wood/wd_sr_m3a 0 0 0 0.500000 0.500000 134217728 134217728 0 +( 768 640 40 ) ( 896 640 40 ) ( 896 640 32 ) props/box_w_m1a 0 32 0 1 1 134217728 134217728 0 +( 832 576 40 ) ( 832 704 40 ) ( 832 704 32 ) props/box_w_m1a 0 32 0 1 1 134217728 134217728 0 +( 896 704 40 ) ( 768 704 40 ) ( 768 704 32 ) props/box_w_m1a 0 32 0 1 1 134217728 0 0 +( 768 704 40 ) ( 768 576 40 ) ( 768 576 32 ) props/box_w_m1a 0 32 0 1 1 134217728 0 0 +} +// brush 142 +{ +( 920 704 -16 ) ( 835 704 79 ) ( 835 576 79 ) wood/wd_sr_m3a 85 0 -90 0.370000 0.500000 134217728 134217728 0 +( 841 576 84 ) ( 841 704 84 ) ( 926 704 -11 ) wood/wd_sr_m3a 99 0 -90 0.370000 0.500000 134217728 134217728 0 +( 841 640 76 ) ( 926 640 -19 ) ( 920 640 -24 ) props/box_w_m1a 32 87 -47 1 1 134217728 134217728 0 +( 883 576 37 ) ( 883 704 37 ) ( 877 704 32 ) props/box_w_m1a 0 28 90 1 -0.743164 134217728 0 0 +( 926 704 -11 ) ( 841 704 84 ) ( 835 704 79 ) props/box_w_m1a 45 97 -48 1 1 134217728 134217728 0 +( 841 704 84 ) ( 841 576 84 ) ( 835 576 79 ) props/box_w_m1a 0 40 90 1 -0.740000 134217728 134217728 0 +} +// brush 143 +{ +( 896 696 64 ) ( 768 696 64 ) ( 768 568 64 ) wood/wd_sr_m3a 0 -16 0 0.500000 0.500000 134217728 0 0 +( 768 568 72 ) ( 768 696 72 ) ( 896 696 72 ) wood/wd_sr_m3a 0 -16 0 0.500000 0.500000 134217728 134217728 0 +( 768 632 72 ) ( 896 632 72 ) ( 896 632 64 ) props/box_w_m1a 0 0 0 1 1 134217728 0 0 +( 832 568 72 ) ( 832 696 72 ) ( 832 696 64 ) props/box_w_m1a 8 0 0 1 1 134217728 0 0 +( 896 696 72 ) ( 768 696 72 ) ( 768 696 64 ) props/box_w_m1a 0 0 0 1 1 134217728 0 0 +( 768 696 72 ) ( 768 568 72 ) ( 768 568 64 ) props/box_w_m1a 8 0 0 1 1 134217728 0 0 +} +// brush 144 +{ +( 912 704 56 ) ( 784 704 56 ) ( 784 576 56 ) wood/wd_sr_m3a -32 0 0 0.500000 0.500000 134217728 0 0 +( 784 576 64 ) ( 784 704 64 ) ( 912 704 64 ) wood/wd_sr_m3a -32 0 0 0.500000 0.500000 134217728 134217728 0 +( 784 640 64 ) ( 912 640 64 ) ( 912 640 56 ) props/box_w_m1a -16 56 0 1 1 134217728 134217728 0 +( 848 576 64 ) ( 848 704 64 ) ( 848 704 56 ) props/box_w_m1a 0 56 0 1 1 134217728 134217728 0 +( 912 704 64 ) ( 784 704 64 ) ( 784 704 56 ) props/box_w_m1a -16 56 0 1 1 134217728 0 0 +( 784 704 64 ) ( 784 576 64 ) ( 784 576 56 ) props/box_w_m1a 0 56 0 1 1 134217728 0 0 +} +// brush 145 +{ +( 896 704 48 ) ( 768 704 48 ) ( 768 576 48 ) wood/wd_sr_m3a 0 0 0 0.500000 0.500000 134217728 0 0 +( 768 576 56 ) ( 768 704 56 ) ( 896 704 56 ) wood/wd_sr_m3a 0 0 0 0.500000 0.500000 134217728 134217728 0 +( 768 640 56 ) ( 896 640 56 ) ( 896 640 48 ) props/box_w_m1a 0 48 0 1 1 134217728 134217728 0 +( 832 576 56 ) ( 832 704 56 ) ( 832 704 48 ) props/box_w_m1a 0 48 0 1 1 134217728 134217728 0 +( 896 704 56 ) ( 768 704 56 ) ( 768 704 48 ) props/box_w_m1a 0 48 0 1 1 134217728 0 0 +( 768 704 56 ) ( 768 576 56 ) ( 768 576 48 ) props/box_w_m1a 0 48 0 1 1 134217728 0 0 +} +// brush 146 +{ +( 904 696 40 ) ( 776 696 40 ) ( 776 568 40 ) wood/wd_sr_m3a -16 -16 0 0.500000 0.500000 134217728 0 0 +( 776 568 48 ) ( 776 696 48 ) ( 904 696 48 ) wood/wd_sr_m3a -16 -16 0 0.500000 0.500000 134217728 134217728 0 +( 776 632 48 ) ( 904 632 48 ) ( 904 632 40 ) props/box_w_m1a -8 40 0 1 1 134217728 134217728 0 +( 840 568 48 ) ( 840 696 48 ) ( 840 696 40 ) props/box_w_m1a 8 40 0 1 1 134217728 134217728 0 +( 904 696 48 ) ( 776 696 48 ) ( 776 696 40 ) props/box_w_m1a -8 40 0 1 1 134217728 0 0 +( 776 696 48 ) ( 776 568 48 ) ( 776 568 40 ) props/box_w_m1a 8 40 0 1 1 134217728 0 0 +} +// brush 147 +{ +( -2002 2760 20 ) ( -2002 2764 20 ) ( -2198 2764 20 ) wood/wd_sr_m3a 8 0 90 1 -1 134217728 134217728 0 +( -1792 2764 28 ) ( -1792 2756 28 ) ( -1848 2756 28 ) wood/wd_sr_m3a 8 0 90 1 -1 134217728 134217728 0 +( -1920 2764 24 ) ( -1920 2764 32 ) ( -2112 2764 32 ) wood/wd_sr_m3a 8 0 90 1 -1 134217728 134217728 0 +( -2112 2764 120 ) ( -2112 2756 120 ) ( -2112 2756 0 ) wood/wd_sr_m3a 8 0 90 1 -1 134217728 134217728 0 +( -1942 2760 120 ) ( -1886 2760 120 ) ( -1886 2760 0 ) wood/wd_sr_m3a 8 0 90 1 -1 134217728 134217728 0 +( -2002 2764 20 ) ( -2002 2760 20 ) ( -2006 2760 28 ) wood/wd_sr_m3a 8 0 90 1 -1 134217728 134217728 0 +} +// brush 148 +{ +( 1448 3456 320 ) ( 1280 3456 320 ) ( 1280 3224 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1280 3224 576 ) ( 1280 3456 576 ) ( 1448 3456 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1536 3072 320 ) ( 1536 3072 576 ) ( 1536 3456 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1448 3456 576 ) ( 1280 3456 576 ) ( 1280 3456 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1024 3496 576 ) ( 1024 3264 576 ) ( 1024 3264 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1392 3072 576 ) ( 1392 3072 320 ) ( 1008 3432 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1392 3072 320 ) ( 1392 3072 576 ) ( 1584 3072 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 149 +{ +( -2068 2712 0 ) ( -2072 2712 0 ) ( -2072 2680 0 ) common/0_clip 0 0 0 1 1 196608 128 131072 +( -2072 2680 4 ) ( -2072 2712 4 ) ( -2068 2712 4 ) common/0_clip 0 0 0 1 1 196608 128 131072 +( -2056 2672 4 ) ( -2056 2672 0 ) ( -2072 2680 0 ) common/0_clip 0 0 0 1 1 196608 128 131072 +( -2056 2672 0 ) ( -2056 2672 4 ) ( -2056 2712 4 ) common/0_clip 0 0 0 1 1 196608 128 131072 +( -2068 2712 8 ) ( -2072 2712 8 ) ( -2072 2712 0 ) common/0_clip 0 0 0 1 1 196608 128 131072 +( -2072 2712 8 ) ( -2072 2680 8 ) ( -2072 2680 0 ) common/0_clip 0 0 0 1 1 196608 128 131072 +} +// brush 150 +{ +( -2048 2712 0 ) ( -2080 2712 0 ) ( -2080 2680 0 ) common/0_clip 0 0 0 1 1 196608 128 131072 +( -2080 2680 8 ) ( -2080 2712 8 ) ( -2048 2712 8 ) common/0_clip 0 0 0 1 1 196608 128 131072 +( -2072 2672 8 ) ( -2072 2672 0 ) ( -2080 2668 0 ) common/0_clip 0 0 0 1 1 196608 128 131072 +( -2072 2672 0 ) ( -2072 2672 8 ) ( -2072 2712 8 ) common/0_clip 0 0 0 1 1 196608 128 131072 +( -2048 2712 8 ) ( -2080 2712 8 ) ( -2080 2712 0 ) common/0_clip 0 0 0 1 1 196608 128 131072 +( -2080 2664 8 ) ( -2080 2664 0 ) ( -2080 2712 0 ) common/0_clip 0 0 0 1 1 196608 128 131072 +} +// brush 151 +{ +( -2096 2720 0 ) ( -2112 2720 0 ) ( -2112 2672 0 ) common/0_clip 0 0 0 1 1 196608 128 131072 +( -2112 2672 8 ) ( -2112 2720 8 ) ( -2096 2720 8 ) common/0_clip 0 0 0 1 1 196608 128 131072 +( -2112 2624 8 ) ( -2096 2624 8 ) ( -2096 2624 0 ) common/0_clip 0 0 0 1 1 196608 128 131072 +( -2080 2672 8 ) ( -2080 2720 8 ) ( -2080 2720 0 ) common/0_clip 0 0 0 1 1 196608 128 131072 +( -2096 2712 8 ) ( -2112 2712 8 ) ( -2112 2712 0 ) common/0_clip 0 0 0 1 1 196608 128 131072 +( -2112 2720 8 ) ( -2112 2672 8 ) ( -2112 2672 0 ) common/0_clip 0 0 0 1 1 196608 128 131072 +} +// brush 152 +{ +( -2096 2664 0 ) ( -2080 2616 8 ) ( -2096 2616 -40 ) bricks/s_sr_m12ab 0 -8 0 1 1 0 0 0 +( -2136 2728 -40 ) ( -2080 2768 -40 ) ( -2064 2680 8 ) bricks/s_sr_m12ab 0 -8 0 1 1 0 0 0 +( -2088 2760 -40 ) ( -2024 2704 -40 ) ( -2032 2688 -24 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2048 2656 0 ) ( -2056 2624 0 ) ( -2080 2624 8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2048 2616 -16 ) ( -2088 2616 -16 ) ( -2080 2624 8 ) bricks/s_sr_m12ab 0 -8 0 1 1 0 0 0 +( -2048 2752 0 ) ( -2048 2240 0 ) ( -1728 2752 0 ) bricks/s_sr_m12ab 0 184 0 1 1 0 0 0 +} +// brush 153 +{ +( 2944 3520 224 ) ( 2936 3520 224 ) ( 2936 2304 224 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2936 2304 576 ) ( 2936 3520 576 ) ( 2944 3520 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2944 4032 272 ) ( 2944 5248 272 ) ( 2944 5248 256 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2752 3968 512 ) ( 2752 3968 256 ) ( 2944 3968 256 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2944 3776 256 ) ( 2752 3968 256 ) ( 2848 3872 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 154 +{ +( 2944 3520 256 ) ( 2936 3520 256 ) ( 2936 2304 256 ) sprites/alfa_v1 0 0 0 1 1 128 16781312 0 +( 2936 2304 512 ) ( 2936 3520 512 ) ( 2944 3520 512 ) sprites/alfa_v1 0 0 0 1 1 128 16781312 0 +( 2944 3768 256 ) ( 2944 3768 512 ) ( 2944 3776 512 ) sprites/alfa_v1 0 0 0 1 1 128 16781312 0 +( 2944 3768 512 ) ( 2944 3768 256 ) ( 2752 3960 256 ) sprites/skyln_m1 426 0 0 2 2 0 4096 0 +( 2752 3952 256 ) ( 2752 3976 256 ) ( 2752 3964 512 ) sprites/skyln_m1 274 0 0 2 2 0 4096 0 +( 2944 3776 256 ) ( 2944 3776 512 ) ( 2752 3968 512 ) sprites/alfa_v1 0 0 0 1 1 128 16781312 0 +} +// brush 155 +{ +( 2768 2432 512 ) ( 2704 2432 512 ) ( 2704 2176 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2704 2176 576 ) ( 2704 2432 576 ) ( 2768 2432 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2720 2048 96 ) ( 2784 2048 96 ) ( 2784 2048 64 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2928 2176 96 ) ( 2928 2432 96 ) ( 2928 2432 64 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2840 2176 96 ) ( 2776 2176 96 ) ( 2776 2176 64 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2504 2432 96 ) ( 2504 2176 96 ) ( 2504 2176 64 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 156 +{ +( 1240 1848 512 ) ( 1224 1848 512 ) ( 1224 1536 512 ) common/li_sr_v17 24 0 0 1 1 0 132 0 +( 1224 1536 576 ) ( 1224 1848 576 ) ( 1240 1848 576 ) common/li_sr_v17 24 0 0 1 1 0 132 0 +( 1232 2464 576 ) ( 1248 2464 576 ) ( 1248 2464 448 ) common/li_sr_v17 24 0 0 1 1 0 132 0 +( 1248 1672 576 ) ( 1248 1984 576 ) ( 1248 1984 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1240 2944 576 ) ( 1224 2944 576 ) ( 1224 2944 448 ) common/li_sr_v17 24 0 0 1 1 0 132 0 +( 1136 1848 576 ) ( 1136 1536 576 ) ( 1136 1536 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 157 +{ +( 2416 3456 256 ) ( 2112 3456 256 ) ( 2112 3440 256 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 2112 3440 576 ) ( 2112 3456 576 ) ( 2416 3456 576 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 2112 3440 576 ) ( 2416 3440 576 ) ( 2416 3440 256 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 2560 3440 576 ) ( 2560 3456 576 ) ( 2560 3456 256 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 2416 3456 576 ) ( 2112 3456 576 ) ( 2112 3456 256 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 2112 3456 576 ) ( 2112 3440 576 ) ( 2112 3440 256 ) common/0_clip 0 0 0 1 1 196608 128 0 +} +// brush 158 +{ +( 2576 2536 256 ) ( 2560 2536 256 ) ( 2560 2448 256 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 2560 2448 576 ) ( 2560 2536 576 ) ( 2576 2536 576 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 2560 2448 288 ) ( 2576 2448 288 ) ( 2576 2448 256 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 2576 2520 288 ) ( 2576 2608 288 ) ( 2576 2608 256 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 2592 3456 288 ) ( 2576 3456 288 ) ( 2576 3456 256 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 2560 2536 288 ) ( 2560 2448 288 ) ( 2560 2448 256 ) common/0_clip 0 0 0 1 1 196608 128 0 +} +// brush 159 +{ +( 2136 2448 256 ) ( 2048 2448 256 ) ( 2048 2416 256 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 2048 2416 576 ) ( 2048 2448 576 ) ( 2136 2448 576 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 2048 2416 288 ) ( 2136 2416 288 ) ( 2136 2416 256 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 2576 2400 288 ) ( 2576 2432 288 ) ( 2576 2432 256 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 2136 2448 288 ) ( 2048 2448 288 ) ( 2048 2448 256 ) common/0_clip 0 0 0 1 1 196608 128 0 +( 2048 2448 288 ) ( 2048 2416 288 ) ( 2048 2416 256 ) common/0_clip 0 0 0 1 1 196608 128 0 +} +// brush 160 +{ +( -1128 1760 144 ) ( -1144 1760 144 ) ( -1144 1728 144 ) common/0_clip -16 0 0 1 1 196608 128 0 +( -1144 1728 152 ) ( -1144 1760 152 ) ( -1128 1760 152 ) common/0_clip -16 0 0 1 1 196608 128 0 +( -1144 1728 152 ) ( -1128 1728 152 ) ( -1128 1728 144 ) common/0_clip -16 0 0 1 1 196608 128 0 +( -1128 1728 152 ) ( -1128 1760 152 ) ( -1128 1760 144 ) common/0_clip 0 0 0 1 1 196608 128 0 +( -1128 1760 152 ) ( -1144 1760 152 ) ( -1144 1760 144 ) common/0_clip -16 0 0 1 1 196608 128 0 +( -1144 1760 152 ) ( -1144 1728 152 ) ( -1144 1728 144 ) common/0_clip 0 0 0 1 1 196608 128 0 +} +// brush 161 +{ +( -1182 1928 4 ) ( -1180 1928 4 ) ( -1180 1936 0 ) sprites/fenc_ms -4 76 0 0.250000 0.250000 0 4096 0 +( -1180 1930 128 ) ( -1182 1930 128 ) ( -1182 1936 128 ) sprites/fenc_ms -4 76 0 0.250000 0.250000 0 4096 0 +( -1182 1930 128 ) ( -1180 1930 128 ) ( -1180 1928 4 ) sprites/fenc_ms -4 12 0 0.250000 0.250000 0 4096 0 +( -1180 1924 128 ) ( -1180 1936 128 ) ( -1180 1936 0 ) sprites/fenc_ms -64 12 0 0.250000 0.250000 128 8392704 0 +( -1180 1936 128 ) ( -1182 1936 128 ) ( -1182 1936 0 ) sprites/fenc_ms -4 12 0 0.250000 0.250000 0 4096 0 +( -1182 1936 128 ) ( -1182 1924 128 ) ( -1182 1924 0 ) sprites/fenc_ms -64 12 0 0.250000 0.250000 128 8392704 0 +} +// brush 162 +{ +( -1180 1812 72 ) ( -1182 1812 72 ) ( -1182 1807 72 ) sprites/fenc_ms 0 12 0 0.250000 0.250000 0 4096 0 +( -1182 1816 128 ) ( -1180 1816 128 ) ( -1180 1807 128 ) sprites/fenc_ms 0 12 0 0.250000 0.250000 0 4096 0 +( -1180 1808 128 ) ( -1180 1808 0 ) ( -1181 1792 0 ) sprites/fenc_ms 0 12 0 0.250000 0.250000 128 8392704 0 +( -1182 1808 0 ) ( -1182 1808 128 ) ( -1183 1792 128 ) sprites/fenc_ms 0 12 0 0.250000 0.250000 0 4096 0 +( -1180 1816 128 ) ( -1182 1816 128 ) ( -1182 1812 72 ) sprites/fenc_ms 0 12 0 0.250000 0.250000 0 4096 0 +( -1180 1807 0 ) ( -1182 1807 0 ) ( -1180 1807 128 ) sprites/fenc_ms 0 12 0 0.250000 0.250000 0 4096 0 +} +// brush 163 +{ +( -1180 1818 0 ) ( -1181 1818 0 ) ( -1182 1807 0 ) sprites/fenc_ms 0 12 0 0.250000 0.250000 0 4096 0 +( -1182 1812 72 ) ( -1180 1812 72 ) ( -1180 1807 72 ) sprites/fenc_ms 0 12 0 0.250000 0.250000 0 4096 0 +( -1180 1808 128 ) ( -1180 1808 0 ) ( -1181 1792 0 ) sprites/fenc_ms 0 12 0 0.250000 0.250000 128 8392704 0 +( -1182 1808 0 ) ( -1182 1808 128 ) ( -1183 1792 128 ) sprites/fenc_ms 0 12 0 0.250000 0.250000 128 8392704 0 +( -1181 1818 0 ) ( -1180 1818 0 ) ( -1180 1812 72 ) sprites/fenc_ms 0 12 0 0.250000 0.250000 0 4096 0 +( -1180 1807 0 ) ( -1182 1807 0 ) ( -1180 1807 128 ) sprites/fenc_ms 0 12 0 0.250000 0.250000 0 4096 0 +} +// brush 164 +{ +( 2200 1928 -128 ) ( 2200 2000 -128 ) ( 2008 2000 -128 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( 2200 2000 -128 ) ( 2200 1928 -128 ) ( 2176 2000 -96 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( 2176 2000 0 ) ( 2048 2000 0 ) ( 2048 2000 -136 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( 2008 1928 -128 ) ( 2008 2000 -128 ) ( 2048 2000 -96 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( 2048 1928 -128 ) ( 2048 2000 -96 ) ( 2176 1964 -112 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +} +// brush 165 +{ +( 2176 2000 -136 ) ( 2048 2000 -136 ) ( 2048 1992 -136 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( 2048 1992 0 ) ( 2048 2000 0 ) ( 2176 2000 0 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( 2048 1992 0 ) ( 2176 1992 0 ) ( 2176 1992 -80 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( 2176 1992 0 ) ( 2176 2000 0 ) ( 2176 2000 -80 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( 2176 2000 0 ) ( 2048 2000 0 ) ( 2048 2000 -80 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( 2048 2000 0 ) ( 2048 1992 0 ) ( 2048 1992 -80 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +} +// brush 166 +{ +( 2176 2000 -48 ) ( 2152 2000 -48 ) ( 2152 1984 -48 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2152 1984 -32 ) ( 2152 2000 -32 ) ( 2176 2000 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2152 1984 -32 ) ( 2176 1984 -32 ) ( 2176 1984 -48 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2176 1984 -32 ) ( 2176 2000 -32 ) ( 2176 2000 -48 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2176 2000 -32 ) ( 2152 2000 -32 ) ( 2152 2000 -48 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2152 2000 -32 ) ( 2152 1984 -32 ) ( 2152 1984 -48 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 167 +{ +( 2080 2000 -48 ) ( 2048 2000 -48 ) ( 2048 1984 -48 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2048 1984 -32 ) ( 2048 2000 -32 ) ( 2080 2000 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2048 1984 0 ) ( 2080 1984 0 ) ( 2080 1984 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2080 1984 0 ) ( 2080 2000 0 ) ( 2080 2000 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2080 2000 0 ) ( 2048 2000 0 ) ( 2048 2000 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2048 2000 0 ) ( 2048 1984 0 ) ( 2048 1984 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 168 +{ +( 2176 2000 -112 ) ( 2136 2000 -112 ) ( 2136 1984 -112 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 2136 1984 -80 ) ( 2136 2000 -80 ) ( 2176 2000 -80 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 2136 1984 -96 ) ( 2176 1984 -96 ) ( 2176 1984 -112 ) bricks/c_pv_m2 -96 -1 0 1 1 0 0 0 +( 2176 1984 -96 ) ( 2176 2000 -96 ) ( 2176 2000 -112 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 2176 2000 -96 ) ( 2136 2000 -96 ) ( 2136 2000 -112 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 2136 2000 -96 ) ( 2136 1984 -96 ) ( 2136 1984 -112 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +} +// brush 169 +{ +( 2136 2000 -112 ) ( 2104 2000 -112 ) ( 2104 1984 -112 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 2104 1984 -96 ) ( 2104 2000 -96 ) ( 2136 2000 -96 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 2104 1984 -96 ) ( 2136 1984 -96 ) ( 2136 1984 -112 ) bricks/c_pv_m2 -96 -1 0 1 1 0 0 0 +( 2136 1984 -96 ) ( 2136 2000 -96 ) ( 2136 2000 -112 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 2136 2000 -96 ) ( 2104 2000 -96 ) ( 2104 2000 -112 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 2112 2000 -96 ) ( 2112 1984 -96 ) ( 2112 1984 -112 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +} +// brush 170 +{ +( 2072 2000 -112 ) ( 2048 2000 -112 ) ( 2048 1984 -112 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 2048 1984 -96 ) ( 2048 2000 -96 ) ( 2072 2000 -96 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 2048 1984 -80 ) ( 2072 1984 -80 ) ( 2072 1984 -128 ) bricks/c_pv_m2 -96 -1 0 1 1 0 0 0 +( 2072 1984 -80 ) ( 2072 2000 -80 ) ( 2072 2000 -128 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 2072 2000 -80 ) ( 2048 2000 -80 ) ( 2048 2000 -128 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 2048 2000 -80 ) ( 2048 1984 -80 ) ( 2048 1984 -128 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +} +// brush 171 +{ +( 1968 1984 0 ) ( 1968 2000 0 ) ( 2112 2000 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1968 1984 0 ) ( 2112 1984 0 ) ( 2112 1984 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2112 2000 0 ) ( 1968 2000 0 ) ( 1968 2000 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 1984 -80 ) ( 1992 1984 -80 ) ( 1900 2000 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2304 2000 -80 ) ( 2304 1920 -80 ) ( 2304 1960 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2176 1984 -80 ) ( 2176 2000 -80 ) ( 2176 1992 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 172 +{ +( 1968 1984 0 ) ( 1968 2000 0 ) ( 2112 2000 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1968 1984 0 ) ( 2112 1984 0 ) ( 2112 1984 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2112 2000 0 ) ( 1968 2000 0 ) ( 1968 2000 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 1984 -32 ) ( 1992 1984 -32 ) ( 1900 2000 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2048 1984 -80 ) ( 2048 2000 -80 ) ( 2048 1992 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2176 2000 -80 ) ( 2176 1984 -80 ) ( 2176 1992 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 173 +{ +( 1968 1984 0 ) ( 1968 2000 0 ) ( 2112 2000 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1968 1984 0 ) ( 2112 1984 0 ) ( 2112 1984 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2112 2000 0 ) ( 1968 2000 0 ) ( 1968 2000 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1968 2000 0 ) ( 1968 1984 0 ) ( 1968 1984 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 1984 -80 ) ( 1992 1984 -80 ) ( 1900 2000 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2048 2000 -80 ) ( 2048 1984 -80 ) ( 2048 1992 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 174 +{ +( 2112 2000 -128 ) ( 1968 2000 -128 ) ( 1968 1984 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1968 1984 0 ) ( 2112 1984 0 ) ( 2112 1984 -128 ) bricks/c_pv_m2 -96 -1 0 1 1 0 0 0 +( 2112 2000 0 ) ( 1968 2000 0 ) ( 1968 2000 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2112 1984 -80 ) ( 1808 1984 -80 ) ( 1960 2000 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2304 2000 -128 ) ( 2304 1920 -128 ) ( 2304 1960 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2176 1984 -128 ) ( 2176 2000 -128 ) ( 2176 1992 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 175 +{ +( 2112 2000 -128 ) ( 1968 2000 -128 ) ( 1968 1984 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1968 1984 0 ) ( 2112 1984 0 ) ( 2112 1984 -128 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 2112 2000 0 ) ( 1968 2000 0 ) ( 1968 2000 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2112 1984 -112 ) ( 1808 1984 -112 ) ( 1960 2000 -112 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2048 1984 -128 ) ( 2048 2000 -128 ) ( 2048 1992 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2176 2000 -128 ) ( 2176 1984 -128 ) ( 2176 1992 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 176 +{ +( 2112 2000 -128 ) ( 1968 2000 -128 ) ( 1968 1984 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1968 1984 0 ) ( 2112 1984 0 ) ( 2112 1984 -128 ) bricks/c_pv_m2 -96 -1 0 1 1 0 0 0 +( 2112 2000 0 ) ( 1968 2000 0 ) ( 1968 2000 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1968 2000 16 ) ( 1968 1984 16 ) ( 1968 1984 -112 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2112 1984 -80 ) ( 1808 1984 -80 ) ( 1960 2000 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2048 2000 -128 ) ( 2048 1984 -128 ) ( 2048 1992 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 177 +{ +( 2112 1984 0 ) ( 1952 1984 0 ) ( 1952 1856 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1952 1856 16 ) ( 1952 1984 16 ) ( 2112 1984 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2528 1928 0 ) ( 2544 1928 0 ) ( 2536 1928 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2496 1912 0 ) ( 2472 1912 0 ) ( 2484 1912 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2304 1992 0 ) ( 2304 1912 0 ) ( 2304 1952 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2248 1920 0 ) ( 2248 1928 0 ) ( 2248 1924 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 178 +{ +( 2112 1984 0 ) ( 1952 1984 0 ) ( 1952 1856 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1952 1856 16 ) ( 1952 1984 16 ) ( 2112 1984 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2528 1928 0 ) ( 2544 1928 0 ) ( 2536 1928 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2552 1912 0 ) ( 2528 1912 0 ) ( 2540 1912 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2056 1920 0 ) ( 2056 1928 0 ) ( 2056 1924 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2232 1920 0 ) ( 2232 1912 0 ) ( 2232 1916 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 179 +{ +( 2336 1984 0 ) ( 2176 1984 0 ) ( 2176 1856 0 ) common/li_sr_v27 -8 8 0 1 1 0 1 20000 +( 2176 1856 16 ) ( 2176 1984 16 ) ( 2336 1984 16 ) bricks/b_mf_v2 -96 0 0 1 1 0 0 0 +( 2176 1928 0 ) ( 2192 1928 0 ) ( 2184 1928 16 ) bricks/b_mf_v2 -96 0 0 1 1 0 0 0 +( 2200 1912 0 ) ( 2176 1912 0 ) ( 2188 1912 16 ) bricks/b_mf_v2 -96 0 0 1 1 0 0 0 +( 2232 1912 0 ) ( 2232 1920 0 ) ( 2232 1916 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2248 1928 0 ) ( 2248 1920 0 ) ( 2248 1924 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 180 +{ +( 2112 1984 -144 ) ( 1952 1984 -144 ) ( 1952 1856 -144 ) bricks/c_sr_m2 -4 -220 90 1 1.200000 0 67108864 0 +( 1952 1856 -128 ) ( 1952 1984 -128 ) ( 2112 1984 -128 ) bricks/c_sr_m2 28 -124 180 -1 1.200000 0 67108864 0 +( 1824 1856 -144 ) ( 1824 1856 -128 ) ( 2304 1856 -128 ) bricks/c_sr_m2 -4 -220 90 1 1.200000 0 67108864 0 +( 2112 1984 -128 ) ( 1952 1984 -128 ) ( 1952 1984 -144 ) bricks/c_sr_m2 -4 -220 90 1 1.200000 0 67108864 0 +( 1824 1856 -128 ) ( 1824 1856 -144 ) ( 1952 1984 -144 ) bricks/c_sr_m2 -4 -220 90 1 1.200000 0 67108864 0 +( 2304 2000 -144 ) ( 2304 1920 -144 ) ( 2304 1960 -128 ) bricks/c_sr_m2 -4 -220 90 1 1.200000 0 67108864 0 +} +// brush 181 +{ +( 1968 1856 -128 ) ( 1808 1856 -128 ) ( 1808 1840 -128 ) bricks/b_mf_v2a 0 64 0 1 1 0 0 0 +( 1808 1840 0 ) ( 1968 1840 0 ) ( 1968 1840 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1968 1856 0 ) ( 1808 1856 0 ) ( 1808 1856 -128 ) bricks/c_pv_m2 -96 -1 0 1 1 0 0 0 +( 1824 1856 16 ) ( 1824 1840 16 ) ( 1824 1840 -112 ) bricks/b_mf_v2a -64 0 0 1 1 0 0 0 +( 2112 1840 -80 ) ( 1808 1840 -80 ) ( 1960 1856 -80 ) bricks/b_mf_v2a -64 0 0 1 1 0 0 0 +( 2304 2008 -128 ) ( 2304 1928 -128 ) ( 2304 1968 -80 ) bricks/b_mf_v2a -64 0 0 1 1 0 0 0 +} +// brush 182 +{ +( 1808 1840 0 ) ( 1808 1856 0 ) ( 1968 1856 0 ) bricks/b_mf_v2a 0 64 0 1 1 0 0 0 +( 1808 1840 0 ) ( 1968 1840 0 ) ( 1968 1840 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1968 1856 0 ) ( 1808 1856 0 ) ( 1808 1856 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 1856 0 ) ( 1824 1840 0 ) ( 1824 1840 -128 ) bricks/b_mf_v2a -64 0 0 1 1 0 0 0 +( 1808 1840 -80 ) ( 1992 1840 -80 ) ( 1900 1856 -80 ) bricks/b_mf_v2a -64 0 0 1 1 0 0 0 +( 2304 2000 -80 ) ( 2304 1920 -80 ) ( 2304 1960 0 ) bricks/b_mf_v2a -64 0 0 1 1 0 0 0 +} +// brush 183 +{ +( 2304 2016 -144 ) ( 2304 1808 -144 ) ( 2320 1808 -144 ) bricks/c_pv_m2 24 0 0 1 1 0 0 0 +( 2304 2016 48 ) ( 2304 1808 48 ) ( 2304 1808 -144 ) bricks/c_pv_m2 -96 -1 0 1 1 0 0 0 +( 2312 1956 -144 ) ( 2296 1956 -144 ) ( 2304 1956 80 ) bricks/c_pv_m2 24 0 0 1 1 0 0 0 +( 2304 2000 -144 ) ( 2320 2000 -144 ) ( 2312 2000 80 ) bricks/c_pv_m2 24 0 0 1 1 0 0 0 +( 2312 2000 -144 ) ( 2312 1984 -144 ) ( 2312 1992 80 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 2296 1956 -80 ) ( 2264 1956 -80 ) ( 2280 2000 -80 ) bricks/c_pv_m2 24 0 0 1 1 0 0 0 +} +// brush 184 +{ +( 2320 1808 80 ) ( 2304 1808 80 ) ( 2304 2016 80 ) bricks/b_mf_v2a 120 0 0 1 1 0 0 0 +( 2304 2016 48 ) ( 2304 1808 48 ) ( 2304 1808 -144 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2312 1956 -144 ) ( 2296 1956 -144 ) ( 2304 1956 80 ) bricks/b_mf_v2a 120 0 0 1 1 0 0 0 +( 2304 2000 -144 ) ( 2320 2000 -144 ) ( 2312 2000 80 ) bricks/b_mf_v2a 120 0 0 1 1 0 0 0 +( 2312 2000 -144 ) ( 2312 1984 -144 ) ( 2312 1992 80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2264 1956 -80 ) ( 2296 1956 -80 ) ( 2280 2000 -80 ) bricks/b_mf_v2a 120 0 0 1 1 0 0 0 +} +// brush 185 +{ +( 2304 2016 -144 ) ( 2304 1808 -144 ) ( 2320 1808 -144 ) bricks/c_pv_m2 24 0 0 1 1 0 0 0 +( 2304 2016 48 ) ( 2304 1808 48 ) ( 2304 1808 -144 ) bricks/c_pv_m2 -96 -1 0 1 1 0 0 0 +( 2288 1884 -144 ) ( 2304 1884 -144 ) ( 2296 1884 80 ) bricks/c_pv_m2 24 0 0 1 1 0 0 0 +( 2320 1840 -144 ) ( 2304 1840 -144 ) ( 2312 1840 80 ) bricks/c_pv_m2 24 0 0 1 1 0 0 0 +( 2312 2000 -144 ) ( 2312 1984 -144 ) ( 2312 1992 80 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 2296 1840 -80 ) ( 2264 1840 -80 ) ( 2280 1884 -80 ) bricks/c_pv_m2 24 0 0 1 1 0 0 0 +} +// brush 186 +{ +( 2320 1808 80 ) ( 2304 1808 80 ) ( 2304 2016 80 ) bricks/b_mf_v2a 120 0 0 1 1 0 0 0 +( 2304 2016 48 ) ( 2304 1808 48 ) ( 2304 1808 -144 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2288 1884 -144 ) ( 2304 1884 -144 ) ( 2296 1884 80 ) bricks/b_mf_v2a 120 0 0 1 1 0 0 0 +( 2320 1840 -144 ) ( 2304 1840 -144 ) ( 2312 1840 80 ) bricks/b_mf_v2a 120 0 0 1 1 0 0 0 +( 2312 2000 -144 ) ( 2312 1984 -144 ) ( 2312 1992 80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2264 1840 -80 ) ( 2296 1840 -80 ) ( 2280 1884 -80 ) bricks/b_mf_v2a 120 0 0 1 1 0 0 0 +} +// brush 187 +{ +( 2304 2016 -144 ) ( 2304 1808 -144 ) ( 2320 1808 -144 ) metals/mt_pv_m26y 31 -8 -90 1 1 0 8388608 0 +( 2320 1808 80 ) ( 2304 1808 80 ) ( 2304 2016 80 ) metals/mt_pv_m26y 31 -8 -90 1 1 0 8388608 0 +( 2320 1808 48 ) ( 2320 2016 48 ) ( 2320 2016 -144 ) metals/mt_pv_m26 64 2 0 1 1 0 8388608 0 +( 2312 1956 -144 ) ( 2296 1956 -144 ) ( 2304 1956 80 ) metals/mt_pv_m26y 80 -199 0 1 1 0 8388608 0 +( 2304 2000 -144 ) ( 2320 2000 -144 ) ( 2312 2000 80 ) metals/mt_pv_m26y 80 -199 0 1 1 0 8388608 0 +( 2312 1984 -144 ) ( 2312 2000 -144 ) ( 2312 1992 80 ) metals/mt_pv_m26y -40 -199 0 1 1 0 8388608 0 +} +// brush 188 +{ +( 2304 2016 -144 ) ( 2304 1808 -144 ) ( 2320 1808 -144 ) metals/mt_pv_m26y 31 -8 -90 1 1 0 8388608 0 +( 2320 1808 80 ) ( 2304 1808 80 ) ( 2304 2016 80 ) metals/mt_pv_m26y 31 -8 -90 1 1 0 8388608 0 +( 2320 1808 48 ) ( 2320 2016 48 ) ( 2320 2016 -144 ) metals/mt_pv_m26 64 2 0 1 1 0 8388608 0 +( 2288 1884 -144 ) ( 2304 1884 -144 ) ( 2296 1884 80 ) metals/mt_pv_m26y 80 -199 0 1 1 0 8388608 0 +( 2320 1840 -144 ) ( 2304 1840 -144 ) ( 2312 1840 80 ) metals/mt_pv_m26y 80 -199 0 1 1 0 8388608 0 +( 2312 1984 -144 ) ( 2312 2000 -144 ) ( 2312 1992 80 ) metals/mt_pv_m26y -40 -199 0 1 1 0 8388608 0 +} +// brush 189 +{ +( 2836 1952 -128 ) ( 2836 1888 -128 ) ( 2852 1888 -128 ) floors/dr_pv_vv1d 96 27 -90 1 1 0 8388608 0 +( 2852 1888 -16 ) ( 2836 1888 -16 ) ( 2836 1952 -16 ) floors/dr_pv_vv1d 96 27 -90 1 1 0 8388608 0 +( 2842 1888 -32 ) ( 2842 1952 -32 ) ( 2842 1952 -128 ) floors/dr_pv_vv1d 96 0 -180 1 -1 0 8388608 0 +( 2852 1952 -32 ) ( 2836 1952 -32 ) ( 2836 1952 -128 ) floors/dr_pv_vv1d 36 0 0 1 1 0 8388608 0 +( 2838 1952 -32 ) ( 2838 1888 -32 ) ( 2838 1888 -128 ) floors/dr_pv_vv1d 96 0 -180 1 -1 0 8388608 0 +( 2836 1888 -32 ) ( 2852 1888 -32 ) ( 2852 1888 -128 ) floors/dr_pv_vv1d 36 0 0 1 1 0 8388608 0 +} +// brush 190 +{ +( 2832 2016 -144 ) ( 2832 1808 -144 ) ( 2848 1808 -144 ) metals/mt_pv_m26y 30 -25 -90 1.000244 1 0 8388608 0 +( 2848 1808 80 ) ( 2832 1808 80 ) ( 2832 2016 80 ) metals/mt_pv_m26y 30 -25 -90 1.000244 1 0 8388608 0 +( 2848 1808 48 ) ( 2848 2016 48 ) ( 2848 2016 -144 ) metals/mt_pv_m26y 32 -71 -180 1 -1 0 8388608 0 +( 2832 2016 48 ) ( 2832 1808 48 ) ( 2832 1808 -144 ) metals/mt_pv_m26 64 2 0 1 1 0 8388608 0 +( 2832 1840 48 ) ( 2848 1840 48 ) ( 2848 1840 -144 ) metals/mt_pv_m26y -32 -71 0 1 1 0 8388608 0 +( 2816 1884 -144 ) ( 2832 1884 -144 ) ( 2824 1884 80 ) metals/mt_pv_m26y -32 -71 0 1 1 0 8388608 0 +} +// brush 191 +{ +( 2832 2016 -12 ) ( 2832 1808 -12 ) ( 2848 1808 -12 ) metals/mt_pv_m26y 30 -25 -90 1.000244 1 0 8388608 0 +( 2848 1808 80 ) ( 2832 1808 80 ) ( 2832 2016 80 ) metals/mt_pv_m26y 30 -25 -90 1.000244 1 0 8388608 0 +( 2848 1808 48 ) ( 2848 2016 48 ) ( 2848 2016 -144 ) metals/mt_pv_m26y 32 -71 -180 1 -1 0 8388608 0 +( 2832 2016 48 ) ( 2832 1808 48 ) ( 2832 1808 -144 ) metals/mt_pv_m26 64 2 0 1 1 0 8388608 0 +( 2848 1884 -144 ) ( 2832 1884 -144 ) ( 2840 1884 80 ) metals/mt_pv_m26y -32 -71 0 1 1 0 8388608 0 +( 2832 1956 -144 ) ( 2848 1956 -144 ) ( 2840 1956 80 ) metals/mt_pv_m26y -32 -71 0 1 1 0 8388608 0 +} +// brush 192 +{ +( 2832 2016 -144 ) ( 2832 1808 -144 ) ( 2848 1808 -144 ) metals/mt_pv_m26y 30 -25 -90 1.000244 1 0 8388608 0 +( 2848 1808 80 ) ( 2832 1808 80 ) ( 2832 2016 80 ) metals/mt_pv_m26y 30 -25 -90 1.000244 1 0 8388608 0 +( 2848 1808 48 ) ( 2848 2016 48 ) ( 2848 2016 -144 ) metals/mt_pv_m26y 32 -71 -180 1 -1 0 8388608 0 +( 2848 2000 48 ) ( 2832 2000 48 ) ( 2832 2000 -144 ) metals/mt_pv_m26y -32 -71 0 1 1 0 8388608 0 +( 2832 2016 48 ) ( 2832 1808 48 ) ( 2832 1808 -144 ) metals/mt_pv_m26 64 2 0 1 1 0 8388608 0 +( 2840 1956 -144 ) ( 2824 1956 -144 ) ( 2832 1956 80 ) metals/mt_pv_m26y -32 -71 0 1 1 0 8388608 0 +} +// brush 193 +{ +( 2832 1952 -160 ) ( 2832 1888 -160 ) ( 2848 1888 -160 ) metals/mt_pv_m16k 0 15 -90 1 1 0 8388608 0 +( 2848 1888 -128 ) ( 2832 1888 -128 ) ( 2832 1952 -128 ) metals/mt_pv_m16k -1 -31 -180 1 1 0 8388608 0 +( 2848 1888 -128 ) ( 2848 1952 -128 ) ( 2848 1952 -160 ) metals/mt_pv_m16k 0 -15 -180 1 -1 0 8388608 0 +( 2848 1952 -128 ) ( 2832 1952 -128 ) ( 2832 1952 -160 ) metals/mt_pv_m16k 0 -15 0 1 1 0 8388608 0 +( 2832 1952 -128 ) ( 2832 1888 -128 ) ( 2832 1888 -160 ) metals/mt_pv_m16k 0 -15 -180 1 -1 0 8388608 0 +( 2832 1888 -128 ) ( 2848 1888 -128 ) ( 2848 1888 -160 ) metals/mt_pv_m16k 0 -15 0 1 1 0 8388608 0 +} +// brush 194 +{ +( 2832 1968 -144 ) ( 2832 1952 -144 ) ( 2848 1952 -144 ) metals/mt_pv_m26y 0 -17 -90 1 1 0 8388608 0 +( 2848 1952 -12 ) ( 2832 1952 -12 ) ( 2832 1968 -12 ) metals/mt_pv_m26y 0 -17 -90 1 1 0 8388608 0 +( 2848 1952 0 ) ( 2848 1968 0 ) ( 2848 1968 -144 ) metals/mt_pv_m26y 0 -15 -180 1 -1 0 8388608 0 +( 2832 1968 0 ) ( 2832 1952 0 ) ( 2832 1952 -144 ) metals/mt_pv_m26y 0 -15 -180 1 -1 0 8388608 0 +( 2832 1952 0 ) ( 2848 1952 0 ) ( 2848 1952 -144 ) metals/mt_pv_m26y 16 -15 0 1 1 0 8388608 0 +( 2832 1956 -144 ) ( 2848 1956 -144 ) ( 2840 1956 0 ) metals/mt_pv_m26y 16 -15 0 1 1 0 8388608 0 +} +// brush 195 +{ +( 2832 1888 -144 ) ( 2832 1872 -144 ) ( 2848 1872 -144 ) metals/mt_pv_m26y 0 -17 -90 1 1 0 8388608 0 +( 2848 1872 -12 ) ( 2832 1872 -12 ) ( 2832 1888 -12 ) metals/mt_pv_m26y 0 -17 -90 1 1 0 8388608 0 +( 2848 1872 80 ) ( 2848 1888 80 ) ( 2848 1888 -144 ) metals/mt_pv_m26y 0 -15 -180 1 -1 0 8388608 0 +( 2848 1888 80 ) ( 2832 1888 80 ) ( 2832 1888 -144 ) metals/mt_pv_m26y 16 -15 0 1 1 0 8388608 0 +( 2832 1888 80 ) ( 2832 1872 80 ) ( 2832 1872 -144 ) metals/mt_pv_m26y 0 -15 -180 1 -1 0 8388608 0 +( 2848 1884 -144 ) ( 2832 1884 -144 ) ( 2840 1884 0 ) metals/mt_pv_m26y 16 -15 0 1 1 0 8388608 0 +} +// brush 196 +{ +( 2832 1952 -16 ) ( 2832 1888 -16 ) ( 2848 1888 -16 ) metals/mt_pv_m26y 0 -17 -90 1 1 0 8388608 0 +( 2848 1888 0 ) ( 2848 1952 0 ) ( 2848 1952 -144 ) metals/mt_pv_m26y 0 -15 -180 1 -1 0 8388608 0 +( 2848 1952 0 ) ( 2832 1952 0 ) ( 2832 1952 -144 ) metals/mt_pv_m26y 16 -15 0 1 1 0 8388608 0 +( 2832 1952 0 ) ( 2832 1888 0 ) ( 2832 1888 -144 ) metals/mt_pv_m26y 0 -15 -180 1 -1 0 8388608 0 +( 2832 1888 0 ) ( 2848 1888 0 ) ( 2848 1888 -144 ) metals/mt_pv_m26y 16 -15 0 1 1 0 8388608 0 +( 2848 1908 -12 ) ( 2848 1888 -12 ) ( 2832 1898 -12 ) metals/mt_pv_m26y 0 -17 -90 1 1 0 8388608 0 +} +// brush 197 +{ +( 2304 1864 0 ) ( 2608 1864 0 ) ( 2608 1984 0 ) metals/mt_pv_m26y 97 -63 0 1 1 0 0 0 +( 2608 1984 16 ) ( 2608 1864 16 ) ( 2304 1864 16 ) metals/mt_pv_m26y 97 -63 0 1 1 0 0 0 +( 2832 1984 0 ) ( 2832 1984 16 ) ( 2320 1984 16 ) metals/mt_pv_m26y 97 -63 0 1 1 0 0 0 +( 2320 1984 64 ) ( 2320 1864 64 ) ( 2320 1864 0 ) metals/mt_pv_m26y 97 -63 0 1 1 0 0 0 +( 2640 1920 0 ) ( 2624 1920 0 ) ( 2632 1920 16 ) metals/mt_pv_m26y 97 -63 0 1 1 0 0 0 +( 2832 2000 0 ) ( 2832 1832 0 ) ( 2832 1916 16 ) metals/mt_pv_m26y 97 -63 0 1 1 0 0 0 +} +// brush 198 +{ +( 2304 1864 0 ) ( 2608 1864 0 ) ( 2608 1984 0 ) metals/mt_pv_m26y 97 -63 0 1 1 0 0 0 +( 2608 1984 16 ) ( 2608 1864 16 ) ( 2304 1864 16 ) metals/mt_pv_m26y 97 -63 0 1 1 0 0 0 +( 2320 1984 64 ) ( 2320 1864 64 ) ( 2320 1864 0 ) metals/mt_pv_m26y 97 -63 0 1 1 0 0 0 +( 2704 1856 16 ) ( 2704 1856 0 ) ( 2320 1856 0 ) metals/mt_pv_m26y 97 -63 0 1 1 0 0 0 +( 2624 1920 0 ) ( 2640 1920 0 ) ( 2632 1920 16 ) metals/mt_pv_m26y 97 -63 0 1 1 0 0 0 +( 2832 2000 0 ) ( 2832 1832 0 ) ( 2832 1916 16 ) metals/mt_pv_m26y 97 -63 0 1 1 0 0 0 +} +// brush 199 +{ +( 2304 1864 -144 ) ( 2320 1864 -144 ) ( 2320 1984 -144 ) bricks/b_sr_20 73 -113 -90 1 1 0 0 0 +( 2320 1984 -128 ) ( 2320 1864 -128 ) ( 2304 1864 -128 ) metals/m_pv_v4a 63 113 90 1 1 0 8388608 0 +( 2832 1984 -144 ) ( 2832 1984 -128 ) ( 2304 1984 -128 ) bricks/b_sr_20 30 -114 90 1 -1 0 0 0 +( 2320 1984 -128 ) ( 2320 1864 -128 ) ( 2320 1864 -240 ) bricks/b_sr_20 30 104 90 1 -1 0 0 0 +( 2704 1856 -128 ) ( 2704 1856 -144 ) ( 2304 1856 -144 ) bricks/b_sr_20 30 -114 90 1 -1 0 0 0 +( 2832 1992 -144 ) ( 2832 1824 -144 ) ( 2832 1908 -128 ) bricks/b_sr_20 31 88 90 1 -1 0 0 0 +} +// brush 200 +{ +( 2572 1896 -19 ) ( 2580 1896 -19 ) ( 2580 1872 -19 ) metals/mt_pv_m26 -88 -35 -180 1 1 134217728 8388608 0 +( 2572 1872 -19 ) ( 2580 1872 -19 ) ( 2580 1872 -32 ) metals/mt_pv_m26 -88 2 -180 1 -1 134217728 8388608 0 +( 2580 1872 64 ) ( 2580 1888 64 ) ( 2580 1888 -128 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2572 1888 64 ) ( 2572 1872 64 ) ( 2572 1872 -128 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2580 1896 -19 ) ( 2572 1896 -19 ) ( 2572 1872 -32 ) metals/mt_pv_m26y 96 32 0 1 1 134217728 8388608 0 +} +// brush 201 +{ +( 2572 1968 -19 ) ( 2580 1968 -19 ) ( 2580 1944 -19 ) metals/mt_pv_m26 -79 -35 -180 1 1 134217728 8388608 0 +( 2580 1968 -19 ) ( 2572 1968 -19 ) ( 2572 1968 -32 ) metals/mt_pv_m26 -80 2 -180 1 -1 134217728 8388608 0 +( 2572 1972 64 ) ( 2572 1956 64 ) ( 2572 1956 -128 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2580 1956 64 ) ( 2580 1972 64 ) ( 2580 1972 -128 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2572 1944 -19 ) ( 2580 1944 -19 ) ( 2580 1968 -32 ) metals/mt_pv_m26y 96 32 0 1 1 134217728 8388608 0 +} +// brush 202 +{ +( 2576 1072 0 ) ( 2560 1072 0 ) ( 2560 1616 0 ) metals/mt_pv_m26 -88 -35 -180 1 1 134217728 8388608 0 +( 2580 1072 -48 ) ( 2580 1616 -48 ) ( 2580 1616 -256 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2572 1620 -56 ) ( 2572 1076 -56 ) ( 2572 1076 -264 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2576 1824 -19 ) ( 2576 1840 -19 ) ( 2560 1832 -19 ) metals/mt_pv_m26y 96 32 0 1 1 134217728 8388608 0 +( 2592 1872 0 ) ( 2576 1872 0 ) ( 2584 1872 64 ) metals/mt_pv_m26 -88 2 -180 1 -1 134217728 8388608 0 +( 2584 1968 0 ) ( 2592 1968 0 ) ( 2588 1968 64 ) metals/mt_pv_m26 -88 2 -180 1 -1 134217728 8388608 0 +} +// brush 203 +{ +( 2560 1856 -128 ) ( 2592 1856 -128 ) ( 2592 1872 -128 ) metals/mt_pv_m26 -88 -35 -180 1 1 134217728 8388608 0 +( 2592 1872 0 ) ( 2592 1856 0 ) ( 2560 1856 0 ) metals/mt_pv_m26 -88 -35 -180 1 1 134217728 8388608 0 +( 2592 1872 0 ) ( 2560 1872 0 ) ( 2560 1872 -16 ) metals/mt_pv_m26y 15 97 90 1 1 134217728 8388608 0 +( 2572 1872 0 ) ( 2572 1856 0 ) ( 2572 1856 -16 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2560 1856 0 ) ( 2592 1856 0 ) ( 2592 1856 -16 ) metals/mt_pv_m26 -88 2 -180 1 -1 134217728 8388608 0 +( 2580 1856 0 ) ( 2580 1872 0 ) ( 2580 1872 -16 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +} +// brush 204 +{ +( 2560 1968 -128 ) ( 2592 1968 -128 ) ( 2592 1984 -128 ) metals/mt_pv_m26 -88 -35 -180 1 1 134217728 8388608 0 +( 2592 1984 0 ) ( 2592 1968 0 ) ( 2560 1968 0 ) metals/mt_pv_m26 -88 -35 -180 1 1 134217728 8388608 0 +( 2592 1984 0 ) ( 2560 1984 0 ) ( 2560 1984 -16 ) metals/mt_pv_m26 -88 2 -180 1 -1 134217728 8388608 0 +( 2572 1984 0 ) ( 2572 1968 0 ) ( 2572 1968 -16 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2560 1968 0 ) ( 2592 1968 0 ) ( 2592 1968 -16 ) metals/mt_pv_m26y 15 97 90 1 1 134217728 8388608 0 +( 2580 1972 0 ) ( 2580 1988 0 ) ( 2580 1988 -16 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +} +// brush 205 +{ +( 2432 1968 -128 ) ( 2464 1968 -128 ) ( 2464 1984 -128 ) metals/mt_pv_m26 -92 -35 -180 1 1 134217728 8388608 0 +( 2464 1984 0 ) ( 2464 1968 0 ) ( 2432 1968 0 ) metals/mt_pv_m26 -92 -35 -180 1 1 134217728 8388608 0 +( 2464 1984 0 ) ( 2432 1984 0 ) ( 2432 1984 -16 ) metals/mt_pv_m26 -92 2 -180 1 -1 134217728 8388608 0 +( 2444 1984 0 ) ( 2444 1968 0 ) ( 2444 1968 -16 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2432 1968 0 ) ( 2464 1968 0 ) ( 2464 1968 -16 ) metals/mt_pv_m26y 96 -15 0 1 1 134217728 8388608 0 +( 2452 1972 0 ) ( 2452 1988 0 ) ( 2452 1988 -16 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +} +// brush 206 +{ +( 2432 1856 -128 ) ( 2464 1856 -128 ) ( 2464 1872 -128 ) metals/mt_pv_m26 -88 -35 -180 1 1 134217728 8388608 0 +( 2464 1872 0 ) ( 2464 1856 0 ) ( 2432 1856 0 ) metals/mt_pv_m26 -88 -35 -180 1 1 134217728 8388608 0 +( 2464 1872 0 ) ( 2432 1872 0 ) ( 2432 1872 -16 ) metals/mt_pv_m26y 96 -15 0 1 1 134217728 8388608 0 +( 2444 1872 0 ) ( 2444 1856 0 ) ( 2444 1856 -16 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2432 1856 0 ) ( 2464 1856 0 ) ( 2464 1856 -16 ) metals/mt_pv_m26 -88 2 -180 1 -1 134217728 8388608 0 +( 2452 1856 0 ) ( 2452 1872 0 ) ( 2452 1872 -16 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +} +// brush 207 +{ +( 2448 1072 0 ) ( 2432 1072 0 ) ( 2432 1616 0 ) metals/mt_pv_m26 -88 -35 -180 1 1 134217728 8388608 0 +( 2452 1080 -48 ) ( 2452 1624 -48 ) ( 2452 1624 -256 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2444 1620 -56 ) ( 2444 1076 -56 ) ( 2444 1076 -264 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2448 1824 -19 ) ( 2448 1840 -19 ) ( 2432 1832 -19 ) metals/mt_pv_m26y 96 32 0 1 1 134217728 8388608 0 +( 2464 1872 0 ) ( 2448 1872 0 ) ( 2456 1872 64 ) metals/mt_pv_m26 -88 2 -180 1 -1 134217728 8388608 0 +( 2456 1968 0 ) ( 2464 1968 0 ) ( 2460 1968 64 ) metals/mt_pv_m26 -88 2 -180 1 -1 134217728 8388608 0 +} +// brush 208 +{ +( 2444 1968 -19 ) ( 2452 1968 -19 ) ( 2452 1944 -19 ) metals/mt_pv_m26 -88 -35 -180 1 1 134217728 8388608 0 +( 2452 1968 -19 ) ( 2444 1968 -19 ) ( 2444 1968 -32 ) metals/mt_pv_m26 -88 2 -180 1 -1 134217728 8388608 0 +( 2444 1972 64 ) ( 2444 1956 64 ) ( 2444 1956 -128 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2452 1956 64 ) ( 2452 1972 64 ) ( 2452 1972 -128 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2444 1944 -19 ) ( 2452 1944 -19 ) ( 2452 1968 -32 ) metals/mt_pv_m26y 96 32 0 1 1 134217728 8388608 0 +} +// brush 209 +{ +( 2444 1896 -19 ) ( 2452 1896 -19 ) ( 2452 1872 -19 ) metals/mt_pv_m26 -79 -28 -180 1 1 134217728 0 0 +( 2432 1872 64 ) ( 2464 1872 64 ) ( 2464 1872 -128 ) metals/mt_pv_m26 -80 2 -180 1 -1 134217728 0 0 +( 2452 1872 64 ) ( 2452 1888 64 ) ( 2452 1888 -128 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2444 1888 64 ) ( 2444 1872 64 ) ( 2444 1872 -128 ) metals/mt_pv_m26 64 3 -180 1 -1 134217728 8388608 0 +( 2452 1896 -19 ) ( 2444 1896 -19 ) ( 2444 1872 -32 ) metals/mt_pv_m26y 96 32 0 1 1 134217728 8388608 0 +} +// brush 210 +{ +( 2507 1912 -6 ) ( 2507 1928 -6 ) ( 2504 1928 0 ) common/li_pv_v7 0 -5 -180 0.500000 -0.500000 134217728 1 8000 +( 2517 1928 -6 ) ( 2517 1912 -6 ) ( 2520 1912 0 ) common/li_pv_v7 0 -5 -180 0.500000 -0.500000 134217728 1 8000 +( 2517 1915 -6 ) ( 2507 1915 -6 ) ( 2504 1912 0 ) common/li_pv_v7 5 31 90 0.500000 0.500000 134217728 1 8000 +( 2507 1915 -6 ) ( 2517 1915 -6 ) ( 2517 1925 -6 ) common/li_pv_v7 0 31 -90 0.500000 -0.500000 134217728 1 20000 +( 2507 1925 -6 ) ( 2517 1925 -6 ) ( 2520 1928 0 ) common/li_pv_v7 5 31 90 0.500000 0.500000 134217728 1 8000 +( 2504 1917 -3 ) ( 2504 1925 -3 ) ( 2520 1921 -3 ) common/li_pv_v7 3 31 -90 0.500000 -0.500000 134217728 0 0 +} +// brush 211 +{ +( 2379 1912 -6 ) ( 2379 1928 -6 ) ( 2376 1928 0 ) common/li_pv_v7 0 -5 -180 0.500000 -0.500000 134217728 1 8000 +( 2389 1928 -6 ) ( 2389 1912 -6 ) ( 2392 1912 0 ) common/li_pv_v7 0 -4 -180 0.500000 -0.500000 134217728 1 8000 +( 2389 1915 -6 ) ( 2379 1915 -6 ) ( 2376 1912 0 ) common/li_pv_v7 5 31 90 0.500000 0.500000 134217728 1 8000 +( 2379 1915 -6 ) ( 2389 1915 -6 ) ( 2389 1925 -6 ) common/li_pv_v7 0 -1 -90 0.500000 -0.500000 134217728 1 10000 +( 2379 1925 -6 ) ( 2389 1925 -6 ) ( 2392 1928 0 ) common/li_pv_v7 5 31 90 0.500000 0.500000 134217728 1 8000 +( 2376 1917 -3 ) ( 2376 1925 -3 ) ( 2392 1921 -3 ) common/li_pv_v7 0 31 -90 0.500000 -0.500000 134217728 0 0 +} +// brush 212 +{ +( 2304 1840 -128 ) ( 2608 1840 -128 ) ( 2608 1856 -128 ) metals/mt_pv_m26 -79 -28 -180 1 1 0 8388608 0 +( 2608 1856 0 ) ( 2608 1840 0 ) ( 2304 1840 0 ) metals/mt_pv_m26 -79 -28 -180 1 1 0 8388608 0 +( 2784 1856 0 ) ( 2480 1856 0 ) ( 2480 1856 -128 ) metals/mt_pv_m26 -112 2 -180 1 -1 0 8388608 0 +( 2320 1856 0 ) ( 2320 1840 0 ) ( 2320 1840 -128 ) metals/mt_pv_m26 0 3 -180 1 -1 0 8388608 0 +( 2304 1840 0 ) ( 2608 1840 0 ) ( 2608 1840 -128 ) metals/mt_pv_m26 -80 2 -180 1 -1 0 8388608 0 +( 2832 1840 0 ) ( 2832 1856 0 ) ( 2832 1856 -128 ) metals/mt_pv_m26 0 3 -180 1 -1 0 8388608 0 +} +// brush 213 +{ +( 2304 1984 -128 ) ( 2408 1984 -128 ) ( 2408 2000 -128 ) metals/mt_pv_m26 -79 -35 -180 1 1 0 8388608 0 +( 2408 2000 0 ) ( 2408 1984 0 ) ( 2304 1984 0 ) metals/mt_pv_m26 -79 -35 -180 1 1 0 8388608 0 +( 2408 2000 0 ) ( 2304 2000 0 ) ( 2304 2000 -128 ) metals/mt_pv_m26 -80 2 -180 1 -1 0 8388608 0 +( 2320 2000 0 ) ( 2320 1984 0 ) ( 2320 1984 -128 ) metals/mt_pv_m26 8 3 -180 1 -1 0 8388608 0 +( 2256 1984 0 ) ( 2360 1984 0 ) ( 2360 1984 -128 ) metals/mt_pv_m26 -112 2 -180 1 -1 0 8388608 0 +( 2832 2000 -128 ) ( 2832 1832 -128 ) ( 2832 1916 0 ) metals/mt_pv_m26 -1 2 0 1 1 0 8388608 0 +} +// brush 214 +{ +( 2635 1912 -6 ) ( 2635 1928 -6 ) ( 2632 1928 0 ) common/li_pv_v7 0 -5 -180 0.500000 -0.500000 134217728 1 8000 +( 2645 1928 -6 ) ( 2645 1912 -6 ) ( 2648 1912 0 ) common/li_pv_v7 0 -5 -180 0.500000 -0.500000 134217728 1 8000 +( 2645 1915 -6 ) ( 2635 1915 -6 ) ( 2632 1912 0 ) common/li_pv_v7 5 31 90 0.500000 0.500000 134217728 1 8000 +( 2635 1915 -6 ) ( 2645 1915 -6 ) ( 2645 1925 -6 ) common/li_pv_v7 0 31 -90 0.500000 -0.500000 134217728 1 15000 +( 2635 1925 -6 ) ( 2645 1925 -6 ) ( 2648 1928 0 ) common/li_pv_v7 5 31 90 0.500000 0.500000 134217728 1 8000 +( 2632 1917 -3 ) ( 2632 1925 -3 ) ( 2648 1921 -3 ) common/li_pv_v7 3 31 -90 0.500000 -0.500000 134217728 0 0 +} +// brush 215 +{ +( 2444 1872 -128 ) ( 2428 1872 -128 ) ( 2428 1856 -128 ) common/0_clip 21 25 0 1 1 196608 128 0 +( 2428 1856 0 ) ( 2428 1872 0 ) ( 2444 1872 0 ) common/0_clip 21 25 0 1 1 196608 128 0 +( 2428 1856 64 ) ( 2444 1856 64 ) ( 2444 1856 -128 ) common/0_clip 20 0 0 1 1 196608 128 0 +( 2444 1856 64 ) ( 2444 1872 64 ) ( 2444 1872 -128 ) common/0_clip -25 0 0 1 1 196608 128 0 +( 2428 1856 -128 ) ( 2444 1872 -128 ) ( 2436 1864 0 ) common/0_clip -8 0 0 1 1 196608 128 0 +} +// brush 216 +{ +( 2428 1984 -128 ) ( 2428 1968 -128 ) ( 2444 1968 -128 ) common/0_clip 21 9 0 1 1 196608 128 0 +( 2444 1968 0 ) ( 2428 1968 0 ) ( 2428 1984 0 ) common/0_clip 21 9 0 1 1 196608 128 0 +( 2444 1984 -128 ) ( 2444 1984 64 ) ( 2428 1984 64 ) common/0_clip 20 0 0 1 1 196608 128 0 +( 2444 1968 -128 ) ( 2444 1968 64 ) ( 2444 1984 64 ) common/0_clip -9 0 0 1 1 196608 128 0 +( 2436 1976 0 ) ( 2444 1968 -128 ) ( 2428 1984 -128 ) common/0_clip -23 0 0 1 1 196608 128 0 +} +// brush 217 +{ +( 2452 1968 -128 ) ( 2468 1968 -128 ) ( 2468 1984 -128 ) common/0_clip -10 -8 -180 1 1 196608 128 0 +( 2468 1984 0 ) ( 2468 1968 0 ) ( 2452 1968 0 ) common/0_clip -10 -8 -180 1 1 196608 128 0 +( 2468 1984 64 ) ( 2452 1984 64 ) ( 2452 1984 -128 ) common/0_clip -11 0 -180 1 -1 196608 128 0 +( 2452 1984 64 ) ( 2452 1968 64 ) ( 2452 1968 -128 ) common/0_clip 8 0 -180 1 -1 196608 128 0 +( 2468 1984 -128 ) ( 2452 1968 -128 ) ( 2460 1976 0 ) common/0_clip 9 1 -180 1 -1 196608 128 0 +} +// brush 218 +{ +( 2468 1856 -128 ) ( 2468 1872 -128 ) ( 2452 1872 -128 ) common/0_clip -10 -24 -180 1 1 196608 128 0 +( 2452 1872 0 ) ( 2468 1872 0 ) ( 2468 1856 0 ) common/0_clip -10 -24 -180 1 1 196608 128 0 +( 2452 1856 -128 ) ( 2452 1856 64 ) ( 2468 1856 64 ) common/0_clip -11 0 -180 1 -1 196608 128 0 +( 2452 1872 -128 ) ( 2452 1872 64 ) ( 2452 1856 64 ) common/0_clip 24 0 -180 1 -1 196608 128 0 +( 2460 1864 0 ) ( 2452 1872 -128 ) ( 2468 1856 -128 ) common/0_clip 23 0 -180 1 -1 196608 128 0 +} +// brush 219 +{ +( 2596 1856 -128 ) ( 2596 1872 -128 ) ( 2580 1872 -128 ) common/0_clip -10 -24 -180 1 1 196608 128 0 +( 2580 1872 0 ) ( 2596 1872 0 ) ( 2596 1856 0 ) common/0_clip -10 -24 -180 1 1 196608 128 0 +( 2580 1856 -128 ) ( 2580 1856 64 ) ( 2596 1856 64 ) common/0_clip -11 0 -180 1 -1 196608 128 0 +( 2580 1872 -128 ) ( 2580 1872 64 ) ( 2580 1856 64 ) common/0_clip 24 0 -180 1 -1 196608 128 0 +( 2588 1864 0 ) ( 2580 1872 -128 ) ( 2596 1856 -128 ) common/0_clip 22 0 -180 1 -1 196608 128 0 +} +// brush 220 +{ +( 2580 1968 -128 ) ( 2596 1968 -128 ) ( 2596 1984 -128 ) common/0_clip -10 -7 -180 1 1 196608 128 0 +( 2596 1984 0 ) ( 2596 1968 0 ) ( 2580 1968 0 ) common/0_clip -10 -7 -180 1 1 196608 128 0 +( 2596 1984 64 ) ( 2580 1984 64 ) ( 2580 1984 -128 ) common/0_clip -11 0 -180 1 -1 196608 128 0 +( 2580 1984 64 ) ( 2580 1968 64 ) ( 2580 1968 -128 ) common/0_clip 8 0 -180 1 -1 196608 128 0 +( 2596 1984 -128 ) ( 2580 1968 -128 ) ( 2588 1976 0 ) common/0_clip 9 1 -180 1 -1 196608 128 0 +} +// brush 221 +{ +( 2556 1984 -128 ) ( 2556 1968 -128 ) ( 2572 1968 -128 ) common/0_clip 21 10 0 1 1 196608 128 0 +( 2572 1968 0 ) ( 2556 1968 0 ) ( 2556 1984 0 ) common/0_clip 21 10 0 1 1 196608 128 0 +( 2572 1984 -128 ) ( 2572 1984 64 ) ( 2556 1984 64 ) common/0_clip 20 0 0 1 1 196608 128 0 +( 2572 1968 -128 ) ( 2572 1968 64 ) ( 2572 1984 64 ) common/0_clip -9 0 0 1 1 196608 128 0 +( 2564 1976 0 ) ( 2572 1968 -128 ) ( 2556 1984 -128 ) common/0_clip -23 1 0 1 1.000015 196608 128 0 +} +// brush 222 +{ +( 2572 1872 -128 ) ( 2556 1872 -128 ) ( 2556 1856 -128 ) common/0_clip 21 26 0 1 1 196608 128 0 +( 2556 1856 0 ) ( 2556 1872 0 ) ( 2572 1872 0 ) common/0_clip 21 26 0 1 1 196608 128 0 +( 2556 1856 64 ) ( 2572 1856 64 ) ( 2572 1856 -128 ) common/0_clip 20 0 0 1 1 196608 128 0 +( 2572 1856 64 ) ( 2572 1872 64 ) ( 2572 1872 -128 ) common/0_clip -25 0 0 1 1 196608 128 0 +( 2556 1856 -128 ) ( 2572 1872 -128 ) ( 2564 1864 0 ) common/0_clip -7 0 0 1 1 196608 128 0 +} +// brush 223 +{ +( 2304 1952 -16 ) ( 2304 1888 -16 ) ( 2320 1888 -16 ) metals/mt_pv_m26y 0 -1 -90 1 1 0 8388608 0 +( 2320 1888 0 ) ( 2320 1952 0 ) ( 2320 1952 -144 ) metals/mt_pv_m26y 0 -15 -180 1 -1 0 8388608 0 +( 2320 1952 0 ) ( 2304 1952 0 ) ( 2304 1952 -144 ) metals/mt_pv_m26y 0 -15 0 1 1 0 8388608 0 +( 2304 1952 0 ) ( 2304 1888 0 ) ( 2304 1888 -144 ) metals/mt_pv_m26y 0 -15 -180 1 -1 0 8388608 0 +( 2304 1888 0 ) ( 2320 1888 0 ) ( 2320 1888 -144 ) metals/mt_pv_m26y 0 -15 0 1 1 0 8388608 0 +( 2320 1908 -12 ) ( 2320 1888 -12 ) ( 2304 1898 -12 ) metals/mt_pv_m26y 0 -1 -90 1 1 0 8388608 0 +} +// brush 224 +{ +( 2304 1888 -144 ) ( 2304 1872 -144 ) ( 2320 1872 -144 ) metals/mt_pv_m26y 0 -1 -90 1 1 0 8388608 0 +( 2320 1872 -12 ) ( 2304 1872 -12 ) ( 2304 1888 -12 ) metals/mt_pv_m26y 0 -1 -90 1 1 0 8388608 0 +( 2320 1872 80 ) ( 2320 1888 80 ) ( 2320 1888 -144 ) metals/mt_pv_m26y 0 -15 -180 1 -1 0 8388608 0 +( 2320 1888 80 ) ( 2304 1888 80 ) ( 2304 1888 -144 ) metals/mt_pv_m26y 0 -15 0 1 1 0 8388608 0 +( 2304 1888 80 ) ( 2304 1872 80 ) ( 2304 1872 -144 ) metals/mt_pv_m26y 0 -15 -180 1 -1 0 8388608 0 +( 2320 1884 -144 ) ( 2304 1884 -144 ) ( 2312 1884 0 ) metals/mt_pv_m26y 0 -15 0 1 1 0 8388608 0 +} +// brush 225 +{ +( 2304 1968 -144 ) ( 2304 1952 -144 ) ( 2320 1952 -144 ) metals/mt_pv_m26y 0 -1 -90 1 1 0 8388608 0 +( 2320 1952 -12 ) ( 2304 1952 -12 ) ( 2304 1968 -12 ) metals/mt_pv_m26y 0 -1 -90 1 1 0 8388608 0 +( 2320 1952 0 ) ( 2320 1968 0 ) ( 2320 1968 -144 ) metals/mt_pv_m26y 0 -15 -180 1 -1 0 8388608 0 +( 2304 1968 0 ) ( 2304 1952 0 ) ( 2304 1952 -144 ) metals/mt_pv_m26y 0 -15 -180 1 -1 0 8388608 0 +( 2304 1952 0 ) ( 2320 1952 0 ) ( 2320 1952 -144 ) metals/mt_pv_m26y 0 -15 0 1 1 0 8388608 0 +( 2304 1956 -144 ) ( 2320 1956 -144 ) ( 2312 1956 0 ) metals/mt_pv_m26y 0 -15 0 1 1 0 8388608 0 +} +// brush 226 +{ +( 2304 1952 -160 ) ( 2304 1888 -160 ) ( 2320 1888 -160 ) metals/mt_pv_m16k 0 -33 -90 1 1 0 8388608 0 +( 2320 1888 -128 ) ( 2304 1888 -128 ) ( 2304 1952 -128 ) metals/mt_pv_m16k -1 -31 -180 1 1 0 8388608 0 +( 2320 1888 -128 ) ( 2320 1952 -128 ) ( 2320 1952 -160 ) metals/mt_pv_m16k 0 -15 -180 1 -1 0 8388608 0 +( 2320 1952 -128 ) ( 2304 1952 -128 ) ( 2304 1952 -160 ) metals/mt_pv_m16k 0 -15 0 1 1 0 8388608 0 +( 2304 1952 -128 ) ( 2304 1888 -128 ) ( 2304 1888 -160 ) metals/mt_pv_m16k 0 -15 -180 1 -1 0 8388608 0 +( 2304 1888 -128 ) ( 2320 1888 -128 ) ( 2320 1888 -160 ) metals/mt_pv_m16k 0 -15 0 1 1 0 8388608 0 +} +// brush 227 +{ +( 2304 2016 -12 ) ( 2304 1808 -12 ) ( 2320 1808 -12 ) bricks/b_mf_v2a 120 0 0 1 1 0 0 0 +( 2320 1808 80 ) ( 2304 1808 80 ) ( 2304 2016 80 ) bricks/b_mf_v2a 120 0 0 1 1 0 0 0 +( 2320 1808 48 ) ( 2320 2016 48 ) ( 2320 2016 -144 ) metals/mt_pv_m26 64 2 0 1 1 0 8388608 0 +( 2304 2016 48 ) ( 2304 1808 48 ) ( 2304 1808 -144 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2320 1884 -144 ) ( 2304 1884 -144 ) ( 2312 1884 80 ) bricks/b_mf_v2a 120 0 0 1 1 0 0 0 +( 2304 1956 -144 ) ( 2320 1956 -144 ) ( 2312 1956 80 ) bricks/b_mf_v2a 120 0 0 1 1 0 0 0 +} +// brush 228 +{ +( -961 1671 0 ) ( -961 1709 0 ) ( -963 1709 0 ) wood/wd_sr_m3a 109 -57 90 1 1 0 0 0 +( -963 1709 88 ) ( -961 1709 88 ) ( -961 1671 88 ) wood/wd_sr_m3a 109 -57 90 1 1 0 0 0 +( -963 1709 82 ) ( -963 1671 82 ) ( -963 1671 0 ) wood/wd_sr_m3a 109 0 0 1 1 0 0 0 +( -963 1671 82 ) ( -961 1671 82 ) ( -961 1671 0 ) wood/wd_sr_m3a 57 0 -180 1 -1 0 0 0 +( -961 1671 82 ) ( -961 1709 82 ) ( -961 1709 0 ) wood/wd_sr_m3a 109 0 0 1 1 0 0 0 +( -961 1709 82 ) ( -963 1709 82 ) ( -963 1709 0 ) wood/wd_sr_m3a 57 0 -180 1 -1 0 0 0 +} +// brush 229 +{ +( -963 1689 0 ) ( -963 1709 0 ) ( -965 1709 0 ) metals/mt_pv_m26y 45 -57 90 1 1 0 0 0 +( -965 1709 54 ) ( -963 1709 54 ) ( -963 1689 54 ) metals/mt_pv_m26y 45 -57 90 1 1 0 0 0 +( -973 1689 54 ) ( -973 1689 0 ) ( -965 1711 0 ) metals/mt_pv_m26y 45 0 0 1 1 0 0 0 +( -971 1689 56 ) ( -971 1689 2 ) ( -973 1689 0 ) metals/mt_pv_m26y 57 0 -180 1 -1 0 0 0 +( -971 1689 2 ) ( -971 1689 56 ) ( -963 1711 54 ) metals/mt_pv_m26y 45 0 0 1 1 0 0 0 +( -963 1711 82 ) ( -965 1711 82 ) ( -965 1711 0 ) metals/mt_pv_m26y 57 0 -180 1 -1 0 0 0 +} +// brush 230 +{ +( -1072 1702 0 ) ( -1136 1702 0 ) ( -1136 1638 0 ) props/box_sr_m13 32 -52 0 0.500000 0.500000 0 2097152 0 +( -1136 1638 32 ) ( -1136 1702 32 ) ( -1072 1702 32 ) props/box_sr_m15 32 -52 0 0.500000 0.500000 0 0 0 +( -1144 1670 128 ) ( -1080 1670 128 ) ( -1080 1670 0 ) props/box_sr_m13 32 0 0 0.500000 0.500000 0 2097152 0 +( -1104 1638 128 ) ( -1104 1702 128 ) ( -1104 1702 0 ) props/box_sr_m13 52 0 0 0.500000 0.500000 0 2097152 0 +( -1072 1702 128 ) ( -1136 1702 128 ) ( -1136 1702 0 ) props/box_sr_m13 32 0 0 0.500000 0.500000 0 2097152 0 +( -1136 1702 128 ) ( -1136 1638 128 ) ( -1136 1638 0 ) props/box_sr_m13 52 0 0 0.500000 0.500000 0 2097152 0 +} +// brush 231 +{ +( -985 1701 0 ) ( -1008 1693 0 ) ( -1003 1678 0 ) bricks/b_mf_v2 -60 -60 17 0.999976 0.999898 134217728 0 0 +( -1003 1678 8 ) ( -1008 1693 8 ) ( -985 1701 8 ) bricks/b_mf_v2 -37 -53 17 1 1 134217728 0 0 +( -1003 1678 48 ) ( -980 1685 48 ) ( -980 1685 0 ) bricks/b_mf_v2 -81 26 0 0.951050 1 134217728 0 0 +( -981 1687 48 ) ( -986 1702 48 ) ( -986 1702 0 ) bricks/b_mf_v2 11 26 0 0.951172 1 134217728 0 0 +( -986 1702 48 ) ( -1009 1695 48 ) ( -1009 1695 0 ) bricks/b_mf_v2 -75 26 0 0.951050 1 134217728 0 0 +( -1022 1691 48 ) ( -1017 1675 48 ) ( -1017 1675 0 ) bricks/b_mf_v2 24 26 0 0.951172 1 134217728 0 0 +} +// brush 232 +{ +( -1111 1699 0 ) ( -1174 1706 0 ) ( -1181 1642 0 ) props/box_sr_m13 4 -53 -5 0.499930 0.499943 0 2097152 0 +( -1181 1642 32 ) ( -1174 1706 32 ) ( -1111 1699 32 ) props/box_sr_m15 14 -71 -5 0.500000 0.500000 0 0 0 +( -1186 1675 128 ) ( -1122 1668 128 ) ( -1122 1668 0 ) props/box_sr_m13 0 0 0 0.497314 0.500000 0 2097152 0 +( -1149 1639 128 ) ( -1142 1702 128 ) ( -1142 1702 0 ) props/box_sr_m13 32 0 0 0.497314 0.500000 0 2097152 0 +( -1111 1699 128 ) ( -1174 1706 128 ) ( -1174 1706 0 ) props/box_sr_m13 -6 0 0 0.497192 0.500000 0 2097152 0 +( -1174 1706 128 ) ( -1181 1642 128 ) ( -1181 1642 0 ) props/box_sr_m13 26 0 0 0.497314 0.500000 0 2097152 0 +} +// brush 233 +{ +( 833 1432 80 ) ( 833 1440 80 ) ( 817 1440 80 ) floors/dr_st_m1d 19 27 -90 0.500000 0.500000 134217728 0 0 +( 812 1440 92 ) ( 832 1440 92 ) ( 832 1432 92 ) floors/dr_st_m1d 19 27 -90 0.500000 0.500000 134217728 8388608 0 +( 831 1440 92 ) ( 831 1440 76 ) ( 831 1432 76 ) props/callbox4 -16 23 0 0.500000 0.500000 134217728 0 0 +( 817 1440 76 ) ( 817 1440 92 ) ( 817 1432 92 ) props/callbox4 -16 23 0 0.500000 0.500000 134217728 0 0 +( 832 1432 101 ) ( 832 1432 71 ) ( 816 1432 71 ) props/callbox4 63 48 -180 -0.250000 -0.250000 134217728 8388608 0 +( 832 1440 76 ) ( 832 1440 92 ) ( 816 1440 92 ) bricks/c_pv_m2 -88 3 0 1 1 134217728 0 0 +} +// brush 234 +{ +( 832 1432 80 ) ( 832 1440 80 ) ( 816 1440 80 ) floors/dr_st_m1d -8 89 -90 1 1 134217728 0 0 +( 812 1440 92 ) ( 832 1440 92 ) ( 832 1432 92 ) floors/dr_st_m1d -40 27 -90 0.500000 0.500000 134217728 0 0 +( 817 1440 92 ) ( 817 1440 76 ) ( 817 1432 76 ) metals/mt_sr_b1a 7 7 -180 1 -1 134217728 0 0 +( 816 1433 92 ) ( 816 1433 76 ) ( 816 1440 76 ) floors/dr_st_m1d 85 119 180 0.500000 0.500000 134217728 8388608 0 +( 816 1433 76 ) ( 816 1433 92 ) ( 817 1432 92 ) props/callbox4 35 48 -180 0.250000 -0.250000 134217728 8388608 0 +( 832 1440 76 ) ( 832 1440 92 ) ( 816 1440 92 ) bricks/c_pv_m2 -96 -24 0 1 1 134217728 0 0 +} +// brush 235 +{ +( 847 1432 80 ) ( 847 1440 80 ) ( 831 1440 80 ) props/callbox4 27 48 -180 -0.250000 -0.250000 134217728 0 0 +( 827 1440 92 ) ( 847 1440 92 ) ( 847 1432 92 ) floors/dr_st_m1d 19 27 -90 0.500000 0.500000 134217728 8388608 0 +( 832 1433 76 ) ( 832 1433 92 ) ( 832 1440 92 ) floors/dr_st_m1d 85 119 180 0.500000 0.500000 134217728 8388608 0 +( 831 1440 76 ) ( 831 1440 92 ) ( 831 1432 92 ) props/callbox4 27 48 -180 -0.250000 -0.250000 134217728 0 0 +( 832 1433 92 ) ( 832 1433 76 ) ( 831 1432 76 ) props/callbox4 27 48 -180 -0.250000 -0.250000 134217728 8388608 0 +( 847 1440 76 ) ( 847 1440 92 ) ( 831 1440 92 ) props/callbox4 27 48 -180 -0.250000 -0.250000 134217728 0 0 +} +// brush 236 +{ +( 832 1432 76 ) ( 832 1440 76 ) ( 816 1440 76 ) floors/dr_st_m1d -40 27 -90 0.500000 0.500000 134217728 0 0 +( 812 1440 80 ) ( 832 1440 80 ) ( 832 1432 80 ) floors/dr_st_m1d -8 88 -90 1 1 134217728 0 0 +( 817 1440 88 ) ( 817 1440 72 ) ( 817 1432 72 ) metals/mt_sr_b1a 7 3 -180 1 -1 134217728 0 0 +( 816 1433 88 ) ( 816 1433 72 ) ( 816 1440 72 ) props/callbox4 55 48 -180 0.250000 -0.250000 134217728 8388608 0 +( 816 1433 72 ) ( 816 1433 88 ) ( 817 1432 88 ) props/callbox4 35 48 -180 0.250000 -0.250000 134217728 8388608 0 +( 832 1440 72 ) ( 832 1440 88 ) ( 816 1440 88 ) bricks/c_pv_m2 -96 -28 0 1 1 134217728 0 0 +} +// brush 237 +{ +( 847 1432 76 ) ( 847 1440 76 ) ( 831 1440 76 ) floors/dr_st_m1d -40 27 -90 0.500000 0.500000 134217728 0 0 +( 827 1440 80 ) ( 847 1440 80 ) ( 847 1432 80 ) floors/dr_st_m1d -8 88 -90 1 1 134217728 0 0 +( 832 1433 72 ) ( 832 1433 88 ) ( 832 1440 88 ) props/callbox4 -9 48 -180 0.250000 -0.250000 134217728 8388608 0 +( 831 1440 72 ) ( 831 1440 88 ) ( 831 1432 88 ) metals/mt_sr_b1a 7 3 -180 1 -1 134217728 0 0 +( 832 1433 88 ) ( 832 1433 72 ) ( 831 1432 72 ) props/callbox4 27 48 -180 -0.250000 -0.250000 134217728 8388608 0 +( 847 1440 72 ) ( 847 1440 88 ) ( 831 1440 88 ) bricks/c_pv_m2 -81 -28 0 1 1 134217728 0 0 +} +// brush 238 +{ +( 833 1432 78 ) ( 833 1440 78 ) ( 817 1440 78 ) props/callbox4 63 -60 90 0.250000 -0.250000 134217728 0 0 +( 811 1440 80 ) ( 831 1440 80 ) ( 831 1432 80 ) props/callbox4 63 -60 90 0.250000 -0.250000 134217728 0 0 +( 828 1440 88 ) ( 828 1440 72 ) ( 828 1432 72 ) props/callbox4 63 48 0 0.250000 0.250000 134217728 0 0 +( 826 1440 72 ) ( 826 1440 88 ) ( 826 1432 88 ) props/callbox4 63 48 0 0.250000 0.250000 134217728 0 0 +( 832 1432 97 ) ( 832 1432 67 ) ( 816 1432 67 ) props/callbox4 63 48 -180 -0.250000 -0.250000 134217728 1 1000 +( 832 1440 72 ) ( 832 1440 88 ) ( 816 1440 88 ) props/callbox4 -1 48 -180 0.250000 -0.250000 134217728 0 0 +} +// brush 239 +{ +( 826 1432 76 ) ( 826 1440 76 ) ( 810 1440 76 ) floors/dr_st_m1d -40 27 -90 0.500000 0.500000 134217728 0 0 +( 804 1440 80 ) ( 824 1440 80 ) ( 824 1432 80 ) props/callbox4 63 -60 90 0.250000 -0.250000 134217728 0 0 +( 822 1440 88 ) ( 822 1440 72 ) ( 822 1432 72 ) props/callbox4 63 48 0 0.250000 0.250000 134217728 0 0 +( 817 1440 72 ) ( 817 1440 88 ) ( 817 1432 88 ) props/callbox4 63 48 0 0.250000 0.250000 134217728 0 0 +( 825 1432 97 ) ( 825 1432 67 ) ( 809 1432 67 ) props/callbox4 63 48 -180 -0.250000 -0.250000 134217728 8388608 0 +( 825 1440 72 ) ( 825 1440 88 ) ( 809 1440 88 ) props/callbox4 -1 48 -180 0.250000 -0.250000 134217728 0 0 +} +// brush 240 +{ +( 831 1432 76 ) ( 831 1440 76 ) ( 815 1440 76 ) floors/dr_st_m1d -40 27 -90 0.500000 0.500000 134217728 0 0 +( 809 1440 78 ) ( 829 1440 78 ) ( 829 1432 78 ) floors/dr_st_m1d -60 27 -90 0.500000 0.500000 134217728 0 0 +( 831 1440 88 ) ( 831 1440 72 ) ( 831 1432 72 ) props/callbox4 63 48 0 0.250000 0.250000 134217728 0 0 +( 822 1440 72 ) ( 822 1440 88 ) ( 822 1432 88 ) props/callbox4 63 48 0 0.250000 0.250000 134217728 0 0 +( 830 1432 97 ) ( 830 1432 67 ) ( 814 1432 67 ) props/callbox4 63 48 -180 -0.250000 -0.250000 134217728 8388608 0 +( 830 1440 72 ) ( 830 1440 88 ) ( 814 1440 88 ) props/callbox4 -1 48 -180 0.250000 -0.250000 134217728 0 0 +} +// brush 241 +{ +( 831 1432 78 ) ( 831 1440 78 ) ( 815 1440 78 ) props/callbox4 63 -60 90 0.250000 -0.250000 134217728 0 0 +( 808 1440 80 ) ( 828 1440 80 ) ( 828 1432 80 ) props/callbox4 63 -60 90 0.250000 -0.250000 134217728 0 0 +( 831 1440 90 ) ( 831 1440 74 ) ( 831 1432 74 ) props/callbox4 63 48 0 0.250000 0.250000 134217728 0 0 +( 829 1440 74 ) ( 829 1440 90 ) ( 829 1432 90 ) props/callbox4 63 48 0 0.250000 0.250000 134217728 0 0 +( 830 1432 99 ) ( 830 1432 69 ) ( 814 1432 69 ) props/callbox4 63 48 -180 -0.250000 -0.250000 134217728 8388608 0 +( 830 1440 74 ) ( 830 1440 90 ) ( 814 1440 90 ) props/callbox4 -1 48 -180 0.250000 -0.250000 134217728 0 0 +} +// brush 242 +{ +( 834 1432 78 ) ( 834 1440 78 ) ( 818 1440 78 ) props/callbox4 63 -60 90 0.250000 -0.250000 134217728 0 0 +( 812 1440 80 ) ( 832 1440 80 ) ( 832 1432 80 ) props/callbox4 63 -60 90 0.250000 -0.250000 134217728 0 0 +( 829 1440 88 ) ( 829 1440 72 ) ( 829 1432 72 ) props/callbox4 63 48 0 0.250000 0.250000 134217728 0 0 +( 828 1440 72 ) ( 828 1440 88 ) ( 828 1432 88 ) props/callbox4 63 48 0 0.250000 0.250000 134217728 0 0 +( 833 1432 97 ) ( 833 1432 67 ) ( 817 1432 67 ) props/callbox4 63 48 -180 -0.250000 -0.250000 134217728 0 0 +( 833 1440 72 ) ( 833 1440 88 ) ( 817 1440 88 ) props/callbox4 -1 48 -180 0.250000 -0.250000 134217728 0 0 +} +// brush 243 +{ +( 831 1432 78 ) ( 831 1440 78 ) ( 815 1440 78 ) props/callbox4 63 0 90 0.250000 -0.250000 134217728 0 0 +( 809 1440 80 ) ( 829 1440 80 ) ( 829 1432 80 ) props/callbox4 63 0 90 0.250000 -0.250000 134217728 0 0 +( 826 1440 88 ) ( 826 1440 72 ) ( 826 1432 72 ) props/callbox4 63 48 0 0.250000 0.250000 134217728 0 0 +( 824 1440 72 ) ( 824 1440 88 ) ( 824 1432 88 ) props/callbox4 63 48 0 0.250000 0.250000 134217728 0 0 +( 830 1432 97 ) ( 830 1432 67 ) ( 814 1432 67 ) props/callbox4 63 48 -180 -0.250000 -0.250000 134217728 0 0 +( 830 1440 72 ) ( 830 1440 88 ) ( 814 1440 88 ) props/callbox4 -1 48 -180 0.250000 -0.250000 134217728 0 0 +} +// brush 244 +{ +( 772 1924 0 ) ( 740 1924 0 ) ( 740 1916 0 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 740 1916 8 ) ( 740 1924 8 ) ( 772 1924 8 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 748 1924 0 ) ( 748 1924 8 ) ( 764 1940 8 ) bricks/c_sr_mb1 296 118 180 -1 1 0 0 0 +( 768 1952 8 ) ( 768 1952 0 ) ( 764 1940 0 ) bricks/c_sr_mb1 296 118 180 -1 1 0 0 0 +( 736 1920 8 ) ( 736 1920 0 ) ( 768 1952 0 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 736 1920 0 ) ( 736 1920 8 ) ( 748 1924 8 ) bricks/c_sr_mb1 296 118 180 -1 1 0 0 0 +} +// brush 245 +{ +( 736 1920 16 ) ( 736 1920 0 ) ( 736 1952 0 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 736 1952 16 ) ( 736 1952 0 ) ( 768 1952 0 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 736 1920 0 ) ( 736 1920 16 ) ( 768 1952 16 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 736 1920 0 ) ( 768 1920 0 ) ( 768 1952 0 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 768 1952 8 ) ( 768 1920 8 ) ( 736 1920 8 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +} +// brush 246 +{ +( 768 1952 16 ) ( 768 1952 0 ) ( 736 1952 0 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 640 2432 0 ) ( 640 2432 16 ) ( 640 2048 16 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 736 1952 16 ) ( 736 1952 0 ) ( 640 2048 0 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 768 2432 0 ) ( 768 2432 16 ) ( 640 2432 16 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 768 1952 0 ) ( 768 1952 16 ) ( 768 2432 16 ) bricks/c_sr_mb1 296 118 180 -1 1 0 0 0 +( 640 1920 0 ) ( 768 1920 0 ) ( 768 2432 0 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 768 2432 8 ) ( 768 1920 8 ) ( 640 1920 8 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +} +// brush 247 +{ +( 736 1920 0 ) ( 736 1920 16 ) ( 736 1952 16 ) bricks/c_sr_mb1 0 0 180 -1 1 0 0 0 +( 736 1920 16 ) ( 736 1920 0 ) ( 512 1920 0 ) bricks/c_sr_mb1 296 118 180 -1 1 0 0 0 +( 512 1920 8 ) ( 512 1920 0 ) ( 512 2048 0 ) bricks/c_sr_mb1 0 0 180 -1 1 0 0 0 +( 640 2048 0 ) ( 640 2048 8 ) ( 512 2048 8 ) bricks/c_sr_mb1 0 0 180 -1 1 0 0 0 +( 736 1952 0 ) ( 736 1952 16 ) ( 640 2048 16 ) bricks/c_sr_mb1 0 0 180 -1 1 0 0 0 +( 512 1920 0 ) ( 768 1920 0 ) ( 768 2048 0 ) bricks/c_sr_mb1 0 0 180 -1 1 0 0 0 +( 768 2048 8 ) ( 768 1920 8 ) ( 512 1920 8 ) bricks/c_sr_mb1 128 0 180 -1 1 0 0 0 +} +// brush 248 +{ +( -73 1036 101 ) ( -71 1036 101 ) ( -71 1033 104 ) metals/m_hl_c10b 0 18 0 1 -1 134217728 0 0 +( -71 1035 100 ) ( -73 1035 100 ) ( -73 1033 102 ) metals/m_hl_c10b 0 18 0 1 -1 134217728 0 0 +( -71 1036 101 ) ( -73 1036 101 ) ( -73 1035 100 ) metals/m_hl_c10b 1 -32 0 1 -1 134217728 0 0 +( -71 1038 103 ) ( -71 1024 103 ) ( -71 1024 119 ) metals/m_hl_c10b -17 -32 -180 1 1 134217728 0 0 +( -72 1033 102 ) ( -73 1033 102 ) ( -73 1033 118 ) metals/m_hl_c10b 1 -32 0 1 -1 134217728 0 0 +( -73 1024 103 ) ( -73 1038 103 ) ( -73 1038 119 ) metals/m_hl_c10b -17 -32 -180 1 1 134217728 0 0 +} +// brush 249 +{ +( -72 1022 105 ) ( -73 1022 105 ) ( -73 1036 105 ) metals/m_hl_c10b 0 20 0 1 -1 134217728 0 0 +( -73 1036 103 ) ( -73 1022 103 ) ( -72 1022 103 ) metals/m_hl_c10b 0 20 0 1 -1 134217728 0 0 +( -73 1031 103 ) ( -72 1031 103 ) ( -72 1031 119 ) metals/m_hl_c10b 1 -32 0 1 -1 134217728 0 0 +( -71 1036 103 ) ( -71 1022 103 ) ( -71 1022 119 ) metals/m_hl_c10b -19 -32 -180 1 1 134217728 0 0 +( -72 1024 103 ) ( -73 1024 103 ) ( -73 1024 119 ) metals/m_hl_c10b 1 -32 0 1 -1 134217728 0 0 +( -73 1022 103 ) ( -73 1036 103 ) ( -73 1036 119 ) metals/m_hl_c10b -19 -32 -180 1 1 134217728 0 0 +} +// brush 250 +{ +( -73 1033 104 ) ( -71 1033 104 ) ( -71 1031 105 ) metals/m_hl_c10b 0 20 0 1 -1 134217728 0 0 +( -71 1033 102 ) ( -73 1033 102 ) ( -73 1031 103 ) metals/m_hl_c10b 0 20 0 1 -1 134217728 0 0 +( -71 1033 104 ) ( -73 1033 104 ) ( -73 1033 102 ) metals/m_hl_c10b 1 -32 0 1 -1 134217728 0 0 +( -71 1036 103 ) ( -71 1022 103 ) ( -71 1022 119 ) metals/m_hl_c10b -19 -32 -180 1 1 134217728 0 0 +( -72 1031 103 ) ( -73 1031 103 ) ( -73 1031 119 ) metals/m_hl_c10b 1 -32 0 1 -1 134217728 0 0 +( -73 1022 103 ) ( -73 1036 103 ) ( -73 1036 119 ) metals/m_hl_c10b -19 -32 -180 1 1 134217728 0 0 +} +// brush 251 +{ +( -73 1129 56 ) ( -71 1129 56 ) ( -71 1131 55 ) metals/m_hl_c10b 1 4 0 1 1 134217728 0 0 +( -71 1129 58 ) ( -73 1129 58 ) ( -73 1131 57 ) metals/m_hl_c10b 1 4 0 1 1 134217728 0 0 +( -71 1129 56 ) ( -73 1129 56 ) ( -73 1129 58 ) metals/m_hl_c10b 1 0 0 1 1 134217728 0 0 +( -71 1126 57 ) ( -71 1140 57 ) ( -71 1140 41 ) metals/m_hl_c10b -4 0 0 1 1 134217728 0 0 +( -72 1131 57 ) ( -73 1131 57 ) ( -73 1131 41 ) metals/m_hl_c10b 1 0 0 1 1 134217728 0 0 +( -73 1140 57 ) ( -73 1126 57 ) ( -73 1126 41 ) metals/m_hl_c10b -4 0 0 1 1 134217728 0 0 +} +// brush 252 +{ +( -72 1142 55 ) ( -73 1142 55 ) ( -73 1128 55 ) metals/m_hl_c10b 1 6 0 1 1 134217728 0 0 +( -73 1128 57 ) ( -73 1142 57 ) ( -72 1142 57 ) metals/m_hl_c10b 1 6 0 1 1 134217728 0 0 +( -73 1131 57 ) ( -72 1131 57 ) ( -72 1131 41 ) metals/m_hl_c10b 1 0 0 1 1 134217728 0 0 +( -71 1128 57 ) ( -71 1142 57 ) ( -71 1142 41 ) metals/m_hl_c10b -6 0 0 1 1 134217728 0 0 +( -72 1136 57 ) ( -73 1136 57 ) ( -73 1136 41 ) metals/m_hl_c10b 1 0 0 1 1 134217728 0 0 +( -73 1142 57 ) ( -73 1128 57 ) ( -73 1128 41 ) metals/m_hl_c10b -6 0 0 1 1 134217728 0 0 +} +// brush 253 +{ +( 816 1497 74 ) ( 824 1497 74 ) ( 824 1513 74 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +( 824 1519 76 ) ( 824 1499 76 ) ( 816 1499 76 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +( 824 1502 84 ) ( 824 1502 68 ) ( 816 1502 68 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +( 824 1504 68 ) ( 824 1504 84 ) ( 816 1504 84 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +( 816 1498 93 ) ( 816 1498 63 ) ( 816 1514 63 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +( 824 1498 68 ) ( 824 1498 84 ) ( 824 1514 84 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +} +// brush 254 +{ +( 816 1494 74 ) ( 824 1494 74 ) ( 824 1510 74 ) props/callbox4 31 36 0 -0.250000 0.250000 134217728 0 0 +( 824 1516 76 ) ( 824 1496 76 ) ( 816 1496 76 ) props/callbox4 31 36 0 -0.250000 0.250000 134217728 0 0 +( 824 1499 84 ) ( 824 1499 68 ) ( 816 1499 68 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +( 824 1500 68 ) ( 824 1500 84 ) ( 816 1500 84 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +( 816 1495 93 ) ( 816 1495 63 ) ( 816 1511 63 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +( 824 1495 68 ) ( 824 1495 84 ) ( 824 1511 84 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +} +// brush 255 +{ +( 816 1497 74 ) ( 824 1497 74 ) ( 824 1513 74 ) props/callbox4 31 36 0 -0.250000 0.250000 134217728 0 0 +( 824 1520 76 ) ( 824 1500 76 ) ( 816 1500 76 ) props/callbox4 31 36 0 -0.250000 0.250000 134217728 0 0 +( 824 1497 86 ) ( 824 1497 70 ) ( 816 1497 70 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +( 824 1499 70 ) ( 824 1499 86 ) ( 816 1499 86 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +( 816 1498 95 ) ( 816 1498 65 ) ( 816 1514 65 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +( 824 1498 70 ) ( 824 1498 86 ) ( 824 1514 86 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +} +// brush 256 +{ +( 816 1497 72 ) ( 824 1497 72 ) ( 824 1513 72 ) floors/dr_st_m1d -13 -20 0 0.500000 0.500000 134217728 0 0 +( 824 1519 74 ) ( 824 1499 74 ) ( 816 1499 74 ) floors/dr_st_m1d -13 -20 0 0.500000 0.500000 134217728 0 0 +( 824 1497 84 ) ( 824 1497 68 ) ( 816 1497 68 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +( 824 1506 68 ) ( 824 1506 84 ) ( 816 1506 84 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +( 816 1498 93 ) ( 816 1498 63 ) ( 816 1514 63 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +( 824 1498 68 ) ( 824 1498 84 ) ( 824 1514 84 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +} +// brush 257 +{ +( 816 1502 72 ) ( 824 1502 72 ) ( 824 1518 72 ) floors/dr_st_m1d -13 -20 0 0.500000 0.500000 134217728 0 0 +( 824 1524 76 ) ( 824 1504 76 ) ( 816 1504 76 ) props/callbox4 31 36 0 -0.250000 0.250000 134217728 0 0 +( 824 1506 84 ) ( 824 1506 68 ) ( 816 1506 68 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +( 824 1511 68 ) ( 824 1511 84 ) ( 816 1511 84 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +( 816 1503 93 ) ( 816 1503 63 ) ( 816 1519 63 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +( 824 1503 68 ) ( 824 1503 84 ) ( 824 1519 84 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +} +// brush 258 +{ +( 816 1495 74 ) ( 824 1495 74 ) ( 824 1511 74 ) props/callbox4 31 36 0 -0.250000 0.250000 134217728 0 0 +( 824 1517 76 ) ( 824 1497 76 ) ( 816 1497 76 ) props/callbox4 31 36 0 -0.250000 0.250000 134217728 0 0 +( 824 1500 84 ) ( 824 1500 68 ) ( 816 1500 68 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +( 824 1502 68 ) ( 824 1502 84 ) ( 816 1502 84 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +( 816 1496 93 ) ( 816 1496 63 ) ( 816 1512 63 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 1 1000 +( 824 1496 68 ) ( 824 1496 84 ) ( 824 1512 84 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +} +// brush 259 +{ +( 1378 -356 192 ) ( 1278 -356 192 ) ( 1278 -360 192 ) metals/mt_pv_m26y 17 10 -180 1 -1 0 8388608 0 +( 1278 -360 256 ) ( 1278 -356 256 ) ( 1378 -356 256 ) metals/mt_pv_m26y 17 10 -180 1 -1 0 8388608 0 +( 1278 -360 244 ) ( 1378 -360 244 ) ( 1378 -360 236 ) metals/mt_pv_m26y 18 -14 -180 1 -1 0 8388608 0 +( 1378 -360 244 ) ( 1378 -356 244 ) ( 1378 -356 236 ) metals/mt_pv_m26y 12 -13 -180 1 -1 0 8388608 0 +( 1280 -356 240 ) ( 1368 -356 192 ) ( 1378 -356 192 ) metals/mt_pv_m26y 18 -14 -180 1 -1 0 8388608 0 +( 1278 -356 244 ) ( 1278 -360 244 ) ( 1278 -360 236 ) metals/mt_pv_m26y 12 -13 -180 1 -1 0 8388608 0 +( 1290 -356 256 ) ( 1378 -356 212 ) ( 1378 -360 212 ) metals/mt_pv_m26y 17 10 -180 1 -1 0 8388608 0 +( 1368 -356 192 ) ( 1280 -356 240 ) ( 1278 -360 240 ) metals/mt_pv_m26y 17 10 -180 1 -1 0 8388608 0 +} +// brush 260 +{ +( 1408 192 24 ) ( 1344 192 24 ) ( 1344 152 24 ) bricks/c_sr_m8e 64 64 0 1 1 0 67108864 0 +( 1344 152 32 ) ( 1344 192 32 ) ( 1408 192 32 ) bricks/c_sr_m8e 64 64 0 1 1 0 67108864 0 +( 1344 152 32 ) ( 1408 152 32 ) ( 1408 152 24 ) bricks/c_sr_m8e 64 64 0 1 1 0 67108864 0 +( 1408 152 32 ) ( 1408 192 32 ) ( 1408 192 24 ) bricks/c_sr_m8e 64 64 0 1 1 0 67108864 0 +( 1408 192 32 ) ( 1344 192 32 ) ( 1344 192 24 ) bricks/c_sr_m8e 64 64 0 1 1 0 67108864 0 +( 1344 192 32 ) ( 1344 152 32 ) ( 1344 152 24 ) bricks/c_sr_m8e 64 64 0 1 1 0 67108864 0 +} +// brush 261 +{ +( 1472 152 24 ) ( 1280 152 24 ) ( 1280 128 24 ) bricks/c_sr_m8e 64 64 0 1 1 0 67108864 0 +( 1280 128 32 ) ( 1280 152 32 ) ( 1472 152 32 ) bricks/c_sr_m8e 64 64 0 1 1 0 67108864 0 +( 1280 128 32 ) ( 1472 128 32 ) ( 1472 128 24 ) bricks/c_sr_m8e 64 64 0 1 1 0 67108864 0 +( 1472 152 32 ) ( 1472 152 24 ) ( 1472 128 24 ) bricks/c_sr_m8e 64 64 0 1 1 0 67108864 0 +( 1344 152 24 ) ( 1344 152 32 ) ( 1280 152 32 ) bricks/c_sr_m8e 64 64 0 1 1 0 67108864 0 +( 1280 152 32 ) ( 1280 128 32 ) ( 1280 128 24 ) bricks/c_sr_m8e 64 64 0 1 1 0 67108864 0 +} +// brush 262 +{ +( 1088 1520 64 ) ( 1024 1520 64 ) ( 1024 1504 64 ) props/w_sr_m6e 0 0 0 1 1 0 0 0 +( 1024 1504 192 ) ( 1024 1520 192 ) ( 1088 1520 192 ) props/w_sr_m6e 0 0 0 1 1 0 0 0 +( 1024 1504 192 ) ( 1088 1504 192 ) ( 1088 1504 64 ) props/w_sr_m6e 0 0 0 1 1 0 0 0 +( 1088 1504 192 ) ( 1088 1520 192 ) ( 1088 1520 64 ) props/w_sr_m6e 0 0 0 1 1 0 0 0 +( 1088 1520 192 ) ( 1024 1520 192 ) ( 1024 1520 64 ) props/w_sr_m6e 0 64 0 1 1 0 0 0 +( 1024 1520 192 ) ( 1024 1504 192 ) ( 1024 1504 64 ) props/w_sr_m6e 0 0 0 1 1 0 0 0 +} +// brush 263 +{ +( 823 1472 46 ) ( 822 1472 46 ) ( 822 1472 48 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 822 1504 48 ) ( 822 1504 46 ) ( 823 1504 46 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 822 1432 48 ) ( 823 1432 48 ) ( 823 1416 48 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 823 1432 48 ) ( 823 1432 46 ) ( 823 1416 46 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 823 1432 45 ) ( 822 1432 45 ) ( 822 1416 45 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 821 1568 46 ) ( 821 1568 48 ) ( 821 1552 48 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +} +// brush 264 +{ +( 816 1481 72 ) ( 824 1481 72 ) ( 824 1497 72 ) floors/dr_st_m1d -13 -20 0 0.500000 0.500000 134217728 0 0 +( 824 1501 76 ) ( 824 1481 76 ) ( 816 1481 76 ) floors/dr_st_m1d -17 1 0 1 1 134217728 0 0 +( 817 1496 68 ) ( 817 1496 84 ) ( 824 1496 84 ) props/callbox4 59 32 0 0.250000 0.250000 134217728 0 0 +( 824 1497 68 ) ( 824 1497 84 ) ( 816 1497 84 ) metals/mt_sr_b1a 0 -1 0 1 1 134217728 0 0 +( 817 1496 84 ) ( 817 1496 68 ) ( 816 1497 68 ) props/callbox4 30 32 0 -0.250000 0.250000 134217728 0 0 +( 824 1481 68 ) ( 824 1481 84 ) ( 824 1497 84 ) bricks/c_pv_m2 7 -33 0 1 1 134217728 0 0 +} +// brush 265 +{ +( 816 1496 72 ) ( 824 1496 72 ) ( 824 1512 72 ) floors/dr_st_m1d -13 -20 0 0.500000 0.500000 134217728 0 0 +( 824 1516 76 ) ( 824 1496 76 ) ( 816 1496 76 ) floors/dr_st_m1d -17 1 0 1 1 134217728 0 0 +( 824 1511 84 ) ( 824 1511 68 ) ( 816 1511 68 ) metals/mt_sr_b1a 0 -1 0 1 1 134217728 0 0 +( 817 1512 84 ) ( 817 1512 68 ) ( 824 1512 68 ) props/callbox4 59 32 0 0.250000 0.250000 134217728 0 0 +( 817 1512 68 ) ( 817 1512 84 ) ( 816 1511 84 ) props/callbox4 30 32 0 -0.250000 0.250000 134217728 0 0 +( 824 1496 68 ) ( 824 1496 84 ) ( 824 1512 84 ) bricks/c_pv_m2 -8 -33 0 1 1 134217728 0 0 +} +// brush 266 +{ +( 846 1986 327 ) ( 840 1992 327 ) ( 820 1992 327 ) common/li_sr_mst2 -13 -8 0 1 1 134217728 1 25000 +( 839 1978 335 ) ( 821 1978 335 ) ( 816 1982 335 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 816 1985 335 ) ( 816 1983 335 ) ( 814 1982 327 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 821 1978 335 ) ( 839 1978 335 ) ( 840 1976 327 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 844 1982 335 ) ( 844 1986 335 ) ( 846 1986 327 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 839 1990 335 ) ( 821 1990 335 ) ( 820 1992 327 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 844 1986 335 ) ( 840 1990 335 ) ( 840 1992 327 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 840 1978 335 ) ( 844 1982 335 ) ( 846 1982 327 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 816 1982 335 ) ( 820 1978 335 ) ( 820 1976 327 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 820 1990 335 ) ( 815 1985 335 ) ( 814 1986 327 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +} +// brush 267 +{ +( 734 1978 16 ) ( 734 1990 16 ) ( 722 1990 16 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 738 1980 337 ) ( 730 1980 337 ) ( 730 1988 337 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 722 1978 16 ) ( 722 1990 16 ) ( 730 1988 337 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 732 1978 16 ) ( 724 1978 16 ) ( 730 1980 337 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 734 1990 16 ) ( 734 1978 16 ) ( 738 1980 337 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 724 1990 16 ) ( 732 1990 16 ) ( 738 1988 337 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +} +// brush 268 +{ +( 416 416 96 ) ( -32 416 96 ) ( -32 400 96 ) props/w_sr_m6d 32 -32 0 1 1 0 1 100 +( -32 400 224 ) ( -32 416 224 ) ( 416 416 224 ) props/w_sr_m6d 32 -32 0 1 1 0 1 100 +( -32 400 224 ) ( 416 400 224 ) ( 416 400 96 ) props/w_sr_m6d 32 -32 0 -1 1 0 1 150 +( 416 408 224 ) ( -32 408 224 ) ( -32 408 96 ) props/w_sr_m6d 32 -32 0 1 1 0 1 100 +( 192 392 96 ) ( 192 416 96 ) ( 192 404 224 ) props/w_sr_m6d 32 -32 0 1 1 0 1 100 +( 224 408 96 ) ( 224 392 96 ) ( 224 400 224 ) props/w_sr_m6d 32 -32 0 1 1 0 1 100 +} +// brush 269 +{ +( 1664 -640 0 ) ( 1600 -640 0 ) ( 1600 -768 0 ) bricks/c_sr_m8e 0 0 0 1 0.500000 0 67108864 0 +( 1600 -768 32 ) ( 1600 -640 32 ) ( 1664 -640 32 ) bricks/c_sr_m8e 0 0 0 1 0.500000 0 67108864 0 +( 1600 -640 32 ) ( 1600 -768 32 ) ( 1600 -768 0 ) bricks/c_sr_m8e 0 0 0 1 0.500000 0 67108864 0 +( 1624 -688 0 ) ( 1600 -688 0 ) ( 1612 -688 32 ) bricks/c_sr_m8e 0 0 0 1 0.500000 0 67108864 0 +( 1600 -640 0 ) ( 1632 -640 0 ) ( 1616 -640 32 ) bricks/c_sr_m8e 0 0 0 1 0.500000 0 67108864 0 +( 1616 -608 0 ) ( 1616 -616 0 ) ( 1616 -612 32 ) bricks/c_sr_m8e 0 0 0 1 0.500000 0 67108864 0 +} +// brush 270 +{ +( 1664 -496 0 ) ( 1600 -496 0 ) ( 1600 -624 0 ) bricks/c_sr_m8e 0 48 0 1 1 0 0 0 +( 1600 -624 32 ) ( 1600 -496 32 ) ( 1664 -496 32 ) bricks/c_sr_m8e -63 0 180 1 0.500000 0 67108864 0 +( 1600 -496 32 ) ( 1600 -624 32 ) ( 1600 -624 0 ) bricks/c_sr_m8e -48 0 0 1 1 0 0 0 +( 1624 -576 0 ) ( 1600 -576 0 ) ( 1612 -576 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1600 -496 0 ) ( 1632 -496 0 ) ( 1616 -496 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1616 -464 0 ) ( 1616 -472 0 ) ( 1616 -468 32 ) bricks/c_sr_m8e -48 0 0 1 1 0 0 0 +} +// brush 271 +{ +( 823 1505 45 ) ( 822 1505 45 ) ( 822 1503 45 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 822 1503 73 ) ( 822 1505 73 ) ( 823 1505 73 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 822 1503 -3 ) ( 823 1503 -3 ) ( 823 1503 -19 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 823 1503 -3 ) ( 823 1505 -3 ) ( 823 1505 -19 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 823 1506 -3 ) ( 822 1506 -3 ) ( 822 1506 -19 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( 821 1505 137 ) ( 821 1503 137 ) ( 821 1503 121 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +} +// brush 272 +{ +( 816 1481 76 ) ( 824 1481 76 ) ( 824 1497 76 ) floors/dr_st_m1d -17 2 0 1 1 134217728 0 0 +( 824 1501 88 ) ( 824 1481 88 ) ( 816 1481 88 ) floors/dr_st_m1d -13 -20 0 0.500000 0.500000 134217728 0 0 +( 817 1496 72 ) ( 817 1496 88 ) ( 824 1496 88 ) floors/dr_st_m1d -4 0 180 0.500000 0.500000 134217728 0 0 +( 824 1497 72 ) ( 824 1497 88 ) ( 816 1497 88 ) metals/mt_sr_b1a 0 3 0 1 1 134217728 0 0 +( 817 1496 88 ) ( 817 1496 72 ) ( 816 1497 72 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +( 824 1481 72 ) ( 824 1481 88 ) ( 824 1497 88 ) bricks/c_pv_m2 7 -29 0 1 1 134217728 0 0 +} +// brush 273 +{ +( 816 1496 76 ) ( 824 1496 76 ) ( 824 1512 76 ) floors/dr_st_m1d -17 2 0 1 1 134217728 0 0 +( 824 1516 88 ) ( 824 1496 88 ) ( 816 1496 88 ) floors/dr_st_m1d -13 -20 0 0.500000 0.500000 134217728 0 0 +( 824 1511 88 ) ( 824 1511 72 ) ( 816 1511 72 ) metals/mt_sr_b1a 0 3 0 1 1 134217728 0 0 +( 817 1512 88 ) ( 817 1512 72 ) ( 824 1512 72 ) floors/dr_st_m1d -4 0 180 0.500000 0.500000 134217728 0 0 +( 817 1512 72 ) ( 817 1512 88 ) ( 816 1511 88 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +( 824 1496 72 ) ( 824 1496 88 ) ( 824 1512 88 ) bricks/c_pv_m2 -8 -29 0 1 1 134217728 0 0 +} +// brush 274 +{ +( 366 1004 87 ) ( 366 1068 87 ) ( 342 1068 28 ) props/box_c_m5 -14 49 0 0.750000 0.695374 134217728 0 0 +( 319 1068 36 ) ( 343 1068 96 ) ( 343 1004 96 ) props/box_c_m5 -15 38 0 0.750000 0.750000 134217728 0 0 +( 304 1067 65 ) ( 304 1003 65 ) ( 363 1003 42 ) props/box_c_m6 -16 -13 90 0.750000 -0.700000 134217728 2097152 0 +( 305 1020 42 ) ( 329 1020 102 ) ( 388 1020 78 ) props/box_c_m6 -39 23 66 0.749995 -0.749984 134217728 0 0 +( 304 1006 66 ) ( 304 1070 66 ) ( 364 1070 42 ) props/box_c_m6 -16 -12 90 0.750000 -0.700000 134217728 2097152 0 +( 330 1068 102 ) ( 306 1068 42 ) ( 365 1068 19 ) props/box_c_m6 -39 23 66 0.749995 -0.749984 134217728 0 0 +} +// brush 275 +{ +( 466 1004 0 ) ( 466 1068 0 ) ( 402 1068 0 ) props/box_sr_m14 -36 -4 0 1 1 134217728 0 0 +( 402 1068 1 ) ( 466 1068 1 ) ( 466 1004 1 ) props/box_c_m6 -15 -47 90 0.750000 0.750000 134217728 2097152 0 +( 324 1068 64 ) ( 324 1004 64 ) ( 324 1004 0 ) props/box_sr_m14 4 0 0 1 1 134217728 0 0 +( 354 1020 64 ) ( 418 1020 64 ) ( 418 1020 0 ) props/box_sr_m14 -36 0 0 1 1 134217728 0 0 +( 348 1006 64 ) ( 348 1070 64 ) ( 348 1070 0 ) props/box_sr_m14 4 0 0 1 1 134217728 0 0 +( 418 1068 64 ) ( 354 1068 64 ) ( 354 1068 0 ) props/box_sr_m14 -36 0 0 1 1 134217728 0 0 +} +// brush 276 +{ +( 354 1006 37 ) ( 354 1006 -27 ) ( 417 1019 -27 ) props/box_c_m5 -32 41 0 0.733612 0.750000 134217728 0 0 +( 422 996 -27 ) ( 359 982 -27 ) ( 359 982 37 ) props/box_c_m5 -40 43 0 0.733551 0.750000 134217728 0 0 +( 413 1043 1 ) ( 426 980 1 ) ( 363 967 1 ) props/box_c_m6 -36 34 12 0.750000 -0.750000 134217728 2097152 0 +( 395 1039 -27 ) ( 408 976 -27 ) ( 408 976 37 ) props/box_c_m6 -63 -6 90 0.750004 0.733582 134217728 0 0 +( 347 1029 0 ) ( 360 966 0 ) ( 423 980 0 ) props/box_c_m6 -36 34 12 0.750121 -0.749908 134217728 0 0 +( 350 1029 37 ) ( 363 967 37 ) ( 363 967 -27 ) props/box_c_m6 -63 6 90 0.750004 0.733643 134217728 0 0 +} +// brush 277 +{ +( 506 1004 47 ) ( 506 1068 47 ) ( 442 1068 47 ) props/box_sr_m14 -12 -4 0 1 1 134217728 2097152 0 +( 442 1068 48 ) ( 506 1068 48 ) ( 506 1004 48 ) props/box_c_m5 -15 -16 90 0.750000 0.750000 134217728 2097152 0 +( 348 1068 104 ) ( 348 1004 104 ) ( 348 1004 40 ) props/box_c_m5 -20 -37 90 0.750000 0.750000 134217728 0 0 +( 394 1021 104 ) ( 458 1021 104 ) ( 458 1021 40 ) props/box_c_m6 57 53 -180 0.750000 -0.750000 134217728 0 0 +( 443 1006 104 ) ( 443 1070 104 ) ( 443 1070 40 ) props/box_c_m6 -15 54 0 0.750000 0.750000 134217728 0 0 +( 458 1067 104 ) ( 394 1067 104 ) ( 394 1067 40 ) props/box_c_m6 57 53 -180 0.750000 -0.750000 134217728 0 0 +} +// brush 278 +{ +( 506 1004 0 ) ( 506 1068 0 ) ( 442 1068 0 ) props/box_sr_m14 -12 -4 0 1 1 134217728 0 0 +( 442 1068 1 ) ( 506 1068 1 ) ( 506 1004 1 ) props/box_sr_m14 -12 -4 0 1 1 134217728 2097152 0 +( 348 1068 64 ) ( 348 1004 64 ) ( 348 1004 0 ) props/box_sr_m14 4 0 0 1 1 134217728 0 0 +( 394 1020 64 ) ( 458 1020 64 ) ( 458 1020 0 ) props/box_c_m5 0 -16 90 0.750000 0.750000 134217728 0 0 +( 444 1006 64 ) ( 444 1070 64 ) ( 444 1070 0 ) props/box_c_m6 -15 0 0 0.750000 0.750000 134217728 0 0 +( 458 1068 64 ) ( 394 1068 64 ) ( 394 1068 0 ) props/box_sr_m14 -12 0 0 1 1 134217728 0 0 +} +// brush 279 +{ +( 507 1004 1 ) ( 507 1068 1 ) ( 443 1068 1 ) props/box_c_m5 -15 -18 90 0.750000 0.750000 134217728 0 0 +( 443 1068 48 ) ( 507 1068 48 ) ( 507 1004 48 ) props/box_c_m5 -15 -16 90 0.750000 0.750000 134217728 0 0 +( 443 1067 64 ) ( 443 1003 64 ) ( 443 1003 0 ) props/box_sr_m14 -43 -4 0 1 1 134217728 2097152 0 +( 443 1021 64 ) ( 507 1021 64 ) ( 507 1021 0 ) props/box_c_m6 60 1 -180 0.750000 -0.750000 134217728 0 0 +( 444 1006 64 ) ( 444 1070 64 ) ( 444 1070 0 ) props/box_c_m6 -15 0 0 0.750000 0.750000 134217728 0 0 +( 507 1067 64 ) ( 443 1067 64 ) ( 443 1067 0 ) props/box_c_m6 60 1 -180 0.750000 -0.750000 134217728 0 0 +} +// brush 280 +{ +( 460 1131 1 ) ( 396 1131 1 ) ( 396 1067 1 ) props/box_c_m5 -15 -6 0 0.750000 0.750000 134217728 0 0 +( 396 1067 48 ) ( 396 1131 48 ) ( 460 1131 48 ) props/box_c_m5 -15 -16 90 0.750000 0.750000 134217728 0 0 +( 348 1067 64 ) ( 412 1067 64 ) ( 412 1067 0 ) props/box_sr_m14 -12 -4 0 1 1 134217728 2097152 0 +( 444 1067 64 ) ( 444 1131 64 ) ( 444 1131 0 ) props/box_c_m6 -15 0 0 0.750000 0.750000 134217728 0 0 +( 458 1068 64 ) ( 394 1068 64 ) ( 394 1068 0 ) props/box_c_m5 0 -16 90 0.750000 0.750000 134217728 0 0 +( 348 1131 64 ) ( 348 1067 64 ) ( 348 1067 0 ) props/box_c_m6 -15 4 0 0.750000 0.695389 134217728 0 0 +} +// brush 281 +{ +( 460 1084 1 ) ( 396 1084 1 ) ( 396 1020 1 ) props/box_c_m5 0 -16 90 0.750000 0.750000 134217728 0 0 +( 396 1020 48 ) ( 396 1084 48 ) ( 460 1084 48 ) props/box_c_m5 0 -16 90 0.750000 0.750000 134217728 0 0 +( 396 1020 64 ) ( 460 1020 64 ) ( 460 1020 0 ) props/box_c_m5 0 -16 90 0.750000 0.750000 134217728 0 0 +( 444 1020 64 ) ( 444 1084 64 ) ( 444 1084 0 ) props/box_c_m5 0 -16 90 0.750000 0.750000 134217728 0 0 +( 410 1021 64 ) ( 346 1021 64 ) ( 346 1021 0 ) props/box_sr_m14 -12 -4 0 1 1 134217728 2097152 0 +( 348 1084 64 ) ( 348 1020 64 ) ( 348 1020 0 ) props/box_c_m5 0 -16 90 0.750000 0.750000 134217728 0 0 +} +// brush 282 +{ +( 1904 1376 32 ) ( 1872 1376 32 ) ( 1872 1344 32 ) props/box_sr_m11 -16 0 0 0.500000 0.500000 0 134217728 0 +( 1872 1344 64 ) ( 1872 1376 64 ) ( 1904 1376 64 ) props/box_sr_m11 30 0 0 0.500000 0.500000 0 134217728 0 +( 1872 1344 88 ) ( 1904 1344 88 ) ( 1904 1344 32 ) props/box_sr_m11 30 0 0 0.500000 0.500000 0 134217728 0 +( 1904 1344 88 ) ( 1904 1376 88 ) ( 1904 1376 32 ) props/box_sr_m11 0 0 0 0.500000 0.500000 0 134217728 0 +( 1904 1376 88 ) ( 1872 1376 88 ) ( 1872 1376 32 ) props/box_sr_m11 30 0 0 0.500000 0.500000 0 134217728 0 +( 1872 1376 88 ) ( 1872 1344 88 ) ( 1872 1344 32 ) props/box_sr_m11 0 0 0 0.500000 0.500000 0 134217728 0 +} +// brush 283 +{ +( 1280 3248 0 ) ( 1216 3252 0 ) ( 1216 3248 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 1216 3240 126 ) ( 1216 3244 126 ) ( 1280 3240 128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1280 3244 0 ) ( 1216 3248 0 ) ( 1216 3240 128 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 1280 3248 128 ) ( 1280 3248 0 ) ( 1280 3244 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 1280 3240 128 ) ( 1216 3244 128 ) ( 1216 3252 0 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1216 3244 126 ) ( 1216 3240 126 ) ( 1216 3248 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +} +// brush 284 +{ +( 1152 3248 0 ) ( 1216 3248 0 ) ( 1216 3252 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 1216 3244 126 ) ( 1216 3240 126 ) ( 1152 3240 128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1216 3248 0 ) ( 1152 3248 0 ) ( 1152 3240 128 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 1216 3240 126 ) ( 1216 3244 126 ) ( 1216 3252 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 1216 3244 128 ) ( 1152 3244 128 ) ( 1152 3252 0 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1152 3248 128 ) ( 1152 3232 128 ) ( 1152 3232 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +} +// brush 285 +{ +( 1088 3252 0 ) ( 1152 3248 0 ) ( 1152 3252 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 1088 3248 128 ) ( 1152 3244 128 ) ( 1152 3240 128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1152 3248 0 ) ( 1088 3252 0 ) ( 1088 3244 128 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 1152 3252 128 ) ( 1152 3252 0 ) ( 1152 3248 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 1152 3244 128 ) ( 1088 3248 128 ) ( 1088 3256 0 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1088 3252 128 ) ( 1088 3236 128 ) ( 1088 3236 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +} +// brush 286 +{ +( -1712 3072 296 ) ( -1728 3072 296 ) ( -1728 2944 296 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1728 2944 320 ) ( -1728 3072 320 ) ( -1712 3072 320 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1737 2168 336 ) ( -1721 2168 336 ) ( -1721 2168 208 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1528 2240 336 ) ( -1528 2368 336 ) ( -1528 2368 208 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1864 3072 336 ) ( -1864 2944 336 ) ( -1864 2944 208 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1728 2440 272 ) ( -1712 2440 272 ) ( -1720 2440 336 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +} +// brush 287 +{ +( -964 2209 224 ) ( -958 2214 225 ) ( -980 2238 224 ) metals/mt_pv_m26y 6 -1 -180 0.999390 1 134217728 0 0 +( -982 2238 256 ) ( -960 2214 257 ) ( -966 2209 256 ) metals/mt_pv_m26y 5 -1 -180 0.999390 1 134217728 0 0 +( -982 2238 256 ) ( -988 2233 256 ) ( -986 2233 224 ) metals/mt_pv_m26y 16 1 -177 0.999999 -1.000012 134217728 0 0 +( -988 2233 256 ) ( -966 2209 256 ) ( -964 2209 224 ) common/li_sr_v13 3 6 179 0.740000 -1 134217728 1 30000 +( -966 2209 256 ) ( -960 2214 257 ) ( -958 2214 225 ) metals/mt_pv_m26y 16 1 -177 0.999999 -1.000012 134217728 0 0 +( -960 2214 257 ) ( -982 2238 256 ) ( -980 2238 224 ) metals/mt_pv_m26y -12 7 178 1.000511 -0.998879 134217728 0 0 +} +// brush 288 +{ +( -1780 2956 -1 ) ( -1780 2964 -1 ) ( -1784 2964 -5 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1780 2964 7 ) ( -1780 2956 7 ) ( -1784 2956 3 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1740 2964 1 ) ( -1788 2964 1 ) ( -1788 2964 -7 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1784 2964 1 ) ( -1784 2956 1 ) ( -1784 2956 -7 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1788 2956 1 ) ( -1740 2956 1 ) ( -1740 2956 -7 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1780 2964 -1 ) ( -1780 2956 -1 ) ( -1780 2956 7 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 289 +{ +( -800 1668 0 ) ( -1020 1668 0 ) ( -1020 1660 0 ) metals/mt_pv_m7m -32 0 0 1 1 0 16777216 0 +( -1020 1660 128 ) ( -1020 1668 128 ) ( -800 1668 128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1024 1660 0 ) ( -1024 1660 128 ) ( -960 1664 128 ) metals/mt_pv_m7m -1 0 0 1 1 0 16777216 0 +( -960 1660 128 ) ( -960 1668 128 ) ( -960 1668 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1024 1664 128 ) ( -1024 1664 0 ) ( -960 1668 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1024 1664 0 ) ( -1024 1664 128 ) ( -1024 1660 128 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +} +// brush 290 +{ +( -864 1668 0 ) ( -1084 1668 0 ) ( -1084 1660 0 ) metals/mt_pv_m7m -96 0 0 1 1 0 16777216 0 +( -1084 1660 128 ) ( -1084 1668 128 ) ( -864 1668 128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1024 1660 128 ) ( -1024 1660 0 ) ( -1088 1664 0 ) metals/mt_pv_m7m -128 0 0 1 1 0 16777216 0 +( -1024 1664 128 ) ( -1024 1664 0 ) ( -1024 1660 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1024 1664 0 ) ( -1024 1664 128 ) ( -1088 1668 128 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1088 1668 0 ) ( -1088 1668 128 ) ( -1088 1664 128 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +} +// brush 291 +{ +( -1016 1644 130 ) ( -1016 1660 132 ) ( -1080 1660 134 ) metals/mt_pv_m26y 0 3 -180 1 1 0 8388608 0 +( -1018 1660 140 ) ( -1018 1644 138 ) ( -1080 1644 140 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 0 16779264 0 +( -1016 1660 142 ) ( -1144 1660 142 ) ( -1144 1660 134 ) metals/mt_sr_b1a -7 5 -180 1 -1 0 0 0 +( -1080 1644 140 ) ( -1016 1644 140 ) ( -1016 1644 132 ) metals/mt_sr_b1a 2 11 177 0.999877 -0.999992 0 0 0 +( -1018 1644 138 ) ( -1018 1660 140 ) ( -1016 1660 132 ) metals/mt_pv_m26y 0 0 -180 1 -1 0 0 0 +( -1080 1508 134 ) ( -1080 1516 134 ) ( -1080 1512 142 ) metals/mt_pv_m26y 0 0 -180 1 -1 0 0 0 +} +// brush 292 +{ +( -1080 1640 116 ) ( -1080 1624 116 ) ( -1016 1624 118 ) metals/mt_pv_m26y 0 3 -180 1 1 0 8388608 0 +( -1080 1624 124 ) ( -1080 1640 124 ) ( -1016 1640 126 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 0 16779264 0 +( -1016 1640 126 ) ( -1144 1640 126 ) ( -1144 1640 118 ) metals/mt_sr_b1a -7 53 -180 1 -1 0 0 0 +( -1144 1624 126 ) ( -1016 1624 126 ) ( -1016 1624 118 ) metals/mt_sr_b1a 14 24 -178 1.000121 -0.999992 0 0 0 +( -1016 1616 126 ) ( -1016 1640 126 ) ( -1016 1640 118 ) metals/mt_pv_m26y 0 0 -180 1 -1 0 0 0 +( -1080 1640 124 ) ( -1080 1624 124 ) ( -1080 1624 116 ) metals/mt_pv_m26y 0 0 -180 1 -1 0 0 0 +} +// brush 293 +{ +( -1144 1596 102 ) ( -1016 1596 102 ) ( -1016 1620 102 ) metals/mt_pv_m26y 0 3 -180 1 1 0 8388608 0 +( -1016 1620 110 ) ( -1016 1596 110 ) ( -1144 1596 110 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 0 16779264 0 +( -1016 1620 110 ) ( -1144 1620 110 ) ( -1144 1620 102 ) metals/mt_sr_b1a -7 37 -180 1 -1 0 0 0 +( -1144 1604 110 ) ( -1016 1604 110 ) ( -1016 1604 102 ) metals/mt_sr_b1a 9 37 -180 1 -1 0 0 0 +( -1016 1596 110 ) ( -1016 1620 110 ) ( -1016 1620 102 ) metals/mt_pv_m26y 0 0 -180 1 -1 0 0 0 +( -1080 1532 102 ) ( -1080 1540 102 ) ( -1080 1536 110 ) metals/mt_pv_m26y 0 0 -180 1 -1 0 0 0 +} +// brush 294 +{ +( -1141 1573 86 ) ( -1013 1577 86 ) ( -1014 1601 86 ) metals/mt_pv_m26y 0 3 -180 1 1 0 8388608 0 +( -1016 1601 94 ) ( -1015 1577 94 ) ( -1143 1573 94 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 0 16779264 0 +( -1016 1601 94 ) ( -1144 1597 94 ) ( -1144 1597 86 ) metals/mt_sr_b1a -7 21 -180 0.999268 -1 0 0 0 +( -1144 1581 94 ) ( -1016 1585 94 ) ( -1016 1585 86 ) metals/mt_sr_b1a 9 21 -180 0.999268 -1 0 0 0 +( -1015 1577 94 ) ( -1016 1601 94 ) ( -1016 1601 86 ) metals/mt_pv_m26y 1 0 -180 0.999512 -1 0 0 0 +( -1076 1543 86 ) ( -1077 1551 86 ) ( -1076 1547 94 ) metals/mt_pv_m26y 0 0 -180 0.999268 -1 0 0 0 +} +// brush 295 +{ +( -1080 1580 71 ) ( -1080 1564 71 ) ( -1016 1564 70 ) metals/mt_pv_m26y 0 3 -180 1 1 0 8388608 0 +( -1080 1564 79 ) ( -1080 1580 79 ) ( -1016 1580 78 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 0 16779264 0 +( -1016 1580 78 ) ( -1144 1580 78 ) ( -1144 1580 70 ) metals/mt_sr_b1a -7 5 -180 1 -1 0 0 0 +( -1144 1564 78 ) ( -1016 1564 78 ) ( -1016 1564 70 ) metals/mt_sr_b1a 6 -77 179 1 -1 0 0 0 +( -1016 1556 78 ) ( -1016 1580 78 ) ( -1016 1580 70 ) metals/mt_pv_m26y 0 0 -180 1 -1 0 0 0 +( -1080 1564 71 ) ( -1080 1580 71 ) ( -1080 1580 79 ) metals/mt_pv_m26y 0 0 -180 1 -1 0 0 0 +} +// brush 296 +{ +( -1080 1540 36 ) ( -1080 1524 36 ) ( -1016 1524 38 ) metals/mt_pv_m26y 0 3 -180 1 1 0 8388608 0 +( -1080 1522 46 ) ( -1080 1538 44 ) ( -1016 1540 44 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 0 16779264 0 +( -1015 1540 45 ) ( -1079 1540 45 ) ( -1080 1540 37 ) metals/mt_sr_b1a -7 36 -180 1 -1 0 0 0 +( -1015 1524 38 ) ( -1079 1524 38 ) ( -1080 1524 46 ) metals/mt_sr_b1a 8 54 -179 1 -1 0 0 0 +( -1016 1516 46 ) ( -1016 1540 46 ) ( -1016 1540 38 ) metals/mt_pv_m26y 0 0 -180 1 -1 0 0 0 +( -1080 1538 44 ) ( -1080 1522 46 ) ( -1080 1524 36 ) metals/mt_pv_m26y 0 0 -180 1 -1 0 0 0 +} +// brush 297 +{ +( -1016 1504 21 ) ( -1016 1520 21 ) ( -1072 1520 19 ) metals/mt_pv_m26y 0 3 -180 1 1 134217728 8388608 0 +( -1016 1520 29 ) ( -1016 1504 29 ) ( -1072 1504 27 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 134217728 16779264 0 +( -1016 1520 27 ) ( -1144 1520 27 ) ( -1144 1520 19 ) metals/mt_sr_b1a -7 18 -180 1 -1 134217728 0 0 +( -1144 1504 27 ) ( -1016 1504 27 ) ( -1016 1504 19 ) metals/mt_sr_b1a 8 55 -178 1 -1 134217728 0 0 +( -1016 1520 21 ) ( -1016 1504 21 ) ( -1016 1504 29 ) metals/mt_pv_m26y 0 -2 -180 1 -1 134217728 0 0 +( -1080 1496 19 ) ( -1080 1504 19 ) ( -1080 1500 27 ) metals/mt_pv_m26y 0 -2 -180 1 -1 134217728 0 0 +} +// brush 298 +{ +( -1016 1484 4 ) ( -1016 1500 4 ) ( -1080 1500 6 ) metals/mt_pv_m26y 0 3 -180 1 1 134217728 8388608 0 +( -1016 1500 12 ) ( -1016 1484 12 ) ( -1080 1484 14 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 134217728 16779264 0 +( -1016 1500 14 ) ( -1144 1500 14 ) ( -1144 1500 6 ) metals/mt_sr_b1a 8 -52 177 1.000121 -1.000007 134217728 0 0 +( -1144 1484 14 ) ( -1016 1484 14 ) ( -1016 1484 6 ) metals/mt_sr_b1a 7 -97 178 1 -1 134217728 0 0 +( -1016 1484 12 ) ( -1016 1500 12 ) ( -1016 1500 4 ) metals/mt_pv_m26y 0 0 -180 1 -1 134217728 0 0 +( -1080 1476 6 ) ( -1080 1484 6 ) ( -1080 1480 14 ) metals/mt_pv_m26y 0 0 -180 1 -1 134217728 0 0 +} +// brush 299 +{ +( -1016 1544 52 ) ( -1016 1560 52 ) ( -1080 1560 54 ) metals/mt_pv_m26y 0 3 -180 1 1 0 8388608 0 +( -1016 1560 60 ) ( -1016 1544 60 ) ( -1080 1544 62 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 0 16779264 0 +( -1016 1560 62 ) ( -1144 1560 62 ) ( -1144 1560 54 ) metals/mt_sr_b1a -7 53 -180 1 -1 0 0 0 +( -1144 1544 62 ) ( -1016 1544 62 ) ( -1016 1544 54 ) metals/mt_sr_b1a 6 -113 178 1 -1 0 0 0 +( -1016 1544 60 ) ( -1016 1560 60 ) ( -1016 1560 52 ) metals/mt_pv_m26y -4 48 -180 1 -1 0 0 0 +( -1080 1536 54 ) ( -1080 1544 54 ) ( -1080 1540 62 ) metals/mt_pv_m26y -4 48 -180 1 -1 0 0 0 +} +// brush 300 +{ +( -1175 1952 0 ) ( -1179 1952 0 ) ( -1183 1924 0 ) metals/mt_pv_m7m -1 16 0 1 1 0 16777216 0 +( -1179 1966 128 ) ( -1175 1966 128 ) ( -1179 1940 128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1179 1940 128 ) ( -1179 1940 0 ) ( -1183 1940 0 ) metals/mt_pv_m7m -1 0 0 1 1 0 16777216 0 +( -1179 1940 0 ) ( -1179 1940 128 ) ( -1177 1950 128 ) metals/mt_pv_m7m -16 0 0 1 1 0 16777216 0 +( -1175 1950 128 ) ( -1179 1950 128 ) ( -1179 1952 0 ) metals/mt_pv_m7m -3 0 0 1 1 0 16777216 0 +( -1179 1968 0 ) ( -1179 1968 128 ) ( -1183 1940 128 ) metals/mt_pv_m7m -16 0 0 1 1 0 16777216 0 +} +// brush 301 +{ +( -1180 2208 0 ) ( -1188 2272 0 ) ( -1192 2272 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1192 2272 128 ) ( -1184 2208 128 ) ( -1188 2208 128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1188 2272 0 ) ( -1180 2208 0 ) ( -1184 2208 128 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1196 2272 128 ) ( -1188 2208 128 ) ( -1184 2208 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1176 2208 0 ) ( -1200 2208 0 ) ( -1188 2208 128 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1180 2240 0 ) ( -1180 2240 128 ) ( -1184 2240 128 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +} +// brush 302 +{ +( -1176 1792 0 ) ( -1184 1792 0 ) ( -1184 1788 0 ) metals/mt_pv_m26y 0 -4 0 1 1 0 0 0 +( -1184 1788 128 ) ( -1184 1792 128 ) ( -1176 1792 128 ) metals/mt_pv_m26y 0 -4 0 1 1 0 0 0 +( -1184 1788 128 ) ( -1176 1788 128 ) ( -1176 1788 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1180 1788 128 ) ( -1180 1792 128 ) ( -1180 1792 0 ) metals/mt_pv_m26y 4 0 0 1 1 0 0 0 +( -1176 1792 128 ) ( -1184 1792 128 ) ( -1184 1792 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1184 1792 128 ) ( -1184 1788 128 ) ( -1184 1788 0 ) metals/mt_pv_m26y 4 0 0 1 1 0 0 0 +} +// brush 303 +{ +( -1183 1944 0 ) ( -1183 1936 0 ) ( -1175 1936 0 ) metals/mt_pv_m26y -1 16 0 1 1 0 0 0 +( -1183 1936 128 ) ( -1183 1940 128 ) ( -1179 1940 128 ) metals/mt_pv_m26y -1 16 0 1 1 0 0 0 +( -1183 1936 128 ) ( -1175 1936 128 ) ( -1175 1936 0 ) metals/mt_pv_m26y -1 0 0 1 1 0 0 0 +( -1179 1936 128 ) ( -1179 1940 128 ) ( -1179 1940 0 ) metals/mt_pv_m26y -16 0 0 1 1 0 0 0 +( -1175 1940 128 ) ( -1183 1940 128 ) ( -1183 1940 0 ) metals/mt_pv_m26y -1 0 0 1 1 0 0 0 +( -1183 1940 128 ) ( -1183 1936 128 ) ( -1183 1936 0 ) metals/mt_pv_m26y -16 0 0 1 1 0 0 0 +} +// brush 304 +{ +( -1188 1912 128 ) ( -1188 2176 128 ) ( -1172 2176 128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1180 1664 0 ) ( -1180 1664 128 ) ( -1184 1728 128 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1184 1664 128 ) ( -1184 1664 0 ) ( -1188 1728 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1184 1664 0 ) ( -1184 1664 128 ) ( -1180 1664 128 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1196 1728 0 ) ( -1172 1728 0 ) ( -1184 1728 128 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1212 1600 0 ) ( -1156 1600 0 ) ( -1184 1728 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +} +// brush 305 +{ +( -1188 1760 124 ) ( -1184 1760 124 ) ( -1184 1728 128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1184 1636 0 ) ( -1184 1636 128 ) ( -1184 1760 128 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1188 1636 128 ) ( -1188 1636 0 ) ( -1188 1760 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1188 1728 0 ) ( -1188 1728 128 ) ( -1184 1728 128 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1184 1760 124 ) ( -1188 1760 124 ) ( -1188 1760 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1212 1632 0 ) ( -1156 1632 0 ) ( -1184 1760 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +} +// brush 306 +{ +( -1180 2048 0 ) ( -1176 2080 0 ) ( -1180 2080 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1184 2080 126 ) ( -1180 2080 126 ) ( -1184 2048 128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1184 2048 128 ) ( -1180 2080 128 ) ( -1176 2080 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1184 2080 128 ) ( -1188 2048 128 ) ( -1184 2048 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1180 2048 128 ) ( -1180 2048 0 ) ( -1184 2048 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1180 2080 126 ) ( -1184 2080 126 ) ( -1180 2080 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +} +// brush 307 +{ +( -1176 2080 0 ) ( -1184 2144 0 ) ( -1188 2144 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1180 2080 126 ) ( -1184 2080 126 ) ( -1192 2144 128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1184 2144 0 ) ( -1176 2080 0 ) ( -1180 2080 128 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1192 2144 128 ) ( -1184 2080 128 ) ( -1180 2080 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1184 2080 126 ) ( -1180 2080 126 ) ( -1176 2080 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1180 2144 0 ) ( -1180 2144 128 ) ( -1184 2144 128 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +} +// brush 308 +{ +( -1184 2176 0 ) ( -1180 2208 0 ) ( -1184 2208 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1188 2176 124 ) ( -1192 2176 124 ) ( -1188 2208 128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1188 2176 128 ) ( -1184 2208 128 ) ( -1180 2208 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1188 2208 128 ) ( -1192 2176 128 ) ( -1188 2176 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1192 2176 124 ) ( -1188 2176 124 ) ( -1184 2176 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1184 2208 128 ) ( -1184 2208 0 ) ( -1180 2208 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +} +// brush 309 +{ +( -1184 2144 0 ) ( -1184 2176 0 ) ( -1188 2176 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1192 2176 124 ) ( -1188 2176 124 ) ( -1188 2144 128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1188 2144 128 ) ( -1188 2176 128 ) ( -1184 2176 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1192 2176 128 ) ( -1192 2144 128 ) ( -1188 2144 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1180 2144 0 ) ( -1204 2144 0 ) ( -1192 2144 128 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1188 2176 124 ) ( -1192 2176 124 ) ( -1188 2176 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +} +// brush 310 +{ +( -1226 1772 319 ) ( -1232 1778 318 ) ( -1252 1778 317 ) common/li_sr_mst2 43 4 0 0.999390 0.999390 134217728 1 30000 +( -1234 1765 327 ) ( -1252 1765 326 ) ( -1257 1769 326 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1257 1772 326 ) ( -1257 1770 326 ) ( -1258 1768 318 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1252 1765 326 ) ( -1234 1765 327 ) ( -1232 1762 319 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1229 1769 327 ) ( -1229 1773 327 ) ( -1226 1772 319 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1234 1777 326 ) ( -1252 1777 325 ) ( -1252 1778 317 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1229 1773 327 ) ( -1233 1777 326 ) ( -1232 1778 318 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1233 1765 327 ) ( -1229 1769 327 ) ( -1226 1768 319 ) metals/m_hl_c10b -3 -1 0 0.506348 0.493548 134217728 0 0 +( -1257 1769 326 ) ( -1253 1765 326 ) ( -1252 1762 318 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1253 1777 325 ) ( -1258 1772 326 ) ( -1258 1772 318 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +} +// brush 311 +{ +( -1130 1754 8 ) ( -1130 1766 8 ) ( -1142 1766 8 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1143 1767 329 ) ( -1151 1767 329 ) ( -1151 1775 329 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1142 1754 8 ) ( -1142 1766 8 ) ( -1151 1775 329 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1132 1754 8 ) ( -1140 1754 8 ) ( -1151 1767 329 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1130 1766 8 ) ( -1130 1754 8 ) ( -1143 1767 329 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1140 1766 8 ) ( -1132 1766 8 ) ( -1143 1775 329 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +} +// brush 312 +{ +( -1336 1848 52 ) ( -1336 1832 52 ) ( -1272 1832 54 ) metals/mt_pv_m26y 0 -60 0 1 1 0 0 0 +( -1336 1832 60 ) ( -1336 1848 60 ) ( -1272 1848 62 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 0 16779264 0 +( -1336 1832 62 ) ( -1208 1832 62 ) ( -1208 1832 54 ) metals/mt_sr_b1a -7 53 0 1 1 0 0 0 +( -1208 1848 62 ) ( -1336 1848 62 ) ( -1336 1848 54 ) metals/mt_sr_b1a -10 32 2 1 1 0 0 0 +( -1336 1848 60 ) ( -1336 1832 60 ) ( -1336 1832 52 ) metals/mt_pv_m26y 60 48 0 1 1 0 0 0 +( -1272 1856 54 ) ( -1272 1848 54 ) ( -1272 1852 62 ) metals/mt_pv_m26y 60 48 0 1 1 0 0 0 +} +// brush 313 +{ +( -1272 1872 22 ) ( -1272 1888 22 ) ( -1276 1888 19 ) metals/mt_pv_v4b -8 0 0 0.500000 0.500000 134217728 16777216 0 +( -1272 1889 30 ) ( -1272 1873 30 ) ( -1276 1872 27 ) metals/mt_pv_v4b -8 0 0 0.500000 0.500000 134217728 16777216 0 +( -1324 1872 27 ) ( -1196 1872 27 ) ( -1196 1872 19 ) metals/mt_sr_b1a -11 18 0 1 1 134217728 0 0 +( -1196 1888 27 ) ( -1324 1888 27 ) ( -1324 1888 19 ) metals/mt_sr_b1a -11 46 10 1 1 134217728 0 0 +( -1276 1896 27 ) ( -1276 1872 27 ) ( -1276 1872 19 ) metals/mt_pv_v4b 0 -6 0 0.500000 0.500000 134217728 16777216 0 +( -1272 1888 22 ) ( -1272 1872 22 ) ( -1272 1872 30 ) metals/mt_pv_v4b 0 -6 0 0.500000 0.500000 134217728 16777216 0 +} +// brush 314 +{ +( -1276 1872 19 ) ( -1276 1888 19 ) ( -1280 1888 17 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 134217728 16777216 0 +( -1276 1888 27 ) ( -1276 1872 27 ) ( -1280 1872 25 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 134217728 16777216 0 +( -1328 1872 25 ) ( -1200 1872 25 ) ( -1200 1872 17 ) metals/mt_sr_b1a -7 16 0 1 1 134217728 0 0 +( -1200 1888 25 ) ( -1328 1888 25 ) ( -1328 1888 17 ) metals/mt_sr_b1a -11 46 10 1 1 134217728 0 0 +( -1280 1896 25 ) ( -1280 1872 25 ) ( -1280 1872 17 ) metals/mt_pv_v4b 0 -10 0 0.500000 0.500000 134217728 16777216 0 +( -1276 1888 19 ) ( -1276 1872 19 ) ( -1276 1872 27 ) metals/mt_pv_v4b 0 -10 0 0.500000 0.500000 134217728 16777216 0 +} +// brush 315 +{ +( -1844 2472 132 ) ( -1844 2468 132 ) ( -1848 2468 134 ) metals/mt_pv_m26y 0 33 0 1 1 134217728 8388608 0 +( -1844 2468 128 ) ( -1844 2472 128 ) ( -1848 2472 130 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1830 2468 74 ) ( -1942 2468 74 ) ( -1942 2468 138 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1848 2470 74 ) ( -1848 2478 74 ) ( -1848 2478 138 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1938 2472 74 ) ( -1826 2472 74 ) ( -1826 2472 138 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1844 2468 132 ) ( -1844 2472 132 ) ( -1844 2472 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 316 +{ +( -1840 2468 130 ) ( -1840 2472 130 ) ( -1836 2472 134 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1840 2472 126 ) ( -1840 2468 126 ) ( -1836 2468 130 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1854 2472 74 ) ( -1742 2472 74 ) ( -1742 2472 138 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1836 2470 74 ) ( -1836 2462 74 ) ( -1836 2462 138 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1746 2468 74 ) ( -1858 2468 74 ) ( -1858 2468 138 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1840 2472 130 ) ( -1840 2468 130 ) ( -1840 2468 126 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 317 +{ +( -1836 2468 134 ) ( -1836 2472 134 ) ( -1832 2472 136 ) metals/mt_pv_m26y 0 33 0 1 1 134217728 8388608 0 +( -1836 2472 130 ) ( -1836 2468 130 ) ( -1832 2468 132 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1850 2472 76 ) ( -1738 2472 76 ) ( -1738 2472 140 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1832 2470 76 ) ( -1832 2462 76 ) ( -1832 2462 140 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1742 2468 76 ) ( -1854 2468 76 ) ( -1854 2468 140 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1836 2472 134 ) ( -1836 2468 134 ) ( -1836 2468 130 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 318 +{ +( -1780 2964 2 ) ( -1780 2956 2 ) ( -1768 2956 -2 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1780 2956 10 ) ( -1780 2964 10 ) ( -1768 2964 6 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1816 2956 6 ) ( -1768 2956 6 ) ( -1768 2956 -2 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1768 2956 6 ) ( -1768 2964 6 ) ( -1768 2964 -2 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1768 2964 6 ) ( -1816 2964 6 ) ( -1816 2964 -2 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1776 2956 2 ) ( -1776 2964 2 ) ( -1776 2964 10 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 319 +{ +( -1768 2964 -2 ) ( -1768 2956 -2 ) ( -1756 2956 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1768 2956 6 ) ( -1768 2964 6 ) ( -1756 2964 4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1804 2956 4 ) ( -1756 2956 4 ) ( -1756 2956 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1756 2956 4 ) ( -1756 2964 4 ) ( -1756 2964 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1756 2964 4 ) ( -1804 2964 4 ) ( -1804 2964 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1768 2956 -2 ) ( -1768 2964 -2 ) ( -1768 2964 6 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 320 +{ +( -1806 2678 318 ) ( -1800 2684 317 ) ( -1800 2704 318 ) common/li_sr_mst2 23 6 -90 0.999512 0.998535 134217728 1 30000 +( -1814 2684 326 ) ( -1814 2702 327 ) ( -1810 2707 327 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1807 2707 327 ) ( -1809 2707 327 ) ( -1810 2710 319 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1814 2702 327 ) ( -1814 2684 326 ) ( -1816 2684 318 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1810 2679 326 ) ( -1806 2679 326 ) ( -1806 2678 318 ) metals/m_hl_c10b -3 -8 -2 0.500187 0.504021 134217728 0 0 +( -1802 2684 325 ) ( -1802 2702 326 ) ( -1800 2704 318 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1806 2679 326 ) ( -1802 2683 325 ) ( -1800 2684 317 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1814 2683 326 ) ( -1810 2679 326 ) ( -1810 2678 318 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1810 2707 327 ) ( -1814 2703 327 ) ( -1816 2704 319 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1802 2703 326 ) ( -1807 2708 327 ) ( -1806 2710 319 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +} +// brush 321 +{ +( -1818 2806 8 ) ( -1830 2806 8 ) ( -1830 2792 8 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( -1804 2785 330 ) ( -1812 2785 330 ) ( -1812 2793 330 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( -1830 2794 8 ) ( -1830 2804 8 ) ( -1812 2793 330 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( -1818 2792 8 ) ( -1830 2792 8 ) ( -1812 2783 330 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( -1818 2804 8 ) ( -1818 2794 8 ) ( -1804 2783 330 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +( -1830 2806 8 ) ( -1818 2806 8 ) ( -1804 2793 330 ) metals/m_hl_c10b 0 0 0 1 1 134217728 8388608 0 +} +// brush 322 +{ +( -1810 2708 323 ) ( -1806 2708 323 ) ( -1804 2784 322 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1806 2707 327 ) ( -1810 2707 327 ) ( -1812 2785 330 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1804 2783 330 ) ( -1812 2783 330 ) ( -1825 2792 74 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1810 2707 327 ) ( -1810 2708 319 ) ( -1812 2784 322 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1810 2707 327 ) ( -1806 2707 327 ) ( -1806 2709 323 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1806 2710 319 ) ( -1806 2709 327 ) ( -1804 2785 330 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +} +// brush 323 +{ +( 2176 512 -144 ) ( 2112 512 -144 ) ( 2112 192 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 2112 192 -128 ) ( 2112 512 -128 ) ( 2176 512 -128 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 2240 128 -144 ) ( 2240 128 -128 ) ( 2176 192 -128 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 2048 128 -128 ) ( 2048 128 -144 ) ( 2112 192 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 2048 128 -144 ) ( 2048 128 -128 ) ( 2240 128 -128 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 2112 192 -144 ) ( 2176 192 -144 ) ( 2144 192 -128 ) bricks/c_sr_m8d 56 24 90 1 1 0 67108864 0 +} +// brush 324 +{ +( 1088 1344 24 ) ( 1024 1344 24 ) ( 1024 960 24 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1024 960 32 ) ( 1024 1344 32 ) ( 1088 1344 32 ) bricks/c_sr_m8e 128 0 270 1 1 0 67108864 0 +( 1024 896 24 ) ( 1024 896 32 ) ( 1088 960 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1088 960 32 ) ( 1088 1344 32 ) ( 1088 1344 24 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1024 1408 32 ) ( 1024 1408 24 ) ( 1088 1344 24 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1024 1408 24 ) ( 1024 1408 32 ) ( 1024 896 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +} +// brush 325 +{ +( 995 384 321 ) ( 931 384 319 ) ( 931 256 319 ) bricks/c_sr_m8e -3 8 0 0.999390 1 0 0 0 +( 927 256 447 ) ( 927 384 447 ) ( 991 384 449 ) bricks/c_sr_m8e 0 8 0 0.999390 1 0 0 0 +( 927 255 447 ) ( 991 255 449 ) ( 995 255 321 ) props/sg_sr_mn10 18 30 2 1 1 0 0 0 +( 991 256 449 ) ( 991 384 449 ) ( 995 384 321 ) bricks/c_sr_m8e 56 1 0 1 0.999390 0 0 0 +( 991 256 449 ) ( 927 256 447 ) ( 931 256 319 ) bricks/c_sr_m8e -13 30 1 0.999998 0.999997 0 0 0 +( 927 384 447 ) ( 927 256 447 ) ( 931 256 319 ) bricks/c_sr_m8e 56 0 0 1 0.999390 0 0 0 +} +// brush 326 +{ +( 784 208 320 ) ( 768 208 320 ) ( 768 48 320 ) props/w_sr_m4a 160 64 0 1 1 0 1 250 +( 768 48 416 ) ( 768 208 416 ) ( 784 208 416 ) props/w_sr_m4a 160 64 0 1 1 0 1 250 +( 784 48 384 ) ( 784 208 384 ) ( 784 208 256 ) props/w_sr_m4a 160 64 0 1 1 0 1 100 +( 768 208 384 ) ( 768 48 384 ) ( 768 48 256 ) props/w_sr_m4a 160 64 0 1 1 0 1 250 +( 768 160 320 ) ( 784 160 320 ) ( 776 160 448 ) props/w_sr_m4a 160 64 0 1 1 0 1 250 +( 776 144 320 ) ( 760 144 320 ) ( 768 144 448 ) props/w_sr_m4a 160 64 0 1 1 0 1 250 +} +// brush 327 +{ +( 816 384 240 ) ( 768 384 240 ) ( 768 264 240 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 768 264 256 ) ( 768 384 256 ) ( 816 384 256 ) bricks/c_sr_m8e 0 -10 90 1 0.650000 0 0 0 +( 1128 576 256 ) ( 1128 576 240 ) ( 1128 -192 240 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1152 192 240 ) ( 1152 192 256 ) ( 1088 192 256 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1088 -192 256 ) ( 1088 -192 240 ) ( 1088 192 240 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1088 -192 240 ) ( 1088 -192 256 ) ( 1152 -192 256 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +} +// brush 328 +{ +( 784 224 320 ) ( 768 224 320 ) ( 768 64 320 ) props/w_sr_m4a 64 64 0 1 1 0 0 0 +( 768 64 416 ) ( 768 224 416 ) ( 784 224 416 ) props/w_sr_m4a 64 64 0 1 1 0 0 0 +( 784 64 384 ) ( 784 224 384 ) ( 784 224 256 ) props/w_sr_m4a 160 64 0 1 1 0 1 150 +( 768 224 384 ) ( 768 64 384 ) ( 768 64 256 ) props/w_sr_m4a 64 64 0 1 1 0 0 0 +( 768 192 320 ) ( 784 192 320 ) ( 776 192 448 ) props/w_sr_m4a 64 64 0 1 1 0 0 0 +( 784 160 320 ) ( 768 160 320 ) ( 776 160 448 ) props/w_sr_m4a 64 64 0 1 1 0 0 0 +} +// brush 329 +{ +( 784 192 416 ) ( 768 192 416 ) ( 768 32 416 ) props/w_sr_m4a 64 64 0 1 1 0 0 0 +( 768 32 448 ) ( 768 192 448 ) ( 784 192 448 ) props/w_sr_m4a 64 64 0 1 1 0 0 0 +( 784 32 416 ) ( 784 192 416 ) ( 784 192 288 ) props/w_sr_m4a 160 64 0 1 1 0 1 100 +( 768 192 416 ) ( 768 32 416 ) ( 768 32 288 ) props/w_sr_m4a 64 64 0 1 1 0 0 0 +( 768 192 352 ) ( 784 192 352 ) ( 776 192 480 ) props/w_sr_m4a 64 64 0 1 1 0 0 0 +( 776 64 352 ) ( 760 64 352 ) ( 768 64 480 ) props/w_sr_m4a 64 64 0 1 1 0 0 0 +} +// brush 330 +{ +( 1320 -380 230 ) ( 1304 -380 230 ) ( 1304 -460 230 ) metals/m_pv_v4a 32 -20 0 1 1 0 0 0 +( 1304 -460 234 ) ( 1304 -380 234 ) ( 1320 -380 234 ) metals/m_pv_v4a 48 -8 0 1 1 0 8388608 0 +( 1304 -444 236 ) ( 1320 -444 236 ) ( 1320 -444 220 ) metals/m_pv_v4a 32 0 0 1 1 0 0 0 +( 1328 -464 236 ) ( 1328 -384 236 ) ( 1328 -384 220 ) metals/m_pv_v3 -38 -22 0 1 1 0 0 0 +( 1320 -358 236 ) ( 1304 -358 236 ) ( 1304 -358 220 ) metals/m_pv_v4a 32 0 0 1 1 0 0 0 +( 1304 -384 236 ) ( 1304 -464 236 ) ( 1304 -464 220 ) metals/m_pv_v3 -38 -22 0 1 1 0 0 0 +} +// brush 331 +{ +( 1152 -576 256 ) ( 1064 -576 256 ) ( 1064 -584 256 ) bricks/b_sr_20 72 0 0 1 1 0 0 0 +( 1064 -584 384 ) ( 1064 -576 384 ) ( 1152 -576 384 ) bricks/b_sr_20 72 0 0 1 1 0 0 0 +( 1016 -584 384 ) ( 1104 -584 384 ) ( 1104 -584 256 ) bricks/b_sr_20 72 0 0 1 1 0 0 0 +( 1152 -584 384 ) ( 1152 -576 384 ) ( 1152 -576 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1152 -576 384 ) ( 1064 -576 384 ) ( 1064 -576 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 768 -560 384 ) ( 768 -568 384 ) ( 768 -568 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 332 +{ +( 1152 -576 384 ) ( 1064 -576 384 ) ( 1064 -584 384 ) bricks/b_sr_20b 72 0 0 1 1 0 0 0 +( 1064 -584 512 ) ( 1064 -576 512 ) ( 1152 -576 512 ) bricks/b_sr_20b 72 0 0 1 1 0 0 0 +( 1008 -584 512 ) ( 1096 -584 512 ) ( 1096 -584 384 ) bricks/b_sr_20b 72 0 0 1 1 0 0 0 +( 1152 -584 512 ) ( 1152 -576 512 ) ( 1152 -576 384 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1152 -576 512 ) ( 1064 -576 512 ) ( 1064 -576 384 ) bricks/b_sr_20b 72 0 0 1 1 0 0 0 +( 768 -536 512 ) ( 768 -544 512 ) ( 768 -544 384 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 333 +{ +( 1480 -576 384 ) ( 1392 -576 384 ) ( 1392 -584 384 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1392 -584 512 ) ( 1392 -576 512 ) ( 1480 -576 512 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1392 -584 512 ) ( 1480 -584 512 ) ( 1480 -584 384 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1480 -584 512 ) ( 1480 -576 512 ) ( 1480 -576 384 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1480 -576 512 ) ( 1392 -576 512 ) ( 1392 -576 384 ) bricks/b_sr_20b 0 -24 0 1 1 0 0 0 +( 1152 -536 512 ) ( 1152 -544 512 ) ( 1152 -544 384 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 334 +{ +( 1847 1373 68 ) ( 1847 1385 131 ) ( 1911 1385 131 ) props/bo_pv_c2 79 -34 270 -0.740000 0.750000 134217728 134217728 0 +( 1847 1392 32 ) ( 1911 1392 32 ) ( 1911 1455 21 ) props/bo_pv_c3 34 -27 0 0.750000 -0.738647 134217728 0 0 +( 1799 1408 127 ) ( 1799 1397 64 ) ( 1799 1460 53 ) props/bo_pv_c1 -20 -27 -100 0.750000 -0.750000 134217728 0 0 +( 1847 1471 116 ) ( 1911 1471 116 ) ( 1879 1408 127 ) props/bo_pv_c3 34 -15 0 0.750000 -0.740000 134217728 0 0 +( 1847 1460 53 ) ( 1847 1456 29 ) ( 1847 1332 63 ) props/bo_pv_c1 -11 -18 79 0.750043 0.750043 134217728 0 0 +( 1831 1386 1 ) ( 1847 1386 1 ) ( 1839 1397 64 ) props/bo_pv_c2 82 33 90 0.738647 0.750000 134217728 0 0 +} +// brush 335 +{ +( 896 -64 0 ) ( 832 -64 0 ) ( 832 -128 0 ) bricks/c_sr_m8e 0 -16 0 1 0.750000 0 67108864 0 +( 832 -128 32 ) ( 832 -64 32 ) ( 896 -64 32 ) bricks/c_sr_m8e 0 -20 0 1 0.760000 0 67108864 0 +( 832 -112 32 ) ( 896 -112 32 ) ( 896 -112 0 ) bricks/c_sr_m8e 0 -16 0 1 0.750000 0 67108864 0 +( 960 -128 32 ) ( 960 -64 32 ) ( 960 -64 0 ) bricks/c_sr_m8e 0 -16 0 1 0.750000 0 67108864 0 +( 896 -64 32 ) ( 832 -64 32 ) ( 832 -64 0 ) bricks/c_sr_m8e 0 -16 0 1 0.750000 0 67108864 0 +( 768 -64 32 ) ( 768 -128 32 ) ( 768 -128 0 ) bricks/c_sr_m8e 0 -16 0 1 0.750000 0 67108864 0 +} +// brush 336 +{ +( 960 -96 80 ) ( 768 -96 80 ) ( 768 -112 80 ) bricks/b_mf_v2 0 -56 0 1 1 0 0 0 +( 768 -112 224 ) ( 768 -96 224 ) ( 960 -96 224 ) bricks/b_mf_v2 0 -56 0 1 1 0 0 0 +( 768 -144 224 ) ( 960 -144 224 ) ( 960 -144 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 960 -136 224 ) ( 960 -120 224 ) ( 960 -120 128 ) bricks/b_mf_v2 -112 -48 0 1 1 0 0 0 +( 960 -112 224 ) ( 768 -112 224 ) ( 768 -112 128 ) bricks/b_mf_v2 8 -48 0 1 1 0 0 0 +( 768 -96 224 ) ( 768 -112 224 ) ( 768 -112 128 ) bricks/b_mf_v2 8 -48 0 1 1 0 0 0 +} +// brush 337 +{ +( 804 1184 64 ) ( 780 1184 64 ) ( 780 1176 64 ) metals/mt_pv_m26y 24 0 0 1 1 134217728 0 0 +( 800 1176 76 ) ( 784 1176 76 ) ( 784 1184 68 ) props2/speaker1 32 -20 0 0.250000 -0.130000 134217728 8388608 0 +( 784 1176 76 ) ( 800 1176 76 ) ( 800 1176 64 ) metals/mt_pv_m26y 24 0 0 1 1 134217728 0 0 +( 792 1176 68 ) ( 792 1184 68 ) ( 792 1184 36 ) metals/mt_pv_m26 31 1 0 0.250000 0.250000 134217728 0 0 +( 804 1184 68 ) ( 780 1184 68 ) ( 780 1184 36 ) metals/mt_pv_m26 33 1 0 0.250000 0.250000 134217728 0 0 +( 784 1184 68 ) ( 784 1176 68 ) ( 784 1176 36 ) metals/mt_pv_m26 32 0 0 0.250000 0.250000 134217728 0 0 +} +// brush 338 +{ +( 902 1328 100 ) ( 894 1328 100 ) ( 894 1264 100 ) props/pawn_sb 42 -4 0 -0.750000 0.750000 134217728 4096 0 +( 894 1264 140 ) ( 894 1328 140 ) ( 902 1328 140 ) props/pawn_sb 42 -4 0 -0.750000 0.750000 134217728 4096 0 +( 894 1264 176 ) ( 902 1264 176 ) ( 902 1264 48 ) props/pawn_sb 39 -2 0 -0.750000 0.750000 134217728 4096 0 +( 895 1297 176 ) ( 895 1361 176 ) ( 895 1361 48 ) props/pawn_sb 22 -4 0 -0.750000 0.750000 134217728 4096 0 +( 902 1360 176 ) ( 894 1360 176 ) ( 894 1360 48 ) props/pawn_sb 42 -4 0 -0.750000 0.750000 134217728 4096 0 +( 894 1327 176 ) ( 894 1263 176 ) ( 894 1263 48 ) props/pawn_sb 22 -4 0 -0.750000 0.750000 134217728 4096 0 +} +// brush 339 +{ +( 659 1221 62 ) ( 659 1220 62 ) ( 659 1220 63 ) common/li_mf_v16 7 -22 0 0.100037 0.100002 134217728 1 1000 +( 658 1220 63 ) ( 658 1220 62 ) ( 658 1221 62 ) common/li_mf_v16 4 0 0 0.099976 0.100002 134217728 0 0 +( 657 1220 63 ) ( 657 1221 63 ) ( 659 1221 63 ) common/li_mf_v16 4 -3 90 0.099976 0.099976 134217728 1 1000 +( 657 1221 63 ) ( 657 1221 62 ) ( 659 1221 62 ) common/li_mf_v16 30 2 90 0.099998 -0.099976 134217728 1 1000 +( 657 1221 62 ) ( 657 1220 62 ) ( 659 1220 62 ) common/li_mf_v16 4 -3 90 0.099976 0.099976 134217728 0 0 +( 657 1220 62 ) ( 657 1220 63 ) ( 659 1220 63 ) common/li_mf_v16 -11 0 -180 0.099976 -0.100002 134217728 1 1000 +} +// brush 340 +{ +( 655 1220 62 ) ( 655 1220 63 ) ( 655 1221 63 ) metals/m_hl_c10b -7 -16 0 0.349976 -0.500000 134217728 0 0 +( 652 1221 63 ) ( 652 1221 62 ) ( 652 1222 62 ) metals/m_hl_c10b -7 -16 0 0.349976 -0.500000 134217728 0 0 +( 653 1220 63 ) ( 653 1221 63 ) ( 655 1221 63 ) metals/m_hl_c10b 2 5 90 0.150024 0.150024 134217728 0 0 +( 652 1222 63 ) ( 652 1222 62 ) ( 655 1221 62 ) metals/m_hl_c10b 0 -2 -90 0.349976 -0.500000 134217728 0 0 +( 653 1221 62 ) ( 653 1220 62 ) ( 655 1220 62 ) metals/m_hl_c10b -7 -1 90 0.349976 0.500000 134217728 0 0 +( 652 1221 62 ) ( 652 1221 63 ) ( 655 1220 63 ) metals/m_hl_c10b 0 -2 -90 0.349976 -0.500000 134217728 0 0 +} +// brush 341 +{ +( 658 1221 62 ) ( 658 1220 62 ) ( 658 1220 63 ) wood/wd_sr_v8 29 93 -90 0.250000 0.250000 134217728 0 0 +( 655 1220 63 ) ( 655 1220 62 ) ( 655 1221 62 ) wood/wd_sr_v8 29 93 -90 0.250000 0.250000 134217728 0 0 +( 656 1220 63 ) ( 656 1221 63 ) ( 658 1221 63 ) wood/wd_sr_v8 88 44 270 0.250000 0.250000 134217728 0 0 +( 656 1221 63 ) ( 656 1221 62 ) ( 658 1221 62 ) wood/wd_sr_v8 76 44 270 0.250000 0.250000 134217728 0 0 +( 656 1221 62 ) ( 656 1220 62 ) ( 658 1220 62 ) wood/wd_sr_v8 13 93 0 0.250000 0.250000 134217728 0 0 +( 656 1220 62 ) ( 656 1220 63 ) ( 658 1220 63 ) wood/wd_sr_v8 29 -39 -90 0.250000 -0.250000 134217728 0 0 +} +// brush 342 +{ +( 655 1227 62 ) ( 655 1228 62 ) ( 654 1228 62 ) wood/wd_sr_v8 105 112 -90 0.250000 0.250000 134217728 0 0 +( 654 1228 65 ) ( 655 1228 65 ) ( 655 1227 65 ) wood/wd_sr_v8 105 112 -90 0.250000 0.250000 134217728 0 0 +( 654 1228 64 ) ( 654 1227 64 ) ( 654 1227 62 ) wood/wd_sr_v8 -40 118 0 0.250000 -0.250000 134217728 0 0 +( 654 1227 64 ) ( 655 1227 64 ) ( 655 1227 62 ) wood/wd_sr_v8 29 113 -90 0.250000 0.250000 134217728 0 0 +( 655 1227 64 ) ( 655 1228 64 ) ( 655 1228 62 ) wood/wd_sr_v8 29 53 -90 0.250000 0.250000 134217728 0 0 +( 655 1228 64 ) ( 654 1228 64 ) ( 654 1228 62 ) wood/wd_sr_v8 68 118 -180 0.250000 0.250000 134217728 0 0 +} +// brush 343 +{ +( 655 1228 65 ) ( 654 1228 65 ) ( 654 1227 65 ) metals/m_hl_c10b -31 49 0 0.150024 0.150024 134217728 0 0 +( 654 1227 68 ) ( 655 1227 68 ) ( 655 1226 68 ) metals/m_hl_c10b -31 49 0 0.150024 0.150024 134217728 0 0 +( 654 1228 67 ) ( 654 1227 67 ) ( 654 1227 65 ) metals/m_hl_c10b -16 -12 0 0.150024 0.150002 134217728 0 0 +( 654 1226 68 ) ( 655 1226 68 ) ( 655 1227 65 ) metals/m_hl_c10b -31 -12 0 0.150024 0.150002 134217728 0 0 +( 655 1227 67 ) ( 655 1228 67 ) ( 655 1228 65 ) metals/m_hl_c10b -16 -12 0 0.150024 0.150002 134217728 0 0 +( 655 1227 68 ) ( 654 1227 68 ) ( 654 1228 65 ) metals/m_hl_c10b -31 -12 0 0.150024 0.150002 134217728 0 0 +} +// brush 344 +{ +( 662 1224 65 ) ( 662 1225 65 ) ( 661 1225 65 ) metals/m_hl_c10b 36 -4 -180 0.150024 0.150024 134217728 0 0 +( 661 1225 68 ) ( 661 1224 68 ) ( 660 1224 68 ) metals/m_hl_c10b 36 -4 -180 0.150024 0.150024 134217728 0 0 +( 662 1225 67 ) ( 661 1225 67 ) ( 661 1225 65 ) metals/m_hl_c10b 36 -12 -180 0.150024 -0.150002 134217728 0 0 +( 660 1225 68 ) ( 660 1224 68 ) ( 661 1224 65 ) metals/m_hl_c10b 37 -12 -180 0.150024 -0.150002 134217728 0 0 +( 661 1224 67 ) ( 662 1224 67 ) ( 662 1224 65 ) metals/m_hl_c10b 36 -12 -180 0.150024 -0.150002 134217728 0 0 +( 661 1224 68 ) ( 661 1225 68 ) ( 662 1225 65 ) metals/m_hl_c10b 37 -12 -180 0.150024 -0.150002 134217728 0 0 +} +// brush 345 +{ +( 661 1224 62 ) ( 662 1224 62 ) ( 662 1225 62 ) wood/wd_sr_v8 -83 -31 90 0.250000 0.250000 134217728 0 0 +( 662 1225 65 ) ( 662 1224 65 ) ( 661 1224 65 ) wood/wd_sr_v8 -83 -31 90 0.250000 0.250000 134217728 0 0 +( 662 1225 64 ) ( 661 1225 64 ) ( 661 1225 62 ) wood/wd_sr_v8 29 -31 -90 0.250000 -0.250000 134217728 0 0 +( 661 1225 64 ) ( 661 1224 64 ) ( 661 1224 62 ) wood/wd_sr_v8 29 -7 -90 0.250000 -0.250000 134217728 0 0 +( 661 1224 64 ) ( 662 1224 64 ) ( 662 1224 62 ) wood/wd_sr_v8 29 -31 -90 0.250000 -0.250000 134217728 0 0 +( 662 1224 64 ) ( 662 1225 64 ) ( 662 1225 62 ) wood/wd_sr_v8 29 -7 -90 0.250000 -0.250000 134217728 0 0 +} +// brush 346 +{ +( 648 1216 60 ) ( 664 1216 60 ) ( 664 1232 60 ) bricks/s_sr_m6 0 32 0 0.500000 0.500000 134217728 0 0 +( 661 1219 41 ) ( 661 1219 84 ) ( 667 1224 84 ) bricks/s_sr_m6 0 24 0 0.500000 0.500000 134217728 0 0 +( 656 1217 41 ) ( 656 1217 84 ) ( 663 1217 84 ) bricks/s_sr_m6 0 24 0 0.500000 0.500000 134217728 0 0 +( 651 1219 41 ) ( 651 1219 84 ) ( 656 1213 84 ) bricks/s_sr_m6 0 24 0 0.500000 0.500000 134217728 0 0 +( 649 1224 41 ) ( 649 1224 84 ) ( 649 1217 84 ) bricks/s_sr_m6 0 24 0 0.500000 0.500000 134217728 0 0 +( 651 1229 41 ) ( 651 1229 84 ) ( 645 1224 84 ) bricks/s_sr_m6 0 24 0 0.500000 0.500000 134217728 0 0 +( 656 1231 41 ) ( 656 1231 84 ) ( 649 1231 84 ) bricks/s_sr_m6 0 24 0 0.500000 0.500000 134217728 0 0 +( 661 1229 41 ) ( 661 1229 84 ) ( 656 1235 84 ) bricks/s_sr_m6 0 24 0 0.500000 0.500000 134217728 0 0 +( 663 1224 41 ) ( 663 1224 84 ) ( 663 1231 84 ) bricks/s_sr_m6 0 24 0 0.500000 0.500000 134217728 0 0 +( 663 1217 62 ) ( 649 1217 62 ) ( 663 1231 62 ) bricks/s_sr_m6 120 96 0 0.500000 0.500000 134217728 0 0 +} +// brush 347 +{ +( 664 1224 36 ) ( 664 1224 84 ) ( 664 1232 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +( 648 1216 60 ) ( 664 1216 60 ) ( 664 1232 60 ) metals/mt_sr_v20 0 0 270 0.250000 0.250000 134217728 16384 0 +( 664 1232 68 ) ( 664 1216 68 ) ( 648 1216 68 ) metals/mt_sr_v20 0 0 270 0.250000 0.250000 134217728 0 0 +( 661 1219 41 ) ( 661 1219 84 ) ( 667 1224 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 16384 0 +( 661 1229 41 ) ( 661 1229 84 ) ( 656 1235 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 16384 0 +( 663 1224 84 ) ( 663 1224 41 ) ( 663 1231 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +} +// brush 348 +{ +( 662 1230 36 ) ( 662 1230 84 ) ( 656 1236 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +( 664 1224 36 ) ( 664 1224 84 ) ( 664 1232 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +( 648 1216 60 ) ( 664 1216 60 ) ( 664 1232 60 ) metals/mt_sr_v20 0 0 270 0.250000 0.250000 134217728 16384 0 +( 664 1232 68 ) ( 664 1216 68 ) ( 648 1216 68 ) metals/mt_sr_v20 9 0 270 0.250000 0.250000 134217728 0 0 +( 656 1231 41 ) ( 656 1231 84 ) ( 649 1231 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 16384 0 +( 661 1229 84 ) ( 661 1229 41 ) ( 656 1235 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +} +// brush 349 +{ +( 656 1232 36 ) ( 656 1232 84 ) ( 648 1232 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +( 662 1230 36 ) ( 662 1230 84 ) ( 656 1236 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +( 648 1216 60 ) ( 664 1216 60 ) ( 664 1232 60 ) metals/mt_sr_v20 0 0 270 0.250000 0.250000 134217728 16384 0 +( 664 1232 68 ) ( 664 1216 68 ) ( 648 1216 68 ) metals/mt_sr_v20 9 0 270 0.250000 0.250000 134217728 0 0 +( 651 1229 41 ) ( 651 1229 84 ) ( 645 1224 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 16384 0 +( 656 1231 84 ) ( 656 1231 41 ) ( 649 1231 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +} +// brush 350 +{ +( 650 1230 36 ) ( 650 1230 84 ) ( 644 1224 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +( 656 1232 36 ) ( 656 1232 84 ) ( 648 1232 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +( 648 1216 60 ) ( 664 1216 60 ) ( 664 1232 60 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +( 664 1232 68 ) ( 664 1216 68 ) ( 648 1216 68 ) metals/mt_sr_v20 9 0 270 0.250000 0.250000 134217728 0 0 +( 649 1224 41 ) ( 649 1224 84 ) ( 649 1217 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +( 651 1229 84 ) ( 651 1229 41 ) ( 645 1224 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +} +// brush 351 +{ +( 648 1224 36 ) ( 648 1224 84 ) ( 648 1216 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +( 650 1230 36 ) ( 650 1230 84 ) ( 644 1224 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +( 648 1216 60 ) ( 664 1216 60 ) ( 664 1232 60 ) metals/mt_sr_v20 0 0 270 0.250000 0.250000 134217728 16384 0 +( 664 1232 68 ) ( 664 1216 68 ) ( 648 1216 68 ) metals/mt_sr_v20 9 0 270 0.250000 0.250000 134217728 0 0 +( 651 1219 41 ) ( 651 1219 84 ) ( 656 1213 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 16384 0 +( 649 1224 84 ) ( 649 1224 41 ) ( 649 1217 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +} +// brush 352 +{ +( 650 1218 36 ) ( 650 1218 84 ) ( 656 1212 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +( 648 1224 36 ) ( 648 1224 84 ) ( 648 1216 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +( 648 1216 60 ) ( 664 1216 60 ) ( 664 1232 60 ) metals/mt_sr_v20 0 0 270 0.250000 0.250000 134217728 16384 0 +( 664 1232 68 ) ( 664 1216 68 ) ( 648 1216 68 ) metals/mt_sr_v20 -11 0 270 0.250000 0.250000 134217728 0 0 +( 656 1217 41 ) ( 656 1217 84 ) ( 663 1217 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 16384 0 +( 651 1219 84 ) ( 651 1219 41 ) ( 656 1213 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +} +// brush 353 +{ +( 656 1216 36 ) ( 656 1216 84 ) ( 664 1216 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +( 650 1218 36 ) ( 650 1218 84 ) ( 656 1212 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +( 648 1216 60 ) ( 664 1216 60 ) ( 664 1232 60 ) metals/mt_sr_v20 0 0 270 0.250000 0.250000 134217728 16384 0 +( 664 1232 68 ) ( 664 1216 68 ) ( 648 1216 68 ) metals/mt_sr_v20 -11 0 270 0.250000 0.250000 134217728 0 0 +( 661 1219 41 ) ( 661 1219 84 ) ( 667 1224 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 16384 0 +( 656 1217 84 ) ( 656 1217 41 ) ( 663 1217 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +} +// brush 354 +{ +( 662 1218 36 ) ( 662 1218 84 ) ( 668 1224 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +( 656 1216 36 ) ( 656 1216 84 ) ( 664 1216 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +( 664 1224 36 ) ( 664 1224 84 ) ( 664 1232 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +( 648 1216 60 ) ( 664 1216 60 ) ( 664 1232 60 ) metals/mt_sr_v20 0 0 270 0.250000 0.250000 134217728 16384 0 +( 664 1232 68 ) ( 664 1216 68 ) ( 648 1216 68 ) metals/mt_sr_v20 -11 0 270 0.250000 0.250000 134217728 0 0 +( 661 1219 84 ) ( 661 1219 41 ) ( 667 1224 84 ) metals/mt_sr_v20 -16 0 270 0.250000 0.250000 134217728 0 0 +} +// brush 355 +{ +( 662 1218 32 ) ( 662 1218 80 ) ( 668 1224 80 ) props/barrel_v4 0 7 0 0.500000 0.450000 134217728 8388608 0 +( 656 1216 32 ) ( 656 1216 80 ) ( 664 1216 80 ) props/barrel_v4 0 7 0 0.500000 0.450000 134217728 8388608 0 +( 650 1218 32 ) ( 650 1218 80 ) ( 656 1212 80 ) props/barrel_v4 0 7 0 0.500000 0.450000 134217728 8388608 0 +( 648 1224 32 ) ( 648 1224 80 ) ( 648 1216 80 ) props/barrel_v4 0 7 0 0.500000 0.450000 134217728 8388608 0 +( 650 1230 32 ) ( 650 1230 80 ) ( 644 1224 80 ) props/barrel_v4 0 7 0 0.500000 0.450000 134217728 8388608 0 +( 656 1232 32 ) ( 656 1232 80 ) ( 648 1232 80 ) props/barrel_v4 0 7 0 0.500000 0.450000 134217728 8388608 0 +( 662 1230 32 ) ( 662 1230 80 ) ( 656 1236 80 ) props/barrel_v4 0 7 0 0.500000 0.450000 134217728 8388608 0 +( 664 1224 32 ) ( 664 1224 80 ) ( 664 1232 80 ) props/barrel_v4 0 7 0 0.500000 0.450000 134217728 8388608 0 +( 648 1216 32 ) ( 664 1216 32 ) ( 664 1232 32 ) props/barrel_v4 0 7 0 0.500000 0.450000 134217728 8388608 0 +( 664 1232 60 ) ( 664 1216 60 ) ( 648 1216 60 ) props/barrel_v4 0 7 0 0.500000 0.450000 134217728 8388608 0 +} +// brush 356 +{ +( 780 1192 160 ) ( 788 1192 160 ) ( 788 1184 160 ) bricks/b_sr_20b -40 32 0 1 1 0 0 0 +( 736 1184 192 ) ( 864 1184 192 ) ( 864 1184 64 ) bricks/b_sr_20b -40 32 0 1 1 0 0 0 +( 788 1368 160 ) ( 788 1376 160 ) ( 788 1376 32 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 788 1192 160 ) ( 780 1192 160 ) ( 780 1188 136 ) bricks/b_sr_20b -40 32 0 1 1 0 0 0 +( 908 1200 136 ) ( 876 1200 136 ) ( 872 1184 136 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 780 1320 64 ) ( 780 1328 64 ) ( 780 1324 224 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +} +// brush 357 +{ +( 908 1204 160 ) ( 940 1204 160 ) ( 940 1184 160 ) bricks/b_sr_20b -76 32 0 1 1 0 0 0 +( 772 1196 192 ) ( 900 1196 192 ) ( 900 1196 64 ) bricks/b_sr_20b -76 32 0 1 1 0 0 0 +( 788 1368 160 ) ( 788 1376 160 ) ( 788 1376 32 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 940 1204 160 ) ( 908 1204 160 ) ( 908 1200 96 ) bricks/b_sr_20b -76 32 0 1 1 0 0 0 +( 944 1200 136 ) ( 912 1200 136 ) ( 908 1184 136 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 780 1320 64 ) ( 780 1328 64 ) ( 780 1324 224 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +} +// brush 358 +{ +( 916 1204 160 ) ( 948 1204 160 ) ( 948 1184 160 ) bricks/b_sr_20b -84 32 0 1 1 0 0 0 +( 780 1184 192 ) ( 908 1184 192 ) ( 908 1184 64 ) bricks/b_sr_20b -84 32 0 1 1 0 0 0 +( 864 1364 160 ) ( 864 1372 160 ) ( 864 1372 32 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 948 1204 160 ) ( 916 1204 160 ) ( 916 1200 96 ) bricks/b_sr_20b -84 32 0 1 1 0 0 0 +( 952 1200 136 ) ( 920 1200 136 ) ( 916 1184 136 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 788 1320 64 ) ( 788 1328 64 ) ( 788 1324 224 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +} +// brush 359 +{ +( 736 1316 168 ) ( 736 1324 168 ) ( 864 1324 168 ) common/li_sr_m19 8 -8 0 0.500000 0.500000 0 1 20000 +( 736 1188 232 ) ( 864 1188 232 ) ( 864 1188 104 ) common/li_sr_m19 8 0 0 0.500000 0.500000 0 1 20000 +( 788 1360 232 ) ( 788 1368 232 ) ( 788 1368 104 ) common/li_sr_m19 0 0 0 0.500000 0.500000 0 1 20000 +( 856 1196 232 ) ( 728 1196 232 ) ( 728 1196 104 ) bricks/b_pv_v1c 38 40 0 1 1 0 0 0 +( 720 1316 138 ) ( 760 1316 138 ) ( 740 1324 138 ) common/li_sr_m19 8 -8 0 0.500000 0.500000 0 1 60000 +( 780 1340 136 ) ( 780 1348 136 ) ( 780 1344 296 ) common/li_sr_m19 0 0 0 0.500000 0.500000 0 1 20000 +} +// brush 360 +{ +( 832 1204 160 ) ( 864 1204 160 ) ( 864 1184 160 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 696 1184 192 ) ( 824 1184 192 ) ( 824 1184 64 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 780 1364 160 ) ( 780 1372 160 ) ( 780 1372 32 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 864 1204 160 ) ( 832 1204 160 ) ( 832 1200 96 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 868 1200 136 ) ( 836 1200 136 ) ( 832 1184 136 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 672 1320 64 ) ( 672 1328 64 ) ( 672 1324 224 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +} +// brush 361 +{ +( 736 1560 160 ) ( 736 1568 160 ) ( 864 1568 160 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 728 1424 192 ) ( 856 1424 192 ) ( 856 1424 64 ) bricks/b_sr_20b 2 32 0 1 1 0 0 0 +( 896 1600 160 ) ( 896 1608 160 ) ( 896 1608 32 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 856 1440 192 ) ( 728 1440 192 ) ( 728 1440 64 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 720 1560 96 ) ( 760 1560 96 ) ( 740 1568 96 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 864 1560 64 ) ( 864 1568 64 ) ( 864 1564 224 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +} +// brush 362 +{ +( 512 1560 160 ) ( 512 1568 160 ) ( 640 1568 160 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 504 1424 192 ) ( 632 1424 192 ) ( 632 1424 64 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 672 1600 96 ) ( 672 1608 96 ) ( 672 1608 -32 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 632 1440 192 ) ( 504 1440 192 ) ( 504 1440 64 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 496 1560 96 ) ( 536 1560 96 ) ( 516 1568 96 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 640 1560 64 ) ( 640 1568 64 ) ( 640 1564 224 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +} +// brush 363 +{ +( 704 1464 184 ) ( 704 1472 184 ) ( 832 1472 184 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 704 1440 192 ) ( 832 1440 192 ) ( 832 1440 64 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 832 1472 192 ) ( 704 1472 192 ) ( 704 1472 64 ) bricks/b_sr_20b 0 56 0 1 1 0 0 0 +( 640 1480 192 ) ( 640 1472 192 ) ( 640 1472 64 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 688 1464 96 ) ( 728 1464 96 ) ( 708 1472 96 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 736 1464 96 ) ( 736 1456 96 ) ( 736 1460 256 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +} +// brush 364 +{ +( 704 1464 184 ) ( 704 1472 184 ) ( 832 1472 184 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 704 1440 192 ) ( 832 1440 192 ) ( 832 1440 64 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 896 1472 192 ) ( 896 1480 192 ) ( 896 1480 64 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 832 1472 192 ) ( 704 1472 192 ) ( 704 1472 64 ) bricks/b_sr_20b 0 56 0 1 1 0 0 0 +( 688 1464 96 ) ( 728 1464 96 ) ( 708 1472 96 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 800 1456 120 ) ( 800 1464 120 ) ( 800 1460 280 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +} +// brush 365 +{ +( 480 1464 160 ) ( 480 1472 160 ) ( 608 1472 160 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 504 1168 192 ) ( 632 1168 192 ) ( 632 1168 64 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 640 1472 160 ) ( 640 1480 160 ) ( 640 1480 32 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 608 1472 192 ) ( 480 1472 192 ) ( 480 1472 64 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 464 1464 96 ) ( 504 1464 96 ) ( 484 1472 96 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 576 1456 96 ) ( 576 1464 96 ) ( 576 1460 256 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +} +// brush 366 +{ +( 800 1464 160 ) ( 800 1472 160 ) ( 928 1472 160 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 800 1152 192 ) ( 928 1152 192 ) ( 928 1152 64 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 960 1472 192 ) ( 960 1480 192 ) ( 960 1480 64 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 928 1472 192 ) ( 800 1472 192 ) ( 800 1472 64 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 784 1464 96 ) ( 824 1464 96 ) ( 804 1472 96 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 896 1328 64 ) ( 896 1336 64 ) ( 896 1332 224 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +} +// brush 367 +{ +( 640 1204 160 ) ( 672 1204 160 ) ( 672 1184 160 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 504 1184 192 ) ( 632 1184 192 ) ( 632 1184 64 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 672 1360 160 ) ( 672 1368 160 ) ( 672 1368 32 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 672 1204 160 ) ( 640 1204 160 ) ( 640 1200 96 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 672 1200 96 ) ( 640 1200 96 ) ( 640 1184 96 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 640 1320 64 ) ( 640 1328 64 ) ( 640 1324 224 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +} +// brush 368 +{ +( 864 1204 160 ) ( 896 1204 160 ) ( 896 1184 160 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 728 1184 192 ) ( 856 1184 192 ) ( 856 1184 64 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 896 1360 160 ) ( 896 1368 160 ) ( 896 1368 32 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 896 1204 160 ) ( 864 1204 160 ) ( 864 1200 96 ) bricks/b_sr_20b 4 32 0 1 1 0 0 0 +( 900 1200 96 ) ( 868 1200 96 ) ( 864 1184 96 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 864 1320 64 ) ( 864 1328 64 ) ( 864 1324 224 ) bricks/b_sr_20b 59 32 0 1 1 0 0 0 +} +// brush 369 +{ +( 796 1184 64 ) ( 772 1184 64 ) ( 772 1176 64 ) metals/mt_pv_m26y 32 0 0 1 1 134217728 0 0 +( 792 1176 76 ) ( 776 1176 76 ) ( 776 1184 68 ) props2/speaker1 32 -20 0 0.250000 -0.130000 134217728 8388608 0 +( 776 1176 76 ) ( 792 1176 76 ) ( 792 1176 64 ) metals/mt_pv_m26y 32 0 0 1 1 134217728 0 0 +( 784 1176 68 ) ( 784 1184 68 ) ( 784 1184 36 ) metals/m_hl_c10b 0 0 0 0.250000 0.250000 134217728 0 0 +( 796 1184 68 ) ( 772 1184 68 ) ( 772 1184 36 ) metals/mt_pv_m26 -32 1 0 0.250000 0.250000 134217728 0 0 +( 776 1184 68 ) ( 776 1176 68 ) ( 776 1176 36 ) metals/mt_pv_m26 31 1 0 0.250000 0.250000 134217728 0 0 +} +// brush 370 +{ +( 756 1308 128 ) ( 756 1316 128 ) ( 884 1316 128 ) metals/mt_pv_m14 0 50 315 1 1 0 32 0 +( 748 1168 128 ) ( 876 1168 128 ) ( 876 1168 0 ) metals/mt_pv_m14 0 50 315 1 1 0 32 0 +( 848 1332 96 ) ( 848 1340 96 ) ( 848 1340 -32 ) metals/mt_pv_m14 0 50 315 1 1 0 32 0 +( 876 1172 128 ) ( 748 1172 128 ) ( 748 1172 0 ) metals/mt_pv_m14 0 50 315 1 1 0 32 0 +( 740 1308 64 ) ( 780 1308 64 ) ( 760 1316 64 ) metals/mt_pv_m14 0 50 315 1 1 0 32 0 +( 720 1324 32 ) ( 720 1332 32 ) ( 720 1328 192 ) metals/mt_pv_m14 0 50 315 1 1 0 32 0 +} +// brush 371 +{ +( 482 1352 32 ) ( 482 1360 32 ) ( 610 1360 32 ) bricks/c_sr_m8e 0 0 90 1 1 0 0 0 +( 490 1280 72 ) ( 618 1280 72 ) ( 618 1280 -56 ) bricks/b_pv_v1c -34 -24 0 1 1 0 0 0 +( 640 1360 40 ) ( 640 1368 40 ) ( 640 1368 -88 ) metals/mt_pv_m11m 0 -16 0 0.500000 0.500000 0 8388608 0 +( 610 1312 72 ) ( 482 1312 72 ) ( 482 1312 -56 ) bricks/b_pv_v1c -34 -24 0 1 1 0 0 0 +( 466 1352 24 ) ( 506 1352 24 ) ( 486 1360 24 ) bricks/b_pv_v1c -34 48 0 1 1 0 0 0 +( 576 1344 -24 ) ( 576 1352 -24 ) ( 576 1348 136 ) bricks/b_pv_v1c -48 -24 0 1 1 0 0 0 +} +// brush 372 +{ +( 480 1352 64 ) ( 480 1360 64 ) ( 608 1360 64 ) bricks/b_pv_v1c -32 48 0 1 1 0 0 0 +( 488 1280 80 ) ( 616 1280 80 ) ( 616 1280 -48 ) bricks/b_pv_v1c -32 -16 0 1 1 0 0 0 +( 638 1360 48 ) ( 638 1368 48 ) ( 638 1368 -80 ) metals/mt_pv_m11m 0 0 0 0.500000 0.500000 0 8388608 0 +( 608 1312 80 ) ( 480 1312 80 ) ( 480 1312 -48 ) bricks/b_pv_v1c -32 -16 0 1 1 0 0 0 +( 464 1352 32 ) ( 504 1352 32 ) ( 484 1360 32 ) bricks/b_pv_v1c -32 48 0 1 1 0 0 0 +( 632 1352 -16 ) ( 632 1360 -16 ) ( 632 1356 144 ) bricks/b_pv_v1c -48 -16 0 1 1 0 0 0 +} +// brush 373 +{ +( 480 1352 96 ) ( 480 1360 96 ) ( 608 1360 96 ) bricks/b_sr_20a 32 32 0 1 1 0 0 0 +( 488 1280 128 ) ( 616 1280 128 ) ( 616 1280 0 ) bricks/b_sr_20a 32 32 0 1 1 0 0 0 +( 640 1360 96 ) ( 640 1368 96 ) ( 640 1368 -32 ) bricks/b_sr_20a 32 32 0 1 1 0 0 0 +( 608 1312 128 ) ( 480 1312 128 ) ( 480 1312 0 ) bricks/b_sr_20a 32 32 0 1 1 0 0 0 +( 464 1352 64 ) ( 504 1352 64 ) ( 484 1360 64 ) bricks/b_sr_20a 864 416 0 1 1 0 0 0 +( 576 1344 32 ) ( 576 1352 32 ) ( 576 1348 192 ) bricks/b_sr_20a 32 32 0 1 1 0 0 0 +} +// brush 374 +{ +( 480 1304 96 ) ( 480 1312 96 ) ( 608 1312 96 ) bricks/b_pv_v1c -32 0 0 1 1 0 0 0 +( 488 1168 128 ) ( 616 1168 128 ) ( 616 1168 0 ) bricks/b_pv_v1c -32 32 0 1 1 0 0 0 +( 640 1312 96 ) ( 640 1320 96 ) ( 640 1320 -32 ) bricks/b_sr_20a 32 32 0 1 1 0 0 0 +( 608 1280 128 ) ( 480 1280 128 ) ( 480 1280 0 ) bricks/b_sr_20a 32 32 0 1 1 0 0 0 +( 464 1304 32 ) ( 504 1304 32 ) ( 484 1312 32 ) bricks/b_pv_v1c -32 0 0 1 1 0 0 0 +( 576 1296 32 ) ( 576 1304 32 ) ( 576 1300 192 ) bricks/b_pv_v1c 0 32 0 1 1 0 0 0 +} +// brush 375 +{ +( 824 1368 152 ) ( 840 1368 152 ) ( 840 1384 152 ) common/li_mf_v12c 16 16 0 0.500000 0.500000 134217728 1 15000 +( 822 1386 160 ) ( 842 1386 160 ) ( 842 1366 160 ) metals/mt_pv_m26y -32 32 0 1 1 134217728 0 0 +( 822 1366 160 ) ( 842 1366 160 ) ( 840 1368 152 ) metals/mt_pv_m26y -32 0 0 1 1 134217728 0 0 +( 842 1364 160 ) ( 842 1388 160 ) ( 840 1384 152 ) metals/mt_pv_m26y -32 0 0 1 1 134217728 0 0 +( 842 1386 160 ) ( 822 1386 160 ) ( 824 1384 152 ) metals/mt_pv_m26y -32 0 0 1 1 134217728 0 0 +( 822 1388 160 ) ( 822 1364 160 ) ( 824 1368 152 ) metals/mt_pv_m26y -32 0 0 1 1 134217728 0 0 +} +// brush 376 +{ +( 688 1296 64 ) ( 688 1304 64 ) ( 816 1304 64 ) metals/mt_pv_m10am -12 33 0 1 1 0 8388608 0 +( 688 1168 128 ) ( 816 1168 128 ) ( 816 1168 0 ) bricks/b_pv_v1c -48 32 0 1 1 0 0 0 +( 848 1336 128 ) ( 848 1344 128 ) ( 848 1344 0 ) bricks/b_pv_v1c 40 32 0 1 1 0 0 0 +( 808 1176 128 ) ( 680 1176 128 ) ( 680 1176 0 ) bricks/b_pv_v1c -48 32 0 1 1 0 0 0 +( 672 1296 32 ) ( 712 1296 32 ) ( 692 1304 32 ) bricks/b_pv_v1c -48 -40 0 1 1 0 0 0 +( 720 1320 32 ) ( 720 1328 32 ) ( 720 1324 192 ) bricks/b_pv_v1c 40 32 0 1 1 0 0 0 +} +// brush 377 +{ +( 816 1296 160 ) ( 816 1304 160 ) ( 944 1304 160 ) bricks/b_pv_v1c -16 -72 0 1 1 0 0 0 +( 816 1168 128 ) ( 944 1168 128 ) ( 944 1168 0 ) bricks/b_pv_v1c -16 32 0 1 1 0 0 0 +( 912 1320 96 ) ( 912 1328 96 ) ( 912 1328 -32 ) bricks/b_pv_v1c -24 32 0 1 1 0 0 0 +( 932 1176 128 ) ( 804 1176 128 ) ( 804 1176 0 ) bricks/b_pv_v1c -48 32 0 1 1 0 0 0 +( 800 1296 32 ) ( 840 1296 32 ) ( 820 1304 32 ) bricks/b_pv_v1c -16 -72 0 1 1 0 0 0 +( 848 1320 32 ) ( 848 1328 32 ) ( 848 1324 192 ) metals/mt_pv_m10am 52 33 270 1 1 0 8388608 0 +} +// brush 378 +{ +( 528 1296 160 ) ( 528 1304 160 ) ( 656 1304 160 ) bricks/b_pv_v1c -48 -40 0 1 1 0 0 0 +( 528 1168 128 ) ( 656 1168 128 ) ( 656 1168 0 ) bricks/b_pv_v1c -48 32 0 1 1 0 0 0 +( 720 1336 96 ) ( 720 1344 96 ) ( 720 1344 -32 ) metals/mt_pv_m10am 52 33 270 1 1 0 8388608 0 +( 648 1176 128 ) ( 520 1176 128 ) ( 520 1176 0 ) bricks/b_pv_v1c -48 32 0 1 1 0 0 0 +( 512 1296 32 ) ( 552 1296 32 ) ( 532 1304 32 ) bricks/b_pv_v1c -48 -40 0 1 1 0 0 0 +( 656 1296 0 ) ( 656 1304 0 ) ( 656 1300 160 ) bricks/b_pv_v1c 40 32 0 1 1 0 0 0 +} +// brush 379 +{ +( 688 1296 160 ) ( 688 1304 160 ) ( 816 1304 160 ) bricks/b_pv_v1c -48 -40 0 1 1 0 0 0 +( 688 1168 224 ) ( 816 1168 224 ) ( 816 1168 96 ) bricks/b_pv_v1c -48 32 0 1 1 0 0 0 +( 848 1336 224 ) ( 848 1344 224 ) ( 848 1344 96 ) bricks/b_pv_v1c 40 32 0 1 1 0 0 0 +( 808 1176 224 ) ( 680 1176 224 ) ( 680 1176 96 ) bricks/b_pv_v1c -48 32 0 1 1 0 0 0 +( 672 1296 128 ) ( 712 1296 128 ) ( 692 1304 128 ) metals/mt_pv_m10am -12 33 0 1 1 0 8388608 0 +( 720 1320 128 ) ( 720 1328 128 ) ( 720 1324 288 ) bricks/b_pv_v1c 40 32 0 1 1 0 0 0 +} +// brush 380 +{ +( 824 1240 152 ) ( 840 1240 152 ) ( 840 1256 152 ) common/li_mf_v12c 16 16 0 0.500000 0.500000 134217728 1 20000 +( 822 1258 160 ) ( 842 1258 160 ) ( 842 1238 160 ) metals/mt_pv_m26y -32 -32 0 1 1 134217728 0 0 +( 822 1238 160 ) ( 842 1238 160 ) ( 840 1240 152 ) metals/mt_pv_m26y -32 0 0 1 1 134217728 0 0 +( 842 1236 160 ) ( 842 1260 160 ) ( 840 1256 152 ) metals/mt_pv_m26y 32 0 0 1 1 134217728 0 0 +( 842 1258 160 ) ( 822 1258 160 ) ( 824 1256 152 ) metals/mt_pv_m26y -32 0 0 1 1 134217728 0 0 +( 822 1260 160 ) ( 822 1236 160 ) ( 824 1240 152 ) metals/mt_pv_m26y 32 0 0 1 1 134217728 0 0 +} +// brush 381 +{ +( 696 1240 152 ) ( 712 1240 152 ) ( 712 1256 152 ) common/li_mf_v12c 16 16 0 0.500000 0.500000 134217728 1 12000 +( 694 1258 160 ) ( 714 1258 160 ) ( 714 1238 160 ) metals/mt_pv_m26y 32 -32 0 1 1 134217728 0 0 +( 694 1238 160 ) ( 714 1238 160 ) ( 712 1240 152 ) metals/mt_pv_m26y 32 0 0 1 1 134217728 0 0 +( 714 1236 160 ) ( 714 1260 160 ) ( 712 1256 152 ) metals/mt_pv_m26y 32 0 0 1 1 134217728 0 0 +( 714 1258 160 ) ( 694 1258 160 ) ( 696 1256 152 ) metals/mt_pv_m26y 32 0 0 1 1 134217728 0 0 +( 694 1260 160 ) ( 694 1236 160 ) ( 696 1240 152 ) metals/mt_pv_m26y 32 0 0 1 1 134217728 0 0 +} +// brush 382 +{ +( 899 1328 92 ) ( 891 1328 92 ) ( 891 1264 92 ) props/pawn_s1 115 -32 0 -0.500000 0.500000 134217728 4096 0 +( 891 1264 144 ) ( 891 1328 144 ) ( 899 1328 144 ) props/pawn_s1 115 -32 0 -0.500000 0.500000 134217728 4096 0 +( 891 1264 176 ) ( 899 1264 176 ) ( 899 1264 48 ) props/pawn_s1 115 -32 0 -0.500000 0.500000 134217728 4096 0 +( 892 1297 176 ) ( 892 1361 176 ) ( 892 1361 48 ) props/pawn_s 22 -4 0 -0.750000 0.750000 134217728 4096 0 +( 899 1360 176 ) ( 891 1360 176 ) ( 891 1360 48 ) props/pawn_s1 115 -32 0 -0.500000 0.500000 134217728 4096 0 +( 891 1328 176 ) ( 891 1264 176 ) ( 891 1264 48 ) props/pawn_s 22 -4 0 -0.750000 0.750000 134217728 4096 0 +} +// brush 383 +{ +( 416 416 96 ) ( -32 416 96 ) ( -32 400 96 ) props/w_sr_m6d 0 -32 0 1 1 0 1 50 +( -32 400 224 ) ( -32 416 224 ) ( 416 416 224 ) props/w_sr_m6d 0 -32 0 1 1 0 1 50 +( -32 400 224 ) ( 416 400 224 ) ( 416 400 96 ) props/w_sr_m6d 32 -32 0 -1 1 0 1 75 +( 424 408 224 ) ( -24 408 224 ) ( -24 408 96 ) props/w_sr_m6d 0 -32 0 1 1 0 0 300 +( 352 416 96 ) ( 352 400 96 ) ( 352 408 224 ) props/w_sr_m6d 32 -32 0 1 1 0 1 50 +( 320 392 96 ) ( 320 408 96 ) ( 320 400 224 ) props/w_sr_m6d 32 -32 0 1 1 0 1 50 +} +// brush 384 +{ +( -102 328 144 ) ( -104 328 144 ) ( -104 312 144 ) metals/mt_pv_m26y 16 -8 0 0.500000 0.500000 134217728 0 0 +( -104 312 148 ) ( -104 328 148 ) ( -102 328 148 ) metals/mt_pv_m26y 16 -8 0 0.500000 0.500000 134217728 0 0 +( -104 309 72 ) ( -104 309 200 ) ( -102 311 200 ) metals/mt_pv_m26y 16 -8 0 0.500000 0.500000 134217728 0 0 +( -102 311 200 ) ( -102 327 200 ) ( -102 327 72 ) metals/mt_pv_m26y 16 -8 0 0.500000 0.500000 134217728 0 0 +( -104 331 200 ) ( -104 331 72 ) ( -102 329 72 ) metals/mt_pv_m26y 16 -8 0 0.500000 0.500000 134217728 0 0 +( -104 309 200 ) ( -104 309 72 ) ( -104 331 72 ) metals/mt_pv_m26y 16 16 0 5 5 134217728 0 0 +} +// brush 385 +{ +( -64 256 288 ) ( -64 384 288 ) ( -64 384 96 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -96 384 288 ) ( -96 256 288 ) ( -96 256 96 ) metals/mt_pv_m26y 16 16 0 5 5 0 0 0 +( -40 256 96 ) ( -72 256 96 ) ( -56 256 288 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -88 256 192 ) ( -56 256 192 ) ( -72 384 192 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -64 256 224 ) ( -80 256 224 ) ( -72 384 224 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -96 288 128 ) ( -80 288 128 ) ( -88 288 256 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +} +// brush 386 +{ +( -64 256 288 ) ( -64 384 288 ) ( -64 384 96 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -64 384 288 ) ( -80 384 288 ) ( -80 384 96 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -96 384 288 ) ( -96 256 288 ) ( -96 256 96 ) metals/mt_pv_m26y 16 16 0 5 5 0 0 0 +( -88 256 192 ) ( -56 256 192 ) ( -72 384 192 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -64 256 224 ) ( -80 256 224 ) ( -72 384 224 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -80 352 128 ) ( -96 352 128 ) ( -88 352 256 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +} +// brush 387 +{ +( 816 1495 76 ) ( 824 1495 76 ) ( 824 1511 76 ) floors/dr_st_m1d -13 -20 0 0.500000 0.500000 134217728 0 0 +( 824 1516 88 ) ( 824 1496 88 ) ( 816 1496 88 ) floors/dr_st_m1d -13 -20 0 0.500000 0.500000 134217728 0 0 +( 824 1497 88 ) ( 824 1497 72 ) ( 816 1497 72 ) props/callbox4 16 15 0 -0.500000 0.500000 134217728 0 0 +( 824 1511 72 ) ( 824 1511 88 ) ( 816 1511 88 ) props/callbox4 16 15 0 -0.500000 0.500000 134217728 0 0 +( 816 1496 97 ) ( 816 1496 67 ) ( 816 1512 67 ) props/callbox4 31 32 0 -0.250000 0.250000 134217728 0 0 +( 824 1496 72 ) ( 824 1496 88 ) ( 824 1512 88 ) bricks/c_pv_m2 0 -1 0 1 1 134217728 0 0 +} +// brush 388 +{ +( 2104 3960 256 ) ( 2104 3968 256 ) ( 888 3968 256 ) sprites/skyln_m1 34 4 -180 2 -2 0 4096 0 +( 888 3968 512 ) ( 2104 3968 512 ) ( 2104 3960 512 ) sprites/skyln_m1 34 4 -180 2 -2 0 4096 0 +( 1920 4000 272 ) ( 1920 3992 272 ) ( 1920 3992 256 ) sprites/skyln_m1 38 0 -180 2 -2 0 4096 0 +( 584 3960 272 ) ( 1800 3960 272 ) ( 1800 3960 256 ) sprites/skyln_m1 34 0 -180 2 -2 0 4096 0 +( 2176 3952 272 ) ( 2176 3960 272 ) ( 2176 3960 256 ) sprites/skyln_m1 38 0 -180 2 -2 0 4096 0 +( 3320 3968 272 ) ( 2104 3968 272 ) ( 2104 3968 256 ) sprites/skyln_m1 34 0 -180 2 -2 0 4096 0 +} +// brush 389 +{ +( 2688 3960 256 ) ( 2688 3968 256 ) ( 1472 3968 256 ) sprites/alfa_v1 0 0 0 1 1 128 16781312 0 +( 1472 3968 512 ) ( 2688 3968 512 ) ( 2688 3960 512 ) sprites/alfa_v1 0 0 0 1 1 128 16781312 0 +( 2504 4000 272 ) ( 2504 3992 272 ) ( 2504 3992 256 ) sprites/alfa_v1 0 0 0 1 1 128 16781312 0 +( 1168 3960 272 ) ( 2384 3960 272 ) ( 2384 3960 256 ) sprites/skyln_m1 198 0 0 -2 2 0 4096 0 +( 2752 3952 272 ) ( 2752 3960 272 ) ( 2752 3960 256 ) sprites/skyln_m1 -64 0 0 2 2 0 4096 0 +( 3904 3968 272 ) ( 2688 3968 272 ) ( 2688 3968 256 ) sprites/alfa_v1 0 0 0 1 1 128 16781312 0 +} +// brush 390 +{ +( 736 1320 96 ) ( 736 1328 96 ) ( 864 1328 96 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 728 1184 128 ) ( 856 1184 128 ) ( 856 1184 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 896 1360 96 ) ( 896 1368 96 ) ( 896 1368 -32 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 1024 1200 128 ) ( 896 1200 128 ) ( 896 1200 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 720 1320 32 ) ( 760 1320 32 ) ( 740 1328 32 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 864 1320 0 ) ( 864 1328 0 ) ( 864 1324 160 ) bricks/b_sr_20a -89 32 0 1 1 0 0 0 +} +// brush 391 +{ +( 512 1560 96 ) ( 512 1568 96 ) ( 640 1568 96 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 504 1424 128 ) ( 632 1424 128 ) ( 632 1424 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 672 1600 32 ) ( 672 1608 32 ) ( 672 1608 -96 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 632 1440 128 ) ( 504 1440 128 ) ( 504 1440 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 496 1560 32 ) ( 536 1560 32 ) ( 516 1568 32 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 640 1560 0 ) ( 640 1568 0 ) ( 640 1564 160 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +} +// brush 392 +{ +( 736 1560 96 ) ( 736 1568 96 ) ( 864 1568 96 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 728 1424 128 ) ( 856 1424 128 ) ( 856 1424 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 896 1600 96 ) ( 896 1608 96 ) ( 896 1608 -32 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 856 1440 128 ) ( 728 1440 128 ) ( 728 1440 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 720 1560 32 ) ( 760 1560 32 ) ( 740 1568 32 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 864 1560 0 ) ( 864 1568 0 ) ( 864 1564 160 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +} +// brush 393 +{ +( 512 1320 96 ) ( 512 1328 96 ) ( 640 1328 96 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 504 1184 128 ) ( 632 1184 128 ) ( 632 1184 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 672 1360 96 ) ( 672 1368 96 ) ( 672 1368 -32 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 632 1200 128 ) ( 504 1200 128 ) ( 504 1200 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 496 1320 32 ) ( 536 1320 32 ) ( 516 1328 32 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 640 1320 0 ) ( 640 1328 0 ) ( 640 1324 160 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +} +// brush 394 +{ +( 680 1528 144 ) ( 680 1600 144 ) ( 664 1600 144 ) metals/mt_pv_m26y 0 -15 -180 0.500000 0.500000 134217728 8388608 0 +( 664 1600 208 ) ( 680 1600 208 ) ( 680 1528 208 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 672 1536 208 ) ( 672 1536 144 ) ( 672 1600 144 ) props2/ne_pv_C03 0 16 0 -1 1 134217728 1 500 +( 680 1536 208 ) ( 680 1536 144 ) ( 672 1536 144 ) metals/mt_pv_m26y 0 -15 -180 0.500000 0.500000 134217728 8388608 0 +( 680 1536 144 ) ( 680 1536 208 ) ( 680 1600 208 ) props2/ne_pv_C03 0 16 0 1 1 134217728 1 750 +( 680 1600 144 ) ( 664 1600 144 ) ( 664 1600 16 ) metals/mt_pv_m26y 0 -15 -180 0.500000 0.500000 134217728 8388608 0 +} +// brush 395 +{ +( 320 768 304 ) ( -64 768 304 ) ( -64 752 304 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -72 384 336 ) ( 312 384 336 ) ( 312 384 272 ) floors/rf_sr_m1 -1 -6 0 1 1 0 0 0 +( -80 768 336 ) ( -80 752 336 ) ( -80 752 272 ) bricks/b_sr_23 72 16 -180 1 -1 0 0 0 +( -80 384 320 ) ( -80 424 320 ) ( 384 404 320 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 384 576 272 ) ( 384 560 272 ) ( 384 568 336 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 352 400 272 ) ( 368 400 272 ) ( 360 400 336 ) bricks/b_sr_23 72 16 -180 1 -1 0 0 0 +} +// brush 396 +{ +( -208 672 64 ) ( -208 224 64 ) ( -192 224 64 ) floors/dr_st_m1d 0 0 0 1 1 0 134217728 0 +( -200 224 256 ) ( -200 672 256 ) ( -200 672 128 ) floors/dr_st_m1d -31 -63 0 1 1 0 134217728 0 +( -208 672 256 ) ( -208 224 256 ) ( -208 224 128 ) floors/dr_st_m1d 0 0 0 1 1 0 134217728 0 +( -192 304 176 ) ( -192 256 176 ) ( -208 280 176 ) floors/dr_st_m1d 0 0 0 1 1 0 134217728 0 +( -192 288 64 ) ( -208 288 64 ) ( -200 288 224 ) floors/dr_st_m1d 0 0 0 1 1 0 134217728 0 +( -208 352 64 ) ( -192 352 64 ) ( -200 352 224 ) floors/dr_st_m1d 0 0 0 1 1 0 134217728 0 +} +// brush 397 +{ +( -304 288 256 ) ( -176 288 256 ) ( -176 288 64 ) bricks/b_sr_20 -32 0 -180 1 -1 0 0 0 +( -192 384 256 ) ( -192 400 256 ) ( -192 400 64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( -168 352 256 ) ( -296 352 256 ) ( -296 352 64 ) bricks/b_sr_20 -32 0 -180 1 -1 0 0 0 +( -304 392 176 ) ( -304 360 176 ) ( -176 376 176 ) bricks/b_sr_20 32 -32 90 1 1 0 0 0 +( -304 368 256 ) ( -304 384 256 ) ( -176 376 256 ) bricks/b_sr_20 32 -32 90 1 1 0 0 0 +( -208 368 96 ) ( -208 384 96 ) ( -208 376 224 ) bricks/b_sr_20 32 0 0 1 1 0 0 0 +} +// brush 398 +{ +( -304 352 256 ) ( -176 352 256 ) ( -176 352 64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( -192 400 256 ) ( -192 416 256 ) ( -192 416 64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( -168 384 256 ) ( -296 384 256 ) ( -296 384 64 ) bricks/b_sr_20 -32 0 -180 1 -1 0 0 0 +( -304 424 64 ) ( -304 392 64 ) ( -176 408 64 ) bricks/b_sr_20 0 -32 90 1 1 0 0 0 +( -304 400 256 ) ( -304 416 256 ) ( -176 408 256 ) bricks/b_sr_20 0 -32 90 1 1 0 0 0 +( -208 400 96 ) ( -208 416 96 ) ( -208 408 224 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 399 +{ +( -78 291 96 ) ( -78 291 224 ) ( -101 312 224 ) props/w_sr_m6d 48 -31 -180 0.700000 -1 134217728 0 0 +( -104 309 96 ) ( -104 309 224 ) ( -80 288 224 ) metals/mt_pv_m26y 16 16 0 5 5 134217728 0 0 +( -101 312 96 ) ( -104 309 96 ) ( -80 288 96 ) props/w_sr_m6d 6 42 -64 1.000039 0.999971 134217728 0 0 +( -54 269 224 ) ( -65 258 224 ) ( -155 349 224 ) props/w_sr_m6d -7 -28 24 0.999999 0.999965 134217728 0 0 +( -104 309 224 ) ( -104 309 96 ) ( -101 312 96 ) props/w_sr_ba7b -6 99 -90 1.000021 -0.885076 134217728 0 0 +( -78 291 224 ) ( -78 291 96 ) ( -80 288 96 ) props/w_sr_ba7b -12 187 -90 1.000021 -0.885076 134217728 0 0 +} +// brush 400 +{ +( -78 349 224 ) ( -78 349 96 ) ( -101 328 96 ) props/w_sr_m6d 80 -31 -180 0.700000 -1 134217728 0 0 +( -80 352 96 ) ( -80 352 224 ) ( -104 331 224 ) metals/mt_pv_m26y 16 16 0 5 5 134217728 0 0 +( -104 331 96 ) ( -101 328 96 ) ( -78 349 96 ) props/w_sr_m6d -12 69 115 1.000042 0.999971 134217728 0 0 +( -155 291 224 ) ( -65 382 224 ) ( -54 371 224 ) props/w_sr_m6d -45 -49 -156 0.999996 0.999941 134217728 0 0 +( -101 328 224 ) ( -101 328 96 ) ( -104 331 96 ) props/w_sr_ba7b -6 13 -90 1.000021 -0.885076 134217728 0 0 +( -78 349 96 ) ( -78 349 224 ) ( -80 352 224 ) props/w_sr_ba7b -12 53 -90 1.000021 -0.885076 134217728 0 0 +} +// brush 401 +{ +( -304 240 256 ) ( -176 240 256 ) ( -176 240 64 ) bricks/b_sr_20 -32 0 -180 1 -1 0 0 0 +( -192 288 256 ) ( -192 304 256 ) ( -192 304 64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( -168 288 256 ) ( -296 288 256 ) ( -296 288 64 ) bricks/b_sr_20 -32 0 -180 1 -1 0 0 0 +( -304 312 64 ) ( -304 280 64 ) ( -176 296 64 ) bricks/b_sr_20 -16 -32 90 1 1 0 0 0 +( -304 288 256 ) ( -304 304 256 ) ( -176 296 256 ) bricks/b_sr_20 -16 -32 90 1 1 0 0 0 +( -208 288 96 ) ( -208 304 96 ) ( -208 296 224 ) bricks/b_sr_20 -16 0 0 1 1 0 0 0 +} +// brush 402 +{ +( -80 144 256 ) ( -80 272 256 ) ( -80 272 64 ) bricks/b_sr_20 48 0 0 1 1 0 0 0 +( -80 256 256 ) ( -96 256 256 ) ( -96 256 64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( -192 280 256 ) ( -192 152 256 ) ( -192 152 64 ) bricks/b_sr_20 48 0 0 1 1 0 0 0 +( -104 144 64 ) ( -72 144 64 ) ( -88 272 64 ) bricks/b_sr_20 -48 -112 0 1 1 0 0 0 +( -80 144 256 ) ( -96 144 256 ) ( -88 272 256 ) bricks/b_sr_20 -48 -112 0 1 1 0 0 0 +( -80 240 96 ) ( -96 240 96 ) ( -88 240 224 ) bricks/b_sr_20 -48 0 0 1 1 0 0 0 +} +// brush 403 +{ +( -80 288 256 ) ( -80 416 256 ) ( -80 416 64 ) bricks/b_sr_20 -96 0 0 1 1 0 0 0 +( -80 400 256 ) ( -96 400 256 ) ( -96 400 64 ) bricks/b_sr_20 -48 0 0 1 1 0 0 0 +( -192 424 256 ) ( -192 296 256 ) ( -192 296 64 ) bricks/b_sr_20 -96 0 0 1 1 0 0 0 +( -104 288 64 ) ( -72 288 64 ) ( -88 416 64 ) bricks/b_sr_20 -48 32 0 1 1 0 0 0 +( -80 288 256 ) ( -96 288 256 ) ( -88 416 256 ) bricks/b_sr_20 -48 32 0 1 1 0 0 0 +( -80 384 96 ) ( -96 384 96 ) ( -88 384 224 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +} +// brush 404 +{ +( 583 -234 64 ) ( 519 -230 64 ) ( 514 -294 64 ) props/box_sr_m5 -20 -2 -4 1 1 0 134217728 0 +( 514 -294 128 ) ( 519 -230 128 ) ( 583 -234 128 ) props/box_sr_m5 -20 -2 -4 1 1 0 134217728 0 +( 510 -358 128 ) ( 574 -362 128 ) ( 574 -362 64 ) props/box_sr_m5 -63 0 0 0.997559 1 0 134217728 0 +( 578 -298 128 ) ( 583 -234 128 ) ( 583 -234 64 ) props/box_sr_m5 43 0 0 0.997559 1 0 134217728 0 +( 578 -298 128 ) ( 514 -294 128 ) ( 514 -294 64 ) props/box_sr_m5 -3 0 0 0.997559 1 0 134217728 0 +( 519 -230 128 ) ( 514 -294 128 ) ( 514 -294 64 ) props/box_sr_m5 38 0 0 0.997589 1 0 134217728 0 +} +// brush 405 +{ +( 576 -232 0 ) ( 512 -232 0 ) ( 512 -296 0 ) props/box_sr_m5 0 -40 0 1 1 0 134217728 0 +( 512 -296 64 ) ( 512 -232 64 ) ( 576 -232 64 ) props/box_sr_m5 0 -40 0 1 1 0 134217728 0 +( 512 -360 64 ) ( 576 -360 64 ) ( 576 -360 0 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 576 -296 64 ) ( 576 -232 64 ) ( 576 -232 0 ) props/box_sr_m6 -24 0 0 1 1 0 134217728 0 +( 576 -232 64 ) ( 512 -232 64 ) ( 512 -232 0 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 512 -232 64 ) ( 512 -296 64 ) ( 512 -296 0 ) props/box_sr_m6 -24 0 0 1 1 0 134217728 0 +} +// brush 406 +{ +( -1592 2048 0 ) ( -1976 2048 0 ) ( -1976 2032 0 ) bricks/c_pv_m2gg -62 0 0 1 1 0 0 0 +( -1976 2032 128 ) ( -1976 2048 128 ) ( -1592 2048 128 ) bricks/c_pv_m2gg -62 0 0 1 1 0 0 0 +( -1976 2032 128 ) ( -1592 2032 128 ) ( -1592 2032 0 ) bricks/c_pv_m2gg -62 0 0 1 1 0 0 0 +( -1592 2048 128 ) ( -1976 2048 128 ) ( -1976 2048 0 ) bricks/c_pv_m2pp 66 0 0 1 1 0 0 0 +( -1728 2056 128 ) ( -1728 2040 128 ) ( -1728 2040 0 ) bricks/c_pv_m2gg -62 0 0 1 1 0 0 0 +( -1600 2048 0 ) ( -1600 2024 0 ) ( -1600 2036 128 ) bricks/c_pv_m2gg -62 0 0 1 1 0 0 0 +} +// brush 407 +{ +( 696 1368 152 ) ( 712 1368 152 ) ( 712 1384 152 ) common/li_mf_v12c 16 16 0 0.500000 0.500000 134217728 1 20000 +( 694 1386 160 ) ( 714 1386 160 ) ( 714 1366 160 ) metals/mt_pv_m26y 32 -32 0 1 1 134217728 0 0 +( 694 1366 160 ) ( 714 1366 160 ) ( 712 1368 152 ) metals/mt_pv_m26y 32 0 0 1 1 134217728 0 0 +( 714 1364 160 ) ( 714 1388 160 ) ( 712 1384 152 ) metals/mt_pv_m26y 32 0 0 1 1 134217728 0 0 +( 714 1386 160 ) ( 694 1386 160 ) ( 696 1384 152 ) metals/mt_pv_m26y 32 0 0 1 1 134217728 0 0 +( 694 1388 160 ) ( 694 1364 160 ) ( 696 1368 152 ) metals/mt_pv_m26y 32 0 0 1 1 134217728 0 0 +} +// brush 408 +{ +( 960 1480 160 ) ( 704 1480 160 ) ( 704 1320 160 ) floors/fl_pv_m13b 0 32 0 1 1 0 0 0 +( 704 1320 192 ) ( 704 1480 192 ) ( 960 1480 192 ) floors/fl_pv_m13b 0 32 0 1 1 0 0 0 +( 712 1248 192 ) ( 968 1248 192 ) ( 968 1248 160 ) floors/fl_pv_m13b 0 32 0 1 1 0 0 0 +( 832 1320 192 ) ( 832 1480 192 ) ( 832 1480 160 ) floors/fl_pv_m13b 0 32 0 1 1 0 0 0 +( 960 1376 192 ) ( 704 1376 192 ) ( 704 1376 160 ) floors/fl_pv_m13b 0 32 0 1 1 0 0 0 +( 768 1416 192 ) ( 768 1256 192 ) ( 768 1256 160 ) floors/fl_pv_m13b 0 32 0 1 1 0 0 0 +} +// brush 409 +{ +( 1088 1536 192 ) ( 624 1536 192 ) ( 624 1520 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 624 1520 256 ) ( 624 1536 256 ) ( 1088 1536 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 624 1520 320 ) ( 1088 1520 320 ) ( 1088 1520 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1088 1536 320 ) ( 624 1536 320 ) ( 624 1536 192 ) bricks/b_sr_20b 64 128 0 1 1 0 0 0 +( 624 1536 320 ) ( 624 1520 320 ) ( 624 1520 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 704 1536 192 ) ( 704 1520 192 ) ( 704 1528 320 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 410 +{ +( 896 1440 160 ) ( 640 1440 160 ) ( 640 1280 160 ) floors/fl_pv_m13 -64 32 0 1 1 0 0 0 +( 640 1280 192 ) ( 640 1440 192 ) ( 896 1440 192 ) floors/fl_pv_m13 -64 32 0 1 1 0 0 0 +( 640 1248 192 ) ( 896 1248 192 ) ( 896 1248 160 ) floors/fl_pv_m13 -64 32 0 1 1 0 0 0 +( 768 1216 192 ) ( 768 1376 192 ) ( 768 1376 160 ) floors/fl_pv_m13 -64 32 0 1 1 0 0 0 +( 896 1376 192 ) ( 640 1376 192 ) ( 640 1376 160 ) floors/fl_pv_m13 -64 32 0 1 1 0 0 0 +( 704 1440 192 ) ( 704 1280 192 ) ( 704 1280 160 ) floors/fl_pv_m13 -64 32 0 1 1 0 0 0 +} +// brush 411 +{ +( 896 1472 160 ) ( 640 1472 160 ) ( 640 1312 160 ) floors/fl_pv_m13a 32 64 270 1 1 0 0 0 +( 640 1312 192 ) ( 640 1472 192 ) ( 896 1472 192 ) floors/fl_pv_m13a 32 64 270 1 1 0 0 0 +( 656 1376 192 ) ( 912 1376 192 ) ( 912 1376 160 ) floors/fl_pv_m13a 32 64 270 1 1 0 0 0 +( 896 1440 192 ) ( 896 1440 160 ) ( 864 1408 160 ) floors/fl_pv_m13a 32 64 270 1 1 0 0 0 +( 640 1440 192 ) ( 640 1440 160 ) ( 896 1440 160 ) floors/fl_pv_m13a 32 64 270 1 1 0 0 0 +( 640 1440 160 ) ( 640 1440 192 ) ( 672 1408 192 ) floors/fl_pv_m13a 32 64 270 1 1 0 0 0 +} +// brush 412 +{ +( 640 1152 160 ) ( 896 1152 160 ) ( 896 1312 160 ) floors/fl_pv_m13a -32 0 90 1 1 0 0 0 +( 896 1312 192 ) ( 896 1152 192 ) ( 640 1152 192 ) floors/fl_pv_m13a -32 0 90 1 1 0 0 0 +( 896 1248 192 ) ( 640 1248 192 ) ( 640 1248 160 ) floors/fl_pv_m13a -32 0 90 1 1 0 0 0 +( 640 1184 192 ) ( 640 1184 160 ) ( 672 1216 160 ) floors/fl_pv_m13a -32 0 90 1 1 0 0 0 +( 896 1184 192 ) ( 896 1184 160 ) ( 640 1184 160 ) floors/fl_pv_m13a -32 0 90 1 1 0 0 0 +( 896 1184 160 ) ( 896 1184 192 ) ( 864 1216 192 ) floors/fl_pv_m13a -32 0 90 1 1 0 0 0 +} +// brush 413 +{ +( 608 1440 160 ) ( 608 1184 160 ) ( 768 1184 160 ) floors/fl_pv_m13a 0 32 0 1 1 0 0 0 +( 768 1184 192 ) ( 608 1184 192 ) ( 608 1440 192 ) floors/fl_pv_m13a 0 32 0 1 1 0 0 0 +( 704 1200 192 ) ( 704 1456 192 ) ( 704 1456 160 ) floors/fl_pv_m13a 0 32 0 1 1 0 0 0 +( 640 1440 192 ) ( 640 1440 160 ) ( 672 1408 160 ) floors/fl_pv_m13a 0 32 0 1 1 0 0 0 +( 640 1184 192 ) ( 640 1184 160 ) ( 640 1440 160 ) floors/fl_pv_m13a 0 32 0 1 1 0 0 0 +( 640 1184 160 ) ( 640 1184 192 ) ( 672 1216 192 ) floors/fl_pv_m13a 0 32 0 1 1 0 0 0 +} +// brush 414 +{ +( 928 1280 160 ) ( 928 1536 160 ) ( 768 1536 160 ) floors/fl_pv_m13a 0 96 180 1 1 0 0 0 +( 768 1536 192 ) ( 928 1536 192 ) ( 928 1280 192 ) floors/fl_pv_m13a 0 96 180 1 1 0 0 0 +( 832 1432 192 ) ( 832 1176 192 ) ( 832 1176 160 ) floors/fl_pv_m13a 0 96 180 1 1 0 0 0 +( 896 1184 192 ) ( 896 1184 160 ) ( 864 1216 160 ) floors/fl_pv_m13a 0 96 180 1 1 0 0 0 +( 896 1536 192 ) ( 896 1536 160 ) ( 896 1280 160 ) floors/fl_pv_m13a 0 96 180 1 1 0 0 0 +( 896 1440 160 ) ( 896 1440 192 ) ( 864 1408 192 ) floors/fl_pv_m13a 0 96 180 1 1 0 0 0 +} +// brush 415 +{ +( 928 1280 0 ) ( 928 1536 0 ) ( 768 1536 0 ) bricks/c_sr_m8e -64 0 90 1 1 0 0 0 +( 768 1536 32 ) ( 928 1536 32 ) ( 928 1280 32 ) bricks/c_sr_m8e -64 0 90 1 1 0 0 0 +( 864 1528 32 ) ( 864 1272 32 ) ( 864 1272 0 ) bricks/c_sr_m8e -64 0 90 1 1 0 0 0 +( 896 1184 32 ) ( 896 1184 0 ) ( 864 1216 0 ) bricks/c_sr_m8e -64 0 90 1 1 0 0 0 +( 896 1536 32 ) ( 896 1536 0 ) ( 896 1280 0 ) bricks/c_sr_m8e -64 0 90 1 1 0 0 0 +( 896 1440 0 ) ( 896 1440 32 ) ( 864 1408 32 ) bricks/c_sr_m8e -64 0 90 1 1 0 0 0 +} +// brush 416 +{ +( 608 1440 0 ) ( 608 1184 0 ) ( 768 1184 0 ) bricks/c_sr_m8e -64 0 270 1 1 0 0 0 +( 768 1184 32 ) ( 608 1184 32 ) ( 608 1440 32 ) bricks/c_sr_m8e -64 0 270 1 1 0 0 0 +( 672 1192 32 ) ( 672 1448 32 ) ( 672 1448 0 ) bricks/c_sr_m8e -64 0 270 1 1 0 0 0 +( 640 1440 32 ) ( 640 1440 0 ) ( 672 1408 0 ) bricks/c_sr_m8e -64 0 270 1 1 0 0 0 +( 640 1184 32 ) ( 640 1184 0 ) ( 640 1440 0 ) bricks/c_sr_m8e -64 0 270 1 1 0 0 0 +( 632 1176 0 ) ( 632 1176 32 ) ( 664 1208 32 ) bricks/c_sr_m8e -64 0 270 1 1 0 0 0 +} +// brush 417 +{ +( 640 1152 0 ) ( 896 1152 0 ) ( 896 1312 0 ) bricks/c_sr_m8e -64 0 0 1 1 0 0 0 +( 896 1312 32 ) ( 896 1152 32 ) ( 640 1152 32 ) bricks/c_sr_m8e -64 0 0 1 1 0 0 0 +( 888 1216 32 ) ( 632 1216 32 ) ( 632 1216 0 ) bricks/c_sr_m8e -64 0 0 1 1 0 0 0 +( 640 1184 32 ) ( 640 1184 0 ) ( 672 1216 0 ) bricks/c_sr_m8e -64 0 0 1 1 0 0 0 +( 896 1184 32 ) ( 896 1184 0 ) ( 640 1184 0 ) bricks/c_sr_m8e -64 0 0 1 1 0 0 0 +( 896 1184 0 ) ( 896 1184 32 ) ( 864 1216 32 ) bricks/c_sr_m8e -64 0 0 1 1 0 0 0 +} +// brush 418 +{ +( 896 1472 0 ) ( 640 1472 0 ) ( 640 1312 0 ) bricks/c_sr_m8e -64 0 180 1 1 0 0 0 +( 640 1312 32 ) ( 640 1472 32 ) ( 896 1472 32 ) bricks/c_sr_m8e -64 0 180 1 1 0 0 0 +( 648 1408 32 ) ( 904 1408 32 ) ( 904 1408 0 ) bricks/c_sr_m8e -64 0 180 1 1 0 0 0 +( 896 1440 32 ) ( 896 1440 0 ) ( 864 1408 0 ) bricks/c_sr_m8e -64 0 180 1 1 0 0 0 +( 640 1440 32 ) ( 640 1440 0 ) ( 896 1440 0 ) bricks/c_sr_m8e -64 0 180 1 1 0 0 0 +( 640 1440 0 ) ( 640 1440 32 ) ( 672 1408 32 ) bricks/c_sr_m8e -64 0 180 1 1 0 0 0 +} +// brush 419 +{ +( 676 1300 128 ) ( 676 1308 128 ) ( 804 1308 128 ) floors/dr_st_m3 48 -16 0 1 0.500000 0 8388608 0 +( 676 1160 128 ) ( 804 1160 128 ) ( 804 1160 0 ) floors/dr_st_m3 48 0 0 1 0.500000 0 8388608 0 +( 848 1324 96 ) ( 848 1332 96 ) ( 848 1332 -32 ) floors/dr_st_m3 72 0 0 1 0.500000 0 8388608 0 +( 796 1168 128 ) ( 668 1168 128 ) ( 668 1168 0 ) floors/dr_st_m3 48 0 0 1 0.500000 0 8388608 0 +( 660 1300 64 ) ( 700 1300 64 ) ( 680 1308 64 ) floors/dr_st_m3 48 -16 0 1 0.500000 0 8388608 0 +( 720 1316 32 ) ( 720 1324 32 ) ( 720 1320 192 ) floors/dr_st_m3 72 0 0 1 0.500000 0 8388608 0 +} +// brush 420 +{ +( 672 1304 160 ) ( 672 1312 160 ) ( 800 1312 160 ) bricks/b_pv_v1c -32 -32 0 1 1 0 0 0 +( 672 1176 224 ) ( 800 1176 224 ) ( 800 1176 96 ) bricks/b_pv_v1c -32 32 0 1 1 0 0 0 +( 848 1344 224 ) ( 848 1352 224 ) ( 848 1352 96 ) bricks/b_pv_v1c 32 32 0 1 1 0 0 0 +( 784 1184 224 ) ( 656 1184 224 ) ( 656 1184 96 ) bricks/b_pv_v1c 44 32 0 1 1 0 0 0 +( 656 1304 128 ) ( 696 1304 128 ) ( 676 1312 128 ) bricks/b_pv_v1c 34 -32 0 1 1 0 0 0 +( 720 1328 128 ) ( 720 1336 128 ) ( 720 1332 288 ) bricks/b_pv_v1c 32 32 0 1 1 0 0 0 +} +// brush 421 +{ +( 672 1304 64 ) ( 672 1312 64 ) ( 800 1312 64 ) bricks/b_pv_v1c -32 -32 0 1 1 0 0 0 +( 672 1176 128 ) ( 800 1176 128 ) ( 800 1176 0 ) bricks/b_pv_v1c -32 32 0 1 1 0 0 0 +( 848 1344 128 ) ( 848 1352 128 ) ( 848 1352 0 ) bricks/b_pv_v1c 32 32 0 1 1 0 0 0 +( 792 1184 128 ) ( 664 1184 128 ) ( 664 1184 0 ) bricks/b_pv_v1c 44 32 0 1 1 0 0 0 +( 656 1304 32 ) ( 696 1304 32 ) ( 676 1312 32 ) bricks/b_pv_v1c -32 -32 0 1 1 0 0 0 +( 720 1328 32 ) ( 720 1336 32 ) ( 720 1332 192 ) bricks/b_pv_v1c 32 32 0 1 1 0 0 0 +} +// brush 422 +{ +( 512 1304 160 ) ( 512 1312 160 ) ( 640 1312 160 ) bricks/b_pv_v1c -32 -32 0 1 1 0 0 0 +( 512 1176 128 ) ( 640 1176 128 ) ( 640 1176 0 ) bricks/b_pv_v1c -32 32 0 1 1 0 0 0 +( 720 1344 96 ) ( 720 1352 96 ) ( 720 1352 -32 ) bricks/b_pv_v1c -32 113 270 1 1 0 0 0 +( 648 1184 128 ) ( 520 1184 128 ) ( 520 1184 0 ) bricks/b_pv_v1c 44 32 0 1 1 0 0 0 +( 496 1304 32 ) ( 536 1304 32 ) ( 516 1312 32 ) bricks/b_pv_v1c -32 -32 0 1 1 0 0 0 +( 640 1304 0 ) ( 640 1312 0 ) ( 640 1308 160 ) bricks/b_pv_v1c 32 32 0 1 1 0 0 0 +} +// brush 423 +{ +( 800 1304 160 ) ( 800 1312 160 ) ( 928 1312 160 ) bricks/b_pv_v1c 0 -64 0 1 1 0 0 0 +( 800 1176 128 ) ( 928 1176 128 ) ( 928 1176 0 ) bricks/b_pv_v1c 0 32 0 1 1 0 0 0 +( 896 1328 96 ) ( 896 1336 96 ) ( 896 1336 -32 ) bricks/b_pv_v1c -32 32 0 1 1 0 0 0 +( 916 1184 128 ) ( 788 1184 128 ) ( 788 1184 0 ) bricks/b_pv_v1c 44 32 0 1 1 0 0 0 +( 784 1304 32 ) ( 824 1304 32 ) ( 804 1312 32 ) bricks/b_pv_v1c 0 -64 0 1 1 0 0 0 +( 848 1328 32 ) ( 848 1336 32 ) ( 848 1332 192 ) bricks/b_pv_v1c -32 113 270 1 1 0 0 0 +} +// brush 424 +{ +( 480 1464 96 ) ( 480 1472 96 ) ( 608 1472 96 ) bricks/b_sr_20a 32 32 0 1 1 0 0 0 +( 488 1312 128 ) ( 616 1312 128 ) ( 616 1312 0 ) bricks/b_sr_20a 32 32 0 1 1 0 0 0 +( 640 1472 96 ) ( 640 1480 96 ) ( 640 1480 -32 ) bricks/b_sr_20a 32 32 0 1 1 0 0 0 +( 608 1472 128 ) ( 480 1472 128 ) ( 480 1472 0 ) bricks/b_sr_20a 32 32 0 1 1 0 0 0 +( 464 1464 32 ) ( 504 1464 32 ) ( 484 1472 32 ) bricks/b_sr_20a 32 32 0 1 1 0 0 0 +( 576 1456 32 ) ( 576 1464 32 ) ( 576 1460 192 ) bricks/b_sr_20a 32 32 0 1 1 0 0 0 +} +// brush 425 +{ +( 800 1464 96 ) ( 800 1472 96 ) ( 928 1472 96 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 800 1152 128 ) ( 928 1152 128 ) ( 928 1152 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 960 1472 128 ) ( 960 1480 128 ) ( 960 1480 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 928 1472 128 ) ( 800 1472 128 ) ( 800 1472 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 784 1464 32 ) ( 824 1464 32 ) ( 804 1472 32 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 896 1328 0 ) ( 896 1336 0 ) ( 896 1332 160 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +} +// brush 426 +{ +( 896 1440 0 ) ( 640 1440 0 ) ( 640 1280 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 640 1280 32 ) ( 640 1440 32 ) ( 896 1440 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 648 1216 32 ) ( 904 1216 32 ) ( 904 1216 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 864 1280 32 ) ( 864 1440 32 ) ( 864 1440 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 896 1408 32 ) ( 640 1408 32 ) ( 640 1408 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 672 1440 32 ) ( 672 1280 32 ) ( 672 1280 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +} +// brush 427 +{ +( 1923 1245 140 ) ( 1917 1245 140 ) ( 1917 1239 140 ) props/barrel_v2 0 26 0 1 1 134217728 0 0 +( 1917 1239 142 ) ( 1917 1245 142 ) ( 1923 1245 142 ) props/barrel_v2 0 26 0 1 1 134217728 0 0 +( 1919 1240 140 ) ( 1919 1240 142 ) ( 1921 1240 142 ) props/barrel_v2 0 16 0 1 1 134217728 0 0 +( 1922 1243 142 ) ( 1922 1243 140 ) ( 1922 1241 140 ) props/barrel_v2 -26 16 0 1 1 134217728 0 0 +( 1921 1244 140 ) ( 1921 1244 142 ) ( 1919 1244 142 ) props/barrel_v2 0 16 0 1 1 134217728 0 0 +( 1918 1241 142 ) ( 1918 1241 140 ) ( 1917 1242 140 ) props/barrel_v2 -26 16 0 1 1 134217728 0 0 +( 1917 1242 142 ) ( 1917 1242 140 ) ( 1919 1244 140 ) props/barrel_v2 -26 16 0 1 1 134217728 0 0 +( 1922 1243 140 ) ( 1922 1243 142 ) ( 1921 1244 142 ) props/barrel_v2 -26 16 0 1 1 134217728 0 0 +( 1921 1240 140 ) ( 1921 1240 142 ) ( 1922 1241 142 ) props/barrel_v2 -26 16 0 1 1 134217728 0 0 +( 1918 1238 140 ) ( 1918 1243 140 ) ( 1918 1241 142 ) props/barrel_v2 -26 16 0 1 1 134217728 0 0 +} +// brush 428 +{ +( 1320 896 32 ) ( 1248 896 32 ) ( 1248 880 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1248 880 40 ) ( 1248 896 40 ) ( 1320 896 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1248 880 56 ) ( 1320 880 56 ) ( 1320 880 8 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1320 880 56 ) ( 1320 896 56 ) ( 1320 896 8 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1320 896 56 ) ( 1248 896 56 ) ( 1248 896 8 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1304 896 56 ) ( 1304 880 56 ) ( 1304 880 8 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 429 +{ +( 1320 896 56 ) ( 1248 896 56 ) ( 1248 880 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1248 880 80 ) ( 1248 896 80 ) ( 1320 896 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1248 880 80 ) ( 1320 880 80 ) ( 1320 880 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1320 880 80 ) ( 1320 896 80 ) ( 1320 896 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1320 896 80 ) ( 1248 896 80 ) ( 1248 896 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1304 896 80 ) ( 1304 880 80 ) ( 1304 880 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 430 +{ +( 1376 880 56 ) ( 1296 880 56 ) ( 1296 896 56 ) bricks/c_pv_m2 -127 0 -90 1 1 0 0 0 +( 1296 896 40 ) ( 1296 880 40 ) ( 1376 880 40 ) bricks/c_pv_m2 -127 0 -90 1 1 0 0 0 +( 1320 888 56 ) ( 1320 888 8 ) ( 1320 872 8 ) bricks/c_pv_m2 0 8 -180 1 -1 0 0 0 +( 1296 896 56 ) ( 1296 896 8 ) ( 1376 896 8 ) common/li_sr_v27 8 8 0 1 1 0 1 15000 +( 1304 880 56 ) ( 1304 880 8 ) ( 1304 896 8 ) bricks/c_pv_m2 0 8 -180 1 -1 0 0 0 +( 1384 880 56 ) ( 1384 880 8 ) ( 1304 880 8 ) bricks/c_pv_m2 -96 8 0 1 1 0 0 0 +} +// brush 431 +{ +( 1304 896 32 ) ( 1232 896 32 ) ( 1232 880 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1232 880 80 ) ( 1232 896 80 ) ( 1304 896 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1232 880 80 ) ( 1304 880 80 ) ( 1304 880 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1304 880 80 ) ( 1304 896 80 ) ( 1304 896 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1304 896 80 ) ( 1232 896 80 ) ( 1232 896 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1232 896 80 ) ( 1232 880 80 ) ( 1232 880 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 432 +{ +( 1024 976 40 ) ( 1008 976 40 ) ( 1008 896 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1008 896 56 ) ( 1008 976 56 ) ( 1024 976 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1000 952 88 ) ( 1016 952 88 ) ( 1016 952 40 ) bricks/c_pv_m2 0 8 0 1 1 0 0 0 +( 1024 896 88 ) ( 1024 976 88 ) ( 1024 976 40 ) common/li_sr_v27 -8 8 0 1 1 0 1 15000 +( 1024 968 88 ) ( 1008 968 88 ) ( 1008 968 40 ) bricks/c_pv_m2 0 8 0 1 1 0 0 0 +( 1008 968 88 ) ( 1008 888 88 ) ( 1008 888 40 ) bricks/c_pv_m2 0 8 0 1 1 0 0 0 +} +// brush 433 +{ +( 1024 976 56 ) ( 1008 976 56 ) ( 1008 896 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1008 896 80 ) ( 1008 976 80 ) ( 1024 976 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1000 952 112 ) ( 1016 952 112 ) ( 1016 952 64 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1024 896 112 ) ( 1024 976 112 ) ( 1024 976 64 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1024 968 112 ) ( 1008 968 112 ) ( 1008 968 64 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1008 968 112 ) ( 1008 888 112 ) ( 1008 888 64 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 434 +{ +( 1024 976 32 ) ( 1008 976 32 ) ( 1008 896 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1008 896 40 ) ( 1008 976 40 ) ( 1024 976 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1000 952 80 ) ( 1016 952 80 ) ( 1016 952 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1024 896 80 ) ( 1024 976 80 ) ( 1024 976 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1024 968 80 ) ( 1008 968 80 ) ( 1008 968 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1008 968 80 ) ( 1008 888 80 ) ( 1008 888 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 435 +{ +( 1024 960 32 ) ( 1008 960 32 ) ( 1008 880 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1008 880 80 ) ( 1008 960 80 ) ( 1024 960 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1008 880 80 ) ( 1024 880 80 ) ( 1024 880 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1024 880 80 ) ( 1024 960 80 ) ( 1024 960 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1024 952 80 ) ( 1008 952 80 ) ( 1008 952 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1008 952 80 ) ( 1008 872 80 ) ( 1008 872 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 436 +{ +( 1921 1235 246 ) ( 1919 1235 246 ) ( 1919 1233 246 ) metals/mt_pv_m26y -64 18 0 1 1 134217728 0 0 +( 1919 1233 248 ) ( 1919 1235 248 ) ( 1921 1235 248 ) metals/mt_pv_m26y -64 18 0 1 1 134217728 0 0 +( 1919 1016 122 ) ( 1921 1016 122 ) ( 1921 1016 120 ) metals/mt_pv_m26y -64 -6 0 1 1 134217728 0 0 +( 1921 1185 122 ) ( 1921 1187 122 ) ( 1921 1187 120 ) metals/mt_pv_m26y -18 -6 0 1 1 134217728 0 0 +( 1921 1236 122 ) ( 1919 1236 122 ) ( 1919 1236 120 ) metals/mt_pv_m26y -64 -6 0 1 1 134217728 0 0 +( 1919 1201 122 ) ( 1919 1199 122 ) ( 1919 1199 120 ) metals/mt_pv_m26y -18 -6 0 1 1 134217728 0 0 +} +// brush 437 +{ +( 1928 1248 242 ) ( 1911 1248 242 ) ( 1911 1235 242 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1911 1235 248 ) ( 1911 1248 248 ) ( 1928 1248 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1911 1236 245 ) ( 1928 1236 245 ) ( 1928 1236 117 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1926 1235 245 ) ( 1926 1248 245 ) ( 1926 1248 117 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1928 1248 245 ) ( 1911 1248 245 ) ( 1911 1248 117 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1914 1248 245 ) ( 1914 1235 245 ) ( 1914 1235 117 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1929 1242 122 ) ( 1923 1236 122 ) ( 1926 1239 124 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1923 1248 122 ) ( 1929 1242 122 ) ( 1926 1245 124 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1911 1242 122 ) ( 1917 1248 122 ) ( 1914 1245 124 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1917 1236 122 ) ( 1911 1242 122 ) ( 1914 1239 124 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 438 +{ +( 1925 1246 145 ) ( 1914 1246 145 ) ( 1914 1237 145 ) metals/mt_pv_m26y -64 56 0 0.500000 0.500000 134217728 0 0 +( 1914 1237 147 ) ( 1914 1246 147 ) ( 1925 1246 147 ) metals/mt_pv_m26y -64 56 0 0.500000 0.500000 134217728 0 0 +( 1914 1238 268 ) ( 1925 1238 268 ) ( 1925 1238 140 ) metals/mt_pv_m26y -64 56 0 0.500000 0.500000 134217728 0 0 +( 1924 1237 268 ) ( 1924 1246 268 ) ( 1924 1246 140 ) metals/mt_pv_m26y -64 56 0 0.500000 0.500000 134217728 0 0 +( 1925 1246 268 ) ( 1914 1246 268 ) ( 1914 1246 140 ) metals/mt_pv_m26y -64 56 0 0.500000 0.500000 134217728 0 0 +( 1916 1246 268 ) ( 1916 1237 268 ) ( 1916 1237 140 ) metals/mt_pv_m26y -64 56 0 0.500000 0.500000 134217728 0 0 +( 1926 1242 145 ) ( 1922 1238 145 ) ( 1924 1240 147 ) metals/mt_pv_m26y -64 56 0 0.500000 0.500000 134217728 0 0 +( 1922 1246 145 ) ( 1926 1242 145 ) ( 1924 1244 147 ) metals/mt_pv_m26y -64 56 0 0.500000 0.500000 134217728 0 0 +( 1914 1242 145 ) ( 1918 1246 145 ) ( 1916 1244 147 ) metals/mt_pv_m26y -64 56 0 0.500000 0.500000 134217728 0 0 +( 1918 1238 145 ) ( 1914 1242 145 ) ( 1916 1240 147 ) metals/mt_pv_m26y -64 56 0 0.500000 0.500000 134217728 0 0 +} +// brush 439 +{ +( 1921 1243 142 ) ( 1919 1243 142 ) ( 1919 1241 142 ) metals/mt_pv_m26y -64 56 0 0.500000 0.500000 134217728 0 0 +( 1919 1241 242 ) ( 1919 1243 242 ) ( 1921 1243 242 ) metals/mt_pv_m26y -64 56 0 0.500000 0.500000 134217728 0 0 +( 1919 1241 184 ) ( 1921 1241 184 ) ( 1921 1241 182 ) metals/mt_pv_m26y -64 56 0 0.500000 0.500000 134217728 0 0 +( 1921 1241 184 ) ( 1921 1243 184 ) ( 1921 1243 182 ) metals/mt_pv_m26y -64 56 0 0.500000 0.500000 134217728 0 0 +( 1921 1243 184 ) ( 1919 1243 184 ) ( 1919 1243 182 ) metals/mt_pv_m26y -64 56 0 0.500000 0.500000 134217728 0 0 +( 1919 1243 184 ) ( 1919 1241 184 ) ( 1919 1241 182 ) metals/mt_pv_m26y -64 56 0 0.500000 0.500000 134217728 0 0 +} +// brush 440 +{ +( 1552 1024 24 ) ( 1088 1024 24 ) ( 1088 960 24 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 1088 960 32 ) ( 1088 1024 32 ) ( 1552 1024 32 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 1536 960 32 ) ( 2000 960 32 ) ( 2000 960 24 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 2048 976 32 ) ( 2048 1040 32 ) ( 2048 1040 24 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 2040 1344 32 ) ( 1576 1344 32 ) ( 1576 1344 24 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 1984 1056 32 ) ( 1984 992 32 ) ( 1984 992 24 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +} +// brush 441 +{ +( 1965 1287 32 ) ( 1901 1292 32 ) ( 1897 1228 32 ) props/box_sr_m6 18 9 -4 0.500121 0.499991 0 134217728 0 +( 1897 1228 64 ) ( 1901 1292 64 ) ( 1965 1287 64 ) props/box_sr_m6 18 9 -4 0.500121 0.499991 0 134217728 0 +( 1897 1228 72 ) ( 1961 1223 72 ) ( 1961 1223 64 ) props/box_sr_m6 21 0 0 0.498657 0.500000 0 134217728 0 +( 1937 1233 72 ) ( 1942 1297 72 ) ( 1942 1297 64 ) props/box_sr_m6 -23 0 0 0.498657 0.500000 0 134217728 0 +( 1971 1255 72 ) ( 1907 1259 72 ) ( 1907 1259 64 ) props/box_sr_m6 17 0 0 0.498657 0.500000 0 134217728 0 +( 1909 1291 72 ) ( 1905 1227 72 ) ( 1905 1227 64 ) props/box_sr_m6 -28 0 0 0.498901 0.500000 0 134217728 0 +} +// brush 442 +{ +( 1955 1273 64 ) ( 1891 1275 64 ) ( 1889 1211 64 ) props/box_w_m2 11 -3 -2 1.000008 1.000008 0 134217728 0 +( 1889 1211 72 ) ( 1891 1275 72 ) ( 1955 1273 72 ) props/box_w_m2 31 -6 0 1 1 0 134217728 0 +( 1889 1211 96 ) ( 1953 1209 96 ) ( 1953 1209 88 ) props/box_w_m1 30 0 0 0.999634 1 0 134217728 0 +( 1953 1209 96 ) ( 1955 1273 96 ) ( 1955 1273 88 ) props/box_w_m1 5 0 0 0.999756 1 0 134217728 0 +( 1955 1273 96 ) ( 1891 1275 96 ) ( 1891 1275 88 ) props/box_w_m1 28 0 0 0.999268 1 0 134217728 0 +( 1891 1275 96 ) ( 1889 1211 96 ) ( 1889 1211 88 ) props/box_w_m1 3 0 0 0.999268 1 0 134217728 0 +} +// brush 443 +{ +( 1088 1088 32 ) ( 1024 1088 32 ) ( 1024 1024 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1024 1024 160 ) ( 1024 1088 160 ) ( 1088 1088 160 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 1088 1024 160 ) ( 1088 1088 160 ) ( 1088 1088 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1088 1088 160 ) ( 1024 1088 160 ) ( 1024 1088 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1024 1096 160 ) ( 1024 1032 160 ) ( 1024 1032 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1048 1024 32 ) ( 1024 1024 32 ) ( 1036 1024 160 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 444 +{ +( 1216 1064 32 ) ( 1152 1064 32 ) ( 1152 1000 32 ) props/box_sr_m6 0 8 0 1 1 0 134217728 0 +( 1152 1000 96 ) ( 1152 1064 96 ) ( 1216 1064 96 ) props/box_sr_m5 0 -24 0 1 1 0 134217728 0 +( 1216 1000 160 ) ( 1216 1064 160 ) ( 1216 1064 32 ) props/box_sr_m6 24 -32 0 1 1 0 134217728 0 +( 1216 1064 160 ) ( 1152 1064 160 ) ( 1152 1064 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1152 1072 160 ) ( 1152 1008 160 ) ( 1152 1008 32 ) props/box_sr_m6 24 -32 0 1 1 0 134217728 0 +( 1176 1000 32 ) ( 1152 1000 32 ) ( 1164 1000 160 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 445 +{ +( 1152 1088 32 ) ( 1088 1088 32 ) ( 1088 1024 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1088 1024 96 ) ( 1088 1088 96 ) ( 1152 1088 96 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 1152 1024 160 ) ( 1152 1088 160 ) ( 1152 1088 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1152 1088 160 ) ( 1088 1088 160 ) ( 1088 1088 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1088 1088 160 ) ( 1088 1024 160 ) ( 1088 1024 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1112 1024 32 ) ( 1088 1024 32 ) ( 1100 1024 160 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 446 +{ +( 2112 3088 0 ) ( 1984 3088 0 ) ( 1984 3072 0 ) bricks/b_sr_20ag 0 0 0 1 1 0 0 0 +( 1984 3072 128 ) ( 1984 3088 128 ) ( 2112 3088 128 ) bricks/b_sr_20ag 0 0 0 1 1 0 0 0 +( 1984 3072 128 ) ( 2112 3072 128 ) ( 2112 3072 0 ) bricks/b_sr_20ag 0 0 0 1 1 0 0 0 +( 2112 3072 128 ) ( 2112 3088 128 ) ( 2112 3088 0 ) bricks/b_sr_20ag 0 0 0 1 1 0 0 0 +( 2112 3088 128 ) ( 1984 3088 128 ) ( 1984 3088 0 ) bricks/b_sr_20ag 0 0 0 1 1 0 0 0 +( 2048 3080 128 ) ( 2048 3064 128 ) ( 2048 3064 0 ) bricks/b_sr_20ag 0 0 0 1 1 0 0 0 +} +// brush 447 +{ +( 3200 3528 160 ) ( 3200 3592 160 ) ( 2944 3592 160 ) common/li_sr_v17 -30 0 90 1 1 0 132 0 +( 2944 3592 480 ) ( 3200 3592 480 ) ( 3200 3528 480 ) common/li_sr_v17 0 -32 0 1 1 0 132 0 +( 2816 3576 0 ) ( 2816 3512 0 ) ( 2816 3512 -32 ) props/bld_rc_c4 54 -22 0 0.750000 0.750000 0 0 0 +( 2944 3584 0 ) ( 3200 3584 0 ) ( 3200 3584 -32 ) props/bld_rc_c4 -10 -22 0 0.750000 0.750000 0 0 0 +( 2944 3508 0 ) ( 2944 3572 0 ) ( 2944 3572 -32 ) props/bld_rc_c4 -68 -24 0 1 1 0 0 0 +( 3216 3680 0 ) ( 2960 3680 0 ) ( 2960 3680 -32 ) props/bld_rc_c4 -10 -22 0 0.750000 0.750000 0 0 0 +} +// brush 448 +{ +( 3136 3176 160 ) ( 3136 3240 160 ) ( 2880 3240 160 ) props/bld_rc_c2 0 0 0 1 1 0 0 0 +( 2880 3240 512 ) ( 3136 3240 512 ) ( 3136 3176 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2752 3224 0 ) ( 2752 3160 0 ) ( 2752 3160 -32 ) props/bld_rc_c2 0 0 0 1 1 0 0 0 +( 2880 3200 0 ) ( 3136 3200 0 ) ( 3136 3200 -32 ) props/bld_rc_c2 64 0 0 1 1 0 0 0 +( 2880 3156 0 ) ( 2880 3220 0 ) ( 2880 3220 -32 ) props/bld_rc_c2 0 0 0 1 1 0 0 0 +( 3152 3456 0 ) ( 2896 3456 0 ) ( 2896 3456 -32 ) props/bld_rc_c2 64 0 0 1 1 0 0 0 +} +// brush 449 +{ +( 3136 2664 160 ) ( 3136 2728 160 ) ( 2880 2728 160 ) common/li_sr_v17 -63 0 90 1 1 0 132 0 +( 2880 2728 424 ) ( 3136 2728 424 ) ( 3136 2664 424 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2816 2712 0 ) ( 2816 2648 0 ) ( 2816 2648 -32 ) props/bld_rc_c4 0 -32 0 1 1 0 0 0 +( 2880 2688 0 ) ( 3136 2688 0 ) ( 3136 2688 -32 ) props/bld_rc_c4 -28 -32 0 1 1 0 0 0 +( 2880 2644 0 ) ( 2880 2708 0 ) ( 2880 2708 -32 ) props/bld_rc_c4 -100 -24 0 1 1 0 0 0 +( 3168 3072 0 ) ( 2912 3072 0 ) ( 2912 3072 -32 ) props/bld_rc_c4 -34 -32 0 1 1 0 0 0 +} +// brush 450 +{ +( 3136 2536 160 ) ( 3136 2600 160 ) ( 2880 2600 160 ) common/li_sr_v17 -63 0 90 1 1 0 132 0 +( 2880 2600 480 ) ( 3136 2600 480 ) ( 3136 2536 480 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2752 2584 0 ) ( 2752 2520 0 ) ( 2752 2520 -32 ) props/bld_rc_c4 0 -32 0 1 1 0 0 0 +( 2880 2560 0 ) ( 3136 2560 0 ) ( 3136 2560 -32 ) props/bld_rc_c4 -28 -32 0 1 1 0 0 0 +( 2880 2516 0 ) ( 2880 2580 0 ) ( 2880 2580 -32 ) props/bld_rc_c4 -100 -24 0 1 1 0 0 0 +( 3152 2688 0 ) ( 2896 2688 0 ) ( 2896 2688 -32 ) props/bld_rc_c4 -28 -32 0 1 1 0 0 0 +} +// brush 451 +{ +( 2928 2240 192 ) ( 2816 2240 192 ) ( 2816 2048 192 ) props/bld_rc_c4 96 8 0 1 1 0 0 0 +( 2816 2048 512 ) ( 2816 2240 512 ) ( 2928 2240 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2816 2048 512 ) ( 2928 2048 512 ) ( 2928 2048 192 ) props/bld_rc_c4 96 8 0 1 1 0 0 0 +( 2928 2048 512 ) ( 2928 2240 512 ) ( 2928 2240 192 ) props/bld_rc_c4 96 8 0 1 1 0 0 0 +( 2928 2240 512 ) ( 2816 2240 512 ) ( 2816 2240 192 ) props/bld_rc_c4 88 8 0 1 1 0 0 0 +( 2816 2240 512 ) ( 2816 2048 512 ) ( 2816 2048 192 ) props/bld_rc_c4 96 8 0 1 1 0 0 0 +} +// brush 452 +{ +( -1464 2048 0 ) ( -1848 2048 0 ) ( -1848 2032 0 ) bricks/c_pv_m2pp 0 0 0 1 1 0 0 0 +( -1848 2032 128 ) ( -1848 2048 128 ) ( -1464 2048 128 ) bricks/c_pv_m2pp 0 0 0 1 1 0 0 0 +( -1848 2032 128 ) ( -1464 2032 128 ) ( -1464 2032 0 ) bricks/c_pv_m2pp 0 0 0 1 1 0 0 0 +( -1464 2048 128 ) ( -1848 2048 128 ) ( -1848 2048 0 ) bricks/c_pv_m2gg 66 0 0 1 1 0 0 0 +( -1600 2056 128 ) ( -1600 2040 128 ) ( -1600 2040 0 ) bricks/c_pv_m2pp 0 0 0 1 1 0 0 0 +( -1472 2048 0 ) ( -1472 2024 0 ) ( -1472 2036 128 ) bricks/c_pv_m2pp 0 0 0 1 1 0 0 0 +} +// brush 453 +{ +( 1184 2752 32 ) ( 1168 2752 32 ) ( 1168 2496 32 ) floors/dr_st_m1d 64 32 0 1 1 0 0 0 +( 1184 2496 144 ) ( 1184 2752 144 ) ( 1184 2752 16 ) floors/dr_st_m1d 64 32 0 1 1 0 0 0 +( 1168 2752 144 ) ( 1168 2496 144 ) ( 1168 2496 16 ) floors/dr_st_m1d 64 32 0 1 1 0 0 0 +( 1184 2496 144 ) ( 1168 2496 144 ) ( 1176 2752 144 ) floors/dr_st_m1d 64 32 0 1 1 0 0 0 +( 1160 2624 32 ) ( 1192 2624 32 ) ( 1176 2624 160 ) floors/dr_st_m1d 64 32 0 1 1 0 0 0 +( 1184 2560 32 ) ( 1168 2560 32 ) ( 1176 2560 160 ) floors/dr_st_m1d 64 32 0 1 1 0 0 0 +} +// brush 454 +{ +( 1264 1544 424 ) ( 624 1544 424 ) ( 624 1520 424 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 624 1544 448 ) ( 1264 1544 448 ) ( 1264 1520 448 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 624 1520 472 ) ( 1088 1520 472 ) ( 1088 1520 408 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 624 1548 408 ) ( 1264 1548 408 ) ( 1264 1548 448 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 624 1536 472 ) ( 624 1520 472 ) ( 624 1520 408 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 1264 1560 408 ) ( 1264 1512 408 ) ( 1264 1536 472 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +} +// brush 455 +{ +( 1144 1344 543 ) ( 1120 1344 543 ) ( 1120 1456 543 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1248 1336 112 ) ( 1248 1448 112 ) ( 1248 1448 80 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 1136 1664 176 ) ( 1112 1664 176 ) ( 1112 1664 144 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 1120 1456 112 ) ( 1120 1344 112 ) ( 1120 1344 80 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 1128 1536 -32 ) ( 1120 1536 -32 ) ( 1124 1536 32 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 1184 1536 416 ) ( 1184 1552 416 ) ( 1120 1544 416 ) bricks/b_sr_20b 0 -96 0 1 1 0 0 0 +} +// brush 456 +{ +( 1144 1600 543 ) ( 1120 1600 543 ) ( 1120 1712 543 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1248 1592 112 ) ( 1248 1704 112 ) ( 1248 1704 80 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 1136 1920 176 ) ( 1112 1920 176 ) ( 1112 1920 144 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 1120 1712 112 ) ( 1120 1600 112 ) ( 1120 1600 80 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 1128 1792 -32 ) ( 1120 1792 -32 ) ( 1124 1792 32 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 1184 1792 416 ) ( 1184 1808 416 ) ( 1120 1800 416 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +} +// brush 457 +{ +( 1128 2432 416 ) ( 1120 2432 416 ) ( 1120 2304 416 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 1120 2304 543 ) ( 1120 2432 543 ) ( 1128 2432 543 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1120 2304 424 ) ( 1128 2304 424 ) ( 1128 2304 248 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1128 2304 423 ) ( 1128 2432 423 ) ( 1128 2432 247 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 1128 2432 424 ) ( 1120 2432 424 ) ( 1120 2432 248 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 1120 2432 424 ) ( 1120 2304 424 ) ( 1120 2304 248 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +} +// brush 458 +{ +( 1144 1856 543 ) ( 1120 1856 543 ) ( 1120 1968 543 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1248 1848 112 ) ( 1248 1960 112 ) ( 1248 1960 80 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 1136 2176 176 ) ( 1112 2176 176 ) ( 1112 2176 144 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 1120 1968 112 ) ( 1120 1856 112 ) ( 1120 1856 80 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 1128 2048 -32 ) ( 1120 2048 -32 ) ( 1124 2048 32 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 1184 2048 416 ) ( 1184 2064 416 ) ( 1120 2056 416 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +} +// brush 459 +{ +( 864 1527 384 ) ( 864 1543 384 ) ( 1328 1543 384 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 760 1535 384 ) ( 1224 1535 384 ) ( 1224 1535 256 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 1329 1536 384 ) ( 865 1536 384 ) ( 865 1536 256 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 1040 1567 384 ) ( 1040 1551 384 ) ( 1040 1551 256 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 1616 1527 288 ) ( 1648 1527 288 ) ( 1632 1543 288 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 1120 1535 288 ) ( 1120 1519 288 ) ( 1120 1527 384 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +} +// brush 460 +{ +( 464 1527 384 ) ( 464 1543 384 ) ( 928 1543 384 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 360 1535 384 ) ( 824 1535 384 ) ( 824 1535 256 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 929 1536 384 ) ( 465 1536 384 ) ( 465 1536 256 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 640 1567 384 ) ( 640 1551 384 ) ( 640 1551 256 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 1216 1527 288 ) ( 1248 1527 288 ) ( 1232 1543 288 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 720 1535 288 ) ( 720 1519 288 ) ( 720 1527 384 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +} +// brush 461 +{ +( 544 1527 384 ) ( 544 1543 384 ) ( 1008 1543 384 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 440 1535 384 ) ( 904 1535 384 ) ( 904 1535 256 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 1009 1536 384 ) ( 545 1536 384 ) ( 545 1536 256 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 720 1567 384 ) ( 720 1551 384 ) ( 720 1551 256 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 1296 1527 288 ) ( 1328 1527 288 ) ( 1312 1543 288 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 800 1535 288 ) ( 800 1519 288 ) ( 800 1527 384 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +} +// brush 462 +{ +( 784 1527 384 ) ( 784 1543 384 ) ( 1248 1543 384 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 680 1535 384 ) ( 1144 1535 384 ) ( 1144 1535 256 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 1249 1536 384 ) ( 785 1536 384 ) ( 785 1536 256 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 960 1567 384 ) ( 960 1551 384 ) ( 960 1551 256 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 1536 1527 288 ) ( 1568 1527 288 ) ( 1552 1543 288 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 1040 1535 288 ) ( 1040 1519 288 ) ( 1040 1527 384 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +} +// brush 463 +{ +( 784 1520 384 ) ( 784 1536 384 ) ( 1248 1536 384 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 480 1520 384 ) ( 944 1520 384 ) ( 944 1520 256 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 1248 1535 384 ) ( 784 1535 384 ) ( 784 1535 256 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 1040 1559 384 ) ( 1040 1543 384 ) ( 1040 1543 256 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 1536 1520 288 ) ( 1568 1520 288 ) ( 1552 1536 288 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 1120 1536 288 ) ( 1120 1520 288 ) ( 1120 1528 384 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +} +// brush 464 +{ +( 704 1520 384 ) ( 704 1536 384 ) ( 1168 1536 384 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 400 1520 384 ) ( 864 1520 384 ) ( 864 1520 256 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 1168 1535 384 ) ( 704 1535 384 ) ( 704 1535 256 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 960 1559 384 ) ( 960 1543 384 ) ( 960 1543 256 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 1456 1520 288 ) ( 1488 1520 288 ) ( 1472 1536 288 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 1040 1535 288 ) ( 1040 1519 288 ) ( 1040 1527 384 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +} +// brush 465 +{ +( 384 1520 384 ) ( 384 1536 384 ) ( 848 1536 384 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 80 1520 384 ) ( 544 1520 384 ) ( 544 1520 256 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 848 1535 384 ) ( 384 1535 384 ) ( 384 1535 256 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 640 1560 384 ) ( 640 1544 384 ) ( 640 1544 256 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 1136 1520 288 ) ( 1168 1520 288 ) ( 1152 1536 288 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 720 1535 288 ) ( 720 1519 288 ) ( 720 1527 384 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +} +// brush 466 +{ +( 464 1520 384 ) ( 464 1536 384 ) ( 928 1536 384 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 160 1520 384 ) ( 624 1520 384 ) ( 624 1520 256 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 928 1535 384 ) ( 464 1535 384 ) ( 464 1535 256 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 720 1559 384 ) ( 720 1543 384 ) ( 720 1543 256 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 1216 1520 288 ) ( 1248 1520 288 ) ( 1232 1536 288 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 800 1535 288 ) ( 800 1519 288 ) ( 800 1527 384 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +} +// brush 467 +{ +( 384 448 64 ) ( -64 448 64 ) ( -64 432 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 432 192 ) ( 384 432 192 ) ( 384 432 64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( 384 448 192 ) ( -64 448 192 ) ( -64 448 64 ) bricks/b_sr_20 0 -64 0 1 1 0 0 0 +( -32 432 0 ) ( -32 448 0 ) ( -32 440 192 ) bricks/b_sr_20 0 -64 0 1 1 0 0 0 +( 16 432 176 ) ( -32 432 176 ) ( -8 448 176 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 0 448 0 ) ( 0 432 0 ) ( 0 440 160 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +} +// brush 468 +{ +( 384 448 64 ) ( -64 448 64 ) ( -64 432 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 432 192 ) ( 384 432 192 ) ( 384 432 64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( 384 448 192 ) ( -64 448 192 ) ( -64 448 64 ) bricks/b_sr_20 0 -64 0 1 1 0 0 0 +( 96 448 -32 ) ( 96 432 -32 ) ( 96 440 160 ) bricks/b_sr_20 0 -64 0 1 1 0 0 0 +( 16 432 176 ) ( -32 432 176 ) ( -8 448 176 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 64 432 -32 ) ( 64 448 -32 ) ( 64 440 128 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +} +// brush 469 +{ +( 384 400 64 ) ( -64 400 64 ) ( -64 384 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 384 176 ) ( -64 400 176 ) ( 384 400 176 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 384 192 ) ( 384 384 192 ) ( 384 384 64 ) bricks/b_sr_20 0 -64 0 1 1 0 0 0 +( 128 400 64 ) ( 128 384 64 ) ( 128 392 192 ) bricks/b_sr_20 0 -64 0 1 1 0 0 0 +( 96 384 -32 ) ( 96 400 -32 ) ( 96 392 160 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( 112 448 0 ) ( 120 448 0 ) ( 116 448 192 ) bricks/b_sr_20 0 -64 0 1 1 0 0 0 +} +// brush 470 +{ +( 384 400 64 ) ( -64 400 64 ) ( -64 384 64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( -64 384 176 ) ( -64 400 176 ) ( 384 400 176 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( -64 384 192 ) ( 384 384 192 ) ( 384 384 64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( 384 448 192 ) ( -64 448 192 ) ( -64 448 64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( -80 400 192 ) ( -80 384 192 ) ( -80 384 64 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -32 400 0 ) ( -32 384 0 ) ( -32 392 192 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +} +// brush 471 +{ +( 720 224 320 ) ( 704 224 320 ) ( 704 64 320 ) props/w_sr_m4a 0 64 0 1 -1 0 1 200 +( 704 64 448 ) ( 704 224 448 ) ( 720 224 448 ) props/w_sr_m4a 0 64 0 1 -1 0 1 200 +( 720 160 400 ) ( 720 320 400 ) ( 720 320 272 ) props/w_sr_m4a 0 64 0 1 -1 0 1 200 +( 712 208 400 ) ( 712 48 400 ) ( 712 48 272 ) props/w_sr_m4a 0 64 0 1 -1 0 1 200 +( 704 160 336 ) ( 720 160 336 ) ( 712 160 464 ) props/w_sr_m4a 0 64 0 1 -1 0 1 200 +( 720 64 336 ) ( 704 64 336 ) ( 712 64 464 ) props/w_sr_m4a 0 64 0 1 -1 0 1 200 +} +// brush 472 +{ +( 720 256 432 ) ( 704 256 432 ) ( 704 96 432 ) props/w_sr_m4a 0 64 0 1 -1 0 1 200 +( 704 96 448 ) ( 704 256 448 ) ( 720 256 448 ) props/w_sr_m4a 0 64 0 1 -1 0 1 200 +( 720 192 400 ) ( 720 352 400 ) ( 720 352 272 ) props/w_sr_m4a 0 64 0 1 -1 0 1 200 +( 712 256 400 ) ( 712 96 400 ) ( 712 96 272 ) props/w_sr_m4a 0 64 0 1 -1 0 1 200 +( 704 192 336 ) ( 720 192 336 ) ( 712 192 464 ) props/w_sr_m4a 0 64 0 1 -1 0 1 200 +( 712 160 336 ) ( 696 160 336 ) ( 704 160 464 ) props/w_sr_m4a 0 64 0 1 -1 0 1 200 +} +// brush 473 +{ +( 544 568 512 ) ( 512 568 512 ) ( 512 528 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 512 528 576 ) ( 512 568 576 ) ( 544 568 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 512 528 576 ) ( 544 528 576 ) ( 544 528 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 544 528 576 ) ( 544 568 576 ) ( 544 568 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 544 568 576 ) ( 512 568 576 ) ( 512 568 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 512 568 576 ) ( 512 528 576 ) ( 512 528 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 474 +{ +( -80 576 576 ) ( -128 576 576 ) ( -128 512 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -128 512 584 ) ( -128 576 584 ) ( -80 576 584 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -128 512 576 ) ( -80 512 576 ) ( -80 512 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -64 512 576 ) ( -64 576 576 ) ( -64 576 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -80 576 576 ) ( -128 576 576 ) ( -128 576 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -128 576 576 ) ( -128 512 576 ) ( -128 512 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 475 +{ +( -88 592 448 ) ( -128 592 448 ) ( -128 576 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -128 576 576 ) ( -128 592 576 ) ( -88 592 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -128 576 576 ) ( -88 576 576 ) ( -88 576 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -80 576 576 ) ( -80 592 576 ) ( -80 592 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -88 592 576 ) ( -128 592 576 ) ( -128 592 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -128 592 576 ) ( -128 576 576 ) ( -128 576 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 476 +{ +( -128 592 448 ) ( -144 592 448 ) ( -144 528 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -144 528 576 ) ( -144 592 576 ) ( -128 592 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -144 528 576 ) ( -128 528 576 ) ( -128 528 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -128 528 576 ) ( -128 592 576 ) ( -128 592 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -128 592 576 ) ( -144 592 576 ) ( -144 592 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -144 592 576 ) ( -144 528 576 ) ( -144 528 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 477 +{ +( -80 576 440 ) ( -128 576 440 ) ( -128 512 440 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -128 512 448 ) ( -128 576 448 ) ( -80 576 448 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -128 512 448 ) ( -80 512 448 ) ( -80 512 384 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -80 512 448 ) ( -80 576 448 ) ( -80 576 384 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -80 576 448 ) ( -128 576 448 ) ( -128 576 384 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -128 576 448 ) ( -128 512 448 ) ( -128 512 384 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 478 +{ +( 544 2752 448 ) ( 512 2752 448 ) ( 512 2680 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 512 2680 576 ) ( 512 2752 576 ) ( 544 2752 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 520 2660 576 ) ( 552 2660 576 ) ( 552 2660 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 544 2680 576 ) ( 544 2752 576 ) ( 544 2752 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 544 2752 576 ) ( 512 2752 576 ) ( 512 2752 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 512 2752 576 ) ( 512 2680 576 ) ( 512 2680 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 479 +{ +( 2936 3520 256 ) ( 2928 3520 256 ) ( 2928 2304 256 ) sprites/skyln_m1 -56 0 0 2 2 0 4096 0 +( 2928 2304 512 ) ( 2928 3520 512 ) ( 2936 3520 512 ) sprites/skyln_m1 -56 0 0 2 2 0 4096 0 +( 2912 2048 272 ) ( 2920 2048 272 ) ( 2920 2048 256 ) sprites/skyln_m1 -56 0 0 2 2 0 4096 0 +( 2936 2000 272 ) ( 2936 3216 272 ) ( 2936 3216 256 ) sprites/skyln_m1 0 0 0 2 2 0 4096 0 +( 2944 3584 272 ) ( 2936 3584 272 ) ( 2936 3584 256 ) sprites/skyln_m1 -56 0 0 2 2 0 4096 0 +( 2928 3440 272 ) ( 2928 2224 272 ) ( 2928 2224 256 ) sprites/skyln_m1 0 0 0 2 2 0 4096 0 +} +// brush 480 +{ +( -2264 2976 384 ) ( -2296 2976 384 ) ( -2296 2968 384 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -2296 2968 448 ) ( -2296 2976 448 ) ( -2264 2976 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -2296 2968 424 ) ( -2264 2968 424 ) ( -2264 2968 408 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -2240 2968 424 ) ( -2240 2976 424 ) ( -2240 2976 408 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -2264 2976 424 ) ( -2296 2976 424 ) ( -2296 2976 408 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -2296 2976 424 ) ( -2296 2968 424 ) ( -2296 2968 408 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 481 +{ +( -2264 2968 384 ) ( -2296 2968 384 ) ( -2296 2960 384 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -2296 2960 392 ) ( -2296 2968 392 ) ( -2264 2968 392 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -2264 2928 392 ) ( -2264 2928 384 ) ( -2304 2928 384 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -2264 2928 384 ) ( -2264 2928 392 ) ( -2240 2968 392 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -2264 2968 424 ) ( -2296 2968 424 ) ( -2296 2968 408 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -2304 2928 392 ) ( -2304 2928 384 ) ( -2296 2968 384 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 482 +{ +( 1168 272 256 ) ( 1152 272 256 ) ( 1152 0 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1152 0 384 ) ( 1152 272 384 ) ( 1168 272 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1152 -192 384 ) ( 1168 -192 384 ) ( 1168 -192 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1152 0 384 ) ( 1152 272 384 ) ( 1152 272 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1176 64 384 ) ( 1160 64 384 ) ( 1160 64 128 ) metals/m_pv_v5 -1 32 0 1 1 0 16777216 0 +( 1128 288 384 ) ( 1128 16 384 ) ( 1128 16 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 483 +{ +( 96 784 128 ) ( 32 784 128 ) ( 32 752 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 32 784 256 ) ( 96 784 256 ) ( 96 752 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -64 752 320 ) ( 320 752 320 ) ( 320 752 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 96 784 320 ) ( 32 784 320 ) ( 32 784 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 32 752 192 ) ( 32 768 192 ) ( 32 760 320 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 96 768 192 ) ( 96 752 192 ) ( 96 760 320 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 484 +{ +( 320 768 128 ) ( -64 768 128 ) ( -64 752 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -64 752 256 ) ( -64 768 256 ) ( 320 768 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -64 752 320 ) ( 320 752 320 ) ( 320 752 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 320 780 320 ) ( -64 780 320 ) ( -64 780 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 160 752 128 ) ( 160 768 128 ) ( 160 760 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 224 768 192 ) ( 224 752 192 ) ( 224 760 320 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 485 +{ +( 320 768 128 ) ( -64 768 128 ) ( -64 752 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -64 752 256 ) ( -64 768 256 ) ( 320 768 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -64 752 320 ) ( 320 752 320 ) ( 320 752 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 320 784 320 ) ( -64 784 320 ) ( -64 784 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 288 752 256 ) ( 288 768 256 ) ( 288 760 384 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 352 768 192 ) ( 352 752 192 ) ( 352 760 320 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 486 +{ +( 624 1527 384 ) ( 624 1543 384 ) ( 1088 1543 384 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 496 1535 384 ) ( 960 1535 384 ) ( 960 1535 256 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 1089 1536 384 ) ( 625 1536 384 ) ( 625 1536 256 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 800 1567 384 ) ( 800 1551 384 ) ( 800 1551 256 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 1376 1527 288 ) ( 1408 1527 288 ) ( 1392 1543 288 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 960 1543 288 ) ( 960 1527 288 ) ( 960 1535 384 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +} +// brush 487 +{ +( 1280 3456 0 ) ( 1096 3456 0 ) ( 1096 3328 0 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1096 3328 128 ) ( 1096 3456 128 ) ( 1280 3456 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1096 3312 128 ) ( 1280 3312 128 ) ( 1280 3312 -128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1280 3456 128 ) ( 1096 3456 128 ) ( 1096 3456 -128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1024 3456 128 ) ( 1024 3328 128 ) ( 1024 3328 -128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1088 3352 -128 ) ( 1088 3328 -128 ) ( 1088 3340 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 488 +{ +( 1600 3264 128 ) ( 1344 3264 128 ) ( 1344 3136 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1344 3136 256 ) ( 1344 3264 256 ) ( 1600 3264 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1600 3136 256 ) ( 1600 3264 256 ) ( 1600 3264 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1584 3456 256 ) ( 1328 3456 256 ) ( 1328 3456 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1280 3272 256 ) ( 1280 3144 256 ) ( 1280 3144 128 ) bricks/b_sr_20b -72 0 0 -1 1 0 0 0 +( 1304 3264 128 ) ( 1280 3264 128 ) ( 1292 3264 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 489 +{ +( 2096 3840 128 ) ( 2112 3840 128 ) ( 2112 3216 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 2096 3200 128 ) ( 2112 3200 128 ) ( 2112 3200 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 2112 3840 128 ) ( 2112 3840 0 ) ( 2112 3216 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 2104 3968 128 ) ( 2088 3968 128 ) ( 2088 3968 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 2096 3072 0 ) ( 2096 3072 128 ) ( 2096 2448 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 2096 3216 0 ) ( 2112 3216 0 ) ( 2104 4096 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 490 +{ +( 624 2304 576 ) ( 608 2304 576 ) ( 608 2064 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 608 2064 592 ) ( 608 2304 592 ) ( 624 2304 592 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 640 2064 592 ) ( 640 2304 592 ) ( 640 2304 528 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 384 2280 592 ) ( 384 2040 592 ) ( 384 2040 528 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 648 2048 528 ) ( 592 2048 528 ) ( 620 2048 592 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 624 2752 528 ) ( 656 2752 528 ) ( 640 2752 592 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 491 +{ +( 624 2816 448 ) ( 384 2816 448 ) ( 384 2752 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 384 2752 576 ) ( 384 2816 576 ) ( 624 2816 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 384 2752 576 ) ( 624 2752 576 ) ( 624 2752 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 624 2752 576 ) ( 624 2816 576 ) ( 624 2816 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 624 2816 576 ) ( 384 2816 576 ) ( 384 2816 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 384 2816 576 ) ( 384 2752 576 ) ( 384 2752 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 492 +{ +( 384 2112 448 ) ( 320 2112 448 ) ( 320 2064 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 320 2064 576 ) ( 320 2112 576 ) ( 384 2112 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 320 2064 576 ) ( 384 2064 576 ) ( 384 2064 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 384 2064 576 ) ( 384 2112 576 ) ( 384 2112 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 432 2752 576 ) ( 368 2752 576 ) ( 368 2752 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 320 2112 576 ) ( 320 2064 576 ) ( 320 2064 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 493 +{ +( 624 2304 440 ) ( 608 2304 440 ) ( 608 2064 440 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 608 2064 448 ) ( 608 2304 448 ) ( 624 2304 448 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 624 2064 448 ) ( 624 2304 448 ) ( 624 2304 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 384 2280 448 ) ( 384 2040 448 ) ( 384 2040 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 648 2064 384 ) ( 592 2064 384 ) ( 620 2064 448 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 624 2752 384 ) ( 656 2752 384 ) ( 640 2752 448 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +} +// brush 494 +{ +( 2216 2432 200 ) ( 2152 2432 200 ) ( 2152 2176 200 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2152 2176 520 ) ( 2152 2432 520 ) ( 2216 2432 520 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2168 2048 32 ) ( 2232 2048 32 ) ( 2232 2048 0 ) props/bld_rc_c4 -24 8 0 1 1 0 0 0 +( 2176 2176 32 ) ( 2176 2432 32 ) ( 2176 2432 0 ) props/bld_rc_c4 -24 8 0 1 1 0 0 0 +( 2236 2112 32 ) ( 2172 2112 32 ) ( 2172 2112 0 ) props/bld_rc_c4 28 8 0 1 1 0 0 0 +( 2064 2448 32 ) ( 2064 2192 32 ) ( 2064 2192 0 ) props/bld_rc_c4 -24 8 0 1 1 0 0 0 +} +// brush 495 +{ +( 2328 2432 192 ) ( 2264 2432 192 ) ( 2264 2176 192 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2264 2176 320 ) ( 2264 2432 320 ) ( 2328 2432 320 ) props/bld_rc_c4 0 0 0 1 1 0 0 0 +( 2280 2048 32 ) ( 2344 2048 32 ) ( 2344 2048 0 ) props/bld_rc_c4 0 0 0 1 1 0 0 0 +( 2504 2184 32 ) ( 2504 2440 32 ) ( 2504 2440 0 ) props/bld_rc_c4 0 0 0 1 1 0 0 0 +( 2344 2176 32 ) ( 2280 2176 32 ) ( 2280 2176 0 ) props/bld_rc_c4 -4 8 0 1 1 0 0 0 +( 2176 2448 32 ) ( 2176 2192 32 ) ( 2176 2192 0 ) props/bld_rc_c4 0 8 0 1 1 0 0 0 +} +// brush 496 +{ +( 2768 2432 192 ) ( 2704 2432 192 ) ( 2704 2176 192 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2704 2176 512 ) ( 2704 2432 512 ) ( 2768 2432 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2720 2048 32 ) ( 2784 2048 32 ) ( 2784 2048 0 ) props/bld_rc_c2 0 0 0 1 1 0 0 0 +( 2816 2176 32 ) ( 2816 2432 32 ) ( 2816 2432 0 ) props/bld_rc_c2 0 0 0 1 1 0 0 0 +( 2784 2176 32 ) ( 2720 2176 32 ) ( 2720 2176 0 ) props/bld_rc_c4 96 8 0 1 1 0 0 0 +( 2504 2448 32 ) ( 2504 2192 32 ) ( 2504 2192 0 ) props/bld_rc_c2 0 0 0 1 1 0 0 0 +} +// brush 497 +{ +( -1016 1472 -16 ) ( -1136 1472 -16 ) ( -1136 1312 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1136 1312 0 ) ( -1136 1472 0 ) ( -1016 1472 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1136 1280 0 ) ( -1016 1280 0 ) ( -1016 1280 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1008 1536 0 ) ( -1128 1536 0 ) ( -1128 1536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -960 1480 0 ) ( -960 1320 0 ) ( -960 1320 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -768 472 512 ) ( -768 1616 512 ) ( -768 472 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 498 +{ +( -2077 2717 104 ) ( -2077 2717 136 ) ( -2066 2728 136 ) props/barrel_v4 73 0 0 0.625000 0.750000 134217728 8388608 1 +( -2088 2712 0 ) ( -2088 2712 32 ) ( -2072 2712 32 ) props/barrel_v4 -44 0 0 0.750000 0.750000 134217728 8388608 1 +( -2099 2717 0 ) ( -2099 2717 32 ) ( -2088 2706 32 ) props/barrel_v4 61 0 0 -0.630000 0.750000 134217728 8388608 1 +( -2104 2728 0 ) ( -2104 2728 32 ) ( -2104 2712 32 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 1 +( -2099 2739 0 ) ( -2099 2739 32 ) ( -2110 2728 32 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2088 2744 104 ) ( -2088 2744 136 ) ( -2104 2744 136 ) props/barrel_v4 20 0 0 -0.750000 0.750000 134217728 8388608 0 +( -2077 2739 104 ) ( -2077 2739 136 ) ( -2088 2750 136 ) props/barrel_v4 169 0 0 0.630000 0.750000 134217728 8388608 1 +( -2072 2728 104 ) ( -2072 2728 136 ) ( -2072 2744 136 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 1 +( -2104 2712 0 ) ( -2072 2712 0 ) ( -2072 2744 0 ) props/barrel_v4 -42 0 0 0.750000 0.750000 134217728 8388608 0 +( -2072 2744 48 ) ( -2072 2712 48 ) ( -2104 2712 48 ) props/barrel_v3t -16 -17 0 0.500000 0.500000 134217728 16777216 0 +} +// brush 499 +{ +( 840 2876 328 ) ( 834 2882 328 ) ( 814 2882 328 ) common/li_sr_mst2 -7 2 0 1 1 134217728 1 30000 +( 833 2868 336 ) ( 815 2868 336 ) ( 810 2872 336 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 810 2875 336 ) ( 810 2873 336 ) ( 808 2872 328 ) metals/m_hl_c10b 12 0 0 0.500000 0.500000 134217728 8388608 0 +( 815 2868 336 ) ( 833 2868 336 ) ( 834 2866 328 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 838 2872 336 ) ( 838 2876 336 ) ( 840 2876 328 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 833 2880 336 ) ( 815 2880 336 ) ( 814 2882 328 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 838 2876 336 ) ( 834 2880 336 ) ( 834 2882 328 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 834 2868 336 ) ( 838 2872 336 ) ( 840 2872 328 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 810 2872 336 ) ( 814 2868 336 ) ( 814 2866 328 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 814 2880 336 ) ( 809 2875 336 ) ( 808 2876 328 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +} +// brush 500 +{ +( -1834 2788 0 ) ( -1814 2788 0 ) ( -1814 2808 0 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1818 2794 8 ) ( -1830 2794 8 ) ( -1830 2806 8 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1834 2788 0 ) ( -1834 2810 0 ) ( -1830 2806 8 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1814 2788 0 ) ( -1834 2788 0 ) ( -1830 2792 8 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1814 2810 0 ) ( -1814 2786 0 ) ( -1818 2792 8 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1836 2810 0 ) ( -1814 2810 0 ) ( -1818 2806 8 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +} +// brush 501 +{ +( -1146 1750 0 ) ( -1126 1750 0 ) ( -1126 1770 0 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1130 1754 8 ) ( -1142 1754 8 ) ( -1142 1766 8 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1146 1748 0 ) ( -1146 1770 0 ) ( -1142 1766 8 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1126 1750 0 ) ( -1146 1750 0 ) ( -1142 1754 8 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1126 1772 0 ) ( -1126 1748 0 ) ( -1130 1754 8 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +( -1148 1770 0 ) ( -1126 1770 0 ) ( -1130 1766 8 ) metals/m_hl_c10b 4 11 1 2 2 134217728 8388608 0 +} +// brush 502 +{ +( 384 400 176 ) ( -64 400 176 ) ( -64 384 176 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 384 256 ) ( -64 400 256 ) ( 384 400 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 384 256 ) ( 384 384 256 ) ( 384 384 128 ) bricks/b_sr_20 0 -64 0 1 1 0 0 0 +( 128 400 128 ) ( 128 384 128 ) ( 128 392 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 96 384 64 ) ( 96 400 64 ) ( 96 392 256 ) bricks/b_sr_20b 0 -32 0 1 1 0 0 0 +( 120 416 64 ) ( 128 416 64 ) ( 124 416 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 503 +{ +( 384 400 176 ) ( -64 400 176 ) ( -64 384 176 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 384 256 ) ( -64 400 256 ) ( 384 400 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 384 448 256 ) ( -64 448 256 ) ( -64 448 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 144 400 128 ) ( 144 384 128 ) ( 144 392 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 96 384 64 ) ( 96 400 64 ) ( 96 392 256 ) bricks/b_sr_20b 0 -32 0 1 1 0 0 0 +( 128 416 64 ) ( 120 416 64 ) ( 124 416 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 504 +{ +( 320 752 256 ) ( 240 752 256 ) ( 240 728 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 240 728 320 ) ( 240 752 320 ) ( 320 752 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 240 728 192 ) ( 320 728 192 ) ( 320 728 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 288 728 192 ) ( 288 752 192 ) ( 288 752 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 320 752 192 ) ( 240 752 192 ) ( 240 752 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 224 760 192 ) ( 224 736 192 ) ( 224 736 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 505 +{ +( 192 752 256 ) ( 112 752 256 ) ( 112 728 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 112 728 320 ) ( 112 752 320 ) ( 192 752 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 112 728 192 ) ( 192 728 192 ) ( 192 728 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 160 728 192 ) ( 160 752 192 ) ( 160 752 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 192 752 192 ) ( 112 752 192 ) ( 112 752 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 96 760 192 ) ( 96 736 192 ) ( 96 736 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 506 +{ +( 48 752 256 ) ( -32 752 256 ) ( -32 728 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -32 728 320 ) ( -32 752 320 ) ( 48 752 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -32 728 192 ) ( 48 728 192 ) ( 48 728 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 16 728 192 ) ( 16 752 192 ) ( 16 752 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 48 752 192 ) ( -32 752 192 ) ( -32 752 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -48 760 192 ) ( -48 736 192 ) ( -48 736 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 507 +{ +( 16 752 128 ) ( -64 752 128 ) ( -64 728 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 728 320 ) ( -64 752 320 ) ( 16 752 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 728 192 ) ( 16 728 192 ) ( 16 728 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -48 728 192 ) ( -48 752 192 ) ( -48 752 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 16 752 192 ) ( -64 752 192 ) ( -64 752 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -80 760 192 ) ( -80 736 192 ) ( -80 736 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 508 +{ +( 112 752 128 ) ( 32 752 128 ) ( 32 728 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 32 728 320 ) ( 32 752 320 ) ( 112 752 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 32 728 192 ) ( 112 728 192 ) ( 112 728 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 96 728 192 ) ( 96 752 192 ) ( 96 752 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 112 752 192 ) ( 32 752 192 ) ( 32 752 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 16 760 192 ) ( 16 736 192 ) ( 16 736 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 509 +{ +( 240 752 128 ) ( 160 752 128 ) ( 160 728 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 160 728 320 ) ( 160 752 320 ) ( 240 752 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 160 728 192 ) ( 240 728 192 ) ( 240 728 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 224 728 192 ) ( 224 752 192 ) ( 224 752 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 240 752 192 ) ( 160 752 192 ) ( 160 752 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 160 752 192 ) ( 160 728 192 ) ( 160 728 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 510 +{ +( 368 752 128 ) ( 288 752 128 ) ( 288 728 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 288 728 320 ) ( 288 752 320 ) ( 368 752 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 288 728 192 ) ( 368 728 192 ) ( 368 728 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 368 728 192 ) ( 368 752 192 ) ( 368 752 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 368 752 192 ) ( 288 752 192 ) ( 288 752 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 288 752 192 ) ( 288 728 192 ) ( 288 728 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 511 +{ +( 368 752 64 ) ( 288 752 64 ) ( 288 728 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 288 728 128 ) ( 288 752 128 ) ( 368 752 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 288 728 128 ) ( 368 728 128 ) ( 368 728 64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( 368 728 128 ) ( 368 752 128 ) ( 368 752 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 368 752 128 ) ( 288 752 128 ) ( 288 752 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -80 744 128 ) ( -80 720 128 ) ( -80 720 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 512 +{ +( -80 768 64 ) ( -88 768 64 ) ( -88 488 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -88 488 320 ) ( -88 768 320 ) ( -80 768 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -88 488 256 ) ( -80 488 256 ) ( -80 488 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -80 488 256 ) ( -80 768 256 ) ( -80 768 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -80 768 256 ) ( -88 768 256 ) ( -88 768 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -88 768 256 ) ( -88 488 256 ) ( -88 488 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 513 +{ +( 72 464 256 ) ( -80 464 256 ) ( -80 400 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -80 400 320 ) ( -80 464 320 ) ( 72 464 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -72 416 320 ) ( 80 416 320 ) ( 80 416 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 144 400 320 ) ( 144 464 320 ) ( 144 464 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 72 488 320 ) ( -80 488 320 ) ( -80 488 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -80 464 320 ) ( -80 400 320 ) ( -80 400 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 514 +{ +( -64 1264 320 ) ( -80 1264 320 ) ( -80 1088 320 ) bricks/c_sr_m9a 16 24 0 1 1 0 0 0 +( -80 1088 384 ) ( -80 1264 384 ) ( -64 1264 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -64 1088 384 ) ( -64 1264 384 ) ( -64 1264 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -80 1264 384 ) ( -80 1088 384 ) ( -80 1088 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -80 752 256 ) ( -64 752 256 ) ( -72 752 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -64 400 256 ) ( -80 400 256 ) ( -72 400 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 515 +{ +( -64 1264 256 ) ( -80 1264 256 ) ( -80 1088 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -80 1088 384 ) ( -80 1264 384 ) ( -64 1264 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -64 1088 384 ) ( -64 1264 384 ) ( -64 1264 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -80 1264 384 ) ( -80 1088 384 ) ( -80 1088 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -64 384 256 ) ( -80 384 256 ) ( -72 384 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -80 400 256 ) ( -64 400 256 ) ( -72 400 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 516 +{ +( -64 1264 256 ) ( -80 1264 256 ) ( -80 1088 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -80 1088 384 ) ( -80 1264 384 ) ( -64 1264 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -64 1088 384 ) ( -64 1264 384 ) ( -64 1264 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -64 1264 384 ) ( -80 1264 384 ) ( -80 1264 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -80 1264 384 ) ( -80 1088 384 ) ( -80 1088 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -64 752 256 ) ( -80 752 256 ) ( -72 752 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 517 +{ +( 320 768 256 ) ( -64 768 256 ) ( -64 752 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -72 384 320 ) ( 312 384 320 ) ( 312 384 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -80 768 320 ) ( -80 752 320 ) ( -80 752 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -80 384 304 ) ( -80 424 304 ) ( 384 404 304 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 384 576 256 ) ( 384 560 256 ) ( 384 568 320 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 352 400 256 ) ( 368 400 256 ) ( 360 400 320 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +} +// brush 518 +{ +( 320 768 256 ) ( -64 768 256 ) ( -64 752 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -72 400 320 ) ( 312 400 320 ) ( 312 400 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 384 760 320 ) ( 384 776 320 ) ( 384 776 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 360 576 448 ) ( -104 576 448 ) ( -104 576 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -80 384 320 ) ( -80 424 320 ) ( 384 404 320 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 368 560 256 ) ( 368 576 256 ) ( 368 568 320 ) bricks/b_sr_20b 0 64 0 1 1 0 0 0 +} +// brush 519 +{ +( 320 768 256 ) ( -64 768 256 ) ( -64 752 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 384 760 320 ) ( 384 776 320 ) ( 384 776 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -80 576 448 ) ( 384 576 448 ) ( 384 576 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -80 384 320 ) ( -80 424 320 ) ( 384 404 320 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -80 752 256 ) ( -64 752 256 ) ( -72 752 320 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 368 736 256 ) ( 368 752 256 ) ( 368 744 320 ) bricks/b_sr_20b 0 64 0 1 1 0 0 0 +} +// brush 520 +{ +( 320 768 256 ) ( -64 768 256 ) ( -64 752 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 384 760 320 ) ( 384 776 320 ) ( 384 776 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 320 768 320 ) ( -64 768 320 ) ( -64 768 256 ) bricks/b_sr_23 64 0 -180 1 -1 0 0 0 +( -80 768 320 ) ( -80 752 320 ) ( -80 752 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -80 384 320 ) ( -80 424 320 ) ( 384 404 320 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -64 752 256 ) ( -80 752 256 ) ( -72 752 320 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +} +// brush 521 +{ +( 352 416 224 ) ( 160 416 224 ) ( 160 400 224 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 160 400 320 ) ( 160 416 320 ) ( 352 416 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 160 400 256 ) ( 352 400 256 ) ( 352 400 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 352 400 320 ) ( 352 416 320 ) ( 352 416 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 352 416 256 ) ( 160 416 256 ) ( 160 416 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 160 416 320 ) ( 160 400 320 ) ( 160 400 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 522 +{ +( 192 416 64 ) ( 160 416 64 ) ( 160 400 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 160 400 96 ) ( 160 416 96 ) ( 192 416 96 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 160 400 256 ) ( 192 400 256 ) ( 192 400 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 352 392 256 ) ( 352 408 256 ) ( 352 408 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 192 416 256 ) ( 160 416 256 ) ( 160 416 64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( 160 416 256 ) ( 160 400 256 ) ( 160 400 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 523 +{ +( 368 416 64 ) ( 336 416 64 ) ( 336 400 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 336 400 320 ) ( 336 416 320 ) ( 368 416 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 336 400 256 ) ( 368 400 256 ) ( 368 400 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 368 400 256 ) ( 368 416 256 ) ( 368 416 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 368 416 256 ) ( 336 416 256 ) ( 336 416 64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( 352 416 320 ) ( 352 400 320 ) ( 352 400 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 524 +{ +( 160 416 64 ) ( 128 416 64 ) ( 128 400 64 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( 128 400 320 ) ( 128 416 320 ) ( 160 416 320 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( 128 400 256 ) ( 160 400 256 ) ( 160 400 64 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( 160 400 320 ) ( 160 416 320 ) ( 160 416 128 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( 160 416 256 ) ( 128 416 256 ) ( 128 416 64 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( 128 416 256 ) ( 128 400 256 ) ( 128 400 64 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +} +// brush 525 +{ +( 96 488 224 ) ( -32 488 224 ) ( -32 448 224 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -32 448 256 ) ( -32 488 256 ) ( 96 488 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -32 448 256 ) ( 96 448 256 ) ( 96 448 224 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 96 448 256 ) ( 96 488 256 ) ( 96 488 224 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 96 488 256 ) ( -32 488 256 ) ( -32 488 224 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -32 488 256 ) ( -32 448 256 ) ( -32 448 224 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 526 +{ +( 128 488 64 ) ( 96 488 64 ) ( 96 448 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 96 448 256 ) ( 96 488 256 ) ( 128 488 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 96 448 256 ) ( 128 448 256 ) ( 128 448 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 144 448 256 ) ( 144 488 256 ) ( 144 488 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 128 488 256 ) ( 96 488 256 ) ( 96 488 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 96 488 256 ) ( 96 448 256 ) ( 96 448 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 527 +{ +( -32 488 64 ) ( -80 488 64 ) ( -80 448 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -80 448 256 ) ( -80 488 256 ) ( -32 488 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -80 448 256 ) ( -32 448 256 ) ( -32 448 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -32 448 256 ) ( -32 488 256 ) ( -32 488 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -32 488 256 ) ( -80 488 256 ) ( -80 488 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -80 488 256 ) ( -80 448 256 ) ( -80 448 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 528 +{ +( 1008 704 32 ) ( 944 704 32 ) ( 944 640 32 ) props/box_sr_m6 0 0 0 0.750000 0.750000 0 134217728 0 +( 944 640 80 ) ( 944 704 80 ) ( 1008 704 80 ) props/box_sr_m5 0 42 0 0.750000 0.750000 0 134217728 0 +( 944 656 78 ) ( 1008 656 78 ) ( 1008 656 30 ) props/box_sr_m6 0 -22 0 0.750000 0.750000 0 134217728 0 +( 1008 640 80 ) ( 1008 704 80 ) ( 1008 704 32 ) props/box_sr_m6 -42 -22 0 0.750000 0.750000 0 134217728 0 +( 1008 704 80 ) ( 944 704 80 ) ( 944 704 32 ) props/box_sr_m6 0 0 0 0.750000 0.750000 0 134217728 0 +( 960 704 78 ) ( 960 640 78 ) ( 960 640 30 ) props/box_sr_m6 22 -22 0 0.750000 0.750000 0 134217728 0 +} +// brush 529 +{ +( 2176 320 -152 ) ( 2112 320 -152 ) ( 2112 256 -152 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( 2112 256 -136 ) ( 2112 320 -136 ) ( 2176 320 -136 ) bricks/c_sr_m2 0 71 0 1 1 0 0 0 +( 2112 256 -136 ) ( 2176 256 -136 ) ( 2176 256 -152 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( 2176 256 -136 ) ( 2176 320 -136 ) ( 2176 320 -152 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( 2176 320 -136 ) ( 2112 320 -136 ) ( 2112 320 -152 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( 2112 320 -136 ) ( 2112 256 -136 ) ( 2112 256 -152 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +} +// brush 530 +{ +( 2176 576 -144 ) ( 2112 576 -144 ) ( 2112 256 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 2112 256 -128 ) ( 2112 576 -128 ) ( 2176 576 -128 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 2176 64 -128 ) ( 2176 384 -128 ) ( 2176 384 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 2176 576 -128 ) ( 2112 576 -128 ) ( 2112 576 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 2112 384 -128 ) ( 2112 64 -128 ) ( 2112 64 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 2128 320 -144 ) ( 2112 320 -144 ) ( 2120 320 -128 ) bricks/c_sr_m8e 0 -8 0 1 1 0 67108864 0 +} +// brush 531 +{ +( 2214 556 -128 ) ( 2153 574 -128 ) ( 2064 266 -128 ) bricks/c_sr_m8d -57 9 74 1 1 134217728 67108864 0 +( 2064 266 -124 ) ( 2153 574 -124 ) ( 2214 556 -124 ) bricks/c_sr_m8d -57 9 74 1 1 134217728 67108864 0 +( 2073 64 -120 ) ( 2161 371 -120 ) ( 2161 371 -136 ) bricks/c_sr_m8e 0 -8 0 1 1 134217728 67108864 0 +( 2100 389 -120 ) ( 2011 81 -120 ) ( 2011 81 -136 ) bricks/c_sr_m8d -57 9 74 1 1 134217728 67108864 0 +( 2126 248 -136 ) ( 2064 266 -136 ) ( 2095 257 -120 ) bricks/c_sr_m8e 0 -8 0 1 1 134217728 67108864 0 +( 2082 328 -136 ) ( 2097 323 -136 ) ( 2090 325 -120 ) bricks/c_sr_m8e 0 -8 0 1 1 134217728 67108864 0 +} +// brush 532 +{ +( 2176 576 -144 ) ( 2112 576 -144 ) ( 2112 256 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 2112 256 -128 ) ( 2112 576 -128 ) ( 2176 576 -128 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 2176 64 -128 ) ( 2176 384 -128 ) ( 2176 384 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 2112 384 -128 ) ( 2112 64 -128 ) ( 2112 64 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 2056 192 -144 ) ( 2032 192 -144 ) ( 2044 192 -128 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 2112 256 -144 ) ( 2176 256 -144 ) ( 2144 256 -128 ) bricks/c_sr_m8e 0 -8 0 1 1 0 67108864 0 +} +// brush 533 +{ +( 2040 120 -128 ) ( 2104 120 -128 ) ( 2104 184 -128 ) props/box_sr_m6 -43 52 -180 0.750000 0.750000 0 134217728 0 +( 2104 184 -80 ) ( 2104 120 -80 ) ( 2040 120 -80 ) props/box_sr_m5 -43 -21 0 0.750000 0.750000 0 134217728 0 +( 2104 176 -64 ) ( 2040 176 -64 ) ( 2040 176 -128 ) props/box_sr_m6 -21 20 -180 0.750000 -0.750000 0 134217728 0 +( 2048 184 -64 ) ( 2048 120 -64 ) ( 2048 120 -128 ) props/box_sr_m6 -22 20 -180 0.750000 -0.750000 0 134217728 0 +( 2040 128 -64 ) ( 2104 128 -64 ) ( 2104 128 -128 ) props/box_sr_m6 -21 21 -180 0.750000 -0.750000 0 134217728 0 +( 2096 120 -64 ) ( 2096 184 -64 ) ( 2096 184 -128 ) props/box_sr_m6 -22 20 -180 0.750000 -0.750000 0 134217728 0 +} +// brush 534 +{ +( 2040 376 -128 ) ( 2104 376 -128 ) ( 2104 440 -128 ) props/box_sr_m6 -44 -33 -180 0.750000 0.750000 0 134217728 0 +( 2104 440 -80 ) ( 2104 376 -80 ) ( 2040 376 -80 ) props/box_sr_m5 -43 -1 0 0.750000 0.750000 0 134217728 0 +( 2104 432 -64 ) ( 2040 432 -64 ) ( 2040 432 -128 ) props/box_sr_m6 -21 21 -180 0.750000 -0.750000 0 134217728 0 +( 2048 440 -64 ) ( 2048 376 -64 ) ( 2048 376 -128 ) props/box_sr_m6 63 21 -180 0.750000 -0.750000 0 134217728 0 +( 2040 384 -64 ) ( 2104 384 -64 ) ( 2104 384 -128 ) props/box_sr_m6 -21 21 -180 0.750000 -0.750000 0 134217728 0 +( 2096 376 -64 ) ( 2096 440 -64 ) ( 2096 440 -128 ) props/box_sr_m6 63 21 -180 0.750000 -0.750000 0 134217728 0 +} +// brush 535 +{ +( 2256 264 -128 ) ( 2192 264 -128 ) ( 2192 200 -128 ) props/box_c_m5 -40 -32 0 0.750000 0.750000 0 2097152 0 +( 2192 200 -80 ) ( 2192 264 -80 ) ( 2256 264 -80 ) props/box_c_m6 -42 -32 0 0.750000 0.750000 0 2097152 0 +( 2192 216 64 ) ( 2256 216 64 ) ( 2256 216 -128 ) props/box_c_m5 -42 -42 0 0.750000 0.750000 0 2097152 0 +( 2240 200 64 ) ( 2240 264 64 ) ( 2240 264 -128 ) props/box_c_m5 32 -42 0 0.750000 0.750000 0 2097152 0 +( 2256 264 64 ) ( 2192 264 64 ) ( 2192 264 -128 ) props/box_c_m5 -42 -42 0 0.750000 0.750000 0 2097152 0 +( 2192 264 64 ) ( 2192 200 64 ) ( 2192 200 -128 ) props/box_c_m5 32 -42 0 0.750000 0.750000 0 2097152 0 +} +// brush 536 +{ +( 496 1784 184 ) ( 496 1776 184 ) ( 512 1776 184 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 134217728 0 0 +( 512 1776 192 ) ( 496 1776 192 ) ( 496 1784 192 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 512 1784 192 ) ( 496 1784 192 ) ( 496 1784 184 ) metals/mt_pv_m26y 0 15 0 1 1 134217728 0 0 +( 496 1784 192 ) ( 496 1776 192 ) ( 496 1776 184 ) metals/mt_pv_m26y 0 16 -180 1 -1.000008 134217728 0 0 +( 496 1776 192 ) ( 512 1776 192 ) ( 512 1776 184 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 134217728 0 0 +( 512 1784 184 ) ( 504 1776 184 ) ( 508 1780 192 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 134217728 0 0 +} +// brush 537 +{ +( 496 1808 184 ) ( 496 1800 184 ) ( 512 1800 184 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 134217728 0 0 +( 512 1800 192 ) ( 496 1800 192 ) ( 496 1808 192 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 512 1808 192 ) ( 496 1808 192 ) ( 496 1808 184 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 134217728 0 0 +( 496 1808 192 ) ( 496 1800 192 ) ( 496 1800 184 ) metals/mt_pv_m26y 0 16 -180 1 -1.000008 134217728 0 0 +( 496 1800 192 ) ( 512 1800 192 ) ( 512 1800 184 ) metals/mt_pv_m26y 0 15 0 1 1 134217728 0 0 +( 504 1808 184 ) ( 512 1800 184 ) ( 508 1804 192 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 134217728 0 0 +} +// brush 538 +{ +( 496 1800 184 ) ( 496 1784 184 ) ( 512 1784 184 ) common/li_sr_v27 8 0 -90 1 1 134217728 1 30000 +( 512 1784 192 ) ( 496 1784 192 ) ( 496 1800 192 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 512 1784 192 ) ( 512 1800 192 ) ( 512 1800 64 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 134217728 0 0 +( 512 1800 192 ) ( 496 1800 192 ) ( 496 1800 64 ) common/li_sr_v27 0 0 0 1 0.999985 134217728 0 0 +( 496 1800 192 ) ( 496 1784 192 ) ( 496 1784 64 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 134217728 0 0 +( 496 1784 192 ) ( 512 1784 192 ) ( 512 1784 64 ) common/li_sr_v27 0 0 0 1 0.999985 134217728 0 0 +} +// brush 539 +{ +( 718 2870 8 ) ( 738 2870 8 ) ( 738 2890 8 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 734 2874 16 ) ( 722 2874 16 ) ( 722 2886 16 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 718 2868 8 ) ( 718 2890 8 ) ( 722 2886 16 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 738 2870 8 ) ( 718 2870 8 ) ( 722 2874 16 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 738 2892 8 ) ( 738 2868 8 ) ( 734 2874 16 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 716 2890 8 ) ( 738 2890 8 ) ( 734 2886 16 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +} +// brush 540 +{ +( 734 2874 16 ) ( 734 2886 16 ) ( 722 2886 16 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 726 2878 336 ) ( 734 2878 336 ) ( 734 2870 336 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 722 2874 16 ) ( 722 2886 16 ) ( 726 2878 336 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 732 2874 16 ) ( 724 2874 16 ) ( 726 2870 336 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 734 2886 16 ) ( 734 2874 16 ) ( 734 2870 336 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +( 724 2886 16 ) ( 732 2886 16 ) ( 734 2878 336 ) metals/m_hl_c10b 0 0 0 2 2 134217728 8388608 0 +} +// brush 541 +{ +( 2466 476 -80 ) ( 2411 442 -80 ) ( 2445 387 -80 ) props/box_sr_m13 14 -47 32 0.499831 0.500057 0 2097152 0 +( 2445 387 -48 ) ( 2411 442 -48 ) ( 2466 476 -48 ) props/box_sr_m13 16 -61 31 0.500038 0.500031 0 2097152 0 +( 2437 401 -16 ) ( 2491 435 -16 ) ( 2491 435 -80 ) props/box_sr_m13 -20 31 0 0.424072 0.500000 0 2097152 0 +( 2486 413 -16 ) ( 2452 467 -16 ) ( 2452 467 -80 ) props/box_sr_m13 -47 31 0 0.424042 0.500000 0 2097152 0 +( 2474 462 -16 ) ( 2420 428 -16 ) ( 2420 428 -80 ) props/box_sr_m13 -46 31 0 0.423828 0.500000 0 2097152 0 +( 2425 450 -16 ) ( 2459 396 -16 ) ( 2459 396 -80 ) props/box_sr_m13 -69 31 0 0.424011 0.500000 0 2097152 0 +} +// brush 542 +{ +( 2582 505 -34 ) ( 2526 480 -34 ) ( 2552 422 -34 ) props/box_sr_m5 47 -32 23 1 1 0 134217728 0 +( 2552 422 30 ) ( 2526 480 30 ) ( 2582 505 30 ) props/box_sr_m5 -7 -13 24 1 1 0 134217728 0 +( 2552 422 30 ) ( 2608 447 30 ) ( 2608 447 -34 ) props/box_sr_m6 -52 -34 0 0.910000 1 0 134217728 0 +( 2610 448 30 ) ( 2584 506 30 ) ( 2584 506 -34 ) props/box_sr_m6 -42 -34 0 0.910000 1 0 134217728 0 +( 2582 505 30 ) ( 2526 480 30 ) ( 2526 480 -34 ) props/box_sr_m6 -23 -34 0 0.910000 1 0 134217728 0 +( 2526 480 30 ) ( 2552 422 30 ) ( 2552 422 -34 ) props/box_sr_m6 -16 -34 0 0.910000 1 0 134217728 0 +} +// brush 543 +{ +( 2752 506 -42 ) ( 2750 506 -42 ) ( 2750 406 -42 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2750 406 -32 ) ( 2750 506 -32 ) ( 2752 506 -32 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2750 406 -32 ) ( 2752 406 -32 ) ( 2752 406 -42 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2752 406 -32 ) ( 2752 506 -32 ) ( 2752 506 -42 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2752 506 -32 ) ( 2750 506 -32 ) ( 2750 506 -42 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2750 506 -32 ) ( 2750 406 -32 ) ( 2750 406 -42 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 544 +{ +( 2744 504 -126 ) ( 2752 504 -126 ) ( 2752 512 -126 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2752 512 128 ) ( 2752 504 128 ) ( 2744 504 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2752 510 -80 ) ( 2744 510 -80 ) ( 2744 510 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2746 512 -78 ) ( 2746 504 -78 ) ( 2746 504 -126 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2744 504 -80 ) ( 2752 504 -80 ) ( 2752 504 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2752 504 -80 ) ( 2752 512 -80 ) ( 2752 512 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 545 +{ +( 2744 400 -126 ) ( 2752 400 -126 ) ( 2752 408 -126 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2752 408 128 ) ( 2752 400 128 ) ( 2744 400 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2752 408 -80 ) ( 2744 408 -80 ) ( 2744 408 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2746 408 -78 ) ( 2746 400 -78 ) ( 2746 400 -126 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2744 402 -80 ) ( 2752 402 -80 ) ( 2752 402 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2752 400 -80 ) ( 2752 408 -80 ) ( 2752 408 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 546 +{ +( 2748 408 118 ) ( 2752 408 118 ) ( 2752 504 118 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2752 504 128 ) ( 2752 408 128 ) ( 2748 408 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2752 504 128 ) ( 2748 504 128 ) ( 2748 504 112 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2750 504 128 ) ( 2750 408 128 ) ( 2750 408 112 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2748 408 128 ) ( 2752 408 128 ) ( 2752 408 112 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2752 408 128 ) ( 2752 504 128 ) ( 2752 504 112 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 547 +{ +( 2744 502 -128 ) ( 2754 502 -128 ) ( 2754 512 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2754 512 -126 ) ( 2754 502 -126 ) ( 2744 502 -126 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2754 512 126 ) ( 2744 512 126 ) ( 2744 512 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2744 512 126 ) ( 2744 502 126 ) ( 2744 502 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2744 502 126 ) ( 2754 502 126 ) ( 2754 502 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2752 502 126 ) ( 2752 512 126 ) ( 2752 512 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 548 +{ +( 2744 400 -128 ) ( 2754 400 -128 ) ( 2754 410 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2754 410 -126 ) ( 2754 400 -126 ) ( 2744 400 -126 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2754 410 126 ) ( 2744 410 126 ) ( 2744 410 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2744 410 126 ) ( 2744 400 126 ) ( 2744 400 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2744 400 126 ) ( 2754 400 126 ) ( 2754 400 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2752 400 126 ) ( 2752 410 126 ) ( 2752 410 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 549 +{ +( 2638 512 -42 ) ( 2630 512 -42 ) ( 2630 504 -42 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2630 504 -32 ) ( 2630 512 -32 ) ( 2638 512 -32 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2630 506 -80 ) ( 2638 506 -80 ) ( 2638 506 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2752 504 -80 ) ( 2752 512 -80 ) ( 2752 512 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2638 508 -80 ) ( 2630 508 -80 ) ( 2630 508 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2628 512 -80 ) ( 2628 504 -80 ) ( 2628 504 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 550 +{ +( 2638 410 -42 ) ( 2630 410 -42 ) ( 2630 402 -42 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2630 402 -32 ) ( 2630 410 -32 ) ( 2638 410 -32 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2630 404 -80 ) ( 2638 404 -80 ) ( 2638 404 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2752 402 -80 ) ( 2752 410 -80 ) ( 2752 410 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2638 406 -80 ) ( 2630 406 -80 ) ( 2630 406 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2628 410 -80 ) ( 2628 402 -80 ) ( 2628 402 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 551 +{ +( 2752 504 -40 ) ( 2632 504 -40 ) ( 2632 408 -40 ) sprites/mb_grate_2 0 0 0 0.500000 0.500000 128 16781312 0 +( 2632 408 -34 ) ( 2632 504 -34 ) ( 2752 504 -34 ) sprites/mb_grate_2 0 0 0 0.500000 0.500000 128 16781312 0 +( 2632 406 -32 ) ( 2752 406 -32 ) ( 2752 406 -48 ) sprites/mb_grate_2 0 0 0 0.500000 0.500000 128 16781312 0 +( 2750 408 -32 ) ( 2750 504 -32 ) ( 2750 504 -48 ) sprites/mb_grate_2 0 0 0 0.500000 0.500000 128 16781312 0 +( 2752 506 -32 ) ( 2632 506 -32 ) ( 2632 506 -48 ) sprites/mb_grate_2 0 0 0 0.500000 0.500000 128 16781312 0 +( 2628 504 -32 ) ( 2628 408 -32 ) ( 2628 408 -48 ) sprites/mb_grate_2 0 0 0 0.500000 0.500000 128 16781312 0 +} +// brush 552 +{ +( 2752 192 64 ) ( 2768 192 64 ) ( 2768 192 -80 ) bricks/b_mf_v2 64 -80 0 1 1 0 0 0 +( 2768 48 64 ) ( 2768 344 64 ) ( 2768 344 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2768 720 64 ) ( 2752 720 64 ) ( 2752 720 -80 ) bricks/b_mf_v2 64 -80 0 1 1 0 0 0 +( 2752 464 128 ) ( 2752 168 128 ) ( 2752 168 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2752 228 0 ) ( 2752 200 0 ) ( 2768 214 0 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2760 192 128 ) ( 2752 192 128 ) ( 2756 720 128 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +} +// brush 553 +{ +( 2360 704 272 ) ( 2360 760 272 ) ( 2368 760 272 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2360 640 272 ) ( 2368 640 272 ) ( 2368 640 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2368 704 272 ) ( 2368 760 272 ) ( 2368 760 208 ) metals/m_pv_v5 30 -14 0 1 1 0 16777216 0 +( 2360 760 272 ) ( 2360 704 272 ) ( 2360 704 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2344 704 208 ) ( 2376 704 208 ) ( 2360 704 272 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2360 664 144 ) ( 2360 640 144 ) ( 2368 652 144 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +} +// brush 554 +{ +( 2368 760 128 ) ( 2360 760 128 ) ( 2360 704 128 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2360 640 272 ) ( 2368 640 272 ) ( 2368 640 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2368 704 272 ) ( 2368 760 272 ) ( 2368 760 208 ) metals/mt_pv_m10am 0 1 0 1 1 0 0 0 +( 2360 760 272 ) ( 2360 704 272 ) ( 2360 704 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2344 704 208 ) ( 2376 704 208 ) ( 2360 704 272 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2360 640 144 ) ( 2360 664 144 ) ( 2368 652 144 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +} +// brush 555 +{ +( 2368 704 208 ) ( 2368 768 208 ) ( 2432 768 208 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2368 704 208 ) ( 2432 704 208 ) ( 2432 704 200 ) metals/m_pv_v5 30 -14 0 1 1 0 16777216 0 +( 2432 704 208 ) ( 2432 768 208 ) ( 2432 768 200 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2368 768 208 ) ( 2368 704 208 ) ( 2368 704 200 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2368 712 200 ) ( 2384 712 200 ) ( 2376 712 208 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2368 664 144 ) ( 2368 640 144 ) ( 2432 652 144 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +} +// brush 556 +{ +( 2432 768 128 ) ( 2368 768 128 ) ( 2368 704 128 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2368 704 208 ) ( 2432 704 208 ) ( 2432 704 200 ) metals/mt_pv_m10am 0 1 0 1 1 0 0 0 +( 2432 704 208 ) ( 2432 768 208 ) ( 2432 768 200 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2368 768 208 ) ( 2368 704 208 ) ( 2368 704 200 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2368 712 200 ) ( 2384 712 200 ) ( 2376 712 208 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2368 640 144 ) ( 2368 664 144 ) ( 2432 652 144 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +} +// brush 557 +{ +( 2432 704 272 ) ( 2432 840 272 ) ( 2440 840 272 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2432 640 272 ) ( 2440 640 272 ) ( 2440 640 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2440 704 272 ) ( 2440 840 272 ) ( 2440 840 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2432 840 272 ) ( 2432 704 272 ) ( 2432 704 208 ) metals/m_pv_v5 30 -14 0 1 1 0 16777216 0 +( 2352 704 208 ) ( 2384 704 208 ) ( 2368 704 272 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2432 664 144 ) ( 2432 640 144 ) ( 2440 652 144 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +} +// brush 558 +{ +( 2440 840 136 ) ( 2432 840 136 ) ( 2432 704 136 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2432 640 272 ) ( 2440 640 272 ) ( 2440 640 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2440 704 272 ) ( 2440 840 272 ) ( 2440 840 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2432 840 272 ) ( 2432 704 272 ) ( 2432 704 208 ) metals/mt_pv_m10am 0 1 0 1 1 0 0 0 +( 2352 704 208 ) ( 2384 704 208 ) ( 2368 704 272 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2432 640 144 ) ( 2432 664 144 ) ( 2440 652 144 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +} +// brush 559 +{ +( 2440 640 136 ) ( 2360 640 136 ) ( 2360 632 136 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2360 632 272 ) ( 2440 632 272 ) ( 2440 632 136 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2440 632 272 ) ( 2440 640 272 ) ( 2440 640 136 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2440 640 272 ) ( 2360 640 272 ) ( 2360 640 136 ) metals/mt_pv_m10am 0 1 0 1 1 0 0 0 +( 2360 640 272 ) ( 2360 632 272 ) ( 2360 632 136 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2368 632 144 ) ( 2360 632 144 ) ( 2364 640 144 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +} +// brush 560 +{ +( 2360 632 272 ) ( 2360 640 272 ) ( 2440 640 272 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2360 632 272 ) ( 2440 632 272 ) ( 2440 632 136 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2440 632 272 ) ( 2440 640 272 ) ( 2440 640 136 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2440 640 272 ) ( 2360 640 272 ) ( 2360 640 136 ) metals/m_pv_v5 30 -14 0 1 1 0 16777216 0 +( 2360 640 272 ) ( 2360 632 272 ) ( 2360 632 136 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2360 632 144 ) ( 2368 632 144 ) ( 2364 640 144 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +} +// brush 561 +{ +( 2368 760 208 ) ( 2360 760 208 ) ( 2360 704 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2360 704 272 ) ( 2360 760 272 ) ( 2368 760 272 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2368 704 272 ) ( 2368 760 272 ) ( 2368 760 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2368 760 272 ) ( 2360 760 272 ) ( 2360 760 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2360 760 272 ) ( 2360 704 272 ) ( 2360 704 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2376 704 208 ) ( 2344 704 208 ) ( 2360 704 272 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +} +// brush 562 +{ +( 2440 840 208 ) ( 2432 840 208 ) ( 2432 704 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2432 704 272 ) ( 2432 840 272 ) ( 2440 840 272 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2440 704 272 ) ( 2440 840 272 ) ( 2440 840 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2440 840 272 ) ( 2432 840 272 ) ( 2432 840 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2432 840 272 ) ( 2432 704 272 ) ( 2432 704 208 ) metals/m_pv_v5 30 -14 0 1 1 0 16777216 0 +( 2384 704 208 ) ( 2352 704 208 ) ( 2368 704 272 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +} +// brush 563 +{ +( 2432 768 200 ) ( 2368 768 200 ) ( 2368 704 200 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2368 704 208 ) ( 2368 768 208 ) ( 2432 768 208 ) metals/m_pv_v5 30 0 0 1 1 0 16777216 0 +( 2432 704 208 ) ( 2432 768 208 ) ( 2432 768 200 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2432 768 208 ) ( 2368 768 208 ) ( 2368 768 200 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2368 768 208 ) ( 2368 704 208 ) ( 2368 704 200 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2384 712 200 ) ( 2368 712 200 ) ( 2376 712 208 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +} +// brush 564 +{ +( 2536 168 128 ) ( 2368 168 128 ) ( 2368 64 128 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 2368 64 136 ) ( 2368 168 136 ) ( 2536 168 136 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 2768 88 136 ) ( 2768 192 136 ) ( 2768 192 -72 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 2536 704 136 ) ( 2368 704 136 ) ( 2368 704 -72 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 2392 640 128 ) ( 2368 640 128 ) ( 2380 640 136 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 2432 640 128 ) ( 2432 704 128 ) ( 2432 672 136 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +} +// brush 565 +{ +( 2536 168 128 ) ( 2368 168 128 ) ( 2368 64 128 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 2368 64 136 ) ( 2368 168 136 ) ( 2536 168 136 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 2768 80 136 ) ( 2768 184 136 ) ( 2768 184 -72 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 2368 168 136 ) ( 2368 64 136 ) ( 2368 64 -72 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 2408 192 128 ) ( 2376 192 128 ) ( 2392 192 136 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 2368 640 128 ) ( 2392 640 128 ) ( 2380 640 136 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +} +// brush 566 +{ +( 2432 768 272 ) ( 2368 768 272 ) ( 2368 704 272 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2368 704 280 ) ( 2368 768 280 ) ( 2432 768 280 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2368 640 280 ) ( 2432 640 280 ) ( 2432 640 272 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2432 704 280 ) ( 2432 768 280 ) ( 2432 768 272 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2432 768 280 ) ( 2368 768 280 ) ( 2368 768 272 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2368 768 280 ) ( 2368 704 280 ) ( 2368 704 272 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +} +// brush 567 +{ +( 2752 832 272 ) ( 2176 832 272 ) ( 2176 768 272 ) metals/m_pv_v5 30 0 0 1 1 0 16777216 0 +( 2176 768 280 ) ( 2176 832 280 ) ( 2752 832 280 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2176 768 280 ) ( 2752 768 280 ) ( 2752 768 272 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2432 768 280 ) ( 2432 832 280 ) ( 2432 832 272 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2752 832 280 ) ( 2176 832 280 ) ( 2176 832 272 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2176 832 280 ) ( 2176 768 280 ) ( 2176 768 272 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +} +// brush 568 +{ +( 2760 832 200 ) ( 2176 832 200 ) ( 2176 760 200 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2176 760 208 ) ( 2176 832 208 ) ( 2760 832 208 ) metals/m_pv_v5 30 0 0 1 1 0 16777216 0 +( 2176 768 208 ) ( 2760 768 208 ) ( 2760 768 200 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2432 752 208 ) ( 2432 824 208 ) ( 2432 824 200 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2760 832 208 ) ( 2176 832 208 ) ( 2176 832 200 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2176 832 208 ) ( 2176 760 208 ) ( 2176 760 200 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +} +// brush 569 +{ +( 2688 768 208 ) ( 2104 768 208 ) ( 2104 760 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2104 760 272 ) ( 2104 768 272 ) ( 2688 768 272 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2104 760 272 ) ( 2688 760 272 ) ( 2688 760 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2368 768 272 ) ( 2368 776 272 ) ( 2368 776 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2688 768 272 ) ( 2104 768 272 ) ( 2104 768 208 ) metals/m_pv_v5 30 -14 0 1 1 0 16777216 0 +( 2104 768 272 ) ( 2104 760 272 ) ( 2104 760 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +} +// brush 570 +{ +( 2624 840 208 ) ( 2184 840 208 ) ( 2184 832 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2184 832 272 ) ( 2184 840 272 ) ( 2624 840 272 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2184 832 272 ) ( 2624 832 272 ) ( 2624 832 208 ) metals/m_pv_v5 30 -14 0 1 1 0 16777216 0 +( 2432 824 272 ) ( 2432 832 272 ) ( 2432 832 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2624 840 272 ) ( 2184 840 272 ) ( 2184 840 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2184 840 272 ) ( 2184 832 272 ) ( 2184 832 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +} +// brush 571 +{ +( 2176 1024 272 ) ( 2112 1024 272 ) ( 2112 768 272 ) metals/m_pv_v5 30 0 0 1 1 0 16777216 0 +( 2112 768 280 ) ( 2112 1024 280 ) ( 2176 1024 280 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2112 768 280 ) ( 2176 768 280 ) ( 2176 768 272 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2176 768 280 ) ( 2176 1024 280 ) ( 2176 1024 272 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2176 1024 280 ) ( 2112 1024 280 ) ( 2112 1024 272 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2112 1024 280 ) ( 2112 768 280 ) ( 2112 768 272 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +} +// brush 572 +{ +( 2176 1024 200 ) ( 2112 1024 200 ) ( 2112 768 200 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2112 768 208 ) ( 2112 1024 208 ) ( 2176 1024 208 ) metals/m_pv_v5 30 0 0 1 1 0 16777216 0 +( 2112 768 208 ) ( 2176 768 208 ) ( 2176 768 200 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2176 768 208 ) ( 2176 1024 208 ) ( 2176 1024 200 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2176 1024 208 ) ( 2112 1024 208 ) ( 2112 1024 200 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +( 2112 1024 208 ) ( 2112 768 208 ) ( 2112 768 200 ) metals/m_pv_v5 30 0 0 1 1 0 0 0 +} +// brush 573 +{ +( 2184 1016 208 ) ( 2176 1016 208 ) ( 2176 768 208 ) metals/m_pv_v5 -42 -14 0 1 1 0 0 0 +( 2176 768 272 ) ( 2176 1016 272 ) ( 2184 1016 272 ) metals/m_pv_v5 -42 -14 0 1 1 0 0 0 +( 2176 832 272 ) ( 2184 832 272 ) ( 2184 832 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2184 768 272 ) ( 2184 1016 272 ) ( 2184 1016 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2176 1088 272 ) ( 2168 1088 272 ) ( 2168 1088 208 ) metals/m_pv_v5 -42 -14 0 1 1 0 0 0 +( 2176 1016 272 ) ( 2176 768 272 ) ( 2176 768 208 ) metals/m_pv_v5 30 -14 0 1 1 0 16777216 0 +} +// brush 574 +{ +( 2112 1016 208 ) ( 2104 1016 208 ) ( 2104 768 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2104 768 272 ) ( 2104 1016 272 ) ( 2112 1016 272 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2104 768 272 ) ( 2112 768 272 ) ( 2112 768 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2112 768 272 ) ( 2112 1016 272 ) ( 2112 1016 208 ) metals/m_pv_v5 30 -14 0 1 1 0 16777216 0 +( 2112 1016 272 ) ( 2104 1016 272 ) ( 2104 1016 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2104 1016 272 ) ( 2104 768 272 ) ( 2104 768 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +} +// brush 575 +{ +( 2742 216 -128 ) ( 2694 216 -128 ) ( 2694 192 -128 ) props/locker_m1 -53 -43 0 1 0.750000 134217728 0 0 +( 2694 192 -32 ) ( 2694 216 -32 ) ( 2742 216 -32 ) metals/m_hl_c10b 0 4 0 1 0.960000 134217728 16777216 0 +( 2694 192 -120 ) ( 2742 192 -120 ) ( 2742 192 -128 ) props/locker_m1 -53 -43 0 1 0.750000 134217728 0 0 +( 2742 192 -120 ) ( 2742 216 -120 ) ( 2742 216 -128 ) metals/m_hl_c10b 0 0 0 1 1 134217728 0 0 +( 2742 208 -120 ) ( 2694 208 -120 ) ( 2694 208 -128 ) props/locker_m1 -53 -43 0 1 0.750000 134217728 16777216 0 +( 2678 216 -120 ) ( 2678 192 -120 ) ( 2678 192 -128 ) metals/m_hl_c10b 0 4 0 1 0.960000 134217728 16777216 0 +} +// brush 576 +{ +( 2376 512 -128 ) ( 2366 512 -128 ) ( 2366 502 -128 ) metals/mt_pv_m26y 24 0 0 1 1 134217728 0 0 +( 2366 502 -126 ) ( 2366 512 -126 ) ( 2376 512 -126 ) metals/mt_pv_m26y 24 0 0 1 1 134217728 0 0 +( 2366 502 126 ) ( 2376 502 126 ) ( 2376 502 -128 ) metals/mt_pv_m26y 24 -2 0 1 1 134217728 0 0 +( 2376 502 126 ) ( 2376 512 126 ) ( 2376 512 -128 ) metals/mt_pv_m26y -8 -2 0 1 1 134217728 0 0 +( 2376 512 126 ) ( 2366 512 126 ) ( 2366 512 -128 ) metals/mt_pv_m26y 24 -2 0 1 1 134217728 0 0 +( 2368 512 126 ) ( 2368 502 126 ) ( 2368 502 -128 ) metals/mt_pv_m26y -8 -2 0 1 1 134217728 0 0 +} +// brush 577 +{ +( 2376 410 -128 ) ( 2366 410 -128 ) ( 2366 400 -128 ) metals/mt_pv_m26y 24 -6 0 1 1 134217728 0 0 +( 2366 400 -126 ) ( 2366 410 -126 ) ( 2376 410 -126 ) metals/mt_pv_m26y 24 -6 0 1 1 134217728 0 0 +( 2366 400 126 ) ( 2376 400 126 ) ( 2376 400 -128 ) metals/mt_pv_m26y 24 -2 0 1 1 134217728 0 0 +( 2376 400 126 ) ( 2376 410 126 ) ( 2376 410 -128 ) metals/mt_pv_m26y -2 -2 0 1 1 134217728 0 0 +( 2376 410 126 ) ( 2366 410 126 ) ( 2366 410 -128 ) metals/mt_pv_m26y 24 -2 0 1 1 134217728 0 0 +( 2368 410 126 ) ( 2368 400 126 ) ( 2368 400 -128 ) metals/mt_pv_m26y -2 -2 0 1 1 134217728 0 0 +} +// brush 578 +{ +( 2504 410 -128 ) ( 2494 410 -128 ) ( 2494 400 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2494 400 -126 ) ( 2494 410 -126 ) ( 2504 410 -126 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2494 400 126 ) ( 2504 400 126 ) ( 2504 400 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2504 400 126 ) ( 2504 410 126 ) ( 2504 410 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2504 410 126 ) ( 2494 410 126 ) ( 2494 410 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2494 410 126 ) ( 2494 400 126 ) ( 2494 400 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 579 +{ +( 2632 410 -128 ) ( 2622 410 -128 ) ( 2622 400 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2622 400 -126 ) ( 2622 410 -126 ) ( 2632 410 -126 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2622 400 126 ) ( 2632 400 126 ) ( 2632 400 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2632 400 126 ) ( 2632 410 126 ) ( 2632 410 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2632 410 126 ) ( 2622 410 126 ) ( 2622 410 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2622 410 126 ) ( 2622 400 126 ) ( 2622 400 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 580 +{ +( 2632 512 -128 ) ( 2622 512 -128 ) ( 2622 502 -128 ) metals/mt_pv_m26y -8 0 0 1 1 134217728 0 0 +( 2622 502 -126 ) ( 2622 512 -126 ) ( 2632 512 -126 ) metals/mt_pv_m26y -8 0 0 1 1 134217728 0 0 +( 2622 502 126 ) ( 2632 502 126 ) ( 2632 502 -128 ) metals/mt_pv_m26y -8 -2 0 1 1 134217728 0 0 +( 2632 502 126 ) ( 2632 512 126 ) ( 2632 512 -128 ) metals/mt_pv_m26y -8 -2 0 1 1 134217728 0 0 +( 2632 512 126 ) ( 2622 512 126 ) ( 2622 512 -128 ) metals/mt_pv_m26y -8 -2 0 1 1 134217728 0 0 +( 2622 512 126 ) ( 2622 502 126 ) ( 2622 502 -128 ) metals/mt_pv_m26y -8 -2 0 1 1 134217728 0 0 +} +// brush 581 +{ +( 2504 512 -128 ) ( 2494 512 -128 ) ( 2494 502 -128 ) metals/mt_pv_m26y -8 0 0 1 1 134217728 0 0 +( 2494 502 -126 ) ( 2494 512 -126 ) ( 2504 512 -126 ) metals/mt_pv_m26y -8 0 0 1 1 134217728 0 0 +( 2494 502 126 ) ( 2504 502 126 ) ( 2504 502 -128 ) metals/mt_pv_m26y -8 -2 0 1 1 134217728 0 0 +( 2504 502 126 ) ( 2504 512 126 ) ( 2504 512 -128 ) metals/mt_pv_m26y -8 -2 0 1 1 134217728 0 0 +( 2504 512 126 ) ( 2494 512 126 ) ( 2494 512 -128 ) metals/mt_pv_m26y -8 -2 0 1 1 134217728 0 0 +( 2494 512 126 ) ( 2494 502 126 ) ( 2494 502 -128 ) metals/mt_pv_m26y -8 -2 0 1 1 134217728 0 0 +} +// brush 582 +{ +( 2368 640 -128 ) ( 2352 640 -128 ) ( 2352 400 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2352 400 -80 ) ( 2352 640 -80 ) ( 2368 640 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2368 400 -80 ) ( 2368 640 -80 ) ( 2368 640 -128 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 2368 720 -80 ) ( 2352 720 -80 ) ( 2352 720 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2352 640 -80 ) ( 2352 400 -80 ) ( 2352 400 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2368 568 -128 ) ( 2352 568 -128 ) ( 2360 568 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 583 +{ +( 2368 640 -128 ) ( 2352 640 -128 ) ( 2352 400 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2352 400 -80 ) ( 2352 640 -80 ) ( 2368 640 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2352 384 -80 ) ( 2368 384 -80 ) ( 2368 384 -128 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 2368 400 -80 ) ( 2368 640 -80 ) ( 2368 640 -128 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 2352 640 -80 ) ( 2352 400 -80 ) ( 2352 400 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2352 568 -128 ) ( 2368 568 -128 ) ( 2360 568 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 584 +{ +( 2624 254 -2 ) ( 2622 254 -2 ) ( 2622 194 -2 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2622 194 8 ) ( 2622 254 8 ) ( 2624 254 8 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2622 194 8 ) ( 2624 194 8 ) ( 2624 194 -2 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2626 194 8 ) ( 2626 254 8 ) ( 2626 254 -2 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2620 254 8 ) ( 2620 194 8 ) ( 2620 194 -2 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2510 254 -2 ) ( 2518 254 -2 ) ( 2514 254 8 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 585 +{ +( 2498 254 -2 ) ( 2496 254 -2 ) ( 2496 194 -2 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2496 194 8 ) ( 2496 254 8 ) ( 2498 254 8 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2496 194 8 ) ( 2498 194 8 ) ( 2498 194 -2 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2500 194 8 ) ( 2500 254 8 ) ( 2500 254 -2 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2494 254 8 ) ( 2494 194 8 ) ( 2494 194 -2 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2494 254 -2 ) ( 2500 254 -2 ) ( 2497 254 8 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 586 +{ +( 2768 128 -128 ) ( 2752 128 -128 ) ( 2752 48 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2752 48 -80 ) ( 2752 128 -80 ) ( 2768 128 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2768 48 -80 ) ( 2768 128 -80 ) ( 2768 128 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2760 720 -80 ) ( 2744 720 -80 ) ( 2744 720 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2752 -128 -80 ) ( 2752 -208 -80 ) ( 2752 -208 -128 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 2776 192 -128 ) ( 2760 192 -128 ) ( 2768 192 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 587 +{ +( 2484 255 54 ) ( 2421 248 54 ) ( 2428 185 54 ) props/box_sr_m13 7 -7 6 0.749959 0.750016 0 2097152 0 +( 2428 185 102 ) ( 2421 248 102 ) ( 2484 255 102 ) props/box_sr_m13 7 -18 5 0.750202 0.750011 0 2097152 0 +( 2427 193 86 ) ( 2490 199 86 ) ( 2490 199 54 ) props/box_sr_m13 -1 6 0 0.745605 0.750000 0 2097152 0 +( 2483 191 86 ) ( 2477 254 86 ) ( 2477 254 54 ) props/box_sr_m13 51 8 0 0.750000 0.750000 0 2097152 0 +( 2485 247 86 ) ( 2422 241 86 ) ( 2422 241 54 ) props/box_sr_m13 -39 8 0 0.750000 0.750000 0 2097152 0 +( 2429 249 86 ) ( 2435 186 86 ) ( 2435 186 54 ) props/box_sr_m13 62 8 0 0.750000 0.750000 0 2097152 0 +} +// brush 588 +{ +( 2368 240 -128 ) ( 2352 240 -128 ) ( 2352 128 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2352 128 -80 ) ( 2352 240 -80 ) ( 2368 240 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2368 128 -80 ) ( 2368 240 -80 ) ( 2368 240 -128 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 2368 256 -80 ) ( 2352 256 -80 ) ( 2352 256 -128 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 2352 240 -80 ) ( 2352 128 -80 ) ( 2352 128 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2368 192 -128 ) ( 2360 192 -128 ) ( 2364 192 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 589 +{ +( 2496 242 6 ) ( 2432 242 6 ) ( 2432 178 6 ) props/box_c_m5 23 -61 0 0.750000 0.750000 0 2097152 0 +( 2432 178 54 ) ( 2432 242 54 ) ( 2496 242 54 ) props/box_c_m6 23 -61 0 0.750000 0.750000 0 2097152 0 +( 2432 194 198 ) ( 2496 194 198 ) ( 2496 194 6 ) props/box_c_m5 23 7 0 0.750000 0.750000 0 2097152 0 +( 2480 178 198 ) ( 2480 242 198 ) ( 2480 242 6 ) props/box_c_m5 61 8 0 0.750000 0.750000 0 2097152 0 +( 2496 242 198 ) ( 2432 242 198 ) ( 2432 242 6 ) props/box_c_m5 43 9 0 -0.750000 0.750000 0 2097152 0 +( 2432 242 198 ) ( 2432 178 198 ) ( 2432 178 6 ) props/box_c_m5 67 9 0 -0.750000 0.750000 0 2097152 0 +} +// brush 590 +{ +( 2582 248 54 ) ( 2518 248 54 ) ( 2518 184 54 ) props/box_c_m5 -32 8 0 -0.750000 0.750000 0 2097152 0 +( 2518 184 102 ) ( 2518 248 102 ) ( 2582 248 102 ) props/box_c_m5 -23 33 0 -0.750000 0.750000 0 2097152 0 +( 2518 192 86 ) ( 2582 192 86 ) ( 2582 192 54 ) props/box_c_m5 -23 8 0 -0.750000 0.750000 0 2097152 0 +( 2574 184 86 ) ( 2574 248 86 ) ( 2574 248 54 ) props/box_c_m5 1 8 0 0.750000 0.750000 0 2097152 0 +( 2582 240 86 ) ( 2518 240 86 ) ( 2518 240 54 ) props/box_c_m5 -24 8 0 -0.750000 0.750000 0 2097152 0 +( 2526 248 86 ) ( 2526 184 86 ) ( 2526 184 54 ) props/box_c_m5 1 8 0 -0.750000 0.750000 0 2097152 0 +} +// brush 591 +{ +( 2558 256 6 ) ( 2494 256 6 ) ( 2494 192 6 ) props/box_sr_m13 55 -43 0 0.750000 0.750000 0 2097152 0 +( 2494 192 54 ) ( 2494 256 54 ) ( 2558 256 54 ) props/box_sr_m13 55 -54 0 0.750000 0.750000 0 2097152 0 +( 2494 200 38 ) ( 2558 200 38 ) ( 2558 200 6 ) props/box_sr_m13 55 6 0 0.750000 0.750000 0 2097152 0 +( 2550 192 38 ) ( 2550 256 38 ) ( 2550 256 6 ) props/box_c_m5 -11 8 0 0.750000 0.750000 0 2097152 0 +( 2558 248 38 ) ( 2494 248 38 ) ( 2494 248 6 ) props/box_c_m5 8 9 0 -0.750000 0.750000 0 2097152 0 +( 2502 256 38 ) ( 2502 192 38 ) ( 2502 192 6 ) props/box_c_m5 11 8 0 -0.750000 0.750000 0 2097152 0 +} +// brush 592 +{ +( 2632 250 6 ) ( 2568 250 6 ) ( 2568 186 6 ) props/box_c_m5 -30 -51 0 0.750000 0.750000 0 2097152 0 +( 2568 186 54 ) ( 2568 250 54 ) ( 2632 250 54 ) props/box_c_m6 -30 -51 0 0.750000 0.750000 0 2097152 0 +( 2568 202 198 ) ( 2632 202 198 ) ( 2632 202 6 ) props/box_c_m5 -30 7 0 0.750000 0.750000 0 2097152 0 +( 2616 186 198 ) ( 2616 250 198 ) ( 2616 250 6 ) props/box_c_m5 51 8 0 0.750000 0.750000 0 2097152 0 +( 2632 250 198 ) ( 2568 250 198 ) ( 2568 250 6 ) props/box_c_m5 -32 9 0 -0.750000 0.750000 0 2097152 0 +( 2568 250 198 ) ( 2568 186 198 ) ( 2568 186 6 ) props/box_c_m5 78 9 0 -0.750000 0.750000 0 2097152 0 +} +// brush 593 +{ +( 2368 192 -36 ) ( 2374 192 -36 ) ( 2374 256 -2 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2368 242 -2 ) ( 2374 242 -2 ) ( 2374 192 -27 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2368 192 -27 ) ( 2374 192 -27 ) ( 2374 192 -36 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2374 194 -26 ) ( 2374 254 -26 ) ( 2374 254 -36 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2374 242 -2 ) ( 2368 242 -2 ) ( 2368 256 -2 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2368 254 -26 ) ( 2368 194 -26 ) ( 2368 194 -36 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 594 +{ +( 2494 192 -36 ) ( 2500 192 -36 ) ( 2500 256 -2 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2494 242 -2 ) ( 2500 242 -2 ) ( 2500 192 -27 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2494 192 -27 ) ( 2500 192 -27 ) ( 2500 192 -36 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2500 194 -26 ) ( 2500 254 -26 ) ( 2500 254 -36 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2500 242 -2 ) ( 2494 242 -2 ) ( 2494 256 -2 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2494 254 -26 ) ( 2494 194 -26 ) ( 2494 194 -36 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 595 +{ +( 2620 192 -36 ) ( 2626 192 -36 ) ( 2626 256 -2 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2620 242 -2 ) ( 2626 242 -2 ) ( 2626 192 -27 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2620 192 -27 ) ( 2626 192 -27 ) ( 2626 192 -36 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2626 194 -26 ) ( 2626 254 -26 ) ( 2626 254 -36 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2626 242 -2 ) ( 2620 242 -2 ) ( 2620 256 -2 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2620 254 -26 ) ( 2620 194 -26 ) ( 2620 194 -36 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 596 +{ +( 2746 192 -36 ) ( 2752 192 -36 ) ( 2752 256 -2 ) metals/mt_pv_m26y -6 8 0 1 1 134217728 0 0 +( 2746 242 -2 ) ( 2752 242 -2 ) ( 2752 192 -27 ) metals/mt_pv_m26y -6 8 0 1 1 134217728 0 0 +( 2746 192 -27 ) ( 2752 192 -27 ) ( 2752 192 -36 ) metals/mt_pv_m26y -6 -26 0 1 1 134217728 0 0 +( 2752 194 -26 ) ( 2752 254 -26 ) ( 2752 254 -36 ) metals/mt_pv_m26y -6 -26 0 1 1 134217728 0 0 +( 2752 242 -2 ) ( 2746 242 -2 ) ( 2746 256 -2 ) metals/mt_pv_m26y -6 -26 0 1 1 134217728 0 0 +( 2746 254 -26 ) ( 2746 194 -26 ) ( 2746 194 -36 ) metals/mt_pv_m26y -6 -26 0 1 1 134217728 0 0 +} +// brush 597 +{ +( 2686 292 0 ) ( 2566 292 0 ) ( 2566 196 0 ) sprites/mb_grate_2 -60 -40 0 0.500000 0.500000 128 4096 0 +( 2566 196 6 ) ( 2566 292 6 ) ( 2686 292 6 ) sprites/mb_grate_2 -60 -40 0 0.500000 0.500000 128 4096 0 +( 2430 194 8 ) ( 2550 194 8 ) ( 2550 194 -8 ) sprites/mb_grate_2 -60 16 0 0.500000 0.500000 128 4096 0 +( 2551 254 8 ) ( 2431 254 8 ) ( 2431 254 -8 ) sprites/mb_grate_2 -60 16 0 0.500000 0.500000 128 4096 0 +( 2620 254 0 ) ( 2620 248 0 ) ( 2620 251 6 ) sprites/mb_grate_2 40 16 0 0.500000 0.500000 128 4096 0 +( 2500 248 0 ) ( 2500 254 0 ) ( 2500 251 6 ) sprites/mb_grate_2 40 16 0 0.500000 0.500000 128 4096 0 +} +// brush 598 +{ +( 2686 292 0 ) ( 2566 292 0 ) ( 2566 196 0 ) sprites/mb_grate_2 -60 -40 0 0.500000 0.500000 128 4096 0 +( 2566 196 6 ) ( 2566 292 6 ) ( 2686 292 6 ) sprites/mb_grate_2 -60 -40 0 0.500000 0.500000 128 4096 0 +( 2430 194 8 ) ( 2550 194 8 ) ( 2550 194 -8 ) sprites/mb_grate_2 -60 16 0 0.500000 0.500000 128 4096 0 +( 2551 254 8 ) ( 2431 254 8 ) ( 2431 254 -8 ) sprites/mb_grate_2 -60 16 0 0.500000 0.500000 128 4096 0 +( 2374 248 0 ) ( 2374 264 0 ) ( 2374 256 6 ) sprites/mb_grate_2 40 16 0 0.500000 0.500000 128 4096 0 +( 2494 254 0 ) ( 2494 248 0 ) ( 2494 251 6 ) sprites/mb_grate_2 40 16 0 0.500000 0.500000 128 4096 0 +} +// brush 599 +{ +( 2686 292 0 ) ( 2566 292 0 ) ( 2566 196 0 ) sprites/mb_grate_2 -60 -40 0 0.500000 0.500000 128 4096 0 +( 2566 196 6 ) ( 2566 292 6 ) ( 2686 292 6 ) sprites/mb_grate_2 -60 -40 0 0.500000 0.500000 128 4096 0 +( 2430 194 8 ) ( 2550 194 8 ) ( 2550 194 -8 ) sprites/mb_grate_2 -60 16 0 0.500000 0.500000 128 4096 0 +( 2746 196 8 ) ( 2746 292 8 ) ( 2746 292 -8 ) sprites/mb_grate_2 40 16 0 0.500000 0.500000 128 4096 0 +( 2551 254 8 ) ( 2431 254 8 ) ( 2431 254 -8 ) sprites/mb_grate_2 -60 16 0 0.500000 0.500000 128 4096 0 +( 2626 248 0 ) ( 2626 254 0 ) ( 2626 251 6 ) sprites/mb_grate_2 40 16 0 0.500000 0.500000 128 4096 0 +} +// brush 600 +{ +( 2752 254 -2 ) ( 2750 254 -2 ) ( 2750 194 -2 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2750 194 8 ) ( 2750 254 8 ) ( 2752 254 8 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2750 194 8 ) ( 2752 194 8 ) ( 2752 194 -2 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2752 194 8 ) ( 2752 254 8 ) ( 2752 254 -2 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2752 254 8 ) ( 2750 254 8 ) ( 2750 254 -2 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2746 254 8 ) ( 2746 194 8 ) ( 2746 194 -2 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 601 +{ +( 2370 254 -2 ) ( 2368 254 -2 ) ( 2368 194 -2 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2368 194 8 ) ( 2368 254 8 ) ( 2370 254 8 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2368 194 8 ) ( 2370 194 8 ) ( 2370 194 -2 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2374 194 8 ) ( 2374 254 8 ) ( 2374 254 -2 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2370 254 8 ) ( 2368 254 8 ) ( 2368 254 -2 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2368 254 8 ) ( 2368 194 8 ) ( 2368 194 -2 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 602 +{ +( 2574 262 -2 ) ( 2566 262 -2 ) ( 2566 254 -2 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2566 254 8 ) ( 2566 262 8 ) ( 2574 262 8 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2430 254 -40 ) ( 2438 254 -40 ) ( 2438 254 -88 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2752 254 -40 ) ( 2752 262 -40 ) ( 2752 262 -88 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2574 256 -40 ) ( 2566 256 -40 ) ( 2566 256 -88 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2368 248 -2 ) ( 2368 264 -2 ) ( 2368 256 8 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 603 +{ +( 2574 198 -2 ) ( 2566 198 -2 ) ( 2566 190 -2 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2566 190 8 ) ( 2566 198 8 ) ( 2574 198 8 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2566 192 -40 ) ( 2574 192 -40 ) ( 2574 192 -88 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2752 190 -40 ) ( 2752 198 -40 ) ( 2752 198 -88 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2438 194 -40 ) ( 2430 194 -40 ) ( 2430 194 -88 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2368 248 -2 ) ( 2368 264 -2 ) ( 2368 256 8 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 604 +{ +( 2352 128 128 ) ( 2352 240 128 ) ( 2368 240 128 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2344 192 0 ) ( 2360 192 0 ) ( 2360 192 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2368 128 64 ) ( 2368 240 64 ) ( 2368 240 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2368 256 0 ) ( 2352 256 0 ) ( 2352 256 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2352 240 0 ) ( 2352 128 0 ) ( 2352 128 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2352 228 0 ) ( 2352 200 0 ) ( 2368 214 0 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +} +// brush 605 +{ +( 2368 240 -80 ) ( 2352 240 -80 ) ( 2352 128 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2344 192 0 ) ( 2360 192 0 ) ( 2360 192 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2368 128 64 ) ( 2368 240 64 ) ( 2368 240 -16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2368 256 0 ) ( 2352 256 0 ) ( 2352 256 -80 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2352 240 0 ) ( 2352 128 0 ) ( 2352 128 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2352 200 0 ) ( 2352 228 0 ) ( 2368 214 0 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +} +// brush 606 +{ +( 2352 400 128 ) ( 2352 640 128 ) ( 2368 640 128 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2352 384 0 ) ( 2368 384 0 ) ( 2368 384 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2368 400 64 ) ( 2368 640 64 ) ( 2368 640 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2368 656 0 ) ( 2352 656 0 ) ( 2352 656 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2352 640 0 ) ( 2352 400 0 ) ( 2352 400 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2352 228 0 ) ( 2352 200 0 ) ( 2368 214 0 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +} +// brush 607 +{ +( 2368 640 -80 ) ( 2352 640 -80 ) ( 2352 400 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2352 384 0 ) ( 2368 384 0 ) ( 2368 384 -80 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2368 400 64 ) ( 2368 640 64 ) ( 2368 640 -16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2368 720 0 ) ( 2352 720 0 ) ( 2352 720 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2352 640 0 ) ( 2352 400 0 ) ( 2352 400 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2352 200 0 ) ( 2352 228 0 ) ( 2368 214 0 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +} +// brush 608 +{ +( 2368 704 128 ) ( 2368 720 128 ) ( 2616 720 128 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2368 704 64 ) ( 2616 704 64 ) ( 2616 704 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2616 720 64 ) ( 2368 720 64 ) ( 2368 720 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2368 720 128 ) ( 2368 704 128 ) ( 2368 704 -16 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2752 720 -80 ) ( 2752 704 -80 ) ( 2752 712 128 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2368 228 0 ) ( 2368 200 0 ) ( 2752 214 0 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +} +// brush 609 +{ +( 2616 720 -80 ) ( 2368 720 -80 ) ( 2368 704 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2368 704 64 ) ( 2616 704 64 ) ( 2616 704 -80 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2616 720 64 ) ( 2368 720 64 ) ( 2368 720 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2368 720 128 ) ( 2368 704 128 ) ( 2368 704 -16 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2752 720 -80 ) ( 2752 704 -80 ) ( 2752 712 128 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2368 200 0 ) ( 2368 228 0 ) ( 2752 214 0 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +} +// brush 610 +{ +( 2768 720 -80 ) ( 2752 720 -80 ) ( 2752 424 -80 ) bricks/b_mf_v2 64 -80 0 1 1 0 0 0 +( 2752 192 64 ) ( 2768 192 64 ) ( 2768 192 -80 ) bricks/b_mf_v2 64 -80 0 1 1 0 0 0 +( 2768 48 64 ) ( 2768 344 64 ) ( 2768 344 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2768 720 64 ) ( 2752 720 64 ) ( 2752 720 -80 ) bricks/b_mf_v2 64 -80 0 1 1 0 0 0 +( 2752 464 128 ) ( 2752 168 128 ) ( 2752 168 -16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2752 200 0 ) ( 2752 228 0 ) ( 2768 214 0 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +} +// brush 611 +{ +( 3136 192 -80 ) ( 2920 192 -80 ) ( 2920 176 -80 ) bricks/b_mf_v2 -64 48 0 1 1 0 0 0 +( 2920 176 64 ) ( 3136 176 64 ) ( 3136 176 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 3136 192 64 ) ( 2920 192 64 ) ( 2920 192 -80 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2352 200 64 ) ( 2352 184 64 ) ( 2352 184 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2768 848 -80 ) ( 2768 832 -80 ) ( 2768 840 128 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2384 176 0 ) ( 2352 176 0 ) ( 2368 192 0 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +} +// brush 612 +{ +( 2920 176 128 ) ( 2920 192 128 ) ( 3136 192 128 ) bricks/b_mf_v2 -64 48 0 1 1 0 0 0 +( 2920 176 64 ) ( 3136 176 64 ) ( 3136 176 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 3136 192 64 ) ( 2920 192 64 ) ( 2920 192 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2352 200 64 ) ( 2352 184 64 ) ( 2352 184 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2768 848 -80 ) ( 2768 832 -80 ) ( 2768 840 128 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2352 176 0 ) ( 2384 176 0 ) ( 2368 192 0 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +} +// brush 613 +{ +( 2748 708 -28 ) ( 2684 708 -28 ) ( 2684 644 -28 ) props/box_sr_m11 -24 40 0 0.500000 0.500000 0 134217728 0 +( 2684 644 4 ) ( 2684 708 4 ) ( 2748 708 4 ) props/box_sr_m11 -24 40 0 0.500000 0.500000 0 134217728 0 +( 2684 660 36 ) ( 2748 660 36 ) ( 2748 660 -28 ) props/box_sr_m11 -24 8 0 0.500000 0.500000 0 134217728 0 +( 2732 644 36 ) ( 2732 708 36 ) ( 2732 708 -28 ) props/box_sr_m11 -40 8 0 0.500000 0.500000 0 134217728 0 +( 2748 692 36 ) ( 2684 692 36 ) ( 2684 692 -28 ) props/box_sr_m11 -24 8 0 0.500000 0.500000 0 134217728 0 +( 2700 708 36 ) ( 2700 644 36 ) ( 2700 644 -28 ) props/box_sr_m11 -40 8 0 0.500000 0.500000 0 134217728 0 +} +// brush 614 +{ +( 2684 704 -28 ) ( 2620 704 -28 ) ( 2620 640 -28 ) props/box_c_m5 27 42 0 0.750000 0.750000 0 2097152 0 +( 2620 640 20 ) ( 2620 704 20 ) ( 2684 704 20 ) props/box_c_m6 27 42 0 0.750000 0.750000 0 2097152 0 +( 2620 656 164 ) ( 2684 656 164 ) ( 2684 656 -28 ) props/box_c_m5 27 27 0 0.750000 0.750000 0 2097152 0 +( 2668 640 164 ) ( 2668 704 164 ) ( 2668 704 -28 ) props/box_c_m5 -42 26 0 0.750000 0.750000 0 2097152 0 +( 2684 704 164 ) ( 2620 704 164 ) ( 2620 704 -28 ) props/box_c_m5 27 26 0 0.750000 0.750000 0 2097152 0 +( 2620 704 164 ) ( 2620 640 164 ) ( 2620 640 -28 ) props/box_c_m5 -42 26 0 0.750000 0.750000 0 2097152 0 +} +// brush 615 +{ +( 2624 712 -28 ) ( 2560 712 -28 ) ( 2560 648 -28 ) props/box_sr_m13 31 52 0 0.750000 0.750000 0 2097152 0 +( 2560 648 20 ) ( 2560 712 20 ) ( 2624 712 20 ) props/box_sr_m13 31 42 0 0.750000 0.750000 0 2097152 0 +( 2560 656 4 ) ( 2624 656 4 ) ( 2624 656 -28 ) props/box_sr_m13 31 27 0 0.750000 0.750000 0 2097152 0 +( 2616 648 4 ) ( 2616 712 4 ) ( 2616 712 -28 ) props/box_sr_m13 -43 25 0 0.750000 0.750000 0 2097152 0 +( 2624 704 4 ) ( 2560 704 4 ) ( 2560 704 -28 ) props/box_sr_m13 31 25 0 0.750000 0.750000 0 2097152 0 +( 2568 712 4 ) ( 2568 648 4 ) ( 2568 648 -28 ) props/box_sr_m13 -43 25 0 0.750000 0.750000 0 2097152 0 +} +// brush 616 +{ +( 2696 704 -92 ) ( 2632 704 -92 ) ( 2632 640 -92 ) props/box_sr_m11 -48 32 0 0.500000 0.500000 0 134217728 0 +( 2632 640 -60 ) ( 2632 704 -60 ) ( 2696 704 -60 ) props/box_sr_m11 -48 32 0 0.500000 0.500000 0 134217728 0 +( 2632 656 -28 ) ( 2696 656 -28 ) ( 2696 656 -92 ) props/box_sr_m11 -48 8 0 0.500000 0.500000 0 134217728 0 +( 2680 640 -28 ) ( 2680 704 -28 ) ( 2680 704 -92 ) props/box_sr_m11 -32 8 0 0.500000 0.500000 0 134217728 0 +( 2696 688 -28 ) ( 2632 688 -28 ) ( 2632 688 -92 ) props/box_sr_m11 -48 8 0 0.500000 0.500000 0 134217728 0 +( 2648 704 -28 ) ( 2648 640 -28 ) ( 2648 640 -92 ) props/box_sr_m11 -32 8 0 0.500000 0.500000 0 134217728 0 +} +// brush 617 +{ +( 2698 688 -124 ) ( 2639 714 -124 ) ( 2613 655 -124 ) props/box_sr_m6 7 54 -23 0.500261 0.500013 0 134217728 0 +( 2613 655 -92 ) ( 2639 714 -92 ) ( 2698 688 -92 ) props/box_sr_m6 20 16 -23 0.500000 0.500000 0 134217728 0 +( 2627 667 -76 ) ( 2686 641 -76 ) ( 2686 641 -124 ) props/box_sr_m6 -31 8 0 0.460000 0.500000 0 134217728 0 +( 2657 636 -76 ) ( 2683 694 -76 ) ( 2683 694 -124 ) props/box_sr_m6 -16 8 0 0.456726 0.500000 0 134217728 0 +( 2691 673 -76 ) ( 2633 699 -76 ) ( 2633 699 -124 ) props/box_sr_m6 -36 8 0 0.456543 0.500000 0 134217728 0 +( 2654 707 -76 ) ( 2628 649 -76 ) ( 2628 649 -124 ) props/box_sr_m6 -45 8 0 0.456787 0.500000 0 134217728 0 +} +// brush 618 +{ +( 2764 704 -124 ) ( 2700 704 -124 ) ( 2700 640 -124 ) props/box_c_m5 -15 42 0 0.750000 0.750000 0 2097152 0 +( 2700 640 -76 ) ( 2700 704 -76 ) ( 2764 704 -76 ) props/box_c_m6 -15 42 0 0.750000 0.750000 0 2097152 0 +( 2700 656 68 ) ( 2764 656 68 ) ( 2764 656 -124 ) props/box_c_m5 -15 27 0 0.750000 0.750000 0 2097152 0 +( 2748 640 68 ) ( 2748 704 68 ) ( 2748 704 -124 ) props/box_c_m5 -42 26 0 0.750000 0.750000 0 2097152 0 +( 2764 704 68 ) ( 2700 704 68 ) ( 2700 704 -124 ) props/box_c_m5 -48 26 0 -0.750000 0.750000 0 2097152 0 +( 2700 704 68 ) ( 2700 640 68 ) ( 2700 640 -124 ) props/box_c_m5 -21 27 0 -0.750000 0.750000 0 2097152 0 +} +// brush 619 +{ +( 2624 712 -124 ) ( 2560 712 -124 ) ( 2560 648 -124 ) props/box_sr_m6 32 26 0 -0.750000 0.750000 0 134217728 0 +( 2560 648 -76 ) ( 2560 712 -76 ) ( 2624 712 -76 ) props/box_sr_m5 32 42 0 -0.750000 0.750000 0 134217728 0 +( 2560 656 -92 ) ( 2624 656 -92 ) ( 2624 656 -124 ) props/box_sr_m6 32 26 0 -0.750000 0.750000 0 134217728 0 +( 2616 648 -92 ) ( 2616 712 -92 ) ( 2616 712 -124 ) props/box_sr_m6 42 27 0 -0.750000 0.750000 0 134217728 0 +( 2624 704 -92 ) ( 2560 704 -92 ) ( 2560 704 -124 ) props/box_sr_m6 32 26 0 -0.750000 0.750000 0 134217728 0 +( 2568 712 -92 ) ( 2568 648 -92 ) ( 2568 648 -124 ) props/box_sr_m6 43 26 0 -0.750000 0.750000 0 134217728 0 +} +// brush 620 +{ +( 2554 704 -74 ) ( 2496 704 -47 ) ( 2496 640 -47 ) props/box_c_m6 -44 42 0 0.670000 0.750000 134217728 0 0 +( 2517 640 -4 ) ( 2517 704 -4 ) ( 2574 704 -32 ) props/box_c_m6 -44 42 0 0.670000 0.750000 134217728 2097152 0 +( 2580 656 125 ) ( 2637 656 98 ) ( 2554 656 -74 ) props/box_c_m5 30 69 -25 0.750000 0.750000 134217728 2097152 0 +( 2622 640 104 ) ( 2622 704 104 ) ( 2539 704 -68 ) props/box_c_m5 -42 26 0 0.750000 0.670000 134217728 2097152 0 +( 2637 704 98 ) ( 2580 704 125 ) ( 2496 704 -47 ) props/box_c_m5 94 68 -25 0.749970 0.750128 134217728 0 0 +( 2580 704 125 ) ( 2580 640 125 ) ( 2496 640 -47 ) props/box_c_m5 -21 57 0 -0.750000 0.670000 134217728 2097152 0 +} +// brush 621 +{ +( 2554 696 -127 ) ( 2496 696 -100 ) ( 2496 632 -100 ) props/box_c_m5 -24 32 0 0.679443 0.750000 134217728 0 0 +( 2517 632 -57 ) ( 2517 696 -57 ) ( 2574 696 -84 ) props/box_c_m6 -52 32 0 0.680000 0.750000 134217728 2097152 0 +( 2577 648 73 ) ( 2635 648 46 ) ( 2554 648 -127 ) props/box_c_m5 63 5 -25 0.750000 0.750000 134217728 2097152 0 +( 2620 632 53 ) ( 2620 696 53 ) ( 2539 696 -121 ) props/box_c_m5 -32 13 0 0.750000 0.679749 134217728 0 0 +( 2635 696 46 ) ( 2577 696 73 ) ( 2496 696 -100 ) props/box_c_m5 63 4 -25 0.749457 0.750118 134217728 0 0 +( 2577 696 73 ) ( 2577 632 73 ) ( 2496 632 -100 ) props/box_c_m5 -32 44 0 0.750000 0.680000 134217728 2097152 0 +} +// brush 622 +{ +( 2432 494 30 ) ( 2368 494 30 ) ( 2368 430 30 ) props/box_sr_m13 0 -18 0 1 1 0 2097152 0 +( 2368 430 94 ) ( 2368 494 94 ) ( 2432 494 94 ) props/box_sr_m13 0 -18 0 1 1 0 2097152 0 +( 2368 430 94 ) ( 2432 430 94 ) ( 2432 430 30 ) props/box_c_m5 0 30 0 1 1 0 2097152 0 +( 2432 430 94 ) ( 2432 494 94 ) ( 2432 494 30 ) props/box_c_m5 -46 30 0 1 1 0 2097152 0 +( 2432 494 94 ) ( 2368 494 94 ) ( 2368 494 30 ) props/box_c_m5 0 30 0 -1 1 0 2097152 0 +( 2368 494 94 ) ( 2368 430 94 ) ( 2368 430 30 ) props/box_c_m5 -17 30 0 -1 1 0 2097152 0 +} +// brush 623 +{ +( 2496 504 -34 ) ( 2432 504 -34 ) ( 2432 440 -34 ) props/box_sr_m13 0 -8 0 1 1 0 2097152 0 +( 2432 440 30 ) ( 2432 504 30 ) ( 2496 504 30 ) props/box_sr_m13 0 -8 0 1 1 0 2097152 0 +( 2432 440 30 ) ( 2496 440 30 ) ( 2496 440 -34 ) props/box_c_m5 0 30 0 1 1 0 2097152 0 +( 2496 440 30 ) ( 2496 504 30 ) ( 2496 504 -34 ) props/box_c_m5 -56 30 0 1 1 0 2097152 0 +( 2496 504 30 ) ( 2432 504 30 ) ( 2432 504 -34 ) props/box_c_m5 0 30 0 -1 1 0 2097152 0 +( 2432 504 30 ) ( 2432 440 30 ) ( 2432 440 -34 ) props/box_c_m5 -56 30 0 1 1 0 2097152 0 +} +// brush 624 +{ +( 2432 488 -34 ) ( 2368 488 -34 ) ( 2368 424 -34 ) props/box_sr_m6 0 40 0 1 1 0 134217728 0 +( 2368 424 30 ) ( 2368 488 30 ) ( 2432 488 30 ) props/box_sr_m6 0 40 0 1 1 0 134217728 0 +( 2368 424 14 ) ( 2432 424 14 ) ( 2432 424 -34 ) props/box_sr_m6 0 30 0 1 1 0 134217728 0 +( 2432 424 14 ) ( 2432 488 14 ) ( 2432 488 -34 ) props/box_sr_m6 -40 30 0 1 1 0 134217728 0 +( 2432 488 14 ) ( 2368 488 14 ) ( 2368 488 -34 ) props/box_sr_m6 0 30 0 1 1 0 134217728 0 +( 2368 488 14 ) ( 2368 424 14 ) ( 2368 424 -34 ) props/box_sr_m6 -40 30 0 1 1 0 134217728 0 +} +// brush 625 +{ +( 2544 496 -128 ) ( 2480 496 -128 ) ( 2480 432 -128 ) props/box_c_m5 16 48 0 1 1 0 2097152 0 +( 2480 432 -64 ) ( 2480 496 -64 ) ( 2544 496 -64 ) props/box_sr_m13 16 14 0 1 1 0 2097152 0 +( 2480 432 -64 ) ( 2544 432 -64 ) ( 2544 432 -128 ) props/box_c_m5 16 0 0 1 1 0 2097152 0 +( 2544 432 -64 ) ( 2544 496 -64 ) ( 2544 496 -128 ) props/box_c_m5 -48 0 0 1 1 0 2097152 0 +( 2544 496 -64 ) ( 2480 496 -64 ) ( 2480 496 -128 ) props/box_c_m5 -16 64 0 -1 1 0 2097152 0 +( 2480 496 -64 ) ( 2480 432 -64 ) ( 2480 432 -128 ) props/box_c_m5 -48 0 0 1 1 0 2097152 0 +} +// brush 626 +{ +( 2488 464 -128 ) ( 2424 464 -128 ) ( 2424 400 -128 ) props/box_sr_m6 20 -1 0 0.750000 0.750000 0 134217728 0 +( 2424 400 -80 ) ( 2424 464 -80 ) ( 2488 464 -80 ) props/box_sr_m6 21 31 0 0.750000 0.750000 0 134217728 0 +( 2424 408 -64 ) ( 2488 408 -64 ) ( 2488 408 -128 ) props/box_sr_m6 20 22 0 0.750000 0.750000 0 134217728 0 +( 2480 400 -64 ) ( 2480 464 -64 ) ( 2480 464 -128 ) props/box_sr_m6 -32 22 0 0.750000 0.750000 0 134217728 0 +( 2488 456 -64 ) ( 2424 456 -64 ) ( 2424 456 -128 ) props/box_sr_m6 20 22 0 0.750000 0.750000 0 134217728 0 +( 2432 464 -64 ) ( 2432 400 -64 ) ( 2432 400 -128 ) props/box_sr_m6 -32 22 0 0.750000 0.750000 0 134217728 0 +} +// brush 627 +{ +( 2432 488 -128 ) ( 2368 488 -128 ) ( 2368 424 -128 ) props/box_sr_m6 0 40 0 1 1 0 134217728 0 +( 2368 424 -64 ) ( 2368 488 -64 ) ( 2432 488 -64 ) props/box_sr_m6 0 40 0 1 1 0 134217728 0 +( 2368 424 -80 ) ( 2432 424 -80 ) ( 2432 424 -128 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 2432 424 -80 ) ( 2432 488 -80 ) ( 2432 488 -128 ) props/box_sr_m6 -40 0 0 1 1 0 134217728 0 +( 2432 488 -80 ) ( 2368 488 -80 ) ( 2368 488 -128 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 2368 488 -80 ) ( 2368 424 -80 ) ( 2368 424 -128 ) props/box_sr_m6 -40 0 0 1 1 0 134217728 0 +} +// brush 628 +{ +( 2544 506 -42 ) ( 2544 508 -42 ) ( 2502 508 -66 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2538 508 -42 ) ( 2538 506 -42 ) ( 2502 506 -62 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2502 506 -56 ) ( 2516 506 -56 ) ( 2516 506 -66 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2544 508 -42 ) ( 2544 506 -42 ) ( 2538 506 -42 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2516 508 -56 ) ( 2502 508 -56 ) ( 2502 508 -66 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2502 508 -56 ) ( 2502 506 -56 ) ( 2502 506 -66 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 629 +{ +( 2454 508 -42 ) ( 2454 506 -42 ) ( 2496 506 -66 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2460 506 -42 ) ( 2460 508 -42 ) ( 2496 508 -62 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2496 508 -56 ) ( 2482 508 -56 ) ( 2482 508 -66 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2454 506 -42 ) ( 2454 508 -42 ) ( 2460 508 -42 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2482 506 -56 ) ( 2496 506 -56 ) ( 2496 506 -66 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2496 506 -56 ) ( 2496 508 -56 ) ( 2496 508 -66 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 630 +{ +( 2454 406 -42 ) ( 2454 404 -42 ) ( 2496 404 -66 ) metals/mt_pv_m26y -5 21 -180 1 1 134217728 0 0 +( 2460 404 -42 ) ( 2460 406 -42 ) ( 2496 406 -62 ) metals/mt_pv_m26y -5 21 -180 1 1 134217728 0 0 +( 2496 406 -56 ) ( 2482 406 -56 ) ( 2482 406 -66 ) metals/mt_pv_m26y -6 -23 -180 1 -1 134217728 0 0 +( 2454 404 -42 ) ( 2454 406 -42 ) ( 2460 406 -42 ) metals/mt_pv_m26y -5 -2 -180 1 1 134217728 0 0 +( 2482 404 -56 ) ( 2496 404 -56 ) ( 2496 404 -66 ) metals/mt_pv_m26y -6 -23 -180 1 -1 134217728 0 0 +( 2496 404 -56 ) ( 2496 406 -56 ) ( 2496 406 -66 ) metals/mt_pv_m26y 1 -23 -180 1 -1 134217728 0 0 +} +// brush 631 +{ +( 2544 404 -42 ) ( 2544 406 -42 ) ( 2502 406 -66 ) metals/mt_pv_m26y -8 0 0 1 1 134217728 0 0 +( 2538 406 -42 ) ( 2538 404 -42 ) ( 2502 404 -62 ) metals/mt_pv_m26y -8 0 0 1 1 134217728 0 0 +( 2502 404 -56 ) ( 2516 404 -56 ) ( 2516 404 -66 ) metals/mt_pv_m26y -8 -24 0 1 1 134217728 0 0 +( 2544 406 -42 ) ( 2544 404 -42 ) ( 2538 404 -42 ) metals/mt_pv_m26y -8 -24 0 1 1 134217728 0 0 +( 2516 406 -56 ) ( 2502 406 -56 ) ( 2502 406 -66 ) metals/mt_pv_m26y -8 -24 0 1 1 134217728 0 0 +( 2502 406 -56 ) ( 2502 404 -56 ) ( 2502 404 -66 ) metals/mt_pv_m26y -8 -24 0 1 1 134217728 0 0 +} +// brush 632 +{ +( 2372 504 118 ) ( 2368 504 118 ) ( 2368 408 118 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2368 408 128 ) ( 2368 504 128 ) ( 2372 504 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2368 408 128 ) ( 2372 408 128 ) ( 2372 408 112 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2370 408 128 ) ( 2370 504 128 ) ( 2370 504 112 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2372 504 128 ) ( 2368 504 128 ) ( 2368 504 112 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2368 504 128 ) ( 2368 408 128 ) ( 2368 408 112 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 633 +{ +( 2630 504 118 ) ( 2626 504 118 ) ( 2626 408 118 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2626 408 128 ) ( 2626 504 128 ) ( 2630 504 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2626 408 128 ) ( 2630 408 128 ) ( 2630 408 112 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2628 408 128 ) ( 2628 504 128 ) ( 2628 504 112 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2630 504 128 ) ( 2626 504 128 ) ( 2626 504 112 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2626 504 128 ) ( 2626 408 128 ) ( 2626 408 112 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 634 +{ +( 2504 504 118 ) ( 2500 504 118 ) ( 2500 408 118 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2498 408 128 ) ( 2498 504 128 ) ( 2502 504 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2498 408 128 ) ( 2502 408 128 ) ( 2502 408 112 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2500 408 128 ) ( 2500 504 128 ) ( 2500 504 112 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2502 504 128 ) ( 2498 504 128 ) ( 2498 504 112 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2498 504 128 ) ( 2498 408 128 ) ( 2498 408 112 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 635 +{ +( 2537 648 -124 ) ( 2530 648 -121 ) ( 2530 640 -121 ) wood/wd_sr_m3a 0 96 90 1 1 134217728 0 0 +( 2533 640 -118 ) ( 2533 648 -118 ) ( 2540 648 -121 ) wood/wd_sr_m3a 0 96 90 1 1 134217728 134217728 0 +( 2474 640 -245 ) ( 2482 640 -248 ) ( 2462 640 -292 ) wood/wd_sr_m3a 0 96 68 1 1 134217728 0 0 +( 2482 640 -248 ) ( 2482 648 -248 ) ( 2462 648 -292 ) wood/wd_sr_m3a 0 96 90 1 1 134217728 0 0 +( 2485 704 -250 ) ( 2478 704 -247 ) ( 2458 704 -291 ) wood/wd_sr_m3a 0 96 90 1 1 134217728 0 0 +( 2317 660 -175 ) ( 2317 652 -175 ) ( 2298 652 -219 ) wood/wd_sr_m3a 0 96 90 1 1 134217728 0 0 +} +// brush 636 +{ +( 2440 696 -124 ) ( 2376 696 -124 ) ( 2376 632 -124 ) props/box_c_m5 -32 32 0 0.750000 0.750000 0 2097152 0 +( 2376 632 -76 ) ( 2376 696 -76 ) ( 2440 696 -76 ) props/box_c_m6 -32 32 0 0.750000 0.750000 0 2097152 0 +( 2376 648 68 ) ( 2440 648 68 ) ( 2440 648 -124 ) props/box_c_m5 -32 27 0 0.750000 0.750000 0 2097152 0 +( 2424 632 68 ) ( 2424 696 68 ) ( 2424 696 -124 ) props/box_c_m5 -32 27 0 0.750000 0.750000 0 2097152 0 +( 2440 696 68 ) ( 2376 696 68 ) ( 2376 696 -124 ) props/box_c_m5 -32 27 0 0.750000 0.750000 0 2097152 0 +( 2376 696 68 ) ( 2376 632 68 ) ( 2376 632 -124 ) props/box_c_m5 -32 27 0 -0.750000 0.750000 0 2097152 0 +} +// brush 637 +{ +( 2556 648 60 ) ( 2548 648 60 ) ( 2548 640 60 ) wood/wd_sr_m3a 0 96 90 1 1 0 134217728 0 +( 2548 640 64 ) ( 2548 648 64 ) ( 2556 648 64 ) wood/wd_sr_m3a 0 96 90 1 1 0 134217728 0 +( 2548 640 -80 ) ( 2556 640 -80 ) ( 2556 640 -128 ) wood/wd_sr_m3a 0 96 90 1 1 0 134217728 0 +( 2560 640 -80 ) ( 2560 648 -80 ) ( 2560 648 -128 ) wood/wd_sr_m3a 0 96 90 1 1 0 134217728 0 +( 2560 704 -80 ) ( 2552 704 -80 ) ( 2552 704 -128 ) wood/wd_sr_m3a 0 96 90 1 1 0 134217728 0 +( 2372 660 -80 ) ( 2372 652 -80 ) ( 2372 652 -128 ) wood/wd_sr_m3a 0 96 90 1 1 0 134217728 0 +} +// brush 638 +{ +( 2556 648 -128 ) ( 2548 648 -128 ) ( 2548 640 -128 ) wood/wd_sr_m3a 0 96 90 1 1 0 0 0 +( 2548 640 -124 ) ( 2548 648 -124 ) ( 2556 648 -124 ) wood/wd_sr_m3a 0 96 90 1 1 0 134217728 0 +( 2548 640 -264 ) ( 2556 640 -264 ) ( 2556 640 -312 ) wood/wd_sr_m3a 0 96 90 1 1 0 0 0 +( 2560 640 -264 ) ( 2560 648 -264 ) ( 2560 648 -312 ) wood/wd_sr_m3a 0 96 90 1 1 0 0 0 +( 2560 704 -264 ) ( 2552 704 -264 ) ( 2552 704 -312 ) wood/wd_sr_m3a 0 96 90 1 1 0 0 0 +( 2372 660 -264 ) ( 2372 652 -264 ) ( 2372 652 -312 ) wood/wd_sr_m3a 0 96 90 1 1 0 0 0 +} +// brush 639 +{ +( 2744 648 -32 ) ( 2736 648 -32 ) ( 2736 640 -32 ) wood/wd_sr_m3a 0 96 90 1 1 0 0 0 +( 2736 640 -28 ) ( 2736 648 -28 ) ( 2744 648 -28 ) wood/wd_sr_m3a 0 96 90 1 1 0 134217728 0 +( 2736 640 -172 ) ( 2744 640 -172 ) ( 2744 640 -220 ) wood/wd_sr_m3a 0 96 90 1 1 0 0 0 +( 2748 640 -172 ) ( 2748 648 -172 ) ( 2748 648 -220 ) wood/wd_sr_m3a 0 96 90 1 1 0 0 0 +( 2748 704 -172 ) ( 2740 704 -172 ) ( 2740 704 -220 ) wood/wd_sr_m3a 0 96 90 1 1 0 0 0 +( 2564 660 -172 ) ( 2564 652 -172 ) ( 2564 652 -220 ) wood/wd_sr_m3a 0 96 90 1 1 0 0 0 +} +// brush 640 +{ +( 2744 648 -128 ) ( 2736 648 -128 ) ( 2736 640 -128 ) wood/wd_sr_m3a 0 96 90 1 1 0 0 0 +( 2736 640 -124 ) ( 2736 648 -124 ) ( 2744 648 -124 ) wood/wd_sr_m3a 0 96 90 1 1 0 134217728 0 +( 2736 640 -264 ) ( 2744 640 -264 ) ( 2744 640 -312 ) wood/wd_sr_m3a 0 96 90 1 1 0 0 0 +( 2748 640 -264 ) ( 2748 648 -264 ) ( 2748 648 -312 ) wood/wd_sr_m3a 0 96 90 1 1 0 0 0 +( 2748 704 -264 ) ( 2740 704 -264 ) ( 2740 704 -312 ) wood/wd_sr_m3a 0 96 90 1 1 0 0 0 +( 2564 660 -264 ) ( 2564 652 -264 ) ( 2564 652 -312 ) wood/wd_sr_m3a 0 96 90 1 1 0 0 0 +} +// brush 641 +{ +( 2744 648 60 ) ( 2736 648 60 ) ( 2736 640 60 ) wood/wd_sr_m3a 0 96 90 1 1 0 134217728 0 +( 2736 640 64 ) ( 2736 648 64 ) ( 2744 648 64 ) wood/wd_sr_m3a 0 96 90 1 1 0 134217728 0 +( 2736 640 -80 ) ( 2744 640 -80 ) ( 2744 640 -128 ) wood/wd_sr_m3a 0 96 90 1 1 0 134217728 0 +( 2748 640 -80 ) ( 2748 648 -80 ) ( 2748 648 -128 ) wood/wd_sr_m3a 0 96 90 1 1 0 134217728 0 +( 2748 704 -80 ) ( 2740 704 -80 ) ( 2740 704 -128 ) wood/wd_sr_m3a 0 96 90 1 1 0 134217728 0 +( 2564 660 -80 ) ( 2564 652 -80 ) ( 2564 652 -128 ) wood/wd_sr_m3a 0 96 90 1 1 0 134217728 0 +} +// brush 642 +{ +( 2564 648 -128 ) ( 2556 648 -128 ) ( 2556 640 -128 ) wood/wd_sr_m3a 0 96 0 1 1 0 0 0 +( 2556 640 64 ) ( 2556 648 64 ) ( 2564 648 64 ) wood/wd_sr_m3a 0 96 0 1 1 0 0 0 +( 2556 640 -80 ) ( 2564 640 -80 ) ( 2564 640 -128 ) wood/wd_sr_m3a 0 96 0 1 1 0 0 0 +( 2564 640 -80 ) ( 2564 648 -80 ) ( 2564 648 -128 ) wood/wd_sr_m3a 0 96 0 1 1 0 0 0 +( 2564 704 -80 ) ( 2556 704 -80 ) ( 2556 704 -128 ) wood/wd_sr_m3a 0 96 0 1 1 0 0 0 +( 2560 648 -80 ) ( 2560 640 -80 ) ( 2560 640 -128 ) wood/wd_sr_m3a 0 96 0 1 1 0 0 0 +} +// brush 643 +{ +( 2752 648 -128 ) ( 2744 648 -128 ) ( 2744 640 -128 ) wood/wd_sr_m3a 0 96 0 1 1 0 0 0 +( 2744 640 64 ) ( 2744 648 64 ) ( 2752 648 64 ) wood/wd_sr_m3a 0 96 0 1 1 0 0 0 +( 2744 640 -80 ) ( 2752 640 -80 ) ( 2752 640 -128 ) wood/wd_sr_m3a 0 96 0 1 1 0 0 0 +( 2752 640 -80 ) ( 2752 648 -80 ) ( 2752 648 -128 ) wood/wd_sr_m3a 0 96 0 1 1 0 0 0 +( 2756 704 -80 ) ( 2748 704 -80 ) ( 2748 704 -128 ) wood/wd_sr_m3a 0 96 0 1 1 0 0 0 +( 2748 648 -80 ) ( 2748 640 -80 ) ( 2748 640 -128 ) wood/wd_sr_m3a 0 96 0 1 1 0 0 0 +} +// brush 644 +{ +( 2376 648 -128 ) ( 2368 648 -128 ) ( 2368 640 -128 ) wood/wd_sr_m3a 0 96 0 1 1 0 0 0 +( 2368 640 64 ) ( 2368 648 64 ) ( 2376 648 64 ) wood/wd_sr_m3a 0 96 0 1 1 0 0 0 +( 2368 640 -80 ) ( 2376 640 -80 ) ( 2376 640 -128 ) wood/wd_sr_m3a 0 96 0 1 1 0 0 0 +( 2372 640 -80 ) ( 2372 648 -80 ) ( 2372 648 -128 ) wood/wd_sr_m3a 0 96 0 1 1 0 0 0 +( 2376 704 -80 ) ( 2368 704 -80 ) ( 2368 704 -128 ) wood/wd_sr_m3a 0 96 0 1 1 0 0 0 +( 2368 648 -80 ) ( 2368 640 -80 ) ( 2368 640 -128 ) wood/wd_sr_m3a 0 96 0 1 1 0 0 0 +} +// brush 645 +{ +( 2496 504 -40 ) ( 2376 504 -40 ) ( 2376 408 -40 ) sprites/mb_grate_2 0 0 0 0.500000 0.500000 128 4096 0 +( 2376 408 -34 ) ( 2376 504 -34 ) ( 2496 504 -34 ) sprites/mb_grate_2 0 0 0 0.500000 0.500000 128 4096 0 +( 2376 406 -32 ) ( 2496 406 -32 ) ( 2496 406 -48 ) sprites/mb_grate_2 0 0 0 0.500000 0.500000 128 4096 0 +( 2498 408 -32 ) ( 2498 504 -32 ) ( 2498 504 -48 ) sprites/mb_grate_2 0 0 0 0.500000 0.500000 128 4096 0 +( 2496 506 -32 ) ( 2376 506 -32 ) ( 2376 506 -48 ) sprites/mb_grate_2 0 0 0 0.500000 0.500000 128 4096 0 +( 2370 504 -32 ) ( 2370 408 -32 ) ( 2370 408 -48 ) sprites/mb_grate_2 0 0 0 0.500000 0.500000 128 4096 0 +} +// brush 646 +{ +( 2624 504 -40 ) ( 2504 504 -40 ) ( 2504 408 -40 ) sprites/mb_grate_2 0 0 0 0.500000 0.500000 128 16781312 0 +( 2504 408 -34 ) ( 2504 504 -34 ) ( 2624 504 -34 ) sprites/mb_grate_2 0 0 0 0.500000 0.500000 128 16781312 0 +( 2504 406 -32 ) ( 2624 406 -32 ) ( 2624 406 -48 ) sprites/mb_grate_2 0 0 0 0.500000 0.500000 128 16781312 0 +( 2626 408 -32 ) ( 2626 504 -32 ) ( 2626 504 -48 ) sprites/mb_grate_2 0 0 0 0.500000 0.500000 128 16781312 0 +( 2624 506 -32 ) ( 2504 506 -32 ) ( 2504 506 -48 ) sprites/mb_grate_2 0 0 0 0.500000 0.500000 128 16781312 0 +( 2500 504 -32 ) ( 2500 408 -32 ) ( 2500 408 -48 ) sprites/mb_grate_2 0 0 0 0.500000 0.500000 128 16781312 0 +} +// brush 647 +{ +( 2502 504 -42 ) ( 2498 504 -42 ) ( 2498 408 -42 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2498 408 -32 ) ( 2498 504 -32 ) ( 2502 504 -32 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2498 408 -32 ) ( 2502 408 -32 ) ( 2502 408 -48 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2500 408 -32 ) ( 2500 504 -32 ) ( 2500 504 -48 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2502 504 -32 ) ( 2498 504 -32 ) ( 2498 504 -48 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2498 504 -32 ) ( 2498 408 -32 ) ( 2498 408 -48 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 648 +{ +( 2630 504 -42 ) ( 2626 504 -42 ) ( 2626 408 -42 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2626 408 -32 ) ( 2626 504 -32 ) ( 2630 504 -32 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2626 408 -32 ) ( 2630 408 -32 ) ( 2630 408 -48 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2628 408 -32 ) ( 2628 504 -32 ) ( 2628 504 -48 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2630 504 -32 ) ( 2626 504 -32 ) ( 2626 504 -48 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2626 504 -32 ) ( 2626 408 -32 ) ( 2626 408 -48 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 649 +{ +( 2372 504 -42 ) ( 2368 504 -42 ) ( 2368 408 -42 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2368 408 -32 ) ( 2368 504 -32 ) ( 2372 504 -32 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2368 408 -32 ) ( 2372 408 -32 ) ( 2372 408 -48 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2370 408 -26 ) ( 2370 504 -26 ) ( 2370 504 -42 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2372 504 -32 ) ( 2368 504 -32 ) ( 2368 504 -48 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2368 504 -32 ) ( 2368 408 -32 ) ( 2368 408 -48 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 650 +{ +( 2384 514 -42 ) ( 2376 514 -42 ) ( 2376 506 -42 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2376 506 -32 ) ( 2376 514 -32 ) ( 2384 514 -32 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2376 506 -80 ) ( 2384 506 -80 ) ( 2384 506 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2496 506 -80 ) ( 2496 514 -80 ) ( 2496 514 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2384 508 -80 ) ( 2376 508 -80 ) ( 2376 508 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2374 514 -80 ) ( 2374 506 -80 ) ( 2374 506 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 651 +{ +( 2512 514 -42 ) ( 2504 514 -42 ) ( 2504 506 -42 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2504 506 -32 ) ( 2504 514 -32 ) ( 2512 514 -32 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2504 506 -80 ) ( 2512 506 -80 ) ( 2512 506 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2624 506 -80 ) ( 2624 514 -80 ) ( 2624 514 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2512 508 -80 ) ( 2504 508 -80 ) ( 2504 508 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2502 514 -80 ) ( 2502 506 -80 ) ( 2502 506 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 652 +{ +( 2512 410 -42 ) ( 2504 410 -42 ) ( 2504 402 -42 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2504 402 -32 ) ( 2504 410 -32 ) ( 2512 410 -32 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2504 404 -80 ) ( 2512 404 -80 ) ( 2512 404 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2626 402 -80 ) ( 2626 410 -80 ) ( 2626 410 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2512 406 -80 ) ( 2504 406 -80 ) ( 2504 406 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2502 410 -80 ) ( 2502 402 -80 ) ( 2502 402 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 653 +{ +( 2384 410 -42 ) ( 2376 410 -42 ) ( 2376 402 -42 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2376 402 -32 ) ( 2376 410 -32 ) ( 2384 410 -32 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2376 404 -80 ) ( 2384 404 -80 ) ( 2384 404 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2496 402 -80 ) ( 2496 410 -80 ) ( 2496 410 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2384 406 -80 ) ( 2376 406 -80 ) ( 2376 406 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 2374 410 -80 ) ( 2374 402 -80 ) ( 2374 402 -128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 654 +{ +( 2504 512 -126 ) ( 2496 512 -126 ) ( 2496 504 -126 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2496 504 128 ) ( 2496 512 128 ) ( 2504 512 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2496 504 -80 ) ( 2504 504 -80 ) ( 2504 504 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2502 504 -80 ) ( 2502 512 -80 ) ( 2502 512 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2504 510 -80 ) ( 2496 510 -80 ) ( 2496 510 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2496 512 -16 ) ( 2496 504 -16 ) ( 2496 504 -64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 655 +{ +( 2504 408 -126 ) ( 2496 408 -126 ) ( 2496 400 -126 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2496 400 128 ) ( 2496 408 128 ) ( 2504 408 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2496 402 -80 ) ( 2504 402 -80 ) ( 2504 402 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2502 400 -80 ) ( 2502 408 -80 ) ( 2502 408 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2504 408 -80 ) ( 2496 408 -80 ) ( 2496 408 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2496 408 -16 ) ( 2496 400 -16 ) ( 2496 400 -64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 656 +{ +( 2632 408 -126 ) ( 2624 408 -126 ) ( 2624 400 -126 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2624 400 128 ) ( 2624 408 128 ) ( 2632 408 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2624 402 -80 ) ( 2632 402 -80 ) ( 2632 402 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2630 400 -80 ) ( 2630 408 -80 ) ( 2630 408 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2632 408 -80 ) ( 2624 408 -80 ) ( 2624 408 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2624 408 -14 ) ( 2624 400 -14 ) ( 2624 400 -62 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 657 +{ +( 2632 512 -126 ) ( 2624 512 -126 ) ( 2624 504 -126 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2624 504 128 ) ( 2624 512 128 ) ( 2632 512 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2624 504 -80 ) ( 2632 504 -80 ) ( 2632 504 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2630 504 -80 ) ( 2630 512 -80 ) ( 2630 512 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2632 510 -80 ) ( 2624 510 -80 ) ( 2624 510 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2624 512 -14 ) ( 2624 504 -14 ) ( 2624 504 -62 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 658 +{ +( 2376 512 -126 ) ( 2368 512 -126 ) ( 2368 504 -126 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2368 504 128 ) ( 2368 512 128 ) ( 2376 512 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2368 504 -80 ) ( 2376 504 -80 ) ( 2376 504 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2374 504 -78 ) ( 2374 512 -78 ) ( 2374 512 -126 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2376 510 -80 ) ( 2368 510 -80 ) ( 2368 510 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2368 512 -80 ) ( 2368 504 -80 ) ( 2368 504 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 659 +{ +( 2376 408 -126 ) ( 2368 408 -126 ) ( 2368 400 -126 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2368 400 128 ) ( 2368 408 128 ) ( 2376 408 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2368 402 -80 ) ( 2376 402 -80 ) ( 2376 402 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2374 400 -78 ) ( 2374 408 -78 ) ( 2374 408 -126 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2376 408 -80 ) ( 2368 408 -80 ) ( 2368 408 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2368 408 -80 ) ( 2368 400 -80 ) ( 2368 400 -128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 660 +{ +( 2752 640 -144 ) ( 2688 640 -144 ) ( 2688 128 -144 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 2688 128 -128 ) ( 2688 640 -128 ) ( 2752 640 -128 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 2760 184 -128 ) ( 2760 184 -144 ) ( 2696 248 -144 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 2752 704 -128 ) ( 2752 704 -144 ) ( 2752 64 -144 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 2752 704 -144 ) ( 2752 704 -128 ) ( 2688 640 -128 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 2688 640 -128 ) ( 2688 128 -128 ) ( 2688 128 -144 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +} +// brush 661 +{ +( 3136 720 -128 ) ( 2736 720 -128 ) ( 2736 704 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2736 704 -80 ) ( 2736 720 -80 ) ( 3136 720 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2736 704 -80 ) ( 3136 704 -80 ) ( 3136 704 -128 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 3136 720 -80 ) ( 2736 720 -80 ) ( 2736 720 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2368 712 -80 ) ( 2368 696 -80 ) ( 2368 696 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2752 720 -128 ) ( 2752 704 -128 ) ( 2752 712 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 662 +{ +( 2480 192 -128 ) ( 2352 192 -128 ) ( 2352 176 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2352 176 -80 ) ( 2352 192 -80 ) ( 2480 192 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2352 176 -80 ) ( 2480 176 -80 ) ( 2480 176 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2480 192 -80 ) ( 2352 192 -80 ) ( 2352 192 -128 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 2352 192 -80 ) ( 2352 176 -80 ) ( 2352 176 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2768 848 -128 ) ( 2768 832 -128 ) ( 2768 840 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 663 +{ +( 3072 256 -144 ) ( 2976 256 -144 ) ( 2976 192 -144 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 2976 192 -128 ) ( 2976 256 -128 ) ( 3072 256 -128 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 2368 192 -144 ) ( 2368 192 -128 ) ( 3136 192 -128 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 2760 184 -144 ) ( 2760 184 -128 ) ( 2696 248 -128 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 3072 256 -128 ) ( 2976 256 -128 ) ( 2976 256 -144 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 2368 192 -128 ) ( 2368 192 -144 ) ( 2432 256 -144 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +} +// brush 664 +{ +( 2536 704 -144 ) ( 2432 704 -144 ) ( 2432 640 -144 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +( 2432 640 -128 ) ( 2432 704 -128 ) ( 2536 704 -128 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +( 2432 640 -128 ) ( 2536 640 -128 ) ( 2536 640 -144 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +( 2744 696 -128 ) ( 2744 696 -144 ) ( 2680 632 -144 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +( 3136 704 -144 ) ( 3136 704 -128 ) ( 2368 704 -128 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +( 2368 704 -144 ) ( 2368 704 -128 ) ( 2432 640 -128 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +} +// brush 665 +{ +( 2688 640 -144 ) ( 2432 640 -144 ) ( 2432 128 -144 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 2432 128 -128 ) ( 2432 640 -128 ) ( 2688 640 -128 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 2424 256 -128 ) ( 2680 256 -128 ) ( 2680 256 -144 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 2688 136 -128 ) ( 2688 648 -128 ) ( 2688 648 -144 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 2688 640 -128 ) ( 2432 640 -128 ) ( 2432 640 -144 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 2432 640 -128 ) ( 2432 128 -128 ) ( 2432 128 -144 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +} +// brush 666 +{ +( 2432 256 -144 ) ( 2368 256 -144 ) ( 2368 192 -144 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 2368 192 -128 ) ( 2368 256 -128 ) ( 2432 256 -128 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 2360 184 -144 ) ( 2360 184 -128 ) ( 2424 248 -128 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 2432 320 -128 ) ( 2432 320 -144 ) ( 2432 192 -144 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 2432 320 -144 ) ( 2432 320 -128 ) ( 2368 256 -128 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 2368 64 -128 ) ( 2368 64 -144 ) ( 2368 256 -144 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +} +// brush 667 +{ +( 2432 448 -144 ) ( 2368 448 -144 ) ( 2368 384 -144 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 2368 384 -128 ) ( 2368 448 -128 ) ( 2432 448 -128 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 2432 320 -128 ) ( 2432 320 -144 ) ( 2368 384 -144 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 2432 320 -144 ) ( 2432 320 -128 ) ( 2432 448 -128 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 2368 704 -128 ) ( 2368 704 -144 ) ( 2432 640 -144 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 2368 704 -144 ) ( 2368 704 -128 ) ( 2368 384 -128 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +} +// brush 668 +{ +( 2304 256 -80 ) ( 2256 256 -80 ) ( 2256 240 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2256 240 0 ) ( 2256 256 0 ) ( 2304 256 0 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2256 240 64 ) ( 2304 240 64 ) ( 2304 240 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2352 248 64 ) ( 2352 264 64 ) ( 2352 264 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2304 256 64 ) ( 2256 256 64 ) ( 2256 256 -80 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2312 240 -80 ) ( 2312 256 -80 ) ( 2312 248 0 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +} +// brush 669 +{ +( 2304 256 -80 ) ( 2256 256 -80 ) ( 2256 240 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2256 240 0 ) ( 2256 256 0 ) ( 2304 256 0 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2256 240 64 ) ( 2304 240 64 ) ( 2304 240 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2304 256 64 ) ( 2256 256 64 ) ( 2256 256 -80 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2256 256 64 ) ( 2256 240 64 ) ( 2256 240 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2296 256 -80 ) ( 2296 240 -80 ) ( 2296 248 0 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +} +// brush 670 +{ +( 2304 256 -128 ) ( 2256 256 -128 ) ( 2256 240 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2256 240 -80 ) ( 2256 256 -80 ) ( 2304 256 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2256 240 -80 ) ( 2304 240 -80 ) ( 2304 240 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2352 248 -80 ) ( 2352 264 -80 ) ( 2352 264 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2304 256 -80 ) ( 2256 256 -80 ) ( 2256 256 -128 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 2312 240 -128 ) ( 2312 256 -128 ) ( 2312 248 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 671 +{ +( 2304 256 -128 ) ( 2256 256 -128 ) ( 2256 240 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2256 240 -80 ) ( 2256 256 -80 ) ( 2304 256 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2256 240 -80 ) ( 2304 240 -80 ) ( 2304 240 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2304 256 -80 ) ( 2256 256 -80 ) ( 2256 256 -128 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 2256 256 -80 ) ( 2256 240 -80 ) ( 2256 240 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2296 256 -128 ) ( 2296 240 -128 ) ( 2296 248 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 672 +{ +( 2304 400 -128 ) ( 2256 400 -128 ) ( 2256 384 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2256 384 -80 ) ( 2256 400 -80 ) ( 2304 400 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2256 384 -80 ) ( 2304 384 -80 ) ( 2304 384 -128 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 2352 384 -80 ) ( 2352 400 -80 ) ( 2352 400 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2304 400 -80 ) ( 2256 400 -80 ) ( 2256 400 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2312 384 -128 ) ( 2312 400 -128 ) ( 2312 392 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 673 +{ +( 2304 400 -128 ) ( 2256 400 -128 ) ( 2256 384 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2256 384 -80 ) ( 2256 400 -80 ) ( 2304 400 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2256 384 -80 ) ( 2304 384 -80 ) ( 2304 384 -128 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 2304 400 -80 ) ( 2256 400 -80 ) ( 2256 400 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2256 400 -80 ) ( 2256 384 -80 ) ( 2256 384 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2296 400 -128 ) ( 2296 384 -128 ) ( 2296 392 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 674 +{ +( 2304 400 -80 ) ( 2256 400 -80 ) ( 2256 384 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2256 384 0 ) ( 2256 400 0 ) ( 2304 400 0 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2256 384 64 ) ( 2304 384 64 ) ( 2304 384 -80 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2352 384 64 ) ( 2352 400 64 ) ( 2352 400 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2304 400 64 ) ( 2256 400 64 ) ( 2256 400 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2312 384 -80 ) ( 2312 400 -80 ) ( 2312 392 0 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +} +// brush 675 +{ +( 2304 400 -80 ) ( 2256 400 -80 ) ( 2256 384 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2256 384 0 ) ( 2256 400 0 ) ( 2304 400 0 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2256 384 64 ) ( 2304 384 64 ) ( 2304 384 -80 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2304 400 64 ) ( 2256 400 64 ) ( 2256 400 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2256 400 64 ) ( 2256 384 64 ) ( 2256 384 -80 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2296 400 -80 ) ( 2296 384 -80 ) ( 2296 392 0 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +} +// brush 676 +{ +( 2296 256 -136 ) ( 2296 384 -136 ) ( 2288 384 -136 ) metals/mt_pv_m10am 64 1 90 1 1 0 8388608 0 +( 2288 384 -128 ) ( 2296 384 -128 ) ( 2296 256 -128 ) metals/mt_pv_m10am 64 1 90 1 1 0 8388608 0 +( 2288 384 -128 ) ( 2288 256 -128 ) ( 2288 256 -144 ) metals/mt_pv_m10am 64 1 90 1 1 0 8388608 0 +( 2288 256 -128 ) ( 2296 256 -128 ) ( 2296 256 -144 ) metals/mt_pv_m10am 64 1 90 1 1 0 8388608 0 +( 2296 256 -128 ) ( 2296 384 -128 ) ( 2296 384 -144 ) metals/mt_pv_m10am 64 1 90 1 1 0 8388608 0 +( 2296 384 -128 ) ( 2288 384 -128 ) ( 2288 384 -144 ) metals/mt_pv_m10am 64 1 90 1 1 0 8388608 0 +} +// brush 677 +{ +( 2314 256 -128 ) ( 2314 260 -128 ) ( 2306 260 -128 ) floors/dr_pv_m1 0 -38 90 1 1 134217728 0 0 +( 2306 260 0 ) ( 2314 260 0 ) ( 2314 256 0 ) floors/dr_pv_m1 0 -38 90 1 1 134217728 0 0 +( 2312 260 0 ) ( 2312 256 0 ) ( 2312 256 -128 ) floors/dr_pv_m1 0 0 0 1 1 134217728 0 0 +( 2306 256 0 ) ( 2314 256 0 ) ( 2314 256 -128 ) floors/dr_pv_m1 102 -127 -180 1 -1 134217728 0 0 +( 2314 256 0 ) ( 2314 260 0 ) ( 2314 260 -128 ) floors/dr_pv_m1 -1 0 0 1 1 134217728 8388608 0 +( 2314 262 0 ) ( 2306 262 0 ) ( 2306 262 -128 ) floors/dr_pv_m1 119 0 0 1 1 134217728 0 0 +} +// brush 678 +{ +( 2314 378 -128 ) ( 2314 382 -128 ) ( 2306 382 -128 ) floors/dr_pv_m1 -5 -38 90 1 1 134217728 0 0 +( 2306 382 0 ) ( 2314 382 0 ) ( 2314 378 0 ) floors/dr_pv_m1 -5 -38 90 1 1 134217728 0 0 +( 2312 382 0 ) ( 2312 378 0 ) ( 2312 378 -128 ) floors/dr_pv_m1 0 0 0 1 1 134217728 0 0 +( 2306 378 0 ) ( 2314 378 0 ) ( 2314 378 -128 ) floors/dr_pv_m1 119 0 0 1 1 134217728 0 0 +( 2314 378 0 ) ( 2314 382 0 ) ( 2314 382 -128 ) floors/dr_pv_m1 1 0 0 1 1 134217728 8388608 0 +( 2314 384 0 ) ( 2306 384 0 ) ( 2306 384 -128 ) floors/dr_pv_m1 114 -125 -180 1 -1 134217728 0 0 +} +// brush 679 +{ +( 2296 378 -128 ) ( 2296 382 -128 ) ( 2288 382 -128 ) floors/dr_pv_m1 -5 -56 90 1 1 134217728 0 0 +( 2288 382 0 ) ( 2296 382 0 ) ( 2296 378 0 ) floors/dr_pv_m1 -5 -56 90 1 1 134217728 0 0 +( 2294 382 0 ) ( 2294 378 0 ) ( 2294 378 -128 ) floors/dr_pv_m1 1 0 0 1 1 134217728 8388608 0 +( 2288 378 0 ) ( 2296 378 0 ) ( 2296 378 -128 ) floors/dr_pv_m1 9 0 0 1 1 134217728 0 0 +( 2296 378 0 ) ( 2296 382 0 ) ( 2296 382 -128 ) floors/dr_pv_m1 0 0 0 1 1 134217728 0 0 +( 2296 384 0 ) ( 2288 384 0 ) ( 2288 384 -128 ) floors/dr_pv_m1 4 -125 -180 1 -1 134217728 0 0 +} +// brush 680 +{ +( 2296 256 -128 ) ( 2296 260 -128 ) ( 2288 260 -128 ) floors/dr_pv_m1 0 -56 90 1 1 134217728 0 0 +( 2288 260 0 ) ( 2296 260 0 ) ( 2296 256 0 ) floors/dr_pv_m1 0 -56 90 1 1 134217728 0 0 +( 2294 260 0 ) ( 2294 256 0 ) ( 2294 256 -128 ) floors/dr_pv_m1 -1 0 0 1 1 134217728 8388608 0 +( 2288 256 0 ) ( 2296 256 0 ) ( 2296 256 -128 ) floors/dr_pv_m1 120 -127 -180 1 -1 134217728 0 0 +( 2296 256 0 ) ( 2296 260 0 ) ( 2296 260 -128 ) floors/dr_pv_m1 0 0 0 1 1 134217728 0 0 +( 2296 262 0 ) ( 2288 262 0 ) ( 2288 262 -128 ) floors/dr_pv_m1 9 0 0 1 1 134217728 0 0 +} +// brush 681 +{ +( 2312 256 -136 ) ( 2312 384 -136 ) ( 2296 384 -136 ) metals/mt_pv_m16k -72 -64 0 1 1 0 0 0 +( 2296 384 -128 ) ( 2312 384 -128 ) ( 2312 256 -128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8388608 0 +( 2296 384 -8 ) ( 2296 256 -8 ) ( 2296 256 -136 ) metals/mt_pv_m16k -32 -64 -90 1 1 0 0 0 +( 2296 256 -8 ) ( 2312 256 -8 ) ( 2312 256 -136 ) metals/mt_pv_m16k -31 -72 -90 1 -1 0 0 0 +( 2312 256 -8 ) ( 2312 384 -8 ) ( 2312 384 -136 ) metals/mt_pv_m16k -32 -64 -90 1 1 0 0 0 +( 2312 384 -8 ) ( 2296 384 -8 ) ( 2296 384 -136 ) metals/mt_pv_m16k -31 -72 -90 1 -1 0 0 0 +} +// brush 682 +{ +( 2312 384 -128 ) ( 2312 400 -128 ) ( 2296 400 -128 ) metals/mt_pv_m16k -63 72 -90 1 1 0 0 0 +( 2296 400 0 ) ( 2312 400 0 ) ( 2312 384 0 ) metals/mt_pv_m16k -63 72 -90 1 1 0 0 0 +( 2296 400 0 ) ( 2296 384 0 ) ( 2296 384 -80 ) metals/mt_pv_m16k -64 32 -180 1 1 0 0 0 +( 2296 384 0 ) ( 2312 384 0 ) ( 2312 384 -80 ) metals/mt_pv_m16k -8 0 0 1 1 0 8388608 0 +( 2312 384 0 ) ( 2312 400 0 ) ( 2312 400 -80 ) metals/mt_pv_m16k -64 32 -180 1 1 0 0 0 +( 2312 400 0 ) ( 2296 400 0 ) ( 2296 400 -80 ) metals/mt_pv_m16k -72 32 0 1 -1 0 0 0 +} +// brush 683 +{ +( 2312 240 -128 ) ( 2312 256 -128 ) ( 2296 256 -128 ) metals/mt_pv_m16k -55 88 -90 1 1 0 0 0 +( 2296 256 0 ) ( 2312 256 0 ) ( 2312 240 0 ) metals/mt_pv_m16k -55 88 -90 1 1 0 0 0 +( 2296 256 0 ) ( 2296 240 0 ) ( 2296 240 -128 ) metals/mt_pv_m16k -56 48 -180 1 1 0 0 0 +( 2296 240 0 ) ( 2312 240 0 ) ( 2312 240 -128 ) metals/mt_pv_m16k -64 48 0 1 -1 0 0 0 +( 2312 240 0 ) ( 2312 256 0 ) ( 2312 256 -128 ) metals/mt_pv_m16k -56 48 -180 1 1 0 0 0 +( 2312 256 0 ) ( 2296 256 0 ) ( 2296 256 -128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8388608 0 +} +// brush 684 +{ +( 2320 256 -136 ) ( 2320 384 -136 ) ( 2312 384 -136 ) metals/mt_pv_m10am 64 -63 90 1 1 0 0 0 +( 2312 384 -128 ) ( 2320 384 -128 ) ( 2320 256 -128 ) metals/mt_pv_m10am 64 -63 90 1 1 0 8388608 0 +( 2312 384 -128 ) ( 2312 256 -128 ) ( 2312 256 -144 ) metals/mt_pv_m10am 64 -47 0 1 1 0 0 0 +( 2312 256 -128 ) ( 2320 256 -128 ) ( 2320 256 -144 ) metals/mt_pv_m10am 48 -46 -180 1 -1 0 0 0 +( 2320 256 -128 ) ( 2320 384 -128 ) ( 2320 384 -144 ) metals/mt_pv_m10am 64 -47 0 1 1 0 0 0 +( 2320 384 -128 ) ( 2312 384 -128 ) ( 2312 384 -144 ) metals/mt_pv_m10am 48 -46 -180 1 -1 0 0 0 +} +// brush 685 +{ +( 2304 384 -144 ) ( 2256 384 -144 ) ( 2256 320 -144 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +( 2256 320 -128 ) ( 2256 384 -128 ) ( 2304 384 -128 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 2432 320 -128 ) ( 2432 320 -144 ) ( 2320 320 -144 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +( 2432 320 -144 ) ( 2432 320 -128 ) ( 2368 384 -128 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +( 2304 384 -128 ) ( 2256 384 -128 ) ( 2256 384 -144 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +( 2320 360 -144 ) ( 2320 384 -144 ) ( 2320 372 -128 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +} +// brush 686 +{ +( 2304 384 -144 ) ( 2256 384 -144 ) ( 2256 320 -144 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 2256 320 -128 ) ( 2256 384 -128 ) ( 2304 384 -128 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 2240 320 -144 ) ( 2240 320 -128 ) ( 2368 320 -128 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 2304 384 -128 ) ( 2256 384 -128 ) ( 2256 384 -144 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 2176 320 -128 ) ( 2176 320 -144 ) ( 2240 384 -144 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 2288 384 -144 ) ( 2288 360 -144 ) ( 2288 372 -128 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +} +// brush 687 +{ +( 2304 320 -144 ) ( 2240 320 -144 ) ( 2240 256 -144 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 2240 256 -128 ) ( 2240 320 -128 ) ( 2304 320 -128 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 2240 256 -128 ) ( 2304 256 -128 ) ( 2304 256 -144 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 2432 320 -128 ) ( 2432 320 -144 ) ( 2368 256 -144 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 2432 320 -144 ) ( 2432 320 -128 ) ( 2320 320 -128 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 2320 360 -144 ) ( 2320 384 -144 ) ( 2320 372 -128 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +} +// brush 688 +{ +( 2304 320 -144 ) ( 2240 320 -144 ) ( 2240 256 -144 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 2240 256 -128 ) ( 2240 320 -128 ) ( 2304 320 -128 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 2240 256 -128 ) ( 2304 256 -128 ) ( 2304 256 -144 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 2240 320 -128 ) ( 2240 320 -144 ) ( 2368 320 -144 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 2176 320 -144 ) ( 2176 320 -128 ) ( 2240 256 -128 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 2288 376 -144 ) ( 2288 352 -144 ) ( 2288 364 -128 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +} +// brush 689 +{ +( 2240 640 -144 ) ( 2176 640 -144 ) ( 2176 256 -144 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 2176 256 -128 ) ( 2176 640 -128 ) ( 2240 640 -128 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 2240 256 -128 ) ( 2240 256 -144 ) ( 2240 128 -144 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 2176 192 -128 ) ( 2176 192 -144 ) ( 2176 320 -144 ) bricks/c_sr_m8e 0 -8 0 1 1 0 67108864 0 +( 2176 192 -144 ) ( 2176 192 -128 ) ( 2240 128 -128 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 2240 256 -144 ) ( 2240 256 -128 ) ( 2176 320 -128 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +} +// brush 690 +{ +( 2240 640 -144 ) ( 2176 640 -144 ) ( 2176 256 -144 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 2176 256 -128 ) ( 2176 640 -128 ) ( 2240 640 -128 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 2240 384 -144 ) ( 2240 384 -128 ) ( 2240 704 -128 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 2240 704 -144 ) ( 2240 704 -128 ) ( 2176 640 -128 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 2176 448 -128 ) ( 2176 64 -128 ) ( 2176 64 -144 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 2240 384 -128 ) ( 2240 384 -144 ) ( 2176 320 -144 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +} +// brush 691 +{ +( 2304 384 0 ) ( 2256 384 0 ) ( 2256 256 0 ) bricks/b_mf_v2a 0 0 90 1 1 0 0 0 +( 2256 256 128 ) ( 2256 384 128 ) ( 2304 384 128 ) bricks/b_mf_v2 80 -79 -180 1 -1 0 0 0 +( 2256 256 64 ) ( 2304 256 64 ) ( 2304 256 0 ) bricks/b_mf_v2 80 -79 -180 1 -1 0 0 0 +( 2368 248 128 ) ( 2368 376 128 ) ( 2368 376 64 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2304 384 64 ) ( 2256 384 64 ) ( 2256 384 0 ) bricks/b_mf_v2 80 -79 -180 1 -1 0 0 0 +( 2256 384 64 ) ( 2256 256 64 ) ( 2256 256 0 ) bricks/b_mf_v2 80 -79 -180 1 -1 0 0 0 +} +// brush 692 +{ +( 2240 512 64 ) ( 2256 512 64 ) ( 2256 48 64 ) bricks/b_mf_v2 -63 0 90 1 1 0 0 0 +( 2240 512 64 ) ( 2240 48 64 ) ( 2240 48 -32 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2256 -8 64 ) ( 2256 456 64 ) ( 2256 456 -32 ) bricks/b_mf_v2 -64 -80 0 1 1 0 0 0 +( 2224 384 -80 ) ( 2272 384 -80 ) ( 2248 384 64 ) bricks/b_mf_v2 80 -79 -180 1 -1 0 0 0 +( 2272 256 -80 ) ( 2232 256 -80 ) ( 2252 256 64 ) bricks/b_mf_v2 80 -79 -180 1 -1 0 0 0 +( 2232 256 0 ) ( 2264 256 0 ) ( 2248 384 0 ) bricks/b_mf_v2a 0 0 90 1 1 0 0 0 +} +// brush 693 +{ +( 2256 48 -80 ) ( 2256 512 -80 ) ( 2240 512 -80 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2240 512 64 ) ( 2256 512 64 ) ( 2256 48 64 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2240 512 64 ) ( 2240 48 64 ) ( 2240 48 -32 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2256 -8 64 ) ( 2256 456 64 ) ( 2256 456 -32 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2056 128 -80 ) ( 2032 128 -80 ) ( 2044 128 64 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2232 256 -80 ) ( 2272 256 -80 ) ( 2252 256 64 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +} +// brush 694 +{ +( 2256 48 -128 ) ( 2256 512 -128 ) ( 2240 512 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2240 512 -80 ) ( 2256 512 -80 ) ( 2256 48 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2240 512 -32 ) ( 2240 48 -32 ) ( 2240 48 -128 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 2256 -8 -32 ) ( 2256 456 -32 ) ( 2256 456 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2056 128 -128 ) ( 2032 128 -128 ) ( 2044 128 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2232 256 -128 ) ( 2272 256 -128 ) ( 2252 256 -80 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +} +// brush 695 +{ +( 2256 48 -80 ) ( 2256 512 -80 ) ( 2240 512 -80 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2240 512 64 ) ( 2256 512 64 ) ( 2256 48 64 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2240 512 64 ) ( 2240 48 64 ) ( 2240 48 -32 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2256 -8 64 ) ( 2256 456 64 ) ( 2256 456 -32 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2240 512 -80 ) ( 2256 512 -80 ) ( 2248 512 64 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2272 384 -80 ) ( 2224 384 -80 ) ( 2248 384 64 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +} +// brush 696 +{ +( 2256 48 -128 ) ( 2256 512 -128 ) ( 2240 512 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2240 512 -80 ) ( 2256 512 -80 ) ( 2256 48 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2240 512 -32 ) ( 2240 48 -32 ) ( 2240 48 -128 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 2256 -8 -32 ) ( 2256 456 -32 ) ( 2256 456 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2240 512 -128 ) ( 2256 512 -128 ) ( 2248 512 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2272 384 -128 ) ( 2224 384 -128 ) ( 2248 384 -80 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +} +// brush 697 +{ +( 2256 48 -128 ) ( 2256 512 -128 ) ( 2240 512 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2240 512 -80 ) ( 2256 512 -80 ) ( 2256 48 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2240 512 -32 ) ( 2240 48 -32 ) ( 2240 48 -128 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 2256 -8 -32 ) ( 2256 456 -32 ) ( 2256 456 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2264 704 -80 ) ( 2248 704 -80 ) ( 2248 704 -176 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2256 512 -128 ) ( 2240 512 -128 ) ( 2248 512 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 698 +{ +( 2256 48 -80 ) ( 2256 512 -80 ) ( 2240 512 -80 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2240 512 64 ) ( 2256 512 64 ) ( 2256 48 64 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2240 512 64 ) ( 2240 48 64 ) ( 2240 48 -32 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2256 -8 64 ) ( 2256 456 64 ) ( 2256 456 -32 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2264 704 16 ) ( 2248 704 16 ) ( 2248 704 -80 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2256 512 -80 ) ( 2240 512 -80 ) ( 2248 512 64 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +} +// brush 699 +{ +( 2048 272 -80 ) ( 2048 512 -80 ) ( 2032 512 -80 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2032 512 64 ) ( 2048 512 64 ) ( 2048 272 64 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2032 512 64 ) ( 2032 272 64 ) ( 2032 272 -32 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2048 272 64 ) ( 2048 512 64 ) ( 2048 512 -32 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2048 512 64 ) ( 2032 512 64 ) ( 2032 512 -32 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2056 128 -80 ) ( 2032 128 -80 ) ( 2044 128 64 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +} +// brush 700 +{ +( 2048 272 -128 ) ( 2048 512 -128 ) ( 2032 512 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2032 512 -80 ) ( 2048 512 -80 ) ( 2048 272 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2032 512 -32 ) ( 2032 272 -32 ) ( 2032 272 -128 ) props/barrel_v4 0 22 0 0.750000 0.750000 0 0 0 +( 2048 272 -32 ) ( 2048 512 -32 ) ( 2048 512 -128 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 2048 512 -32 ) ( 2032 512 -32 ) ( 2032 512 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2056 128 -128 ) ( 2032 128 -128 ) ( 2044 128 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 701 +{ +( 2112 512 -144 ) ( 2048 512 -144 ) ( 2048 256 -144 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 2048 256 -128 ) ( 2048 512 -128 ) ( 2112 512 -128 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 2112 192 -144 ) ( 2112 192 -128 ) ( 2112 576 -128 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 2112 576 -144 ) ( 2112 576 -128 ) ( 2048 512 -128 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 2048 512 -128 ) ( 2048 256 -128 ) ( 2048 256 -144 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 2112 192 -128 ) ( 2112 192 -144 ) ( 2048 128 -144 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +} +// brush 702 +{ +( 2240 512 64 ) ( 2048 512 64 ) ( 2048 0 64 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 2048 0 72 ) ( 2048 512 72 ) ( 2240 512 72 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 2240 0 72 ) ( 2240 512 72 ) ( 2240 512 64 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 2240 512 72 ) ( 2048 512 72 ) ( 2048 512 64 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 2048 512 72 ) ( 2048 0 72 ) ( 2048 0 64 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 2056 128 64 ) ( 2032 128 64 ) ( 2044 128 72 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +} +// brush 703 +{ +( 1536 1280 96 ) ( 1504 1280 96 ) ( 1504 1248 96 ) props/box_sr_m11 0 0 0 0.500000 0.500000 0 134217728 0 +( 1504 1248 128 ) ( 1504 1280 128 ) ( 1536 1280 128 ) props/box_sr_m11 0 0 0 0.500000 0.500000 0 134217728 0 +( 1504 1248 160 ) ( 1536 1248 160 ) ( 1536 1248 96 ) props/box_sr_m11 0 0 0 0.500000 0.500000 0 134217728 0 +( 1536 1248 160 ) ( 1536 1280 160 ) ( 1536 1280 96 ) props/box_sr_m11 0 0 0 0.500000 0.500000 0 134217728 0 +( 1536 1280 160 ) ( 1504 1280 160 ) ( 1504 1280 96 ) props/box_sr_m11 0 0 0 0.500000 0.500000 0 134217728 0 +( 1504 1280 160 ) ( 1504 1248 160 ) ( 1504 1248 96 ) props/box_sr_m11 0 0 0 0.500000 0.500000 0 134217728 0 +} +// brush 704 +{ +( 1504 1352 184 ) ( 1440 1352 184 ) ( 1440 1416 184 ) props/bo_pv_c2 -126 11 0 0.750000 0.750000 0 134217728 0 +( 1536 1352 160 ) ( 1536 1416 160 ) ( 1536 1416 96 ) props/bo_pv_c3 12 20 -180 0.750000 -0.750000 0 0 0 +( 1440 1304 160 ) ( 1504 1304 160 ) ( 1504 1304 96 ) props/bo_pv_c1 127 20 -180 0.750000 -0.750000 0 0 0 +( 1440 1352 96 ) ( 1440 1416 96 ) ( 1440 1384 160 ) props/bo_pv_c3 12 20 -180 0.750000 -0.750000 0 0 0 +( 1504 1352 96 ) ( 1528 1352 96 ) ( 1516 1352 224 ) props/bo_pv_c1 -126 20 0 0.750000 0.750000 0 0 0 +( 1568 1336 160 ) ( 1568 1352 160 ) ( 1504 1344 160 ) props/bo_pv_c2 -127 9 0 0.750000 0.750000 0 0 0 +} +// brush 705 +{ +( 1248 1136 56 ) ( 1184 1136 56 ) ( 1184 1200 56 ) props/bo_pv_c2 -41 41 0 0.750000 0.750000 0 134217728 0 +( 1280 1136 32 ) ( 1280 1200 32 ) ( 1280 1200 -32 ) props/bo_pv_c3 -20 10 -180 0.750000 -0.750000 0 0 0 +( 1184 1088 32 ) ( 1248 1088 32 ) ( 1248 1088 -32 ) props/bo_pv_c1 40 10 -180 0.750000 -0.750000 0 0 0 +( 1184 1136 -32 ) ( 1184 1200 -32 ) ( 1184 1168 32 ) props/bo_pv_c3 -20 10 -180 0.750000 -0.750000 0 0 0 +( 1248 1136 -32 ) ( 1272 1136 -32 ) ( 1260 1136 96 ) props/bo_pv_c1 -41 10 0 0.750000 0.750000 0 0 0 +( 1312 1120 32 ) ( 1312 1136 32 ) ( 1248 1128 32 ) props/bo_pv_c2 -42 41 0 0.750000 0.750000 0 0 0 +} +// brush 706 +{ +( 1864 976 184 ) ( 1864 912 184 ) ( 1800 912 184 ) props/bo_pv_c2 -63 53 -90 0.750000 0.750000 0 134217728 0 +( 1864 1008 160 ) ( 1800 1008 160 ) ( 1800 1008 96 ) props/bo_pv_c3 54 21 -180 0.750000 -0.750000 0 134217728 0 +( 1912 912 160 ) ( 1912 976 160 ) ( 1912 976 96 ) props/bo_pv_c1 65 21 0 0.750000 0.750000 0 134217728 0 +( 1864 912 96 ) ( 1800 912 96 ) ( 1832 912 160 ) props/bo_pv_c3 54 21 -180 0.750000 -0.750000 0 134217728 0 +( 1864 976 96 ) ( 1864 1000 96 ) ( 1864 988 224 ) props/bo_pv_c1 -64 21 -180 0.750000 -0.750000 0 134217728 0 +( 1880 1040 160 ) ( 1864 1040 160 ) ( 1872 976 160 ) props/bo_pv_c2 -65 53 -90 0.750000 0.750000 0 0 0 +} +// brush 707 +{ +( 1728 1016 120 ) ( 1728 1080 120 ) ( 1792 1080 120 ) props/bo_pv_c2 31 63 270 0.750000 0.750000 0 134217728 0 +( 1728 984 96 ) ( 1792 984 96 ) ( 1792 984 32 ) props/bo_pv_c3 -63 0 0 0.750000 0.750000 0 134217728 0 +( 1680 1080 96 ) ( 1680 1016 96 ) ( 1680 1016 32 ) props/bo_pv_c1 141 0 0 -0.760000 0.750000 0 134217728 0 +( 1728 1080 32 ) ( 1792 1080 32 ) ( 1760 1080 96 ) props/bo_pv_c3 -63 0 0 0.750000 0.750000 0 134217728 0 +( 1728 1016 32 ) ( 1728 992 32 ) ( 1728 1004 160 ) props/bo_pv_c1 95 0 0 0.750000 0.750000 0 0 0 +( 1712 952 96 ) ( 1728 952 96 ) ( 1720 1016 96 ) props/bo_pv_c2 94 0 90 0.750000 0.750000 0 0 0 +} +// brush 708 +{ +( 1792 1088 32 ) ( 1728 1088 32 ) ( 1728 1024 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1728 960 96 ) ( 1792 960 96 ) ( 1792 960 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1664 1088 96 ) ( 1664 1024 96 ) ( 1664 1024 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1728 1024 32 ) ( 1792 1024 32 ) ( 1760 1024 96 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1728 1024 32 ) ( 1728 1000 32 ) ( 1728 1012 160 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1728 960 96 ) ( 1712 960 96 ) ( 1720 1024 96 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +} +// brush 709 +{ +( 1792 1088 32 ) ( 1728 1088 32 ) ( 1728 1024 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1728 1024 160 ) ( 1728 1088 160 ) ( 1792 1088 160 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1728 960 96 ) ( 1792 960 96 ) ( 1792 960 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1792 1024 96 ) ( 1792 1088 96 ) ( 1792 1088 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1728 1024 32 ) ( 1792 1024 32 ) ( 1760 1024 96 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1728 1000 32 ) ( 1728 1024 32 ) ( 1728 1012 160 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 710 +{ +( 2048 960 32 ) ( 1920 960 32 ) ( 1920 896 32 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1920 896 160 ) ( 1920 960 160 ) ( 2048 960 160 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1920 896 160 ) ( 2048 896 160 ) ( 2048 896 32 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 2048 896 160 ) ( 2048 960 160 ) ( 2048 960 32 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 2048 960 160 ) ( 1920 960 160 ) ( 1920 960 32 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1920 960 160 ) ( 1920 896 160 ) ( 1920 896 32 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +} +// brush 711 +{ +( 2048 1056 160 ) ( 2016 1056 160 ) ( 2016 1024 160 ) props/box_sr_m11 -48 0 0 0.500000 0.500000 0 134217728 0 +( 2016 1024 192 ) ( 2016 1056 192 ) ( 2048 1056 192 ) props/box_sr_m11 -2 0 0 0.500000 0.500000 0 134217728 0 +( 2016 1024 216 ) ( 2048 1024 216 ) ( 2048 1024 160 ) props/box_sr_m11 -2 0 0 0.500000 0.500000 0 134217728 0 +( 2048 1024 216 ) ( 2048 1056 216 ) ( 2048 1056 160 ) props/box_sr_m11 0 0 0 0.500000 0.500000 0 134217728 0 +( 2048 1056 216 ) ( 2016 1056 216 ) ( 2016 1056 160 ) props/box_sr_m11 -2 0 0 0.500000 0.500000 0 134217728 0 +( 2016 1056 216 ) ( 2016 1024 216 ) ( 2016 1024 160 ) props/box_sr_m11 0 0 0 0.500000 0.500000 0 134217728 0 +} +// brush 712 +{ +( 1920 1088 272 ) ( 1808 1088 272 ) ( 1808 1024 272 ) metals/m_pv_v5 30 0 0 1 1 0 16777216 0 +( 1808 1024 280 ) ( 1808 1088 280 ) ( 1920 1088 280 ) metals/m_pv_v5 16 0 0 1 1 0 0 0 +( 2064 1024 264 ) ( 2176 1024 264 ) ( 2176 1024 200 ) metals/m_pv_v5 16 0 0 1 1 0 0 0 +( 2176 1008 264 ) ( 2176 1072 264 ) ( 2176 1072 200 ) metals/m_pv_v5 16 0 0 1 1 0 0 0 +( 2176 1088 264 ) ( 2064 1088 264 ) ( 2064 1088 200 ) metals/m_pv_v5 16 0 0 1 1 0 0 0 +( 2064 1088 264 ) ( 2064 1024 264 ) ( 2064 1024 200 ) metals/m_pv_v5 16 0 0 1 1 0 0 0 +} +// brush 713 +{ +( 1920 1088 200 ) ( 1808 1088 200 ) ( 1808 1024 200 ) metals/m_pv_v5 16 0 0 1 1 0 0 0 +( 1808 1024 208 ) ( 1808 1088 208 ) ( 1920 1088 208 ) metals/m_pv_v5 30 0 0 1 1 0 16777216 0 +( 2064 1024 264 ) ( 2176 1024 264 ) ( 2176 1024 200 ) metals/m_pv_v5 16 -8 0 1 1 0 0 0 +( 2176 1024 264 ) ( 2176 1088 264 ) ( 2176 1088 200 ) metals/m_pv_v5 16 -8 0 1 1 0 0 0 +( 2176 1088 264 ) ( 2064 1088 264 ) ( 2064 1088 200 ) metals/m_pv_v5 16 -8 0 1 1 0 0 0 +( 2064 1088 264 ) ( 2064 1024 264 ) ( 2064 1024 200 ) metals/m_pv_v5 16 -8 0 1 1 0 0 0 +} +// brush 714 +{ +( 1920 1024 208 ) ( 1808 1024 208 ) ( 1808 1016 208 ) metals/m_pv_v5 16 16 0 1 1 0 0 0 +( 1808 1016 272 ) ( 1808 1024 272 ) ( 1920 1024 272 ) metals/m_pv_v5 16 16 0 1 1 0 0 0 +( 1808 1016 272 ) ( 1920 1016 272 ) ( 1920 1016 208 ) metals/m_pv_v5 16 16 0 1 1 0 0 0 +( 2112 1016 272 ) ( 2112 1024 272 ) ( 2112 1024 208 ) metals/m_pv_v5 30 -14 0 1 1 0 0 0 +( 2176 1024 272 ) ( 2064 1024 272 ) ( 2064 1024 208 ) metals/m_pv_v5 30 -14 0 1 1 0 16777216 0 +( 2064 1024 272 ) ( 2064 1016 272 ) ( 2064 1016 208 ) metals/m_pv_v5 16 16 0 1 1 0 0 0 +} +// brush 715 +{ +( 1920 1096 208 ) ( 1808 1096 208 ) ( 1808 1088 208 ) metals/m_pv_v5 30 -14 0 1 1 0 16777216 0 +( 1808 1088 272 ) ( 1808 1096 272 ) ( 1920 1096 272 ) metals/m_pv_v5 30 -14 0 1 1 0 16777216 0 +( 2064 1088 272 ) ( 2176 1088 272 ) ( 2176 1088 208 ) metals/m_pv_v5 30 -14 0 1 1 0 16777216 0 +( 2184 1096 272 ) ( 2184 1104 272 ) ( 2184 1104 208 ) metals/m_pv_v5 30 -14 0 1 1 0 16777216 0 +( 1920 1096 272 ) ( 1808 1096 272 ) ( 1808 1096 208 ) metals/m_pv_v5 30 -14 0 1 1 0 16777216 0 +( 2064 1096 272 ) ( 2064 1088 272 ) ( 2064 1088 208 ) metals/m_pv_v5 30 -14 0 1 1 0 16777216 0 +} +// brush 716 +{ +( 2064 1424 208 ) ( 2048 1424 208 ) ( 2048 880 208 ) metals/mt_pv_m7m 0 16 0 1 1 0 0 0 +( 2064 880 272 ) ( 2064 1424 272 ) ( 2064 1424 208 ) metals/mt_pv_m7m 0 16 0 1 1 0 0 0 +( 2064 1424 272 ) ( 2048 1424 272 ) ( 2048 1424 208 ) metals/mt_pv_m7m 0 16 0 1 1 0 0 0 +( 2048 1424 272 ) ( 2048 880 272 ) ( 2048 880 208 ) metals/mt_pv_m7bm 0 16 0 1 1 0 0 0 +( 2064 880 272 ) ( 2056 880 272 ) ( 2060 1424 272 ) metals/mt_pv_m7m 0 16 0 1 1 0 0 0 +( 2064 1088 208 ) ( 2048 1088 208 ) ( 2056 1088 272 ) metals/m_pv_v5 -98 -14 0 1 1 0 0 0 +} +// brush 717 +{ +( 2064 1424 208 ) ( 2048 1424 208 ) ( 2048 880 208 ) metals/mt_pv_m7m 0 16 0 1 1 0 0 0 +( 2048 880 272 ) ( 2064 880 272 ) ( 2064 880 208 ) metals/mt_pv_m7m 0 16 0 1 1 0 0 0 +( 2064 880 272 ) ( 2064 1424 272 ) ( 2064 1424 208 ) metals/mt_pv_m7m 0 16 0 1 1 0 0 0 +( 2048 1424 272 ) ( 2048 880 272 ) ( 2048 880 208 ) metals/mt_pv_m7bm 0 16 0 1 1 0 0 0 +( 2064 880 272 ) ( 2056 880 272 ) ( 2060 1424 272 ) metals/mt_pv_m7m 0 16 0 1 1 0 0 0 +( 2048 1024 208 ) ( 2064 1024 208 ) ( 2056 1024 272 ) metals/m_pv_v5 -98 -14 0 1 1 0 0 0 +} +// brush 718 +{ +( 1344 1344 32 ) ( 1280 1344 32 ) ( 1280 1280 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 1344 1344 96 ) ( 1280 1344 96 ) ( 1280 1344 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1216 1344 96 ) ( 1216 1280 96 ) ( 1216 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1344 1280 32 ) ( 1280 1280 32 ) ( 1312 1280 96 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1280 1344 32 ) ( 1280 1320 32 ) ( 1280 1332 160 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1232 1280 160 ) ( 1216 1280 160 ) ( 1224 1344 160 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +} +// brush 719 +{ +( 1264 1262 224 ) ( 1290 1320 224 ) ( 1349 1294 224 ) props/box_sr_m6 -1 2 -24 1 1 0 134217728 0 +( 1349 1294 96 ) ( 1290 1320 96 ) ( 1290 1320 32 ) props/box_sr_m6 -4 -32 0 0.913574 1 0 134217728 0 +( 1232 1346 96 ) ( 1206 1288 96 ) ( 1206 1288 32 ) props/box_sr_m6 -1 -32 0 0.913696 1 0 134217728 0 +( 1323 1236 32 ) ( 1264 1262 32 ) ( 1293 1249 96 ) props/box_sr_m6 -39 -32 0 0.913513 1 0 134217728 0 +( 1290 1320 32 ) ( 1280 1298 32 ) ( 1285 1309 160 ) props/box_sr_m6 -37 -32 0 0.913574 1 0 134217728 0 +( 1206 1288 160 ) ( 1220 1281 160 ) ( 1239 1343 160 ) props/box_sr_m6 -3 31 -23 0.999977 0.999816 0 134217728 0 +} +// brush 720 +{ +( 1536 1088 32 ) ( 1472 1088 32 ) ( 1472 1024 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1472 1024 160 ) ( 1536 1024 160 ) ( 1536 1024 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1536 1024 160 ) ( 1536 1088 160 ) ( 1536 1088 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1536 1088 160 ) ( 1472 1088 160 ) ( 1472 1088 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1472 1088 160 ) ( 1472 1024 160 ) ( 1472 1024 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1488 1024 160 ) ( 1472 1024 160 ) ( 1480 1088 160 ) props/box_sr_m5 0 128 0 1 1 0 134217728 0 +} +// brush 721 +{ +( 1504 1008 224 ) ( 1504 1072 224 ) ( 1568 1072 224 ) props/box_sr_m5 32 48 0 1 1 0 134217728 0 +( 1504 1008 160 ) ( 1568 1008 160 ) ( 1568 1008 32 ) props/box_sr_m6 -32 -32 0 1 1 0 134217728 0 +( 1568 1008 160 ) ( 1568 1072 160 ) ( 1568 1072 32 ) props/box_sr_m6 16 -32 0 1 1 0 134217728 0 +( 1568 1072 160 ) ( 1504 1072 160 ) ( 1504 1072 32 ) props/box_sr_m6 -32 -32 0 1 1 0 134217728 0 +( 1504 1072 160 ) ( 1504 1008 160 ) ( 1504 1008 32 ) props/box_sr_m6 16 -32 0 1 1 0 134217728 0 +( 1504 1008 160 ) ( 1520 1008 160 ) ( 1512 1072 160 ) props/box_sr_m6 -32 -48 0 1 1 0 134217728 0 +} +// brush 722 +{ +( 1792 1088 32 ) ( 1728 1088 32 ) ( 1728 1024 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1792 1024 96 ) ( 1792 1088 96 ) ( 1792 1088 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1792 1088 96 ) ( 1728 1088 96 ) ( 1728 1088 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1728 1088 96 ) ( 1728 1024 96 ) ( 1728 1024 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1792 1024 32 ) ( 1728 1024 32 ) ( 1760 1024 96 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1752 1024 160 ) ( 1728 1024 160 ) ( 1740 1088 160 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +} +// brush 723 +{ +( 1718 976 224 ) ( 1744 1034 224 ) ( 1802 1008 224 ) props/box_sr_m5 -48 33 -23 1 1 0 134217728 0 +( 1776 950 96 ) ( 1802 1008 96 ) ( 1802 1008 32 ) props/box_sr_m5 -15 32 0 0.913452 1 0 134217728 0 +( 1802 1008 96 ) ( 1744 1034 96 ) ( 1744 1034 32 ) props/box_sr_m5 -52 32 0 0.913574 1 0 134217728 0 +( 1744 1034 96 ) ( 1718 976 96 ) ( 1718 976 32 ) props/box_sr_m5 -44 32 0 0.913452 1 0 134217728 0 +( 1776 950 32 ) ( 1718 976 32 ) ( 1747 963 96 ) props/box_sr_m5 -24 32 0 0.913574 1 0 134217728 0 +( 1718 976 160 ) ( 1740 966 160 ) ( 1755 1029 160 ) props/box_sr_m5 -22 50 -23 0.999891 0.999971 0 134217728 0 +} +// brush 724 +{ +( 1600 1344 32 ) ( 1536 1344 32 ) ( 1536 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1536 1280 160 ) ( 1600 1280 160 ) ( 1600 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1600 1280 160 ) ( 1600 1344 160 ) ( 1600 1344 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1600 1344 160 ) ( 1536 1344 160 ) ( 1536 1344 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1408 1344 160 ) ( 1408 1280 160 ) ( 1408 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1544 1280 96 ) ( 1528 1280 96 ) ( 1536 1344 96 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 725 +{ +( 1536 1280 160 ) ( 1600 1280 160 ) ( 1600 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1600 1280 160 ) ( 1600 1344 160 ) ( 1600 1344 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1600 1344 160 ) ( 1536 1344 160 ) ( 1536 1344 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1536 1344 160 ) ( 1536 1280 160 ) ( 1536 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1544 1280 160 ) ( 1536 1280 160 ) ( 1540 1344 160 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1528 1280 96 ) ( 1544 1280 96 ) ( 1536 1344 96 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 726 +{ +( 1536 1280 224 ) ( 1536 1344 224 ) ( 1600 1344 224 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 1536 1280 160 ) ( 1600 1280 160 ) ( 1600 1280 32 ) props/box_sr_m5 0 32 0 1 1 0 134217728 0 +( 1600 1280 160 ) ( 1600 1344 160 ) ( 1600 1344 32 ) props/box_sr_m5 0 32 0 1 1 0 134217728 0 +( 1600 1344 160 ) ( 1536 1344 160 ) ( 1536 1344 32 ) props/box_sr_m5 0 32 0 1 1 0 134217728 0 +( 1536 1344 160 ) ( 1536 1280 160 ) ( 1536 1280 32 ) props/box_sr_m5 0 32 0 1 1 0 134217728 0 +( 1536 1280 160 ) ( 1544 1280 160 ) ( 1540 1344 160 ) props/box_sr_m5 0 32 0 1 1 0 134217728 0 +} +// brush 727 +{ +( 2064 880 80 ) ( 2064 1432 80 ) ( 2064 1432 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2064 1424 80 ) ( 2048 1424 80 ) ( 2048 1424 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2048 1432 80 ) ( 2048 880 80 ) ( 2048 880 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 2040 1344 40 ) ( 2056 1344 40 ) ( 2048 1424 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2072 1344 56 ) ( 2040 1344 56 ) ( 2056 1424 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2064 1384 40 ) ( 2048 1384 40 ) ( 2056 1384 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 728 +{ +( 2064 880 80 ) ( 2064 1432 80 ) ( 2064 1432 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2048 1432 80 ) ( 2048 880 80 ) ( 2048 880 32 ) common/li_sr_v27 8 8 0 1 1 0 1 15000 +( 2040 1344 40 ) ( 2056 1344 40 ) ( 2048 1424 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2072 1344 56 ) ( 2040 1344 56 ) ( 2056 1424 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2056 1368 40 ) ( 2048 1368 40 ) ( 2052 1368 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2048 1384 40 ) ( 2064 1384 40 ) ( 2056 1384 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 729 +{ +( 2064 880 80 ) ( 2064 1432 80 ) ( 2064 1432 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2048 1432 80 ) ( 2048 880 80 ) ( 2048 880 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 2056 1344 32 ) ( 2048 1344 32 ) ( 2052 1344 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2040 1344 40 ) ( 2056 1344 40 ) ( 2048 1424 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2072 1344 56 ) ( 2040 1344 56 ) ( 2056 1424 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2048 1368 40 ) ( 2056 1368 40 ) ( 2052 1368 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 730 +{ +( 2048 880 80 ) ( 2048 1432 80 ) ( 2064 1432 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2064 880 80 ) ( 2064 1432 80 ) ( 2064 1432 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2064 1424 80 ) ( 2048 1424 80 ) ( 2048 1424 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2048 1432 80 ) ( 2048 880 80 ) ( 2048 880 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 2056 1344 32 ) ( 2048 1344 32 ) ( 2052 1344 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2040 1344 56 ) ( 2072 1344 56 ) ( 2056 1424 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 731 +{ +( 2064 1432 32 ) ( 2048 1432 32 ) ( 2048 880 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2064 880 80 ) ( 2064 1432 80 ) ( 2064 1432 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2064 1424 80 ) ( 2048 1424 80 ) ( 2048 1424 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2048 1432 80 ) ( 2048 880 80 ) ( 2048 880 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 2056 1344 32 ) ( 2048 1344 32 ) ( 2052 1344 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2056 1344 40 ) ( 2040 1344 40 ) ( 2048 1424 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 732 +{ +( 2064 1432 32 ) ( 2048 1432 32 ) ( 2048 880 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2048 880 80 ) ( 2048 1432 80 ) ( 2064 1432 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2048 880 80 ) ( 2064 880 80 ) ( 2064 880 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2064 880 80 ) ( 2064 1432 80 ) ( 2064 1432 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2048 1432 80 ) ( 2048 880 80 ) ( 2048 880 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 2048 1344 32 ) ( 2056 1344 32 ) ( 2052 1344 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 733 +{ +( 1008 1408 80 ) ( 1600 1408 80 ) ( 1600 1408 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1600 1424 80 ) ( 1008 1424 80 ) ( 1008 1424 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1152 1424 32 ) ( 1152 1408 32 ) ( 1152 1416 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1008 1408 40 ) ( 1016 1408 40 ) ( 1012 1424 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1040 1408 56 ) ( 1008 1408 56 ) ( 1024 1424 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1096 1408 40 ) ( 1096 1424 40 ) ( 1096 1416 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 734 +{ +( 1008 1408 80 ) ( 1600 1408 80 ) ( 1600 1408 32 ) common/li_sr_v27 -8 8 0 1 1 0 1 15000 +( 1600 1424 80 ) ( 1008 1424 80 ) ( 1008 1424 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1008 1408 40 ) ( 1016 1408 40 ) ( 1012 1424 40 ) metals/mt_pv_m26y 0 -8 0 0.500000 0.500000 0 8388608 0 +( 1040 1408 56 ) ( 1008 1408 56 ) ( 1024 1424 56 ) metals/mt_pv_m26y 0 -8 0 0.500000 0.500000 0 8388608 0 +( 1080 1408 40 ) ( 1080 1424 40 ) ( 1080 1416 56 ) metals/mt_pv_m26y 0 -8 0 0.500000 0.500000 0 8388608 0 +( 1096 1424 40 ) ( 1096 1408 40 ) ( 1096 1416 56 ) metals/mt_pv_m26y 0 -8 0 0.500000 0.500000 0 8388608 0 +} +// brush 735 +{ +( 1008 1408 80 ) ( 1600 1408 80 ) ( 1600 1408 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1600 1424 80 ) ( 1008 1424 80 ) ( 1008 1424 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1008 1424 80 ) ( 1008 1408 80 ) ( 1008 1408 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1008 1408 40 ) ( 1016 1408 40 ) ( 1012 1424 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1040 1408 56 ) ( 1008 1408 56 ) ( 1024 1424 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1080 1424 40 ) ( 1080 1408 40 ) ( 1080 1416 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 736 +{ +( 1008 1408 80 ) ( 1008 1424 80 ) ( 1600 1424 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1008 1408 80 ) ( 1600 1408 80 ) ( 1600 1408 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1600 1424 80 ) ( 1008 1424 80 ) ( 1008 1424 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1008 1424 80 ) ( 1008 1408 80 ) ( 1008 1408 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1152 1424 32 ) ( 1152 1408 32 ) ( 1152 1416 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1008 1408 56 ) ( 1040 1408 56 ) ( 1024 1424 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 737 +{ +( 1600 1424 32 ) ( 1008 1424 32 ) ( 1008 1408 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1008 1408 80 ) ( 1600 1408 80 ) ( 1600 1408 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1600 1424 80 ) ( 1008 1424 80 ) ( 1008 1424 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1008 1424 80 ) ( 1008 1408 80 ) ( 1008 1408 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1152 1424 32 ) ( 1152 1408 32 ) ( 1152 1416 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1016 1408 40 ) ( 1008 1408 40 ) ( 1012 1424 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 738 +{ +( 1600 1424 32 ) ( 1008 1424 32 ) ( 1008 1408 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1008 1408 80 ) ( 1008 1424 80 ) ( 1600 1424 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1008 1408 80 ) ( 1600 1408 80 ) ( 1600 1408 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 2048 1416 80 ) ( 2048 1432 80 ) ( 2048 1432 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1600 1424 80 ) ( 1008 1424 80 ) ( 1008 1424 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1152 1408 32 ) ( 1152 1424 32 ) ( 1152 1416 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 739 +{ +( 1152 1344 32 ) ( 1088 1344 32 ) ( 1088 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1088 1280 160 ) ( 1088 1344 160 ) ( 1152 1344 160 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1088 1280 96 ) ( 1152 1280 96 ) ( 1152 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1152 1280 96 ) ( 1152 1344 96 ) ( 1152 1344 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1088 1344 96 ) ( 1088 1280 96 ) ( 1088 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1088 1344 32 ) ( 1112 1344 32 ) ( 1100 1344 160 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 740 +{ +( 1216 1344 32 ) ( 1152 1344 32 ) ( 1152 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1280 1280 96 ) ( 1280 1344 96 ) ( 1280 1344 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1216 1408 96 ) ( 1152 1408 96 ) ( 1152 1408 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1152 1344 96 ) ( 1152 1280 96 ) ( 1152 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1176 1344 32 ) ( 1152 1344 32 ) ( 1164 1344 160 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1168 1344 96 ) ( 1152 1344 96 ) ( 1160 1408 96 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +} +// brush 741 +{ +( 1152 1280 160 ) ( 1152 1344 160 ) ( 1216 1344 160 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1216 1280 96 ) ( 1216 1344 96 ) ( 1216 1344 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1216 1408 96 ) ( 1152 1408 96 ) ( 1152 1408 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1152 1344 96 ) ( 1152 1280 96 ) ( 1152 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1176 1344 32 ) ( 1152 1344 32 ) ( 1164 1344 160 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1152 1344 96 ) ( 1168 1344 96 ) ( 1160 1408 96 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 742 +{ +( 1216 1344 32 ) ( 1152 1344 32 ) ( 1152 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1152 1280 160 ) ( 1152 1344 160 ) ( 1216 1344 160 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1152 1280 96 ) ( 1216 1280 96 ) ( 1216 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1216 1280 96 ) ( 1216 1344 96 ) ( 1216 1344 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1152 1344 96 ) ( 1152 1280 96 ) ( 1152 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1152 1344 32 ) ( 1176 1344 32 ) ( 1164 1344 160 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 743 +{ +( 1280 1280 32 ) ( 1216 1280 32 ) ( 1216 1216 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 1216 1216 160 ) ( 1216 1280 160 ) ( 1280 1280 160 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1280 1216 96 ) ( 1280 1280 96 ) ( 1280 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1280 1280 96 ) ( 1216 1280 96 ) ( 1216 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1280 1216 32 ) ( 1216 1216 32 ) ( 1248 1216 96 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1216 1264 32 ) ( 1216 1280 32 ) ( 1216 1272 96 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 744 +{ +( 1280 1280 32 ) ( 1216 1280 32 ) ( 1216 1216 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1216 1216 96 ) ( 1216 1280 96 ) ( 1280 1280 96 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1280 1280 96 ) ( 1216 1280 96 ) ( 1216 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1152 1280 96 ) ( 1152 1216 96 ) ( 1152 1216 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1280 1216 32 ) ( 1216 1216 32 ) ( 1248 1216 96 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1216 1280 32 ) ( 1216 1264 32 ) ( 1216 1272 96 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 745 +{ +( 1344 1344 32 ) ( 1280 1344 32 ) ( 1280 1280 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 1280 1280 160 ) ( 1280 1344 160 ) ( 1344 1344 160 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1344 1280 96 ) ( 1344 1344 96 ) ( 1344 1344 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1344 1344 96 ) ( 1280 1344 96 ) ( 1280 1344 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1344 1280 32 ) ( 1280 1280 32 ) ( 1312 1280 96 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1280 1320 32 ) ( 1280 1344 32 ) ( 1280 1332 160 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 746 +{ +( 1344 1280 32 ) ( 1280 1280 32 ) ( 1280 1216 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1280 1216 96 ) ( 1280 1280 96 ) ( 1344 1280 96 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1344 1216 96 ) ( 1344 1280 96 ) ( 1344 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1344 1280 96 ) ( 1280 1280 96 ) ( 1280 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1280 1280 96 ) ( 1280 1216 96 ) ( 1280 1216 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1344 1216 32 ) ( 1280 1216 32 ) ( 1312 1216 96 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 747 +{ +( 1536 1344 96 ) ( 1472 1344 96 ) ( 1472 1280 96 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 1472 1280 160 ) ( 1472 1344 160 ) ( 1536 1344 160 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1536 1280 96 ) ( 1536 1344 96 ) ( 1536 1344 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1536 1344 96 ) ( 1472 1344 96 ) ( 1472 1344 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1408 1344 96 ) ( 1408 1280 96 ) ( 1408 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1536 1280 32 ) ( 1472 1280 32 ) ( 1504 1280 96 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 748 +{ +( 1536 1280 32 ) ( 1472 1280 32 ) ( 1472 1216 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1472 1216 96 ) ( 1472 1280 96 ) ( 1536 1280 96 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1536 1216 96 ) ( 1536 1280 96 ) ( 1536 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1536 1280 96 ) ( 1472 1280 96 ) ( 1472 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1472 1280 96 ) ( 1472 1216 96 ) ( 1472 1216 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1536 1216 32 ) ( 1472 1216 32 ) ( 1504 1216 96 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 749 +{ +( 1600 1280 32 ) ( 1536 1280 32 ) ( 1536 1216 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 1536 1216 160 ) ( 1536 1280 160 ) ( 1600 1280 160 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1600 1216 96 ) ( 1600 1280 96 ) ( 1600 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1600 1280 96 ) ( 1536 1280 96 ) ( 1536 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1536 1280 96 ) ( 1536 1216 96 ) ( 1536 1216 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1600 1216 32 ) ( 1536 1216 32 ) ( 1568 1216 96 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 750 +{ +( 1728 1280 32 ) ( 1664 1280 32 ) ( 1664 1216 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1664 1216 96 ) ( 1664 1280 96 ) ( 1728 1280 96 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1728 1216 96 ) ( 1728 1280 96 ) ( 1728 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1728 1280 96 ) ( 1664 1280 96 ) ( 1664 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1664 1280 96 ) ( 1664 1216 96 ) ( 1664 1216 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1728 1216 32 ) ( 1664 1216 32 ) ( 1696 1216 96 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 751 +{ +( 1728 1344 32 ) ( 1664 1344 32 ) ( 1664 1280 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 1664 1280 160 ) ( 1664 1344 160 ) ( 1728 1344 160 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1728 1280 96 ) ( 1728 1344 96 ) ( 1728 1344 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1728 1408 96 ) ( 1664 1408 96 ) ( 1664 1408 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1664 1344 96 ) ( 1664 1280 96 ) ( 1664 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1728 1280 32 ) ( 1664 1280 32 ) ( 1696 1280 96 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 752 +{ +( 1792 1280 32 ) ( 1728 1280 32 ) ( 1728 1216 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 1728 1216 160 ) ( 1728 1280 160 ) ( 1792 1280 160 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1792 1216 96 ) ( 1792 1280 96 ) ( 1792 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1792 1280 96 ) ( 1728 1280 96 ) ( 1728 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1728 1280 96 ) ( 1728 1216 96 ) ( 1728 1216 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1792 1216 32 ) ( 1728 1216 32 ) ( 1760 1216 96 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 753 +{ +( 1792 1344 32 ) ( 1728 1344 32 ) ( 1728 1280 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 1728 1280 224 ) ( 1728 1344 224 ) ( 1792 1344 224 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1792 1280 96 ) ( 1792 1344 96 ) ( 1792 1344 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1792 1408 96 ) ( 1728 1408 96 ) ( 1728 1408 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1728 1344 96 ) ( 1728 1280 96 ) ( 1728 1280 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1792 1280 32 ) ( 1728 1280 32 ) ( 1760 1280 96 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 754 +{ +( 1920 1344 32 ) ( 1856 1344 32 ) ( 1856 1280 32 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1856 1280 96 ) ( 1856 1344 96 ) ( 1920 1344 96 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1856 1280 64 ) ( 1920 1280 64 ) ( 1920 1280 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1920 1280 64 ) ( 1920 1344 64 ) ( 1920 1344 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1920 1344 64 ) ( 1856 1344 64 ) ( 1856 1344 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1856 1344 64 ) ( 1856 1280 64 ) ( 1856 1280 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 755 +{ +( 1984 1344 32 ) ( 1920 1344 32 ) ( 1920 1280 32 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1920 1280 160 ) ( 1920 1344 160 ) ( 1984 1344 160 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1920 1280 64 ) ( 1984 1280 64 ) ( 1984 1280 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1984 1280 64 ) ( 1984 1344 64 ) ( 1984 1344 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1984 1344 64 ) ( 1920 1344 64 ) ( 1920 1344 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1920 1344 64 ) ( 1920 1280 64 ) ( 1920 1280 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 756 +{ +( 2048 1344 32 ) ( 1984 1344 32 ) ( 1984 1280 32 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1984 1280 224 ) ( 1984 1344 224 ) ( 2048 1344 224 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1984 1280 64 ) ( 2048 1280 64 ) ( 2048 1280 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 2048 1280 64 ) ( 2048 1344 64 ) ( 2048 1344 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 2048 1344 64 ) ( 1984 1344 64 ) ( 1984 1344 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1984 1344 64 ) ( 1984 1280 64 ) ( 1984 1280 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 757 +{ +( 1088 1152 32 ) ( 1024 1152 32 ) ( 1024 1088 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 1024 1088 160 ) ( 1024 1152 160 ) ( 1088 1152 160 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 1088 1088 160 ) ( 1088 1152 160 ) ( 1088 1152 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1088 1152 160 ) ( 1024 1152 160 ) ( 1024 1152 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1024 1160 160 ) ( 1024 1096 160 ) ( 1024 1096 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1048 1088 32 ) ( 1024 1088 32 ) ( 1036 1088 160 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 758 +{ +( 1280 1088 32 ) ( 1216 1088 32 ) ( 1216 1024 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 1216 1024 96 ) ( 1216 1088 96 ) ( 1280 1088 96 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 1216 1024 160 ) ( 1280 1024 160 ) ( 1280 1024 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1280 1024 160 ) ( 1280 1088 160 ) ( 1280 1088 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1280 1088 160 ) ( 1216 1088 160 ) ( 1216 1088 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1216 1096 160 ) ( 1216 1032 160 ) ( 1216 1032 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 759 +{ +( 1280 1024 32 ) ( 1216 1024 32 ) ( 1216 960 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1216 960 224 ) ( 1216 1024 224 ) ( 1280 1024 224 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1216 960 160 ) ( 1280 960 160 ) ( 1280 960 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1280 960 160 ) ( 1280 1024 160 ) ( 1280 1024 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1280 1024 160 ) ( 1216 1024 160 ) ( 1216 1024 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1216 1032 160 ) ( 1216 968 160 ) ( 1216 968 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 760 +{ +( 1344 1120 32 ) ( 1280 1120 32 ) ( 1280 1056 32 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1280 1056 160 ) ( 1280 1120 160 ) ( 1344 1120 160 ) props/box_sr_m5 0 32 0 1 1 0 134217728 0 +( 1280 1056 160 ) ( 1344 1056 160 ) ( 1344 1056 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1344 1056 160 ) ( 1344 1120 160 ) ( 1344 1120 32 ) props/box_sr_m6 -32 -32 0 1 1 0 134217728 0 +( 1344 1120 160 ) ( 1280 1120 160 ) ( 1280 1120 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1280 1128 160 ) ( 1280 1064 160 ) ( 1280 1064 32 ) props/box_sr_m6 -32 -32 0 1 1 0 134217728 0 +} +// brush 761 +{ +( 1408 1048 32 ) ( 1344 1048 32 ) ( 1344 992 32 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1344 992 160 ) ( 1344 1048 160 ) ( 1408 1048 160 ) props/box_sr_m5 0 32 0 1 1 0 134217728 0 +( 1344 992 160 ) ( 1408 992 160 ) ( 1408 992 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1408 1056 160 ) ( 1344 1056 160 ) ( 1344 1056 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1280 1040 160 ) ( 1280 984 160 ) ( 1280 984 32 ) props/box_sr_m6 -32 -32 0 1 1 0 134217728 0 +( 1344 1056 32 ) ( 1344 1032 32 ) ( 1344 1044 160 ) props/box_sr_m6 -32 -32 0 1 1 0 134217728 0 +} +// brush 762 +{ +( 1600 1120 32 ) ( 1536 1120 32 ) ( 1536 1056 32 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1536 1056 96 ) ( 1536 1120 96 ) ( 1600 1120 96 ) props/box_sr_m5 0 96 0 1 1 0 134217728 0 +( 1600 1056 96 ) ( 1600 1120 96 ) ( 1600 1120 32 ) props/box_sr_m6 -32 -32 0 1 1 0 134217728 0 +( 1600 1120 96 ) ( 1536 1120 96 ) ( 1536 1120 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1536 1120 96 ) ( 1536 1056 96 ) ( 1536 1056 32 ) props/box_sr_m6 -32 -32 0 1 1 0 134217728 0 +( 1600 1056 32 ) ( 1536 1056 32 ) ( 1568 1056 96 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 763 +{ +( 1600 1048 32 ) ( 1536 1048 32 ) ( 1536 992 32 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1536 992 160 ) ( 1536 1048 160 ) ( 1600 1048 160 ) props/box_sr_m5 0 96 0 1 1 0 134217728 0 +( 1536 992 160 ) ( 1600 992 160 ) ( 1600 992 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1600 992 160 ) ( 1600 1048 160 ) ( 1600 1048 32 ) props/box_sr_m6 -32 -32 0 1 1 0 134217728 0 +( 1600 1056 160 ) ( 1536 1056 160 ) ( 1536 1056 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1536 1032 32 ) ( 1536 1056 32 ) ( 1536 1044 160 ) props/box_sr_m6 -32 -32 0 1 1 0 134217728 0 +} +// brush 764 +{ +( 1600 1016 32 ) ( 1536 1016 32 ) ( 1536 960 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1536 960 160 ) ( 1536 1016 160 ) ( 1600 1016 160 ) props/box_sr_m5 0 128 0 1 1 0 134217728 0 +( 1536 960 160 ) ( 1600 960 160 ) ( 1600 960 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1600 1024 160 ) ( 1536 1024 160 ) ( 1536 1024 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1472 1008 160 ) ( 1472 952 160 ) ( 1472 952 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1536 1024 32 ) ( 1536 1000 32 ) ( 1536 1012 160 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 765 +{ +( 1728 1088 32 ) ( 1664 1088 32 ) ( 1664 1024 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1664 1024 96 ) ( 1664 1088 96 ) ( 1728 1088 96 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1728 1024 96 ) ( 1728 1088 96 ) ( 1728 1088 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1728 1088 96 ) ( 1664 1088 96 ) ( 1664 1088 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1664 1088 96 ) ( 1664 1024 96 ) ( 1664 1024 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1728 1024 32 ) ( 1664 1024 32 ) ( 1696 1024 96 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 766 +{ +( 1920 1024 32 ) ( 1856 1024 32 ) ( 1856 960 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1856 960 160 ) ( 1856 1024 160 ) ( 1920 1024 160 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1856 896 160 ) ( 1920 896 160 ) ( 1920 896 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1920 960 160 ) ( 1920 1024 160 ) ( 1920 1024 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1920 1024 160 ) ( 1856 1024 160 ) ( 1856 1024 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1856 1024 160 ) ( 1856 960 160 ) ( 1856 960 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 767 +{ +( 2048 1152 32 ) ( 1920 1152 32 ) ( 1920 1088 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1920 1088 96 ) ( 1920 1152 96 ) ( 2048 1152 96 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1920 1088 160 ) ( 2048 1088 160 ) ( 2048 1088 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 2048 1088 160 ) ( 2048 1152 160 ) ( 2048 1152 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 2048 1152 160 ) ( 1920 1152 160 ) ( 1920 1152 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1920 1152 160 ) ( 1920 1088 160 ) ( 1920 1088 32 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 768 +{ +( 1984 1088 32 ) ( 1920 1088 32 ) ( 1920 1024 32 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1920 1024 160 ) ( 1920 1088 160 ) ( 1984 1088 160 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1920 960 64 ) ( 1984 960 64 ) ( 1984 960 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1984 1024 64 ) ( 1984 1088 64 ) ( 1984 1088 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1984 1088 64 ) ( 1920 1088 64 ) ( 1920 1088 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1920 1088 64 ) ( 1920 1024 64 ) ( 1920 1024 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 769 +{ +( 2048 1088 32 ) ( 1984 1088 32 ) ( 1984 1024 32 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1984 1024 160 ) ( 1984 1088 160 ) ( 2048 1088 160 ) props/box_sr_m5 0 64 0 1 1 0 134217728 0 +( 1984 1024 64 ) ( 2048 1024 64 ) ( 2048 1024 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 2048 1024 64 ) ( 2048 1088 64 ) ( 2048 1088 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 2048 1088 64 ) ( 1984 1088 64 ) ( 1984 1088 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1984 1088 64 ) ( 1984 1024 64 ) ( 1984 1024 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 770 +{ +( 2048 1024 32 ) ( 1984 1024 32 ) ( 1984 960 32 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1984 960 288 ) ( 1984 1024 288 ) ( 2048 1024 288 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1984 960 64 ) ( 2048 960 64 ) ( 2048 960 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 2048 960 64 ) ( 2048 1024 64 ) ( 2048 1024 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 2048 1024 64 ) ( 1984 1024 64 ) ( 1984 1024 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 1984 1024 64 ) ( 1984 960 64 ) ( 1984 960 56 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +} +// brush 771 +{ +( 2024 896 320 ) ( 2080 896 320 ) ( 2080 1408 320 ) metals/mt_pv_m7m 0 0 0 1 1 0 0 0 +( 1888 1088 320 ) ( 1888 1104 320 ) ( 1888 1096 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1896 1096 320 ) ( 1896 1088 320 ) ( 1896 1092 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1896 1216 320 ) ( 1896 1152 384 ) ( 1888 1184 352 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1896 1152 384 ) ( 1896 1088 320 ) ( 1888 1120 352 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +} +// brush 772 +{ +( 1560 1408 320 ) ( 1504 1408 320 ) ( 1504 896 320 ) metals/mt_pv_m7m 0 0 0 1 1 0 0 0 +( 1696 1216 320 ) ( 1696 1200 320 ) ( 1696 1208 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1688 1208 320 ) ( 1688 1216 320 ) ( 1688 1212 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1688 1088 320 ) ( 1688 1152 384 ) ( 1696 1120 352 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1688 1152 384 ) ( 1688 1216 320 ) ( 1696 1184 352 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +} +// brush 773 +{ +( 1728 1152 384 ) ( 1856 1152 384 ) ( 1856 1216 320 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1856 1152 400 ) ( 1728 1152 400 ) ( 1728 1216 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 2552 1216 336 ) ( 2496 1216 336 ) ( 2496 1216 80 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1696 1192 320 ) ( 1696 1208 320 ) ( 1696 1200 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1888 1216 320 ) ( 1888 1192 320 ) ( 1888 1204 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1856 1152 384 ) ( 1728 1152 384 ) ( 1728 1152 400 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +} +// brush 774 +{ +( 1856 1152 384 ) ( 1728 1152 384 ) ( 1728 1088 320 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1728 1152 400 ) ( 1856 1152 400 ) ( 1856 1088 336 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 2552 1088 336 ) ( 2608 1088 336 ) ( 2608 1088 80 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 1696 1200 320 ) ( 1696 1216 320 ) ( 1696 1208 336 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 1888 1224 320 ) ( 1888 1200 320 ) ( 1888 1212 336 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +( 1728 1152 384 ) ( 1856 1152 384 ) ( 1856 1152 400 ) props/w_sr_m4a 0 0 0 1 1 0 0 0 +} +// brush 775 +{ +( 1600 1152 384 ) ( 1472 1152 384 ) ( 1472 1088 320 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1472 1152 400 ) ( 1600 1152 400 ) ( 1600 1088 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 2296 1088 336 ) ( 2352 1088 336 ) ( 2352 1088 80 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1440 1200 320 ) ( 1440 1216 320 ) ( 1440 1208 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1632 1216 320 ) ( 1632 1192 320 ) ( 1632 1204 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1472 1152 384 ) ( 1600 1152 384 ) ( 1600 1152 400 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +} +// brush 776 +{ +( 1472 1152 384 ) ( 1600 1152 384 ) ( 1600 1216 320 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1600 1152 400 ) ( 1472 1152 400 ) ( 1472 1216 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 2296 1216 336 ) ( 2240 1216 336 ) ( 2240 1216 80 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1440 1200 320 ) ( 1440 1216 320 ) ( 1440 1208 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1632 1216 320 ) ( 1632 1192 320 ) ( 1632 1204 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1600 1152 384 ) ( 1472 1152 384 ) ( 1472 1152 400 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +} +// brush 777 +{ +( 1304 1408 320 ) ( 1248 1408 320 ) ( 1248 896 320 ) metals/mt_pv_m7m 0 0 0 1 1 0 0 0 +( 1440 1216 320 ) ( 1440 1200 320 ) ( 1440 1208 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1432 1208 320 ) ( 1432 1216 320 ) ( 1432 1212 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1432 1088 320 ) ( 1432 1152 384 ) ( 1440 1120 352 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1432 1152 384 ) ( 1432 1216 320 ) ( 1440 1184 352 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +} +// brush 778 +{ +( 1768 896 320 ) ( 1824 896 320 ) ( 1824 1408 320 ) metals/mt_pv_m7m 0 0 0 1 1 0 0 0 +( 1632 1088 320 ) ( 1632 1104 320 ) ( 1632 1096 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1640 1096 320 ) ( 1640 1088 320 ) ( 1640 1092 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1640 1216 320 ) ( 1640 1152 384 ) ( 1632 1184 352 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1640 1152 384 ) ( 1640 1088 320 ) ( 1632 1120 352 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +} +// brush 779 +{ +( 1080 1408 320 ) ( 1024 1408 320 ) ( 1024 896 320 ) metals/mt_pv_m7m 0 0 0 1 1 0 0 0 +( 1024 896 336 ) ( 1024 1408 336 ) ( 1080 1408 336 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2040 1088 336 ) ( 2096 1088 336 ) ( 2096 1088 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2048 896 336 ) ( 2048 1408 336 ) ( 2048 1408 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2040 1216 336 ) ( 1984 1216 336 ) ( 1984 1216 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1896 1200 320 ) ( 1896 1216 320 ) ( 1896 1208 336 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 780 +{ +( 1080 1408 320 ) ( 1024 1408 320 ) ( 1024 896 320 ) metals/mt_pv_m7m 0 0 0 1 1 0 0 0 +( 1024 896 336 ) ( 1024 1408 336 ) ( 1080 1408 336 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2040 1088 336 ) ( 2096 1088 336 ) ( 2096 1088 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2040 1216 336 ) ( 1984 1216 336 ) ( 1984 1216 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1640 1200 320 ) ( 1640 1216 320 ) ( 1640 1208 336 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1688 1216 320 ) ( 1688 1192 320 ) ( 1688 1204 336 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 781 +{ +( 1080 1408 320 ) ( 1024 1408 320 ) ( 1024 896 320 ) metals/mt_pv_m7m 0 0 0 1 1 0 8388608 0 +( 1024 896 336 ) ( 1024 1408 336 ) ( 1080 1408 336 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2040 1088 336 ) ( 2096 1088 336 ) ( 2096 1088 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2040 1216 336 ) ( 1984 1216 336 ) ( 1984 1216 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1384 1216 320 ) ( 1384 1224 320 ) ( 1384 1220 336 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1432 1216 320 ) ( 1432 1200 320 ) ( 1432 1208 336 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 782 +{ +( 1512 896 320 ) ( 1568 896 320 ) ( 1568 1408 320 ) metals/mt_pv_m7m 0 0 0 1 1 0 8388608 0 +( 1376 1088 320 ) ( 1376 1104 320 ) ( 1376 1096 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1384 1096 320 ) ( 1384 1088 320 ) ( 1384 1092 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1384 1216 320 ) ( 1384 1152 384 ) ( 1376 1184 352 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1384 1152 384 ) ( 1384 1088 320 ) ( 1376 1120 352 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +} +// brush 783 +{ +( 1048 1408 320 ) ( 992 1408 320 ) ( 992 896 320 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 1184 1216 320 ) ( 1184 1200 320 ) ( 1184 1208 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1176 1208 320 ) ( 1176 1216 320 ) ( 1176 1212 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1176 1088 320 ) ( 1176 1152 384 ) ( 1184 1120 352 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1176 1152 384 ) ( 1176 1216 320 ) ( 1184 1184 352 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +} +// brush 784 +{ +( 1080 1408 320 ) ( 1024 1408 320 ) ( 1024 896 320 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 1024 896 336 ) ( 1024 1408 336 ) ( 1080 1408 336 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2040 1088 336 ) ( 2096 1088 336 ) ( 2096 1088 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2040 1216 336 ) ( 1984 1216 336 ) ( 1984 1216 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1024 1408 336 ) ( 1024 896 336 ) ( 1024 896 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1176 1216 320 ) ( 1176 1208 320 ) ( 1176 1212 336 ) props/w_sr_ba7b 0 0 0 1 1 0 0 0 +} +// brush 785 +{ +( 1216 1152 384 ) ( 1344 1152 384 ) ( 1344 1216 320 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1344 1152 400 ) ( 1216 1152 400 ) ( 1216 1216 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 2040 1216 336 ) ( 1984 1216 336 ) ( 1984 1216 80 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1184 1200 320 ) ( 1184 1216 320 ) ( 1184 1208 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1376 1216 320 ) ( 1376 1192 320 ) ( 1376 1204 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1344 1152 384 ) ( 1216 1152 384 ) ( 1216 1152 400 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +} +// brush 786 +{ +( 1344 1152 384 ) ( 1216 1152 384 ) ( 1216 1088 320 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1216 1152 400 ) ( 1344 1152 400 ) ( 1344 1088 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 2040 1088 336 ) ( 2096 1088 336 ) ( 2096 1088 80 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1184 1200 320 ) ( 1184 1216 320 ) ( 1184 1208 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1376 1216 320 ) ( 1376 1192 320 ) ( 1376 1204 336 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +( 1216 1152 384 ) ( 1344 1152 384 ) ( 1344 1152 400 ) props/w_sr_m4a 0 0 0 1 1 0 1 200 +} +// brush 787 +{ +( 1928 1408 256 ) ( 1912 1408 256 ) ( 1912 1320 256 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +( 1912 1320 320 ) ( 1912 1408 320 ) ( 1928 1408 320 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +( 1896 896 320 ) ( 1912 896 320 ) ( 1912 896 192 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +( 1928 1152 320 ) ( 1928 1240 320 ) ( 1928 1240 192 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +( 1928 1408 320 ) ( 1912 1408 320 ) ( 1912 1408 192 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +( 1912 1408 317 ) ( 1912 1320 317 ) ( 1912 1320 189 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +} +// brush 788 +{ +( 1936 944 248 ) ( 1904 944 248 ) ( 1904 896 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1904 896 256 ) ( 1904 944 256 ) ( 1936 944 256 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1904 896 312 ) ( 1936 896 312 ) ( 1936 896 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1932 896 312 ) ( 1932 944 312 ) ( 1932 944 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1952 1408 312 ) ( 1920 1408 312 ) ( 1920 1408 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1908 944 312 ) ( 1908 896 312 ) ( 1908 896 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 789 +{ +( 1932 900 184 ) ( 1908 900 184 ) ( 1908 900 192 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1908 1032 248 ) ( 1932 1032 248 ) ( 1932 1016 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1932 900 192 ) ( 1908 900 192 ) ( 1908 1016 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1932 984 248 ) ( 1932 1000 248 ) ( 1932 1000 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1932 1032 248 ) ( 1908 1032 248 ) ( 1908 900 184 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1908 1000 248 ) ( 1908 984 248 ) ( 1908 984 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 790 +{ +( 1936 900 180 ) ( 1904 900 180 ) ( 1904 896 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1904 896 196 ) ( 1904 900 196 ) ( 1936 900 196 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1904 896 248 ) ( 1936 896 248 ) ( 1936 896 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1936 896 248 ) ( 1936 900 248 ) ( 1936 900 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1936 900 248 ) ( 1904 900 248 ) ( 1904 900 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1904 900 248 ) ( 1904 896 248 ) ( 1904 896 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 791 +{ +( 1904 1404 180 ) ( 1936 1404 180 ) ( 1936 1408 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1936 1408 196 ) ( 1936 1404 196 ) ( 1904 1404 196 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1936 1408 248 ) ( 1904 1408 248 ) ( 1904 1408 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1904 1408 248 ) ( 1904 1404 248 ) ( 1904 1404 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1904 1404 248 ) ( 1936 1404 248 ) ( 1936 1404 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1936 1404 248 ) ( 1936 1408 248 ) ( 1936 1408 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 792 +{ +( 1908 1404 184 ) ( 1932 1404 184 ) ( 1932 1404 192 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1932 1272 248 ) ( 1908 1272 248 ) ( 1908 1288 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1908 1404 192 ) ( 1932 1404 192 ) ( 1932 1288 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1908 1320 248 ) ( 1908 1304 248 ) ( 1908 1304 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1908 1272 248 ) ( 1932 1272 248 ) ( 1932 1404 184 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1932 1304 248 ) ( 1932 1320 248 ) ( 1932 1320 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 793 +{ +( 1652 1404 184 ) ( 1676 1404 184 ) ( 1676 1404 192 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1676 1272 248 ) ( 1652 1272 248 ) ( 1652 1288 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1652 1404 192 ) ( 1676 1404 192 ) ( 1676 1288 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1652 1320 248 ) ( 1652 1304 248 ) ( 1652 1304 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1652 1272 248 ) ( 1676 1272 248 ) ( 1676 1404 184 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1676 1304 248 ) ( 1676 1320 248 ) ( 1676 1320 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 794 +{ +( 1648 1404 180 ) ( 1680 1404 180 ) ( 1680 1408 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1680 1408 196 ) ( 1680 1404 196 ) ( 1648 1404 196 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1680 1408 248 ) ( 1648 1408 248 ) ( 1648 1408 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1648 1408 248 ) ( 1648 1404 248 ) ( 1648 1404 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1648 1404 248 ) ( 1680 1404 248 ) ( 1680 1404 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1680 1404 248 ) ( 1680 1408 248 ) ( 1680 1408 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 795 +{ +( 1680 900 180 ) ( 1648 900 180 ) ( 1648 896 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1648 896 196 ) ( 1648 900 196 ) ( 1680 900 196 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1648 896 248 ) ( 1680 896 248 ) ( 1680 896 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1680 896 248 ) ( 1680 900 248 ) ( 1680 900 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1680 900 248 ) ( 1648 900 248 ) ( 1648 900 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1648 900 248 ) ( 1648 896 248 ) ( 1648 896 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 796 +{ +( 1676 900 184 ) ( 1652 900 184 ) ( 1652 900 192 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1652 1032 248 ) ( 1676 1032 248 ) ( 1676 1016 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1676 900 192 ) ( 1652 900 192 ) ( 1652 1016 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1676 984 248 ) ( 1676 1000 248 ) ( 1676 1000 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1676 1032 248 ) ( 1652 1032 248 ) ( 1652 900 184 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1652 1000 248 ) ( 1652 984 248 ) ( 1652 984 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 797 +{ +( 1680 944 248 ) ( 1648 944 248 ) ( 1648 896 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1648 896 256 ) ( 1648 944 256 ) ( 1680 944 256 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1648 896 312 ) ( 1680 896 312 ) ( 1680 896 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1676 896 312 ) ( 1676 944 312 ) ( 1676 944 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1696 1408 312 ) ( 1664 1408 312 ) ( 1664 1408 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1652 944 312 ) ( 1652 896 312 ) ( 1652 896 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 798 +{ +( 1672 1408 256 ) ( 1656 1408 256 ) ( 1656 1320 256 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +( 1656 1320 320 ) ( 1656 1408 320 ) ( 1672 1408 320 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +( 1640 896 320 ) ( 1656 896 320 ) ( 1656 896 192 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +( 1672 1152 320 ) ( 1672 1240 320 ) ( 1672 1240 192 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +( 1672 1408 320 ) ( 1656 1408 320 ) ( 1656 1408 192 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +( 1656 1408 320 ) ( 1656 1320 320 ) ( 1656 1320 192 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +} +// brush 799 +{ +( 1416 1408 256 ) ( 1400 1408 256 ) ( 1400 1320 256 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +( 1400 1320 320 ) ( 1400 1408 320 ) ( 1416 1408 320 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +( 1384 896 320 ) ( 1400 896 320 ) ( 1400 896 192 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +( 1416 1152 320 ) ( 1416 1240 320 ) ( 1416 1240 192 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +( 1416 1408 320 ) ( 1400 1408 320 ) ( 1400 1408 192 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +( 1400 1408 320 ) ( 1400 1320 320 ) ( 1400 1320 192 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +} +// brush 800 +{ +( 1424 944 248 ) ( 1392 944 248 ) ( 1392 896 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1392 896 256 ) ( 1392 944 256 ) ( 1424 944 256 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1392 896 312 ) ( 1424 896 312 ) ( 1424 896 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1420 896 312 ) ( 1420 944 312 ) ( 1420 944 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1440 1408 312 ) ( 1408 1408 312 ) ( 1408 1408 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1396 944 312 ) ( 1396 896 312 ) ( 1396 896 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 801 +{ +( 1420 900 184 ) ( 1396 900 184 ) ( 1396 900 192 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1396 1032 248 ) ( 1420 1032 248 ) ( 1420 1016 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1420 900 192 ) ( 1396 900 192 ) ( 1396 1016 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1420 984 248 ) ( 1420 1000 248 ) ( 1420 1000 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1420 1032 248 ) ( 1396 1032 248 ) ( 1396 900 184 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1396 1000 248 ) ( 1396 984 248 ) ( 1396 984 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 802 +{ +( 1424 900 180 ) ( 1392 900 180 ) ( 1392 896 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1392 896 196 ) ( 1392 900 196 ) ( 1424 900 196 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1392 896 248 ) ( 1424 896 248 ) ( 1424 896 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1424 896 248 ) ( 1424 900 248 ) ( 1424 900 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1424 900 248 ) ( 1392 900 248 ) ( 1392 900 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1392 900 248 ) ( 1392 896 248 ) ( 1392 896 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 803 +{ +( 1392 1404 180 ) ( 1424 1404 180 ) ( 1424 1408 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1424 1408 196 ) ( 1424 1404 196 ) ( 1392 1404 196 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1424 1408 248 ) ( 1392 1408 248 ) ( 1392 1408 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1392 1408 248 ) ( 1392 1404 248 ) ( 1392 1404 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1392 1404 248 ) ( 1424 1404 248 ) ( 1424 1404 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1424 1404 248 ) ( 1424 1408 248 ) ( 1424 1408 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 804 +{ +( 1396 1404 184 ) ( 1420 1404 184 ) ( 1420 1404 192 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1420 1272 248 ) ( 1396 1272 248 ) ( 1396 1288 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1396 1404 192 ) ( 1420 1404 192 ) ( 1420 1288 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1396 1320 248 ) ( 1396 1304 248 ) ( 1396 1304 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1396 1272 248 ) ( 1420 1272 248 ) ( 1420 1404 184 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1420 1304 248 ) ( 1420 1320 248 ) ( 1420 1320 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 805 +{ +( 1140 1404 184 ) ( 1164 1404 184 ) ( 1164 1404 192 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1164 1272 248 ) ( 1140 1272 248 ) ( 1140 1288 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1140 1404 192 ) ( 1164 1404 192 ) ( 1164 1288 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1140 1320 248 ) ( 1140 1304 248 ) ( 1140 1304 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1140 1272 248 ) ( 1164 1272 248 ) ( 1164 1404 184 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1164 1304 248 ) ( 1164 1320 248 ) ( 1164 1320 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 806 +{ +( 1136 1404 180 ) ( 1168 1404 180 ) ( 1168 1408 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1168 1408 196 ) ( 1168 1404 196 ) ( 1136 1404 196 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1168 1408 248 ) ( 1136 1408 248 ) ( 1136 1408 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1136 1408 248 ) ( 1136 1404 248 ) ( 1136 1404 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1136 1404 248 ) ( 1168 1404 248 ) ( 1168 1404 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1168 1404 248 ) ( 1168 1408 248 ) ( 1168 1408 180 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 807 +{ +( 1168 900 180 ) ( 1136 900 180 ) ( 1136 896 180 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1136 896 196 ) ( 1136 900 196 ) ( 1168 900 196 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1136 896 248 ) ( 1168 896 248 ) ( 1168 896 180 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1168 896 248 ) ( 1168 900 248 ) ( 1168 900 180 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1168 900 248 ) ( 1136 900 248 ) ( 1136 900 180 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1136 900 248 ) ( 1136 896 248 ) ( 1136 896 180 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 808 +{ +( 1164 900 184 ) ( 1140 900 184 ) ( 1140 900 192 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1140 1032 248 ) ( 1164 1032 248 ) ( 1164 1016 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1164 900 192 ) ( 1140 900 192 ) ( 1140 1016 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1164 984 248 ) ( 1164 1000 248 ) ( 1164 1000 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1164 1032 248 ) ( 1140 1032 248 ) ( 1140 900 184 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1140 1000 248 ) ( 1140 984 248 ) ( 1140 984 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 809 +{ +( 1168 944 248 ) ( 1136 944 248 ) ( 1136 896 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1136 896 256 ) ( 1136 944 256 ) ( 1168 944 256 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1136 896 312 ) ( 1168 896 312 ) ( 1168 896 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1164 896 312 ) ( 1164 944 312 ) ( 1164 944 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1184 1408 312 ) ( 1152 1408 312 ) ( 1152 1408 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1140 944 312 ) ( 1140 896 312 ) ( 1140 896 248 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 810 +{ +( 1160 1408 256 ) ( 1144 1408 256 ) ( 1144 1320 256 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +( 1144 1320 320 ) ( 1144 1408 320 ) ( 1160 1408 320 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +( 1128 896 320 ) ( 1144 896 320 ) ( 1144 896 192 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +( 1160 1152 320 ) ( 1160 1240 320 ) ( 1160 1240 192 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +( 1160 1408 320 ) ( 1144 1408 320 ) ( 1144 1408 192 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +( 1144 1408 320 ) ( 1144 1320 320 ) ( 1144 1320 192 ) sprites/rail_v1 0 0 0 1 1 134217856 4096 0 +} +// brush 811 +{ +( 2048 880 320 ) ( 2048 1424 320 ) ( 2064 1424 320 ) metals/mt_pv_m7m 0 16 0 1 1 0 0 0 +( 2048 880 272 ) ( 2064 880 272 ) ( 2064 880 208 ) metals/mt_pv_m7m 0 16 0 1 1 0 0 0 +( 2064 880 272 ) ( 2064 1424 272 ) ( 2064 1424 208 ) metals/mt_pv_m7m 0 16 0 1 1 0 0 0 +( 2048 1424 272 ) ( 2048 880 272 ) ( 2048 880 208 ) metals/mt_pv_m7bm 0 16 0 1 1 0 16777216 0 +( 2056 880 272 ) ( 2064 880 272 ) ( 2060 1424 272 ) metals/m_pv_v5 -98 0 0 1 1 0 0 0 +( 2048 1424 272 ) ( 2064 1424 272 ) ( 2056 1424 320 ) metals/mt_pv_m7m 0 16 0 1 1 0 0 0 +} +// brush 812 +{ +( 1600 896 80 ) ( 1488 896 80 ) ( 1488 880 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1488 880 224 ) ( 1600 880 224 ) ( 1600 880 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2048 888 224 ) ( 2048 904 224 ) ( 2048 904 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1856 896 224 ) ( 1744 896 224 ) ( 1744 896 80 ) bricks/b_mf_v2 0 -49 0 1 1 0 0 0 +( 1216 896 224 ) ( 1216 880 224 ) ( 1216 880 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1360 880 208 ) ( 1336 880 208 ) ( 1348 896 208 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 813 +{ +( 1488 880 272 ) ( 1488 896 272 ) ( 1600 896 272 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1488 880 224 ) ( 1600 880 224 ) ( 1600 880 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2048 888 224 ) ( 2048 904 224 ) ( 2048 904 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1856 896 224 ) ( 1744 896 224 ) ( 1744 896 80 ) metals/mt_pv_m7bm 0 16 0 1 1 0 16777216 0 +( 1216 896 224 ) ( 1216 880 224 ) ( 1216 880 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1336 880 208 ) ( 1360 880 208 ) ( 1348 896 208 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 814 +{ +( 1216 896 160 ) ( 1088 896 160 ) ( 1088 848 160 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1088 832 224 ) ( 1216 832 224 ) ( 1216 832 160 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1216 848 224 ) ( 1216 896 224 ) ( 1216 896 160 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1216 896 224 ) ( 1088 896 224 ) ( 1088 896 160 ) bricks/b_mf_v2 0 -49 0 1 1 0 0 0 +( 1088 896 224 ) ( 1088 848 224 ) ( 1088 848 160 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1104 832 208 ) ( 1080 832 208 ) ( 1092 896 208 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 815 +{ +( 1088 848 272 ) ( 1088 896 272 ) ( 1216 896 272 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1088 832 224 ) ( 1216 832 224 ) ( 1216 832 160 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1216 848 224 ) ( 1216 896 224 ) ( 1216 896 160 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1216 896 224 ) ( 1088 896 224 ) ( 1088 896 160 ) metals/mt_pv_m7bm 0 16 0 1 1 0 0 0 +( 1088 896 224 ) ( 1088 848 224 ) ( 1088 848 160 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1080 832 208 ) ( 1104 832 208 ) ( 1092 896 208 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 816 +{ +( 2064 1432 80 ) ( 2048 1432 80 ) ( 2048 880 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2048 880 208 ) ( 2048 1432 208 ) ( 2064 1432 208 ) metals/m_pv_v5 -98 0 0 1 1 0 0 0 +( 2048 880 272 ) ( 2064 880 272 ) ( 2064 880 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2064 880 272 ) ( 2064 1432 272 ) ( 2064 1432 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2064 1424 272 ) ( 2048 1424 272 ) ( 2048 1424 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2048 1432 272 ) ( 2048 880 272 ) ( 2048 880 80 ) bricks/b_mf_v2 0 -49 0 1 1 0 0 0 +} +// brush 817 +{ +( 1008 880 320 ) ( 1008 1408 320 ) ( 1024 1408 320 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1008 880 224 ) ( 1024 880 224 ) ( 1024 880 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1024 880 224 ) ( 1024 1408 224 ) ( 1024 1408 80 ) metals/mt_pv_m7bm 0 16 0 1 1 0 16777216 0 +( 1024 1408 224 ) ( 1008 1408 224 ) ( 1008 1408 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1008 1408 224 ) ( 1008 880 224 ) ( 1008 880 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1016 880 208 ) ( 1024 880 208 ) ( 1020 1408 208 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 818 +{ +( 1024 1408 80 ) ( 1008 1408 80 ) ( 1008 880 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1008 880 224 ) ( 1024 880 224 ) ( 1024 880 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1024 880 224 ) ( 1024 1408 224 ) ( 1024 1408 80 ) bricks/b_mf_v2 0 -49 0 1 1 0 0 0 +( 1024 1408 224 ) ( 1008 1408 224 ) ( 1008 1408 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1008 1408 224 ) ( 1008 880 224 ) ( 1008 880 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1024 880 208 ) ( 1016 880 208 ) ( 1020 1408 208 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 819 +{ +( 1008 1408 272 ) ( 1008 1424 272 ) ( 1600 1424 272 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1008 1408 224 ) ( 1600 1408 224 ) ( 1600 1408 80 ) metals/mt_pv_m7bm 0 16 0 1 1 0 16777216 0 +( 2048 1416 224 ) ( 2048 1432 224 ) ( 2048 1432 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1600 1424 224 ) ( 1008 1424 224 ) ( 1008 1424 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1008 1424 224 ) ( 1008 1408 224 ) ( 1008 1408 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1016 1408 208 ) ( 1024 1408 208 ) ( 1020 1424 208 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 820 +{ +( 1600 1424 80 ) ( 1008 1424 80 ) ( 1008 1408 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1008 1408 224 ) ( 1600 1408 224 ) ( 1600 1408 80 ) bricks/b_mf_v2 0 -49 0 1 1 0 0 0 +( 2048 1416 224 ) ( 2048 1432 224 ) ( 2048 1432 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1600 1424 224 ) ( 1008 1424 224 ) ( 1008 1424 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1008 1424 224 ) ( 1008 1408 224 ) ( 1008 1408 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1024 1408 208 ) ( 1016 1408 208 ) ( 1020 1424 208 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 821 +{ +( 1328 896 80 ) ( 1024 896 80 ) ( 1024 880 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 768 880 160 ) ( 1072 880 160 ) ( 1072 880 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1088 880 224 ) ( 1088 896 224 ) ( 1088 896 144 ) bricks/b_mf_v2 -11 -48 0 1 1 0 0 0 +( 1328 896 160 ) ( 1024 896 160 ) ( 1024 896 80 ) bricks/b_mf_v2 0 -49 0 1 1 0 0 0 +( 1024 896 160 ) ( 1024 880 160 ) ( 1024 880 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1048 880 208 ) ( 1024 880 208 ) ( 1036 896 208 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 822 +{ +( 1024 880 272 ) ( 1024 896 272 ) ( 1328 896 272 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 768 880 160 ) ( 1072 880 160 ) ( 1072 880 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1088 880 224 ) ( 1088 896 224 ) ( 1088 896 144 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1328 896 160 ) ( 1024 896 160 ) ( 1024 896 80 ) metals/mt_pv_m7bm 0 16 0 1 1 0 0 0 +( 1024 896 160 ) ( 1024 880 160 ) ( 1024 880 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1024 880 208 ) ( 1048 880 208 ) ( 1036 896 208 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 823 +{ +( 992 1024 312 ) ( 1056 1024 312 ) ( 1056 1088 320 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 1056 1024 328 ) ( 992 1024 328 ) ( 992 1088 336 ) bricks/b_mf_v2 32 78 -180 1 1 0 0 0 +( 2056 1088 336 ) ( 2000 1088 336 ) ( 2000 1088 80 ) bricks/b_mf_v2 32 -46 -180 1 -1 0 0 0 +( 1024 1280 336 ) ( 1024 768 336 ) ( 1024 768 80 ) bricks/b_mf_v2 0 -47 -180 1 -1 0 0 0 +( 2016 1024 328 ) ( 2080 1024 328 ) ( 2080 1024 312 ) bricks/b_mf_v2 32 -46 -180 1 -1 0 0 0 +( 2048 768 336 ) ( 2048 1280 336 ) ( 2048 1280 80 ) bricks/b_mf_v2 0 -47 -180 1 -1 0 0 0 +} +// brush 824 +{ +( 992 960 296 ) ( 1056 960 296 ) ( 1056 1024 312 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 1056 960 312 ) ( 992 960 312 ) ( 992 1024 328 ) bricks/b_mf_v2 32 14 -180 1 1 0 0 0 +( 2056 1024 328 ) ( 2000 1024 328 ) ( 2000 1024 72 ) bricks/b_mf_v2 32 -54 -180 1 -1 0 0 0 +( 1024 1216 328 ) ( 1024 704 328 ) ( 1024 704 72 ) bricks/b_mf_v2 -64 -55 -180 1 -1 0 0 0 +( 2016 960 312 ) ( 2080 960 312 ) ( 2080 960 296 ) bricks/b_mf_v2 32 -54 -180 1 -1 0 0 0 +( 2048 704 328 ) ( 2048 1216 328 ) ( 2048 1216 72 ) bricks/b_mf_v2 -64 -55 -180 1 -1 0 0 0 +} +// brush 825 +{ +( 992 896 272 ) ( 1056 896 272 ) ( 1056 960 296 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 1056 896 288 ) ( 992 896 288 ) ( 992 960 312 ) bricks/b_mf_v2 32 78 -180 1 1 0 0 0 +( 2056 960 312 ) ( 2000 960 312 ) ( 2000 960 56 ) bricks/b_mf_v2 32 -70 -180 1 -1 0 0 0 +( 1024 1152 312 ) ( 1024 640 312 ) ( 1024 640 56 ) bricks/b_mf_v2 0 -71 -180 1 -1 0 0 0 +( 992 896 288 ) ( 1056 896 288 ) ( 1056 896 272 ) bricks/b_mf_v2 32 -70 -180 1 -1 0 0 0 +( 2048 640 312 ) ( 2048 1152 312 ) ( 2048 1152 56 ) bricks/b_mf_v2 0 -71 -180 1 -1 0 0 0 +} +// brush 826 +{ +( 1088 1408 272 ) ( 1024 1408 272 ) ( 1024 1344 296 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 1024 1408 288 ) ( 1088 1408 288 ) ( 1088 1344 312 ) bricks/b_mf_v2 0 80 0 1 1 0 0 0 +( 2008 1344 312 ) ( 2064 1344 312 ) ( 2064 1344 56 ) bricks/b_mf_v2 0 -72 0 1 1 0 0 0 +( 2048 1152 312 ) ( 2048 1664 312 ) ( 2048 1664 56 ) bricks/b_mf_v2 0 -72 0 1 1 0 0 0 +( 1088 1408 288 ) ( 1024 1408 288 ) ( 1024 1408 272 ) bricks/b_mf_v2 0 -72 0 1 1 0 0 0 +( 1024 1664 312 ) ( 1024 1152 312 ) ( 1024 1152 56 ) bricks/b_mf_v2 0 -72 0 1 1 0 0 0 +} +// brush 827 +{ +( 1088 1344 296 ) ( 1024 1344 296 ) ( 1024 1280 312 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 1024 1344 312 ) ( 1088 1344 312 ) ( 1088 1280 328 ) bricks/b_mf_v2 0 16 0 1 1 0 0 0 +( 2008 1280 328 ) ( 2064 1280 328 ) ( 2064 1280 72 ) bricks/b_mf_v2 0 -56 0 1 1 0 0 0 +( 2048 1088 328 ) ( 2048 1600 328 ) ( 2048 1600 72 ) bricks/b_mf_v2 -64 -56 0 1 1 0 0 0 +( 2048 1344 312 ) ( 1984 1344 312 ) ( 1984 1344 296 ) bricks/b_mf_v2 0 -56 0 1 1 0 0 0 +( 1024 1600 328 ) ( 1024 1088 328 ) ( 1024 1088 72 ) bricks/b_mf_v2 -64 -56 0 1 1 0 0 0 +} +// brush 828 +{ +( 1088 1280 312 ) ( 1024 1280 312 ) ( 1024 1216 320 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 1024 1280 328 ) ( 1088 1280 328 ) ( 1088 1216 336 ) bricks/b_mf_v2 0 80 0 1 1 0 0 0 +( 2008 1216 336 ) ( 2064 1216 336 ) ( 2064 1216 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2048 1024 336 ) ( 2048 1536 336 ) ( 2048 1536 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2048 1280 328 ) ( 1984 1280 328 ) ( 1984 1280 312 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1024 1536 336 ) ( 1024 1024 336 ) ( 1024 1024 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 829 +{ +( 536 928 216 ) ( 528 928 216 ) ( 528 864 216 ) props/w_sr_m6e 0 -32 0 1 1 0 0 0 +( 528 864 352 ) ( 528 928 352 ) ( 536 928 352 ) props/w_sr_m6e 0 -32 0 1 1 0 0 0 +( 528 864 384 ) ( 536 864 384 ) ( 536 864 256 ) props/w_sr_m6e 0 -32 0 1 1 0 0 0 +( 536 864 384 ) ( 536 928 384 ) ( 536 928 256 ) props/w_sr_m6e 0 -32 0 1 1 0 0 0 +( 536 928 384 ) ( 528 928 384 ) ( 528 928 256 ) props/w_sr_m6e 0 -32 0 1 1 0 0 0 +( 528 928 384 ) ( 528 864 384 ) ( 528 864 256 ) props/w_sr_m6e 0 -32 0 1 1 0 0 0 +} +// brush 830 +{ +( 1024 1408 32 ) ( 1008 1408 32 ) ( 1008 880 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1008 880 80 ) ( 1008 1408 80 ) ( 1024 1408 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1008 968 80 ) ( 1024 968 80 ) ( 1024 968 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1024 880 80 ) ( 1024 1408 80 ) ( 1024 1408 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1024 1408 80 ) ( 1008 1408 80 ) ( 1008 1408 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1008 1408 80 ) ( 1008 880 80 ) ( 1008 880 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 831 +{ +( 1552 1408 24 ) ( 1024 1408 24 ) ( 1024 1344 24 ) bricks/c_sr_m8e 64 0 180 1 1 0 67108864 0 +( 1024 1344 32 ) ( 1024 1408 32 ) ( 1552 1408 32 ) bricks/c_sr_m8e 64 0 180 1 1 0 67108864 0 +( 1088 1344 24 ) ( 1088 1344 32 ) ( 2048 1344 32 ) bricks/c_sr_m8e 64 0 180 1 1 0 67108864 0 +( 2048 1336 32 ) ( 2048 1400 32 ) ( 2048 1400 24 ) bricks/c_sr_m8e 64 0 180 1 1 0 67108864 0 +( 1552 1408 32 ) ( 1024 1408 32 ) ( 1024 1408 24 ) bricks/c_sr_m8e 64 0 180 1 1 0 67108864 0 +( 1088 1344 32 ) ( 1088 1344 24 ) ( 1024 1408 24 ) bricks/c_sr_m8e 64 0 180 1 1 0 67108864 0 +} +// brush 832 +{ +( 1488 1024 24 ) ( 1024 1024 24 ) ( 1024 960 24 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1024 960 32 ) ( 1024 1024 32 ) ( 1488 1024 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1472 960 32 ) ( 1936 960 32 ) ( 1936 960 24 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1984 976 32 ) ( 1984 1040 32 ) ( 1984 1040 24 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1976 1344 32 ) ( 1512 1344 32 ) ( 1512 1344 24 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1088 1024 32 ) ( 1088 960 32 ) ( 1088 960 24 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +} +// brush 833 +{ +( 1600 896 32 ) ( 1488 896 32 ) ( 1488 880 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1488 880 80 ) ( 1488 896 80 ) ( 1600 896 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1488 880 80 ) ( 1600 880 80 ) ( 1600 880 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2048 888 80 ) ( 2048 904 80 ) ( 2048 904 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1856 896 80 ) ( 1744 896 80 ) ( 1744 896 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1320 896 80 ) ( 1320 880 80 ) ( 1320 880 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 834 +{ +( 528 1088 384 ) ( 512 1088 384 ) ( 512 976 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 512 976 448 ) ( 512 1088 448 ) ( 528 1088 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 512 976 448 ) ( 528 976 448 ) ( 528 976 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 528 976 448 ) ( 528 1088 448 ) ( 528 1088 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 528 1088 448 ) ( 512 1088 448 ) ( 512 1088 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 512 1088 448 ) ( 512 976 448 ) ( 512 976 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 835 +{ +( 528 1088 176 ) ( 512 1088 176 ) ( 512 976 176 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 976 384 ) ( 512 1088 384 ) ( 528 1088 384 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 976 384 ) ( 528 976 384 ) ( 528 976 176 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 528 976 384 ) ( 528 1088 384 ) ( 528 1088 176 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 528 1088 384 ) ( 512 1088 384 ) ( 512 1088 176 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 1088 384 ) ( 512 976 384 ) ( 512 976 176 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 836 +{ +( 1600 960 24 ) ( 1408 960 24 ) ( 1408 896 24 ) bricks/c_sr_m8e -64 0 0 1 1 0 67108864 0 +( 1408 896 32 ) ( 1408 960 32 ) ( 1600 960 32 ) bricks/c_sr_m8e -64 0 0 1 1 0 67108864 0 +( 1472 896 0 ) ( 1472 896 32 ) ( 1600 896 32 ) bricks/c_sr_m8e -64 0 0 1 1 0 67108864 0 +( 2048 896 32 ) ( 2048 960 32 ) ( 2048 960 0 ) bricks/c_sr_m8e -64 0 0 1 1 0 67108864 0 +( 2048 960 56 ) ( 1856 960 56 ) ( 1856 960 24 ) bricks/c_sr_m8e -64 0 0 1 1 0 67108864 0 +( 1216 896 56 ) ( 1216 896 24 ) ( 1152 960 24 ) bricks/c_sr_m8e -64 0 0 1 1 0 67108864 0 +} +// brush 837 +{ +( 1408 960 24 ) ( 1216 960 24 ) ( 1216 896 24 ) bricks/c_sr_m8e -64 0 0 1 1 0 67108864 0 +( 1216 896 32 ) ( 1216 960 32 ) ( 1408 960 32 ) bricks/c_sr_m8e -64 0 0 1 1 0 67108864 0 +( 1344 896 32 ) ( 1344 896 0 ) ( 1216 896 0 ) bricks/c_sr_m8e -64 0 0 1 1 0 67108864 0 +( 1088 896 0 ) ( 1088 896 32 ) ( 1152 960 32 ) bricks/c_sr_m8e -64 0 0 1 1 0 67108864 0 +( 1088 960 32 ) ( 1088 960 24 ) ( 1152 960 24 ) bricks/c_sr_m8e -64 0 0 1 1 0 67108864 0 +( 1088 960 24 ) ( 1088 960 32 ) ( 1024 896 32 ) bricks/c_sr_m8e -64 0 0 1 1 0 67108864 0 +} +// brush 838 +{ +( 1216 904 24 ) ( 1152 904 24 ) ( 1152 712 24 ) bricks/c_sr_m8e -64 0 90 1 1 0 67108864 0 +( 1152 712 32 ) ( 1152 904 32 ) ( 1216 904 32 ) bricks/c_sr_m8e -64 0 90 1 1 0 67108864 0 +( 1216 776 0 ) ( 1216 776 32 ) ( 1216 904 32 ) bricks/c_sr_m8e -64 0 90 1 1 0 67108864 0 +( 1152 896 56 ) ( 1152 704 56 ) ( 1152 704 24 ) bricks/c_sr_m8e -64 0 90 1 1 0 67108864 0 +( 1104 856 0 ) ( 1088 856 0 ) ( 1096 856 32 ) bricks/c_sr_m8e -64 0 90 1 1 0 67108864 0 +( 1152 960 24 ) ( 1216 896 24 ) ( 1184 928 56 ) bricks/c_sr_m8e -64 0 90 1 1 0 67108864 0 +} +// brush 839 +{ +( 1152 904 24 ) ( 1088 904 24 ) ( 1088 712 24 ) bricks/c_sr_m8e 64 0 270 1 1 0 67108864 0 +( 1088 712 32 ) ( 1088 904 32 ) ( 1152 904 32 ) bricks/c_sr_m8e 64 0 270 1 1 0 67108864 0 +( 1152 704 56 ) ( 1152 896 56 ) ( 1152 896 24 ) bricks/c_sr_m8e 64 0 270 1 1 0 67108864 0 +( 1088 776 32 ) ( 1088 776 0 ) ( 1088 904 0 ) bricks/c_sr_m8e 64 0 270 1 1 0 67108864 0 +( 1104 856 0 ) ( 1088 856 0 ) ( 1096 856 32 ) bricks/c_sr_m8e 64 0 270 1 1 0 67108864 0 +( 1088 896 0 ) ( 1152 960 0 ) ( 1120 928 32 ) bricks/c_sr_m8e 64 0 270 1 1 0 67108864 0 +} +// brush 840 +{ +( 1088 832 80 ) ( 1072 832 80 ) ( 1072 720 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1072 720 160 ) ( 1072 832 160 ) ( 1088 832 160 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1072 720 224 ) ( 1088 720 224 ) ( 1088 720 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1088 720 224 ) ( 1088 832 224 ) ( 1088 832 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1088 832 224 ) ( 1072 832 224 ) ( 1072 832 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1072 832 224 ) ( 1072 720 224 ) ( 1072 720 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 841 +{ +( 1088 832 32 ) ( 1072 832 32 ) ( 1072 720 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1072 720 80 ) ( 1072 832 80 ) ( 1088 832 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1072 720 80 ) ( 1088 720 80 ) ( 1088 720 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1088 720 80 ) ( 1088 832 80 ) ( 1088 832 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1088 832 80 ) ( 1072 832 80 ) ( 1072 832 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1072 832 80 ) ( 1072 720 80 ) ( 1072 720 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 842 +{ +( 1352 600 181 ) ( 1352 544 181 ) ( 1344 544 181 ) bricks/b_mf_v2 -95 0 90 1 1 0 0 0 +( 1320 544 180 ) ( 1320 544 192 ) ( 1664 544 32 ) bricks/b_mf_v2 0 -31 -180 1 -1 0 0 0 +( 1320 600 180 ) ( 1320 544 180 ) ( 1664 544 20 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1320 600 192 ) ( 1320 600 180 ) ( 1664 600 20 ) bricks/b_sr_21 0 0 -180 1 -1 0 0 0 +( 1344 598 181 ) ( 1344 542 181 ) ( 1344 544 169 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +( 1352 544 181 ) ( 1352 600 181 ) ( 1352 600 165 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +} +// brush 843 +{ +( 1664 288 96 ) ( 1664 752 96 ) ( 1664 752 -32 ) bricks/b_sr_24 -32 -32 0 1 1 0 0 0 +( 1344 542 181 ) ( 1344 598 181 ) ( 1664 600 32 ) bricks/b_mf_v2 -95 0 90 1 1 0 0 0 +( 1320 544 180 ) ( 1320 544 192 ) ( 1664 544 32 ) bricks/b_mf_v2 0 -31 -180 1 -1 0 0 0 +( 1320 600 180 ) ( 1320 544 180 ) ( 1664 544 20 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1320 600 192 ) ( 1320 600 180 ) ( 1664 600 20 ) bricks/b_sr_21 0 0 -180 1 -1 0 0 0 +( 1352 544 177 ) ( 1352 544 173 ) ( 1352 600 175 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +} +// brush 844 +{ +( 1352 616 181 ) ( 1352 600 181 ) ( 1344 600 181 ) bricks/b_mf_v2 -96 0 90 1 1 0 0 0 +( 1320 616 180 ) ( 1320 600 180 ) ( 1664 600 20 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1320 616 208 ) ( 1320 616 196 ) ( 1664 616 28 ) bricks/b_sr_21 0 0 -180 1 -1 0 0 0 +( 1320 600 196 ) ( 1320 600 208 ) ( 1664 600 32 ) bricks/b_sr_21 0 0 -180 1 -1 0 0 0 +( 1344 617 181 ) ( 1344 601 181 ) ( 1344 600 169 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +( 1352 600 181 ) ( 1352 616 181 ) ( 1352 616 165 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +} +// brush 845 +{ +( 1664 616 20 ) ( 1664 600 20 ) ( 1664 600 32 ) bricks/b_sr_24 -32 -32 0 1 1 0 0 0 +( 1344 601 181 ) ( 1344 617 181 ) ( 1664 616 32 ) bricks/b_mf_v2 -96 0 90 1 1 0 0 0 +( 1320 616 180 ) ( 1320 600 180 ) ( 1664 600 20 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1320 616 208 ) ( 1320 616 196 ) ( 1664 616 28 ) bricks/b_sr_21 0 0 -180 1 -1 0 0 0 +( 1320 600 196 ) ( 1320 600 208 ) ( 1664 600 32 ) bricks/b_sr_21 0 0 -180 1 -1 0 0 0 +( 1352 600 177 ) ( 1352 600 170 ) ( 1352 616 174 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +} +// brush 846 +{ +( 1352 672 181 ) ( 1352 616 181 ) ( 1344 616 181 ) bricks/b_mf_v2 -24 0 90 1 1 0 0 0 +( 1664 672 32 ) ( 1320 672 192 ) ( 1320 672 180 ) bricks/b_mf_v2 0 -31 -180 1 -1 0 0 0 +( 1664 672 20 ) ( 1320 672 180 ) ( 1320 616 180 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1664 616 20 ) ( 1320 616 180 ) ( 1320 616 192 ) bricks/b_sr_21 0 0 -180 1 -1 0 0 0 +( 1344 672 181 ) ( 1344 616 181 ) ( 1344 616 169 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +( 1352 616 181 ) ( 1352 672 181 ) ( 1352 672 165 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +} +// brush 847 +{ +( 1664 464 -32 ) ( 1664 464 96 ) ( 1664 928 96 ) bricks/b_sr_24 -88 -32 0 1 1 0 0 0 +( 1344 616 181 ) ( 1344 672 181 ) ( 1664 672 32 ) bricks/b_mf_v2 -24 0 90 1 1 0 0 0 +( 1664 672 32 ) ( 1320 672 192 ) ( 1320 672 180 ) bricks/b_mf_v2 0 -31 -180 1 -1 0 0 0 +( 1664 672 20 ) ( 1320 672 180 ) ( 1320 616 180 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1664 616 20 ) ( 1320 616 180 ) ( 1320 616 192 ) bricks/b_sr_21 0 0 -180 1 -1 0 0 0 +( 1352 616 177 ) ( 1352 616 172 ) ( 1352 672 175 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +} +// brush 848 +{ +( 768 704 224 ) ( 768 720 224 ) ( 1216 720 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1216 720 80 ) ( 1216 704 80 ) ( 1216 712 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1088 704 160 ) ( 1104 704 160 ) ( 1096 720 160 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1088 776 160 ) ( 1104 776 160 ) ( 1096 776 224 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1112 760 160 ) ( 1088 760 160 ) ( 1100 760 224 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1160 760 160 ) ( 1160 776 160 ) ( 1160 768 224 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 849 +{ +( 768 704 224 ) ( 768 720 224 ) ( 1216 720 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1088 704 160 ) ( 1104 704 160 ) ( 1096 720 160 ) common/li_sr_v27 8 8 0 1 1 0 1 10000 +( 1088 776 160 ) ( 1104 776 160 ) ( 1096 776 224 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1112 760 160 ) ( 1088 760 160 ) ( 1100 760 224 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1144 760 160 ) ( 1144 776 160 ) ( 1144 768 224 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1160 776 160 ) ( 1160 760 160 ) ( 1160 768 224 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 850 +{ +( 768 704 224 ) ( 768 720 224 ) ( 1216 720 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1088 704 160 ) ( 1104 704 160 ) ( 1096 720 160 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1088 704 160 ) ( 1088 720 160 ) ( 1088 712 224 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1088 776 160 ) ( 1104 776 160 ) ( 1096 776 224 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1112 760 160 ) ( 1088 760 160 ) ( 1100 760 224 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1144 776 160 ) ( 1144 760 160 ) ( 1144 768 224 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 851 +{ +( 768 704 224 ) ( 768 720 224 ) ( 1216 720 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 896 704 224 ) ( 1344 704 224 ) ( 1344 704 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1216 720 80 ) ( 1216 704 80 ) ( 1216 712 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1088 704 160 ) ( 1104 704 160 ) ( 1096 720 160 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1088 704 160 ) ( 1088 720 160 ) ( 1088 712 224 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1088 760 160 ) ( 1112 760 160 ) ( 1100 760 224 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 852 +{ +( 768 704 224 ) ( 768 720 224 ) ( 1216 720 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1208 832 224 ) ( 760 832 224 ) ( 760 832 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1216 720 80 ) ( 1216 704 80 ) ( 1216 712 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1088 704 160 ) ( 1104 704 160 ) ( 1096 720 160 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1088 704 160 ) ( 1088 720 160 ) ( 1088 712 224 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1104 776 160 ) ( 1088 776 160 ) ( 1096 776 224 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 853 +{ +( 1088 896 80 ) ( 1072 896 80 ) ( 1072 848 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1072 848 160 ) ( 1072 896 160 ) ( 1088 896 160 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1072 848 160 ) ( 1088 848 160 ) ( 1088 848 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1088 824 160 ) ( 1088 872 160 ) ( 1088 872 80 ) bricks/b_mf_v2 -11 -48 0 1 1 0 0 0 +( 1088 880 160 ) ( 1072 880 160 ) ( 1072 880 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1072 896 224 ) ( 1072 848 224 ) ( 1072 848 144 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 854 +{ +( 1088 896 32 ) ( 1072 896 32 ) ( 1072 848 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1072 848 80 ) ( 1072 896 80 ) ( 1088 896 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1072 848 80 ) ( 1088 848 80 ) ( 1088 848 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1088 848 80 ) ( 1088 896 80 ) ( 1088 896 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1088 896 80 ) ( 1072 896 80 ) ( 1072 896 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1024 896 80 ) ( 1024 848 80 ) ( 1024 848 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 855 +{ +( 1232 896 80 ) ( 1216 896 80 ) ( 1216 848 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1216 848 160 ) ( 1216 896 160 ) ( 1232 896 160 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1216 848 160 ) ( 1232 848 160 ) ( 1232 848 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1232 848 160 ) ( 1232 896 160 ) ( 1232 896 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1232 880 160 ) ( 1216 880 160 ) ( 1216 880 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1216 896 -16 ) ( 1216 848 -16 ) ( 1216 848 -96 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 856 +{ +( 1232 896 32 ) ( 1216 896 32 ) ( 1216 848 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1216 848 80 ) ( 1216 896 80 ) ( 1232 896 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1216 848 80 ) ( 1232 848 80 ) ( 1232 848 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1232 848 80 ) ( 1232 896 80 ) ( 1232 896 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1232 896 80 ) ( 1216 896 80 ) ( 1216 896 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1216 896 80 ) ( 1216 848 80 ) ( 1216 848 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +} +// brush 857 +{ +( 1216 856 24 ) ( 1088 856 24 ) ( 1088 848 24 ) metals/mt_pv_m10am 0 9 0 1 1 0 8388608 0 +( 1088 848 32 ) ( 1088 856 32 ) ( 1216 856 32 ) metals/mt_pv_m10am 0 9 0 1 1 0 16777216 0 +( 1088 848 32 ) ( 1216 848 32 ) ( 1216 848 16 ) metals/mt_pv_m10am 0 9 0 1 1 0 8388608 0 +( 1216 848 32 ) ( 1216 856 32 ) ( 1216 856 16 ) metals/mt_pv_m10am 0 9 0 1 1 0 8388608 0 +( 1216 856 32 ) ( 1088 856 32 ) ( 1088 856 16 ) metals/mt_pv_m10am 0 9 0 1 1 0 8388608 0 +( 1088 856 32 ) ( 1088 848 32 ) ( 1088 848 16 ) metals/mt_pv_m10am 0 9 0 1 1 0 8388608 0 +} +// brush 858 +{ +( 1232 848 32 ) ( 1216 848 32 ) ( 1216 832 32 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +( 1216 832 160 ) ( 1216 848 160 ) ( 1232 848 160 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +( 1216 832 160 ) ( 1232 832 160 ) ( 1232 832 32 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +( 1232 832 160 ) ( 1232 848 160 ) ( 1232 848 32 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +( 1232 848 160 ) ( 1216 848 160 ) ( 1216 848 32 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +( 1216 848 160 ) ( 1216 832 160 ) ( 1216 832 32 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +} +// brush 859 +{ +( 1088 848 32 ) ( 1072 848 32 ) ( 1072 832 32 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +( 1072 832 160 ) ( 1072 848 160 ) ( 1088 848 160 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +( 1072 832 160 ) ( 1088 832 160 ) ( 1088 832 80 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +( 1088 832 160 ) ( 1088 848 160 ) ( 1088 848 80 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +( 1088 848 160 ) ( 1072 848 160 ) ( 1072 848 80 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +( 1072 848 160 ) ( 1072 832 160 ) ( 1072 832 80 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +} +// brush 860 +{ +( 1216 848 24 ) ( 1088 848 24 ) ( 1088 832 24 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +( 1088 832 32 ) ( 1088 848 32 ) ( 1216 848 32 ) metals/mt_pv_m16k 0 0 90 1 1 0 8388608 0 +( 1088 832 152 ) ( 1216 832 152 ) ( 1216 832 24 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +( 1216 832 152 ) ( 1216 848 152 ) ( 1216 848 24 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +( 1216 848 152 ) ( 1088 848 152 ) ( 1088 848 24 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +( 1088 848 152 ) ( 1088 832 152 ) ( 1088 832 24 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +} +// brush 861 +{ +( 1216 832 32 ) ( 1212 832 32 ) ( 1212 824 32 ) floors/dr_pv_m1 64 16 0 1 1 134217728 0 0 +( 1212 824 160 ) ( 1212 832 160 ) ( 1216 832 160 ) floors/dr_pv_m1 64 16 0 1 1 134217728 0 0 +( 1212 830 160 ) ( 1216 830 160 ) ( 1216 830 32 ) floors/dr_pv_m1 65 32 0 1 1 134217728 8388608 0 +( 1216 824 160 ) ( 1216 832 160 ) ( 1216 832 32 ) floors/dr_pv_m1 -80 32 0 1 1 134217728 0 0 +( 1216 832 160 ) ( 1212 832 160 ) ( 1212 832 32 ) floors/dr_pv_m1 64 32 0 1 1 134217728 0 0 +( 1210 832 160 ) ( 1210 824 160 ) ( 1210 824 32 ) floors/dr_pv_m1 -68 34 0 1 1 134217728 0 0 +} +// brush 862 +{ +( 1094 832 32 ) ( 1090 832 32 ) ( 1090 824 32 ) floors/dr_pv_m1 58 16 0 1 1 134217728 0 0 +( 1090 824 160 ) ( 1090 832 160 ) ( 1094 832 160 ) floors/dr_pv_m1 58 16 0 1 1 134217728 0 0 +( 1090 830 160 ) ( 1094 830 160 ) ( 1094 830 32 ) floors/dr_pv_m1 63 32 0 1 1 134217728 8388608 0 +( 1094 824 160 ) ( 1094 832 160 ) ( 1094 832 32 ) floors/dr_pv_m1 -68 34 0 1 1 134217728 0 0 +( 1094 832 160 ) ( 1090 832 160 ) ( 1090 832 32 ) floors/dr_pv_m1 58 32 0 1 1 134217728 0 0 +( 1088 832 160 ) ( 1088 824 160 ) ( 1088 824 32 ) floors/dr_pv_m1 -68 34 0 1 1 134217728 0 0 +} +// brush 863 +{ +( 1094 850 32 ) ( 1090 850 32 ) ( 1090 842 32 ) floors/dr_pv_m1 58 34 0 1 1 134217728 0 0 +( 1090 842 160 ) ( 1090 850 160 ) ( 1094 850 160 ) floors/dr_pv_m1 58 34 0 1 1 134217728 0 0 +( 1090 848 160 ) ( 1094 848 160 ) ( 1094 848 32 ) floors/dr_pv_m1 64 32 0 1 1 134217728 0 0 +( 1094 842 160 ) ( 1094 850 160 ) ( 1094 850 32 ) floors/dr_pv_m1 -86 34 0 1 1 134217728 0 0 +( 1094 850 160 ) ( 1090 850 160 ) ( 1090 850 32 ) floors/dr_pv_m1 63 32 0 1 1 134217728 8388608 0 +( 1088 850 160 ) ( 1088 842 160 ) ( 1088 842 32 ) floors/dr_pv_m1 -86 34 0 1 1 134217728 0 0 +} +// brush 864 +{ +( 1216 850 32 ) ( 1212 850 32 ) ( 1212 842 32 ) floors/dr_pv_m1 64 34 0 1 1 134217728 0 0 +( 1212 842 160 ) ( 1212 850 160 ) ( 1216 850 160 ) floors/dr_pv_m1 64 34 0 1 1 134217728 0 0 +( 1212 848 160 ) ( 1216 848 160 ) ( 1216 848 32 ) floors/dr_pv_m1 64 32 0 1 1 134217728 0 0 +( 1216 842 160 ) ( 1216 850 160 ) ( 1216 850 32 ) floors/dr_pv_m1 -98 32 0 1 1 134217728 0 0 +( 1216 850 160 ) ( 1212 850 160 ) ( 1212 850 32 ) floors/dr_pv_m1 65 32 0 1 1 134217728 8388608 0 +( 1210 850 160 ) ( 1210 842 160 ) ( 1210 842 32 ) floors/dr_pv_m1 -86 34 0 1 1 134217728 0 0 +} +// brush 865 +{ +( 1216 832 24 ) ( 1088 832 24 ) ( 1088 824 24 ) metals/mt_pv_m10am 0 49 0 1 1 0 0 0 +( 1088 824 32 ) ( 1088 832 32 ) ( 1216 832 32 ) metals/mt_pv_m10am 0 49 0 1 1 0 25165824 0 +( 1088 824 32 ) ( 1216 824 32 ) ( 1216 824 16 ) metals/mt_pv_m10am 0 49 0 1 1 0 0 0 +( 1216 824 32 ) ( 1216 832 32 ) ( 1216 832 16 ) metals/mt_pv_m10am 0 49 0 1 1 0 0 0 +( 1216 832 32 ) ( 1088 832 32 ) ( 1088 832 16 ) metals/mt_pv_m10am 0 49 0 1 1 0 0 0 +( 1088 832 32 ) ( 1088 824 32 ) ( 1088 824 16 ) metals/mt_pv_m10am 0 49 0 1 1 0 0 0 +} +// brush 866 +{ +( 1216 832 0 ) ( 1152 832 0 ) ( 1152 640 0 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 1152 640 32 ) ( 1152 832 32 ) ( 1216 832 32 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 1216 704 32 ) ( 1216 704 0 ) ( 1152 640 0 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 1216 704 0 ) ( 1216 704 32 ) ( 1216 832 32 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 1216 824 32 ) ( 1152 824 32 ) ( 1152 824 0 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 1152 824 32 ) ( 1152 632 32 ) ( 1152 632 0 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +} +// brush 867 +{ +( 1152 832 0 ) ( 1088 832 0 ) ( 1088 640 0 ) bricks/c_sr_m8e 0 0 270 1 1 0 0 0 +( 1088 640 32 ) ( 1088 832 32 ) ( 1152 832 32 ) bricks/c_sr_m8e 0 0 270 1 1 0 0 0 +( 1088 704 0 ) ( 1088 704 32 ) ( 1152 640 32 ) bricks/c_sr_m8e 0 0 270 1 1 0 0 0 +( 1152 632 32 ) ( 1152 824 32 ) ( 1152 824 0 ) bricks/c_sr_m8e 0 0 270 1 1 0 0 0 +( 1152 824 32 ) ( 1088 824 32 ) ( 1088 824 0 ) bricks/c_sr_m8e 0 0 270 1 1 0 0 0 +( 1088 704 32 ) ( 1088 704 0 ) ( 1088 832 0 ) bricks/c_sr_m8e 0 0 270 1 1 0 0 0 +} +// brush 868 +{ +( 960 704 0 ) ( 768 704 0 ) ( 768 640 0 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 768 640 32 ) ( 768 704 32 ) ( 960 704 32 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 896 640 32 ) ( 1088 640 32 ) ( 1088 640 0 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1344 656 32 ) ( 1344 720 32 ) ( 1344 720 0 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1216 704 32 ) ( 1216 704 0 ) ( 1344 704 0 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1216 704 0 ) ( 1216 704 32 ) ( 1152 640 32 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +} +// brush 869 +{ +( 960 704 0 ) ( 768 704 0 ) ( 768 640 0 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 768 640 32 ) ( 768 704 32 ) ( 960 704 32 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 896 640 32 ) ( 1088 640 32 ) ( 1088 640 0 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1088 704 0 ) ( 1088 704 32 ) ( 768 704 32 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 832 640 0 ) ( 768 704 0 ) ( 800 672 32 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1088 704 32 ) ( 1088 704 0 ) ( 1152 640 0 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +} +// brush 870 +{ +( 1232 832 80 ) ( 1216 832 80 ) ( 1216 720 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1216 720 160 ) ( 1216 832 160 ) ( 1232 832 160 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1216 720 224 ) ( 1232 720 224 ) ( 1232 720 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1232 720 224 ) ( 1232 832 224 ) ( 1232 832 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1232 832 224 ) ( 1216 832 224 ) ( 1216 832 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1216 832 192 ) ( 1216 720 192 ) ( 1216 720 48 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 871 +{ +( 1232 832 32 ) ( 1216 832 32 ) ( 1216 720 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1216 720 80 ) ( 1216 832 80 ) ( 1232 832 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1216 720 80 ) ( 1232 720 80 ) ( 1232 720 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1232 720 80 ) ( 1232 832 80 ) ( 1232 832 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1232 832 80 ) ( 1216 832 80 ) ( 1216 832 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1216 832 80 ) ( 1216 720 80 ) ( 1216 720 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +} +// brush 872 +{ +( 1216 720 32 ) ( 768 720 32 ) ( 768 704 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 768 704 80 ) ( 768 720 80 ) ( 1216 720 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 896 704 80 ) ( 1344 704 80 ) ( 1344 704 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1344 704 80 ) ( 1344 720 80 ) ( 1344 720 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1216 720 80 ) ( 768 720 80 ) ( 768 720 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1216 704 32 ) ( 1216 720 32 ) ( 1216 712 80 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +} +// brush 873 +{ +( 1216 720 80 ) ( 768 720 80 ) ( 768 704 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 768 704 224 ) ( 768 720 224 ) ( 1216 720 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 896 704 224 ) ( 1344 704 224 ) ( 1344 704 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1344 704 224 ) ( 1344 720 224 ) ( 1344 720 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1216 720 224 ) ( 768 720 224 ) ( 768 720 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1216 704 80 ) ( 1216 720 80 ) ( 1216 712 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 874 +{ +( 1216 720 32 ) ( 768 720 32 ) ( 768 704 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 768 704 80 ) ( 768 720 80 ) ( 1216 720 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 896 704 80 ) ( 1344 704 80 ) ( 1344 704 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1216 720 80 ) ( 768 720 80 ) ( 768 720 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 768 720 80 ) ( 768 704 80 ) ( 768 704 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1088 720 32 ) ( 1088 704 32 ) ( 1088 712 80 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +} +// brush 875 +{ +( 1216 720 80 ) ( 768 720 80 ) ( 768 704 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 768 704 224 ) ( 768 720 224 ) ( 1216 720 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 896 704 224 ) ( 1344 704 224 ) ( 1344 704 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1216 720 224 ) ( 768 720 224 ) ( 768 720 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 768 720 224 ) ( 768 704 224 ) ( 768 704 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1088 720 80 ) ( 1088 704 80 ) ( 1088 712 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 876 +{ +( 2256 128 -80 ) ( 2032 128 -80 ) ( 2032 112 -80 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2032 112 64 ) ( 2032 128 64 ) ( 2256 128 64 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2032 112 64 ) ( 2256 112 64 ) ( 2256 112 -80 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2256 112 64 ) ( 2256 128 64 ) ( 2256 128 -80 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2256 128 64 ) ( 2032 128 64 ) ( 2032 128 -80 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2032 128 64 ) ( 2032 112 64 ) ( 2032 112 -80 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +} +// brush 877 +{ +( 2256 128 -128 ) ( 2032 128 -128 ) ( 2032 112 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2032 112 -80 ) ( 2032 128 -80 ) ( 2256 128 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2032 112 -80 ) ( 2256 112 -80 ) ( 2256 112 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2256 112 -80 ) ( 2256 128 -80 ) ( 2256 128 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2256 128 -80 ) ( 2032 128 -80 ) ( 2032 128 -128 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 2032 128 -80 ) ( 2032 112 -80 ) ( 2032 112 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 878 +{ +( 1968 608 64 ) ( 2000 608 64 ) ( 2000 640 64 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 2000 640 72 ) ( 2000 608 72 ) ( 1968 608 72 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 2000 704 80 ) ( 1968 704 80 ) ( 1968 704 -16 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1664 624 80 ) ( 1664 592 80 ) ( 1664 592 -16 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1968 512 80 ) ( 2000 512 80 ) ( 2000 512 -16 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 2240 616 80 ) ( 2240 648 80 ) ( 2240 648 -16 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +} +// brush 879 +{ +( 2032 496 -128 ) ( 2032 512 -128 ) ( 1920 512 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1920 512 -80 ) ( 2032 512 -80 ) ( 2032 496 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1664 528 -32 ) ( 1664 512 -32 ) ( 1664 512 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1920 496 -32 ) ( 2032 496 -32 ) ( 2032 496 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2032 496 -32 ) ( 2032 512 -32 ) ( 2032 512 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2032 512 -32 ) ( 1920 512 -32 ) ( 1920 512 -128 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +} +// brush 880 +{ +( 2032 496 -80 ) ( 2032 512 -80 ) ( 1920 512 -80 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 1920 512 64 ) ( 2032 512 64 ) ( 2032 496 64 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 1664 528 64 ) ( 1664 512 64 ) ( 1664 512 -32 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 1920 496 16 ) ( 2032 496 16 ) ( 2032 496 -80 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2032 496 64 ) ( 2032 512 64 ) ( 2032 512 -32 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2032 512 64 ) ( 1920 512 64 ) ( 1920 512 -32 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +} +// brush 881 +{ +( 2256 704 -128 ) ( 2256 720 -128 ) ( 1920 720 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1920 720 -80 ) ( 2256 720 -80 ) ( 2256 704 -80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1664 728 -32 ) ( 1664 712 -32 ) ( 1664 712 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1920 704 -80 ) ( 2256 704 -80 ) ( 2256 704 -176 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 2256 704 -32 ) ( 2256 720 -32 ) ( 2256 720 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2256 720 -32 ) ( 1920 720 -32 ) ( 1920 720 -128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 882 +{ +( 2256 704 -80 ) ( 2256 720 -80 ) ( 1920 720 -80 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 1920 720 64 ) ( 2256 720 64 ) ( 2256 704 64 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 1664 728 64 ) ( 1664 712 64 ) ( 1664 712 -32 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 1920 704 16 ) ( 2256 704 16 ) ( 2256 704 -80 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2256 704 64 ) ( 2256 720 64 ) ( 2256 720 -32 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +( 2256 720 64 ) ( 1920 720 64 ) ( 1920 720 -32 ) bricks/b_mf_v2 0 -80 0 1 1 0 0 0 +} +// brush 883 +{ +( 1728 576 -144 ) ( 1664 576 -144 ) ( 1664 512 -144 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 1664 512 -128 ) ( 1664 576 -128 ) ( 1728 576 -128 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 1664 512 -128 ) ( 1728 512 -128 ) ( 1728 512 -144 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 2112 576 -128 ) ( 2112 576 -144 ) ( 2048 512 -144 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 2112 576 -144 ) ( 2112 576 -128 ) ( 1664 576 -128 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 1664 576 -128 ) ( 1664 512 -128 ) ( 1664 512 -144 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +} +// brush 884 +{ +( 1728 704 -144 ) ( 1664 704 -144 ) ( 1664 640 -144 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1664 640 -128 ) ( 1664 704 -128 ) ( 1728 704 -128 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1664 640 -128 ) ( 1728 640 -128 ) ( 1728 640 -144 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 2240 704 -128 ) ( 2240 704 -144 ) ( 2176 640 -144 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 2240 704 -144 ) ( 2240 704 -128 ) ( 1664 704 -128 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1664 704 -128 ) ( 1664 640 -128 ) ( 1664 640 -144 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +} +// brush 885 +{ +( 1728 672 -144 ) ( 1664 672 -144 ) ( 1664 544 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1664 544 -128 ) ( 1664 672 -128 ) ( 1728 672 -128 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1664 576 -112 ) ( 1728 576 -112 ) ( 1728 576 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 2176 552 -112 ) ( 2176 680 -112 ) ( 2176 680 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1728 640 -112 ) ( 1664 640 -112 ) ( 1664 640 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1664 672 -112 ) ( 1664 544 -112 ) ( 1664 544 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +} +// brush 886 +{ +( 1360 704 117 ) ( 1344 704 117 ) ( 1344 672 117 ) bricks/b_sr_20 -32 86 0 1 1 0 0 0 +( 1344 672 224 ) ( 1344 704 224 ) ( 1360 704 224 ) bricks/b_sr_20 -32 86 0 1 1 0 0 0 +( 1344 672 136 ) ( 1360 672 136 ) ( 1360 672 -16 ) bricks/b_sr_20 -32 -74 0 1 1 0 0 0 +( 1352 672 136 ) ( 1352 704 136 ) ( 1352 704 -16 ) bricks/b_sr_20 -64 -74 0 1 1 0 0 0 +( 1360 704 136 ) ( 1344 704 136 ) ( 1344 704 -16 ) bricks/b_sr_20 -32 -74 0 1 1 0 0 0 +( 1344 704 136 ) ( 1344 672 136 ) ( 1344 672 -16 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +} +// brush 887 +{ +( 1360 544 117 ) ( 1344 544 117 ) ( 1344 512 117 ) bricks/b_sr_20 -32 -74 0 1 1 0 0 0 +( 1344 512 224 ) ( 1344 544 224 ) ( 1360 544 224 ) bricks/b_sr_20 -32 -74 0 1 1 0 0 0 +( 1344 512 136 ) ( 1360 512 136 ) ( 1360 512 -16 ) bricks/b_sr_20 -32 -74 0 1 1 0 0 0 +( 1352 512 136 ) ( 1352 544 136 ) ( 1352 544 -16 ) bricks/b_sr_20 -32 -74 0 1 1 0 0 0 +( 1360 544 136 ) ( 1344 544 136 ) ( 1344 544 -16 ) bricks/b_sr_20 -32 -74 0 1 1 0 0 0 +( 1344 544 136 ) ( 1344 512 136 ) ( 1344 512 -16 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +} +// brush 888 +{ +( 1688 288 -128 ) ( 1688 752 -128 ) ( 1672 752 -128 ) bricks/c_pv_m2 -96 23 90 1 1 0 0 0 +( 1672 752 -32 ) ( 1688 752 -32 ) ( 1688 288 -32 ) bricks/c_pv_m2 -96 23 90 1 1 0 0 0 +( 1688 288 -32 ) ( 1688 752 -32 ) ( 1688 752 -160 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 1623 553 -160 ) ( 1639 553 -160 ) ( 1631 553 -32 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 1688 512 -160 ) ( 1672 512 -160 ) ( 1680 512 -32 ) bricks/c_pv_m2 -23 -31 -180 1 -1 0 0 0 +( 1664 656 -160 ) ( 1664 672 -160 ) ( 1664 664 -32 ) bricks/c_pv_m2 0 -32 -180 1 -1 0 0 0 +} +// brush 889 +{ +( 1688 288 -128 ) ( 1688 752 -128 ) ( 1672 752 -128 ) bricks/c_pv_m2 -96 23 90 1 1 0 0 0 +( 1672 752 -32 ) ( 1688 752 -32 ) ( 1688 288 -32 ) bricks/c_pv_m2 -96 23 90 1 1 0 0 0 +( 1688 288 -32 ) ( 1688 752 -32 ) ( 1688 752 -160 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 1657 663 -160 ) ( 1641 663 -160 ) ( 1649 663 -32 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 1672 704 -160 ) ( 1688 704 -160 ) ( 1680 704 -32 ) bricks/c_pv_m2 -23 -31 -180 1 -1 0 0 0 +( 1664 656 -160 ) ( 1664 672 -160 ) ( 1664 664 -32 ) bricks/c_pv_m2 0 -32 -180 1 -1 0 0 0 +} +// brush 890 +{ +( 1688 288 96 ) ( 1688 752 96 ) ( 1688 752 -32 ) bricks/b_sr_24 -32 -33 0 1 1 0 0 0 +( 1672 648 32 ) ( 1672 672 32 ) ( 1688 660 32 ) bricks/b_sr_24 -32 -33 0 1 1 0 0 0 +( 1672 608 20 ) ( 1672 544 20 ) ( 1688 576 20 ) bricks/b_sr_21 6 24 270 1 1 0 0 0 +( 1672 616 20 ) ( 1688 616 20 ) ( 1680 616 32 ) bricks/b_sr_24 -32 -33 0 1 1 0 0 0 +( 1688 600 20 ) ( 1624 600 20 ) ( 1656 600 32 ) bricks/b_sr_24 -32 -33 0 1 1 0 0 0 +( 1664 600 20 ) ( 1664 616 20 ) ( 1664 608 32 ) bricks/b_sr_24 -32 -33 0 1 1 0 0 0 +} +// brush 891 +{ +( 1688 704 -32 ) ( 1664 704 -32 ) ( 1664 672 -32 ) bricks/b_sr_20 -39 64 0 1 1 0 0 0 +( 1664 672 96 ) ( 1664 704 96 ) ( 1688 704 96 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1664 672 96 ) ( 1688 672 96 ) ( 1688 672 -32 ) bricks/b_sr_20 -40 -96 0 1 0.999985 0 0 0 +( 1688 672 96 ) ( 1688 704 96 ) ( 1688 704 -32 ) bricks/b_sr_20 -32 -97 0 1 1 0 0 0 +( 1688 704 96 ) ( 1664 704 96 ) ( 1664 704 -32 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1664 704 96 ) ( 1664 672 96 ) ( 1664 672 -32 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 892 +{ +( 1688 544 -32 ) ( 1664 544 -32 ) ( 1664 512 -32 ) bricks/b_sr_20 -39 64 0 1 1 0 0 0 +( 1664 512 96 ) ( 1664 544 96 ) ( 1688 544 96 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1664 512 96 ) ( 1688 512 96 ) ( 1688 512 -32 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1688 512 96 ) ( 1688 544 96 ) ( 1688 544 -32 ) bricks/b_sr_20 -32 -97 0 1 1 0 0 0 +( 1688 544 96 ) ( 1664 544 96 ) ( 1664 544 -32 ) bricks/b_sr_20 -40 -96 0 1 0.999985 0 0 0 +( 1664 544 96 ) ( 1664 512 96 ) ( 1664 512 -32 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 893 +{ +( 1688 672 32 ) ( 1664 672 32 ) ( 1664 544 32 ) bricks/b_sr_20 -39 64 0 1 1 0 0 0 +( 1664 544 96 ) ( 1664 672 96 ) ( 1688 672 96 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1664 544 96 ) ( 1688 544 96 ) ( 1688 544 -32 ) bricks/b_sr_20 -40 -96 0 1 0.999985 0 0 0 +( 1688 544 96 ) ( 1688 672 96 ) ( 1688 672 -32 ) bricks/b_sr_20 -32 -97 0 1 1 0 0 0 +( 1688 672 96 ) ( 1664 672 96 ) ( 1664 672 -32 ) bricks/b_sr_20 -40 -96 0 1 0.999985 0 0 0 +( 1664 672 96 ) ( 1664 544 96 ) ( 1664 544 -32 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 894 +{ +( 1664 512 -144 ) ( 1664 704 -144 ) ( 1632 704 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1632 704 -112 ) ( 1664 704 -112 ) ( 1664 512 -112 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1632 704 -128 ) ( 1632 512 -128 ) ( 1632 512 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1632 544 -128 ) ( 1664 544 -128 ) ( 1664 544 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1664 512 -128 ) ( 1664 704 -128 ) ( 1664 704 -144 ) bricks/c_sr_m8e 0 180 0 1 -1 0 0 0 +( 1672 672 -128 ) ( 1640 672 -128 ) ( 1640 672 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +} +// brush 895 +{ +( 1632 512 -144 ) ( 1632 704 -144 ) ( 1600 704 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1600 704 -96 ) ( 1632 704 -96 ) ( 1632 512 -96 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1600 704 -128 ) ( 1600 512 -128 ) ( 1600 512 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1600 544 -128 ) ( 1632 544 -128 ) ( 1632 544 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1632 512 -128 ) ( 1632 704 -128 ) ( 1632 704 -144 ) bricks/c_sr_m8e 0 164 0 1 -1 0 0 0 +( 1640 672 -128 ) ( 1608 672 -128 ) ( 1608 672 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +} +// brush 896 +{ +( 1600 512 -144 ) ( 1600 704 -144 ) ( 1568 704 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1568 704 -80 ) ( 1600 704 -80 ) ( 1600 512 -80 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1568 704 -128 ) ( 1568 512 -128 ) ( 1568 512 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1568 544 -128 ) ( 1600 544 -128 ) ( 1600 544 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1600 512 -128 ) ( 1600 704 -128 ) ( 1600 704 -144 ) bricks/c_sr_m8e 0 148 0 1 -1 0 0 0 +( 1608 672 -128 ) ( 1576 672 -128 ) ( 1576 672 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +} +// brush 897 +{ +( 1568 512 -144 ) ( 1568 704 -144 ) ( 1536 704 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1536 704 -64 ) ( 1568 704 -64 ) ( 1568 512 -64 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1536 704 -128 ) ( 1536 512 -128 ) ( 1536 512 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1536 544 -128 ) ( 1568 544 -128 ) ( 1568 544 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1568 512 -128 ) ( 1568 704 -128 ) ( 1568 704 -144 ) bricks/c_sr_m8e 0 132 0 1 -1 0 0 0 +( 1576 672 -128 ) ( 1544 672 -128 ) ( 1544 672 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +} +// brush 898 +{ +( 1536 512 -144 ) ( 1536 704 -144 ) ( 1504 704 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1504 704 -48 ) ( 1536 704 -48 ) ( 1536 512 -48 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1504 704 -128 ) ( 1504 512 -128 ) ( 1504 512 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1504 544 -128 ) ( 1536 544 -128 ) ( 1536 544 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1536 512 -128 ) ( 1536 704 -128 ) ( 1536 704 -144 ) bricks/c_sr_m8e 0 116 0 1 -1 0 0 0 +( 1544 672 -128 ) ( 1512 672 -128 ) ( 1512 672 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +} +// brush 899 +{ +( 1504 512 -144 ) ( 1504 704 -144 ) ( 1472 704 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1472 704 -32 ) ( 1504 704 -32 ) ( 1504 512 -32 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1472 704 -128 ) ( 1472 512 -128 ) ( 1472 512 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1472 544 -128 ) ( 1504 544 -128 ) ( 1504 544 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1504 512 -128 ) ( 1504 704 -128 ) ( 1504 704 -144 ) bricks/c_sr_m8e 0 100 0 1 -1 0 0 0 +( 1512 672 -128 ) ( 1480 672 -128 ) ( 1480 672 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +} +// brush 900 +{ +( 1472 512 -144 ) ( 1472 704 -144 ) ( 1440 704 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1440 704 -16 ) ( 1472 704 -16 ) ( 1472 512 -16 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1440 704 -128 ) ( 1440 512 -128 ) ( 1440 512 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1440 544 -128 ) ( 1472 544 -128 ) ( 1472 544 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1472 512 -128 ) ( 1472 704 -128 ) ( 1472 704 -144 ) bricks/c_sr_m8e 0 84 0 1 -1 0 0 0 +( 1480 672 -128 ) ( 1448 672 -128 ) ( 1448 672 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +} +// brush 901 +{ +( 1440 512 -144 ) ( 1440 704 -144 ) ( 1408 704 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1408 704 0 ) ( 1440 704 0 ) ( 1440 512 0 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1408 704 -128 ) ( 1408 512 -128 ) ( 1408 512 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1408 544 -128 ) ( 1440 544 -128 ) ( 1440 544 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1440 512 -128 ) ( 1440 704 -128 ) ( 1440 704 -144 ) bricks/c_sr_m8e 0 68 0 1 -1 0 0 0 +( 1448 672 -128 ) ( 1416 672 -128 ) ( 1416 672 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +} +// brush 902 +{ +( 1408 512 -144 ) ( 1408 704 -144 ) ( 1376 704 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1376 704 16 ) ( 1408 704 16 ) ( 1408 512 16 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1376 704 -128 ) ( 1376 512 -128 ) ( 1376 512 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1376 544 -128 ) ( 1408 544 -128 ) ( 1408 544 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1408 512 -128 ) ( 1408 704 -128 ) ( 1408 704 -144 ) bricks/c_sr_m8e 0 52 0 1 -1 0 0 0 +( 1416 672 -128 ) ( 1384 672 -128 ) ( 1384 672 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +} +// brush 903 +{ +( 1376 512 -144 ) ( 1376 704 -144 ) ( 1344 704 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1344 704 32 ) ( 1376 704 32 ) ( 1376 512 32 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1344 704 -128 ) ( 1344 512 -128 ) ( 1344 512 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1344 544 -128 ) ( 1376 544 -128 ) ( 1376 544 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +( 1376 512 -128 ) ( 1376 704 -128 ) ( 1376 704 -144 ) bricks/c_sr_m8e 0 36 0 1 -1 0 0 0 +( 1384 672 -128 ) ( 1352 672 -128 ) ( 1352 672 -144 ) bricks/c_sr_m8d 0 0 90 1 1 0 67108864 0 +} +// brush 904 +{ +( 1688 600 20 ) ( 1688 544 20 ) ( 1688 544 32 ) bricks/b_sr_24 -32 -33 0 1 1 0 0 0 +( 1344 544 32 ) ( 1344 600 32 ) ( 1688 600 32 ) bricks/b_mf_v2 -96 23 90 1 1 0 0 0 +( 1688 544 20 ) ( 1344 544 20 ) ( 1344 544 32 ) bricks/b_mf_v2 -23 -31 -180 1 -1 0 0 0 +( 1344 600 20 ) ( 1344 544 20 ) ( 1688 544 20 ) bricks/b_sr_21 6 24 270 1 1 0 0 0 +( 1664 600 20 ) ( 2008 600 20 ) ( 2008 600 32 ) bricks/b_sr_21 -23 0 -180 1 -1 0 0 0 +( 1664 544 20 ) ( 1664 600 20 ) ( 1664 600 32 ) bricks/b_sr_21 0 0 -180 1 -1 0 0 0 +} +// brush 905 +{ +( 1688 672 20 ) ( 1688 616 20 ) ( 1688 616 32 ) bricks/b_sr_24 -32 -33 0 1 1 0 0 0 +( 1344 616 32 ) ( 1344 672 32 ) ( 1688 672 32 ) bricks/b_mf_v2 -96 23 90 1 1 0 0 0 +( 1344 672 20 ) ( 1688 672 20 ) ( 1688 672 32 ) bricks/b_mf_v2 -23 -31 -180 1 -1 0 0 0 +( 1344 672 20 ) ( 1344 616 20 ) ( 1688 616 20 ) bricks/b_sr_21 6 24 270 1 1 0 0 0 +( 2008 616 20 ) ( 1664 616 20 ) ( 1664 616 32 ) bricks/b_sr_21 -23 0 -180 1 -1 0 0 0 +( 1664 616 20 ) ( 1664 672 20 ) ( 1664 672 32 ) bricks/b_sr_21 0 0 -180 1 -1 0 0 0 +} +// brush 906 +{ +( 1688 620 20 ) ( 1688 672 20 ) ( 1688 672 16 ) bricks/b_sr_24 -32 -33 0 1 1 0 0 0 +( 1688 672 20 ) ( 1344 672 20 ) ( 1344 672 16 ) bricks/b_mf_v2 8 -32 0 1 1 0 0 0 +( 1664 620 20 ) ( 2008 620 20 ) ( 2008 634 16 ) bricks/b_sr_21 6 24 270 1 1 0 0 0 +( 1344 672 16 ) ( 1344 634 16 ) ( 1688 634 16 ) bricks/b_mf_v2 81 -9 -90 1 1 0 0 0 +( 1344 620 20 ) ( 1344 672 20 ) ( 1688 672 20 ) bricks/b_mf_v2 81 -9 -90 1 1 0 0 0 +( 1664 672 20 ) ( 1664 620 20 ) ( 1664 634 16 ) bricks/b_mf_v2 -79 15 -90 1 1 0 0 0 +} +// brush 907 +{ +( 1344 672 -32 ) ( 1344 663 -32 ) ( 1688 663 -32 ) bricks/b_mf_v2 81 -9 -90 1 1 0 0 0 +( 1688 663 -24 ) ( 1688 672 -24 ) ( 1688 672 -32 ) bricks/b_sr_24 -32 -33 0 1 1 0 0 0 +( 1688 672 -24 ) ( 1344 672 -24 ) ( 1344 672 -32 ) bricks/b_mf_v2 8 -32 0 1 1 0 0 0 +( 1664 663 -24 ) ( 2008 663 -24 ) ( 2008 663 -32 ) bricks/b_sr_21 6 24 270 1 1 0 0 0 +( 1344 663 -24 ) ( 1344 672 -24 ) ( 1688 672 -24 ) bricks/b_mf_v2 81 -9 -90 1 1 0 0 0 +( 1664 672 -24 ) ( 1664 663 -24 ) ( 1664 663 -32 ) bricks/b_mf_v2 -79 15 -90 1 1 0 0 0 +} +// brush 908 +{ +( 1688 661 -16 ) ( 1688 672 -16 ) ( 1688 672 -24 ) bricks/b_sr_24 -32 -33 0 1 1 0 0 0 +( 1688 672 -16 ) ( 1344 672 -16 ) ( 1344 672 -24 ) bricks/b_mf_v2 8 -32 0 1 1 0 0 0 +( 1664 661 -16 ) ( 2008 661 -16 ) ( 2008 663 -24 ) bricks/b_sr_21 6 24 270 1 1 0 0 0 +( 1344 672 -24 ) ( 1344 663 -24 ) ( 1688 663 -24 ) bricks/b_mf_v2 81 -9 -90 1 1 0 0 0 +( 1344 661 -16 ) ( 1344 672 -16 ) ( 1688 672 -16 ) bricks/b_mf_v2 81 -9 -90 1 1 0 0 0 +( 1664 672 -16 ) ( 1664 661 -16 ) ( 1664 663 -24 ) bricks/b_mf_v2 -79 15 -90 1 1 0 0 0 +} +// brush 909 +{ +( 1688 658 -8 ) ( 1688 672 -8 ) ( 1688 672 -16 ) bricks/b_sr_24 -32 -33 0 1 1 0 0 0 +( 1688 672 -8 ) ( 1344 672 -8 ) ( 1344 672 -16 ) bricks/b_mf_v2 8 -32 0 1 1 0 0 0 +( 1664 658 -8 ) ( 2008 658 -8 ) ( 2008 661 -16 ) bricks/b_sr_21 6 24 270 1 1 0 0 0 +( 1344 672 -16 ) ( 1344 661 -16 ) ( 1688 661 -16 ) bricks/b_mf_v2 81 -9 -90 1 1 0 0 0 +( 1344 658 -8 ) ( 1344 672 -8 ) ( 1688 672 -8 ) bricks/b_mf_v2 81 -9 -90 1 1 0 0 0 +( 1664 672 -8 ) ( 1664 658 -8 ) ( 1664 661 -16 ) bricks/b_mf_v2 -79 15 -90 1 1 0 0 0 +} +// brush 910 +{ +( 1688 652 0 ) ( 1688 672 0 ) ( 1688 672 -8 ) bricks/b_sr_24 -32 -33 0 1 1 0 0 0 +( 1688 672 0 ) ( 1344 672 0 ) ( 1344 672 -8 ) bricks/b_mf_v2 8 -32 0 1 1 0 0 0 +( 1664 652 0 ) ( 2008 652 0 ) ( 2008 658 -8 ) bricks/b_sr_21 6 24 270 1 1 0 0 0 +( 1344 672 -8 ) ( 1344 658 -8 ) ( 1688 658 -8 ) bricks/b_mf_v2 81 -9 -90 1 1 0 0 0 +( 1344 652 0 ) ( 1344 672 0 ) ( 1688 672 0 ) bricks/b_mf_v2 81 -9 -90 1 1 0 0 0 +( 1664 672 0 ) ( 1664 652 0 ) ( 1664 658 -8 ) bricks/b_mf_v2 -79 15 -90 1 1 0 0 0 +} +// brush 911 +{ +( 1688 645 8 ) ( 1688 672 8 ) ( 1688 672 0 ) bricks/b_sr_24 -32 -33 0 1 1 0 0 0 +( 1688 672 8 ) ( 1344 672 8 ) ( 1344 672 0 ) bricks/b_mf_v2 8 -32 0 1 1 0 0 0 +( 1664 645 8 ) ( 2008 645 8 ) ( 2008 652 0 ) bricks/b_sr_21 6 24 270 1 1 0 0 0 +( 1344 672 0 ) ( 1344 652 0 ) ( 1688 652 0 ) bricks/b_mf_v2 81 -9 -90 1 1 0 0 0 +( 1344 645 8 ) ( 1344 672 8 ) ( 1688 672 8 ) bricks/b_mf_v2 81 -9 -90 1 1 0 0 0 +( 1664 672 8 ) ( 1664 645 8 ) ( 1664 652 0 ) bricks/b_mf_v2 -79 15 -90 1 1 0 0 0 +} +// brush 912 +{ +( 1688 634 16 ) ( 1688 672 16 ) ( 1688 672 8 ) bricks/b_sr_24 -32 -33 0 1 1 0 0 0 +( 1688 672 16 ) ( 1344 672 16 ) ( 1344 672 8 ) bricks/b_mf_v2 8 -32 0 1 1 0 0 0 +( 1664 634 16 ) ( 2008 634 16 ) ( 2008 645 8 ) bricks/b_sr_21 6 24 270 1 1 0 0 0 +( 1344 672 8 ) ( 1344 645 8 ) ( 1688 645 8 ) bricks/b_mf_v2 81 -9 -90 1 1 0 0 0 +( 1344 634 16 ) ( 1344 672 16 ) ( 1688 672 16 ) bricks/b_mf_v2 81 -9 -90 1 1 0 0 0 +( 1664 672 16 ) ( 1664 634 16 ) ( 1664 645 8 ) bricks/b_mf_v2 -79 15 -90 1 1 0 0 0 +} +// brush 913 +{ +( 1688 544 20 ) ( 1688 596 20 ) ( 1688 582 16 ) bricks/b_sr_24 -32 -33 0 1 1 0 0 0 +( 1344 544 20 ) ( 1688 544 20 ) ( 1688 544 16 ) bricks/b_mf_v2 -23 -31 -180 1 -1 0 0 0 +( 2008 596 20 ) ( 1664 596 20 ) ( 1664 582 16 ) bricks/b_sr_21 6 24 270 1 1 0 0 0 +( 1344 582 16 ) ( 1344 544 16 ) ( 1688 544 16 ) bricks/b_mf_v2 -96 23 90 1 1 0 0 0 +( 1344 544 20 ) ( 1344 596 20 ) ( 1688 596 20 ) bricks/b_mf_v2 -96 23 90 1 1 0 0 0 +( 1664 596 20 ) ( 1664 544 20 ) ( 1664 544 16 ) bricks/b_mf_v2 63 0 90 1 1 0 0 0 +} +// brush 914 +{ +( 1688 544 16 ) ( 1688 582 16 ) ( 1688 571 8 ) bricks/b_sr_24 -32 -33 0 1 1 0 0 0 +( 1344 544 16 ) ( 1688 544 16 ) ( 1688 544 8 ) bricks/b_mf_v2 -23 -31 -180 1 -1 0 0 0 +( 2008 582 16 ) ( 1664 582 16 ) ( 1664 571 8 ) bricks/b_sr_21 6 24 270 1 1 0 0 0 +( 1344 571 8 ) ( 1344 544 8 ) ( 1688 544 8 ) bricks/b_mf_v2 -96 23 90 1 1 0 0 0 +( 1344 544 16 ) ( 1344 582 16 ) ( 1688 582 16 ) bricks/b_mf_v2 -96 23 90 1 1 0 0 0 +( 1664 582 16 ) ( 1664 544 16 ) ( 1664 544 8 ) bricks/b_mf_v2 63 0 90 1 1 0 0 0 +} +// brush 915 +{ +( 1688 544 8 ) ( 1688 571 8 ) ( 1688 564 0 ) bricks/b_sr_24 -32 -33 0 1 1 0 0 0 +( 1344 544 8 ) ( 1688 544 8 ) ( 1688 544 0 ) bricks/b_mf_v2 -23 -31 -180 1 -1 0 0 0 +( 2008 571 8 ) ( 1664 571 8 ) ( 1664 564 0 ) bricks/b_sr_21 6 24 270 1 1 0 0 0 +( 1344 564 0 ) ( 1344 544 0 ) ( 1688 544 0 ) bricks/b_mf_v2 -96 23 90 1 1 0 0 0 +( 1344 544 8 ) ( 1344 571 8 ) ( 1688 571 8 ) bricks/b_mf_v2 -96 23 90 1 1 0 0 0 +( 1664 571 8 ) ( 1664 544 8 ) ( 1664 544 0 ) bricks/b_mf_v2 63 0 90 1 1 0 0 0 +} +// brush 916 +{ +( 1688 544 0 ) ( 1688 564 0 ) ( 1688 558 -8 ) bricks/b_sr_24 -32 -33 0 1 1 0 0 0 +( 1344 544 0 ) ( 1688 544 0 ) ( 1688 544 -8 ) bricks/b_mf_v2 -23 -31 -180 1 -1 0 0 0 +( 2008 564 0 ) ( 1664 564 0 ) ( 1664 558 -8 ) bricks/b_sr_21 6 24 270 1 1 0 0 0 +( 1344 558 -8 ) ( 1344 544 -8 ) ( 1688 544 -8 ) bricks/b_mf_v2 -96 23 90 1 1 0 0 0 +( 1344 544 0 ) ( 1344 564 0 ) ( 1688 564 0 ) bricks/b_mf_v2 -96 23 90 1 1 0 0 0 +( 1664 564 0 ) ( 1664 544 0 ) ( 1664 544 -8 ) bricks/b_mf_v2 63 0 90 1 1 0 0 0 +} +// brush 917 +{ +( 1688 544 -8 ) ( 1688 558 -8 ) ( 1688 555 -16 ) bricks/b_sr_24 -32 -33 0 1 1 0 0 0 +( 1344 544 -8 ) ( 1688 544 -8 ) ( 1688 544 -16 ) bricks/b_mf_v2 -23 -31 -180 1 -1 0 0 0 +( 2008 558 -8 ) ( 1664 558 -8 ) ( 1664 555 -16 ) bricks/b_sr_21 6 24 270 1 1 0 0 0 +( 1344 555 -16 ) ( 1344 544 -16 ) ( 1688 544 -16 ) bricks/b_mf_v2 -96 23 90 1 1 0 0 0 +( 1344 544 -8 ) ( 1344 558 -8 ) ( 1688 558 -8 ) bricks/b_mf_v2 -96 23 90 1 1 0 0 0 +( 1664 558 -8 ) ( 1664 544 -8 ) ( 1664 544 -16 ) bricks/b_mf_v2 63 0 90 1 1 0 0 0 +} +// brush 918 +{ +( 1688 544 -16 ) ( 1688 555 -16 ) ( 1688 553 -24 ) bricks/b_sr_24 -32 -33 0 1 1 0 0 0 +( 1344 544 -16 ) ( 1688 544 -16 ) ( 1688 544 -24 ) bricks/b_mf_v2 -23 -31 -180 1 -1 0 0 0 +( 2008 555 -16 ) ( 1664 555 -16 ) ( 1664 553 -24 ) bricks/b_sr_21 6 24 270 1 1 0 0 0 +( 1344 553 -24 ) ( 1344 544 -24 ) ( 1688 544 -24 ) bricks/b_mf_v2 -96 23 90 1 1 0 0 0 +( 1344 544 -16 ) ( 1344 555 -16 ) ( 1688 555 -16 ) bricks/b_mf_v2 -96 23 90 1 1 0 0 0 +( 1664 555 -16 ) ( 1664 544 -16 ) ( 1664 544 -24 ) bricks/b_mf_v2 63 0 90 1 1 0 0 0 +} +// brush 919 +{ +( 1344 553 -32 ) ( 1344 544 -32 ) ( 1688 544 -32 ) bricks/b_mf_v2 -96 23 90 1 1 0 0 0 +( 1688 544 -24 ) ( 1688 553 -24 ) ( 1688 553 -32 ) bricks/b_sr_24 -32 -33 0 1 1 0 0 0 +( 1344 544 -24 ) ( 1688 544 -24 ) ( 1688 544 -32 ) bricks/b_mf_v2 -23 -31 -180 1 -1 0 0 0 +( 2008 553 -24 ) ( 1664 553 -24 ) ( 1664 553 -32 ) bricks/b_sr_21 6 24 270 1 1 0 0 0 +( 1344 544 -24 ) ( 1344 553 -24 ) ( 1688 553 -24 ) bricks/b_mf_v2 -96 23 90 1 1 0 0 0 +( 1664 553 -24 ) ( 1664 544 -24 ) ( 1664 544 -32 ) bricks/b_mf_v2 63 0 90 1 1 0 0 0 +} +// brush 920 +{ +( 1664 288 -128 ) ( 1664 752 -128 ) ( 1648 752 -128 ) bricks/c_pv_m2 -96 0 90 1 1 0 0 0 +( 1664 512 -32 ) ( 1664 552 -32 ) ( 1664 552 -128 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1599 553 -128 ) ( 1615 553 -128 ) ( 1607 553 0 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 1664 512 -128 ) ( 1648 512 -128 ) ( 1656 512 0 ) bricks/c_pv_m2 0 0 -180 1 -1 0 0 0 +( 1320 552 128 ) ( 1320 512 128 ) ( 1320 512 -96 ) bricks/c_pv_m2 0 0 -180 1 -1 0 0 0 +( 1632 553 -32 ) ( 1664 553 -32 ) ( 1648 512 -32 ) bricks/c_pv_m2 0 -31 -90 1 -1 0 0 0 +} +// brush 921 +{ +( 1664 440 -128 ) ( 1664 904 -128 ) ( 1648 904 -128 ) bricks/c_pv_m2 -72 0 90 1 1 0 0 0 +( 1664 664 -32 ) ( 1664 704 -32 ) ( 1664 704 -128 ) bricks/c_pv_m2 -72 0 0 1 1 0 0 0 +( 1599 704 -128 ) ( 1615 704 -128 ) ( 1607 704 0 ) bricks/c_pv_m2 -23 -31 -180 1 -1 0 0 0 +( 1664 663 -128 ) ( 1648 663 -128 ) ( 1656 663 0 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 1320 704 128 ) ( 1320 664 128 ) ( 1320 664 -96 ) bricks/c_pv_m2 104 -1 -180 1 -1 0 0 0 +( 1632 705 -32 ) ( 1664 705 -32 ) ( 1648 664 -32 ) bricks/c_pv_m2 104 -32 -90 1 -1 0 0 0 +} +// brush 922 +{ +( 1344 663 117 ) ( 1344 704 117 ) ( 1664 704 -32 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1599 704 -128 ) ( 1615 704 -128 ) ( 1607 704 0 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1664 663 -128 ) ( 1648 663 -128 ) ( 1656 663 0 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1664 705 -32 ) ( 1632 705 -32 ) ( 1648 664 -32 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1344 704 117 ) ( 1344 663 117 ) ( 1344 663 -32 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +} +// brush 923 +{ +( 1664 464 -32 ) ( 1664 464 96 ) ( 1664 928 96 ) bricks/b_sr_24 -88 -32 0 1 1 0 0 0 +( 1664 672 -16 ) ( 1320 672 144 ) ( 1320 672 136 ) bricks/b_mf_v2 0 -31 -180 1 -1 0 0 0 +( 1664 663 -24 ) ( 1320 663 136 ) ( 1320 661 144 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1664 672 -24 ) ( 1320 672 136 ) ( 1320 663 136 ) bricks/b_mf_v2 -24 0 90 1 1 0 0 0 +( 1664 661 -16 ) ( 1320 661 144 ) ( 1320 672 144 ) bricks/b_mf_v2 -24 0 90 1 1 0 0 0 +( 1344 688 -24 ) ( 1344 712 -24 ) ( 1344 700 144 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +} +// brush 924 +{ +( 1344 672 117 ) ( 1344 663 117 ) ( 1664 663 -32 ) bricks/b_mf_v2 -24 0 90 1 1 0 0 0 +( 1664 464 -32 ) ( 1664 464 96 ) ( 1664 928 96 ) bricks/b_sr_24 -88 -32 0 1 1 0 0 0 +( 1664 672 -24 ) ( 1320 672 136 ) ( 1320 672 128 ) bricks/b_mf_v2 0 -31 -180 1 -1 0 0 0 +( 1664 663 -32 ) ( 1320 663 128 ) ( 1320 663 136 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1664 663 -24 ) ( 1320 663 136 ) ( 1320 672 136 ) bricks/b_mf_v2 -24 0 90 1 1 0 0 0 +( 1344 663 117 ) ( 1344 672 117 ) ( 1344 672 125 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +} +// brush 925 +{ +( 1664 464 -32 ) ( 1664 464 96 ) ( 1664 928 96 ) bricks/b_sr_24 -88 -32 0 1 1 0 0 0 +( 1664 672 -8 ) ( 1320 672 152 ) ( 1320 672 144 ) bricks/b_mf_v2 0 -31 -180 1 -1 0 0 0 +( 1664 661 -16 ) ( 1320 661 144 ) ( 1320 658 152 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1664 672 -16 ) ( 1320 672 144 ) ( 1320 661 144 ) bricks/b_mf_v2 -24 0 90 1 1 0 0 0 +( 1664 658 -8 ) ( 1320 658 152 ) ( 1320 672 152 ) bricks/b_mf_v2 -24 0 90 1 1 0 0 0 +( 1344 688 -16 ) ( 1344 712 -16 ) ( 1344 700 152 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +} +// brush 926 +{ +( 1664 464 -32 ) ( 1664 464 96 ) ( 1664 928 96 ) bricks/b_sr_24 -88 -32 0 1 1 0 0 0 +( 1664 672 0 ) ( 1320 672 160 ) ( 1320 672 152 ) bricks/b_mf_v2 0 -31 -180 1 -1 0 0 0 +( 1664 658 -8 ) ( 1320 658 152 ) ( 1320 652 160 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1664 672 -8 ) ( 1320 672 152 ) ( 1320 658 152 ) bricks/b_mf_v2 -24 0 90 1 1 0 0 0 +( 1664 652 0 ) ( 1320 652 160 ) ( 1320 672 160 ) bricks/b_mf_v2 -24 0 90 1 1 0 0 0 +( 1344 688 -8 ) ( 1344 712 -8 ) ( 1344 700 160 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +} +// brush 927 +{ +( 1664 464 -32 ) ( 1664 464 96 ) ( 1664 928 96 ) bricks/b_sr_24 -88 -32 0 1 1 0 0 0 +( 1664 672 8 ) ( 1320 672 168 ) ( 1320 672 160 ) bricks/b_mf_v2 0 -31 -180 1 -1 0 0 0 +( 1664 652 0 ) ( 1320 652 160 ) ( 1320 645 168 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1664 672 0 ) ( 1320 672 160 ) ( 1320 652 160 ) bricks/b_mf_v2 -24 0 90 1 1 0 0 0 +( 1664 645 8 ) ( 1320 645 168 ) ( 1320 672 168 ) bricks/b_mf_v2 -24 0 90 1 1 0 0 0 +( 1344 688 0 ) ( 1344 712 0 ) ( 1344 700 168 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +} +// brush 928 +{ +( 1664 464 -32 ) ( 1664 464 96 ) ( 1664 928 96 ) bricks/b_sr_24 -88 -32 0 1 1 0 0 0 +( 1664 672 16 ) ( 1320 672 176 ) ( 1320 672 168 ) bricks/b_mf_v2 0 -31 -180 1 -1 0 0 0 +( 1664 645 8 ) ( 1320 645 168 ) ( 1320 634 176 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1664 672 8 ) ( 1320 672 168 ) ( 1320 645 168 ) bricks/b_mf_v2 -24 0 90 1 1 0 0 0 +( 1664 634 16 ) ( 1320 634 176 ) ( 1320 672 176 ) bricks/b_mf_v2 -24 0 90 1 1 0 0 0 +( 1344 688 8 ) ( 1344 712 8 ) ( 1344 700 176 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +} +// brush 929 +{ +( 1664 464 -32 ) ( 1664 464 96 ) ( 1664 928 96 ) bricks/b_sr_24 -88 -32 0 1 1 0 0 0 +( 1664 672 20 ) ( 1320 672 180 ) ( 1320 672 176 ) bricks/b_mf_v2 0 -31 -180 1 -1 0 0 0 +( 1664 634 16 ) ( 1320 634 176 ) ( 1320 620 180 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1664 672 16 ) ( 1320 672 176 ) ( 1320 634 176 ) bricks/b_mf_v2 -24 0 90 1 1 0 0 0 +( 1664 620 20 ) ( 1320 620 180 ) ( 1320 672 180 ) bricks/b_mf_v2 -24 0 90 1 1 0 0 0 +( 1344 688 16 ) ( 1344 712 16 ) ( 1344 700 180 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +} +// brush 930 +{ +( 1664 288 96 ) ( 1664 752 96 ) ( 1664 752 -32 ) bricks/b_sr_24 -32 -32 0 1 1 0 0 0 +( 1320 544 176 ) ( 1320 544 180 ) ( 1664 544 20 ) bricks/b_mf_v2 0 -31 -180 1 -1 0 0 0 +( 1320 596 180 ) ( 1320 582 176 ) ( 1664 582 16 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1320 582 176 ) ( 1320 544 176 ) ( 1664 544 16 ) bricks/b_mf_v2 -95 0 90 1 1 0 0 0 +( 1320 544 180 ) ( 1320 596 180 ) ( 1664 596 20 ) bricks/b_mf_v2 -95 0 90 1 1 0 0 0 +( 1344 688 16 ) ( 1344 712 16 ) ( 1344 700 180 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +} +// brush 931 +{ +( 1664 288 96 ) ( 1664 752 96 ) ( 1664 752 -32 ) bricks/b_sr_24 -32 -32 0 1 1 0 0 0 +( 1320 544 168 ) ( 1320 544 176 ) ( 1664 544 16 ) bricks/b_mf_v2 0 -31 -180 1 -1 0 0 0 +( 1320 582 176 ) ( 1320 571 168 ) ( 1664 571 8 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1320 571 168 ) ( 1320 544 168 ) ( 1664 544 8 ) bricks/b_mf_v2 -95 0 90 1 1 0 0 0 +( 1320 544 176 ) ( 1320 582 176 ) ( 1664 582 16 ) bricks/b_mf_v2 -95 0 90 1 1 0 0 0 +( 1344 688 8 ) ( 1344 712 8 ) ( 1344 700 176 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +} +// brush 932 +{ +( 1664 288 96 ) ( 1664 752 96 ) ( 1664 752 -32 ) bricks/b_sr_24 -32 -32 0 1 1 0 0 0 +( 1320 544 160 ) ( 1320 544 168 ) ( 1664 544 8 ) bricks/b_mf_v2 0 -31 -180 1 -1 0 0 0 +( 1320 571 168 ) ( 1320 564 160 ) ( 1664 564 0 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1320 564 160 ) ( 1320 544 160 ) ( 1664 544 0 ) bricks/b_mf_v2 -95 0 90 1 1 0 0 0 +( 1320 544 168 ) ( 1320 571 168 ) ( 1664 571 8 ) bricks/b_mf_v2 -95 0 90 1 1 0 0 0 +( 1344 688 0 ) ( 1344 712 0 ) ( 1344 700 168 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +} +// brush 933 +{ +( 1664 288 96 ) ( 1664 752 96 ) ( 1664 752 -32 ) bricks/b_sr_24 -32 -32 0 1 1 0 0 0 +( 1320 544 152 ) ( 1320 544 160 ) ( 1664 544 0 ) bricks/b_mf_v2 0 -31 -180 1 -1 0 0 0 +( 1320 564 160 ) ( 1320 558 152 ) ( 1664 558 -8 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1320 558 152 ) ( 1320 544 152 ) ( 1664 544 -8 ) bricks/b_mf_v2 -95 0 90 1 1 0 0 0 +( 1320 544 160 ) ( 1320 564 160 ) ( 1664 564 0 ) bricks/b_mf_v2 -95 0 90 1 1 0 0 0 +( 1344 688 -8 ) ( 1344 712 -8 ) ( 1344 700 160 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +} +// brush 934 +{ +( 1664 288 96 ) ( 1664 752 96 ) ( 1664 752 -32 ) bricks/b_sr_24 -32 -32 0 1 1 0 0 0 +( 1320 544 144 ) ( 1320 544 152 ) ( 1664 544 -8 ) bricks/b_mf_v2 0 -31 -180 1 -1 0 0 0 +( 1320 558 152 ) ( 1320 555 144 ) ( 1664 555 -16 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1320 555 144 ) ( 1320 544 144 ) ( 1664 544 -16 ) bricks/b_mf_v2 -95 0 90 1 1 0 0 0 +( 1320 544 152 ) ( 1320 558 152 ) ( 1664 558 -8 ) bricks/b_mf_v2 -95 0 90 1 1 0 0 0 +( 1344 688 -16 ) ( 1344 712 -16 ) ( 1344 700 152 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +} +// brush 935 +{ +( 1344 553 117 ) ( 1344 544 117 ) ( 1664 544 -32 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1664 288 96 ) ( 1664 752 96 ) ( 1664 752 -32 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1320 544 128 ) ( 1320 544 136 ) ( 1664 544 -24 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1320 553 136 ) ( 1320 553 128 ) ( 1664 553 -32 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1320 544 136 ) ( 1320 553 136 ) ( 1664 553 -24 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1344 544 117 ) ( 1344 553 117 ) ( 1344 553 125 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +} +// brush 936 +{ +( 1664 288 96 ) ( 1664 752 96 ) ( 1664 752 -32 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1320 544 136 ) ( 1320 544 144 ) ( 1664 544 -16 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1320 555 144 ) ( 1320 553 136 ) ( 1664 553 -24 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1320 553 136 ) ( 1320 544 136 ) ( 1664 544 -24 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1320 544 144 ) ( 1320 555 144 ) ( 1664 555 -16 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1344 688 -24 ) ( 1344 712 -24 ) ( 1344 700 144 ) bricks/b_sr_24 -32 -12 0 1 1 0 0 0 +} +// brush 937 +{ +( 1344 512 117 ) ( 1344 553 117 ) ( 1664 553 -32 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1599 553 -128 ) ( 1615 553 -128 ) ( 1607 553 0 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1664 512 -128 ) ( 1648 512 -128 ) ( 1656 512 0 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1664 553 -32 ) ( 1632 553 -32 ) ( 1648 512 -32 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1344 553 117 ) ( 1344 512 117 ) ( 1344 512 -32 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +} +// brush 938 +{ +( 1352 544 181 ) ( 1352 672 181 ) ( 1344 672 181 ) bricks/b_sr_20 -32 21 90 1 1 0 0 0 +( 1344 672 184 ) ( 1344 544 184 ) ( 1344 544 112 ) bricks/b_sr_20 -32 -12 0 1 1 0 0 0 +( 1344 544 256 ) ( 1352 544 256 ) ( 1352 544 184 ) bricks/b_sr_20 32 -73 -180 1 -1 0 0 0 +( 1352 672 181 ) ( 1352 544 181 ) ( 1352 544 224 ) bricks/b_sr_20 -32 -74 0 1 1 0 0 0 +( 1352 672 256 ) ( 1344 672 256 ) ( 1344 672 184 ) bricks/b_sr_20 32 -73 -180 1 -1 0 0 0 +( 1344 648 224 ) ( 1344 672 224 ) ( 1352 660 224 ) bricks/b_sr_20 -32 21 90 1 1 0 0 0 +} +// brush 939 +{ +( 1216 704 224 ) ( 960 704 224 ) ( 960 512 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 960 512 232 ) ( 960 704 232 ) ( 1216 704 232 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +( 960 512 232 ) ( 1216 512 232 ) ( 1216 512 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1352 512 232 ) ( 1352 704 232 ) ( 1352 704 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1216 704 232 ) ( 960 704 232 ) ( 960 704 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1184 704 232 ) ( 1184 512 232 ) ( 1184 512 224 ) metals/mt_sr_b1a 0 38 0 1 1 0 0 0 +} +// brush 940 +{ +( 1216 512 80 ) ( 976 512 80 ) ( 976 496 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 976 496 224 ) ( 976 512 224 ) ( 1216 512 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 976 496 224 ) ( 1216 496 224 ) ( 1216 496 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1344 496 224 ) ( 1344 512 224 ) ( 1344 512 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1216 512 224 ) ( 976 512 224 ) ( 976 512 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 976 512 224 ) ( 976 496 224 ) ( 976 496 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 941 +{ +( 1216 512 32 ) ( 976 512 32 ) ( 976 496 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 976 496 80 ) ( 976 512 80 ) ( 1216 512 80 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 976 496 80 ) ( 1216 496 80 ) ( 1216 496 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1344 496 80 ) ( 1344 512 80 ) ( 1344 512 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1216 512 80 ) ( 976 512 80 ) ( 976 512 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 976 512 80 ) ( 976 496 80 ) ( 976 496 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +} +// brush 942 +{ +( 1216 576 0 ) ( 960 576 0 ) ( 960 512 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 960 512 32 ) ( 960 576 32 ) ( 1216 576 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 960 512 32 ) ( 1216 512 32 ) ( 1216 512 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 1344 512 32 ) ( 1344 576 32 ) ( 1344 576 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 1344 576 32 ) ( 1088 576 32 ) ( 1088 576 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 960 576 32 ) ( 960 512 32 ) ( 960 512 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +} +// brush 943 +{ +( 960 576 0 ) ( 896 576 0 ) ( 896 512 0 ) bricks/c_sr_m8e 0 0 90 1 1 0 0 0 +( 896 512 32 ) ( 896 576 32 ) ( 960 576 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 960 512 32 ) ( 960 576 32 ) ( 960 576 0 ) bricks/c_sr_m8e 0 0 90 1 1 0 0 0 +( 960 576 32 ) ( 896 576 32 ) ( 896 576 0 ) bricks/c_sr_m8e 0 0 90 1 1 0 0 0 +( 960 512 0 ) ( 896 576 0 ) ( 928 544 32 ) bricks/c_sr_m8e 0 0 90 1 1 0 0 0 +} +// brush 944 +{ +( 960 640 0 ) ( 896 640 0 ) ( 896 576 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 896 576 32 ) ( 896 640 32 ) ( 960 640 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1024 576 32 ) ( 1088 576 32 ) ( 1088 576 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1344 584 32 ) ( 1344 648 32 ) ( 1344 648 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1088 640 32 ) ( 1024 640 32 ) ( 1024 640 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 896 640 32 ) ( 896 576 32 ) ( 896 576 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +} +// brush 945 +{ +( 832 192 0 ) ( 768 192 0 ) ( 768 0 0 ) bricks/c_sr_m8e 0 0 270 1 1 0 0 0 +( 768 0 32 ) ( 768 192 32 ) ( 832 192 32 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 784 -64 32 ) ( 848 -64 32 ) ( 848 -64 0 ) bricks/c_sr_m8e 0 0 270 1 1 0 0 0 +( 832 128 32 ) ( 832 320 32 ) ( 832 320 0 ) bricks/c_sr_m8e 0 0 270 1 1 0 0 0 +( 768 192 32 ) ( 768 0 32 ) ( 768 0 0 ) bricks/c_sr_m8e 0 0 270 1 1 0 0 0 +( 768 704 0 ) ( 832 640 0 ) ( 800 672 32 ) bricks/c_sr_m8e 0 0 270 1 1 0 0 0 +} +// brush 946 +{ +( 720 128 32 ) ( 712 128 32 ) ( 712 124 32 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 712 124 160 ) ( 712 128 160 ) ( 720 128 160 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 712 124 64 ) ( 720 124 64 ) ( 720 124 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 720 124 64 ) ( 720 128 64 ) ( 720 128 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 720 128 64 ) ( 712 128 64 ) ( 712 128 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 716 128 64 ) ( 716 124 64 ) ( 716 124 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +} +// brush 947 +{ +( 744 128 32 ) ( 736 128 32 ) ( 736 124 32 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 736 124 160 ) ( 736 128 160 ) ( 744 128 160 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 736 124 64 ) ( 744 124 64 ) ( 744 124 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 740 124 64 ) ( 740 128 64 ) ( 740 128 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 744 128 64 ) ( 736 128 64 ) ( 736 128 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 736 128 64 ) ( 736 124 64 ) ( 736 124 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +} +// brush 948 +{ +( 744 4 32 ) ( 736 4 32 ) ( 736 0 32 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 736 0 160 ) ( 736 4 160 ) ( 744 4 160 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 736 0 64 ) ( 744 0 64 ) ( 744 0 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 740 0 64 ) ( 740 4 64 ) ( 740 4 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 744 4 64 ) ( 736 4 64 ) ( 736 4 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 736 4 64 ) ( 736 0 64 ) ( 736 0 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +} +// brush 949 +{ +( 720 4 32 ) ( 712 4 32 ) ( 712 0 32 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 712 0 160 ) ( 712 4 160 ) ( 720 4 160 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 712 0 64 ) ( 720 0 64 ) ( 720 0 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 720 0 64 ) ( 720 4 64 ) ( 720 4 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 720 4 64 ) ( 712 4 64 ) ( 712 4 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 716 4 64 ) ( 716 0 64 ) ( 716 0 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +} +// brush 950 +{ +( 720 48 156 ) ( 712 48 156 ) ( 712 4 156 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 712 4 160 ) ( 712 48 160 ) ( 720 48 160 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 712 4 160 ) ( 720 4 160 ) ( 720 4 32 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 720 4 160 ) ( 720 48 160 ) ( 720 48 32 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 720 124 160 ) ( 712 124 160 ) ( 712 124 32 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 716 48 160 ) ( 716 4 160 ) ( 716 4 32 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +} +// brush 951 +{ +( 744 48 156 ) ( 736 48 156 ) ( 736 4 156 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 736 4 160 ) ( 736 48 160 ) ( 744 48 160 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 736 4 160 ) ( 744 4 160 ) ( 744 4 32 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 740 4 160 ) ( 740 48 160 ) ( 740 48 32 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 744 124 160 ) ( 736 124 160 ) ( 736 124 32 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 736 48 160 ) ( 736 4 160 ) ( 736 4 32 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +} +// brush 952 +{ +( 768 320 80 ) ( 752 320 80 ) ( 752 192 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 752 192 224 ) ( 752 320 224 ) ( 768 320 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 752 192 224 ) ( 768 192 224 ) ( 768 192 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 768 192 224 ) ( 768 320 224 ) ( 768 320 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 760 720 224 ) ( 744 720 224 ) ( 744 720 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 752 320 224 ) ( 752 192 224 ) ( 752 192 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 953 +{ +( 768 320 32 ) ( 752 320 32 ) ( 752 192 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 752 192 80 ) ( 752 320 80 ) ( 768 320 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 752 192 80 ) ( 768 192 80 ) ( 768 192 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 768 192 80 ) ( 768 320 80 ) ( 768 320 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 760 720 80 ) ( 744 720 80 ) ( 744 720 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 752 320 80 ) ( 752 192 80 ) ( 752 192 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 954 +{ +( 976 192 80 ) ( 960 192 80 ) ( 960 -80 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 960 -80 224 ) ( 960 192 224 ) ( 976 192 224 ) metals/m_pv_v5 0 0 90 1 1 0 0 0 +( 960 -120 224 ) ( 976 -120 224 ) ( 976 -120 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 976 -80 224 ) ( 976 192 224 ) ( 976 192 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 960 512 224 ) ( 944 512 224 ) ( 944 512 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 960 192 224 ) ( 960 -80 224 ) ( 960 -80 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 955 +{ +( 976 192 32 ) ( 960 192 32 ) ( 960 -80 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 960 -80 80 ) ( 960 192 80 ) ( 976 192 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 960 -120 80 ) ( 976 -120 80 ) ( 976 -120 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 976 -80 80 ) ( 976 192 80 ) ( 976 192 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 960 512 80 ) ( 944 512 80 ) ( 944 512 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 960 192 80 ) ( 960 -80 80 ) ( 960 -80 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +} +// brush 956 +{ +( 960 56 224 ) ( 768 56 224 ) ( 768 -64 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 768 -64 232 ) ( 768 56 232 ) ( 960 56 232 ) metals/mt_sr_b1a 0 0 0 1 1 0 16777216 0 +( 800 -120 232 ) ( 992 -120 232 ) ( 992 -120 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 960 512 232 ) ( 960 512 224 ) ( 960 -120 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 960 512 224 ) ( 960 512 232 ) ( 768 704 232 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 768 56 232 ) ( 768 -64 232 ) ( 768 -64 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +} +// brush 957 +{ +( 960 192 0 ) ( 896 192 0 ) ( 896 -64 0 ) bricks/c_sr_m8e 0 0 90 1 1 0 0 0 +( 896 -64 32 ) ( 896 192 32 ) ( 960 192 32 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 896 -64 32 ) ( 960 -64 32 ) ( 960 -64 0 ) bricks/c_sr_m8e 0 0 90 1 1 0 0 0 +( 960 -64 32 ) ( 960 192 32 ) ( 960 192 0 ) bricks/c_sr_m8e 0 0 90 1 1 0 0 0 +( 896 576 32 ) ( 896 576 0 ) ( 960 512 0 ) bricks/c_sr_m8e 0 0 90 1 1 0 0 0 +( 896 576 0 ) ( 896 576 32 ) ( 896 -120 32 ) bricks/c_sr_m8e 0 0 90 1 1 0 0 0 +} +// brush 958 +{ +( 896 192 0 ) ( 832 192 0 ) ( 832 -64 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 832 -64 32 ) ( 832 192 32 ) ( 896 192 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 832 -64 32 ) ( 896 -64 32 ) ( 896 -64 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 896 64 32 ) ( 896 320 32 ) ( 896 320 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 904 640 32 ) ( 840 640 32 ) ( 840 640 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 832 320 32 ) ( 832 64 32 ) ( 832 64 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +} +// brush 959 +{ +( 768 192 80 ) ( 736 192 80 ) ( 736 128 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 736 128 224 ) ( 736 192 224 ) ( 768 192 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 736 128 224 ) ( 768 128 224 ) ( 768 128 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 768 128 224 ) ( 768 192 224 ) ( 768 192 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 768 192 224 ) ( 736 192 224 ) ( 736 192 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 736 192 224 ) ( 736 128 224 ) ( 736 128 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 960 +{ +( 760 192 32 ) ( 736 192 32 ) ( 736 104 32 ) bricks/c_pv_m2 56 32 0 1 1 0 0 0 +( 736 104 80 ) ( 736 192 80 ) ( 760 192 80 ) bricks/c_pv_m2 56 32 0 1 1 0 0 0 +( 736 128 80 ) ( 760 128 80 ) ( 760 128 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 768 104 80 ) ( 768 192 80 ) ( 768 192 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 760 192 80 ) ( 736 192 80 ) ( 736 192 32 ) bricks/c_pv_m2 56 32 0 1 1 0 0 0 +( 736 192 80 ) ( 736 104 80 ) ( 736 104 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 961 +{ +( 896 256 0 ) ( 720 256 0 ) ( 720 -40 0 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +( 720 -40 32 ) ( 720 256 32 ) ( 896 256 32 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +( 720 0 32 ) ( 896 0 32 ) ( 896 0 0 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +( 904 128 32 ) ( 728 128 32 ) ( 728 128 0 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +( 720 256 32 ) ( 720 -40 32 ) ( 720 -40 0 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +( 736 128 0 ) ( 736 112 0 ) ( 736 120 32 ) metals/mt_pv_m16k 0 0 0 1 1 0 8388608 0 +} +// brush 962 +{ +( 896 256 0 ) ( 720 256 0 ) ( 720 -40 0 ) bricks/c_sr_m2 -240 63 90 1 1 0 0 0 +( 720 -40 32 ) ( 720 256 32 ) ( 896 256 32 ) bricks/c_sr_m2 144 64 270 1 1 0 0 0 +( 720 0 32 ) ( 896 0 32 ) ( 896 0 0 ) bricks/c_sr_m2 144 64 90 1 1 0 0 0 +( 904 128 32 ) ( 728 128 32 ) ( 728 128 0 ) bricks/c_sr_m2 144 64 90 1 1 0 0 0 +( 736 112 0 ) ( 736 128 0 ) ( 736 120 32 ) bricks/c_sr_m2 144 -64 90 1 1 0 0 0 +( 744 128 0 ) ( 744 112 0 ) ( 744 120 32 ) bricks/c_sr_m2 144 -64 90 1 1 0 0 0 +} +// brush 963 +{ +( 896 256 0 ) ( 720 256 0 ) ( 720 -40 0 ) bricks/c_sr_m2 -240 63 90 1 1 0 0 0 +( 720 -40 32 ) ( 720 256 32 ) ( 896 256 32 ) bricks/c_sr_m2 144 64 270 1 1 0 0 0 +( 720 0 32 ) ( 896 0 32 ) ( 896 0 0 ) bricks/c_sr_m2 144 64 90 1 1 0 0 0 +( 768 -40 32 ) ( 768 256 32 ) ( 768 256 0 ) bricks/c_sr_m2 144 -64 90 1 1 0 0 0 +( 904 128 32 ) ( 728 128 32 ) ( 728 128 0 ) bricks/c_sr_m2 144 64 90 1 1 0 0 0 +( 744 112 0 ) ( 744 128 0 ) ( 744 120 32 ) bricks/c_sr_m2 144 -64 90 1 1 0 0 0 +} +// brush 964 +{ +( 736 192 32 ) ( 720 192 32 ) ( 720 128 32 ) metals/mt_pv_m16k 0 0 0 1 1 0 8390656 0 +( 720 128 160 ) ( 720 192 160 ) ( 736 192 160 ) metals/mt_pv_m16k 0 0 0 1 1 0 8390656 0 +( 720 128 160 ) ( 736 128 160 ) ( 736 128 32 ) metals/mt_pv_m16k 0 0 0 1 1 0 8390656 0 +( 736 128 160 ) ( 736 192 160 ) ( 736 192 32 ) metals/mt_pv_m16k 0 0 0 1 1 0 8390656 0 +( 736 192 160 ) ( 720 192 160 ) ( 720 192 32 ) metals/mt_pv_m16k 0 0 0 1 1 0 8390656 0 +( 720 192 160 ) ( 720 128 160 ) ( 720 128 32 ) metals/mt_pv_m16k 0 0 0 1 1 0 8390656 0 +} +// brush 965 +{ +( 784 128 160 ) ( 720 128 160 ) ( 720 0 160 ) bricks/b_mf_v5 0 -1 90 1 1 0 0 0 +( 720 0 224 ) ( 720 128 224 ) ( 784 128 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 720 0 224 ) ( 784 0 224 ) ( 784 0 160 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 768 0 224 ) ( 768 128 224 ) ( 768 128 160 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 784 128 224 ) ( 720 128 224 ) ( 720 128 160 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 720 128 224 ) ( 720 0 224 ) ( 720 0 160 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 966 +{ +( -808 1664 512 ) ( -960 1664 512 ) ( -960 1536 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -960 1536 528 ) ( -960 1664 528 ) ( -808 1664 528 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -960 1536 528 ) ( -808 1536 528 ) ( -808 1536 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -808 1536 528 ) ( -808 1664 528 ) ( -808 1664 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -808 1664 528 ) ( -960 1664 528 ) ( -960 1664 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -960 1664 528 ) ( -960 1536 528 ) ( -960 1536 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +} +// brush 967 +{ +( -832 1664 256 ) ( -944 1664 256 ) ( -944 1552 256 ) bricks/b_sr_23 72 32 -180 1 -1 0 0 0 +( -944 1552 320 ) ( -944 1664 320 ) ( -832 1664 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -944 1552 320 ) ( -832 1552 320 ) ( -832 1552 256 ) bricks/b_sr_23 72 32 -180 1 -1 0 0 0 +( -832 1552 320 ) ( -832 1664 320 ) ( -832 1664 256 ) bricks/b_sr_23 72 32 -180 1 -1 0 0 0 +( -832 1664 320 ) ( -944 1664 320 ) ( -944 1664 256 ) bricks/b_sr_23 72 32 -180 1 -1 0 0 0 +( -944 1664 320 ) ( -944 1552 320 ) ( -944 1552 256 ) bricks/b_sr_23 72 32 -180 1 -1 0 0 0 +} +// brush 968 +{ +( -832 1680 320 ) ( -944 1680 320 ) ( -944 1664 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -944 1664 512 ) ( -944 1680 512 ) ( -832 1680 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -960 1664 320 ) ( -960 1664 512 ) ( -832 1552 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -816 1552 512 ) ( -816 1552 320 ) ( -832 1552 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -944 1664 512 ) ( -944 1664 320 ) ( -816 1552 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -944 1664 320 ) ( -944 1664 512 ) ( -960 1664 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 969 +{ +( -1180 1807 0 ) ( -1182 1807 0 ) ( -1183 1792 0 ) sprites/fenc_ms 0 12 0 0.250000 0.250000 536871040 4096 0 +( -1182 1807 128 ) ( -1180 1807 128 ) ( -1181 1792 128 ) sprites/fenc_ms 0 12 0 0.250000 0.250000 128 4096 0 +( -1180 1808 128 ) ( -1180 1808 0 ) ( -1181 1792 0 ) sprites/fenc_ms 0 12 0 0.250000 0.250000 128 8392704 0 +( -1182 1808 0 ) ( -1182 1808 128 ) ( -1183 1792 128 ) sprites/fenc_ms 0 12 0 0.250000 0.250000 128 8392704 0 +( -1176 1792 0 ) ( -1186 1792 0 ) ( -1181 1792 128 ) props/pawn_s1 32 0 0 1 1 128 4096 0 +( -1182 1807 0 ) ( -1180 1807 0 ) ( -1180 1807 128 ) props/pawn_s1 32 0 0 1 1 128 4096 0 +} +// brush 970 +{ +( 1890 2114 -15 ) ( 1886 2114 -15 ) ( 1886 2110 -15 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1886 2111 -12 ) ( 1890 2111 -12 ) ( 1890 2111 -16 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1887 2111 -7 ) ( 1887 2113 -7 ) ( 1889 2113 -15 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1890 2113 -12 ) ( 1886 2113 -12 ) ( 1886 2113 -16 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1885 2113 -7 ) ( 1885 2111 -7 ) ( 1887 2111 -15 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1887 2113 -7 ) ( 1887 2111 -7 ) ( 1885 2111 -7 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 971 +{ +( 1889 2113 8 ) ( 1889 2111 8 ) ( 1887 2111 8 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1886 2111 -12 ) ( 1890 2111 -12 ) ( 1890 2111 -16 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1889 2111 8 ) ( 1889 2113 8 ) ( 1887 2113 -7 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1890 2113 -12 ) ( 1886 2113 -12 ) ( 1886 2113 -16 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1887 2113 8 ) ( 1887 2111 8 ) ( 1885 2111 -7 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1887 2111 -7 ) ( 1887 2113 -7 ) ( 1885 2113 -7 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 972 +{ +( 1896 2120 8 ) ( 1880 2120 8 ) ( 1880 2104 8 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1880 2104 16 ) ( 1880 2120 16 ) ( 1896 2120 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1880 2104 16 ) ( 1896 2104 16 ) ( 1896 2104 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1896 2104 16 ) ( 1896 2120 16 ) ( 1896 2120 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1896 2120 16 ) ( 1880 2120 16 ) ( 1880 2120 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1880 2120 16 ) ( 1880 2104 16 ) ( 1880 2104 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 973 +{ +( -1680 3408 512 ) ( -2128 3408 512 ) ( -2128 3280 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -2128 3280 528 ) ( -2128 3408 528 ) ( -1680 3408 528 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -2120 2048 528 ) ( -1672 2048 528 ) ( -1672 2048 272 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -1536 3280 528 ) ( -1536 3408 528 ) ( -1536 3408 272 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -2304 3408 528 ) ( -2304 3280 528 ) ( -2304 3280 272 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -1576 2176 512 ) ( -1536 2176 512 ) ( -1556 2176 528 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +} +// brush 974 +{ +( -1680 3408 512 ) ( -2128 3408 512 ) ( -2128 3280 512 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( -2128 3280 528 ) ( -2128 3408 528 ) ( -1680 3408 528 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( -1536 3280 528 ) ( -1536 3408 528 ) ( -1536 3408 272 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( -2304 3408 528 ) ( -2304 3280 528 ) ( -2304 3280 272 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( -2128 3008 512 ) ( -2104 3008 512 ) ( -2116 3008 528 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( -1536 2176 512 ) ( -1576 2176 512 ) ( -1556 2176 528 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +} +// brush 975 +{ +( 624 1520 256 ) ( 1088 1520 256 ) ( 1088 1520 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1088 1536 256 ) ( 624 1536 256 ) ( 624 1536 128 ) bricks/b_sr_20 0 8 0 1 1 0 0 0 +( 1088 1536 128 ) ( 1088 1512 128 ) ( 1088 1524 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 896 1520 176 ) ( 896 1520 128 ) ( 896 1536 152 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 896 1520 192 ) ( 960 1520 192 ) ( 928 1536 192 ) bricks/b_sr_20 0 8 0 1 1 0 0 0 +( 904 1520 224 ) ( 896 1520 224 ) ( 900 1536 224 ) metals/mt_pv_m14 0 0 0 1 1 0 0 0 +} +// brush 976 +{ +( 624 1520 256 ) ( 624 1536 256 ) ( 1088 1536 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 624 1520 256 ) ( 1088 1520 256 ) ( 1088 1520 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1088 1536 256 ) ( 624 1536 256 ) ( 624 1536 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1088 1536 128 ) ( 1088 1512 128 ) ( 1088 1524 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 896 1520 176 ) ( 896 1520 128 ) ( 896 1536 152 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 896 1520 224 ) ( 904 1520 224 ) ( 900 1536 224 ) props2/sail_v -8 0 0 1 1 0 2097152 0 +} +// brush 977 +{ +( 656 2176 8 ) ( 640 2176 8 ) ( 640 2064 8 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 640 2064 128 ) ( 640 2176 128 ) ( 656 2176 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 656 2056 120 ) ( 656 2168 120 ) ( 656 2168 -8 ) bricks/c_pv_m2pp 0 0 0 1 1 0 0 0 +( 640 2176 128 ) ( 640 2064 128 ) ( 640 2064 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 632 2656 8 ) ( 664 2656 8 ) ( 648 2656 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 656 2576 8 ) ( 640 2576 8 ) ( 648 2576 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 978 +{ +( 656 2176 8 ) ( 640 2176 8 ) ( 640 2064 8 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 640 2064 128 ) ( 640 2176 128 ) ( 656 2176 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 656 2056 120 ) ( 656 2168 120 ) ( 656 2168 -8 ) bricks/c_pv_m2pp 0 0 0 1 1 0 0 0 +( 640 2176 128 ) ( 640 2064 128 ) ( 640 2064 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 656 2560 -8 ) ( 640 2560 -8 ) ( 648 2560 120 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 640 2576 8 ) ( 656 2576 8 ) ( 648 2576 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 979 +{ +( 656 2176 8 ) ( 640 2176 8 ) ( 640 2064 8 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 640 2064 128 ) ( 640 2176 128 ) ( 656 2176 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 656 2056 120 ) ( 656 2168 120 ) ( 656 2168 -8 ) bricks/c_pv_m2pp 0 0 0 1 1 0 0 0 +( 640 2176 128 ) ( 640 2064 128 ) ( 640 2064 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 632 2688 -8 ) ( 672 2688 -8 ) ( 652 2688 120 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 664 2656 8 ) ( 632 2656 8 ) ( 648 2656 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 980 +{ +( 256 2944 0 ) ( 256 2960 0 ) ( 144 2960 0 ) bricks/c_pv_m2gg 66 0 0 1 1 0 0 0 +( 144 2960 128 ) ( 256 2960 128 ) ( 256 2944 128 ) bricks/c_pv_m2gg 66 0 0 1 1 0 0 0 +( 256 3456 128 ) ( 144 3456 128 ) ( 144 3456 0 ) bricks/c_pv_m2gg 66 0 0 1 1 0 0 0 +( 896 3088 0 ) ( 896 3184 0 ) ( 896 3136 128 ) bricks/c_pv_m2gg 66 0 0 1 1 0 0 0 +( 1024 2968 0 ) ( 1024 2936 0 ) ( 1024 2952 128 ) bricks/c_pv_m2gg 66 0 0 1 1 0 0 0 +( 976 3136 0 ) ( 912 3136 0 ) ( 944 3136 128 ) bricks/c_pv_m2gg 66 0 0 1 1 0 0 0 +} +// brush 981 +{ +( 256 2944 0 ) ( 256 2960 0 ) ( 144 2960 0 ) bricks/c_pv_m2pp 64 0 0 1 1 0 0 0 +( 144 2960 128 ) ( 256 2960 128 ) ( 256 2944 128 ) bricks/c_pv_m2pp 64 0 0 1 1 0 0 0 +( 896 3088 0 ) ( 896 3184 0 ) ( 896 3136 128 ) bricks/c_pv_m2pp 64 0 0 1 1 0 0 0 +( 1024 2968 0 ) ( 1024 2936 0 ) ( 1024 2952 128 ) bricks/c_pv_m2pp 66 0 0 1 1 0 0 0 +( 1032 3008 0 ) ( 896 3008 0 ) ( 964 3008 128 ) bricks/c_pv_m2pp 64 0 0 1 1 0 0 0 +( 896 3136 0 ) ( 960 3136 0 ) ( 928 3136 128 ) bricks/c_pv_m2pp 64 0 0 1 1 0 0 0 +} +// brush 982 +{ +( 256 2944 0 ) ( 256 2960 0 ) ( 144 2960 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 144 2960 128 ) ( 256 2960 128 ) ( 256 2944 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 136 2944 128 ) ( 248 2944 128 ) ( 248 2944 0 ) bricks/c_pv_m2gg 0 0 0 1 1 0 0 0 +( 896 3088 0 ) ( 896 3184 0 ) ( 896 3136 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1024 2968 0 ) ( 1024 2936 0 ) ( 1024 2952 128 ) bricks/c_pv_m2gg 66 0 0 1 1 0 0 0 +( 896 3008 0 ) ( 1032 3008 0 ) ( 964 3008 128 ) bricks/c_pv_m2pp 0 0 0 1 1 0 0 0 +} +// brush 983 +{ +( 384 1728 0 ) ( 144 1728 0 ) ( 144 1712 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 144 1712 128 ) ( 144 1728 128 ) ( 384 1728 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 144 1712 128 ) ( 384 1712 128 ) ( 384 1712 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 384 1728 128 ) ( 144 1728 128 ) ( 144 1728 0 ) bricks/c_pv_m2gg 0 0 0 1 1 0 0 0 +( 640 1728 0 ) ( 640 1720 0 ) ( 640 1724 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 448 1712 0 ) ( 448 1728 0 ) ( 448 1720 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 984 +{ +( 384 1728 0 ) ( 144 1728 0 ) ( 144 1712 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 144 1712 128 ) ( 144 1728 128 ) ( 384 1728 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 144 1712 128 ) ( 384 1712 128 ) ( 384 1712 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 384 1728 128 ) ( 144 1728 128 ) ( 144 1728 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 144 1728 128 ) ( 144 1712 128 ) ( 144 1712 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 448 1728 0 ) ( 448 1712 0 ) ( 448 1720 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 985 +{ +( -1168 2240 0 ) ( -1184 2240 0 ) ( -1184 1976 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1180 1954 128 ) ( -1184 1954 128 ) ( -1188 2048 128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1180 1952 128 ) ( -1184 2048 128 ) ( -1180 2048 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1188 2048 128 ) ( -1184 1952 128 ) ( -1180 1952 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1184 1954 128 ) ( -1180 1954 128 ) ( -1176 1952 0 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +( -1186 2048 0 ) ( -1176 2048 0 ) ( -1181 2048 128 ) metals/mt_pv_m7m 2 0 0 1 1 0 16777216 0 +} +// brush 986 +{ +( -290 -336 264 ) ( -290 -336 392 ) ( -298 -338 392 ) metals/mt_pv_m26y -7 -16 -180 1 -1 0 0 0 +( -282 -339 264 ) ( -282 -339 392 ) ( -287 -333 392 ) metals/mt_pv_m26y -7 -16 -180 1 -1 0 0 0 +( -282 -349 264 ) ( -282 -349 392 ) ( -277 -343 392 ) metals/mt_pv_m26y -7 -16 -180 1 -1 0 0 0 +( -290 -352 264 ) ( -290 -352 392 ) ( -282 -354 392 ) metals/mt_pv_m26y -7 -16 -180 1 -1 0 0 0 +( -296 -344 264 ) ( -296 -344 392 ) ( -296 -352 392 ) metals/mt_pv_m26y -7 -16 -180 1 -1 0 0 0 +( -280 -336 264 ) ( -296 -336 264 ) ( -296 -352 264 ) metals/mt_pv_m26y -8 -15 -180 1 1 0 0 0 +( -296 -352 352 ) ( -296 -336 352 ) ( -280 -336 352 ) metals/mt_pv_m26y -8 -15 -180 1 1 0 0 0 +} +// brush 987 +{ +( 1128 1528 81 ) ( 936 1528 81 ) ( 936 1520 81 ) props/pawn_s1 134 -98 0 4 4 134217856 4096 0 +( 936 1520 144 ) ( 936 1528 144 ) ( 1128 1528 144 ) props/pawn_s1 134 -98 0 4 4 134217856 4096 0 +( 936 1520 208 ) ( 1128 1520 208 ) ( 1128 1520 80 ) props/pawn_s1 40 16 0 -1 1 134217856 4096 0 +( 1064 1512 208 ) ( 1064 1520 208 ) ( 1064 1520 80 ) props/pawn_s1 115 16 0 -1 1 134217856 4096 0 +( 1128 1522 208 ) ( 936 1522 208 ) ( 936 1522 80 ) props/pawn_s1 40 16 0 -1 1 134217856 4097 200 +( 936 1528 208 ) ( 936 1520 208 ) ( 936 1520 80 ) props/pawn_s1 115 16 0 -1 1 134217856 4096 0 +} +// brush 988 +{ +( 1680 -272 304 ) ( 1664 -272 304 ) ( 1664 -296 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 2176 -272 320 ) ( 2176 -296 320 ) ( 2160 -296 312 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 1664 -300 432 ) ( 1680 -300 432 ) ( 1680 -300 304 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 0 0 +( 2176 -296 320 ) ( 2176 -272 320 ) ( 2176 -272 304 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 0 0 +( 1680 -276 432 ) ( 1664 -276 432 ) ( 1664 -276 304 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 0 0 +( 2160 -672 304 ) ( 2160 -656 304 ) ( 2160 -664 312 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 0 0 +} +// brush 989 +{ +( 1680 -272 304 ) ( 1664 -272 304 ) ( 1664 -296 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -296 312 ) ( 1664 -272 312 ) ( 1680 -272 312 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1664 -300 432 ) ( 1680 -300 432 ) ( 1680 -300 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -276 432 ) ( 1664 -276 432 ) ( 1664 -276 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -680 304 ) ( 1680 -656 304 ) ( 1680 -668 312 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2160 -656 304 ) ( 2160 -672 304 ) ( 2160 -664 312 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 990 +{ +( 2176 -296 256 ) ( 2176 -272 256 ) ( 2160 -272 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 1664 -296 272 ) ( 1664 -272 272 ) ( 1680 -272 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 1664 -300 392 ) ( 1680 -300 392 ) ( 1680 -300 264 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 0 0 +( 2176 -272 256 ) ( 2176 -296 256 ) ( 2176 -296 272 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 0 0 +( 1680 -276 392 ) ( 1664 -276 392 ) ( 1664 -276 264 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 0 0 +( 2160 -672 264 ) ( 2160 -656 264 ) ( 2160 -664 272 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 0 0 +} +// brush 991 +{ +( 1680 -272 264 ) ( 1664 -272 264 ) ( 1664 -296 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -296 272 ) ( 1664 -272 272 ) ( 1680 -272 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -300 392 ) ( 1680 -300 392 ) ( 1680 -300 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -276 392 ) ( 1664 -276 392 ) ( 1664 -276 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -680 264 ) ( 1680 -656 264 ) ( 1680 -668 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2160 -656 264 ) ( 2160 -672 264 ) ( 2160 -664 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 992 +{ +( 2176 -492 256 ) ( 2176 -468 256 ) ( 2160 -468 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -488 272 ) ( 1664 -464 272 ) ( 1680 -464 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -492 392 ) ( 1680 -492 392 ) ( 1680 -492 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2176 -468 256 ) ( 2176 -492 256 ) ( 2176 -492 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -468 392 ) ( 1664 -468 392 ) ( 1664 -468 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2160 -672 264 ) ( 2160 -656 264 ) ( 2160 -664 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 993 +{ +( 1680 -464 264 ) ( 1664 -464 264 ) ( 1664 -488 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -488 272 ) ( 1664 -464 272 ) ( 1680 -464 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -492 392 ) ( 1680 -492 392 ) ( 1680 -492 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -468 392 ) ( 1664 -468 392 ) ( 1664 -468 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -680 264 ) ( 1680 -656 264 ) ( 1680 -668 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2160 -656 264 ) ( 2160 -672 264 ) ( 2160 -664 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 994 +{ +( 1680 -464 304 ) ( 1664 -464 304 ) ( 1664 -488 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2176 -464 320 ) ( 2176 -488 320 ) ( 2160 -488 312 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -492 432 ) ( 1680 -492 432 ) ( 1680 -492 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2176 -488 320 ) ( 2176 -464 320 ) ( 2176 -464 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -468 432 ) ( 1664 -468 432 ) ( 1664 -468 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2160 -672 304 ) ( 2160 -656 304 ) ( 2160 -664 312 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 995 +{ +( 1680 -464 304 ) ( 1664 -464 304 ) ( 1664 -488 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -488 312 ) ( 1664 -464 312 ) ( 1680 -464 312 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1664 -492 432 ) ( 1680 -492 432 ) ( 1680 -492 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -468 432 ) ( 1664 -468 432 ) ( 1664 -468 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -680 304 ) ( 1680 -656 304 ) ( 1680 -668 312 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2160 -656 304 ) ( 2160 -672 304 ) ( 2160 -664 312 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 996 +{ +( 2176 -680 256 ) ( 2176 -656 256 ) ( 2160 -656 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -680 272 ) ( 1664 -656 272 ) ( 1680 -656 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -684 392 ) ( 1680 -684 392 ) ( 1680 -684 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2176 -656 256 ) ( 2176 -680 256 ) ( 2176 -680 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -660 392 ) ( 1664 -660 392 ) ( 1664 -660 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2160 -672 264 ) ( 2160 -656 264 ) ( 2160 -664 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 997 +{ +( 1680 -656 264 ) ( 1664 -656 264 ) ( 1664 -680 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -680 272 ) ( 1664 -656 272 ) ( 1680 -656 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -684 392 ) ( 1680 -684 392 ) ( 1680 -684 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -660 392 ) ( 1664 -660 392 ) ( 1664 -660 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -680 264 ) ( 1680 -656 264 ) ( 1680 -668 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2160 -656 264 ) ( 2160 -672 264 ) ( 2160 -664 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 998 +{ +( 1680 -656 304 ) ( 1664 -656 304 ) ( 1664 -680 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2176 -656 320 ) ( 2176 -680 320 ) ( 2160 -680 312 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -684 432 ) ( 1680 -684 432 ) ( 1680 -684 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2176 -680 320 ) ( 2176 -656 320 ) ( 2176 -656 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -660 432 ) ( 1664 -660 432 ) ( 1664 -660 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2160 -672 304 ) ( 2160 -656 304 ) ( 2160 -664 312 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 999 +{ +( 1680 -656 304 ) ( 1664 -656 304 ) ( 1664 -680 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -680 312 ) ( 1664 -656 312 ) ( 1680 -656 312 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1664 -684 432 ) ( 1680 -684 432 ) ( 1680 -684 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -660 432 ) ( 1664 -660 432 ) ( 1664 -660 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -680 304 ) ( 1680 -656 304 ) ( 1680 -668 312 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2160 -656 304 ) ( 2160 -672 304 ) ( 2160 -664 312 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 1000 +{ +( 2176 -872 256 ) ( 2176 -848 256 ) ( 2160 -848 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -872 272 ) ( 1664 -848 272 ) ( 1680 -848 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -876 392 ) ( 1680 -876 392 ) ( 1680 -876 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2176 -848 256 ) ( 2176 -872 256 ) ( 2176 -872 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -852 392 ) ( 1664 -852 392 ) ( 1664 -852 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2160 -672 264 ) ( 2160 -656 264 ) ( 2160 -664 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 1001 +{ +( 1680 -848 264 ) ( 1664 -848 264 ) ( 1664 -872 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -872 272 ) ( 1664 -848 272 ) ( 1680 -848 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -876 392 ) ( 1680 -876 392 ) ( 1680 -876 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -852 392 ) ( 1664 -852 392 ) ( 1664 -852 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -680 264 ) ( 1680 -656 264 ) ( 1680 -668 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2160 -656 264 ) ( 2160 -672 264 ) ( 2160 -664 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 1002 +{ +( 1680 -848 304 ) ( 1664 -848 304 ) ( 1664 -872 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2176 -848 320 ) ( 2176 -872 320 ) ( 2160 -872 312 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -876 432 ) ( 1680 -876 432 ) ( 1680 -876 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2176 -872 320 ) ( 2176 -848 320 ) ( 2176 -848 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -852 432 ) ( 1664 -852 432 ) ( 1664 -852 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2160 -672 304 ) ( 2160 -656 304 ) ( 2160 -664 312 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 1003 +{ +( 1680 -848 304 ) ( 1664 -848 304 ) ( 1664 -872 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -872 312 ) ( 1664 -848 312 ) ( 1680 -848 312 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1664 -876 432 ) ( 1680 -876 432 ) ( 1680 -876 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -852 432 ) ( 1664 -852 432 ) ( 1664 -852 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -680 304 ) ( 1680 -656 304 ) ( 1680 -668 312 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2160 -656 304 ) ( 2160 -672 304 ) ( 2160 -664 312 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 1004 +{ +( 1664 -272 256 ) ( 1664 -296 256 ) ( 1680 -296 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 1664 -296 272 ) ( 1664 -272 272 ) ( 1680 -272 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 1664 -300 392 ) ( 1680 -300 392 ) ( 1680 -300 264 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 0 0 +( 1680 -276 392 ) ( 1664 -276 392 ) ( 1664 -276 264 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 0 0 +( 1664 -296 256 ) ( 1664 -272 256 ) ( 1664 -272 272 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 0 0 +( 1680 -656 264 ) ( 1680 -680 264 ) ( 1680 -668 272 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 0 0 +} +// brush 1005 +{ +( 1680 -272 304 ) ( 1664 -272 304 ) ( 1664 -296 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 1664 -296 320 ) ( 1664 -272 320 ) ( 1680 -272 312 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 1664 -300 432 ) ( 1680 -300 432 ) ( 1680 -300 304 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 0 0 +( 1680 -276 432 ) ( 1664 -276 432 ) ( 1664 -276 304 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 0 0 +( 1664 -272 320 ) ( 1664 -296 320 ) ( 1664 -296 304 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 0 0 +( 1680 -656 304 ) ( 1680 -680 304 ) ( 1680 -668 312 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 0 0 +} +// brush 1006 +{ +( 1680 -464 304 ) ( 1664 -464 304 ) ( 1664 -488 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -488 320 ) ( 1664 -464 320 ) ( 1680 -464 312 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -492 432 ) ( 1680 -492 432 ) ( 1680 -492 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -468 432 ) ( 1664 -468 432 ) ( 1664 -468 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -464 320 ) ( 1664 -488 320 ) ( 1664 -488 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -656 304 ) ( 1680 -680 304 ) ( 1680 -668 312 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 1007 +{ +( 1664 -464 256 ) ( 1664 -488 256 ) ( 1680 -488 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -488 272 ) ( 1664 -464 272 ) ( 1680 -464 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -492 392 ) ( 1680 -492 392 ) ( 1680 -492 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -468 392 ) ( 1664 -468 392 ) ( 1664 -468 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -488 256 ) ( 1664 -464 256 ) ( 1664 -464 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -656 264 ) ( 1680 -680 264 ) ( 1680 -668 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 1008 +{ +( 1664 -656 256 ) ( 1664 -680 256 ) ( 1680 -680 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -680 272 ) ( 1664 -656 272 ) ( 1680 -656 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -684 392 ) ( 1680 -684 392 ) ( 1680 -684 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -660 392 ) ( 1664 -660 392 ) ( 1664 -660 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -680 256 ) ( 1664 -656 256 ) ( 1664 -656 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -656 264 ) ( 1680 -680 264 ) ( 1680 -668 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 1009 +{ +( 1680 -656 304 ) ( 1664 -656 304 ) ( 1664 -680 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -680 320 ) ( 1664 -656 320 ) ( 1680 -656 312 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -684 432 ) ( 1680 -684 432 ) ( 1680 -684 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -660 432 ) ( 1664 -660 432 ) ( 1664 -660 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -656 320 ) ( 1664 -680 320 ) ( 1664 -680 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -656 304 ) ( 1680 -680 304 ) ( 1680 -668 312 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 1010 +{ +( 1664 -848 256 ) ( 1664 -872 256 ) ( 1680 -872 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -872 272 ) ( 1664 -848 272 ) ( 1680 -848 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -876 392 ) ( 1680 -876 392 ) ( 1680 -876 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -852 392 ) ( 1664 -852 392 ) ( 1664 -852 264 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -872 256 ) ( 1664 -848 256 ) ( 1664 -848 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -656 264 ) ( 1680 -680 264 ) ( 1680 -668 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 1011 +{ +( 1680 -848 304 ) ( 1664 -848 304 ) ( 1664 -872 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -872 320 ) ( 1664 -848 320 ) ( 1680 -848 312 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -876 432 ) ( 1680 -876 432 ) ( 1680 -876 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -852 432 ) ( 1664 -852 432 ) ( 1664 -852 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1664 -848 320 ) ( 1664 -872 320 ) ( 1664 -872 304 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 1680 -656 304 ) ( 1680 -680 304 ) ( 1680 -668 312 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 1012 +{ +( -576 -296 256 ) ( -576 -312 256 ) ( -576 -312 64 ) metals/mt_pv_m7m 0 0 0 1 1 0 0 0 +( -128 -304 64 ) ( -128 -320 64 ) ( -128 -312 256 ) props/w_sr_ba7b 0 32 0 0.500000 0.500000 0 1 100 +( -128 -640 176 ) ( -144 -640 176 ) ( -136 0 176 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -144 -640 144 ) ( -128 -640 144 ) ( -136 0 144 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -512 -384 144 ) ( -576 -384 144 ) ( -544 -384 176 ) bricks/b_mf_v2a 0 64 0 1 1 0 0 0 +( -152 -224 144 ) ( -128 -224 144 ) ( -140 -224 176 ) bricks/b_mf_v2a 0 64 0 1 1 0 0 0 +} +// brush 1013 +{ +( -576 -296 256 ) ( -576 -312 256 ) ( -576 -312 64 ) metals/mt_pv_m7m 0 0 0 1 1 0 0 0 +( -128 -304 64 ) ( -128 -320 64 ) ( -128 -312 256 ) props/w_sr_ba7b 0 32 0 0.500000 0.500000 0 1 150 +( -128 -640 176 ) ( -144 -640 176 ) ( -136 0 176 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -144 -640 144 ) ( -128 -640 144 ) ( -136 0 144 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -160 -160 144 ) ( -128 -160 144 ) ( -144 -160 176 ) bricks/b_mf_v2a 0 64 0 1 1 0 0 0 +( -128 -224 144 ) ( -152 -224 144 ) ( -140 -224 176 ) bricks/b_mf_v2a 0 64 0 1 1 0 0 0 +} +// brush 1014 +{ +( -576 -296 256 ) ( -576 -312 256 ) ( -576 -312 64 ) metals/mt_pv_m7m 0 0 0 1 1 0 0 0 +( -128 -304 64 ) ( -128 -320 64 ) ( -128 -312 256 ) props/w_sr_ba7b 0 32 0 0.500000 0.500000 0 1 200 +( -128 -640 176 ) ( -144 -640 176 ) ( -136 0 176 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -144 -640 144 ) ( -128 -640 144 ) ( -136 0 144 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -128 -160 144 ) ( -160 -160 144 ) ( -144 -160 176 ) bricks/b_mf_v2a 0 64 0 1 1 0 0 0 +( -160 -96 144 ) ( -128 -96 144 ) ( -144 -96 176 ) bricks/b_mf_v2a 0 64 0 1 1 0 0 0 +} +// brush 1015 +{ +( -576 -296 256 ) ( -576 -312 256 ) ( -576 -312 64 ) metals/mt_pv_m7m 0 0 0 1 1 0 0 0 +( -128 -304 64 ) ( -128 -320 64 ) ( -128 -312 256 ) props/w_sr_ba7b 0 32 0 0.500000 0.500000 0 1 300 +( -128 -640 176 ) ( -144 -640 176 ) ( -136 0 176 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -144 -640 144 ) ( -128 -640 144 ) ( -136 0 144 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -144 -32 64 ) ( -128 -32 64 ) ( -136 -32 144 ) bricks/b_mf_v2a 0 64 0 1 1 0 0 0 +( -128 -96 144 ) ( -160 -96 144 ) ( -144 -96 176 ) bricks/b_mf_v2a 0 64 0 1 1 0 0 0 +} +// brush 1016 +{ +( -80 16 8 ) ( -104 16 8 ) ( -104 0 8 ) bricks/s_sr_m12a -8 0 0 1 1 0 0 0 +( -104 0 24 ) ( -104 16 24 ) ( -80 16 24 ) bricks/s_sr_m12a -8 0 0 1 1 0 0 0 +( -104 0 72 ) ( -80 0 72 ) ( -80 0 8 ) common/li_sr_v27 0 8 0 1 1 0 1 25000 +( -80 0 72 ) ( -80 16 72 ) ( -80 16 8 ) bricks/s_sr_m12a -16 0 0 1 1 0 0 0 +( -80 16 72 ) ( -104 16 72 ) ( -104 16 8 ) bricks/s_sr_m12a -8 0 0 1 1 0 0 0 +( -96 16 72 ) ( -96 0 72 ) ( -96 0 8 ) bricks/s_sr_m12a -16 0 0 1 1 0 0 0 +} +// brush 1017 +{ +( -72 16 0 ) ( -96 16 0 ) ( -96 0 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -96 0 8 ) ( -96 16 8 ) ( -72 16 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -96 0 64 ) ( -72 0 64 ) ( -72 0 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -80 0 64 ) ( -80 16 64 ) ( -80 16 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -72 16 64 ) ( -96 16 64 ) ( -96 16 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -96 16 64 ) ( -96 0 64 ) ( -96 0 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 1018 +{ +( -72 16 24 ) ( -96 16 24 ) ( -96 0 24 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -96 0 64 ) ( -96 16 64 ) ( -72 16 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -96 0 64 ) ( -72 0 64 ) ( -72 0 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -80 0 64 ) ( -80 16 64 ) ( -80 16 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -72 16 64 ) ( -96 16 64 ) ( -96 16 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -96 16 64 ) ( -96 0 64 ) ( -96 0 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 1019 +{ +( -64 16 0 ) ( -72 16 0 ) ( -72 0 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -72 0 64 ) ( -72 16 64 ) ( -64 16 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -72 0 64 ) ( -64 0 64 ) ( -64 0 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -64 0 64 ) ( -64 16 64 ) ( -64 16 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -64 16 64 ) ( -72 16 64 ) ( -72 16 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -80 16 64 ) ( -80 0 64 ) ( -80 0 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 1020 +{ +( -128 -416 0 ) ( -128 -864 0 ) ( 512 -864 0 ) bricks/c_pv_m2 -96 -31 -90 1 1 0 0 0 +( 512 -864 64 ) ( -128 -864 64 ) ( -128 -416 64 ) bricks/c_pv_m2 -96 -31 -90 1 1 0 0 0 +( 512 -416 128 ) ( -128 -416 128 ) ( -128 -416 0 ) bricks/c_pv_m2 32 -1 0 1 1 0 0 0 +( -128 -864 128 ) ( 512 -864 128 ) ( 512 -864 0 ) bricks/c_pv_m2 32 0 0 1 1 0 0 0 +( 160 -792 0 ) ( 160 -856 0 ) ( 160 -824 64 ) bricks/c_pv_m2 32 -1 0 1 1 0 0 0 +( -128 -432 0 ) ( -128 -416 0 ) ( -128 -424 64 ) bricks/c_pv_m2 -96 0 -180 1 -1 0 0 0 +} +// brush 1021 +{ +( 1096 3344 256 ) ( 1280 3344 256 ) ( 1280 3344 0 ) props/w_sr_ba7b 32 32 0 1 1 0 1 5000 +( 1280 3456 256 ) ( 1096 3456 256 ) ( 1096 3456 0 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1240 3328 160 ) ( 1280 3328 160 ) ( 1260 3456 160 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1280 3328 224 ) ( 1256 3328 224 ) ( 1268 3456 224 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1120 3328 160 ) ( 1120 3352 160 ) ( 1120 3340 224 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1184 3352 160 ) ( 1184 3328 160 ) ( 1184 3340 224 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1022 +{ +( 1096 3328 256 ) ( 1280 3328 256 ) ( 1280 3328 0 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1280 3328 256 ) ( 1280 3456 256 ) ( 1280 3456 0 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1280 3456 256 ) ( 1096 3456 256 ) ( 1096 3456 0 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1240 3328 160 ) ( 1280 3328 160 ) ( 1260 3456 160 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1280 3328 224 ) ( 1256 3328 224 ) ( 1268 3456 224 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1184 3328 160 ) ( 1184 3352 160 ) ( 1184 3340 224 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 1023 +{ +( 1096 3328 256 ) ( 1280 3328 256 ) ( 1280 3328 0 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1280 3456 256 ) ( 1096 3456 256 ) ( 1096 3456 0 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1088 3328 0 ) ( 1088 3352 0 ) ( 1088 3340 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1240 3328 160 ) ( 1280 3328 160 ) ( 1260 3456 160 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1280 3328 224 ) ( 1256 3328 224 ) ( 1268 3456 224 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1120 3352 160 ) ( 1120 3328 160 ) ( 1120 3340 224 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 1024 +{ +( 1096 3328 256 ) ( 1096 3456 256 ) ( 1280 3456 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1096 3328 256 ) ( 1280 3328 256 ) ( 1280 3328 0 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1280 3328 256 ) ( 1280 3456 256 ) ( 1280 3456 0 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1280 3456 256 ) ( 1096 3456 256 ) ( 1096 3456 0 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1088 3328 0 ) ( 1088 3352 0 ) ( 1088 3340 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1256 3328 224 ) ( 1280 3328 224 ) ( 1268 3456 224 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 1025 +{ +( 1280 3456 0 ) ( 1096 3456 0 ) ( 1096 3328 0 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1096 3328 256 ) ( 1280 3328 256 ) ( 1280 3328 0 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1280 3328 256 ) ( 1280 3456 256 ) ( 1280 3456 0 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1280 3456 256 ) ( 1096 3456 256 ) ( 1096 3456 0 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1088 3328 0 ) ( 1088 3352 0 ) ( 1088 3340 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1280 3328 160 ) ( 1240 3328 160 ) ( 1260 3456 160 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +} +// brush 1026 +{ +( 1280 3456 128 ) ( 1096 3456 128 ) ( 1096 3328 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1096 3328 256 ) ( 1096 3456 256 ) ( 1280 3456 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1096 3312 256 ) ( 1280 3312 256 ) ( 1280 3312 0 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1280 3456 256 ) ( 1096 3456 256 ) ( 1096 3456 0 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1024 3456 256 ) ( 1024 3328 256 ) ( 1024 3328 0 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1088 3352 0 ) ( 1088 3328 0 ) ( 1088 3340 256 ) bricks/b_sr_20b 8 0 0 1 1 0 0 0 +} +// brush 1027 +{ +( 1280 3456 256 ) ( 1024 3456 256 ) ( 1024 3328 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 1024 3328 320 ) ( 1024 3456 320 ) ( 1280 3456 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1024 3312 320 ) ( 1280 3312 320 ) ( 1280 3312 256 ) bricks/b_sr_23 96 0 -180 1 -1 0 0 0 +( 1280 3456 320 ) ( 1024 3456 320 ) ( 1024 3456 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 1024 3456 320 ) ( 1024 3328 320 ) ( 1024 3328 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 1088 3360 256 ) ( 1088 3328 256 ) ( 1088 3344 320 ) bricks/b_sr_23 89 0 -180 1 -1 0 0 0 +} +// brush 1028 +{ +( 1280 3456 256 ) ( 1024 3456 256 ) ( 1024 3328 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 1024 3328 320 ) ( 1024 3456 320 ) ( 1280 3456 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1024 3328 320 ) ( 1280 3328 320 ) ( 1280 3328 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 1280 3328 320 ) ( 1280 3456 320 ) ( 1280 3456 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 1280 3456 320 ) ( 1024 3456 320 ) ( 1024 3456 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 1088 3328 256 ) ( 1088 3360 256 ) ( 1088 3344 320 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +} +// brush 1029 +{ +( 1600 3264 128 ) ( 1344 3264 128 ) ( 1344 3136 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1352 3072 256 ) ( 1608 3072 256 ) ( 1608 3072 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1600 3136 256 ) ( 1600 3264 256 ) ( 1600 3264 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1280 3272 256 ) ( 1280 3144 256 ) ( 1280 3144 128 ) bricks/b_sr_20b -72 0 0 -1 1 0 0 0 +( 1304 3072 160 ) ( 1280 3072 160 ) ( 1292 3456 160 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1280 3264 0 ) ( 1304 3264 0 ) ( 1292 3264 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1030 +{ +( 1600 3136 256 ) ( 1600 3264 256 ) ( 1600 3264 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1280 3272 256 ) ( 1280 3144 256 ) ( 1280 3144 128 ) bricks/b_sr_20b -72 0 0 -1 1 0 0 0 +( 1280 3072 160 ) ( 1304 3072 160 ) ( 1292 3456 160 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1344 3072 224 ) ( 1280 3072 224 ) ( 1312 3456 224 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1328 3200 160 ) ( 1280 3200 160 ) ( 1304 3200 224 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1280 3264 0 ) ( 1304 3264 0 ) ( 1292 3264 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 1031 +{ +( 1344 3136 256 ) ( 1344 3264 256 ) ( 1600 3264 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1352 3072 256 ) ( 1608 3072 256 ) ( 1608 3072 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1600 3136 256 ) ( 1600 3264 256 ) ( 1600 3264 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1280 3272 256 ) ( 1280 3144 256 ) ( 1280 3144 128 ) bricks/b_sr_20b -72 0 0 -1 1 0 0 0 +( 1280 3072 224 ) ( 1344 3072 224 ) ( 1312 3456 224 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1280 3264 0 ) ( 1304 3264 0 ) ( 1292 3264 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 1032 +{ +( 1600 3264 0 ) ( 1344 3264 0 ) ( 1344 3136 0 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1344 3136 128 ) ( 1344 3264 128 ) ( 1600 3264 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1600 3136 128 ) ( 1600 3264 128 ) ( 1600 3264 0 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1584 3456 128 ) ( 1328 3456 128 ) ( 1328 3456 0 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1280 3272 128 ) ( 1280 3144 128 ) ( 1280 3144 0 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1304 3264 0 ) ( 1280 3264 0 ) ( 1292 3264 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1033 +{ +( 1600 3264 62 ) ( 1344 3264 62 ) ( 1344 3136 62 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1344 3136 128 ) ( 1344 3264 128 ) ( 1600 3264 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1352 3072 128 ) ( 1608 3072 128 ) ( 1608 3072 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1600 3136 128 ) ( 1600 3264 128 ) ( 1600 3264 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1280 3272 128 ) ( 1280 3144 128 ) ( 1280 3144 0 ) bricks/b_sr_20a -72 0 0 -1 1 0 0 0 +( 1280 3264 0 ) ( 1304 3264 0 ) ( 1292 3264 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 1034 +{ +( 704 256 72 ) ( 640 256 72 ) ( 640 192 72 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 640 192 136 ) ( 640 256 136 ) ( 704 256 136 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 640 192 120 ) ( 704 192 120 ) ( 704 192 72 ) props/box_sr_m6 0 8 0 1 1 0 134217728 0 +( 704 192 120 ) ( 704 256 120 ) ( 704 256 72 ) props/box_sr_m6 0 8 0 1 1 0 134217728 0 +( 704 256 120 ) ( 640 256 120 ) ( 640 256 72 ) props/box_sr_m6 0 8 0 1 1 0 134217728 0 +( 640 256 120 ) ( 640 192 120 ) ( 640 192 72 ) props/box_sr_m6 0 8 0 1 1 0 134217728 0 +} +// brush 1035 +{ +( 704 256 0 ) ( 640 256 0 ) ( 640 192 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( 640 192 8 ) ( 640 256 8 ) ( 704 256 8 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( 640 192 48 ) ( 704 192 48 ) ( 704 192 0 ) props/box_w_m1 0 0 0 1 1 0 134217728 0 +( 704 192 48 ) ( 704 256 48 ) ( 704 256 0 ) props/box_w_m1 0 0 0 1 1 0 134217728 0 +( 704 256 48 ) ( 640 256 48 ) ( 640 256 0 ) props/box_w_m1 0 0 0 1 1 0 134217728 0 +( 640 256 48 ) ( 640 192 48 ) ( 640 192 0 ) props/box_w_m1 0 0 0 1 1 0 134217728 0 +} +// brush 1036 +{ +( 1088 2672 8 ) ( 1072 2672 8 ) ( 1072 2448 8 ) bricks/c_sr_m2 -40 64 90 1 1 0 0 0 +( 1072 2448 16 ) ( 1072 2672 16 ) ( 1088 2672 16 ) bricks/c_sr_m2 -40 152 90 1 1 0 0 0 +( 1072 2432 32 ) ( 1088 2432 32 ) ( 1088 2432 16 ) bricks/c_sr_m2 -40 64 90 1 1 0 0 0 +( 1080 2448 32 ) ( 1080 2672 32 ) ( 1080 2672 16 ) bricks/c_sr_m2 -40 0 90 1 1 0 0 0 +( 1088 2688 32 ) ( 1072 2688 32 ) ( 1072 2688 16 ) bricks/c_sr_m2 -32 8 90 1 1 0 0 0 +( 1056 2672 32 ) ( 1056 2448 32 ) ( 1056 2448 16 ) bricks/c_sr_m2 -40 0 0 1 1 0 0 0 +} +// brush 1037 +{ +( 2144 1984 0 ) ( 1984 1984 0 ) ( 1984 1856 0 ) common/li_sr_v27 -8 -8 0 1 1 0 1 13000 +( 1984 1856 16 ) ( 1984 1984 16 ) ( 2144 1984 16 ) bricks/b_mf_v2 -32 0 0 1 1 0 0 0 +( 1984 1928 0 ) ( 2000 1928 0 ) ( 1992 1928 16 ) bricks/b_mf_v2 -32 0 0 1 1 0 0 0 +( 2008 1912 0 ) ( 1984 1912 0 ) ( 1996 1912 16 ) bricks/b_mf_v2 -32 0 0 1 1 0 0 0 +( 2040 1912 0 ) ( 2040 1920 0 ) ( 2040 1916 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2056 1928 0 ) ( 2056 1920 0 ) ( 2056 1924 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1038 +{ +( 1848 2004 -128 ) ( 1832 2004 -128 ) ( 1832 1980 -128 ) bricks/b_mf_v2a 24 -20 0 1 1 134217728 0 0 +( 1832 1980 -124 ) ( 1832 2004 -124 ) ( 1848 2004 -124 ) bricks/b_mf_v2a 24 -24 0 1 1 134217728 67108864 0 +( 1832 1980 -112 ) ( 1848 1980 -112 ) ( 1848 1980 -128 ) bricks/b_mf_v2a 24 0 0 1 1 134217728 0 0 +( 1848 1980 -112 ) ( 1848 2004 -112 ) ( 1848 2004 -128 ) bricks/b_mf_v2a 20 0 0 1 1 134217728 0 0 +( 1848 2004 -112 ) ( 1832 2004 -112 ) ( 1832 2004 -128 ) bricks/b_mf_v2a 24 0 0 1 1 134217728 0 0 +( 1832 2004 -112 ) ( 1832 1980 -112 ) ( 1832 1980 -128 ) bricks/b_mf_v2a 20 0 0 1 1 134217728 0 0 +} +// brush 1039 +{ +( 1894 1997 -128 ) ( 1886 1983 -128 ) ( 1906 1971 -128 ) bricks/b_mf_v2a -34 22 60 1.000234 0.999750 134217728 0 0 +( 1906 1971 -124 ) ( 1886 1983 -124 ) ( 1894 1997 -124 ) bricks/b_mf_v2a -34 18 60 1 1 134217728 67108864 0 +( 1906 1971 -112 ) ( 1914 1985 -112 ) ( 1914 1985 -128 ) bricks/b_mf_v2a -35 0 0 0.865723 1 134217728 0 0 +( 1914 1985 -112 ) ( 1894 1997 -112 ) ( 1894 1997 -128 ) bricks/b_mf_v2a -15 0 -180 0.866333 -1 134217728 0 0 +( 1894 1997 -112 ) ( 1886 1983 -112 ) ( 1886 1983 -128 ) bricks/b_mf_v2a -49 0 0 0.866211 1 134217728 0 0 +( 1886 1983 -112 ) ( 1906 1971 -112 ) ( 1906 1971 -128 ) bricks/b_mf_v2a -23 0 -180 0.866211 -1 134217728 0 0 +} +// brush 1040 +{ +( 1912 2018 -128 ) ( 1898 2011 -128 ) ( 1908 1990 -128 ) bricks/b_mf_v2a -90 -24 26 0.999833 1.000272 134217728 0 0 +( 1908 1990 -124 ) ( 1898 2011 -124 ) ( 1912 2018 -124 ) bricks/b_mf_v2a -90 -28 26 1 1 134217728 67108864 0 +( 1908 1990 -112 ) ( 1922 1997 -112 ) ( 1922 1997 -128 ) bricks/b_mf_v2a -10 0 0 0.898682 1 134217728 0 0 +( 1922 1997 -112 ) ( 1912 2018 -112 ) ( 1912 2018 -128 ) bricks/b_mf_v2a -93 0 0 0.898926 1 134217728 0 0 +( 1912 2018 -112 ) ( 1898 2011 -112 ) ( 1898 2011 -128 ) bricks/b_mf_v2a -127 0 0 0.898804 1 134217728 0 0 +( 1898 2011 -112 ) ( 1908 1990 -112 ) ( 1908 1990 -128 ) bricks/b_mf_v2a -85 0 0 0.898804 1 134217728 0 0 +} +// brush 1041 +{ +( 1876 1948 -128 ) ( 1876 1964 -128 ) ( 1852 1964 -128 ) bricks/b_mf_v2a -91 -40 90 1 1 134217728 0 0 +( 1852 1964 -124 ) ( 1876 1964 -124 ) ( 1876 1948 -124 ) bricks/b_mf_v2a -91 -40 90 1 1 134217728 67108864 0 +( 1852 1964 -112 ) ( 1852 1948 -112 ) ( 1852 1948 -128 ) bricks/b_mf_v2a -92 -4 0 1 1 134217728 0 0 +( 1852 1948 -112 ) ( 1876 1948 -112 ) ( 1876 1948 -128 ) bricks/b_mf_v2a 36 -3 -180 1 -1 134217728 0 0 +( 1876 1948 -112 ) ( 1876 1964 -112 ) ( 1876 1964 -128 ) bricks/b_mf_v2a -92 -4 0 1 1 134217728 0 0 +( 1876 1964 -112 ) ( 1852 1964 -112 ) ( 1852 1964 -128 ) bricks/b_mf_v2a 36 -3 -180 1 -1 134217728 0 0 +} +// brush 1042 +{ +( 1878 2016 -128 ) ( 1866 2026 -128 ) ( 1850 2008 -128 ) bricks/b_mf_v2a 32 90 -42 1.000135 0.999872 134217728 0 0 +( 1850 2008 -124 ) ( 1866 2026 -124 ) ( 1878 2016 -124 ) bricks/b_mf_v2a 32 90 -42 1 1 134217728 67108864 0 +( 1850 2008 -112 ) ( 1862 1998 -112 ) ( 1862 1998 -128 ) bricks/b_mf_v2a -121 0 0 0.743042 1 134217728 0 0 +( 1862 1998 -112 ) ( 1878 2016 -112 ) ( 1878 2016 -128 ) bricks/b_mf_v2a -48 0 0 0.743042 1 134217728 0 0 +( 1878 2016 -112 ) ( 1866 2026 -112 ) ( 1866 2026 -128 ) bricks/b_mf_v2a -15 0 0 0.743042 1 134217728 0 0 +( 1866 2026 -112 ) ( 1850 2008 -112 ) ( 1850 2008 -128 ) bricks/b_mf_v2a -62 0 0 0.743164 1 134217728 0 0 +} +// brush 1043 +{ +( 1816 2608 -128 ) ( 1800 2608 -128 ) ( 1800 2560 -128 ) bricks/c_sr_m3a 0 0 0 1 1 0 0 0 +( 1820 1984 16 ) ( 1820 2032 16 ) ( 1820 2032 -112 ) bricks/c_sr_m3a 0 16 0 1 1 0 0 0 +( 1800 2592 0 ) ( 1800 2544 0 ) ( 1800 2544 -128 ) bricks/c_sr_m3a 0 0 0 1 1 0 0 0 +( 2104 1840 -16 ) ( 1800 1840 -16 ) ( 1952 2608 -16 ) bricks/c_sr_m3a 0 0 0 1 1 0 0 0 +( 1800 2112 -128 ) ( 1816 2112 -128 ) ( 1808 2112 -80 ) bricks/c_sr_m3a 0 0 0 1 1 0 0 0 +( 1816 1984 -128 ) ( 1800 1984 -128 ) ( 1808 1984 -80 ) bricks/c_sr_m3a 0 0 0 1 1 0 0 0 +} +// brush 1044 +{ +( 1824 2112 -96 ) ( 1808 2112 -96 ) ( 1808 2088 -96 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1808 2088 -80 ) ( 1808 2112 -80 ) ( 1824 2112 -80 ) bricks/c_pv_m2 -88 -40 90 1 1 0 0 0 +( 1808 2088 -64 ) ( 1824 2088 -64 ) ( 1824 2088 -112 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1824 2088 -64 ) ( 1824 2112 -64 ) ( 1824 2112 -112 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1824 2112 -64 ) ( 1808 2112 -64 ) ( 1808 2112 -112 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1808 2112 -64 ) ( 1808 2088 -64 ) ( 1808 2088 -112 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +} +// brush 1045 +{ +( 1824 2112 -112 ) ( 1808 2112 -112 ) ( 1808 2088 -112 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1808 2088 -96 ) ( 1808 2112 -96 ) ( 1824 2112 -96 ) bricks/c_pv_m2 -88 -40 90 1 1 0 0 0 +( 1808 2064 -80 ) ( 1824 2064 -80 ) ( 1824 2064 -128 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1824 2088 -80 ) ( 1824 2112 -80 ) ( 1824 2112 -128 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1824 2112 -80 ) ( 1808 2112 -80 ) ( 1808 2112 -128 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1808 2112 -80 ) ( 1808 2088 -80 ) ( 1808 2088 -128 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +} +// brush 1046 +{ +( 1824 2104 -64 ) ( 1808 2104 -64 ) ( 1808 2080 -64 ) bricks/b_mf_v2a 0 0 90 1 1 0 0 0 +( 1808 2080 -48 ) ( 1808 2104 -48 ) ( 1824 2104 -48 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 2080 -16 ) ( 1824 2080 -16 ) ( 1824 2080 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 2080 -16 ) ( 1824 2104 -16 ) ( 1824 2104 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 2112 -16 ) ( 1808 2112 -16 ) ( 1808 2112 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 2104 -16 ) ( 1808 2080 -16 ) ( 1808 2080 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 1047 +{ +( 1824 2104 -48 ) ( 1808 2104 -48 ) ( 1808 2080 -48 ) bricks/b_mf_v2a 0 0 90 1 1 0 0 0 +( 1808 2080 -32 ) ( 1808 2104 -32 ) ( 1824 2104 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 2064 0 ) ( 1824 2064 0 ) ( 1824 2064 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 2080 0 ) ( 1824 2104 0 ) ( 1824 2104 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 2112 0 ) ( 1808 2112 0 ) ( 1808 2112 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 2104 0 ) ( 1808 2080 0 ) ( 1808 2080 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 1048 +{ +( 1824 2008 -48 ) ( 1808 2008 -48 ) ( 1808 1984 -48 ) bricks/b_mf_v2a 0 0 90 1 1 0 0 0 +( 1808 1984 -32 ) ( 1808 2008 -32 ) ( 1824 2008 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 1984 0 ) ( 1824 1984 0 ) ( 1824 1984 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 1984 0 ) ( 1824 2008 0 ) ( 1824 2008 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 2016 0 ) ( 1808 2016 0 ) ( 1808 2016 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 2008 0 ) ( 1808 1984 0 ) ( 1808 1984 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 1049 +{ +( 1824 2008 -112 ) ( 1808 2008 -112 ) ( 1808 1984 -112 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1808 1984 -96 ) ( 1808 2008 -96 ) ( 1824 2008 -96 ) bricks/c_pv_m2 -88 -40 90 1 1 0 0 0 +( 1808 1984 -80 ) ( 1824 1984 -80 ) ( 1824 1984 -128 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1824 1984 -80 ) ( 1824 2008 -80 ) ( 1824 2008 -128 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1824 2008 -80 ) ( 1808 2008 -80 ) ( 1808 2008 -128 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1808 2008 -80 ) ( 1808 1984 -80 ) ( 1808 1984 -128 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +} +// brush 1050 +{ +( 1824 2608 -128 ) ( 1808 2608 -128 ) ( 1808 2560 -128 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1824 1984 16 ) ( 1824 2032 16 ) ( 1824 2032 -112 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1808 2592 0 ) ( 1808 2544 0 ) ( 1808 2544 -128 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 2112 1840 -112 ) ( 1808 1840 -112 ) ( 1960 2608 -112 ) bricks/c_pv_m2 -88 -40 90 1 1 0 0 0 +( 1808 2112 -128 ) ( 1824 2112 -128 ) ( 1816 2112 -80 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1824 1984 -128 ) ( 1808 1984 -128 ) ( 1816 1984 -80 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +} +// brush 1051 +{ +( 1824 2608 -128 ) ( 1808 2608 -128 ) ( 1808 2560 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 1840 0 ) ( 1840 1840 0 ) ( 1840 1840 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 1984 16 ) ( 1824 2032 16 ) ( 1824 2032 -112 ) bricks/c_pv_m2 -96 -1 0 1 1 0 0 0 +( 1808 2592 0 ) ( 1808 2544 0 ) ( 1808 2544 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2112 1840 -80 ) ( 1808 1840 -80 ) ( 1960 2608 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 1984 -128 ) ( 1824 1984 -128 ) ( 1816 1984 -80 ) bricks/c_pv_m2 -88 -40 90 1 1 0 0 0 +} +// brush 1052 +{ +( 1808 2560 0 ) ( 1808 2608 0 ) ( 1824 2608 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 1984 0 ) ( 1824 2032 0 ) ( 1824 2032 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 2592 0 ) ( 1808 2544 0 ) ( 1808 2544 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 1840 -32 ) ( 1992 1840 -32 ) ( 1900 2608 -32 ) bricks/b_mf_v2a 0 0 90 1 1 0 0 0 +( 1808 2112 -80 ) ( 1824 2112 -80 ) ( 1816 2112 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 1984 -80 ) ( 1808 1984 -80 ) ( 1816 1984 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 1053 +{ +( 1808 2560 0 ) ( 1808 2608 0 ) ( 1824 2608 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 1840 0 ) ( 1840 1840 0 ) ( 1840 1840 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 1984 0 ) ( 1824 2032 0 ) ( 1824 2032 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 2592 0 ) ( 1808 2544 0 ) ( 1808 2544 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 1840 -80 ) ( 1992 1840 -80 ) ( 1900 2608 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 1984 -80 ) ( 1824 1984 -80 ) ( 1816 1984 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 1054 +{ +( 1824 2608 -128 ) ( 1808 2608 -128 ) ( 1808 2560 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 1984 16 ) ( 1824 2032 16 ) ( 1824 2032 -112 ) bricks/c_pv_m2 -96 -1 0 1 1 0 0 0 +( 1824 2608 0 ) ( 1808 2608 0 ) ( 1808 2608 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 2592 0 ) ( 1808 2544 0 ) ( 1808 2544 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2112 1840 -80 ) ( 1808 1840 -80 ) ( 1960 2608 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 2112 -128 ) ( 1808 2112 -128 ) ( 1816 2112 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 1055 +{ +( 1808 2560 0 ) ( 1808 2608 0 ) ( 1824 2608 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 1984 0 ) ( 1824 2032 0 ) ( 1824 2032 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 2608 0 ) ( 1808 2608 0 ) ( 1808 2608 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 2592 0 ) ( 1808 2544 0 ) ( 1808 2544 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 1840 -80 ) ( 1992 1840 -80 ) ( 1900 2608 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 2112 -80 ) ( 1808 2112 -80 ) ( 1816 2112 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 1056 +{ +( 1952 2592 -144 ) ( 1824 2592 -144 ) ( 1824 2560 -144 ) bricks/c_sr_m2 0 -96 0 1 1 0 0 0 +( 1824 2084 -128 ) ( 1824 2138 -128 ) ( 1952 2138 -128 ) bricks/c_sr_m2 -4 -92 90 1 1.200000 0 0 0 +( 1952 1856 -144 ) ( 1952 1856 -128 ) ( 1952 2592 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1840 2084 -144 ) ( 1824 2084 -144 ) ( 1832 2084 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1824 2138 -144 ) ( 1828 2138 -144 ) ( 1826 2138 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1896 2120 -144 ) ( 1896 2136 -144 ) ( 1896 2128 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1896 2112 -144 ) ( 1912 2136 -144 ) ( 1904 2124 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +} +// brush 1057 +{ +( 1824 2136 -144 ) ( 1824 2088 -144 ) ( 1896 2088 -144 ) bricks/c_sr_m2 0 -96 0 1 1 0 0 0 +( 1824 2088 -120 ) ( 1824 2136 -120 ) ( 1896 2136 -128 ) bricks/c_sr_m2 -4 -92 90 1 1.200000 0 67108864 0 +( 1824 2136 -120 ) ( 1824 2088 -120 ) ( 1824 2088 -144 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1840 2084 -144 ) ( 1824 2084 -144 ) ( 1832 2084 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1824 2138 -144 ) ( 1828 2138 -144 ) ( 1826 2138 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1896 2136 -144 ) ( 1896 2120 -144 ) ( 1896 2128 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1880 2136 -144 ) ( 1896 2120 -144 ) ( 1888 2128 -120 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +} +// brush 1058 +{ +( 1952 2592 -144 ) ( 1824 2592 -144 ) ( 1824 2560 -144 ) bricks/c_sr_m2 0 -96 0 1 1 0 0 0 +( 1824 2560 -128 ) ( 1824 2592 -128 ) ( 1952 2592 -128 ) bricks/c_sr_m2 -4 -92 90 1 1.200000 0 0 0 +( 1952 1856 -144 ) ( 1952 1856 -128 ) ( 1952 2592 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1828 2138 -144 ) ( 1824 2138 -144 ) ( 1826 2138 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1824 2172 -144 ) ( 1848 2172 -144 ) ( 1836 2172 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1904 2164 -144 ) ( 1904 2170 -144 ) ( 1904 2167 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +} +// brush 1059 +{ +( 1952 2592 -144 ) ( 1824 2592 -144 ) ( 1824 2560 -144 ) bricks/s_sr_m6 -80 0 0 1 1 0 0 0 +( 1824 2560 -136 ) ( 1824 2592 -136 ) ( 1952 2592 -136 ) bricks/s_sr_m6 -80 0 0 1 1 0 4194304 0 +( 1828 2098 -144 ) ( 1824 2098 -144 ) ( 1826 2098 -128 ) bricks/s_sr_m6 -80 0 0 1 1 0 0 0 +( 1824 2172 -144 ) ( 1848 2172 -144 ) ( 1836 2172 -128 ) bricks/s_sr_m6 -80 0 0 1 1 0 0 0 +( 1856 2164 -144 ) ( 1856 2170 -144 ) ( 1856 2167 -128 ) bricks/s_sr_m6 -80 0 0 1 1 0 0 0 +( 1928 2170 -144 ) ( 1928 2164 -144 ) ( 1928 2167 -128 ) bricks/s_sr_m6 -80 0 0 1 1 0 0 0 +} +// brush 1060 +{ +( 1952 2592 -144 ) ( 1824 2592 -144 ) ( 1824 2560 -144 ) bricks/c_sr_m2 0 -96 0 1 1 0 0 0 +( 1856 2176 -132 ) ( 1856 2144 -132 ) ( 1824 2140 -128 ) bricks/c_sr_m2 -4 -92 90 1 1.200000 0 0 0 +( 1824 2528 -16 ) ( 1824 2496 -16 ) ( 1824 2496 -144 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1828 2138 -144 ) ( 1824 2138 -144 ) ( 1826 2138 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1824 2172 -144 ) ( 1848 2172 -144 ) ( 1836 2172 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1856 2144 -132 ) ( 1856 2176 -132 ) ( 1856 2172 -144 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +} +// brush 1061 +{ +( 1952 2592 -144 ) ( 1824 2592 -144 ) ( 1824 2560 -144 ) bricks/c_sr_m2 -4 -92 90 1 1.200000 0 67108864 0 +( 1824 2560 -128 ) ( 1824 2592 -128 ) ( 1952 2592 -128 ) bricks/c_sr_m2 -4 -92 90 1 1.200000 0 67108864 0 +( 1952 1856 -144 ) ( 1952 1856 -128 ) ( 1952 2592 -128 ) bricks/c_sr_m2 -4 -92 90 1 1.200000 0 67108864 0 +( 1952 2592 -16 ) ( 1824 2592 -16 ) ( 1824 2592 -144 ) bricks/c_sr_m2 -4 -92 90 1 1.200000 0 67108864 0 +( 1824 2528 -16 ) ( 1824 2496 -16 ) ( 1824 2496 -144 ) bricks/c_sr_m2 -4 -92 90 1 1.200000 0 67108864 0 +( 1848 2172 -144 ) ( 1824 2172 -144 ) ( 1836 2172 -128 ) bricks/c_sr_m2 -4 -92 90 1 1.200000 0 67108864 0 +} +// brush 1062 +{ +( 2066 2666 -128 ) ( 1939 2683 -128 ) ( 1935 2651 -128 ) bricks/c_sr_m2 5 -117 81 1.000275 1.200185 134217728 0 0 +( 1935 2651 -124 ) ( 1939 2683 -124 ) ( 2066 2666 -124 ) bricks/c_sr_m2 228 -84 82 1 1.200000 134217728 67108864 0 +( 1880 2146 -136 ) ( 1864 2149 -136 ) ( 1871 2147 -120 ) bricks/c_sr_m2 4 52 91 1.000445 1.140188 134217728 0 0 +( 1866 2181 -136 ) ( 1883 2178 -136 ) ( 1874 2179 -120 ) bricks/c_sr_m2 -9 43 88 1.000209 1.140593 134217728 0 0 +( 1896 2142 -136 ) ( 1900 2176 -136 ) ( 1898 2159 -120 ) bricks/c_sr_m2 -3 21 90 1.000015 1.192139 134217728 0 0 +( 1948 2171 -136 ) ( 1947 2162 -136 ) ( 1947 2166 -120 ) bricks/c_sr_m2 108 34 88 1.000221 1.200223 134217728 0 0 +} +// brush 1063 +{ +( 1920 2088 -144 ) ( 1848 2088 -144 ) ( 1848 2032 -144 ) bricks/s_sr_m6 -80 0 0 1 1 0 0 0 +( 1848 2032 -136 ) ( 1848 2088 -136 ) ( 1920 2088 -136 ) bricks/s_sr_m6 -80 0 0 1 1 0 4194304 0 +( 1848 2032 -136 ) ( 1920 2032 -136 ) ( 1920 2032 -144 ) bricks/s_sr_m6 -80 0 0 1 1 0 0 0 +( 1920 2032 -136 ) ( 1920 2088 -136 ) ( 1920 2088 -144 ) bricks/s_sr_m6 -80 0 0 1 1 0 0 0 +( 1920 2088 -136 ) ( 1848 2088 -136 ) ( 1848 2088 -144 ) bricks/s_sr_m6 -80 0 0 1 1 0 0 0 +( 1848 2088 -136 ) ( 1848 2032 -136 ) ( 1848 2032 -144 ) bricks/s_sr_m6 -80 0 0 1 1 0 0 0 +} +// brush 1064 +{ +( 1952 2592 -144 ) ( 1824 2592 -144 ) ( 1824 2560 -144 ) bricks/c_sr_m2 0 -96 0 1 1 0 0 0 +( 1824 2560 -128 ) ( 1824 2592 -128 ) ( 1952 2592 -128 ) bricks/c_sr_m2 -4 -92 90 1 1.200000 0 0 0 +( 1952 1856 -144 ) ( 1952 1856 -128 ) ( 1952 2592 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1840 2052 -144 ) ( 1824 2052 -144 ) ( 1832 2052 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1822 2084 -144 ) ( 1838 2084 -144 ) ( 1830 2084 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1904 2076 -144 ) ( 1904 2086 -144 ) ( 1904 2081 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +} +// brush 1065 +{ +( 1695 2551 -128 ) ( 1587 2483 -128 ) ( 1604 2456 -128 ) bricks/c_sr_m2 -69 -15 31 0.999804 1.000140 134217728 0 0 +( 1604 2456 -124 ) ( 1587 2483 -124 ) ( 1695 2551 -124 ) bricks/c_sr_m2 43 -21 122 1 1.200000 134217728 67108864 0 +( 1887 2033 -136 ) ( 1873 2025 -136 ) ( 1880 2029 -120 ) bricks/c_sr_m2 -160 -8 0 0.848267 1 134217728 0 0 +( 1854 2051 -136 ) ( 1868 2059 -136 ) ( 1861 2055 -120 ) bricks/c_sr_m2 -140 -8 0 0.847900 1 134217728 0 0 +( 1901 2040 -136 ) ( 1883 2069 -136 ) ( 1892 2054 -120 ) bricks/c_sr_m2 -131 -8 0 0.848511 1 134217728 0 0 +( 1923 2096 -136 ) ( 1928 2088 -136 ) ( 1925 2092 -120 ) bricks/c_sr_m2 -161 -8 0 0.847290 1 134217728 0 0 +} +// brush 1066 +{ +( 1952 2592 -144 ) ( 1824 2592 -144 ) ( 1824 2560 -144 ) bricks/c_sr_m2 0 -96 0 1 1 0 0 0 +( 1824 2560 -128 ) ( 1824 2592 -128 ) ( 1952 2592 -128 ) bricks/c_sr_m2 -4 -92 90 1 1.200000 0 0 0 +( 1824 2528 -16 ) ( 1824 2496 -16 ) ( 1824 2496 -144 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1840 2052 -144 ) ( 1824 2052 -144 ) ( 1832 2052 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1822 2084 -144 ) ( 1838 2084 -144 ) ( 1830 2084 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1856 2084 -144 ) ( 1856 2050 -144 ) ( 1856 2067 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +} +// brush 1067 +{ +( 1952 2592 -144 ) ( 1824 2592 -144 ) ( 1824 2560 -144 ) bricks/c_sr_m2 0 -96 0 1 1 0 0 0 +( 1824 2560 -128 ) ( 1824 2592 -128 ) ( 1952 2592 -128 ) bricks/c_sr_m2 -4 -92 90 1 1.200000 0 0 0 +( 1952 1984 -144 ) ( 1952 1984 -128 ) ( 1952 2056 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1824 2528 -16 ) ( 1824 2496 -16 ) ( 1824 2496 -144 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1952 1984 -128 ) ( 1952 1984 -144 ) ( 1824 1856 -144 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +( 1824 2052 -144 ) ( 1840 2052 -144 ) ( 1832 2052 -128 ) bricks/c_sr_m2 224 -16 0 1 1 0 0 0 +} +// brush 1068 +{ +( 1808 2560 -16 ) ( 1808 2832 -16 ) ( 1824 2832 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 2608 -16 ) ( 1824 2608 -16 ) ( 1824 2608 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 2560 -16 ) ( 1824 2832 -16 ) ( 1824 2832 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 2832 -16 ) ( 1808 2832 -16 ) ( 1808 2832 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 2832 -16 ) ( 1808 2560 -16 ) ( 1808 2560 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 2608 -80 ) ( 1992 2608 -80 ) ( 1900 2832 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 1069 +{ +( 1920 2624 0 ) ( 1920 2816 0 ) ( 2176 2816 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1920 2608 0 ) ( 2176 2608 0 ) ( 2176 2608 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1952 2816 0 ) ( 1952 2624 0 ) ( 1952 2624 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2048 3072 -16 ) ( 2048 3048 -16 ) ( 2048 3060 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1952 2816 -16 ) ( 1976 2816 -16 ) ( 1964 2816 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1808 2608 -80 ) ( 1992 2608 -80 ) ( 1900 2816 -80 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1070 +{ +( 1952 2552 0 ) ( 1952 2608 0 ) ( 1976 2608 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1952 1984 0 ) ( 1976 1984 0 ) ( 1976 1984 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1968 2552 0 ) ( 1968 2608 0 ) ( 1968 2608 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1976 2608 0 ) ( 1952 2608 0 ) ( 1952 2608 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1952 2544 0 ) ( 1952 2488 0 ) ( 1952 2488 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 1984 -80 ) ( 1992 1984 -80 ) ( 1900 2608 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 1071 +{ +( 2176 2816 -128 ) ( 1920 2816 -128 ) ( 1920 2624 -128 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1920 2608 0 ) ( 2176 2608 0 ) ( 2176 2608 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1952 2816 16 ) ( 1952 2624 16 ) ( 1952 2624 0 ) bricks/c_pv_m2 -96 -1 0 1 1 0 0 0 +( 2048 3072 -16 ) ( 2048 3048 -16 ) ( 2048 3060 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1952 2816 -16 ) ( 1976 2816 -16 ) ( 1964 2816 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2112 2608 -80 ) ( 1808 2608 -80 ) ( 1960 2816 -80 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1072 +{ +( 1976 2608 -128 ) ( 1952 2608 -128 ) ( 1952 2552 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1952 1984 0 ) ( 1976 1984 0 ) ( 1976 1984 -16 ) bricks/c_pv_m2 -96 -1 0 1 1 0 0 0 +( 1968 2552 16 ) ( 1968 2608 16 ) ( 1968 2608 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1976 2608 0 ) ( 1952 2608 0 ) ( 1952 2608 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1952 2544 16 ) ( 1952 2488 16 ) ( 1952 2488 0 ) bricks/c_pv_m2 -96 -1 0 1 1 0 0 0 +( 2112 1984 -80 ) ( 1808 1984 -80 ) ( 1960 2608 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 1073 +{ +( 1824 2832 -128 ) ( 1808 2832 -128 ) ( 1808 2560 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 2608 -16 ) ( 1824 2608 -16 ) ( 1824 2608 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 2560 0 ) ( 1824 2832 0 ) ( 1824 2832 -112 ) bricks/c_pv_m2 -96 -1 0 1 1 0 0 0 +( 1824 2832 -16 ) ( 1808 2832 -16 ) ( 1808 2832 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1808 2832 -16 ) ( 1808 2560 -16 ) ( 1808 2560 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2112 2608 -80 ) ( 1808 2608 -80 ) ( 1960 2832 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 1074 +{ +( 1968 2592 0 ) ( 1808 2592 0 ) ( 1808 2528 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1808 2528 16 ) ( 1808 2592 16 ) ( 1968 2592 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1968 2528 128 ) ( 1968 2592 128 ) ( 1968 2592 0 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1968 2592 128 ) ( 1808 2592 128 ) ( 1808 2592 0 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1896 2560 0 ) ( 1896 2592 0 ) ( 1896 2576 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1840 1856 0 ) ( 1808 1856 0 ) ( 1824 1856 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +} +// brush 1075 +{ +( 1896 1912 0 ) ( 1880 1912 0 ) ( 1880 1792 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1880 1792 16 ) ( 1880 1912 16 ) ( 1896 1912 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1896 1792 16 ) ( 1896 1912 16 ) ( 1896 1912 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1896 1912 16 ) ( 1880 1912 16 ) ( 1880 1912 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1880 1912 16 ) ( 1880 1792 16 ) ( 1880 1792 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1840 1856 0 ) ( 1808 1856 0 ) ( 1824 1856 16 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1076 +{ +( 1968 2592 0 ) ( 1808 2592 0 ) ( 1808 2528 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1808 2528 16 ) ( 1808 2592 16 ) ( 1968 2592 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1968 2592 128 ) ( 1808 2592 128 ) ( 1808 2592 0 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1808 2592 128 ) ( 1808 2528 128 ) ( 1808 2528 0 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1880 2336 0 ) ( 1880 2320 0 ) ( 1880 2328 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1840 1856 0 ) ( 1808 1856 0 ) ( 1824 1856 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +} +// brush 1077 +{ +( 1968 2016 0 ) ( 1808 2016 0 ) ( 1808 1952 0 ) common/li_sr_v27 -8 -8 0 1 1 0 1 37000 +( 1808 1952 16 ) ( 1808 2016 16 ) ( 1968 2016 16 ) bricks/c_pv_m2 -96 -64 0 1 1 0 0 0 +( 1880 2000 0 ) ( 1880 2016 0 ) ( 1880 2008 16 ) bricks/c_pv_m2 96 0 0 1 1 0 0 0 +( 1896 2016 0 ) ( 1896 1984 0 ) ( 1896 2000 16 ) bricks/c_pv_m2 96 0 0 1 1 0 0 0 +( 1880 1928 0 ) ( 1896 1928 0 ) ( 1888 1928 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1896 1912 0 ) ( 1880 1912 0 ) ( 1888 1912 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +} +// brush 1078 +{ +( 2096 2176 -144 ) ( 1952 2176 -144 ) ( 1952 2048 -144 ) bricks/c_sr_m2 -4 -156 90 1 1 0 0 0 +( 1952 2048 -128 ) ( 1952 2176 -128 ) ( 2096 2176 -128 ) bricks/c_sr_m2 -4 -156 90 1 1 0 0 0 +( 1952 2048 -128 ) ( 2096 2048 -128 ) ( 2096 2048 -144 ) bricks/c_sr_m2 -4 -156 90 1 1 0 0 0 +( 2096 2048 -128 ) ( 2096 2176 -128 ) ( 2096 2176 -144 ) bricks/c_sr_m2 -4 -156 90 1 1 0 0 0 +( 2096 2176 -128 ) ( 1952 2176 -128 ) ( 1952 2176 -144 ) bricks/c_sr_m2 -4 -156 90 1 1 0 0 0 +( 1952 2176 -128 ) ( 1952 2048 -128 ) ( 1952 2048 -144 ) bricks/c_sr_m2 -4 -156 90 1 1 0 0 0 +} +// brush 1079 +{ +( 913 143 292 ) ( 912 143 292 ) ( 912 136 292 ) bricks/c_sr_m9a 0 -32 0 0.250000 0.250000 134217728 0 0 +( 912 136 294 ) ( 912 143 294 ) ( 913 143 294 ) bricks/c_sr_m9a 0 -32 0 0.250000 0.250000 134217728 0 0 +( 912 136 294 ) ( 913 136 294 ) ( 913 136 292 ) bricks/c_sr_m9a 0 0 0 0.250000 0.250000 134217728 0 0 +( 913 136 294 ) ( 913 143 294 ) ( 913 143 292 ) bricks/c_sr_m9a 32 0 0 0.250000 0.250000 134217728 0 0 +( 913 144 294 ) ( 912 144 294 ) ( 912 144 292 ) bricks/c_sr_m9a 0 0 0 0.250000 0.250000 134217728 0 0 +( 912 143 294 ) ( 912 136 294 ) ( 912 136 292 ) bricks/c_sr_m9a 32 0 0 0.250000 0.250000 134217728 0 0 +} +// brush 1080 +{ +( 919 137 292 ) ( 913 137 292 ) ( 913 136 292 ) bricks/c_sr_m9a 0 -32 0 0.250000 0.250000 134217728 0 0 +( 913 136 294 ) ( 913 137 294 ) ( 919 137 294 ) bricks/c_sr_m9a 0 -32 0 0.250000 0.250000 134217728 0 0 +( 913 136 294 ) ( 919 136 294 ) ( 919 136 292 ) bricks/c_sr_m9a 0 0 0 0.250000 0.250000 134217728 0 0 +( 919 136 294 ) ( 919 137 294 ) ( 919 137 292 ) bricks/c_sr_m9a 32 0 0 0.250000 0.250000 134217728 0 0 +( 919 137 294 ) ( 913 137 294 ) ( 913 137 292 ) bricks/c_sr_m9a 0 0 0 0.250000 0.250000 134217728 0 0 +( 913 137 294 ) ( 913 136 294 ) ( 913 136 292 ) bricks/c_sr_m9a 32 0 0 0.250000 0.250000 134217728 0 0 +} +// brush 1081 +{ +( 920 144 292 ) ( 913 144 292 ) ( 913 143 292 ) bricks/c_sr_m9a 0 -32 0 0.250000 0.250000 134217728 0 0 +( 913 143 294 ) ( 913 144 294 ) ( 920 144 294 ) bricks/c_sr_m9a 0 -32 0 0.250000 0.250000 134217728 0 0 +( 913 143 294 ) ( 920 143 294 ) ( 920 143 292 ) bricks/c_sr_m9a 0 0 0 0.250000 0.250000 134217728 0 0 +( 920 143 294 ) ( 920 144 294 ) ( 920 144 292 ) bricks/c_sr_m9a 32 0 0 0.250000 0.250000 134217728 0 0 +( 920 144 294 ) ( 913 144 294 ) ( 913 144 292 ) bricks/c_sr_m9a 0 0 0 0.250000 0.250000 134217728 0 0 +( 913 144 294 ) ( 913 143 294 ) ( 913 143 292 ) bricks/c_sr_m9a 32 0 0 0.250000 0.250000 134217728 0 0 +} +// brush 1082 +{ +( 919 143 292 ) ( 913 143 292 ) ( 913 137 292 ) bricks/c_sr_m9a 0 8 0 1 1 134217728 0 0 +( 913 137 293 ) ( 913 143 293 ) ( 919 143 293 ) bricks/s_sr_m6 0 40 0 0.200000 0.200000 134217728 0 0 +( 913 137 293 ) ( 919 137 293 ) ( 919 137 292 ) bricks/c_sr_m9a 0 0 0 1 1 134217728 0 0 +( 919 137 293 ) ( 919 143 293 ) ( 919 143 292 ) bricks/c_sr_m9a -8 0 0 1 1 134217728 0 0 +( 919 143 293 ) ( 913 143 293 ) ( 913 143 292 ) bricks/c_sr_m9a 0 0 0 1 1 134217728 0 0 +( 913 143 293 ) ( 913 137 293 ) ( 913 137 292 ) bricks/c_sr_m9a -8 0 0 1 1 134217728 0 0 +} +// brush 1083 +{ +( 917 146 295 ) ( 916 146 295 ) ( 916 139 293 ) metals/mt_pv_m26y 25 -1 -160 1.000264 -1.000156 134217728 0 0 +( 916 146 296 ) ( 917 146 296 ) ( 917 139 294 ) metals/mt_pv_m26y 25 -1 -160 1.000264 -1.000156 134217728 0 0 +( 916 139 295 ) ( 917 139 295 ) ( 917 139 291 ) common/li_mf_v16 20 1 90 0.100000 0.100000 134217728 1 1500 +( 917 146 296 ) ( 917 146 295 ) ( 917 139 293 ) metals/mt_pv_m26y -2 20 -160 1.000264 -1.000156 134217728 0 0 +( 917 146 297 ) ( 916 146 297 ) ( 916 146 293 ) metals/mt_pv_m26y 23 23 -160 1.000264 -1.000156 134217728 0 0 +( 916 146 295 ) ( 916 146 296 ) ( 916 139 294 ) metals/mt_pv_m26y -2 20 -160 1.000264 -1.000156 134217728 0 0 +} +// brush 1084 +{ +( 920 143 292 ) ( 919 143 292 ) ( 919 136 292 ) bricks/c_sr_m9a 0 -32 0 0.250000 0.250000 134217728 0 0 +( 919 136 294 ) ( 919 143 294 ) ( 920 143 294 ) bricks/c_sr_m9a 0 -32 0 0.250000 0.250000 134217728 0 0 +( 919 136 294 ) ( 920 136 294 ) ( 920 136 292 ) bricks/c_sr_m9a 0 0 0 0.250000 0.250000 134217728 0 0 +( 920 136 294 ) ( 920 143 294 ) ( 920 143 292 ) bricks/c_sr_m9a 32 0 0 0.250000 0.250000 134217728 0 0 +( 920 143 294 ) ( 919 143 294 ) ( 919 143 292 ) bricks/c_sr_m9a 0 0 0 0.250000 0.250000 134217728 0 0 +( 919 143 294 ) ( 919 136 294 ) ( 919 136 292 ) bricks/c_sr_m9a 32 0 0 0.250000 0.250000 134217728 0 0 +} +// brush 1085 +{ +( 816 128 256 ) ( 792 128 256 ) ( 792 64 256 ) metals/m_hl_c10b 0 0 0 1 1 0 0 0 +( 792 64 304 ) ( 792 128 304 ) ( 816 128 304 ) metals/m_hl_c10b 0 0 0 1 1 0 16777216 0 +( 792 65 320 ) ( 816 65 320 ) ( 816 65 256 ) metals/m_hl_c10b 0 0 0 1 1 0 16777216 0 +( 816 64 320 ) ( 816 128 320 ) ( 816 128 256 ) props/filec_m1 19 -16 0 0.850000 0.700000 0 16777216 0 +( 812 94 320 ) ( 788 94 320 ) ( 788 94 256 ) metals/m_hl_c10b 0 0 0 1 1 0 16777216 0 +( 792 128 320 ) ( 792 64 320 ) ( 792 64 256 ) metals/m_hl_c10b 0 0 0 1 1 0 0 0 +} +// brush 1086 +{ +( 1152 -568 320 ) ( 1144 -568 320 ) ( 1144 -576 320 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( 1144 -576 384 ) ( 1152 -576 384 ) ( 1152 -576 320 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( 1152 -576 384 ) ( 1152 -568 384 ) ( 1152 -568 320 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 1152 -573 384 ) ( 1144 -573 384 ) ( 1144 -573 320 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( 1144 -568 384 ) ( 1144 -576 384 ) ( 1144 -576 320 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 1150 -576 418 ) ( 1144 -576 418 ) ( 1147 -573 418 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +} +// brush 1087 +{ +( 1152 -504 320 ) ( 1144 -504 320 ) ( 1144 -512 320 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( 1144 -512 384 ) ( 1152 -512 384 ) ( 1152 -512 320 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( 1152 -512 384 ) ( 1152 -504 384 ) ( 1152 -504 320 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 1152 -509 384 ) ( 1144 -509 384 ) ( 1144 -509 320 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( 1144 -504 384 ) ( 1144 -512 384 ) ( 1144 -512 320 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 1150 -512 418 ) ( 1144 -512 418 ) ( 1147 -509 418 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +} +// brush 1088 +{ +( 1144 -456 320 ) ( 1152 -456 320 ) ( 1152 -448 320 ) metals/mt_pv_m26y 8 0 -180 1 1 0 0 0 +( 1152 -448 384 ) ( 1144 -448 384 ) ( 1144 -448 320 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1144 -448 384 ) ( 1144 -456 384 ) ( 1144 -456 320 ) floors/fl_pv_m13 0 0 -180 1 -1 0 0 0 +( 1144 -451 384 ) ( 1152 -451 384 ) ( 1152 -451 320 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1152 -456 384 ) ( 1152 -448 384 ) ( 1152 -448 320 ) floors/fl_pv_m13 0 0 -180 1 -1 0 0 0 +( 1150 -451 418 ) ( 1144 -451 418 ) ( 1147 -448 418 ) floors/fl_pv_m13 0 0 -180 1 -1 0 0 0 +} +// brush 1089 +{ +( 1152 -378 386 ) ( 1144 -378 386 ) ( 1144 -386 386 ) metals/mt_pv_m26y 0 -2 0 1 1 0 0 0 +( 1144 -386 384 ) ( 1152 -386 384 ) ( 1152 -386 320 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( 1152 -386 384 ) ( 1152 -378 384 ) ( 1152 -378 320 ) floors/fl_pv_m13 2 0 0 1 1 0 0 0 +( 1152 -383 384 ) ( 1144 -383 384 ) ( 1144 -383 320 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( 1144 -378 384 ) ( 1144 -386 384 ) ( 1144 -386 320 ) floors/fl_pv_m13 2 0 0 1 1 0 0 0 +( 1150 -386 418 ) ( 1144 -386 418 ) ( 1147 -383 418 ) floors/fl_pv_m13 2 0 0 1 1 0 0 0 +} +// brush 1090 +{ +( 1152 -312 320 ) ( 1144 -312 320 ) ( 1144 -320 320 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( 1144 -320 384 ) ( 1152 -320 384 ) ( 1152 -320 320 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( 1152 -320 384 ) ( 1152 -312 384 ) ( 1152 -312 320 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 1152 -317 384 ) ( 1144 -317 384 ) ( 1144 -317 320 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( 1144 -312 384 ) ( 1144 -320 384 ) ( 1144 -320 320 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 1150 -320 418 ) ( 1144 -320 418 ) ( 1147 -317 418 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +} +// brush 1091 +{ +( 1152 -252 320 ) ( 1144 -252 320 ) ( 1144 -260 320 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 1144 -259 384 ) ( 1152 -259 384 ) ( 1152 -259 320 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 1152 -260 384 ) ( 1152 -252 384 ) ( 1152 -252 320 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 1152 -252 384 ) ( 1144 -252 384 ) ( 1144 -252 320 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 1144 -252 384 ) ( 1144 -260 384 ) ( 1144 -260 320 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 1150 -259 418 ) ( 1144 -259 418 ) ( 1147 -252 418 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +} +// brush 1092 +{ +( 1152 -192 320 ) ( 1144 -192 320 ) ( 1144 -200 320 ) metals/mt_pv_m26y 0 24 0 1 1 0 0 0 +( 1144 -195 384 ) ( 1152 -195 384 ) ( 1152 -195 320 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( 1152 -200 384 ) ( 1152 -192 384 ) ( 1152 -192 320 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 1152 -192 384 ) ( 1144 -192 384 ) ( 1144 -192 320 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( 1144 -192 384 ) ( 1144 -200 384 ) ( 1144 -200 320 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 1150 -195 418 ) ( 1144 -195 418 ) ( 1147 -192 418 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +} +// brush 1093 +{ +( 1152 -586 416 ) ( 1144 -586 416 ) ( 1144 -714 416 ) metals/mt_pv_m26y 7 -3 -180 1 -1 0 0 0 +( 1144 -707 418 ) ( 1144 -579 418 ) ( 1152 -579 418 ) metals/mt_pv_m26y 7 -3 -180 1 -1 0 0 0 +( 1152 -819 472 ) ( 1152 -691 472 ) ( 1152 -691 352 ) metals/mt_pv_m26y -28 0 -180 1 -1 0 0 0 +( 1144 -579 472 ) ( 1144 -707 472 ) ( 1144 -707 352 ) metals/mt_pv_m26y -28 0 -180 1 -1 0 0 0 +( 1149 -573 416 ) ( 1144 -573 416 ) ( 1147 -573 418 ) metals/mt_pv_m26y 7 0 -180 1 -1 0 0 0 +( 1145 -515 416 ) ( 1149 -515 416 ) ( 1147 -515 418 ) metals/mt_pv_m26y 7 0 -180 1 -1 0 0 0 +} +// brush 1094 +{ +( 1152 -522 416 ) ( 1144 -522 416 ) ( 1144 -650 416 ) metals/mt_pv_m26y 7 -3 -180 1 -1 0 0 0 +( 1144 -643 418 ) ( 1144 -515 418 ) ( 1152 -515 418 ) metals/mt_pv_m26y 7 -3 -180 1 -1 0 0 0 +( 1152 -755 472 ) ( 1152 -627 472 ) ( 1152 -627 352 ) metals/mt_pv_m26y -28 0 -180 1 -1 0 0 0 +( 1144 -515 472 ) ( 1144 -643 472 ) ( 1144 -643 352 ) metals/mt_pv_m26y -28 0 -180 1 -1 0 0 0 +( 1149 -509 416 ) ( 1144 -509 416 ) ( 1147 -509 418 ) metals/mt_pv_m26y 7 0 -180 1 -1 0 0 0 +( 1145 -451 416 ) ( 1149 -451 416 ) ( 1147 -451 418 ) metals/mt_pv_m26y 7 0 -180 1 -1 0 0 0 +} +// brush 1095 +{ +( 1152 -457 416 ) ( 1144 -457 416 ) ( 1144 -585 416 ) metals/mt_pv_m26y 7 -2 -180 1 -1 0 0 0 +( 1144 -578 418 ) ( 1144 -450 418 ) ( 1152 -450 418 ) metals/mt_pv_m26y 7 -2 -180 1 -1 0 0 0 +( 1152 -690 472 ) ( 1152 -562 472 ) ( 1152 -562 352 ) metals/mt_pv_m26y 5 0 -180 1 -1 0 0 0 +( 1144 -450 472 ) ( 1144 -578 472 ) ( 1144 -578 352 ) metals/mt_pv_m26y 5 0 -180 1 -1 0 0 0 +( 1149 -448 416 ) ( 1144 -448 416 ) ( 1147 -448 418 ) metals/mt_pv_m26y 7 0 -180 1 -1 0 0 0 +( 1145 -386 416 ) ( 1149 -386 416 ) ( 1147 -386 418 ) metals/mt_pv_m26y 7 0 -180 1 -1 0 0 0 +} +// brush 1096 +{ +( 1152 -391 416 ) ( 1144 -391 416 ) ( 1144 -519 416 ) metals/mt_pv_m26y 7 0 -180 1 -1 0 0 0 +( 1144 -512 418 ) ( 1144 -384 418 ) ( 1152 -384 418 ) metals/mt_pv_m26y 7 0 -180 1 -1 0 0 0 +( 1152 -624 472 ) ( 1152 -496 472 ) ( 1152 -496 352 ) metals/mt_pv_m26y 7 0 -180 1 -1 0 0 0 +( 1144 -384 472 ) ( 1144 -512 472 ) ( 1144 -512 352 ) metals/mt_pv_m26y 7 0 -180 1 -1 0 0 0 +( 1149 -383 416 ) ( 1144 -383 416 ) ( 1147 -383 418 ) metals/mt_pv_m26y 7 0 -180 1 -1 0 0 0 +( 1145 -320 416 ) ( 1149 -320 416 ) ( 1147 -320 418 ) metals/mt_pv_m26y 7 0 -180 1 -1 0 0 0 +} +// brush 1097 +{ +( 1152 -263 416 ) ( 1144 -263 416 ) ( 1144 -391 416 ) metals/mt_pv_m26y 6 0 -180 1 -1 0 0 0 +( 1144 -384 418 ) ( 1144 -256 418 ) ( 1152 -256 418 ) metals/mt_pv_m26y 6 0 -180 1 -1 0 0 0 +( 1152 -496 472 ) ( 1152 -368 472 ) ( 1152 -368 352 ) metals/mt_pv_m26y 7 0 -180 1 -1 0 0 0 +( 1144 -256 472 ) ( 1144 -384 472 ) ( 1144 -384 352 ) metals/mt_pv_m26y 7 0 -180 1 -1 0 0 0 +( 1149 -253 416 ) ( 1144 -253 416 ) ( 1147 -253 418 ) metals/mt_pv_m26y 7 0 -180 1 -1 0 0 0 +( 1145 -195 416 ) ( 1149 -195 416 ) ( 1147 -195 418 ) metals/mt_pv_m26y 7 0 -180 1 -1 0 0 0 +} +// brush 1098 +{ +( 1152 -327 416 ) ( 1144 -327 416 ) ( 1144 -455 416 ) metals/mt_pv_m26y 7 0 -180 1 -1 0 0 0 +( 1144 -448 418 ) ( 1144 -320 418 ) ( 1152 -320 418 ) metals/mt_pv_m26y 7 0 -180 1 -1 0 0 0 +( 1152 -560 472 ) ( 1152 -432 472 ) ( 1152 -432 352 ) metals/mt_pv_m26y 7 0 -180 1 -1 0 0 0 +( 1144 -320 472 ) ( 1144 -448 472 ) ( 1144 -448 352 ) metals/mt_pv_m26y 7 0 -180 1 -1 0 0 0 +( 1149 -317 416 ) ( 1144 -317 416 ) ( 1147 -317 418 ) metals/mt_pv_m26y 7 0 -180 1 -1 0 0 0 +( 1145 -259 416 ) ( 1149 -259 416 ) ( 1147 -259 418 ) metals/mt_pv_m26y 7 0 -180 1 -1 0 0 0 +} +// brush 1099 +{ +( 960 -552 256 ) ( 816 -552 256 ) ( 816 -576 256 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +( 816 -576 264 ) ( 816 -552 264 ) ( 960 -552 264 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +( 816 -576 264 ) ( 960 -576 264 ) ( 960 -576 72 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +( 960 -576 264 ) ( 960 -552 264 ) ( 960 -552 72 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +( 960 -552 264 ) ( 816 -552 264 ) ( 816 -552 72 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +( 816 -552 264 ) ( 816 -576 264 ) ( 816 -576 72 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +} +// brush 1100 +{ +( 960 -552 312 ) ( 816 -552 312 ) ( 816 -576 312 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +( 816 -576 320 ) ( 816 -552 320 ) ( 960 -552 320 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +( 816 -576 320 ) ( 960 -576 320 ) ( 960 -576 128 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +( 960 -576 320 ) ( 960 -552 320 ) ( 960 -552 128 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +( 960 -552 320 ) ( 816 -552 320 ) ( 816 -552 128 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +( 816 -552 320 ) ( 816 -576 320 ) ( 816 -576 128 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +} +// brush 1101 +{ +( 960 -552 384 ) ( 816 -552 384 ) ( 816 -576 384 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +( 816 -576 392 ) ( 816 -552 392 ) ( 960 -552 392 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +( 816 -576 392 ) ( 960 -576 392 ) ( 960 -576 200 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +( 960 -576 392 ) ( 960 -552 392 ) ( 960 -552 200 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +( 960 -552 392 ) ( 816 -552 392 ) ( 816 -552 200 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +( 816 -552 392 ) ( 816 -576 392 ) ( 816 -576 200 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +} +// brush 1102 +{ +( 960 -552 440 ) ( 816 -552 440 ) ( 816 -576 440 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +( 816 -576 448 ) ( 816 -552 448 ) ( 960 -552 448 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +( 816 -576 448 ) ( 960 -576 448 ) ( 960 -576 256 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +( 960 -576 448 ) ( 960 -552 448 ) ( 960 -552 256 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +( 960 -552 448 ) ( 816 -552 448 ) ( 816 -552 256 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +( 816 -552 448 ) ( 816 -576 448 ) ( 816 -576 256 ) wood/wd_sr_m3a 0 0 90 1 1 0 0 0 +} +// brush 1103 +{ +( 968 -552 256 ) ( 960 -552 256 ) ( 960 -576 256 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( 960 -576 448 ) ( 960 -552 448 ) ( 968 -552 448 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( 960 -576 304 ) ( 968 -576 304 ) ( 968 -576 256 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( 968 -576 304 ) ( 968 -552 304 ) ( 968 -552 256 ) wood/wd_sr_m3a 2 0 0 1 1 0 0 0 +( 968 -552 304 ) ( 960 -552 304 ) ( 960 -552 256 ) wood/wd_sr_m3a 2 0 0 1 1 0 0 0 +( 960 -552 304 ) ( 960 -576 304 ) ( 960 -576 256 ) wood/wd_sr_m3a 2 0 0 1 1 0 0 0 +} +// brush 1104 +{ +( 816 -552 256 ) ( 808 -552 256 ) ( 808 -576 256 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( 808 -576 448 ) ( 808 -552 448 ) ( 816 -552 448 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( 808 -576 304 ) ( 816 -576 304 ) ( 816 -576 256 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( 816 -576 304 ) ( 816 -552 304 ) ( 816 -552 256 ) wood/wd_sr_m3a 2 0 0 1 1 0 0 0 +( 816 -552 304 ) ( 808 -552 304 ) ( 808 -552 256 ) wood/wd_sr_m3a -1 0 0 1 1 0 0 0 +( 808 -552 304 ) ( 808 -576 304 ) ( 808 -576 256 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +} +// brush 1105 +{ +( 840 -488 488 ) ( 808 -488 488 ) ( 808 -528 488 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 8388608 0 +( 808 -528 512 ) ( 808 -488 512 ) ( 840 -488 512 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 8388608 0 +( 808 -528 512 ) ( 840 -528 512 ) ( 840 -528 256 ) metals/mt_sr_v17 0 4 0 1 1 134217728 8388608 0 +( 1128 -520 512 ) ( 1128 -480 512 ) ( 1128 -480 256 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 8388608 0 +( 840 -488 512 ) ( 808 -488 512 ) ( 808 -488 256 ) metals/mt_sr_v17 0 4 0 1 1 134217728 8388608 0 +( 808 -488 512 ) ( 808 -528 512 ) ( 808 -528 256 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 8388608 0 +} +// brush 1106 +{ +( 880 -504 456 ) ( 808 -504 456 ) ( 808 -512 456 ) sprites/rail_v2 24 -16 0 1 1 134217856 4096 0 +( 808 -512 488 ) ( 808 -504 488 ) ( 880 -504 488 ) sprites/rail_v2 24 -16 0 1 1 134217856 4096 0 +( 808 -512 464 ) ( 880 -512 464 ) ( 880 -512 456 ) sprites/rail_v2 24 8 0 1 1 134217856 4096 0 +( 1128 -504 464 ) ( 1128 -496 464 ) ( 1128 -496 456 ) sprites/rail_v2 48 8 0 1 1 134217856 4096 0 +( 880 -504 464 ) ( 808 -504 464 ) ( 808 -504 456 ) sprites/rail_v2 24 8 0 1 1 134217856 4096 0 +( 808 -504 464 ) ( 808 -512 464 ) ( 808 -512 456 ) sprites/rail_v2 48 8 0 1 1 134217856 4096 0 +} +// brush 1107 +{ +( 1128 -500 448 ) ( 1104 -500 448 ) ( 1104 -516 448 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 8388608 0 +( 1104 -516 456 ) ( 1104 -500 456 ) ( 1128 -500 456 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 8388608 0 +( 1000 -516 480 ) ( 1024 -516 480 ) ( 1024 -516 448 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 8388608 0 +( 1128 -516 480 ) ( 1128 -500 480 ) ( 1128 -500 448 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 8388608 0 +( 1128 -500 480 ) ( 1104 -500 480 ) ( 1104 -500 448 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 8388608 0 +( 808 -504 480 ) ( 808 -520 480 ) ( 808 -520 448 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 8388608 0 +} +// brush 1108 +{ +( 1096 -512 320 ) ( 1032 -512 320 ) ( 1032 -576 320 ) props/box_sr_m6 -8 0 0 1 1 0 134217728 0 +( 1032 -576 384 ) ( 1032 -512 384 ) ( 1096 -512 384 ) props/box_sr_m5 -8 0 0 1 1 0 134217728 0 +( 1032 -576 384 ) ( 1096 -576 384 ) ( 1096 -576 320 ) props/box_sr_m6 -8 0 0 1 1 0 134217728 0 +( 1096 -576 384 ) ( 1096 -512 384 ) ( 1096 -512 320 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1096 -512 384 ) ( 1032 -512 384 ) ( 1032 -512 320 ) props/box_sr_m6 -8 0 0 1 1 0 134217728 0 +( 1032 -512 384 ) ( 1032 -576 384 ) ( 1032 -576 320 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +} +// brush 1109 +{ +( 1080 -512 256 ) ( 1016 -512 256 ) ( 1016 -576 256 ) props/box_sr_m6 -56 0 0 1 1 0 134217728 0 +( 1016 -576 320 ) ( 1016 -512 320 ) ( 1080 -512 320 ) props/box_sr_m5 8 0 0 1 1 0 134217728 0 +( 1016 -576 320 ) ( 1080 -576 320 ) ( 1080 -576 256 ) props/box_sr_m6 -56 0 0 1 1 0 134217728 0 +( 1080 -576 320 ) ( 1080 -512 320 ) ( 1080 -512 256 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1080 -512 320 ) ( 1016 -512 320 ) ( 1016 -512 256 ) props/box_sr_m6 -56 0 0 1 1 0 134217728 0 +( 1016 -512 320 ) ( 1016 -576 320 ) ( 1016 -576 256 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +} +// brush 1110 +{ +( 768 256 512 ) ( 768 272 512 ) ( 1152 272 512 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 768 256 512 ) ( 1152 256 512 ) ( 1152 256 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1128 256 512 ) ( 1128 272 512 ) ( 1128 272 256 ) metals/m_pv_v5 0 8 0 1 1 0 0 0 +( 1152 272 512 ) ( 768 272 512 ) ( 768 272 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 808 272 512 ) ( 808 256 512 ) ( 808 256 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1120 256 384 ) ( 1152 256 384 ) ( 1136 272 384 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 1111 +{ +( 1152 272 240 ) ( 768 272 240 ) ( 768 256 240 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 768 256 512 ) ( 1152 256 512 ) ( 1152 256 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1128 256 512 ) ( 1128 272 512 ) ( 1128 272 256 ) metals/m_pv_v5 0 8 0 1 1 0 16777216 0 +( 1224 264 512 ) ( 840 264 512 ) ( 840 264 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 808 272 512 ) ( 808 256 512 ) ( 808 256 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1152 256 384 ) ( 1128 256 384 ) ( 1140 272 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 1112 +{ +( 1144 -512 256 ) ( 1080 -512 256 ) ( 1080 -576 256 ) props/box_sr_m11 -56 0 0 1 1 0 134217728 0 +( 1080 -576 320 ) ( 1080 -512 320 ) ( 1144 -512 320 ) props/box_sr_m11 -56 0 0 1 1 0 134217728 0 +( 1080 -576 320 ) ( 1144 -576 320 ) ( 1144 -576 256 ) props/box_sr_m11 -56 0 0 1 1 0 134217728 0 +( 1144 -576 320 ) ( 1144 -512 320 ) ( 1144 -512 256 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 1144 -512 320 ) ( 1080 -512 320 ) ( 1080 -512 256 ) props/box_sr_m11 -56 0 0 1 1 0 134217728 0 +( 1080 -512 320 ) ( 1080 -576 320 ) ( 1080 -576 256 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +} +// brush 1113 +{ +( 936 -294 320 ) ( 878 -320 320 ) ( 904 -378 320 ) props/box_sr_m6 31 -8 23 1.000015 0.999988 0 134217728 0 +( 904 -378 384 ) ( 878 -320 384 ) ( 936 -294 384 ) props/box_sr_m6 19 3 23 1 1 0 134217728 0 +( 904 -378 384 ) ( 962 -352 384 ) ( 962 -352 320 ) props/box_sr_m6 -28 0 0 0.913452 1 0 134217728 0 +( 962 -352 384 ) ( 936 -294 384 ) ( 936 -294 320 ) props/box_sr_m6 1 0 0 0.913513 1 0 134217728 0 +( 936 -294 384 ) ( 878 -320 384 ) ( 878 -320 320 ) props/box_sr_m6 0 0 0 0.913452 1 0 134217728 0 +( 878 -320 384 ) ( 904 -378 384 ) ( 904 -378 320 ) props/box_sr_m6 30 0 0 0.913513 1 0 134217728 0 +} +// brush 1114 +{ +( 960 -352 256 ) ( 896 -352 256 ) ( 896 -416 256 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 896 -416 320 ) ( 896 -352 320 ) ( 960 -352 320 ) props/box_sr_m5 -64 32 0 1 1 0 134217728 0 +( 896 -416 320 ) ( 960 -416 320 ) ( 960 -416 256 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 960 -416 320 ) ( 960 -352 320 ) ( 960 -352 256 ) props/box_sr_m6 32 0 0 1 1 0 134217728 0 +( 960 -352 320 ) ( 896 -352 320 ) ( 896 -352 256 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 896 -352 320 ) ( 896 -416 320 ) ( 896 -416 256 ) props/box_sr_m6 32 0 0 1 1 0 134217728 0 +} +// brush 1115 +{ +( 968 -288 256 ) ( 904 -288 256 ) ( 904 -352 256 ) props/box_sr_m6 32 0 0 1 1 0 134217728 0 +( 904 -352 320 ) ( 904 -288 320 ) ( 968 -288 320 ) props/box_sr_m5 -10 32 0 1 1 0 134217728 0 +( 904 -352 320 ) ( 968 -352 320 ) ( 968 -352 256 ) props/box_sr_m6 32 0 0 1 1 0 134217728 0 +( 968 -352 320 ) ( 968 -288 320 ) ( 968 -288 256 ) props/box_sr_m6 32 0 0 1 1 0 134217728 0 +( 968 -288 320 ) ( 904 -288 320 ) ( 904 -288 256 ) props/box_sr_m6 32 0 0 1 1 0 134217728 0 +( 904 -288 320 ) ( 904 -352 320 ) ( 904 -352 256 ) props/box_sr_m6 32 0 0 1 1 0 134217728 0 +} +// brush 1116 +{ +( 992 -192 320 ) ( 928 -192 320 ) ( 928 -256 320 ) props/box_sr_m11 -32 0 0 1 1 0 134217728 0 +( 928 -256 384 ) ( 928 -192 384 ) ( 992 -192 384 ) props/box_sr_m11 -32 0 0 1 1 0 134217728 0 +( 928 -256 384 ) ( 992 -256 384 ) ( 992 -256 320 ) props/box_sr_m11 -32 0 0 1 1 0 134217728 0 +( 992 -256 384 ) ( 992 -192 384 ) ( 992 -192 320 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 992 -192 384 ) ( 928 -192 384 ) ( 928 -192 320 ) props/box_sr_m11 -32 0 0 1 1 0 134217728 0 +( 928 -192 384 ) ( 928 -256 384 ) ( 928 -256 320 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +} +// brush 1117 +{ +( 992 -224 256 ) ( 928 -224 256 ) ( 928 -288 256 ) props/box_sr_m11 -32 -32 0 1 1 0 134217728 0 +( 928 -288 320 ) ( 928 -224 320 ) ( 992 -224 320 ) props/box_sr_m11 -32 -32 0 1 1 0 134217728 0 +( 928 -288 320 ) ( 992 -288 320 ) ( 992 -288 256 ) props/box_sr_m11 -32 0 0 1 1 0 134217728 0 +( 992 -288 320 ) ( 992 -224 320 ) ( 992 -224 256 ) props/box_sr_m11 32 0 0 1 1 0 134217728 0 +( 992 -224 320 ) ( 928 -224 320 ) ( 928 -224 256 ) props/box_sr_m11 -32 0 0 1 1 0 134217728 0 +( 928 -224 320 ) ( 928 -288 320 ) ( 928 -288 256 ) props/box_sr_m11 32 0 0 1 1 0 134217728 0 +} +// brush 1118 +{ +( 922 -92 320 ) ( 868 -126 320 ) ( 902 -180 320 ) props/box_sr_m5 34 -54 31 1.000092 0.999978 0 134217728 0 +( 902 -180 384 ) ( 868 -126 384 ) ( 922 -92 384 ) props/box_sr_m5 24 -42 31 1 1 0 134217728 0 +( 902 -180 384 ) ( 956 -146 384 ) ( 956 -146 320 ) props/box_sr_m5 -38 0 0 0.848022 1 0 134217728 0 +( 956 -146 384 ) ( 922 -92 384 ) ( 922 -92 320 ) props/box_sr_m5 44 0 0 0.848053 1 0 134217728 0 +( 922 -92 384 ) ( 868 -126 384 ) ( 868 -126 320 ) props/box_sr_m5 -62 0 0 0.847961 1 0 134217728 0 +( 868 -126 384 ) ( 902 -180 384 ) ( 902 -180 320 ) props/box_sr_m5 20 0 0 0.848045 1 0 134217728 0 +} +// brush 1119 +{ +( 968 -96 256 ) ( 904 -96 256 ) ( 904 -160 256 ) props/box_sr_m6 -8 32 0 1 1 0 134217728 0 +( 904 -160 320 ) ( 904 -96 320 ) ( 968 -96 320 ) props/box_sr_m5 -14 -32 0 1 1 0 134217728 0 +( 904 -160 320 ) ( 968 -160 320 ) ( 968 -160 256 ) props/box_sr_m6 -8 0 0 1 1 0 134217728 0 +( 968 -160 320 ) ( 968 -96 320 ) ( 968 -96 256 ) props/box_sr_m6 -32 0 0 1 1 0 134217728 0 +( 968 -96 320 ) ( 904 -96 320 ) ( 904 -96 256 ) props/box_sr_m6 -8 0 0 1 1 0 134217728 0 +( 904 -96 320 ) ( 904 -160 320 ) ( 904 -160 256 ) props/box_sr_m6 -32 0 0 1 1 0 134217728 0 +} +// brush 1120 +{ +( 968 -160 256 ) ( 904 -160 256 ) ( 904 -224 256 ) props/box_sr_m11 -8 -32 0 1 1 0 134217728 0 +( 904 -224 320 ) ( 904 -160 320 ) ( 968 -160 320 ) props/box_sr_m11 -8 -32 0 1 1 0 134217728 0 +( 904 -224 320 ) ( 968 -224 320 ) ( 968 -224 256 ) props/box_sr_m11 -8 0 0 1 1 0 134217728 0 +( 968 -224 320 ) ( 968 -160 320 ) ( 968 -160 256 ) props/box_sr_m11 32 0 0 1 1 0 134217728 0 +( 968 -160 320 ) ( 904 -160 320 ) ( 904 -160 256 ) props/box_sr_m11 -8 0 0 1 1 0 134217728 0 +( 904 -160 320 ) ( 904 -224 320 ) ( 904 -224 256 ) props/box_sr_m11 32 0 0 1 1 0 134217728 0 +} +// brush 1121 +{ +( 904 -128 256 ) ( 840 -128 256 ) ( 840 -192 256 ) props/box_sr_m6 -8 0 0 1 1 0 134217728 0 +( 840 -192 320 ) ( 840 -128 320 ) ( 904 -128 320 ) props/box_sr_m5 -8 0 0 1 1 0 134217728 0 +( 840 -192 320 ) ( 904 -192 320 ) ( 904 -192 256 ) props/box_sr_m6 -8 0 0 1 1 0 134217728 0 +( 904 -192 320 ) ( 904 -128 320 ) ( 904 -128 256 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 904 -128 320 ) ( 840 -128 320 ) ( 840 -128 256 ) props/box_sr_m6 -8 0 0 1 1 0 134217728 0 +( 840 -128 320 ) ( 840 -192 320 ) ( 840 -192 256 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +} +// brush 1122 +{ +( 1128 -284 448 ) ( 1104 -284 448 ) ( 1104 -300 448 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 8388608 0 +( 1104 -300 456 ) ( 1104 -284 456 ) ( 1128 -284 456 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 8388608 0 +( 1000 -300 480 ) ( 1024 -300 480 ) ( 1024 -300 448 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 8388608 0 +( 1128 -300 480 ) ( 1128 -284 480 ) ( 1128 -284 448 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 8388608 0 +( 1128 -284 480 ) ( 1104 -284 480 ) ( 1104 -284 448 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 8388608 0 +( 808 -288 480 ) ( 808 -304 480 ) ( 808 -304 448 ) metals/mt_pv_m26y 0 -24 0 1 1 134217728 8388608 0 +} +// brush 1123 +{ +( 880 -288 456 ) ( 808 -288 456 ) ( 808 -296 456 ) sprites/rail_v2 24 8 0 1 1 134217856 4096 0 +( 808 -296 488 ) ( 808 -288 488 ) ( 880 -288 488 ) sprites/rail_v2 24 8 0 1 1 134217856 4096 0 +( 808 -296 464 ) ( 880 -296 464 ) ( 880 -296 456 ) sprites/rail_v2 24 8 0 1 1 134217856 4096 0 +( 1128 -288 464 ) ( 1128 -280 464 ) ( 1128 -280 456 ) sprites/rail_v2 24 8 0 1 1 134217856 4096 0 +( 880 -288 464 ) ( 808 -288 464 ) ( 808 -288 456 ) sprites/rail_v2 24 8 0 1 1 134217856 4096 0 +( 808 -288 464 ) ( 808 -296 464 ) ( 808 -296 456 ) sprites/rail_v2 24 8 0 1 1 134217856 4096 0 +} +// brush 1124 +{ +( 904 -64 256 ) ( 840 -64 256 ) ( 840 -128 256 ) props/box_sr_m11 -8 0 0 1 1 0 134217728 0 +( 840 -128 320 ) ( 840 -64 320 ) ( 904 -64 320 ) props/box_sr_m11 -8 0 0 1 1 0 134217728 0 +( 840 -128 320 ) ( 904 -128 320 ) ( 904 -128 256 ) props/box_sr_m11 -8 0 0 1 1 0 134217728 0 +( 904 -128 320 ) ( 904 -64 320 ) ( 904 -64 256 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 904 -64 320 ) ( 840 -64 320 ) ( 840 -64 256 ) props/box_sr_m11 -8 0 0 1 1 0 134217728 0 +( 840 -64 320 ) ( 840 -128 320 ) ( 840 -128 256 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +} +// brush 1125 +{ +( 880 240 256 ) ( 880 244 256 ) ( 876 244 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 880 240 288 ) ( 876 240 288 ) ( 876 244 288 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 876 240 288 ) ( 880 240 288 ) ( 880 240 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 880 239 288 ) ( 880 244 288 ) ( 880 244 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 881 244 288 ) ( 875 244 288 ) ( 876 244 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 876 244 288 ) ( 876 239 288 ) ( 876 240 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +} +// brush 1126 +{ +( 932 244 256 ) ( 928 244 256 ) ( 928 240 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 928 240 288 ) ( 928 244 288 ) ( 932 244 288 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 928 240 296 ) ( 932 240 296 ) ( 932 240 288 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 932 240 296 ) ( 932 244 296 ) ( 932 244 288 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 932 244 296 ) ( 928 244 296 ) ( 928 244 288 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 928 244 296 ) ( 928 240 296 ) ( 928 240 288 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +} +// brush 1127 +{ +( 932 120 256 ) ( 928 120 256 ) ( 928 116 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 928 116 288 ) ( 928 120 288 ) ( 932 120 288 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 928 116 296 ) ( 932 116 296 ) ( 932 116 288 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 932 116 296 ) ( 932 120 296 ) ( 932 120 288 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 932 120 296 ) ( 928 120 296 ) ( 928 120 288 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 928 120 296 ) ( 928 116 296 ) ( 928 116 288 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +} +// brush 1128 +{ +( 880 120 256 ) ( 876 120 256 ) ( 876 116 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 876 116 288 ) ( 876 120 288 ) ( 880 120 288 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 876 116 296 ) ( 880 116 296 ) ( 880 116 288 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 880 116 296 ) ( 880 120 296 ) ( 880 120 288 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 880 120 296 ) ( 876 120 296 ) ( 876 120 288 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 876 120 296 ) ( 876 116 296 ) ( 876 116 288 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +} +// brush 1129 +{ +( 936 248 288 ) ( 872 248 288 ) ( 872 104 288 ) wood/wd_st_m3 29 -78 180 0.500000 0.500000 0 134217728 0 +( 872 104 292 ) ( 872 248 292 ) ( 936 248 292 ) wood/wd_st_m3 29 -78 180 0.500000 0.500000 0 134217728 0 +( 872 112 296 ) ( 936 112 296 ) ( 936 112 264 ) wood/wd_st_m3 29 -78 90 0.500000 0.500000 0 134217728 0 +( 936 104 296 ) ( 936 248 296 ) ( 936 248 264 ) wood/wd_st_m3 29 -78 90 0.500000 0.500000 0 134217728 0 +( 936 248 296 ) ( 872 248 296 ) ( 872 248 264 ) wood/wd_st_m3 29 -78 180 0.500000 0.500000 0 134217728 0 +( 872 248 296 ) ( 872 104 296 ) ( 872 104 264 ) wood/wd_st_m3 29 -78 90 0.500000 0.500000 0 134217728 0 +} +// brush 1130 +{ +( 856 40 384 ) ( 808 40 384 ) ( 808 16 384 ) metals/mt_sr_v17 0 0 0 1 1 0 8388608 0 +( 808 16 416 ) ( 808 40 416 ) ( 856 40 416 ) metals/mt_sr_v17 0 0 0 1 1 0 8388608 0 +( 808 28 352 ) ( 856 28 352 ) ( 856 28 288 ) metals/mt_sr_v17 0 0 0 1 1 0 8388608 0 +( 1128 24 352 ) ( 1128 48 352 ) ( 1128 48 288 ) metals/mt_sr_v17 0 0 0 1 1 0 8388608 0 +( 856 36 352 ) ( 808 36 352 ) ( 808 36 288 ) metals/mt_sr_v17 0 0 0 1 1 0 8388608 0 +( 808 40 352 ) ( 808 16 352 ) ( 808 16 288 ) metals/mt_sr_v17 0 0 0 1 1 0 8388608 0 +} +// brush 1131 +{ +( 816 0 240 ) ( 768 0 240 ) ( 768 -120 240 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 768 -120 256 ) ( 768 0 256 ) ( 816 0 256 ) bricks/c_sr_m8e 0 0 270 1 0.650000 0 0 0 +( 832 -512 256 ) ( 832 -512 240 ) ( 768 -576 240 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 768 256 240 ) ( 768 256 256 ) ( 768 -576 256 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 832 -512 240 ) ( 832 -512 256 ) ( 832 256 256 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 768 256 256 ) ( 768 256 240 ) ( 832 192 240 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +} +// brush 1132 +{ +( 816 0 240 ) ( 768 0 240 ) ( 768 -120 240 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 768 -120 256 ) ( 768 0 256 ) ( 816 0 256 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1152 -576 256 ) ( 1152 -576 240 ) ( 832 -576 240 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1152 -576 240 ) ( 1152 -576 256 ) ( 1088 -512 256 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 840 -512 240 ) ( 880 -512 240 ) ( 860 -512 256 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 768 -576 240 ) ( 832 -512 240 ) ( 800 -544 256 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +} +// brush 1133 +{ +( 816 0 240 ) ( 768 0 240 ) ( 768 -120 240 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 768 -120 256 ) ( 768 0 256 ) ( 816 0 256 ) bricks/c_sr_m8e 0 0 90 1 1 0 0 0 +( 1152 192 256 ) ( 1152 192 240 ) ( 1152 -576 240 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1152 -192 240 ) ( 1152 -192 256 ) ( 1088 -192 256 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1088 192 240 ) ( 1088 192 256 ) ( 1088 -512 256 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1152 -576 240 ) ( 1088 -512 240 ) ( 1120 -544 256 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +} +// brush 1134 +{ +( 816 0 240 ) ( 768 0 240 ) ( 768 -120 240 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +( 768 -120 256 ) ( 768 0 256 ) ( 816 0 256 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +( 768 256 256 ) ( 768 256 240 ) ( 1152 256 240 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +( 1152 192 240 ) ( 1152 192 256 ) ( 1152 256 256 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +( 768 256 240 ) ( 768 256 256 ) ( 832 192 256 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +( 1152 192 256 ) ( 1152 192 240 ) ( 832 192 240 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +} +// brush 1135 +{ +( 816 0 240 ) ( 768 0 240 ) ( 768 -120 240 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 768 -120 256 ) ( 768 0 256 ) ( 816 0 256 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1088 -528 240 ) ( 1088 -576 240 ) ( 1088 -552 256 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 832 -576 240 ) ( 832 -520 240 ) ( 832 -548 256 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 880 -512 240 ) ( 840 -512 240 ) ( 860 -512 256 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 832 192 240 ) ( 880 192 240 ) ( 856 192 256 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +} +// brush 1136 +{ +( 840 -272 488 ) ( 808 -272 488 ) ( 808 -312 488 ) metals/mt_pv_m26y 0 -8 0 1 1 134217728 0 0 +( 808 -312 512 ) ( 808 -272 512 ) ( 840 -272 512 ) metals/mt_sr_v17 0 4 0 1 1 134217728 0 0 +( 808 -312 512 ) ( 840 -312 512 ) ( 840 -312 256 ) metals/mt_sr_v17 0 4 0 1 1 134217728 8388608 0 +( 1128 -304 512 ) ( 1128 -264 512 ) ( 1128 -264 256 ) metals/mt_sr_v17 0 4 0 1 1 134217728 0 0 +( 840 -272 512 ) ( 808 -272 512 ) ( 808 -272 256 ) metals/mt_sr_v17 0 4 0 1 1 134217728 8388608 0 +( 808 -272 512 ) ( 808 -312 512 ) ( 808 -312 256 ) metals/mt_sr_v17 0 4 0 1 1 134217728 0 0 +} +// brush 1137 +{ +( 816 -448 256 ) ( 800 -448 256 ) ( 800 -512 256 ) metals/mt_sr_v19 64 0 0 1 1 0 8388608 0 +( 800 -576 384 ) ( 816 -576 384 ) ( 816 -576 256 ) metals/mt_sr_v19 64 0 0 1 1 0 8388608 0 +( 808 -512 384 ) ( 808 -448 384 ) ( 808 -448 256 ) metals/mt_sr_v19 64 0 0 1 1 0 8388608 0 +( 816 -448 384 ) ( 800 -448 384 ) ( 800 -448 256 ) metals/mt_sr_v19 64 0 0 1 1 0 8388608 0 +( 768 -448 384 ) ( 768 -512 384 ) ( 768 -512 256 ) metals/mt_sr_v19 64 0 0 1 1 0 8388608 0 +( 808 -576 384 ) ( 768 -576 384 ) ( 788 -448 384 ) metals/mt_sr_v19 64 0 0 1 1 0 8388608 0 +} +// brush 1138 +{ +( 800 -512 512 ) ( 800 -448 512 ) ( 816 -448 512 ) metals/mt_sr_v19 64 0 0 1 1 0 8388608 0 +( 800 -576 384 ) ( 816 -576 384 ) ( 816 -576 256 ) metals/mt_sr_v19 64 0 0 1 1 0 8388608 0 +( 808 -512 384 ) ( 808 -448 384 ) ( 808 -448 256 ) metals/mt_sr_v19 64 0 0 1 1 0 8388608 0 +( 816 -448 384 ) ( 800 -448 384 ) ( 800 -448 256 ) metals/mt_sr_v19 64 0 0 1 1 0 8388608 0 +( 768 -448 384 ) ( 768 -512 384 ) ( 768 -512 256 ) metals/mt_sr_v19 64 0 0 1 1 0 8388608 0 +( 768 -576 384 ) ( 808 -576 384 ) ( 788 -448 384 ) metals/mt_sr_v19 64 0 0 1 1 0 8388608 0 +} +// brush 1139 +{ +( 856 40 416 ) ( 808 40 416 ) ( 808 16 416 ) props/w_sr_m4a 8 64 0 1 -1 0 1 150 +( 808 16 448 ) ( 808 40 448 ) ( 856 40 448 ) props/w_sr_m4a 8 64 0 1 -1 0 1 150 +( 808 28 384 ) ( 856 28 384 ) ( 856 28 320 ) props/w_sr_m4a 8 64 0 1 -1 0 1 150 +( 1128 24 384 ) ( 1128 48 384 ) ( 1128 48 320 ) props/w_sr_m4a 8 64 0 1 -1 0 1 150 +( 856 36 384 ) ( 808 36 384 ) ( 808 36 320 ) props/w_sr_m4a 8 64 0 1 -1 0 1 150 +( 808 40 384 ) ( 808 16 384 ) ( 808 16 320 ) props/w_sr_m4a 8 64 0 1 -1 0 1 150 +} +// brush 1140 +{ +( 1128 40 256 ) ( 1088 40 256 ) ( 1088 24 256 ) metals/mt_pv_m7m 24 0 0 1 1 0 16777216 0 +( 1088 24 384 ) ( 1088 40 384 ) ( 1128 40 384 ) metals/mt_pv_m7m 24 0 0 1 1 0 16777216 0 +( 1088 28 384 ) ( 1128 28 384 ) ( 1128 28 256 ) metals/mt_pv_m7m 24 0 0 1 1 0 16777216 0 +( 1128 24 384 ) ( 1128 40 384 ) ( 1128 40 256 ) metals/mt_pv_m7m 24 0 0 1 1 0 16777216 0 +( 1128 36 384 ) ( 1088 36 384 ) ( 1088 36 256 ) metals/mt_pv_m7m 24 0 0 1 1 0 16777216 0 +( 1064 40 384 ) ( 1064 24 384 ) ( 1064 24 256 ) metals/mt_pv_m7m 24 0 0 1 1 0 16777216 0 +} +// brush 1141 +{ +( 856 40 448 ) ( 808 40 448 ) ( 808 16 448 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 808 16 512 ) ( 808 40 512 ) ( 856 40 512 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 808 16 512 ) ( 856 16 512 ) ( 856 16 448 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1128 16 512 ) ( 1128 40 512 ) ( 1128 40 448 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 856 48 512 ) ( 808 48 512 ) ( 808 48 448 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 808 40 512 ) ( 808 16 512 ) ( 808 16 448 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 1142 +{ +( 856 40 256 ) ( 808 40 256 ) ( 808 16 256 ) metals/mt_pv_m7m 24 0 0 1 1 0 16777216 0 +( 808 16 384 ) ( 808 40 384 ) ( 856 40 384 ) metals/mt_pv_m7m 24 0 0 1 1 0 16777216 0 +( 810 28 320 ) ( 858 28 320 ) ( 858 28 256 ) metals/mt_pv_m7m 24 0 0 1 1 0 16777216 0 +( 1000 16 320 ) ( 1000 40 320 ) ( 1000 40 256 ) metals/mt_pv_m7m 24 0 0 1 1 0 16777216 0 +( 856 36 320 ) ( 808 36 320 ) ( 808 36 256 ) metals/mt_pv_m7m 24 0 0 1 1 0 16777216 0 +( 808 40 320 ) ( 808 16 320 ) ( 808 16 256 ) metals/mt_pv_m7m 24 0 0 1 1 0 16777216 0 +} +// brush 1143 +{ +( 1480 -320 384 ) ( 1480 -192 384 ) ( 1480 -192 192 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1472 -192 384 ) ( 1472 -320 384 ) ( 1472 -320 192 ) common/li_sr_v27 16 8 0 1 1 0 1 5000 +( 1472 -496 200 ) ( 1488 -496 200 ) ( 1480 -448 200 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1480 -496 216 ) ( 1472 -496 216 ) ( 1476 -448 216 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1472 -464 200 ) ( 1480 -464 200 ) ( 1476 -464 216 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1480 -480 200 ) ( 1472 -480 200 ) ( 1476 -480 216 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +} +// brush 1144 +{ +( 1472 -496 384 ) ( 1480 -496 384 ) ( 1480 -496 192 ) bricks/b_sr_20 64 -42 0 1 1 0 0 0 +( 1480 -320 384 ) ( 1480 -192 384 ) ( 1480 -192 192 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1472 -192 384 ) ( 1472 -320 384 ) ( 1472 -320 192 ) bricks/c_pv_m2 0 64 0 1 1 0 0 0 +( 1472 -496 200 ) ( 1488 -496 200 ) ( 1480 -448 200 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1480 -496 216 ) ( 1472 -496 216 ) ( 1476 -448 216 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1472 -480 200 ) ( 1480 -480 200 ) ( 1476 -480 216 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +} +// brush 1145 +{ +( 1480 -320 384 ) ( 1480 -192 384 ) ( 1480 -192 192 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1472 -192 384 ) ( 1472 -320 384 ) ( 1472 -320 192 ) bricks/c_pv_m2 0 64 0 1 1 0 0 0 +( 1472 -448 192 ) ( 1480 -448 192 ) ( 1476 -448 256 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1472 -496 200 ) ( 1488 -496 200 ) ( 1480 -448 200 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1480 -496 216 ) ( 1472 -496 216 ) ( 1476 -448 216 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1480 -464 200 ) ( 1472 -464 200 ) ( 1476 -464 216 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +} +// brush 1146 +{ +( 1472 -496 384 ) ( 1480 -496 384 ) ( 1480 -496 192 ) bricks/b_sr_20 64 -42 0 1 1 0 0 0 +( 1480 -320 384 ) ( 1480 -192 384 ) ( 1480 -192 192 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1472 -192 384 ) ( 1472 -320 384 ) ( 1472 -320 192 ) bricks/c_pv_m2 0 64 0 1 1 0 0 0 +( 1192 -320 240 ) ( 1152 -320 240 ) ( 1172 -192 240 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1472 -448 192 ) ( 1480 -448 192 ) ( 1476 -448 256 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1472 -496 216 ) ( 1480 -496 216 ) ( 1476 -448 216 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +} +// brush 1147 +{ +( 1480 -192 192 ) ( 1472 -192 192 ) ( 1472 -320 192 ) bricks/b_sr_20 64 -42 0 1 1 0 0 0 +( 1472 -496 384 ) ( 1480 -496 384 ) ( 1480 -496 192 ) bricks/b_sr_20 64 -42 0 1 1 0 0 0 +( 1480 -320 384 ) ( 1480 -192 384 ) ( 1480 -192 192 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1472 -192 384 ) ( 1472 -320 384 ) ( 1472 -320 192 ) bricks/c_pv_m2 0 64 0 1 1 0 0 0 +( 1472 -448 192 ) ( 1480 -448 192 ) ( 1476 -448 256 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1488 -496 200 ) ( 1472 -496 200 ) ( 1480 -448 200 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +} +// brush 1148 +{ +( 1480 -192 192 ) ( 1472 -192 192 ) ( 1472 -320 192 ) bricks/b_sr_20 64 -42 0 1 1 0 0 0 +( 1480 -320 384 ) ( 1480 -192 384 ) ( 1480 -192 192 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1480 -192 384 ) ( 1472 -192 384 ) ( 1472 -192 192 ) bricks/b_sr_20 64 -42 0 1 1 0 0 0 +( 1472 -192 384 ) ( 1472 -320 384 ) ( 1472 -320 192 ) bricks/c_pv_m2 0 63 0 1 1 0 0 0 +( 1192 -320 240 ) ( 1152 -320 240 ) ( 1172 -192 240 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1480 -448 192 ) ( 1472 -448 192 ) ( 1476 -448 256 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +} +// brush 1149 +{ +( 1152 -192 384 ) ( 1280 -192 384 ) ( 1280 -192 272 ) bricks/c_pv_m2 0 63 0 1 1 0 0 0 +( 1280 -192 384 ) ( 1280 -184 384 ) ( 1280 -184 272 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1280 -184 384 ) ( 1152 -184 384 ) ( 1152 -184 272 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1152 -184 384 ) ( 1152 -192 384 ) ( 1152 -192 272 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1184 -192 256 ) ( 1152 -192 256 ) ( 1168 -184 256 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1152 -192 192 ) ( 1176 -192 192 ) ( 1164 -184 192 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +} +// brush 1150 +{ +( 1152 -327 384 ) ( 1144 -327 384 ) ( 1144 -455 384 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1144 -448 386 ) ( 1144 -320 386 ) ( 1152 -320 386 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1152 -560 440 ) ( 1152 -432 440 ) ( 1152 -432 320 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1152 -195 440 ) ( 1144 -195 440 ) ( 1144 -195 320 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1144 -320 440 ) ( 1144 -448 440 ) ( 1144 -448 320 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1149 -252 384 ) ( 1145 -252 384 ) ( 1147 -252 386 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +} +// brush 1151 +{ +( 1152 -327 384 ) ( 1144 -327 384 ) ( 1144 -455 384 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1144 -448 386 ) ( 1144 -320 386 ) ( 1152 -320 386 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1152 -560 440 ) ( 1152 -432 440 ) ( 1152 -432 320 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1144 -320 440 ) ( 1144 -448 440 ) ( 1144 -448 320 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1149 -317 384 ) ( 1144 -317 384 ) ( 1147 -317 386 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1145 -259 384 ) ( 1149 -259 384 ) ( 1147 -259 386 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +} +// brush 1152 +{ +( 1152 -327 384 ) ( 1144 -327 384 ) ( 1144 -455 384 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1144 -448 386 ) ( 1144 -320 386 ) ( 1152 -320 386 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1152 -560 440 ) ( 1152 -432 440 ) ( 1152 -432 320 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1144 -320 440 ) ( 1144 -448 440 ) ( 1144 -448 320 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1150 -386 384 ) ( 1144 -386 384 ) ( 1147 -386 386 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1144 -320 384 ) ( 1149 -320 384 ) ( 1147 -320 386 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +} +// brush 1153 +{ +( 1152 -327 384 ) ( 1144 -327 384 ) ( 1144 -455 384 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1144 -448 386 ) ( 1144 -320 386 ) ( 1152 -320 386 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1152 -560 440 ) ( 1152 -432 440 ) ( 1152 -432 320 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1144 -320 440 ) ( 1144 -448 440 ) ( 1144 -448 320 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1150 -448 384 ) ( 1145 -448 384 ) ( 1148 -448 386 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1144 -386 384 ) ( 1150 -386 384 ) ( 1147 -386 386 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +} +// brush 1154 +{ +( 1152 -327 384 ) ( 1144 -327 384 ) ( 1144 -455 384 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1144 -448 386 ) ( 1144 -320 386 ) ( 1152 -320 386 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1152 -560 440 ) ( 1152 -432 440 ) ( 1152 -432 320 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1144 -320 440 ) ( 1144 -448 440 ) ( 1144 -448 320 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1151 -509 384 ) ( 1144 -509 384 ) ( 1148 -509 386 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1145 -451 384 ) ( 1150 -451 384 ) ( 1148 -451 386 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +} +// brush 1155 +{ +( 1152 -327 384 ) ( 1144 -327 384 ) ( 1144 -455 384 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1144 -448 386 ) ( 1144 -320 386 ) ( 1152 -320 386 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1144 -573 440 ) ( 1152 -573 440 ) ( 1152 -573 320 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1152 -560 440 ) ( 1152 -432 440 ) ( 1152 -432 320 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1144 -320 440 ) ( 1144 -448 440 ) ( 1144 -448 320 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1144 -515 384 ) ( 1151 -515 384 ) ( 1148 -515 386 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +} +// brush 1156 +{ +( 1216 -192 256 ) ( 1152 -192 256 ) ( 1152 -256 256 ) props/box_w_m1a 0 0 0 1 1 0 0 0 +( 1152 -256 320 ) ( 1152 -192 320 ) ( 1216 -192 320 ) props/box_w_m2 0 0 0 1 1 0 134217728 0 +( 1152 -256 320 ) ( 1216 -256 320 ) ( 1216 -256 256 ) props/box_w_m1a 0 0 0 1 1 0 0 0 +( 1216 -256 320 ) ( 1216 -192 320 ) ( 1216 -192 256 ) props/box_w_m1a 0 0 0 1 1 0 0 0 +( 1216 -192 320 ) ( 1152 -192 320 ) ( 1152 -192 256 ) props/box_w_m1a 0 0 0 1 1 0 0 0 +( 1152 -192 320 ) ( 1152 -256 320 ) ( 1152 -256 256 ) props/box_w_m1a 0 0 0 1 1 0 0 0 +} +// brush 1157 +{ +( 1468 -509 256 ) ( 1405 -500 256 ) ( 1396 -563 256 ) props/box_w_m2 -11 -43 172 1.000086 -1.000056 0 134217728 0 +( 1396 -563 264 ) ( 1405 -500 264 ) ( 1468 -509 264 ) props/box_w_m2 17 -5 -7 1 1 0 134217728 0 +( 1396 -563 296 ) ( 1459 -572 296 ) ( 1459 -572 288 ) props/box_w_m1a 0 0 -180 0.991089 -1 0 134217728 0 +( 1459 -572 296 ) ( 1468 -509 296 ) ( 1468 -509 288 ) props/box_w_m1a -1 0 -180 0.991089 -1 0 134217728 0 +( 1468 -509 296 ) ( 1405 -500 296 ) ( 1405 -500 288 ) props/box_w_m1a -54 0 -180 0.991089 -1 0 134217728 0 +( 1405 -500 296 ) ( 1396 -563 296 ) ( 1396 -563 288 ) props/box_w_m1a 7 0 -180 0.990967 -1 0 134217728 0 +} +// brush 1158 +{ +( 1408 -544 480 ) ( 1360 -544 480 ) ( 1360 -576 480 ) metals/m_pv_v5 64 2 0 1 1 0 8389632 0 +( 1360 -576 512 ) ( 1360 -544 512 ) ( 1408 -544 512 ) metals/m_pv_v5 64 2 0 1 1 0 0 0 +( 1360 -576 512 ) ( 1408 -576 512 ) ( 1408 -576 448 ) metals/m_pv_v5 64 2 0 1 1 0 0 0 +( 1408 -576 512 ) ( 1408 -544 512 ) ( 1408 -544 448 ) metals/m_pv_v5 64 2 0 1 1 0 0 0 +( 1408 -544 512 ) ( 1360 -544 512 ) ( 1360 -544 448 ) metals/m_pv_v5 64 2 0 1 1 0 8389632 0 +( 1184 -552 512 ) ( 1184 -584 512 ) ( 1184 -584 448 ) metals/m_pv_v5 64 2 0 1 1 0 0 0 +} +// brush 1159 +{ +( 1472 -512 448 ) ( 1408 -512 448 ) ( 1408 -576 448 ) metals/m_pv_v5 -64 -62 0 1 1 0 16778240 0 +( 1408 -576 512 ) ( 1408 -512 512 ) ( 1472 -512 512 ) metals/m_pv_v5 -64 -62 0 1 1 0 0 0 +( 1408 -576 512 ) ( 1472 -576 512 ) ( 1472 -576 448 ) metals/m_pv_v5 -64 2 0 1 1 0 0 0 +( 1472 -576 512 ) ( 1472 -512 512 ) ( 1472 -512 448 ) metals/m_pv_v5 64 2 0 1 1 0 0 0 +( 1472 -512 512 ) ( 1408 -512 512 ) ( 1408 -512 448 ) metals/mt_pv_m11m 0 0 0 1 1 0 8389632 0 +( 1408 -512 512 ) ( 1408 -576 512 ) ( 1408 -576 448 ) metals/m_pv_v5 64 2 0 1 1 0 16778240 0 +} +// brush 1160 +{ +( 1470 -460 192 ) ( 1470 -452 192 ) ( 1462 -452 192 ) metals/mt_pv_m26y 20 -14 -180 1 -1 0 8388608 0 +( 1464 -460 240 ) ( 1464 -452 240 ) ( 1472 -452 240 ) metals/mt_pv_m26y 20 -14 -180 1 -1 0 8388608 0 +( 1460 -460 240 ) ( 1476 -460 240 ) ( 1476 -460 224 ) metals/mt_pv_m26y 20 -14 -180 1 -1 0 8388608 0 +( 1470 -452 192 ) ( 1470 -460 192 ) ( 1472 -460 240 ) metals/mt_pv_m26y 20 -14 -180 1 -1 0 8388608 0 +( 1476 -452 240 ) ( 1460 -452 240 ) ( 1460 -452 224 ) metals/mt_pv_m26y 20 -14 -180 1 -1 0 8388608 0 +( 1462 -460 192 ) ( 1462 -452 192 ) ( 1464 -452 240 ) metals/mt_pv_m26y 20 -14 -180 1 -1 0 8388608 0 +} +// brush 1161 +{ +( 1276 -312 192 ) ( 1260 -312 192 ) ( 1260 -328 192 ) metals/mt_pv_m26y 20 -14 -180 1 -1 134217728 8388608 0 +( 1260 -328 240 ) ( 1260 -312 240 ) ( 1276 -312 240 ) metals/mt_pv_m26y 20 -14 -180 1 -1 134217728 8388608 0 +( 1260 -328 240 ) ( 1276 -328 240 ) ( 1276 -328 224 ) metals/mt_pv_m26y 20 -14 -180 1 -1 134217728 8388608 0 +( 1276 -328 240 ) ( 1276 -312 240 ) ( 1276 -312 224 ) metals/mt_pv_m26y 20 -14 -180 1 -1 134217728 8388608 0 +( 1276 -320 240 ) ( 1260 -320 240 ) ( 1260 -320 224 ) metals/mt_pv_m26y 20 -14 -180 1 -1 134217728 8388608 0 +( 1268 -312 240 ) ( 1268 -328 240 ) ( 1268 -328 224 ) metals/mt_pv_m26y 20 -14 -180 1 -1 134217728 8388608 0 +} +// brush 1162 +{ +( 1216 -384 240 ) ( 1152 -384 240 ) ( 1152 -448 240 ) metals/m_pv_v4a 0 0 0 1 1 0 0 0 +( 1152 -448 256 ) ( 1152 -384 256 ) ( 1216 -384 256 ) metals/m_pv_v4a 0 0 0 1 1 0 8388608 0 +( 1152 -576 240 ) ( 1152 -576 256 ) ( 1280 -448 256 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1280 -352 256 ) ( 1280 -352 240 ) ( 1280 -448 240 ) metals/mt_pv_m26y 20 -14 -180 1 -1 0 8388608 0 +( 1152 -192 240 ) ( 1152 -192 256 ) ( 1152 -576 256 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1288 -192 240 ) ( 1296 -192 240 ) ( 1292 -192 256 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +} +// brush 1163 +{ +( 1380 -444 192 ) ( 1280 -444 192 ) ( 1280 -448 192 ) metals/mt_pv_m26y 20 -14 -180 1 -1 0 8388608 0 +( 1280 -448 256 ) ( 1280 -444 256 ) ( 1380 -444 256 ) metals/mt_pv_m26y 20 -14 -180 1 -1 0 8388608 0 +( 1280 -448 244 ) ( 1380 -448 244 ) ( 1380 -448 236 ) metals/mt_pv_m26y 20 -14 -180 1 -1 0 8388608 0 +( 1380 -448 244 ) ( 1380 -444 244 ) ( 1380 -444 236 ) metals/mt_pv_m26y 20 -14 -180 1 -1 0 8388608 0 +( 1380 -444 244 ) ( 1280 -444 244 ) ( 1280 -444 236 ) metals/mt_pv_m26y 20 -14 -180 1 -1 0 8388608 0 +( 1280 -444 244 ) ( 1280 -448 244 ) ( 1280 -448 236 ) metals/mt_pv_m26y 20 -14 -180 1 -1 0 8388608 0 +( 1380 -448 212 ) ( 1292 -448 256 ) ( 1336 -444 234 ) metals/mt_pv_m26y 20 -14 -180 1 -1 0 8388608 0 +( 1280 -448 240 ) ( 1368 -448 192 ) ( 1324 -444 216 ) metals/mt_pv_m26y 20 -14 -180 1 -1 0 8388608 0 +} +// brush 1164 +{ +( 1378 -360 206 ) ( 1354 -360 206 ) ( 1354 -444 204 ) metals/m_pv_v4a 80 -8 0 1 1 0 0 0 +( 1354 -360 210 ) ( 1378 -360 210 ) ( 1378 -444 208 ) metals/m_pv_v4a 80 -8 0 1 1 0 8388608 0 +( 1354 -444 208 ) ( 1370 -444 208 ) ( 1370 -444 192 ) metals/m_pv_v4a 80 -8 0 1 1 0 0 0 +( 1378 -440 208 ) ( 1378 -360 208 ) ( 1378 -360 192 ) metals/m_pv_v3 -24 -18 0 1 1 0 0 0 +( 1354 -358 206 ) ( 1378 -358 206 ) ( 1378 -358 210 ) metals/m_pv_v4a 80 -8 0 1 1 0 0 0 +( 1354 -364 208 ) ( 1354 -444 208 ) ( 1354 -444 192 ) metals/m_pv_v3 -24 -18 0 1 1 0 0 0 +} +// brush 1165 +{ +( 1345 -360 216 ) ( 1329 -360 216 ) ( 1331 -440 216 ) metals/m_pv_v4a 46 -46 2 0.999999 0.999999 0 0 0 +( 1331 -440 220 ) ( 1329 -360 220 ) ( 1345 -360 220 ) metals/m_pv_v4a 126 -54 2 1 1 0 8388608 0 +( 1331 -444 222 ) ( 1347 -444 222 ) ( 1347 -444 206 ) metals/m_pv_v4a 29 0 0 0.999390 1 0 0 0 +( 1355 -444 222 ) ( 1353 -364 222 ) ( 1353 -364 206 ) metals/m_pv_v3 -59 -5 0 0.999390 1 0 0 0 +( 1345 -358 222 ) ( 1329 -358 222 ) ( 1329 -358 206 ) metals/m_pv_v4a 32 0 0 0.999390 1 0 0 0 +( 1329 -364 222 ) ( 1331 -444 222 ) ( 1331 -444 206 ) metals/m_pv_v3 -58 -5 0 0.999390 1 0 0 0 +} +// brush 1166 +{ +( 1280 -444 242 ) ( 1304 -444 242 ) ( 1304 -358 244 ) metals/m_pv_v4a 32 0 0 1 1 0 0 0 +( 1304 -444 246 ) ( 1280 -444 246 ) ( 1280 -358 248 ) metals/m_pv_v4a 32 0 0 1 1 0 8388608 0 +( 1280 -444 246 ) ( 1304 -444 246 ) ( 1304 -444 242 ) metals/m_pv_v4a 32 0 0 1 1 0 0 0 +( 1304 -444 250 ) ( 1304 -364 250 ) ( 1304 -364 234 ) metals/m_pv_v3 -59 -10 0 1 1 0 0 0 +( 1296 -358 250 ) ( 1280 -358 250 ) ( 1280 -358 234 ) metals/m_pv_v4a 32 0 0 1 1 0 0 0 +( 1280 -360 250 ) ( 1280 -440 250 ) ( 1280 -440 234 ) metals/m_pv_v3 -59 -8 0 1 1 0 0 0 +} +// brush 1167 +{ +( 1472 -448 240 ) ( 1216 -448 240 ) ( 1216 -512 240 ) metals/m_pv_v4a 64 0 90 1 1 0 0 0 +( 1216 -512 256 ) ( 1216 -448 256 ) ( 1472 -448 256 ) metals/m_pv_v4a 64 0 90 1 1 0 8388608 0 +( 1216 -576 256 ) ( 1472 -576 256 ) ( 1472 -576 240 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1472 -512 256 ) ( 1472 -448 256 ) ( 1472 -448 240 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1472 -448 256 ) ( 1216 -448 256 ) ( 1216 -448 240 ) metals/mt_pv_m26y 20 -14 -180 1 -1 0 8388608 0 +( 1152 -576 240 ) ( 1280 -448 240 ) ( 1216 -512 256 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +} +// brush 1168 +{ +( 1472 -192 512 ) ( 1152 -192 512 ) ( 1152 -576 512 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1152 -576 528 ) ( 1152 -192 528 ) ( 1472 -192 528 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1152 -576 528 ) ( 1472 -576 528 ) ( 1472 -576 512 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1472 -576 528 ) ( 1472 -192 528 ) ( 1472 -192 512 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1472 -192 528 ) ( 1152 -192 528 ) ( 1152 -192 512 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1152 -192 528 ) ( 1152 -576 528 ) ( 1152 -576 512 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +} +// brush 1169 +{ +( 960 -128 512 ) ( 768 -128 512 ) ( 768 -248 512 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 768 -248 528 ) ( 768 -128 528 ) ( 960 -128 528 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 792 -704 528 ) ( 984 -704 528 ) ( 984 -704 512 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1152 -248 528 ) ( 1152 -128 528 ) ( 1152 -128 512 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 944 256 528 ) ( 752 256 528 ) ( 752 256 512 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 768 -128 528 ) ( 768 -248 528 ) ( 768 -248 512 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +} +// brush 1170 +{ +( 1150 -192 418 ) ( 1142 -192 418 ) ( 1142 -256 418 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1144 -256 512 ) ( 1144 -192 512 ) ( 1152 -192 512 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1144 -584 464 ) ( 1152 -584 464 ) ( 1152 -584 448 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1184 -256 464 ) ( 1184 -192 464 ) ( 1184 -192 448 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1152 -192 464 ) ( 1144 -192 464 ) ( 1144 -192 448 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1128 -192 464 ) ( 1128 -256 464 ) ( 1128 -256 448 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 1171 +{ +( 1480 -576 256 ) ( 1392 -576 256 ) ( 1392 -584 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1392 -584 384 ) ( 1392 -576 384 ) ( 1480 -576 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1400 -584 384 ) ( 1488 -584 384 ) ( 1488 -584 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1480 -584 384 ) ( 1480 -576 384 ) ( 1480 -576 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1480 -576 384 ) ( 1392 -576 384 ) ( 1392 -576 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1152 -560 384 ) ( 1152 -568 384 ) ( 1152 -568 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1172 +{ +( 1152 -512 256 ) ( 1144 -512 256 ) ( 1144 -576 256 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 1144 -576 320 ) ( 1144 -512 320 ) ( 1152 -512 320 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 1144 -576 320 ) ( 1152 -576 320 ) ( 1152 -576 256 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 1152 -576 320 ) ( 1152 -512 320 ) ( 1152 -512 256 ) floors/fl_pv_m13b 0 0 0 1 1 0 0 0 +( 1152 -512 320 ) ( 1144 -512 320 ) ( 1144 -512 256 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 1144 -512 320 ) ( 1144 -576 320 ) ( 1144 -576 256 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +} +// brush 1173 +{ +( 1144 -520 320 ) ( 1152 -520 320 ) ( 1152 -512 320 ) metals/mt_pv_m26y 8 0 -180 1 1 0 0 0 +( 1152 -512 446 ) ( 1152 -520 446 ) ( 1144 -520 446 ) metals/mt_pv_m26y 8 0 -180 1 1 0 0 0 +( 1152 -512 384 ) ( 1144 -512 384 ) ( 1144 -512 320 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1144 -512 384 ) ( 1144 -520 384 ) ( 1144 -520 320 ) floors/fl_pv_m13 0 0 -180 1 -1 0 0 0 +( 1144 -515 384 ) ( 1152 -515 384 ) ( 1152 -515 320 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1152 -520 384 ) ( 1152 -512 384 ) ( 1152 -512 320 ) floors/fl_pv_m13 0 0 -180 1 -1 0 0 0 +} +// brush 1174 +{ +( 1472 -256 176 ) ( 1280 -256 176 ) ( 1280 -288 176 ) bricks/c_sr_m8e 64 0 90 1 1 0 67108864 0 +( 1280 -288 192 ) ( 1280 -256 192 ) ( 1472 -256 192 ) bricks/c_sr_m8e 64 0 90 1 1 0 67108864 0 +( 1408 -448 16 ) ( 1408 -448 192 ) ( 1472 -512 192 ) bricks/c_sr_m8e 64 0 90 1 1 0 67108864 0 +( 1472 -280 32 ) ( 1472 -248 32 ) ( 1472 -248 16 ) bricks/c_sr_m8e 64 0 90 1 1 0 67108864 0 +( 1280 -192 16 ) ( 1296 -192 16 ) ( 1288 -192 192 ) bricks/c_sr_m8e 64 0 90 1 1 0 67108864 0 +( 1408 -448 192 ) ( 1408 -448 16 ) ( 1408 -256 16 ) bricks/c_sr_m8e 64 0 90 1 1 0 67108864 0 +( 1496 -504 176 ) ( 1456 -504 176 ) ( 1476 -504 192 ) bricks/c_sr_m8e 64 0 90 1 1 0 67108864 0 +} +// brush 1175 +{ +( 1216 -320 176 ) ( 1152 -320 176 ) ( 1152 -448 176 ) bricks/c_sr_m8e -64 0 270 1 1 0 0 0 +( 1152 -448 192 ) ( 1152 -320 192 ) ( 1216 -320 192 ) bricks/c_sr_m8e -64 0 270 1 1 0 0 0 +( 1152 -512 16 ) ( 1152 -512 192 ) ( 1216 -448 192 ) bricks/c_sr_m8e -64 0 270 1 1 0 0 0 +( 1216 -448 192 ) ( 1216 -320 192 ) ( 1216 -320 16 ) bricks/c_sr_m8e -64 0 270 1 1 0 0 0 +( 1152 -192 192 ) ( 1152 -192 16 ) ( 1216 -256 16 ) bricks/c_sr_m8e -64 0 270 1 1 0 0 0 +( 1152 -256 16 ) ( 1152 -256 192 ) ( 1152 -512 192 ) bricks/c_sr_m8e -64 0 270 1 1 0 0 0 +( 1168 -504 176 ) ( 1144 -504 176 ) ( 1156 -504 192 ) bricks/c_sr_m8e -64 0 270 1 1 0 0 0 +} +// brush 1176 +{ +( 1472 -256 176 ) ( 1280 -256 176 ) ( 1280 -288 176 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1280 -288 192 ) ( 1280 -256 192 ) ( 1472 -256 192 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 1152 -512 192 ) ( 1152 -512 16 ) ( 1216 -448 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1472 -512 16 ) ( 1472 -512 192 ) ( 1408 -448 192 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1216 -448 192 ) ( 1216 -448 16 ) ( 1408 -448 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1192 -496 176 ) ( 1168 -496 176 ) ( 1180 -496 192 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +} +// brush 1177 +{ +( 1472 -488 192 ) ( 1168 -488 192 ) ( 1168 -496 192 ) bricks/c_pv_m2 0 64 0 1 1 0 0 0 +( 1168 -496 248 ) ( 1168 -488 248 ) ( 1472 -488 248 ) bricks/c_pv_m2 0 64 0 1 1 0 0 0 +( 1168 -496 240 ) ( 1472 -496 240 ) ( 1472 -496 192 ) bricks/c_pv_m2 0 64 0 1 1 0 0 0 +( 1472 -496 240 ) ( 1472 -488 240 ) ( 1472 -488 192 ) bricks/c_pv_m2 0 64 0 1 1 0 0 0 +( 1472 -488 240 ) ( 1168 -488 240 ) ( 1168 -488 192 ) bricks/c_pv_m2 0 63 0 1 1 0 0 0 +( 1168 -488 240 ) ( 1168 -496 240 ) ( 1168 -496 192 ) bricks/c_pv_m2 0 64 0 1 1 0 0 0 +} +// brush 1178 +{ +( 1152 -448 256 ) ( 1144 -448 256 ) ( 1144 -512 256 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 1144 -512 320 ) ( 1144 -448 320 ) ( 1152 -448 320 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 1144 -512 320 ) ( 1152 -512 320 ) ( 1152 -512 256 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 1152 -512 320 ) ( 1152 -448 320 ) ( 1152 -448 256 ) floors/fl_pv_m13a 0 0 90 1 1 0 0 0 +( 1152 -448 320 ) ( 1144 -448 320 ) ( 1144 -448 256 ) metals/mt_pv_m26y 8 0 -180 1 -1 0 0 0 +( 1144 -448 320 ) ( 1144 -512 320 ) ( 1144 -512 256 ) floors/fl_pv_m13a 0 0 90 1 1 0 0 0 +} +// brush 1179 +{ +( 1152 -192 256 ) ( 1144 -192 256 ) ( 1144 -256 256 ) floors/fl_pv_m13 0 -16 0 1 1 0 0 0 +( 1144 -256 320 ) ( 1144 -192 320 ) ( 1152 -192 320 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( 1144 -320 272 ) ( 1152 -320 272 ) ( 1152 -320 256 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( 1152 -256 272 ) ( 1152 -192 272 ) ( 1152 -192 256 ) floors/fl_pv_m13a 0 0 90 1 1 0 0 0 +( 1152 -192 272 ) ( 1144 -192 272 ) ( 1144 -192 256 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 1144 -192 272 ) ( 1144 -256 272 ) ( 1144 -256 256 ) floors/fl_pv_m13a 0 0 90 1 1 0 0 0 +} +// brush 1180 +{ +( 1168 272 384 ) ( 1152 272 384 ) ( 1152 0 384 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1152 0 512 ) ( 1152 272 512 ) ( 1168 272 512 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1152 -192 512 ) ( 1168 -192 512 ) ( 1168 -192 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1168 0 512 ) ( 1168 272 512 ) ( 1168 272 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1168 272 512 ) ( 1152 272 512 ) ( 1152 272 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1128 272 512 ) ( 1128 0 512 ) ( 1128 0 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 1181 +{ +( 784 -192 320 ) ( 768 -192 320 ) ( 768 -352 320 ) props/w_sr_m6d 0 64 0 1 1 0 1 75 +( 768 -352 448 ) ( 768 -192 448 ) ( 784 -192 448 ) props/w_sr_m6d 0 64 0 1 1 0 1 75 +( 784 -352 384 ) ( 784 -192 384 ) ( 784 -192 256 ) props/w_sr_m4a 0 64 0 1 1 0 1 200 +( 768 -192 384 ) ( 768 -352 384 ) ( 768 -352 256 ) props/w_sr_m6d 0 64 0 1 1 0 1 75 +( 768 -320 320 ) ( 784 -320 320 ) ( 776 -320 448 ) props/w_sr_m6d 0 64 0 1 1 0 1 75 +( 776 -448 320 ) ( 760 -448 320 ) ( 768 -448 448 ) props/w_sr_m6d 0 64 0 1 1 0 1 75 +} +// brush 1182 +{ +( 784 -424 256 ) ( 768 -424 256 ) ( 768 -512 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 768 -512 320 ) ( 768 -424 320 ) ( 784 -424 320 ) bricks/b_sr_22 0 0 270 1 1 0 0 0 +( 800 -512 512 ) ( 800 -424 512 ) ( 800 -424 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 768 -424 512 ) ( 768 -512 512 ) ( 768 -512 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 768 -320 256 ) ( 784 -320 256 ) ( 776 -320 320 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 784 -448 256 ) ( 768 -448 256 ) ( 776 -448 320 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 1183 +{ +( 784 -424 448 ) ( 768 -424 448 ) ( 768 -512 448 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 768 -512 512 ) ( 768 -424 512 ) ( 784 -424 512 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 800 -512 704 ) ( 800 -424 704 ) ( 800 -424 448 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 768 -424 704 ) ( 768 -512 704 ) ( 768 -512 448 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 768 -320 448 ) ( 784 -320 448 ) ( 776 -320 512 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 784 -448 448 ) ( 768 -448 448 ) ( 776 -448 512 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 1184 +{ +( 816 256 256 ) ( 800 256 256 ) ( 800 192 256 ) metals/mt_sr_v20 0 0 0 1 1 0 8388608 0 +( 800 192 512 ) ( 800 256 512 ) ( 816 256 512 ) metals/mt_sr_v20 0 0 0 1 1 0 8388608 0 +( 800 192 384 ) ( 816 192 384 ) ( 816 192 256 ) metals/mt_sr_v20 -40 0 0 1 1 0 8388608 0 +( 808 192 384 ) ( 808 256 384 ) ( 808 256 256 ) metals/mt_sr_v20 0 0 0 1 1 0 8388608 0 +( 816 256 384 ) ( 800 256 384 ) ( 800 256 256 ) metals/mt_sr_v20 0 0 0 1 1 0 8388608 0 +( 768 256 384 ) ( 768 192 384 ) ( 768 192 256 ) metals/mt_sr_v20 0 0 0 1 1 0 8388608 0 +} +// brush 1185 +{ +( 784 24 448 ) ( 768 24 448 ) ( 768 -64 448 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 768 -64 512 ) ( 768 24 512 ) ( 784 24 512 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 792 -64 704 ) ( 792 24 704 ) ( 792 24 448 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 792 192 704 ) ( 776 192 704 ) ( 776 192 448 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 768 24 704 ) ( 768 -64 704 ) ( 768 -64 448 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 784 64 448 ) ( 768 64 448 ) ( 776 64 512 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 1186 +{ +( 784 24 256 ) ( 768 24 256 ) ( 768 -64 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 768 -64 320 ) ( 768 24 320 ) ( 784 24 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 792 -64 512 ) ( 792 24 512 ) ( 792 24 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 792 192 512 ) ( 776 192 512 ) ( 776 192 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 768 24 512 ) ( 768 -64 512 ) ( 768 -64 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 784 64 256 ) ( 768 64 256 ) ( 776 64 320 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 1187 +{ +( 784 192 320 ) ( 768 192 320 ) ( 768 32 320 ) props/w_sr_m6d 0 64 0 1 1 0 0 0 +( 768 32 416 ) ( 768 192 416 ) ( 784 192 416 ) props/w_sr_m6d 0 64 0 1 1 0 0 0 +( 784 32 384 ) ( 784 192 384 ) ( 784 192 256 ) props/w_sr_m4a 160 64 0 1 1 0 1 250 +( 768 192 384 ) ( 768 32 384 ) ( 768 32 256 ) props/w_sr_m6d 0 64 0 1 1 0 0 0 +( 768 144 320 ) ( 784 144 320 ) ( 776 144 448 ) props/w_sr_m6d 0 64 0 1 1 0 0 0 +( 776 64 320 ) ( 760 64 320 ) ( 768 64 448 ) props/w_sr_m6d 0 64 0 1 1 0 0 0 +} +// brush 1188 +{ +( 816 64 256 ) ( 800 64 256 ) ( 800 0 256 ) metals/mt_sr_v20 0 0 0 1 1 0 8388608 0 +( 800 0 512 ) ( 800 64 512 ) ( 816 64 512 ) metals/mt_sr_v20 0 0 0 1 1 0 8388608 0 +( 800 0 384 ) ( 816 0 384 ) ( 816 0 256 ) metals/mt_sr_v20 0 0 0 1 1 0 8388608 0 +( 808 0 384 ) ( 808 64 384 ) ( 808 64 256 ) metals/mt_sr_v20 0 0 0 1 1 0 8388608 0 +( 816 64 384 ) ( 800 64 384 ) ( 800 64 256 ) metals/mt_sr_v20 -40 0 0 1 1 0 8388608 0 +( 768 64 384 ) ( 768 0 384 ) ( 768 0 256 ) metals/mt_sr_v20 0 0 0 1 1 0 8388608 0 +} +// brush 1189 +{ +( 784 -168 448 ) ( 768 -168 448 ) ( 768 -256 448 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 768 -256 512 ) ( 768 -168 512 ) ( 784 -168 512 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 768 -256 704 ) ( 784 -256 704 ) ( 784 -256 448 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 792 -256 704 ) ( 792 -168 704 ) ( 792 -168 448 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 792 0 704 ) ( 776 0 704 ) ( 776 0 448 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 768 -168 704 ) ( 768 -256 704 ) ( 768 -256 448 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 1190 +{ +( 784 0 320 ) ( 768 0 320 ) ( 768 -160 320 ) props/w_sr_m6d 0 64 0 1 1 0 1 75 +( 768 -160 448 ) ( 768 0 448 ) ( 784 0 448 ) props/w_sr_m6d 0 64 0 1 1 0 1 75 +( 784 -160 384 ) ( 784 0 384 ) ( 784 0 256 ) props/w_sr_m4a 0 64 0 1 -1 0 1 150 +( 768 0 384 ) ( 768 -160 384 ) ( 768 -160 256 ) props/w_sr_m6d 0 64 0 1 1 0 1 75 +( 768 0 320 ) ( 784 0 320 ) ( 776 0 448 ) props/w_sr_m6d 0 64 0 1 1 0 1 75 +( 776 -256 320 ) ( 760 -256 320 ) ( 768 -256 448 ) props/w_sr_m6d 0 64 0 1 1 0 1 75 +} +// brush 1191 +{ +( 784 -168 256 ) ( 768 -168 256 ) ( 768 -256 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 768 -256 320 ) ( 768 -168 320 ) ( 784 -168 320 ) bricks/b_sr_22 0 0 270 1 1 0 0 0 +( 768 -256 512 ) ( 784 -256 512 ) ( 784 -256 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 792 -256 512 ) ( 792 -168 512 ) ( 792 -168 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 792 0 512 ) ( 776 0 512 ) ( 776 0 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 768 -168 512 ) ( 768 -256 512 ) ( 768 -256 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 1192 +{ +( 816 -256 256 ) ( 800 -256 256 ) ( 800 -320 256 ) metals/mt_sr_v20 0 0 0 1 1 0 8388608 0 +( 800 -320 512 ) ( 800 -256 512 ) ( 816 -256 512 ) metals/mt_sr_v20 0 0 0 1 1 0 8388608 0 +( 800 -320 384 ) ( 816 -320 384 ) ( 816 -320 256 ) metals/mt_sr_v20 0 0 0 1 1 0 8388608 0 +( 808 -320 384 ) ( 808 -256 384 ) ( 808 -256 256 ) metals/mt_sr_v20 0 0 0 1 1 0 8388608 0 +( 816 -256 384 ) ( 800 -256 384 ) ( 800 -256 256 ) metals/mt_sr_v20 0 0 0 1 1 0 8388608 0 +( 768 -256 384 ) ( 768 -320 384 ) ( 768 -320 256 ) metals/mt_sr_v20 0 0 0 1 1 0 8388608 0 +} +// brush 1193 +{ +( 1472 -576 384 ) ( 1480 -576 384 ) ( 1480 -576 192 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1480 -320 384 ) ( 1480 -192 384 ) ( 1480 -192 192 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1480 -192 384 ) ( 1472 -192 384 ) ( 1472 -192 192 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1472 -192 384 ) ( 1472 -320 384 ) ( 1472 -320 192 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1152 -320 240 ) ( 1192 -320 240 ) ( 1172 -192 240 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1200 -448 384 ) ( 1168 -448 384 ) ( 1184 -192 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1194 +{ +( 1472 -320 512 ) ( 1472 -192 512 ) ( 1480 -192 512 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1472 -576 384 ) ( 1480 -576 384 ) ( 1480 -576 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1480 -320 384 ) ( 1480 -192 384 ) ( 1480 -192 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1480 -192 384 ) ( 1472 -192 384 ) ( 1472 -192 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1472 -192 384 ) ( 1472 -320 384 ) ( 1472 -320 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1168 -448 384 ) ( 1200 -448 384 ) ( 1184 -192 384 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 1195 +{ +( 1152 -192 384 ) ( 1280 -192 384 ) ( 1280 -192 272 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1280 -192 384 ) ( 1280 -184 384 ) ( 1280 -184 272 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1280 -184 384 ) ( 1152 -184 384 ) ( 1152 -184 272 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1152 -184 384 ) ( 1152 -192 384 ) ( 1152 -192 272 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1152 -192 256 ) ( 1184 -192 256 ) ( 1168 -184 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1200 -192 384 ) ( 1168 -192 384 ) ( 1184 -184 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1196 +{ +( 1152 -192 512 ) ( 1152 -184 512 ) ( 1280 -184 512 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1152 -192 384 ) ( 1280 -192 384 ) ( 1280 -192 272 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1280 -192 384 ) ( 1280 -184 384 ) ( 1280 -184 272 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1280 -184 384 ) ( 1152 -184 384 ) ( 1152 -184 272 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1152 -184 384 ) ( 1152 -192 384 ) ( 1152 -192 272 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1168 -192 384 ) ( 1200 -192 384 ) ( 1184 -184 384 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 1197 +{ +( 1472 -192 16 ) ( 1280 -192 16 ) ( 1280 -224 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1280 -224 192 ) ( 1280 -192 192 ) ( 1472 -192 192 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1216 -184 32 ) ( 1216 -216 32 ) ( 1216 -216 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1280 -256 16 ) ( 1296 -256 16 ) ( 1288 -256 192 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1408 -256 16 ) ( 1408 -272 16 ) ( 1408 -264 192 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1304 -448 16 ) ( 1280 -448 16 ) ( 1292 -448 192 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +} +// brush 1198 +{ +( 1472 -192 16 ) ( 1280 -192 16 ) ( 1280 -224 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1280 -224 192 ) ( 1280 -192 192 ) ( 1472 -192 192 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1408 -224 32 ) ( 1408 -192 32 ) ( 1408 -192 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1472 -192 32 ) ( 1280 -192 32 ) ( 1280 -192 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1280 -184 32 ) ( 1280 -216 32 ) ( 1280 -216 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1296 -256 16 ) ( 1280 -256 16 ) ( 1288 -256 192 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +} +// brush 1199 +{ +( 1384 -192 384 ) ( 1368 -192 384 ) ( 1368 -208 384 ) common/li_sr_v27 8 16 0 1 1 134217728 1 45000 +( 1368 -208 392 ) ( 1368 -192 392 ) ( 1384 -192 392 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 1368 -208 392 ) ( 1384 -208 392 ) ( 1384 -208 264 ) metals/mt_pv_m26y 0 24 0 1 1 134217728 0 0 +( 1384 -208 392 ) ( 1384 -192 392 ) ( 1384 -192 264 ) common/li_sr_v27 0 7 0 1 1 134217728 0 0 +( 1384 -192 392 ) ( 1368 -192 392 ) ( 1368 -192 264 ) common/li_sr_v27 0 8 0 1 1 134217728 0 0 +( 1368 -192 392 ) ( 1368 -208 392 ) ( 1368 -208 264 ) common/li_sr_v27 0 7 0 1 1 134217728 0 0 +} +// brush 1200 +{ +( 1392 -192 384 ) ( 1384 -192 384 ) ( 1384 -208 384 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 1384 -208 392 ) ( 1384 -192 392 ) ( 1392 -192 392 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 1392 -208 392 ) ( 1392 -192 392 ) ( 1392 -192 384 ) metals/mt_pv_m26y 0 22 0 1 1 134217728 0 0 +( 1392 -192 392 ) ( 1384 -192 392 ) ( 1384 -192 384 ) metals/mt_pv_m26y 0 24 0 1 1 134217728 0 0 +( 1384 -192 392 ) ( 1384 -208 392 ) ( 1384 -208 384 ) metals/mt_pv_m26y 0 22 0 1 1 134217728 0 0 +( 1392 -200 384 ) ( 1384 -208 384 ) ( 1388 -204 392 ) metals/mt_pv_m26y -31 24 0 1 1 134217728 0 0 +} +// brush 1201 +{ +( 1368 -192 384 ) ( 1360 -192 384 ) ( 1360 -208 384 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 1360 -208 392 ) ( 1360 -192 392 ) ( 1368 -192 392 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 1368 -208 392 ) ( 1368 -192 392 ) ( 1368 -192 384 ) metals/mt_pv_m26y 0 22 0 1 1 134217728 0 0 +( 1368 -192 392 ) ( 1360 -192 392 ) ( 1360 -192 384 ) metals/mt_pv_m26y 0 24 0 1 1 134217728 0 0 +( 1360 -192 392 ) ( 1360 -208 392 ) ( 1360 -208 384 ) metals/mt_pv_m26y 0 22 0 1 1 134217728 0 0 +( 1368 -208 384 ) ( 1360 -200 384 ) ( 1364 -204 392 ) metals/mt_pv_m26y 24 24 -180 1.000002 -1 134217728 0 0 +} +// brush 1202 +{ +( 1280 -232 192 ) ( 1312 -232 192 ) ( 1312 -192 192 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +( 1312 -232 192 ) ( 1280 -232 192 ) ( 1280 -224 208 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +( 1312 -224 256 ) ( 1312 -192 256 ) ( 1312 -192 192 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +( 1312 -192 256 ) ( 1280 -192 256 ) ( 1280 -192 192 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +( 1280 -192 256 ) ( 1280 -224 256 ) ( 1280 -224 192 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +( 1312 -224 208 ) ( 1304 -224 208 ) ( 1308 -192 208 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +} +// brush 1203 +{ +( 1280 -224 256 ) ( 1280 -192 256 ) ( 1312 -192 256 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +( 1280 -224 256 ) ( 1312 -224 256 ) ( 1312 -224 192 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +( 1312 -224 256 ) ( 1312 -192 256 ) ( 1312 -192 192 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +( 1312 -192 256 ) ( 1280 -192 256 ) ( 1280 -192 192 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +( 1280 -192 256 ) ( 1280 -224 256 ) ( 1280 -224 192 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +( 1304 -224 208 ) ( 1312 -224 208 ) ( 1308 -192 208 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +} +// brush 1204 +{ +( 1440 -224 256 ) ( 1440 -192 256 ) ( 1472 -192 256 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +( 1440 -224 256 ) ( 1472 -224 256 ) ( 1472 -224 192 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +( 1472 -224 256 ) ( 1472 -192 256 ) ( 1472 -192 192 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +( 1472 -192 256 ) ( 1440 -192 256 ) ( 1440 -192 192 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +( 1440 -192 256 ) ( 1440 -224 256 ) ( 1440 -224 192 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +( 1464 -224 208 ) ( 1472 -224 208 ) ( 1468 -192 208 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +} +// brush 1205 +{ +( 1440 -232 192 ) ( 1472 -232 192 ) ( 1472 -192 192 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +( 1472 -232 192 ) ( 1440 -232 192 ) ( 1440 -224 208 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +( 1472 -224 256 ) ( 1472 -192 256 ) ( 1472 -192 192 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +( 1472 -192 256 ) ( 1440 -192 256 ) ( 1440 -192 192 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +( 1440 -192 256 ) ( 1440 -224 256 ) ( 1440 -224 192 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +( 1472 -224 208 ) ( 1464 -224 208 ) ( 1468 -192 208 ) bricks/c_pv_m2 0 63 0 1 1 134217728 0 0 +} +// brush 1206 +{ +( 728 -296 448 ) ( 704 -296 448 ) ( 704 -448 448 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 -448 512 ) ( 704 -296 512 ) ( 728 -296 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 720 -448 512 ) ( 720 -296 512 ) ( 720 -296 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 -296 512 ) ( 704 -448 512 ) ( 704 -448 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 720 -256 384 ) ( 704 -256 384 ) ( 712 -256 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 720 0 448 ) ( 704 0 448 ) ( 720 0 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1207 +{ +( 704 512 576 ) ( 416 512 576 ) ( 416 424 576 ) common/li_sr_v17 0 0 0 1 1 0 133 300 +( 416 424 592 ) ( 416 512 592 ) ( 704 512 592 ) common/li_sr_v17 0 0 0 1 1 0 133 300 +( 488 -1600 592 ) ( 776 -1600 592 ) ( 776 -1600 464 ) common/li_sr_v17 0 0 0 1 1 0 133 300 +( -576 464 592 ) ( -576 376 592 ) ( -576 376 464 ) common/li_sr_v17 0 0 0 1 1 0 133 300 +( 688 -544 576 ) ( 704 -544 576 ) ( 696 -544 592 ) common/li_sr_v17 0 0 0 1 1 0 133 300 +( 16 -544 576 ) ( 16 -576 576 ) ( 16 -560 592 ) common/li_sr_v17 0 0 0 1 1 0 133 300 +} +// brush 1208 +{ +( 704 512 576 ) ( 416 512 576 ) ( 416 424 576 ) common/li_sr_v17 0 0 0 1 1 0 133 300 +( 416 424 592 ) ( 416 512 592 ) ( 704 512 592 ) common/li_sr_v17 0 0 0 1 1 0 133 300 +( 704 424 592 ) ( 704 512 592 ) ( 704 512 464 ) common/li_sr_v17 0 0 0 1 1 0 133 300 +( 704 568 592 ) ( 416 568 592 ) ( 416 568 464 ) common/li_sr_v17 0 0 0 1 1 0 133 300 +( -576 464 592 ) ( -576 376 592 ) ( -576 376 464 ) common/li_sr_v17 0 0 0 1 1 0 133 300 +( 704 -544 576 ) ( 688 -544 576 ) ( 696 -544 592 ) common/li_sr_v17 0 0 0 1 1 0 133 300 +} +// brush 1209 +{ +( 392 -864 520 ) ( -120 -864 520 ) ( -120 -408 200 ) floors/rf_sr_m1 56 32 0 1 1 0 0 0 +( 168 -408 192 ) ( 168 -424 192 ) ( 168 -416 520 ) floors/rf_sr_m1 128 48 0 1 1 0 0 0 +( 288 -512 224 ) ( 160 -512 224 ) ( 288 -536 224 ) floors/rf_sr_m1 -32 16 90 1 -1 0 0 0 +( 0 -864 224 ) ( 0 -840 224 ) ( 0 -852 320 ) floors/rf_sr_m1 -32 16 90 1 -1 0 0 0 +( 24 -512 224 ) ( 0 -512 224 ) ( 12 -512 295 ) floors/rf_sr_m1 -32 16 90 1 -1 0 0 0 +} +// brush 1210 +{ +( 392 -864 520 ) ( -120 -864 520 ) ( -120 -408 200 ) floors/rf_sr_m1 56 32 0 1 1 0 0 0 +( -120 -864 520 ) ( 392 -864 520 ) ( 392 -864 192 ) floors/rf_sr_m1 -32 -56 90 1 1 0 0 0 +( -576 -864 192 ) ( -120 -408 192 ) ( -348 -636 520 ) floors/rf_sr_m1 -32 16 90 1 -1 0 0 0 +( 64 -512 320 ) ( 192 -512 320 ) ( 64 -528 320 ) floors/rf_sr_m1 -32 16 90 1 -1 0 0 0 +( 288 -512 224 ) ( 160 -512 224 ) ( 288 -536 224 ) floors/rf_sr_m1 -32 16 90 1 -1 0 0 0 +( 0 -840 224 ) ( 0 -864 224 ) ( 0 -852 320 ) floors/rf_sr_m1 -32 16 90 1 -1 0 0 0 +} +// brush 1211 +{ +( 1440 -184 353 ) ( 1312 -184 353 ) ( 1312 -192 357 ) bricks/b_sr_24 96 -26 0 1 1 0 0 0 +( 1312 -192 344 ) ( 1440 -192 344 ) ( 1440 -192 272 ) bricks/b_sr_20 96 -26 0 1 1 0 0 0 +( 1440 -192 416 ) ( 1440 -184 416 ) ( 1440 -184 344 ) bricks/b_sr_24 96 -26 0 1 1 0 0 0 +( 1312 -184 353 ) ( 1440 -184 353 ) ( 1440 -184 400 ) bricks/b_sr_24 96 -26 0 1 1 0 0 0 +( 1312 -184 416 ) ( 1312 -192 416 ) ( 1312 -192 344 ) bricks/b_sr_24 96 -26 0 1 1 0 0 0 +( 1336 -192 400 ) ( 1312 -192 400 ) ( 1324 -184 400 ) bricks/b_sr_24 96 -26 0 1 1 0 0 0 +} +// brush 1212 +{ +( 1312 -192 512 ) ( 1312 -184 512 ) ( 1440 -184 512 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1312 -192 344 ) ( 1440 -192 344 ) ( 1440 -192 272 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1440 -192 416 ) ( 1440 -184 416 ) ( 1440 -184 344 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1440 -184 344 ) ( 1312 -184 344 ) ( 1312 -184 272 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1312 -184 416 ) ( 1312 -192 416 ) ( 1312 -192 344 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1312 -192 400 ) ( 1336 -192 400 ) ( 1324 -184 400 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 1213 +{ +( 1120 -192 192 ) ( 1112 -192 192 ) ( 1112 -320 192 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1112 -320 240 ) ( 1112 -192 240 ) ( 1120 -192 240 ) bricks/c_sr_m8e 0 0 90 1 1 0 0 0 +( 1112 -496 256 ) ( 1120 -496 256 ) ( 1120 -496 192 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1168 -320 256 ) ( 1168 -192 256 ) ( 1168 -192 192 ) bricks/c_pv_m2 0 63 0 1 1 0 0 0 +( 1120 -192 256 ) ( 1112 -192 256 ) ( 1112 -192 192 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1152 -192 256 ) ( 1152 -320 256 ) ( 1152 -320 192 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +} +// brush 1214 +{ +( 1280 -192 176 ) ( 1152 -192 176 ) ( 1152 -320 176 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1152 -320 192 ) ( 1152 -192 192 ) ( 1280 -192 192 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +( 1216 -256 176 ) ( 1216 -256 192 ) ( 1280 -256 192 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1280 -320 192 ) ( 1280 -192 192 ) ( 1280 -192 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1280 -192 192 ) ( 1152 -192 192 ) ( 1152 -192 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1216 -256 192 ) ( 1216 -256 176 ) ( 1152 -192 176 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +} +// brush 1215 +{ +( 1312 -192 256 ) ( 1280 -192 256 ) ( 1280 -216 256 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1280 -216 520 ) ( 1280 -192 520 ) ( 1312 -192 520 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1280 -224 256 ) ( 1312 -224 256 ) ( 1312 -224 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1312 -216 256 ) ( 1312 -192 256 ) ( 1312 -192 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1312 -192 256 ) ( 1280 -192 256 ) ( 1280 -192 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1280 -192 256 ) ( 1280 -216 256 ) ( 1280 -216 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 1216 +{ +( 1472 -192 256 ) ( 1440 -192 256 ) ( 1440 -216 256 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1440 -216 520 ) ( 1440 -192 520 ) ( 1472 -192 520 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1440 -224 256 ) ( 1472 -224 256 ) ( 1472 -224 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1472 -216 256 ) ( 1472 -192 256 ) ( 1472 -192 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1472 -192 256 ) ( 1440 -192 256 ) ( 1440 -192 240 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1440 -192 328 ) ( 1440 -216 328 ) ( 1440 -216 312 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 1217 +{ +( 1312 -184 292 ) ( 1280 -184 292 ) ( 1280 -192 292 ) bricks/b_sr_20 32 0 0 1 1 0 0 0 +( 1280 -192 512 ) ( 1280 -184 512 ) ( 1312 -184 512 ) bricks/b_sr_20 32 0 0 1 1 0 0 0 +( 1280 -192 320 ) ( 1312 -192 320 ) ( 1312 -192 160 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1312 -192 392 ) ( 1312 -184 392 ) ( 1312 -184 232 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1312 -184 320 ) ( 1280 -184 320 ) ( 1280 -184 160 ) bricks/b_sr_20 32 0 0 1 1 0 0 0 +( 1280 -184 324 ) ( 1280 -192 324 ) ( 1280 -192 164 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1218 +{ +( 1472 -184 288 ) ( 1440 -184 288 ) ( 1440 -192 288 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1440 -192 512 ) ( 1440 -184 512 ) ( 1472 -184 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1440 -192 320 ) ( 1472 -192 320 ) ( 1472 -192 160 ) bricks/b_sr_20 96 -42 0 1 1 0 0 0 +( 1472 -192 320 ) ( 1472 -184 320 ) ( 1472 -184 160 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1472 -184 320 ) ( 1440 -184 320 ) ( 1440 -184 160 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1440 -184 448 ) ( 1440 -192 448 ) ( 1440 -192 288 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1219 +{ +( 1696 128 272 ) ( 1232 128 272 ) ( 1232 128 144 ) bricks/b_sr_24 -32 16 0 1 1 0 0 0 +( 1440 -216 312 ) ( 1440 -216 320 ) ( 1440 128 160 ) bricks/b_mf_v2 64 16 0 1 1 0 0 0 +( 1429 -216 320 ) ( 1431 -216 312 ) ( 1431 128 152 ) bricks/b_sr_20 96 -26 0 1 1 0 0 0 +( 1431 -216 312 ) ( 1440 -216 312 ) ( 1440 128 152 ) bricks/b_mf_v2 -95 -64 0 1 1 0 0 0 +( 1440 -216 320 ) ( 1429 -216 320 ) ( 1429 128 160 ) bricks/b_mf_v2 -95 -64 0 1 1 0 0 0 +( 1296 -192 152 ) ( 1272 -192 152 ) ( 1284 -192 320 ) bricks/b_sr_24 96 -27 0 1 1 0 0 0 +} +// brush 1220 +{ +( 1431 -216 304 ) ( 1440 -216 304 ) ( 1440 128 144 ) bricks/b_mf_v2 -95 -64 0 1 1 0 0 0 +( 1696 128 272 ) ( 1232 128 272 ) ( 1232 128 144 ) bricks/b_sr_24 -32 16 0 1 1 0 0 0 +( 1440 -216 304 ) ( 1440 -216 312 ) ( 1440 128 152 ) bricks/b_mf_v2 64 16 0 1 1 0 0 0 +( 1431 -216 312 ) ( 1431 -216 304 ) ( 1431 128 144 ) bricks/b_sr_20 96 -26 0 1 1 0 0 0 +( 1440 -216 312 ) ( 1431 -216 312 ) ( 1431 128 152 ) bricks/b_mf_v2 -95 -64 0 1 1 0 0 0 +( 1296 -192 144 ) ( 1272 -192 144 ) ( 1284 -192 312 ) bricks/b_sr_24 96 -27 0 1 1 0 0 0 +} +// brush 1221 +{ +( 1696 128 272 ) ( 1232 128 272 ) ( 1232 128 144 ) bricks/b_sr_24 -32 16 0 1 1 0 0 0 +( 1440 -216 320 ) ( 1440 -216 328 ) ( 1440 128 168 ) bricks/b_mf_v2 64 16 0 1 1 0 0 0 +( 1426 -216 328 ) ( 1429 -216 320 ) ( 1429 128 160 ) bricks/b_sr_20 96 -26 0 1 1 0 0 0 +( 1429 -216 320 ) ( 1440 -216 320 ) ( 1440 128 160 ) bricks/b_mf_v2 -95 -64 0 1 1 0 0 0 +( 1440 -216 328 ) ( 1426 -216 328 ) ( 1426 128 168 ) bricks/b_mf_v2 -95 -64 0 1 1 0 0 0 +( 1296 -192 160 ) ( 1272 -192 160 ) ( 1284 -192 328 ) bricks/b_sr_24 96 -27 0 1 1 0 0 0 +} +// brush 1222 +{ +( 1696 128 272 ) ( 1232 128 272 ) ( 1232 128 144 ) bricks/b_sr_24 -32 16 0 1 1 0 0 0 +( 1440 -216 328 ) ( 1440 -216 336 ) ( 1440 128 176 ) bricks/b_mf_v2 64 16 0 1 1 0 0 0 +( 1420 -216 336 ) ( 1426 -216 328 ) ( 1426 128 168 ) bricks/b_sr_20 0 0 90 1 1 0 0 0 +( 1426 -216 328 ) ( 1440 -216 328 ) ( 1440 128 168 ) bricks/b_mf_v2 -95 -64 0 1 1 0 0 0 +( 1440 -216 336 ) ( 1420 -216 336 ) ( 1420 128 176 ) bricks/b_mf_v2 -95 -64 0 1 1 0 0 0 +( 1296 -192 168 ) ( 1272 -192 168 ) ( 1284 -192 336 ) bricks/b_sr_24 96 -27 0 1 1 0 0 0 +} +// brush 1223 +{ +( 1696 128 272 ) ( 1232 128 272 ) ( 1232 128 144 ) bricks/b_sr_24 -32 16 0 1 1 0 0 0 +( 1440 -216 336 ) ( 1440 -216 344 ) ( 1440 128 184 ) bricks/b_mf_v2 64 16 0 1 1 0 0 0 +( 1413 -216 344 ) ( 1420 -216 336 ) ( 1420 128 176 ) bricks/b_sr_20 0 0 90 1 1 0 0 0 +( 1420 -216 336 ) ( 1440 -216 336 ) ( 1440 128 176 ) bricks/b_mf_v2 -95 -64 0 1 1 0 0 0 +( 1440 -216 344 ) ( 1413 -216 344 ) ( 1413 128 184 ) bricks/b_mf_v2 -95 -64 0 1 1 0 0 0 +( 1296 -192 176 ) ( 1272 -192 176 ) ( 1284 -192 344 ) bricks/b_sr_24 96 -27 0 1 1 0 0 0 +} +// brush 1224 +{ +( 1696 128 272 ) ( 1232 128 272 ) ( 1232 128 144 ) bricks/b_sr_24 -32 16 0 1 1 0 0 0 +( 1440 -216 344 ) ( 1440 -216 352 ) ( 1440 128 192 ) bricks/b_mf_v2 64 16 0 1 1 0 0 0 +( 1402 -216 352 ) ( 1413 -216 344 ) ( 1413 128 184 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1413 -216 344 ) ( 1440 -216 344 ) ( 1440 128 184 ) bricks/b_mf_v2 -95 -64 0 1 1 0 0 0 +( 1440 -216 352 ) ( 1402 -216 352 ) ( 1402 128 192 ) bricks/b_mf_v2 -95 -64 0 1 1 0 0 0 +( 1296 -192 184 ) ( 1272 -192 184 ) ( 1284 -192 352 ) bricks/b_sr_24 96 -27 0 1 1 0 0 0 +} +// brush 1225 +{ +( 1696 128 272 ) ( 1232 128 272 ) ( 1232 128 144 ) bricks/b_sr_24 -32 16 0 1 1 0 0 0 +( 1442 -192 357 ) ( 1386 -192 357 ) ( 1384 128 208 ) bricks/b_mf_v2 -95 -64 0 1 1 0 0 0 +( 1440 -216 356 ) ( 1440 -216 368 ) ( 1440 128 208 ) bricks/b_mf_v2 64 16 0 1 1 0 0 0 +( 1384 -216 356 ) ( 1440 -216 356 ) ( 1440 128 196 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1384 -216 368 ) ( 1384 -216 356 ) ( 1384 128 196 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1386 -192 357 ) ( 1442 -192 357 ) ( 1440 -192 345 ) bricks/b_sr_24 96 -27 0 1 1 0 0 0 +} +// brush 1226 +{ +( 1696 128 272 ) ( 1232 128 272 ) ( 1232 128 144 ) bricks/b_sr_24 -32 16 0 1 1 0 0 0 +( 1440 -216 352 ) ( 1440 -216 356 ) ( 1440 128 196 ) bricks/b_mf_v2 64 16 0 1 1 0 0 0 +( 1388 -216 356 ) ( 1402 -216 352 ) ( 1402 128 192 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1402 -216 352 ) ( 1440 -216 352 ) ( 1440 128 192 ) bricks/b_mf_v2 -95 -64 0 1 1 0 0 0 +( 1440 -216 356 ) ( 1388 -216 356 ) ( 1388 128 196 ) bricks/b_mf_v2 -95 -64 0 1 1 0 0 0 +( 1296 -192 192 ) ( 1272 -192 192 ) ( 1284 -192 356 ) bricks/b_sr_24 96 -27 0 1 1 0 0 0 +} +// brush 1227 +{ +( 1368 128 196 ) ( 1384 128 196 ) ( 1384 128 208 ) bricks/b_sr_24 -32 16 0 1 1 0 0 0 +( 1383 -192 357 ) ( 1367 -192 357 ) ( 1368 128 208 ) bricks/b_mf_v2 -96 -64 0 1 1 0 0 0 +( 1368 -216 356 ) ( 1384 -216 356 ) ( 1384 128 196 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1368 -216 384 ) ( 1368 -216 372 ) ( 1368 128 204 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1384 -216 372 ) ( 1384 -216 384 ) ( 1384 128 208 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1367 -192 357 ) ( 1383 -192 357 ) ( 1384 -192 345 ) bricks/b_sr_24 96 -27 0 1 1 0 0 0 +} +// brush 1228 +{ +( 1520 128 144 ) ( 1520 128 272 ) ( 1056 128 272 ) bricks/b_sr_24 -88 16 0 1 1 0 0 0 +( 1368 -192 357 ) ( 1312 -192 357 ) ( 1312 128 208 ) bricks/b_mf_v2 -24 -64 0 1 1 0 0 0 +( 1312 128 208 ) ( 1312 -216 368 ) ( 1312 -216 356 ) bricks/b_mf_v2 64 16 0 1 1 0 0 0 +( 1312 128 196 ) ( 1312 -216 356 ) ( 1368 -216 356 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1368 128 196 ) ( 1368 -216 356 ) ( 1368 -216 368 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1312 -192 357 ) ( 1368 -192 357 ) ( 1368 -192 345 ) bricks/b_sr_24 96 -26 0 1 1 0 0 0 +} +// brush 1229 +{ +( 1520 128 144 ) ( 1520 128 272 ) ( 1056 128 272 ) bricks/b_sr_24 -88 16 0 1 1 0 0 0 +( 1312 128 196 ) ( 1312 -216 356 ) ( 1312 -216 352 ) bricks/b_mf_v2 64 16 0 1 1 0 0 0 +( 1350 128 192 ) ( 1350 -216 352 ) ( 1364 -216 356 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1312 128 192 ) ( 1312 -216 352 ) ( 1350 -216 352 ) bricks/b_mf_v2 -24 -64 0 1 1 0 0 0 +( 1364 128 196 ) ( 1364 -216 356 ) ( 1312 -216 356 ) bricks/b_mf_v2 -24 -64 0 1 1 0 0 0 +( 1296 -192 192 ) ( 1272 -192 192 ) ( 1284 -192 356 ) bricks/b_sr_24 96 -26 0 1 1 0 0 0 +} +// brush 1230 +{ +( 1520 128 144 ) ( 1520 128 272 ) ( 1056 128 272 ) bricks/b_sr_24 -88 16 0 1 1 0 0 0 +( 1312 128 192 ) ( 1312 -216 352 ) ( 1312 -216 344 ) bricks/b_mf_v2 64 16 0 1 1 0 0 0 +( 1339 128 184 ) ( 1339 -216 344 ) ( 1350 -216 352 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1312 128 184 ) ( 1312 -216 344 ) ( 1339 -216 344 ) bricks/b_mf_v2 -24 -64 0 1 1 0 0 0 +( 1350 128 192 ) ( 1350 -216 352 ) ( 1312 -216 352 ) bricks/b_mf_v2 -24 -64 0 1 1 0 0 0 +( 1296 -192 184 ) ( 1272 -192 184 ) ( 1284 -192 352 ) bricks/b_sr_24 96 -26 0 1 1 0 0 0 +} +// brush 1231 +{ +( 1520 128 144 ) ( 1520 128 272 ) ( 1056 128 272 ) bricks/b_sr_24 -88 16 0 1 1 0 0 0 +( 1312 128 184 ) ( 1312 -216 344 ) ( 1312 -216 336 ) bricks/b_mf_v2 64 16 0 1 1 0 0 0 +( 1332 128 176 ) ( 1332 -216 336 ) ( 1339 -216 344 ) bricks/b_sr_20 0 0 90 1 1 0 0 0 +( 1312 128 176 ) ( 1312 -216 336 ) ( 1332 -216 336 ) bricks/b_mf_v2 -24 -64 0 1 1 0 0 0 +( 1339 128 184 ) ( 1339 -216 344 ) ( 1312 -216 344 ) bricks/b_mf_v2 -24 -64 0 1 1 0 0 0 +( 1296 -192 176 ) ( 1272 -192 176 ) ( 1284 -192 344 ) bricks/b_sr_24 96 -26 0 1 1 0 0 0 +} +// brush 1232 +{ +( 1520 128 144 ) ( 1520 128 272 ) ( 1056 128 272 ) bricks/b_sr_24 -88 16 0 1 1 0 0 0 +( 1312 128 176 ) ( 1312 -216 336 ) ( 1312 -216 328 ) bricks/b_mf_v2 64 16 0 1 1 0 0 0 +( 1326 128 168 ) ( 1326 -216 328 ) ( 1332 -216 336 ) bricks/b_sr_20 0 0 90 1 1 0 0 0 +( 1312 128 168 ) ( 1312 -216 328 ) ( 1326 -216 328 ) bricks/b_mf_v2 -24 -64 0 1 1 0 0 0 +( 1332 128 176 ) ( 1332 -216 336 ) ( 1312 -216 336 ) bricks/b_mf_v2 -24 -64 0 1 1 0 0 0 +( 1296 -192 168 ) ( 1272 -192 168 ) ( 1284 -192 336 ) bricks/b_sr_24 96 -26 0 1 1 0 0 0 +} +// brush 1233 +{ +( 1520 128 144 ) ( 1520 128 272 ) ( 1056 128 272 ) bricks/b_sr_24 -88 16 0 1 1 0 0 0 +( 1312 128 168 ) ( 1312 -216 328 ) ( 1312 -216 320 ) bricks/b_mf_v2 64 16 0 1 1 0 0 0 +( 1323 128 160 ) ( 1323 -216 320 ) ( 1326 -216 328 ) bricks/b_sr_20 0 16 0 1 1 0 0 0 +( 1312 128 160 ) ( 1312 -216 320 ) ( 1323 -216 320 ) bricks/b_mf_v2 -24 -64 0 1 1 0 0 0 +( 1326 128 168 ) ( 1326 -216 328 ) ( 1312 -216 328 ) bricks/b_mf_v2 -24 -64 0 1 1 0 0 0 +( 1296 -192 160 ) ( 1272 -192 160 ) ( 1284 -192 328 ) bricks/b_sr_24 96 -26 0 1 1 0 0 0 +} +// brush 1234 +{ +( 1312 128 144 ) ( 1312 -216 304 ) ( 1321 -216 304 ) bricks/b_mf_v2 -24 -64 0 1 1 0 0 0 +( 1520 128 144 ) ( 1520 128 272 ) ( 1056 128 272 ) bricks/b_sr_24 -88 16 0 1 1 0 0 0 +( 1312 128 152 ) ( 1312 -216 312 ) ( 1312 -216 304 ) bricks/b_mf_v2 64 16 0 1 1 0 0 0 +( 1321 128 144 ) ( 1321 -216 304 ) ( 1321 -216 312 ) bricks/b_sr_20 0 16 0 1 1 0 0 0 +( 1321 128 152 ) ( 1321 -216 312 ) ( 1312 -216 312 ) bricks/b_mf_v2 -24 -64 0 1 1 0 0 0 +( 1296 -192 144 ) ( 1272 -192 144 ) ( 1284 -192 312 ) bricks/b_sr_24 96 -26 0 1 1 0 0 0 +} +// brush 1235 +{ +( 1520 128 144 ) ( 1520 128 272 ) ( 1056 128 272 ) bricks/b_sr_24 -88 16 0 1 1 0 0 0 +( 1312 128 160 ) ( 1312 -216 320 ) ( 1312 -216 312 ) bricks/b_mf_v2 64 16 0 1 1 0 0 0 +( 1321 128 152 ) ( 1321 -216 312 ) ( 1323 -216 320 ) bricks/b_sr_20 0 16 0 1 1 0 0 0 +( 1312 128 152 ) ( 1312 -216 312 ) ( 1321 -216 312 ) bricks/b_mf_v2 -24 -64 0 1 1 0 0 0 +( 1323 128 160 ) ( 1323 -216 320 ) ( 1312 -216 320 ) bricks/b_mf_v2 -24 -64 0 1 1 0 0 0 +( 1296 -192 152 ) ( 1272 -192 152 ) ( 1284 -192 320 ) bricks/b_sr_24 96 -26 0 1 1 0 0 0 +} +// brush 1236 +{ +( 1544 128 32 ) ( 1080 128 32 ) ( 1080 112 32 ) bricks/c_pv_m2 56 -64 0 1 1 0 0 0 +( 1320 128 128 ) ( 1280 128 128 ) ( 1280 128 32 ) bricks/c_pv_m2 56 32 0 1 1 0 0 0 +( 1280 63 32 ) ( 1280 79 32 ) ( 1280 71 160 ) bricks/c_pv_m2 40 0 0 1 1 0 0 0 +( 1321 128 32 ) ( 1321 112 32 ) ( 1321 120 160 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1280 -216 288 ) ( 1320 -216 288 ) ( 1320 -216 64 ) bricks/c_pv_m2 -24 31 -180 1 -1 0 0 0 +( 1279 96 128 ) ( 1279 128 128 ) ( 1320 112 128 ) bricks/c_pv_m2 -24 31 -180 1 -1 0 0 0 +} +// brush 1237 +{ +( 1696 128 32 ) ( 1232 128 32 ) ( 1232 112 32 ) bricks/c_pv_m2 32 -64 0 1 1 0 0 0 +( 1472 128 128 ) ( 1432 128 128 ) ( 1432 128 32 ) bricks/c_pv_m2 32 32 0 1 1 0 0 0 +( 1431 63 32 ) ( 1431 79 32 ) ( 1431 71 160 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1472 128 32 ) ( 1472 112 32 ) ( 1472 120 160 ) bricks/c_pv_m2 64 32 0 1 1 0 0 0 +( 1432 -216 288 ) ( 1472 -216 288 ) ( 1472 -216 64 ) bricks/c_pv_m2 0 32 -180 1 -1 0 0 0 +( 1431 96 128 ) ( 1431 128 128 ) ( 1472 112 128 ) bricks/c_pv_m2 0 32 -180 1 -1 0 0 0 +} +// brush 1238 +{ +( 1431 -192 128 ) ( 1440 -192 128 ) ( 1440 152 128 ) bricks/b_mf_v2 32 -40 0 1 1 0 0 0 +( 1440 152 136 ) ( 1431 152 136 ) ( 1431 152 128 ) bricks/b_sr_24 96 0 0 1 1 0 0 0 +( 1440 -192 152 ) ( 1440 152 152 ) ( 1440 152 144 ) bricks/b_mf_v2 40 0 0 1 1 0 0 0 +( 1431 472 136 ) ( 1431 128 136 ) ( 1431 128 128 ) bricks/b_sr_21 16 0 90 1 1 0 0 0 +( 1440 -192 136 ) ( 1431 -192 136 ) ( 1431 152 136 ) bricks/b_mf_v2 32 -40 0 1 1 0 0 0 +( 1431 128 136 ) ( 1440 128 136 ) ( 1440 128 128 ) bricks/b_mf_v2 31 0 90 1.000015 1 0 0 0 +} +// brush 1239 +{ +( 1440 152 160 ) ( 1429 152 160 ) ( 1431 152 152 ) bricks/b_sr_24 96 16 0 1 1 0 0 0 +( 1440 -192 160 ) ( 1440 152 160 ) ( 1440 152 152 ) bricks/b_mf_v2 40 16 0 1 1 0 0 0 +( 1429 472 160 ) ( 1429 128 160 ) ( 1431 128 152 ) bricks/b_sr_21 16 0 90 1 1 0 0 0 +( 1431 -192 152 ) ( 1440 -192 152 ) ( 1440 152 152 ) bricks/b_mf_v2 32 -40 0 1 1 0 0 0 +( 1440 -192 160 ) ( 1429 -192 160 ) ( 1429 152 160 ) bricks/b_mf_v2 32 -40 0 1 1 0 0 0 +( 1429 128 160 ) ( 1440 128 160 ) ( 1440 128 152 ) bricks/b_mf_v2 15 0 90 1.000015 1 0 0 0 +} +// brush 1240 +{ +( 1440 152 168 ) ( 1426 152 168 ) ( 1429 152 160 ) bricks/b_sr_24 96 16 0 1 1 0 0 0 +( 1440 -192 168 ) ( 1440 152 168 ) ( 1440 152 160 ) bricks/b_mf_v2 40 16 0 1 1 0 0 0 +( 1426 472 168 ) ( 1426 128 168 ) ( 1429 128 160 ) bricks/b_sr_21 16 0 90 1 1 0 0 0 +( 1429 -192 160 ) ( 1440 -192 160 ) ( 1440 152 160 ) bricks/b_mf_v2 32 -40 0 1 1 0 0 0 +( 1440 -192 168 ) ( 1426 -192 168 ) ( 1426 152 168 ) bricks/b_mf_v2 32 -40 0 1 1 0 0 0 +( 1426 128 168 ) ( 1440 128 168 ) ( 1440 128 160 ) bricks/b_mf_v2 15 0 90 1.000015 1 0 0 0 +} +// brush 1241 +{ +( 1440 152 176 ) ( 1420 152 176 ) ( 1426 152 168 ) bricks/b_sr_24 96 16 0 1 1 0 0 0 +( 1440 -192 176 ) ( 1440 152 176 ) ( 1440 152 168 ) bricks/b_mf_v2 40 16 0 1 1 0 0 0 +( 1420 472 176 ) ( 1420 128 176 ) ( 1426 128 168 ) bricks/b_sr_21 16 0 90 1 1 0 0 0 +( 1426 -192 168 ) ( 1440 -192 168 ) ( 1440 152 168 ) bricks/b_mf_v2 32 -40 0 1 1 0 0 0 +( 1440 -192 176 ) ( 1420 -192 176 ) ( 1420 152 176 ) bricks/b_mf_v2 32 -40 0 1 1 0 0 0 +( 1420 128 176 ) ( 1440 128 176 ) ( 1440 128 168 ) bricks/b_mf_v2 15 0 90 1.000015 1 0 0 0 +} +// brush 1242 +{ +( 1440 152 184 ) ( 1413 152 184 ) ( 1420 152 176 ) bricks/b_sr_24 96 16 0 1 1 0 0 0 +( 1440 -192 184 ) ( 1440 152 184 ) ( 1440 152 176 ) bricks/b_mf_v2 40 16 0 1 1 0 0 0 +( 1413 472 184 ) ( 1413 128 184 ) ( 1420 128 176 ) bricks/b_sr_21 16 0 90 1 1 0 0 0 +( 1420 -192 176 ) ( 1440 -192 176 ) ( 1440 152 176 ) bricks/b_mf_v2 32 -40 0 1 1 0 0 0 +( 1440 -192 184 ) ( 1413 -192 184 ) ( 1413 152 184 ) bricks/b_mf_v2 32 -40 0 1 1 0 0 0 +( 1413 128 184 ) ( 1440 128 184 ) ( 1440 128 176 ) bricks/b_mf_v2 15 0 90 1.000015 1 0 0 0 +} +// brush 1243 +{ +( 1440 152 192 ) ( 1402 152 192 ) ( 1413 152 184 ) bricks/b_sr_24 96 16 0 1 1 0 0 0 +( 1440 -192 192 ) ( 1440 152 192 ) ( 1440 152 184 ) bricks/b_mf_v2 40 16 0 1 1 0 0 0 +( 1402 472 192 ) ( 1402 128 192 ) ( 1413 128 184 ) bricks/b_sr_21 32 -8 0 1 1 0 0 0 +( 1413 -192 184 ) ( 1440 -192 184 ) ( 1440 152 184 ) bricks/b_mf_v2 32 -40 0 1 1 0 0 0 +( 1440 -192 192 ) ( 1402 -192 192 ) ( 1402 152 192 ) bricks/b_mf_v2 32 -40 0 1 1 0 0 0 +( 1402 128 192 ) ( 1440 128 192 ) ( 1440 128 184 ) bricks/b_mf_v2 15 0 90 1.000015 1 0 0 0 +} +// brush 1244 +{ +( 1440 152 196 ) ( 1388 152 196 ) ( 1402 152 192 ) bricks/b_sr_24 96 16 0 1 1 0 0 0 +( 1440 -192 196 ) ( 1440 152 196 ) ( 1440 152 192 ) bricks/b_mf_v2 40 16 0 1 1 0 0 0 +( 1388 472 196 ) ( 1388 128 196 ) ( 1402 128 192 ) bricks/b_sr_21 32 -8 0 1 1 0 0 0 +( 1402 -192 192 ) ( 1440 -192 192 ) ( 1440 152 192 ) bricks/b_mf_v2 32 -40 0 1 1 0 0 0 +( 1440 -192 196 ) ( 1388 -192 196 ) ( 1388 152 196 ) bricks/b_mf_v2 32 -40 0 1 1 0 0 0 +( 1388 128 196 ) ( 1440 128 196 ) ( 1440 128 192 ) bricks/b_mf_v2 15 0 90 1.000015 1 0 0 0 +} +// brush 1245 +{ +( 1350 152 192 ) ( 1312 152 192 ) ( 1312 152 184 ) bricks/b_sr_24 96 16 0 1 1 0 0 0 +( 1312 152 192 ) ( 1312 -192 192 ) ( 1312 -192 184 ) bricks/b_mf_v2 -56 16 -180 1 -1 0 0 0 +( 1350 128 192 ) ( 1350 472 192 ) ( 1339 472 184 ) bricks/b_sr_21 32 -8 0 1 1 0 0 0 +( 1312 -192 184 ) ( 1339 -192 184 ) ( 1339 152 184 ) bricks/b_mf_v2 -47 55 -180 1 1 0 0 0 +( 1350 -192 192 ) ( 1312 -192 192 ) ( 1312 152 192 ) bricks/b_mf_v2 -47 55 -180 1 1 0 0 0 +( 1312 128 192 ) ( 1350 128 192 ) ( 1339 128 184 ) bricks/b_mf_v2 -31 16 -90 1 1 0 0 0 +} +// brush 1246 +{ +( 1339 152 184 ) ( 1312 152 184 ) ( 1312 152 176 ) bricks/b_sr_24 96 16 0 1 1 0 0 0 +( 1312 152 184 ) ( 1312 -192 184 ) ( 1312 -192 176 ) bricks/b_mf_v2 -56 16 -180 1 -1 0 0 0 +( 1339 128 184 ) ( 1339 472 184 ) ( 1332 472 176 ) bricks/b_sr_21 16 0 90 1 1 0 0 0 +( 1312 -192 176 ) ( 1332 -192 176 ) ( 1332 152 176 ) bricks/b_mf_v2 -47 55 -180 1 1 0 0 0 +( 1339 -192 184 ) ( 1312 -192 184 ) ( 1312 152 184 ) bricks/b_mf_v2 -47 55 -180 1 1 0 0 0 +( 1312 128 184 ) ( 1339 128 184 ) ( 1332 128 176 ) bricks/b_mf_v2 -31 16 -90 1 1 0 0 0 +} +// brush 1247 +{ +( 1332 152 176 ) ( 1312 152 176 ) ( 1312 152 168 ) bricks/b_sr_24 96 16 0 1 1 0 0 0 +( 1312 152 176 ) ( 1312 -192 176 ) ( 1312 -192 168 ) bricks/b_mf_v2 -56 16 -180 1 -1 0 0 0 +( 1332 128 176 ) ( 1332 472 176 ) ( 1326 472 168 ) bricks/b_sr_21 16 0 90 1 1 0 0 0 +( 1312 -192 168 ) ( 1326 -192 168 ) ( 1326 152 168 ) bricks/b_mf_v2 -47 55 -180 1 1 0 0 0 +( 1332 -192 176 ) ( 1312 -192 176 ) ( 1312 152 176 ) bricks/b_mf_v2 -47 55 -180 1 1 0 0 0 +( 1312 128 176 ) ( 1332 128 176 ) ( 1326 128 168 ) bricks/b_mf_v2 -31 16 -90 1 1 0 0 0 +} +// brush 1248 +{ +( 1326 152 168 ) ( 1312 152 168 ) ( 1312 152 160 ) bricks/b_sr_24 96 16 0 1 1 0 0 0 +( 1312 152 168 ) ( 1312 -192 168 ) ( 1312 -192 160 ) bricks/b_mf_v2 -56 16 -180 1 -1 0 0 0 +( 1326 128 168 ) ( 1326 472 168 ) ( 1323 472 160 ) bricks/b_sr_21 16 0 90 1 1 0 0 0 +( 1312 -192 160 ) ( 1323 -192 160 ) ( 1323 152 160 ) bricks/b_mf_v2 -47 55 -180 1 1 0 0 0 +( 1326 -192 168 ) ( 1312 -192 168 ) ( 1312 152 168 ) bricks/b_mf_v2 -47 55 -180 1 1 0 0 0 +( 1312 128 168 ) ( 1326 128 168 ) ( 1323 128 160 ) bricks/b_mf_v2 -31 16 -90 1 1 0 0 0 +} +// brush 1249 +{ +( 1323 152 160 ) ( 1312 152 160 ) ( 1312 152 152 ) bricks/b_sr_24 96 16 0 1 1 0 0 0 +( 1312 152 160 ) ( 1312 -192 160 ) ( 1312 -192 152 ) bricks/b_mf_v2 -56 16 -180 1 -1 0 0 0 +( 1323 128 160 ) ( 1323 472 160 ) ( 1321 472 152 ) bricks/b_sr_21 16 0 90 1 1 0 0 0 +( 1312 -192 152 ) ( 1321 -192 152 ) ( 1321 152 152 ) bricks/b_mf_v2 -47 55 -180 1 1 0 0 0 +( 1323 -192 160 ) ( 1312 -192 160 ) ( 1312 152 160 ) bricks/b_mf_v2 -47 55 -180 1 1 0 0 0 +( 1312 128 160 ) ( 1323 128 160 ) ( 1321 128 152 ) bricks/b_mf_v2 -31 16 -90 1 1 0 0 0 +} +// brush 1250 +{ +( 1312 -192 128 ) ( 1321 -192 128 ) ( 1321 152 128 ) bricks/b_mf_v2 -47 55 -180 1 1 0 0 0 +( 1321 152 136 ) ( 1312 152 136 ) ( 1312 152 128 ) bricks/b_sr_24 96 0 0 1 1 0 0 0 +( 1312 152 120 ) ( 1312 -192 120 ) ( 1312 -192 112 ) bricks/b_mf_v2 -56 0 -180 1 -1 0 0 0 +( 1321 128 136 ) ( 1321 472 136 ) ( 1321 472 128 ) bricks/b_sr_21 16 0 90 1 1 0 0 0 +( 1321 -192 136 ) ( 1312 -192 136 ) ( 1312 152 136 ) bricks/b_mf_v2 -47 55 -180 1 1 0 0 0 +( 1312 128 136 ) ( 1321 128 136 ) ( 1321 128 128 ) bricks/b_mf_v2 -47 16 -90 1 1 0 0 0 +} +// brush 1251 +{ +( 1364 152 196 ) ( 1312 152 196 ) ( 1312 152 192 ) bricks/b_sr_24 96 16 0 1 1 0 0 0 +( 1312 152 196 ) ( 1312 -192 196 ) ( 1312 -192 192 ) bricks/b_mf_v2 -56 16 -180 1 -1 0 0 0 +( 1364 128 196 ) ( 1364 472 196 ) ( 1350 472 192 ) bricks/b_sr_21 32 -8 0 1 1 0 0 0 +( 1312 -192 192 ) ( 1350 -192 192 ) ( 1350 152 192 ) bricks/b_mf_v2 -47 55 -180 1 1 0 0 0 +( 1364 -192 196 ) ( 1312 -192 196 ) ( 1312 152 196 ) bricks/b_mf_v2 -47 55 -180 1 1 0 0 0 +( 1312 128 196 ) ( 1364 128 196 ) ( 1350 128 192 ) bricks/b_mf_v2 -31 16 -90 1 1 0 0 0 +} +// brush 1252 +{ +( 1312 152 196 ) ( 1368 152 196 ) ( 1368 152 208 ) bricks/b_sr_24 96 16 0 1 1 0 0 0 +( 1368 -192 208 ) ( 1312 -192 208 ) ( 1312 152 208 ) bricks/b_mf_v2 32 -40 0 1 1 0 0 0 +( 1312 -192 196 ) ( 1312 152 196 ) ( 1312 152 208 ) bricks/b_mf_v2 40 16 0 1 1 0 0 0 +( 1312 -192 196 ) ( 1368 -192 196 ) ( 1368 152 196 ) bricks/b_sr_21 32 -8 0 1 1 0 0 0 +( 1368 472 196 ) ( 1368 128 196 ) ( 1368 128 208 ) bricks/b_sr_21 40 16 0 1 1 0 0 0 +( 1368 128 196 ) ( 1312 128 196 ) ( 1312 128 208 ) bricks/b_sr_21 0 16 -180 1 -1 0 0 0 +} +// brush 1253 +{ +( 1384 152 196 ) ( 1440 152 196 ) ( 1440 152 208 ) bricks/b_sr_24 96 16 0 1 1 0 0 0 +( 1440 -192 208 ) ( 1384 -192 208 ) ( 1384 152 208 ) bricks/b_mf_v2 32 -40 0 1 1 0 0 0 +( 1440 152 196 ) ( 1440 -192 196 ) ( 1440 -192 208 ) bricks/b_mf_v2 40 16 0 1 1 0 0 0 +( 1384 -192 196 ) ( 1440 -192 196 ) ( 1440 152 196 ) bricks/b_sr_21 32 -8 0 1 1 0 0 0 +( 1384 128 196 ) ( 1384 472 196 ) ( 1384 472 208 ) bricks/b_sr_21 40 16 0 1 1 0 0 0 +( 1440 128 196 ) ( 1384 128 196 ) ( 1384 128 208 ) bricks/b_sr_21 0 16 -180 1 -1 0 0 0 +} +// brush 1254 +{ +( 1472 -160 16 ) ( 1280 -160 16 ) ( 1280 -192 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1280 -192 192 ) ( 1280 -160 192 ) ( 1472 -160 192 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +( 1280 -192 32 ) ( 1472 -192 32 ) ( 1472 -192 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1440 -192 32 ) ( 1440 -160 32 ) ( 1440 -160 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1472 -160 32 ) ( 1280 -160 32 ) ( 1280 -160 16 ) bricks/c_sr_m8e 64 48 0 1 1 0 67108864 0 +( 1312 -152 32 ) ( 1312 -184 32 ) ( 1312 -184 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +} +// brush 1255 +{ +( 1472 -128 16 ) ( 1280 -128 16 ) ( 1280 -160 16 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +( 1280 -160 176 ) ( 1280 -128 176 ) ( 1472 -128 176 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +( 1280 -160 32 ) ( 1472 -160 32 ) ( 1472 -160 16 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +( 1440 -160 32 ) ( 1440 -128 32 ) ( 1440 -128 16 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +( 1472 -128 32 ) ( 1280 -128 32 ) ( 1280 -128 16 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +( 1312 -120 32 ) ( 1312 -152 32 ) ( 1312 -152 16 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +} +// brush 1256 +{ +( 1472 -96 16 ) ( 1280 -96 16 ) ( 1280 -128 16 ) bricks/c_sr_m8e 64 64 0 1 1 0 67108864 0 +( 1280 -128 160 ) ( 1280 -96 160 ) ( 1472 -96 160 ) bricks/c_sr_m8e 0 64 0 1 1 0 67108864 0 +( 1280 -128 32 ) ( 1472 -128 32 ) ( 1472 -128 16 ) bricks/c_sr_m8e 64 64 0 1 1 0 67108864 0 +( 1440 -128 32 ) ( 1440 -96 32 ) ( 1440 -96 16 ) bricks/c_sr_m8e 64 64 0 1 1 0 67108864 0 +( 1472 -96 32 ) ( 1280 -96 32 ) ( 1280 -96 16 ) bricks/c_sr_m8e 0 80 0 1 1 0 67108864 0 +( 1312 -88 32 ) ( 1312 -120 32 ) ( 1312 -120 16 ) bricks/c_sr_m8e 64 64 0 1 1 0 67108864 0 +} +// brush 1257 +{ +( 1472 -64 16 ) ( 1280 -64 16 ) ( 1280 -96 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1280 -96 144 ) ( 1280 -64 144 ) ( 1472 -64 144 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +( 1280 -96 32 ) ( 1472 -96 32 ) ( 1472 -96 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1440 -96 32 ) ( 1440 -64 32 ) ( 1440 -64 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1472 -64 32 ) ( 1280 -64 32 ) ( 1280 -64 16 ) bricks/c_sr_m8e 64 64 0 1 1 0 67108864 0 +( 1312 -56 32 ) ( 1312 -88 32 ) ( 1312 -88 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +} +// brush 1258 +{ +( 1472 -32 16 ) ( 1280 -32 16 ) ( 1280 -64 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1280 -64 128 ) ( 1280 -32 128 ) ( 1472 -32 128 ) bricks/c_sr_m8e 0 64 0 1 1 0 67108864 0 +( 1280 -64 32 ) ( 1472 -64 32 ) ( 1472 -64 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1440 -64 32 ) ( 1440 -32 32 ) ( 1440 -32 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1472 -32 32 ) ( 1280 -32 32 ) ( 1280 -32 16 ) bricks/c_sr_m8e 64 48 0 1 1 0 67108864 0 +( 1312 -24 32 ) ( 1312 -56 32 ) ( 1312 -56 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +} +// brush 1259 +{ +( 1472 0 16 ) ( 1280 0 16 ) ( 1280 -32 16 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +( 1280 -32 112 ) ( 1280 0 112 ) ( 1472 0 112 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +( 1280 -32 32 ) ( 1472 -32 32 ) ( 1472 -32 16 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +( 1440 -32 32 ) ( 1440 0 32 ) ( 1440 0 16 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +( 1472 0 32 ) ( 1280 0 32 ) ( 1280 0 16 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +( 1312 8 32 ) ( 1312 -24 32 ) ( 1312 -24 16 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +} +// brush 1260 +{ +( 1472 32 16 ) ( 1280 32 16 ) ( 1280 0 16 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +( 1280 0 96 ) ( 1280 32 96 ) ( 1472 32 96 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +( 1280 0 32 ) ( 1472 0 32 ) ( 1472 0 16 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +( 1440 0 32 ) ( 1440 32 32 ) ( 1440 32 16 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +( 1472 32 32 ) ( 1280 32 32 ) ( 1280 32 16 ) bricks/c_sr_m8e 96 80 0 1 1 0 67108864 0 +( 1312 40 32 ) ( 1312 8 32 ) ( 1312 8 16 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +} +// brush 1261 +{ +( 1472 64 16 ) ( 1280 64 16 ) ( 1280 32 16 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +( 1280 32 80 ) ( 1280 64 80 ) ( 1472 64 80 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +( 1280 32 32 ) ( 1472 32 32 ) ( 1472 32 16 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +( 1440 32 32 ) ( 1440 64 32 ) ( 1440 64 16 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +( 1472 64 32 ) ( 1280 64 32 ) ( 1280 64 16 ) bricks/c_sr_m8e 64 64 0 1 1 0 67108864 0 +( 1312 72 32 ) ( 1312 40 32 ) ( 1312 40 16 ) bricks/c_sr_m8e 64 32 0 1 1 0 67108864 0 +} +// brush 1262 +{ +( 1472 96 16 ) ( 1280 96 16 ) ( 1280 64 16 ) bricks/c_sr_m8e 0 64 0 1 1 0 67108864 0 +( 1280 64 64 ) ( 1280 96 64 ) ( 1472 96 64 ) bricks/c_sr_m8e 0 64 0 1 1 0 67108864 0 +( 1280 64 32 ) ( 1472 64 32 ) ( 1472 64 16 ) bricks/c_sr_m8e 0 64 0 1 1 0 67108864 0 +( 1440 64 32 ) ( 1440 96 32 ) ( 1440 96 16 ) bricks/c_sr_m8e 0 64 0 1 1 0 67108864 0 +( 1472 96 32 ) ( 1280 96 32 ) ( 1280 96 16 ) bricks/c_sr_m8e 96 112 0 1 1 0 67108864 0 +( 1312 104 32 ) ( 1312 72 32 ) ( 1312 72 16 ) bricks/c_sr_m8e 0 64 0 1 1 0 67108864 0 +} +// brush 1263 +{ +( 1472 128 16 ) ( 1280 128 16 ) ( 1280 96 16 ) bricks/c_sr_m8e 0 64 0 1 1 0 67108864 0 +( 1280 96 48 ) ( 1280 128 48 ) ( 1472 128 48 ) bricks/c_sr_m8e 0 64 0 1 1 0 67108864 0 +( 1280 96 32 ) ( 1472 96 32 ) ( 1472 96 16 ) bricks/c_sr_m8e 0 64 0 1 1 0 67108864 0 +( 1440 96 32 ) ( 1440 128 32 ) ( 1440 128 16 ) bricks/c_sr_m8e 0 64 0 1 1 0 67108864 0 +( 1472 128 32 ) ( 1280 128 32 ) ( 1280 128 16 ) bricks/c_sr_m8e 64 96 0 1 1 0 67108864 0 +( 1312 136 32 ) ( 1312 104 32 ) ( 1312 104 16 ) bricks/c_sr_m8e 0 64 0 1 1 0 67108864 0 +} +// brush 1264 +{ +( 1968 -128 16 ) ( 1728 -128 16 ) ( 1728 -192 16 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1728 -192 32 ) ( 1728 -128 32 ) ( 1968 -128 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1728 192 0 ) ( 1728 256 0 ) ( 1728 224 32 ) bricks/c_sr_m8e -64 0 0 1 1 0 0 0 +( 1920 264 0 ) ( 1920 200 0 ) ( 1920 232 32 ) bricks/c_sr_m8e -64 0 0 1 1 0 0 0 +( 1792 -128 16 ) ( 1808 -128 16 ) ( 1800 -128 32 ) bricks/c_sr_m8e -64 0 0 1 1 0 0 0 +( 1736 -144 16 ) ( 1728 -144 16 ) ( 1732 -144 32 ) bricks/c_sr_m8e -64 0 0 1 1 0 0 0 +} +// brush 1265 +{ +( 1968 -128 16 ) ( 1728 -128 16 ) ( 1728 -192 16 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1728 -192 32 ) ( 1728 -128 32 ) ( 1968 -128 32 ) metals/mt_pv_m10am 0 32 0 1 1 0 16777216 0 +( 1728 192 0 ) ( 1728 256 0 ) ( 1728 224 32 ) bricks/c_sr_m8e -64 0 0 1 1 0 0 0 +( 1920 264 0 ) ( 1920 200 0 ) ( 1920 232 32 ) bricks/c_sr_m8e -64 0 0 1 1 0 0 0 +( 1744 -152 16 ) ( 1728 -152 16 ) ( 1736 -152 32 ) bricks/c_sr_m8e -64 0 0 1 1 0 0 0 +( 1728 -144 16 ) ( 1736 -144 16 ) ( 1732 -144 32 ) bricks/c_sr_m8e -64 0 0 1 1 0 0 0 +} +// brush 1266 +{ +( 1968 -128 16 ) ( 1728 -128 16 ) ( 1728 -192 16 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1728 -192 32 ) ( 1728 -128 32 ) ( 1968 -128 32 ) metals/mt_pv_m10am 0 8 0 1 1 0 16777216 0 +( 1728 192 0 ) ( 1728 256 0 ) ( 1728 224 32 ) bricks/c_sr_m8e -64 0 0 1 1 0 0 0 +( 1920 264 0 ) ( 1920 200 0 ) ( 1920 232 32 ) bricks/c_sr_m8e -64 0 0 1 1 0 0 0 +( 1728 -168 16 ) ( 1744 -168 16 ) ( 1736 -168 32 ) bricks/c_sr_m8e -64 0 0 1 1 0 0 0 +( 1736 -176 16 ) ( 1728 -176 16 ) ( 1732 -176 32 ) bricks/c_sr_m8e -64 0 0 1 1 0 0 0 +} +// brush 1267 +{ +( 1968 -128 16 ) ( 1728 -128 16 ) ( 1728 -192 16 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1728 -192 32 ) ( 1728 -128 32 ) ( 1968 -128 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1728 -192 32 ) ( 1968 -192 32 ) ( 1968 -192 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1728 192 0 ) ( 1728 256 0 ) ( 1728 224 32 ) bricks/c_sr_m8e -64 0 0 1 1 0 0 0 +( 1920 264 0 ) ( 1920 200 0 ) ( 1920 232 32 ) bricks/c_sr_m8e -64 0 0 1 1 0 0 0 +( 1728 -176 16 ) ( 1736 -176 16 ) ( 1732 -176 32 ) bricks/c_sr_m8e -64 0 0 1 1 0 0 0 +} +// brush 1268 +{ +( 1664 -544 0 ) ( 1600 -544 0 ) ( 1600 -672 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1600 -672 32 ) ( 1600 -544 32 ) ( 1664 -544 32 ) metals/mt_pv_m10am 0 56 90 1 1 0 16777216 0 +( 1624 -704 0 ) ( 1600 -704 0 ) ( 1612 -704 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1600 -512 0 ) ( 1632 -512 0 ) ( 1616 -512 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1624 -512 0 ) ( 1624 -520 0 ) ( 1624 -516 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1616 -520 0 ) ( 1616 -512 0 ) ( 1616 -516 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +} +// brush 1269 +{ +( 1664 -544 0 ) ( 1600 -544 0 ) ( 1600 -672 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1600 -672 32 ) ( 1600 -544 32 ) ( 1664 -544 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1600 -544 32 ) ( 1600 -672 32 ) ( 1600 -672 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1624 -640 0 ) ( 1600 -640 0 ) ( 1612 -640 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1600 -576 0 ) ( 1632 -576 0 ) ( 1616 -576 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1616 -512 0 ) ( 1616 -520 0 ) ( 1616 -516 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +} +// brush 1270 +{ +( 1664 -544 0 ) ( 1600 -544 0 ) ( 1600 -672 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1600 -672 32 ) ( 1600 -544 32 ) ( 1664 -544 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1664 -672 32 ) ( 1664 -544 32 ) ( 1664 -544 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1624 -704 0 ) ( 1600 -704 0 ) ( 1612 -704 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1600 -512 0 ) ( 1632 -512 0 ) ( 1616 -512 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1648 -520 0 ) ( 1648 -512 0 ) ( 1648 -516 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +} +// brush 1271 +{ +( 1664 -544 0 ) ( 1600 -544 0 ) ( 1600 -672 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1600 -672 32 ) ( 1600 -544 32 ) ( 1664 -544 32 ) metals/mt_pv_m10am 0 8 90 1 1 0 16777216 0 +( 1624 -704 0 ) ( 1600 -704 0 ) ( 1612 -704 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1600 -512 0 ) ( 1632 -512 0 ) ( 1616 -512 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1640 -528 0 ) ( 1640 -512 0 ) ( 1640 -520 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1648 -512 0 ) ( 1648 -520 0 ) ( 1648 -516 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +} +// brush 1272 +{ +( 1624 -672 32 ) ( 1624 -668 32 ) ( 1616 -668 32 ) floors/dr_pv_m1 32 104 90 1 1 134217728 0 0 +( 1616 -668 160 ) ( 1624 -668 160 ) ( 1624 -672 160 ) floors/dr_pv_m1 32 104 90 1 1 134217728 0 0 +( 1622 -668 160 ) ( 1622 -672 160 ) ( 1622 -672 32 ) floors/dr_pv_m1 31 32 0 1 1 134217728 8388608 0 +( 1616 -672 160 ) ( 1624 -672 160 ) ( 1624 -672 32 ) floors/dr_pv_m1 -40 32 -180 1 -1 134217728 0 0 +( 1624 -672 160 ) ( 1624 -668 160 ) ( 1624 -668 32 ) floors/dr_pv_m1 32 32 0 1 1 134217728 0 0 +( 1624 -666 160 ) ( 1616 -666 160 ) ( 1616 -666 32 ) floors/dr_pv_m1 41 32 0 1 1 134217728 8388608 0 +} +// brush 1273 +{ +( 1624 -550 32 ) ( 1624 -546 32 ) ( 1616 -546 32 ) floors/dr_pv_m1 26 104 90 1 1 134217728 0 0 +( 1616 -546 160 ) ( 1624 -546 160 ) ( 1624 -550 160 ) floors/dr_pv_m1 26 104 90 1 1 134217728 0 0 +( 1622 -546 160 ) ( 1622 -550 160 ) ( 1622 -550 32 ) floors/dr_pv_m1 33 32 0 1 1 134217728 8388608 0 +( 1616 -550 160 ) ( 1624 -550 160 ) ( 1624 -550 32 ) floors/dr_pv_m1 41 32 0 1 1 134217728 8388608 0 +( 1624 -550 160 ) ( 1624 -546 160 ) ( 1624 -546 32 ) floors/dr_pv_m1 32 32 0 1 1 134217728 0 0 +( 1624 -544 160 ) ( 1616 -544 160 ) ( 1616 -544 32 ) floors/dr_pv_m1 -28 34 -180 1 -1 134217728 0 0 +} +// brush 1274 +{ +( 1642 -550 32 ) ( 1642 -546 32 ) ( 1634 -546 32 ) floors/dr_pv_m1 26 -5 90 1 1 134217728 0 0 +( 1634 -546 160 ) ( 1642 -546 160 ) ( 1642 -550 160 ) floors/dr_pv_m1 26 -5 90 1 1 134217728 0 0 +( 1640 -546 160 ) ( 1640 -550 160 ) ( 1640 -550 32 ) floors/dr_pv_m1 32 32 0 1 1 134217728 0 0 +( 1634 -550 160 ) ( 1642 -550 160 ) ( 1642 -550 32 ) floors/dr_pv_m1 -27 34 -180 1 -1 134217728 8388608 0 +( 1642 -550 160 ) ( 1642 -546 160 ) ( 1642 -546 32 ) floors/dr_pv_m1 33 32 0 1 1 134217728 8388608 0 +( 1642 -544 160 ) ( 1634 -544 160 ) ( 1634 -544 32 ) floors/dr_pv_m1 -46 34 -180 1 -1 134217728 0 0 +} +// brush 1275 +{ +( 1642 -672 32 ) ( 1642 -668 32 ) ( 1634 -668 32 ) floors/dr_pv_m1 32 -5 90 1 1 134217728 0 0 +( 1634 -668 160 ) ( 1642 -668 160 ) ( 1642 -672 160 ) floors/dr_pv_m1 32 -5 90 1 1 134217728 0 0 +( 1640 -668 160 ) ( 1640 -672 160 ) ( 1640 -672 32 ) floors/dr_pv_m1 32 32 0 1 1 134217728 0 0 +( 1634 -672 160 ) ( 1642 -672 160 ) ( 1642 -672 32 ) floors/dr_pv_m1 -58 32 -180 1 -1 134217728 0 0 +( 1642 -672 160 ) ( 1642 -668 160 ) ( 1642 -668 32 ) floors/dr_pv_m1 31 32 0 1 1 134217728 8388608 0 +( 1642 -666 160 ) ( 1634 -666 160 ) ( 1634 -666 32 ) floors/dr_pv_m1 -27 34 -180 1 -1 134217728 8388608 0 +} +// brush 1276 +{ +( 1616 -672 80 ) ( 1600 -672 80 ) ( 1600 -720 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1600 -720 256 ) ( 1600 -672 256 ) ( 1616 -672 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1600 -720 224 ) ( 1616 -720 224 ) ( 1616 -720 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1664 -720 224 ) ( 1664 -672 224 ) ( 1664 -672 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1664 -672 224 ) ( 1648 -672 224 ) ( 1648 -672 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1640 -680 128 ) ( 1640 -672 128 ) ( 1640 -676 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1277 +{ +( 1616 -672 128 ) ( 1600 -672 128 ) ( 1600 -720 128 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +( 1600 -720 256 ) ( 1600 -672 256 ) ( 1616 -672 256 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +( 1600 -720 224 ) ( 1616 -720 224 ) ( 1616 -720 128 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +( 1664 -672 224 ) ( 1648 -672 224 ) ( 1648 -672 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1624 -680 128 ) ( 1624 -672 128 ) ( 1624 -676 256 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +( 1640 -672 128 ) ( 1640 -680 128 ) ( 1640 -676 256 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +} +// brush 1278 +{ +( 1616 -496 32 ) ( 1600 -496 32 ) ( 1600 -720 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1600 -720 80 ) ( 1600 -496 80 ) ( 1616 -496 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1600 -720 224 ) ( 1616 -720 224 ) ( 1616 -720 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1664 -720 224 ) ( 1664 -496 224 ) ( 1664 -496 128 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1648 -672 32 ) ( 1664 -672 32 ) ( 1656 -672 128 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1640 -680 32 ) ( 1640 -672 32 ) ( 1640 -676 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1279 +{ +( 1616 -496 32 ) ( 1600 -496 32 ) ( 1600 -720 32 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1600 -720 128 ) ( 1600 -496 128 ) ( 1616 -496 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1600 -720 224 ) ( 1616 -720 224 ) ( 1616 -720 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1648 -672 32 ) ( 1664 -672 32 ) ( 1656 -672 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1624 -680 32 ) ( 1624 -672 32 ) ( 1624 -676 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1640 -672 32 ) ( 1640 -680 32 ) ( 1640 -676 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +} +// brush 1280 +{ +( 1616 -496 32 ) ( 1600 -496 32 ) ( 1600 -720 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1600 -720 80 ) ( 1600 -496 80 ) ( 1616 -496 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1600 -720 224 ) ( 1616 -720 224 ) ( 1616 -720 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1600 -496 224 ) ( 1600 -720 224 ) ( 1600 -720 128 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1648 -672 32 ) ( 1664 -672 32 ) ( 1656 -672 128 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1624 -672 32 ) ( 1624 -680 32 ) ( 1624 -676 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1281 +{ +( 1616 -672 80 ) ( 1600 -672 80 ) ( 1600 -720 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1600 -720 256 ) ( 1600 -672 256 ) ( 1616 -672 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1600 -720 224 ) ( 1616 -720 224 ) ( 1616 -720 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1664 -672 224 ) ( 1648 -672 224 ) ( 1648 -672 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1600 -672 224 ) ( 1600 -720 224 ) ( 1600 -720 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1624 -672 128 ) ( 1624 -680 128 ) ( 1624 -676 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1282 +{ +( 1616 -496 32 ) ( 1600 -496 32 ) ( 1600 -720 32 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1600 -720 128 ) ( 1600 -496 128 ) ( 1616 -496 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1616 -496 224 ) ( 1600 -496 224 ) ( 1600 -496 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1672 -544 32 ) ( 1656 -544 32 ) ( 1664 -544 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1624 -544 32 ) ( 1624 -536 32 ) ( 1624 -540 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1640 -536 32 ) ( 1640 -544 32 ) ( 1640 -540 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +} +// brush 1283 +{ +( 1616 -496 32 ) ( 1600 -496 32 ) ( 1600 -720 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1600 -720 80 ) ( 1600 -496 80 ) ( 1616 -496 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1664 -720 224 ) ( 1664 -496 224 ) ( 1664 -496 128 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1616 -496 224 ) ( 1600 -496 224 ) ( 1600 -496 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1672 -544 32 ) ( 1656 -544 32 ) ( 1664 -544 128 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1640 -544 32 ) ( 1640 -536 32 ) ( 1640 -540 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1284 +{ +( 1616 -496 128 ) ( 1600 -496 128 ) ( 1600 -544 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1600 -544 256 ) ( 1600 -496 256 ) ( 1616 -496 256 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1648 -544 224 ) ( 1664 -544 224 ) ( 1664 -544 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1616 -496 224 ) ( 1600 -496 224 ) ( 1600 -496 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1624 -544 128 ) ( 1624 -536 128 ) ( 1624 -540 256 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1640 -536 128 ) ( 1640 -544 128 ) ( 1640 -540 256 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +} +// brush 1285 +{ +( 1616 -496 80 ) ( 1600 -496 80 ) ( 1600 -544 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1600 -544 256 ) ( 1600 -496 256 ) ( 1616 -496 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -544 224 ) ( 1664 -544 224 ) ( 1664 -544 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1664 -544 224 ) ( 1664 -496 224 ) ( 1664 -496 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1616 -496 224 ) ( 1600 -496 224 ) ( 1600 -496 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1640 -544 128 ) ( 1640 -536 128 ) ( 1640 -540 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1286 +{ +( 1616 -496 32 ) ( 1600 -496 32 ) ( 1600 -720 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1600 -720 80 ) ( 1600 -496 80 ) ( 1616 -496 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1616 -496 224 ) ( 1600 -496 224 ) ( 1600 -496 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1600 -496 224 ) ( 1600 -720 224 ) ( 1600 -720 128 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1672 -544 32 ) ( 1656 -544 32 ) ( 1664 -544 128 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1624 -536 32 ) ( 1624 -544 32 ) ( 1624 -540 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1287 +{ +( 1616 -496 80 ) ( 1600 -496 80 ) ( 1600 -544 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1600 -544 256 ) ( 1600 -496 256 ) ( 1616 -496 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -544 224 ) ( 1664 -544 224 ) ( 1664 -544 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1616 -496 224 ) ( 1600 -496 224 ) ( 1600 -496 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1600 -496 224 ) ( 1600 -544 224 ) ( 1600 -544 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1624 -536 128 ) ( 1624 -544 128 ) ( 1624 -540 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1288 +{ +( 1664 -544 0 ) ( 1600 -544 0 ) ( 1600 -672 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1600 -672 32 ) ( 1600 -544 32 ) ( 1664 -544 32 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1624 -704 0 ) ( 1600 -704 0 ) ( 1612 -704 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1600 -512 0 ) ( 1632 -512 0 ) ( 1616 -512 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1624 -520 0 ) ( 1624 -512 0 ) ( 1624 -516 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1640 -512 0 ) ( 1640 -528 0 ) ( 1640 -520 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +} +// brush 1289 +{ +( 1664 -544 0 ) ( 1600 -544 0 ) ( 1600 -672 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1600 -672 32 ) ( 1600 -544 32 ) ( 1664 -544 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 1728 -640 32 ) ( 1728 -640 0 ) ( 1664 -704 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1728 -640 0 ) ( 1728 -640 32 ) ( 1600 -640 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1664 -544 32 ) ( 1664 -672 32 ) ( 1664 -544 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +} +// brush 1290 +{ +( 1664 -544 0 ) ( 1600 -544 0 ) ( 1600 -672 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1600 -672 32 ) ( 1600 -544 32 ) ( 1664 -544 32 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +( 1728 -576 0 ) ( 1728 -576 32 ) ( 1664 -512 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1728 -576 32 ) ( 1728 -576 0 ) ( 1600 -576 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1664 -544 32 ) ( 1664 -672 32 ) ( 1664 -544 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +} +// brush 1291 +{ +( 1888 -150 32 ) ( 1884 -150 32 ) ( 1884 -158 32 ) floors/dr_pv_m1 32 58 0 1 1 134217728 0 0 +( 1884 -158 160 ) ( 1884 -150 160 ) ( 1888 -150 160 ) floors/dr_pv_m1 32 58 0 1 1 134217728 0 0 +( 1884 -152 160 ) ( 1888 -152 160 ) ( 1888 -152 32 ) floors/dr_pv_m1 32 32 0 1 1 134217728 0 0 +( 1888 -158 160 ) ( 1888 -150 160 ) ( 1888 -150 32 ) floors/dr_pv_m1 6 32 0 1 1 134217728 0 0 +( 1888 -150 160 ) ( 1884 -150 160 ) ( 1884 -150 32 ) floors/dr_pv_m1 33 32 0 1 1 134217728 8388608 0 +( 1882 -150 160 ) ( 1882 -158 160 ) ( 1882 -158 32 ) floors/dr_pv_m1 27 32 0 1 1 134217728 8388608 0 +} +// brush 1292 +{ +( 1766 -150 32 ) ( 1762 -150 32 ) ( 1762 -158 32 ) floors/dr_pv_m1 26 58 0 1 1 134217728 0 0 +( 1762 -158 160 ) ( 1762 -150 160 ) ( 1766 -150 160 ) floors/dr_pv_m1 26 58 0 1 1 134217728 0 0 +( 1762 -152 160 ) ( 1766 -152 160 ) ( 1766 -152 32 ) floors/dr_pv_m1 32 32 0 1 1 134217728 0 0 +( 1766 -158 160 ) ( 1766 -150 160 ) ( 1766 -150 32 ) floors/dr_pv_m1 150 32 0 1 1 134217728 8388608 0 +( 1766 -150 160 ) ( 1762 -150 160 ) ( 1762 -150 32 ) floors/dr_pv_m1 31 32 0 1 1 134217728 0 0 +( 1760 -150 160 ) ( 1760 -158 160 ) ( 1760 -158 32 ) floors/dr_pv_m1 18 34 0 1 1 134217728 0 0 +} +// brush 1293 +{ +( 1766 -168 32 ) ( 1762 -168 32 ) ( 1762 -176 32 ) floors/dr_pv_m1 26 40 0 1 1 134217728 0 0 +( 1762 -176 160 ) ( 1762 -168 160 ) ( 1766 -168 160 ) floors/dr_pv_m1 26 40 0 1 1 134217728 0 0 +( 1762 -170 160 ) ( 1766 -170 160 ) ( 1766 -170 32 ) floors/dr_pv_m1 31 32 0 1 1 134217728 8388608 0 +( 1766 -176 160 ) ( 1766 -168 160 ) ( 1766 -168 32 ) floors/dr_pv_m1 41 32 0 1 1 134217728 8388608 0 +( 1766 -168 160 ) ( 1762 -168 160 ) ( 1762 -168 32 ) floors/dr_pv_m1 26 32 0 1 1 134217728 0 0 +( 1760 -168 160 ) ( 1760 -176 160 ) ( 1760 -176 32 ) floors/dr_pv_m1 36 34 0 1 1 134217728 0 0 +} +// brush 1294 +{ +( 1888 -168 32 ) ( 1884 -168 32 ) ( 1884 -176 32 ) floors/dr_pv_m1 32 40 0 1 1 134217728 0 0 +( 1884 -176 160 ) ( 1884 -168 160 ) ( 1888 -168 160 ) floors/dr_pv_m1 32 40 0 1 1 134217728 0 0 +( 1884 -170 160 ) ( 1888 -170 160 ) ( 1888 -170 32 ) floors/dr_pv_m1 33 32 0 1 1 134217728 8388608 0 +( 1888 -176 160 ) ( 1888 -168 160 ) ( 1888 -168 32 ) floors/dr_pv_m1 24 32 0 1 1 134217728 0 0 +( 1888 -168 160 ) ( 1884 -168 160 ) ( 1884 -168 32 ) floors/dr_pv_m1 32 32 0 1 1 134217728 0 0 +( 1882 -168 160 ) ( 1882 -176 160 ) ( 1882 -176 32 ) floors/dr_pv_m1 41 32 0 1 1 134217728 8388608 0 +} +// brush 1295 +{ +( 2176 -176 32 ) ( 1648 -176 32 ) ( 1648 -192 32 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1648 -192 128 ) ( 1648 -176 128 ) ( 2176 -176 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1888 -144 32 ) ( 1888 -128 32 ) ( 1888 -136 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1936 -176 32 ) ( 1936 -192 32 ) ( 1936 -184 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1760 -152 32 ) ( 1776 -152 32 ) ( 1768 -152 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1744 -168 32 ) ( 1728 -168 32 ) ( 1736 -168 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +} +// brush 1296 +{ +( 2176 -176 32 ) ( 1648 -176 32 ) ( 1648 -192 32 ) bricks/c_pv_m2 16 32 0 1 1 0 0 0 +( 1648 -192 80 ) ( 1648 -176 80 ) ( 2176 -176 80 ) bricks/c_pv_m2 16 32 0 1 1 0 0 0 +( 1648 -192 128 ) ( 2176 -192 128 ) ( 2176 -192 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1888 -144 -16 ) ( 1888 -128 -16 ) ( 1888 -136 80 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1936 -176 -16 ) ( 1936 -192 -16 ) ( 1936 -184 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1728 -168 32 ) ( 1744 -168 32 ) ( 1736 -168 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1297 +{ +( 2176 -168 128 ) ( 1648 -168 128 ) ( 1648 -192 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1648 -192 256 ) ( 1648 -168 256 ) ( 2176 -168 256 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1888 -144 128 ) ( 1888 -128 128 ) ( 1888 -136 256 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1936 -176 128 ) ( 1936 -192 128 ) ( 1936 -184 256 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1760 -152 128 ) ( 1776 -152 128 ) ( 1768 -152 256 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1744 -168 128 ) ( 1728 -168 128 ) ( 1736 -168 256 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +} +// brush 1298 +{ +( 2176 -168 80 ) ( 1648 -168 80 ) ( 1648 -192 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -192 256 ) ( 1648 -168 256 ) ( 2176 -168 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -192 224 ) ( 2176 -192 224 ) ( 2176 -192 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1888 -144 128 ) ( 1888 -128 128 ) ( 1888 -136 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1936 -176 80 ) ( 1936 -192 80 ) ( 1936 -184 208 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1728 -168 128 ) ( 1744 -168 128 ) ( 1736 -168 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1299 +{ +( 2176 -176 32 ) ( 1648 -176 32 ) ( 1648 -192 32 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1648 -192 128 ) ( 1648 -176 128 ) ( 2176 -176 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1760 -176 32 ) ( 1760 -192 32 ) ( 1760 -184 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1728 -200 32 ) ( 1728 -184 32 ) ( 1728 -192 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1760 -152 32 ) ( 1776 -152 32 ) ( 1768 -152 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1744 -168 32 ) ( 1728 -168 32 ) ( 1736 -168 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +} +// brush 1300 +{ +( 2176 -176 32 ) ( 1648 -176 32 ) ( 1648 -192 32 ) bricks/c_pv_m2 16 32 0 1 1 0 0 0 +( 1648 -192 80 ) ( 1648 -176 80 ) ( 2176 -176 80 ) bricks/c_pv_m2 16 32 0 1 1 0 0 0 +( 1648 -192 128 ) ( 2176 -192 128 ) ( 2176 -192 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1760 -176 32 ) ( 1760 -192 32 ) ( 1760 -184 128 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1728 -200 -16 ) ( 1728 -184 -16 ) ( 1728 -192 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1728 -168 32 ) ( 1744 -168 32 ) ( 1736 -168 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1301 +{ +( 2176 -168 128 ) ( 1648 -168 128 ) ( 1648 -192 128 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1648 -192 256 ) ( 1648 -168 256 ) ( 2176 -168 256 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1760 -176 128 ) ( 1760 -192 128 ) ( 1760 -184 256 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1728 -200 128 ) ( 1728 -184 128 ) ( 1728 -192 256 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1760 -152 128 ) ( 1776 -152 128 ) ( 1768 -152 256 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1744 -168 128 ) ( 1728 -168 128 ) ( 1736 -168 256 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +} +// brush 1302 +{ +( 2176 -168 80 ) ( 1648 -168 80 ) ( 1648 -192 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -192 256 ) ( 1648 -168 256 ) ( 2176 -168 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -192 224 ) ( 2176 -192 224 ) ( 2176 -192 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1760 -176 80 ) ( 1760 -192 80 ) ( 1760 -184 208 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1728 -200 80 ) ( 1728 -184 80 ) ( 1728 -192 208 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1728 -168 128 ) ( 1744 -168 128 ) ( 1736 -168 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1303 +{ +( 2176 -176 32 ) ( 1648 -176 32 ) ( 1648 -192 32 ) bricks/c_pv_m2 16 32 0 1 1 0 0 0 +( 1648 -192 80 ) ( 1648 -176 80 ) ( 2176 -176 80 ) bricks/c_pv_m2 16 32 0 1 1 0 0 0 +( 2176 -128 128 ) ( 1648 -128 128 ) ( 1648 -128 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1888 -144 -16 ) ( 1888 -128 -16 ) ( 1888 -136 80 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1936 -176 32 ) ( 1936 -192 32 ) ( 1936 -184 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1776 -152 32 ) ( 1760 -152 32 ) ( 1768 -152 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1304 +{ +( 2176 -168 80 ) ( 1648 -168 80 ) ( 1648 -192 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -192 256 ) ( 1648 -168 256 ) ( 2176 -168 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2176 -128 224 ) ( 1648 -128 224 ) ( 1648 -128 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1888 -144 80 ) ( 1888 -128 80 ) ( 1888 -136 208 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1936 -176 128 ) ( 1936 -192 128 ) ( 1936 -184 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1776 -152 128 ) ( 1760 -152 128 ) ( 1768 -152 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1305 +{ +( 2176 -168 80 ) ( 1648 -168 80 ) ( 1648 -192 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -192 256 ) ( 1648 -168 256 ) ( 2176 -168 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2192 -128 224 ) ( 1664 -128 224 ) ( 1664 -128 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1760 -176 128 ) ( 1760 -192 128 ) ( 1760 -184 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1728 -200 80 ) ( 1728 -184 80 ) ( 1728 -192 208 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1776 -152 128 ) ( 1760 -152 128 ) ( 1768 -152 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1306 +{ +( 2176 -176 32 ) ( 1648 -176 32 ) ( 1648 -192 32 ) bricks/c_pv_m2 16 32 0 1 1 0 0 0 +( 1648 -192 80 ) ( 1648 -176 80 ) ( 2176 -176 80 ) bricks/c_pv_m2 16 32 0 1 1 0 0 0 +( 2184 -128 128 ) ( 1656 -128 128 ) ( 1656 -128 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1760 -176 32 ) ( 1760 -192 32 ) ( 1760 -184 128 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1728 -200 -16 ) ( 1728 -184 -16 ) ( 1728 -192 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1776 -152 32 ) ( 1760 -152 32 ) ( 1768 -152 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1307 +{ +( 2176 -176 32 ) ( 1648 -176 32 ) ( 1648 -192 32 ) bricks/c_pv_m2 16 32 0 1 1 0 0 0 +( 1648 -192 80 ) ( 1648 -176 80 ) ( 2176 -176 80 ) bricks/c_pv_m2 16 32 0 1 1 0 0 0 +( 1648 -192 128 ) ( 2176 -192 128 ) ( 2176 -192 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 2176 -128 128 ) ( 1648 -128 128 ) ( 1648 -128 32 ) bricks/c_pv_m2 16 32 0 1 1 0 0 0 +( 1984 -176 -16 ) ( 1984 -184 -16 ) ( 1984 -180 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1936 -192 -16 ) ( 1936 -176 -16 ) ( 1936 -184 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1308 +{ +( 2176 -168 80 ) ( 1648 -168 80 ) ( 1648 -192 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -192 256 ) ( 1648 -168 256 ) ( 2176 -168 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -192 224 ) ( 2176 -192 224 ) ( 2176 -192 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2176 -128 224 ) ( 1648 -128 224 ) ( 1648 -128 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1984 -176 80 ) ( 1984 -192 80 ) ( 1984 -184 208 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1936 -192 80 ) ( 1936 -176 80 ) ( 1936 -184 208 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1309 +{ +( 1968 -128 16 ) ( 1728 -128 16 ) ( 1728 -192 16 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1728 -192 32 ) ( 1728 -128 32 ) ( 1968 -128 32 ) metals/mt_pv_m16k -8 0 90 1 1 0 8390656 0 +( 1728 192 0 ) ( 1728 256 0 ) ( 1728 224 32 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1920 264 0 ) ( 1920 200 0 ) ( 1920 232 32 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1728 -152 16 ) ( 1744 -152 16 ) ( 1736 -152 32 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +( 1744 -168 16 ) ( 1728 -168 16 ) ( 1736 -168 32 ) metals/mt_pv_m16k -8 0 0 1 1 0 8390656 0 +} +// brush 1310 +{ +( 1728 -128 32 ) ( 1728 64 32 ) ( 1792 64 32 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 1792 320 32 ) ( 1792 320 0 ) ( 1792 -256 0 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 1792 320 0 ) ( 1792 320 32 ) ( 1728 256 32 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 1728 64 32 ) ( 1728 -128 32 ) ( 1728 -128 0 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 1968 -128 24 ) ( 1728 -128 24 ) ( 1728 -192 24 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 1808 -128 16 ) ( 1792 -128 16 ) ( 1800 -128 32 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +} +// brush 1311 +{ +( 1728 -128 32 ) ( 1728 64 32 ) ( 1792 64 32 ) bricks/c_sr_m8e 0 0 270 1 1 0 0 0 +( 1792 -256 32 ) ( 1792 -256 0 ) ( 1728 -192 0 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +( 1792 320 32 ) ( 1792 320 0 ) ( 1792 -256 0 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +( 1968 -128 16 ) ( 1728 -128 16 ) ( 1728 -192 16 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +( 1968 -192 32 ) ( 1728 -192 32 ) ( 1968 -192 0 ) bricks/c_sr_m8e 0 0 180 1 1 0 0 0 +} +// brush 1312 +{ +( 1856 -128 32 ) ( 1856 64 32 ) ( 1920 64 32 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 1920 -128 32 ) ( 1920 64 32 ) ( 1920 64 0 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 1856 384 32 ) ( 1856 384 0 ) ( 1920 448 0 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 1856 384 0 ) ( 1856 384 32 ) ( 1856 -256 32 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 1968 -128 24 ) ( 1728 -128 24 ) ( 1728 -192 24 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 1808 -128 16 ) ( 1792 -128 16 ) ( 1800 -128 32 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +} +// brush 1313 +{ +( 1856 -128 32 ) ( 1856 64 32 ) ( 1920 64 32 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 1856 -256 0 ) ( 1856 -256 32 ) ( 1920 -192 32 ) bricks/c_sr_m8e 0 0 90 1 1 0 0 0 +( 1856 384 0 ) ( 1856 384 32 ) ( 1856 -256 32 ) bricks/c_sr_m8e 0 0 90 1 1 0 0 0 +( 1968 -128 16 ) ( 1728 -128 16 ) ( 1728 -192 16 ) bricks/c_sr_m8e 0 0 90 1 1 0 0 0 +( 1968 -192 32 ) ( 1728 -192 32 ) ( 1968 -192 0 ) bricks/c_sr_m8e 0 0 90 1 1 0 0 0 +} +// brush 1314 +{ +( 1968 -128 24 ) ( 1728 -128 24 ) ( 1728 -192 24 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1728 -192 32 ) ( 1728 -128 32 ) ( 1968 -128 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 2176 384 0 ) ( 2176 384 32 ) ( 1664 384 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1792 192 0 ) ( 1792 256 0 ) ( 1792 224 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1856 256 0 ) ( 1856 192 0 ) ( 1856 224 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1808 -128 16 ) ( 1792 -128 16 ) ( 1800 -128 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +} +// brush 1315 +{ +( 1344 448 24 ) ( 1280 448 24 ) ( 1280 128 24 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 1280 128 32 ) ( 1280 448 32 ) ( 1344 448 32 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 1344 152 32 ) ( 1344 152 24 ) ( 1280 152 24 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 1344 152 24 ) ( 1344 152 32 ) ( 1344 384 32 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 1344 384 0 ) ( 1344 384 32 ) ( 1280 448 32 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 1280 448 32 ) ( 1280 128 32 ) ( 1280 128 0 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +} +// brush 1316 +{ +( 1472 320 24 ) ( 1408 320 24 ) ( 1408 128 24 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 1408 128 32 ) ( 1408 320 32 ) ( 1472 320 32 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 1408 152 32 ) ( 1472 152 32 ) ( 1472 152 0 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 1472 256 32 ) ( 1472 256 0 ) ( 1472 128 0 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 1472 256 0 ) ( 1472 256 32 ) ( 1408 320 32 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 1408 344 32 ) ( 1408 152 32 ) ( 1408 152 0 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +} +// brush 1317 +{ +( 1408 320 24 ) ( 1344 320 24 ) ( 1344 128 24 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1344 128 32 ) ( 1344 320 32 ) ( 1408 320 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1352 192 32 ) ( 1416 192 32 ) ( 1416 192 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1408 152 32 ) ( 1408 344 32 ) ( 1408 344 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1416 320 32 ) ( 1352 320 32 ) ( 1352 320 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1344 344 32 ) ( 1344 152 32 ) ( 1344 152 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +} +// brush 1318 +{ +( 1472 256 224 ) ( 1280 256 224 ) ( 1280 128 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1280 128 232 ) ( 1280 256 232 ) ( 1472 256 232 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1280 128 232 ) ( 1472 128 232 ) ( 1472 128 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1472 128 232 ) ( 1472 256 232 ) ( 1472 256 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1472 256 232 ) ( 1280 256 232 ) ( 1280 256 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1280 256 232 ) ( 1280 128 232 ) ( 1280 128 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +} +// brush 1319 +{ +( 1280 464 80 ) ( 1264 464 80 ) ( 1264 128 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1264 128 224 ) ( 1264 464 224 ) ( 1280 464 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1264 128 224 ) ( 1280 128 224 ) ( 1280 128 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1280 128 176 ) ( 1280 464 176 ) ( 1280 464 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1280 464 224 ) ( 1264 464 224 ) ( 1264 464 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1264 464 224 ) ( 1264 128 224 ) ( 1264 128 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1320 +{ +( 1280 464 32 ) ( 1264 464 32 ) ( 1264 128 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1264 128 80 ) ( 1264 464 80 ) ( 1280 464 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1264 128 128 ) ( 1280 128 128 ) ( 1280 128 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1280 128 80 ) ( 1280 464 80 ) ( 1280 464 -16 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1280 464 128 ) ( 1264 464 128 ) ( 1264 464 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1264 464 128 ) ( 1264 128 128 ) ( 1264 128 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1321 +{ +( 1488 240 80 ) ( 1472 240 80 ) ( 1472 128 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1472 128 224 ) ( 1472 240 224 ) ( 1488 240 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1472 128 224 ) ( 1488 128 224 ) ( 1488 128 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1488 128 176 ) ( 1488 240 176 ) ( 1488 240 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1488 240 224 ) ( 1472 240 224 ) ( 1472 240 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1472 240 224 ) ( 1472 128 224 ) ( 1472 128 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1322 +{ +( 1488 240 32 ) ( 1472 240 32 ) ( 1472 128 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1472 128 80 ) ( 1472 240 80 ) ( 1488 240 80 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1472 128 128 ) ( 1488 128 128 ) ( 1488 128 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1488 128 128 ) ( 1488 240 128 ) ( 1488 240 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1488 240 128 ) ( 1472 240 128 ) ( 1472 240 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1472 240 128 ) ( 1472 128 128 ) ( 1472 128 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +} +// brush 1323 +{ +( 1312 152 192 ) ( 1312 128 192 ) ( 1440 128 192 ) bricks/b_sr_20 -103 -64 -90 1 1 0 0 0 +( 1440 128 256 ) ( 1312 128 256 ) ( 1312 152 256 ) bricks/b_sr_20 -103 -64 -90 1 1 0 0 0 +( 1440 128 256 ) ( 1440 152 256 ) ( 1440 152 128 ) bricks/b_sr_20 -104 64 -180 1 -0.999992 0 0 0 +( 1440 152 256 ) ( 1312 152 256 ) ( 1312 152 128 ) bricks/b_sr_20 64 64 0 1 1 0 0 0 +( 1312 152 256 ) ( 1312 128 256 ) ( 1312 128 128 ) bricks/b_sr_20 -104 64 -180 1 -0.999992 0 0 0 +( 1312 128 256 ) ( 1440 128 256 ) ( 1440 128 128 ) bricks/b_sr_20 64 64 0 1 1 0 0 0 +} +// brush 1324 +{ +( 1440 152 128 ) ( 1440 128 128 ) ( 1472 128 128 ) bricks/b_sr_20 -103 -64 -90 1 1 0 0 0 +( 1472 128 256 ) ( 1440 128 256 ) ( 1440 152 256 ) bricks/b_sr_20 -103 -64 -90 1 1 0 0 0 +( 1472 128 256 ) ( 1472 152 256 ) ( 1472 152 128 ) bricks/b_sr_20 -104 64 -180 1 -0.999992 0 0 0 +( 1472 152 256 ) ( 1440 152 256 ) ( 1440 152 128 ) bricks/b_sr_20 64 64 0 1 1 0 0 0 +( 1440 152 256 ) ( 1440 128 256 ) ( 1440 128 128 ) bricks/b_sr_20 -104 64 -180 1 -0.999992 0 0 0 +( 1440 128 256 ) ( 1472 128 256 ) ( 1472 128 128 ) bricks/b_sr_20 64 64 0 1 1 0 0 0 +} +// brush 1325 +{ +( 1280 152 128 ) ( 1280 128 128 ) ( 1312 128 128 ) bricks/b_sr_20 -103 -64 -90 1 1 0 0 0 +( 1312 128 256 ) ( 1280 128 256 ) ( 1280 152 256 ) bricks/b_sr_20 -103 -64 -90 1 1 0 0 0 +( 1312 128 256 ) ( 1312 152 256 ) ( 1312 152 128 ) bricks/b_sr_20 -104 64 -180 1 -0.999992 0 0 0 +( 1312 152 256 ) ( 1280 152 256 ) ( 1280 152 128 ) bricks/b_sr_20 64 64 0 1 1 0 0 0 +( 1280 152 256 ) ( 1280 128 256 ) ( 1280 128 128 ) bricks/b_sr_20 -104 64 -180 1 -0.999992 0 0 0 +( 1280 128 256 ) ( 1312 128 256 ) ( 1312 128 128 ) bricks/b_sr_20 64 64 0 1 1 0 0 0 +} +// brush 1326 +{ +( 1696 152 272 ) ( 1232 152 272 ) ( 1232 152 144 ) bricks/b_sr_24 96 16 0 1 1 0 0 0 +( 1336 136 208 ) ( 1312 136 208 ) ( 1324 152 208 ) bricks/b_mf_v2 32 -40 0 1 1 0 0 0 +( 1376 136 196 ) ( 1440 136 196 ) ( 1408 152 196 ) bricks/b_sr_21 32 -8 0 1 1 0 0 0 +( 1368 136 196 ) ( 1368 152 196 ) ( 1368 144 208 ) bricks/b_sr_21 40 16 0 1 1 0 0 0 +( 1384 152 196 ) ( 1384 88 196 ) ( 1384 120 208 ) bricks/b_sr_21 40 16 0 1 1 0 0 0 +( 1384 128 196 ) ( 1368 128 196 ) ( 1376 128 208 ) bricks/b_sr_21 32 16 0 1 1 0 0 0 +} +// brush 1327 +{ +( 1696 152 32 ) ( 1232 152 32 ) ( 1232 136 32 ) bricks/c_pv_m2 32 -40 0 1 1 0 0 0 +( 1232 136 128 ) ( 1232 152 128 ) ( 1696 152 128 ) bricks/c_pv_m2 32 -40 0 1 1 0 0 0 +( 1696 152 128 ) ( 1232 152 128 ) ( 1232 152 0 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1321 121 0 ) ( 1321 105 0 ) ( 1321 113 128 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1280 136 0 ) ( 1280 152 0 ) ( 1280 144 128 ) bricks/c_pv_m2 40 0 0 1 1 0 0 0 +( 1328 128 0 ) ( 1312 128 0 ) ( 1320 128 128 ) bricks/c_pv_m2 0 0 -180 1 -1 0 0 0 +} +// brush 1328 +{ +( 1696 152 32 ) ( 1232 152 32 ) ( 1232 136 32 ) bricks/c_pv_m2 32 -40 0 1 1 0 0 0 +( 1232 136 128 ) ( 1232 152 128 ) ( 1696 152 128 ) bricks/c_pv_m2 32 -40 0 1 1 0 0 0 +( 1696 152 128 ) ( 1232 152 128 ) ( 1232 152 0 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1431 87 0 ) ( 1431 103 0 ) ( 1431 95 128 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1472 152 0 ) ( 1472 136 0 ) ( 1472 144 128 ) bricks/c_pv_m2 40 0 0 1 1 0 0 0 +( 1328 128 0 ) ( 1312 128 0 ) ( 1320 128 128 ) bricks/c_pv_m2 0 0 -180 1 -1 0 0 0 +} +// brush 1329 +{ +( 1792 384 24 ) ( 1472 384 24 ) ( 1472 320 24 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1472 320 32 ) ( 1472 384 32 ) ( 1792 384 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1472 320 32 ) ( 1792 320 32 ) ( 1792 320 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1792 320 32 ) ( 1792 384 32 ) ( 1792 384 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1792 384 32 ) ( 1472 384 32 ) ( 1472 384 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1344 384 32 ) ( 1344 320 32 ) ( 1344 320 16 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +} +// brush 1330 +{ +( 1856 448 24 ) ( 1472 448 24 ) ( 1472 384 24 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1472 384 32 ) ( 1472 448 32 ) ( 1856 448 32 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1344 384 0 ) ( 1344 384 32 ) ( 1856 384 32 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1920 448 32 ) ( 1920 448 0 ) ( 1856 384 0 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1920 448 0 ) ( 1920 448 32 ) ( 1472 448 32 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1344 384 32 ) ( 1344 384 0 ) ( 1280 448 0 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +} +// brush 1331 +{ +( 1728 320 24 ) ( 1472 320 24 ) ( 1472 256 24 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 1472 256 32 ) ( 1472 320 32 ) ( 1728 320 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 1472 256 32 ) ( 1728 256 32 ) ( 1728 256 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 1792 320 32 ) ( 1792 320 0 ) ( 1728 256 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 1408 320 32 ) ( 1408 320 0 ) ( 1792 320 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 1408 320 0 ) ( 1408 320 32 ) ( 1472 256 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +} +// brush 1332 +{ +( 1728 448 224 ) ( 1472 448 224 ) ( 1472 256 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1472 256 232 ) ( 1472 448 232 ) ( 1728 448 232 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1472 256 232 ) ( 1728 256 232 ) ( 1728 256 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1728 256 232 ) ( 1728 448 232 ) ( 1728 448 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1728 448 232 ) ( 1472 448 232 ) ( 1472 448 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1280 448 232 ) ( 1280 256 232 ) ( 1280 256 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +} +// brush 1333 +{ +( 1936 464 80 ) ( 1472 464 80 ) ( 1472 448 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1472 448 224 ) ( 1472 464 224 ) ( 1936 464 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1472 448 224 ) ( 1936 448 224 ) ( 1936 448 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1936 448 224 ) ( 1936 464 224 ) ( 1936 464 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1936 464 224 ) ( 1472 464 224 ) ( 1472 464 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1280 472 176 ) ( 1280 456 176 ) ( 1280 456 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1334 +{ +( 1936 464 32 ) ( 1472 464 32 ) ( 1472 448 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1472 448 80 ) ( 1472 464 80 ) ( 1936 464 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1472 448 128 ) ( 1936 448 128 ) ( 1936 448 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1936 448 128 ) ( 1936 464 128 ) ( 1936 464 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1936 464 128 ) ( 1472 464 128 ) ( 1472 464 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1280 472 80 ) ( 1280 456 80 ) ( 1280 456 -16 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1335 +{ +( 1712 256 80 ) ( 1472 256 80 ) ( 1472 240 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1472 240 224 ) ( 1472 256 224 ) ( 1712 256 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1472 240 224 ) ( 1712 240 224 ) ( 1712 240 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1712 240 176 ) ( 1712 256 176 ) ( 1712 256 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1712 256 224 ) ( 1472 256 224 ) ( 1472 256 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1472 256 224 ) ( 1472 240 224 ) ( 1472 240 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1336 +{ +( 1712 256 32 ) ( 1472 256 32 ) ( 1472 240 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1472 240 80 ) ( 1472 256 80 ) ( 1712 256 80 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1472 240 128 ) ( 1712 240 128 ) ( 1712 240 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1712 240 80 ) ( 1712 256 80 ) ( 1712 256 -16 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1712 256 128 ) ( 1472 256 128 ) ( 1472 256 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1472 256 128 ) ( 1472 240 128 ) ( 1472 240 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +} +// brush 1337 +{ +( 1920 440 224 ) ( 1728 440 224 ) ( 1728 40 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1728 40 232 ) ( 1728 440 232 ) ( 1920 440 232 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1728 -128 232 ) ( 1920 -128 232 ) ( 1920 -128 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1920 40 232 ) ( 1920 440 232 ) ( 1920 440 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1920 448 232 ) ( 1728 448 232 ) ( 1728 448 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 1728 440 232 ) ( 1728 40 232 ) ( 1728 40 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +} +// brush 1338 +{ +( 1936 64 80 ) ( 1920 64 80 ) ( 1920 -128 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1920 -128 224 ) ( 1920 64 224 ) ( 1936 64 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1920 -128 224 ) ( 1936 -128 224 ) ( 1936 -128 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1936 -128 224 ) ( 1936 64 224 ) ( 1936 64 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1936 448 224 ) ( 1920 448 224 ) ( 1920 448 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1920 64 176 ) ( 1920 -128 176 ) ( 1920 -128 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1339 +{ +( 1728 64 80 ) ( 1712 64 80 ) ( 1712 -128 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1712 -128 224 ) ( 1712 64 224 ) ( 1728 64 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1712 -128 224 ) ( 1728 -128 224 ) ( 1728 -128 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1728 -128 176 ) ( 1728 64 176 ) ( 1728 64 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1720 256 224 ) ( 1704 256 224 ) ( 1704 256 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1712 64 176 ) ( 1712 -128 176 ) ( 1712 -128 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1340 +{ +( 1936 64 32 ) ( 1920 64 32 ) ( 1920 -128 32 ) bricks/c_pv_m2 64 32 0 1 1 0 0 0 +( 1920 -128 80 ) ( 1920 64 80 ) ( 1936 64 80 ) bricks/c_pv_m2 64 32 0 1 1 0 0 0 +( 1920 -128 128 ) ( 1936 -128 128 ) ( 1936 -128 32 ) bricks/c_pv_m2 64 32 0 1 1 0 0 0 +( 1936 -128 128 ) ( 1936 64 128 ) ( 1936 64 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1936 448 128 ) ( 1920 448 128 ) ( 1920 448 32 ) bricks/c_pv_m2 64 32 0 1 1 0 0 0 +( 1920 64 80 ) ( 1920 -128 80 ) ( 1920 -128 -16 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +} +// brush 1341 +{ +( 1728 64 32 ) ( 1712 64 32 ) ( 1712 -128 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1712 -128 80 ) ( 1712 64 80 ) ( 1728 64 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1712 -128 128 ) ( 1728 -128 128 ) ( 1728 -128 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1728 -128 80 ) ( 1728 64 80 ) ( 1728 64 -16 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1720 256 128 ) ( 1704 256 128 ) ( 1704 256 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1712 64 80 ) ( 1712 -128 80 ) ( 1712 -128 -16 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1342 +{ +( 1968 -192 0 ) ( 1728 -192 0 ) ( 1728 -256 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1728 -256 32 ) ( 1728 -192 32 ) ( 1968 -192 32 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1856 -256 0 ) ( 1856 -256 32 ) ( 2112 -256 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 2176 -192 32 ) ( 2176 -192 0 ) ( 2112 -256 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 2176 -192 0 ) ( 2176 -192 32 ) ( 1664 -192 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1856 -256 32 ) ( 1856 -256 0 ) ( 1920 -192 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +} +// brush 1343 +{ +( 1968 -192 0 ) ( 1728 -192 0 ) ( 1728 -256 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1728 -256 32 ) ( 1728 -192 32 ) ( 1968 -192 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1728 -256 32 ) ( 1968 -256 32 ) ( 1968 -256 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 2176 -192 0 ) ( 2176 -192 32 ) ( 1664 -192 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1792 -256 0 ) ( 1792 -192 0 ) ( 1792 -224 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1856 -200 0 ) ( 1856 -264 0 ) ( 1856 -232 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +} +// brush 1344 +{ +( 1968 -192 0 ) ( 1728 -192 0 ) ( 1728 -256 0 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1728 -256 32 ) ( 1728 -192 32 ) ( 1968 -192 32 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1728 -256 32 ) ( 1968 -256 32 ) ( 1968 -256 0 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1728 -192 0 ) ( 1728 -192 32 ) ( 1664 -192 32 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1664 -192 0 ) ( 1664 -192 32 ) ( 1728 -256 32 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1728 -192 32 ) ( 1728 -192 0 ) ( 1792 -256 0 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +} +// brush 1345 +{ +( 2176 -168 80 ) ( 1648 -168 80 ) ( 1648 -192 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -192 256 ) ( 1648 -168 256 ) ( 2176 -168 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -192 224 ) ( 2176 -192 224 ) ( 2176 -192 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2192 -192 224 ) ( 2192 -168 224 ) ( 2192 -168 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2176 -176 224 ) ( 1648 -176 224 ) ( 1648 -176 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1984 -192 80 ) ( 1984 -176 80 ) ( 1984 -184 208 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1346 +{ +( 2176 -176 32 ) ( 1648 -176 32 ) ( 1648 -192 32 ) bricks/c_pv_m2 16 32 0 1 1 0 0 0 +( 1648 -192 80 ) ( 1648 -176 80 ) ( 2176 -176 80 ) bricks/c_pv_m2 16 32 0 1 1 0 0 0 +( 1648 -192 128 ) ( 2176 -192 128 ) ( 2176 -192 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 2184 -176 128 ) ( 1656 -176 128 ) ( 1656 -176 32 ) bricks/c_pv_m2 16 32 0 1 1 0 0 0 +( 1648 -176 128 ) ( 1648 -192 128 ) ( 1648 -192 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1728 -184 -16 ) ( 1728 -200 -16 ) ( 1728 -192 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1347 +{ +( 2176 -168 80 ) ( 1648 -168 80 ) ( 1648 -192 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -192 256 ) ( 1648 -168 256 ) ( 2176 -168 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -192 224 ) ( 2176 -192 224 ) ( 2176 -192 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2192 -176 224 ) ( 1664 -176 224 ) ( 1664 -176 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -168 224 ) ( 1648 -192 224 ) ( 1648 -192 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1728 -184 80 ) ( 1728 -200 80 ) ( 1728 -192 208 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1348 +{ +( 2176 -168 160 ) ( 1648 -168 160 ) ( 1648 -192 160 ) bricks/b_mf_v5 0 0 180 1 1 0 0 0 +( 1648 -192 256 ) ( 1648 -168 256 ) ( 2176 -168 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -192 224 ) ( 2176 -192 224 ) ( 2176 -192 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2176 -128 224 ) ( 1648 -128 224 ) ( 1648 -128 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1760 -192 128 ) ( 1760 -176 128 ) ( 1760 -184 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1888 -176 128 ) ( 1888 -192 128 ) ( 1888 -184 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1349 +{ +( 2192 -976 128 ) ( 2192 -760 128 ) ( 2192 -760 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2176 -632 128 ) ( 2176 -848 128 ) ( 2176 -848 32 ) common/li_sr_v27 8 8 0 1 1 0 1 10000 +( 2168 -704 40 ) ( 2200 -704 40 ) ( 2184 -640 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2200 -704 56 ) ( 2168 -704 56 ) ( 2184 -640 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2176 -664 40 ) ( 2192 -664 40 ) ( 2184 -664 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2192 -680 40 ) ( 2176 -680 40 ) ( 2184 -680 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1350 +{ +( 2192 -976 128 ) ( 2192 -760 128 ) ( 2192 -760 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2176 -632 128 ) ( 2176 -848 128 ) ( 2176 -848 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2192 -704 32 ) ( 2176 -704 32 ) ( 2184 -704 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2168 -704 40 ) ( 2200 -704 40 ) ( 2184 -640 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2200 -704 56 ) ( 2168 -704 56 ) ( 2184 -640 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2176 -680 40 ) ( 2192 -680 40 ) ( 2184 -680 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1351 +{ +( 2192 -976 128 ) ( 2192 -760 128 ) ( 2192 -760 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2176 -632 128 ) ( 2176 -848 128 ) ( 2176 -848 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2176 -640 32 ) ( 2192 -640 32 ) ( 2184 -640 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2168 -704 40 ) ( 2200 -704 40 ) ( 2184 -640 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2200 -704 56 ) ( 2168 -704 56 ) ( 2184 -640 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2192 -664 40 ) ( 2176 -664 40 ) ( 2184 -664 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1352 +{ +( 2176 -976 80 ) ( 2176 -760 80 ) ( 2192 -760 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2192 -976 128 ) ( 2192 -760 128 ) ( 2192 -760 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2176 -632 80 ) ( 2176 -848 80 ) ( 2176 -848 -16 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2176 -640 32 ) ( 2192 -640 32 ) ( 2184 -640 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2192 -704 32 ) ( 2176 -704 32 ) ( 2184 -704 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2168 -704 56 ) ( 2200 -704 56 ) ( 2184 -640 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1353 +{ +( 2192 -760 32 ) ( 2176 -760 32 ) ( 2176 -976 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2192 -976 128 ) ( 2192 -760 128 ) ( 2192 -760 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2176 -632 128 ) ( 2176 -848 128 ) ( 2176 -848 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2176 -640 32 ) ( 2192 -640 32 ) ( 2184 -640 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2192 -704 32 ) ( 2176 -704 32 ) ( 2184 -704 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2200 -704 40 ) ( 2168 -704 40 ) ( 2184 -640 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1354 +{ +( 2192 -760 32 ) ( 2176 -760 32 ) ( 2176 -976 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2176 -976 80 ) ( 2176 -760 80 ) ( 2192 -760 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2176 -976 128 ) ( 2192 -976 128 ) ( 2192 -976 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2192 -976 128 ) ( 2192 -760 128 ) ( 2192 -760 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2176 -632 80 ) ( 2176 -848 80 ) ( 2176 -848 -16 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 2176 -704 32 ) ( 2192 -704 32 ) ( 2184 -704 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1355 +{ +( 2192 -760 32 ) ( 2176 -760 32 ) ( 2176 -976 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2176 -976 80 ) ( 2176 -760 80 ) ( 2192 -760 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2192 -976 128 ) ( 2192 -760 128 ) ( 2192 -760 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2176 -632 80 ) ( 2176 -848 80 ) ( 2176 -848 -16 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 2176 -192 32 ) ( 2192 -192 32 ) ( 2184 -192 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2192 -640 32 ) ( 2176 -640 32 ) ( 2184 -640 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1356 +{ +( 1836 -773 32 ) ( 1781 -739 32 ) ( 1747 -794 32 ) props/box_sr_m11 -47 -3 -31 0.999940 0.999687 0 134217728 0 +( 1747 -794 96 ) ( 1781 -739 96 ) ( 1836 -773 96 ) props/box_sr_m11 13 27 -31 1 1 0 134217728 0 +( 1747 -794 112 ) ( 1802 -828 112 ) ( 1802 -828 32 ) props/box_sr_m11 50 32 0 0.847900 1 0 134217728 0 +( 1802 -828 112 ) ( 1836 -773 112 ) ( 1836 -773 32 ) props/box_sr_m11 -47 32 0 0.848022 1 0 134217728 0 +( 1836 -773 112 ) ( 1781 -739 112 ) ( 1781 -739 32 ) props/box_sr_m11 10 32 0 0.848145 1 0 134217728 0 +( 1781 -739 112 ) ( 1747 -794 112 ) ( 1747 -794 32 ) props/box_sr_m11 -23 32 0 0.848083 1 0 134217728 0 +} +// brush 1357 +{ +( 1728 -384 96 ) ( 1664 -384 96 ) ( 1664 -448 96 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 1664 -448 160 ) ( 1664 -384 160 ) ( 1728 -384 160 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 1664 -448 160 ) ( 1728 -448 160 ) ( 1728 -448 96 ) props/box_sr_m5 0 32 0 1 1 0 134217728 0 +( 1728 -448 160 ) ( 1728 -384 160 ) ( 1728 -384 96 ) props/box_sr_m5 0 32 0 1 1 0 134217728 0 +( 1728 -384 160 ) ( 1664 -384 160 ) ( 1664 -384 96 ) props/box_sr_m5 0 32 0 1 1 0 134217728 0 +( 1664 -384 160 ) ( 1664 -448 160 ) ( 1664 -448 96 ) props/box_sr_m5 0 32 0 1 1 0 134217728 0 +} +// brush 1358 +{ +( 1792 -384 32 ) ( 1728 -384 32 ) ( 1728 -448 32 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 1728 -448 96 ) ( 1728 -384 96 ) ( 1792 -384 96 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 1728 -448 112 ) ( 1792 -448 112 ) ( 1792 -448 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 1792 -448 112 ) ( 1792 -384 112 ) ( 1792 -384 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 1792 -384 112 ) ( 1728 -384 112 ) ( 1728 -384 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 1728 -384 112 ) ( 1728 -448 112 ) ( 1728 -448 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +} +// brush 1359 +{ +( 1728 -448 32 ) ( 1664 -448 32 ) ( 1664 -512 32 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 1664 -512 96 ) ( 1664 -448 96 ) ( 1728 -448 96 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 1664 -512 112 ) ( 1728 -512 112 ) ( 1728 -512 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 1728 -512 112 ) ( 1728 -448 112 ) ( 1728 -448 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 1728 -448 112 ) ( 1664 -448 112 ) ( 1664 -448 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 1664 -448 112 ) ( 1664 -512 112 ) ( 1664 -512 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +} +// brush 1360 +{ +( 1792 -312 32 ) ( 1728 -312 32 ) ( 1728 -384 32 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1728 -384 96 ) ( 1728 -312 96 ) ( 1792 -312 96 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1728 -384 96 ) ( 1792 -384 96 ) ( 1792 -384 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 1792 -384 96 ) ( 1792 -312 96 ) ( 1792 -312 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 1792 -320 96 ) ( 1728 -320 96 ) ( 1728 -320 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 1728 -312 96 ) ( 1728 -384 96 ) ( 1728 -384 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +} +// brush 1361 +{ +( 1728 -312 96 ) ( 1664 -312 96 ) ( 1664 -384 96 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1664 -384 160 ) ( 1664 -312 160 ) ( 1728 -312 160 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1664 -384 160 ) ( 1728 -384 160 ) ( 1728 -384 96 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 1728 -384 160 ) ( 1728 -312 160 ) ( 1728 -312 96 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 1728 -320 160 ) ( 1664 -320 160 ) ( 1664 -320 96 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 1664 -312 160 ) ( 1664 -384 160 ) ( 1664 -384 96 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +} +// brush 1362 +{ +( 1728 -384 32 ) ( 1664 -384 32 ) ( 1664 -448 32 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 1664 -448 96 ) ( 1664 -384 96 ) ( 1728 -384 96 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 1664 -448 112 ) ( 1728 -448 112 ) ( 1728 -448 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 1728 -448 112 ) ( 1728 -384 112 ) ( 1728 -384 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 1728 -384 112 ) ( 1664 -384 112 ) ( 1664 -384 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 1664 -384 112 ) ( 1664 -448 112 ) ( 1664 -448 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +} +// brush 1363 +{ +( 1728 -312 32 ) ( 1664 -312 32 ) ( 1664 -384 32 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1664 -384 96 ) ( 1664 -312 96 ) ( 1728 -312 96 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1664 -384 96 ) ( 1728 -384 96 ) ( 1728 -384 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 1728 -384 96 ) ( 1728 -312 96 ) ( 1728 -312 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 1728 -320 96 ) ( 1664 -320 96 ) ( 1664 -320 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 1664 -312 96 ) ( 1664 -384 96 ) ( 1664 -384 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +} +// brush 1364 +{ +( 1728 -256 32 ) ( 1664 -256 32 ) ( 1664 -320 32 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 1664 -320 96 ) ( 1664 -256 96 ) ( 1728 -256 96 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 1664 -320 96 ) ( 1728 -320 96 ) ( 1728 -320 32 ) props/box_sr_m5 0 -32 0 1 1 0 134217728 0 +( 1728 -320 96 ) ( 1728 -256 96 ) ( 1728 -256 32 ) props/box_sr_m5 0 -32 0 1 1 0 134217728 0 +( 1728 -256 96 ) ( 1664 -256 96 ) ( 1664 -256 32 ) props/box_sr_m5 0 -32 0 1 1 0 134217728 0 +( 1664 -256 96 ) ( 1664 -320 96 ) ( 1664 -320 32 ) props/box_sr_m5 0 -32 0 1 1 0 134217728 0 +} +// brush 1365 +{ +( 2112 -296 32 ) ( 2048 -296 32 ) ( 2048 -360 32 ) props/box_sr_m5 0 24 0 1 1 0 134217728 0 +( 2048 -360 96 ) ( 2048 -296 96 ) ( 2112 -296 96 ) props/box_sr_m5 0 24 0 1 1 0 134217728 0 +( 2048 -360 96 ) ( 2112 -360 96 ) ( 2112 -360 32 ) props/box_sr_m5 0 -32 0 1 1 0 134217728 0 +( 2112 -360 96 ) ( 2112 -296 96 ) ( 2112 -296 32 ) props/box_sr_m5 -24 -32 0 1 1 0 134217728 0 +( 2112 -296 96 ) ( 2048 -296 96 ) ( 2048 -296 32 ) props/box_sr_m5 0 -32 0 1 1 0 134217728 0 +( 2048 -296 96 ) ( 2048 -360 96 ) ( 2048 -360 32 ) props/box_sr_m5 -24 -32 0 1 1 0 134217728 0 +} +// brush 1366 +{ +( 2176 -264 32 ) ( 2112 -264 32 ) ( 2112 -328 32 ) props/box_sr_m11 0 -8 0 1 1 0 134217728 0 +( 2112 -328 96 ) ( 2112 -264 96 ) ( 2176 -264 96 ) props/box_sr_m11 0 -8 0 1 1 0 134217728 0 +( 2112 -328 112 ) ( 2176 -328 112 ) ( 2176 -328 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 2176 -328 112 ) ( 2176 -264 112 ) ( 2176 -264 32 ) props/box_sr_m11 8 32 0 1 1 0 134217728 0 +( 2176 -264 112 ) ( 2112 -264 112 ) ( 2112 -264 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 2112 -264 112 ) ( 2112 -328 112 ) ( 2112 -328 32 ) props/box_sr_m11 8 32 0 1 1 0 134217728 0 +} +// brush 1367 +{ +( 2112 -496 32 ) ( 2048 -496 32 ) ( 2048 -560 32 ) props/box_sr_m5 0 16 0 1 1 0 134217728 0 +( 2048 -560 96 ) ( 2048 -496 96 ) ( 2112 -496 96 ) props/box_sr_m5 0 16 0 1 1 0 134217728 0 +( 2048 -560 96 ) ( 2112 -560 96 ) ( 2112 -560 32 ) props/box_sr_m5 0 -32 0 1 1 0 134217728 0 +( 2112 -560 96 ) ( 2112 -496 96 ) ( 2112 -496 32 ) props/box_sr_m5 -16 -32 0 1 1 0 134217728 0 +( 2112 -496 96 ) ( 2048 -496 96 ) ( 2048 -496 32 ) props/box_sr_m5 0 -32 0 1 1 0 134217728 0 +( 2048 -496 96 ) ( 2048 -560 96 ) ( 2048 -560 32 ) props/box_sr_m5 -16 -32 0 1 1 0 134217728 0 +} +// brush 1368 +{ +( 2176 -448 32 ) ( 2112 -448 32 ) ( 2112 -512 32 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 2112 -512 96 ) ( 2112 -448 96 ) ( 2176 -448 96 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 2112 -512 112 ) ( 2176 -512 112 ) ( 2176 -512 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 2176 -512 112 ) ( 2176 -448 112 ) ( 2176 -448 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 2176 -448 112 ) ( 2112 -448 112 ) ( 2112 -448 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 2112 -448 112 ) ( 2112 -512 112 ) ( 2112 -512 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +} +// brush 1369 +{ +( 2112 -552 32 ) ( 2048 -552 32 ) ( 2048 -624 32 ) props/box_sr_m6 0 -48 0 1 1 0 134217728 0 +( 2048 -624 96 ) ( 2048 -552 96 ) ( 2112 -552 96 ) props/box_sr_m6 0 -48 0 1 1 0 134217728 0 +( 2048 -624 96 ) ( 2112 -624 96 ) ( 2112 -624 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 2112 -624 96 ) ( 2112 -552 96 ) ( 2112 -552 32 ) props/box_sr_m6 48 32 0 1 1 0 134217728 0 +( 2112 -560 96 ) ( 2048 -560 96 ) ( 2048 -560 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 2048 -552 96 ) ( 2048 -624 96 ) ( 2048 -624 32 ) props/box_sr_m6 48 32 0 1 1 0 134217728 0 +} +// brush 1370 +{ +( 2176 -504 32 ) ( 2112 -504 32 ) ( 2112 -576 32 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 2112 -576 96 ) ( 2112 -504 96 ) ( 2176 -504 96 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 2112 -576 96 ) ( 2176 -576 96 ) ( 2176 -576 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 2176 -576 96 ) ( 2176 -504 96 ) ( 2176 -504 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 2176 -512 96 ) ( 2112 -512 96 ) ( 2112 -512 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 2112 -504 96 ) ( 2112 -576 96 ) ( 2112 -576 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +} +// brush 1371 +{ +( 2176 -576 32 ) ( 2112 -576 32 ) ( 2112 -640 32 ) props/box_sr_m11 0 0 0 1 1 134217728 0 0 +( 2112 -640 96 ) ( 2112 -576 96 ) ( 2176 -576 96 ) props/box_sr_m11 0 0 0 1 1 134217728 0 0 +( 2112 -640 112 ) ( 2176 -640 112 ) ( 2176 -640 32 ) props/box_sr_m11 0 32 0 1 1 134217728 0 0 +( 2176 -640 112 ) ( 2176 -576 112 ) ( 2176 -576 32 ) props/box_sr_m11 0 32 0 1 1 134217728 0 0 +( 2176 -576 112 ) ( 2112 -576 112 ) ( 2112 -576 32 ) props/box_sr_m11 0 32 0 1 1 134217728 0 0 +( 2112 -576 112 ) ( 2112 -640 112 ) ( 2112 -640 32 ) props/box_sr_m11 0 32 0 1 1 134217728 0 0 +} +// brush 1372 +{ +( 2176 -704 32 ) ( 2112 -704 32 ) ( 2112 -768 32 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 2112 -768 96 ) ( 2112 -704 96 ) ( 2176 -704 96 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 2112 -768 112 ) ( 2176 -768 112 ) ( 2176 -768 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 2176 -768 112 ) ( 2176 -704 112 ) ( 2176 -704 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 2176 -704 112 ) ( 2112 -704 112 ) ( 2112 -704 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 2112 -704 112 ) ( 2112 -768 112 ) ( 2112 -768 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +} +// brush 1373 +{ +( 2176 -768 32 ) ( 2112 -768 32 ) ( 2112 -832 32 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 2112 -832 96 ) ( 2112 -768 96 ) ( 2176 -768 96 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 2112 -832 96 ) ( 2176 -832 96 ) ( 2176 -832 32 ) props/box_sr_m5 0 -32 0 1 1 0 134217728 0 +( 2176 -832 96 ) ( 2176 -768 96 ) ( 2176 -768 32 ) props/box_sr_m5 0 -32 0 1 1 0 134217728 0 +( 2176 -768 96 ) ( 2112 -768 96 ) ( 2112 -768 32 ) props/box_sr_m5 0 -32 0 1 1 0 134217728 0 +( 2112 -768 96 ) ( 2112 -832 96 ) ( 2112 -832 32 ) props/box_sr_m5 0 -32 0 1 1 0 134217728 0 +} +// brush 1374 +{ +( 1984 -856 32 ) ( 1920 -856 32 ) ( 1920 -920 32 ) props/box_sr_m5 0 -24 0 1 1 0 134217728 0 +( 1920 -920 96 ) ( 1920 -856 96 ) ( 1984 -856 96 ) props/box_sr_m5 0 -24 0 1 1 0 134217728 0 +( 1920 -920 96 ) ( 1984 -920 96 ) ( 1984 -920 32 ) props/box_sr_m5 0 -32 0 1 1 0 134217728 0 +( 1984 -920 96 ) ( 1984 -856 96 ) ( 1984 -856 32 ) props/box_sr_m5 24 -32 0 1 1 0 134217728 0 +( 1984 -856 96 ) ( 1920 -856 96 ) ( 1920 -856 32 ) props/box_sr_m5 0 -32 0 1 1 0 134217728 0 +( 1920 -856 96 ) ( 1920 -920 96 ) ( 1920 -920 32 ) props/box_sr_m5 24 -32 0 1 1 0 134217728 0 +} +// brush 1375 +{ +( 1920 -832 32 ) ( 1856 -832 32 ) ( 1856 -896 32 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 1856 -896 96 ) ( 1856 -832 96 ) ( 1920 -832 96 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 1856 -896 112 ) ( 1920 -896 112 ) ( 1920 -896 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 1920 -896 112 ) ( 1920 -832 112 ) ( 1920 -832 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 1920 -832 112 ) ( 1856 -832 112 ) ( 1856 -832 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 1856 -832 112 ) ( 1856 -896 112 ) ( 1856 -896 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +} +// brush 1376 +{ +( 1792 -888 32 ) ( 1728 -888 32 ) ( 1728 -960 32 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1728 -960 96 ) ( 1728 -888 96 ) ( 1792 -888 96 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1728 -960 96 ) ( 1792 -960 96 ) ( 1792 -960 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 1792 -960 96 ) ( 1792 -888 96 ) ( 1792 -888 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 1792 -896 96 ) ( 1728 -896 96 ) ( 1728 -896 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +( 1728 -888 96 ) ( 1728 -960 96 ) ( 1728 -960 32 ) props/box_sr_m6 0 32 0 1 1 0 134217728 0 +} +// brush 1377 +{ +( 1920 -896 32 ) ( 1856 -896 32 ) ( 1856 -960 32 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 1856 -960 96 ) ( 1856 -896 96 ) ( 1920 -896 96 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 1856 -960 96 ) ( 1920 -960 96 ) ( 1920 -960 32 ) props/box_sr_m5 0 -32 0 1 1 0 134217728 0 +( 1920 -960 96 ) ( 1920 -896 96 ) ( 1920 -896 32 ) props/box_sr_m5 0 -32 0 1 1 0 134217728 0 +( 1920 -896 96 ) ( 1856 -896 96 ) ( 1856 -896 32 ) props/box_sr_m5 0 -32 0 1 1 0 134217728 0 +( 1856 -896 96 ) ( 1856 -960 96 ) ( 1856 -960 32 ) props/box_sr_m5 0 -32 0 1 1 0 134217728 0 +} +// brush 1378 +{ +( 1856 -896 32 ) ( 1792 -896 32 ) ( 1792 -960 32 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 1792 -960 96 ) ( 1792 -896 96 ) ( 1856 -896 96 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 1792 -960 112 ) ( 1856 -960 112 ) ( 1856 -960 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 1856 -960 112 ) ( 1856 -896 112 ) ( 1856 -896 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 1856 -896 112 ) ( 1792 -896 112 ) ( 1792 -896 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 1792 -896 112 ) ( 1792 -960 112 ) ( 1792 -960 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +} +// brush 1379 +{ +( 1920 -896 124 ) ( 1856 -896 124 ) ( 1856 -960 124 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1856 -960 188 ) ( 1856 -896 188 ) ( 1920 -896 188 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1856 -960 252 ) ( 1920 -960 252 ) ( 1920 -960 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 1920 -960 252 ) ( 1920 -896 252 ) ( 1920 -896 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 1920 -896 252 ) ( 1856 -896 252 ) ( 1856 -896 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 1856 -896 252 ) ( 1856 -960 252 ) ( 1856 -960 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +} +// brush 1380 +{ +( 1856 -896 188 ) ( 1792 -896 188 ) ( 1792 -960 188 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 1792 -960 252 ) ( 1792 -896 252 ) ( 1856 -896 252 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 1792 -960 316 ) ( 1856 -960 316 ) ( 1856 -960 188 ) props/box_sr_m11 0 60 0 1 1 0 134217728 0 +( 1856 -960 316 ) ( 1856 -896 316 ) ( 1856 -896 188 ) props/box_sr_m11 0 60 0 1 1 0 134217728 0 +( 1856 -896 316 ) ( 1792 -896 316 ) ( 1792 -896 188 ) props/box_sr_m11 0 60 0 1 1 0 134217728 0 +( 1792 -896 316 ) ( 1792 -960 316 ) ( 1792 -960 188 ) props/box_sr_m11 0 60 0 1 1 0 134217728 0 +} +// brush 1381 +{ +( 1856 -896 124 ) ( 1792 -896 124 ) ( 1792 -960 124 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1792 -960 188 ) ( 1792 -896 188 ) ( 1856 -896 188 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1792 -960 252 ) ( 1856 -960 252 ) ( 1856 -960 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 1856 -960 252 ) ( 1856 -896 252 ) ( 1856 -896 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 1856 -896 252 ) ( 1792 -896 252 ) ( 1792 -896 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 1792 -896 252 ) ( 1792 -960 252 ) ( 1792 -960 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +} +// brush 1382 +{ +( 1856 -832 124 ) ( 1792 -832 124 ) ( 1792 -896 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 1792 -896 188 ) ( 1792 -832 188 ) ( 1856 -832 188 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 1792 -896 252 ) ( 1856 -896 252 ) ( 1856 -896 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 1856 -896 252 ) ( 1856 -832 252 ) ( 1856 -832 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 1856 -832 252 ) ( 1792 -832 252 ) ( 1792 -832 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 1792 -832 252 ) ( 1792 -896 252 ) ( 1792 -896 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +} +// brush 1383 +{ +( 2112 -320 124 ) ( 2048 -320 124 ) ( 2048 -384 124 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 2048 -384 188 ) ( 2048 -320 188 ) ( 2112 -320 188 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 2048 -384 252 ) ( 2112 -384 252 ) ( 2112 -384 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2112 -384 252 ) ( 2112 -320 252 ) ( 2112 -320 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2112 -320 252 ) ( 2048 -320 252 ) ( 2048 -320 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2048 -320 252 ) ( 2048 -384 252 ) ( 2048 -384 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +} +// brush 1384 +{ +( 2112 -408 188 ) ( 2048 -408 188 ) ( 2048 -472 188 ) props/box_sr_m11 0 36 0 1 1 0 134217728 0 +( 2048 -472 252 ) ( 2048 -408 252 ) ( 2112 -408 252 ) props/box_sr_m11 0 -24 0 1 1 0 134217728 0 +( 2048 -472 316 ) ( 2112 -472 316 ) ( 2112 -472 188 ) props/box_sr_m11 0 60 0 1 1 0 134217728 0 +( 2112 -472 316 ) ( 2112 -408 316 ) ( 2112 -408 188 ) props/box_sr_m11 24 60 0 1 1 0 134217728 0 +( 2112 -408 316 ) ( 2048 -408 316 ) ( 2048 -408 188 ) props/box_sr_m11 0 60 0 1 1 0 134217728 0 +( 2048 -408 316 ) ( 2048 -472 316 ) ( 2048 -472 188 ) props/box_sr_m11 24 60 0 1 1 0 134217728 0 +} +// brush 1385 +{ +( 2176 -384 188 ) ( 2112 -384 188 ) ( 2112 -448 188 ) props/box_sr_m11 0 60 0 1 1 0 134217728 0 +( 2112 -448 252 ) ( 2112 -384 252 ) ( 2176 -384 252 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 2112 -448 316 ) ( 2176 -448 316 ) ( 2176 -448 188 ) props/box_sr_m11 0 60 0 1 1 0 134217728 0 +( 2176 -448 316 ) ( 2176 -384 316 ) ( 2176 -384 188 ) props/box_sr_m11 0 60 0 1 1 0 134217728 0 +( 2176 -384 316 ) ( 2112 -384 316 ) ( 2112 -384 188 ) props/box_sr_m11 0 60 0 1 1 0 134217728 0 +( 2112 -384 316 ) ( 2112 -448 316 ) ( 2112 -448 188 ) props/box_sr_m11 0 60 0 1 1 0 134217728 0 +} +// brush 1386 +{ +( 2112 -384 124 ) ( 2048 -384 124 ) ( 2048 -448 124 ) props/box_sr_m11 0 60 0 1 1 0 134217728 0 +( 2048 -448 188 ) ( 2048 -384 188 ) ( 2112 -384 188 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 2048 -448 252 ) ( 2112 -448 252 ) ( 2112 -448 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 2112 -448 252 ) ( 2112 -384 252 ) ( 2112 -384 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 2112 -384 252 ) ( 2048 -384 252 ) ( 2048 -384 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 2048 -384 252 ) ( 2048 -448 252 ) ( 2048 -448 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +} +// brush 1387 +{ +( 2176 -384 124 ) ( 2112 -384 124 ) ( 2112 -448 124 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 2112 -448 188 ) ( 2112 -384 188 ) ( 2176 -384 188 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 2112 -448 252 ) ( 2176 -448 252 ) ( 2176 -448 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2176 -448 252 ) ( 2176 -384 252 ) ( 2176 -384 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2176 -384 252 ) ( 2112 -384 252 ) ( 2112 -384 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2112 -384 252 ) ( 2112 -448 252 ) ( 2112 -448 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +} +// brush 1388 +{ +( 2176 -448 124 ) ( 2112 -448 124 ) ( 2112 -512 124 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 2112 -512 188 ) ( 2112 -448 188 ) ( 2176 -448 188 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 2112 -512 252 ) ( 2176 -512 252 ) ( 2176 -512 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2176 -512 252 ) ( 2176 -448 252 ) ( 2176 -448 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2176 -448 252 ) ( 2112 -448 252 ) ( 2112 -448 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2112 -448 252 ) ( 2112 -512 252 ) ( 2112 -512 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +} +// brush 1389 +{ +( 2112 -448 124 ) ( 2048 -448 124 ) ( 2048 -512 124 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 2048 -512 188 ) ( 2048 -448 188 ) ( 2112 -448 188 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 2048 -512 252 ) ( 2112 -512 252 ) ( 2112 -512 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2112 -512 252 ) ( 2112 -448 252 ) ( 2112 -448 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2112 -448 252 ) ( 2048 -448 252 ) ( 2048 -448 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2048 -448 252 ) ( 2048 -512 252 ) ( 2048 -512 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +} +// brush 1390 +{ +( 2176 -608 188 ) ( 2112 -608 188 ) ( 2112 -672 188 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 2112 -672 252 ) ( 2112 -608 252 ) ( 2176 -608 252 ) props/box_sr_m6 0 -32 0 1 1 0 134217728 0 +( 2112 -672 316 ) ( 2176 -672 316 ) ( 2176 -672 188 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2176 -672 316 ) ( 2176 -608 316 ) ( 2176 -608 188 ) props/box_sr_m6 32 -4 0 1 1 0 134217728 0 +( 2176 -608 316 ) ( 2112 -608 316 ) ( 2112 -608 188 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2112 -608 316 ) ( 2112 -672 316 ) ( 2112 -672 188 ) props/box_sr_m6 32 -4 0 1 1 0 134217728 0 +} +// brush 1391 +{ +( 2112 -592 124 ) ( 2048 -592 124 ) ( 2048 -656 124 ) props/box_sr_m6 0 -16 0 1 1 0 134217728 0 +( 2048 -656 188 ) ( 2048 -592 188 ) ( 2112 -592 188 ) props/box_sr_m6 0 -16 0 1 1 0 134217728 0 +( 2048 -656 252 ) ( 2112 -656 252 ) ( 2112 -656 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2112 -656 252 ) ( 2112 -592 252 ) ( 2112 -592 124 ) props/box_sr_m6 16 -4 0 1 1 0 134217728 0 +( 2112 -592 252 ) ( 2048 -592 252 ) ( 2048 -592 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2048 -592 252 ) ( 2048 -656 252 ) ( 2048 -656 124 ) props/box_sr_m6 16 -4 0 1 1 0 134217728 0 +} +// brush 1392 +{ +( 2176 -672 188 ) ( 2112 -672 188 ) ( 2112 -736 188 ) props/box_sr_m11 0 28 0 1 1 0 134217728 0 +( 2112 -736 252 ) ( 2112 -672 252 ) ( 2176 -672 252 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 2112 -736 316 ) ( 2176 -736 316 ) ( 2176 -736 188 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 2176 -736 316 ) ( 2176 -672 316 ) ( 2176 -672 188 ) props/box_sr_m11 -32 -4 0 1 1 0 134217728 0 +( 2176 -672 316 ) ( 2112 -672 316 ) ( 2112 -672 188 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 2112 -672 316 ) ( 2112 -736 316 ) ( 2112 -736 188 ) props/box_sr_m11 -32 -4 0 1 1 0 134217728 0 +} +// brush 1393 +{ +( 2176 -640 124 ) ( 2112 -640 124 ) ( 2112 -704 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 2112 -704 188 ) ( 2112 -640 188 ) ( 2176 -640 188 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 2112 -704 252 ) ( 2176 -704 252 ) ( 2176 -704 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 2176 -704 252 ) ( 2176 -640 252 ) ( 2176 -640 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 2176 -640 252 ) ( 2112 -640 252 ) ( 2112 -640 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 2112 -640 252 ) ( 2112 -704 252 ) ( 2112 -704 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +} +// brush 1394 +{ +( 2176 -576 124 ) ( 2112 -576 124 ) ( 2112 -640 124 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 2112 -640 188 ) ( 2112 -576 188 ) ( 2176 -576 188 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 2112 -640 252 ) ( 2176 -640 252 ) ( 2176 -640 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2176 -640 252 ) ( 2176 -576 252 ) ( 2176 -576 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2176 -576 252 ) ( 2112 -576 252 ) ( 2112 -576 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2112 -576 252 ) ( 2112 -640 252 ) ( 2112 -640 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +} +// brush 1395 +{ +( 2176 -736 188 ) ( 2112 -736 188 ) ( 2112 -800 188 ) props/box_sr_m11 0 28 0 1 1 0 134217728 0 +( 2112 -800 252 ) ( 2112 -736 252 ) ( 2176 -736 252 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 2112 -800 316 ) ( 2176 -800 316 ) ( 2176 -800 188 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 2176 -800 316 ) ( 2176 -736 316 ) ( 2176 -736 188 ) props/box_sr_m11 -32 -4 0 1 1 0 134217728 0 +( 2176 -736 316 ) ( 2112 -736 316 ) ( 2112 -736 188 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 2112 -736 316 ) ( 2112 -800 316 ) ( 2112 -800 188 ) props/box_sr_m11 -32 -4 0 1 1 0 134217728 0 +} +// brush 1396 +{ +( 2176 -704 124 ) ( 2112 -704 124 ) ( 2112 -768 124 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 2112 -768 188 ) ( 2112 -704 188 ) ( 2176 -704 188 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 2112 -768 252 ) ( 2176 -768 252 ) ( 2176 -768 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2176 -768 252 ) ( 2176 -704 252 ) ( 2176 -704 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2176 -704 252 ) ( 2112 -704 252 ) ( 2112 -704 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2112 -704 252 ) ( 2112 -768 252 ) ( 2112 -768 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +} +// brush 1397 +{ +( 2136 -832 124 ) ( 2072 -832 124 ) ( 2072 -896 124 ) props/box_sr_m6 40 0 0 1 1 0 134217728 0 +( 2072 -896 188 ) ( 2072 -832 188 ) ( 2136 -832 188 ) props/box_sr_m6 40 64 0 1 1 0 134217728 0 +( 2072 -896 252 ) ( 2136 -896 252 ) ( 2136 -896 124 ) props/box_sr_m6 40 -4 0 1 1 0 134217728 0 +( 2136 -896 252 ) ( 2136 -832 252 ) ( 2136 -832 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 2136 -832 252 ) ( 2072 -832 252 ) ( 2072 -832 124 ) props/box_sr_m6 40 -4 0 1 1 0 134217728 0 +( 2072 -832 252 ) ( 2072 -896 252 ) ( 2072 -896 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +} +// brush 1398 +{ +( 2176 -768 124 ) ( 2112 -768 124 ) ( 2112 -832 124 ) props/box_sr_m11 0 60 0 1 1 0 134217728 0 +( 2112 -832 188 ) ( 2112 -768 188 ) ( 2176 -768 188 ) props/box_sr_m11 0 64 0 1 1 0 134217728 0 +( 2112 -832 252 ) ( 2176 -832 252 ) ( 2176 -832 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 2176 -832 252 ) ( 2176 -768 252 ) ( 2176 -768 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 2176 -768 252 ) ( 2112 -768 252 ) ( 2112 -768 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 2112 -768 252 ) ( 2112 -832 252 ) ( 2112 -832 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +} +// brush 1399 +{ +( 1728 -832 188 ) ( 1664 -832 188 ) ( 1664 -896 188 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1664 -896 252 ) ( 1664 -832 252 ) ( 1728 -832 252 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1664 -896 316 ) ( 1728 -896 316 ) ( 1728 -896 188 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 1728 -896 316 ) ( 1728 -832 316 ) ( 1728 -832 188 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 1728 -832 316 ) ( 1664 -832 316 ) ( 1664 -832 188 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 1664 -832 316 ) ( 1664 -896 316 ) ( 1664 -896 188 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +} +// brush 1400 +{ +( 1728 -832 124 ) ( 1664 -832 124 ) ( 1664 -896 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 1664 -896 188 ) ( 1664 -832 188 ) ( 1728 -832 188 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 1664 -896 252 ) ( 1728 -896 252 ) ( 1728 -896 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 1728 -896 252 ) ( 1728 -832 252 ) ( 1728 -832 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 1728 -832 252 ) ( 1664 -832 252 ) ( 1664 -832 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +( 1664 -832 252 ) ( 1664 -896 252 ) ( 1664 -896 124 ) props/box_sr_m11 0 -4 0 1 1 0 134217728 0 +} +// brush 1401 +{ +( 1792 -896 124 ) ( 1728 -896 124 ) ( 1728 -960 124 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1728 -960 188 ) ( 1728 -896 188 ) ( 1792 -896 188 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1728 -960 252 ) ( 1792 -960 252 ) ( 1792 -960 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 1792 -960 252 ) ( 1792 -896 252 ) ( 1792 -896 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 1792 -896 252 ) ( 1728 -896 252 ) ( 1728 -896 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 1728 -896 252 ) ( 1728 -960 252 ) ( 1728 -960 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +} +// brush 1402 +{ +( 1728 -896 124 ) ( 1664 -896 124 ) ( 1664 -960 124 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1664 -960 188 ) ( 1664 -896 188 ) ( 1728 -896 188 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 1664 -960 252 ) ( 1728 -960 252 ) ( 1728 -960 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 1728 -960 252 ) ( 1728 -896 252 ) ( 1728 -896 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 1728 -896 252 ) ( 1664 -896 252 ) ( 1664 -896 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +( 1664 -896 252 ) ( 1664 -960 252 ) ( 1664 -960 124 ) props/box_sr_m6 0 -4 0 1 1 0 134217728 0 +} +// brush 1403 +{ +( 1648 -976 128 ) ( 2368 -976 128 ) ( 2368 -976 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2176 -976 128 ) ( 2176 -960 128 ) ( 2176 -960 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2368 -960 128 ) ( 1648 -960 128 ) ( 1648 -960 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1984 -976 40 ) ( 2008 -976 40 ) ( 1996 -960 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2000 -976 56 ) ( 1984 -976 56 ) ( 1992 -960 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2088 -976 40 ) ( 2088 -960 40 ) ( 2088 -968 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1404 +{ +( 1648 -976 128 ) ( 2368 -976 128 ) ( 2368 -976 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2368 -960 128 ) ( 1648 -960 128 ) ( 1648 -960 32 ) common/li_sr_v27 8 8 0 1 1 0 1 10000 +( 1984 -976 40 ) ( 2008 -976 40 ) ( 1996 -960 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2000 -976 56 ) ( 1984 -976 56 ) ( 1992 -960 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2072 -976 40 ) ( 2072 -960 40 ) ( 2072 -968 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2088 -960 40 ) ( 2088 -976 40 ) ( 2088 -968 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1405 +{ +( 1648 -976 128 ) ( 2368 -976 128 ) ( 2368 -976 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2368 -960 128 ) ( 1648 -960 128 ) ( 1648 -960 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1984 -984 32 ) ( 1984 -960 32 ) ( 1984 -972 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1984 -976 40 ) ( 2008 -976 40 ) ( 1996 -960 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2000 -976 56 ) ( 1984 -976 56 ) ( 1992 -960 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2072 -960 40 ) ( 2072 -976 40 ) ( 2072 -968 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1406 +{ +( 1648 -976 80 ) ( 1648 -960 80 ) ( 2368 -960 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1648 -976 128 ) ( 2368 -976 128 ) ( 2368 -976 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2176 -976 128 ) ( 2176 -960 128 ) ( 2176 -960 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2368 -960 128 ) ( 1648 -960 128 ) ( 1648 -960 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1984 -984 32 ) ( 1984 -960 32 ) ( 1984 -972 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1984 -976 56 ) ( 2000 -976 56 ) ( 1992 -960 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1407 +{ +( 2368 -960 32 ) ( 1648 -960 32 ) ( 1648 -976 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1648 -976 128 ) ( 2368 -976 128 ) ( 2368 -976 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2176 -976 128 ) ( 2176 -960 128 ) ( 2176 -960 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2368 -960 128 ) ( 1648 -960 128 ) ( 1648 -960 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1984 -984 32 ) ( 1984 -960 32 ) ( 1984 -972 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2008 -976 40 ) ( 1984 -976 40 ) ( 1996 -960 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1408 +{ +( 2368 -960 32 ) ( 1648 -960 32 ) ( 1648 -976 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1648 -976 80 ) ( 1648 -960 80 ) ( 2368 -960 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1648 -976 128 ) ( 2368 -976 128 ) ( 2368 -976 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2368 -960 128 ) ( 1648 -960 128 ) ( 1648 -960 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1648 -960 128 ) ( 1648 -976 128 ) ( 1648 -976 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1984 -960 32 ) ( 1984 -984 32 ) ( 1984 -972 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1409 +{ +( 1648 -192 128 ) ( 2176 -192 128 ) ( 2176 -192 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 2192 -192 128 ) ( 2192 -176 128 ) ( 2192 -176 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2176 -176 128 ) ( 1648 -176 128 ) ( 1648 -176 32 ) bricks/c_pv_m2 16 32 0 1 1 0 0 0 +( 1984 -192 40 ) ( 2000 -192 40 ) ( 1992 -176 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2000 -192 56 ) ( 1984 -192 56 ) ( 1992 -176 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2088 -192 40 ) ( 2088 -176 40 ) ( 2088 -184 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1410 +{ +( 1648 -192 128 ) ( 2176 -192 128 ) ( 2176 -192 32 ) common/li_sr_v27 8 8 0 1 1 0 1 15000 +( 2176 -176 128 ) ( 1648 -176 128 ) ( 1648 -176 32 ) bricks/c_pv_m2 16 32 0 1 1 0 0 0 +( 1984 -192 40 ) ( 2000 -192 40 ) ( 1992 -176 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2000 -192 56 ) ( 1984 -192 56 ) ( 1992 -176 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2072 -192 40 ) ( 2072 -176 40 ) ( 2072 -184 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2088 -176 40 ) ( 2088 -192 40 ) ( 2088 -184 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1411 +{ +( 1648 -192 128 ) ( 2176 -192 128 ) ( 2176 -192 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 2176 -176 128 ) ( 1648 -176 128 ) ( 1648 -176 32 ) bricks/c_pv_m2 16 32 0 1 1 0 0 0 +( 1984 -184 32 ) ( 1984 -176 32 ) ( 1984 -180 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1984 -192 40 ) ( 2000 -192 40 ) ( 1992 -176 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2000 -192 56 ) ( 1984 -192 56 ) ( 1992 -176 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2072 -176 40 ) ( 2072 -192 40 ) ( 2072 -184 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1412 +{ +( 1648 -192 80 ) ( 1648 -176 80 ) ( 2176 -176 80 ) bricks/c_pv_m2 16 32 0 1 1 0 0 0 +( 1648 -192 128 ) ( 2176 -192 128 ) ( 2176 -192 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 2192 -192 128 ) ( 2192 -176 128 ) ( 2192 -176 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2176 -176 128 ) ( 1648 -176 128 ) ( 1648 -176 32 ) bricks/c_pv_m2 16 32 0 1 1 0 0 0 +( 1984 -184 -16 ) ( 1984 -176 -16 ) ( 1984 -180 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1984 -192 56 ) ( 2000 -192 56 ) ( 1992 -176 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1413 +{ +( 2176 -176 32 ) ( 1648 -176 32 ) ( 1648 -192 32 ) bricks/c_pv_m2 16 32 0 1 1 0 0 0 +( 1648 -192 128 ) ( 2176 -192 128 ) ( 2176 -192 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 2192 -192 128 ) ( 2192 -176 128 ) ( 2192 -176 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2176 -176 128 ) ( 1648 -176 128 ) ( 1648 -176 32 ) bricks/c_pv_m2 16 32 0 1 1 0 0 0 +( 1984 -184 32 ) ( 1984 -176 32 ) ( 1984 -180 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 2000 -192 40 ) ( 1984 -192 40 ) ( 1992 -176 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1414 +{ +( 1664 -840 128 ) ( 1664 -752 128 ) ( 1664 -752 32 ) common/li_sr_v27 8 8 0 1 1 0 1 15000 +( 1648 -752 128 ) ( 1648 -840 128 ) ( 1648 -840 32 ) bricks/c_pv_m2 32 32 0 1 1 0 0 0 +( 1648 -992 40 ) ( 1664 -992 40 ) ( 1656 -752 40 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1672 -992 56 ) ( 1648 -992 56 ) ( 1660 -752 56 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1648 -856 40 ) ( 1664 -856 40 ) ( 1656 -856 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1664 -872 40 ) ( 1648 -872 40 ) ( 1656 -872 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1415 +{ +( 1648 -960 128 ) ( 1664 -960 128 ) ( 1664 -960 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1664 -808 128 ) ( 1664 -720 128 ) ( 1664 -720 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1648 -720 128 ) ( 1648 -808 128 ) ( 1648 -808 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1648 -960 40 ) ( 1664 -960 40 ) ( 1656 -720 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1672 -960 56 ) ( 1648 -960 56 ) ( 1660 -720 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1648 -872 40 ) ( 1664 -872 40 ) ( 1656 -872 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1416 +{ +( 1664 -808 128 ) ( 1664 -720 128 ) ( 1664 -720 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1664 -720 128 ) ( 1648 -720 128 ) ( 1648 -720 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1648 -720 128 ) ( 1648 -808 128 ) ( 1648 -808 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1648 -960 40 ) ( 1664 -960 40 ) ( 1656 -720 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1672 -960 56 ) ( 1648 -960 56 ) ( 1660 -720 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1664 -856 40 ) ( 1648 -856 40 ) ( 1656 -856 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1417 +{ +( 1648 -808 80 ) ( 1648 -720 80 ) ( 1664 -720 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1648 -960 128 ) ( 1664 -960 128 ) ( 1664 -960 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1664 -808 128 ) ( 1664 -720 128 ) ( 1664 -720 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1664 -720 128 ) ( 1648 -720 128 ) ( 1648 -720 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1648 -720 128 ) ( 1648 -808 128 ) ( 1648 -808 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1648 -960 56 ) ( 1672 -960 56 ) ( 1660 -720 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1418 +{ +( 1664 -720 32 ) ( 1648 -720 32 ) ( 1648 -808 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1648 -960 128 ) ( 1664 -960 128 ) ( 1664 -960 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1664 -808 128 ) ( 1664 -720 128 ) ( 1664 -720 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1664 -720 128 ) ( 1648 -720 128 ) ( 1648 -720 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1648 -720 128 ) ( 1648 -808 128 ) ( 1648 -808 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1664 -960 40 ) ( 1648 -960 40 ) ( 1656 -720 40 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1419 +{ +( 2000 -192 32 ) ( 1984 -192 32 ) ( 1984 -208 32 ) wood/wd_sr_v8 -48 56 0 1 1 0 0 0 +( 1984 -208 116 ) ( 1984 -192 116 ) ( 2000 -192 116 ) wood/wd_sr_v8 -48 56 0 1 1 0 0 0 +( 1984 -208 120 ) ( 2000 -208 120 ) ( 2000 -208 104 ) wood/wd_sr_v8 -104 -8 0 1 1 0 0 0 +( 2000 -208 120 ) ( 2000 -192 120 ) ( 2000 -192 104 ) wood/wd_sr_v8 -88 -8 0 1 1 0 0 0 +( 2000 -192 120 ) ( 1984 -192 120 ) ( 1984 -192 104 ) wood/wd_sr_v8 -48 -8 0 1 1 0 0 0 +( 1984 -192 120 ) ( 1984 -208 120 ) ( 1984 -208 104 ) wood/wd_sr_v8 -32 -8 0 1 1 0 0 0 +} +// brush 1420 +{ +( 2176 -192 32 ) ( 2160 -192 32 ) ( 2160 -208 32 ) wood/wd_sr_v8 -96 56 0 1 1 0 0 0 +( 2160 -208 116 ) ( 2160 -192 116 ) ( 2176 -192 116 ) wood/wd_sr_v8 -96 56 0 1 1 0 0 0 +( 2160 -208 120 ) ( 2176 -208 120 ) ( 2176 -208 104 ) wood/wd_sr_v8 -24 -8 0 1 1 0 0 0 +( 2176 -208 120 ) ( 2176 -192 120 ) ( 2176 -192 104 ) wood/wd_sr_v8 -88 -8 0 1 1 0 0 0 +( 2176 -192 120 ) ( 2160 -192 120 ) ( 2160 -192 104 ) wood/wd_sr_v8 -96 -8 0 1 1 0 0 0 +( 2160 -192 120 ) ( 2160 -208 120 ) ( 2160 -208 104 ) wood/wd_sr_v8 -32 -8 0 1 1 0 0 0 +} +// brush 1421 +{ +( 1984 -544 112 ) ( 1976 -544 112 ) ( 1976 -632 112 ) wood/wd_sr_v8 -24 0 0 1 1 134217728 0 0 +( 1976 -632 128 ) ( 1976 -544 128 ) ( 1984 -544 128 ) wood/wd_sr_v8 -24 0 0 1 1 134217728 134217728 0 +( 1984 -640 128 ) ( 1984 -640 112 ) ( 1976 -632 112 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 1984 -640 112 ) ( 1984 -640 128 ) ( 1984 -544 128 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 1992 -192 128 ) ( 1984 -192 128 ) ( 1984 -192 112 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 1976 -544 128 ) ( 1976 -632 128 ) ( 1976 -632 112 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +} +// brush 1422 +{ +( 2176 -576 116 ) ( 1984 -576 116 ) ( 1984 -640 116 ) wood/wd_sr_v8 0 0 90 1 1 0 0 0 +( 1984 -640 124 ) ( 1984 -576 124 ) ( 2176 -576 124 ) wood/wd_sr_v8 0 0 90 1 1 0 134217728 0 +( 1984 -640 124 ) ( 2176 -640 124 ) ( 2176 -640 116 ) wood/wd_sr_v8 0 0 90 1 1 0 0 0 +( 2176 -640 124 ) ( 2176 -576 124 ) ( 2176 -576 116 ) wood/wd_sr_v8 0 0 90 1 1 0 0 0 +( 2168 -192 124 ) ( 1976 -192 124 ) ( 1976 -192 116 ) wood/wd_sr_v8 0 0 90 1 1 0 0 0 +( 1984 -576 124 ) ( 1984 -640 124 ) ( 1984 -640 116 ) wood/wd_sr_v8 0 0 90 1 1 0 0 0 +} +// brush 1423 +{ +( 2064 -724 32 ) ( 2032 -724 32 ) ( 2032 -728 32 ) common/0_clip 0 0 0 1 1 537067520 128 0 +( 2032 -728 128 ) ( 2032 -724 128 ) ( 2064 -724 128 ) common/0_clip 0 0 0 1 1 537067520 128 0 +( 2032 -728 72 ) ( 2064 -728 72 ) ( 2064 -728 68 ) common/0_clip 0 0 0 1 1 537067520 128 0 +( 2064 -728 72 ) ( 2064 -724 72 ) ( 2064 -724 68 ) common/0_clip 0 0 0 1 1 537067520 128 0 +( 2064 -724 72 ) ( 2032 -724 72 ) ( 2032 -724 68 ) common/0_clip 0 0 0 1 1 537067520 128 0 +( 2032 -724 72 ) ( 2032 -728 72 ) ( 2032 -728 68 ) common/0_clip 0 0 0 1 1 537067520 128 0 +} +// brush 1424 +{ +( 2064 -728 68 ) ( 2032 -728 68 ) ( 2032 -732 68 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 2032 -732 72 ) ( 2032 -728 72 ) ( 2064 -728 72 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 134217728 0 +( 2032 -732 84 ) ( 2064 -732 84 ) ( 2064 -732 68 ) wood/wd_sr_v8 20 0 90 1 1 134217728 0 0 +( 2064 -732 84 ) ( 2064 -728 84 ) ( 2064 -728 68 ) wood/wd_sr_v8 20 0 90 1 1 134217728 0 0 +( 2064 -728 84 ) ( 2032 -728 84 ) ( 2032 -728 68 ) wood/wd_sr_v8 20 0 90 1 1 134217728 0 0 +( 2032 -728 84 ) ( 2032 -732 84 ) ( 2032 -732 68 ) wood/wd_sr_v8 20 0 90 1 1 134217728 0 0 +} +// brush 1425 +{ +( 2064 -728 48 ) ( 2032 -728 48 ) ( 2032 -732 48 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 2032 -732 52 ) ( 2032 -728 52 ) ( 2064 -728 52 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 134217728 0 +( 2032 -732 64 ) ( 2064 -732 64 ) ( 2064 -732 48 ) wood/wd_sr_v8 40 0 90 1 1 134217728 0 0 +( 2064 -732 64 ) ( 2064 -728 64 ) ( 2064 -728 48 ) wood/wd_sr_v8 40 0 90 1 1 134217728 0 0 +( 2064 -728 64 ) ( 2032 -728 64 ) ( 2032 -728 48 ) wood/wd_sr_v8 40 0 90 1 1 134217728 0 0 +( 2032 -728 64 ) ( 2032 -732 64 ) ( 2032 -732 48 ) wood/wd_sr_v8 40 0 90 1 1 134217728 0 0 +} +// brush 1426 +{ +( 2064 -728 88 ) ( 2032 -728 88 ) ( 2032 -732 88 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 2032 -732 92 ) ( 2032 -728 92 ) ( 2064 -728 92 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 134217728 0 +( 2032 -732 104 ) ( 2064 -732 104 ) ( 2064 -732 88 ) wood/wd_sr_v8 0 0 90 1 1 134217728 0 0 +( 2064 -732 104 ) ( 2064 -728 104 ) ( 2064 -728 88 ) wood/wd_sr_v8 0 0 90 1 1 134217728 0 0 +( 2064 -728 104 ) ( 2032 -728 104 ) ( 2032 -728 88 ) wood/wd_sr_v8 0 0 90 1 1 134217728 0 0 +( 2032 -728 104 ) ( 2032 -732 104 ) ( 2032 -732 88 ) wood/wd_sr_v8 0 0 90 1 1 134217728 0 0 +} +// brush 1427 +{ +( 2064 -728 108 ) ( 2032 -728 108 ) ( 2032 -732 108 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 2032 -732 112 ) ( 2032 -728 112 ) ( 2064 -728 112 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 134217728 0 +( 2032 -732 124 ) ( 2064 -732 124 ) ( 2064 -732 108 ) wood/wd_sr_v8 -20 0 90 1 1 134217728 0 0 +( 2064 -732 124 ) ( 2064 -728 124 ) ( 2064 -728 108 ) wood/wd_sr_v8 -20 0 90 1 1 134217728 0 0 +( 2064 -728 124 ) ( 2032 -728 124 ) ( 2032 -728 108 ) wood/wd_sr_v8 -20 0 90 1 1 134217728 0 0 +( 2032 -728 124 ) ( 2032 -732 124 ) ( 2032 -732 108 ) wood/wd_sr_v8 -20 0 90 1 1 134217728 0 0 +} +// brush 1428 +{ +( 2068 -728 32 ) ( 2064 -728 32 ) ( 2064 -732 32 ) wood/wd_sr_v8 -60 0 0 1 1 134217728 0 0 +( 2064 -732 128 ) ( 2064 -728 128 ) ( 2068 -728 128 ) wood/wd_sr_v8 -60 0 0 1 1 134217728 134217728 0 +( 2064 -732 128 ) ( 2068 -732 128 ) ( 2068 -732 112 ) wood/wd_sr_v8 -60 0 0 1 1 134217728 0 0 +( 2068 -732 128 ) ( 2068 -728 128 ) ( 2068 -728 112 ) wood/wd_sr_v8 -24 0 0 1 1 134217728 0 0 +( 2068 -728 128 ) ( 2064 -728 128 ) ( 2064 -728 112 ) wood/wd_sr_v8 -60 0 0 1 1 134217728 0 0 +( 2064 -728 128 ) ( 2064 -732 128 ) ( 2064 -732 112 ) wood/wd_sr_v8 -24 0 0 1 1 134217728 0 0 +} +// brush 1429 +{ +( 2032 -728 32 ) ( 2028 -728 32 ) ( 2028 -732 32 ) wood/wd_sr_v8 -24 0 0 1 1 134217728 0 0 +( 2028 -732 128 ) ( 2028 -728 128 ) ( 2032 -728 128 ) wood/wd_sr_v8 -24 0 0 1 1 134217728 134217728 0 +( 2028 -732 128 ) ( 2032 -732 128 ) ( 2032 -732 112 ) wood/wd_sr_v8 -24 0 0 1 1 134217728 0 0 +( 2032 -732 128 ) ( 2032 -728 128 ) ( 2032 -728 112 ) wood/wd_sr_v8 -24 0 0 1 1 134217728 0 0 +( 2032 -728 128 ) ( 2028 -728 128 ) ( 2028 -728 112 ) wood/wd_sr_v8 -24 0 0 1 1 134217728 0 0 +( 2028 -728 128 ) ( 2028 -732 128 ) ( 2028 -732 112 ) wood/wd_sr_v8 -24 0 0 1 1 134217728 0 0 +} +// brush 1430 +{ +( 2088 -668 112 ) ( 2084 -668 112 ) ( 2084 -732 112 ) wood/wd_sr_v8 -24 0 0 1 1 134217728 0 0 +( 2084 -732 128 ) ( 2084 -668 128 ) ( 2088 -668 128 ) wood/wd_sr_v8 -24 0 0 1 1 134217728 134217728 0 +( 2088 -736 128 ) ( 2088 -736 112 ) ( 2084 -732 112 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 2088 -664 128 ) ( 2088 -664 112 ) ( 2088 -736 112 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 2088 -664 112 ) ( 2088 -664 128 ) ( 2084 -668 128 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 2084 -668 128 ) ( 2084 -732 128 ) ( 2084 -732 112 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +} +// brush 1431 +{ +( 2088 -732 112 ) ( 2012 -732 112 ) ( 2012 -736 112 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 2012 -736 128 ) ( 2012 -732 128 ) ( 2088 -732 128 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 134217728 0 +( 2008 -736 112 ) ( 2008 -736 128 ) ( 2088 -736 128 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 2084 -732 128 ) ( 2084 -732 112 ) ( 2088 -736 112 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 2084 -732 112 ) ( 2084 -732 128 ) ( 2012 -732 128 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 2008 -736 128 ) ( 2008 -736 112 ) ( 2012 -732 112 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +} +// brush 1432 +{ +( 2012 -668 112 ) ( 2008 -668 112 ) ( 2008 -736 112 ) wood/wd_sr_v8 -24 0 0 1 1 134217728 0 0 +( 2008 -736 128 ) ( 2008 -668 128 ) ( 2012 -668 128 ) wood/wd_sr_v8 -24 0 0 1 1 134217728 134217728 0 +( 2012 -732 128 ) ( 2012 -732 112 ) ( 2008 -736 112 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 2012 -732 112 ) ( 2012 -732 128 ) ( 2012 -668 128 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 2008 -664 128 ) ( 2008 -664 112 ) ( 2012 -668 112 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 2008 -664 112 ) ( 2008 -664 128 ) ( 2008 -736 128 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +} +// brush 1433 +{ +( 2088 -664 112 ) ( 2008 -664 112 ) ( 2008 -672 112 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 2008 -672 128 ) ( 2008 -664 128 ) ( 2088 -664 128 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 134217728 0 +( 2012 -668 112 ) ( 2012 -668 128 ) ( 2084 -668 128 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 2084 -668 112 ) ( 2084 -668 128 ) ( 2088 -664 128 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 2088 -664 128 ) ( 2008 -664 128 ) ( 2008 -664 112 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 2012 -668 128 ) ( 2012 -668 112 ) ( 2008 -664 112 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +} +// brush 1434 +{ +( 2176 -640 116 ) ( 1920 -640 116 ) ( 1920 -768 116 ) wood/wd_sr_v8 0 0 90 1 1 0 0 0 +( 1920 -768 124 ) ( 1920 -640 124 ) ( 2176 -640 124 ) wood/wd_sr_v8 0 0 90 1 1 0 134217728 0 +( 1984 -640 128 ) ( 1984 -640 112 ) ( 2176 -640 112 ) wood/wd_sr_v8 -24 0 90 1 1 0 0 0 +( 2088 -736 124 ) ( 2088 -672 124 ) ( 2088 -672 116 ) wood/wd_sr_v8 -24 0 90 1 1 0 0 0 +( 2016 -664 124 ) ( 2080 -664 124 ) ( 2016 -664 116 ) wood/wd_sr_v8 -24 0 90 1 1 0 0 0 +( 2008 -672 116 ) ( 2008 -656 116 ) ( 2008 -664 124 ) wood/wd_sr_v8 -24 0 90 1 1 0 0 0 +} +// brush 1435 +{ +( 2176 -640 116 ) ( 1920 -640 116 ) ( 1920 -768 116 ) wood/wd_sr_v8 0 0 90 1 1 0 0 0 +( 1920 -768 124 ) ( 1920 -640 124 ) ( 2176 -640 124 ) wood/wd_sr_v8 0 0 90 1 1 0 134217728 0 +( 1984 -640 120 ) ( 1984 -640 128 ) ( 1936 -736 128 ) wood/wd_sr_v8 -24 0 90 1 1 0 0 0 +( 2016 -736 124 ) ( 2080 -736 124 ) ( 2080 -736 116 ) wood/wd_sr_v8 -24 0 90 1 1 0 0 0 +( 1984 -640 128 ) ( 1984 -640 120 ) ( 2008 -640 120 ) wood/wd_sr_v8 -24 0 90 1 1 0 0 0 +( 2008 -640 128 ) ( 2008 -640 120 ) ( 2008 -736 120 ) wood/wd_sr_v8 -24 0 90 1 1 0 0 0 +} +// brush 1436 +{ +( 2176 -640 116 ) ( 1920 -640 116 ) ( 1920 -768 116 ) wood/wd_sr_v8 0 0 90 1 1 0 0 0 +( 1920 -768 124 ) ( 1920 -640 124 ) ( 2176 -640 124 ) wood/wd_sr_v8 0 0 90 1 1 0 134217728 0 +( 2176 -768 128 ) ( 2176 -640 128 ) ( 2176 -640 112 ) wood/wd_sr_v8 0 0 90 1 1 0 0 0 +( 1984 -640 128 ) ( 1984 -640 112 ) ( 2176 -640 112 ) wood/wd_sr_v8 -24 0 90 1 1 0 0 0 +( 2016 -736 124 ) ( 2080 -736 124 ) ( 2080 -736 116 ) wood/wd_sr_v8 -24 0 90 1 1 0 0 0 +( 2088 -672 124 ) ( 2088 -736 124 ) ( 2088 -672 116 ) wood/wd_sr_v8 -24 0 90 1 1 0 0 0 +} +// brush 1437 +{ +( 2176 -640 116 ) ( 1920 -640 116 ) ( 1920 -768 116 ) wood/wd_sr_v8 0 0 90 1 1 0 0 0 +( 1920 -768 124 ) ( 1920 -640 124 ) ( 2176 -640 124 ) wood/wd_sr_v8 0 0 90 1 1 0 134217728 0 +( 1920 -768 128 ) ( 2176 -768 128 ) ( 2176 -768 112 ) wood/wd_sr_v8 0 0 90 1 1 0 0 0 +( 2176 -768 128 ) ( 2176 -640 128 ) ( 2176 -640 112 ) wood/wd_sr_v8 0 0 90 1 1 0 0 0 +( 1984 -640 112 ) ( 1984 -640 128 ) ( 1920 -768 128 ) wood/wd_sr_v8 -24 0 90 1 1 0 0 0 +( 2080 -736 124 ) ( 2016 -736 124 ) ( 2080 -736 116 ) wood/wd_sr_v8 -24 0 90 1 1 0 0 0 +} +// brush 1438 +{ +( 2000 -640 32 ) ( 1984 -640 32 ) ( 1984 -656 32 ) wood/wd_sr_v8 -48 120 0 1 1 134217728 0 0 +( 1984 -656 116 ) ( 1984 -640 116 ) ( 2000 -640 116 ) wood/wd_sr_v8 -48 120 0 1 1 134217728 0 0 +( 1984 -656 120 ) ( 2000 -656 120 ) ( 2000 -656 104 ) wood/wd_sr_v8 -104 -8 0 1 1 134217728 0 0 +( 2000 -656 120 ) ( 2000 -640 120 ) ( 2000 -640 104 ) wood/wd_sr_v8 -24 -8 0 1 1 134217728 0 0 +( 2000 -640 120 ) ( 1984 -640 120 ) ( 1984 -640 104 ) wood/wd_sr_v8 -48 -8 0 1 1 134217728 0 0 +( 1984 -640 120 ) ( 1984 -656 120 ) ( 1984 -656 104 ) wood/wd_sr_v8 -96 -8 0 1 1 134217728 0 0 +} +// brush 1439 +{ +( 1920 -768 32 ) ( 1904 -768 32 ) ( 1904 -784 32 ) wood/wd_sr_v8 -96 -8 0 1 1 0 0 0 +( 1904 -784 116 ) ( 1904 -768 116 ) ( 1920 -768 116 ) wood/wd_sr_v8 -96 -8 0 1 1 0 0 0 +( 1904 -784 120 ) ( 1920 -784 120 ) ( 1920 -784 104 ) wood/wd_sr_v8 -24 -8 0 1 1 0 0 0 +( 1920 -784 120 ) ( 1920 -768 120 ) ( 1920 -768 104 ) wood/wd_sr_v8 104 -8 0 1 1 0 0 0 +( 1920 -768 120 ) ( 1904 -768 120 ) ( 1904 -768 104 ) wood/wd_sr_v8 -96 -8 0 1 1 0 0 0 +( 1904 -768 120 ) ( 1904 -784 120 ) ( 1904 -784 104 ) wood/wd_sr_v8 32 -8 0 1 1 0 0 0 +} +// brush 1440 +{ +( 1680 -768 32 ) ( 1664 -768 32 ) ( 1664 -784 32 ) wood/wd_sr_v8 16 -8 0 1 1 0 0 0 +( 1664 -784 116 ) ( 1664 -768 116 ) ( 1680 -768 116 ) wood/wd_sr_v8 16 -8 0 1 1 0 0 0 +( 1664 -784 120 ) ( 1680 -784 120 ) ( 1680 -784 104 ) wood/wd_sr_v8 216 -8 0 1 1 0 0 0 +( 1680 -784 120 ) ( 1680 -768 120 ) ( 1680 -768 104 ) wood/wd_sr_v8 104 -8 0 1 1 0 0 0 +( 1680 -768 120 ) ( 1664 -768 120 ) ( 1664 -768 104 ) wood/wd_sr_v8 16 -8 0 1 1 0 0 0 +( 1664 -768 120 ) ( 1664 -784 120 ) ( 1664 -784 104 ) wood/wd_sr_v8 16 -8 0 1 1 0 0 0 +} +// brush 1441 +{ +( 1984 -632 112 ) ( 1976 -632 112 ) ( 1976 -688 112 ) wood/wd_sr_v8 -24 0 -27 1 1 134217728 0 0 +( 1976 -688 128 ) ( 1976 -632 128 ) ( 1984 -632 128 ) wood/wd_sr_v8 -24 0 -27 1 1 134217728 134217728 0 +( 1912 -760 112 ) ( 1912 -760 128 ) ( 1920 -768 128 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 1920 -768 112 ) ( 1920 -768 128 ) ( 1984 -640 128 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 1984 -640 112 ) ( 1984 -640 128 ) ( 1976 -632 128 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 1912 -760 128 ) ( 1912 -760 112 ) ( 1976 -632 112 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +} +// brush 1442 +{ +( 1920 -760 112 ) ( 1664 -760 112 ) ( 1664 -768 112 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 1664 -768 128 ) ( 1664 -760 128 ) ( 1920 -760 128 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 134217728 0 +( 1664 -768 128 ) ( 1920 -768 128 ) ( 1920 -768 112 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 1912 -760 128 ) ( 1912 -760 112 ) ( 1920 -768 112 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 1912 -760 112 ) ( 1912 -760 128 ) ( 1664 -760 128 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +( 1664 -760 128 ) ( 1664 -768 128 ) ( 1664 -768 112 ) wood/wd_sr_v8 -24 0 90 1 1 134217728 0 0 +} +// brush 1443 +{ +( 1776 -768 116 ) ( 1664 -768 116 ) ( 1664 -960 116 ) wood/wd_sr_v8 0 0 90 1 1 0 0 0 +( 1664 -960 124 ) ( 1664 -768 124 ) ( 1776 -768 124 ) wood/wd_sr_v8 0 0 90 1 1 0 134217728 0 +( 1664 -960 128 ) ( 1776 -960 128 ) ( 1776 -960 120 ) wood/wd_sr_v8 -40 0 90 1 1 0 0 0 +( 2176 -952 128 ) ( 2176 -760 128 ) ( 2176 -760 120 ) wood/wd_sr_v8 -40 0 90 1 1 0 0 0 +( 1776 -768 128 ) ( 1664 -768 128 ) ( 1664 -768 120 ) wood/wd_sr_v8 -24 0 90 1 1 0 0 0 +( 1664 -768 128 ) ( 1664 -960 128 ) ( 1664 -960 120 ) wood/wd_sr_v8 -40 0 90 1 1 0 0 0 +} +// brush 1444 +{ +( 1752 -856 272 ) ( 1672 -856 272 ) ( 1672 -872 272 ) sprites/rail_v2 0 -16 0 1 1 134217856 4096 0 +( 1672 -872 304 ) ( 1672 -856 304 ) ( 1752 -856 304 ) sprites/rail_v2 0 -16 0 1 1 134217856 4096 0 +( 1672 -872 280 ) ( 1752 -872 280 ) ( 1752 -872 272 ) sprites/rail_v2 0 16 0 1 1 134217856 4096 0 +( 2176 -880 280 ) ( 2176 -864 280 ) ( 2176 -864 272 ) sprites/rail_v2 0 16 0 1 1 134217856 4096 0 +( 1752 -856 280 ) ( 1672 -856 280 ) ( 1672 -856 272 ) sprites/rail_v2 0 16 0 1 1 134217856 4096 0 +( 1664 -856 280 ) ( 1664 -872 280 ) ( 1664 -872 272 ) sprites/rail_v2 0 16 0 1 1 134217856 4096 0 +} +// brush 1445 +{ +( 1752 -664 272 ) ( 1672 -664 272 ) ( 1672 -680 272 ) sprites/rail_v2 0 -16 0 1 1 134217856 4096 0 +( 1672 -680 304 ) ( 1672 -664 304 ) ( 1752 -664 304 ) sprites/rail_v2 0 -16 0 1 1 134217856 4096 0 +( 1672 -680 280 ) ( 1752 -680 280 ) ( 1752 -680 272 ) sprites/rail_v2 0 16 0 1 1 134217856 4096 0 +( 2176 -688 280 ) ( 2176 -672 280 ) ( 2176 -672 272 ) sprites/rail_v2 0 16 0 1 1 134217856 4096 0 +( 1752 -664 280 ) ( 1672 -664 280 ) ( 1672 -664 272 ) sprites/rail_v2 0 16 0 1 1 134217856 4096 0 +( 1664 -664 280 ) ( 1664 -680 280 ) ( 1664 -680 272 ) sprites/rail_v2 0 16 0 1 1 134217856 4096 0 +} +// brush 1446 +{ +( 1752 -472 272 ) ( 1672 -472 272 ) ( 1672 -488 272 ) sprites/rail_v2 0 -16 0 1 1 134217856 4096 0 +( 1672 -488 304 ) ( 1672 -472 304 ) ( 1752 -472 304 ) sprites/rail_v2 0 -16 0 1 1 134217856 4096 0 +( 1672 -488 280 ) ( 1752 -488 280 ) ( 1752 -488 272 ) sprites/rail_v2 0 16 0 1 1 134217856 4096 0 +( 2176 -496 280 ) ( 2176 -480 280 ) ( 2176 -480 272 ) sprites/rail_v2 0 16 0 1 1 134217856 4096 0 +( 1752 -472 280 ) ( 1672 -472 280 ) ( 1672 -472 272 ) sprites/rail_v2 0 16 0 1 1 134217856 4096 0 +( 1664 -472 280 ) ( 1664 -488 280 ) ( 1664 -488 272 ) sprites/rail_v2 0 16 0 1 1 134217856 4096 0 +} +// brush 1447 +{ +( 1752 -280 272 ) ( 1672 -280 272 ) ( 1672 -296 272 ) sprites/rail_v2 0 16 0 1 1 134217856 4096 0 +( 1672 -296 304 ) ( 1672 -280 304 ) ( 1752 -280 304 ) sprites/rail_v2 0 16 0 1 1 134217856 4096 0 +( 1672 -296 280 ) ( 1752 -296 280 ) ( 1752 -296 272 ) sprites/rail_v2 0 16 0 1 1 134217856 4096 0 +( 2176 -304 280 ) ( 2176 -288 280 ) ( 2176 -288 272 ) sprites/rail_v2 0 16 0 1 1 134217856 4096 0 +( 1752 -280 280 ) ( 1672 -280 280 ) ( 1672 -280 272 ) sprites/rail_v2 0 16 0 1 1 134217856 4096 0 +( 1664 -280 280 ) ( 1664 -296 280 ) ( 1664 -296 272 ) sprites/rail_v2 0 16 0 1 1 134217856 4096 0 +} +// brush 1448 +{ +( 2192 -960 320 ) ( 1648 -960 320 ) ( 1648 -976 320 ) metals/mt_pv_m2am 0 64 0 1 1 0 0 0 +( 1648 -976 448 ) ( 1648 -960 448 ) ( 2192 -960 448 ) metals/mt_pv_m2am 0 64 0 1 1 0 0 0 +( 1648 -976 448 ) ( 2192 -976 448 ) ( 2192 -976 320 ) metals/mt_pv_m2am 0 64 0 1 1 0 0 0 +( 2192 -976 448 ) ( 2192 -960 448 ) ( 2192 -960 320 ) metals/mt_pv_m2am 0 64 0 1 1 0 0 0 +( 2192 -960 448 ) ( 1648 -960 448 ) ( 1648 -960 320 ) metals/mt_pv_m2am 0 64 0 1 1 0 16777216 0 +( 1648 -960 448 ) ( 1648 -976 448 ) ( 1648 -976 320 ) metals/mt_pv_m2am 0 64 0 1 1 0 0 0 +} +// brush 1449 +{ +( 2192 -176 320 ) ( 1648 -176 320 ) ( 1648 -192 320 ) metals/mt_pv_m2am 0 0 0 1 1 0 0 0 +( 1648 -192 448 ) ( 1648 -176 448 ) ( 2192 -176 448 ) metals/mt_pv_m2am 0 0 0 1 1 0 0 0 +( 1648 -192 384 ) ( 2192 -192 384 ) ( 2192 -192 320 ) metals/mt_pv_m2am 0 64 0 1 1 0 16777216 0 +( 2192 -192 384 ) ( 2192 -176 384 ) ( 2192 -176 320 ) metals/mt_pv_m2am 0 64 0 1 1 0 0 0 +( 2192 -176 384 ) ( 1648 -176 384 ) ( 1648 -176 320 ) metals/mt_pv_m2am 0 64 0 1 1 0 0 0 +( 1648 -176 384 ) ( 1648 -192 384 ) ( 1648 -192 320 ) metals/mt_pv_m2am 0 64 0 1 1 0 0 0 +} +// brush 1450 +{ +( 2192 -960 256 ) ( 1648 -960 256 ) ( 1648 -976 256 ) metals/mt_pv_m1cm 0 0 0 1 1 0 0 0 +( 1648 -976 320 ) ( 1648 -960 320 ) ( 2192 -960 320 ) metals/mt_pv_m1cm 0 0 0 1 1 0 0 0 +( 1648 -976 320 ) ( 2192 -976 320 ) ( 2192 -976 256 ) metals/mt_pv_m1cm 0 0 0 1 1 0 0 0 +( 2192 -976 320 ) ( 2192 -960 320 ) ( 2192 -960 256 ) metals/mt_pv_m1cm 0 0 0 1 1 0 0 0 +( 2192 -960 320 ) ( 1648 -960 320 ) ( 1648 -960 256 ) metals/mt_pv_m1cm 0 0 0 1 1 0 0 0 +( 1648 -960 320 ) ( 1648 -976 320 ) ( 1648 -976 256 ) metals/mt_pv_m1cm 0 0 0 1 1 0 0 0 +} +// brush 1451 +{ +( 2192 -176 256 ) ( 1648 -176 256 ) ( 1648 -192 256 ) metals/mt_pv_m1cm 0 0 0 1 1 0 0 0 +( 1648 -192 320 ) ( 1648 -176 320 ) ( 2192 -176 320 ) metals/mt_pv_m1cm 0 0 0 1 1 0 0 0 +( 1648 -192 320 ) ( 2192 -192 320 ) ( 2192 -192 256 ) metals/mt_pv_m1cm 0 0 0 1 1 0 0 0 +( 2192 -192 320 ) ( 2192 -176 320 ) ( 2192 -176 256 ) metals/mt_pv_m1cm 0 0 0 1 1 0 0 0 +( 2192 -176 320 ) ( 1648 -176 320 ) ( 1648 -176 256 ) metals/mt_pv_m1cm 0 0 0 1 1 0 0 0 +( 1648 -176 320 ) ( 1648 -192 320 ) ( 1648 -192 256 ) metals/mt_pv_m1cm 0 0 0 1 1 0 0 0 +} +// brush 1452 +{ +( 1664 -320 256 ) ( 1648 -320 256 ) ( 1648 -960 256 ) metals/mt_pv_m1cm 0 0 0 1 1 0 0 0 +( 1648 -960 320 ) ( 1648 -320 320 ) ( 1664 -320 320 ) metals/mt_pv_m1cm 0 0 0 1 1 0 0 0 +( 1648 -960 320 ) ( 1664 -960 320 ) ( 1664 -960 256 ) metals/mt_pv_m1cm 0 0 0 1 1 0 0 0 +( 1664 -832 320 ) ( 1664 -192 320 ) ( 1664 -192 256 ) metals/mt_pv_m1cm 0 0 0 1 1 0 0 0 +( 1664 -192 320 ) ( 1648 -192 320 ) ( 1648 -192 256 ) metals/mt_pv_m1cm 0 0 0 1 1 0 0 0 +( 1648 -320 320 ) ( 1648 -960 320 ) ( 1648 -960 256 ) metals/mt_pv_m1cm 0 0 0 1 1 0 0 0 +} +// brush 1453 +{ +( 2192 -320 256 ) ( 2176 -320 256 ) ( 2176 -960 256 ) metals/mt_pv_m7bm 0 0 0 1 1 0 0 0 +( 2176 -960 320 ) ( 2176 -320 320 ) ( 2192 -320 320 ) metals/mt_pv_m7bm 0 0 0 1 1 0 0 0 +( 2176 -960 392 ) ( 2192 -960 392 ) ( 2192 -960 248 ) metals/mt_pv_m7bm 0 0 0 1 1 0 0 0 +( 2192 -960 392 ) ( 2192 -320 392 ) ( 2192 -320 248 ) metals/mt_pv_m7bm 0 0 0 1 1 0 0 0 +( 2192 -192 392 ) ( 2176 -192 392 ) ( 2176 -192 248 ) metals/mt_pv_m7bm 0 0 0 1 1 0 0 0 +( 2176 -192 392 ) ( 2176 -832 392 ) ( 2176 -832 248 ) metals/mt_pv_m1cm 0 0 0 1 1 0 0 0 +} +// brush 1454 +{ +( 1664 -320 320 ) ( 1664 -960 320 ) ( 1904 -960 448 ) metals/mt_pv_m2am 0 0 90 1 1 0 16777216 0 +( 1904 -320 456 ) ( 1904 -960 456 ) ( 1664 -960 456 ) metals/mt_pv_m2am 0 0 90 1 1 0 0 0 +( 1904 -192 456 ) ( 1664 -192 456 ) ( 1664 -192 448 ) metals/mt_pv_m2am 0 0 90 1 1 0 0 0 +( 1664 -960 320 ) ( 1664 -320 320 ) ( 1664 -320 456 ) metals/mt_pv_m2am 0 0 90 1 1 0 0 0 +( 1664 -960 456 ) ( 1904 -960 456 ) ( 1904 -960 448 ) metals/mt_pv_m2am 0 0 90 1 1 0 0 0 +( 1904 -832 456 ) ( 1904 -192 456 ) ( 1904 -192 448 ) metals/mt_pv_m2am 0 0 90 1 1 0 0 0 +} +// brush 1455 +{ +( 2176 -832 320 ) ( 2176 -192 320 ) ( 1936 -192 448 ) metals/mt_pv_m2am 0 0 90 1 1 0 16777216 0 +( 1936 -960 456 ) ( 1936 -320 456 ) ( 2176 -320 456 ) metals/mt_pv_m2am 0 0 90 1 1 0 0 0 +( 1936 -960 456 ) ( 2176 -960 456 ) ( 2176 -960 448 ) metals/mt_pv_m2am 0 0 90 1 1 0 0 0 +( 2176 -320 320 ) ( 2176 -960 320 ) ( 2176 -960 456 ) metals/mt_pv_m2am 0 0 90 1 1 0 0 0 +( 2176 -192 456 ) ( 1936 -192 456 ) ( 1936 -192 448 ) metals/mt_pv_m2am 0 0 90 1 1 0 0 0 +( 1936 -320 456 ) ( 1936 -960 456 ) ( 1936 -960 448 ) metals/mt_pv_m2am 0 0 90 1 1 0 0 0 +} +// brush 1456 +{ +( 1952 -320 448 ) ( 1888 -320 448 ) ( 1888 -400 448 ) metals/mt_pv_m10am 0 0 90 1 1 0 16777216 0 +( 1888 -400 456 ) ( 1888 -320 456 ) ( 1952 -320 456 ) metals/mt_pv_m10am 0 0 90 1 1 0 0 0 +( 1880 -960 456 ) ( 1944 -960 456 ) ( 1944 -960 320 ) metals/mt_pv_m10am -64 0 90 1 1 0 0 0 +( 1936 -400 456 ) ( 1936 -320 456 ) ( 1936 -320 320 ) metals/mt_pv_m10am -64 0 90 1 1 0 0 0 +( 1952 -192 456 ) ( 1888 -192 456 ) ( 1888 -192 320 ) metals/mt_pv_m10am -64 0 90 1 1 0 0 0 +( 1904 -192 456 ) ( 1904 -272 456 ) ( 1904 -272 320 ) metals/mt_pv_m10am -64 0 90 1 1 0 0 0 +} +// brush 1457 +{ +( 1664 -48 80 ) ( 1648 -48 80 ) ( 1648 -496 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -496 256 ) ( 1648 -48 256 ) ( 1664 -48 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -496 224 ) ( 1664 -496 224 ) ( 1664 -496 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1664 -368 224 ) ( 1664 80 224 ) ( 1664 80 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -48 224 ) ( 1648 -496 224 ) ( 1648 -496 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1632 -192 128 ) ( 1688 -192 128 ) ( 1660 -192 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1458 +{ +( 1664 -48 32 ) ( 1648 -48 32 ) ( 1648 -496 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1648 -496 80 ) ( 1648 -48 80 ) ( 1664 -48 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1648 -496 128 ) ( 1664 -496 128 ) ( 1664 -496 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1664 -368 128 ) ( 1664 80 128 ) ( 1664 80 32 ) bricks/c_pv_m2 64 31 0 1 1 0 0 0 +( 1648 -48 128 ) ( 1648 -496 128 ) ( 1648 -496 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1632 -192 32 ) ( 1688 -192 32 ) ( 1660 -192 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1459 +{ +( 2192 -64 80 ) ( 2176 -64 80 ) ( 2176 -976 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2176 -976 256 ) ( 2176 -64 256 ) ( 2192 -64 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2176 -976 224 ) ( 2192 -976 224 ) ( 2192 -976 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2192 -976 224 ) ( 2192 -64 224 ) ( 2192 -64 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2176 64 256 ) ( 2176 -848 256 ) ( 2176 -848 160 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2176 -192 128 ) ( 2192 -192 128 ) ( 2184 -192 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1460 +{ +( 2112 -128 0 ) ( 1728 -128 0 ) ( 1728 -896 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1728 -896 32 ) ( 1728 -128 32 ) ( 2112 -128 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1728 -896 32 ) ( 2112 -896 32 ) ( 2112 -896 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 2112 -896 32 ) ( 2112 -128 32 ) ( 2112 -128 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 2104 -256 32 ) ( 1720 -256 32 ) ( 1720 -256 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1728 -128 32 ) ( 1728 -896 32 ) ( 1728 -896 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +} +// brush 1461 +{ +( 2168 -128 0 ) ( 2104 -128 0 ) ( 2104 -896 0 ) bricks/c_sr_m8e 0 0 270 1 1 0 0 0 +( 2104 -896 32 ) ( 2104 -128 32 ) ( 2168 -128 32 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 2176 -960 32 ) ( 2176 -960 0 ) ( 2112 -896 0 ) bricks/c_sr_m8e 0 0 270 1 1 0 0 0 +( 2176 64 32 ) ( 2176 64 0 ) ( 2176 -832 0 ) bricks/c_sr_m8e 0 0 270 1 1 0 0 0 +( 2192 -176 0 ) ( 2192 -176 32 ) ( 2128 -240 32 ) bricks/c_sr_m8e 0 0 270 1 1 0 0 0 +( 2112 -128 32 ) ( 2112 -896 32 ) ( 2112 -896 0 ) bricks/c_sr_m8e 0 0 270 1 1 0 0 0 +} +// brush 1462 +{ +( 2112 -896 0 ) ( 1728 -896 0 ) ( 1728 -960 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1728 -960 32 ) ( 1728 -896 32 ) ( 2112 -896 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1664 -960 0 ) ( 1664 -960 32 ) ( 2176 -960 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 2176 -960 0 ) ( 2176 -960 32 ) ( 2112 -896 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 2112 -896 32 ) ( 1728 -896 32 ) ( 1728 -896 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1664 -960 32 ) ( 1664 -960 0 ) ( 1728 -896 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +} +// brush 1463 +{ +( 1728 -320 0 ) ( 1664 -320 0 ) ( 1664 -512 0 ) bricks/c_sr_m8e 0 0 270 1 1 0 0 0 +( 1664 -512 32 ) ( 1664 -320 32 ) ( 1728 -320 32 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1728 -576 32 ) ( 1728 -576 0 ) ( 1664 -512 0 ) bricks/c_sr_m8e 0 0 270 1 1 0 0 0 +( 1728 -576 0 ) ( 1728 -576 32 ) ( 1728 -320 32 ) bricks/c_sr_m8e 0 0 270 1 1 0 0 0 +( 1664 -192 32 ) ( 1664 -192 0 ) ( 1728 -256 0 ) bricks/c_sr_m8e 0 0 270 1 1 0 0 0 +( 1664 64 0 ) ( 1664 64 32 ) ( 1664 -384 32 ) bricks/c_sr_m8e 0 0 270 1 1 0 0 0 +} +// brush 1464 +{ +( 1728 -576 0 ) ( 1664 -576 0 ) ( 1664 -640 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1664 -640 32 ) ( 1664 -576 32 ) ( 1728 -576 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1664 -640 32 ) ( 1728 -640 32 ) ( 1728 -640 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1728 -640 32 ) ( 1728 -576 32 ) ( 1728 -576 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1728 -576 32 ) ( 1664 -576 32 ) ( 1664 -576 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 1664 -576 32 ) ( 1664 -640 32 ) ( 1664 -640 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +} +// brush 1465 +{ +( 1728 -720 0 ) ( 1664 -720 0 ) ( 1664 -960 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1664 -960 32 ) ( 1664 -720 32 ) ( 1728 -720 32 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 1728 -896 32 ) ( 1728 -896 0 ) ( 1664 -960 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1728 -896 0 ) ( 1728 -896 32 ) ( 1728 -640 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1664 -704 32 ) ( 1664 -704 0 ) ( 1728 -640 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +( 1664 -704 0 ) ( 1664 -704 32 ) ( 1664 -960 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 0 0 +} +// brush 1466 +{ +( 1664 -720 80 ) ( 1648 -720 80 ) ( 1648 -960 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -960 256 ) ( 1648 -720 256 ) ( 1664 -720 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -960 224 ) ( 1664 -960 224 ) ( 1664 -960 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1664 -960 224 ) ( 1664 -720 224 ) ( 1664 -720 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1664 -720 224 ) ( 1648 -720 224 ) ( 1648 -720 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -720 224 ) ( 1648 -960 224 ) ( 1648 -960 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1467 +{ +( 2176 -960 80 ) ( 1648 -960 80 ) ( 1648 -976 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -976 256 ) ( 1648 -960 256 ) ( 2176 -960 256 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -976 224 ) ( 2176 -976 224 ) ( 2176 -976 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2176 -976 256 ) ( 2176 -960 256 ) ( 2176 -960 160 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 2176 -960 224 ) ( 1648 -960 224 ) ( 1648 -960 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1648 -960 224 ) ( 1648 -976 224 ) ( 1648 -976 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1468 +{ +( 1616 -544 160 ) ( 1600 -544 160 ) ( 1600 -672 160 ) bricks/b_mf_v5 0 0 90 1 1 0 0 0 +( 1600 -672 256 ) ( 1600 -544 256 ) ( 1616 -544 256 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +( 1648 -672 224 ) ( 1664 -672 224 ) ( 1664 -672 128 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +( 1664 -672 224 ) ( 1664 -544 224 ) ( 1664 -544 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1664 -544 224 ) ( 1648 -544 224 ) ( 1648 -544 128 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +( 1600 -544 224 ) ( 1600 -672 224 ) ( 1600 -672 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1469 +{ +( 1408 -496 64 ) ( 1376 -496 64 ) ( 1376 -512 64 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1376 -512 80 ) ( 1376 -496 80 ) ( 1408 -496 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1376 -512 128 ) ( 1408 -512 128 ) ( 1408 -512 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1408 -512 80 ) ( 1408 -496 80 ) ( 1408 -496 -16 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1408 -496 128 ) ( 1376 -496 128 ) ( 1376 -496 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1376 -496 128 ) ( 1376 -512 128 ) ( 1376 -512 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1470 +{ +( 1088 -496 32 ) ( 976 -496 32 ) ( 976 -512 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 976 -512 80 ) ( 976 -496 80 ) ( 1088 -496 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1296 -512 128 ) ( 1408 -512 128 ) ( 1408 -512 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1088 -496 128 ) ( 976 -496 128 ) ( 976 -496 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1600 -504 32 ) ( 1600 -520 32 ) ( 1600 -512 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1408 -512 -16 ) ( 1408 -496 -16 ) ( 1408 -504 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1471 +{ +( 1088 -496 32 ) ( 976 -496 32 ) ( 976 -512 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 976 -512 64 ) ( 976 -496 64 ) ( 1088 -496 64 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1296 -512 128 ) ( 1408 -512 128 ) ( 1408 -512 32 ) metals/mt_pv_m11m 0 0 0 0.500000 0.500000 0 8389632 0 +( 1088 -496 128 ) ( 976 -496 128 ) ( 976 -496 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1376 -512 32 ) ( 1376 -496 32 ) ( 1376 -504 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1408 -496 32 ) ( 1408 -512 32 ) ( 1408 -504 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1472 +{ +( 1088 -496 32 ) ( 976 -496 32 ) ( 976 -512 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 976 -512 80 ) ( 976 -496 80 ) ( 1088 -496 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1296 -512 128 ) ( 1408 -512 128 ) ( 1408 -512 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 1088 -496 128 ) ( 976 -496 128 ) ( 976 -496 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 976 -504 80 ) ( 976 -520 80 ) ( 976 -520 -16 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1376 -496 32 ) ( 1376 -512 32 ) ( 1376 -504 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1473 +{ +( 960 -704 64 ) ( 928 -704 64 ) ( 928 -720 64 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 928 -720 80 ) ( 928 -704 80 ) ( 960 -704 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 928 -720 128 ) ( 960 -720 128 ) ( 960 -720 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 960 -720 80 ) ( 960 -704 80 ) ( 960 -704 -16 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 960 -704 128 ) ( 928 -704 128 ) ( 928 -704 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 928 -704 80 ) ( 928 -720 80 ) ( 928 -720 -16 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1474 +{ +( 1088 -704 32 ) ( 736 -704 32 ) ( 736 -720 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 736 -720 80 ) ( 736 -704 80 ) ( 1088 -704 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 736 -720 128 ) ( 1088 -720 128 ) ( 1088 -720 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1600 -720 128 ) ( 1600 -704 128 ) ( 1600 -704 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1408 -704 128 ) ( 1056 -704 128 ) ( 1056 -704 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 960 -720 -16 ) ( 960 -704 -16 ) ( 960 -712 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1475 +{ +( 1088 -704 32 ) ( 736 -704 32 ) ( 736 -720 32 ) metals/mt_pv_m11m 0 0 0 0.500000 0.500000 0 0 0 +( 736 -720 64 ) ( 736 -704 64 ) ( 1088 -704 64 ) metals/mt_pv_m11m 0 0 0 0.500000 0.500000 0 0 0 +( 736 -720 128 ) ( 1088 -720 128 ) ( 1088 -720 32 ) metals/mt_pv_m11m 0 0 0 0.500000 0.500000 0 0 0 +( 1408 -704 128 ) ( 1056 -704 128 ) ( 1056 -704 32 ) metals/mt_pv_m11m 0 0 0 0.500000 0.500000 0 8389632 0 +( 928 -720 32 ) ( 928 -704 32 ) ( 928 -712 128 ) metals/mt_pv_m11m 0 0 0 0.500000 0.500000 0 0 0 +( 960 -704 32 ) ( 960 -720 32 ) ( 960 -712 128 ) metals/mt_pv_m11m 0 0 0 0.500000 0.500000 0 0 0 +} +// brush 1476 +{ +( 1088 -704 32 ) ( 736 -704 32 ) ( 736 -720 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 736 -720 80 ) ( 736 -704 80 ) ( 1088 -704 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 736 -720 128 ) ( 1088 -720 128 ) ( 1088 -720 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 1408 -704 128 ) ( 1056 -704 128 ) ( 1056 -704 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 736 -720 32 ) ( 736 -704 32 ) ( 736 -712 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 928 -704 -16 ) ( 928 -720 -16 ) ( 928 -712 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1477 +{ +( 1088 -512 0 ) ( 768 -512 0 ) ( 768 -704 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 768 -704 32 ) ( 768 -512 32 ) ( 1088 -512 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1088 -576 0 ) ( 1128 -576 0 ) ( 1108 -576 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1600 -640 0 ) ( 1528 -640 0 ) ( 1564 -640 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 896 -608 0 ) ( 896 -576 0 ) ( 896 -592 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1600 -560 0 ) ( 1600 -576 0 ) ( 1600 -568 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +} +// brush 1478 +{ +( 1088 -512 224 ) ( 768 -512 224 ) ( 768 -704 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 768 -704 232 ) ( 768 -512 232 ) ( 1088 -512 232 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 1280 -704 256 ) ( 1600 -704 256 ) ( 1600 -704 224 ) floors/fl_pv_m13 0 32 0 1 1 0 0 0 +( 1600 -704 256 ) ( 1600 -512 256 ) ( 1600 -512 224 ) floors/fl_pv_m13 0 32 0 1 1 0 0 0 +( 1600 -512 256 ) ( 1280 -512 256 ) ( 1280 -512 224 ) floors/fl_pv_m13 0 32 0 1 1 0 0 0 +( 768 -528 224 ) ( 768 -512 224 ) ( 768 -520 232 ) floors/fl_pv_m13 0 32 0 1 1 0 0 0 +} +// brush 1479 +{ +( 781 -527 32 ) ( 775 -532 32 ) ( 815 -577 32 ) wood/wd_sr_m3a 108 1 41 0.999972 1.000294 134217728 0 0 +( 815 -577 34 ) ( 775 -532 34 ) ( 781 -527 34 ) wood/wd_sr_m3a 108 1 41 0.999972 1.000294 134217728 0 0 +( 815 -577 36 ) ( 821 -572 36 ) ( 821 -572 32 ) wood/wd_sr_m3a 0 0 0 0.743103 1 134217728 0 0 +( 821 -572 36 ) ( 781 -527 36 ) ( 781 -527 32 ) wood/wd_sr_m3a 49 0 0 0.743347 1 134217728 0 0 +( 781 -527 36 ) ( 775 -532 36 ) ( 775 -532 32 ) wood/wd_sr_m3a 53 0 0 0.743286 1 134217728 0 0 +( 775 -532 36 ) ( 815 -577 36 ) ( 815 -577 32 ) wood/wd_sr_m3a 56 0 0 0.743195 1 134217728 0 0 +} +// brush 1480 +{ +( 786 -624 33 ) ( 786 -608 33 ) ( 782 -608 32 ) wood/wd_sr_m3a 5 -8 0 1.025513 1 134217728 0 0 +( 768 -624 159 ) ( 768 -608 159 ) ( 777 -608 160 ) wood/wd_sr_m3a -2 -8 0 0.996826 1 134217728 0 0 +( 778 -616 64 ) ( 787 -616 65 ) ( 790 -616 33 ) wood/wd_sr_m3a -12 46 6 0.999925 1.000026 134217728 0 0 +( 786 -608 33 ) ( 786 -624 33 ) ( 772 -624 160 ) wood/wd_sr_m3a 8 0 0 1 0.995132 134217728 0 0 +( 787 -608 65 ) ( 778 -608 64 ) ( 782 -608 32 ) wood/wd_sr_m3a -12 46 6 0.999925 1.000026 134217728 0 0 +( 782 -624 32 ) ( 782 -608 32 ) ( 768 -608 159 ) wood/wd_sr_m3a 8 0 0 1 0.995132 134217728 0 0 +} +// brush 1481 +{ +( 816 -640 34 ) ( 816 -624 34 ) ( 812 -624 32 ) wood/wd_sr_m3a -96 -24 0 0.939697 1 134217728 0 0 +( 768 -640 152 ) ( 768 -624 152 ) ( 776 -624 155 ) wood/wd_sr_m3a -49 -24 0 0.939575 1 134217728 0 0 +( 801 -640 62 ) ( 809 -640 65 ) ( 820 -640 35 ) wood/wd_sr_m3a -6 -23 20 1.000006 1.000005 134217728 0 0 +( 816 -624 34 ) ( 816 -640 34 ) ( 772 -640 154 ) wood/wd_sr_m3a 24 3 0 1 0.939682 134217728 0 0 +( 809 -624 65 ) ( 801 -624 62 ) ( 812 -624 32 ) wood/wd_sr_m3a -6 -23 20 1.000006 1.000005 134217728 0 0 +( 812 -640 32 ) ( 812 -624 32 ) ( 768 -624 152 ) wood/wd_sr_m3a 24 2 0 1 0.939697 134217728 0 0 +} +// brush 1482 +{ +( 832 -640 32 ) ( 768 -640 32 ) ( 768 -704 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 768 -704 96 ) ( 768 -640 96 ) ( 832 -640 96 ) props/box_sr_m11 0 64 0 1 1 0 134217728 0 +( 768 -704 64 ) ( 832 -704 64 ) ( 832 -704 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 832 -704 64 ) ( 832 -640 64 ) ( 832 -640 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 832 -640 64 ) ( 768 -640 64 ) ( 768 -640 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +( 768 -640 64 ) ( 768 -704 64 ) ( 768 -704 32 ) props/box_sr_m11 0 32 0 1 1 0 134217728 0 +} +// brush 1483 +{ +( 768 -128 80 ) ( 768 -112 80 ) ( 960 -112 80 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 776 -144 128 ) ( 968 -144 128 ) ( 968 -144 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 960 -112 128 ) ( 768 -112 128 ) ( 768 -112 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 768 -112 128 ) ( 768 -128 128 ) ( 768 -128 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 768 -128 32 ) ( 784 -128 32 ) ( 776 -112 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 960 -104 32 ) ( 960 -120 32 ) ( 960 -112 128 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +} +// brush 1484 +{ +( 832 -512 0 ) ( 768 -512 0 ) ( 768 -640 0 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 768 -640 32 ) ( 768 -512 32 ) ( 832 -512 32 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 768 -704 0 ) ( 768 -704 32 ) ( 832 -640 32 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 832 -640 32 ) ( 832 -512 32 ) ( 832 -512 0 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 768 -192 32 ) ( 768 -192 0 ) ( 832 -192 0 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +( 768 -192 0 ) ( 768 -192 32 ) ( 768 -704 32 ) bricks/c_sr_m8e 0 0 270 1 1 0 67108864 0 +} +// brush 1485 +{ +( 1088 -512 0 ) ( 768 -512 0 ) ( 768 -704 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 768 -704 32 ) ( 768 -512 32 ) ( 1088 -512 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 768 -704 0 ) ( 768 -704 32 ) ( 1600 -704 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 1600 -704 32 ) ( 1600 -512 32 ) ( 1600 -512 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 768 -704 32 ) ( 768 -704 0 ) ( 832 -640 0 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +( 1528 -640 0 ) ( 1600 -640 0 ) ( 1564 -640 32 ) bricks/c_sr_m8e 0 0 0 1 1 0 67108864 0 +} +// brush 1486 +{ +( 1088 -512 0 ) ( 768 -512 0 ) ( 768 -704 0 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 768 -704 32 ) ( 768 -512 32 ) ( 1088 -512 32 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1600 -704 32 ) ( 1600 -512 32 ) ( 1600 -512 0 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1152 -512 32 ) ( 1152 -512 0 ) ( 1600 -512 0 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 952 -520 0 ) ( 952 -520 32 ) ( 888 -584 32 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +( 1128 -576 0 ) ( 1088 -576 0 ) ( 1108 -576 32 ) bricks/c_sr_m8e 0 0 180 1 1 0 67108864 0 +} +// brush 1487 +{ +( 1088 -512 0 ) ( 768 -512 0 ) ( 768 -704 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 768 -704 32 ) ( 768 -512 32 ) ( 1088 -512 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1080 -640 32 ) ( 1400 -640 32 ) ( 1400 -640 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 1400 -384 32 ) ( 1080 -384 32 ) ( 1080 -384 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 832 -512 32 ) ( 832 -704 32 ) ( 832 -704 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 896 -528 0 ) ( 896 -552 0 ) ( 896 -540 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +} +// brush 1488 +{ +( 896 -192 0 ) ( 768 -192 0 ) ( 768 -448 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 768 -448 32 ) ( 768 -192 32 ) ( 896 -192 32 ) bricks/c_sr_m8e 0 -3 180 1 0.760000 0 67108864 0 +( 888 -144 32 ) ( 760 -144 32 ) ( 760 -144 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 768 -192 32 ) ( 768 -192 0 ) ( 768 -144 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 944 -192 32 ) ( 944 -192 0 ) ( 784 -192 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 960 -192 0 ) ( 960 -192 32 ) ( 960 -144 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +} +// brush 1489 +{ +( 704 -192 0 ) ( 576 -192 0 ) ( 576 -448 0 ) bricks/c_sr_m8d 64 0 0 1 1 0 0 0 +( 576 -448 32 ) ( 576 -192 32 ) ( 704 -192 32 ) bricks/c_sr_m8e 0 0 90 1 1 0 67108864 0 +( 896 -576 0 ) ( 896 -576 32 ) ( 960 -512 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 960 -192 32 ) ( 960 -192 0 ) ( 960 -512 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 960 -192 0 ) ( 960 -192 32 ) ( 896 -192 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +( 896 -576 32 ) ( 896 -576 0 ) ( 896 -192 0 ) bricks/c_sr_m8d 0 0 0 1 1 0 0 0 +} +// brush 1490 +{ +( 896 -192 0 ) ( 768 -192 0 ) ( 768 -448 0 ) metals/mt_pv_v4b 0 0 0 1 1 0 0 0 +( 768 -448 32 ) ( 768 -192 32 ) ( 896 -192 32 ) bricks/c_sr_m8d 0 0 0 1 1 0 67108864 0 +( 744 -384 32 ) ( 872 -384 32 ) ( 872 -384 0 ) metals/mt_pv_v4b 0 0 0 1 1 0 0 0 +( 832 -192 32 ) ( 832 -448 32 ) ( 832 -448 0 ) metals/mt_pv_v4b 0 0 0 1 1 0 0 0 +( 768 -192 0 ) ( 1088 -192 0 ) ( 928 -192 32 ) metals/mt_pv_v4b 0 0 0 1 1 0 0 0 +( 896 -200 0 ) ( 896 -232 0 ) ( 896 -216 32 ) metals/mt_pv_v4b 0 0 0 1 1 0 0 0 +} +// brush 1491 +{ +( 976 -112 32 ) ( 960 -112 32 ) ( 960 -448 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 960 -448 80 ) ( 960 -112 80 ) ( 976 -112 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 952 -512 128 ) ( 968 -512 128 ) ( 968 -512 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 976 -448 80 ) ( 976 -112 80 ) ( 976 -112 -16 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 960 -112 128 ) ( 960 -448 128 ) ( 960 -448 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 960 -112 32 ) ( 976 -112 32 ) ( 968 -112 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1492 +{ +( 960 -128 224 ) ( 768 -128 224 ) ( 768 -512 224 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 768 -512 232 ) ( 768 -128 232 ) ( 960 -128 232 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 768 -512 232 ) ( 960 -512 232 ) ( 960 -512 224 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 960 -504 232 ) ( 960 -120 232 ) ( 960 -120 224 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 960 -136 232 ) ( 768 -136 232 ) ( 768 -136 224 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +( 768 -128 232 ) ( 768 -512 232 ) ( 768 -512 224 ) floors/fl_pv_m13 0 0 0 1 1 0 0 0 +} +// brush 1493 +{ +( 1088 -488 80 ) ( 976 -488 80 ) ( 976 -512 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 976 -512 224 ) ( 976 -488 224 ) ( 1088 -488 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1488 -512 224 ) ( 1600 -512 224 ) ( 1600 -512 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1600 -512 224 ) ( 1600 -488 224 ) ( 1600 -488 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1088 -496 224 ) ( 976 -496 224 ) ( 976 -496 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 976 -496 176 ) ( 976 -520 176 ) ( 976 -520 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1494 +{ +( 1088 -704 80 ) ( 736 -704 80 ) ( 736 -720 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 736 -720 224 ) ( 736 -704 224 ) ( 1088 -704 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 736 -720 224 ) ( 1088 -720 224 ) ( 1088 -720 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1600 -720 224 ) ( 1600 -704 224 ) ( 1600 -704 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 1600 -704 224 ) ( 1248 -704 224 ) ( 1248 -704 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 736 -704 224 ) ( 736 -720 224 ) ( 736 -720 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1495 +{ +( 976 -112 80 ) ( 960 -112 80 ) ( 960 -448 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 960 -448 224 ) ( 960 -112 224 ) ( 976 -112 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 960 -512 224 ) ( 976 -512 224 ) ( 976 -512 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 976 -448 176 ) ( 976 -112 176 ) ( 976 -112 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 976 -112 224 ) ( 960 -112 224 ) ( 960 -112 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 960 -112 224 ) ( 960 -448 224 ) ( 960 -448 128 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1496 +{ +( 704 -256 224 ) ( 704 256 224 ) ( 720 256 224 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +( 704 -256 224 ) ( 720 -256 224 ) ( 720 -256 96 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +( 696 0 32 ) ( 720 0 32 ) ( 708 0 224 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +( 720 -256 128 ) ( 720 -248 128 ) ( 720 -252 224 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +( 736 -240 128 ) ( 736 -256 128 ) ( 736 -248 224 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +( 672 -256 160 ) ( 712 -256 160 ) ( 692 0 160 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +} +// brush 1497 +{ +( 704 -256 224 ) ( 704 256 224 ) ( 720 256 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 704 -256 224 ) ( 720 -256 224 ) ( 720 -256 96 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 768 -256 224 ) ( 768 256 224 ) ( 768 256 96 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 696 0 32 ) ( 720 0 32 ) ( 708 0 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 672 -256 80 ) ( 712 -256 80 ) ( 692 0 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 736 -256 128 ) ( 736 -240 128 ) ( 736 -248 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1498 +{ +( 704 -256 224 ) ( 704 256 224 ) ( 720 256 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 704 -256 224 ) ( 720 -256 224 ) ( 720 -256 96 ) bricks/b_mf_v2 12 94 0 1 1 0 0 0 +( 704 256 224 ) ( 704 -256 224 ) ( 704 -256 96 ) bricks/b_mf_v2 0 94 0 1 1 0 0 0 +( 696 0 32 ) ( 720 0 32 ) ( 708 0 224 ) bricks/b_mf_v2 -16 94 0 1 1 0 0 0 +( 672 -256 80 ) ( 712 -256 80 ) ( 692 0 80 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 720 -248 128 ) ( 720 -256 128 ) ( 720 -252 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1499 +{ +( 720 256 32 ) ( 704 256 32 ) ( 704 -256 32 ) metals/mt_pv_m16k 0 0 0 1 1 0 8390656 0 +( 704 -256 224 ) ( 720 -256 224 ) ( 720 -256 96 ) metals/mt_pv_m16k 0 0 0 1 1 0 8390656 0 +( 688 0 32 ) ( 712 0 32 ) ( 700 0 224 ) metals/mt_pv_m16k 0 0 0 1 1 0 8390656 0 +( 712 -256 160 ) ( 672 -256 160 ) ( 692 0 160 ) metals/mt_pv_m16k 0 0 0 1 1 0 8390656 0 +( 720 -256 32 ) ( 720 -248 32 ) ( 720 -252 128 ) metals/mt_pv_m16k 0 0 0 1 1 0 8390656 0 +( 736 -248 32 ) ( 736 -256 32 ) ( 736 -252 128 ) metals/mt_pv_m16k 0 0 0 1 1 0 8390656 0 +} +// brush 1500 +{ +( 720 256 32 ) ( 704 256 32 ) ( 704 -256 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 704 -256 224 ) ( 720 -256 224 ) ( 720 -256 96 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 768 -256 224 ) ( 768 256 224 ) ( 768 256 96 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 696 0 32 ) ( 720 0 32 ) ( 708 0 224 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 712 -256 80 ) ( 672 -256 80 ) ( 692 0 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 736 -256 32 ) ( 736 -248 32 ) ( 736 -252 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1501 +{ +( 720 256 32 ) ( 704 256 32 ) ( 704 -256 32 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 704 -256 224 ) ( 720 -256 224 ) ( 720 -256 96 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 704 256 224 ) ( 704 -256 224 ) ( 704 -256 96 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 696 0 32 ) ( 720 0 32 ) ( 708 0 224 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 712 -256 80 ) ( 672 -256 80 ) ( 692 0 80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 720 -248 32 ) ( 720 -256 32 ) ( 720 -252 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1502 +{ +( 720 -512 224 ) ( 744 -512 224 ) ( 744 -512 32 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +( 720 -384 224 ) ( 720 -512 224 ) ( 720 -512 32 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +( 704 -512 128 ) ( 800 -512 128 ) ( 752 -384 128 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +( 736 -384 128 ) ( 736 -392 128 ) ( 736 -388 224 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +( 720 -424 160 ) ( 720 -384 160 ) ( 744 -384 160 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +( 744 -488 128 ) ( 720 -488 128 ) ( 744 -488 32 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +} +// brush 1503 +{ +( 720 -512 224 ) ( 720 -384 224 ) ( 744 -384 224 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +( 720 -512 224 ) ( 744 -512 224 ) ( 744 -512 32 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +( 744 -384 224 ) ( 720 -384 224 ) ( 720 -384 32 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +( 720 -384 224 ) ( 720 -512 224 ) ( 720 -512 32 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +( 736 -384 128 ) ( 736 -392 128 ) ( 736 -388 224 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +( 720 -384 160 ) ( 720 -424 160 ) ( 744 -384 160 ) bricks/b_mf_v2 -96 -32 0 1 1 0 0 0 +} +// brush 1504 +{ +( 720 -512 224 ) ( 720 -384 224 ) ( 744 -384 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 712 -704 224 ) ( 736 -704 224 ) ( 736 -704 32 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 768 -512 224 ) ( 768 -384 224 ) ( 768 -384 32 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 744 -384 224 ) ( 720 -384 224 ) ( 720 -384 32 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 704 -512 80 ) ( 800 -512 80 ) ( 752 -384 80 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 736 -392 128 ) ( 736 -384 128 ) ( 736 -388 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +} +// brush 1505 +{ +( 744 -384 32 ) ( 720 -384 32 ) ( 720 -424 32 ) metals/mt_pv_m16k 0 0 0 1 1 0 8390656 0 +( 720 -424 160 ) ( 720 -384 160 ) ( 744 -384 160 ) metals/mt_pv_m16k 0 0 0 1 1 0 8390656 0 +( 720 -488 128 ) ( 744 -488 128 ) ( 744 -488 32 ) metals/mt_pv_m16k 0 0 0 1 1 0 8390656 0 +( 736 -424 128 ) ( 736 -384 128 ) ( 736 -384 32 ) metals/mt_pv_m16k 0 0 0 1 1 0 8390656 0 +( 744 -384 128 ) ( 720 -384 128 ) ( 720 -384 32 ) metals/mt_pv_m16k 0 0 0 1 1 0 8390656 0 +( 720 -384 128 ) ( 720 -424 128 ) ( 720 -424 32 ) metals/mt_pv_m16k 0 0 0 1 1 0 8390656 0 +} +// brush 1506 +{ +( 744 -336 156 ) ( 736 -336 156 ) ( 736 -380 156 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 736 -380 160 ) ( 736 -336 160 ) ( 744 -336 160 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 736 -380 160 ) ( 744 -380 160 ) ( 744 -380 32 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 740 -380 160 ) ( 740 -336 160 ) ( 740 -336 32 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 744 -260 160 ) ( 736 -260 160 ) ( 736 -260 32 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 736 -336 160 ) ( 736 -380 160 ) ( 736 -380 32 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +} +// brush 1507 +{ +( 720 -336 156 ) ( 712 -336 156 ) ( 712 -380 156 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 712 -380 160 ) ( 712 -336 160 ) ( 720 -336 160 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 712 -380 160 ) ( 720 -380 160 ) ( 720 -380 32 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 720 -380 160 ) ( 720 -336 160 ) ( 720 -336 32 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 720 -260 160 ) ( 712 -260 160 ) ( 712 -260 32 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 716 -336 160 ) ( 716 -380 160 ) ( 716 -380 32 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 1508 +{ +( 720 -380 32 ) ( 712 -380 32 ) ( 712 -384 32 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 712 -384 160 ) ( 712 -380 160 ) ( 720 -380 160 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 712 -384 64 ) ( 720 -384 64 ) ( 720 -384 0 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 720 -384 64 ) ( 720 -380 64 ) ( 720 -380 0 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 720 -380 64 ) ( 712 -380 64 ) ( 712 -380 0 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 716 -380 64 ) ( 716 -384 64 ) ( 716 -384 0 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 1509 +{ +( 744 -380 32 ) ( 736 -380 32 ) ( 736 -384 32 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 736 -384 160 ) ( 736 -380 160 ) ( 744 -380 160 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 736 -384 64 ) ( 744 -384 64 ) ( 744 -384 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 740 -384 64 ) ( 740 -380 64 ) ( 740 -380 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 744 -380 64 ) ( 736 -380 64 ) ( 736 -380 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 736 -380 64 ) ( 736 -384 64 ) ( 736 -384 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +} +// brush 1510 +{ +( 744 -256 32 ) ( 736 -256 32 ) ( 736 -260 32 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 736 -260 160 ) ( 736 -256 160 ) ( 744 -256 160 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 736 -260 64 ) ( 744 -260 64 ) ( 744 -260 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 740 -260 64 ) ( 740 -256 64 ) ( 740 -256 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 744 -256 64 ) ( 736 -256 64 ) ( 736 -256 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 736 -256 64 ) ( 736 -260 64 ) ( 736 -260 0 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +} +// brush 1511 +{ +( 720 -256 32 ) ( 712 -256 32 ) ( 712 -260 32 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 712 -260 160 ) ( 712 -256 160 ) ( 720 -256 160 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 712 -260 64 ) ( 720 -260 64 ) ( 720 -260 0 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 720 -260 64 ) ( 720 -256 64 ) ( 720 -256 0 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 720 -256 64 ) ( 712 -256 64 ) ( 712 -256 0 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 716 -256 64 ) ( 716 -260 64 ) ( 716 -260 0 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 1512 +{ +( 744 -384 32 ) ( 720 -384 32 ) ( 720 -512 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 712 -704 224 ) ( 736 -704 224 ) ( 736 -704 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 768 -512 224 ) ( 768 -384 224 ) ( 768 -384 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 744 -384 224 ) ( 720 -384 224 ) ( 720 -384 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 736 -384 224 ) ( 736 -512 224 ) ( 736 -512 32 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 800 -512 80 ) ( 704 -512 80 ) ( 752 -384 80 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 1513 +{ +( 720 256 32 ) ( 704 256 32 ) ( 704 -256 32 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 720 -256 224 ) ( 720 256 224 ) ( 720 256 96 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 720 256 224 ) ( 704 256 224 ) ( 704 256 96 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 704 256 224 ) ( 704 -256 224 ) ( 704 -256 96 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 720 128 32 ) ( 704 128 32 ) ( 712 128 224 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 712 128 80 ) ( 672 128 80 ) ( 692 256 80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1514 +{ +( 704 -256 224 ) ( 704 256 224 ) ( 720 256 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 720 -256 224 ) ( 720 256 224 ) ( 720 256 96 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 720 256 224 ) ( 704 256 224 ) ( 704 256 96 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 704 256 224 ) ( 704 -256 224 ) ( 704 -256 96 ) bricks/b_mf_v2 0 94 0 1 1 0 0 0 +( 720 128 32 ) ( 704 128 32 ) ( 712 128 224 ) bricks/b_mf_v2 52 94 0 1 1 0 0 0 +( 672 128 80 ) ( 712 128 80 ) ( 692 256 80 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1515 +{ +( 720 -384 32 ) ( 704 -384 32 ) ( 704 -512 32 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 704 -512 224 ) ( 720 -512 224 ) ( 720 -512 32 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 720 -512 224 ) ( 720 -384 224 ) ( 720 -384 32 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 720 -384 224 ) ( 704 -384 224 ) ( 704 -384 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 704 -384 224 ) ( 704 -512 224 ) ( 704 -512 32 ) bricks/c_pv_m2 0 31 0 1 1 0 0 0 +( 712 -512 80 ) ( 672 -512 80 ) ( 692 -384 80 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1516 +{ +( 704 -512 224 ) ( 704 -384 224 ) ( 720 -384 224 ) bricks/b_mf_v2a 0 96 0 1 1 0 0 0 +( 704 -512 224 ) ( 720 -512 224 ) ( 720 -512 32 ) bricks/b_mf_v2a 0 96 0 1 1 0 0 0 +( 720 -512 224 ) ( 720 -384 224 ) ( 720 -384 32 ) bricks/b_mf_v2a 0 96 0 1 1 0 0 0 +( 720 -384 224 ) ( 704 -384 224 ) ( 704 -384 32 ) bricks/b_mf_v2 8 94 0 1 1 0 0 0 +( 704 -384 224 ) ( 704 -512 224 ) ( 704 -512 32 ) bricks/b_mf_v2 0 94 0 1 1 0 0 0 +( 672 -512 80 ) ( 712 -512 80 ) ( 692 -384 80 ) bricks/b_mf_v2a 0 96 0 1 1 0 0 0 +} +// brush 1517 +{ +( 712 -256 0 ) ( 704 -256 0 ) ( 704 -384 0 ) bricks/c_sr_m2 144 -32 90 1 1 0 0 0 +( 704 -384 32 ) ( 704 -256 32 ) ( 712 -256 32 ) bricks/c_sr_m2 144 64 270 1 1 0 0 0 +( 704 -384 32 ) ( 712 -384 32 ) ( 712 -384 0 ) bricks/c_sr_m2 144 -32 90 1 1 0 0 0 +( 712 -384 32 ) ( 712 -256 32 ) ( 712 -256 0 ) bricks/c_sr_m2 144 -32 90 1 1 0 0 0 +( 712 -256 32 ) ( 704 -256 32 ) ( 704 -256 0 ) bricks/c_sr_m2 144 -32 90 1 1 0 0 0 +( 704 -256 32 ) ( 704 -384 32 ) ( 704 -384 0 ) bricks/c_sr_m2 144 -32 90 1 1 0 0 0 +} +// brush 1518 +{ +( 896 -128 0 ) ( 720 -128 0 ) ( 720 -424 0 ) bricks/c_sr_m2 144 64 90 1 1 0 0 0 +( 720 -424 32 ) ( 720 -128 32 ) ( 896 -128 32 ) bricks/c_sr_m2 144 64 270 1 1 0 0 0 +( 720 -384 32 ) ( 896 -384 32 ) ( 896 -384 0 ) bricks/c_sr_m2 144 64 90 1 1 0 0 0 +( 768 -424 32 ) ( 768 -128 32 ) ( 768 -128 0 ) bricks/c_sr_m2 144 64 90 1 1 0 0 0 +( 904 -256 32 ) ( 728 -256 32 ) ( 728 -256 0 ) bricks/c_sr_m2 144 64 90 1 1 0 0 0 +( 744 -272 0 ) ( 744 -256 0 ) ( 744 -264 32 ) bricks/c_sr_m2 144 64 90 1 1 0 0 0 +} +// brush 1519 +{ +( 896 -128 0 ) ( 720 -128 0 ) ( 720 -424 0 ) bricks/c_sr_m2 144 64 90 1 1 0 0 0 +( 720 -424 32 ) ( 720 -128 32 ) ( 896 -128 32 ) bricks/c_sr_m2 144 64 270 1 1 0 0 0 +( 720 -384 32 ) ( 896 -384 32 ) ( 896 -384 0 ) bricks/c_sr_m2 144 64 90 1 1 0 0 0 +( 904 -256 32 ) ( 728 -256 32 ) ( 728 -256 0 ) bricks/c_sr_m2 144 64 90 1 1 0 0 0 +( 736 -272 0 ) ( 736 -256 0 ) ( 736 -264 32 ) bricks/c_sr_m2 144 64 90 1 1 0 0 0 +( 744 -256 0 ) ( 744 -272 0 ) ( 744 -264 32 ) bricks/c_sr_m2 144 64 90 1 1 0 0 0 +} +// brush 1520 +{ +( 896 -128 0 ) ( 720 -128 0 ) ( 720 -424 0 ) bricks/c_sr_m2 144 64 90 1 1 0 0 0 +( 720 -424 32 ) ( 720 -128 32 ) ( 896 -128 32 ) metals/mt_pv_m16k 0 0 0 1 1 0 8390656 0 +( 720 -384 32 ) ( 896 -384 32 ) ( 896 -384 0 ) bricks/c_sr_m2 144 64 90 1 1 0 0 0 +( 904 -256 32 ) ( 728 -256 32 ) ( 728 -256 0 ) bricks/c_sr_m2 144 64 90 1 1 0 0 0 +( 720 -128 32 ) ( 720 -424 32 ) ( 720 -424 0 ) bricks/c_sr_m2 144 64 90 1 1 0 0 0 +( 736 -256 0 ) ( 736 -272 0 ) ( 736 -264 32 ) bricks/c_sr_m2 144 64 90 1 1 0 0 0 +} +// brush 1521 +{ +( 728 128 0 ) ( 704 128 0 ) ( 704 48 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 704 48 32 ) ( 704 128 32 ) ( 728 128 32 ) bricks/c_sr_m2 144 64 270 1 1 0 0 0 +( 720 48 128 ) ( 720 128 128 ) ( 720 128 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 712 128 96 ) ( 712 48 96 ) ( 712 48 -32 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 704 -256 0 ) ( 720 -256 0 ) ( 712 -256 32 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 720 -384 0 ) ( 704 -384 0 ) ( 712 -384 32 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1522 +{ +( 728 128 0 ) ( 704 128 0 ) ( 704 48 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 704 48 32 ) ( 704 128 32 ) ( 728 128 32 ) bricks/c_sr_m2 144 48 90 1 1 0 0 0 +( 696 -512 128 ) ( 720 -512 128 ) ( 720 -512 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 720 48 128 ) ( 720 128 128 ) ( 720 128 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 704 128 96 ) ( 704 48 96 ) ( 704 48 -32 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 704 -384 0 ) ( 720 -384 0 ) ( 712 -384 32 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1523 +{ +( 728 128 0 ) ( 704 128 0 ) ( 704 48 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 704 48 32 ) ( 704 128 32 ) ( 728 128 32 ) bricks/c_sr_m2 144 48 90 1 1 0 0 0 +( 720 48 128 ) ( 720 128 128 ) ( 720 128 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 720 256 128 ) ( 696 256 128 ) ( 696 256 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 704 128 96 ) ( 704 48 96 ) ( 704 48 -32 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 720 -256 0 ) ( 704 -256 0 ) ( 712 -256 32 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1524 +{ +( 686 -432 64 ) ( 624 -450 64 ) ( 642 -512 64 ) props/box_sr_m6 -28 -28 16 0.999872 0.999910 0 134217728 0 +( 642 -512 128 ) ( 624 -450 128 ) ( 686 -432 128 ) props/box_sr_m6 -28 -28 16 1 1 0 134217728 0 +( 642 -512 128 ) ( 704 -494 128 ) ( 704 -494 64 ) props/box_sr_m6 -27 0 0 0.961304 1 0 134217728 0 +( 704 -494 128 ) ( 686 -432 128 ) ( 686 -432 64 ) props/box_sr_m6 1 0 0 0.961243 1 0 134217728 0 +( 686 -432 128 ) ( 624 -450 128 ) ( 624 -450 64 ) props/box_sr_m6 -9 0 0 0.961243 1 0 134217728 0 +( 624 -450 128 ) ( 642 -512 128 ) ( 642 -512 64 ) props/box_sr_m6 20 0 0 0.961304 1 0 134217728 0 +} +// brush 1525 +{ +( 520 -442 0 ) ( 458 -424 0 ) ( 440 -486 0 ) props/box_sr_m6 18 -25 -15 0.999964 1.000040 0 134217728 0 +( 440 -486 64 ) ( 458 -424 64 ) ( 520 -442 64 ) props/box_sr_m6 25 -36 -15 1 1 0 134217728 0 +( 440 -486 64 ) ( 502 -504 64 ) ( 502 -504 0 ) props/box_sr_m6 53 0 0 0.961243 1 0 134217728 0 +( 502 -504 64 ) ( 520 -442 64 ) ( 520 -442 0 ) props/box_sr_m6 -52 0 0 0.961304 1 0 134217728 0 +( 520 -442 64 ) ( 458 -424 64 ) ( 458 -424 0 ) props/box_sr_m6 35 0 0 0.961304 1 0 134217728 0 +( 458 -424 64 ) ( 440 -486 64 ) ( 440 -486 0 ) props/box_sr_m6 -6 0 0 0.961243 1 0 134217728 0 +} +// brush 1526 +{ +( 640 -448 0 ) ( 576 -448 0 ) ( 576 -512 0 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 576 -512 64 ) ( 576 -448 64 ) ( 640 -448 64 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 576 -512 64 ) ( 640 -512 64 ) ( 640 -512 0 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 640 -512 64 ) ( 640 -448 64 ) ( 640 -448 0 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 640 -448 64 ) ( 576 -448 64 ) ( 576 -448 0 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 576 -448 64 ) ( 576 -512 64 ) ( 576 -512 0 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +} +// brush 1527 +{ +( 704 -448 0 ) ( 640 -448 0 ) ( 640 -512 0 ) props/box_sr_m11 64 0 0 1 1 0 134217728 0 +( 640 -512 64 ) ( 640 -448 64 ) ( 704 -448 64 ) props/box_sr_m11 64 0 0 1 1 0 134217728 0 +( 640 -512 64 ) ( 704 -512 64 ) ( 704 -512 0 ) props/box_sr_m11 64 0 0 1 1 0 134217728 0 +( 704 -512 64 ) ( 704 -448 64 ) ( 704 -448 0 ) props/box_sr_m11 64 0 0 1 1 0 134217728 0 +( 704 -448 64 ) ( 640 -448 64 ) ( 640 -448 0 ) props/box_sr_m11 64 0 0 1 1 0 134217728 0 +( 640 -448 64 ) ( 640 -512 64 ) ( 640 -512 0 ) props/box_sr_m11 64 0 0 1 1 0 134217728 0 +} +// brush 1528 +{ +( 69 -184 64 ) ( 15 -218 64 ) ( 49 -272 64 ) props/box_sr_m6 38 0 32 0.999993 0.999993 0 134217728 0 +( 49 -272 128 ) ( 15 -218 128 ) ( 69 -184 128 ) props/box_sr_m6 39 -1 32 1 1 0 134217728 0 +( 49 -272 128 ) ( 103 -238 128 ) ( 103 -238 64 ) props/box_sr_m6 -57 0 0 0.848057 1 0 134217728 0 +( 103 -238 128 ) ( 69 -184 128 ) ( 69 -184 64 ) props/box_sr_m6 24 0 0 0.850000 1 0 134217728 0 +( 69 -184 128 ) ( 15 -218 128 ) ( 15 -218 64 ) props/box_sr_m6 -17 0 0 0.848049 1 0 134217728 0 +( 15 -218 128 ) ( 49 -272 128 ) ( 49 -272 64 ) props/box_sr_m6 1 0 0 0.848053 1 0 134217728 0 +} +// brush 1529 +{ +( 88 -256 0 ) ( 24 -256 0 ) ( 24 -320 0 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 24 -320 64 ) ( 24 -256 64 ) ( 88 -256 64 ) props/box_sr_m5 40 0 0 1 1 0 134217728 0 +( 24 -320 64 ) ( 88 -320 64 ) ( 88 -320 0 ) props/box_sr_m5 40 0 0 1 1 0 134217728 0 +( 88 -320 64 ) ( 88 -256 64 ) ( 88 -256 0 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 88 -256 64 ) ( 24 -256 64 ) ( 24 -256 0 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 24 -256 64 ) ( 24 -320 64 ) ( 24 -320 0 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +} +// brush 1530 +{ +( 112 -192 0 ) ( 48 -192 0 ) ( 48 -256 0 ) props/box_sr_m11 64 0 0 1 1 0 134217728 0 +( 48 -256 64 ) ( 48 -192 64 ) ( 112 -192 64 ) props/box_sr_m11 80 0 0 1 1 0 134217728 0 +( 48 -256 64 ) ( 112 -256 64 ) ( 112 -256 0 ) props/box_sr_m11 80 0 0 1 1 0 134217728 0 +( 112 -256 64 ) ( 112 -192 64 ) ( 112 -192 0 ) props/box_sr_m11 64 0 0 1 1 0 134217728 0 +( 112 -192 64 ) ( 48 -192 64 ) ( 48 -192 0 ) props/box_sr_m11 80 0 0 1 1 0 134217728 0 +( 48 -192 64 ) ( 48 -256 64 ) ( 48 -256 0 ) props/box_sr_m11 64 0 0 1 1 0 134217728 0 +} +// brush 1531 +{ +( 56 -128 64 ) ( -8 -128 64 ) ( -8 -192 64 ) props/box_sr_m11 8 0 0 1 1 0 134217728 0 +( -8 -192 128 ) ( -8 -128 128 ) ( 56 -128 128 ) props/box_sr_m11 8 0 0 1 1 0 134217728 0 +( -8 -192 128 ) ( 56 -192 128 ) ( 56 -192 64 ) props/box_sr_m11 8 0 0 1 1 0 134217728 0 +( 56 -192 128 ) ( 56 -128 128 ) ( 56 -128 64 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +( 56 -128 128 ) ( -8 -128 128 ) ( -8 -128 64 ) props/box_sr_m11 8 0 0 1 1 0 134217728 0 +( -8 -128 128 ) ( -8 -192 128 ) ( -8 -192 64 ) props/box_sr_m11 0 0 0 1 1 0 134217728 0 +} +// brush 1532 +{ +( 68 -70 0 ) ( 14 -36 0 ) ( -20 -90 0 ) props/box_sr_m6 -30 40 -31 1 0.999993 0 134217728 0 +( -20 -90 64 ) ( 14 -36 64 ) ( 68 -70 64 ) props/box_sr_m6 -30 40 -31 1 0.999993 0 134217728 0 +( -20 -90 64 ) ( 34 -124 64 ) ( 34 -124 0 ) props/box_sr_m6 23 0 0 0.848049 1 0 134217728 0 +( 34 -124 64 ) ( 68 -70 64 ) ( 68 -70 0 ) props/box_sr_m6 18 0 0 0.848045 1 0 134217728 0 +( 68 -70 64 ) ( 14 -36 64 ) ( 14 -36 0 ) props/box_sr_m6 -16 0 0 0.848049 1 0 134217728 0 +( 14 -36 64 ) ( -20 -90 64 ) ( -20 -90 0 ) props/box_sr_m6 -21 0 0 0.848053 1 0 134217728 0 +} +// brush 1533 +{ +( 72 -128 0 ) ( 8 -128 0 ) ( 8 -192 0 ) props/box_sr_m5 -8 0 0 1 1 0 134217728 0 +( 8 -192 64 ) ( 8 -128 64 ) ( 72 -128 64 ) props/box_sr_m5 -8 0 0 1 1 0 134217728 0 +( 8 -192 64 ) ( 72 -192 64 ) ( 72 -192 0 ) props/box_sr_m5 -8 0 0 1 1 0 134217728 0 +( 72 -192 64 ) ( 72 -128 64 ) ( 72 -128 0 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( 72 -128 64 ) ( 8 -128 64 ) ( 8 -128 0 ) props/box_sr_m5 -8 0 0 1 1 0 134217728 0 +( 8 -128 64 ) ( 8 -192 64 ) ( 8 -192 0 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +} +// brush 1534 +{ +( 48 -192 0 ) ( -16 -192 0 ) ( -16 -256 0 ) props/box_sr_m6 -48 0 0 1 1 0 134217728 0 +( -16 -256 64 ) ( -16 -192 64 ) ( 48 -192 64 ) props/box_sr_m6 -48 0 0 1 1 0 134217728 0 +( -16 -256 64 ) ( 48 -256 64 ) ( 48 -256 0 ) props/box_sr_m6 -48 0 0 1 1 0 134217728 0 +( 48 -256 64 ) ( 48 -192 64 ) ( 48 -192 0 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 48 -192 64 ) ( -16 -192 64 ) ( -16 -192 0 ) props/box_sr_m6 -48 0 0 1 1 0 134217728 0 +( -16 -192 64 ) ( -16 -256 64 ) ( -16 -256 0 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +} +// brush 1535 +{ +( 8 -128 0 ) ( -56 -128 0 ) ( -56 -192 0 ) props/box_sr_m6 -8 0 0 1 1 0 134217728 0 +( -56 -192 64 ) ( -56 -128 64 ) ( 8 -128 64 ) props/box_sr_m6 -8 0 0 1 1 0 134217728 0 +( -56 -192 64 ) ( 8 -192 64 ) ( 8 -192 0 ) props/box_sr_m6 -8 0 0 1 1 0 134217728 0 +( 8 -192 64 ) ( 8 -128 64 ) ( 8 -128 0 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( 8 -128 64 ) ( -56 -128 64 ) ( -56 -128 0 ) props/box_sr_m6 -8 0 0 1 1 0 134217728 0 +( -56 -128 64 ) ( -56 -192 64 ) ( -56 -192 0 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +} +// brush 1536 +{ +( 160 -512 224 ) ( 288 -512 224 ) ( 288 -536 224 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 264 -512 204 ) ( 248 -512 204 ) ( 256 -536 204 ) bricks/b_mf_v5 0 32 90 1 1 0 0 0 +( 288 -1088 204 ) ( 256 -1088 204 ) ( 272 -1088 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 280 -552 204 ) ( 280 -528 204 ) ( 280 -540 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 296 -528 204 ) ( 296 -544 204 ) ( 296 -536 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 280 -968 204 ) ( 296 -968 204 ) ( 288 -968 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +} +// brush 1537 +{ +( 160 -896 224 ) ( 288 -896 224 ) ( 288 -920 224 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 264 -896 204 ) ( 248 -896 204 ) ( 256 -920 204 ) common/li_sr_m17 -8 -8 0 1 1 0 1 20000 +( 280 -936 204 ) ( 280 -912 204 ) ( 280 -924 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 296 -912 204 ) ( 296 -928 204 ) ( 296 -920 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 280 -952 204 ) ( 296 -952 204 ) ( 288 -952 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 296 -968 204 ) ( 280 -968 204 ) ( 288 -968 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +} +// brush 1538 +{ +( 160 -512 224 ) ( 288 -512 224 ) ( 288 -536 224 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 264 -512 204 ) ( 248 -512 204 ) ( 256 -536 204 ) bricks/b_mf_v5 0 32 90 1 1 0 0 0 +( 280 -552 204 ) ( 280 -528 204 ) ( 280 -540 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 296 -528 204 ) ( 296 -544 204 ) ( 296 -536 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 280 -584 204 ) ( 296 -584 204 ) ( 288 -584 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 296 -952 204 ) ( 280 -952 204 ) ( 288 -952 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +} +// brush 1539 +{ +( 160 -512 224 ) ( 288 -512 224 ) ( 288 -536 224 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 264 -512 204 ) ( 248 -512 204 ) ( 256 -536 204 ) common/li_sr_m17 8 8 0 1 1 0 1 20000 +( 280 -552 204 ) ( 280 -528 204 ) ( 280 -540 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 296 -528 204 ) ( 296 -544 204 ) ( 296 -536 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 280 -568 204 ) ( 296 -568 204 ) ( 288 -568 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 296 -584 204 ) ( 280 -584 204 ) ( 288 -584 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +} +// brush 1540 +{ +( 160 -512 224 ) ( 288 -512 224 ) ( 288 -536 224 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 264 -512 204 ) ( 248 -512 204 ) ( 256 -536 204 ) bricks/b_mf_v5 0 32 90 1 1 0 0 0 +( 160 -528 204 ) ( 192 -528 204 ) ( 176 -528 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 280 -552 204 ) ( 280 -528 204 ) ( 280 -540 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 296 -528 204 ) ( 296 -544 204 ) ( 296 -536 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 296 -568 204 ) ( 280 -568 204 ) ( 288 -568 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +} +// brush 1541 +{ +( 160 -512 224 ) ( 288 -512 224 ) ( 288 -536 224 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 264 -512 204 ) ( 248 -512 204 ) ( 256 -536 204 ) bricks/b_mf_v5 0 32 90 1 1 0 0 0 +( 416 -960 204 ) ( 416 -976 204 ) ( 416 -968 224 ) bricks/b_mf_v5 0 -32 0 1 1 0 0 0 +( 160 -528 204 ) ( 192 -528 204 ) ( 176 -528 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 288 -1088 204 ) ( 256 -1088 204 ) ( 272 -1088 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 296 -544 204 ) ( 296 -528 204 ) ( 296 -536 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +} +// brush 1542 +{ +( 160 -512 224 ) ( 288 -512 224 ) ( 288 -536 224 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 160 -872 15 ) ( 160 -872 31 ) ( 160 -896 23 ) bricks/b_mf_v3 -64 -32 -180 1 -1 0 0 0 +( 264 -512 204 ) ( 248 -512 204 ) ( 256 -536 204 ) bricks/b_mf_v5 0 32 90 1 1 0 0 0 +( 160 -528 204 ) ( 192 -528 204 ) ( 176 -528 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 288 -1088 204 ) ( 256 -1088 204 ) ( 272 -1088 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 280 -528 204 ) ( 280 -552 204 ) ( 280 -540 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +} +// brush 1543 +{ +( 392 -864 520 ) ( -120 -864 520 ) ( -120 -408 200 ) floors/rf_sr_m1 56 32 0 1 1 0 0 0 +( 168 -408 192 ) ( 168 -424 192 ) ( 168 -416 520 ) floors/rf_sr_m1 128 48 0 1 1 0 0 0 +( 160 -512 224 ) ( 288 -512 224 ) ( 288 -536 224 ) floors/rf_sr_m1 -32 16 90 1 -1 0 0 0 +( 160 -872 15 ) ( 160 -872 31 ) ( 160 -896 23 ) floors/rf_sr_m1 -32 16 90 1 -1 0 0 0 +( 264 -512 204 ) ( 248 -512 204 ) ( 256 -536 204 ) floors/rf_sr_m1 -32 16 90 1 -1 0 0 0 +( 192 -528 204 ) ( 160 -528 204 ) ( 176 -528 224 ) floors/rf_sr_m1 -32 16 90 1 -1 0 0 0 +} +// brush 1544 +{ +( -184 -800 192 ) ( 328 -800 192 ) ( 328 -344 192 ) floors/rf_sr_m1 56 16 0 1 1 0 0 0 +( 392 -864 520 ) ( -120 -864 520 ) ( -120 -408 200 ) floors/rf_sr_m1 56 32 0 1 1 0 0 0 +( 360 -408 200 ) ( -120 -408 200 ) ( -120 -408 192 ) floors/rf_sr_m1 56 -8 0 1 1 0 0 0 +( -120 -864 520 ) ( 392 -864 520 ) ( 392 -864 192 ) floors/rf_sr_m1 -32 -56 90 1 1 0 0 0 +( 168 -408 192 ) ( 168 -424 192 ) ( 168 -416 520 ) floors/rf_sr_m1 128 48 0 1 1 0 0 0 +( 160 -872 15 ) ( 160 -872 31 ) ( 160 -896 23 ) floors/rf_sr_m1 -32 16 90 1 -1 0 0 0 +( 248 -512 204 ) ( 264 -512 204 ) ( 256 -536 204 ) floors/rf_sr_m1 -32 16 90 1 -1 0 0 0 +} +// brush 1545 +{ +( -184 -800 192 ) ( 328 -800 192 ) ( 328 -344 192 ) floors/rf_sr_m1 56 16 0 1 1 0 0 0 +( 392 -864 520 ) ( -120 -864 520 ) ( -120 -408 200 ) floors/rf_sr_m1 56 32 0 1 1 0 0 0 +( 360 -408 200 ) ( -120 -408 200 ) ( -120 -408 192 ) floors/rf_sr_m1 56 -8 0 1 1 0 0 0 +( -120 -864 520 ) ( 392 -864 520 ) ( 392 -864 192 ) floors/rf_sr_m1 -32 -56 90 1 1 0 0 0 +( -576 -864 192 ) ( -120 -408 192 ) ( -348 -636 520 ) floors/rf_sr_m1 -32 16 90 1 -1 0 0 0 +( 160 -512 224 ) ( 288 -512 224 ) ( 288 -536 224 ) floors/rf_sr_m1 -32 16 90 1 -1 0 0 0 +( 160 -872 31 ) ( 160 -872 15 ) ( 160 -896 23 ) floors/rf_sr_m1 -32 16 90 1 -1 0 0 0 +} +// brush 1546 +{ +( 160 -512 224 ) ( 288 -512 224 ) ( 288 -536 224 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 160 -872 15 ) ( 160 -872 31 ) ( 160 -896 23 ) bricks/b_mf_v3 -64 -32 -180 1 -1 0 0 0 +( 264 -512 204 ) ( 248 -512 204 ) ( 256 -536 204 ) bricks/b_mf_v5 0 32 90 1 1 0 0 0 +( 288 -960 204 ) ( 288 -976 204 ) ( 288 -968 224 ) bricks/b_mf_v5 0 -32 0 1 1 0 0 0 +( 416 -1408 204 ) ( 160 -1152 204 ) ( 288 -1280 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 256 -1088 204 ) ( 288 -1088 204 ) ( 272 -1088 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +} +// brush 1547 +{ +( 288 -512 224 ) ( 416 -512 224 ) ( 416 -536 224 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 416 -536 224 ) ( 416 -512 224 ) ( 416 -512 96 ) bricks/b_mf_v3 -64 -32 -180 1 -1 0 0 0 +( 392 -512 204 ) ( 376 -512 204 ) ( 384 -536 204 ) bricks/b_mf_v5 0 32 90 1 1 0 0 0 +( 288 -976 204 ) ( 288 -960 204 ) ( 288 -968 224 ) bricks/b_mf_v5 0 -32 0 1 1 0 0 0 +( 416 -1408 204 ) ( 160 -1152 204 ) ( 288 -1280 224 ) bricks/b_mf_v3 96 -32 0 1 1 0 0 0 +( 288 -1088 204 ) ( 304 -1088 204 ) ( 296 -1088 224 ) bricks/b_mf_v3 96 -32 0 1 1 0 0 0 +} +// brush 1548 +{ +( 288 -512 224 ) ( 416 -512 224 ) ( 416 -536 224 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 416 -536 224 ) ( 416 -512 224 ) ( 416 -512 96 ) bricks/b_mf_v3 -64 -32 -180 1 -1 0 0 0 +( 416 -512 224 ) ( 288 -512 224 ) ( 288 -512 96 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 392 -512 204 ) ( 376 -512 204 ) ( 384 -536 204 ) bricks/b_mf_v5 0 32 90 1 1 0 0 0 +( 288 -976 204 ) ( 288 -960 204 ) ( 288 -968 224 ) bricks/b_mf_v5 0 -32 0 1 1 0 0 0 +( 192 -528 204 ) ( 160 -528 204 ) ( 176 -528 224 ) bricks/b_mf_v3 96 -32 0 1 1 0 0 0 +} +// brush 1549 +{ +( 160 -512 224 ) ( 288 -512 224 ) ( 288 -536 224 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 288 -512 224 ) ( 160 -512 224 ) ( 160 -512 96 ) bricks/b_mf_v3 96 -32 0 1 1 0 0 0 +( 160 -872 15 ) ( 160 -872 31 ) ( 160 -896 23 ) bricks/b_mf_v3 -64 -32 -180 1 -1 0 0 0 +( 264 -512 204 ) ( 248 -512 204 ) ( 256 -536 204 ) bricks/b_mf_v5 0 32 90 1 1 0 0 0 +( 288 -960 204 ) ( 288 -976 204 ) ( 288 -968 224 ) bricks/b_mf_v5 0 -32 0 1 1 0 0 0 +( 192 -528 204 ) ( 160 -528 204 ) ( 176 -528 224 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +} +// brush 1550 +{ +( 128 -1152 -8 ) ( 96 -1152 -8 ) ( 96 -1408 -8 ) bricks/b_mf_v5 0 -31 -180 1 -1 0 0 0 +( 96 -1408 240 ) ( 96 -1152 240 ) ( 128 -1152 240 ) bricks/b_mf_v5 0 -31 -180 1 -1 0 0 0 +( 96 -1408 112 ) ( 128 -1408 112 ) ( 128 -1408 96 ) bricks/b_mf_v5 0 -31 -180 1 -1 0 0 0 +( 128 -1408 112 ) ( 128 -1152 112 ) ( 128 -1152 96 ) bricks/b_mf_v5 32 -32 -180 1 -1 0 0 0 +( 128 -1152 112 ) ( 96 -1152 112 ) ( 96 -1152 96 ) bricks/b_mf_v5 0 -31 -180 1 -1 0 0 0 +( 96 -1152 112 ) ( 96 -1408 112 ) ( 96 -1408 96 ) bricks/b_mf_v5 32 -32 -180 1 -1 0 0 0 +} +// brush 1551 +{ +( 179 -536 0 ) ( 179 -512 0 ) ( 160 -512 0 ) bricks/c_pv_m2 64 96 90 1 1 0 0 0 +( 160 -512 128 ) ( 160 -536 128 ) ( 160 -536 112 ) bricks/c_pv_m2 64 0 0 1 1 0 0 0 +( 179 -1689 128 ) ( 179 -1665 128 ) ( 179 -1665 112 ) bricks/c_pv_m2 32 -1 0 1 1 0 0 0 +( 179 -512 128 ) ( 160 -512 128 ) ( 160 -512 112 ) bricks/c_pv_m2 32 -1 0 1 1 0 0 0 +( 192 -960 96 ) ( 160 -960 96 ) ( 176 -512 96 ) bricks/c_pv_m2 -96 -64 -180 1 -1 0 0 0 +( 416 -1408 0 ) ( 160 -1152 0 ) ( 288 -1280 96 ) bricks/c_pv_m2 -96 -64 -180 1 -1 0 0 0 +} +// brush 1552 +{ +( 288 -512 224 ) ( 160 -512 224 ) ( 160 -512 96 ) bricks/b_mf_v3 96 -32 0 1 1 0 0 0 +( 160 -512 224 ) ( 160 -536 224 ) ( 160 -536 96 ) bricks/b_mf_v3 56 -32 0 1 1 0 0 0 +( 179 -984 16 ) ( 179 -984 32 ) ( 179 -960 24 ) bricks/b_mf_v5 0 -32 0 1 1 0 0 0 +( 160 -536 96 ) ( 208 -536 96 ) ( 184 -512 96 ) bricks/b_mf_v3 56 -96 90 1 -1 0 0 0 +( 176 -536 112 ) ( 165 -536 112 ) ( 170 -512 112 ) bricks/b_mf_v3 56 -96 90 1 -1 0 0 0 +( 416 -1408 96 ) ( 160 -1152 96 ) ( 288 -1280 112 ) bricks/b_mf_v3 -104 32 -180 1 1 0 0 0 +} +// brush 1553 +{ +( 288 -512 224 ) ( 160 -512 224 ) ( 160 -512 96 ) bricks/b_mf_v3 96 -32 0 1 1 0 0 0 +( 160 -512 224 ) ( 160 -536 224 ) ( 160 -536 96 ) bricks/b_mf_v3 56 -32 0 1 1 0 0 0 +( 183 -984 128 ) ( 183 -960 128 ) ( 179 -960 112 ) bricks/b_mf_v5 0 -32 0 1 1 0 0 0 +( 179 -536 112 ) ( 179 -512 112 ) ( 160 -512 112 ) bricks/b_mf_v3 56 -96 90 1 -1 0 0 0 +( 183 -512 128 ) ( 183 -536 128 ) ( 160 -536 128 ) bricks/b_mf_v3 56 -96 90 1 -1 0 0 0 +( 416 -1408 112 ) ( 160 -1152 112 ) ( 288 -1280 128 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +} +// brush 1554 +{ +( 288 -512 224 ) ( 160 -512 224 ) ( 160 -512 96 ) bricks/b_mf_v3 96 -32 0 1 1 0 0 0 +( 160 -512 224 ) ( 160 -536 224 ) ( 160 -536 96 ) bricks/b_mf_v3 56 -32 0 1 1 0 0 0 +( 199 -984 160 ) ( 199 -960 160 ) ( 190 -960 144 ) bricks/b_mf_v5 0 -32 0 1 1 0 0 0 +( 168 -536 144 ) ( 176 -536 144 ) ( 172 -512 144 ) bricks/b_mf_v3 56 -96 90 1 -1 0 0 0 +( 199 -512 160 ) ( 199 -536 160 ) ( 160 -536 160 ) bricks/b_mf_v3 56 -96 90 1 -1 0 0 0 +( 416 -1408 144 ) ( 160 -1152 144 ) ( 288 -1280 160 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +} +// brush 1555 +{ +( 288 -512 224 ) ( 160 -512 224 ) ( 160 -512 96 ) bricks/b_mf_v3 96 -32 0 1 1 0 0 0 +( 160 -512 224 ) ( 160 -536 224 ) ( 160 -536 96 ) bricks/b_mf_v3 56 -32 0 1 1 0 0 0 +( 190 -984 144 ) ( 190 -960 144 ) ( 183 -960 128 ) bricks/b_mf_v5 0 -32 0 1 1 0 0 0 +( 167 -536 128 ) ( 176 -536 128 ) ( 171 -512 128 ) bricks/b_mf_v3 56 -96 90 1 -1 0 0 0 +( 190 -512 144 ) ( 190 -536 144 ) ( 160 -536 144 ) bricks/b_mf_v3 56 -96 90 1 -1 0 0 0 +( 416 -1408 128 ) ( 160 -1152 128 ) ( 288 -1280 144 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +} +// brush 1556 +{ +( 288 -512 224 ) ( 160 -512 224 ) ( 160 -512 96 ) bricks/b_mf_v3 96 -32 0 1 1 0 0 0 +( 160 -512 224 ) ( 160 -536 224 ) ( 160 -536 96 ) bricks/b_mf_v3 56 -32 0 1 1 0 0 0 +( 213 -984 176 ) ( 213 -960 176 ) ( 199 -960 160 ) bricks/b_mf_v5 0 -32 0 1 1 0 0 0 +( 168 -536 160 ) ( 184 -536 160 ) ( 176 -512 160 ) bricks/b_mf_v3 56 -96 90 1 -1 0 0 0 +( 213 -512 176 ) ( 213 -536 176 ) ( 160 -536 176 ) bricks/b_mf_v3 56 -96 90 1 -1 0 0 0 +( 416 -1408 160 ) ( 160 -1152 160 ) ( 288 -1280 176 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +} +// brush 1557 +{ +( 288 -512 224 ) ( 160 -512 224 ) ( 160 -512 96 ) bricks/b_mf_v3 96 -32 0 1 1 0 0 0 +( 160 -512 224 ) ( 160 -536 224 ) ( 160 -536 96 ) bricks/b_mf_v3 56 -32 0 1 1 0 0 0 +( 238 -984 192 ) ( 238 -960 192 ) ( 213 -960 176 ) bricks/b_mf_v5 0 32 90 1 1 0 0 0 +( 168 -536 176 ) ( 184 -536 176 ) ( 176 -512 176 ) bricks/b_mf_v3 56 -96 90 1 -1 0 0 0 +( 238 -512 192 ) ( 238 -536 192 ) ( 160 -536 192 ) bricks/b_mf_v3 56 -96 90 1 -1 0 0 0 +( 416 -1408 176 ) ( 160 -1152 176 ) ( 288 -1280 192 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +} +// brush 1558 +{ +( 288 -512 224 ) ( 160 -512 224 ) ( 160 -512 96 ) bricks/b_mf_v3 96 -32 0 1 1 0 0 0 +( 160 -512 224 ) ( 160 -536 224 ) ( 160 -536 96 ) bricks/b_mf_v3 56 -32 0 1 1 0 0 0 +( 272 -984 204 ) ( 272 -960 204 ) ( 238 -960 192 ) bricks/b_mf_v5 0 32 90 1 1 0 0 0 +( 152 -536 192 ) ( 184 -536 192 ) ( 168 -512 192 ) bricks/b_mf_v3 56 -96 90 1 -1 0 0 0 +( 272 -512 204 ) ( 272 -536 204 ) ( 160 -536 204 ) bricks/b_mf_v3 56 -96 90 1 -1 0 0 0 +( 416 -1408 192 ) ( 160 -1152 192 ) ( 288 -1280 204 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +} +// brush 1559 +{ +( 416 -536 224 ) ( 416 -512 224 ) ( 416 -512 96 ) bricks/b_mf_v3 -64 -32 -180 1 -1 0 0 0 +( 416 -512 224 ) ( 288 -512 224 ) ( 288 -512 96 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 304 -1832 204 ) ( 304 -1856 204 ) ( 338 -1856 192 ) bricks/b_mf_v5 0 32 90 1 1 0 0 0 +( 424 -512 192 ) ( 392 -512 192 ) ( 408 -536 192 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 304 -536 204 ) ( 304 -512 204 ) ( 416 -512 204 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 416 -1408 192 ) ( 160 -1152 192 ) ( 288 -1280 204 ) bricks/b_mf_v3 96 -32 0 1 1 0 0 0 +} +// brush 1560 +{ +( 416 -536 224 ) ( 416 -512 224 ) ( 416 -512 96 ) bricks/b_mf_v3 -64 -32 -180 1 -1 0 0 0 +( 416 -512 224 ) ( 288 -512 224 ) ( 288 -512 96 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 338 -1832 192 ) ( 338 -1856 192 ) ( 363 -1856 176 ) bricks/b_mf_v5 0 32 90 1 1 0 0 0 +( 408 -512 176 ) ( 392 -512 176 ) ( 400 -536 176 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 338 -536 192 ) ( 338 -512 192 ) ( 416 -512 192 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 416 -1408 176 ) ( 160 -1152 176 ) ( 288 -1280 192 ) bricks/b_mf_v3 96 -32 0 1 1 0 0 0 +} +// brush 1561 +{ +( 416 -536 224 ) ( 416 -512 224 ) ( 416 -512 96 ) bricks/b_mf_v3 -64 -32 -180 1 -1 0 0 0 +( 416 -512 224 ) ( 288 -512 224 ) ( 288 -512 96 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 363 -1832 176 ) ( 363 -1856 176 ) ( 377 -1856 160 ) bricks/b_mf_v5 0 -32 0 1 1 0 0 0 +( 408 -512 160 ) ( 392 -512 160 ) ( 400 -536 160 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 363 -536 176 ) ( 363 -512 176 ) ( 416 -512 176 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 416 -1408 160 ) ( 160 -1152 160 ) ( 288 -1280 176 ) bricks/b_mf_v3 96 -32 0 1 1 0 0 0 +} +// brush 1562 +{ +( 416 -536 224 ) ( 416 -512 224 ) ( 416 -512 96 ) bricks/b_mf_v3 -64 -32 -180 1 -1 0 0 0 +( 416 -512 224 ) ( 288 -512 224 ) ( 288 -512 96 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 377 -1832 160 ) ( 377 -1856 160 ) ( 386 -1856 144 ) bricks/b_mf_v5 0 -32 0 1 1 0 0 0 +( 408 -512 144 ) ( 400 -512 144 ) ( 404 -536 144 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 377 -536 160 ) ( 377 -512 160 ) ( 416 -512 160 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 416 -1408 144 ) ( 160 -1152 144 ) ( 288 -1280 160 ) bricks/b_mf_v3 96 -32 0 1 1 0 0 0 +} +// brush 1563 +{ +( 416 -536 224 ) ( 416 -512 224 ) ( 416 -512 96 ) bricks/b_mf_v3 -64 -32 -180 1 -1 0 0 0 +( 416 -512 224 ) ( 288 -512 224 ) ( 288 -512 96 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 386 -1832 144 ) ( 386 -1856 144 ) ( 393 -1856 128 ) bricks/b_mf_v5 0 -32 0 1 1 0 0 0 +( 409 -512 128 ) ( 400 -512 128 ) ( 405 -536 128 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 386 -536 144 ) ( 386 -512 144 ) ( 416 -512 144 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 416 -1408 128 ) ( 160 -1152 128 ) ( 288 -1280 144 ) bricks/b_mf_v3 96 -32 0 1 1 0 0 0 +} +// brush 1564 +{ +( 416 -536 224 ) ( 416 -512 224 ) ( 416 -512 96 ) bricks/b_mf_v3 -64 -32 -180 1 -1 0 0 0 +( 416 -512 224 ) ( 288 -512 224 ) ( 288 -512 96 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 393 -1832 128 ) ( 393 -1856 128 ) ( 397 -1856 112 ) bricks/b_mf_v5 0 -32 0 1 1 0 0 0 +( 397 -512 112 ) ( 397 -536 112 ) ( 416 -536 112 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 393 -536 128 ) ( 393 -512 128 ) ( 416 -512 128 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 416 -1408 112 ) ( 160 -1152 112 ) ( 288 -1280 128 ) bricks/b_mf_v3 96 -32 0 1 1 0 0 0 +} +// brush 1565 +{ +( 416 -536 224 ) ( 416 -512 224 ) ( 416 -512 96 ) bricks/b_mf_v3 -64 -32 -180 1 -1 0 0 0 +( 416 -512 224 ) ( 288 -512 224 ) ( 288 -512 96 ) bricks/b_mf_v3 -96 -32 -180 1 -1 0 0 0 +( 397 -1832 16 ) ( 397 -1832 32 ) ( 397 -1856 24 ) bricks/b_mf_v5 0 -32 0 1 1 0 0 0 +( 416 -512 96 ) ( 368 -512 96 ) ( 392 -536 96 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 400 -512 112 ) ( 411 -512 112 ) ( 406 -536 112 ) bricks/b_mf_v3 -64 95 -90 1 -1 0 0 0 +( 416 -1408 96 ) ( 160 -1152 96 ) ( 288 -1280 112 ) bricks/b_mf_v3 96 -32 0 1 1 0 0 0 +} +// brush 1566 +{ +( 416 -536 0 ) ( 416 -512 0 ) ( 397 -512 0 ) bricks/b_mf_v3 40 96 90 1 1 0 0 0 +( 397 -1472 128 ) ( 397 -1496 128 ) ( 397 -1496 112 ) bricks/c_pv_m2 32 -1 0 1 1 0 0 0 +( 416 -536 128 ) ( 416 -512 128 ) ( 416 -512 112 ) bricks/b_mf_v3 40 -16 0 1 1 0 0 0 +( 416 -512 128 ) ( 397 -512 128 ) ( 397 -512 112 ) bricks/c_pv_m2 -96 -1 -180 1 -1 0 0 0 +( 192 -960 96 ) ( 160 -960 96 ) ( 176 -512 96 ) bricks/c_pv_m2 -96 -64 -180 1 -1 0 0 0 +( 416 -1408 0 ) ( 160 -1152 0 ) ( 288 -1280 96 ) bricks/c_pv_m2 -96 -64 -180 1 -1 0 0 0 +} +// brush 1567 +{ +( 392 -1171 0 ) ( 416 -1171 0 ) ( 416 -1152 0 ) bricks/c_pv_m2 96 0 -180 1 1 0 0 0 +( 416 -1152 128 ) ( 392 -1152 128 ) ( 392 -1152 112 ) bricks/c_pv_m2 96 0 -180 1 -1 0 0 0 +( -153 -1171 128 ) ( -129 -1171 128 ) ( -129 -1171 112 ) bricks/c_pv_m2 96 0 -180 1 -1 0 0 0 +( 128 -344 512 ) ( 128 -1488 512 ) ( 128 -344 0 ) bricks/c_pv_m2 0 0 -180 1 -1 0 0 0 +( -32 -1184 96 ) ( -32 -1152 96 ) ( 416 -1168 96 ) bricks/c_pv_m2 0 -96 -90 1 -1 0 0 0 +( 160 -1152 0 ) ( 416 -1408 0 ) ( 288 -1280 96 ) bricks/c_pv_m2 0 -96 -90 1 -1 0 0 0 +} +// brush 1568 +{ +( 392 -1408 0 ) ( 416 -1408 0 ) ( 416 -1389 0 ) bricks/b_mf_v3 72 0 -180 1 1 0 0 0 +( -544 -1389 128 ) ( -568 -1389 128 ) ( -568 -1389 112 ) bricks/c_pv_m2 96 0 -180 1 -1 0 0 0 +( 552 -1408 128 ) ( 576 -1408 128 ) ( 576 -1408 112 ) bricks/b_mf_v3 72 -16 -180 1 -1 0 0 0 +( 128 -344 512 ) ( 128 -1488 512 ) ( 128 -344 0 ) bricks/c_pv_m2 0 0 -180 1 -1 0 0 0 +( -32 -1184 96 ) ( -32 -1152 96 ) ( 416 -1168 96 ) bricks/c_pv_m2 0 -96 -90 1 -1 0 0 0 +( 160 -1152 0 ) ( 416 -1408 0 ) ( 288 -1280 96 ) bricks/c_pv_m2 0 -96 -90 1 -1 0 0 0 +} +// brush 1569 +{ +( 416 -1280 224 ) ( 416 -1408 224 ) ( 392 -1408 224 ) bricks/b_mf_v3 -96 -1 0 1 -1 0 0 0 +( 392 -1408 224 ) ( 416 -1408 224 ) ( 416 -1408 96 ) bricks/b_mf_v3 -96 -32 0 1 1 0 0 0 +( 416 -1384 204 ) ( 416 -1368 204 ) ( 392 -1376 204 ) bricks/b_mf_v5 32 0 -180 1 1 0 0 0 +( 560 -1280 204 ) ( 576 -1280 204 ) ( 568 -1280 224 ) bricks/b_mf_v5 32 -32 -180 1 -1 0 0 0 +( 128 -344 480 ) ( 128 -1488 480 ) ( 128 -344 -32 ) bricks/b_mf_v3 0 -32 0 1 1 0 0 0 +( 160 -1152 204 ) ( 416 -1408 204 ) ( 288 -1280 224 ) bricks/b_mf_v3 0 -32 0 1 1 0 0 0 +} +// brush 1570 +{ +( 416 -1152 224 ) ( 416 -1280 224 ) ( 392 -1280 224 ) bricks/b_mf_v3 -96 -1 0 1 -1 0 0 0 +( 56 -1152 15 ) ( 56 -1152 31 ) ( 32 -1152 23 ) bricks/b_mf_v3 -96 -32 0 1 1 0 0 0 +( 416 -1256 204 ) ( 416 -1240 204 ) ( 392 -1248 204 ) bricks/b_mf_v5 32 0 -180 1 1 0 0 0 +( 576 -1280 204 ) ( 560 -1280 204 ) ( 568 -1280 224 ) bricks/b_mf_v5 32 -32 -180 1 -1 0 0 0 +( 128 -344 480 ) ( 128 -1488 480 ) ( 128 -344 -32 ) bricks/b_mf_v3 0 -32 -180 1 -1 0 0 0 +( 160 -1152 204 ) ( 416 -1408 204 ) ( 288 -1280 224 ) bricks/b_mf_v3 0 -32 -180 1 -1 0 0 0 +} +// brush 1571 +{ +( 392 -1408 224 ) ( 416 -1408 224 ) ( 416 -1408 96 ) bricks/b_mf_v3 -96 -32 0 1 1 0 0 0 +( -296 -1385 128 ) ( -320 -1385 128 ) ( -320 -1389 112 ) bricks/b_mf_v5 32 -32 -180 1 -1 0 0 0 +( 416 -1389 112 ) ( 392 -1389 112 ) ( 392 -1408 112 ) bricks/b_mf_v3 -96 -1 0 1 -1 0 0 0 +( 392 -1385 128 ) ( 416 -1385 128 ) ( 416 -1408 128 ) bricks/b_mf_v3 -96 -1 0 1 -1 0 0 0 +( 128 -344 480 ) ( 128 -1488 480 ) ( 128 -344 -32 ) bricks/b_mf_v3 0 -32 0 1 1 0 0 0 +( 160 -1152 112 ) ( 416 -1408 112 ) ( 288 -1280 128 ) bricks/b_mf_v3 0 -32 0 1 1 0 0 0 +} +// brush 1572 +{ +( 392 -1408 224 ) ( 416 -1408 224 ) ( 416 -1408 96 ) bricks/b_mf_v3 -96 -32 0 1 1 0 0 0 +( -296 -1389 16 ) ( -296 -1389 32 ) ( -320 -1389 24 ) bricks/b_mf_v5 32 -32 -180 1 -1 0 0 0 +( 416 -1408 96 ) ( 416 -1360 96 ) ( 392 -1384 96 ) bricks/b_mf_v3 -96 -1 0 1 -1 0 0 0 +( 416 -1392 112 ) ( 416 -1403 112 ) ( 392 -1398 112 ) bricks/b_mf_v3 -96 -1 0 1 -1 0 0 0 +( 128 -344 480 ) ( 128 -1488 480 ) ( 128 -344 -32 ) bricks/b_mf_v3 0 -32 0 1 1 0 0 0 +( 160 -1152 96 ) ( 416 -1408 96 ) ( 288 -1280 112 ) bricks/b_mf_v3 0 -32 0 1 1 0 0 0 +} +// brush 1573 +{ +( 392 -1408 224 ) ( 416 -1408 224 ) ( 416 -1408 96 ) bricks/b_mf_v3 -96 -32 0 1 1 0 0 0 +( -296 -1378 144 ) ( -320 -1378 144 ) ( -320 -1385 128 ) bricks/b_mf_v5 32 -32 -180 1 -1 0 0 0 +( 416 -1401 128 ) ( 416 -1392 128 ) ( 392 -1397 128 ) bricks/b_mf_v3 -96 -1 0 1 -1 0 0 0 +( 392 -1378 144 ) ( 416 -1378 144 ) ( 416 -1408 144 ) bricks/b_mf_v3 -96 -1 0 1 -1 0 0 0 +( 128 -344 480 ) ( 128 -1488 480 ) ( 128 -344 -32 ) bricks/b_mf_v3 0 -32 0 1 1 0 0 0 +( 160 -1152 128 ) ( 416 -1408 128 ) ( 288 -1280 144 ) bricks/b_mf_v3 0 -32 0 1 1 0 0 0 +} +// brush 1574 +{ +( 392 -1408 224 ) ( 416 -1408 224 ) ( 416 -1408 96 ) bricks/b_mf_v3 -96 -32 0 1 1 0 0 0 +( -296 -1369 160 ) ( -320 -1369 160 ) ( -320 -1378 144 ) bricks/b_mf_v5 32 -32 -180 1 -1 0 0 0 +( 416 -1400 144 ) ( 416 -1392 144 ) ( 392 -1396 144 ) bricks/b_mf_v3 -96 -1 0 1 -1 0 0 0 +( 392 -1369 160 ) ( 416 -1369 160 ) ( 416 -1408 160 ) bricks/b_mf_v3 -96 -1 0 1 -1 0 0 0 +( 128 -344 480 ) ( 128 -1488 480 ) ( 128 -344 -32 ) bricks/b_mf_v3 0 -32 0 1 1 0 0 0 +( 160 -1152 144 ) ( 416 -1408 144 ) ( 288 -1280 160 ) bricks/b_mf_v3 0 -32 0 1 1 0 0 0 +} +// brush 1575 +{ +( 392 -1408 224 ) ( 416 -1408 224 ) ( 416 -1408 96 ) bricks/b_mf_v3 -96 -32 0 1 1 0 0 0 +( -296 -1355 176 ) ( -320 -1355 176 ) ( -320 -1369 160 ) bricks/b_mf_v5 32 -32 -180 1 -1 0 0 0 +( 416 -1400 160 ) ( 416 -1384 160 ) ( 392 -1392 160 ) bricks/b_mf_v3 -96 -1 0 1 -1 0 0 0 +( 392 -1355 176 ) ( 416 -1355 176 ) ( 416 -1408 176 ) bricks/b_mf_v3 -96 -1 0 1 -1 0 0 0 +( 128 -344 480 ) ( 128 -1488 480 ) ( 128 -344 -32 ) bricks/b_mf_v3 0 -32 0 1 1 0 0 0 +( 160 -1152 160 ) ( 416 -1408 160 ) ( 288 -1280 176 ) bricks/b_mf_v3 0 -32 0 1 1 0 0 0 +} +// brush 1576 +{ +( 392 -1408 224 ) ( 416 -1408 224 ) ( 416 -1408 96 ) bricks/b_mf_v3 -96 -32 0 1 1 0 0 0 +( -296 -1330 192 ) ( -320 -1330 192 ) ( -320 -1355 176 ) bricks/b_mf_v5 32 0 -180 1 1 0 0 0 +( 416 -1400 176 ) ( 416 -1384 176 ) ( 392 -1392 176 ) bricks/b_mf_v3 -96 -1 0 1 -1 0 0 0 +( 392 -1330 192 ) ( 416 -1330 192 ) ( 416 -1408 192 ) bricks/b_mf_v3 -96 -1 0 1 -1 0 0 0 +( 128 -344 480 ) ( 128 -1488 480 ) ( 128 -344 -32 ) bricks/b_mf_v3 0 -32 0 1 1 0 0 0 +( 160 -1152 176 ) ( 416 -1408 176 ) ( 288 -1280 192 ) bricks/b_mf_v3 0 -32 0 1 1 0 0 0 +} +// brush 1577 +{ +( 392 -1408 224 ) ( 416 -1408 224 ) ( 416 -1408 96 ) bricks/b_mf_v3 -96 -32 0 1 1 0 0 0 +( -296 -1296 204 ) ( -320 -1296 204 ) ( -320 -1330 192 ) bricks/b_mf_v5 32 0 -180 1 1 0 0 0 +( 416 -1416 192 ) ( 416 -1384 192 ) ( 392 -1400 192 ) bricks/b_mf_v3 -96 -1 0 1 -1 0 0 0 +( 392 -1296 204 ) ( 416 -1296 204 ) ( 416 -1408 204 ) bricks/b_mf_v3 -96 -1 0 1 -1 0 0 0 +( 128 -344 480 ) ( 128 -1488 480 ) ( 128 -344 -32 ) bricks/b_mf_v3 0 -32 0 1 1 0 0 0 +( 160 -1152 192 ) ( 416 -1408 192 ) ( 288 -1280 204 ) bricks/b_mf_v3 0 -32 0 1 1 0 0 0 +} +// brush 1578 +{ +( 416 -1152 224 ) ( 392 -1152 224 ) ( 392 -1152 96 ) bricks/b_mf_v3 88 -32 -180 1 -1 0 0 0 +( -56 -1264 204 ) ( -32 -1264 204 ) ( -32 -1230 192 ) bricks/b_mf_v5 32 0 -180 1 1 0 0 0 +( 392 -1144 192 ) ( 392 -1176 192 ) ( 416 -1160 192 ) bricks/b_mf_v3 88 0 -180 1 -1 0 0 0 +( 416 -1264 204 ) ( 392 -1264 204 ) ( 392 -1152 204 ) bricks/b_mf_v3 88 0 -180 1 -1 0 0 0 +( 128 -344 480 ) ( 128 -1488 480 ) ( 128 -344 -32 ) bricks/b_mf_v3 0 -32 -180 1 -1 0 0 0 +( 160 -1152 192 ) ( 416 -1408 192 ) ( 288 -1280 204 ) bricks/b_mf_v3 0 -32 -180 1 -1 0 0 0 +} +// brush 1579 +{ +( 416 -1152 224 ) ( 392 -1152 224 ) ( 392 -1152 96 ) bricks/b_mf_v3 88 -32 -180 1 -1 0 0 0 +( 552 -1230 192 ) ( 576 -1230 192 ) ( 576 -1205 176 ) bricks/b_mf_v5 32 0 -180 1 1 0 0 0 +( 392 -1160 176 ) ( 392 -1176 176 ) ( 416 -1168 176 ) bricks/b_mf_v3 88 0 -180 1 -1 0 0 0 +( 416 -1230 192 ) ( 392 -1230 192 ) ( 392 -1152 192 ) bricks/b_mf_v3 88 0 -180 1 -1 0 0 0 +( 128 -344 480 ) ( 128 -1488 480 ) ( 128 -344 -32 ) bricks/b_mf_v3 0 -32 -180 1 -1 0 0 0 +( 160 -1152 176 ) ( 416 -1408 176 ) ( 288 -1280 192 ) bricks/b_mf_v3 0 -32 -180 1 -1 0 0 0 +} +// brush 1580 +{ +( 416 -1152 224 ) ( 392 -1152 224 ) ( 392 -1152 96 ) bricks/b_mf_v3 88 -32 -180 1 -1 0 0 0 +( 552 -1205 176 ) ( 576 -1205 176 ) ( 576 -1191 160 ) bricks/b_mf_v5 32 -32 -180 1 -1 0 0 0 +( 392 -1160 160 ) ( 392 -1176 160 ) ( 416 -1168 160 ) bricks/b_mf_v3 88 0 -180 1 -1 0 0 0 +( 416 -1205 176 ) ( 392 -1205 176 ) ( 392 -1152 176 ) bricks/b_mf_v3 88 0 -180 1 -1 0 0 0 +( 128 -344 480 ) ( 128 -1488 480 ) ( 128 -344 -32 ) bricks/b_mf_v3 0 -32 -180 1 -1 0 0 0 +( 160 -1152 160 ) ( 416 -1408 160 ) ( 288 -1280 176 ) bricks/b_mf_v3 0 -32 -180 1 -1 0 0 0 +} +// brush 1581 +{ +( 416 -1152 224 ) ( 392 -1152 224 ) ( 392 -1152 96 ) bricks/b_mf_v3 88 -32 -180 1 -1 0 0 0 +( 552 -1191 160 ) ( 576 -1191 160 ) ( 576 -1182 144 ) bricks/b_mf_v5 32 -32 -180 1 -1 0 0 0 +( 392 -1160 144 ) ( 392 -1168 144 ) ( 416 -1164 144 ) bricks/b_mf_v3 88 0 -180 1 -1 0 0 0 +( 416 -1191 160 ) ( 392 -1191 160 ) ( 392 -1152 160 ) bricks/b_mf_v3 88 0 -180 1 -1 0 0 0 +( 128 -344 480 ) ( 128 -1488 480 ) ( 128 -344 -32 ) bricks/b_mf_v3 0 -32 -180 1 -1 0 0 0 +( 160 -1152 144 ) ( 416 -1408 144 ) ( 288 -1280 160 ) bricks/b_mf_v3 0 -32 -180 1 -1 0 0 0 +} +// brush 1582 +{ +( 416 -1152 224 ) ( 392 -1152 224 ) ( 392 -1152 96 ) bricks/b_mf_v3 88 -32 -180 1 -1 0 0 0 +( 552 -1182 144 ) ( 576 -1182 144 ) ( 576 -1175 128 ) bricks/b_mf_v5 32 -32 -180 1 -1 0 0 0 +( 392 -1159 128 ) ( 392 -1168 128 ) ( 416 -1163 128 ) bricks/b_mf_v3 88 0 -180 1 -1 0 0 0 +( 416 -1182 144 ) ( 392 -1182 144 ) ( 392 -1152 144 ) bricks/b_mf_v3 88 0 -180 1 -1 0 0 0 +( 128 -344 480 ) ( 128 -1488 480 ) ( 128 -344 -32 ) bricks/b_mf_v3 0 -32 -180 1 -1 0 0 0 +( 160 -1152 128 ) ( 416 -1408 128 ) ( 288 -1280 144 ) bricks/b_mf_v3 0 -32 -180 1 -1 0 0 0 +} +// brush 1583 +{ +( 416 -1152 224 ) ( 392 -1152 224 ) ( 392 -1152 96 ) bricks/b_mf_v3 88 -32 -180 1 -1 0 0 0 +( 552 -1175 128 ) ( 576 -1175 128 ) ( 576 -1171 112 ) bricks/b_mf_v5 32 -32 -180 1 -1 0 0 0 +( 392 -1171 112 ) ( 416 -1171 112 ) ( 416 -1152 112 ) bricks/b_mf_v3 88 0 -180 1 -1 0 0 0 +( 416 -1175 128 ) ( 392 -1175 128 ) ( 392 -1152 128 ) bricks/b_mf_v3 88 0 -180 1 -1 0 0 0 +( 128 -344 480 ) ( 128 -1488 480 ) ( 128 -344 -32 ) bricks/b_mf_v3 0 -32 -180 1 -1 0 0 0 +( 160 -1152 112 ) ( 416 -1408 112 ) ( 288 -1280 128 ) bricks/b_mf_v3 0 -32 -180 1 -1 0 0 0 +} +// brush 1584 +{ +( 416 -1152 224 ) ( 392 -1152 224 ) ( 392 -1152 96 ) bricks/b_mf_v3 88 -32 -180 1 -1 0 0 0 +( 552 -1171 16 ) ( 552 -1171 32 ) ( 576 -1171 24 ) bricks/b_mf_v5 32 -32 -180 1 -1 0 0 0 +( 392 -1152 96 ) ( 392 -1200 96 ) ( 416 -1176 96 ) bricks/b_mf_v3 88 0 -180 1 -1 0 0 0 +( 392 -1168 112 ) ( 392 -1157 112 ) ( 416 -1162 112 ) bricks/b_mf_v3 88 0 -180 1 -1 0 0 0 +( 128 -344 480 ) ( 128 -1488 480 ) ( 128 -344 -32 ) bricks/b_mf_v3 -8 32 -180 1 1 0 0 0 +( 160 -1152 96 ) ( 416 -1408 96 ) ( 288 -1280 112 ) bricks/b_mf_v3 -8 32 -180 1 1 0 0 0 +} +// brush 1585 +{ +( 288 -568 0 ) ( 284 -568 0 ) ( 284 -584 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 284 -584 132 ) ( 284 -568 132 ) ( 288 -568 132 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 288 -580 4 ) ( 288 -580 132 ) ( 288 -564 132 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 284 -568 132 ) ( 284 -584 132 ) ( 284 -584 4 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 288 -580 128 ) ( 288 -580 0 ) ( 284 -580 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 288 -568 0 ) ( 288 -568 128 ) ( 284 -568 128 ) metals/mt_pv_m26 -155 20 0 1 1 0 8388608 0 +} +// brush 1586 +{ +( 292 -568 0 ) ( 288 -568 0 ) ( 288 -584 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 288 -584 132 ) ( 288 -568 132 ) ( 292 -568 132 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 292 -584 128 ) ( 292 -568 128 ) ( 292 -568 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 288 -580 132 ) ( 288 -580 4 ) ( 288 -564 4 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 288 -568 128 ) ( 288 -568 0 ) ( 292 -568 0 ) metals/mt_pv_m26 -37 20 0 1 1 0 8388608 0 +( 288 -580 0 ) ( 288 -580 128 ) ( 292 -580 128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 1587 +{ +( 392 -572 0 ) ( 312 -572 0 ) ( 312 -580 0 ) metals/mt_pv_m7m -25 0 0 1 1 0 33554432 0 +( 312 -580 128 ) ( 312 -572 128 ) ( 392 -572 128 ) metals/mt_pv_m7m -25 0 0 1 1 0 33554432 0 +( 312 -580 128 ) ( 392 -580 128 ) ( 392 -580 0 ) metals/mt_pv_m7m -25 0 0 1 1 0 33554432 0 +( 392 -580 128 ) ( 392 -572 128 ) ( 392 -572 0 ) metals/mt_pv_m7m -25 0 0 1 1 0 33554432 0 +( 392 -572 128 ) ( 312 -572 128 ) ( 312 -572 0 ) metals/mt_pv_m7m -25 0 0 1 1 0 8388608 0 +( 292 -572 128 ) ( 292 -580 128 ) ( 292 -580 0 ) metals/mt_pv_m7m -25 0 0 1 1 0 33554432 0 +} +// brush 1588 +{ +( 256 -572 0 ) ( 184 -572 0 ) ( 184 -580 0 ) metals/mt_pv_m7m -25 0 0 1 1 0 33554432 0 +( 184 -580 128 ) ( 184 -572 128 ) ( 256 -572 128 ) metals/mt_pv_m7m -25 0 0 1 1 0 33554432 0 +( 184 -580 128 ) ( 256 -580 128 ) ( 256 -580 0 ) metals/mt_pv_m7m -25 0 0 1 1 0 33554432 0 +( 284 -580 128 ) ( 284 -572 128 ) ( 284 -572 0 ) metals/mt_pv_m7m -25 0 0 1 1 0 33554432 0 +( 256 -572 128 ) ( 184 -572 128 ) ( 184 -572 0 ) metals/mt_pv_m7m -40 0 0 1 1 0 8388608 0 +( 184 -572 128 ) ( 184 -580 128 ) ( 184 -580 0 ) metals/mt_pv_m7m -25 0 0 1 1 0 33554432 0 +} +// brush 1589 +{ +( 176 -584 0 ) ( 184 -584 0 ) ( 184 -568 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 184 -568 132 ) ( 184 -584 132 ) ( 176 -584 132 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 184 -568 24 ) ( 176 -568 24 ) ( 176 -568 8 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 179 -568 24 ) ( 179 -584 24 ) ( 179 -584 8 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 177 -580 24 ) ( 185 -580 24 ) ( 185 -580 8 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 184 -584 24 ) ( 184 -568 24 ) ( 184 -568 8 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 1590 +{ +( 400 -568 0 ) ( 392 -568 0 ) ( 392 -584 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 392 -584 132 ) ( 392 -568 132 ) ( 400 -568 132 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 392 -580 24 ) ( 400 -580 24 ) ( 400 -580 8 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 397 -584 24 ) ( 397 -568 24 ) ( 397 -568 8 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 400 -568 24 ) ( 392 -568 24 ) ( 392 -568 8 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 392 -568 28 ) ( 392 -584 28 ) ( 392 -584 12 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 1591 +{ +( 706 -96 132 ) ( 698 -96 132 ) ( 698 -160 132 ) metals/mt_sr_b1a 0 0 270 1 1 134217728 0 0 +( 698 -160 160 ) ( 698 -96 160 ) ( 706 -96 160 ) metals/mt_sr_b1a 0 0 270 1 1 134217728 0 0 +( 698 -160 128 ) ( 706 -160 128 ) ( 706 -160 96 ) metals/mt_sr_b1a 0 0 0 1 1 134217728 0 0 +( 704 -160 128 ) ( 704 -96 128 ) ( 704 -96 96 ) metals/mt_sr_b1a 64 64 0 -0.500000 0.500000 134217728 0 0 +( 706 -96 128 ) ( 698 -96 128 ) ( 698 -96 96 ) metals/mt_sr_b1a 0 0 0 1 1 134217728 0 0 +( 703 -96 128 ) ( 703 -160 128 ) ( 703 -160 96 ) props2/si_st_m3a 32 32 0 -1 1 134217728 8388608 0 +} +// brush 1592 +{ +( -120 0 64 ) ( -120 16 64 ) ( -72 16 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -120 0 64 ) ( -72 0 64 ) ( -72 0 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -96 0 64 ) ( -96 16 64 ) ( -96 16 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -72 16 64 ) ( -120 16 64 ) ( -120 16 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -576 8 64 ) ( -576 -8 64 ) ( -576 -8 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -576 0 0 ) ( -560 0 0 ) ( -568 16 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 1593 +{ +( -64 384 256 ) ( -64 400 256 ) ( 384 400 256 ) bricks/b_sr_20 -64 16 0 1 1 0 0 0 +( -32 384 224 ) ( 16 384 224 ) ( -8 400 224 ) common/li_sr_v27 8 0 0 1 1 0 1 20000 +( 24 384 224 ) ( 24 392 224 ) ( 24 388 256 ) bricks/b_sr_20 -80 0 0 1 1 0 0 0 +( 40 400 224 ) ( 40 384 224 ) ( 40 392 256 ) bricks/b_sr_20 -80 0 0 1 1 0 0 0 +( 24 416 224 ) ( 40 416 224 ) ( 32 416 256 ) bricks/b_sr_20 -80 0 0 1 1 0 0 0 +( 40 400 224 ) ( 24 400 224 ) ( 32 400 256 ) bricks/b_sr_20 -80 0 0 1 1 0 0 0 +} +// brush 1594 +{ +( -64 384 256 ) ( -64 400 256 ) ( 384 400 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 384 256 ) ( 384 384 256 ) ( 384 384 128 ) bricks/b_sr_20 0 -64 0 1 1 0 0 0 +( -32 384 224 ) ( 16 384 224 ) ( -8 400 224 ) bricks/b_sr_20b 0 178 0 1 1 0 0 0 +( 24 384 224 ) ( 24 392 224 ) ( 24 388 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 40 400 224 ) ( 40 384 224 ) ( 40 392 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 24 400 224 ) ( 40 400 224 ) ( 32 400 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1595 +{ +( -64 384 256 ) ( -64 400 256 ) ( 384 400 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 384 448 256 ) ( -64 448 256 ) ( -64 448 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -32 384 224 ) ( 16 384 224 ) ( -8 400 224 ) bricks/b_sr_20b 0 178 0 1 1 0 0 0 +( 24 384 224 ) ( 24 392 224 ) ( 24 388 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 40 400 224 ) ( 40 384 224 ) ( 40 392 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 40 416 224 ) ( 24 416 224 ) ( 32 416 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1596 +{ +( -64 384 256 ) ( -64 400 256 ) ( 384 400 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 384 256 ) ( 384 384 256 ) ( 384 384 128 ) bricks/b_sr_20 0 -64 0 1 1 0 0 0 +( 384 448 256 ) ( -64 448 256 ) ( -64 448 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 96 400 64 ) ( 96 384 64 ) ( 96 392 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -32 384 224 ) ( 16 384 224 ) ( -8 400 224 ) bricks/b_sr_20b 0 178 0 1 1 0 0 0 +( 40 384 224 ) ( 40 400 224 ) ( 40 392 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1597 +{ +( -64 384 256 ) ( -64 400 256 ) ( 384 400 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 384 256 ) ( 384 384 256 ) ( 384 384 128 ) bricks/b_sr_20 0 -64 0 1 1 0 0 0 +( 384 448 256 ) ( -64 448 256 ) ( -64 448 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -32 384 64 ) ( -32 400 64 ) ( -32 392 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -32 384 224 ) ( 16 384 224 ) ( -8 400 224 ) bricks/b_sr_20b 0 178 0 1 1 0 0 0 +( 24 392 224 ) ( 24 384 224 ) ( 24 388 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1598 +{ +( 704 -328 184 ) ( 704 -312 184 ) ( 688 -312 184 ) common/li_sr_v27 8 0 90 1 1 134217728 1 40000 +( 688 -312 192 ) ( 704 -312 192 ) ( 704 -328 192 ) metals/mt_pv_m26y 0 1 90 1 1 134217728 0 0 +( 688 -312 192 ) ( 688 -328 192 ) ( 688 -328 64 ) metals/mt_pv_m26y 0 16 0 1 1 134217728 0 0 +( 688 -328 192 ) ( 704 -328 192 ) ( 704 -328 64 ) common/li_sr_v27 0 0 -180 1 -1 134217728 0 0 +( 704 -328 192 ) ( 704 -312 192 ) ( 704 -312 64 ) common/li_sr_v27 0 0 0 1 1 134217728 0 0 +( 704 -312 192 ) ( 688 -312 192 ) ( 688 -312 64 ) common/li_sr_v27 0 0 -180 1 -1 134217728 0 0 +} +// brush 1599 +{ +( 704 -336 184 ) ( 704 -328 184 ) ( 688 -328 184 ) metals/mt_pv_m26y 0 1 90 1 1 134217728 0 0 +( 688 -328 192 ) ( 704 -328 192 ) ( 704 -336 192 ) metals/mt_pv_m26y 0 1 90 1 1 134217728 0 0 +( 688 -336 192 ) ( 704 -336 192 ) ( 704 -336 184 ) metals/mt_pv_m26y 0 15 -180 1 -1 134217728 0 0 +( 704 -336 192 ) ( 704 -328 192 ) ( 704 -328 184 ) metals/mt_pv_m26y 0 16 0 1 1 134217728 0 0 +( 704 -328 192 ) ( 688 -328 192 ) ( 688 -328 184 ) metals/mt_pv_m26y 0 15 -180 1 -1 134217728 0 0 +( 696 -336 184 ) ( 688 -328 184 ) ( 692 -332 192 ) metals/mt_pv_m26y 24 16 0 1 1 134217728 0 0 +} +// brush 1600 +{ +( 704 -312 184 ) ( 704 -304 184 ) ( 688 -304 184 ) metals/mt_pv_m26y 0 1 90 1 1 134217728 0 0 +( 688 -304 192 ) ( 704 -304 192 ) ( 704 -312 192 ) metals/mt_pv_m26y 0 1 90 1 1 134217728 0 0 +( 688 -312 192 ) ( 704 -312 192 ) ( 704 -312 184 ) metals/mt_pv_m26y 0 15 -180 1 -1 134217728 0 0 +( 704 -312 192 ) ( 704 -304 192 ) ( 704 -304 184 ) metals/mt_pv_m26y 0 16 0 1 1 134217728 0 0 +( 704 -304 192 ) ( 688 -304 192 ) ( 688 -304 184 ) metals/mt_pv_m26y 0 15 -180 1 -1 134217728 0 0 +( 688 -312 184 ) ( 696 -304 184 ) ( 692 -308 192 ) metals/mt_pv_m26y -9 13 -180 1 -1 134217728 0 0 +} +// brush 1601 +{ +( 704 72 184 ) ( 704 80 184 ) ( 688 80 184 ) metals/mt_pv_m26y 0 -31 90 1 1 134217728 0 0 +( 688 80 192 ) ( 704 80 192 ) ( 704 72 192 ) metals/mt_pv_m26y 0 -31 90 1 1 134217728 0 0 +( 688 72 192 ) ( 704 72 192 ) ( 704 72 184 ) metals/mt_pv_m26y 0 15 -180 1 -1 134217728 0 0 +( 704 72 192 ) ( 704 80 192 ) ( 704 80 184 ) metals/mt_pv_m26y 0 16 0 1 1 134217728 0 0 +( 704 80 192 ) ( 688 80 192 ) ( 688 80 184 ) metals/mt_pv_m26y 0 15 -180 1 -1 134217728 0 0 +( 688 72 184 ) ( 696 80 184 ) ( 692 76 192 ) metals/mt_pv_m26y 0 16 0 1 1 134217728 0 0 +} +// brush 1602 +{ +( 704 48 184 ) ( 704 56 184 ) ( 688 56 184 ) metals/mt_pv_m26y 0 -31 90 1 1 134217728 0 0 +( 688 56 192 ) ( 704 56 192 ) ( 704 48 192 ) metals/mt_pv_m26y 0 -31 90 1 1 134217728 0 0 +( 688 48 192 ) ( 704 48 192 ) ( 704 48 184 ) metals/mt_pv_m26y 0 15 -180 1 -1 134217728 0 0 +( 704 48 192 ) ( 704 56 192 ) ( 704 56 184 ) metals/mt_pv_m26y 0 16 0 1 1 134217728 0 0 +( 704 56 192 ) ( 688 56 192 ) ( 688 56 184 ) metals/mt_pv_m26y 0 15 -180 1 -1 134217728 0 0 +( 696 48 184 ) ( 688 56 184 ) ( 692 52 192 ) metals/mt_pv_m26y 0 16 0 1 1 134217728 0 0 +} +// brush 1603 +{ +( 704 56 184 ) ( 704 72 184 ) ( 688 72 184 ) common/li_sr_v27 -8 0 90 1 1 134217728 1 40000 +( 688 72 192 ) ( 704 72 192 ) ( 704 56 192 ) metals/mt_pv_m26y 0 -31 90 1 1 134217728 0 0 +( 688 72 192 ) ( 688 56 192 ) ( 688 56 64 ) metals/mt_pv_m26y 0 16 0 1 1 134217728 0 0 +( 688 56 192 ) ( 704 56 192 ) ( 704 56 64 ) common/li_sr_v27 0 0 -180 1 -1 134217728 0 0 +( 704 56 192 ) ( 704 72 192 ) ( 704 72 64 ) common/li_sr_v27 0 0 0 1 1 134217728 0 0 +( 704 72 192 ) ( 688 72 192 ) ( 688 72 64 ) common/li_sr_v27 0 0 -180 1 -1 134217728 0 0 +} +// brush 1604 +{ +( -176 -864 504 ) ( -576 -864 504 ) ( -576 -1056 504 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -576 -1056 520 ) ( -576 -864 520 ) ( -176 -864 520 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -576 -1056 520 ) ( -176 -1056 520 ) ( -176 -1056 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 0 -1048 520 ) ( 0 -856 520 ) ( 0 -856 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -176 -864 520 ) ( -576 -864 520 ) ( -576 -864 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -576 -864 520 ) ( -576 -1056 520 ) ( -576 -1056 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 1605 +{ +( 40 -1056 512 ) ( -600 -1056 512 ) ( -600 -1088 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -600 -1088 576 ) ( -600 -1056 576 ) ( 40 -1056 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -600 -1088 576 ) ( 40 -1088 576 ) ( 40 -1088 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 0 -1088 576 ) ( 0 -1056 576 ) ( 0 -1056 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 40 -1056 576 ) ( -600 -1056 576 ) ( -600 -1056 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -600 -1056 576 ) ( -600 -1088 576 ) ( -600 -1088 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 1606 +{ +( 392 -864 520 ) ( -120 -864 520 ) ( -120 -408 200 ) floors/rf_sr_m1 56 32 0 1 1 0 0 0 +( -120 -864 520 ) ( 392 -864 520 ) ( 392 -864 192 ) floors/rf_sr_m1 -32 -56 90 1 1 0 0 0 +( 0 -408 192 ) ( 0 -424 192 ) ( 0 -416 520 ) floors/rf_sr_m1 56 168 0 1 1 0 0 0 +( -576 -864 192 ) ( -120 -408 192 ) ( -348 -636 520 ) floors/rf_sr_m1 -32 16 90 1 -1 0 0 0 +( 192 -512 320 ) ( 64 -512 320 ) ( 64 -528 320 ) floors/rf_sr_m1 -32 16 90 1 -1 0 0 0 +( 64 -528 448 ) ( 64 -512 448 ) ( 192 -512 448 ) floors/rf_sr_m1 -32 16 90 1 -1 0 0 0 +} +// brush 1607 +{ +( 392 -864 520 ) ( -120 -864 520 ) ( -120 -408 200 ) floors/rf_sr_m1 56 16 0 1 1 0 0 0 +( -120 -864 520 ) ( 392 -864 520 ) ( 392 -864 192 ) floors/rf_sr_m1 -32 -56 90 1 1 0 0 0 +( 0 -408 192 ) ( 0 -424 192 ) ( 0 -416 520 ) floors/rf_sr_m1 56 168 0 1 1 0 0 0 +( -576 -864 192 ) ( -120 -408 192 ) ( -348 -636 520 ) floors/rf_sr_m1 -32 16 90 1 -1 0 0 0 +( 64 -512 448 ) ( 64 -528 448 ) ( 192 -512 448 ) floors/rf_sr_m1 -32 16 90 1 -1 0 0 0 +} +// brush 1608 +{ +( 704 -512 256 ) ( 160 -512 256 ) ( 160 -528 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 160 -528 384 ) ( 704 -528 384 ) ( 704 -528 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 -512 384 ) ( 160 -512 384 ) ( 160 -512 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 192 -512 256 ) ( 192 -528 256 ) ( 192 -520 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 64 -528 256 ) ( 64 -512 256 ) ( 64 -520 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 64 -512 320 ) ( 192 -512 320 ) ( 64 -528 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 1609 +{ +( 160 -528 512 ) ( 160 -512 512 ) ( 704 -512 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 184 -528 512 ) ( 728 -528 512 ) ( 728 -528 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 -512 512 ) ( 160 -512 512 ) ( 160 -512 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 192 -512 384 ) ( 192 -528 384 ) ( 192 -520 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 64 -528 384 ) ( 64 -512 384 ) ( 64 -520 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 64 -512 448 ) ( 64 -528 448 ) ( 192 -512 448 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1610 +{ +( 192 -512 320 ) ( 64 -512 320 ) ( 64 -528 320 ) props/w_sr_m6d 0 -64 0 1 1 0 1 50 +( 64 -528 448 ) ( 64 -512 448 ) ( 192 -512 448 ) props/w_sr_m6d 0 -64 0 1 1 0 1 50 +( 64 -528 448 ) ( 192 -528 448 ) ( 192 -528 320 ) props/w_sr_m6d 0 -64 0 1 1 0 1 50 +( 192 -528 448 ) ( 192 -512 448 ) ( 192 -512 320 ) props/w_sr_m6d 0 -64 0 1 1 0 1 50 +( 192 -520 448 ) ( 64 -520 448 ) ( 64 -520 320 ) props/w_sr_m4a 0 64 0 1 -1 0 1 50 +( 64 -512 448 ) ( 64 -528 448 ) ( 64 -528 320 ) props/w_sr_m6d 0 -64 0 1 1 0 1 50 +} +// brush 1611 +{ +( 704 -512 256 ) ( 160 -512 256 ) ( 160 -528 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 160 -528 384 ) ( 160 -512 384 ) ( 704 -512 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 160 -528 384 ) ( 704 -528 384 ) ( 704 -528 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 -512 384 ) ( 160 -512 384 ) ( 160 -512 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 0 -512 384 ) ( 0 -528 384 ) ( 0 -528 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 64 -512 256 ) ( 64 -528 256 ) ( 64 -520 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 1612 +{ +( 704 -512 384 ) ( 160 -512 384 ) ( 160 -528 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 160 -528 512 ) ( 160 -512 512 ) ( 704 -512 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 184 -528 512 ) ( 728 -528 512 ) ( 728 -528 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 -512 512 ) ( 160 -512 512 ) ( 160 -512 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 0 -512 512 ) ( 0 -528 512 ) ( 0 -528 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 64 -512 384 ) ( 64 -528 384 ) ( 64 -520 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1613 +{ +( 704 -512 256 ) ( 160 -512 256 ) ( 160 -528 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 160 -528 384 ) ( 160 -512 384 ) ( 704 -512 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 160 -528 384 ) ( 704 -528 384 ) ( 704 -528 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 -512 384 ) ( 160 -512 384 ) ( 160 -512 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 256 -512 256 ) ( 256 -528 256 ) ( 256 -520 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 192 -528 256 ) ( 192 -512 256 ) ( 192 -520 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 1614 +{ +( 704 -512 384 ) ( 160 -512 384 ) ( 160 -528 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 160 -528 512 ) ( 160 -512 512 ) ( 704 -512 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 184 -528 512 ) ( 728 -528 512 ) ( 728 -528 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 -512 512 ) ( 160 -512 512 ) ( 160 -512 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 256 -512 384 ) ( 256 -528 384 ) ( 256 -520 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 192 -528 384 ) ( 192 -512 384 ) ( 192 -520 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1615 +{ +( 160 -528 512 ) ( 160 -512 512 ) ( 704 -512 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 184 -528 512 ) ( 728 -528 512 ) ( 728 -528 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 -512 512 ) ( 160 -512 512 ) ( 160 -512 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 448 -512 384 ) ( 448 -528 384 ) ( 448 -520 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 256 -528 384 ) ( 256 -512 384 ) ( 256 -520 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 256 -512 448 ) ( 256 -528 448 ) ( 448 -512 448 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1616 +{ +( 704 -512 256 ) ( 160 -512 256 ) ( 160 -528 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 160 -528 384 ) ( 704 -528 384 ) ( 704 -528 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 -512 384 ) ( 160 -512 384 ) ( 160 -512 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 448 -512 256 ) ( 448 -528 256 ) ( 448 -520 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 256 -528 256 ) ( 256 -512 256 ) ( 256 -520 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 256 -512 320 ) ( 448 -512 320 ) ( 256 -528 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 1617 +{ +( 448 -512 320 ) ( 256 -512 320 ) ( 256 -528 320 ) props/w_sr_m6d 0 -64 0 1 1 0 1 100 +( 256 -528 448 ) ( 256 -512 448 ) ( 448 -512 448 ) props/w_sr_m6d 0 -64 0 1 1 0 1 100 +( 256 -528 448 ) ( 448 -528 448 ) ( 448 -528 320 ) props/w_sr_m6d 0 -64 0 1 1 0 1 100 +( 448 -528 448 ) ( 448 -512 448 ) ( 448 -512 320 ) props/w_sr_m6d 0 -64 0 1 1 0 1 100 +( 448 -520 448 ) ( 256 -520 448 ) ( 256 -520 320 ) props/w_sr_m4a 0 64 0 1 -1 0 1 100 +( 256 -512 448 ) ( 256 -528 448 ) ( 256 -528 320 ) props/w_sr_m6d 0 -64 0 1 1 0 1 100 +} +// brush 1618 +{ +( 704 -512 384 ) ( 160 -512 384 ) ( 160 -528 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 160 -528 512 ) ( 160 -512 512 ) ( 704 -512 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 184 -528 512 ) ( 728 -528 512 ) ( 728 -528 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 -512 512 ) ( 160 -512 512 ) ( 160 -512 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 512 -512 384 ) ( 512 -528 384 ) ( 512 -520 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 448 -528 384 ) ( 448 -512 384 ) ( 448 -520 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1619 +{ +( 704 -512 256 ) ( 160 -512 256 ) ( 160 -528 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 160 -528 384 ) ( 160 -512 384 ) ( 704 -512 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 160 -528 384 ) ( 704 -528 384 ) ( 704 -528 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 -512 384 ) ( 160 -512 384 ) ( 160 -512 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 512 -512 256 ) ( 512 -528 256 ) ( 512 -520 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 448 -528 256 ) ( 448 -512 256 ) ( 448 -520 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 1620 +{ +( 160 -528 512 ) ( 160 -512 512 ) ( 704 -512 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 184 -528 512 ) ( 728 -528 512 ) ( 728 -528 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 -512 512 ) ( 160 -512 512 ) ( 160 -512 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 640 -512 384 ) ( 640 -528 384 ) ( 640 -520 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 512 -528 384 ) ( 512 -512 384 ) ( 512 -520 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 512 -512 448 ) ( 512 -528 448 ) ( 640 -512 448 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1621 +{ +( 704 -512 256 ) ( 160 -512 256 ) ( 160 -528 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 160 -528 384 ) ( 704 -528 384 ) ( 704 -528 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 -512 384 ) ( 160 -512 384 ) ( 160 -512 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 640 -512 256 ) ( 640 -528 256 ) ( 640 -520 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 512 -528 256 ) ( 512 -512 256 ) ( 512 -520 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 512 -512 320 ) ( 640 -512 320 ) ( 512 -528 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +} +// brush 1622 +{ +( 640 -512 320 ) ( 512 -512 320 ) ( 512 -528 320 ) props/w_sr_m6d 0 -64 0 1 1 0 1 200 +( 512 -528 448 ) ( 512 -512 448 ) ( 640 -512 448 ) props/w_sr_m6d 0 -64 0 1 1 0 1 200 +( 512 -528 448 ) ( 640 -528 448 ) ( 640 -528 320 ) props/w_sr_m6d 0 -64 0 1 1 0 1 200 +( 640 -528 448 ) ( 640 -512 448 ) ( 640 -512 320 ) props/w_sr_m6d 0 -64 0 1 1 0 1 200 +( 640 -520 448 ) ( 512 -520 448 ) ( 512 -520 320 ) props/w_sr_m4a 0 64 0 1 1 0 1 200 +( 512 -512 448 ) ( 512 -528 448 ) ( 512 -528 320 ) props/w_sr_m6d 0 -64 0 1 1 0 1 200 +} +// brush 1623 +{ +( 704 -512 256 ) ( 160 -512 256 ) ( 160 -528 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 160 -528 384 ) ( 160 -512 384 ) ( 704 -512 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 160 -528 384 ) ( 704 -528 384 ) ( 704 -528 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 -528 384 ) ( 704 -512 384 ) ( 704 -512 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 -512 384 ) ( 160 -512 384 ) ( 160 -512 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 640 -528 256 ) ( 640 -512 256 ) ( 640 -520 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 1624 +{ +( 704 -512 384 ) ( 160 -512 384 ) ( 160 -528 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 160 -528 512 ) ( 160 -512 512 ) ( 704 -512 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 184 -528 512 ) ( 728 -528 512 ) ( 728 -528 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 -528 512 ) ( 704 -512 512 ) ( 704 -512 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 -512 512 ) ( 160 -512 512 ) ( 160 -512 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 640 -528 384 ) ( 640 -512 384 ) ( 640 -520 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1625 +{ +( 16 -656 256 ) ( 0 -656 256 ) ( 0 -1056 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 0 -1056 384 ) ( 0 -656 384 ) ( 16 -656 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 0 -1088 384 ) ( 16 -1088 384 ) ( 16 -1088 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 16 -1056 384 ) ( 16 -656 384 ) ( 16 -656 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 16 -528 384 ) ( 0 -528 384 ) ( 0 -528 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 0 -528 384 ) ( 0 -928 384 ) ( 0 -928 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1626 +{ +( 16 -656 512 ) ( -16 -656 512 ) ( -16 -864 512 ) bricks/b_sr_23 16 0 270 1 1 0 0 0 +( -16 -864 576 ) ( -16 -656 576 ) ( 16 -656 576 ) bricks/b_sr_23 16 0 0 1 1 0 0 0 +( -16 -1088 576 ) ( 16 -1088 576 ) ( 16 -1088 512 ) bricks/b_sr_23 16 0 0 1 1 0 0 0 +( 16 -864 576 ) ( 16 -656 576 ) ( 16 -656 512 ) bricks/b_sr_23 16 0 0 1 1 0 0 0 +( 16 -528 576 ) ( -16 -528 576 ) ( -16 -528 512 ) bricks/b_sr_23 16 0 0 1 1 0 0 0 +( -16 -656 576 ) ( -16 -864 576 ) ( -16 -864 512 ) bricks/b_sr_23 16 0 0 1 1 0 0 0 +} +// brush 1627 +{ +( 16 -656 384 ) ( 0 -656 384 ) ( 0 -864 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 0 -864 512 ) ( 0 -656 512 ) ( 16 -656 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 8 -1088 512 ) ( 24 -1088 512 ) ( 24 -1088 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 16 -864 512 ) ( 16 -656 512 ) ( 16 -656 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 16 -528 512 ) ( 0 -528 512 ) ( 0 -528 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 0 -528 512 ) ( 0 -736 512 ) ( 0 -736 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1628 +{ +( 704 -496 512 ) ( 160 -496 512 ) ( 160 -528 512 ) bricks/b_sr_23 16 0 0 1 1 0 0 0 +( 160 -528 576 ) ( 160 -496 576 ) ( 704 -496 576 ) bricks/b_sr_23 16 0 0 1 1 0 0 0 +( 160 -528 576 ) ( 704 -528 576 ) ( 704 -528 512 ) bricks/b_sr_23 16 0 0 1 1 0 0 0 +( 688 -528 576 ) ( 688 -496 576 ) ( 688 -496 512 ) bricks/b_sr_23 16 0 0 1 1 0 0 0 +( 704 -496 576 ) ( 160 -496 576 ) ( 160 -496 512 ) bricks/b_sr_23 16 0 0 1 1 0 0 0 +( -16 -496 576 ) ( -16 -528 576 ) ( -16 -528 512 ) bricks/b_sr_23 16 0 0 1 1 0 0 0 +} +// brush 1629 +{ +( 704 -496 224 ) ( 160 -496 224 ) ( 160 -528 224 ) bricks/b_pv_v1c 0 136 180 1 1 0 0 0 +( 160 -528 256 ) ( 160 -496 256 ) ( 704 -496 256 ) bricks/b_pv_v1c 0 16 0 1 1 0 0 0 +( 160 -528 256 ) ( 704 -528 256 ) ( 704 -528 224 ) bricks/b_pv_v1c 0 0 0 1 1 0 0 0 +( 704 -528 256 ) ( 704 -496 256 ) ( 704 -496 224 ) bricks/b_pv_v1c 0 0 0 1 1 0 0 0 +( 704 -496 256 ) ( 160 -496 256 ) ( 160 -496 224 ) bricks/b_pv_v1c 0 0 0 1 1 0 0 0 +( 160 -496 256 ) ( 160 -528 256 ) ( 160 -528 224 ) bricks/b_pv_v1c 0 0 0 1 1 0 0 0 +} +// brush 1630 +{ +( 704 -512 96 ) ( 160 -512 96 ) ( 160 -528 96 ) bricks/b_sr_20 0 96 0 1 1 0 0 0 +( 160 -528 224 ) ( 160 -512 224 ) ( 704 -512 224 ) bricks/b_sr_20 0 96 0 1 1 0 0 0 +( 160 -528 224 ) ( 704 -528 224 ) ( 704 -528 32 ) bricks/b_sr_20 0 -32 0 1 1 0 0 0 +( 704 -528 224 ) ( 704 -512 224 ) ( 704 -512 32 ) bricks/b_sr_20 0 -32 0 1 1 0 0 0 +( 704 -512 224 ) ( 160 -512 224 ) ( 160 -512 32 ) bricks/b_mf_v2 -96 -32 180 1 -1 0 0 0 +( 416 -512 224 ) ( 416 -528 224 ) ( 416 -528 32 ) bricks/b_sr_20 0 -32 0 1 1 0 0 0 +} +// brush 1631 +{ +( 336 -512 0 ) ( 160 -512 0 ) ( 160 -528 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 160 -528 96 ) ( 160 -512 96 ) ( 336 -512 96 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 160 -528 32 ) ( 336 -528 32 ) ( 336 -528 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 704 -528 32 ) ( 704 -512 32 ) ( 704 -512 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 336 -512 32 ) ( 160 -512 32 ) ( 160 -512 0 ) bricks/c_pv_m2 -96 -1 -180 1 -1 0 0 0 +( 416 -512 32 ) ( 416 -528 32 ) ( 416 -528 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1632 +{ +( 1024 256 -16 ) ( 512 256 -16 ) ( 512 -256 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 512 -256 0 ) ( 512 256 0 ) ( 1024 256 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1024 256 0 ) ( 512 256 0 ) ( 512 256 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 512 -320 0 ) ( 512 -832 0 ) ( 512 -832 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -64 128 0 ) ( 752 128 0 ) ( -64 128 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 720 272 -16 ) ( 720 248 -16 ) ( 720 260 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1633 +{ +( 1024 272 0 ) ( 528 272 0 ) ( 528 256 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 528 256 128 ) ( 528 272 128 ) ( 1024 272 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 528 256 128 ) ( 1024 256 128 ) ( 1024 256 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1024 272 128 ) ( 528 272 128 ) ( 528 272 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 528 272 128 ) ( 528 256 128 ) ( 528 256 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 720 272 0 ) ( 720 248 0 ) ( 720 260 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1634 +{ +( 1024 272 128 ) ( 528 272 128 ) ( 528 256 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 528 256 256 ) ( 528 272 256 ) ( 1024 272 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 528 256 256 ) ( 1024 256 256 ) ( 1024 256 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1024 272 256 ) ( 528 272 256 ) ( 528 272 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 528 272 256 ) ( 528 256 256 ) ( 528 256 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 720 272 128 ) ( 720 248 128 ) ( 720 260 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1635 +{ +( 1024 272 256 ) ( 528 272 256 ) ( 528 256 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 528 256 384 ) ( 528 272 384 ) ( 1024 272 384 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 528 256 384 ) ( 1024 256 384 ) ( 1024 256 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1024 272 384 ) ( 528 272 384 ) ( 528 272 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 528 272 384 ) ( 528 256 384 ) ( 528 256 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 720 272 256 ) ( 720 248 256 ) ( 720 260 384 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1636 +{ +( 560 48 -16 ) ( -256 48 -16 ) ( -256 -632 -16 ) bricks/s_sr_m12ab 64 -80 0 1 1 0 0 0 +( -256 -632 0 ) ( -256 48 0 ) ( 560 48 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -272 -576 0 ) ( 544 -576 0 ) ( 544 -576 -16 ) bricks/s_sr_m12ab 64 0 0 1 1 0 0 0 +( 768 128 0 ) ( -48 128 0 ) ( -48 128 -16 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -64 120 0 ) ( -64 -560 0 ) ( -64 -560 -16 ) bricks/s_sr_m12ab 80 0 0 1 1 0 0 0 +( 704 -752 -16 ) ( 704 -784 -16 ) ( 704 -768 0 ) bricks/s_sr_m12ab 80 0 0 1 1 0 0 0 +} +// brush 1637 +{ +( -648 64 192 ) ( -648 -448 192 ) ( -192 -448 192 ) floors/rf_sr_m1 -32 -16 90 1 1 0 0 0 +( -576 -448 520 ) ( -576 64 520 ) ( -120 64 200 ) floors/rf_sr_m1 -32 -16 90 1 1 0 0 0 +( 120 64 320 ) ( -136 64 320 ) ( -136 64 256 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( -120 -416 200 ) ( -120 64 200 ) ( -120 64 192 ) floors/rf_sr_m1 -32 -8 0 1 1 0 0 0 +( -576 64 520 ) ( -576 -448 520 ) ( -576 -448 192 ) floors/rf_sr_m1 -32 -16 90 1 1 0 0 0 +( -120 -408 192 ) ( -576 -864 192 ) ( -348 -636 520 ) floors/rf_sr_m1 -32 -16 90 1 1 0 0 0 +} +// brush 1638 +{ +( 192 -176 64 ) ( 176 -176 64 ) ( 176 -304 64 ) metals/mt_pv_m7m -32 -31 -90 1 1 0 0 0 +( 168 -864 256 ) ( 184 -864 256 ) ( 184 -864 64 ) metals/mt_pv_m7m 32 0 0 1 1 0 0 0 +( -128 -176 256 ) ( -128 -304 256 ) ( -128 -304 64 ) metals/mt_pv_m7m -32 0 -180 1 -1 0 0 0 +( 176 -416 64 ) ( 192 -416 64 ) ( 184 -416 256 ) bricks/b_mf_v2a 32 63 0 1 1 0 0 0 +( 512 -416 192 ) ( 512 -432 192 ) ( -128 -424 192 ) bricks/b_mf_v2a -96 32 -90 1 1 0 0 0 +( -96 -416 64 ) ( -96 -432 64 ) ( -96 -424 144 ) bricks/b_mf_v2a -96 63 -180 1 -1 0 0 0 +} +// brush 1639 +{ +( 448 -176 64 ) ( 432 -176 64 ) ( 432 -304 64 ) metals/mt_pv_m7m -32 -31 -90 1 1 0 0 0 +( 424 -864 256 ) ( 440 -864 256 ) ( 440 -864 64 ) metals/mt_pv_m7m 32 0 0 1 1 0 0 0 +( 128 -176 256 ) ( 128 -304 256 ) ( 128 -304 64 ) metals/mt_pv_m7m -32 0 -180 1 -1 0 0 0 +( 432 -416 64 ) ( 448 -416 64 ) ( 440 -416 256 ) bricks/b_mf_v2a 32 63 0 1 1 0 0 0 +( 768 -416 192 ) ( 768 -432 192 ) ( 128 -424 192 ) bricks/b_mf_v2a -96 -95 -90 1 1 0 0 0 +( 160 -416 64 ) ( 160 -432 64 ) ( 160 -424 144 ) bricks/b_mf_v2a -96 63 -180 1 -1 0 0 0 +} +// brush 1640 +{ +( 176 -304 192 ) ( 176 -176 192 ) ( 192 -176 192 ) bricks/b_mf_v2a 32 63 0 1 1 0 0 0 +( 168 -864 256 ) ( 184 -864 256 ) ( 184 -864 64 ) metals/mt_pv_m7m 32 0 0 1 1 0 0 0 +( 176 -416 64 ) ( 192 -416 64 ) ( 184 -416 256 ) bricks/b_mf_v2a 32 63 0 1 1 0 0 0 +( 512 -432 176 ) ( 512 -416 176 ) ( -128 -424 176 ) bricks/b_mf_v2a -96 32 -90 1 1 0 0 0 +( -96 -432 64 ) ( -96 -416 64 ) ( -96 -424 144 ) bricks/b_mf_v2a -96 63 -180 1 -1 0 0 0 +( 128 -800 176 ) ( 128 -864 176 ) ( 128 -832 192 ) bricks/b_mf_v2a -96 63 -180 1 -1 0 0 0 +} +// brush 1641 +{ +( 168 -864 256 ) ( 184 -864 256 ) ( 184 -864 64 ) metals/mt_pv_m7m 32 0 0 1 1 0 0 0 +( 176 -416 64 ) ( 192 -416 64 ) ( 184 -416 256 ) props/w_sr_ba7b 0 31 0 0.500000 0.500000 0 1 20 +( 512 -416 176 ) ( 512 -432 176 ) ( -128 -424 176 ) bricks/b_mf_v2a -96 32 -90 1 1 0 0 0 +( 512 -432 144 ) ( 512 -416 144 ) ( -128 -424 144 ) bricks/b_mf_v2a -96 32 -90 1 1 0 0 0 +( -96 -432 64 ) ( -96 -416 64 ) ( -96 -424 144 ) bricks/b_mf_v2a -96 63 -180 1 -1 0 0 0 +( 128 -800 144 ) ( 128 -864 144 ) ( 128 -832 176 ) bricks/b_mf_v2a -96 63 -180 1 -1 0 0 0 +} +// brush 1642 +{ +( 192 -176 64 ) ( 176 -176 64 ) ( 176 -304 64 ) metals/mt_pv_m7m -32 -31 -90 1 1 0 0 0 +( 168 -864 256 ) ( 184 -864 256 ) ( 184 -864 64 ) metals/mt_pv_m7m 32 0 0 1 1 0 0 0 +( 176 -416 64 ) ( 192 -416 64 ) ( 184 -416 256 ) bricks/b_mf_v2a 32 63 0 1 1 0 0 0 +( 512 -416 144 ) ( 512 -432 144 ) ( -128 -424 144 ) bricks/b_mf_v2a -96 32 -90 1 1 0 0 0 +( -96 -432 64 ) ( -96 -416 64 ) ( -96 -424 144 ) bricks/b_mf_v2a -96 63 -180 1 -1 0 0 0 +( 128 -800 64 ) ( 128 -864 64 ) ( 128 -832 144 ) bricks/b_mf_v2a -96 63 -180 1 -1 0 0 0 +} +// brush 1643 +{ +( -64 16 64 ) ( -576 16 64 ) ( -576 0 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -576 0 256 ) ( -576 16 256 ) ( -64 16 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -576 0 256 ) ( -64 0 256 ) ( -64 0 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 0 256 ) ( -64 16 256 ) ( -64 16 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 16 256 ) ( -576 16 256 ) ( -576 16 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -576 16 256 ) ( -576 0 256 ) ( -576 0 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1644 +{ +( 16 584 448 ) ( -64 584 448 ) ( -64 560 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -64 560 512 ) ( -64 584 512 ) ( 16 584 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -64 568 576 ) ( 16 568 576 ) ( 16 568 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 512 568 576 ) ( 512 592 576 ) ( 512 592 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 56 752 576 ) ( -24 752 576 ) ( -24 752 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -64 584 576 ) ( -64 560 576 ) ( -64 560 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 1645 +{ +( -80 576 448 ) ( 384 576 448 ) ( 384 384 320 ) floors/rf_sr_m1 0 -8 0 1 1 0 0 0 +( 384 760 320 ) ( 384 776 320 ) ( 384 776 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 768 320 ) ( -64 752 320 ) ( -64 752 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 400 576 448 ) ( -64 576 448 ) ( -64 576 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -80 424 320 ) ( -80 384 320 ) ( 384 404 320 ) bricks/c_sr_m9a 16 24 0 1 1 0 0 0 +} +// brush 1646 +{ +( 384 576 448 ) ( -80 576 448 ) ( -80 768 320 ) floors/rf_sr_m1 0 -8 0 1 1 0 0 0 +( 384 760 320 ) ( 384 776 320 ) ( 384 776 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 768 320 ) ( -64 752 320 ) ( -64 752 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -64 576 448 ) ( 400 576 448 ) ( 400 576 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -80 424 320 ) ( -80 384 320 ) ( 384 404 320 ) bricks/c_sr_m9a 16 24 0 1 1 0 0 0 +} +// brush 1647 +{ +( -576 528 512 ) ( -592 528 512 ) ( -592 384 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -592 384 576 ) ( -592 528 576 ) ( -576 528 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -616 -1056 576 ) ( -600 -1056 576 ) ( -600 -1056 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -576 384 576 ) ( -576 528 576 ) ( -576 528 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -576 528 576 ) ( -592 528 576 ) ( -592 528 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -600 184 576 ) ( -600 40 576 ) ( -600 40 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 1648 +{ +( 720 528 448 ) ( 528 528 448 ) ( 528 512 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 528 512 576 ) ( 528 528 576 ) ( 720 528 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 528 512 512 ) ( 720 512 512 ) ( 720 512 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 720 512 512 ) ( 720 528 512 ) ( 720 528 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 720 528 512 ) ( 528 528 512 ) ( 528 528 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 512 528 512 ) ( 512 512 512 ) ( 512 512 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 1649 +{ +( 1024 272 384 ) ( 528 272 384 ) ( 528 256 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 528 256 448 ) ( 528 272 448 ) ( 1024 272 448 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 528 256 448 ) ( 1024 256 448 ) ( 1024 256 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 1032 512 448 ) ( 536 512 448 ) ( 536 512 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 528 272 448 ) ( 528 256 448 ) ( 528 256 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 704 272 384 ) ( 704 256 384 ) ( 704 264 448 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +} +// brush 1650 +{ +( -512 80 448 ) ( -512 96 448 ) ( -152 96 448 ) bricks/b_mf_v2a 0 16 0 1 1 0 0 0 +( -520 64 448 ) ( -160 64 448 ) ( -160 64 320 ) props/w_sr_ba7b 0 0 0 1 1 0 1 45000 +( -216 96 448 ) ( -576 96 448 ) ( -576 96 320 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +( -576 64 384 ) ( -552 64 384 ) ( -564 96 384 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( -256 96 384 ) ( -256 64 384 ) ( -256 80 448 ) bricks/b_mf_v2a -80 -64 0 1 1 0 0 0 +( -320 80 384 ) ( -320 96 384 ) ( -320 88 448 ) bricks/b_mf_v2a -80 -64 0 1 1 0 0 0 +} +// brush 1651 +{ +( -512 80 448 ) ( -512 96 448 ) ( -152 96 448 ) bricks/b_mf_v2a 0 16 0 1 1 0 0 0 +( -520 64 448 ) ( -160 64 448 ) ( -160 64 320 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +( -216 96 448 ) ( -576 96 448 ) ( -576 96 320 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +( -576 104 448 ) ( -576 88 448 ) ( -576 88 320 ) bricks/b_mf_v2a -80 -64 0 1 1 0 0 0 +( -576 64 384 ) ( -552 64 384 ) ( -564 96 384 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( -320 96 384 ) ( -320 80 384 ) ( -320 88 448 ) bricks/b_mf_v2a -80 -64 0 1 1 0 0 0 +} +// brush 1652 +{ +( -512 80 448 ) ( -512 96 448 ) ( -152 96 448 ) bricks/b_mf_v2a 0 16 0 1 1 0 0 0 +( -520 64 448 ) ( -160 64 448 ) ( -160 64 320 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +( -208 80 448 ) ( -208 96 448 ) ( -208 96 320 ) bricks/b_mf_v2a -80 -64 0 1 1 0 0 0 +( -216 96 448 ) ( -576 96 448 ) ( -576 96 320 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +( -576 64 384 ) ( -552 64 384 ) ( -564 96 384 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( -256 64 384 ) ( -256 96 384 ) ( -256 80 448 ) bricks/b_mf_v2a -80 -64 0 1 1 0 0 0 +} +// brush 1653 +{ +( -152 96 320 ) ( -512 96 320 ) ( -512 80 320 ) bricks/b_mf_v2a 0 16 0 1 1 0 0 0 +( -520 64 448 ) ( -160 64 448 ) ( -160 64 320 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +( -208 80 448 ) ( -208 96 448 ) ( -208 96 320 ) bricks/b_mf_v2a -80 -64 0 1 1 0 0 0 +( -216 96 448 ) ( -576 96 448 ) ( -576 96 320 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +( -576 104 448 ) ( -576 88 448 ) ( -576 88 320 ) bricks/b_mf_v2a -80 -64 0 1 1 0 0 0 +( -552 64 384 ) ( -576 64 384 ) ( -564 96 384 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +} +// brush 1654 +{ +( -128 0 0 ) ( -576 0 0 ) ( -576 -640 0 ) bricks/c_pv_m2 0 64 0 1 1 0 0 0 +( -576 -640 64 ) ( -576 0 64 ) ( -128 0 64 ) bricks/c_pv_m2 0 64 0 1 1 0 0 0 +( -128 -640 128 ) ( -128 0 128 ) ( -128 0 0 ) bricks/c_pv_m2 32 -1 0 1 1 0 0 0 +( -128 0 128 ) ( -576 0 128 ) ( -576 0 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -576 0 128 ) ( -576 -640 128 ) ( -576 -640 0 ) bricks/c_pv_m2 -64 0 0 1 1 0 0 0 +( -512 -416 0 ) ( -576 -416 0 ) ( -544 -416 64 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1655 +{ +( 112 -320 64 ) ( 112 -304 64 ) ( -16 -304 64 ) metals/mt_pv_m7m 0 64 0 1 1 0 0 0 +( -576 -296 256 ) ( -576 -312 256 ) ( -576 -312 64 ) metals/mt_pv_m7m 0 0 0 1 1 0 0 0 +( -128 -304 64 ) ( -128 -320 64 ) ( -128 -312 256 ) bricks/b_mf_v2a -64 64 0 1 1 0 0 0 +( -128 -640 144 ) ( -144 -640 144 ) ( -136 0 144 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -144 -32 64 ) ( -128 -32 64 ) ( -136 -32 144 ) bricks/b_mf_v2a 0 64 0 1 1 0 0 0 +( -512 -384 64 ) ( -576 -384 64 ) ( -544 -384 144 ) bricks/b_mf_v2a 0 64 0 1 1 0 0 0 +} +// brush 1656 +{ +( -16 -304 192 ) ( 112 -304 192 ) ( 112 -320 192 ) metals/mt_pv_m7m 0 64 0 1 1 0 0 0 +( -576 -296 256 ) ( -576 -312 256 ) ( -576 -312 64 ) metals/mt_pv_m7m 0 0 0 1 1 0 0 0 +( -128 -304 64 ) ( -128 -320 64 ) ( -128 -312 256 ) bricks/b_mf_v2a -64 64 0 1 1 0 0 0 +( -144 -640 176 ) ( -128 -640 176 ) ( -136 0 176 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -144 -32 64 ) ( -128 -32 64 ) ( -136 -32 144 ) bricks/b_mf_v2a 0 64 0 1 1 0 0 0 +( -512 -384 176 ) ( -576 -384 176 ) ( -544 -384 192 ) bricks/b_mf_v2a 0 64 0 1 1 0 0 0 +} +// brush 1657 +{ +( 112 -704 64 ) ( 112 -688 64 ) ( -16 -688 64 ) metals/mt_pv_m7m 0 64 0 1 1 0 0 0 +( -576 -680 256 ) ( -576 -696 256 ) ( -576 -696 64 ) metals/mt_pv_m7m 0 0 0 1 1 0 0 0 +( 112 -384 256 ) ( -16 -384 256 ) ( -16 -384 64 ) metals/mt_pv_m7m 0 0 0 1 1 0 0 0 +( -128 -688 64 ) ( -128 -704 64 ) ( -128 -696 256 ) bricks/b_mf_v2a -64 64 0 1 1 0 0 0 +( -128 -1024 192 ) ( -144 -1024 192 ) ( -136 -384 192 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -128 -416 64 ) ( -144 -416 64 ) ( -136 -416 144 ) bricks/b_mf_v2a 0 64 0 1 1 0 0 0 +} +// brush 1658 +{ +( 112 -320 64 ) ( 112 -304 64 ) ( -16 -304 64 ) metals/mt_pv_m7m 0 64 0 1 1 0 0 0 +( -576 -296 256 ) ( -576 -312 256 ) ( -576 -312 64 ) metals/mt_pv_m7m 0 0 0 1 1 0 0 0 +( 112 0 256 ) ( -16 0 256 ) ( -16 0 64 ) metals/mt_pv_m7m 0 0 0 1 1 0 0 0 +( -128 -304 64 ) ( -128 -320 64 ) ( -128 -312 256 ) bricks/b_mf_v2a -64 64 0 1 1 0 0 0 +( -128 -640 192 ) ( -144 -640 192 ) ( -136 0 192 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -128 -32 64 ) ( -144 -32 64 ) ( -136 -32 144 ) bricks/b_mf_v2a 0 64 0 1 1 0 0 0 +} +// brush 1659 +{ +( 640 104 8 ) ( 632 104 8 ) ( 632 96 8 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +( 632 96 24 ) ( 632 104 24 ) ( 640 104 24 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +( 632 96 24 ) ( 640 96 24 ) ( 640 96 8 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +( 640 96 24 ) ( 640 104 24 ) ( 640 104 8 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +( 640 100 24 ) ( 632 100 24 ) ( 632 100 8 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +( 632 104 24 ) ( 632 96 24 ) ( 632 96 8 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +} +// brush 1660 +{ +( 640 32 8 ) ( 632 32 8 ) ( 632 24 8 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +( 632 24 24 ) ( 632 32 24 ) ( 640 32 24 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +( 632 28 24 ) ( 640 28 24 ) ( 640 28 8 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +( 640 24 24 ) ( 640 32 24 ) ( 640 32 8 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +( 640 32 24 ) ( 632 32 24 ) ( 632 32 8 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +( 632 32 24 ) ( 632 24 24 ) ( 632 24 8 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +} +// brush 1661 +{ +( 640 -360 8 ) ( 632 -360 8 ) ( 632 -368 8 ) metals/mt_pv_m26y 0 -8 0 1 1 134217728 0 0 +( 632 -368 24 ) ( 632 -360 24 ) ( 640 -360 24 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +( 632 -364 24 ) ( 640 -364 24 ) ( 640 -364 8 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 8388608 0 +( 640 -368 24 ) ( 640 -360 24 ) ( 640 -360 8 ) metals/mt_pv_m26y 8 0 0 1 1 134217728 0 0 +( 640 -360 24 ) ( 632 -360 24 ) ( 632 -360 8 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 632 -360 24 ) ( 632 -368 24 ) ( 632 -368 8 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +} +// brush 1662 +{ +( 640 -288 8 ) ( 632 -288 8 ) ( 632 -296 8 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +( 632 -296 24 ) ( 632 -288 24 ) ( 640 -288 24 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +( 632 -296 24 ) ( 640 -296 24 ) ( 640 -296 8 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +( 640 -296 24 ) ( 640 -288 24 ) ( 640 -288 8 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +( 640 -292 24 ) ( 632 -292 24 ) ( 632 -292 8 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +( 632 -288 24 ) ( 632 -296 24 ) ( 632 -296 8 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +} +// brush 1663 +{ +( 640 -264 8 ) ( 632 -264 8 ) ( 632 -392 8 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +( 632 -392 24 ) ( 632 -264 24 ) ( 640 -264 24 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +( 632 -360 32 ) ( 640 -360 32 ) ( 640 -360 0 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 640 -392 32 ) ( 640 -264 32 ) ( 640 -264 0 ) metals/mt_pv_m26y 8 0 0 1 1 134217728 0 0 +( 640 -296 32 ) ( 632 -296 32 ) ( 632 -296 0 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 636 -264 32 ) ( 636 -392 32 ) ( 636 -392 0 ) metals/m_pv_v3 80 16 0 0.500000 0.500000 134217728 8388608 0 +} +// brush 1664 +{ +( 640 128 8 ) ( 632 128 8 ) ( 632 0 8 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 632 0 24 ) ( 632 128 24 ) ( 640 128 24 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 134217728 0 0 +( 632 32 32 ) ( 640 32 32 ) ( 640 32 0 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 640 0 32 ) ( 640 128 32 ) ( 640 128 0 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 640 96 32 ) ( 632 96 32 ) ( 632 96 0 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 636 128 32 ) ( 636 0 32 ) ( 636 0 0 ) metals/m_pv_v3 64 16 0 0.500000 0.500000 134217728 8388608 0 +} +// brush 1665 +{ +( 728 -296 448 ) ( 704 -296 448 ) ( 704 -448 448 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 -448 512 ) ( 704 -296 512 ) ( 728 -296 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 720 -448 512 ) ( 720 -296 512 ) ( 720 -296 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 728 192 512 ) ( 704 192 512 ) ( 704 192 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 -296 512 ) ( 704 -448 512 ) ( 704 -448 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 720 64 384 ) ( 704 64 384 ) ( 712 64 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1666 +{ +( 720 256 256 ) ( 704 256 256 ) ( 704 128 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 720 -152 392 ) ( 720 -24 392 ) ( 720 -24 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 256 392 ) ( 704 128 392 ) ( 704 128 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 192 256 ) ( 720 192 256 ) ( 712 192 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 256 320 ) ( 720 256 320 ) ( 704 96 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 720 64 256 ) ( 704 64 256 ) ( 712 64 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 1667 +{ +( 720 256 256 ) ( 704 256 256 ) ( 704 128 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 720 -152 392 ) ( 720 -24 392 ) ( 720 -24 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 256 392 ) ( 704 128 392 ) ( 704 128 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 256 320 ) ( 720 256 320 ) ( 704 96 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 720 -256 256 ) ( 704 -256 256 ) ( 712 -256 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 728 0 392 ) ( 712 0 392 ) ( 728 0 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 1668 +{ +( 720 768 256 ) ( 704 768 256 ) ( 704 640 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 640 384 ) ( 704 768 384 ) ( 720 768 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 712 0 392 ) ( 728 0 392 ) ( 728 0 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 720 360 392 ) ( 720 488 392 ) ( 720 488 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 768 392 ) ( 704 640 392 ) ( 704 640 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 64 256 ) ( 720 64 256 ) ( 712 64 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 1669 +{ +( 720 768 384 ) ( 704 768 384 ) ( 704 608 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 608 512 ) ( 704 768 512 ) ( 720 768 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 0 448 ) ( 720 0 448 ) ( 720 0 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 720 608 448 ) ( 720 768 448 ) ( 720 768 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 768 448 ) ( 704 608 448 ) ( 704 608 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 64 384 ) ( 720 64 384 ) ( 712 64 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1670 +{ +( 720 256 256 ) ( 704 256 256 ) ( 704 128 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 720 -152 392 ) ( 720 -24 392 ) ( 720 -24 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 256 392 ) ( 704 128 392 ) ( 704 128 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 720 -448 256 ) ( 704 -448 256 ) ( 712 -448 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 256 320 ) ( 720 256 320 ) ( 704 96 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 728 -320 392 ) ( 712 -320 392 ) ( 728 -320 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 1671 +{ +( 728 -296 448 ) ( 704 -296 448 ) ( 704 -448 448 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 -448 512 ) ( 704 -296 512 ) ( 728 -296 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 -448 512 ) ( 728 -448 512 ) ( 728 -448 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 720 -448 512 ) ( 720 -296 512 ) ( 720 -296 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 -296 512 ) ( 704 -448 512 ) ( 704 -448 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 720 -320 448 ) ( 704 -320 448 ) ( 720 -320 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1672 +{ +( 720 448 384 ) ( 704 448 384 ) ( 704 288 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 288 512 ) ( 704 448 512 ) ( 720 448 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 -320 448 ) ( 720 -320 448 ) ( 720 -320 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 720 288 448 ) ( 720 448 448 ) ( 720 448 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 448 448 ) ( 704 288 448 ) ( 704 288 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 -256 384 ) ( 720 -256 384 ) ( 712 -256 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1673 +{ +( 720 448 256 ) ( 704 448 256 ) ( 704 320 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 320 384 ) ( 704 448 384 ) ( 720 448 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 712 -320 392 ) ( 728 -320 392 ) ( 728 -320 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 720 40 392 ) ( 720 168 392 ) ( 720 168 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 448 392 ) ( 704 320 392 ) ( 704 320 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 -256 256 ) ( 720 -256 256 ) ( 712 -256 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 1674 +{ +( 720 256 256 ) ( 704 256 256 ) ( 704 128 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 128 384 ) ( 704 256 384 ) ( 720 256 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 712 -512 392 ) ( 728 -512 392 ) ( 728 -512 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 720 -152 392 ) ( 720 -24 392 ) ( 720 -24 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 256 392 ) ( 704 128 392 ) ( 704 128 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 -448 256 ) ( 720 -448 256 ) ( 712 -448 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 1675 +{ +( 720 256 256 ) ( 704 256 256 ) ( 704 128 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 128 384 ) ( 704 256 384 ) ( 720 256 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 720 -152 392 ) ( 720 -24 392 ) ( 720 -24 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 720 256 392 ) ( 704 256 392 ) ( 704 256 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 704 256 392 ) ( 704 128 392 ) ( 704 128 256 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 720 192 256 ) ( 704 192 256 ) ( 712 192 384 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 1676 +{ +( 720 256 512 ) ( 704 256 512 ) ( 704 128 512 ) bricks/b_sr_20b 0 88 90 1 1 0 0 0 +( 704 128 576 ) ( 704 256 576 ) ( 720 256 576 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 712 -512 648 ) ( 728 -512 648 ) ( 728 -512 512 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 720 104 648 ) ( 720 232 648 ) ( 720 232 512 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 720 512 648 ) ( 704 512 648 ) ( 704 512 512 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 688 256 648 ) ( 688 128 648 ) ( 688 128 512 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +} +// brush 1677 +{ +( 720 256 384 ) ( 704 256 384 ) ( 704 96 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 96 512 ) ( 704 256 512 ) ( 720 256 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 -512 448 ) ( 720 -512 448 ) ( 720 -512 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 720 96 448 ) ( 720 256 448 ) ( 720 256 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 256 448 ) ( 704 96 448 ) ( 704 96 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 -448 384 ) ( 720 -448 384 ) ( 712 -448 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1678 +{ +( 720 -256 320 ) ( 704 -256 320 ) ( 704 -416 320 ) props/w_sr_m4a 0 64 0 1 1 0 1 500 +( 704 -416 448 ) ( 704 -256 448 ) ( 720 -256 448 ) props/w_sr_m4a 0 64 0 1 1 0 1 500 +( 720 -416 384 ) ( 720 -256 384 ) ( 720 -256 256 ) props/w_sr_m4a 0 64 0 1 1 0 1 500 +( 712 -256 384 ) ( 712 -416 384 ) ( 712 -416 256 ) props/w_sr_m4a 0 64 0 1 1 0 1 500 +( 704 -320 320 ) ( 720 -320 320 ) ( 712 -320 448 ) props/w_sr_m4a 0 64 0 1 1 0 1 500 +( 720 -448 320 ) ( 704 -448 320 ) ( 712 -448 448 ) props/w_sr_m4a 0 64 0 1 1 0 1 500 +} +// brush 1679 +{ +( 720 0 320 ) ( 704 0 320 ) ( 704 -160 320 ) props/w_sr_m6d 0 -64 0 1 1 0 1 500 +( 704 -160 448 ) ( 704 0 448 ) ( 720 0 448 ) props/w_sr_m6d 0 -64 0 1 1 0 1 500 +( 720 -160 384 ) ( 720 0 384 ) ( 720 0 256 ) props/w_sr_m6d 0 -64 0 1 1 0 1 500 +( 712 0 384 ) ( 712 -160 384 ) ( 712 -160 256 ) props/w_sr_m4a 0 64 0 1 -1 0 1 400 +( 704 0 320 ) ( 720 0 320 ) ( 712 0 448 ) props/w_sr_m6d 0 -64 0 1 1 0 1 500 +( 712 -256 320 ) ( 696 -256 320 ) ( 704 -256 448 ) props/w_sr_m6d 0 -64 0 1 1 0 1 500 +} +// brush 1680 +{ +( 720 256 320 ) ( 704 256 320 ) ( 704 96 320 ) props/w_sr_m4a 0 64 0 1 -1 0 1 200 +( 704 96 432 ) ( 704 256 432 ) ( 720 256 432 ) props/w_sr_m4a 0 64 0 1 -1 0 1 200 +( 720 192 384 ) ( 720 352 384 ) ( 720 352 256 ) props/w_sr_m4a 0 64 0 1 -1 0 1 200 +( 712 256 384 ) ( 712 96 384 ) ( 712 96 256 ) props/w_sr_m4a 0 64 0 1 -1 0 0 0 +( 704 192 320 ) ( 720 192 320 ) ( 712 192 448 ) props/w_sr_m4a 0 64 0 1 -1 0 1 200 +( 712 160 320 ) ( 696 160 320 ) ( 704 160 448 ) props/w_sr_m4a 0 64 0 1 -1 0 1 200 +} +// brush 1681 +{ +( 720 256 384 ) ( 704 256 384 ) ( 704 96 384 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 96 512 ) ( 704 256 512 ) ( 720 256 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 720 96 448 ) ( 720 256 448 ) ( 720 256 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 720 512 448 ) ( 704 512 448 ) ( 704 512 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 256 448 ) ( 704 96 448 ) ( 704 96 320 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 720 192 384 ) ( 704 192 384 ) ( 712 192 512 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1682 +{ +( 464 -64 0 ) ( 464 -192 0 ) ( 640 -192 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 576 -192 32 ) ( 576 -64 32 ) ( 640 -64 32 ) bricks/c_sr_m2 144 64 90 1 1 0 0 0 +( 504 -224 32 ) ( 624 -224 32 ) ( 624 -224 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 640 -192 32 ) ( 640 -64 32 ) ( 640 -64 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 632 -32 32 ) ( 512 -32 32 ) ( 512 -32 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 464 -192 0 ) ( 464 -64 0 ) ( 576 -64 32 ) bricks/c_sr_m2 144 64 90 1 1 0 0 0 +} +// brush 1683 +{ +( 720 256 224 ) ( 704 256 224 ) ( 704 -256 224 ) bricks/b_pv_v1c 0 64 270 1 1 0 0 0 +( 704 -256 256 ) ( 704 256 256 ) ( 720 256 256 ) bricks/b_pv_v1c 0 64 270 1 1 0 0 0 +( 720 -256 256 ) ( 720 256 256 ) ( 720 256 128 ) bricks/b_pv_v1c 0 0 0 1 1 0 0 0 +( 720 256 256 ) ( 704 256 256 ) ( 704 256 128 ) bricks/b_pv_v1c 0 0 0 1 1 0 0 0 +( 688 256 256 ) ( 688 -256 256 ) ( 688 -256 128 ) bricks/b_pv_v1c 0 0 0 1 1 0 0 0 +( 720 -512 64 ) ( 704 -512 64 ) ( 712 -512 256 ) bricks/b_pv_v1c 0 0 0 1 1 0 0 0 +} +// brush 1684 +{ +( 704 -640 224 ) ( 704 -128 224 ) ( 720 -128 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 768 -640 224 ) ( 768 -128 224 ) ( 768 -128 96 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 704 -128 224 ) ( 704 -640 224 ) ( 704 -640 96 ) bricks/b_mf_v2 0 94 0 1 1 0 0 0 +( 704 -256 32 ) ( 720 -256 32 ) ( 712 -256 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 720 -384 32 ) ( 696 -384 32 ) ( 708 -384 224 ) bricks/b_mf_v2 0 -48 0 1 1 0 0 0 +( 696 -384 160 ) ( 728 -384 160 ) ( 712 -256 160 ) bricks/b_mf_v5 0 0 90 1 1 0 0 0 +} +// brush 1685 +{ +( 704 160 0 ) ( 680 160 0 ) ( 680 -32 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 680 -32 32 ) ( 680 160 32 ) ( 704 160 32 ) bricks/c_sr_m2 144 64 90 1 1 0 0 0 +( 704 -64 0 ) ( 704 -64 32 ) ( 704 192 32 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 640 128 0 ) ( 640 128 32 ) ( 640 0 32 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 704 -448 32 ) ( 704 -448 0 ) ( 640 -384 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 704 192 0 ) ( 704 192 32 ) ( 640 128 32 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1686 +{ +( 704 -256 224 ) ( 704 256 224 ) ( 720 256 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 720 -256 224 ) ( 720 256 224 ) ( 720 256 96 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 704 256 224 ) ( 704 -256 224 ) ( 704 -256 96 ) bricks/b_mf_v2 0 94 0 1 1 0 0 0 +( 704 128 32 ) ( 720 128 32 ) ( 712 128 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 720 0 32 ) ( 696 0 32 ) ( 708 0 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 696 0 160 ) ( 728 0 160 ) ( 712 128 160 ) bricks/b_mf_v5 0 0 90 1 1 0 0 0 +} +// brush 1687 +{ +( -80 400 256 ) ( -272 400 256 ) ( -272 384 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -272 384 384 ) ( -272 400 384 ) ( -80 400 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -272 384 384 ) ( -80 384 384 ) ( -80 384 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -80 384 384 ) ( -80 400 384 ) ( -80 400 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -80 400 384 ) ( -272 400 384 ) ( -272 400 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -576 384 256 ) ( -576 400 256 ) ( -576 392 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 1688 +{ +( -80 400 384 ) ( -384 400 384 ) ( -384 384 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -384 384 448 ) ( -384 400 448 ) ( -80 400 448 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -384 384 448 ) ( -80 384 448 ) ( -80 384 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -80 384 448 ) ( -80 400 448 ) ( -80 400 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -80 512 448 ) ( -384 512 448 ) ( -384 512 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -576 384 384 ) ( -576 400 384 ) ( -576 392 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 1689 +{ +( -80 400 448 ) ( -384 400 448 ) ( -384 384 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -384 384 512 ) ( -384 400 512 ) ( -80 400 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -384 384 512 ) ( -80 384 512 ) ( -80 384 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -736 400 512 ) ( -1040 400 512 ) ( -1040 400 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -512 392 448 ) ( -512 360 448 ) ( -512 376 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -576 384 448 ) ( -576 400 448 ) ( -576 392 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 1690 +{ +( -512 -64 512 ) ( -512 384 512 ) ( -136 384 512 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -192 -64 352 ) ( -192 384 352 ) ( -192 384 288 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -136 512 352 ) ( -512 512 352 ) ( -512 512 288 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -576 376 352 ) ( -576 -72 352 ) ( -576 -72 288 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -512 -128 448 ) ( -472 -128 448 ) ( -492 384 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -136 64 448 ) ( -184 64 448 ) ( -160 64 512 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 1691 +{ +( -200 384 320 ) ( -576 384 320 ) ( -576 -64 320 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -192 528 352 ) ( -192 976 352 ) ( -192 976 288 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +( -200 384 352 ) ( -576 384 352 ) ( -576 384 288 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +( -208 64 352 ) ( -208 -384 352 ) ( -208 -384 288 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +( -176 -128 384 ) ( -216 -128 384 ) ( -196 384 384 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +( -184 64 320 ) ( -232 64 320 ) ( -208 64 384 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +} +// brush 1692 +{ +( -192 -64 352 ) ( -192 384 352 ) ( -192 384 288 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +( -208 384 352 ) ( -208 -64 352 ) ( -208 -64 288 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +( -536 -128 448 ) ( -576 -128 448 ) ( -556 384 448 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +( -216 -128 384 ) ( -176 -128 384 ) ( -196 384 384 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +( -208 128 384 ) ( -192 128 384 ) ( -200 128 448 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +( -184 64 384 ) ( -232 64 384 ) ( -208 64 448 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +} +// brush 1693 +{ +( -192 -64 352 ) ( -192 384 352 ) ( -192 384 288 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +( -208 384 352 ) ( -208 -64 352 ) ( -208 -64 288 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +( -536 -128 448 ) ( -576 -128 448 ) ( -556 384 448 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +( -216 -128 384 ) ( -176 -128 384 ) ( -196 384 384 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +( -208 256 384 ) ( -192 256 384 ) ( -200 256 448 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +( -184 192 384 ) ( -232 192 384 ) ( -208 192 448 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +} +// brush 1694 +{ +( -192 -192 352 ) ( -192 256 352 ) ( -192 256 288 ) props/w_sr_ba7b 0 0 0 1 1 0 1 15000 +( -208 256 352 ) ( -208 -192 352 ) ( -208 -192 288 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +( -536 -256 448 ) ( -576 -256 448 ) ( -556 256 448 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +( -216 -256 384 ) ( -176 -256 384 ) ( -196 256 384 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +( -232 192 384 ) ( -184 192 384 ) ( -208 192 448 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +( -192 128 384 ) ( -208 128 384 ) ( -200 128 448 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +} +// brush 1695 +{ +( -192 -64 352 ) ( -192 384 352 ) ( -192 384 288 ) props/w_sr_ba7b 0 0 0 1 1 0 1 5000 +( -208 384 352 ) ( -208 -64 352 ) ( -208 -64 288 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +( -536 -128 448 ) ( -576 -128 448 ) ( -556 384 448 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +( -216 -128 384 ) ( -176 -128 384 ) ( -196 384 384 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +( -232 320 384 ) ( -184 320 384 ) ( -208 320 448 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +( -192 256 384 ) ( -208 256 384 ) ( -200 256 448 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +} +// brush 1696 +{ +( -192 -64 352 ) ( -192 384 352 ) ( -192 384 288 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +( -200 384 352 ) ( -576 384 352 ) ( -576 384 288 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +( -208 384 352 ) ( -208 -64 352 ) ( -208 -64 288 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +( -536 -128 448 ) ( -576 -128 448 ) ( -556 384 448 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +( -216 -128 384 ) ( -176 -128 384 ) ( -196 384 384 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +( -184 320 384 ) ( -232 320 384 ) ( -208 320 448 ) bricks/b_mf_v2a 64 -64 0 1 1 0 0 0 +} +// brush 1697 +{ +( -496 384 320 ) ( -512 384 320 ) ( -512 -112 320 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +( -512 -112 448 ) ( -512 384 448 ) ( -496 384 448 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +( -504 64 448 ) ( -488 64 448 ) ( -488 64 320 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +( -496 -112 448 ) ( -496 384 448 ) ( -496 384 320 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +( -496 384 448 ) ( -512 384 448 ) ( -512 384 320 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +( -576 384 448 ) ( -576 -112 448 ) ( -576 -112 320 ) bricks/b_mf_v2a 0 -64 0 1 1 0 0 0 +} +// brush 1698 +{ +( -80 528 448 ) ( -128 528 448 ) ( -128 512 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -128 512 576 ) ( -128 528 576 ) ( -80 528 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -512 512 512 ) ( -464 512 512 ) ( -464 512 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -128 512 512 ) ( -128 528 512 ) ( -128 528 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -144 528 512 ) ( -192 528 512 ) ( -192 528 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -576 528 512 ) ( -576 512 512 ) ( -576 512 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 1699 +{ +( -64 -128 -16 ) ( -392 -128 -16 ) ( -392 -448 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -392 -448 0 ) ( -392 -128 0 ) ( -64 -128 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -368 -832 0 ) ( -40 -832 0 ) ( -40 -832 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -64 -448 0 ) ( -64 -128 0 ) ( -64 -128 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -64 0 0 ) ( -392 0 0 ) ( -392 0 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -576 -128 0 ) ( -576 -448 0 ) ( -576 -448 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1700 +{ +( -80 256 256 ) ( -80 384 256 ) ( -80 384 64 ) props/w_sr_m6e 32 -32 0 1 1 0 0 0 +( -96 384 256 ) ( -96 256 256 ) ( -96 256 64 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -104 64 96 ) ( -72 64 96 ) ( -88 192 96 ) bricks/b_sr_20 -48 0 0 1 1 0 0 0 +( -80 64 224 ) ( -96 64 224 ) ( -88 192 224 ) bricks/b_sr_20 -48 0 0 1 1 0 0 0 +( -96 160 96 ) ( -80 160 96 ) ( -88 160 224 ) bricks/b_sr_20 -48 0 0 1 1 0 0 0 +( -80 96 96 ) ( -96 96 96 ) ( -88 96 224 ) bricks/b_sr_20 -48 0 0 1 1 0 0 0 +} +// brush 1701 +{ +( -72 64 256 ) ( -56 64 256 ) ( -56 64 64 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -64 256 256 ) ( -64 384 256 ) ( -64 384 64 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -80 384 256 ) ( -80 256 256 ) ( -80 256 64 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -88 64 96 ) ( -56 64 96 ) ( -72 192 96 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -64 64 224 ) ( -80 64 224 ) ( -72 192 224 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -80 96 96 ) ( -64 96 96 ) ( -72 96 224 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +} +// brush 1702 +{ +( -64 256 256 ) ( -64 384 256 ) ( -64 384 64 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -80 384 256 ) ( -80 256 256 ) ( -80 256 64 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -80 192 64 ) ( -64 192 64 ) ( -72 192 256 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -88 64 96 ) ( -56 64 96 ) ( -72 192 96 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -64 64 224 ) ( -80 64 224 ) ( -72 192 224 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -64 160 96 ) ( -80 160 96 ) ( -72 160 224 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +} +// brush 1703 +{ +( -64 256 256 ) ( -64 384 256 ) ( -64 384 64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( -96 384 256 ) ( -96 256 256 ) ( -96 256 64 ) metals/mt_pv_m26y 16 16 0 5 5 0 0 0 +( -40 256 64 ) ( -72 256 64 ) ( -56 256 256 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( -88 256 96 ) ( -56 256 96 ) ( -72 384 96 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( -64 256 192 ) ( -80 256 192 ) ( -72 384 192 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( -96 288 96 ) ( -80 288 96 ) ( -88 288 224 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +} +// brush 1704 +{ +( -64 256 256 ) ( -64 384 256 ) ( -64 384 64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( -64 384 256 ) ( -80 384 256 ) ( -80 384 64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( -96 384 256 ) ( -96 256 256 ) ( -96 256 64 ) metals/mt_pv_m26y 16 16 0 5 5 0 0 0 +( -88 256 96 ) ( -56 256 96 ) ( -72 384 96 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( -64 256 192 ) ( -80 256 192 ) ( -72 384 192 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( -80 352 96 ) ( -96 352 96 ) ( -88 352 224 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +} +// brush 1705 +{ +( -80 256 256 ) ( -80 384 256 ) ( -64 384 256 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -64 256 256 ) ( -64 384 256 ) ( -64 384 64 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -64 384 256 ) ( -80 384 256 ) ( -80 384 64 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -96 384 256 ) ( -96 256 256 ) ( -96 256 64 ) metals/mt_pv_m26y 16 16 0 5 5 0 0 0 +( -40 256 64 ) ( -72 256 64 ) ( -56 256 256 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -80 256 224 ) ( -64 256 224 ) ( -72 384 224 ) bricks/b_sr_20 -64 0 270 1 1 0 0 0 +} +// brush 1706 +{ +( -80 256 256 ) ( -80 384 256 ) ( -64 384 256 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -72 64 256 ) ( -56 64 256 ) ( -56 64 64 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -64 256 256 ) ( -64 384 256 ) ( -64 384 64 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -80 384 256 ) ( -80 256 256 ) ( -80 256 64 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -80 192 64 ) ( -64 192 64 ) ( -72 192 256 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -80 64 224 ) ( -64 64 224 ) ( -72 192 224 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +} +// brush 1707 +{ +( -64 384 64 ) ( -80 384 64 ) ( -80 256 64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( -64 256 256 ) ( -64 384 256 ) ( -64 384 64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( -64 384 256 ) ( -80 384 256 ) ( -80 384 64 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( -96 384 256 ) ( -96 256 256 ) ( -96 256 64 ) metals/mt_pv_m26y 16 16 0 5 5 0 0 0 +( -40 256 64 ) ( -72 256 64 ) ( -56 256 256 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( -56 256 96 ) ( -88 256 96 ) ( -72 384 96 ) bricks/b_sr_20a 0 32 270 1 1 0 0 0 +} +// brush 1708 +{ +( -64 384 64 ) ( -80 384 64 ) ( -80 256 64 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -72 64 256 ) ( -56 64 256 ) ( -56 64 64 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -64 256 256 ) ( -64 384 256 ) ( -64 384 64 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -80 384 256 ) ( -80 256 256 ) ( -80 256 64 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -80 192 64 ) ( -64 192 64 ) ( -72 192 256 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -56 64 96 ) ( -88 64 96 ) ( -72 192 96 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +} +// brush 1709 +{ +( 400 768 128 ) ( 16 768 128 ) ( 16 752 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 16 752 256 ) ( 16 768 256 ) ( 400 768 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 16 752 256 ) ( 400 752 256 ) ( 400 752 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 400 768 256 ) ( 16 768 256 ) ( 16 768 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 16 768 256 ) ( 16 752 256 ) ( 16 752 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 32 768 128 ) ( 32 752 128 ) ( 32 760 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 1710 +{ +( 112 -120 256 ) ( 112 -112 256 ) ( -144 -112 256 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( -144 -112 320 ) ( 112 -112 320 ) ( 112 -120 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -576 -96 320 ) ( -576 -104 320 ) ( -576 -104 256 ) bricks/b_sr_23 24 0 -180 1 -1 0 0 0 +( -144 0 320 ) ( 112 0 320 ) ( 112 0 256 ) bricks/b_sr_23 73 0 -180 1 -1 0 0 0 +( 104 384 320 ) ( -152 384 320 ) ( -152 384 256 ) bricks/b_sr_23 88 0 0 1 1 0 0 0 +( -80 -112 256 ) ( -80 -128 256 ) ( -80 -120 320 ) bricks/b_sr_23 24 0 -180 1 -1 0 0 0 +} +// brush 1711 +{ +( -56 192 256 ) ( -64 192 256 ) ( -64 -64 256 ) bricks/b_sr_23 88 0 -180 1 -1 0 0 0 +( -64 -64 320 ) ( -64 192 320 ) ( -56 192 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -48 -64 320 ) ( -48 192 320 ) ( -48 192 256 ) bricks/b_sr_23 -127 0 -180 1 -1 0 0 0 +( -80 192 320 ) ( -80 -64 320 ) ( -80 -64 256 ) bricks/b_sr_23 -120 0 -180 1 -1 0 0 0 +( -56 64 256 ) ( -24 64 256 ) ( -40 64 320 ) bricks/b_sr_23 73 0 -180 1 -1 0 0 0 +( -48 0 256 ) ( -64 0 256 ) ( -56 0 320 ) bricks/b_sr_23 73 0 -180 1 -1 0 0 0 +} +// brush 1712 +{ +( -48 192 64 ) ( -64 192 64 ) ( -64 64 64 ) bricks/b_sr_20 -80 -64 0 1 1 0 0 0 +( -64 64 256 ) ( -64 192 256 ) ( -48 192 256 ) bricks/b_sr_20 -80 -64 0 1 1 0 0 0 +( -48 64 256 ) ( -48 192 256 ) ( -48 192 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 192 256 ) ( -64 64 256 ) ( -64 64 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -56 64 64 ) ( -24 64 64 ) ( -40 64 256 ) bricks/b_sr_20 -80 0 0 1 1 0 0 0 +( -48 0 64 ) ( -64 0 64 ) ( -56 0 256 ) bricks/b_sr_20 -80 0 0 1 1 0 0 0 +} +// brush 1713 +{ +( -48 64 0 ) ( -64 64 0 ) ( -64 -64 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -64 -64 64 ) ( -64 64 64 ) ( -48 64 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -48 -64 64 ) ( -48 64 64 ) ( -48 64 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -48 64 64 ) ( -64 64 64 ) ( -64 64 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -64 64 64 ) ( -64 -64 64 ) ( -64 -64 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -48 0 0 ) ( -64 0 0 ) ( -56 0 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 1714 +{ +( -48 256 0 ) ( -64 256 0 ) ( -64 128 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -64 128 64 ) ( -64 256 64 ) ( -48 256 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -48 128 64 ) ( -48 256 64 ) ( -48 256 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -48 256 64 ) ( -64 256 64 ) ( -64 256 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -64 256 64 ) ( -64 128 64 ) ( -64 128 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -48 192 0 ) ( -64 192 0 ) ( -56 192 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 1715 +{ +( -64 256 0 ) ( -80 256 0 ) ( -80 128 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -80 128 64 ) ( -80 256 64 ) ( -64 256 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -80 64 64 ) ( -64 64 64 ) ( -64 64 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -64 128 64 ) ( -64 256 64 ) ( -64 256 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -80 256 64 ) ( -80 128 64 ) ( -80 128 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -80 192 0 ) ( -64 192 0 ) ( -72 192 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 1716 +{ +( -48 384 64 ) ( -64 384 64 ) ( -64 256 64 ) bricks/b_sr_20 -80 0 0 1 1 0 0 0 +( -64 256 256 ) ( -64 384 256 ) ( -48 384 256 ) bricks/b_sr_20 -80 0 0 1 1 0 0 0 +( -48 256 256 ) ( -48 384 256 ) ( -48 384 64 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -64 384 256 ) ( -64 256 256 ) ( -64 256 64 ) bricks/b_sr_20 -64 0 0 1 1 0 0 0 +( -56 256 64 ) ( -24 256 64 ) ( -40 256 256 ) bricks/b_sr_20 -80 0 0 1 1 0 0 0 +( -48 192 64 ) ( -64 192 64 ) ( -56 192 256 ) bricks/b_sr_20 -80 0 0 1 1 0 0 0 +} +// brush 1717 +{ +( -56 384 256 ) ( -64 384 256 ) ( -64 128 256 ) bricks/b_sr_23 88 0 -180 1 -1 0 0 0 +( -64 128 320 ) ( -64 384 320 ) ( -56 384 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -48 128 320 ) ( -48 384 320 ) ( -48 384 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -80 384 320 ) ( -80 128 320 ) ( -80 128 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -56 256 256 ) ( -24 256 256 ) ( -40 256 320 ) bricks/b_sr_23 73 0 -180 1 -1 0 0 0 +( -48 192 256 ) ( -64 192 256 ) ( -56 192 320 ) bricks/b_sr_23 73 0 -180 1 -1 0 0 0 +} +// brush 1718 +{ +( -72 384 256 ) ( -80 384 256 ) ( -80 128 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -80 128 320 ) ( -80 384 320 ) ( -72 384 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -80 64 320 ) ( -72 64 320 ) ( -72 64 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -64 128 320 ) ( -64 384 320 ) ( -64 384 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -80 384 320 ) ( -80 128 320 ) ( -80 128 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -80 192 256 ) ( -64 192 256 ) ( -72 192 320 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +} +// brush 1719 +{ +( -72 384 256 ) ( -80 384 256 ) ( -80 128 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -80 128 320 ) ( -80 384 320 ) ( -72 384 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -64 128 320 ) ( -64 384 320 ) ( -64 384 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -72 384 320 ) ( -80 384 320 ) ( -80 384 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -80 384 320 ) ( -80 128 320 ) ( -80 128 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -40 256 256 ) ( -72 256 256 ) ( -56 256 320 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +} +// brush 1720 +{ +( -64 1264 384 ) ( -80 1264 384 ) ( -80 1088 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -80 1088 448 ) ( -80 1264 448 ) ( -64 1264 448 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -64 1088 448 ) ( -64 1264 448 ) ( -64 1264 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -64 1264 448 ) ( -80 1264 448 ) ( -80 1264 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -80 1264 448 ) ( -80 1088 448 ) ( -80 1088 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -64 384 384 ) ( -80 384 384 ) ( -72 384 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 1721 +{ +( 360 384 0 ) ( 328 384 0 ) ( 328 256 0 ) bricks/c_sr_m9a -72 0 0 1 1 0 0 0 +( 328 256 64 ) ( 360 256 64 ) ( 360 256 0 ) bricks/c_pv_m2 32 -1 0 1 1 0 0 0 +( 360 384 64 ) ( 328 384 64 ) ( 328 384 0 ) bricks/c_sr_m9a -72 0 0 1 1 0 0 0 +( 128 384 64 ) ( 128 256 64 ) ( 128 256 0 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 352 256 0 ) ( 128 256 64 ) ( 240 384 32 ) bricks/c_sr_mb1 0 0 180 1 1 0 0 0 +} +// brush 1722 +{ +( 456 448 184 ) ( 440 448 184 ) ( 440 432 184 ) common/li_sr_v27 8 16 0 1 1 134217728 1 35000 +( 440 432 192 ) ( 440 448 192 ) ( 456 448 192 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 440 432 192 ) ( 456 432 192 ) ( 456 432 64 ) metals/mt_pv_m26y 15 14 0 0.500000 0.500000 134217728 8388608 0 +( 456 432 192 ) ( 456 448 192 ) ( 456 448 64 ) common/li_sr_v27 0 0 0 1 1 134217728 0 0 +( 456 448 192 ) ( 440 448 192 ) ( 440 448 64 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 134217728 0 0 +( 440 448 192 ) ( 440 432 192 ) ( 440 432 64 ) common/li_sr_v27 0 0 0 1 1 134217728 0 0 +} +// brush 1723 +{ +( 464 448 184 ) ( 456 448 184 ) ( 456 432 184 ) metals/mt_pv_m26y 15 14 0 0.500000 0.500000 134217728 8388608 0 +( 456 432 192 ) ( 456 448 192 ) ( 464 448 192 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 464 432 192 ) ( 464 448 192 ) ( 464 448 184 ) metals/mt_pv_m26y 15 14 0 0.500000 0.500000 134217728 8388608 0 +( 464 448 192 ) ( 456 448 192 ) ( 456 448 184 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 134217728 0 0 +( 456 448 192 ) ( 456 432 192 ) ( 456 432 184 ) metals/mt_pv_m26y 0 15 0 1 1 134217728 0 0 +( 464 440 184 ) ( 456 432 184 ) ( 460 436 192 ) metals/mt_pv_m26y 15 14 0 0.500000 0.500000 134217728 8388608 0 +} +// brush 1724 +{ +( 440 448 184 ) ( 432 448 184 ) ( 432 432 184 ) metals/mt_pv_m26y 15 14 0 0.500000 0.500000 134217728 8388608 0 +( 432 432 192 ) ( 432 448 192 ) ( 440 448 192 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 440 432 192 ) ( 440 448 192 ) ( 440 448 184 ) metals/mt_pv_m26y 0 15 0 1 1 134217728 0 0 +( 440 448 192 ) ( 432 448 192 ) ( 432 448 184 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 134217728 0 0 +( 432 448 192 ) ( 432 432 192 ) ( 432 432 184 ) metals/mt_pv_m26y 15 14 0 0.500000 0.500000 134217728 8388608 0 +( 440 432 184 ) ( 432 440 184 ) ( 436 436 192 ) metals/mt_pv_m26y 15 14 0 0.500000 0.500000 134217728 8388608 0 +} +// brush 1725 +{ +( 512 384 -16 ) ( -64 384 -16 ) ( -64 192 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -64 192 0 ) ( -64 384 0 ) ( 512 384 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 512 -384 0 ) ( 512 -192 0 ) ( 512 -192 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 512 384 0 ) ( -64 384 0 ) ( -64 384 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -64 384 0 ) ( -64 192 0 ) ( -64 192 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -64 128 0 ) ( 752 128 0 ) ( -64 128 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1726 +{ +( 64 448 176 ) ( 0 448 176 ) ( 0 432 176 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 0 432 224 ) ( 0 448 224 ) ( 64 448 224 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 0 432 224 ) ( 64 432 224 ) ( 64 432 64 ) bricks/b_sr_20b 32 -24 0 1 1 0 0 0 +( 64 432 224 ) ( 64 448 224 ) ( 64 448 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 64 448 224 ) ( 0 448 224 ) ( 0 448 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 0 448 224 ) ( 0 432 224 ) ( 0 432 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1727 +{ +( 384 448 176 ) ( -64 448 176 ) ( -64 432 176 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 432 256 ) ( 384 432 256 ) ( 384 432 128 ) bricks/b_sr_20b 32 -24 0 1 1 0 0 0 +( 384 448 256 ) ( -64 448 256 ) ( -64 448 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 96 448 64 ) ( 96 432 64 ) ( 96 440 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 16 432 224 ) ( -32 432 224 ) ( -8 448 224 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 64 432 64 ) ( 64 448 64 ) ( 64 440 224 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1728 +{ +( 384 448 64 ) ( -64 448 64 ) ( -64 432 64 ) floors/dr_st_m1d 0 64 0 1 1 0 0 0 +( -64 440 256 ) ( 384 440 256 ) ( 384 440 128 ) floors/dr_pv_vv1d 0 64 0 1 1 0 8388608 0 +( 384 448 256 ) ( -64 448 256 ) ( -64 448 128 ) floors/dr_st_m1d 0 64 0 1 1 0 0 0 +( 16 432 144 ) ( -32 432 144 ) ( -8 448 144 ) floors/dr_st_m1d 0 64 0 1 1 0 0 0 +( 0 432 64 ) ( 0 448 64 ) ( 0 440 224 ) floors/dr_st_m1d 0 64 0 1 1 0 0 0 +( 64 448 64 ) ( 64 432 64 ) ( 64 440 224 ) floors/dr_st_m1d 0 64 0 1 1 0 0 0 +} +// brush 1729 +{ +( 384 448 176 ) ( -64 448 176 ) ( -64 432 176 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 432 256 ) ( 384 432 256 ) ( 384 432 128 ) bricks/b_sr_20b 32 -24 0 1 1 0 0 0 +( 384 448 256 ) ( -64 448 256 ) ( -64 448 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -32 432 64 ) ( -32 448 64 ) ( -32 440 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 16 432 224 ) ( -32 432 224 ) ( -8 448 224 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 0 448 64 ) ( 0 432 64 ) ( 0 440 224 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1730 +{ +( 96 448 56 ) ( -32 448 56 ) ( -32 384 56 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -32 384 64 ) ( -32 448 64 ) ( 96 448 64 ) bricks/c_sr_mb1 0 0 0 1 1 0 0 0 +( -32 384 64 ) ( 96 384 64 ) ( 96 384 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 96 384 64 ) ( 96 448 64 ) ( 96 448 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 96 448 64 ) ( -32 448 64 ) ( -32 448 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -32 448 64 ) ( -32 384 64 ) ( -32 384 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1731 +{ +( 384 400 176 ) ( -64 400 176 ) ( -64 384 176 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 384 256 ) ( -64 400 256 ) ( 384 400 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 384 256 ) ( 384 384 256 ) ( 384 384 128 ) bricks/b_sr_20 0 -64 0 1 1 0 0 0 +( 384 448 256 ) ( -64 448 256 ) ( -64 448 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -80 400 256 ) ( -80 384 256 ) ( -80 384 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -32 400 64 ) ( -32 384 64 ) ( -32 392 256 ) bricks/b_sr_20b 0 -32 0 1 1 0 0 0 +} +// brush 1732 +{ +( 384 400 96 ) ( -64 400 96 ) ( -64 384 96 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 384 224 ) ( -64 400 224 ) ( 384 400 224 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 384 256 ) ( 384 384 256 ) ( 384 384 128 ) bricks/b_sr_20 0 -64 0 1 1 0 0 0 +( 384 400 256 ) ( -64 400 256 ) ( -64 400 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 160 400 128 ) ( 160 376 128 ) ( 160 388 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 128 384 128 ) ( 128 400 128 ) ( 128 392 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1733 +{ +( 352 400 224 ) ( 128 400 224 ) ( 128 384 224 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 128 384 256 ) ( 128 400 256 ) ( 352 400 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 128 384 256 ) ( 352 384 256 ) ( 352 384 128 ) bricks/b_sr_20 0 -64 0 1 1 0 0 0 +( 352 384 256 ) ( 352 400 256 ) ( 352 400 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 352 400 256 ) ( 128 400 256 ) ( 128 400 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 128 400 256 ) ( 128 384 256 ) ( 128 384 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1734 +{ +( 384 416 96 ) ( -64 416 96 ) ( -64 400 96 ) props/w_sr_m6d 32 -32 0 1 1 0 1 50 +( -64 400 224 ) ( -64 416 224 ) ( 384 416 224 ) props/w_sr_m6d 32 -32 0 1 1 0 1 50 +( -64 400 224 ) ( 384 400 224 ) ( 384 400 96 ) props/w_sr_m6d 32 -32 0 -1 1 0 1 125 +( 384 408 224 ) ( -64 408 224 ) ( -64 408 96 ) props/w_sr_m6d 32 -32 0 1 1 0 0 300 +( 320 416 96 ) ( 320 400 96 ) ( 320 408 224 ) props/w_sr_m6d 32 -32 0 1 1 0 1 50 +( 288 392 96 ) ( 288 408 96 ) ( 288 400 224 ) props/w_sr_m6d 32 -32 0 1 1 0 1 50 +} +// brush 1735 +{ +( 384 416 96 ) ( -64 416 96 ) ( -64 400 96 ) props/w_sr_m6d 32 -32 0 1 1 0 1 150 +( -64 400 224 ) ( -64 416 224 ) ( 384 416 224 ) props/w_sr_m6d 32 -32 0 1 1 0 1 150 +( -64 400 224 ) ( 384 400 224 ) ( 384 400 96 ) props/w_sr_m6d 32 -32 0 1 1 0 1 200 +( 384 408 224 ) ( -64 408 224 ) ( -64 408 96 ) props/w_sr_m6d 32 -32 0 1 1 0 0 300 +( 224 392 96 ) ( 224 408 96 ) ( 224 400 224 ) props/w_sr_m6d 32 -32 0 1 1 0 1 150 +( 288 408 96 ) ( 288 392 96 ) ( 288 400 224 ) props/w_sr_m6d 32 -32 0 1 1 0 1 150 +} +// brush 1736 +{ +( 384 416 96 ) ( -64 416 96 ) ( -64 400 96 ) props/w_sr_m6d 32 -32 0 1 1 0 1 300 +( -64 400 224 ) ( -64 416 224 ) ( 384 416 224 ) props/w_sr_m6d 32 -32 0 1 1 0 1 300 +( -64 400 224 ) ( 384 400 224 ) ( 384 400 96 ) props/w_sr_m6d 32 -32 0 -1 1 0 1 100 +( 384 408 224 ) ( -64 408 224 ) ( -64 408 96 ) props/w_sr_m6d 32 -32 0 1 1 0 0 300 +( 160 392 96 ) ( 160 416 96 ) ( 160 404 224 ) props/w_sr_m6d 32 -32 0 1 1 0 1 300 +( 192 408 96 ) ( 192 392 96 ) ( 192 400 224 ) props/w_sr_m6d 32 -32 0 1 1 0 1 300 +} +// brush 1737 +{ +( 384 400 96 ) ( -64 400 96 ) ( -64 384 96 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 384 256 ) ( -64 400 256 ) ( 384 400 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 384 256 ) ( 384 384 256 ) ( 384 384 128 ) bricks/b_sr_20 0 -64 0 1 1 0 0 0 +( 384 384 256 ) ( 384 400 256 ) ( 384 400 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 384 400 256 ) ( -64 400 256 ) ( -64 400 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 352 384 128 ) ( 352 400 128 ) ( 352 392 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1738 +{ +( 384 400 0 ) ( -64 400 0 ) ( -64 384 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -64 384 64 ) ( -64 400 64 ) ( 384 400 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -64 384 64 ) ( 384 384 64 ) ( 384 384 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 384 384 64 ) ( 384 400 64 ) ( 384 400 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 384 400 64 ) ( -64 400 64 ) ( -64 400 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 128 384 0 ) ( 128 400 0 ) ( 128 392 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 1739 +{ +( 384 384 0 ) ( -64 384 0 ) ( -64 368 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -64 368 64 ) ( -64 384 64 ) ( 384 384 64 ) bricks/c_sr_mb1 0 0 180 1 1 0 0 0 +( -64 256 64 ) ( 384 256 64 ) ( 384 256 0 ) bricks/c_pv_m2 32 -1 0 1 1 0 0 0 +( 384 384 64 ) ( -64 384 64 ) ( -64 384 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -208 376 64 ) ( -208 360 64 ) ( -208 360 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 128 384 0 ) ( 128 368 0 ) ( 128 376 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 1740 +{ +( 384 400 64 ) ( -64 400 64 ) ( -64 384 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 384 96 ) ( -64 400 96 ) ( 384 400 96 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 384 128 ) ( 384 384 128 ) ( 384 384 64 ) bricks/b_sr_20 0 -64 0 1 1 0 0 0 +( 384 384 128 ) ( 384 400 128 ) ( 384 400 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 400 400 128 ) ( -48 400 128 ) ( -48 400 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 128 408 128 ) ( 128 392 128 ) ( 128 392 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1741 +{ +( 380 1088 124 ) ( 364 1088 124 ) ( 364 1086 124 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +( 364 1086 148 ) ( 364 1088 148 ) ( 380 1088 148 ) common/li_sr_v17 0 0 0 1 1 134217728 132 0 +( 364 1086 144 ) ( 380 1086 144 ) ( 380 1086 128 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +( 380 1086 144 ) ( 380 1088 144 ) ( 380 1088 128 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +( 380 1088 144 ) ( 364 1088 144 ) ( 364 1088 128 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +( 364 1088 144 ) ( 364 1086 144 ) ( 364 1086 128 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +} +// brush 1742 +{ +( 276 1088 124 ) ( 260 1088 124 ) ( 260 1086 124 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +( 260 1086 148 ) ( 260 1088 148 ) ( 276 1088 148 ) common/li_sr_v17 0 0 0 1 1 134217728 132 0 +( 260 1086 144 ) ( 276 1086 144 ) ( 276 1086 128 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +( 276 1086 144 ) ( 276 1088 144 ) ( 276 1088 128 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +( 276 1088 144 ) ( 260 1088 144 ) ( 260 1088 128 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +( 260 1088 144 ) ( 260 1086 144 ) ( 260 1086 128 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +} +// brush 1743 +{ +( 376 1064 128 ) ( 368 1064 128 ) ( 368 1000 128 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +( 368 1000 144 ) ( 368 1064 144 ) ( 376 1064 144 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 368 1000 144 ) ( 376 1000 144 ) ( 376 1000 128 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +( 376 1000 144 ) ( 376 1064 144 ) ( 376 1064 128 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +( 376 1086 144 ) ( 368 1086 144 ) ( 368 1086 128 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +( 368 1086 144 ) ( 368 1022 144 ) ( 368 1022 128 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +} +// brush 1744 +{ +( 272 1064 128 ) ( 264 1064 128 ) ( 264 1000 128 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +( 264 1000 144 ) ( 264 1064 144 ) ( 272 1064 144 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 264 1000 144 ) ( 272 1000 144 ) ( 272 1000 128 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +( 272 1000 144 ) ( 272 1064 144 ) ( 272 1064 128 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +( 272 1086 144 ) ( 264 1086 144 ) ( 264 1086 128 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +( 264 1064 144 ) ( 264 1000 144 ) ( 264 1000 128 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +} +// brush 1745 +{ +( 448 1000 128 ) ( 192 1000 128 ) ( 192 992 128 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +( 192 992 144 ) ( 192 1000 144 ) ( 448 1000 144 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 192 992 144 ) ( 448 992 144 ) ( 448 992 112 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +( 448 992 144 ) ( 448 1000 144 ) ( 448 1000 112 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +( 448 1000 144 ) ( 192 1000 144 ) ( 192 1000 112 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +( 192 1000 144 ) ( 192 992 144 ) ( 192 992 112 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 8388608 0 +} +// brush 1746 +{ +( 464 1104 0 ) ( 176 1104 0 ) ( 176 1088 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 176 1088 128 ) ( 464 1088 128 ) ( 464 1088 0 ) bricks/c_pv_m2gg 0 0 0 1 1 0 0 0 +( 464 1088 128 ) ( 464 1104 128 ) ( 464 1104 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 464 1104 128 ) ( 176 1104 128 ) ( 176 1104 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 288 1088 0 ) ( 288 1104 0 ) ( 288 1096 64 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 192 1088 32 ) ( 176 1088 32 ) ( 184 1104 32 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1747 +{ +( 464 1104 0 ) ( 176 1104 0 ) ( 176 1088 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 176 1088 128 ) ( 464 1088 128 ) ( 464 1088 0 ) bricks/c_pv_m2gg 0 0 0 1 1 0 0 0 +( 464 1104 128 ) ( 176 1104 128 ) ( 176 1104 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 176 1104 128 ) ( 176 1088 128 ) ( 176 1088 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 256 1104 0 ) ( 256 1088 0 ) ( 256 1096 64 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 192 1088 32 ) ( 176 1088 32 ) ( 184 1104 32 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1748 +{ +( 432 1104 0 ) ( 144 1104 0 ) ( 144 1088 0 ) bricks/c_pv_m2 32 0 0 1 1 0 0 0 +( 144 1092 128 ) ( 432 1092 128 ) ( 432 1092 0 ) metals/mt_pv_m11m 0 0 0 0.500000 0.500000 0 8388608 0 +( 432 1104 128 ) ( 144 1104 128 ) ( 144 1104 0 ) bricks/c_pv_m2 32 0 0 1 1 0 0 0 +( 160 1088 32 ) ( 144 1088 32 ) ( 152 1104 32 ) bricks/c_pv_m2 32 0 0 1 1 0 0 0 +( 256 1088 0 ) ( 256 1104 0 ) ( 256 1096 64 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 288 1104 0 ) ( 288 1088 0 ) ( 288 1096 64 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1749 +{ +( 176 1088 128 ) ( 176 1104 128 ) ( 464 1104 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 176 1088 128 ) ( 464 1088 128 ) ( 464 1088 0 ) bricks/c_pv_m2gg 0 0 0 1 1 0 0 0 +( 464 1088 128 ) ( 464 1104 128 ) ( 464 1104 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 464 1104 128 ) ( 176 1104 128 ) ( 176 1104 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 176 1104 128 ) ( 176 1088 128 ) ( 176 1088 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 176 1088 32 ) ( 192 1088 32 ) ( 184 1104 32 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1750 +{ +( 32 1524 -48 ) ( 48 1521 0 ) ( 25 1476 -8 ) bricks/s_sr_m12ab 80 -29 -180 0.951782 -1 0 0 0 +( 56 1464 0 ) ( 51 1432 -48 ) ( 23 1460 -48 ) bricks/s_sr_m12ab -108 -27 0 0.885895 1 0 0 0 +( 83 1484 8 ) ( 178 1471 -48 ) ( 125 1438 -48 ) bricks/s_sr_m12ab 121 -116 -98 1.000094 1.000056 0 0 0 +( 84 1476 0 ) ( 80 1500 0 ) ( 80 1500 -48 ) bricks/s_sr_m12ab -50 -29 -180 1.032593 -1 0 0 0 +( 79 1517 -48 ) ( 79 1517 -24 ) ( 40 1523 -24 ) bricks/s_sr_m12ab -112 -27 0 0.990265 1 0 0 0 +( 8 1470 -48 ) ( 125 1438 -48 ) ( 178 1471 -48 ) bricks/s_sr_m12ab 121 -101 -97 1.000073 0.999948 0 0 0 +( 56 1464 0 ) ( 25 1476 -8 ) ( 48 1521 0 ) bricks/s_sr_m12ab 121 -101 -97 1.000073 0.999948 0 0 0 +( 47 1514 0 ) ( 40 1523 -24 ) ( 79 1517 -24 ) bricks/s_sr_m12ab -112 -27 0 0.990288 1 0 0 0 +( 82 1517 6 ) ( 86 1406 6 ) ( 48 1411 6 ) bricks/s_sr_m12ab 121 -5 -97 0.999840 0.999965 0 0 0 +} +// brush 1751 +{ +( 16 1336 -56 ) ( 16 1352 -8 ) ( 64 1336 -16 ) bricks/s_sr_m12ab 0 -38 -180 1 -1 0 0 0 +( 72 1368 -8 ) ( 104 1368 -56 ) ( 80 1336 -56 ) bricks/s_sr_m12ab -104 -36 -180 1 -1 0 0 0 +( 48 1392 0 ) ( 48 1488 -56 ) ( 88 1440 -56 ) bricks/s_sr_m12ab 0 88 -180 1 1 0 0 0 +( 56 1394 -8 ) ( 33 1387 -8 ) ( 33 1387 -56 ) bricks/s_sr_m12ab 0 -38 -180 1 -1 0 0 0 +( 16 1384 -56 ) ( 16 1384 -32 ) ( 16 1344 -32 ) bricks/s_sr_m12ab -104 -36 -180 1 -1 0 0 0 +( 72 1320 -56 ) ( 88 1440 -56 ) ( 48 1488 -56 ) bricks/s_sr_m12ab 0 103 -180 1 1 0 0 0 +( 72 1368 -8 ) ( 64 1336 -16 ) ( 16 1352 -8 ) bricks/s_sr_m12ab 0 103 -180 1 1 0 0 0 +( 24 1352 -8 ) ( 16 1344 -32 ) ( 16 1384 -32 ) bricks/s_sr_m12ab -104 -36 -180 1 -1 0 0 0 +( 16 1387 -2 ) ( 125 1406 -2 ) ( 125 1368 -2 ) bricks/s_sr_m12ab 0 71 -180 1 1 0 0 0 +} +// brush 1752 +{ +( -80 1496 -8 ) ( -128 1480 0 ) ( -128 1496 -48 ) bricks/s_sr_m12ab -16 -31 -180 1 -1 0 0 0 +( -64 1496 -48 ) ( -40 1464 -48 ) ( -72 1464 0 ) bricks/s_sr_m12ab -8 -28 -180 1 -1 0 0 0 +( -56 1392 -48 ) ( -96 1344 -48 ) ( -96 1440 8 ) bricks/s_sr_m12ab -16 -7 -180 1 1 0 0 0 +( -111 1445 -48 ) ( -111 1445 0 ) ( -88 1438 0 ) bricks/s_sr_m12ab -16 -31 -180 1 -1 0 0 0 +( -128 1488 -24 ) ( -128 1448 -24 ) ( -128 1448 -48 ) bricks/s_sr_m12ab -8 -28 -180 1 -1 0 0 0 +( -96 1344 -48 ) ( -56 1392 -48 ) ( -72 1512 -48 ) bricks/s_sr_m12ab -16 7 -180 1 1 0 0 0 +( -128 1480 0 ) ( -80 1496 -8 ) ( -72 1464 0 ) bricks/s_sr_m12ab -16 7 -180 1 1 0 0 0 +( -128 1448 -24 ) ( -128 1488 -24 ) ( -120 1480 0 ) bricks/s_sr_m12ab -8 -28 -180 1 -1 0 0 0 +( -19 1464 6 ) ( -19 1426 6 ) ( -128 1445 6 ) bricks/s_sr_m12ab -16 -24 -180 1 1 0 0 0 +} +// brush 1753 +{ +( 128 1536 -16 ) ( -192 1536 -16 ) ( -192 1280 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( -192 1280 -8 ) ( -192 1536 -8 ) ( 128 1536 -8 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( -192 1280 -8 ) ( 128 1280 -8 ) ( 128 1280 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( 128 1280 -8 ) ( 128 1536 -8 ) ( 128 1536 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( 128 1536 -8 ) ( -192 1536 -8 ) ( -192 1536 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( -192 1536 -8 ) ( -192 1280 -8 ) ( -192 1280 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +} +// brush 1754 +{ +( 128 1536 -16 ) ( 80 1536 -16 ) ( 80 1488 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 80 1488 0 ) ( 80 1536 0 ) ( 128 1536 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 80 1488 0 ) ( 128 1488 0 ) ( 128 1488 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1488 0 ) ( 128 1536 0 ) ( 128 1536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1536 0 ) ( 80 1536 0 ) ( 80 1536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 80 1536 0 ) ( 80 1488 0 ) ( 80 1488 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1755 +{ +( -152 1536 -16 ) ( -192 1536 -16 ) ( -192 1456 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -192 1456 0 ) ( -192 1536 0 ) ( -152 1536 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -192 1456 0 ) ( -152 1456 0 ) ( -152 1456 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -152 1456 0 ) ( -152 1536 0 ) ( -152 1536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -152 1536 0 ) ( -192 1536 0 ) ( -192 1536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -192 1536 0 ) ( -192 1456 0 ) ( -192 1456 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1756 +{ +( -160 1392 -16 ) ( -192 1392 -16 ) ( -192 1344 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -192 1344 0 ) ( -192 1392 0 ) ( -160 1392 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -192 1344 0 ) ( -160 1344 0 ) ( -160 1344 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -160 1344 0 ) ( -160 1392 0 ) ( -160 1392 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -160 1424 0 ) ( -192 1424 0 ) ( -192 1424 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -192 1392 0 ) ( -192 1344 0 ) ( -192 1344 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1757 +{ +( 16 1296 -16 ) ( 8 1296 -16 ) ( 8 1280 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 8 1280 0 ) ( 8 1296 0 ) ( 16 1296 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 8 1280 0 ) ( 16 1280 0 ) ( 16 1280 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1280 0 ) ( 128 1296 0 ) ( 128 1296 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 16 1296 0 ) ( 8 1296 0 ) ( 8 1296 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 8 1296 0 ) ( 8 1280 0 ) ( 8 1280 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 1758 +{ +( 56 1328 -16 ) ( 48 1328 -16 ) ( 48 1296 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 48 1296 0 ) ( 48 1328 0 ) ( 56 1328 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 56 1296 0 ) ( 56 1296 -16 ) ( 8 1296 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1296 -16 ) ( 128 1296 0 ) ( 128 1328 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 56 1328 0 ) ( 48 1328 0 ) ( 48 1328 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 8 1296 0 ) ( 8 1296 -16 ) ( 48 1328 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 1759 +{ +( 56 1352 -16 ) ( 48 1352 -16 ) ( 48 1328 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 48 1328 0 ) ( 48 1352 0 ) ( 56 1352 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 48 1328 0 ) ( 56 1328 0 ) ( 56 1328 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1328 0 ) ( 128 1352 0 ) ( 128 1352 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 56 1352 0 ) ( 48 1352 0 ) ( 48 1352 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 48 1352 0 ) ( 48 1328 0 ) ( 48 1328 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 1760 +{ +( 96 1384 -16 ) ( 88 1384 -16 ) ( 88 1352 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 88 1352 0 ) ( 88 1384 0 ) ( 96 1384 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 96 1352 0 ) ( 96 1352 -16 ) ( 48 1352 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1352 -16 ) ( 128 1352 0 ) ( 128 1384 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 96 1384 0 ) ( 88 1384 0 ) ( 88 1384 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 48 1352 0 ) ( 48 1352 -16 ) ( 88 1384 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 1761 +{ +( 96 1408 -16 ) ( 88 1408 -16 ) ( 88 1384 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 88 1384 0 ) ( 88 1408 0 ) ( 96 1408 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 88 1384 0 ) ( 96 1384 0 ) ( 96 1384 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1384 0 ) ( 128 1408 0 ) ( 128 1408 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 96 1408 0 ) ( 88 1408 0 ) ( 88 1408 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 88 1408 0 ) ( 88 1384 0 ) ( 88 1384 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 1762 +{ +( 80 1408 -16 ) ( 88 1408 -16 ) ( 112 1432 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 104 1408 0 ) ( 104 1432 0 ) ( 112 1432 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 112 1408 0 ) ( 112 1408 -16 ) ( 88 1408 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1408 -16 ) ( 128 1408 0 ) ( 128 1432 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 112 1432 0 ) ( 104 1432 0 ) ( 104 1432 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 88 1408 0 ) ( 88 1408 -16 ) ( 104 1432 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 1763 +{ +( 112 1464 -16 ) ( 104 1464 -16 ) ( 104 1432 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 104 1432 0 ) ( 104 1464 0 ) ( 112 1464 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 104 1432 0 ) ( 112 1432 0 ) ( 112 1432 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1432 0 ) ( 128 1464 0 ) ( 128 1464 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 112 1464 0 ) ( 104 1464 0 ) ( 104 1464 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 104 1464 0 ) ( 104 1432 0 ) ( 104 1432 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 1764 +{ +( 88 1488 -16 ) ( 80 1488 -16 ) ( 80 1464 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 80 1464 0 ) ( 80 1488 0 ) ( 88 1488 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 104 1464 -16 ) ( 104 1464 0 ) ( 112 1464 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1488 0 ) ( 128 1488 -16 ) ( 128 1464 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 112 1488 -16 ) ( 112 1488 0 ) ( 80 1488 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 104 1464 0 ) ( 104 1464 -16 ) ( 80 1488 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 1765 +{ +( 80 1512 -16 ) ( 48 1512 -16 ) ( 48 1504 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 48 1504 0 ) ( 48 1512 0 ) ( 80 1512 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 80 1488 0 ) ( 80 1488 -16 ) ( 48 1504 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 80 1512 0 ) ( 80 1512 -16 ) ( 80 1488 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 80 1536 -16 ) ( 80 1536 0 ) ( 48 1536 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 48 1512 0 ) ( 48 1504 0 ) ( 48 1504 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1766 +{ +( 48 1512 -16 ) ( 8 1512 -16 ) ( 8 1504 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 8 1504 0 ) ( 8 1512 0 ) ( 48 1512 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 8 1504 0 ) ( 48 1504 0 ) ( 48 1504 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( 48 1504 0 ) ( 48 1512 0 ) ( 48 1512 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 48 1536 0 ) ( 8 1536 0 ) ( 8 1536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 8 1512 0 ) ( 8 1504 0 ) ( 8 1504 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1767 +{ +( 8 1496 -16 ) ( -16 1496 -16 ) ( -16 1488 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -16 1488 0 ) ( -16 1496 0 ) ( 8 1496 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 8 1504 0 ) ( 8 1504 -16 ) ( -16 1488 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( 8 1504 -16 ) ( 8 1504 0 ) ( 8 1512 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -16 1536 0 ) ( -16 1536 -16 ) ( 8 1536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -16 1512 -16 ) ( -16 1512 0 ) ( -16 1488 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1768 +{ +( -16 1496 -16 ) ( -48 1496 -16 ) ( -48 1488 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -48 1488 0 ) ( -48 1496 0 ) ( -16 1496 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -48 1488 0 ) ( -16 1488 0 ) ( -16 1488 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -16 1488 0 ) ( -16 1496 0 ) ( -16 1496 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -16 1536 0 ) ( -48 1536 0 ) ( -48 1536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -48 1496 0 ) ( -48 1488 0 ) ( -48 1488 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1769 +{ +( -48 1480 -16 ) ( -88 1480 -16 ) ( -88 1472 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -88 1472 0 ) ( -88 1480 0 ) ( -48 1480 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -48 1488 0 ) ( -48 1488 -16 ) ( -88 1472 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -48 1488 -16 ) ( -48 1488 0 ) ( -48 1496 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -80 1536 0 ) ( -80 1536 -16 ) ( -40 1536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -88 1496 -16 ) ( -88 1496 0 ) ( -88 1472 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1770 +{ +( -88 1480 -16 ) ( -112 1480 -16 ) ( -112 1472 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -112 1472 0 ) ( -112 1480 0 ) ( -88 1480 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -112 1472 0 ) ( -88 1472 0 ) ( -88 1472 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -88 1472 0 ) ( -88 1480 0 ) ( -88 1480 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -88 1536 0 ) ( -112 1536 0 ) ( -112 1536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -112 1480 0 ) ( -112 1472 0 ) ( -112 1472 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1771 +{ +( -112 1464 -16 ) ( -152 1464 -16 ) ( -152 1456 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -152 1456 0 ) ( -152 1464 0 ) ( -112 1464 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -112 1472 0 ) ( -112 1472 -16 ) ( -152 1456 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -112 1472 -16 ) ( -112 1472 0 ) ( -112 1480 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -152 1536 0 ) ( -152 1536 -16 ) ( -112 1536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -152 1480 -16 ) ( -152 1480 0 ) ( -152 1456 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1772 +{ +( -160 1456 -16 ) ( -168 1456 -16 ) ( -168 1424 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -168 1424 0 ) ( -168 1456 0 ) ( -160 1456 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -168 1424 0 ) ( -160 1424 0 ) ( -160 1424 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -152 1456 0 ) ( -152 1456 -16 ) ( -160 1424 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -168 1456 0 ) ( -168 1456 -16 ) ( -152 1456 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -192 1456 -16 ) ( -192 1456 0 ) ( -192 1424 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1773 +{ +( -128 1360 -16 ) ( -160 1360 -16 ) ( -160 1352 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -160 1352 0 ) ( -160 1360 0 ) ( -128 1360 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -160 1344 -16 ) ( -160 1344 0 ) ( -128 1344 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -128 1352 0 ) ( -128 1360 0 ) ( -128 1360 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -160 1392 0 ) ( -160 1392 -16 ) ( -128 1360 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -160 1352 0 ) ( -160 1352 -16 ) ( -160 1392 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1774 +{ +( -96 1360 -16 ) ( -128 1360 -16 ) ( -128 1352 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -128 1352 0 ) ( -128 1360 0 ) ( -96 1360 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -128 1344 0 ) ( -96 1344 0 ) ( -96 1344 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -96 1352 0 ) ( -96 1360 0 ) ( -96 1360 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -96 1360 0 ) ( -128 1360 0 ) ( -128 1360 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -128 1360 0 ) ( -128 1352 0 ) ( -128 1352 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1775 +{ +( -72 1368 -16 ) ( -112 1368 -16 ) ( -112 1360 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -112 1360 0 ) ( -112 1368 0 ) ( -72 1368 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -72 1344 0 ) ( -72 1344 -16 ) ( -96 1344 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -72 1352 -16 ) ( -72 1352 0 ) ( -72 1368 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -96 1360 0 ) ( -96 1360 -16 ) ( -72 1368 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -96 1360 -16 ) ( -96 1360 0 ) ( -96 1352 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1776 +{ +( -24 1376 -16 ) ( -32 1376 -16 ) ( -32 1344 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -32 1344 0 ) ( -32 1376 0 ) ( -24 1376 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -72 1344 -16 ) ( -72 1344 0 ) ( -24 1344 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -64 1368 0 ) ( -64 1368 -16 ) ( -24 1344 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -64 1368 -16 ) ( -64 1368 0 ) ( -72 1368 0 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -72 1344 0 ) ( -72 1344 -16 ) ( -72 1368 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1777 +{ +( -24 1344 -16 ) ( -32 1344 -16 ) ( -32 1320 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -32 1320 0 ) ( -32 1344 0 ) ( -24 1344 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -32 1320 0 ) ( -24 1320 0 ) ( -24 1320 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -24 1320 0 ) ( -24 1344 0 ) ( -24 1344 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -24 1344 0 ) ( -32 1344 0 ) ( -32 1344 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -192 1344 0 ) ( -192 1320 0 ) ( -192 1320 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1778 +{ +( -8 1320 -16 ) ( -16 1320 -16 ) ( -16 1280 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -16 1280 0 ) ( -16 1320 0 ) ( -8 1320 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -32 1280 -16 ) ( -32 1280 0 ) ( -8 1280 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -24 1320 0 ) ( -24 1320 -16 ) ( -8 1280 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -24 1320 -16 ) ( -24 1320 0 ) ( -32 1320 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -192 1288 0 ) ( -192 1288 -16 ) ( -192 1328 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1779 +{ +( 16 1240 -8 ) ( -32 1224 0 ) ( -32 1240 -48 ) bricks/s_sr_m12ab 80 -31 -180 1 -1 0 0 0 +( 32 1240 -48 ) ( 56 1208 -48 ) ( 24 1208 0 ) bricks/s_sr_m12ab -8 -29 -180 1 -1 0 0 0 +( 40 1136 -48 ) ( 0 1088 -48 ) ( 0 1184 8 ) bricks/s_sr_m12ab 80 -8 -180 1 1 0 0 0 +( -15 1189 -48 ) ( -15 1189 0 ) ( 8 1182 0 ) bricks/s_sr_m12ab 80 -31 -180 1 -1 0 0 0 +( -32 1232 -24 ) ( -32 1192 -24 ) ( -32 1192 -48 ) bricks/s_sr_m12ab -8 -29 -180 1 -1 0 0 0 +( 0 1088 -48 ) ( 40 1136 -48 ) ( 24 1256 -48 ) bricks/s_sr_m12ab 80 7 -180 1 1 0 0 0 +( -32 1224 0 ) ( 16 1240 -8 ) ( 24 1208 0 ) bricks/s_sr_m12ab 80 7 -180 1 1 0 0 0 +( -32 1192 -24 ) ( -32 1232 -24 ) ( -24 1224 0 ) bricks/s_sr_m12ab -8 -29 -180 1 -1 0 0 0 +( 77 1208 6 ) ( 77 1170 6 ) ( -32 1189 6 ) bricks/s_sr_m12ab 80 -24 -180 1 1 0 0 0 +} +// brush 1780 +{ +( 24 1184 -16 ) ( 40 1136 -8 ) ( 24 1136 -56 ) bricks/s_sr_m12ab -96 -40 0 1 1 0 0 0 +( 24 1200 -56 ) ( 56 1224 -56 ) ( 56 1192 -8 ) bricks/s_sr_m12ab 104 -38 -180 1 -1 0 0 0 +( 128 1208 -56 ) ( 176 1168 -56 ) ( 80 1168 0 ) bricks/s_sr_m12ab -95 8 90 1 1 0 0 0 +( 75 1153 -56 ) ( 75 1153 -8 ) ( 82 1176 -8 ) bricks/s_sr_m12ab -96 -40 0 1 1 0 0 0 +( 32 1136 -32 ) ( 72 1136 -32 ) ( 72 1136 -56 ) bricks/s_sr_m12ab 104 -38 -180 1 -1 0 0 0 +( 176 1168 -56 ) ( 128 1208 -56 ) ( 8 1192 -56 ) bricks/s_sr_m12ab -95 -104 90 1 1 0 0 0 +( 40 1136 -8 ) ( 24 1184 -16 ) ( 56 1192 -8 ) bricks/s_sr_m12ab -95 -104 90 1 1 0 0 0 +( 72 1136 -32 ) ( 32 1136 -32 ) ( 40 1144 -8 ) bricks/s_sr_m12ab 104 -38 -180 1 -1 0 0 0 +( 56 1245 -2 ) ( 94 1245 -2 ) ( 75 1136 -2 ) bricks/s_sr_m12ab -95 -8 90 1 1 0 0 0 +} +// brush 1781 +{ +( -45 1078 0 ) ( -58 1069 0 ) ( -43 1050 0 ) bricks/c_pv_m2 61 -5 126 0.999836 0.999895 134217728 0 0 +( -43 1050 4 ) ( -58 1069 4 ) ( -45 1078 4 ) bricks/c_pv_m2 61 -5 126 0.999836 0.999895 134217728 0 0 +( -43 1050 8 ) ( -30 1059 8 ) ( -30 1059 -8 ) bricks/c_pv_m2 0 117 90 1 0.809021 134217728 0 0 +( -30 1059 8 ) ( -45 1078 8 ) ( -45 1078 -8 ) bricks/c_pv_m2 0 -53 90 1 0.808838 134217728 0 0 +( -45 1078 8 ) ( -58 1069 8 ) ( -58 1069 -8 ) bricks/c_pv_m2 0 7 90 1 0.809006 134217728 0 0 +( -58 1069 8 ) ( -43 1050 8 ) ( -43 1050 -8 ) bricks/c_pv_m2 0 -41 90 1 0.809021 134217728 0 0 +} +// brush 1782 +{ +( 60 1056 -8 ) ( 44 1056 -8 ) ( 44 1032 -8 ) bricks/c_pv_m2 32 20 90 1 1 134217728 0 0 +( 44 1032 -4 ) ( 44 1056 -4 ) ( 60 1056 -4 ) bricks/c_pv_m2 32 20 90 1 1 134217728 0 0 +( 44 1032 8 ) ( 60 1032 8 ) ( 60 1032 -8 ) bricks/c_pv_m2 0 20 90 1 1 134217728 0 0 +( 60 1032 8 ) ( 60 1056 8 ) ( 60 1056 -8 ) bricks/c_pv_m2 0 96 90 1 1 134217728 0 0 +( 60 1056 8 ) ( 44 1056 8 ) ( 44 1056 -8 ) bricks/c_pv_m2 0 20 90 1 1 134217728 0 0 +( 44 1056 8 ) ( 44 1032 8 ) ( 44 1032 -8 ) bricks/c_pv_m2 0 96 90 1 1 134217728 0 0 +} +// brush 1783 +{ +( -2 1105 -8 ) ( -15 1114 -8 ) ( -30 1095 -8 ) bricks/c_pv_m2 67 91 53 0.999940 0.999950 134217728 0 0 +( -30 1095 -4 ) ( -15 1114 -4 ) ( -2 1105 -4 ) bricks/c_pv_m2 67 91 53 0.999940 0.999950 134217728 0 0 +( -30 1095 8 ) ( -17 1086 8 ) ( -17 1086 -8 ) bricks/c_pv_m2 0 100 90 1 0.809021 134217728 0 0 +( -17 1086 8 ) ( -2 1105 8 ) ( -2 1105 -8 ) bricks/c_pv_m2 0 -85 90 1 0.808960 134217728 0 0 +( -2 1105 8 ) ( -15 1114 8 ) ( -15 1114 -8 ) bricks/c_pv_m2 0 83 90 1 0.808998 134217728 0 0 +( -15 1114 8 ) ( -30 1095 8 ) ( -30 1095 -8 ) bricks/c_pv_m2 0 -97 90 1 0.808899 134217728 0 0 +} +// brush 1784 +{ +( -11 1057 -8 ) ( -13 1041 -8 ) ( 11 1039 -8 ) bricks/c_pv_m2 70 -74 173 1.000055 1.000112 134217728 0 0 +( 11 1039 -4 ) ( -13 1041 -4 ) ( -11 1057 -4 ) bricks/c_pv_m2 70 -74 173 1.000055 1.000112 134217728 0 0 +( 11 1039 8 ) ( 13 1055 8 ) ( 13 1055 -8 ) bricks/c_pv_m2 0 43 90 1 0.994751 134217728 0 0 +( 13 1055 8 ) ( -11 1057 8 ) ( -11 1057 -8 ) bricks/c_pv_m2 0 117 90 1 -0.994385 134217728 0 0 +( -11 1057 8 ) ( -13 1041 8 ) ( -13 1041 -8 ) bricks/c_pv_m2 0 41 90 1 0.994507 134217728 0 0 +( -13 1041 8 ) ( 11 1039 8 ) ( 11 1039 -8 ) bricks/c_pv_m2 0 114 90 1 -0.994720 134217728 0 0 +} +// brush 1785 +{ +( -40 1156 0 ) ( -56 1156 0 ) ( -56 1132 0 ) bricks/c_pv_m2 -68 120 90 1 1 134217728 0 0 +( -56 1132 4 ) ( -56 1156 4 ) ( -40 1156 4 ) bricks/c_pv_m2 -68 120 90 1 1 134217728 0 0 +( -56 1132 8 ) ( -40 1132 8 ) ( -40 1132 -8 ) bricks/c_pv_m2 0 120 90 1 1 134217728 0 0 +( -40 1132 8 ) ( -40 1156 8 ) ( -40 1156 -8 ) bricks/c_pv_m2 0 -4 90 1 1 134217728 0 0 +( -40 1156 8 ) ( -56 1156 8 ) ( -56 1156 -8 ) bricks/c_pv_m2 0 120 90 1 1 134217728 0 0 +( -56 1156 8 ) ( -56 1132 8 ) ( -56 1132 -8 ) bricks/c_pv_m2 0 -4 90 1 1 134217728 0 0 +} +// brush 1786 +{ +( 8 1092 -8 ) ( -8 1092 -8 ) ( -8 1068 -8 ) bricks/c_pv_m2 -4 72 90 1 1 134217728 0 0 +( -8 1068 -4 ) ( -8 1092 -4 ) ( 8 1092 -4 ) bricks/c_pv_m2 -4 72 90 1 1 134217728 0 0 +( -8 1068 8 ) ( 8 1068 8 ) ( 8 1068 -8 ) bricks/c_pv_m2 0 72 90 1 1 134217728 0 0 +( 8 1068 8 ) ( 8 1092 8 ) ( 8 1092 -8 ) bricks/c_pv_m2 0 60 90 1 1 134217728 0 0 +( 8 1092 8 ) ( -8 1092 8 ) ( -8 1092 -8 ) bricks/c_pv_m2 0 72 90 1 1 134217728 0 0 +( -8 1092 8 ) ( -8 1068 8 ) ( -8 1068 -8 ) bricks/c_pv_m2 0 60 90 1 1 134217728 0 0 +} +// brush 1787 +{ +( -64 1097 96 ) ( -80 1097 96 ) ( -80 1064 95 ) bricks/c_pv_m2 -72 303 270 1 1 134217728 0 0 +( -64 1064 111 ) ( -80 1064 111 ) ( -80 1096 112 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -64 1016 224 ) ( -64 1192 224 ) ( -64 1192 96 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1192 224 ) ( -80 1016 224 ) ( -80 1016 96 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1097 96 ) ( -64 1097 96 ) ( -64 1096 112 ) bricks/c_pv_m2 -72 302 270 1 1 134217728 0 0 +( -64 1064 95 ) ( -80 1064 95 ) ( -80 1064 111 ) bricks/c_pv_m2 -72 302 270 1 1 134217728 0 0 +} +// brush 1788 +{ +( -80 1240 0 ) ( -96 1240 0 ) ( -96 960 0 ) bricks/c_sr_m3a 0 0 0 1 1 0 0 0 +( -96 960 128 ) ( -96 1240 128 ) ( -80 1240 128 ) bricks/c_sr_m3a 0 0 0 1 1 0 0 0 +( -96 960 128 ) ( -80 960 128 ) ( -80 960 112 ) bricks/c_sr_m3a 0 0 0 1 1 0 0 0 +( -80 960 128 ) ( -80 1240 128 ) ( -80 1240 112 ) bricks/b_pv_v1c 0 112 0 1 1 0 0 0 +( -80 1240 128 ) ( -96 1240 128 ) ( -96 1240 112 ) bricks/c_sr_m3a 0 0 0 1 1 0 0 0 +( -96 1240 128 ) ( -96 960 128 ) ( -96 960 112 ) bricks/c_sr_m3a 0 0 0 1 1 0 0 0 +} +// brush 1789 +{ +( -64 1264 112 ) ( -80 1264 112 ) ( -80 1088 112 ) bricks/c_pv_m2 -72 303 270 1 1 0 0 0 +( -80 1088 128 ) ( -80 1264 128 ) ( -64 1264 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -64 1088 240 ) ( -64 1264 240 ) ( -64 1264 112 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -80 1264 240 ) ( -80 1088 240 ) ( -80 1088 112 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -64 960 112 ) ( -80 960 112 ) ( -72 960 240 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -80 1104 112 ) ( -64 1104 112 ) ( -72 1104 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1790 +{ +( -64 1264 96 ) ( -80 1264 96 ) ( -80 1088 96 ) bricks/c_pv_m2 -72 303 270 1 1 134217728 0 0 +( -80 1088 112 ) ( -80 1264 112 ) ( -64 1264 112 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -64 1088 224 ) ( -64 1264 224 ) ( -64 1264 96 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1264 224 ) ( -80 1088 224 ) ( -80 1088 96 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -64 960 96 ) ( -80 960 96 ) ( -72 960 224 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1024 96 ) ( -64 1024 96 ) ( -72 1024 112 ) bricks/c_pv_m2 -72 302 270 1 1 134217728 0 0 +} +// brush 1791 +{ +( -64 1264 80 ) ( -80 1264 80 ) ( -80 1088 80 ) bricks/c_pv_m2 -72 302 270 1 1 134217728 0 0 +( -80 1088 96 ) ( -80 1264 96 ) ( -64 1264 96 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -64 1088 208 ) ( -64 1264 208 ) ( -64 1264 80 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1264 208 ) ( -80 1088 208 ) ( -80 1088 80 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -64 960 80 ) ( -80 960 80 ) ( -72 960 208 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1008 80 ) ( -64 1008 80 ) ( -72 1008 96 ) bricks/c_pv_m2 -72 302 270 1 1 134217728 0 0 +} +// brush 1792 +{ +( -64 1264 64 ) ( -80 1264 64 ) ( -80 1088 64 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1088 80 ) ( -80 1264 80 ) ( -64 1264 80 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -64 1088 192 ) ( -64 1264 192 ) ( -64 1264 64 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1264 192 ) ( -80 1088 192 ) ( -80 1088 64 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -64 960 64 ) ( -80 960 64 ) ( -72 960 192 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 992 64 ) ( -64 992 64 ) ( -72 992 80 ) bricks/c_pv_m2 -72 302 270 1 1 134217728 0 0 +} +// brush 1793 +{ +( -64 1264 112 ) ( -80 1264 112 ) ( -80 1088 112 ) bricks/c_pv_m2 -72 302 270 1 1 0 0 0 +( -80 1088 128 ) ( -80 1264 128 ) ( -64 1264 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -64 1088 240 ) ( -64 1264 240 ) ( -64 1264 112 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -80 1264 240 ) ( -80 1088 240 ) ( -80 1088 112 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -80 1240 112 ) ( -64 1240 112 ) ( -72 1240 240 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -72 1104 112 ) ( -88 1104 112 ) ( -80 1104 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1794 +{ +( -64 1264 96 ) ( -80 1264 96 ) ( -80 1088 96 ) bricks/c_pv_m2 -72 302 270 1 1 134217728 0 0 +( -80 1088 112 ) ( -80 1264 112 ) ( -64 1264 112 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -64 1088 224 ) ( -64 1264 224 ) ( -64 1264 96 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1264 224 ) ( -80 1088 224 ) ( -80 1088 96 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1240 96 ) ( -64 1240 96 ) ( -72 1240 224 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -64 1136 96 ) ( -80 1136 96 ) ( -72 1136 112 ) bricks/c_pv_m2 -72 304 270 1 1 134217728 0 0 +} +// brush 1795 +{ +( -64 1264 80 ) ( -80 1264 80 ) ( -80 1088 80 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1088 96 ) ( -80 1264 96 ) ( -64 1264 96 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -64 1088 208 ) ( -64 1264 208 ) ( -64 1264 80 ) bricks/c_pv_m2gg 0 0 0 1 1 134217728 0 0 +( -80 1264 208 ) ( -80 1088 208 ) ( -80 1088 80 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1240 80 ) ( -64 1240 80 ) ( -72 1240 208 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -64 1184 80 ) ( -80 1184 80 ) ( -72 1184 96 ) bricks/c_pv_m2 -72 304 270 1 1 134217728 0 0 +} +// brush 1796 +{ +( -64 1264 64 ) ( -80 1264 64 ) ( -80 1088 64 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1088 80 ) ( -80 1264 80 ) ( -64 1264 80 ) bricks/c_pv_m2 0 64 90 1 1 134217728 0 0 +( -64 1088 192 ) ( -64 1264 192 ) ( -64 1264 64 ) bricks/c_pv_m2gg 0 0 0 1 1 134217728 0 0 +( -80 1264 192 ) ( -80 1088 192 ) ( -80 1088 64 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1240 64 ) ( -64 1240 64 ) ( -72 1240 192 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -64 1160 64 ) ( -80 1160 64 ) ( -72 1160 80 ) bricks/c_pv_m2 -72 304 270 1 1 134217728 0 0 +} +// brush 1797 +{ +( -64 1264 48 ) ( -80 1264 48 ) ( -80 1088 48 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1088 64 ) ( -80 1264 64 ) ( -64 1264 64 ) bricks/c_pv_m2 0 64 90 1 1 134217728 0 0 +( -64 1088 176 ) ( -64 1264 176 ) ( -64 1264 48 ) bricks/c_pv_m2gg 0 0 0 1 1 134217728 0 0 +( -80 1264 176 ) ( -80 1088 176 ) ( -80 1088 48 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1240 48 ) ( -64 1240 48 ) ( -72 1240 176 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -64 1136 48 ) ( -80 1136 48 ) ( -72 1136 64 ) bricks/c_pv_m2 -72 304 270 1 1 134217728 0 0 +} +// brush 1798 +{ +( -64 1264 32 ) ( -80 1264 32 ) ( -80 1088 32 ) bricks/c_pv_m2 -72 302 270 1 1 134217728 0 0 +( -80 1088 48 ) ( -80 1264 48 ) ( -64 1264 48 ) bricks/c_pv_m2 0 64 90 1 1 134217728 0 0 +( -64 1088 160 ) ( -64 1264 160 ) ( -64 1264 32 ) bricks/c_pv_m2gg 0 0 0 1 1 134217728 0 0 +( -80 1264 160 ) ( -80 1088 160 ) ( -80 1088 32 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1240 32 ) ( -64 1240 32 ) ( -72 1240 160 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -64 1104 32 ) ( -80 1104 32 ) ( -72 1104 48 ) bricks/c_pv_m2 -72 304 270 1 1 134217728 0 0 +} +// brush 1799 +{ +( -64 1264 48 ) ( -80 1264 48 ) ( -80 1088 48 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1088 64 ) ( -80 1264 64 ) ( -64 1264 64 ) bricks/c_pv_m2 -72 304 270 1 1 134217728 0 0 +( -64 1088 176 ) ( -64 1264 176 ) ( -64 1264 48 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1264 176 ) ( -80 1088 176 ) ( -80 1088 48 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -64 960 48 ) ( -80 960 48 ) ( -72 960 176 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1016 48 ) ( -64 1016 48 ) ( -72 1016 64 ) bricks/c_pv_m2 -72 304 270 1 1 134217728 0 0 +} +// brush 1800 +{ +( -64 1264 32 ) ( -80 1264 32 ) ( -80 1088 32 ) bricks/c_pv_m2 -72 302 270 1 1 134217728 0 0 +( -80 1088 48 ) ( -80 1264 48 ) ( -64 1264 48 ) bricks/c_pv_m2 -72 304 270 1 1 134217728 0 0 +( -64 1088 160 ) ( -64 1264 160 ) ( -64 1264 32 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1264 160 ) ( -80 1088 160 ) ( -80 1088 32 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -64 960 32 ) ( -80 960 32 ) ( -72 960 160 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1040 32 ) ( -64 1040 32 ) ( -72 1040 48 ) bricks/c_pv_m2 -72 304 270 1 1 134217728 0 0 +} +// brush 1801 +{ +( -64 1264 16 ) ( -80 1264 16 ) ( -80 1088 16 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1088 32 ) ( -80 1264 32 ) ( -64 1264 32 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -64 1088 144 ) ( -64 1264 144 ) ( -64 1264 16 ) bricks/c_pv_m2gg 0 0 0 1 1 134217728 0 0 +( -80 1264 144 ) ( -80 1088 144 ) ( -80 1088 16 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1240 16 ) ( -64 1240 16 ) ( -72 1240 144 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -64 1152 16 ) ( -80 1152 16 ) ( -72 1152 32 ) bricks/c_pv_m2 224 192 90 1 1 134217728 0 0 +} +// brush 1802 +{ +( -64 1264 16 ) ( -80 1264 16 ) ( -80 1088 16 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1088 32 ) ( -80 1264 32 ) ( -64 1264 32 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -64 1088 144 ) ( -64 1264 144 ) ( -64 1264 16 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1264 144 ) ( -80 1088 144 ) ( -80 1088 16 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -64 960 16 ) ( -80 960 16 ) ( -72 960 144 ) bricks/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -80 1024 16 ) ( -64 1024 16 ) ( -72 1024 32 ) bricks/c_pv_m2 -72 304 270 1 1 134217728 0 0 +} +// brush 1803 +{ +( -64 1264 0 ) ( -80 1264 0 ) ( -80 1088 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -80 1088 16 ) ( -80 1264 16 ) ( -64 1264 16 ) bricks/c_pv_m2 -72 304 270 1 1 0 0 0 +( -64 1088 128 ) ( -64 1264 128 ) ( -64 1264 0 ) bricks/c_pv_m2gg 0 0 0 1 1 0 0 0 +( -80 1264 128 ) ( -80 1088 128 ) ( -80 1088 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -80 1240 0 ) ( -64 1240 0 ) ( -72 1240 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -64 960 0 ) ( -80 960 0 ) ( -72 960 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1804 +{ +( -64 1264 0 ) ( -80 1264 0 ) ( -80 1088 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -80 1088 128 ) ( -80 1264 128 ) ( -64 1264 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -96 768 128 ) ( -80 768 128 ) ( -80 768 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -64 1088 128 ) ( -64 1264 128 ) ( -64 1264 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -80 1264 128 ) ( -80 1088 128 ) ( -80 1088 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -80 960 0 ) ( -64 960 0 ) ( -72 960 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1805 +{ +( -64 1264 0 ) ( -80 1264 0 ) ( -80 1088 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -80 1088 128 ) ( -80 1264 128 ) ( -64 1264 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -64 1088 128 ) ( -64 1264 128 ) ( -64 1264 0 ) bricks/c_pv_m2gg 0 0 0 1 1 0 0 0 +( -64 1264 128 ) ( -80 1264 128 ) ( -80 1264 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -80 1264 128 ) ( -80 1088 128 ) ( -80 1088 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -64 1240 0 ) ( -80 1240 0 ) ( -72 1240 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1806 +{ +( 128 1280 -16 ) ( -64 1280 -16 ) ( -64 960 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -64 960 -8 ) ( -64 1280 -8 ) ( 128 1280 -8 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( -64 960 0 ) ( 128 960 0 ) ( 128 960 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( 128 960 0 ) ( 128 1280 0 ) ( 128 1280 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( 128 1280 0 ) ( -64 1280 0 ) ( -64 1280 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -64 1280 0 ) ( -64 960 0 ) ( -64 960 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 1807 +{ +( 48 1280 -16 ) ( 40 1280 -16 ) ( 40 1256 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 40 1256 0 ) ( 40 1280 0 ) ( 48 1280 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 40 1256 0 ) ( 48 1256 0 ) ( 48 1256 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1280 0 ) ( 128 1280 -16 ) ( 128 1256 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 48 1280 -16 ) ( 48 1280 0 ) ( 8 1280 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 8 1280 -16 ) ( 8 1280 0 ) ( 40 1256 0 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 1808 +{ +( 88 1272 -16 ) ( 72 1272 -16 ) ( 72 1240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 72 1240 0 ) ( 72 1272 0 ) ( 88 1272 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 72 1240 0 ) ( 88 1240 0 ) ( 88 1240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1256 0 ) ( 128 1256 -16 ) ( 128 1240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 88 1256 -16 ) ( 88 1256 0 ) ( 40 1256 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 40 1256 -16 ) ( 40 1256 0 ) ( 80 1240 0 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 1809 +{ +( 112 1240 -16 ) ( 96 1240 -16 ) ( 96 1200 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 96 1200 0 ) ( 96 1240 0 ) ( 112 1240 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 96 1200 0 ) ( 112 1200 0 ) ( 112 1200 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1240 0 ) ( 128 1240 -16 ) ( 128 1200 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 112 1240 -16 ) ( 112 1240 0 ) ( 80 1240 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 80 1240 -16 ) ( 80 1240 0 ) ( 104 1200 0 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 1810 +{ +( 112 1200 -16 ) ( 104 1200 -16 ) ( 104 1160 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 104 1160 0 ) ( 104 1200 0 ) ( 112 1200 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 104 1160 0 ) ( 112 1160 0 ) ( 112 1160 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1160 0 ) ( 128 1200 0 ) ( 128 1200 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 112 1200 0 ) ( 104 1200 0 ) ( 104 1200 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 104 1200 0 ) ( 104 1160 0 ) ( 104 1160 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 1811 +{ +( 80 1160 -16 ) ( 72 1160 -16 ) ( 72 1136 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 72 1136 0 ) ( 72 1160 0 ) ( 80 1160 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 112 1136 0 ) ( 112 1136 -16 ) ( 72 1136 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1136 -16 ) ( 128 1136 0 ) ( 128 1160 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 104 1160 0 ) ( 104 1160 -16 ) ( 112 1160 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 104 1160 -16 ) ( 104 1160 0 ) ( 72 1136 0 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 1812 +{ +( 80 1136 -16 ) ( 72 1136 -16 ) ( 72 1096 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 72 1096 0 ) ( 72 1136 0 ) ( 80 1136 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 72 1096 0 ) ( 80 1096 0 ) ( 80 1096 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1096 0 ) ( 128 1136 0 ) ( 128 1136 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 80 1136 0 ) ( 72 1136 0 ) ( 72 1136 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 72 1136 0 ) ( 72 1096 0 ) ( 72 1096 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 1813 +{ +( 96 1096 -16 ) ( 88 1096 -16 ) ( 88 1056 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 88 1056 0 ) ( 88 1096 0 ) ( 96 1096 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 88 1056 0 ) ( 96 1056 0 ) ( 96 1056 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1096 0 ) ( 128 1096 -16 ) ( 128 1056 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 96 1096 -16 ) ( 96 1096 0 ) ( 72 1096 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 72 1096 -16 ) ( 72 1096 0 ) ( 88 1056 0 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 1814 +{ +( 96 1056 -16 ) ( 88 1056 -16 ) ( 88 1024 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 88 1024 0 ) ( 88 1056 0 ) ( 96 1056 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 88 1024 0 ) ( 96 1024 0 ) ( 96 1024 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1024 0 ) ( 128 1056 0 ) ( 128 1056 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 96 1056 0 ) ( 88 1056 0 ) ( 88 1056 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 88 1056 0 ) ( 88 1024 0 ) ( 88 1024 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 1815 +{ +( 64 1024 -16 ) ( 56 1024 -16 ) ( 56 1000 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 56 1000 0 ) ( 56 1024 0 ) ( 64 1024 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 96 1000 0 ) ( 96 1000 -16 ) ( 56 1000 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1000 -16 ) ( 128 1000 0 ) ( 128 1024 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 88 1024 0 ) ( 88 1024 -16 ) ( 96 1024 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 88 1024 -16 ) ( 88 1024 0 ) ( 56 1000 0 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 1816 +{ +( 64 1000 -16 ) ( 56 1000 -16 ) ( 56 960 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 56 960 0 ) ( 56 1000 0 ) ( 64 1000 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 56 960 0 ) ( 64 960 0 ) ( 64 960 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 952 0 ) ( 128 992 0 ) ( 128 992 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 64 1000 0 ) ( 56 1000 0 ) ( 56 1000 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 56 1000 0 ) ( 56 960 0 ) ( 56 960 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 1817 +{ +( 0 1000 -16 ) ( -8 1000 -16 ) ( -8 968 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -8 968 0 ) ( -8 1000 0 ) ( 0 1000 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -8 960 -16 ) ( -8 960 0 ) ( 56 960 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 56 960 -16 ) ( 56 960 0 ) ( 0 1000 0 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( 0 1000 0 ) ( -8 1000 0 ) ( -8 1000 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -64 960 0 ) ( -64 960 -16 ) ( -64 1000 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1818 +{ +( -24 1048 -16 ) ( -32 1048 -16 ) ( -32 1000 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -32 1000 0 ) ( -32 1048 0 ) ( -24 1048 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -32 1000 -16 ) ( -32 1000 0 ) ( 0 1000 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 0 1000 -16 ) ( 0 1000 0 ) ( -24 1048 0 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -24 1048 0 ) ( -32 1048 0 ) ( -32 1048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -64 1000 0 ) ( -64 1000 -16 ) ( -64 1048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1819 +{ +( -24 1072 -16 ) ( -32 1072 -16 ) ( -32 1048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -32 1048 0 ) ( -32 1072 0 ) ( -24 1072 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -32 1048 0 ) ( -24 1048 0 ) ( -24 1048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -24 1048 0 ) ( -24 1072 0 ) ( -24 1072 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -24 1072 0 ) ( -32 1072 0 ) ( -32 1072 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -64 1072 0 ) ( -64 1048 0 ) ( -64 1048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1820 +{ +( -40 1128 -16 ) ( -48 1128 -16 ) ( -48 1072 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -48 1072 0 ) ( -48 1128 0 ) ( -40 1128 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -48 1072 -16 ) ( -48 1072 0 ) ( -24 1072 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -24 1072 -16 ) ( -24 1072 0 ) ( -40 1128 0 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -40 1128 0 ) ( -48 1128 0 ) ( -48 1128 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -64 1072 0 ) ( -64 1072 -16 ) ( -64 1128 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1821 +{ +( -16 1160 -16 ) ( -24 1160 -16 ) ( -24 1128 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -24 1128 0 ) ( -24 1160 0 ) ( -16 1160 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -40 1128 0 ) ( -40 1128 -16 ) ( -48 1128 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -40 1128 -16 ) ( -40 1128 0 ) ( -16 1160 0 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -48 1160 0 ) ( -48 1160 -16 ) ( -16 1160 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -64 1160 -16 ) ( -64 1160 0 ) ( -64 1128 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1822 +{ +( -16 1192 -16 ) ( -24 1192 -16 ) ( -24 1160 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -24 1160 0 ) ( -24 1192 0 ) ( -16 1192 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -24 1160 0 ) ( -16 1160 0 ) ( -16 1160 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -16 1160 0 ) ( -16 1192 0 ) ( -16 1192 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -16 1192 0 ) ( -24 1192 0 ) ( -24 1192 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -64 1192 0 ) ( -64 1160 0 ) ( -64 1160 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1823 +{ +( 0 1216 -16 ) ( -8 1216 -16 ) ( -8 1192 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -8 1192 0 ) ( -8 1216 0 ) ( 0 1216 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -16 1192 0 ) ( -16 1192 -16 ) ( -24 1192 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -16 1192 -16 ) ( -16 1192 0 ) ( 0 1216 0 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -24 1216 0 ) ( -24 1216 -16 ) ( 0 1216 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -64 1216 -16 ) ( -64 1216 0 ) ( -64 1192 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1824 +{ +( 0 1240 -16 ) ( -8 1240 -16 ) ( -8 1200 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -8 1200 0 ) ( -8 1240 0 ) ( 0 1240 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -8 1216 0 ) ( 0 1216 0 ) ( 0 1216 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 0 1200 0 ) ( 0 1240 0 ) ( 0 1240 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( 0 1240 0 ) ( -8 1240 0 ) ( -8 1240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -64 1240 0 ) ( -64 1200 0 ) ( -64 1200 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1825 +{ +( 8 1280 -16 ) ( 0 1280 -16 ) ( 0 1240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 0 1240 0 ) ( 0 1280 0 ) ( 8 1280 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 0 1240 0 ) ( 0 1240 -16 ) ( -8 1240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -8 1280 0 ) ( -8 1280 -16 ) ( 0 1240 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -8 1280 -16 ) ( -8 1280 0 ) ( -64 1280 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -64 1280 -16 ) ( -64 1280 0 ) ( -64 1240 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1826 +{ +( 144 960 384 ) ( 448 960 384 ) ( 448 960 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 512 960 384 ) ( 512 976 384 ) ( 512 976 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 448 976 384 ) ( 144 976 384 ) ( 144 976 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 152 960 352 ) ( 144 960 352 ) ( 148 976 352 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 144 960 288 ) ( 168 960 288 ) ( 156 976 288 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 448 960 288 ) ( 448 976 288 ) ( 448 968 352 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 1827 +{ +( 144 976 384 ) ( 448 976 384 ) ( 448 976 256 ) props/w_sr_ba7b 0 32 0 1 1 0 0 0 +( 448 992 384 ) ( 144 992 384 ) ( 144 992 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 152 976 352 ) ( 144 976 352 ) ( 148 992 352 ) props/w_sr_ba7b 0 32 0 1 1 0 0 0 +( 144 976 288 ) ( 168 976 288 ) ( 156 992 288 ) props/w_sr_ba7b 0 32 0 1 1 0 0 0 +( 384 976 288 ) ( 384 992 288 ) ( 384 984 352 ) props/w_sr_ba7b 0 32 0 1 1 0 0 0 +( 448 992 288 ) ( 448 976 288 ) ( 448 984 352 ) props/w_sr_ba7b 0 32 0 1 1 0 0 0 +} +// brush 1828 +{ +( 144 960 384 ) ( 448 960 384 ) ( 448 960 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 448 976 384 ) ( 144 976 384 ) ( 144 976 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 152 960 352 ) ( 144 960 352 ) ( 148 976 352 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 144 960 288 ) ( 168 960 288 ) ( 156 976 288 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 320 960 288 ) ( 320 976 288 ) ( 320 968 352 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 384 976 288 ) ( 384 960 288 ) ( 384 968 352 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 1829 +{ +( 144 976 384 ) ( 448 976 384 ) ( 448 976 256 ) props/w_sr_ba7b 0 32 0 1 1 0 0 0 +( 448 992 384 ) ( 144 992 384 ) ( 144 992 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 152 976 352 ) ( 144 976 352 ) ( 148 992 352 ) props/w_sr_ba7b 0 32 0 1 1 0 0 0 +( 144 976 288 ) ( 168 976 288 ) ( 156 992 288 ) props/w_sr_ba7b 0 32 0 1 1 0 0 0 +( 192 976 288 ) ( 192 992 288 ) ( 192 984 352 ) props/w_sr_ba7b 0 32 0 1 1 0 0 0 +( 320 992 288 ) ( 320 976 288 ) ( 320 984 352 ) props/w_sr_ba7b 0 32 0 1 1 0 0 0 +} +// brush 1830 +{ +( 144 960 384 ) ( 448 960 384 ) ( 448 960 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 448 976 384 ) ( 144 976 384 ) ( 144 976 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 144 976 384 ) ( 144 960 384 ) ( 144 960 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 152 960 352 ) ( 144 960 352 ) ( 148 976 352 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 144 960 288 ) ( 168 960 288 ) ( 156 976 288 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 192 976 288 ) ( 192 960 288 ) ( 192 968 352 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 1831 +{ +( 448 976 256 ) ( 144 976 256 ) ( 144 960 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 144 960 384 ) ( 448 960 384 ) ( 448 960 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 960 384 ) ( 512 976 384 ) ( 512 976 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 448 976 384 ) ( 144 976 384 ) ( 144 976 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 144 976 384 ) ( 144 960 384 ) ( 144 960 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 168 960 288 ) ( 144 960 288 ) ( 156 976 288 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +} +// brush 1832 +{ +( 144 960 384 ) ( 144 976 384 ) ( 448 976 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 144 960 384 ) ( 448 960 384 ) ( 448 960 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 512 960 384 ) ( 512 976 384 ) ( 512 976 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 448 976 384 ) ( 144 976 384 ) ( 144 976 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 144 976 384 ) ( 144 960 384 ) ( 144 960 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 144 960 352 ) ( 152 960 352 ) ( 148 976 352 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 1833 +{ +( 448 1088 -16 ) ( 192 1088 -16 ) ( 192 960 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 192 960 0 ) ( 192 1088 0 ) ( 448 1088 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 192 960 0 ) ( 448 960 0 ) ( 448 960 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 448 960 0 ) ( 448 1088 0 ) ( 448 1088 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 448 1096 0 ) ( 192 1096 0 ) ( 192 1096 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 192 1088 0 ) ( 192 960 0 ) ( 192 960 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1834 +{ +( 464 1104 128 ) ( 176 1104 128 ) ( 176 1088 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 176 1088 256 ) ( 176 1104 256 ) ( 464 1104 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 176 1088 256 ) ( 464 1088 256 ) ( 464 1088 160 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 464 1088 256 ) ( 464 1104 256 ) ( 464 1104 160 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 464 1104 256 ) ( 176 1104 256 ) ( 176 1104 160 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 176 1104 256 ) ( 176 1088 256 ) ( 176 1088 160 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1835 +{ +( 192 1088 0 ) ( 176 1088 0 ) ( 176 976 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 176 976 128 ) ( 176 1088 128 ) ( 192 1088 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 176 976 128 ) ( 192 976 128 ) ( 192 976 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 192 976 128 ) ( 192 1088 128 ) ( 192 1088 0 ) bricks/c_pv_m2gg 0 0 0 1 1 0 0 0 +( 192 1088 128 ) ( 176 1088 128 ) ( 176 1088 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 176 1088 128 ) ( 176 976 128 ) ( 176 976 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1836 +{ +( 464 1088 0 ) ( 448 1088 0 ) ( 448 976 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 448 976 128 ) ( 448 1088 128 ) ( 464 1088 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 448 976 128 ) ( 464 976 128 ) ( 464 976 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 464 976 128 ) ( 464 1088 128 ) ( 464 1088 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 464 1088 128 ) ( 448 1088 128 ) ( 448 1088 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 448 1088 128 ) ( 448 976 128 ) ( 448 976 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1837 +{ +( 384 976 160 ) ( 384 960 160 ) ( 448 960 128 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 144 960 256 ) ( 144 976 256 ) ( 448 976 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 144 960 256 ) ( 448 960 256 ) ( 448 960 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 448 1088 256 ) ( 144 1088 256 ) ( 144 1088 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 448 976 128 ) ( 448 960 128 ) ( 448 968 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 384 1072 160 ) ( 384 1088 160 ) ( 384 1088 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1838 +{ +( 448 976 160 ) ( 144 976 160 ) ( 144 960 160 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 144 960 256 ) ( 144 976 256 ) ( 448 976 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 144 960 256 ) ( 448 960 256 ) ( 448 960 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 448 1088 256 ) ( 144 1088 256 ) ( 144 1088 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 320 1064 128 ) ( 320 1088 128 ) ( 320 1076 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 384 1088 128 ) ( 384 1072 128 ) ( 384 1080 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1839 +{ +( 448 976 160 ) ( 144 976 160 ) ( 144 960 160 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 144 960 256 ) ( 144 976 256 ) ( 448 976 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 144 960 256 ) ( 448 960 256 ) ( 448 960 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 448 1088 256 ) ( 144 1088 256 ) ( 144 1088 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 256 1072 128 ) ( 256 1088 128 ) ( 256 1080 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 320 1088 128 ) ( 320 1064 128 ) ( 320 1076 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1840 +{ +( 256 960 160 ) ( 256 976 160 ) ( 192 976 128 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 144 960 256 ) ( 144 976 256 ) ( 448 976 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 144 960 256 ) ( 448 960 256 ) ( 448 960 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 448 1088 256 ) ( 144 1088 256 ) ( 144 1088 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 192 960 128 ) ( 192 976 128 ) ( 192 968 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 256 1088 160 ) ( 256 1072 160 ) ( 256 1072 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1841 +{ +( 448 976 128 ) ( 144 976 128 ) ( 144 960 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 144 960 256 ) ( 144 976 256 ) ( 448 976 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 144 960 256 ) ( 448 960 256 ) ( 448 960 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 960 256 ) ( 512 976 256 ) ( 512 976 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 448 976 256 ) ( 144 976 256 ) ( 144 976 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 448 960 128 ) ( 448 976 128 ) ( 448 968 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1842 +{ +( 448 976 128 ) ( 144 976 128 ) ( 144 960 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 144 960 256 ) ( 144 976 256 ) ( 448 976 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 144 960 256 ) ( 448 960 256 ) ( 448 960 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 448 976 256 ) ( 144 976 256 ) ( 144 976 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 144 976 256 ) ( 144 960 256 ) ( 144 960 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 192 976 128 ) ( 192 960 128 ) ( 192 968 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1843 +{ +( 448 976 0 ) ( 144 976 0 ) ( 144 960 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 144 960 128 ) ( 144 976 128 ) ( 448 976 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 144 960 128 ) ( 448 960 128 ) ( 448 960 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 512 960 128 ) ( 512 976 128 ) ( 512 976 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 448 976 128 ) ( 144 976 128 ) ( 144 976 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 448 960 0 ) ( 448 976 0 ) ( 448 968 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1844 +{ +( 448 976 0 ) ( 144 976 0 ) ( 144 960 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 144 960 128 ) ( 144 976 128 ) ( 448 976 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 144 960 128 ) ( 448 960 128 ) ( 448 960 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 448 976 128 ) ( 144 976 128 ) ( 144 976 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 144 976 128 ) ( 144 960 128 ) ( 144 960 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 192 976 0 ) ( 192 960 0 ) ( 192 968 128 ) bricks/c_pv_m2gg 0 0 0 1 1 0 0 0 +} +// brush 1845 +{ +( 528 928 352 ) ( 512 928 352 ) ( 512 864 352 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 864 384 ) ( 512 928 384 ) ( 528 928 384 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 864 384 ) ( 528 864 384 ) ( 528 864 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 528 864 384 ) ( 528 928 384 ) ( 528 928 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 528 928 384 ) ( 512 928 384 ) ( 512 928 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 928 384 ) ( 512 864 384 ) ( 512 864 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 1846 +{ +( 528 768 128 ) ( 512 768 128 ) ( 512 384 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 384 256 ) ( 512 768 256 ) ( 528 768 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 528 384 256 ) ( 528 768 256 ) ( 528 768 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 528 976 256 ) ( 512 976 256 ) ( 512 976 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 768 256 ) ( 512 384 256 ) ( 512 384 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 528 928 128 ) ( 512 928 128 ) ( 520 928 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1847 +{ +( 528 768 128 ) ( 512 768 128 ) ( 512 384 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 384 224 ) ( 512 768 224 ) ( 528 768 224 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 528 384 256 ) ( 528 768 256 ) ( 528 768 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 768 256 ) ( 512 384 256 ) ( 512 384 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 528 864 128 ) ( 512 864 128 ) ( 520 864 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 928 128 ) ( 528 928 128 ) ( 520 928 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1848 +{ +( 528 768 128 ) ( 512 768 128 ) ( 512 384 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 384 256 ) ( 512 768 256 ) ( 528 768 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 256 256 ) ( 528 256 256 ) ( 528 256 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 528 384 256 ) ( 528 768 256 ) ( 528 768 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 768 256 ) ( 512 384 256 ) ( 512 384 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 864 128 ) ( 528 864 128 ) ( 520 864 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1849 +{ +( 536 976 256 ) ( 512 976 256 ) ( 512 624 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 624 384 ) ( 512 976 384 ) ( 536 976 384 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 520 256 384 ) ( 544 256 384 ) ( 544 256 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 528 624 384 ) ( 528 976 384 ) ( 528 976 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 976 384 ) ( 512 624 384 ) ( 512 624 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 512 864 256 ) ( 528 864 256 ) ( 520 864 384 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1850 +{ +( 536 976 256 ) ( 512 976 256 ) ( 512 624 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 624 384 ) ( 512 976 384 ) ( 536 976 384 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 528 624 384 ) ( 528 976 384 ) ( 528 976 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 536 976 384 ) ( 512 976 384 ) ( 512 976 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 976 384 ) ( 512 624 384 ) ( 512 624 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 528 928 256 ) ( 512 928 256 ) ( 520 928 384 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1851 +{ +( 352 784 256 ) ( 288 784 256 ) ( 288 768 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 288 768 320 ) ( 288 784 320 ) ( 352 784 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 288 768 320 ) ( 352 768 320 ) ( 352 768 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 352 768 320 ) ( 352 784 320 ) ( 352 784 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 352 784 320 ) ( 288 784 320 ) ( 288 784 256 ) bricks/b_sr_23 66 0 -180 1 -1 0 0 0 +( 288 784 320 ) ( 288 768 320 ) ( 288 768 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +} +// brush 1852 +{ +( 576 784 0 ) ( 192 784 0 ) ( 192 768 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 192 768 128 ) ( 576 768 128 ) ( 576 768 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 576 784 128 ) ( 192 784 128 ) ( 192 784 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 640 768 64 ) ( 616 768 64 ) ( 628 784 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 288 768 0 ) ( 288 784 0 ) ( 288 776 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 352 784 0 ) ( 352 768 0 ) ( 352 776 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 1853 +{ +( 320 768 128 ) ( -64 768 128 ) ( -64 752 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -64 752 256 ) ( -64 768 256 ) ( 320 768 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -64 752 256 ) ( 320 752 256 ) ( 320 752 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 384 752 256 ) ( 384 768 256 ) ( 384 768 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 320 768 256 ) ( -64 768 256 ) ( -64 768 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 352 752 128 ) ( 352 768 128 ) ( 352 760 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 1854 +{ +( 320 768 64 ) ( -64 768 64 ) ( -64 752 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 752 128 ) ( -64 768 128 ) ( 320 768 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 752 256 ) ( 320 752 256 ) ( 320 752 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 320 784 256 ) ( -64 784 256 ) ( -64 784 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 288 752 128 ) ( 288 768 128 ) ( 288 760 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 352 768 128 ) ( 352 752 128 ) ( 352 760 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1855 +{ +( 448 784 0 ) ( 64 784 0 ) ( 64 768 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 64 768 128 ) ( 448 768 128 ) ( 448 768 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 448 780 128 ) ( 64 780 128 ) ( 64 780 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 512 768 64 ) ( 488 768 64 ) ( 500 784 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 160 768 0 ) ( 160 784 0 ) ( 160 776 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 224 784 0 ) ( 224 768 0 ) ( 224 776 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 1856 +{ +( 224 784 256 ) ( 160 784 256 ) ( 160 768 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 160 768 320 ) ( 160 784 320 ) ( 224 784 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 160 768 320 ) ( 224 768 320 ) ( 224 768 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 224 768 320 ) ( 224 784 320 ) ( 224 784 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 224 780 320 ) ( 160 780 320 ) ( 160 780 256 ) bricks/b_sr_23 66 0 -180 1 -1 0 0 0 +( 160 784 320 ) ( 160 768 320 ) ( 160 768 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +} +// brush 1857 +{ +( 96 784 256 ) ( 32 784 256 ) ( 32 768 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 32 768 320 ) ( 32 784 320 ) ( 96 784 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 32 768 320 ) ( 96 768 320 ) ( 96 768 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 96 768 320 ) ( 96 784 320 ) ( 96 784 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 96 784 320 ) ( 32 784 320 ) ( 32 784 256 ) bricks/b_sr_23 66 0 -180 1 -1 0 0 0 +( 32 784 320 ) ( 32 768 320 ) ( 32 768 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +} +// brush 1858 +{ +( -64 752 128 ) ( -64 768 128 ) ( 320 768 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 752 128 ) ( 320 752 128 ) ( 320 752 0 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 384 752 128 ) ( 384 768 128 ) ( 384 768 0 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 320 768 128 ) ( -64 768 128 ) ( -64 768 0 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 360 752 64 ) ( 384 752 64 ) ( 372 768 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 96 752 64 ) ( 96 768 64 ) ( 96 760 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1859 +{ +( 320 768 0 ) ( -64 768 0 ) ( -64 752 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -64 752 128 ) ( 320 752 128 ) ( 320 752 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 384 752 128 ) ( 384 768 128 ) ( 384 768 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 320 768 128 ) ( -64 768 128 ) ( -64 768 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 384 752 64 ) ( 360 752 64 ) ( 372 768 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 96 752 0 ) ( 96 768 0 ) ( 96 760 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 1860 +{ +( 320 784 0 ) ( -64 784 0 ) ( -64 768 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -64 768 128 ) ( 320 768 128 ) ( 320 768 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 320 784 128 ) ( -64 784 128 ) ( -64 784 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 384 768 64 ) ( 360 768 64 ) ( 372 784 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 32 768 0 ) ( 32 784 0 ) ( 32 776 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 96 784 0 ) ( 96 768 0 ) ( 96 776 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 1861 +{ +( 320 768 0 ) ( -64 768 0 ) ( -64 752 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -64 752 128 ) ( 320 752 128 ) ( 320 752 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 320 768 128 ) ( -64 768 128 ) ( -64 768 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -64 768 128 ) ( -64 752 128 ) ( -64 752 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 384 752 64 ) ( 360 752 64 ) ( 372 768 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 32 768 0 ) ( 32 752 0 ) ( 32 760 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 1862 +{ +( -64 752 128 ) ( -64 768 128 ) ( 320 768 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 752 128 ) ( 320 752 128 ) ( 320 752 0 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 320 768 128 ) ( -64 768 128 ) ( -64 768 0 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 768 128 ) ( -64 752 128 ) ( -64 752 0 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 360 752 64 ) ( 384 752 64 ) ( 372 768 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 32 768 64 ) ( 32 752 64 ) ( 32 760 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1863 +{ +( 368 384 128 ) ( 368 752 128 ) ( 384 752 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 368 400 128 ) ( 384 400 128 ) ( 384 400 0 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 384 384 128 ) ( 384 752 128 ) ( 384 752 0 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 384 752 128 ) ( 368 752 128 ) ( 368 752 0 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 368 752 128 ) ( 368 384 128 ) ( 368 384 0 ) bricks/b_sr_20a 0 -64 0 1 1 0 0 0 +( 360 384 64 ) ( 384 384 64 ) ( 372 752 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1864 +{ +( 384 752 0 ) ( 368 752 0 ) ( 368 384 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 368 400 128 ) ( 384 400 128 ) ( 384 400 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 384 384 128 ) ( 384 752 128 ) ( 384 752 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 384 752 128 ) ( 368 752 128 ) ( 368 752 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 368 752 128 ) ( 368 384 128 ) ( 368 384 0 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 384 384 64 ) ( 360 384 64 ) ( 372 752 64 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 1865 +{ +( 320 768 64 ) ( -64 768 64 ) ( -64 752 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 752 128 ) ( -64 768 128 ) ( 320 768 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 752 256 ) ( 320 752 256 ) ( 320 752 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 320 780 256 ) ( -64 780 256 ) ( -64 780 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 160 752 0 ) ( 160 768 0 ) ( 160 760 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 224 768 128 ) ( 224 752 128 ) ( 224 760 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1866 +{ +( 576 752 128 ) ( 192 752 128 ) ( 192 736 128 ) props/w_sr_m6d -32 0 0 1 1 0 1 500 +( 192 736 256 ) ( 192 752 256 ) ( 576 752 256 ) props/w_sr_m6d -32 0 0 1 1 0 1 500 +( 192 744 256 ) ( 576 744 256 ) ( 576 744 128 ) props/w_sr_m6d -32 0 0 1 1 0 1 500 +( 576 752 256 ) ( 192 752 256 ) ( 192 752 128 ) props/w_sr_m6d -32 0 0 1 1 0 1 250 +( 224 736 128 ) ( 224 752 128 ) ( 224 744 256 ) props/w_sr_m6d -32 0 0 1 1 0 1 500 +( 288 752 128 ) ( 288 736 128 ) ( 288 744 256 ) props/w_sr_m6d -32 0 0 1 1 0 1 500 +} +// brush 1867 +{ +( 96 784 64 ) ( 32 784 64 ) ( 32 752 64 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 32 784 128 ) ( 96 784 128 ) ( 96 752 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -64 752 256 ) ( 320 752 256 ) ( 320 752 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 96 784 256 ) ( 32 784 256 ) ( 32 784 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 32 752 128 ) ( 32 768 128 ) ( 32 760 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 96 768 128 ) ( 96 752 128 ) ( 96 760 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1868 +{ +( 448 752 128 ) ( 64 752 128 ) ( 64 736 128 ) props/w_sr_ba7b 32 64 0 1 1 0 1 500 +( 64 736 256 ) ( 64 752 256 ) ( 448 752 256 ) props/w_sr_ba7b 32 64 0 1 1 0 1 500 +( 64 744 256 ) ( 448 744 256 ) ( 448 744 128 ) props/w_sr_ba7b 32 0 0 1 1 0 1 250 +( 448 752 256 ) ( 64 752 256 ) ( 64 752 128 ) props/w_sr_m6d -32 0 0 1 1 0 1 500 +( 96 736 128 ) ( 96 752 128 ) ( 96 744 256 ) props/w_sr_ba7b 32 64 0 1 1 0 1 500 +( 160 752 128 ) ( 160 736 128 ) ( 160 744 256 ) props/w_sr_ba7b 32 64 0 1 1 0 1 500 +} +// brush 1869 +{ +( 304 752 128 ) ( -80 752 128 ) ( -80 736 128 ) props/w_sr_m6d 0 0 0 1 1 0 0 0 +( -80 736 256 ) ( -80 752 256 ) ( 304 752 256 ) props/w_sr_m6d 0 0 0 1 1 0 0 0 +( -80 744 256 ) ( 304 744 256 ) ( 304 744 128 ) props/w_sr_m6d 0 0 0 1 1 0 0 0 +( 304 752 256 ) ( -80 752 256 ) ( -80 752 128 ) props/w_sr_m6d -16 0 0 1 1 0 1 3000 +( -48 736 128 ) ( -48 752 128 ) ( -48 744 256 ) props/w_sr_m6d 0 0 0 1 1 0 0 0 +( 16 752 128 ) ( 16 736 128 ) ( 16 744 256 ) props/w_sr_m6d 0 0 0 1 1 0 0 0 +} +// brush 1870 +{ +( 320 768 128 ) ( -64 768 128 ) ( -64 752 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -64 752 256 ) ( -64 768 256 ) ( 320 768 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -64 752 256 ) ( 320 752 256 ) ( 320 752 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 320 768 256 ) ( -64 768 256 ) ( -64 768 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -64 768 256 ) ( -64 752 256 ) ( -64 752 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -48 768 128 ) ( -48 752 128 ) ( -48 760 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 1871 +{ +( 456 704 184 ) ( 464 704 184 ) ( 464 720 184 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 134217728 0 0 +( 464 720 192 ) ( 464 704 192 ) ( 456 704 192 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 456 720 192 ) ( 456 704 192 ) ( 456 704 184 ) metals/mt_pv_m26y 0 15 -180 1 -1 134217728 0 0 +( 456 704 192 ) ( 464 704 192 ) ( 464 704 184 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 134217728 0 0 +( 464 704 192 ) ( 464 720 192 ) ( 464 720 184 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 134217728 0 0 +( 456 720 184 ) ( 464 712 184 ) ( 460 716 192 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 134217728 0 0 +} +// brush 1872 +{ +( 432 704 184 ) ( 440 704 184 ) ( 440 720 184 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 134217728 0 0 +( 440 720 192 ) ( 440 704 192 ) ( 432 704 192 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 432 720 192 ) ( 432 704 192 ) ( 432 704 184 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 134217728 0 0 +( 432 704 192 ) ( 440 704 192 ) ( 440 704 184 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 134217728 0 0 +( 440 704 192 ) ( 440 720 192 ) ( 440 720 184 ) metals/mt_pv_m26y 0 15 -180 1 -1 134217728 0 0 +( 432 712 184 ) ( 440 720 184 ) ( 436 716 192 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 134217728 0 0 +} +// brush 1873 +{ +( 440 704 184 ) ( 456 704 184 ) ( 456 720 184 ) common/li_sr_v27 8 16 -180 1 1 134217728 1 60000 +( 456 720 192 ) ( 456 704 192 ) ( 440 704 192 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 456 720 192 ) ( 440 720 192 ) ( 440 720 64 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 134217728 0 0 +( 440 720 192 ) ( 440 704 192 ) ( 440 704 64 ) common/li_sr_v27 0 0 -180 1 -1 134217728 0 0 +( 440 704 192 ) ( 456 704 192 ) ( 456 704 64 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 134217728 0 0 +( 456 704 192 ) ( 456 720 192 ) ( 456 720 64 ) common/li_sr_v27 0 0 -180 1 -1 134217728 0 0 +} +// brush 1874 +{ +( 512 704 128 ) ( 384 704 128 ) ( 384 448 128 ) metals/mt_sr_b1a 0 0 0 1 1 0 8388608 0 +( 384 448 256 ) ( 384 704 256 ) ( 512 704 256 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 384 448 256 ) ( 512 448 256 ) ( 512 448 128 ) metals/mt_pv_m26 128 1 0 1 1 0 8388608 0 +( 512 448 256 ) ( 512 704 256 ) ( 512 704 128 ) metals/mt_pv_m26 64 0 0 1 1 0 0 0 +( 512 704 256 ) ( 384 704 256 ) ( 384 704 128 ) metals/mt_pv_m26 128 1 0 1 1 0 8388608 0 +( 384 704 256 ) ( 384 448 256 ) ( 384 448 128 ) metals/mt_pv_m26 64 0 0 1 1 0 0 0 +} +// brush 1875 +{ +( 296 960 512 ) ( -64 960 512 ) ( -64 688 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -64 688 576 ) ( -64 960 576 ) ( 296 960 576 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -48 568 528 ) ( 312 568 528 ) ( 312 568 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( 512 664 528 ) ( 512 936 528 ) ( 512 936 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( 296 960 528 ) ( -64 960 528 ) ( -64 960 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -64 960 528 ) ( -64 688 528 ) ( -64 688 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +} +// brush 1876 +{ +( 536 976 448 ) ( 512 976 448 ) ( 512 784 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 512 784 512 ) ( 512 976 512 ) ( 536 976 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 520 528 512 ) ( 544 528 512 ) ( 544 528 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 528 784 512 ) ( 528 976 512 ) ( 528 976 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 536 976 512 ) ( 512 976 512 ) ( 512 976 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 512 976 512 ) ( 512 784 512 ) ( 512 784 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 1877 +{ +( 248 976 448 ) ( 144 976 448 ) ( 144 960 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 144 960 512 ) ( 144 976 512 ) ( 248 976 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 144 960 512 ) ( 248 960 512 ) ( 248 960 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 512 952 512 ) ( 512 968 512 ) ( 512 968 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 248 976 512 ) ( 144 976 512 ) ( 144 976 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 144 976 512 ) ( 144 960 512 ) ( 144 960 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 1878 +{ +( 528 608 384 ) ( 512 608 384 ) ( 512 384 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 512 384 448 ) ( 512 608 448 ) ( 528 608 448 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 512 256 448 ) ( 528 256 448 ) ( 528 256 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 528 384 448 ) ( 528 608 448 ) ( 528 608 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 520 976 448 ) ( 504 976 448 ) ( 504 976 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 512 608 448 ) ( 512 384 448 ) ( 512 384 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +} +// brush 1879 +{ +( 528 976 0 ) ( 512 976 0 ) ( 512 624 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 512 624 128 ) ( 512 976 128 ) ( 528 976 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 512 256 128 ) ( 528 256 128 ) ( 528 256 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 528 624 128 ) ( 528 976 128 ) ( 528 976 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 528 976 128 ) ( 512 976 128 ) ( 512 976 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 512 976 128 ) ( 512 624 128 ) ( 512 624 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1880 +{ +( 448 768 -16 ) ( 320 768 -16 ) ( 320 384 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 320 384 0 ) ( 320 768 0 ) ( 448 768 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 320 384 0 ) ( 448 384 0 ) ( 448 384 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 512 384 0 ) ( 512 768 0 ) ( 512 768 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 448 768 0 ) ( 320 768 0 ) ( 320 768 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 384 768 0 ) ( 384 384 0 ) ( 384 384 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1881 +{ +( 384 640 128 ) ( 368 640 128 ) ( 368 384 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 368 384 256 ) ( 368 640 256 ) ( 384 640 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 368 400 256 ) ( 384 400 256 ) ( 384 400 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 384 384 256 ) ( 384 640 256 ) ( 384 640 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 392 752 256 ) ( 376 752 256 ) ( 376 752 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 368 640 256 ) ( 368 384 256 ) ( 368 384 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 1882 +{ +( 448 960 -16 ) ( 136 960 -16 ) ( 136 768 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 136 768 0 ) ( 136 960 0 ) ( 448 960 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 136 768 0 ) ( 448 768 0 ) ( 448 768 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 512 768 0 ) ( 512 960 0 ) ( 512 960 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 448 960 0 ) ( 136 960 0 ) ( 136 960 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -64 968 0 ) ( -64 776 0 ) ( -64 776 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1883 +{ +( 448 976 384 ) ( 144 976 384 ) ( 144 960 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 144 960 448 ) ( 144 976 448 ) ( 448 976 448 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 144 960 448 ) ( 448 960 448 ) ( 448 960 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 512 960 448 ) ( 512 976 448 ) ( 512 976 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 448 976 448 ) ( 144 976 448 ) ( 144 976 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 144 976 448 ) ( 144 960 448 ) ( 144 960 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +} +// brush 1884 +{ +( -1184 1760 124 ) ( -1188 1760 124 ) ( -1184 1788 128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1184 1760 0 ) ( -1184 1760 128 ) ( -1180 1792 128 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1188 1760 128 ) ( -1188 1760 0 ) ( -1184 1792 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1188 1760 124 ) ( -1184 1760 124 ) ( -1184 1760 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1192 1788 0 ) ( -1168 1788 0 ) ( -1180 1788 128 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1208 1664 0 ) ( -1152 1664 0 ) ( -1180 1792 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +} +// brush 1885 +{ +( -1092 2232 136 ) ( -1094 2232 136 ) ( -1094 2222 136 ) metals/mt_pv_m26y 2 -2 0 1 1 134217728 0 0 +( -1094 2222 138 ) ( -1094 2232 138 ) ( -1092 2232 138 ) metals/mt_pv_m26y 2 -2 0 1 1 134217728 0 0 +( -1092 2222 136 ) ( -1092 2222 138 ) ( -1092 2232 138 ) metals/mt_pv_m26y 2 0 0 1 1 134217728 0 0 +( -1094 2218 138 ) ( -1094 2218 136 ) ( -1094 2230 136 ) metals/mt_pv_m26y 2 0 0 1 1 134217728 0 0 +( -1094 2228 136 ) ( -1088 2228 136 ) ( -1091 2228 138 ) metals/mt_pv_m26y 4 0 0 1 1 134217728 0 0 +( -1088 2216 136 ) ( -1094 2216 136 ) ( -1091 2216 138 ) metals/mt_pv_m26y 4 0 0 1 1 134217728 0 0 +} +// brush 1886 +{ +( -1090 2232 136 ) ( -1092 2232 136 ) ( -1092 2222 136 ) metals/mt_pv_m26y 0 -2 0 1 1 134217728 0 0 +( -1092 2222 138 ) ( -1092 2232 138 ) ( -1090 2232 138 ) metals/mt_pv_m26y 0 -2 0 1 1 134217728 0 0 +( -1091 2211 136 ) ( -1091 2211 138 ) ( -1090 2212 138 ) metals/mt_pv_m26y 2 0 0 1 1 134217728 0 0 +( -1090 2212 136 ) ( -1090 2212 138 ) ( -1092 2216 138 ) metals/mt_pv_m26y 2 0 0 1 1 134217728 0 0 +( -1091 2211 138 ) ( -1091 2211 136 ) ( -1094 2216 136 ) metals/mt_pv_m26y 2 0 0 1 1 134217728 0 0 +( -1092 2216 136 ) ( -1092 2216 138 ) ( -1094 2216 138 ) metals/mt_pv_m26y 2 0 0 1 1 134217728 0 0 +} +// brush 1887 +{ +( -1066 2232 136 ) ( -1068 2232 136 ) ( -1068 2222 136 ) metals/mt_pv_m26y -2 -2 0 1 1 134217728 0 0 +( -1068 2222 138 ) ( -1068 2232 138 ) ( -1066 2232 138 ) metals/mt_pv_m26y -2 -2 0 1 1 134217728 0 0 +( -1066 2218 136 ) ( -1066 2218 138 ) ( -1066 2230 138 ) metals/mt_pv_m26y 2 0 0 1 1 134217728 0 0 +( -1068 2232 138 ) ( -1068 2222 138 ) ( -1068 2222 136 ) metals/mt_pv_m26y 2 0 0 1 1 134217728 0 0 +( -1090 2228 136 ) ( -1084 2228 136 ) ( -1087 2228 138 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1084 2216 136 ) ( -1090 2216 136 ) ( -1087 2216 138 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +} +// brush 1888 +{ +( -1068 2232 136 ) ( -1070 2232 136 ) ( -1070 2222 136 ) metals/mt_pv_m26y 0 -2 0 1 1 134217728 0 0 +( -1070 2222 138 ) ( -1070 2232 138 ) ( -1068 2232 138 ) metals/mt_pv_m26y 0 -2 0 1 1 134217728 0 0 +( -1069 2210 138 ) ( -1069 2210 136 ) ( -1070 2212 136 ) metals/mt_pv_m26y 2 0 0 1 1 134217728 0 0 +( -1069 2210 136 ) ( -1069 2210 138 ) ( -1066 2216 138 ) metals/mt_pv_m26y 2 0 0 1 1 134217728 0 0 +( -1070 2212 138 ) ( -1070 2212 136 ) ( -1068 2216 136 ) metals/mt_pv_m26y 2 0 0 1 1 134217728 0 0 +( -1068 2216 138 ) ( -1068 2216 136 ) ( -1066 2216 136 ) metals/mt_pv_m26y 2 0 0 1 1 134217728 0 0 +} +// brush 1889 +{ +( -1090 2232 136 ) ( -1092 2232 136 ) ( -1092 2222 136 ) metals/mt_pv_m26y 0 -2 0 1 1 134217728 0 0 +( -1092 2222 138 ) ( -1092 2232 138 ) ( -1090 2232 138 ) metals/mt_pv_m26y 0 -2 0 1 1 134217728 0 0 +( -1090 2232 138 ) ( -1090 2232 136 ) ( -1092 2228 136 ) metals/mt_pv_m26y 2 0 0 1 1 134217728 0 0 +( -1091 2234 138 ) ( -1091 2234 136 ) ( -1090 2232 136 ) metals/mt_pv_m26y 2 0 0 1 1 134217728 0 0 +( -1091 2234 136 ) ( -1091 2234 138 ) ( -1094 2228 138 ) metals/mt_pv_m26y 2 0 0 1 1 134217728 0 0 +( -1092 2228 138 ) ( -1092 2228 136 ) ( -1094 2228 136 ) metals/mt_pv_m26y 2 0 0 1 1 134217728 0 0 +} +// brush 1890 +{ +( -1068 2232 136 ) ( -1070 2232 136 ) ( -1070 2222 136 ) metals/mt_pv_m26y 0 -2 0 1 1 134217728 0 0 +( -1070 2222 138 ) ( -1070 2232 138 ) ( -1068 2232 138 ) metals/mt_pv_m26y 0 -2 0 1 1 134217728 0 0 +( -1069 2234 138 ) ( -1069 2234 136 ) ( -1066 2228 136 ) metals/mt_pv_m26y 2 0 0 1 1 134217728 0 0 +( -1069 2234 136 ) ( -1069 2234 138 ) ( -1070 2232 138 ) metals/mt_pv_m26y 2 0 0 1 1 134217728 0 0 +( -1070 2232 136 ) ( -1070 2232 138 ) ( -1068 2228 138 ) metals/mt_pv_m26y 2 0 0 1 1 134217728 0 0 +( -1068 2228 136 ) ( -1068 2228 138 ) ( -1066 2228 138 ) metals/mt_pv_m26y 2 0 0 1 1 134217728 0 0 +} +// brush 1891 +{ +( -960 1792 -16 ) ( -1344 1792 -16 ) ( -1344 1664 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1344 1664 0 ) ( -1344 1792 0 ) ( -960 1792 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1344 1664 0 ) ( -960 1664 0 ) ( -960 1664 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -960 1664 0 ) ( -960 1792 0 ) ( -960 1792 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -960 1792 0 ) ( -1344 1792 0 ) ( -1344 1792 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1184 1784 -16 ) ( -1184 1792 -16 ) ( -1184 1788 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1892 +{ +( -960 1792 -16 ) ( -1344 1792 -16 ) ( -1344 1664 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1344 1664 0 ) ( -1344 1792 0 ) ( -960 1792 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1344 1664 0 ) ( -960 1664 0 ) ( -960 1664 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -960 1792 0 ) ( -1344 1792 0 ) ( -1344 1792 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1344 1792 0 ) ( -1344 1664 0 ) ( -1344 1664 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1184 1792 -16 ) ( -1184 1784 -16 ) ( -1184 1788 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1893 +{ +( -969 2223 236 ) ( -963 2228 236 ) ( -969 2234 236 ) metals/mt_pv_m26y 15 -1 -180 1 1 134217728 0 0 +( -969 2234 244 ) ( -963 2228 244 ) ( -969 2223 244 ) metals/mt_pv_m26y 15 -1 -180 1 1 134217728 0 0 +( -969 2234 252 ) ( -975 2229 252 ) ( -975 2229 220 ) metals/mt_pv_m26y 16 0 -180 1 -1 134217728 0 0 +( -975 2229 252 ) ( -969 2223 252 ) ( -969 2223 220 ) metals/mt_pv_m26y 28 0 -180 1 -1 134217728 0 0 +( -969 2223 252 ) ( -963 2228 252 ) ( -963 2228 220 ) metals/mt_pv_m26y 16 0 -180 1 -1 134217728 0 0 +( -960 2234 236 ) ( -960 2228 236 ) ( -960 2231 244 ) metals/mt_pv_m26y 0 0 -180 1 -1 134217728 0 0 +( -1088 2240 256 ) ( -1344 2240 256 ) ( -1088 2240 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +} +// brush 1894 +{ +( -1074 2210 136 ) ( -1086 2210 136 ) ( -1086 2208 136 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1086 2208 138 ) ( -1086 2210 138 ) ( -1074 2210 138 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1086 2208 138 ) ( -1074 2208 138 ) ( -1074 2208 136 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1074 2208 138 ) ( -1074 2210 138 ) ( -1074 2210 136 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1074 2210 138 ) ( -1086 2210 138 ) ( -1086 2210 136 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1086 2210 138 ) ( -1086 2208 138 ) ( -1086 2208 136 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +} +// brush 1895 +{ +( -1070 2212 136 ) ( -1074 2212 136 ) ( -1074 2210 136 ) metals/mt_pv_m26y 0 -8 0 1 1 134217728 0 0 +( -1074 2210 138 ) ( -1074 2212 138 ) ( -1070 2212 138 ) metals/mt_pv_m26y 0 -8 0 1 1 134217728 0 0 +( -1069 2210 138 ) ( -1069 2210 136 ) ( -1074 2208 136 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1069 2210 136 ) ( -1069 2210 138 ) ( -1070 2212 138 ) metals/mt_pv_m26y 8 0 0 1 1 134217728 0 0 +( -1074 2210 138 ) ( -1074 2210 136 ) ( -1070 2212 136 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1074 2210 136 ) ( -1074 2210 138 ) ( -1074 2208 138 ) metals/mt_pv_m26y 8 0 0 1 1 134217728 0 0 +} +// brush 1896 +{ +( -1086 2212 136 ) ( -1090 2212 136 ) ( -1090 2210 136 ) metals/mt_pv_m26y 0 -8 0 1 1 134217728 0 0 +( -1090 2210 138 ) ( -1090 2212 138 ) ( -1086 2212 138 ) metals/mt_pv_m26y 0 -8 0 1 1 134217728 0 0 +( -1091 2211 136 ) ( -1091 2211 138 ) ( -1086 2208 138 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1086 2210 138 ) ( -1086 2210 136 ) ( -1086 2208 136 ) metals/mt_pv_m26y 8 0 0 1 1 134217728 0 0 +( -1086 2210 136 ) ( -1086 2210 138 ) ( -1090 2212 138 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1091 2211 138 ) ( -1091 2211 136 ) ( -1090 2212 136 ) metals/mt_pv_m26y 8 0 0 1 1 134217728 0 0 +} +// brush 1897 +{ +( -1070 2236 136 ) ( -1074 2236 136 ) ( -1074 2234 136 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1074 2234 138 ) ( -1074 2236 138 ) ( -1070 2236 138 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1070 2232 138 ) ( -1070 2232 136 ) ( -1074 2234 136 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1069 2234 138 ) ( -1069 2234 136 ) ( -1070 2232 136 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1074 2237 138 ) ( -1074 2237 136 ) ( -1069 2234 136 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1074 2237 136 ) ( -1074 2237 138 ) ( -1074 2234 138 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +} +// brush 1898 +{ +( -1086 2236 136 ) ( -1090 2236 136 ) ( -1090 2234 136 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1090 2234 138 ) ( -1090 2236 138 ) ( -1086 2236 138 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1090 2232 136 ) ( -1090 2232 138 ) ( -1086 2234 138 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1086 2237 138 ) ( -1086 2237 136 ) ( -1086 2234 136 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1086 2237 136 ) ( -1086 2237 138 ) ( -1091 2234 138 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1091 2234 136 ) ( -1091 2234 138 ) ( -1090 2232 138 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +} +// brush 1899 +{ +( -1048 2238 136 ) ( -1112 2238 136 ) ( -1112 2230 136 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1112 2230 138 ) ( -1112 2238 138 ) ( -1048 2238 138 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1136 2234 192 ) ( -1072 2234 192 ) ( -1072 2234 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1074 2230 192 ) ( -1074 2238 192 ) ( -1074 2238 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1048 2238 192 ) ( -1112 2238 192 ) ( -1112 2238 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1086 2238 192 ) ( -1086 2230 192 ) ( -1086 2230 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +} +// brush 1900 +{ +( -1056 2240 128 ) ( -1120 2240 128 ) ( -1120 2232 128 ) wood/wd_sr_v8 8 0 0 1 1 0 0 0 +( -1120 2232 176 ) ( -1120 2240 176 ) ( -1056 2240 176 ) wood/wd_sr_v8 8 0 0 1 1 0 0 0 +( -1120 2238 192 ) ( -1056 2238 192 ) ( -1056 2238 64 ) wood/wd_sr_v8 -8 0 0 1 1 0 0 0 +( -1056 2232 184 ) ( -1056 2240 184 ) ( -1056 2240 56 ) wood/wd_sr_v8 0 0 0 1 1 0 0 0 +( -1056 2240 192 ) ( -1120 2240 192 ) ( -1120 2240 64 ) wood/wd_sr_v8 8 0 0 1 1 0 0 0 +( -1112 2240 200 ) ( -1112 2232 200 ) ( -1112 2232 72 ) wood/wd_sr_v8 0 0 0 1 1 0 0 0 +} +// brush 1901 +{ +( -960 2240 -16 ) ( -1216 2240 -16 ) ( -1216 1792 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 1792 0 ) ( -1216 2240 0 ) ( -960 2240 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1112 2216 -16 ) ( -1112 2240 -16 ) ( -1112 2228 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1048 2240 -16 ) ( -1048 2208 -16 ) ( -1048 2224 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1176 2112 -16 ) ( -1144 2112 -16 ) ( -1160 2112 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1112 2048 -16 ) ( -1176 2048 -16 ) ( -1144 2048 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1902 +{ +( -960 2240 -16 ) ( -1216 2240 -16 ) ( -1216 1792 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 1792 0 ) ( -1216 2240 0 ) ( -960 2240 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 1792 0 ) ( -960 1792 0 ) ( -960 1792 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1112 2216 -16 ) ( -1112 2240 -16 ) ( -1112 2228 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1048 2240 -16 ) ( -1048 2208 -16 ) ( -1048 2224 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1176 2048 -16 ) ( -1112 2048 -16 ) ( -1144 2048 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1903 +{ +( -984 2240 -16 ) ( -1240 2240 -16 ) ( -1240 1792 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1240 1792 0 ) ( -1240 2240 0 ) ( -984 2240 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -984 1792 0 ) ( -984 2240 0 ) ( -984 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1048 2208 -16 ) ( -1048 2240 -16 ) ( -1048 2224 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1176 2112 -16 ) ( -1144 2112 -16 ) ( -1160 2112 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1112 2048 -16 ) ( -1176 2048 -16 ) ( -1144 2048 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1904 +{ +( -984 2240 -16 ) ( -1240 2240 -16 ) ( -1240 1792 -16 ) bricks/s_sr_m12ab 24 0 0 1 1 0 0 0 +( -1240 1792 0 ) ( -1240 2240 0 ) ( -984 2240 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1240 1792 0 ) ( -984 1792 0 ) ( -984 1792 -16 ) bricks/s_sr_m12ab 24 0 0 1 1 0 0 0 +( -984 1792 0 ) ( -984 2240 0 ) ( -984 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1048 2208 -16 ) ( -1048 2240 -16 ) ( -1048 2224 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1176 2048 -16 ) ( -1112 2048 -16 ) ( -1144 2048 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1905 +{ +( -984 2240 -16 ) ( -1240 2240 -16 ) ( -1240 1792 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1240 1792 0 ) ( -1240 2240 0 ) ( -984 2240 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1176 2216 -16 ) ( -1176 2240 -16 ) ( -1176 2228 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1112 2240 -16 ) ( -1112 2216 -16 ) ( -1112 2228 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1176 2112 -16 ) ( -1144 2112 -16 ) ( -1160 2112 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1112 2048 -16 ) ( -1176 2048 -16 ) ( -1144 2048 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1906 +{ +( -984 2240 -16 ) ( -1240 2240 -16 ) ( -1240 1792 -16 ) bricks/s_sr_m12ab 24 0 0 1 1 0 0 0 +( -1240 1792 0 ) ( -1240 2240 0 ) ( -984 2240 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1240 1792 0 ) ( -984 1792 0 ) ( -984 1792 -16 ) bricks/s_sr_m12ab 24 0 0 1 1 0 0 0 +( -1176 2216 -16 ) ( -1176 2240 -16 ) ( -1176 2228 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1112 2240 -16 ) ( -1112 2216 -16 ) ( -1112 2228 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1176 2048 -16 ) ( -1112 2048 -16 ) ( -1144 2048 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1907 +{ +( -984 2240 -16 ) ( -1240 2240 -16 ) ( -1240 1792 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1240 1792 0 ) ( -1240 2240 0 ) ( -984 2240 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -984 2240 0 ) ( -1240 2240 0 ) ( -1240 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1176 2216 -16 ) ( -1176 2240 -16 ) ( -1176 2228 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1112 2240 -16 ) ( -1112 2216 -16 ) ( -1112 2228 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1144 2112 -16 ) ( -1176 2112 -16 ) ( -1160 2112 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1908 +{ +( -960 2240 -16 ) ( -1216 2240 -16 ) ( -1216 1792 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 1792 0 ) ( -1216 2240 0 ) ( -960 2240 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -960 2240 0 ) ( -1216 2240 0 ) ( -1216 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1112 2216 -16 ) ( -1112 2240 -16 ) ( -1112 2228 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1048 2240 -16 ) ( -1048 2208 -16 ) ( -1048 2224 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1144 2112 -16 ) ( -1176 2112 -16 ) ( -1160 2112 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1909 +{ +( -984 2240 -16 ) ( -1240 2240 -16 ) ( -1240 1792 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1240 1792 0 ) ( -1240 2240 0 ) ( -984 2240 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -984 1792 0 ) ( -984 2240 0 ) ( -984 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -984 2240 0 ) ( -1240 2240 0 ) ( -1240 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1048 2208 -16 ) ( -1048 2240 -16 ) ( -1048 2224 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1144 2112 -16 ) ( -1176 2112 -16 ) ( -1160 2112 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1910 +{ +( -960 2240 -16 ) ( -1216 2240 -16 ) ( -1216 1792 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 1792 0 ) ( -1216 2240 0 ) ( -960 2240 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 1792 0 ) ( -960 1792 0 ) ( -960 1792 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -960 1792 0 ) ( -960 2240 0 ) ( -960 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -960 2240 0 ) ( -1216 2240 0 ) ( -1216 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -984 2208 -16 ) ( -984 2240 -16 ) ( -984 2224 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1911 +{ +( -960 2240 -16 ) ( -1216 2240 -16 ) ( -1216 1792 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 1792 0 ) ( -1216 2240 0 ) ( -960 2240 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 1792 0 ) ( -960 1792 0 ) ( -960 1792 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -960 2240 0 ) ( -1216 2240 0 ) ( -1216 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 2240 0 ) ( -1216 1792 0 ) ( -1216 1792 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1176 2240 -16 ) ( -1176 2216 -16 ) ( -1176 2228 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1912 +{ +( 1712 2648 128 ) ( 1712 2928 128 ) ( 1728 2928 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1712 2608 128 ) ( 1728 2608 128 ) ( 1728 2608 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1728 2648 128 ) ( 1728 2928 128 ) ( 1728 2928 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1728 2928 128 ) ( 1712 2928 128 ) ( 1712 2928 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1712 2928 128 ) ( 1712 2648 128 ) ( 1712 2648 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1712 2608 0 ) ( 1728 2608 0 ) ( 1720 2928 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1913 +{ +( 2448 3240 288 ) ( 2416 3240 288 ) ( 2416 3216 288 ) metals/mt_sr_mn6 16 0 90 1 1 0 0 0 +( 2416 3216 320 ) ( 2416 3240 320 ) ( 2448 3240 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2504 3224 192 ) ( 2504 3248 192 ) ( 2504 3248 128 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2176 3240 288 ) ( 2192 3240 288 ) ( 2184 3240 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2192 3224 288 ) ( 2176 3224 288 ) ( 2184 3224 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2480 3224 288 ) ( 2480 3240 288 ) ( 2480 3232 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +} +// brush 1914 +{ +( 2448 3240 288 ) ( 2416 3240 288 ) ( 2416 3216 288 ) common/li_sr_v27 -8 16 90 1 1 0 1 35000 +( 2416 3216 320 ) ( 2416 3240 320 ) ( 2448 3240 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2176 3240 288 ) ( 2192 3240 288 ) ( 2184 3240 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2192 3224 288 ) ( 2176 3224 288 ) ( 2184 3224 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2464 3224 288 ) ( 2464 3240 288 ) ( 2464 3232 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2480 3240 288 ) ( 2480 3224 288 ) ( 2480 3232 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +} +// brush 1915 +{ +( 2448 3240 288 ) ( 2416 3240 288 ) ( 2416 3216 288 ) metals/mt_sr_mn6 16 0 90 1 1 0 8388608 0 +( 2416 3216 320 ) ( 2416 3240 320 ) ( 2448 3240 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2176 3240 288 ) ( 2192 3240 288 ) ( 2184 3240 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2192 3224 288 ) ( 2176 3224 288 ) ( 2184 3224 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2208 3224 288 ) ( 2208 3240 288 ) ( 2208 3232 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2464 3240 288 ) ( 2464 3224 288 ) ( 2464 3232 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +} +// brush 1916 +{ +( 2448 3240 288 ) ( 2416 3240 288 ) ( 2416 3216 288 ) common/li_sr_v27 -8 16 90 1 1 0 1 35000 +( 2416 3216 320 ) ( 2416 3240 320 ) ( 2448 3240 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2176 3240 288 ) ( 2192 3240 288 ) ( 2184 3240 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2192 3224 288 ) ( 2176 3224 288 ) ( 2184 3224 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2208 3240 288 ) ( 2208 3224 288 ) ( 2208 3232 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2192 3224 288 ) ( 2192 3240 288 ) ( 2192 3232 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +} +// brush 1917 +{ +( 2448 3240 288 ) ( 2416 3240 288 ) ( 2416 3216 288 ) metals/mt_sr_mn6 16 0 90 1 1 0 0 0 +( 2416 3216 320 ) ( 2416 3240 320 ) ( 2448 3240 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2176 3240 192 ) ( 2176 3216 192 ) ( 2176 3216 128 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2176 3240 288 ) ( 2192 3240 288 ) ( 2184 3240 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2192 3224 288 ) ( 2176 3224 288 ) ( 2184 3224 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2192 3240 288 ) ( 2192 3224 288 ) ( 2192 3232 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +} +// brush 1918 +{ +( 2448 3240 288 ) ( 2416 3240 288 ) ( 2416 3216 288 ) metals/mt_sr_mn6 16 0 90 1 1 0 8388608 0 +( 2416 3216 320 ) ( 2416 3240 320 ) ( 2448 3240 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2416 3216 192 ) ( 2448 3216 192 ) ( 2448 3216 128 ) metals/mt_sr_mn6 0 0 90 1 1 0 8388608 0 +( 2504 3224 192 ) ( 2504 3248 192 ) ( 2504 3248 128 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2176 3240 192 ) ( 2176 3216 192 ) ( 2176 3216 128 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2176 3224 288 ) ( 2192 3224 288 ) ( 2184 3224 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +} +// brush 1919 +{ +( 2448 3240 288 ) ( 2416 3240 288 ) ( 2416 3216 288 ) metals/mt_sr_mn6 16 0 90 1 1 0 8388608 0 +( 2416 3216 320 ) ( 2416 3240 320 ) ( 2448 3240 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2504 3224 192 ) ( 2504 3248 192 ) ( 2504 3248 128 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2448 3248 192 ) ( 2416 3248 192 ) ( 2416 3248 128 ) metals/mt_sr_mn6 0 0 90 1 1 0 8388608 0 +( 2176 3240 192 ) ( 2176 3216 192 ) ( 2176 3216 128 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2192 3240 288 ) ( 2176 3240 288 ) ( 2184 3240 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +} +// brush 1920 +{ +( 2448 2536 288 ) ( 2416 2536 288 ) ( 2416 2512 288 ) metals/mt_sr_mn6 16 0 90 1 1 0 0 0 +( 2416 2512 320 ) ( 2416 2536 320 ) ( 2448 2536 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2504 2520 192 ) ( 2504 2544 192 ) ( 2504 2544 128 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2176 2536 288 ) ( 2192 2536 288 ) ( 2184 2536 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2192 2520 288 ) ( 2176 2520 288 ) ( 2184 2520 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2480 2520 288 ) ( 2480 2536 288 ) ( 2480 2528 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +} +// brush 1921 +{ +( 2448 2536 288 ) ( 2416 2536 288 ) ( 2416 2512 288 ) common/li_sr_v27 -8 16 90 1 1 0 1 15000 +( 2416 2512 320 ) ( 2416 2536 320 ) ( 2448 2536 320 ) props/w_sr_m4a 0 0 0 1.250000 0.750000 0 4096 0 +( 2176 2536 288 ) ( 2192 2536 288 ) ( 2184 2536 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2192 2520 288 ) ( 2176 2520 288 ) ( 2184 2520 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2464 2520 288 ) ( 2464 2536 288 ) ( 2464 2528 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2480 2536 288 ) ( 2480 2520 288 ) ( 2480 2528 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +} +// brush 1922 +{ +( 2448 2536 288 ) ( 2416 2536 288 ) ( 2416 2512 288 ) metals/mt_sr_mn6 16 0 90 1 1 0 8388608 0 +( 2416 2512 320 ) ( 2416 2536 320 ) ( 2448 2536 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2176 2536 288 ) ( 2192 2536 288 ) ( 2184 2536 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2192 2520 288 ) ( 2176 2520 288 ) ( 2184 2520 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2208 2520 288 ) ( 2208 2536 288 ) ( 2208 2528 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2464 2536 288 ) ( 2464 2520 288 ) ( 2464 2528 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +} +// brush 1923 +{ +( 2448 2536 288 ) ( 2416 2536 288 ) ( 2416 2512 288 ) common/li_sr_v27 -8 16 90 1 1 0 1 35000 +( 2416 2512 320 ) ( 2416 2536 320 ) ( 2448 2536 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2176 2536 288 ) ( 2192 2536 288 ) ( 2184 2536 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2192 2520 288 ) ( 2176 2520 288 ) ( 2184 2520 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2208 2536 288 ) ( 2208 2520 288 ) ( 2208 2528 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2192 2520 288 ) ( 2192 2536 288 ) ( 2192 2528 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +} +// brush 1924 +{ +( 2448 2536 288 ) ( 2416 2536 288 ) ( 2416 2512 288 ) metals/mt_sr_mn6 16 0 90 1 1 0 0 0 +( 2416 2512 320 ) ( 2416 2536 320 ) ( 2448 2536 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2176 2536 192 ) ( 2176 2512 192 ) ( 2176 2512 128 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2176 2536 288 ) ( 2192 2536 288 ) ( 2184 2536 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2192 2520 288 ) ( 2176 2520 288 ) ( 2184 2520 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2192 2536 288 ) ( 2192 2520 288 ) ( 2192 2528 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +} +// brush 1925 +{ +( 2448 2536 288 ) ( 2416 2536 288 ) ( 2416 2512 288 ) metals/mt_sr_mn6 16 0 90 1 1 0 8388608 0 +( 2416 2512 320 ) ( 2416 2536 320 ) ( 2448 2536 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2416 2512 192 ) ( 2448 2512 192 ) ( 2448 2512 128 ) metals/mt_sr_mn6 0 0 90 1 1 0 0 0 +( 2504 2520 192 ) ( 2504 2544 192 ) ( 2504 2544 128 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2176 2536 192 ) ( 2176 2512 192 ) ( 2176 2512 128 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2176 2520 288 ) ( 2192 2520 288 ) ( 2184 2520 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +} +// brush 1926 +{ +( 2448 2536 288 ) ( 2416 2536 288 ) ( 2416 2512 288 ) metals/mt_sr_mn6 16 0 90 1 1 0 8388608 0 +( 2416 2512 320 ) ( 2416 2536 320 ) ( 2448 2536 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2504 2520 192 ) ( 2504 2544 192 ) ( 2504 2544 128 ) metals/mt_sr_mn6 0 0 90 1 1 0 8388608 0 +( 2264 2544 192 ) ( 2232 2544 192 ) ( 2232 2544 128 ) metals/mt_sr_mn6 0 0 90 1 1 0 8388608 0 +( 2176 2536 192 ) ( 2176 2512 192 ) ( 2176 2512 128 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2192 2536 288 ) ( 2176 2536 288 ) ( 2184 2536 320 ) metals/mt_sr_mn6 0 0 90 1 1 0 8388608 0 +} +// brush 1927 +{ +( 2448 2888 288 ) ( 2416 2888 288 ) ( 2416 2864 288 ) metals/mt_sr_mn6 16 0 90 1 1 0 0 0 +( 2416 2864 320 ) ( 2416 2888 320 ) ( 2448 2888 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2504 2872 192 ) ( 2504 2896 192 ) ( 2504 2896 128 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2176 2888 288 ) ( 2184 2888 288 ) ( 2180 2888 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2192 2872 288 ) ( 2176 2872 288 ) ( 2184 2872 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2480 2872 288 ) ( 2480 2888 288 ) ( 2480 2880 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +} +// brush 1928 +{ +( 2448 2888 288 ) ( 2416 2888 288 ) ( 2416 2864 288 ) common/li_sr_v27 -8 16 90 1 1 0 1 15000 +( 2416 2864 320 ) ( 2416 2888 320 ) ( 2448 2888 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2176 2888 288 ) ( 2184 2888 288 ) ( 2180 2888 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2192 2872 288 ) ( 2176 2872 288 ) ( 2184 2872 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2464 2872 288 ) ( 2464 2888 288 ) ( 2464 2880 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2480 2888 288 ) ( 2480 2872 288 ) ( 2480 2880 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +} +// brush 1929 +{ +( 2448 2888 288 ) ( 2416 2888 288 ) ( 2416 2864 288 ) metals/mt_sr_mn6 16 0 90 1 1 0 8388608 0 +( 2416 2864 320 ) ( 2416 2888 320 ) ( 2448 2888 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2176 2888 288 ) ( 2184 2888 288 ) ( 2180 2888 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2192 2872 288 ) ( 2176 2872 288 ) ( 2184 2872 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2208 2872 288 ) ( 2208 2888 288 ) ( 2208 2880 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2464 2888 288 ) ( 2464 2872 288 ) ( 2464 2880 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +} +// brush 1930 +{ +( 2448 2888 288 ) ( 2416 2888 288 ) ( 2416 2864 288 ) common/li_sr_v27 -8 16 90 1 1 0 1 35000 +( 2416 2864 320 ) ( 2416 2888 320 ) ( 2448 2888 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2176 2888 288 ) ( 2184 2888 288 ) ( 2180 2888 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2192 2872 288 ) ( 2176 2872 288 ) ( 2184 2872 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2192 2872 288 ) ( 2192 2888 288 ) ( 2192 2880 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2208 2888 288 ) ( 2208 2872 288 ) ( 2208 2880 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +} +// brush 1931 +{ +( 2448 2888 288 ) ( 2416 2888 288 ) ( 2416 2864 288 ) metals/mt_sr_mn6 16 0 90 1 1 0 0 0 +( 2416 2864 320 ) ( 2416 2888 320 ) ( 2448 2888 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2176 2888 192 ) ( 2176 2864 192 ) ( 2176 2864 128 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2176 2888 288 ) ( 2184 2888 288 ) ( 2180 2888 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2192 2872 288 ) ( 2176 2872 288 ) ( 2184 2872 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +( 2192 2888 288 ) ( 2192 2872 288 ) ( 2192 2880 320 ) metals/mt_sr_mn6 16 0 0 1 1 0 0 0 +} +// brush 1932 +{ +( 2448 2888 288 ) ( 2416 2888 288 ) ( 2416 2864 288 ) metals/mt_sr_mn6 16 0 90 1 1 0 8388608 0 +( 2416 2864 320 ) ( 2416 2888 320 ) ( 2448 2888 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2416 2864 192 ) ( 2448 2864 192 ) ( 2448 2864 128 ) metals/mt_sr_mn6 0 0 90 1 1 0 8388608 0 +( 2504 2872 192 ) ( 2504 2896 192 ) ( 2504 2896 128 ) metals/mt_sr_mn6 16 0 90 1 1 0 8388608 0 +( 2176 2888 192 ) ( 2176 2864 192 ) ( 2176 2864 128 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2176 2872 288 ) ( 2192 2872 288 ) ( 2184 2872 320 ) metals/mt_sr_mn6 16 0 90 1 1 0 8388608 0 +} +// brush 1933 +{ +( 2448 2888 288 ) ( 2416 2888 288 ) ( 2416 2864 288 ) metals/mt_sr_mn6 16 0 90 1 1 0 8388608 0 +( 2416 2864 320 ) ( 2416 2888 320 ) ( 2448 2888 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2504 2872 192 ) ( 2504 2896 192 ) ( 2504 2896 128 ) metals/mt_sr_mn6 16 0 90 1 1 0 8388608 0 +( 2264 2896 192 ) ( 2232 2896 192 ) ( 2232 2896 128 ) metals/mt_sr_mn6 0 0 90 1 1 0 8388608 0 +( 2176 2888 192 ) ( 2176 2864 192 ) ( 2176 2864 128 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2184 2888 288 ) ( 2176 2888 288 ) ( 2180 2888 320 ) metals/mt_sr_mn6 16 0 90 1 1 0 8388608 0 +} +// brush 1934 +{ +( 2424 3472 64 ) ( 2096 3472 64 ) ( 2096 3456 64 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2016 3456 224 ) ( 2344 3456 224 ) ( 2344 3456 64 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2592 3456 224 ) ( 2592 3472 224 ) ( 2592 3472 64 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2424 3472 224 ) ( 2096 3472 224 ) ( 2096 3472 64 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2096 3712 128 ) ( 2112 3712 128 ) ( 2112 3088 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2112 3712 0 ) ( 2112 3712 128 ) ( 2112 3088 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1935 +{ +( 2096 3456 224 ) ( 2096 3472 224 ) ( 2424 3472 224 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2016 3456 224 ) ( 2344 3456 224 ) ( 2344 3456 64 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2592 3456 224 ) ( 2592 3472 224 ) ( 2592 3472 64 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2424 3472 224 ) ( 2096 3472 224 ) ( 2096 3472 64 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2096 3472 224 ) ( 2096 3456 224 ) ( 2096 3456 64 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2112 3712 128 ) ( 2096 3712 128 ) ( 2112 3088 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1936 +{ +( 2768 3472 0 ) ( 2568 3472 0 ) ( 2568 3456 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2568 3456 64 ) ( 2568 3472 64 ) ( 2768 3472 64 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2392 3456 64 ) ( 2592 3456 64 ) ( 2592 3456 0 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 2592 3448 64 ) ( 2592 3464 64 ) ( 2592 3464 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2768 3472 64 ) ( 2568 3472 64 ) ( 2568 3472 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2112 3712 0 ) ( 2112 3712 128 ) ( 2112 3088 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1937 +{ +( 2560 3456 -32 ) ( 2176 3456 -32 ) ( 2176 3072 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2176 3072 0 ) ( 2176 3456 0 ) ( 2560 3456 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2016 3072 0 ) ( 2400 3072 0 ) ( 2400 3072 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2592 3080 0 ) ( 2592 3464 0 ) ( 2592 3464 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2560 3456 0 ) ( 2176 3456 0 ) ( 2176 3456 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2112 3072 -16 ) ( 2112 3152 -16 ) ( 2112 3112 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1938 +{ +( 2096 3712 128 ) ( 2112 3712 128 ) ( 2112 3088 128 ) bricks/b_sr_20ap 0 0 0 1 1 0 0 0 +( 2096 3088 128 ) ( 2112 3088 128 ) ( 2112 3088 0 ) bricks/b_sr_20ap 0 0 0 1 1 0 0 0 +( 2112 3712 128 ) ( 2112 3712 0 ) ( 2112 3088 0 ) bricks/b_sr_20ap 0 0 0 1 1 0 0 0 +( 2104 3200 128 ) ( 2088 3200 128 ) ( 2088 3200 0 ) bricks/b_sr_20ap 0 0 0 1 1 0 0 0 +( 2096 2944 0 ) ( 2096 2944 128 ) ( 2096 2320 128 ) bricks/b_sr_20ap 0 0 0 1 1 0 0 0 +( 2096 3088 0 ) ( 2112 3088 0 ) ( 2104 3968 0 ) bricks/b_sr_20ap 0 0 0 1 1 0 0 0 +} +// brush 1939 +{ +( 1968 2592 0 ) ( 1808 2592 0 ) ( 1808 2528 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1808 2528 16 ) ( 1808 2592 16 ) ( 1968 2592 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1808 1928 128 ) ( 1968 1928 128 ) ( 1968 1928 0 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1880 2576 0 ) ( 1880 2592 0 ) ( 1880 2584 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1896 2592 0 ) ( 1896 2560 0 ) ( 1896 2576 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1880 2104 0 ) ( 1896 2104 0 ) ( 1888 2104 16 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +} +// brush 1940 +{ +( 1968 2592 0 ) ( 1808 2592 0 ) ( 1808 2528 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1808 2528 16 ) ( 1808 2592 16 ) ( 1968 2592 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1880 2576 0 ) ( 1880 2592 0 ) ( 1880 2584 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1896 2592 0 ) ( 1896 2560 0 ) ( 1896 2576 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1880 2296 0 ) ( 1896 2296 0 ) ( 1888 2296 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1896 2120 0 ) ( 1880 2120 0 ) ( 1888 2120 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +} +// brush 1941 +{ +( 1967 2208 -4 ) ( 1808 2208 -27 ) ( 1808 2144 -27 ) common/li_sr_v27 -10 8 0 0.990356 1 134217728 1 200 +( 1808 2144 -25 ) ( 1808 2208 -25 ) ( 1967 2208 -2 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 1880 2192 -17 ) ( 1880 2208 -17 ) ( 1877 2200 -1 ) bricks/c_pv_m2 32 -17 0 1 0.990261 134217728 0 0 +( 1896 2208 -14 ) ( 1896 2176 -14 ) ( 1893 2192 0 ) bricks/c_pv_m2 32 -15 0 1 0.990268 134217728 0 0 +( 1880 2120 -17 ) ( 1896 2120 -14 ) ( 1885 2120 0 ) bricks/c_pv_m2 -75 -22 8 0.999967 1.000010 134217728 0 0 +( 1896 2104 -14 ) ( 1880 2104 -17 ) ( 1885 2104 0 ) bricks/c_pv_m2 -75 -22 8 0.999967 1.000010 134217728 0 0 +} +// brush 1942 +{ +( 1968 2592 0 ) ( 1808 2592 0 ) ( 1808 2528 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1808 2528 16 ) ( 1808 2592 16 ) ( 1968 2592 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1880 2576 0 ) ( 1880 2592 0 ) ( 1880 2584 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1896 2592 0 ) ( 1896 2560 0 ) ( 1896 2576 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1880 2488 0 ) ( 1896 2488 0 ) ( 1888 2488 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1896 2312 0 ) ( 1880 2312 0 ) ( 1888 2312 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +} +// brush 1943 +{ +( 1968 2400 0 ) ( 1808 2400 0 ) ( 1808 2336 0 ) common/li_sr_v27 8 8 0 1 1 0 1 30000 +( 1808 2336 16 ) ( 1808 2400 16 ) ( 1968 2400 16 ) bricks/c_pv_m2 -96 -64 0 1 1 0 0 0 +( 1880 2384 0 ) ( 1880 2400 0 ) ( 1880 2392 16 ) bricks/c_pv_m2 96 0 0 1 1 0 0 0 +( 1896 2400 0 ) ( 1896 2368 0 ) ( 1896 2384 16 ) bricks/c_pv_m2 96 0 0 1 1 0 0 0 +( 1880 2312 0 ) ( 1896 2312 0 ) ( 1888 2312 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1896 2296 0 ) ( 1880 2296 0 ) ( 1888 2296 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +} +// brush 1944 +{ +( 1968 2592 0 ) ( 1808 2592 0 ) ( 1808 2528 0 ) common/li_sr_v27 8 8 0 1 1 0 1 38000 +( 1808 2528 16 ) ( 1808 2592 16 ) ( 1968 2592 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1880 2576 0 ) ( 1880 2592 0 ) ( 1880 2584 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1896 2592 0 ) ( 1896 2560 0 ) ( 1896 2576 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1880 2504 0 ) ( 1896 2504 0 ) ( 1888 2504 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1896 2488 0 ) ( 1880 2488 0 ) ( 1888 2488 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +} +// brush 1945 +{ +( 1968 2592 0 ) ( 1808 2592 0 ) ( 1808 2528 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1808 2528 16 ) ( 1808 2592 16 ) ( 1968 2592 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1968 2592 128 ) ( 1808 2592 128 ) ( 1808 2592 0 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1880 2576 0 ) ( 1880 2592 0 ) ( 1880 2584 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1896 2592 0 ) ( 1896 2560 0 ) ( 1896 2576 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1896 2504 0 ) ( 1880 2504 0 ) ( 1888 2504 16 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +} +// brush 1946 +{ +( 1952 2624 -128 ) ( 1824 2624 -128 ) ( 1824 2592 -128 ) bricks/c_sr_m2 -4 -92 90 1 1.200000 0 67108864 0 +( 1824 2592 -112 ) ( 1824 2624 -112 ) ( 1952 2624 -112 ) bricks/c_sr_m2 -4 -92 90 1 1.200000 0 67108864 0 +( 1824 2592 0 ) ( 1952 2592 0 ) ( 1952 2592 -128 ) bricks/c_sr_m2 -4 -92 90 1 1.200000 0 67108864 0 +( 1952 2592 0 ) ( 1952 2624 0 ) ( 1952 2624 -128 ) bricks/c_sr_m2 -4 -92 90 1 1.200000 0 67108864 0 +( 1952 2624 0 ) ( 1824 2624 0 ) ( 1824 2624 -128 ) bricks/c_sr_m2 -4 -92 90 1 1.200000 0 67108864 0 +( 1824 2624 0 ) ( 1824 2592 0 ) ( 1824 2592 -128 ) bricks/c_sr_m2 -4 -92 90 1 1.200000 0 67108864 0 +} +// brush 1947 +{ +( 1952 2656 -128 ) ( 1824 2656 -128 ) ( 1824 2624 -128 ) bricks/c_sr_m2 0 -156 90 1 1 0 0 0 +( 1824 2624 -96 ) ( 1824 2656 -96 ) ( 1952 2656 -96 ) bricks/c_sr_m2 164 -100 90 1 1.200000 0 0 0 +( 1824 2624 0 ) ( 1952 2624 0 ) ( 1952 2624 -128 ) bricks/c_sr_m2 4 -100 90 1 1.200000 0 0 0 +( 1952 2624 0 ) ( 1952 2656 0 ) ( 1952 2656 -128 ) bricks/c_sr_m2 0 -156 90 1 1 0 0 0 +( 1952 2656 0 ) ( 1824 2656 0 ) ( 1824 2656 -128 ) bricks/c_sr_m2 0 -156 90 1 1 0 0 0 +( 1824 2656 0 ) ( 1824 2624 0 ) ( 1824 2624 -128 ) bricks/c_sr_m2 0 -156 90 1 1 0 0 0 +} +// brush 1948 +{ +( 1952 2688 -128 ) ( 1824 2688 -128 ) ( 1824 2656 -128 ) bricks/c_sr_m2 164 -100 90 1 1.200000 0 0 0 +( 1824 2656 -80 ) ( 1824 2688 -80 ) ( 1952 2688 -80 ) bricks/c_sr_m2 164 -100 90 1 1.200000 0 0 0 +( 1824 2656 0 ) ( 1952 2656 0 ) ( 1952 2656 -128 ) bricks/c_sr_m2 164 -100 90 1 1.200000 0 0 0 +( 1952 2656 0 ) ( 1952 2688 0 ) ( 1952 2688 -128 ) bricks/c_sr_m2 164 -100 90 1 1.200000 0 0 0 +( 1952 2688 0 ) ( 1824 2688 0 ) ( 1824 2688 -128 ) bricks/c_sr_m2 164 -100 90 1 1.200000 0 0 0 +( 1824 2688 0 ) ( 1824 2656 0 ) ( 1824 2656 -128 ) bricks/c_sr_m2 164 -100 90 1 1.200000 0 0 0 +} +// brush 1949 +{ +( 1952 2720 -128 ) ( 1824 2720 -128 ) ( 1824 2688 -128 ) bricks/c_sr_m2 0 -156 90 1 1 0 0 0 +( 1824 2688 -64 ) ( 1824 2720 -64 ) ( 1952 2720 -64 ) bricks/c_sr_m2 180 -100 90 1 1.200000 0 0 0 +( 1824 2688 0 ) ( 1952 2688 0 ) ( 1952 2688 -128 ) bricks/c_sr_m2 148 -100 90 1 1.200000 0 0 0 +( 1952 2688 0 ) ( 1952 2720 0 ) ( 1952 2720 -128 ) bricks/c_sr_m2 0 -156 90 1 1 0 0 0 +( 1952 2720 0 ) ( 1824 2720 0 ) ( 1824 2720 -128 ) bricks/c_sr_m2 0 -156 90 1 1 0 0 0 +( 1824 2720 0 ) ( 1824 2688 0 ) ( 1824 2688 -128 ) bricks/c_sr_m2 0 -156 90 1 1 0 0 0 +} +// brush 1950 +{ +( 1952 2752 -128 ) ( 1824 2752 -128 ) ( 1824 2720 -128 ) bricks/c_sr_m2 0 -156 90 1 1 0 0 0 +( 1824 2720 -48 ) ( 1824 2752 -48 ) ( 1952 2752 -48 ) bricks/c_sr_m2 180 -100 90 1 1.200000 0 0 0 +( 1824 2720 0 ) ( 1952 2720 0 ) ( 1952 2720 -128 ) bricks/c_sr_m2 180 -100 90 1 1.200000 0 0 0 +( 1952 2720 0 ) ( 1952 2752 0 ) ( 1952 2752 -128 ) bricks/c_sr_m2 0 -156 90 1 1 0 0 0 +( 1952 2752 0 ) ( 1824 2752 0 ) ( 1824 2752 -128 ) bricks/c_sr_m2 0 -156 90 1 1 0 0 0 +( 1824 2752 0 ) ( 1824 2720 0 ) ( 1824 2720 -128 ) bricks/c_sr_m2 0 -156 90 1 1 0 0 0 +} +// brush 1951 +{ +( 1952 2784 -128 ) ( 1824 2784 -128 ) ( 1824 2752 -128 ) bricks/c_sr_m2 0 -156 90 1 1 0 0 0 +( 1824 2752 -32 ) ( 1824 2784 -32 ) ( 1952 2784 -32 ) bricks/c_sr_m2 220 -92 90 1 1.200000 0 0 0 +( 1824 2752 0 ) ( 1952 2752 0 ) ( 1952 2752 -128 ) bricks/c_sr_m2 196 -100 90 1 1.200000 0 0 0 +( 1952 2752 0 ) ( 1952 2784 0 ) ( 1952 2784 -128 ) bricks/c_sr_m2 0 -156 90 1 1 0 0 0 +( 1952 2784 0 ) ( 1824 2784 0 ) ( 1824 2784 -128 ) bricks/c_sr_m2 0 -156 90 1 1 0 0 0 +( 1824 2784 0 ) ( 1824 2752 0 ) ( 1824 2752 -128 ) bricks/c_sr_m2 0 -156 90 1 1 0 0 0 +} +// brush 1952 +{ +( 1952 2816 -128 ) ( 1824 2816 -128 ) ( 1824 2784 -128 ) bricks/c_sr_m2 0 -156 90 1 1 0 0 0 +( 1824 2784 -16 ) ( 1824 2816 -16 ) ( 1952 2816 -16 ) bricks/c_sr_m2 236 -92 90 1 1.200000 0 0 0 +( 1824 2784 0 ) ( 1952 2784 0 ) ( 1952 2784 -128 ) bricks/c_sr_m2 236 -92 90 1 1.200000 0 0 0 +( 1952 2784 0 ) ( 1952 2816 0 ) ( 1952 2816 -128 ) bricks/c_sr_m2 0 -156 90 1 1 0 0 0 +( 1952 2816 0 ) ( 1824 2816 0 ) ( 1824 2816 -128 ) bricks/c_sr_m2 0 -156 90 1 1 0 0 0 +( 1824 2816 0 ) ( 1824 2784 0 ) ( 1824 2784 -128 ) bricks/c_sr_m2 0 -156 90 1 1 0 0 0 +} +// brush 1953 +{ +( 1952 2832 -128 ) ( 1824 2832 -128 ) ( 1824 2816 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 2816 -16 ) ( 1824 2832 -16 ) ( 1952 2832 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 2816 0 ) ( 1952 2816 0 ) ( 1952 2816 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1952 2816 0 ) ( 1952 2832 0 ) ( 1952 2832 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1952 2832 0 ) ( 1824 2832 0 ) ( 1824 2832 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1824 2832 0 ) ( 1824 2816 0 ) ( 1824 2816 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 1954 +{ +( 2176 2816 -16 ) ( 1920 2816 -16 ) ( 1920 2624 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1920 2624 0 ) ( 1920 2816 0 ) ( 2176 2816 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2176 3072 0 ) ( 1920 3072 0 ) ( 1920 3072 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1952 2816 0 ) ( 1952 2624 0 ) ( 1952 2624 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 2048 3072 -16 ) ( 2048 3048 -16 ) ( 2048 3060 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1976 2816 -16 ) ( 1952 2816 -16 ) ( 1964 2816 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1955 +{ +( 1952 2944 -16 ) ( 1824 2944 -16 ) ( 1824 2848 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1824 2848 0 ) ( 1824 2944 0 ) ( 1952 2944 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1952 2848 0 ) ( 1952 2944 0 ) ( 1952 2944 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1952 2944 0 ) ( 1824 2944 0 ) ( 1824 2944 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1824 2944 0 ) ( 1824 2848 0 ) ( 1824 2848 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1952 2816 -16 ) ( 1824 2816 -16 ) ( 1888 2816 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 1956 +{ +( 2336 2608 0 ) ( 1936 2608 0 ) ( 1936 2592 0 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1936 2592 128 ) ( 1936 2608 128 ) ( 2336 2608 128 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1936 2592 128 ) ( 2336 2592 128 ) ( 2336 2592 0 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 2048 2584 128 ) ( 2048 2600 128 ) ( 2048 2600 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2336 2608 128 ) ( 1936 2608 128 ) ( 1936 2608 0 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1952 2592 0 ) ( 1952 2608 0 ) ( 1952 2600 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1957 +{ +( 2336 2608 0 ) ( 1936 2608 0 ) ( 1936 2592 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( 1936 2592 128 ) ( 1936 2608 128 ) ( 2336 2608 128 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1936 2592 128 ) ( 2336 2592 128 ) ( 2336 2592 0 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 2336 2608 128 ) ( 1936 2608 128 ) ( 1936 2608 0 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1824 2592 0 ) ( 1824 2608 0 ) ( 1824 2600 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1952 2608 0 ) ( 1952 2592 0 ) ( 1952 2600 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1958 +{ +( 2272 2608 128 ) ( 1936 2608 128 ) ( 1936 2592 128 ) bricks/b_mf_v2 -96 0 0 1 1 0 0 0 +( 1936 2592 256 ) ( 1936 2608 256 ) ( 2272 2608 256 ) bricks/b_mf_v2 -96 0 0 1 1 0 0 0 +( 1936 2592 256 ) ( 2272 2592 256 ) ( 2272 2592 128 ) bricks/b_mf_v2 -96 0 0 1 1 0 0 0 +( 2048 2584 256 ) ( 2048 2600 256 ) ( 2048 2600 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2272 2608 256 ) ( 1936 2608 256 ) ( 1936 2608 128 ) bricks/b_mf_v2 -96 0 0 1 1 0 0 0 +( 1952 2592 128 ) ( 1952 2608 128 ) ( 1952 2600 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1959 +{ +( 2272 2608 128 ) ( 1936 2608 128 ) ( 1936 2592 128 ) bricks/b_mf_v2 -96 0 0 1 1 0 0 0 +( 1936 2592 256 ) ( 1936 2608 256 ) ( 2272 2608 256 ) bricks/b_mf_v2 -96 0 0 1 1 0 0 0 +( 1936 2592 256 ) ( 2272 2592 256 ) ( 2272 2592 128 ) bricks/b_mf_v2 -96 0 0 1 1 0 0 0 +( 2272 2608 256 ) ( 1936 2608 256 ) ( 1936 2608 128 ) bricks/b_mf_v2 -96 0 0 1 1 0 0 0 +( 1824 2592 128 ) ( 1824 2608 128 ) ( 1824 2600 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1952 2608 128 ) ( 1952 2592 128 ) ( 1952 2600 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1960 +{ +( 2336 2608 0 ) ( 1936 2608 0 ) ( 1936 2592 0 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1936 2592 128 ) ( 1936 2608 128 ) ( 2336 2608 128 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1936 2592 128 ) ( 2336 2592 128 ) ( 2336 2592 0 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 2336 2608 128 ) ( 1936 2608 128 ) ( 1936 2608 0 ) bricks/c_pv_m2 -96 0 0 1 1 0 0 0 +( 1712 2608 128 ) ( 1712 2592 128 ) ( 1712 2592 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1824 2608 0 ) ( 1824 2592 0 ) ( 1824 2600 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 1961 +{ +( 2272 2608 128 ) ( 1936 2608 128 ) ( 1936 2592 128 ) bricks/b_mf_v2 -96 0 0 1 1 0 0 0 +( 1936 2592 256 ) ( 1936 2608 256 ) ( 2272 2608 256 ) bricks/b_mf_v2 -96 0 0 1 1 0 0 0 +( 1936 2592 256 ) ( 2272 2592 256 ) ( 2272 2592 128 ) bricks/b_mf_v2 -96 0 0 1 1 0 0 0 +( 2272 2608 256 ) ( 1936 2608 256 ) ( 1936 2608 128 ) bricks/b_mf_v2 -96 0 0 1 1 0 0 0 +( 1712 2608 256 ) ( 1712 2592 256 ) ( 1712 2592 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1824 2608 128 ) ( 1824 2592 128 ) ( 1824 2600 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 1962 +{ +( 1880 3104 128 ) ( 1600 3104 128 ) ( 1600 3088 128 ) bricks/b_sr_20 0 16 0 1 1 0 0 0 +( 1600 3088 256 ) ( 1600 3104 256 ) ( 1880 3104 256 ) bricks/b_sr_20 0 16 0 1 1 0 0 0 +( 1600 3088 224 ) ( 1880 3088 224 ) ( 1880 3088 160 ) props/w_sr_m6e 0 0 0 1 1 0 0 100 +( 1880 3104 224 ) ( 1600 3104 224 ) ( 1600 3104 160 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1856 3104 128 ) ( 1856 3088 128 ) ( 1856 3096 256 ) bricks/b_sr_20 -16 0 0 1 1 0 0 0 +( 1792 3088 128 ) ( 1792 3104 128 ) ( 1792 3096 256 ) bricks/b_sr_20 -16 0 0 1 1 0 0 0 +} +// brush 1963 +{ +( 1880 3088 128 ) ( 1600 3088 128 ) ( 1600 3072 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1600 3072 256 ) ( 1600 3088 256 ) ( 1880 3088 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1600 3072 224 ) ( 1880 3072 224 ) ( 1880 3072 160 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1880 3088 224 ) ( 1600 3088 224 ) ( 1600 3088 160 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1600 3088 224 ) ( 1600 3072 224 ) ( 1600 3072 160 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1792 3088 128 ) ( 1792 3072 128 ) ( 1792 3080 256 ) bricks/b_sr_20b 4 0 0 1 1 0 0 0 +} +// brush 1964 +{ +( 1880 3088 128 ) ( 1600 3088 128 ) ( 1600 3072 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1600 3072 256 ) ( 1600 3088 256 ) ( 1880 3088 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1600 3072 224 ) ( 1880 3072 224 ) ( 1880 3072 160 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1880 3088 224 ) ( 1600 3088 224 ) ( 1600 3088 160 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1888 3088 128 ) ( 1888 3072 128 ) ( 1888 3080 256 ) bricks/b_sr_20b 4 0 0 1 1 0 0 0 +( 1856 3072 128 ) ( 1856 3088 128 ) ( 1856 3080 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 1965 +{ +( 1880 3104 128 ) ( 1600 3104 128 ) ( 1600 3088 128 ) bricks/b_sr_20 0 16 0 1 1 0 0 0 +( 1600 3088 256 ) ( 1600 3104 256 ) ( 1880 3104 256 ) bricks/b_sr_20 0 16 0 1 1 0 0 0 +( 1600 3088 224 ) ( 1880 3088 224 ) ( 1880 3088 160 ) props/w_sr_m6d 0 0 0 1 1 0 1 50 +( 1880 3104 224 ) ( 1600 3104 224 ) ( 1600 3104 160 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1952 3104 128 ) ( 1952 3088 128 ) ( 1952 3096 256 ) bricks/b_sr_20 -16 0 0 1 1 0 0 0 +( 1888 3088 128 ) ( 1888 3104 128 ) ( 1888 3096 256 ) bricks/b_sr_20 -16 0 0 1 1 0 0 0 +} +// brush 1966 +{ +( 1880 3088 128 ) ( 1600 3088 128 ) ( 1600 3072 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1600 3072 256 ) ( 1600 3088 256 ) ( 1880 3088 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1600 3072 224 ) ( 1880 3072 224 ) ( 1880 3072 160 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1880 3088 224 ) ( 1600 3088 224 ) ( 1600 3088 160 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1984 3088 128 ) ( 1984 3072 128 ) ( 1984 3080 256 ) bricks/b_sr_20b 4 0 0 1 1 0 0 0 +( 1952 3072 128 ) ( 1952 3088 128 ) ( 1952 3080 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 1967 +{ +( 1880 3104 128 ) ( 1600 3104 128 ) ( 1600 3088 128 ) bricks/b_sr_20 0 16 0 1 1 0 0 0 +( 1600 3088 256 ) ( 1600 3104 256 ) ( 1880 3104 256 ) bricks/b_sr_20 0 16 0 1 1 0 0 0 +( 1600 3088 224 ) ( 1880 3088 224 ) ( 1880 3088 160 ) props/w_sr_m6d 0 0 0 1 1 0 1 100 +( 1880 3104 224 ) ( 1600 3104 224 ) ( 1600 3104 160 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 2048 3104 128 ) ( 2048 3088 128 ) ( 2048 3096 256 ) bricks/b_sr_20 -16 0 0 1 1 0 0 0 +( 1984 3088 128 ) ( 1984 3104 128 ) ( 1984 3096 256 ) bricks/b_sr_20 -16 0 0 1 1 0 0 0 +} +// brush 1968 +{ +( 1880 3088 128 ) ( 1600 3088 128 ) ( 1600 3072 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1600 3072 256 ) ( 1600 3088 256 ) ( 1880 3088 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1600 3072 224 ) ( 1880 3072 224 ) ( 1880 3072 160 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 2112 3072 224 ) ( 2112 3088 224 ) ( 2112 3088 160 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1880 3088 224 ) ( 1600 3088 224 ) ( 1600 3088 160 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 2048 3072 128 ) ( 2048 3088 128 ) ( 2048 3080 256 ) bricks/b_sr_20b -8 0 0 1 1 0 0 0 +} +// brush 1969 +{ +( 2576 2480 0 ) ( 2572 2480 0 ) ( 2572 2472 0 ) metals/mt_pv_m26 0 0 0 1 1 134217728 8388608 0 +( 2572 2472 116 ) ( 2572 2480 116 ) ( 2576 2480 116 ) metals/mt_pv_m26 0 0 0 1 1 134217728 8388608 0 +( 2572 2456 124 ) ( 2576 2456 124 ) ( 2576 2456 0 ) metals/mt_pv_m26 0 0 0 1 1 134217728 8388608 0 +( 2576 2472 124 ) ( 2576 2480 124 ) ( 2576 2480 0 ) metals/mt_pv_m26 0 0 0 1 1 134217728 8388608 0 +( 2576 2508 124 ) ( 2572 2508 124 ) ( 2572 2508 0 ) metals/mt_pv_m26 0 0 0 1 1 134217728 8388608 0 +( 2572 2480 124 ) ( 2572 2472 124 ) ( 2572 2472 0 ) metals/mt_pv_m26 0 0 0 1 1 134217728 8390656 0 +} +// brush 1970 +{ +( 2578 2554 122 ) ( 2578 2608 122 ) ( 2448 2608 132 ) metals/mt_pv_m7m 0 -15 90 1 1 0 16777216 0 +( 2576 2608 126 ) ( 2576 2554 126 ) ( 2448 2554 136 ) metals/mt_pv_m7m 5 -14 90 1 1 0 16777216 0 +( 2576 2554 126 ) ( 2576 2608 126 ) ( 2578 2608 122 ) metals/mt_pv_m7m 0 -6 90 1 1 0 16777216 0 +( 2560 2608 140 ) ( 2472 2608 140 ) ( 2472 2608 132 ) metals/mt_pv_m7m 0 -6 90 1 1 0 16777216 0 +( 2448 2608 140 ) ( 2448 2480 140 ) ( 2448 2480 132 ) metals/mt_pv_m7m 0 -6 90 1 1 0 16777216 0 +( 2460 2554 132 ) ( 2448 2554 132 ) ( 2454 2554 136 ) metals/mt_pv_m7m 0 -6 90 1 1 0 16777216 0 +} +// brush 1971 +{ +( 2452 2564 90 ) ( 2448 2564 90 ) ( 2448 2554 90 ) wood/wd_sr_m3a 0 0 90 1 1 0 134217728 0 +( 2448 2554 118 ) ( 2448 2564 118 ) ( 2452 2564 118 ) wood/wd_sr_m3a 0 0 90 1 1 0 134217728 0 +( 2446 2492 132 ) ( 2450 2492 132 ) ( 2450 2492 0 ) wood/wd_sr_m3a 0 0 90 1 1 0 134217728 0 +( 2452 2554 132 ) ( 2452 2564 132 ) ( 2452 2564 0 ) wood/wd_sr_m3a 0 0 90 1 1 0 134217728 0 +( 2452 2592 132 ) ( 2448 2592 132 ) ( 2448 2592 0 ) wood/wd_sr_m3a 0 0 90 1 1 0 134217728 0 +( 2448 2564 132 ) ( 2448 2554 132 ) ( 2448 2554 0 ) wood/wd_sr_m3a 0 0 90 1 1 0 134217728 0 +} +// brush 1972 +{ +( 2452 2592 0 ) ( 2448 2592 0 ) ( 2448 2564 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 2460 2552 72 ) ( 2456 2552 72 ) ( 2448 2592 104 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 2448 2568 0 ) ( 2456 2552 72 ) ( 2460 2552 72 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 2452 2568 0 ) ( 2460 2552 72 ) ( 2452 2592 104 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 2452 2592 106 ) ( 2448 2592 106 ) ( 2448 2592 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 2448 2592 104 ) ( 2456 2552 72 ) ( 2448 2568 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +} +// brush 1973 +{ +( 2452 2438 0 ) ( 2450 2438 0 ) ( 2450 2430 0 ) wood/wd_sr_m3a 112 0 0 1 1 0 0 0 +( 2450 2430 132 ) ( 2450 2438 132 ) ( 2452 2438 132 ) wood/wd_sr_m3a 112 0 0 1 1 0 0 0 +( 2450 2432 132 ) ( 2452 2432 132 ) ( 2452 2432 0 ) wood/wd_sr_m3a 112 0 0 1 1 0 0 0 +( 2452 2430 132 ) ( 2452 2438 132 ) ( 2452 2438 0 ) wood/wd_sr_m3a 112 0 0 1 1 0 0 0 +( 2452 2438 132 ) ( 2450 2438 132 ) ( 2450 2438 0 ) wood/wd_sr_m3a 112 0 0 1 1 0 0 0 +( 2446 2438 132 ) ( 2446 2430 132 ) ( 2446 2430 0 ) wood/wd_sr_m3a 112 0 0 1 1 0 0 0 +} +// brush 1974 +{ +( 2454 2468 0 ) ( 2448 2468 0 ) ( 2448 2450 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 2448 2450 132 ) ( 2448 2468 132 ) ( 2454 2468 132 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 2448 2438 132 ) ( 2454 2438 132 ) ( 2454 2438 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 2454 2450 132 ) ( 2454 2468 132 ) ( 2454 2468 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 2454 2468 132 ) ( 2448 2468 132 ) ( 2448 2468 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 2448 2468 132 ) ( 2448 2450 132 ) ( 2448 2450 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +} +// brush 1975 +{ +( 2452 2492 0 ) ( 2450 2492 0 ) ( 2450 2486 0 ) wood/wd_sr_m3a 0 -112 0 1 1 0 0 0 +( 2450 2486 132 ) ( 2450 2492 132 ) ( 2452 2492 132 ) wood/wd_sr_m3a 0 -112 0 1 1 0 0 0 +( 2450 2468 132 ) ( 2452 2468 132 ) ( 2452 2468 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( 2452 2474 132 ) ( 2452 2480 132 ) ( 2452 2480 0 ) wood/wd_sr_m3a 112 0 0 1 1 0 0 0 +( 2452 2492 132 ) ( 2450 2492 132 ) ( 2450 2492 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( 2450 2492 132 ) ( 2450 2486 132 ) ( 2450 2486 0 ) wood/wd_sr_m3a 112 0 0 1 1 0 0 0 +} +// brush 1976 +{ +( 2450 2604 0 ) ( 2448 2604 0 ) ( 2448 2598 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( 2450 2592 132 ) ( 2450 2604 132 ) ( 2452 2604 132 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( 2448 2592 132 ) ( 2450 2592 132 ) ( 2450 2592 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( 2452 2592 132 ) ( 2452 2604 132 ) ( 2450 2604 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( 2450 2604 132 ) ( 2448 2604 132 ) ( 2448 2604 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( 2450 2604 132 ) ( 2450 2592 132 ) ( 2448 2592 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +} +// brush 1977 +{ +( 2576 2564 0 ) ( 2572 2564 0 ) ( 2572 2534 0 ) wood/wd_sr_m3a -16 0 0 1 1 134217728 0 0 +( 2572 2534 124 ) ( 2572 2564 124 ) ( 2576 2564 124 ) wood/wd_sr_m3a -16 0 0 1 1 134217728 0 0 +( 2572 2534 132 ) ( 2576 2534 132 ) ( 2576 2534 128 ) wood/wd_sr_m3a -16 0 0 1 1 134217728 0 0 +( 2576 2534 132 ) ( 2576 2564 132 ) ( 2576 2564 128 ) wood/wd_sr_m3a 0 0 0 1 1 134217728 0 0 +( 2576 2564 132 ) ( 2572 2564 132 ) ( 2572 2564 128 ) wood/wd_sr_m3a -16 0 0 1 1 134217728 0 0 +( 2572 2564 132 ) ( 2572 2534 132 ) ( 2572 2534 128 ) wood/wd_sr_m3a 0 0 0 1 1 134217728 0 0 +} +// brush 1978 +{ +( 2576 2432 112 ) ( 2576 2560 112 ) ( 2448 2560 128 ) metals/mt_pv_m26 -6 6 0 1 1 0 8390656 0 +( 2576 2560 120 ) ( 2576 2432 120 ) ( 2448 2432 136 ) metals/mt_pv_m26 -6 6 0 1 1 0 8388608 0 +( 2472 2432 136 ) ( 2560 2432 136 ) ( 2560 2432 128 ) metals/mt_pv_m26 -6 6 0 1 1 0 8388608 0 +( 2576 2432 120 ) ( 2576 2560 120 ) ( 2576 2560 112 ) metals/mt_pv_m26 -6 6 0 1 1 0 8388608 0 +( 2448 2608 136 ) ( 2448 2480 136 ) ( 2448 2480 128 ) metals/mt_pv_m26 -6 6 0 1 1 0 8388608 0 +( 2448 2562 128 ) ( 2488 2562 128 ) ( 2468 2562 132 ) metals/mt_pv_m26 -6 6 4 1 1 0 8388608 0 +} +// brush 1979 +{ +( 2464 2912 -16 ) ( 2400 2912 -16 ) ( 2400 2848 -16 ) bricks/c_sr_m3a 0 -64 0 1 1 0 0 0 +( 2400 2848 0 ) ( 2400 2912 0 ) ( 2464 2912 0 ) bricks/c_sr_m3a 0 -64 0 1 1 0 0 0 +( 2400 2848 48 ) ( 2464 2848 48 ) ( 2464 2848 -16 ) bricks/c_sr_m3a -64 -64 0 1 1 0 0 0 +( 2464 2848 48 ) ( 2464 2912 48 ) ( 2464 2912 -16 ) bricks/c_sr_m3a 40 -64 0 1 1 0 0 0 +( 2464 2912 48 ) ( 2400 2912 48 ) ( 2400 2912 -16 ) bricks/c_sr_m3a -8 -64 0 1 1 0 0 0 +( 2400 2912 48 ) ( 2400 2848 48 ) ( 2400 2848 -16 ) bricks/c_sr_m3a 0 -64 0 1 1 0 0 0 +} +// brush 1980 +{ +( 2272 2912 -16 ) ( 2208 2912 -16 ) ( 2208 2848 -16 ) bricks/c_sr_m3a -72 -64 0 1 1 0 0 0 +( 2208 2848 0 ) ( 2208 2912 0 ) ( 2272 2912 0 ) bricks/c_sr_m3a -72 -64 0 1 1 0 0 0 +( 2208 2848 48 ) ( 2272 2848 48 ) ( 2272 2848 -16 ) bricks/c_sr_m3a 0 -64 0 1 1 0 0 0 +( 2272 2848 48 ) ( 2272 2912 48 ) ( 2272 2912 -16 ) bricks/c_sr_m3a -72 -64 0 1 1 0 0 0 +( 2272 2912 48 ) ( 2208 2912 48 ) ( 2208 2912 -16 ) bricks/c_sr_m3a 0 -64 0 1 1 0 0 0 +( 2208 2912 48 ) ( 2208 2848 48 ) ( 2208 2848 -16 ) bricks/c_sr_m3a -72 -64 0 1 1 0 0 0 +} +// brush 1981 +{ +( 2544 3072 -32 ) ( 2040 3072 -32 ) ( 2040 2616 -32 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( 2040 2616 -16 ) ( 2040 3072 -16 ) ( 2544 3072 -16 ) bricks/s_sr_m6 0 0 45 1 1 0 4194304 0 +( 2040 2608 -16 ) ( 2544 2608 -16 ) ( 2544 2608 -32 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( 2544 2616 -16 ) ( 2544 3072 -16 ) ( 2544 3072 -32 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( 2544 3072 -16 ) ( 2040 3072 -16 ) ( 2040 3072 -32 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( 2040 3072 -16 ) ( 2040 2616 -16 ) ( 2040 2616 -32 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 1982 +{ +( 2136 3072 -16 ) ( 2048 3072 -16 ) ( 2048 3032 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2048 3032 0 ) ( 2048 3072 0 ) ( 2136 3072 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2048 3032 0 ) ( 2136 3032 0 ) ( 2136 3032 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2136 3032 0 ) ( 2136 3072 0 ) ( 2136 3072 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2136 3072 0 ) ( 2048 3072 0 ) ( 2048 3072 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2048 3072 0 ) ( 2048 3032 0 ) ( 2048 3032 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1983 +{ +( 2536 3072 -16 ) ( 2480 3072 -16 ) ( 2480 3008 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2480 3008 0 ) ( 2480 3072 0 ) ( 2536 3072 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2480 3008 0 ) ( 2536 3008 0 ) ( 2536 3008 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2536 3008 0 ) ( 2536 3072 0 ) ( 2536 3072 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2536 3072 0 ) ( 2480 3072 0 ) ( 2480 3072 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2480 3072 0 ) ( 2480 3008 0 ) ( 2480 3008 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1984 +{ +( 2544 2656 -16 ) ( 2456 2656 -16 ) ( 2456 2608 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2456 2608 0 ) ( 2456 2656 0 ) ( 2544 2656 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2456 2608 0 ) ( 2544 2608 0 ) ( 2544 2608 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2536 2608 0 ) ( 2536 2656 0 ) ( 2536 2656 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2544 2656 0 ) ( 2456 2656 0 ) ( 2456 2656 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2456 2656 0 ) ( 2456 2608 0 ) ( 2456 2608 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1985 +{ +( 2080 2776 -16 ) ( 2048 2776 -16 ) ( 2048 2608 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2048 2608 0 ) ( 2048 2776 0 ) ( 2080 2776 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2048 2608 0 ) ( 2080 2608 0 ) ( 2080 2608 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2080 2608 0 ) ( 2080 2776 0 ) ( 2080 2776 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2080 2776 0 ) ( 2048 2776 0 ) ( 2048 2776 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2048 2776 0 ) ( 2048 2608 0 ) ( 2048 2608 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1986 +{ +( 2512 2928 -16 ) ( 2504 2928 -16 ) ( 2504 2896 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2504 2896 0 ) ( 2504 2928 0 ) ( 2512 2928 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2520 2896 -16 ) ( 2520 2896 0 ) ( 2528 2896 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2536 2928 0 ) ( 2536 2928 -16 ) ( 2536 2896 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2528 2928 -16 ) ( 2528 2928 0 ) ( 2504 2928 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2520 2896 0 ) ( 2520 2896 -16 ) ( 2504 2928 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 4194304 0 +} +// brush 1987 +{ +( 2488 2968 -16 ) ( 2480 2968 -16 ) ( 2480 2928 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2480 2928 0 ) ( 2480 2968 0 ) ( 2488 2968 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2504 2928 -16 ) ( 2504 2928 0 ) ( 2512 2928 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2536 2968 0 ) ( 2536 2968 -16 ) ( 2536 2928 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2512 2968 -16 ) ( 2512 2968 0 ) ( 2480 2968 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2504 2928 0 ) ( 2504 2928 -16 ) ( 2480 2968 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 4194304 0 +} +// brush 1988 +{ +( 2488 3008 -16 ) ( 2480 3008 -16 ) ( 2480 2968 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2480 2968 0 ) ( 2480 3008 0 ) ( 2488 3008 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2480 2968 0 ) ( 2488 2968 0 ) ( 2488 2968 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2536 2968 0 ) ( 2536 3008 0 ) ( 2536 3008 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2488 3008 0 ) ( 2480 3008 0 ) ( 2480 3008 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2480 3008 0 ) ( 2480 2968 0 ) ( 2480 2968 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 4194304 0 +} +// brush 1989 +{ +( 2480 3000 -16 ) ( 2432 3000 -16 ) ( 2432 2992 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2432 2992 0 ) ( 2432 3000 0 ) ( 2480 3000 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2480 3008 0 ) ( 2480 3008 -16 ) ( 2432 2992 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 4194304 0 +( 2480 3008 -16 ) ( 2480 3008 0 ) ( 2480 3016 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2432 3072 0 ) ( 2432 3072 -16 ) ( 2480 3072 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2432 3016 -16 ) ( 2432 3016 0 ) ( 2432 2992 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1990 +{ +( 2432 3032 -16 ) ( 2352 3032 -16 ) ( 2352 3024 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2352 3024 0 ) ( 2352 3032 0 ) ( 2432 3032 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2432 2992 0 ) ( 2432 2992 -16 ) ( 2352 3024 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 4194304 0 +( 2432 3032 0 ) ( 2432 3032 -16 ) ( 2432 2992 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2432 3072 -16 ) ( 2432 3072 0 ) ( 2352 3072 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2352 3032 0 ) ( 2352 3024 0 ) ( 2352 3024 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1991 +{ +( 2352 3032 -16 ) ( 2280 3032 -16 ) ( 2280 3024 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2280 3024 0 ) ( 2280 3032 0 ) ( 2352 3032 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2280 3024 0 ) ( 2352 3024 0 ) ( 2352 3024 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 4194304 0 +( 2352 3024 0 ) ( 2352 3032 0 ) ( 2352 3032 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2360 3072 0 ) ( 2288 3072 0 ) ( 2288 3072 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2280 3032 0 ) ( 2280 3024 0 ) ( 2280 3024 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1992 +{ +( 2280 3064 -16 ) ( 2192 3064 -16 ) ( 2192 3056 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2192 3056 0 ) ( 2192 3064 0 ) ( 2280 3064 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2280 3024 0 ) ( 2280 3024 -16 ) ( 2192 3056 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 4194304 0 +( 2280 3064 0 ) ( 2280 3064 -16 ) ( 2280 3024 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2280 3072 -16 ) ( 2280 3072 0 ) ( 2192 3072 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2192 3064 0 ) ( 2192 3056 0 ) ( 2192 3056 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1993 +{ +( 2192 3040 -16 ) ( 2136 3040 -16 ) ( 2136 3032 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2136 3032 0 ) ( 2136 3040 0 ) ( 2192 3040 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2192 3056 0 ) ( 2192 3056 -16 ) ( 2136 3032 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 4194304 0 +( 2192 3056 -16 ) ( 2192 3056 0 ) ( 2192 3064 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2136 3072 0 ) ( 2136 3072 -16 ) ( 2192 3072 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2136 3064 -16 ) ( 2136 3064 0 ) ( 2136 3032 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1994 +{ +( 2120 3032 -16 ) ( 2112 3032 -16 ) ( 2112 2960 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2112 2960 0 ) ( 2112 3032 0 ) ( 2120 3032 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2112 2960 0 ) ( 2120 2960 0 ) ( 2120 2960 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2136 3032 0 ) ( 2136 3032 -16 ) ( 2120 2960 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 4194304 0 +( 2112 3032 0 ) ( 2112 3032 -16 ) ( 2136 3032 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2048 3032 -16 ) ( 2048 3032 0 ) ( 2048 2960 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1995 +{ +( 2168 2960 -16 ) ( 2160 2960 -16 ) ( 2160 2904 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2160 2904 0 ) ( 2160 2960 0 ) ( 2168 2960 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2112 2904 -16 ) ( 2112 2904 0 ) ( 2128 2904 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 2904 -16 ) ( 2128 2904 0 ) ( 2120 2960 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 4194304 0 +( 2120 2960 -16 ) ( 2120 2960 0 ) ( 2112 2960 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2048 2904 0 ) ( 2048 2904 -16 ) ( 2048 2960 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1996 +{ +( 2080 2920 -16 ) ( 2072 2920 -16 ) ( 2072 2856 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2072 2856 0 ) ( 2072 2920 0 ) ( 2080 2920 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2072 2856 0 ) ( 2080 2856 0 ) ( 2080 2856 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 2904 0 ) ( 2128 2904 -16 ) ( 2080 2856 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 4194304 0 +( 2072 2904 0 ) ( 2072 2904 -16 ) ( 2128 2904 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2048 2904 -16 ) ( 2048 2904 0 ) ( 2048 2856 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1997 +{ +( 2080 2856 -16 ) ( 2072 2856 -16 ) ( 2072 2776 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2072 2776 0 ) ( 2072 2856 0 ) ( 2080 2856 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2072 2776 0 ) ( 2080 2776 0 ) ( 2080 2776 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2080 2776 0 ) ( 2080 2856 0 ) ( 2080 2856 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 4194304 0 +( 2080 2856 0 ) ( 2072 2856 0 ) ( 2072 2856 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2048 2856 0 ) ( 2048 2776 0 ) ( 2048 2776 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1998 +{ +( 2128 2712 -16 ) ( 2080 2712 -16 ) ( 2080 2704 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2080 2704 0 ) ( 2080 2712 0 ) ( 2128 2712 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2080 2608 -16 ) ( 2080 2608 0 ) ( 2128 2608 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 2704 0 ) ( 2128 2712 0 ) ( 2128 2712 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2080 2776 0 ) ( 2080 2776 -16 ) ( 2128 2712 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 4194304 0 +( 2080 2704 0 ) ( 2080 2704 -16 ) ( 2080 2776 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 1999 +{ +( 2176 2680 -16 ) ( 2128 2680 -16 ) ( 2128 2672 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 2672 0 ) ( 2128 2680 0 ) ( 2176 2680 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 2608 -16 ) ( 2128 2608 0 ) ( 2176 2608 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2176 2672 0 ) ( 2176 2680 0 ) ( 2176 2680 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2128 2712 0 ) ( 2128 2712 -16 ) ( 2176 2680 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 4194304 0 +( 2128 2672 0 ) ( 2128 2672 -16 ) ( 2128 2712 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2000 +{ +( 2240 2680 -16 ) ( 2176 2680 -16 ) ( 2176 2672 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2176 2672 0 ) ( 2176 2680 0 ) ( 2240 2680 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2176 2608 0 ) ( 2240 2608 0 ) ( 2240 2608 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2240 2672 0 ) ( 2240 2680 0 ) ( 2240 2680 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2240 2680 0 ) ( 2176 2680 0 ) ( 2176 2680 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 4194304 0 +( 2176 2680 0 ) ( 2176 2672 0 ) ( 2176 2672 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2001 +{ +( 2320 2624 -16 ) ( 2240 2624 -16 ) ( 2240 2616 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2240 2616 0 ) ( 2240 2624 0 ) ( 2320 2624 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2240 2608 -16 ) ( 2240 2608 0 ) ( 2320 2608 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2320 2616 0 ) ( 2320 2624 0 ) ( 2320 2624 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2240 2680 0 ) ( 2240 2680 -16 ) ( 2320 2624 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 4194304 0 +( 2240 2616 0 ) ( 2240 2616 -16 ) ( 2240 2680 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2002 +{ +( 2392 2656 -16 ) ( 2320 2656 -16 ) ( 2320 2648 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2320 2648 0 ) ( 2320 2656 0 ) ( 2392 2656 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2392 2608 0 ) ( 2392 2608 -16 ) ( 2320 2608 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2392 2616 -16 ) ( 2392 2616 0 ) ( 2392 2656 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2320 2624 0 ) ( 2320 2624 -16 ) ( 2392 2656 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 4194304 0 +( 2320 2624 -16 ) ( 2320 2624 0 ) ( 2320 2616 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2003 +{ +( 2456 2656 -16 ) ( 2392 2656 -16 ) ( 2392 2648 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2392 2648 0 ) ( 2392 2656 0 ) ( 2456 2656 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2392 2608 0 ) ( 2456 2608 0 ) ( 2456 2608 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2456 2648 0 ) ( 2456 2656 0 ) ( 2456 2656 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2456 2656 0 ) ( 2392 2656 0 ) ( 2392 2656 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 4194304 0 +( 2392 2656 0 ) ( 2392 2648 0 ) ( 2392 2648 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2004 +{ +( 2496 2712 -16 ) ( 2488 2712 -16 ) ( 2488 2656 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2488 2656 0 ) ( 2488 2712 0 ) ( 2496 2712 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2496 2656 0 ) ( 2496 2656 -16 ) ( 2456 2656 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2536 2656 -16 ) ( 2536 2656 0 ) ( 2536 2712 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2496 2712 0 ) ( 2488 2712 0 ) ( 2488 2712 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2456 2656 0 ) ( 2456 2656 -16 ) ( 2488 2712 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 4194304 0 +} +// brush 2005 +{ +( 2496 2768 -16 ) ( 2488 2768 -16 ) ( 2488 2712 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2488 2712 0 ) ( 2488 2768 0 ) ( 2496 2768 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2488 2712 0 ) ( 2496 2712 0 ) ( 2496 2712 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2536 2712 0 ) ( 2536 2768 0 ) ( 2536 2768 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2496 2768 0 ) ( 2488 2768 0 ) ( 2488 2768 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2488 2768 0 ) ( 2488 2712 0 ) ( 2488 2712 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 4194304 0 +} +// brush 2006 +{ +( 2528 2824 -16 ) ( 2520 2824 -16 ) ( 2520 2768 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2520 2768 0 ) ( 2520 2824 0 ) ( 2528 2824 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2528 2768 0 ) ( 2528 2768 -16 ) ( 2488 2768 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2536 2768 -16 ) ( 2536 2768 0 ) ( 2536 2824 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2528 2824 0 ) ( 2520 2824 0 ) ( 2520 2824 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2488 2768 0 ) ( 2488 2768 -16 ) ( 2520 2824 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 4194304 0 +} +// brush 2007 +{ +( 2528 2896 -16 ) ( 2520 2896 -16 ) ( 2520 2824 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2520 2824 0 ) ( 2520 2896 0 ) ( 2528 2896 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2520 2824 0 ) ( 2528 2824 0 ) ( 2528 2824 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2536 2816 0 ) ( 2536 2888 0 ) ( 2536 2888 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2528 2896 0 ) ( 2520 2896 0 ) ( 2520 2896 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2520 2896 0 ) ( 2520 2824 0 ) ( 2520 2824 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 4194304 0 +} +// brush 2008 +{ +( 2176 2816 -16 ) ( 1920 2816 -16 ) ( 1920 2624 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1920 2624 0 ) ( 1920 2816 0 ) ( 2176 2816 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1920 2608 0 ) ( 2176 2608 0 ) ( 2176 2608 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2592 2640 0 ) ( 2592 2832 0 ) ( 2592 2832 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2016 3072 0 ) ( 1760 3072 0 ) ( 1760 3072 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2536 2912 -16 ) ( 2536 3072 -16 ) ( 2536 2992 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2009 +{ +( 1920 3088 320 ) ( 1600 3088 320 ) ( 1600 3072 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1600 3072 576 ) ( 1600 3088 576 ) ( 1920 3088 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1600 3072 576 ) ( 1920 3072 576 ) ( 1920 3072 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1920 3072 576 ) ( 1920 3088 576 ) ( 1920 3088 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1920 3088 576 ) ( 1600 3088 576 ) ( 1600 3088 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1664 3072 320 ) ( 1664 3088 320 ) ( 1664 3080 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2010 +{ +( 1920 3088 320 ) ( 1600 3088 320 ) ( 1600 3072 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1600 3072 576 ) ( 1600 3088 576 ) ( 1920 3088 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1592 3072 576 ) ( 1912 3072 576 ) ( 1912 3072 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1920 3088 576 ) ( 1600 3088 576 ) ( 1600 3088 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1536 3088 576 ) ( 1536 3072 576 ) ( 1536 3072 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1664 3088 320 ) ( 1664 3072 320 ) ( 1664 3080 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2011 +{ +( 2248 3216 176 ) ( 2232 3216 176 ) ( 2232 2896 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2232 3216 192 ) ( 2248 3216 192 ) ( 2248 2896 288 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 2248 3216 192 ) ( 2232 3216 192 ) ( 2232 3216 176 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2232 2968 288 ) ( 2232 2896 288 ) ( 2232 2896 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2232 2896 288 ) ( 2248 2896 288 ) ( 2248 2896 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2248 2896 288 ) ( 2248 2968 288 ) ( 2248 2968 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2012 +{ +( 2232 2896 176 ) ( 2248 2896 176 ) ( 2248 3216 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2248 2896 192 ) ( 2232 2896 192 ) ( 2232 3216 288 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 2232 2896 192 ) ( 2248 2896 192 ) ( 2248 2896 176 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2248 3144 288 ) ( 2248 3216 288 ) ( 2248 3216 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2232 3216 288 ) ( 2232 3144 288 ) ( 2232 3144 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2232 3216 176 ) ( 2248 3216 176 ) ( 2232 2896 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2013 +{ +( 2232 2896 176 ) ( 2248 2896 176 ) ( 2248 3216 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2248 2896 192 ) ( 2232 2896 192 ) ( 2232 3216 288 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 2248 3144 288 ) ( 2248 3216 288 ) ( 2248 3216 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2248 3216 288 ) ( 2232 3216 288 ) ( 2232 3216 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2232 3216 288 ) ( 2232 3144 288 ) ( 2232 3144 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2248 3216 192 ) ( 2232 3216 192 ) ( 2248 2896 288 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2014 +{ +( 2424 2896 176 ) ( 2440 2896 176 ) ( 2440 3216 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2440 2896 192 ) ( 2424 2896 192 ) ( 2424 3216 288 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 2440 3144 288 ) ( 2440 3216 288 ) ( 2440 3216 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2440 3216 288 ) ( 2424 3216 288 ) ( 2424 3216 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2424 3216 288 ) ( 2424 3144 288 ) ( 2424 3144 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2440 3216 192 ) ( 2424 3216 192 ) ( 2440 2896 288 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2015 +{ +( 2424 2896 176 ) ( 2440 2896 176 ) ( 2440 3216 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2440 2896 192 ) ( 2424 2896 192 ) ( 2424 3216 288 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 2424 2896 192 ) ( 2440 2896 192 ) ( 2440 2896 176 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2440 3144 288 ) ( 2440 3216 288 ) ( 2440 3216 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2424 3216 288 ) ( 2424 3144 288 ) ( 2424 3144 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2424 3216 176 ) ( 2440 3216 176 ) ( 2424 2896 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2016 +{ +( 2440 3216 176 ) ( 2424 3216 176 ) ( 2424 2896 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2424 3216 192 ) ( 2440 3216 192 ) ( 2440 2896 288 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 2440 3216 192 ) ( 2424 3216 192 ) ( 2424 3216 176 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2424 2968 288 ) ( 2424 2896 288 ) ( 2424 2896 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2424 2896 288 ) ( 2440 2896 288 ) ( 2440 2896 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2440 2896 288 ) ( 2440 2968 288 ) ( 2440 2968 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2017 +{ +( 2440 2864 176 ) ( 2424 2864 176 ) ( 2424 2544 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2424 2864 192 ) ( 2440 2864 192 ) ( 2440 2544 288 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 2440 2864 192 ) ( 2424 2864 192 ) ( 2424 2864 176 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2424 2616 288 ) ( 2424 2544 288 ) ( 2424 2544 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2424 2544 288 ) ( 2440 2544 288 ) ( 2440 2544 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2440 2544 288 ) ( 2440 2616 288 ) ( 2440 2616 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2018 +{ +( 2424 2544 176 ) ( 2440 2544 176 ) ( 2440 2864 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2440 2544 192 ) ( 2424 2544 192 ) ( 2424 2864 288 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 2424 2544 192 ) ( 2440 2544 192 ) ( 2440 2544 176 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2440 2792 288 ) ( 2440 2864 288 ) ( 2440 2864 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2424 2864 288 ) ( 2424 2792 288 ) ( 2424 2792 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2424 2864 176 ) ( 2440 2864 176 ) ( 2424 2544 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2019 +{ +( 2424 2544 176 ) ( 2440 2544 176 ) ( 2440 2864 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2440 2544 192 ) ( 2424 2544 192 ) ( 2424 2864 288 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 2440 2792 288 ) ( 2440 2864 288 ) ( 2440 2864 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2440 2864 288 ) ( 2424 2864 288 ) ( 2424 2864 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2424 2864 288 ) ( 2424 2792 288 ) ( 2424 2792 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2440 2864 192 ) ( 2424 2864 192 ) ( 2440 2544 288 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2020 +{ +( 2232 2544 176 ) ( 2248 2544 176 ) ( 2248 2864 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2248 2544 192 ) ( 2232 2544 192 ) ( 2232 2864 288 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 2248 2792 288 ) ( 2248 2864 288 ) ( 2248 2864 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2248 2864 288 ) ( 2232 2864 288 ) ( 2232 2864 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2232 2864 288 ) ( 2232 2792 288 ) ( 2232 2792 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2248 2864 192 ) ( 2232 2864 192 ) ( 2248 2544 288 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2021 +{ +( 2232 2544 176 ) ( 2248 2544 176 ) ( 2248 2864 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2248 2544 192 ) ( 2232 2544 192 ) ( 2232 2864 288 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 2232 2544 192 ) ( 2248 2544 192 ) ( 2248 2544 176 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2248 2792 288 ) ( 2248 2864 288 ) ( 2248 2864 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2232 2864 288 ) ( 2232 2792 288 ) ( 2232 2792 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2232 2864 176 ) ( 2248 2864 176 ) ( 2232 2544 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2022 +{ +( 2248 2864 176 ) ( 2232 2864 176 ) ( 2232 2544 272 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2232 2864 192 ) ( 2248 2864 192 ) ( 2248 2544 288 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 2248 2864 192 ) ( 2232 2864 192 ) ( 2232 2864 176 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2232 2616 288 ) ( 2232 2544 288 ) ( 2232 2544 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2232 2544 288 ) ( 2248 2544 288 ) ( 2248 2544 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( 2248 2544 288 ) ( 2248 2616 288 ) ( 2248 2616 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2023 +{ +( 2464 2912 0 ) ( 2400 2912 0 ) ( 2400 2848 0 ) bricks/c_sr_m3a -80 32 0 1 1 0 0 0 +( 2408 2904 64 ) ( 2456 2904 64 ) ( 2456 2856 64 ) bricks/c_sr_m3a 0 -32 0 1 1 0 0 0 +( 2408 2856 64 ) ( 2456 2856 64 ) ( 2464 2848 0 ) bricks/c_sr_m3a -64 -64 0 1 1 0 0 0 +( 2456 2848 64 ) ( 2456 2912 64 ) ( 2464 2912 0 ) bricks/c_sr_m3a 40 -64 0 1 1 0 0 0 +( 2456 2904 64 ) ( 2408 2904 64 ) ( 2400 2912 0 ) bricks/c_sr_m3a -8 -64 0 1 1 0 0 0 +( 2408 2912 64 ) ( 2408 2848 64 ) ( 2400 2848 0 ) bricks/c_sr_m3a 0 -64 0 1 1 0 0 0 +} +// brush 2024 +{ +( 2272 2912 0 ) ( 2208 2912 0 ) ( 2208 2848 0 ) bricks/c_sr_m3a -80 32 0 1 1 0 0 0 +( 2264 2904 64 ) ( 2264 2856 64 ) ( 2216 2856 64 ) bricks/c_sr_m3a 0 -24 0 1 1 0 0 0 +( 2208 2856 64 ) ( 2272 2856 64 ) ( 2272 2848 0 ) bricks/c_sr_m3a 0 -64 0 1 1 0 0 0 +( 2264 2856 64 ) ( 2264 2904 64 ) ( 2272 2912 0 ) bricks/c_sr_m3a 168 -64 0 1 1 0 0 0 +( 2272 2904 64 ) ( 2208 2904 64 ) ( 2208 2912 0 ) bricks/c_sr_m3a 0 -64 0 1 1 0 0 0 +( 2216 2904 64 ) ( 2216 2856 64 ) ( 2208 2848 0 ) bricks/c_sr_m3a -72 -64 0 1 1 0 0 0 +} +// brush 2025 +{ +( 2448 2888 64 ) ( 2416 2888 64 ) ( 2416 2864 64 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2416 2864 288 ) ( 2416 2888 288 ) ( 2448 2888 288 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2416 2864 128 ) ( 2448 2864 128 ) ( 2448 2864 64 ) metals/mt_sr_mn6 16 0 0 -1 1 0 8388608 0 +( 2448 2864 160 ) ( 2448 2888 160 ) ( 2448 2888 96 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2448 2896 128 ) ( 2416 2896 128 ) ( 2416 2896 64 ) metals/mt_sr_mn6 16 0 0 -1 1 0 8388608 0 +( 2416 2888 128 ) ( 2416 2864 128 ) ( 2416 2864 64 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +} +// brush 2026 +{ +( 2256 2888 64 ) ( 2224 2888 64 ) ( 2224 2864 64 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2224 2864 288 ) ( 2224 2888 288 ) ( 2256 2888 288 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2224 2864 128 ) ( 2256 2864 128 ) ( 2256 2864 64 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2256 2864 160 ) ( 2256 2888 160 ) ( 2256 2888 96 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2256 2896 128 ) ( 2224 2896 128 ) ( 2224 2896 64 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2224 2888 128 ) ( 2224 2864 128 ) ( 2224 2864 64 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +} +// brush 2027 +{ +( 2624 3088 576 ) ( 2048 3088 576 ) ( 2048 2376 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 2048 2376 592 ) ( 2048 3088 592 ) ( 2624 3088 592 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 2048 2048 592 ) ( 2624 2048 592 ) ( 2624 2048 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 2944 2376 592 ) ( 2944 3088 592 ) ( 2944 3088 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 2624 3088 592 ) ( 2048 3088 592 ) ( 2048 3088 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 2048 3088 592 ) ( 2048 2376 592 ) ( 2048 2376 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +} +// brush 2028 +{ +( 2104 3392 576 ) ( 1920 3392 576 ) ( 1920 3088 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 1920 3088 592 ) ( 1920 3392 592 ) ( 2104 3392 592 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 1920 3088 592 ) ( 2104 3088 592 ) ( 2104 3088 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 2944 3136 592 ) ( 2944 3440 592 ) ( 2944 3440 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 2112 3968 592 ) ( 1928 3968 592 ) ( 1928 3968 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 1920 3392 592 ) ( 1920 3088 592 ) ( 1920 3088 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +} +// brush 2029 +{ +( 1920 3560 320 ) ( 1896 3560 320 ) ( 1896 3096 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1896 3096 576 ) ( 1896 3560 576 ) ( 1920 3560 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1896 3088 576 ) ( 1920 3088 576 ) ( 1920 3088 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1920 3096 576 ) ( 1920 3560 576 ) ( 1920 3560 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1928 3968 576 ) ( 1904 3968 576 ) ( 1904 3968 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1904 3552 576 ) ( 1904 3088 576 ) ( 1904 3088 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2030 +{ +( 2512 2608 -16 ) ( 2048 2608 -16 ) ( 2048 2176 -16 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2048 2176 224 ) ( 2048 2608 224 ) ( 2512 2608 224 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2056 2048 0 ) ( 2520 2048 0 ) ( 2520 2048 -16 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2592 2176 0 ) ( 2592 2608 0 ) ( 2592 2608 -16 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2048 2608 0 ) ( 2048 2176 0 ) ( 2048 2176 -16 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2728 2416 -16 ) ( 2752 2416 -16 ) ( 2740 2416 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2031 +{ +( 2512 2608 -16 ) ( 2048 2608 -16 ) ( 2048 2176 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2048 2176 0 ) ( 2048 2608 0 ) ( 2512 2608 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2592 2192 0 ) ( 2592 2624 0 ) ( 2592 2624 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2512 2608 0 ) ( 2048 2608 0 ) ( 2048 2608 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2048 2608 0 ) ( 2048 2176 0 ) ( 2048 2176 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 2752 2416 -16 ) ( 2728 2416 -16 ) ( 2740 2416 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2032 +{ +( 2944 3456 -16 ) ( 2752 3456 -16 ) ( 2752 3088 -16 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2752 3088 224 ) ( 2752 3456 224 ) ( 2944 3456 224 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2728 2048 0 ) ( 2920 2048 0 ) ( 2920 2048 -16 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2944 3088 0 ) ( 2944 3456 0 ) ( 2944 3456 -16 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2944 3472 0 ) ( 2752 3472 0 ) ( 2752 3472 -16 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2592 3440 0 ) ( 2592 3072 0 ) ( 2592 3072 -16 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2033 +{ +( 2888 3968 -16 ) ( 2112 3968 -16 ) ( 2112 3456 -16 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2112 3456 224 ) ( 2112 3968 224 ) ( 2888 3968 224 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2112 3472 0 ) ( 2888 3472 0 ) ( 2888 3472 -16 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2944 3456 0 ) ( 2944 3968 0 ) ( 2944 3968 -16 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2888 3968 0 ) ( 2112 3968 0 ) ( 2112 3968 -16 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2112 3968 0 ) ( 2112 3456 0 ) ( 2112 3456 -16 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2034 +{ +( 2960 3984 0 ) ( 2424 3984 0 ) ( 2424 3968 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2424 3968 576 ) ( 2424 3984 576 ) ( 2960 3984 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2424 3968 576 ) ( 2960 3968 576 ) ( 2960 3968 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2960 3968 576 ) ( 2960 3984 576 ) ( 2960 3984 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2960 3984 576 ) ( 2424 3984 576 ) ( 2424 3984 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1904 3984 576 ) ( 1904 3968 576 ) ( 1904 3968 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2035 +{ +( 2960 2520 0 ) ( 2944 2520 0 ) ( 2944 2032 0 ) common/li_sr_v17 8 0 0 1 1 0 132 0 +( 2944 2032 576 ) ( 2944 2520 576 ) ( 2960 2520 576 ) common/li_sr_v17 8 0 0 1 1 0 132 0 +( 2944 2032 576 ) ( 2960 2032 576 ) ( 2960 2032 0 ) common/li_sr_v17 8 0 0 1 1 0 132 0 +( 2960 2032 576 ) ( 2960 2520 576 ) ( 2960 2520 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2968 3968 576 ) ( 2952 3968 576 ) ( 2952 3968 0 ) common/li_sr_v17 8 0 0 1 1 0 132 0 +( 2944 3344 576 ) ( 2944 2856 576 ) ( 2944 2856 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2036 +{ +( 2760 2048 0 ) ( 2032 2048 0 ) ( 2032 2032 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2032 2032 576 ) ( 2032 2048 576 ) ( 2760 2048 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2032 2032 576 ) ( 2760 2032 576 ) ( 2760 2032 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2944 2032 576 ) ( 2944 2048 576 ) ( 2944 2048 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2760 2048 576 ) ( 2032 2048 576 ) ( 2032 2048 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2032 2048 576 ) ( 2032 2032 576 ) ( 2032 2032 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2037 +{ +( 2048 2592 512 ) ( 2032 2592 512 ) ( 2032 2048 512 ) common/li_sr_v17 -8 0 0 1 1 0 132 0 +( 2032 2048 576 ) ( 2032 2592 576 ) ( 2048 2592 576 ) common/li_sr_v17 -8 0 0 1 1 0 132 0 +( 2032 2048 576 ) ( 2048 2048 576 ) ( 2048 2048 512 ) common/li_sr_v17 -8 0 0 1 1 0 132 0 +( 2048 2048 576 ) ( 2048 2592 576 ) ( 2048 2592 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2048 2592 576 ) ( 2032 2592 576 ) ( 2032 2592 512 ) common/li_sr_v17 -8 0 0 1 1 0 132 0 +( 2032 2592 576 ) ( 2032 2048 576 ) ( 2032 2048 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2038 +{ +( 2736 3456 224 ) ( 2552 3456 224 ) ( 2552 3440 224 ) bricks/c_pv_m2 0 16 0 1 1 0 0 0 +( 2552 3440 256 ) ( 2552 3456 256 ) ( 2736 3456 256 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2232 3440 256 ) ( 2416 3440 256 ) ( 2416 3440 224 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( 2560 3440 256 ) ( 2560 3456 256 ) ( 2560 3456 224 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( 2560 3456 256 ) ( 2376 3456 256 ) ( 2376 3456 224 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2112 3440 256 ) ( 2112 3424 256 ) ( 2112 3424 224 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +} +// brush 2039 +{ +( 2576 3456 224 ) ( 2560 3456 224 ) ( 2560 2416 224 ) bricks/c_pv_m2 0 48 90 1 1 0 0 0 +( 2560 2416 256 ) ( 2560 3456 256 ) ( 2576 3456 256 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2560 2448 256 ) ( 2576 2448 256 ) ( 2576 2448 224 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( 2576 2448 256 ) ( 2576 3488 256 ) ( 2576 3488 224 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2576 3456 256 ) ( 2560 3456 256 ) ( 2560 3456 224 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2560 3456 256 ) ( 2560 2416 256 ) ( 2560 2416 224 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +} +// brush 2040 +{ +( 2592 3456 64 ) ( 2576 3456 64 ) ( 2576 2416 64 ) bricks/b_mf_v2 48 0 0 1 1 0 0 0 +( 2576 2416 224 ) ( 2576 3456 224 ) ( 2592 3456 224 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2576 2416 224 ) ( 2592 2416 224 ) ( 2592 2416 64 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2592 2416 224 ) ( 2592 3456 224 ) ( 2592 3456 64 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2592 3456 224 ) ( 2576 3456 224 ) ( 2576 3456 64 ) bricks/b_mf_v2 48 0 0 1 1 0 0 0 +( 2576 3456 224 ) ( 2576 2416 224 ) ( 2576 2416 64 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2041 +{ +( 2592 2544 0 ) ( 2576 2544 0 ) ( 2576 2416 0 ) bricks/c_pv_m2 56 0 0 1 1 0 0 0 +( 2576 2416 64 ) ( 2576 2544 64 ) ( 2592 2544 64 ) bricks/c_pv_m2 56 0 0 1 1 0 0 0 +( 2576 2416 64 ) ( 2592 2416 64 ) ( 2592 2416 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2592 2416 64 ) ( 2592 2544 64 ) ( 2592 2544 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2584 3456 64 ) ( 2568 3456 64 ) ( 2568 3456 0 ) bricks/c_pv_m2 56 0 0 1 1 0 0 0 +( 2576 2544 64 ) ( 2576 2416 64 ) ( 2576 2416 0 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +} +// brush 2042 +{ +( 2336 2432 64 ) ( 2048 2432 64 ) ( 2048 2416 64 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1872 2416 192 ) ( 2160 2416 192 ) ( 2160 2416 64 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2576 2400 192 ) ( 2576 2416 192 ) ( 2576 2416 64 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2336 2432 192 ) ( 2048 2432 192 ) ( 2048 2432 64 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2048 2432 192 ) ( 2048 2416 192 ) ( 2048 2416 64 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2072 2416 224 ) ( 2048 2416 224 ) ( 2060 2432 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2043 +{ +( 2048 2416 256 ) ( 2048 2432 256 ) ( 2336 2432 256 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2048 2416 192 ) ( 2336 2416 192 ) ( 2336 2416 64 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2576 2400 192 ) ( 2576 2416 192 ) ( 2576 2416 64 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2336 2448 192 ) ( 2048 2448 192 ) ( 2048 2448 64 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( 2048 2432 192 ) ( 2048 2416 192 ) ( 2048 2416 64 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2048 2416 224 ) ( 2072 2416 224 ) ( 2060 2432 224 ) bricks/c_pv_m2 0 16 0 1 1 0 0 0 +} +// brush 2044 +{ +( 2336 2432 0 ) ( 2048 2432 0 ) ( 2048 2416 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2048 2416 64 ) ( 2048 2432 64 ) ( 2336 2432 64 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1872 2416 128 ) ( 2160 2416 128 ) ( 2160 2416 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2576 2400 128 ) ( 2576 2416 128 ) ( 2576 2416 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2336 2432 128 ) ( 2048 2432 128 ) ( 2048 2432 0 ) bricks/c_pv_m2 0 -1 0 1 1 0 0 0 +( 2048 2432 128 ) ( 2048 2416 128 ) ( 2048 2416 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2045 +{ +( 2048 2592 448 ) ( 2032 2592 448 ) ( 2032 2368 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 2032 2368 512 ) ( 2032 2592 512 ) ( 2048 2592 512 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 2032 2048 512 ) ( 2048 2048 512 ) ( 2048 2048 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 2048 2048 512 ) ( 2048 2272 512 ) ( 2048 2272 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 2048 2592 512 ) ( 2032 2592 512 ) ( 2032 2592 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 2032 2592 512 ) ( 2032 2368 512 ) ( 2032 2368 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 2046 +{ +( 2048 2592 288 ) ( 2032 2592 288 ) ( 2032 2368 288 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2032 2368 448 ) ( 2032 2592 448 ) ( 2048 2592 448 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2032 2048 448 ) ( 2048 2048 448 ) ( 2048 2048 288 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2048 2048 448 ) ( 2048 2272 448 ) ( 2048 2272 288 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2048 2592 448 ) ( 2032 2592 448 ) ( 2032 2592 288 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2032 2592 448 ) ( 2032 2368 448 ) ( 2032 2368 288 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2047 +{ +( 2064 2624 256 ) ( 2048 2624 256 ) ( 2048 2368 256 ) bricks/c_pv_m2 0 0 90 1 1 0 0 0 +( 2048 2368 288 ) ( 2048 2624 288 ) ( 2064 2624 288 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2048 2048 288 ) ( 2064 2048 288 ) ( 2064 2048 256 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( 2064 2368 288 ) ( 2064 2624 288 ) ( 2064 2624 256 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( 2064 2624 288 ) ( 2048 2624 288 ) ( 2048 2624 256 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( 2048 2304 288 ) ( 2048 2048 288 ) ( 2048 2048 256 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +} +// brush 2048 +{ +( 2048 2592 128 ) ( 2032 2592 128 ) ( 2032 2368 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2032 2368 256 ) ( 2032 2592 256 ) ( 2048 2592 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2032 2048 256 ) ( 2048 2048 256 ) ( 2048 2048 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2048 2048 256 ) ( 2048 2272 256 ) ( 2048 2272 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2048 2592 256 ) ( 2032 2592 256 ) ( 2032 2592 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2032 2592 256 ) ( 2032 2368 256 ) ( 2032 2368 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2049 +{ +( 2048 2592 0 ) ( 2032 2592 0 ) ( 2032 2368 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2032 2368 128 ) ( 2032 2592 128 ) ( 2048 2592 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2032 2048 128 ) ( 2048 2048 128 ) ( 2048 2048 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2048 2048 128 ) ( 2048 2272 128 ) ( 2048 2272 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2048 2592 128 ) ( 2032 2592 128 ) ( 2032 2592 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 2032 2592 128 ) ( 2032 2368 128 ) ( 2032 2368 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2050 +{ +( 2048 2608 512 ) ( 1712 2608 512 ) ( 1712 2592 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1712 2592 576 ) ( 1712 2608 576 ) ( 2048 2608 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1712 2592 576 ) ( 2048 2592 576 ) ( 2048 2592 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2048 2592 576 ) ( 2048 2608 576 ) ( 2048 2608 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 2048 2608 576 ) ( 1712 2608 576 ) ( 1712 2608 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1712 2608 576 ) ( 1712 2592 576 ) ( 1712 2592 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2051 +{ +( 2048 2608 448 ) ( 1712 2608 448 ) ( 1712 2592 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1712 2592 512 ) ( 1712 2608 512 ) ( 2048 2608 512 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1712 2592 512 ) ( 2048 2592 512 ) ( 2048 2592 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 2048 2592 512 ) ( 2048 2608 512 ) ( 2048 2608 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 2048 2608 512 ) ( 1712 2608 512 ) ( 1712 2608 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1712 2608 512 ) ( 1712 2592 512 ) ( 1712 2592 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 2052 +{ +( 2048 2608 288 ) ( 1712 2608 288 ) ( 1712 2592 288 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1712 2592 448 ) ( 1712 2608 448 ) ( 2048 2608 448 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1712 2592 448 ) ( 2048 2592 448 ) ( 2048 2592 288 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2048 2592 448 ) ( 2048 2608 448 ) ( 2048 2608 288 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 2048 2608 448 ) ( 1712 2608 448 ) ( 1712 2608 288 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1712 2608 448 ) ( 1712 2592 448 ) ( 1712 2592 288 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2053 +{ +( 2048 2624 256 ) ( 1728 2624 256 ) ( 1728 2608 256 ) bricks/c_pv_m2 0 16 0 1 1 0 0 0 +( 1728 2608 288 ) ( 1728 2624 288 ) ( 2048 2624 288 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1728 2608 288 ) ( 2048 2608 288 ) ( 2048 2608 256 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( 2048 2608 288 ) ( 2048 2624 288 ) ( 2048 2624 256 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( 2048 2624 288 ) ( 1728 2624 288 ) ( 1728 2624 256 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( 1728 2624 288 ) ( 1728 2608 288 ) ( 1728 2608 256 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +} +// brush 2054 +{ +( 2256 3240 64 ) ( 2224 3240 64 ) ( 2224 3216 64 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2224 3216 288 ) ( 2224 3240 288 ) ( 2256 3240 288 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2224 3216 128 ) ( 2256 3216 128 ) ( 2256 3216 64 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2256 3216 160 ) ( 2256 3240 160 ) ( 2256 3240 96 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2256 3248 128 ) ( 2224 3248 128 ) ( 2224 3248 64 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2224 3240 128 ) ( 2224 3216 128 ) ( 2224 3216 64 ) metals/mt_sr_mn6 16 0 0 -1 1 0 8388608 0 +} +// brush 2055 +{ +( 2448 3240 64 ) ( 2416 3240 64 ) ( 2416 3216 64 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2416 3216 288 ) ( 2416 3240 288 ) ( 2448 3240 288 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2416 3216 128 ) ( 2448 3216 128 ) ( 2448 3216 64 ) metals/mt_sr_mn6 16 0 0 -1 1 0 8388608 0 +( 2448 3216 160 ) ( 2448 3240 160 ) ( 2448 3240 96 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2448 3248 128 ) ( 2416 3248 128 ) ( 2416 3248 64 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2416 3240 128 ) ( 2416 3216 128 ) ( 2416 3216 64 ) metals/mt_sr_mn6 16 0 0 -1 1 0 8388608 0 +} +// brush 2056 +{ +( 2272 3264 0 ) ( 2208 3264 0 ) ( 2208 3200 0 ) bricks/c_sr_m3a -80 0 0 1 1 0 0 0 +( 2216 3208 64 ) ( 2216 3256 64 ) ( 2264 3256 64 ) bricks/c_sr_m3a 0 -56 0 1 1 0 0 0 +( 2208 3208 64 ) ( 2272 3208 64 ) ( 2272 3200 0 ) bricks/c_sr_m3a 0 -64 0 1 1 0 0 0 +( 2264 3208 64 ) ( 2264 3256 64 ) ( 2272 3264 0 ) bricks/c_sr_m3a 88 -64 0 1 1 0 0 0 +( 2272 3256 64 ) ( 2208 3256 64 ) ( 2208 3264 0 ) bricks/c_sr_m3a 0 -64 0 1 1 0 0 0 +( 2216 3256 64 ) ( 2216 3208 64 ) ( 2208 3200 0 ) bricks/c_sr_m3a 88 -64 0 1 1 0 0 0 +} +// brush 2057 +{ +( 2464 3264 0 ) ( 2400 3264 0 ) ( 2400 3200 0 ) bricks/c_sr_m3a -80 0 0 1 1 0 0 0 +( 2408 3256 64 ) ( 2456 3256 64 ) ( 2456 3208 64 ) bricks/c_sr_m3a 0 -64 0 1 1 0 0 0 +( 2408 3208 64 ) ( 2456 3208 64 ) ( 2464 3200 0 ) bricks/c_sr_m3a -64 -64 0 1 1 0 0 0 +( 2456 3200 64 ) ( 2456 3264 64 ) ( 2464 3264 0 ) bricks/c_sr_m3a 72 -64 0 1 1 0 0 0 +( 2456 3256 64 ) ( 2408 3256 64 ) ( 2400 3264 0 ) bricks/c_sr_m3a -8 -64 0 1 1 0 0 0 +( 2408 3264 64 ) ( 2408 3200 64 ) ( 2400 3200 0 ) bricks/c_sr_m3a 32 -64 0 1 1 0 0 0 +} +// brush 2058 +{ +( 2256 2536 64 ) ( 2224 2536 64 ) ( 2224 2512 64 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2224 2512 288 ) ( 2224 2536 288 ) ( 2256 2536 288 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2224 2512 128 ) ( 2256 2512 128 ) ( 2256 2512 64 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2256 2512 160 ) ( 2256 2536 160 ) ( 2256 2536 96 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2256 2544 128 ) ( 2224 2544 128 ) ( 2224 2544 64 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2224 2536 128 ) ( 2224 2512 128 ) ( 2224 2512 64 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +} +// brush 2059 +{ +( 2448 2536 64 ) ( 2416 2536 64 ) ( 2416 2512 64 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2416 2512 288 ) ( 2416 2536 288 ) ( 2448 2536 288 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2416 2512 128 ) ( 2448 2512 128 ) ( 2448 2512 64 ) metals/mt_sr_mn6 16 0 0 -1 1 0 8388608 0 +( 2448 2512 160 ) ( 2448 2536 160 ) ( 2448 2536 96 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +( 2448 2544 128 ) ( 2416 2544 128 ) ( 2416 2544 64 ) metals/mt_sr_mn6 16 0 0 -1 1 0 8388608 0 +( 2416 2536 128 ) ( 2416 2512 128 ) ( 2416 2512 64 ) metals/mt_sr_mn6 16 0 0 1 1 0 8388608 0 +} +// brush 2060 +{ +( 2272 2560 0 ) ( 2208 2560 0 ) ( 2208 2496 0 ) bricks/c_sr_m3a -80 -64 0 1 1 0 0 0 +( 2264 2504 64 ) ( 2216 2504 64 ) ( 2216 2552 64 ) bricks/c_sr_m3a 0 -120 0 1 1 0 0 0 +( 2216 2504 64 ) ( 2264 2504 64 ) ( 2272 2496 0 ) bricks/c_sr_m3a 0 -64 0 1 1 0 0 0 +( 2264 2496 64 ) ( 2264 2560 64 ) ( 2272 2560 0 ) bricks/c_sr_m3a 24 -64 0 1 1 0 0 0 +( 2264 2552 64 ) ( 2216 2552 64 ) ( 2208 2560 0 ) bricks/c_sr_m3a 0 -64 0 1 1 0 0 0 +( 2216 2560 64 ) ( 2216 2496 64 ) ( 2208 2496 0 ) bricks/c_sr_m3a 24 -64 0 1 1 0 0 0 +} +// brush 2061 +{ +( 2464 2560 0 ) ( 2400 2560 0 ) ( 2400 2496 0 ) bricks/c_sr_m3a -80 -64 0 1 1 0 0 0 +( 2408 2504 64 ) ( 2408 2552 64 ) ( 2456 2552 64 ) bricks/c_sr_m3a 0 0 0 1 1 0 0 0 +( 2400 2504 64 ) ( 2464 2504 64 ) ( 2464 2496 0 ) bricks/c_sr_m3a -64 -64 0 1 1 0 0 0 +( 2456 2504 64 ) ( 2456 2552 64 ) ( 2464 2560 0 ) bricks/c_sr_m3a 8 -64 0 1 1 0 0 0 +( 2464 2552 64 ) ( 2400 2552 64 ) ( 2400 2560 0 ) bricks/c_sr_m3a -8 -64 0 1 1 0 0 0 +( 2408 2552 64 ) ( 2408 2504 64 ) ( 2400 2496 0 ) bricks/c_sr_m3a 96 -64 0 1 1 0 0 0 +} +// brush 2062 +{ +( 2368 3456 344 ) ( 2304 3456 344 ) ( 2304 3248 344 ) sprites/rail_sr_m1 0 0 0 1 1 128 8392704 0 +( 2304 3248 360 ) ( 2304 3456 360 ) ( 2368 3456 360 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2304 2048 384 ) ( 2368 2048 384 ) ( 2368 2048 320 ) sprites/rail_sr_m1 0 0 0 1 1 128 4096 0 +( 2376 3440 384 ) ( 2376 3648 384 ) ( 2376 3648 320 ) sprites/rail_sr_m1 0 0 0 1 1 128 4096 0 +( 2376 3968 384 ) ( 2312 3968 384 ) ( 2312 3968 320 ) sprites/rail_sr_m1 0 0 0 1 1 128 4096 0 +( 2312 3648 384 ) ( 2312 3440 384 ) ( 2312 3440 320 ) sprites/rail_sr_m1 0 0 0 1 1 128 4096 0 +} +// brush 2063 +{ +( 2112 3712 256 ) ( 2096 3712 256 ) ( 2096 3088 256 ) bricks/b_sr_23 8 0 -180 1 -1 0 0 0 +( 2096 3712 320 ) ( 2112 3712 320 ) ( 2112 3088 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2088 3088 320 ) ( 2112 3088 320 ) ( 2112 3088 256 ) bricks/b_sr_23 8 0 -180 1 -1 0 0 0 +( 2112 3712 320 ) ( 2112 3712 256 ) ( 2112 3088 256 ) bricks/b_sr_23 62 0 -180 1 -1 0 0 0 +( 2104 3968 320 ) ( 2080 3968 320 ) ( 2080 3968 256 ) bricks/b_sr_23 8 0 -180 1 -1 0 0 0 +( 1920 3704 256 ) ( 1920 3704 320 ) ( 1920 3080 320 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +} +// brush 2064 +{ +( 2112 3712 128 ) ( 2096 3712 128 ) ( 2096 3088 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 2096 3712 256 ) ( 2112 3712 256 ) ( 2112 3088 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 2096 3088 256 ) ( 2112 3088 256 ) ( 2112 3088 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 2112 3712 256 ) ( 2112 3712 128 ) ( 2112 3088 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 2104 3968 256 ) ( 2088 3968 256 ) ( 2088 3968 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 2096 3712 128 ) ( 2096 3712 256 ) ( 2096 3088 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 2065 +{ +( 2368 2944 320 ) ( 2176 2944 320 ) ( 2176 2624 320 ) metals/mt_sr_mn7 0 0 90 1 1 0 8388608 0 +( 2176 2624 384 ) ( 2176 2944 384 ) ( 2368 2944 384 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2168 2048 448 ) ( 2360 2048 448 ) ( 2360 2048 288 ) metals/mt_sr_mn7 0 0 90 1 1 0 0 0 +( 2384 3968 448 ) ( 2192 3968 448 ) ( 2192 3968 288 ) metals/mt_sr_mn7 0 0 90 1 1 0 0 0 +( 2176 3432 320 ) ( 2176 3456 320 ) ( 2176 3444 384 ) metals/mt_sr_mn7 0 14 180 1 1 0 8388608 0 +( 2312 3648 320 ) ( 2312 3616 320 ) ( 2312 3632 384 ) metals/mt_sr_mn7 0 14 180 1 1 0 8388608 0 +} +// brush 2066 +{ +( 2304 2944 320 ) ( 2112 2944 320 ) ( 2112 2624 320 ) metals/mt_sr_mn7 0 64 90 1 1 0 8388608 0 +( 2112 2624 384 ) ( 2112 2944 384 ) ( 2304 2944 384 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 2104 2048 448 ) ( 2296 2048 448 ) ( 2296 2048 288 ) metals/mt_sr_mn7 0 0 90 1 1 0 0 0 +( 2504 2816 448 ) ( 2504 3136 448 ) ( 2504 3136 288 ) metals/mt_sr_mn7 0 14 180 1 1 0 8388608 0 +( 2320 3968 448 ) ( 2128 3968 448 ) ( 2128 3968 288 ) metals/mt_sr_mn7 0 0 90 1 1 0 0 0 +( 2376 3584 320 ) ( 2376 3640 320 ) ( 2376 3612 384 ) metals/mt_sr_mn7 0 14 180 1 1 0 8388608 0 +} +// brush 2067 +{ +( 272 2240 448 ) ( 256 2240 448 ) ( 256 2064 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 256 2064 512 ) ( 256 2240 512 ) ( 272 2240 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 256 2064 512 ) ( 272 2064 512 ) ( 272 2064 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 272 2064 512 ) ( 272 2240 512 ) ( 272 2240 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 272 2240 512 ) ( 256 2240 512 ) ( 256 2240 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -64 2248 512 ) ( -64 2072 512 ) ( -64 2072 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2068 +{ +( 256 2240 256 ) ( -64 2240 256 ) ( -64 2064 256 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -64 2064 320 ) ( -64 2240 320 ) ( 256 2240 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -64 2048 320 ) ( 256 2048 320 ) ( 256 2048 256 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 112 2064 320 ) ( 112 2240 320 ) ( 112 2240 256 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 256 2240 320 ) ( -64 2240 320 ) ( -64 2240 256 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -64 2240 320 ) ( -64 2064 320 ) ( -64 2064 256 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2069 +{ +( 272 2256 320 ) ( -80 2256 320 ) ( -80 2240 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -80 2240 512 ) ( -80 2256 512 ) ( 272 2256 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -80 2240 512 ) ( 272 2240 512 ) ( 272 2240 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 272 2240 512 ) ( 272 2256 512 ) ( 272 2256 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 272 2256 512 ) ( -80 2256 512 ) ( -80 2256 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -80 2256 512 ) ( -80 2240 512 ) ( -80 2240 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2070 +{ +( 136 2240 384 ) ( 112 2240 384 ) ( 112 2064 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 112 2064 448 ) ( 112 2240 448 ) ( 136 2240 448 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 112 2064 448 ) ( 136 2064 448 ) ( 136 2064 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 128 2064 448 ) ( 128 2240 448 ) ( 128 2240 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 136 2240 448 ) ( 112 2240 448 ) ( 112 2240 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 112 2240 448 ) ( 112 2064 448 ) ( 112 2064 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +} +// brush 2071 +{ +( 128 2240 256 ) ( 112 2240 256 ) ( 112 2064 256 ) bricks/b_mf_v2a 16 0 0 1 1 0 0 0 +( 112 2064 384 ) ( 112 2240 384 ) ( 128 2240 384 ) bricks/b_mf_v2a 16 0 0 1 1 0 0 0 +( 112 2064 384 ) ( 128 2064 384 ) ( 128 2064 256 ) bricks/b_mf_v2a 16 0 0 1 1 0 0 0 +( 128 2064 384 ) ( 128 2240 384 ) ( 128 2240 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 128 2240 384 ) ( 112 2240 384 ) ( 112 2240 256 ) bricks/b_mf_v2a 16 0 0 1 1 0 0 0 +( 112 2240 384 ) ( 112 2064 384 ) ( 112 2064 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2072 +{ +( 640 2064 448 ) ( 496 2064 448 ) ( 496 2048 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 496 2048 512 ) ( 640 2048 512 ) ( 640 2048 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 384 2048 512 ) ( 384 2064 512 ) ( 384 2064 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 640 2064 512 ) ( 496 2064 512 ) ( 496 2064 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -80 2048 512 ) ( -80 2064 512 ) ( 320 2064 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 256 2064 512 ) ( 256 2048 512 ) ( 256 2064 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2073 +{ +( 496 2048 576 ) ( 496 2064 576 ) ( 640 2064 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 496 2048 512 ) ( 640 2048 512 ) ( 640 2048 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 384 2048 512 ) ( 384 2064 512 ) ( 384 2064 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 640 2064 512 ) ( 496 2064 512 ) ( 496 2064 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -64 2064 544 ) ( -64 2048 544 ) ( -64 2048 480 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -80 2064 512 ) ( -80 2048 512 ) ( 320 2064 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2074 +{ +( -64 1728 320 ) ( -80 1728 320 ) ( -80 1552 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -80 1552 512 ) ( -80 1728 512 ) ( -64 1728 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -80 1552 512 ) ( -64 1552 512 ) ( -64 1552 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -64 1552 512 ) ( -64 1728 512 ) ( -64 1728 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -80 1920 512 ) ( -80 1744 512 ) ( -80 1744 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 320 2240 512 ) ( -80 2240 512 ) ( 320 2240 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2075 +{ +( 320 2064 448 ) ( -80 2064 448 ) ( -80 2048 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -80 2048 512 ) ( -80 2064 512 ) ( 320 2064 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -88 2048 512 ) ( 312 2048 512 ) ( 312 2048 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 256 2048 512 ) ( 256 2064 512 ) ( 256 2064 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 320 2064 512 ) ( -80 2064 512 ) ( -80 2064 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -80 2064 512 ) ( -80 2048 512 ) ( -80 2048 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2076 +{ +( 656 2064 384 ) ( 512 2064 384 ) ( 512 2048 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 512 2048 448 ) ( 512 2064 448 ) ( 656 2064 448 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 512 2048 448 ) ( 656 2048 448 ) ( 656 2048 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 640 2048 448 ) ( 640 2064 448 ) ( 640 2064 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 656 2064 448 ) ( 512 2064 448 ) ( 512 2064 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 112 2056 384 ) ( 112 2072 384 ) ( 112 2064 448 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +} +// brush 2077 +{ +( 656 2064 256 ) ( 512 2064 256 ) ( 512 2048 256 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 512 2048 384 ) ( 512 2064 384 ) ( 656 2064 384 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 512 2048 384 ) ( 656 2048 384 ) ( 656 2048 256 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 640 2048 384 ) ( 640 2064 384 ) ( 640 2064 256 ) bricks/b_mf_v2a 0 1 0 1 1 0 0 0 +( 656 2064 384 ) ( 512 2064 384 ) ( 512 2064 256 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 112 2056 256 ) ( 112 2072 256 ) ( 112 2064 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2078 +{ +( 1664 3016 184 ) ( 1664 3000 184 ) ( 1680 3000 184 ) common/li_sr_v27 8 16 -90 1 1 134217728 1 35000 +( 1680 3000 192 ) ( 1664 3000 192 ) ( 1664 3016 192 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 1680 3000 192 ) ( 1680 3016 192 ) ( 1680 3016 64 ) metals/mt_pv_m26y -9 16 0 1 1 134217728 8388608 0 +( 1680 3016 192 ) ( 1664 3016 192 ) ( 1664 3016 64 ) common/li_sr_v27 0 0 0 1 1 134217728 0 0 +( 1664 3016 192 ) ( 1664 3000 192 ) ( 1664 3000 64 ) metals/mt_pv_m26y 0 16 0 1 1 134217728 0 0 +( 1664 3000 192 ) ( 1680 3000 192 ) ( 1680 3000 64 ) common/li_sr_v27 0 0 0 1 1 134217728 0 0 +} +// brush 2079 +{ +( 1664 3024 184 ) ( 1664 3016 184 ) ( 1680 3016 184 ) metals/mt_pv_m26y -9 16 0 1 1 134217728 8388608 0 +( 1680 3016 192 ) ( 1664 3016 192 ) ( 1664 3024 192 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 1680 3024 192 ) ( 1664 3024 192 ) ( 1664 3024 184 ) metals/mt_pv_m26y -9 16 0 1 1 134217728 8388608 0 +( 1664 3024 192 ) ( 1664 3016 192 ) ( 1664 3016 184 ) metals/mt_pv_m26y -9 16 0 1 1 134217728 8388608 0 +( 1664 3016 192 ) ( 1680 3016 192 ) ( 1680 3016 184 ) metals/mt_pv_m26y -9 16 0 1 1 134217728 8388608 0 +( 1672 3024 184 ) ( 1680 3016 184 ) ( 1676 3020 192 ) metals/mt_pv_m26y -9 16 0 1 1 134217728 8388608 0 +} +// brush 2080 +{ +( 1664 3000 184 ) ( 1664 2992 184 ) ( 1680 2992 184 ) metals/mt_pv_m26y -9 16 0 1 1 134217728 8388608 0 +( 1680 2992 192 ) ( 1664 2992 192 ) ( 1664 3000 192 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 1680 3000 192 ) ( 1664 3000 192 ) ( 1664 3000 184 ) metals/mt_pv_m26y -9 16 0 1 1 134217728 8388608 0 +( 1664 3000 192 ) ( 1664 2992 192 ) ( 1664 2992 184 ) metals/mt_pv_m26y -9 16 0 1 1 134217728 8388608 0 +( 1664 2992 192 ) ( 1680 2992 192 ) ( 1680 2992 184 ) metals/mt_pv_m26y -9 16 0 1 1 134217728 8388608 0 +( 1680 3000 184 ) ( 1672 2992 184 ) ( 1676 2996 192 ) metals/mt_pv_m26y -9 16 0 1 1 134217728 8388608 0 +} +// brush 2081 +{ +( 1936 2944 576 ) ( 1728 2944 576 ) ( 1728 2624 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 1728 2624 592 ) ( 1728 2944 592 ) ( 1936 2944 592 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 1728 2608 592 ) ( 1936 2608 592 ) ( 1936 2608 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 2048 2632 592 ) ( 2048 2952 592 ) ( 2048 2952 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 1936 2944 592 ) ( 1728 2944 592 ) ( 1728 2944 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 1728 2944 592 ) ( 1728 2624 592 ) ( 1728 2624 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +} +// brush 2082 +{ +( 1936 3088 576 ) ( 1600 3088 576 ) ( 1600 2944 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 1600 2944 592 ) ( 1600 3088 592 ) ( 1936 3088 592 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 1600 2944 592 ) ( 1936 2944 592 ) ( 1936 2944 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 2048 2936 592 ) ( 2048 3080 592 ) ( 2048 3080 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 1936 3088 592 ) ( 1600 3088 592 ) ( 1600 3088 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 1600 3088 592 ) ( 1600 2944 592 ) ( 1600 2944 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +} +// brush 2083 +{ +( 1920 2944 -16 ) ( 1744 2944 -16 ) ( 1744 2624 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1744 2624 0 ) ( 1744 2944 0 ) ( 1920 2944 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1744 2608 0 ) ( 1920 2608 0 ) ( 1920 2608 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1824 2616 0 ) ( 1824 2936 0 ) ( 1824 2936 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1920 2944 0 ) ( 1744 2944 0 ) ( 1744 2944 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1728 2944 0 ) ( 1728 2624 0 ) ( 1728 2624 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2084 +{ +( 1728 2928 512 ) ( 1712 2928 512 ) ( 1712 2624 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1712 2624 576 ) ( 1712 2928 576 ) ( 1728 2928 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1712 2608 576 ) ( 1728 2608 576 ) ( 1728 2608 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1728 2624 576 ) ( 1728 2928 576 ) ( 1728 2928 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1728 2928 576 ) ( 1712 2928 576 ) ( 1712 2928 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1712 2928 576 ) ( 1712 2624 576 ) ( 1712 2624 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2085 +{ +( 1728 2928 448 ) ( 1712 2928 448 ) ( 1712 2624 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1712 2624 512 ) ( 1712 2928 512 ) ( 1728 2928 512 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1712 2608 512 ) ( 1728 2608 512 ) ( 1728 2608 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1728 2624 512 ) ( 1728 2928 512 ) ( 1728 2928 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1728 2928 512 ) ( 1712 2928 512 ) ( 1712 2928 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1712 2928 512 ) ( 1712 2624 512 ) ( 1712 2624 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 2086 +{ +( 1728 2928 288 ) ( 1712 2928 288 ) ( 1712 2624 288 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1712 2624 448 ) ( 1712 2928 448 ) ( 1728 2928 448 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1712 2608 448 ) ( 1728 2608 448 ) ( 1728 2608 288 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1728 2608 448 ) ( 1728 2912 448 ) ( 1728 2912 288 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1728 2928 448 ) ( 1712 2928 448 ) ( 1712 2928 288 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1712 2928 448 ) ( 1712 2624 448 ) ( 1712 2624 288 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2087 +{ +( 1744 2928 256 ) ( 1712 2928 256 ) ( 1712 2624 256 ) bricks/c_pv_m2 0 0 90 1 1 0 0 0 +( 1712 2624 288 ) ( 1712 2928 288 ) ( 1744 2928 288 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1712 2624 288 ) ( 1744 2624 288 ) ( 1744 2624 256 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( 1744 2624 288 ) ( 1744 2928 288 ) ( 1744 2928 256 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( 1744 2928 288 ) ( 1712 2928 288 ) ( 1712 2928 256 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( 1712 2928 288 ) ( 1712 2624 288 ) ( 1712 2624 256 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +} +// brush 2088 +{ +( 1728 2928 128 ) ( 1712 2928 128 ) ( 1712 2624 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1712 2624 256 ) ( 1712 2928 256 ) ( 1728 2928 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1712 2608 256 ) ( 1728 2608 256 ) ( 1728 2608 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1728 2624 256 ) ( 1728 2928 256 ) ( 1728 2928 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1728 2928 256 ) ( 1712 2928 256 ) ( 1712 2928 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1712 2928 256 ) ( 1712 2624 256 ) ( 1712 2624 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2089 +{ +( 1856 3072 -16 ) ( 1600 3072 -16 ) ( 1600 2944 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1600 2944 0 ) ( 1600 3072 0 ) ( 1856 3072 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1600 2944 0 ) ( 1856 2944 0 ) ( 1856 2944 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1952 2944 0 ) ( 1952 3072 0 ) ( 1952 3072 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1856 3072 0 ) ( 1600 3072 0 ) ( 1600 3072 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1600 3072 0 ) ( 1600 2944 0 ) ( 1600 2944 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2090 +{ +( 1880 3088 62 ) ( 1600 3088 62 ) ( 1600 3072 62 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1600 3072 128 ) ( 1600 3088 128 ) ( 1880 3088 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1600 3072 128 ) ( 1880 3072 128 ) ( 1880 3072 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 2048 3064 128 ) ( 2048 3080 128 ) ( 2048 3080 0 ) bricks/b_sr_20ap 0 0 0 1 1 0 0 0 +( 1880 3088 128 ) ( 1600 3088 128 ) ( 1600 3088 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 1600 3088 128 ) ( 1600 3072 128 ) ( 1600 3072 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2091 +{ +( 1880 3088 256 ) ( 1600 3088 256 ) ( 1600 3072 256 ) bricks/b_sr_20b 0 17 0 1 1 0 0 0 +( 1600 3072 320 ) ( 1600 3088 320 ) ( 1880 3088 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1600 3072 320 ) ( 1880 3072 320 ) ( 1880 3072 256 ) bricks/b_sr_23 68 0 -180 1 -1 0 0 0 +( 2112 3072 320 ) ( 2112 3088 320 ) ( 2112 3088 256 ) bricks/b_sr_23 62 0 -180 1 -1 0 0 0 +( 1880 3088 320 ) ( 1600 3088 320 ) ( 1600 3088 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 1600 3088 320 ) ( 1600 3072 320 ) ( 1600 3072 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +} +// brush 2092 +{ +( 320 1784 184 ) ( 320 1800 184 ) ( 304 1800 184 ) common/li_sr_v27 8 0 90 1 1 134217728 1 45000 +( 304 1800 192 ) ( 320 1800 192 ) ( 320 1784 192 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 304 1800 192 ) ( 304 1784 192 ) ( 304 1784 64 ) metals/mt_pv_m26y 0 16 0 1 1 134217728 0 0 +( 304 1784 192 ) ( 320 1784 192 ) ( 320 1784 64 ) common/li_sr_v27 0 0 -180 1 -1 134217728 0 0 +( 320 1784 192 ) ( 320 1800 192 ) ( 320 1800 64 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 134217728 0 0 +( 320 1800 192 ) ( 304 1800 192 ) ( 304 1800 64 ) common/li_sr_v27 0 0 -180 1 -1 134217728 0 0 +} +// brush 2093 +{ +( 320 1776 184 ) ( 320 1784 184 ) ( 304 1784 184 ) metals/mt_pv_m26y 0 0 90 1 1 134217728 0 0 +( 304 1784 192 ) ( 320 1784 192 ) ( 320 1776 192 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 304 1776 192 ) ( 320 1776 192 ) ( 320 1776 184 ) metals/mt_pv_m26y 0 15 -180 1 -1 134217728 0 0 +( 320 1776 192 ) ( 320 1784 192 ) ( 320 1784 184 ) metals/mt_pv_m26y 0 16 0 1 1 134217728 0 0 +( 320 1784 192 ) ( 304 1784 192 ) ( 304 1784 184 ) metals/mt_pv_m26y 0 15 -180 1 -1 134217728 0 0 +( 312 1776 184 ) ( 304 1784 184 ) ( 308 1780 192 ) metals/mt_pv_m26y -25 15 -180 0.750000 -1 134217728 0 0 +} +// brush 2094 +{ +( 320 1800 184 ) ( 320 1808 184 ) ( 304 1808 184 ) metals/mt_pv_m26y 0 0 90 1 1 134217728 0 0 +( 304 1808 192 ) ( 320 1808 192 ) ( 320 1800 192 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 304 1800 192 ) ( 320 1800 192 ) ( 320 1800 184 ) metals/mt_pv_m26y 0 15 -180 1 -1 134217728 0 0 +( 320 1800 192 ) ( 320 1808 192 ) ( 320 1808 184 ) metals/mt_pv_m26y 0 16 0 1 1 134217728 0 0 +( 320 1808 192 ) ( 304 1808 192 ) ( 304 1808 184 ) metals/mt_pv_m26y 0 15 -180 1 -1 134217728 0 0 +( 304 1800 184 ) ( 312 1808 184 ) ( 308 1804 192 ) metals/mt_pv_m26y -25 15 -180 0.750000 -1 134217728 0 0 +} +// brush 2095 +{ +( 1344 3016 184 ) ( 1344 3024 184 ) ( 1328 3024 184 ) metals/mt_pv_m26y 0 16 0 0.500000 0.500000 134217728 0 0 +( 1328 3024 192 ) ( 1344 3024 192 ) ( 1344 3016 192 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 1328 3016 192 ) ( 1344 3016 192 ) ( 1344 3016 184 ) metals/mt_pv_m26y 0 16 -180 1 -1 134217728 0 0 +( 1344 3016 192 ) ( 1344 3024 192 ) ( 1344 3024 184 ) metals/mt_pv_m26y 0 16 0 1 1 134217728 0 0 +( 1344 3024 192 ) ( 1328 3024 192 ) ( 1328 3024 184 ) metals/mt_pv_m26y 0 16 0 0.500000 0.500000 134217728 0 0 +( 1328 3016 184 ) ( 1336 3024 184 ) ( 1332 3020 192 ) metals/mt_pv_m26y 0 16 0 0.500000 0.500000 134217728 0 0 +} +// brush 2096 +{ +( 1344 2992 184 ) ( 1344 3000 184 ) ( 1328 3000 184 ) metals/mt_pv_m26y 0 16 0 0.500000 0.500000 134217728 0 0 +( 1328 3000 192 ) ( 1344 3000 192 ) ( 1344 2992 192 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 1328 2992 192 ) ( 1344 2992 192 ) ( 1344 2992 184 ) metals/mt_pv_m26y 0 16 0 0.500000 0.500000 134217728 0 0 +( 1344 2992 192 ) ( 1344 3000 192 ) ( 1344 3000 184 ) metals/mt_pv_m26y 0 16 0 1 1 134217728 0 0 +( 1344 3000 192 ) ( 1328 3000 192 ) ( 1328 3000 184 ) metals/mt_pv_m26y 0 16 -180 1 -1 134217728 0 0 +( 1336 2992 184 ) ( 1328 3000 184 ) ( 1332 2996 192 ) metals/mt_pv_m26y 0 16 0 0.500000 0.500000 134217728 0 0 +} +// brush 2097 +{ +( 1344 3000 184 ) ( 1344 3016 184 ) ( 1328 3016 184 ) common/li_sr_v27 -8 0 90 1 1 134217728 1 35000 +( 1328 3016 192 ) ( 1344 3016 192 ) ( 1344 3000 192 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 1328 3016 192 ) ( 1328 3000 192 ) ( 1328 3000 64 ) metals/mt_pv_m26y 0 16 0 0.500000 0.500000 134217728 0 0 +( 1328 3000 192 ) ( 1344 3000 192 ) ( 1344 3000 64 ) common/li_sr_v27 0 0 -180 1 -1 134217728 0 0 +( 1344 3000 192 ) ( 1344 3016 192 ) ( 1344 3016 64 ) metals/mt_pv_m26y 0 16 0 1 1 134217728 0 0 +( 1344 3016 192 ) ( 1328 3016 192 ) ( 1328 3016 64 ) common/li_sr_v27 0 0 -180 1 -1 134217728 0 0 +} +// brush 2098 +{ +( 1600 3136 256 ) ( 1600 3264 256 ) ( 1600 3264 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1296 3272 256 ) ( 1296 3144 256 ) ( 1296 3144 128 ) props/w_sr_ba7b 64 32 0 1 1 0 1 10000 +( 1280 3072 160 ) ( 1304 3072 160 ) ( 1292 3456 160 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1344 3072 224 ) ( 1280 3072 224 ) ( 1312 3456 224 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1296 3200 160 ) ( 1344 3200 160 ) ( 1320 3200 224 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1328 3136 160 ) ( 1280 3136 160 ) ( 1304 3136 224 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 2099 +{ +( 1352 3072 256 ) ( 1608 3072 256 ) ( 1608 3072 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1600 3136 256 ) ( 1600 3264 256 ) ( 1600 3264 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1280 3272 256 ) ( 1280 3144 256 ) ( 1280 3144 128 ) bricks/b_sr_20b -72 0 0 -1 1 0 0 0 +( 1280 3072 160 ) ( 1304 3072 160 ) ( 1292 3456 160 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1344 3072 224 ) ( 1280 3072 224 ) ( 1312 3456 224 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1280 3136 160 ) ( 1328 3136 160 ) ( 1304 3136 224 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 2100 +{ +( 1472 3072 128 ) ( 1344 3072 128 ) ( 1344 2944 128 ) metals/mt_sr_b1a 0 0 0 1 1 0 8388608 0 +( 1344 2944 256 ) ( 1344 3072 256 ) ( 1472 3072 256 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1344 2944 256 ) ( 1472 2944 256 ) ( 1472 2944 128 ) metals/mt_pv_m26 0 0 0 1 1 0 0 0 +( 1664 2944 256 ) ( 1664 3072 256 ) ( 1664 3072 128 ) metals/mt_pv_m26 256 1 0 1 1 0 8388608 0 +( 1472 3072 256 ) ( 1344 3072 256 ) ( 1344 3072 128 ) metals/mt_pv_m26 0 0 0 1 1 0 0 0 +( 1344 3072 256 ) ( 1344 2944 256 ) ( 1344 2944 128 ) metals/mt_pv_m26 256 1 0 1 1 0 8388608 0 +} +// brush 2101 +{ +( 1600 2944 512 ) ( 1264 2944 512 ) ( 1264 2928 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1264 2928 576 ) ( 1264 2944 576 ) ( 1600 2944 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1264 2928 576 ) ( 1600 2928 576 ) ( 1600 2928 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1728 2928 576 ) ( 1728 2944 576 ) ( 1728 2944 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1728 2944 576 ) ( 1392 2944 576 ) ( 1392 2944 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1264 2944 576 ) ( 1264 2928 576 ) ( 1264 2928 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2102 +{ +( 1600 3456 576 ) ( 1264 3456 576 ) ( 1264 2976 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 1264 2976 592 ) ( 1264 3456 592 ) ( 1600 3456 592 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 1264 2944 592 ) ( 1600 2944 592 ) ( 1600 2944 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 1600 2976 592 ) ( 1600 3456 592 ) ( 1600 3456 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 1600 3456 592 ) ( 1264 3456 592 ) ( 1264 3456 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 1264 3456 592 ) ( 1264 2976 592 ) ( 1264 2976 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +} +// brush 2103 +{ +( 1264 3456 -16 ) ( 632 3456 -16 ) ( 632 3264 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 632 3264 0 ) ( 632 3456 0 ) ( 1264 3456 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 632 3264 0 ) ( 1264 3264 0 ) ( 1264 3264 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1280 3264 0 ) ( 1280 3456 0 ) ( 1280 3456 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 3408 -16 ) ( 696 3408 -16 ) ( 668 3408 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 704 3384 -16 ) ( 704 3408 -16 ) ( 704 3396 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2104 +{ +( 1264 3456 -16 ) ( 632 3456 -16 ) ( 632 3264 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 632 3264 0 ) ( 632 3456 0 ) ( 1264 3456 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 632 3264 0 ) ( 1264 3264 0 ) ( 1264 3264 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 3456 0 ) ( 640 3264 0 ) ( 640 3264 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 3408 -16 ) ( 696 3408 -16 ) ( 668 3408 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 704 3408 -16 ) ( 704 3384 -16 ) ( 704 3396 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2105 +{ +( 1264 3456 -16 ) ( 632 3456 -16 ) ( 632 3264 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 632 3264 0 ) ( 632 3456 0 ) ( 1264 3456 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1280 3264 0 ) ( 1280 3456 0 ) ( 1280 3456 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1264 3456 0 ) ( 632 3456 0 ) ( 632 3456 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 3456 0 ) ( 640 3264 0 ) ( 640 3264 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 696 3408 -16 ) ( 640 3408 -16 ) ( 668 3408 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2106 +{ +( 1280 3264 0 ) ( 704 3264 0 ) ( 704 3248 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 1024 3240 126 ) ( 1024 3244 126 ) ( 1088 3248 128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( 1024 3240 128 ) ( 1088 3244 128 ) ( 1088 3252 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 1088 3252 0 ) ( 1088 3252 128 ) ( 1088 3256 128 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( 1088 3248 128 ) ( 1024 3244 128 ) ( 1024 3252 0 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1024 3244 126 ) ( 1024 3240 126 ) ( 1024 3248 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +} +// brush 2107 +{ +( 896 3264 256 ) ( 640 3264 256 ) ( 640 3248 256 ) bricks/b_mf_v2a 0 0 -180 1 -1 0 0 0 +( 640 3248 384 ) ( 640 3264 384 ) ( 896 3264 384 ) bricks/b_mf_v2a 0 0 -180 1 -1 0 0 0 +( 640 3248 384 ) ( 896 3248 384 ) ( 896 3248 256 ) bricks/b_mf_v2a 0 0 -180 1 -1 0 0 0 +( 896 3440 384 ) ( 896 3456 384 ) ( 896 3456 256 ) bricks/b_mf_v2a 0 0 -180 1 -1 0 0 0 +( 896 3456 384 ) ( 640 3456 384 ) ( 640 3456 256 ) bricks/b_mf_v2a 0 0 -180 1 -1 0 0 0 +( 640 3264 384 ) ( 640 3248 384 ) ( 640 3248 256 ) bricks/b_mf_v2a 0 0 -180 1 -1 0 0 0 +} +// brush 2108 +{ +( 896 3264 128 ) ( 632 3264 128 ) ( 632 3248 128 ) bricks/b_mf_v2 0 0 -180 1 -1 0 0 0 +( 632 3248 256 ) ( 632 3264 256 ) ( 896 3264 256 ) bricks/b_mf_v2 0 0 -180 1 -1 0 0 0 +( 640 3248 256 ) ( 904 3248 256 ) ( 904 3248 128 ) bricks/b_mf_v2 0 0 -180 1 -1 0 0 0 +( 896 3440 256 ) ( 896 3456 256 ) ( 896 3456 128 ) bricks/b_mf_v2 0 0 -180 1 -1 0 0 0 +( 896 3456 256 ) ( 632 3456 256 ) ( 632 3456 128 ) bricks/b_mf_v2 0 0 -180 1 -1 0 0 0 +( 640 3264 256 ) ( 640 3248 256 ) ( 640 3248 128 ) bricks/b_mf_v2 0 0 -180 1 -1 0 0 0 +} +// brush 2109 +{ +( 888 3264 0 ) ( 640 3264 0 ) ( 640 3248 0 ) bricks/c_pv_m2 0 0 -180 1 -1 0 0 0 +( 640 3248 128 ) ( 640 3264 128 ) ( 888 3264 128 ) bricks/c_pv_m2 0 0 -180 1 -1 0 0 0 +( 640 3248 128 ) ( 888 3248 128 ) ( 888 3248 16 ) bricks/c_pv_m2 0 0 -180 1 -1 0 0 0 +( 896 3440 128 ) ( 896 3456 128 ) ( 896 3456 16 ) bricks/c_pv_m2 0 0 -180 1 -1 0 0 0 +( 888 3456 128 ) ( 640 3456 128 ) ( 640 3456 16 ) bricks/c_pv_m2 0 0 -180 1 -1 0 0 0 +( 640 3264 128 ) ( 640 3248 128 ) ( 640 3248 16 ) bricks/c_pv_m2 0 0 -180 1 -1 0 0 0 +} +// brush 2110 +{ +( 1600 3264 256 ) ( 1344 3264 256 ) ( 1344 3136 256 ) bricks/b_sr_23 88 0 -180 1 -1 0 0 0 +( 1344 3136 320 ) ( 1344 3264 320 ) ( 1600 3264 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1352 3072 320 ) ( 1608 3072 320 ) ( 1608 3072 256 ) bricks/b_sr_23 98 0 -180 1 -1 0 0 0 +( 1600 3136 320 ) ( 1600 3264 320 ) ( 1600 3264 256 ) bricks/b_sr_23 88 0 -180 1 -1 0 0 0 +( 1584 3456 320 ) ( 1328 3456 320 ) ( 1328 3456 256 ) bricks/b_sr_23 88 0 -180 1 -1 0 0 0 +( 1280 3272 320 ) ( 1280 3144 320 ) ( 1280 3144 256 ) bricks/b_sr_23 94 0 -180 1 -1 0 0 0 +} +// brush 2111 +{ +( 1600 3136 -16 ) ( 1152 3136 -16 ) ( 1152 2944 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1152 2944 0 ) ( 1152 3136 0 ) ( 1600 3136 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1152 2944 0 ) ( 1600 2944 0 ) ( 1600 2944 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1600 2944 0 ) ( 1600 3136 0 ) ( 1600 3136 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1600 3264 0 ) ( 1152 3264 0 ) ( 1152 3264 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1152 3136 0 ) ( 1152 2944 0 ) ( 1152 2944 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2112 +{ +( 1168 2944 256 ) ( 1088 2944 256 ) ( 1088 2688 256 ) bricks/c_pv_m2 0 0 90 1 1 0 0 0 +( 1080 2432 384 ) ( 1160 2432 384 ) ( 1160 2432 256 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( 1248 2688 384 ) ( 1248 2944 384 ) ( 1248 2944 256 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( 1104 2944 384 ) ( 1104 2688 384 ) ( 1104 2688 256 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( 1128 2432 288 ) ( 1104 2432 288 ) ( 1116 2944 288 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1112 2928 256 ) ( 1248 2928 256 ) ( 1180 2928 288 ) bricks/c_pv_m2 0 0 90 1 1 0 0 0 +} +// brush 2113 +{ +( 1168 2944 256 ) ( 1088 2944 256 ) ( 1088 2688 256 ) bricks/c_pv_m2 0 16 0 1 1 0 0 0 +( 1248 2688 384 ) ( 1248 2944 384 ) ( 1248 2944 256 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( 1168 2960 384 ) ( 1088 2960 384 ) ( 1088 2960 256 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( 1104 2944 384 ) ( 1104 2688 384 ) ( 1104 2688 256 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( 1128 2432 288 ) ( 1104 2432 288 ) ( 1116 2944 288 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1248 2928 256 ) ( 1112 2928 256 ) ( 1180 2928 288 ) bricks/c_pv_m2 0 0 90 1 1 0 0 0 +} +// brush 2114 +{ +( 1600 2944 448 ) ( 1248 2944 448 ) ( 1248 2928 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1248 2928 512 ) ( 1248 2944 512 ) ( 1600 2944 512 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1248 2928 512 ) ( 1600 2928 512 ) ( 1600 2928 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1728 2928 512 ) ( 1728 2944 512 ) ( 1728 2944 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1728 2944 512 ) ( 1376 2944 512 ) ( 1376 2944 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1248 2944 512 ) ( 1248 2928 512 ) ( 1248 2928 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 2115 +{ +( 1600 2944 288 ) ( 1264 2944 288 ) ( 1264 2928 288 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1264 2928 448 ) ( 1264 2944 448 ) ( 1600 2944 448 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1264 2928 448 ) ( 1600 2928 448 ) ( 1600 2928 288 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1728 2928 448 ) ( 1728 2944 448 ) ( 1728 2944 288 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1728 2944 448 ) ( 1392 2944 448 ) ( 1392 2944 288 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1248 2944 448 ) ( 1248 2928 448 ) ( 1248 2928 288 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2116 +{ +( 1600 2944 256 ) ( 1248 2944 256 ) ( 1248 2928 256 ) bricks/c_pv_m2 0 16 0 1 1 0 0 0 +( 1248 2928 288 ) ( 1248 2944 288 ) ( 1600 2944 288 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1248 2928 288 ) ( 1600 2928 288 ) ( 1600 2928 256 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( 1744 2928 288 ) ( 1744 2944 288 ) ( 1744 2944 256 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( 1600 2960 288 ) ( 1248 2960 288 ) ( 1248 2960 256 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( 1248 2944 288 ) ( 1248 2928 288 ) ( 1248 2928 256 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +} +// brush 2117 +{ +( 1600 2944 128 ) ( 1248 2944 128 ) ( 1248 2920 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1248 2920 256 ) ( 1248 2944 256 ) ( 1600 2944 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1248 2928 224 ) ( 1600 2928 224 ) ( 1600 2928 160 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1728 2920 224 ) ( 1728 2944 224 ) ( 1728 2944 160 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1728 2944 224 ) ( 1376 2944 224 ) ( 1376 2944 160 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1248 2944 224 ) ( 1248 2920 224 ) ( 1248 2920 160 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2118 +{ +( 1512 2944 0 ) ( 1248 2944 0 ) ( 1248 2928 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1248 2928 128 ) ( 1248 2944 128 ) ( 1512 2944 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1248 2928 128 ) ( 1512 2928 128 ) ( 1512 2928 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1728 2936 128 ) ( 1728 2952 128 ) ( 1728 2952 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1512 2944 128 ) ( 1248 2944 128 ) ( 1248 2944 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1248 2944 128 ) ( 1248 2928 128 ) ( 1248 2928 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2119 +{ +( 1152 2816 0 ) ( 1024 2816 0 ) ( 1024 2272 0 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 1024 2272 8 ) ( 1024 2816 8 ) ( 1152 2816 8 ) bricks/c_sr_mb1 0 0 90 1 1 0 0 0 +( 1024 2816 16 ) ( 1024 2816 0 ) ( 1152 2816 0 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 1024 2944 0 ) ( 1024 2944 16 ) ( 1024 1536 16 ) bricks/c_sr_mb1 0 -8 0 1 1 0 0 0 +( 1120 2688 128 ) ( 1160 2688 128 ) ( 1160 2688 0 ) bricks/c_sr_mb1 0 -8 0 1 1 0 0 0 +( 1120 2688 128 ) ( 1120 2704 128 ) ( 1120 2688 0 ) bricks/c_sr_mb1 0 -8 0 1 1 0 0 0 +( 1024 2752 0 ) ( 1088 2816 0 ) ( 1056 2784 16 ) bricks/c_sr_mb1 0 -8 0 1 1 0 0 0 +} +// brush 2120 +{ +( 384 2944 128 ) ( 384 2960 128 ) ( 144 2960 128 ) bricks/b_mf_v2 -14 0 90 1 1 0 0 0 +( 144 2960 256 ) ( 384 2960 256 ) ( 384 2944 256 ) bricks/b_mf_v2 -14 0 90 1 1 0 0 0 +( 136 2944 256 ) ( 376 2944 256 ) ( 376 2944 128 ) bricks/b_mf_v2 0 0 -180 1 -1 0 0 0 +( 384 3456 256 ) ( 144 3456 256 ) ( 144 3456 128 ) bricks/b_mf_v2 0 0 -180 1 -1 0 0 0 +( 896 3088 128 ) ( 896 3184 128 ) ( 896 3136 256 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 1024 2968 128 ) ( 1024 2936 128 ) ( 1024 2952 256 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +} +// brush 2121 +{ +( 384 2944 256 ) ( 384 2960 256 ) ( 144 2960 256 ) bricks/b_mf_v2a -14 0 90 1 1 0 0 0 +( 144 2960 384 ) ( 384 2960 384 ) ( 384 2944 384 ) bricks/b_mf_v2a -14 0 90 1 1 0 0 0 +( 136 2944 384 ) ( 376 2944 384 ) ( 376 2944 256 ) bricks/b_mf_v2a 0 0 -180 1 -1 0 0 0 +( 384 3456 384 ) ( 144 3456 384 ) ( 144 3456 256 ) bricks/b_mf_v2a 0 0 -180 1 -1 0 0 0 +( 896 3088 256 ) ( 896 3184 256 ) ( 896 3136 384 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 1024 2968 256 ) ( 1024 2936 256 ) ( 1024 2952 384 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +} +// brush 2122 +{ +( 384 2944 384 ) ( 384 2960 384 ) ( 144 2960 384 ) bricks/s_sr_m12a -14 0 90 1 1 0 0 0 +( 144 2960 448 ) ( 384 2960 448 ) ( 384 2944 448 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 136 2944 448 ) ( 376 2944 448 ) ( 376 2944 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 376 3456 448 ) ( 136 3456 448 ) ( 136 3456 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 896 3088 384 ) ( 896 3184 384 ) ( 896 3136 448 ) bricks/s_sr_m12a -16 0 0 1 1 0 0 0 +( 1024 2968 384 ) ( 1024 2936 384 ) ( 1024 2952 448 ) bricks/s_sr_m12a -16 0 0 1 1 0 0 0 +} +// brush 2123 +{ +( 384 2960 384 ) ( 384 2976 384 ) ( 144 2976 384 ) bricks/s_sr_m12a -31 0 90 1 1 0 0 0 +( 144 2976 448 ) ( 384 2976 448 ) ( 384 2960 448 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 136 2960 448 ) ( 376 2960 448 ) ( 376 2960 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 384 3456 448 ) ( 144 3456 448 ) ( 144 3456 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 768 3136 384 ) ( 768 3176 384 ) ( 768 3156 448 ) bricks/s_sr_m12a -32 0 0 1 1 0 0 0 +( 896 3200 384 ) ( 896 3104 384 ) ( 896 3152 448 ) bricks/s_sr_m12a -32 0 0 1 1 0 0 0 +} +// brush 2124 +{ +( 896 2960 128 ) ( 896 2976 128 ) ( 656 2976 128 ) bricks/b_mf_v2 -31 0 90 1 1 0 0 0 +( 656 2976 192 ) ( 896 2976 192 ) ( 896 2960 192 ) bricks/b_mf_v2 -31 0 90 1 1 0 0 0 +( 656 2960 256 ) ( 896 2960 256 ) ( 896 2960 128 ) bricks/b_mf_v2 0 0 -180 1 -1 0 0 0 +( 896 2976 256 ) ( 656 2976 256 ) ( 656 2976 128 ) bricks/b_mf_v2 0 0 -180 1 -1 0 0 0 +( 768 2936 128 ) ( 768 2992 128 ) ( 768 2964 256 ) bricks/b_mf_v2 -32 0 0 1 1 0 0 0 +( 896 2984 128 ) ( 896 2952 128 ) ( 896 2968 256 ) bricks/b_mf_v2 -32 0 0 1 1 0 0 0 +} +// brush 2125 +{ +( 896 2960 320 ) ( 896 2976 320 ) ( 656 2976 320 ) bricks/b_mf_v2a -31 0 90 1 1 0 0 0 +( 656 2976 384 ) ( 896 2976 384 ) ( 896 2960 384 ) bricks/b_mf_v2a -31 0 90 1 1 0 0 0 +( 656 2960 384 ) ( 896 2960 384 ) ( 896 2960 256 ) bricks/b_mf_v2a 0 0 -180 1 -1 0 0 0 +( 896 2976 384 ) ( 656 2976 384 ) ( 656 2976 256 ) bricks/b_mf_v2a 0 0 -180 1 -1 0 0 0 +( 768 2936 256 ) ( 768 2992 256 ) ( 768 2964 384 ) bricks/b_mf_v2a -32 0 0 1 1 0 0 0 +( 896 2984 256 ) ( 896 2952 256 ) ( 896 2968 384 ) bricks/b_mf_v2a -32 0 0 1 1 0 0 0 +} +// brush 2126 +{ +( 896 2960 256 ) ( 896 2976 256 ) ( 856 2976 256 ) bricks/b_mf_v2a -47 0 90 1 1 0 0 0 +( 856 2976 320 ) ( 896 2976 320 ) ( 896 2960 320 ) bricks/b_mf_v2a -47 0 90 1 1 0 0 0 +( 864 2976 320 ) ( 864 2960 320 ) ( 864 2960 256 ) bricks/b_mf_v2a -48 0 0 1 1 0 0 0 +( 856 2960 320 ) ( 896 2960 320 ) ( 896 2960 256 ) bricks/b_mf_v2a 0 0 -180 1 -1 0 0 0 +( 896 2960 320 ) ( 896 2976 320 ) ( 896 2976 256 ) bricks/b_mf_v2a -48 0 0 1 1 0 0 0 +( 896 2976 320 ) ( 856 2976 320 ) ( 856 2976 256 ) bricks/b_mf_v2a 0 0 -180 1 -1 0 0 0 +} +// brush 2127 +{ +( 808 2960 256 ) ( 808 2976 256 ) ( 768 2976 256 ) bricks/b_mf_v2a -47 0 90 1 1 0 0 0 +( 768 2976 320 ) ( 808 2976 320 ) ( 808 2960 320 ) bricks/b_mf_v2a -47 0 90 1 1 0 0 0 +( 768 2976 320 ) ( 768 2960 320 ) ( 768 2960 256 ) bricks/b_mf_v2a -48 0 0 1 1 0 0 0 +( 768 2960 320 ) ( 808 2960 320 ) ( 808 2960 256 ) bricks/b_mf_v2a 0 0 -180 1 -1 0 0 0 +( 800 2960 320 ) ( 800 2976 320 ) ( 800 2976 256 ) bricks/b_mf_v2a -48 0 0 1 1 0 0 0 +( 808 2976 320 ) ( 768 2976 320 ) ( 768 2976 256 ) bricks/b_mf_v2a 0 0 -180 1 -1 0 0 0 +} +// brush 2128 +{ +( 896 2960 192 ) ( 896 2976 192 ) ( 856 2976 192 ) bricks/b_mf_v2 -47 0 90 1 1 0 0 0 +( 856 2976 256 ) ( 896 2976 256 ) ( 896 2960 256 ) bricks/b_mf_v2 -47 0 90 1 1 0 0 0 +( 864 2976 256 ) ( 864 2960 256 ) ( 864 2960 192 ) bricks/b_mf_v2 -48 0 0 1 1 0 0 0 +( 856 2960 256 ) ( 896 2960 256 ) ( 896 2960 192 ) bricks/b_mf_v2 0 0 -180 1 -1 0 0 0 +( 896 2960 256 ) ( 896 2976 256 ) ( 896 2976 192 ) bricks/b_mf_v2 -48 0 0 1 1 0 0 0 +( 896 2976 256 ) ( 856 2976 256 ) ( 856 2976 192 ) bricks/b_mf_v2 0 0 -180 1 -1 0 0 0 +} +// brush 2129 +{ +( 808 2960 192 ) ( 808 2976 192 ) ( 768 2976 192 ) bricks/b_mf_v2 -47 0 90 1 1 0 0 0 +( 768 2976 256 ) ( 808 2976 256 ) ( 808 2960 256 ) bricks/b_mf_v2 -47 0 90 1 1 0 0 0 +( 768 2976 256 ) ( 768 2960 256 ) ( 768 2960 192 ) bricks/b_mf_v2 -48 0 0 1 1 0 0 0 +( 768 2960 256 ) ( 808 2960 256 ) ( 808 2960 192 ) bricks/b_mf_v2 0 0 -180 1 -1 0 0 0 +( 800 2960 256 ) ( 800 2976 256 ) ( 800 2976 192 ) bricks/b_mf_v2 -48 0 0 1 1 0 0 0 +( 808 2976 256 ) ( 768 2976 256 ) ( 768 2976 192 ) bricks/b_mf_v2 0 0 -180 1 -1 0 0 0 +} +// brush 2130 +{ +( 864 2968 192 ) ( 864 2976 192 ) ( 800 2976 192 ) props/w_sr_m6d -47 -64 90 1 1 0 0 0 +( 800 2976 320 ) ( 864 2976 320 ) ( 864 2968 320 ) props/w_sr_m6d -47 -64 90 1 1 0 0 0 +( 800 2976 256 ) ( 800 2968 256 ) ( 800 2968 192 ) props/w_sr_m6d -48 64 0 1 1 0 0 0 +( 800 2968 256 ) ( 864 2968 256 ) ( 864 2968 192 ) props/w_sr_m6d 0 64 -180 1 -1 0 0 0 +( 864 2968 256 ) ( 864 2976 256 ) ( 864 2976 192 ) props/w_sr_m6d -48 64 0 1 1 0 0 0 +( 864 2976 256 ) ( 800 2976 256 ) ( 800 2976 192 ) props/w_sr_m6d 0 64 -180 1 -1 0 0 0 +} +// brush 2131 +{ +( 384 2960 0 ) ( 384 2976 0 ) ( 272 2976 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 272 2976 128 ) ( 384 2976 128 ) ( 384 2960 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 264 2960 128 ) ( 376 2960 128 ) ( 376 2960 0 ) bricks/c_pv_m2gg 0 0 0 1 1 0 0 0 +( 384 2976 128 ) ( 272 2976 128 ) ( 272 2976 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 768 2960 0 ) ( 768 2976 0 ) ( 768 2968 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 896 2984 0 ) ( 896 2944 0 ) ( 896 2964 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2132 +{ +( 128 2944 384 ) ( 128 2960 384 ) ( -112 2960 384 ) bricks/s_sr_m12a -15 0 90 1 1 0 0 0 +( -112 2960 448 ) ( 128 2960 448 ) ( 128 2944 448 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -120 2944 448 ) ( 120 2944 448 ) ( 120 2944 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 120 3456 448 ) ( -120 3456 448 ) ( -120 3456 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 640 2896 384 ) ( 640 2992 384 ) ( 640 2944 448 ) bricks/s_sr_m12a -16 0 0 1 1 0 0 0 +( 768 3160 384 ) ( 768 3128 384 ) ( 768 3144 448 ) bricks/s_sr_m12a -16 0 0 1 1 0 0 0 +} +// brush 2133 +{ +( 128 2944 256 ) ( 128 2960 256 ) ( -112 2960 256 ) bricks/b_mf_v2a -15 0 90 1 1 0 0 0 +( -112 2960 384 ) ( 128 2960 384 ) ( 128 2944 384 ) bricks/b_mf_v2a -15 0 90 1 1 0 0 0 +( -120 2944 384 ) ( 120 2944 384 ) ( 120 2944 256 ) bricks/b_mf_v2a 0 0 -180 1 -1 0 0 0 +( 128 2960 384 ) ( -112 2960 384 ) ( -112 2960 256 ) bricks/b_mf_v2a 0 0 -180 1 -1 0 0 0 +( 640 2896 256 ) ( 640 2992 256 ) ( 640 2944 384 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 768 2968 256 ) ( 768 2936 256 ) ( 768 2952 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2134 +{ +( 128 2944 128 ) ( 128 2960 128 ) ( -112 2960 128 ) bricks/b_mf_v2 -15 0 90 1 1 0 0 0 +( -112 2960 256 ) ( 128 2960 256 ) ( 128 2944 256 ) bricks/b_mf_v2 -15 0 90 1 1 0 0 0 +( -120 2944 256 ) ( 120 2944 256 ) ( 120 2944 128 ) bricks/b_mf_v2 0 0 -180 1 -1 0 0 0 +( 128 2960 256 ) ( -112 2960 256 ) ( -112 2960 128 ) bricks/b_mf_v2 0 0 -180 1 -1 0 0 0 +( 640 2896 128 ) ( 640 2992 128 ) ( 640 2944 256 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 768 2968 128 ) ( 768 2936 128 ) ( 768 2952 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2135 +{ +( 0 2944 0 ) ( 0 2960 0 ) ( -112 2960 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -112 2960 128 ) ( 0 2960 128 ) ( 0 2944 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -120 2944 128 ) ( -8 2944 128 ) ( -8 2944 0 ) bricks/c_pv_m2gg 0 0 0 1 1 0 0 0 +( 0 2960 128 ) ( -112 2960 128 ) ( -112 2960 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 640 2896 0 ) ( 640 2992 0 ) ( 640 2944 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 768 2968 0 ) ( 768 2936 0 ) ( 768 2952 128 ) bricks/c_pv_m2gg 0 0 0 1 1 0 0 0 +} +// brush 2136 +{ +( 1088 1536 0 ) ( 624 1536 0 ) ( 624 1520 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 624 1520 128 ) ( 624 1536 128 ) ( 1088 1536 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 624 1520 128 ) ( 1088 1520 128 ) ( 1088 1520 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1088 1536 128 ) ( 624 1536 128 ) ( 624 1536 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1088 1520 0 ) ( 1088 1536 0 ) ( 1088 1528 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1264 1536 0 ) ( 1264 1520 0 ) ( 1264 1528 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2137 +{ +( 1088 1536 128 ) ( 624 1536 128 ) ( 624 1520 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 624 1520 256 ) ( 624 1536 256 ) ( 1088 1536 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 624 1520 256 ) ( 1088 1520 256 ) ( 1088 1520 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1088 1536 256 ) ( 624 1536 256 ) ( 624 1536 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1088 1512 128 ) ( 1088 1536 128 ) ( 1088 1524 256 ) bricks/b_sr_20 0 8 0 1 1 0 0 0 +( 1264 1536 128 ) ( 1264 1520 128 ) ( 1264 1528 256 ) bricks/b_sr_20 0 8 0 1 1 0 0 0 +} +// brush 2138 +{ +( 624 1520 384 ) ( 624 1536 384 ) ( 1088 1536 384 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 320 1520 384 ) ( 784 1520 384 ) ( 784 1520 256 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 1088 1535 384 ) ( 624 1535 384 ) ( 624 1535 256 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 800 1559 384 ) ( 800 1543 384 ) ( 800 1543 256 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 1376 1520 288 ) ( 1408 1520 288 ) ( 1392 1536 288 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 960 1535 288 ) ( 960 1519 288 ) ( 960 1527 384 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +} +// brush 2139 +{ +( 1088 1536 384 ) ( 624 1536 384 ) ( 624 1520 384 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 624 1544 424 ) ( 1264 1544 424 ) ( 1264 1520 424 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 624 1520 448 ) ( 1088 1520 448 ) ( 1088 1520 384 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 1264 1548 424 ) ( 624 1548 424 ) ( 624 1540 384 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 624 1536 448 ) ( 624 1520 448 ) ( 624 1520 384 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 1264 1560 384 ) ( 1264 1512 384 ) ( 1264 1536 448 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +} +// brush 2140 +{ +( 489 1876 320 ) ( 489 1876 368 ) ( 493 1877 368 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 485 1878 320 ) ( 485 1878 368 ) ( 487 1875 368 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 485 1882 320 ) ( 485 1882 368 ) ( 483 1879 368 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 489 1884 320 ) ( 489 1884 368 ) ( 485 1885 368 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 492 1880 320 ) ( 492 1880 368 ) ( 492 1884 368 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 484 1876 320 ) ( 492 1876 320 ) ( 492 1884 320 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 492 1884 368 ) ( 492 1876 368 ) ( 484 1876 368 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +} +// brush 2141 +{ +( 496 1856 128 ) ( 320 1856 128 ) ( 320 1728 128 ) metals/mt_sr_b1a 0 0 0 1 1 0 8388608 0 +( 320 1728 256 ) ( 320 1856 256 ) ( 496 1856 256 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 320 1728 256 ) ( 496 1728 256 ) ( 496 1728 128 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( 496 1728 256 ) ( 496 1856 256 ) ( 496 1856 128 ) metals/mt_pv_m26 192 1 0 1 1 0 8388608 0 +( 496 1856 256 ) ( 320 1856 256 ) ( 320 1856 128 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( 320 1856 256 ) ( 320 1728 256 ) ( 320 1728 128 ) metals/mt_pv_m26 192 1 0 1 1 0 8388608 0 +} +// brush 2142 +{ +( 512 1872 128 ) ( -88 1872 128 ) ( -88 1848 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -88 1848 256 ) ( -88 1872 256 ) ( 512 1872 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -88 1856 256 ) ( 512 1856 256 ) ( 512 1856 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 512 1872 256 ) ( -88 1872 256 ) ( -88 1872 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 512 1872 128 ) ( 512 1856 128 ) ( 512 1864 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 320 1848 128 ) ( 320 1872 128 ) ( 320 1860 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 2143 +{ +( 512 1872 128 ) ( -88 1872 128 ) ( -88 1848 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -88 1848 256 ) ( -88 1872 256 ) ( 512 1872 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -88 1856 256 ) ( 512 1856 256 ) ( 512 1856 128 ) bricks/b_sr_20b 4 0 0 1 1 0 0 0 +( 512 1872 256 ) ( -88 1872 256 ) ( -88 1872 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 64 1856 128 ) ( 64 1872 128 ) ( 64 1864 256 ) bricks/b_sr_21 0 0 90 1 1 0 0 0 +( 320 1872 128 ) ( 320 1848 128 ) ( 320 1860 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 2144 +{ +( 512 1872 256 ) ( -80 1872 256 ) ( -80 1856 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -80 1856 320 ) ( -80 1872 320 ) ( 512 1872 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -80 1856 320 ) ( 512 1856 320 ) ( 512 1856 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 512 1856 320 ) ( 512 1872 320 ) ( 512 1872 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 512 1872 320 ) ( -80 1872 320 ) ( -80 1872 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 320 1848 256 ) ( 320 1872 256 ) ( 320 1860 320 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +} +// brush 2145 +{ +( 512 1872 256 ) ( -80 1872 256 ) ( -80 1856 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -80 1856 320 ) ( -80 1872 320 ) ( 512 1872 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -80 1856 320 ) ( 512 1856 320 ) ( 512 1856 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 512 1872 320 ) ( -80 1872 320 ) ( -80 1872 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -80 1872 320 ) ( -80 1856 320 ) ( -80 1856 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( 320 1872 256 ) ( 320 1848 256 ) ( 320 1860 320 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +} +// brush 2146 +{ +( 1088 1536 256 ) ( 624 1536 256 ) ( 624 1520 256 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 624 1520 384 ) ( 1088 1520 384 ) ( 1088 1520 256 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 1096 1568 384 ) ( 632 1568 384 ) ( 632 1568 256 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 640 1536 384 ) ( 640 1520 384 ) ( 640 1520 256 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +( 1408 1520 288 ) ( 1376 1520 288 ) ( 1392 1536 288 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1120 1536 256 ) ( 1120 1520 256 ) ( 1120 1528 288 ) bricks/b_sr_22 0 0 0 1 1 0 0 0 +} +// brush 2147 +{ +( 1088 1536 128 ) ( 624 1536 128 ) ( 624 1520 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 624 1520 256 ) ( 624 1536 256 ) ( 1088 1536 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 624 1520 256 ) ( 1088 1520 256 ) ( 1088 1520 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1088 1536 256 ) ( 624 1536 256 ) ( 624 1536 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 832 1520 128 ) ( 832 1536 128 ) ( 832 1528 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 896 1520 128 ) ( 896 1520 176 ) ( 896 1536 152 ) bricks/b_sr_20 0 8 0 1 1 0 0 0 +} +// brush 2148 +{ +( 1088 1536 0 ) ( 624 1536 0 ) ( 624 1520 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 624 1520 128 ) ( 1088 1520 128 ) ( 1088 1520 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1088 1536 128 ) ( 624 1536 128 ) ( 624 1536 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 896 1520 0 ) ( 896 1536 0 ) ( 896 1528 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1088 1536 0 ) ( 1088 1520 0 ) ( 1088 1528 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 960 1520 64 ) ( 896 1520 64 ) ( 928 1536 64 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2149 +{ +( 560 1504 192 ) ( 560 1520 192 ) ( 1024 1520 192 ) bricks/c_pv_m2 64 -16 0 1 1 0 0 0 +( 560 1504 128 ) ( 1024 1504 128 ) ( 1024 1504 0 ) bricks/c_pv_m2 64 0 0 1 1 0 0 0 +( 1024 1520 128 ) ( 560 1520 128 ) ( 560 1520 0 ) props/w_sr_m6d 0 64 0 1 1 0 0 100 +( 896 1504 0 ) ( 896 1520 0 ) ( 896 1512 128 ) bricks/c_pv_m2 16 0 0 1 1 0 0 0 +( 1024 1520 0 ) ( 1024 1504 0 ) ( 1024 1512 128 ) bricks/c_pv_m2 16 0 0 1 1 0 0 0 +( 832 1504 64 ) ( 896 1504 64 ) ( 864 1520 64 ) bricks/c_pv_m2 64 -16 0 1 1 0 0 0 +} +// brush 2150 +{ +( 1088 1536 0 ) ( 624 1536 0 ) ( 624 1520 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 624 1520 128 ) ( 624 1536 128 ) ( 1088 1536 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 624 1520 128 ) ( 1088 1520 128 ) ( 1088 1520 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1088 1536 128 ) ( 624 1536 128 ) ( 624 1536 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 832 1520 0 ) ( 832 1536 0 ) ( 832 1528 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 896 1536 0 ) ( 896 1520 0 ) ( 896 1528 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2151 +{ +( 728 1520 192 ) ( 704 1520 192 ) ( 716 1536 192 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 768 1520 180 ) ( 832 1520 180 ) ( 800 1536 180 ) common/li_sr_v27 8 8 0 1 1 0 1 15000 +( 760 1520 180 ) ( 760 1536 180 ) ( 760 1528 192 ) bricks/b_sr_21 0 0 0 1 1 0 0 0 +( 776 1536 180 ) ( 776 1472 180 ) ( 776 1504 192 ) bricks/b_sr_21 0 0 0 1 1 0 0 0 +( 760 1512 180 ) ( 776 1512 180 ) ( 768 1512 192 ) bricks/b_sr_21 0 0 0 1 1 0 0 0 +( 776 1496 180 ) ( 760 1496 180 ) ( 768 1496 192 ) bricks/b_sr_21 0 0 0 1 1 0 0 0 +} +// brush 2152 +{ +( 624 1472 256 ) ( 1088 1472 256 ) ( 1088 1472 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 728 1520 192 ) ( 704 1520 192 ) ( 716 1536 192 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 768 1520 180 ) ( 832 1520 180 ) ( 800 1536 180 ) bricks/b_sr_26 0 0 0 1 1 0 0 0 +( 760 1520 180 ) ( 760 1536 180 ) ( 760 1528 192 ) bricks/b_sr_21 0 0 0 1 1 0 0 0 +( 776 1536 180 ) ( 776 1472 180 ) ( 776 1504 192 ) bricks/b_sr_21 0 0 0 1 1 0 0 0 +( 760 1496 180 ) ( 776 1496 180 ) ( 768 1496 192 ) bricks/b_sr_21 0 0 0 1 1 0 0 0 +} +// brush 2153 +{ +( 1088 1536 256 ) ( 624 1536 256 ) ( 624 1536 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 728 1520 192 ) ( 704 1520 192 ) ( 716 1536 192 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 768 1520 180 ) ( 832 1520 180 ) ( 800 1536 180 ) bricks/b_sr_26 0 0 0 1 1 0 0 0 +( 760 1520 180 ) ( 760 1536 180 ) ( 760 1528 192 ) bricks/b_sr_21 0 0 0 1 1 0 0 0 +( 776 1536 180 ) ( 776 1472 180 ) ( 776 1504 192 ) bricks/b_sr_21 0 0 0 1 1 0 0 0 +( 776 1512 180 ) ( 760 1512 180 ) ( 768 1512 192 ) bricks/b_sr_21 0 0 0 1 1 0 0 0 +} +// brush 2154 +{ +( 624 1472 256 ) ( 1088 1472 256 ) ( 1088 1472 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 1088 1536 256 ) ( 624 1536 256 ) ( 624 1536 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 728 1520 192 ) ( 704 1520 192 ) ( 716 1536 192 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 832 1528 184 ) ( 832 1528 192 ) ( 832 1544 188 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 768 1520 180 ) ( 832 1520 180 ) ( 800 1536 180 ) bricks/b_sr_26 0 0 0 1 1 0 0 0 +( 776 1472 180 ) ( 776 1536 180 ) ( 776 1504 192 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +} +// brush 2155 +{ +( 624 1472 256 ) ( 1088 1472 256 ) ( 1088 1472 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1088 1536 256 ) ( 624 1536 256 ) ( 624 1536 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 728 1520 192 ) ( 704 1520 192 ) ( 716 1536 192 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 704 1520 192 ) ( 704 1520 176 ) ( 704 1536 184 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 768 1520 180 ) ( 832 1520 180 ) ( 800 1536 180 ) bricks/b_sr_26 0 0 0 1 1 0 0 0 +( 760 1536 180 ) ( 760 1520 180 ) ( 760 1528 192 ) bricks/b_sr_21 0 0 0 1 1 0 0 0 +} +// brush 2156 +{ +( 704 1464 192 ) ( 704 1472 192 ) ( 832 1472 192 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 1440 128 ) ( 832 1440 128 ) ( 832 1440 0 ) bricks/b_sr_20b 0 32 0 1 1 0 0 0 +( 832 1472 128 ) ( 704 1472 128 ) ( 704 1472 0 ) bricks/b_sr_20b 0 56 0 1 1 0 0 0 +( 800 1464 32 ) ( 800 1456 32 ) ( 800 1460 192 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 736 1456 32 ) ( 736 1464 32 ) ( 736 1460 192 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 736 1448 144 ) ( 760 1448 144 ) ( 748 1472 144 ) bricks/b_sr_20b 0 65 0 1 1 0 0 0 +} +// brush 2157 +{ +( 704 1464 96 ) ( 704 1472 96 ) ( 832 1472 96 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 704 1440 128 ) ( 832 1440 128 ) ( 832 1440 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 832 1472 128 ) ( 704 1472 128 ) ( 704 1472 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 640 1480 128 ) ( 640 1472 128 ) ( 640 1472 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 688 1464 32 ) ( 728 1464 32 ) ( 708 1472 32 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 736 1464 32 ) ( 736 1456 32 ) ( 736 1460 192 ) bricks/b_sr_20a 16 32 0 1 1 0 0 0 +} +// brush 2158 +{ +( 704 1464 96 ) ( 704 1472 96 ) ( 832 1472 96 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 704 1440 128 ) ( 832 1440 128 ) ( 832 1440 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 896 1472 128 ) ( 896 1480 128 ) ( 896 1480 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 832 1472 128 ) ( 704 1472 128 ) ( 704 1472 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 688 1464 32 ) ( 728 1464 32 ) ( 708 1472 32 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 800 1456 32 ) ( 800 1464 32 ) ( 800 1460 192 ) bricks/b_sr_20a 64 32 0 -1 1 0 0 0 +} +// brush 2159 +{ +( 832 1600 0 ) ( 704 1600 0 ) ( 704 1552 0 ) bricks/c_sr_m2 -40 80 0 1 1 0 0 0 +( 704 1552 8 ) ( 704 1600 8 ) ( 832 1600 8 ) bricks/c_sr_m2 -24 48 0 1 1 0 0 0 +( 704 1552 16 ) ( 832 1552 16 ) ( 832 1552 0 ) bricks/c_sr_m2 -40 -16 0 1 1 0 0 0 +( 824 1552 16 ) ( 824 1600 16 ) ( 824 1600 0 ) bricks/c_sr_m2 -120 -16 0 1 1 0 0 0 +( 832 1576 16 ) ( 704 1576 16 ) ( 704 1576 0 ) bricks/c_sr_m2 -24 47 0 1 1 0 0 0 +( 712 1600 16 ) ( 712 1552 16 ) ( 712 1552 0 ) bricks/c_sr_m2 -120 -16 0 1 1 0 0 0 +} +// brush 2160 +{ +( 832 1576 0 ) ( 704 1576 0 ) ( 704 1528 0 ) bricks/c_sr_m2 -40 56 0 1 1 0 0 0 +( 704 1528 16 ) ( 704 1576 16 ) ( 832 1576 16 ) bricks/c_sr_m2 -27 39 0 1 1 0 0 0 +( 704 1528 16 ) ( 832 1528 16 ) ( 832 1528 0 ) bricks/c_sr_m2 -40 -16 0 1 1 0 0 0 +( 824 1528 16 ) ( 824 1576 16 ) ( 824 1576 0 ) bricks/c_sr_m2 -96 -16 0 1 1 0 0 0 +( 832 1552 16 ) ( 704 1552 16 ) ( 704 1552 0 ) bricks/c_sr_m2 -27 39 0 1 1 0 0 0 +( 712 1576 16 ) ( 712 1528 16 ) ( 712 1528 0 ) bricks/c_sr_m2 -96 -16 0 1 1 0 0 0 +} +// brush 2161 +{ +( 832 1552 0 ) ( 704 1552 0 ) ( 704 1504 0 ) bricks/c_sr_m2 -40 32 0 1 1 0 0 0 +( 704 1504 24 ) ( 704 1552 24 ) ( 832 1552 24 ) bricks/c_sr_m2 -27 38 0 1 1 0 0 0 +( 704 1504 16 ) ( 832 1504 16 ) ( 832 1504 0 ) bricks/c_sr_m2 -40 -16 0 1 1 0 0 0 +( 832 1504 16 ) ( 832 1552 16 ) ( 832 1552 0 ) bricks/c_sr_m2 -72 -16 0 1 1 0 0 0 +( 832 1528 16 ) ( 704 1528 16 ) ( 704 1528 0 ) bricks/c_sr_m2 -27 38 0 1 1 0 0 0 +( 704 1552 16 ) ( 704 1504 16 ) ( 704 1504 0 ) bricks/c_sr_m2 -72 -16 0 1 1 0 0 0 +} +// brush 2162 +{ +( 832 1520 0 ) ( 704 1520 0 ) ( 704 1472 0 ) bricks/c_sr_m2 -40 0 0 1 1 0 0 0 +( 704 1472 32 ) ( 704 1520 32 ) ( 832 1520 32 ) bricks/c_sr_m2 -2 160 0 1 1 0 0 0 +( 704 1440 16 ) ( 832 1440 16 ) ( 832 1440 0 ) bricks/c_sr_m2 -40 -16 0 1 1 0 0 0 +( 832 1472 16 ) ( 832 1520 16 ) ( 832 1520 0 ) bricks/c_sr_m2 -40 -16 0 1 1 0 0 0 +( 832 1504 16 ) ( 704 1504 16 ) ( 704 1504 0 ) bricks/c_sr_m2 -2 56 0 1 1 0 0 0 +( 704 1520 16 ) ( 704 1472 16 ) ( 704 1472 0 ) bricks/c_sr_m2 -40 -16 0 1 1 0 0 0 +} +// brush 2163 +{ +( 832 1536 -16 ) ( 704 1536 -16 ) ( 704 1472 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 704 1472 0 ) ( 704 1536 0 ) ( 832 1536 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 704 1472 0 ) ( 832 1472 0 ) ( 832 1472 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 832 1472 0 ) ( 832 1536 0 ) ( 832 1536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 832 1536 0 ) ( 704 1536 0 ) ( 704 1536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 704 1536 0 ) ( 704 1472 0 ) ( 704 1472 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2164 +{ +( 1088 1536 0 ) ( 624 1536 0 ) ( 624 1520 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 624 1520 128 ) ( 624 1536 128 ) ( 1088 1536 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 624 1472 128 ) ( 1088 1472 128 ) ( 1088 1472 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1088 1536 128 ) ( 624 1536 128 ) ( 624 1536 0 ) bricks/c_pv_m2pp 75 0 0 -1 1 0 0 0 +( 713 1505 0 ) ( 713 1489 0 ) ( 713 1497 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 704 1520 0 ) ( 704 1536 0 ) ( 704 1528 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2165 +{ +( 1088 1536 0 ) ( 624 1536 0 ) ( 624 1520 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 624 1520 128 ) ( 624 1536 128 ) ( 1088 1536 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 624 1520 128 ) ( 1088 1520 128 ) ( 1088 1520 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1088 1536 128 ) ( 624 1536 128 ) ( 624 1536 0 ) bricks/c_pv_m2pp 75 0 0 -1 1 0 0 0 +( 624 1536 128 ) ( 624 1520 128 ) ( 624 1520 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 704 1536 0 ) ( 704 1520 0 ) ( 704 1528 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2166 +{ +( 1088 1536 0 ) ( 624 1536 0 ) ( 624 1520 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 624 1520 128 ) ( 624 1536 128 ) ( 1088 1536 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 624 1472 128 ) ( 1088 1472 128 ) ( 1088 1472 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1088 1536 128 ) ( 624 1536 128 ) ( 624 1536 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 823 1471 0 ) ( 823 1487 0 ) ( 823 1479 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 832 1536 0 ) ( 832 1520 0 ) ( 832 1528 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2167 +{ +( 912 1536 256 ) ( 448 1536 256 ) ( 448 1536 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 448 1472 256 ) ( 912 1472 256 ) ( 912 1472 128 ) bricks/b_sr_24 -80 0 -180 1 -1 0 0 0 +( 704 1528 184 ) ( 704 1528 192 ) ( 704 1512 188 ) bricks/b_mf_v2 112 0 -180 1 -1 0 0 0 +( 756 1488 180 ) ( 756 1504 180 ) ( 742 1504 176 ) bricks/b_sr_26 0 0 0 1 1 0 0 0 +( 712 1536 176 ) ( 704 1536 176 ) ( 708 1520 176 ) bricks/b_mf_v2 -16 -112 -180 1 1 0 0 0 +( 756 1536 180 ) ( 756 1520 180 ) ( 704 1520 180 ) bricks/b_mf_v2 -16 -112 -180 1 1 0 0 0 +} +// brush 2168 +{ +( 448 1520 128 ) ( 912 1520 128 ) ( 912 1536 128 ) bricks/b_mf_v2 -16 -112 -180 1 1 0 0 0 +( 912 1536 256 ) ( 448 1536 256 ) ( 448 1536 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 448 1472 256 ) ( 912 1472 256 ) ( 912 1472 128 ) bricks/b_sr_24 -80 0 -180 1 -1 0 0 0 +( 704 1528 184 ) ( 704 1528 192 ) ( 704 1512 188 ) bricks/b_mf_v2 112 0 -180 1 -1 0 0 0 +( 713 1504 192 ) ( 713 1504 176 ) ( 713 1488 184 ) bricks/b_sr_26 0 0 0 1 1 0 0 0 +( 760 1536 136 ) ( 768 1536 136 ) ( 764 1520 136 ) bricks/b_mf_v2 -16 -112 -180 1 1 0 0 0 +} +// brush 2169 +{ +( 912 1536 256 ) ( 448 1536 256 ) ( 448 1536 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 448 1472 256 ) ( 912 1472 256 ) ( 912 1472 128 ) bricks/b_sr_24 -80 0 -180 1 -1 0 0 0 +( 704 1528 184 ) ( 704 1528 192 ) ( 704 1512 188 ) bricks/b_mf_v2 112 0 -180 1 -1 0 0 0 +( 715 1488 144 ) ( 715 1504 144 ) ( 713 1504 136 ) bricks/b_sr_26 0 0 0 1 1 0 0 0 +( 768 1536 136 ) ( 760 1536 136 ) ( 764 1520 136 ) bricks/b_mf_v2 -16 -112 -180 1 1 0 0 0 +( 714 1536 144 ) ( 714 1520 144 ) ( 704 1520 144 ) bricks/b_mf_v2 -16 -112 -180 1 1 0 0 0 +} +// brush 2170 +{ +( 912 1536 256 ) ( 448 1536 256 ) ( 448 1536 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 448 1472 256 ) ( 912 1472 256 ) ( 912 1472 128 ) bricks/b_sr_24 -80 0 -180 1 -1 0 0 0 +( 704 1528 184 ) ( 704 1528 192 ) ( 704 1512 188 ) bricks/b_mf_v2 112 0 -180 1 -1 0 0 0 +( 718 1488 152 ) ( 718 1504 152 ) ( 715 1504 144 ) bricks/b_sr_26 0 0 0 1 1 0 0 0 +( 768 1536 144 ) ( 744 1536 144 ) ( 756 1520 144 ) bricks/b_mf_v2 -16 -112 -180 1 1 0 0 0 +( 718 1536 152 ) ( 718 1520 152 ) ( 704 1520 152 ) bricks/b_mf_v2 -16 -112 -180 1 1 0 0 0 +} +// brush 2171 +{ +( 912 1536 256 ) ( 448 1536 256 ) ( 448 1536 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 448 1472 256 ) ( 912 1472 256 ) ( 912 1472 128 ) bricks/b_sr_24 -80 0 -180 1 -1 0 0 0 +( 704 1528 184 ) ( 704 1528 192 ) ( 704 1512 188 ) bricks/b_mf_v2 112 0 -180 1 -1 0 0 0 +( 724 1488 160 ) ( 724 1504 160 ) ( 718 1504 152 ) bricks/b_sr_26 0 0 0 1 1 0 0 0 +( 712 1536 152 ) ( 704 1536 152 ) ( 708 1520 152 ) bricks/b_mf_v2 -16 -112 -180 1 1 0 0 0 +( 724 1536 160 ) ( 724 1520 160 ) ( 704 1520 160 ) bricks/b_mf_v2 -16 -112 -180 1 1 0 0 0 +} +// brush 2172 +{ +( 912 1536 256 ) ( 448 1536 256 ) ( 448 1536 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 448 1472 256 ) ( 912 1472 256 ) ( 912 1472 128 ) bricks/b_sr_24 -80 0 -180 1 -1 0 0 0 +( 704 1528 184 ) ( 704 1528 192 ) ( 704 1512 188 ) bricks/b_mf_v2 112 0 -180 1 -1 0 0 0 +( 731 1488 168 ) ( 731 1504 168 ) ( 724 1504 160 ) bricks/b_sr_26 0 0 0 1 1 0 0 0 +( 768 1536 160 ) ( 752 1536 160 ) ( 760 1520 160 ) bricks/b_mf_v2 -16 -112 -180 1 1 0 0 0 +( 731 1536 168 ) ( 731 1520 168 ) ( 704 1520 168 ) bricks/b_mf_v2 -16 -112 -180 1 1 0 0 0 +} +// brush 2173 +{ +( 912 1536 256 ) ( 448 1536 256 ) ( 448 1536 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 448 1472 256 ) ( 912 1472 256 ) ( 912 1472 128 ) bricks/b_sr_24 -80 0 -180 1 -1 0 0 0 +( 704 1528 184 ) ( 704 1528 192 ) ( 704 1512 188 ) bricks/b_mf_v2 112 0 -180 1 -1 0 0 0 +( 742 1488 176 ) ( 742 1504 176 ) ( 731 1504 168 ) bricks/b_sr_26 0 0 0 1 1 0 0 0 +( 720 1536 168 ) ( 704 1536 168 ) ( 712 1520 168 ) bricks/b_mf_v2 -16 -112 -180 1 1 0 0 0 +( 742 1536 176 ) ( 742 1520 176 ) ( 704 1520 176 ) bricks/b_mf_v2 -16 -112 -180 1 1 0 0 0 +} +// brush 2174 +{ +( 624 1472 256 ) ( 1088 1472 256 ) ( 1088 1472 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 1088 1536 256 ) ( 624 1536 256 ) ( 624 1536 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 832 1528 184 ) ( 832 1528 192 ) ( 832 1544 188 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 780 1488 180 ) ( 780 1472 180 ) ( 794 1472 176 ) bricks/b_sr_26 0 0 0 1 1 0 0 0 +( 824 1520 176 ) ( 832 1520 176 ) ( 828 1536 176 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 780 1520 180 ) ( 780 1536 180 ) ( 832 1536 180 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +} +// brush 2175 +{ +( 624 1472 256 ) ( 1088 1472 256 ) ( 1088 1472 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 1088 1536 256 ) ( 624 1536 256 ) ( 624 1536 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 832 1528 184 ) ( 832 1528 192 ) ( 832 1544 188 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 794 1488 176 ) ( 794 1472 176 ) ( 805 1472 168 ) bricks/b_sr_26 0 0 0 1 1 0 0 0 +( 816 1520 168 ) ( 832 1520 168 ) ( 824 1536 168 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 794 1520 176 ) ( 794 1536 176 ) ( 832 1536 176 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +} +// brush 2176 +{ +( 624 1472 256 ) ( 1088 1472 256 ) ( 1088 1472 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 1088 1536 256 ) ( 624 1536 256 ) ( 624 1536 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 832 1528 184 ) ( 832 1528 192 ) ( 832 1544 188 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 805 1488 168 ) ( 805 1472 168 ) ( 812 1472 160 ) bricks/b_sr_26 0 0 0 1 1 0 0 0 +( 768 1520 160 ) ( 784 1520 160 ) ( 776 1536 160 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 805 1520 168 ) ( 805 1536 168 ) ( 832 1536 168 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +} +// brush 2177 +{ +( 624 1472 256 ) ( 1088 1472 256 ) ( 1088 1472 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 1088 1536 256 ) ( 624 1536 256 ) ( 624 1536 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 832 1528 184 ) ( 832 1528 192 ) ( 832 1544 188 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 812 1488 160 ) ( 812 1472 160 ) ( 818 1472 152 ) bricks/b_sr_26 0 0 0 1 1 0 0 0 +( 824 1520 152 ) ( 832 1520 152 ) ( 828 1536 152 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 812 1520 160 ) ( 812 1536 160 ) ( 832 1536 160 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +} +// brush 2178 +{ +( 624 1472 256 ) ( 1088 1472 256 ) ( 1088 1472 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 1088 1536 256 ) ( 624 1536 256 ) ( 624 1536 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 832 1528 184 ) ( 832 1528 192 ) ( 832 1544 188 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 818 1488 152 ) ( 818 1472 152 ) ( 821 1472 144 ) bricks/b_sr_26 0 0 0 1 1 0 0 0 +( 768 1520 144 ) ( 792 1520 144 ) ( 780 1536 144 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 818 1520 152 ) ( 818 1536 152 ) ( 832 1536 152 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +} +// brush 2179 +{ +( 624 1472 256 ) ( 1088 1472 256 ) ( 1088 1472 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 1088 1536 256 ) ( 624 1536 256 ) ( 624 1536 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 832 1528 184 ) ( 832 1528 192 ) ( 832 1544 188 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 821 1488 144 ) ( 821 1472 144 ) ( 823 1472 136 ) bricks/b_sr_26 0 0 0 1 1 0 0 0 +( 768 1520 136 ) ( 776 1520 136 ) ( 772 1536 136 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 822 1520 144 ) ( 822 1536 144 ) ( 832 1536 144 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +} +// brush 2180 +{ +( 1088 1536 128 ) ( 624 1536 128 ) ( 624 1520 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 624 1472 256 ) ( 1088 1472 256 ) ( 1088 1472 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 1088 1536 256 ) ( 624 1536 256 ) ( 624 1536 128 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 832 1528 184 ) ( 832 1528 192 ) ( 832 1544 188 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +( 823 1472 192 ) ( 823 1472 176 ) ( 823 1488 184 ) bricks/b_sr_26 0 0 0 1 1 0 0 0 +( 776 1520 136 ) ( 768 1520 136 ) ( 772 1536 136 ) bricks/b_sr_24 64 0 0 1 1 0 0 0 +} +// brush 2181 +{ +( 624 1520 256 ) ( 624 1536 256 ) ( 1088 1536 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 624 1520 256 ) ( 1088 1520 256 ) ( 1088 1520 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1088 1536 256 ) ( 624 1536 256 ) ( 624 1536 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 704 1520 128 ) ( 704 1536 128 ) ( 704 1528 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 832 1536 128 ) ( 832 1520 128 ) ( 832 1528 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 704 1520 192 ) ( 728 1520 192 ) ( 716 1536 192 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2182 +{ +( 1088 1536 128 ) ( 624 1536 128 ) ( 624 1520 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 624 1520 192 ) ( 624 1536 192 ) ( 1088 1536 192 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 624 1520 256 ) ( 1088 1520 256 ) ( 1088 1520 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1088 1536 256 ) ( 624 1536 256 ) ( 624 1536 128 ) bricks/b_sr_20 64 64 0 1 1 0 0 0 +( 624 1536 256 ) ( 624 1520 256 ) ( 624 1520 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 704 1536 128 ) ( 704 1520 128 ) ( 704 1528 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 2183 +{ +( 896 2048 -16 ) ( 640 2048 -16 ) ( 640 1728 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 1728 0 ) ( 640 2048 0 ) ( 896 2048 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1152 1728 0 ) ( 1152 2048 0 ) ( 1152 2048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 896 2944 0 ) ( 640 2944 0 ) ( 640 2944 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 616 2176 -16 ) ( 592 2176 -16 ) ( 604 2176 0 ) bricks/c_pv_m2 -16 -16 0 1 1 0 0 0 +( 768 2928 -16 ) ( 768 2944 -16 ) ( 768 2936 0 ) bricks/c_pv_m2 -16 -16 0 1 1 0 0 0 +} +// brush 2184 +{ +( 896 2048 -16 ) ( 640 2048 -16 ) ( 640 1728 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 1728 0 ) ( 640 2048 0 ) ( 896 2048 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 896 2944 0 ) ( 640 2944 0 ) ( 640 2944 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 2048 0 ) ( 640 1728 0 ) ( 640 1728 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 664 2816 -16 ) ( 640 2816 -16 ) ( 652 2816 0 ) bricks/c_pv_m2 -16 -16 0 1 1 0 0 0 +( 768 2944 -16 ) ( 768 2928 -16 ) ( 768 2936 0 ) bricks/c_pv_m2 -16 -16 0 1 1 0 0 0 +} +// brush 2185 +{ +( 320 2048 512 ) ( 192 2048 512 ) ( 192 1856 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( 192 1856 576 ) ( 192 2048 576 ) ( 320 2048 576 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( 192 1856 576 ) ( 320 1856 576 ) ( 320 1856 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( 320 1856 576 ) ( 320 2048 576 ) ( 320 2048 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( 320 2048 576 ) ( 192 2048 576 ) ( 192 2048 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -64 2056 576 ) ( -64 1864 576 ) ( -64 1864 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +} +// brush 2186 +{ +( 896 2048 -16 ) ( 640 2048 -16 ) ( 640 1728 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 1728 0 ) ( 640 2048 0 ) ( 896 2048 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 2816 -16 ) ( 664 2816 -16 ) ( 652 2816 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 648 2432 -16 ) ( 632 2432 -16 ) ( 640 2432 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 704 2792 -16 ) ( 704 2816 -16 ) ( 704 2804 0 ) bricks/c_pv_m2 -16 -16 0 1 1 0 0 0 +( 768 2456 -16 ) ( 768 2432 -16 ) ( 768 2444 0 ) bricks/c_pv_m2 -16 -16 0 1 1 0 0 0 +} +// brush 2187 +{ +( 896 2048 -16 ) ( 640 2048 -16 ) ( 640 1728 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 1728 0 ) ( 640 2048 0 ) ( 896 2048 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 2048 0 ) ( 640 1728 0 ) ( 640 1728 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 2432 -16 ) ( 656 2432 -16 ) ( 648 2432 0 ) bricks/c_pv_m2 -16 -16 0 1 1 0 0 0 +( 808 2176 -16 ) ( 640 2176 -16 ) ( 724 2176 0 ) bricks/c_pv_m2 -16 -16 0 1 1 0 0 0 +( 768 2432 -16 ) ( 768 2408 -16 ) ( 768 2420 0 ) bricks/c_pv_m2 -16 -16 0 1 1 0 0 0 +} +// brush 2188 +{ +( 635 2470 14 ) ( 631 2470 14 ) ( 631 2467 14 ) metals/mt_pv_m26y 24 -24 0 1 1 134217728 0 0 +( 631 2467 17 ) ( 631 2470 17 ) ( 635 2470 17 ) metals/mt_pv_m26y 24 -24 0 1 1 134217728 0 0 +( 631 2465 -10 ) ( 635 2465 -10 ) ( 635 2465 -13 ) metals/mt_pv_m26y 24 6 0 1 1 134217728 0 0 +( 634 2467 -10 ) ( 634 2470 -10 ) ( 634 2470 -13 ) metals/mt_pv_m26y 22 6 0 1 1 134217728 0 0 +( 635 2495 -10 ) ( 631 2495 -10 ) ( 631 2495 -13 ) metals/mt_pv_m26y 24 6 0 1 1 134217728 0 0 +( 632 2470 -10 ) ( 632 2467 -10 ) ( 632 2467 -13 ) metals/mt_pv_m26y 22 6 0 1 1 134217728 0 0 +} +// brush 2189 +{ +( 635 2502 14 ) ( 631 2502 14 ) ( 631 2499 14 ) metals/mt_pv_m26y 24 8 0 1 1 134217728 0 0 +( 631 2499 17 ) ( 631 2502 17 ) ( 635 2502 17 ) metals/mt_pv_m26y 24 8 0 1 1 134217728 0 0 +( 631 2497 -10 ) ( 635 2497 -10 ) ( 635 2497 -13 ) metals/mt_pv_m26y 24 6 0 1 1 134217728 0 0 +( 634 2499 -10 ) ( 634 2502 -10 ) ( 634 2502 -13 ) metals/mt_pv_m26y 22 6 0 1 1 134217728 0 0 +( 635 2527 -10 ) ( 631 2527 -10 ) ( 631 2527 -13 ) metals/mt_pv_m26y 24 6 0 1 1 134217728 0 0 +( 632 2502 -10 ) ( 632 2499 -10 ) ( 632 2499 -13 ) metals/mt_pv_m26y 22 6 0 1 1 134217728 0 0 +} +// brush 2190 +{ +( 635 2500 -13 ) ( 631 2500 -13 ) ( 631 2497 -13 ) metals/mt_pv_m26y 24 6 0 1 1 134217728 0 0 +( 631 2497 44 ) ( 631 2500 44 ) ( 635 2500 44 ) metals/mt_pv_m26y 24 6 0 1 1 134217728 0 0 +( 631 2495 -10 ) ( 635 2495 -10 ) ( 635 2495 -13 ) metals/mt_pv_m26y 24 6 0 1 1 134217728 0 0 +( 634 2497 -10 ) ( 634 2500 -10 ) ( 634 2500 -13 ) metals/mt_pv_m26y 24 6 0 1 1 134217728 0 0 +( 635 2497 -10 ) ( 631 2497 -10 ) ( 631 2497 -13 ) metals/mt_pv_m26y 24 6 0 1 1 134217728 0 0 +( 632 2500 -10 ) ( 632 2497 -10 ) ( 632 2497 -13 ) metals/mt_pv_m26y 24 6 0 1 1 134217728 0 0 +} +// brush 2191 +{ +( 635 2530 -13 ) ( 631 2530 -13 ) ( 631 2527 -13 ) metals/mt_pv_m26y 24 15 0 1 1 134217728 0 0 +( 631 2527 44 ) ( 631 2530 44 ) ( 635 2530 44 ) metals/mt_pv_m26y 24 15 0 1 1 134217728 0 0 +( 631 2527 -10 ) ( 635 2527 -10 ) ( 635 2527 -13 ) metals/mt_pv_m26y 24 19 0 1 1 134217728 0 0 +( 634 2527 -10 ) ( 634 2530 -10 ) ( 634 2530 -13 ) metals/mt_pv_m26y -7 19 0 1 1 134217728 0 0 +( 635 2528 -10 ) ( 631 2528 -10 ) ( 631 2528 -13 ) metals/mt_pv_m26y 24 19 0 1 1 134217728 0 0 +( 632 2530 -10 ) ( 632 2527 -10 ) ( 632 2527 -13 ) metals/mt_pv_m26y -7 19 0 1 1 134217728 0 0 +} +// brush 2192 +{ +( 635 2467 -13 ) ( 631 2467 -13 ) ( 631 2464 -13 ) metals/mt_pv_m26y 24 16 0 1 1 134217728 0 0 +( 631 2464 44 ) ( 631 2467 44 ) ( 635 2467 44 ) metals/mt_pv_m26y 24 16 0 1 1 134217728 0 0 +( 631 2464 -10 ) ( 635 2464 -10 ) ( 635 2464 -13 ) metals/mt_pv_m26y 24 19 0 1 1 134217728 0 0 +( 634 2464 -10 ) ( 634 2467 -10 ) ( 634 2467 -13 ) metals/mt_pv_m26y 24 19 0 1 1 134217728 0 0 +( 635 2465 -10 ) ( 631 2465 -10 ) ( 631 2465 -13 ) metals/mt_pv_m26y 24 19 0 1 1 134217728 0 0 +( 632 2467 -10 ) ( 632 2464 -10 ) ( 632 2464 -13 ) metals/mt_pv_m26y 24 19 0 1 1 134217728 0 0 +} +// brush 2193 +{ +( 634 2528 44 ) ( 632 2528 44 ) ( 632 2516 44 ) metals/mt_pv_m26y 24 16 0 1 1 134217728 0 0 +( 632 2516 48 ) ( 632 2528 48 ) ( 634 2528 48 ) metals/mt_pv_m26y 24 16 0 1 1 134217728 0 0 +( 629 2464 110 ) ( 631 2464 110 ) ( 631 2464 46 ) metals/mt_pv_m26y 24 6 0 1 1 134217728 0 0 +( 634 2516 110 ) ( 634 2528 110 ) ( 634 2528 46 ) metals/mt_pv_m26y 24 6 0 1 1 134217728 0 0 +( 634 2528 110 ) ( 632 2528 110 ) ( 632 2528 46 ) metals/mt_pv_m26y 24 6 0 1 1 134217728 0 0 +( 632 2528 110 ) ( 632 2516 110 ) ( 632 2516 46 ) metals/mt_pv_m26y 24 6 0 1 1 134217728 0 0 +} +// brush 2194 +{ +( 634 2528 -16 ) ( 632 2528 -16 ) ( 632 2516 -16 ) metals/mt_pv_m26y 24 6 0 1 1 134217728 0 0 +( 632 2516 -13 ) ( 632 2528 -13 ) ( 634 2528 -13 ) metals/mt_pv_m26y 24 6 0 1 1 134217728 0 0 +( 629 2464 48 ) ( 631 2464 48 ) ( 631 2464 -16 ) metals/mt_pv_m26y 24 6 0 1 1 134217728 0 0 +( 634 2516 48 ) ( 634 2528 48 ) ( 634 2528 -16 ) metals/mt_pv_m26y 24 6 0 1 1 134217728 0 0 +( 634 2528 48 ) ( 632 2528 48 ) ( 632 2528 -16 ) metals/mt_pv_m26y 24 6 0 1 1 134217728 0 0 +( 632 2528 48 ) ( 632 2516 48 ) ( 632 2516 -16 ) metals/mt_pv_m26y 24 6 0 1 1 134217728 0 0 +} +// brush 2195 +{ +( 896 2048 -16 ) ( 640 2048 -16 ) ( 640 1728 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 1728 0 ) ( 640 2048 0 ) ( 896 2048 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 624 1536 0 ) ( 880 1536 0 ) ( 880 1536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1152 1728 0 ) ( 1152 2048 0 ) ( 1152 2048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 2048 0 ) ( 640 1728 0 ) ( 640 1728 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 2176 -16 ) ( 808 2176 -16 ) ( 724 2176 0 ) bricks/c_pv_m2 -16 -16 0 1 1 0 0 0 +} +// brush 2196 +{ +( 1120 2224 48 ) ( 1120 2112 48 ) ( 1120 2112 16 ) props/sg_sr_mn10 32 -16 0 -1 1 0 0 0 +( 1128 2432 80 ) ( 1128 2408 80 ) ( 1128 2420 544 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1120 2400 80 ) ( 1128 2400 80 ) ( 1124 2400 544 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1128 2336 80 ) ( 1120 2336 80 ) ( 1124 2336 544 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1120 2336 112 ) ( 1128 2336 112 ) ( 1124 2400 112 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1128 2336 240 ) ( 1112 2336 240 ) ( 1120 2400 240 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 2197 +{ +( 1144 2112 416 ) ( 1120 2112 416 ) ( 1120 2224 416 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1120 2224 48 ) ( 1120 2112 48 ) ( 1120 2112 16 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1128 2432 -48 ) ( 1128 2408 -48 ) ( 1128 2420 416 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1120 2400 80 ) ( 1128 2400 80 ) ( 1124 2400 544 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1128 2336 80 ) ( 1120 2336 80 ) ( 1124 2336 544 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1112 2336 240 ) ( 1128 2336 240 ) ( 1120 2400 240 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +} +// brush 2198 +{ +( 1120 2224 48 ) ( 1120 2112 48 ) ( 1120 2112 16 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1184 2304 72 ) ( 1184 2320 72 ) ( 1120 2312 72 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1128 2432 72 ) ( 1128 2408 72 ) ( 1128 2420 536 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1120 2400 80 ) ( 1128 2400 80 ) ( 1124 2400 544 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1128 2336 80 ) ( 1120 2336 80 ) ( 1124 2336 544 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1128 2336 112 ) ( 1120 2336 112 ) ( 1124 2400 112 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +} +// brush 2199 +{ +( 1144 2112 416 ) ( 1120 2112 416 ) ( 1120 2224 416 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1120 2224 48 ) ( 1120 2112 48 ) ( 1120 2112 16 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1128 2304 -96 ) ( 1120 2304 -96 ) ( 1124 2304 -32 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1184 2304 72 ) ( 1184 2320 72 ) ( 1120 2312 72 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1128 2432 -56 ) ( 1128 2408 -56 ) ( 1128 2420 408 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1120 2336 80 ) ( 1128 2336 80 ) ( 1124 2336 544 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +} +// brush 2200 +{ +( 1144 2112 416 ) ( 1120 2112 416 ) ( 1120 2224 416 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1136 2432 48 ) ( 1112 2432 48 ) ( 1112 2432 16 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1120 2224 48 ) ( 1120 2112 48 ) ( 1120 2112 16 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1184 2304 72 ) ( 1184 2320 72 ) ( 1120 2312 72 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1128 2432 -56 ) ( 1128 2408 -56 ) ( 1128 2420 408 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1128 2400 80 ) ( 1120 2400 80 ) ( 1124 2400 544 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +} +// brush 2201 +{ +( 1144 2112 543 ) ( 1120 2112 543 ) ( 1120 2224 543 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1248 2088 48 ) ( 1248 2200 48 ) ( 1248 2200 16 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1136 2432 48 ) ( 1112 2432 48 ) ( 1112 2432 16 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1128 2304 -96 ) ( 1120 2304 -96 ) ( 1124 2304 -32 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1184 2304 72 ) ( 1184 2320 72 ) ( 1120 2312 72 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 1128 2408 71 ) ( 1128 2432 71 ) ( 1128 2420 535 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 2202 +{ +( 720 2297 200 ) ( 648 2297 200 ) ( 648 2281 200 ) metals/mt_pv_m26y 16 13 0 0.500000 0.499512 134217728 0 0 +( 648 2279 264 ) ( 648 2295 264 ) ( 720 2295 264 ) common/li_sr_v17 0 0 0 1 1 134217728 132 0 +( 648 2285 200 ) ( 720 2285 200 ) ( 720 2290 72 ) props/sg_sr_mn7 56 8 0 1 1 134217728 1 10 +( 712 2281 200 ) ( 712 2297 200 ) ( 712 2302 72 ) metals/mt_pv_m26y 2 -23 2 0.500061 0.500004 134217728 0 0 +( 720 2293 200 ) ( 648 2293 200 ) ( 648 2298 72 ) props/sg_sr_mn7 7 8 -180 1 -0.999390 134217728 1 200 +( 648 2297 200 ) ( 648 2281 200 ) ( 648 2286 72 ) metals/mt_pv_m26y 9 -7 1 1.000120 1.000030 134217728 0 0 +} +// brush 2203 +{ +( 1132 2656 440 ) ( 1124 2656 440 ) ( 1124 2648 440 ) common/li_sr_m19 8 0 0 0.500000 0.500000 134217728 1 55000 +( 1124 2648 448 ) ( 1124 2656 448 ) ( 1132 2656 448 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 1124 2648 448 ) ( 1132 2648 448 ) ( 1132 2648 320 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 1132 2648 448 ) ( 1132 2656 448 ) ( 1132 2656 320 ) metals/mt_pv_m26y 4 0 0 1 1 134217728 0 0 +( 1132 2656 448 ) ( 1124 2656 448 ) ( 1124 2656 320 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 1124 2656 448 ) ( 1124 2648 448 ) ( 1124 2648 320 ) metals/mt_pv_m26y 4 0 0 1 1 134217728 0 0 +} +// brush 2204 +{ +( 1132 2768 440 ) ( 1124 2768 440 ) ( 1124 2760 440 ) common/li_sr_m19 8 0 0 0.500000 0.500000 134217728 1 50000 +( 1124 2760 448 ) ( 1124 2768 448 ) ( 1132 2768 448 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 1124 2760 448 ) ( 1132 2760 448 ) ( 1132 2760 320 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 1132 2760 448 ) ( 1132 2768 448 ) ( 1132 2768 320 ) metals/mt_pv_m26y 20 0 0 1 1 134217728 0 0 +( 1132 2768 448 ) ( 1124 2768 448 ) ( 1124 2768 320 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 1124 2768 448 ) ( 1124 2760 448 ) ( 1124 2760 320 ) metals/mt_pv_m26y 20 0 0 1 1 134217728 0 0 +} +// brush 2205 +{ +( 1132 2560 440 ) ( 1124 2560 440 ) ( 1124 2552 440 ) common/li_sr_m19 8 0 0 0.500000 0.500000 134217728 1 50000 +( 1124 2552 448 ) ( 1124 2560 448 ) ( 1132 2560 448 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 1124 2552 448 ) ( 1132 2552 448 ) ( 1132 2552 320 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 1132 2552 448 ) ( 1132 2560 448 ) ( 1132 2560 320 ) metals/mt_pv_m26y 4 0 0 1 1 134217728 0 0 +( 1132 2560 448 ) ( 1124 2560 448 ) ( 1124 2560 320 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 1124 2560 448 ) ( 1124 2552 448 ) ( 1124 2552 320 ) metals/mt_pv_m26y 4 0 0 1 1 134217728 0 0 +} +// brush 2206 +{ +( 1144 2768 288 ) ( 1128 2768 288 ) ( 1128 2608 288 ) metals/mt_pv_m26y 0 -16 0 1 1 134217728 0 0 +( 1128 2608 448 ) ( 1128 2768 448 ) ( 1144 2768 448 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 1136 2496 448 ) ( 1152 2496 448 ) ( 1152 2496 288 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 1136 2608 448 ) ( 1136 2768 448 ) ( 1136 2768 288 ) metals/mt_pv_m26y 16 0 0 1 1 134217728 0 0 +( 1136 2816 448 ) ( 1120 2816 448 ) ( 1120 2816 288 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( 1132 2872 448 ) ( 1132 2712 448 ) ( 1132 2712 288 ) props/sg_sr_2a -25 -13 0 -2.500000 2.500000 134217728 8388608 0 +} +// brush 2207 +{ +( 704 2576 -16 ) ( 640 2576 -16 ) ( 640 2560 -16 ) bricks/c_pv_m2 -16 -16 0 1 1 0 0 0 +( 640 2560 0 ) ( 640 2576 0 ) ( 704 2576 0 ) bricks/c_pv_m2 -16 -16 0 1 1 0 0 0 +( 640 2560 0 ) ( 704 2560 0 ) ( 704 2560 -16 ) bricks/c_pv_m2 -16 -16 0 1 1 0 0 0 +( 704 2560 0 ) ( 704 2576 0 ) ( 704 2576 -16 ) bricks/c_pv_m2 -16 -16 0 1 1 0 0 0 +( 704 2576 0 ) ( 640 2576 0 ) ( 640 2576 -16 ) bricks/c_pv_m2 -16 -16 0 1 1 0 0 0 +( 640 2576 0 ) ( 640 2560 0 ) ( 640 2560 -16 ) bricks/c_pv_m2 -16 -16 0 1 1 0 0 0 +} +// brush 2208 +{ +( 640 2304 8 ) ( 624 2304 8 ) ( 624 2192 8 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 624 2192 128 ) ( 624 2304 128 ) ( 640 2304 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 640 2184 120 ) ( 640 2296 120 ) ( 640 2296 -8 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 624 2304 120 ) ( 624 2192 120 ) ( 624 2192 -8 ) bricks/c_pv_m2 0 -8 0 1 1 0 0 0 +( 640 2688 -8 ) ( 624 2688 -8 ) ( 632 2688 120 ) bricks/c_pv_m2 0 -8 0 1 1 0 0 0 +( 616 2816 -8 ) ( 656 2816 -8 ) ( 636 2816 120 ) bricks/c_pv_m2 0 -8 0 1 1 0 0 0 +} +// brush 2209 +{ +( 656 2272 8 ) ( 608 2272 8 ) ( 608 2240 8 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 664 2264 24 ) ( 664 2232 24 ) ( 608 2240 56 ) bricks/c_pv_m2 0 -32 90 1 1 0 0 0 +( 608 2240 56 ) ( 656 2240 56 ) ( 656 2240 8 ) bricks/c_pv_m2 0 -8 0 1 1 0 0 0 +( 664 2232 24 ) ( 664 2264 24 ) ( 664 2272 8 ) bricks/c_pv_m2 -32 -8 0 1 1 0 0 0 +( 656 2272 56 ) ( 608 2272 56 ) ( 608 2272 8 ) bricks/c_pv_m2 0 -8 0 1 1 0 0 0 +( 608 2272 56 ) ( 608 2240 56 ) ( 608 2240 8 ) bricks/c_pv_m2 -32 -8 0 1 1 0 0 0 +} +// brush 2210 +{ +( 640 2272 8 ) ( 624 2272 8 ) ( 624 2112 8 ) bricks/c_pv_m2 -16 0 0 1 1 0 0 0 +( 624 2112 24 ) ( 624 2272 24 ) ( 640 2272 24 ) bricks/c_sr_m2 -24 64 0 1 1 0 0 0 +( 624 2112 56 ) ( 640 2112 56 ) ( 640 2112 8 ) bricks/c_pv_m2 -16 -8 0 1 1 0 0 0 +( 640 2112 56 ) ( 640 2272 56 ) ( 640 2272 8 ) bricks/c_pv_m2 0 -8 0 1 1 0 0 0 +( 640 2240 56 ) ( 624 2240 56 ) ( 624 2240 8 ) bricks/c_pv_m2 -16 -8 0 1 1 0 0 0 +( 624 2240 56 ) ( 624 2080 56 ) ( 624 2080 8 ) bricks/c_pv_m2 0 -8 0 1 1 0 0 0 +} +// brush 2211 +{ +( 624 2272 8 ) ( 608 2272 8 ) ( 608 2112 8 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 608 2112 40 ) ( 608 2272 40 ) ( 624 2272 40 ) bricks/c_sr_m2 -24 48 0 1 1 0 0 0 +( 608 2112 56 ) ( 624 2112 56 ) ( 624 2112 8 ) bricks/c_pv_m2 0 -8 0 1 1 0 0 0 +( 624 2080 56 ) ( 624 2240 56 ) ( 624 2240 8 ) bricks/c_pv_m2 0 -8 0 1 1 0 0 0 +( 624 2240 56 ) ( 608 2240 56 ) ( 608 2240 8 ) bricks/c_pv_m2 0 -8 0 1 1 0 0 0 +( 608 2272 56 ) ( 608 2112 56 ) ( 608 2112 8 ) bricks/c_pv_m2 0 -8 0 1 1 0 0 0 +} +// brush 2212 +{ +( 656 2112 8 ) ( 608 2112 8 ) ( 608 2080 8 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 664 2112 24 ) ( 664 2080 24 ) ( 608 2080 56 ) bricks/c_pv_m2 0 -32 90 1 1 0 0 0 +( 608 2080 56 ) ( 656 2080 56 ) ( 656 2080 8 ) bricks/c_pv_m2 0 -8 0 1 1 0 0 0 +( 664 2080 24 ) ( 664 2112 24 ) ( 664 2112 8 ) bricks/c_pv_m2 0 -8 0 1 1 0 0 0 +( 656 2112 56 ) ( 608 2112 56 ) ( 608 2112 8 ) bricks/c_pv_m2 0 -8 0 1 1 0 0 0 +( 608 2112 56 ) ( 608 2080 56 ) ( 608 2080 8 ) bricks/c_pv_m2 0 -8 0 1 1 0 0 0 +} +// brush 2213 +{ +( 648 2293 200 ) ( 640 2293 200 ) ( 640 2285 200 ) metals/mt_pv_m26y 16 13 0 0.500000 0.499512 134217728 0 0 +( 640 2283 264 ) ( 640 2291 264 ) ( 648 2291 264 ) common/li_sr_v17 0 0 0 1 1 134217728 132 0 +( 640 2268 696 ) ( 648 2268 696 ) ( 648 2277 440 ) metals/mt_pv_m26y 16 8 0 0.500000 0.499695 134217728 0 0 +( 648 2268 696 ) ( 648 2276 696 ) ( 648 2285 440 ) metals/mt_pv_m26y 2 -23 2 0.500061 0.500004 134217728 0 0 +( 648 2276 696 ) ( 640 2276 696 ) ( 640 2285 440 ) metals/mt_pv_m26y 16 8 0 0.500000 0.499695 134217728 0 0 +( 640 2276 696 ) ( 640 2268 696 ) ( 640 2277 440 ) metals/mt_pv_m26y 2 -23 2 0.500061 0.500004 134217728 0 0 +} +// brush 2214 +{ +( 640 2304 256 ) ( 624 2304 256 ) ( 624 2064 256 ) bricks/b_mf_v2 0 0 90 1 1 0 0 0 +( 624 2064 384 ) ( 624 2304 384 ) ( 640 2304 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 640 2064 384 ) ( 640 2304 384 ) ( 640 2304 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 664 2064 256 ) ( 608 2064 256 ) ( 636 2064 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 616 2304 256 ) ( 648 2304 256 ) ( 632 2304 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 552 2296 256 ) ( 552 2304 256 ) ( 552 2300 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2215 +{ +( 1152 2552 184 ) ( 1152 2568 184 ) ( 1136 2568 184 ) common/li_sr_m19 16 8 0 1 1 134217728 1 40000 +( 1136 2568 192 ) ( 1152 2568 192 ) ( 1152 2552 192 ) metals/mt_pv_m26y -31 0 90 1 1 134217728 0 0 +( 1136 2568 192 ) ( 1136 2552 192 ) ( 1136 2552 64 ) metals/mt_pv_m26y 0 16 0 1 1 134217728 0 0 +( 1136 2552 192 ) ( 1152 2552 192 ) ( 1152 2552 64 ) common/li_sr_v27 0 0 -180 1 -1 134217728 0 0 +( 1152 2552 192 ) ( 1152 2568 192 ) ( 1152 2568 64 ) common/li_sr_v27 0 0 0 1 1 134217728 0 0 +( 1152 2568 192 ) ( 1136 2568 192 ) ( 1136 2568 64 ) common/li_sr_v27 0 0 -180 1 -1 134217728 0 0 +} +// brush 2216 +{ +( 1152 2544 184 ) ( 1152 2552 184 ) ( 1136 2552 184 ) metals/mt_pv_m26y -31 0 90 1 1 134217728 0 0 +( 1136 2552 192 ) ( 1152 2552 192 ) ( 1152 2544 192 ) metals/mt_pv_m26y -31 0 90 1 1 134217728 0 0 +( 1136 2544 192 ) ( 1152 2544 192 ) ( 1152 2544 184 ) metals/mt_pv_m26y 0 16 -180 1 -1 134217728 0 0 +( 1152 2544 192 ) ( 1152 2552 192 ) ( 1152 2552 184 ) metals/mt_pv_m26y 0 16 0 1 1 134217728 0 0 +( 1152 2552 192 ) ( 1136 2552 192 ) ( 1136 2552 184 ) metals/mt_pv_m26y 0 16 -180 1 -1 134217728 0 0 +( 1144 2544 184 ) ( 1136 2552 184 ) ( 1140 2548 192 ) metals/mt_pv_m26y -24 16 0 1 1 134217728 0 0 +} +// brush 2217 +{ +( 1152 2568 184 ) ( 1152 2576 184 ) ( 1136 2576 184 ) metals/mt_pv_m26y -31 0 90 1 1 134217728 0 0 +( 1136 2576 192 ) ( 1152 2576 192 ) ( 1152 2568 192 ) metals/mt_pv_m26y -31 0 90 1 1 134217728 0 0 +( 1136 2568 192 ) ( 1152 2568 192 ) ( 1152 2568 184 ) metals/mt_pv_m26y 0 16 -180 1 -1 134217728 0 0 +( 1152 2568 192 ) ( 1152 2576 192 ) ( 1152 2576 184 ) metals/mt_pv_m26y 0 16 0 1 1 134217728 0 0 +( 1152 2576 192 ) ( 1136 2576 192 ) ( 1136 2576 184 ) metals/mt_pv_m26y 0 16 -180 1 -1 134217728 0 0 +( 1136 2568 184 ) ( 1144 2576 184 ) ( 1140 2572 192 ) metals/mt_pv_m26y 7 16 -180 1 -1 134217728 0 0 +} +// brush 2218 +{ +( 1112 2672 8 ) ( 1096 2672 8 ) ( 1096 2448 8 ) bricks/c_sr_m2 -40 40 90 1 1 0 0 0 +( 1096 2448 24 ) ( 1096 2672 24 ) ( 1112 2672 24 ) bricks/c_sr_m2 -40 160 90 1 1 0 0 0 +( 1096 2432 32 ) ( 1112 2432 32 ) ( 1112 2432 16 ) bricks/c_sr_m2 -40 40 90 1 1 0 0 0 +( 1104 2448 32 ) ( 1104 2672 32 ) ( 1104 2672 16 ) bricks/c_sr_m2 -40 0 90 1 1 0 0 0 +( 1112 2688 32 ) ( 1096 2688 32 ) ( 1096 2688 16 ) bricks/c_sr_m2 -32 8 90 1 1 0 0 0 +( 1080 2672 32 ) ( 1080 2448 32 ) ( 1080 2448 16 ) bricks/c_sr_m2 -40 0 0 1 1 0 0 0 +} +// brush 2219 +{ +( 718 1974 8 ) ( 738 1974 8 ) ( 738 1994 8 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 734 1978 16 ) ( 722 1978 16 ) ( 722 1990 16 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 718 1972 8 ) ( 718 1994 8 ) ( 722 1990 16 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 738 1974 8 ) ( 718 1974 8 ) ( 722 1978 16 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 738 1996 8 ) ( 738 1972 8 ) ( 734 1978 16 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +( 716 1994 8 ) ( 738 1994 8 ) ( 734 1990 16 ) metals/m_hl_c10b 0 27 0 2 2 134217728 8388608 0 +} +// brush 2220 +{ +( 640 3264 448 ) ( 624 3264 448 ) ( 624 2944 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 624 2944 576 ) ( 624 3264 576 ) ( 640 3264 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 624 2960 576 ) ( 640 2960 576 ) ( 640 2960 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 768 2936 576 ) ( 768 3256 576 ) ( 768 3256 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 640 3456 576 ) ( 624 3456 576 ) ( 624 3456 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 624 3264 576 ) ( 624 2944 576 ) ( 624 2944 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2221 +{ +( 1264 2152 576 ) ( 640 2152 576 ) ( 640 1536 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 640 1536 592 ) ( 640 2152 592 ) ( 1264 2152 592 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 640 1536 592 ) ( 1264 1536 592 ) ( 1264 1536 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 1264 1536 592 ) ( 1264 2152 592 ) ( 1264 2152 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 1264 3456 592 ) ( 640 3456 592 ) ( 640 3456 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 640 2152 592 ) ( 640 1536 592 ) ( 640 1536 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +} +// brush 2222 +{ +( 640 2048 576 ) ( 320 2048 576 ) ( 320 1728 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 320 1728 592 ) ( 320 2048 592 ) ( 640 2048 592 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 320 1728 640 ) ( 640 1728 640 ) ( 640 1728 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 640 1728 640 ) ( 640 2048 640 ) ( 640 2048 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 640 2048 640 ) ( 320 2048 640 ) ( 320 2048 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +( 320 2048 640 ) ( 320 1728 640 ) ( 320 1728 576 ) common/li_sr_v17 0 0 0 1 1 0 133 350 +} +// brush 2223 +{ +( 1104 3520 0 ) ( 624 3520 0 ) ( 624 3456 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 624 3456 576 ) ( 624 3520 576 ) ( 1104 3520 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 624 3456 576 ) ( 1104 3456 576 ) ( 1104 3456 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1600 3472 576 ) ( 1600 3536 576 ) ( 1600 3536 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1104 3520 576 ) ( 624 3520 576 ) ( 624 3520 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 624 3520 576 ) ( 624 3456 576 ) ( 624 3456 0 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2224 +{ +( 1264 1848 512 ) ( 1248 1848 512 ) ( 1248 1536 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1248 1536 576 ) ( 1248 1848 576 ) ( 1264 1848 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1248 1536 576 ) ( 1264 1536 576 ) ( 1264 1536 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1264 1536 576 ) ( 1264 1848 576 ) ( 1264 1848 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1264 2944 576 ) ( 1248 2944 576 ) ( 1248 2944 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1248 1848 576 ) ( 1248 1536 576 ) ( 1248 1536 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2225 +{ +( 648 2136 448 ) ( 624 2136 448 ) ( 624 2064 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 624 2064 576 ) ( 624 2136 576 ) ( 648 2136 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 616 2752 512 ) ( 640 2752 512 ) ( 640 2752 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 640 2064 512 ) ( 640 2136 512 ) ( 640 2136 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 648 2960 512 ) ( 624 2960 512 ) ( 624 2960 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 624 2584 512 ) ( 624 2512 512 ) ( 624 2512 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2226 +{ +( 544 2064 256 ) ( 544 2304 256 ) ( 560 2304 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 560 2064 256 ) ( 560 2304 256 ) ( 560 2304 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 544 2304 256 ) ( 544 2064 256 ) ( 544 2064 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 536 2240 128 ) ( 568 2240 128 ) ( 552 2240 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 568 2112 128 ) ( 536 2112 128 ) ( 552 2112 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 544 2112 168 ) ( 560 2112 168 ) ( 552 2240 168 ) bricks/b_mf_v2 0 0 270 1 1 0 0 0 +} +// brush 2227 +{ +( 544 2176 56 ) ( 528 2176 56 ) ( 528 2064 56 ) floors/dr_st_m1d 64 56 0 1 1 0 0 0 +( 528 2064 168 ) ( 528 2176 168 ) ( 544 2176 168 ) floors/dr_st_m1d 64 56 0 1 1 0 0 0 +( 544 2064 120 ) ( 544 2176 120 ) ( 544 2176 -8 ) floors/dr_st_m1d 64 56 0 1 1 0 0 0 +( 528 2176 120 ) ( 528 2064 120 ) ( 528 2064 -8 ) floors/dr_st_m1d 64 56 0 1 1 0 0 0 +( 520 2240 56 ) ( 552 2240 56 ) ( 536 2240 120 ) floors/dr_st_m1d 64 56 0 1 1 0 0 0 +( 552 2112 56 ) ( 520 2112 56 ) ( 536 2112 120 ) floors/dr_st_m1d 64 56 0 1 1 0 0 0 +} +// brush 2228 +{ +( 560 2304 128 ) ( 544 2304 128 ) ( 544 2064 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 544 2064 256 ) ( 544 2304 256 ) ( 560 2304 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 560 2064 248 ) ( 560 2304 248 ) ( 560 2304 120 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 544 2304 248 ) ( 544 2064 248 ) ( 544 2064 120 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 560 2080 120 ) ( 544 2080 120 ) ( 552 2080 248 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 536 2112 120 ) ( 568 2112 120 ) ( 552 2112 248 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2229 +{ +( 560 2176 56 ) ( 544 2176 56 ) ( 544 2064 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 544 2064 128 ) ( 544 2176 128 ) ( 560 2176 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 560 2064 120 ) ( 560 2176 120 ) ( 560 2176 -8 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 544 2176 120 ) ( 544 2064 120 ) ( 544 2064 -8 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 560 2080 -8 ) ( 544 2080 -8 ) ( 552 2080 120 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 536 2112 56 ) ( 568 2112 56 ) ( 552 2112 120 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 2230 +{ +( 560 2304 128 ) ( 544 2304 128 ) ( 544 2064 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 544 2064 256 ) ( 544 2304 256 ) ( 560 2304 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 560 2064 248 ) ( 560 2304 248 ) ( 560 2304 120 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 544 2304 248 ) ( 544 2064 248 ) ( 544 2064 120 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 544 2272 120 ) ( 560 2272 120 ) ( 552 2272 248 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 568 2240 120 ) ( 536 2240 120 ) ( 552 2240 248 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2231 +{ +( 560 2176 56 ) ( 544 2176 56 ) ( 544 2064 56 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 544 2064 128 ) ( 544 2176 128 ) ( 560 2176 128 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 560 2064 120 ) ( 560 2176 120 ) ( 560 2176 -8 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 544 2176 120 ) ( 544 2064 120 ) ( 544 2064 -8 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 544 2272 -8 ) ( 560 2272 -8 ) ( 552 2272 120 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +( 568 2240 56 ) ( 536 2240 56 ) ( 552 2240 120 ) bricks/c_pv_m2 0 32 0 1 1 0 0 0 +} +// brush 2232 +{ +( 592 2272 8 ) ( 560 2272 8 ) ( 560 2080 8 ) bricks/c_sr_m9a 0 0 0 1 1 0 0 0 +( 560 2080 56 ) ( 560 2272 56 ) ( 592 2272 56 ) bricks/c_sr_m2 -24 32 90 1 1 0 0 0 +( 560 2080 24 ) ( 592 2080 24 ) ( 592 2080 8 ) bricks/c_sr_m9a 0 -8 0 1 1 0 0 0 +( 608 2080 24 ) ( 608 2272 24 ) ( 608 2272 8 ) bricks/c_pv_m2 0 -40 0 1 1 0 0 0 +( 592 2272 24 ) ( 560 2272 24 ) ( 560 2272 8 ) bricks/c_sr_m9a 0 -8 0 1 1 0 0 0 +( 544 2272 24 ) ( 544 2080 24 ) ( 544 2080 8 ) bricks/c_sr_m9a 0 -8 0 1 1 0 0 0 +} +// brush 2233 +{ +( 640 2304 128 ) ( 624 2304 128 ) ( 624 2064 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 624 2064 256 ) ( 624 2304 256 ) ( 640 2304 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 640 2064 256 ) ( 640 2304 256 ) ( 640 2304 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 560 2304 256 ) ( 560 2064 256 ) ( 560 2064 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 664 2064 128 ) ( 608 2064 128 ) ( 636 2064 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 624 2080 128 ) ( 640 2080 128 ) ( 632 2080 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2234 +{ +( 640 2176 -8 ) ( 624 2176 -8 ) ( 624 2064 -8 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 624 2064 128 ) ( 624 2176 128 ) ( 640 2176 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 640 2064 128 ) ( 640 2176 128 ) ( 640 2176 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 560 2176 120 ) ( 560 2064 120 ) ( 560 2064 -8 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 664 2064 -8 ) ( 608 2064 -8 ) ( 636 2064 120 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 624 2080 -8 ) ( 640 2080 -8 ) ( 632 2080 120 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2235 +{ +( 640 2176 -8 ) ( 624 2176 -8 ) ( 624 2064 -8 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 624 2064 128 ) ( 624 2176 128 ) ( 640 2176 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 640 2064 128 ) ( 640 2176 128 ) ( 640 2176 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 560 2176 120 ) ( 560 2064 120 ) ( 560 2064 -8 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 616 2304 -8 ) ( 648 2304 -8 ) ( 632 2304 120 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 640 2272 -8 ) ( 624 2272 -8 ) ( 632 2272 120 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2236 +{ +( 640 2304 128 ) ( 624 2304 128 ) ( 624 2064 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 624 2064 256 ) ( 624 2304 256 ) ( 640 2304 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 640 2064 256 ) ( 640 2304 256 ) ( 640 2304 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 560 2304 256 ) ( 560 2064 256 ) ( 560 2064 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 616 2304 128 ) ( 648 2304 128 ) ( 632 2304 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 640 2272 128 ) ( 624 2272 128 ) ( 632 2272 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2237 +{ +( 1080 2432 384 ) ( 1160 2432 384 ) ( 1160 2432 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1248 2688 384 ) ( 1248 2944 384 ) ( 1248 2944 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1168 2944 384 ) ( 1088 2944 384 ) ( 1088 2944 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1136 2944 384 ) ( 1136 2688 384 ) ( 1136 2688 256 ) bricks/b_mf_v2 0 64 0 1 1 0 0 0 +( 1104 2432 288 ) ( 1128 2432 288 ) ( 1116 2944 288 ) bricks/b_mf_v2 0 64 0 1 1 0 0 0 +( 1152 2432 448 ) ( 1136 2432 448 ) ( 1144 2944 448 ) bricks/b_mf_v2 0 64 0 1 1 0 0 0 +} +// brush 2238 +{ +( 1088 2688 512 ) ( 1088 2944 512 ) ( 1168 2944 512 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1080 2432 384 ) ( 1160 2432 384 ) ( 1160 2432 256 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1248 2688 384 ) ( 1248 2944 384 ) ( 1248 2944 256 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1168 2944 384 ) ( 1088 2944 384 ) ( 1088 2944 256 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1136 2944 384 ) ( 1136 2688 384 ) ( 1136 2688 256 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1136 2432 448 ) ( 1152 2432 448 ) ( 1144 2944 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 2239 +{ +( 1152 2816 0 ) ( 1024 2816 0 ) ( 1024 2272 0 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 1024 2272 8 ) ( 1024 2816 8 ) ( 1152 2816 8 ) bricks/c_sr_mb1 0 0 90 1 1 0 0 0 +( 1032 1536 16 ) ( 1160 1536 16 ) ( 1160 1536 0 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 1152 2944 16 ) ( 1152 2944 0 ) ( 1152 2272 0 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 1024 2944 0 ) ( 1024 2944 16 ) ( 1024 1536 16 ) bricks/c_sr_mb1 0 -8 0 1 1 0 0 0 +( 1160 2688 128 ) ( 1120 2688 128 ) ( 1160 2688 0 ) bricks/c_sr_mb1 0 -8 0 1 1 0 0 0 +} +// brush 2240 +{ +( 1120 2688 256 ) ( 1120 2944 256 ) ( 1152 2944 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2688 232 ) ( 1152 2688 232 ) ( 1152 2688 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1152 2688 232 ) ( 1152 2944 232 ) ( 1152 2944 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2944 232 ) ( 1120 2688 232 ) ( 1120 2688 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2704 224 ) ( 1120 2688 224 ) ( 1152 2696 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2784 224 ) ( 1152 2784 224 ) ( 1136 2784 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2241 +{ +( 1152 2944 128 ) ( 1120 2944 128 ) ( 1120 2688 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1152 2688 232 ) ( 1152 2944 232 ) ( 1152 2944 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2944 232 ) ( 1120 2688 232 ) ( 1120 2688 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2688 256 ) ( 1120 2704 256 ) ( 1152 2696 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2848 128 ) ( 1128 2848 128 ) ( 1124 2848 160 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1152 2784 128 ) ( 1120 2784 128 ) ( 1136 2784 160 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2242 +{ +( 1152 2944 128 ) ( 1120 2944 128 ) ( 1120 2688 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2688 232 ) ( 1152 2688 232 ) ( 1152 2688 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1152 2688 232 ) ( 1152 2944 232 ) ( 1152 2944 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2944 232 ) ( 1120 2688 232 ) ( 1120 2688 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2688 160 ) ( 1120 2704 160 ) ( 1152 2696 160 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2784 128 ) ( 1152 2784 128 ) ( 1136 2784 160 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2243 +{ +( 1160 2704 0 ) ( 1120 2704 0 ) ( 1120 2688 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1120 2688 128 ) ( 1120 2704 128 ) ( 1160 2704 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1120 2688 128 ) ( 1160 2688 128 ) ( 1160 2688 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1248 2688 128 ) ( 1248 2704 128 ) ( 1248 2704 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1120 2704 128 ) ( 1120 2688 128 ) ( 1120 2688 0 ) bricks/c_pv_m2gg 0 0 0 1 1 0 0 0 +( 1120 2944 0 ) ( 1152 2944 0 ) ( 1136 2944 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2244 +{ +( 1152 2944 128 ) ( 1120 2944 128 ) ( 1120 2688 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1248 2688 232 ) ( 1248 2944 232 ) ( 1248 2944 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1152 2944 232 ) ( 1120 2944 232 ) ( 1120 2944 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2944 232 ) ( 1120 2688 232 ) ( 1120 2688 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2688 160 ) ( 1120 2704 160 ) ( 1152 2696 160 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1128 2848 128 ) ( 1120 2848 128 ) ( 1124 2848 160 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2245 +{ +( 1120 2688 256 ) ( 1120 2944 256 ) ( 1152 2944 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1248 2688 232 ) ( 1248 2944 232 ) ( 1248 2944 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1152 2944 232 ) ( 1120 2944 232 ) ( 1120 2944 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2944 232 ) ( 1120 2688 232 ) ( 1120 2688 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2704 224 ) ( 1120 2688 224 ) ( 1152 2696 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1128 2848 224 ) ( 1120 2848 224 ) ( 1124 2848 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2246 +{ +( 1152 2672 8 ) ( 1136 2672 8 ) ( 1136 2448 8 ) bricks/c_sr_m2 -40 0 90 1 1 0 0 0 +( 1136 2448 32 ) ( 1136 2672 32 ) ( 1152 2672 32 ) bricks/c_sr_m2 -40 56 90 1 1 0 0 0 +( 1136 2432 32 ) ( 1152 2432 32 ) ( 1152 2432 16 ) bricks/c_sr_m2 -40 0 90 1 1 0 0 0 +( 1152 2448 32 ) ( 1152 2672 32 ) ( 1152 2672 16 ) bricks/c_sr_m2 -40 0 90 1 1 0 0 0 +( 1152 2688 32 ) ( 1136 2688 32 ) ( 1136 2688 16 ) bricks/c_sr_m2 -32 8 90 1 1 0 0 0 +( 1104 2672 32 ) ( 1104 2448 32 ) ( 1104 2448 16 ) bricks/c_sr_m2 -40 0 0 1 1 0 0 0 +} +// brush 2247 +{ +( 1168 2624 16 ) ( 1088 2624 16 ) ( 1088 2496 16 ) bricks/c_sr_mb1 0 -16 90 1 1 0 0 0 +( 1088 2496 32 ) ( 1088 2624 32 ) ( 1168 2624 32 ) bricks/c_sr_m2 -40 56 90 1 1 0 0 0 +( 1088 2448 32 ) ( 1168 2448 32 ) ( 1168 2448 16 ) bricks/c_sr_mb1 0 -16 90 1 1 0 0 0 +( 1168 2496 32 ) ( 1168 2624 32 ) ( 1168 2624 16 ) bricks/c_sr_mb1 0 -16 90 1 1 0 0 0 +( 1168 2672 32 ) ( 1088 2672 32 ) ( 1088 2672 16 ) bricks/c_sr_mb1 0 -16 90 1 1 0 0 0 +( 1152 2624 32 ) ( 1152 2496 32 ) ( 1152 2496 16 ) bricks/c_sr_mb1 0 -16 90 1 1 0 0 0 +} +// brush 2248 +{ +( 1168 2688 16 ) ( 1152 2688 16 ) ( 1152 2432 16 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 1152 2432 128 ) ( 1168 2432 128 ) ( 1168 2432 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 1168 2432 128 ) ( 1168 2688 128 ) ( 1168 2688 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 1152 2688 128 ) ( 1152 2432 128 ) ( 1152 2432 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 1152 2496 16 ) ( 1168 2496 16 ) ( 1160 2496 144 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 1168 2432 144 ) ( 1152 2432 144 ) ( 1160 2688 144 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +} +// brush 2249 +{ +( 1168 2688 16 ) ( 1152 2688 16 ) ( 1152 2432 16 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 1168 2432 128 ) ( 1168 2688 128 ) ( 1168 2688 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 1168 2688 128 ) ( 1152 2688 128 ) ( 1152 2688 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 1152 2688 128 ) ( 1152 2432 128 ) ( 1152 2432 0 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 1176 2624 16 ) ( 1144 2624 16 ) ( 1160 2624 144 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +( 1168 2432 144 ) ( 1152 2432 144 ) ( 1160 2688 144 ) bricks/b_sr_20a 0 32 0 1 1 0 0 0 +} +// brush 2250 +{ +( 1184 2688 32 ) ( 1168 2688 32 ) ( 1168 2432 32 ) floors/dr_st_m1d 64 32 0 1 1 0 0 0 +( 1184 2432 144 ) ( 1184 2688 144 ) ( 1184 2688 16 ) floors/dr_st_m1d 64 32 0 1 1 0 0 0 +( 1168 2688 144 ) ( 1168 2432 144 ) ( 1168 2432 16 ) floors/dr_st_m1d 64 32 0 1 1 0 0 0 +( 1184 2432 144 ) ( 1168 2432 144 ) ( 1176 2688 144 ) floors/dr_st_m1d 64 32 0 1 1 0 0 0 +( 1160 2560 32 ) ( 1192 2560 32 ) ( 1176 2560 160 ) floors/dr_st_m1d 64 32 0 1 1 0 0 0 +( 1184 2496 32 ) ( 1168 2496 32 ) ( 1176 2496 160 ) floors/dr_st_m1d 64 32 0 1 1 0 0 0 +} +// brush 2251 +{ +( 1152 2432 256 ) ( 1152 2688 256 ) ( 1168 2688 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1152 2432 128 ) ( 1168 2432 128 ) ( 1168 2432 0 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1168 2432 128 ) ( 1168 2688 128 ) ( 1168 2688 0 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1168 2688 128 ) ( 1152 2688 128 ) ( 1152 2688 0 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 1152 2688 128 ) ( 1152 2432 128 ) ( 1152 2432 0 ) bricks/b_sr_20b 0 -16 0 1 1 0 0 0 +( 1152 2432 144 ) ( 1168 2432 144 ) ( 1160 2688 144 ) bricks/b_sr_22 0 0 270 1 1 0 0 0 +} +// brush 2252 +{ +( 1152 2688 232 ) ( 1152 2944 232 ) ( 1152 2944 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1128 2944 232 ) ( 1128 2688 232 ) ( 1128 2688 224 ) props/w_sr_ba12 32 32 0 1 1 0 1 200 +( 1120 2704 160 ) ( 1120 2688 160 ) ( 1152 2696 160 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2688 224 ) ( 1120 2704 224 ) ( 1152 2696 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1136 2720 160 ) ( 1120 2720 160 ) ( 1128 2720 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1128 2784 160 ) ( 1152 2784 160 ) ( 1140 2784 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2253 +{ +( 1120 2688 232 ) ( 1152 2688 232 ) ( 1152 2688 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1152 2688 232 ) ( 1152 2944 232 ) ( 1152 2944 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2944 232 ) ( 1120 2688 232 ) ( 1120 2688 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2704 160 ) ( 1120 2688 160 ) ( 1152 2696 160 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2688 224 ) ( 1120 2704 224 ) ( 1152 2696 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2720 160 ) ( 1136 2720 160 ) ( 1128 2720 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2254 +{ +( 1152 2688 232 ) ( 1152 2944 232 ) ( 1152 2944 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1128 2944 232 ) ( 1128 2688 232 ) ( 1128 2688 224 ) props/w_sr_ba12 32 32 0 1 1 0 1 100 +( 1120 2704 160 ) ( 1120 2688 160 ) ( 1152 2696 160 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2688 224 ) ( 1120 2704 224 ) ( 1152 2696 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2912 160 ) ( 1144 2912 160 ) ( 1132 2912 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1144 2848 160 ) ( 1120 2848 160 ) ( 1132 2848 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2255 +{ +( 1248 2688 232 ) ( 1248 2944 232 ) ( 1248 2944 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1152 2944 232 ) ( 1120 2944 232 ) ( 1120 2944 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2944 232 ) ( 1120 2688 232 ) ( 1120 2688 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2704 160 ) ( 1120 2688 160 ) ( 1152 2696 160 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1120 2688 224 ) ( 1120 2704 224 ) ( 1152 2696 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 1144 2912 160 ) ( 1120 2912 160 ) ( 1132 2912 224 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2256 +{ +( 1160 2451 0 ) ( 1136 2451 0 ) ( 1136 2432 0 ) bricks/c_pv_m2 16 0 0 1 1 0 0 0 +( 1136 2432 128 ) ( 1136 2451 128 ) ( 1160 2451 128 ) bricks/c_pv_m2 16 0 0 1 1 0 0 0 +( 1136 2432 128 ) ( 1160 2432 128 ) ( 1160 2432 112 ) bricks/c_pv_m2 16 0 0 1 1 0 0 0 +( 1865 2451 128 ) ( 1841 2451 128 ) ( 1841 2451 112 ) bricks/c_pv_m2 16 0 0 1 1 0 0 0 +( 1136 2451 128 ) ( 1136 2432 128 ) ( 1136 2432 112 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1152 2688 0 ) ( 1152 2672 0 ) ( 1152 2680 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2257 +{ +( 1136 2560 256 ) ( 1136 2432 256 ) ( 1136 2432 128 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +( 1136 2432 256 ) ( 1160 2432 256 ) ( 1160 2432 128 ) bricks/b_mf_v3 8 0 0 1 1 0 0 0 +( 1160 2451 48 ) ( 1160 2451 64 ) ( 1136 2451 56 ) bricks/b_mf_v5 16 0 0 1 1 0 0 0 +( 1160 2432 128 ) ( 1160 2480 128 ) ( 1136 2456 128 ) bricks/b_mf_v3 8 0 0 1 -1 0 0 0 +( 1160 2448 144 ) ( 1160 2437 144 ) ( 1136 2442 144 ) bricks/b_mf_v3 8 0 0 1 -1 0 0 0 +( 1152 2688 128 ) ( 1152 2672 128 ) ( 1152 2680 144 ) bricks/b_mf_v3 -8 0 0 1 -1 0 0 0 +} +// brush 2258 +{ +( 1136 2560 256 ) ( 1136 2432 256 ) ( 1136 2432 128 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +( 1136 2432 256 ) ( 1160 2432 256 ) ( 1160 2432 128 ) bricks/b_mf_v3 8 0 0 1 1 0 0 0 +( 1160 2455 160 ) ( 1136 2455 160 ) ( 1136 2451 144 ) bricks/b_mf_v5 16 0 0 1 1 0 0 0 +( 1160 2451 144 ) ( 1136 2451 144 ) ( 1136 2432 144 ) bricks/b_mf_v3 8 0 0 1 -1 0 0 0 +( 1136 2455 160 ) ( 1160 2455 160 ) ( 1160 2432 160 ) bricks/b_mf_v3 8 0 0 1 -1 0 0 0 +( 1152 2688 144 ) ( 1152 2672 144 ) ( 1152 2680 160 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +} +// brush 2259 +{ +( 1136 2560 256 ) ( 1136 2432 256 ) ( 1136 2432 128 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +( 1136 2432 256 ) ( 1160 2432 256 ) ( 1160 2432 128 ) bricks/b_mf_v3 8 0 0 1 1 0 0 0 +( 1160 2462 176 ) ( 1136 2462 176 ) ( 1136 2455 160 ) bricks/b_mf_v5 16 0 0 1 1 0 0 0 +( 1160 2439 160 ) ( 1160 2448 160 ) ( 1136 2443 160 ) bricks/b_mf_v3 8 0 0 1 -1 0 0 0 +( 1136 2462 176 ) ( 1160 2462 176 ) ( 1160 2432 176 ) bricks/b_mf_v3 8 0 0 1 -1 0 0 0 +( 1152 2688 160 ) ( 1152 2672 160 ) ( 1152 2680 176 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +} +// brush 2260 +{ +( 1136 2560 256 ) ( 1136 2432 256 ) ( 1136 2432 128 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +( 1136 2432 256 ) ( 1160 2432 256 ) ( 1160 2432 128 ) bricks/b_mf_v3 8 0 0 1 1 0 0 0 +( 1160 2471 192 ) ( 1136 2471 192 ) ( 1136 2462 176 ) bricks/b_mf_v5 16 0 0 1 1 0 0 0 +( 1160 2440 176 ) ( 1160 2448 176 ) ( 1136 2444 176 ) bricks/b_mf_v3 8 0 0 1 -1 0 0 0 +( 1136 2471 192 ) ( 1160 2471 192 ) ( 1160 2432 192 ) bricks/b_mf_v3 8 0 0 1 -1 0 0 0 +( 1152 2688 176 ) ( 1152 2672 176 ) ( 1152 2680 192 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +} +// brush 2261 +{ +( 1136 2560 256 ) ( 1136 2432 256 ) ( 1136 2432 128 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +( 1136 2432 256 ) ( 1160 2432 256 ) ( 1160 2432 128 ) bricks/b_mf_v3 8 0 0 1 1 0 0 0 +( 1160 2485 208 ) ( 1136 2485 208 ) ( 1136 2471 192 ) bricks/b_mf_v5 16 0 0 1 1 0 0 0 +( 1160 2440 192 ) ( 1160 2456 192 ) ( 1136 2448 192 ) bricks/b_mf_v3 8 0 0 1 -1 0 0 0 +( 1136 2485 208 ) ( 1160 2485 208 ) ( 1160 2432 208 ) bricks/b_mf_v3 8 0 0 1 -1 0 0 0 +( 1152 2688 192 ) ( 1152 2672 192 ) ( 1152 2680 208 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +} +// brush 2262 +{ +( 1136 2560 256 ) ( 1136 2432 256 ) ( 1136 2432 128 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +( 1136 2432 256 ) ( 1160 2432 256 ) ( 1160 2432 128 ) bricks/b_mf_v3 8 0 0 1 1 0 0 0 +( 1160 2510 224 ) ( 1136 2510 224 ) ( 1136 2485 208 ) bricks/b_mf_v5 16 0 0 1 1 0 0 0 +( 1160 2440 208 ) ( 1160 2456 208 ) ( 1136 2448 208 ) bricks/b_mf_v3 8 0 0 1 -1 0 0 0 +( 1136 2510 224 ) ( 1160 2510 224 ) ( 1160 2432 224 ) bricks/b_mf_v3 8 0 0 1 -1 0 0 0 +( 1152 2688 208 ) ( 1152 2672 208 ) ( 1152 2680 224 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +} +// brush 2263 +{ +( 1136 2560 256 ) ( 1136 2432 256 ) ( 1136 2432 128 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +( 1136 2432 256 ) ( 1160 2432 256 ) ( 1160 2432 128 ) bricks/b_mf_v3 8 0 0 1 1 0 0 0 +( 1160 2544 236 ) ( 1136 2544 236 ) ( 1136 2510 224 ) bricks/b_mf_v5 16 0 0 1 1 0 0 0 +( 1160 2424 224 ) ( 1160 2456 224 ) ( 1136 2440 224 ) bricks/b_mf_v3 8 0 0 1 -1 0 0 0 +( 1136 2544 236 ) ( 1160 2544 236 ) ( 1160 2432 236 ) bricks/b_mf_v3 8 0 0 1 -1 0 0 0 +( 1152 2688 224 ) ( 1152 2672 224 ) ( 1152 2680 236 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +} +// brush 2264 +{ +( 1160 2688 256 ) ( 1136 2688 256 ) ( 1136 2688 128 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1136 2688 256 ) ( 1136 2560 256 ) ( 1136 2560 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( 2008 2576 236 ) ( 2032 2576 236 ) ( 2032 2610 224 ) bricks/b_mf_v5 16 0 0 1 1 0 0 0 +( 1136 2696 224 ) ( 1136 2664 224 ) ( 1160 2680 224 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1160 2576 236 ) ( 1136 2576 236 ) ( 1136 2688 236 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1152 2688 224 ) ( 1152 2672 224 ) ( 1152 2680 236 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +} +// brush 2265 +{ +( 1160 2688 256 ) ( 1136 2688 256 ) ( 1136 2688 128 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1136 2688 256 ) ( 1136 2560 256 ) ( 1136 2560 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( 2008 2610 224 ) ( 2032 2610 224 ) ( 2032 2635 208 ) bricks/b_mf_v5 16 0 0 1 1 0 0 0 +( 1136 2680 208 ) ( 1136 2664 208 ) ( 1160 2672 208 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1160 2610 224 ) ( 1136 2610 224 ) ( 1136 2688 224 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1152 2688 208 ) ( 1152 2672 208 ) ( 1152 2680 224 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +} +// brush 2266 +{ +( 1160 2688 256 ) ( 1136 2688 256 ) ( 1136 2688 128 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1136 2688 256 ) ( 1136 2560 256 ) ( 1136 2560 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( 2008 2635 208 ) ( 2032 2635 208 ) ( 2032 2649 192 ) bricks/b_mf_v5 16 0 0 1 1 0 0 0 +( 1136 2680 192 ) ( 1136 2664 192 ) ( 1160 2672 192 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1160 2635 208 ) ( 1136 2635 208 ) ( 1136 2688 208 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1152 2688 192 ) ( 1152 2672 192 ) ( 1152 2680 208 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +} +// brush 2267 +{ +( 1160 2688 256 ) ( 1136 2688 256 ) ( 1136 2688 128 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1136 2688 256 ) ( 1136 2560 256 ) ( 1136 2560 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( 2008 2649 192 ) ( 2032 2649 192 ) ( 2032 2658 176 ) bricks/b_mf_v5 16 0 0 1 1 0 0 0 +( 1136 2680 176 ) ( 1136 2672 176 ) ( 1160 2676 176 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1160 2649 192 ) ( 1136 2649 192 ) ( 1136 2688 192 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1152 2688 176 ) ( 1152 2672 176 ) ( 1152 2680 192 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +} +// brush 2268 +{ +( 1160 2688 256 ) ( 1136 2688 256 ) ( 1136 2688 128 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1136 2688 256 ) ( 1136 2560 256 ) ( 1136 2560 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( 2008 2658 176 ) ( 2032 2658 176 ) ( 2032 2665 160 ) bricks/b_mf_v5 16 0 0 1 1 0 0 0 +( 1136 2681 160 ) ( 1136 2672 160 ) ( 1160 2677 160 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1160 2658 176 ) ( 1136 2658 176 ) ( 1136 2688 176 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1152 2688 160 ) ( 1152 2672 160 ) ( 1152 2680 176 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +} +// brush 2269 +{ +( 1160 2688 256 ) ( 1136 2688 256 ) ( 1136 2688 128 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1136 2688 256 ) ( 1136 2560 256 ) ( 1136 2560 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( 2008 2669 48 ) ( 2008 2669 64 ) ( 2032 2669 56 ) bricks/b_mf_v5 16 0 0 1 1 0 0 0 +( 1136 2688 128 ) ( 1136 2640 128 ) ( 1160 2664 128 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1136 2672 144 ) ( 1136 2683 144 ) ( 1160 2678 144 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1152 2688 128 ) ( 1152 2672 128 ) ( 1152 2680 144 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +} +// brush 2270 +{ +( 1160 2688 256 ) ( 1136 2688 256 ) ( 1136 2688 128 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1136 2688 256 ) ( 1136 2560 256 ) ( 1136 2560 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( 2008 2665 160 ) ( 2032 2665 160 ) ( 2032 2669 144 ) bricks/b_mf_v5 16 0 0 1 1 0 0 0 +( 1136 2669 144 ) ( 1160 2669 144 ) ( 1160 2688 144 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1160 2665 160 ) ( 1136 2665 160 ) ( 1136 2688 160 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1152 2688 144 ) ( 1152 2672 144 ) ( 1152 2680 160 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +} +// brush 2271 +{ +( 1160 2688 0 ) ( 1136 2688 0 ) ( 1136 2669 0 ) bricks/b_mf_v3 -8 0 0 1 1 0 0 0 +( 1136 2669 128 ) ( 1136 2688 128 ) ( 1160 2688 128 ) bricks/b_mf_v3 -8 0 0 1 1 0 0 0 +( 1648 2669 128 ) ( 1672 2669 128 ) ( 1672 2669 112 ) bricks/c_pv_m2 16 0 0 1 1 0 0 0 +( 1160 2688 128 ) ( 1136 2688 128 ) ( 1136 2688 112 ) bricks/b_mf_v3 -8 -16 0 1 1 0 0 0 +( 1136 2688 128 ) ( 1136 2669 128 ) ( 1136 2669 112 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 1152 2688 0 ) ( 1152 2672 0 ) ( 1152 2680 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2272 +{ +( 1136 2432 256 ) ( 1136 2560 256 ) ( 1160 2560 256 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1136 2560 256 ) ( 1136 2432 256 ) ( 1136 2432 128 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +( 1496 2432 47 ) ( 1496 2432 63 ) ( 1520 2432 55 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1136 2536 236 ) ( 1136 2520 236 ) ( 1160 2528 236 ) bricks/b_mf_v5 16 0 0 1 1 0 0 0 +( 1136 2560 236 ) ( 1152 2560 236 ) ( 1144 2560 256 ) bricks/b_mf_v5 16 0 0 1 1 0 0 0 +( 1152 2688 236 ) ( 1152 2672 236 ) ( 1152 2680 256 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +} +// brush 2273 +{ +( 1136 2560 256 ) ( 1136 2688 256 ) ( 1160 2688 256 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1160 2688 256 ) ( 1136 2688 256 ) ( 1136 2688 128 ) bricks/b_mf_v3 -16 0 0 -1 1 0 0 0 +( 1136 2688 256 ) ( 1136 2560 256 ) ( 1136 2560 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( 1136 2664 236 ) ( 1136 2648 236 ) ( 1160 2656 236 ) bricks/b_mf_v5 16 0 0 1 1 0 0 0 +( 1152 2560 236 ) ( 1136 2560 236 ) ( 1144 2560 256 ) bricks/b_mf_v5 16 0 0 1 1 0 0 0 +( 1152 2688 236 ) ( 1152 2672 236 ) ( 1152 2680 256 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +} +// brush 2274 +{ +( 512 2048 128 ) ( 496 2048 128 ) ( 496 1872 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 512 1872 256 ) ( 512 2048 256 ) ( 512 2048 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 496 2048 256 ) ( 496 1872 256 ) ( 496 1872 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 496 2016 128 ) ( 512 2016 128 ) ( 504 2016 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 520 1952 128 ) ( 488 1952 128 ) ( 504 1952 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 512 1952 160 ) ( 496 1952 160 ) ( 504 2016 160 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 2275 +{ +( 496 1872 256 ) ( 496 2048 256 ) ( 496 2048 128 ) props/w_sr_ba7b 32 32 0 1 1 0 1 1000 +( 480 2048 256 ) ( 480 1872 256 ) ( 480 1872 128 ) props/w_sr_ba7b 32 32 0 1 1 0 1 1000 +( 480 2016 128 ) ( 496 2016 128 ) ( 488 2016 256 ) props/w_sr_ba7b 32 32 0 1 1 0 1 1000 +( 504 1952 128 ) ( 472 1952 128 ) ( 488 1952 256 ) props/w_sr_ba7b 32 32 0 1 1 0 1 1000 +( 496 1952 224 ) ( 480 1952 224 ) ( 488 2016 224 ) props/w_sr_ba7b 32 32 0 1 1 0 1 1000 +( 480 1952 160 ) ( 496 1952 160 ) ( 488 2016 160 ) props/w_sr_ba7b 32 32 0 1 1 0 1 1000 +} +// brush 2276 +{ +( 496 1872 256 ) ( 496 2048 256 ) ( 512 2048 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 512 1872 256 ) ( 512 2048 256 ) ( 512 2048 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 496 2048 256 ) ( 496 1872 256 ) ( 496 1872 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 496 2016 128 ) ( 512 2016 128 ) ( 504 2016 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 520 1952 128 ) ( 488 1952 128 ) ( 504 1952 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 496 1952 224 ) ( 512 1952 224 ) ( 504 2016 224 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 2277 +{ +( 512 2048 128 ) ( 496 2048 128 ) ( 496 1872 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 496 1872 256 ) ( 496 2048 256 ) ( 512 2048 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 496 1872 256 ) ( 512 1872 256 ) ( 512 1872 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 512 1872 256 ) ( 512 2048 256 ) ( 512 2048 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 496 2048 256 ) ( 496 1872 256 ) ( 496 1872 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 488 1952 128 ) ( 520 1952 128 ) ( 504 1952 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 2278 +{ +( 512 2048 128 ) ( 496 2048 128 ) ( 496 1872 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 496 1872 256 ) ( 496 2048 256 ) ( 512 2048 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 512 1872 256 ) ( 512 2048 256 ) ( 512 2048 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 512 2048 256 ) ( 496 2048 256 ) ( 496 2048 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 496 2048 256 ) ( 496 1872 256 ) ( 496 1872 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 512 2016 128 ) ( 496 2016 128 ) ( 504 2016 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 2279 +{ +( 640 2464 -16 ) ( 624 2464 -16 ) ( 624 2432 -16 ) bricks/c_pv_m2 0 -16 0 1 1 0 0 0 +( 624 2432 48 ) ( 624 2464 48 ) ( 640 2464 48 ) bricks/c_pv_m2 0 -16 0 1 1 0 0 0 +( 624 2432 48 ) ( 640 2432 48 ) ( 640 2432 -16 ) bricks/c_pv_m2 0 -16 0 1 1 0 0 0 +( 640 2432 48 ) ( 640 2464 48 ) ( 640 2464 -16 ) bricks/c_pv_m2 0 -16 0 1 1 0 0 0 +( 640 2464 48 ) ( 624 2464 48 ) ( 624 2464 -16 ) bricks/c_pv_m2 0 -16 0 1 1 0 0 0 +( 624 2464 48 ) ( 624 2432 48 ) ( 624 2432 -16 ) bricks/c_pv_m2 0 -16 0 1 1 0 0 0 +} +// brush 2280 +{ +( 640 2560 -16 ) ( 624 2560 -16 ) ( 624 2528 -16 ) bricks/c_pv_m2 0 -16 0 1 1 0 0 0 +( 624 2528 48 ) ( 624 2560 48 ) ( 640 2560 48 ) bricks/c_pv_m2 0 -16 0 1 1 0 0 0 +( 624 2528 48 ) ( 640 2528 48 ) ( 640 2528 -16 ) bricks/c_pv_m2 0 -16 0 1 1 0 0 0 +( 640 2528 48 ) ( 640 2560 48 ) ( 640 2560 -16 ) bricks/c_pv_m2 0 -16 0 1 1 0 0 0 +( 640 2560 48 ) ( 624 2560 48 ) ( 624 2560 -16 ) bricks/c_pv_m2 0 -16 0 1 1 0 0 0 +( 624 2560 48 ) ( 624 2528 48 ) ( 624 2528 -16 ) bricks/c_pv_m2 0 -16 0 1 1 0 0 0 +} +// brush 2281 +{ +( 640 2560 -16 ) ( 624 2560 -16 ) ( 624 2432 -16 ) props/w_sr_ba7b 0 0 0 1 1 0 0 0 +( 624 2432 48 ) ( 624 2560 48 ) ( 640 2560 48 ) props/w_sr_ba7b 0 0 0 1 1 0 0 0 +( 624 2464 48 ) ( 640 2464 48 ) ( 640 2464 -32 ) props/w_sr_ba7b 0 -16 0 1 1 0 0 0 +( 632 2432 48 ) ( 632 2560 48 ) ( 632 2560 -32 ) props/w_sr_ba7b 0 48 0 1 1 0 1 3000 +( 640 2528 48 ) ( 624 2528 48 ) ( 624 2528 -32 ) props/w_sr_ba7b 0 -16 0 1 1 0 0 0 +( 624 2560 48 ) ( 624 2432 48 ) ( 624 2432 -32 ) props/w_sr_ba7b 0 -16 0 1 1 0 0 0 +} +// brush 2282 +{ +( 768 1984 0 ) ( 640 1984 0 ) ( 640 1792 0 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 640 1792 8 ) ( 640 1984 8 ) ( 768 1984 8 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 768 2688 16 ) ( 768 2688 0 ) ( 768 1664 0 ) bricks/c_sr_mb1 296 118 180 -1 1 0 0 0 +( 640 2560 0 ) ( 696 2560 0 ) ( 668 2560 16 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 672 2432 0 ) ( 640 2432 0 ) ( 656 2432 16 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 704 2536 -8 ) ( 704 2560 -8 ) ( 704 2548 8 ) bricks/c_pv_m2 112 -16 0 1 1 0 0 0 +} +// brush 2283 +{ +( 768 2560 0 ) ( 768 2944 0 ) ( 640 2944 0 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 640 2048 8 ) ( 640 2240 8 ) ( 768 2240 8 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 768 2944 0 ) ( 768 2560 0 ) ( 768 2560 8 ) bricks/c_sr_mb1 0 -8 0 1 1 0 0 0 +( 776 2944 0 ) ( 776 2944 16 ) ( 648 2944 16 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 640 2240 8 ) ( 640 2048 8 ) ( 640 2048 0 ) bricks/c_sr_mb1 0 0 270 1 1 0 0 0 +( 688 2560 0 ) ( 632 2560 0 ) ( 660 2560 16 ) bricks/c_pv_m2 -16 -16 0 1 1 0 0 0 +} +// brush 2284 +{ +( 656 2176 8 ) ( 640 2176 8 ) ( 640 2064 8 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 640 2064 128 ) ( 640 2176 128 ) ( 656 2176 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 656 2056 120 ) ( 656 2168 120 ) ( 656 2168 -8 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 640 2176 120 ) ( 640 2064 120 ) ( 640 2064 -8 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 704 2816 -8 ) ( 608 2816 -8 ) ( 656 2816 120 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 632 2944 -8 ) ( 664 2944 -8 ) ( 648 2944 120 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2285 +{ +( 656 2304 128 ) ( 640 2304 128 ) ( 640 2064 128 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 640 2064 256 ) ( 640 2304 256 ) ( 656 2304 256 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 656 2056 264 ) ( 656 2296 264 ) ( 656 2296 136 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 640 2304 248 ) ( 640 2064 248 ) ( 640 2064 120 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 704 2816 128 ) ( 608 2816 128 ) ( 656 2816 256 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 632 2944 128 ) ( 664 2944 128 ) ( 648 2944 256 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +} +// brush 2286 +{ +( 656 2304 256 ) ( 640 2304 256 ) ( 640 2064 256 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 640 2064 384 ) ( 640 2304 384 ) ( 656 2304 384 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 656 2056 384 ) ( 656 2296 384 ) ( 656 2296 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 640 2304 384 ) ( 640 2064 384 ) ( 640 2064 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 704 2816 256 ) ( 608 2816 256 ) ( 656 2816 384 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 632 2944 256 ) ( 664 2944 256 ) ( 648 2944 384 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +} +// brush 2287 +{ +( 656 2304 384 ) ( 640 2304 384 ) ( 640 2064 384 ) bricks/s_sr_m12a -16 0 0 1 1 0 0 0 +( 640 2064 448 ) ( 640 2304 448 ) ( 656 2304 448 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 656 2056 448 ) ( 656 2296 448 ) ( 656 2296 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 640 2304 448 ) ( 640 2064 448 ) ( 640 2064 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 704 2816 384 ) ( 608 2816 384 ) ( 656 2816 448 ) bricks/s_sr_m12a -16 0 0 1 1 0 0 0 +( 632 2944 384 ) ( 664 2944 384 ) ( 648 2944 448 ) bricks/s_sr_m12a -16 0 0 1 1 0 0 0 +} +// brush 2288 +{ +( 632 2784 192 ) ( 624 2784 192 ) ( 624 2720 192 ) props/w_sr_m6d -16 64 0 1 1 0 0 0 +( 624 2720 320 ) ( 624 2784 320 ) ( 632 2784 320 ) props/w_sr_m6d -16 64 0 1 1 0 0 0 +( 624 2720 256 ) ( 632 2720 256 ) ( 632 2720 192 ) props/w_sr_m6d -16 64 0 1 1 0 0 0 +( 632 2720 256 ) ( 632 2784 256 ) ( 632 2784 192 ) props/w_sr_m6d 0 64 0 1 1 0 0 0 +( 632 2784 256 ) ( 624 2784 256 ) ( 624 2784 192 ) props/w_sr_m6d -16 64 0 1 1 0 0 0 +( 624 2784 256 ) ( 624 2720 256 ) ( 624 2720 192 ) props/w_sr_m6d 0 64 0 1 1 0 0 0 +} +// brush 2289 +{ +( 640 2728 192 ) ( 624 2728 192 ) ( 624 2688 192 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 624 2688 256 ) ( 624 2728 256 ) ( 640 2728 256 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 624 2688 256 ) ( 640 2688 256 ) ( 640 2688 192 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 640 2688 256 ) ( 640 2728 256 ) ( 640 2728 192 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 640 2720 256 ) ( 624 2720 256 ) ( 624 2720 192 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 624 2728 256 ) ( 624 2688 256 ) ( 624 2688 192 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2290 +{ +( 640 2816 192 ) ( 624 2816 192 ) ( 624 2776 192 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 624 2776 256 ) ( 624 2816 256 ) ( 640 2816 256 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 624 2784 256 ) ( 640 2784 256 ) ( 640 2784 192 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 640 2776 256 ) ( 640 2816 256 ) ( 640 2816 192 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 640 2816 256 ) ( 624 2816 256 ) ( 624 2816 192 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 624 2816 256 ) ( 624 2776 256 ) ( 624 2776 192 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2291 +{ +( 640 2728 256 ) ( 624 2728 256 ) ( 624 2688 256 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 624 2688 320 ) ( 624 2728 320 ) ( 640 2728 320 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 624 2688 320 ) ( 640 2688 320 ) ( 640 2688 256 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 640 2688 320 ) ( 640 2728 320 ) ( 640 2728 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 640 2720 320 ) ( 624 2720 320 ) ( 624 2720 256 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 624 2728 320 ) ( 624 2688 320 ) ( 624 2688 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2292 +{ +( 640 2816 256 ) ( 624 2816 256 ) ( 624 2776 256 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 624 2776 320 ) ( 624 2816 320 ) ( 640 2816 320 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 624 2784 320 ) ( 640 2784 320 ) ( 640 2784 256 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 640 2776 320 ) ( 640 2816 320 ) ( 640 2816 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 640 2816 320 ) ( 624 2816 320 ) ( 624 2816 256 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 624 2816 320 ) ( 624 2776 320 ) ( 624 2776 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2293 +{ +( 640 2816 320 ) ( 624 2816 320 ) ( 624 2576 320 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 624 2576 384 ) ( 624 2816 384 ) ( 640 2816 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 640 2576 384 ) ( 640 2816 384 ) ( 640 2816 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 624 2816 384 ) ( 624 2576 384 ) ( 624 2576 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 664 2688 256 ) ( 608 2688 256 ) ( 636 2688 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 616 2816 256 ) ( 648 2816 256 ) ( 632 2816 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2294 +{ +( 640 2816 128 ) ( 624 2816 128 ) ( 624 2576 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 624 2576 192 ) ( 624 2816 192 ) ( 640 2816 192 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 640 2576 248 ) ( 640 2816 248 ) ( 640 2816 120 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 624 2816 256 ) ( 624 2576 256 ) ( 624 2576 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 664 2688 128 ) ( 608 2688 128 ) ( 636 2688 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 616 2816 128 ) ( 648 2816 128 ) ( 632 2816 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2295 +{ +( 640 2560 128 ) ( 624 2560 128 ) ( 624 2320 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 624 2320 192 ) ( 624 2560 192 ) ( 640 2560 192 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 640 2320 256 ) ( 640 2560 256 ) ( 640 2560 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 624 2560 264 ) ( 624 2320 264 ) ( 624 2320 136 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 664 2432 128 ) ( 608 2432 128 ) ( 636 2432 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 616 2560 128 ) ( 648 2560 128 ) ( 632 2560 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2296 +{ +( 640 2560 320 ) ( 624 2560 320 ) ( 624 2320 320 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 624 2320 384 ) ( 624 2560 384 ) ( 640 2560 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 640 2320 384 ) ( 640 2560 384 ) ( 640 2560 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 624 2560 384 ) ( 624 2320 384 ) ( 624 2320 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 664 2432 256 ) ( 608 2432 256 ) ( 636 2432 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 616 2560 256 ) ( 648 2560 256 ) ( 632 2560 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2297 +{ +( 640 2560 256 ) ( 624 2560 256 ) ( 624 2520 256 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 624 2520 320 ) ( 624 2560 320 ) ( 640 2560 320 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 624 2528 320 ) ( 640 2528 320 ) ( 640 2528 256 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 640 2520 320 ) ( 640 2560 320 ) ( 640 2560 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 640 2560 320 ) ( 624 2560 320 ) ( 624 2560 256 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 624 2560 320 ) ( 624 2520 320 ) ( 624 2520 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2298 +{ +( 640 2472 256 ) ( 624 2472 256 ) ( 624 2432 256 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 624 2432 320 ) ( 624 2472 320 ) ( 640 2472 320 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 624 2432 320 ) ( 640 2432 320 ) ( 640 2432 256 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 640 2432 320 ) ( 640 2472 320 ) ( 640 2472 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 640 2464 320 ) ( 624 2464 320 ) ( 624 2464 256 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 624 2472 320 ) ( 624 2432 320 ) ( 624 2432 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2299 +{ +( 640 2560 192 ) ( 624 2560 192 ) ( 624 2520 192 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 624 2520 256 ) ( 624 2560 256 ) ( 640 2560 256 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 624 2528 256 ) ( 640 2528 256 ) ( 640 2528 192 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 640 2520 256 ) ( 640 2560 256 ) ( 640 2560 192 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 640 2560 256 ) ( 624 2560 256 ) ( 624 2560 192 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 624 2560 256 ) ( 624 2520 256 ) ( 624 2520 192 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2300 +{ +( 640 2472 192 ) ( 624 2472 192 ) ( 624 2432 192 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 624 2432 256 ) ( 624 2472 256 ) ( 640 2472 256 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 624 2432 256 ) ( 640 2432 256 ) ( 640 2432 192 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 640 2432 256 ) ( 640 2472 256 ) ( 640 2472 192 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 640 2464 256 ) ( 624 2464 256 ) ( 624 2464 192 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 624 2472 256 ) ( 624 2432 256 ) ( 624 2432 192 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2301 +{ +( 632 2528 192 ) ( 624 2528 192 ) ( 624 2464 192 ) props/w_sr_m6e -24 0 0 1 1 0 0 0 +( 624 2464 320 ) ( 624 2528 320 ) ( 632 2528 320 ) props/w_sr_m6e -24 0 0 1 1 0 0 0 +( 624 2464 256 ) ( 632 2464 256 ) ( 632 2464 192 ) props/w_sr_m6e -24 0 0 1 1 0 0 0 +( 632 2464 256 ) ( 632 2528 256 ) ( 632 2528 192 ) props/w_sr_m6e 0 64 0 1 1 0 0 0 +( 632 2528 256 ) ( 624 2528 256 ) ( 624 2528 192 ) props/w_sr_m6e -24 0 0 1 1 0 0 0 +( 624 2528 256 ) ( 624 2464 256 ) ( 624 2464 192 ) props/w_sr_m6e 0 0 0 1 1 0 0 0 +} +// brush 2302 +{ +( 640 2304 384 ) ( 624 2304 384 ) ( 624 2064 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 624 2064 448 ) ( 624 2304 448 ) ( 640 2304 448 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 640 2056 448 ) ( 640 2296 448 ) ( 640 2296 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 624 2304 448 ) ( 624 2064 448 ) ( 624 2064 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 656 2688 384 ) ( 616 2688 384 ) ( 636 2688 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 592 2816 384 ) ( 688 2816 384 ) ( 640 2816 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 2303 +{ +( 640 1920 48 ) ( 624 1920 48 ) ( 624 1808 48 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 624 1808 128 ) ( 624 1920 128 ) ( 640 1920 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 640 1800 128 ) ( 640 1912 128 ) ( 640 1912 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 624 1920 120 ) ( 624 1808 120 ) ( 624 1808 -8 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 656 2432 -8 ) ( 616 2432 -8 ) ( 636 2432 120 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 592 2560 -8 ) ( 688 2560 -8 ) ( 640 2560 120 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2304 +{ +( 656 2304 384 ) ( 640 2304 384 ) ( 640 2064 384 ) bricks/s_sr_m12a -16 0 0 1 1 0 0 0 +( 640 2064 448 ) ( 640 2304 448 ) ( 656 2304 448 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 656 2056 448 ) ( 656 2296 448 ) ( 656 2296 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 624 2304 448 ) ( 624 2064 448 ) ( 624 2064 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 656 2560 384 ) ( 640 2560 384 ) ( 648 2560 448 ) bricks/s_sr_m12a -16 0 0 1 1 0 0 0 +( 632 2688 384 ) ( 672 2688 384 ) ( 652 2688 448 ) bricks/s_sr_m12a -16 0 0 1 1 0 0 0 +} +// brush 2305 +{ +( 656 2304 256 ) ( 640 2304 256 ) ( 640 2064 256 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 640 2064 384 ) ( 640 2304 384 ) ( 656 2304 384 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 656 2056 384 ) ( 656 2296 384 ) ( 656 2296 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 640 2304 384 ) ( 640 2064 384 ) ( 640 2064 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 656 2560 256 ) ( 640 2560 256 ) ( 648 2560 384 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 632 2688 256 ) ( 672 2688 256 ) ( 652 2688 384 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +} +// brush 2306 +{ +( 656 2304 128 ) ( 640 2304 128 ) ( 640 2064 128 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 640 2064 256 ) ( 640 2304 256 ) ( 656 2304 256 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 656 2056 256 ) ( 656 2296 256 ) ( 656 2296 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 640 2304 256 ) ( 640 2064 256 ) ( 640 2064 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 656 2560 128 ) ( 640 2560 128 ) ( 648 2560 256 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +( 632 2688 128 ) ( 672 2688 128 ) ( 652 2688 256 ) bricks/b_mf_v2 -16 0 0 1 1 0 0 0 +} +// brush 2307 +{ +( 640 2304 384 ) ( 624 2304 384 ) ( 624 2064 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 624 2064 448 ) ( 624 2304 448 ) ( 640 2304 448 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 640 2056 448 ) ( 640 2296 448 ) ( 640 2296 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 624 2304 448 ) ( 624 2064 448 ) ( 624 2064 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 640 2432 384 ) ( 624 2432 384 ) ( 632 2432 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 624 2560 384 ) ( 640 2560 384 ) ( 632 2560 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 2308 +{ +( 656 2304 384 ) ( 640 2304 384 ) ( 640 2064 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 640 2064 448 ) ( 640 2304 448 ) ( 656 2304 448 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 656 2056 448 ) ( 656 2296 448 ) ( 656 2296 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 624 2304 448 ) ( 624 2064 448 ) ( 624 2064 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 664 2304 384 ) ( 632 2304 384 ) ( 648 2304 448 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 640 2432 384 ) ( 656 2432 384 ) ( 648 2432 448 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +} +// brush 2309 +{ +( 656 2304 256 ) ( 640 2304 256 ) ( 640 2064 256 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 640 2064 384 ) ( 640 2304 384 ) ( 656 2304 384 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 656 2056 384 ) ( 656 2296 384 ) ( 656 2296 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 640 2304 384 ) ( 640 2064 384 ) ( 640 2064 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 664 2304 256 ) ( 632 2304 256 ) ( 648 2304 384 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +( 640 2432 256 ) ( 656 2432 256 ) ( 648 2432 384 ) bricks/b_mf_v2a -16 0 0 1 1 0 0 0 +} +// brush 2310 +{ +( 656 2304 128 ) ( 640 2304 128 ) ( 640 2064 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 640 2064 256 ) ( 640 2304 256 ) ( 656 2304 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 656 2056 256 ) ( 656 2296 256 ) ( 656 2296 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 640 2304 256 ) ( 640 2064 256 ) ( 640 2064 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 664 2304 128 ) ( 632 2304 128 ) ( 648 2304 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 640 2432 128 ) ( 656 2432 128 ) ( 648 2432 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2311 +{ +( 656 2176 8 ) ( 640 2176 8 ) ( 640 2064 8 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 640 2064 128 ) ( 640 2176 128 ) ( 656 2176 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 656 2056 120 ) ( 656 2168 120 ) ( 656 2168 -8 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 640 2176 128 ) ( 640 2064 128 ) ( 640 2064 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 664 2304 -8 ) ( 632 2304 -8 ) ( 648 2304 120 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 640 2432 -8 ) ( 656 2432 -8 ) ( 648 2432 120 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2312 +{ +( 1152 3136 -16 ) ( 640 3136 -16 ) ( 640 2944 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 2944 0 ) ( 640 3136 0 ) ( 1152 3136 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 2944 0 ) ( 1152 2944 0 ) ( 1152 2944 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1152 2944 0 ) ( 1152 3136 0 ) ( 1152 3136 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 1152 3264 0 ) ( 640 3264 0 ) ( 640 3264 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 3136 0 ) ( 640 2944 0 ) ( 640 2944 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2313 +{ +( 640 2304 384 ) ( 624 2304 384 ) ( 624 2064 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 624 2064 448 ) ( 624 2304 448 ) ( 640 2304 448 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 640 2064 448 ) ( 640 2304 448 ) ( 640 2304 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 624 2304 448 ) ( 624 2064 448 ) ( 624 2064 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 664 2064 384 ) ( 608 2064 384 ) ( 636 2064 448 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 616 2304 384 ) ( 648 2304 384 ) ( 632 2304 448 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +} +// brush 2314 +{ +( 1152 1712 368 ) ( 1152 1600 368 ) ( 1176 1600 368 ) bricks/b_sr_21 0 32 270 1 1 0 0 0 +( 1176 1600 400 ) ( 1152 1600 400 ) ( 1152 1712 400 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1248 1592 368 ) ( 1248 1704 368 ) ( 1248 1704 336 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1152 1712 368 ) ( 1152 1600 368 ) ( 1152 1600 336 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1216 1664 336 ) ( 1208 1664 336 ) ( 1212 1664 400 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1208 1792 336 ) ( 1216 1792 336 ) ( 1212 1792 400 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +} +// brush 2315 +{ +( 1152 1968 368 ) ( 1152 1856 368 ) ( 1176 1856 368 ) bricks/b_sr_21 0 32 270 1 1 0 0 0 +( 1176 1856 400 ) ( 1152 1856 400 ) ( 1152 1968 400 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1248 1848 368 ) ( 1248 1960 368 ) ( 1248 1960 336 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1152 1968 368 ) ( 1152 1856 368 ) ( 1152 1856 336 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1216 1920 336 ) ( 1208 1920 336 ) ( 1212 1920 400 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1208 2048 336 ) ( 1216 2048 336 ) ( 1212 2048 400 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +} +// brush 2316 +{ +( 1152 2224 368 ) ( 1152 2112 368 ) ( 1176 2112 368 ) bricks/b_sr_21 0 32 270 1 1 0 0 0 +( 1176 2112 400 ) ( 1152 2112 400 ) ( 1152 2224 400 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1248 2104 368 ) ( 1248 2216 368 ) ( 1248 2216 336 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1152 2224 368 ) ( 1152 2112 368 ) ( 1152 2112 336 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1216 2176 336 ) ( 1208 2176 336 ) ( 1212 2176 400 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1208 2304 336 ) ( 1216 2304 336 ) ( 1212 2304 400 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +} +// brush 2317 +{ +( 1152 1712 400 ) ( 1152 1600 400 ) ( 1176 1600 400 ) bricks/b_mf_v2a 0 -96 0 1 1 0 0 0 +( 1176 1600 528 ) ( 1152 1600 528 ) ( 1152 1712 528 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1248 1592 496 ) ( 1248 1704 496 ) ( 1248 1704 464 ) bricks/b_mf_v2a 0 16 0 1 1 0 0 0 +( 1152 1712 496 ) ( 1152 1600 496 ) ( 1152 1600 464 ) bricks/b_mf_v2a 0 16 0 1 1 0 0 0 +( 1216 1664 464 ) ( 1208 1664 464 ) ( 1212 1664 512 ) bricks/b_mf_v2a 0 16 0 1 1 0 0 0 +( 1208 1792 464 ) ( 1216 1792 464 ) ( 1212 1792 512 ) bricks/b_mf_v2a 0 16 0 1 1 0 0 0 +} +// brush 2318 +{ +( 1152 2224 400 ) ( 1152 2112 400 ) ( 1176 2112 400 ) bricks/b_mf_v2a 0 -96 0 1 1 0 0 0 +( 1176 2112 528 ) ( 1152 2112 528 ) ( 1152 2224 528 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1248 2104 496 ) ( 1248 2216 496 ) ( 1248 2216 464 ) bricks/b_mf_v2a 0 16 0 1 1 0 0 0 +( 1152 2224 496 ) ( 1152 2112 496 ) ( 1152 2112 464 ) bricks/b_mf_v2a 0 16 0 1 1 0 0 0 +( 1216 2176 464 ) ( 1208 2176 464 ) ( 1212 2176 512 ) bricks/b_mf_v2a 0 16 0 1 1 0 0 0 +( 1208 2304 464 ) ( 1216 2304 464 ) ( 1212 2304 512 ) bricks/b_mf_v2a 0 16 0 1 1 0 0 0 +} +// brush 2319 +{ +( 1152 1968 400 ) ( 1152 1856 400 ) ( 1176 1856 400 ) bricks/b_mf_v2a 0 -96 0 1 1 0 0 0 +( 1176 1856 528 ) ( 1152 1856 528 ) ( 1152 1968 528 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 1248 1848 496 ) ( 1248 1960 496 ) ( 1248 1960 464 ) bricks/b_mf_v2a 0 16 0 1 1 0 0 0 +( 1152 1968 496 ) ( 1152 1856 496 ) ( 1152 1856 464 ) bricks/b_mf_v2a 0 16 0 1 1 0 0 0 +( 1216 1920 464 ) ( 1208 1920 464 ) ( 1212 1920 512 ) bricks/b_mf_v2a 0 16 0 1 1 0 0 0 +( 1208 2048 464 ) ( 1216 2048 464 ) ( 1212 2048 512 ) bricks/b_mf_v2a 0 16 0 1 1 0 0 0 +} +// brush 2320 +{ +( 1216 2176 72 ) ( 1152 2176 72 ) ( 1152 2304 72 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1248 2176 328 ) ( 1248 2304 328 ) ( 1248 2304 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1216 2304 328 ) ( 1152 2304 328 ) ( 1152 2304 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1152 2304 328 ) ( 1152 2176 328 ) ( 1152 2176 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1152 2176 328 ) ( 1216 2176 328 ) ( 1216 2176 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1216 2176 8 ) ( 1216 2184 8 ) ( 1152 2180 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 2321 +{ +( 1120 2224 8 ) ( 1120 2112 8 ) ( 1144 2112 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1248 2072 40 ) ( 1248 2184 40 ) ( 1248 2184 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1136 2432 40 ) ( 1112 2432 40 ) ( 1112 2432 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1120 2224 40 ) ( 1120 2112 40 ) ( 1120 2112 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1128 2304 -120 ) ( 1120 2304 -120 ) ( 1124 2304 -56 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1184 2320 72 ) ( 1184 2304 72 ) ( 1120 2312 72 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 2322 +{ +( 1152 2304 72 ) ( 1152 2176 72 ) ( 1216 2176 72 ) bricks/b_mf_v2a 0 -32 0 1 1 0 0 0 +( 1216 2176 208 ) ( 1152 2176 208 ) ( 1152 2304 208 ) bricks/b_mf_v2a 0 -32 0 1 1 0 0 0 +( 1248 2176 400 ) ( 1248 2304 400 ) ( 1248 2304 80 ) bricks/b_mf_v2a 0 96 0 1 1 0 0 0 +( 1216 2304 400 ) ( 1152 2304 400 ) ( 1152 2304 80 ) bricks/b_mf_v2a 0 96 0 1 1 0 0 0 +( 1152 2304 400 ) ( 1152 2176 400 ) ( 1152 2176 80 ) bricks/b_mf_v2a 0 80 0 1 1 0 0 0 +( 1152 2176 400 ) ( 1216 2176 400 ) ( 1216 2176 80 ) bricks/b_mf_v2a 0 96 0 1 1 0 0 0 +} +// brush 2323 +{ +( 1152 2224 208 ) ( 1152 2112 208 ) ( 1176 2112 208 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1176 2112 240 ) ( 1152 2112 240 ) ( 1152 2224 240 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1248 2104 208 ) ( 1248 2216 208 ) ( 1248 2216 176 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1152 2224 208 ) ( 1152 2112 208 ) ( 1152 2112 176 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1216 2176 176 ) ( 1208 2176 176 ) ( 1212 2176 240 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1208 2304 176 ) ( 1216 2304 176 ) ( 1212 2304 240 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +} +// brush 2324 +{ +( 1152 2224 240 ) ( 1152 2112 240 ) ( 1176 2112 240 ) props/w_sr_m6d 0 -96 0 1 1 0 0 0 +( 1176 2112 368 ) ( 1152 2112 368 ) ( 1152 2224 368 ) props/w_sr_m6d 0 -96 0 1 1 0 0 0 +( 1248 2104 272 ) ( 1248 2216 272 ) ( 1248 2216 240 ) props/w_sr_m6d 0 -16 0 1 1 0 0 0 +( 1168 2224 272 ) ( 1168 2112 272 ) ( 1168 2112 240 ) props/w_sr_m6d 0 -16 0 1 1 0 0 0 +( 1232 2176 240 ) ( 1224 2176 240 ) ( 1228 2176 304 ) props/w_sr_m6d 0 -16 0 1 1 0 0 0 +( 1208 2304 240 ) ( 1216 2304 240 ) ( 1212 2304 304 ) props/w_sr_m6d 0 -16 0 1 1 0 0 0 +} +// brush 2325 +{ +( 1152 1968 240 ) ( 1152 1856 240 ) ( 1176 1856 240 ) props/w_sr_m6d 0 -96 0 1 1 0 0 0 +( 1176 1856 368 ) ( 1152 1856 368 ) ( 1152 1968 368 ) props/w_sr_m6d 0 -96 0 1 1 0 0 0 +( 1248 1848 272 ) ( 1248 1960 272 ) ( 1248 1960 240 ) props/w_sr_m6d 0 -16 0 1 1 0 0 0 +( 1168 1968 272 ) ( 1168 1856 272 ) ( 1168 1856 240 ) props/w_sr_m6d 0 -16 0 1 1 0 1 50 +( 1216 1920 240 ) ( 1208 1920 240 ) ( 1212 1920 304 ) props/w_sr_m6d 0 -16 0 1 1 0 0 0 +( 1208 2048 240 ) ( 1216 2048 240 ) ( 1212 2048 304 ) props/w_sr_m6d 0 -16 0 1 1 0 0 0 +} +// brush 2326 +{ +( 1152 1968 208 ) ( 1152 1856 208 ) ( 1176 1856 208 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1176 1856 240 ) ( 1152 1856 240 ) ( 1152 1968 240 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1248 1848 208 ) ( 1248 1960 208 ) ( 1248 1960 176 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1152 1968 208 ) ( 1152 1856 208 ) ( 1152 1856 176 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1216 1920 176 ) ( 1208 1920 176 ) ( 1212 1920 240 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1208 2048 176 ) ( 1216 2048 176 ) ( 1212 2048 240 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +} +// brush 2327 +{ +( 1152 2048 72 ) ( 1152 1920 72 ) ( 1216 1920 72 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1216 1920 208 ) ( 1152 1920 208 ) ( 1152 2048 208 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1248 1920 400 ) ( 1248 2048 400 ) ( 1248 2048 80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1216 2048 400 ) ( 1152 2048 400 ) ( 1152 2048 80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 1152 2048 400 ) ( 1152 1920 400 ) ( 1152 1920 80 ) bricks/b_mf_v2a 0 80 0 1 1 0 0 0 +( 1152 1920 400 ) ( 1216 1920 400 ) ( 1216 1920 80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2328 +{ +( 1144 1856 416 ) ( 1120 1856 416 ) ( 1120 1968 416 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1248 1848 48 ) ( 1248 1960 48 ) ( 1248 1960 16 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1136 2176 112 ) ( 1112 2176 112 ) ( 1112 2176 80 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1120 1968 48 ) ( 1120 1856 48 ) ( 1120 1856 16 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1128 2048 -96 ) ( 1120 2048 -96 ) ( 1124 2048 -32 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1184 2048 72 ) ( 1184 2064 72 ) ( 1120 2056 72 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +} +// brush 2329 +{ +( 1120 1968 8 ) ( 1120 1856 8 ) ( 1144 1856 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1248 1848 40 ) ( 1248 1960 40 ) ( 1248 1960 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1136 2176 40 ) ( 1112 2176 40 ) ( 1112 2176 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1120 1968 40 ) ( 1120 1856 40 ) ( 1120 1856 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1128 2048 -120 ) ( 1120 2048 -120 ) ( 1124 2048 -56 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1184 2064 72 ) ( 1184 2048 72 ) ( 1120 2056 72 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 2330 +{ +( 1216 1920 72 ) ( 1152 1920 72 ) ( 1152 2048 72 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1248 1920 328 ) ( 1248 2048 328 ) ( 1248 2048 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1216 2048 328 ) ( 1152 2048 328 ) ( 1152 2048 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1152 2048 328 ) ( 1152 1920 328 ) ( 1152 1920 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1152 1920 328 ) ( 1216 1920 328 ) ( 1216 1920 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1216 1920 8 ) ( 1216 1928 8 ) ( 1152 1924 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 2331 +{ +( 1120 1456 8 ) ( 1120 1344 8 ) ( 1144 1344 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1248 1336 40 ) ( 1248 1448 40 ) ( 1248 1448 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1136 1664 40 ) ( 1112 1664 40 ) ( 1112 1664 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1120 1456 40 ) ( 1120 1344 40 ) ( 1120 1344 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1128 1536 8 ) ( 1120 1536 8 ) ( 1124 1536 72 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1184 1552 72 ) ( 1184 1528 72 ) ( 1120 1540 72 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 2332 +{ +( 1144 1344 416 ) ( 1120 1344 416 ) ( 1120 1456 416 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1248 1336 48 ) ( 1248 1448 48 ) ( 1248 1448 16 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1136 1664 48 ) ( 1112 1664 48 ) ( 1112 1664 16 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1120 1456 48 ) ( 1120 1344 48 ) ( 1120 1344 16 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1132 1520 16 ) ( 1124 1520 16 ) ( 1128 1520 80 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1184 1528 72 ) ( 1184 1552 72 ) ( 1120 1540 72 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +} +// brush 2333 +{ +( 1216 1664 72 ) ( 1152 1664 72 ) ( 1152 1792 72 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1248 1664 328 ) ( 1248 1792 328 ) ( 1248 1792 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1216 1792 328 ) ( 1152 1792 328 ) ( 1152 1792 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1152 1792 328 ) ( 1152 1664 328 ) ( 1152 1664 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1152 1664 328 ) ( 1216 1664 328 ) ( 1216 1664 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1216 1664 8 ) ( 1216 1672 8 ) ( 1152 1668 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 2334 +{ +( 1120 1712 8 ) ( 1120 1600 8 ) ( 1144 1600 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1248 1592 40 ) ( 1248 1704 40 ) ( 1248 1704 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1136 1920 40 ) ( 1112 1920 40 ) ( 1112 1920 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1120 1712 40 ) ( 1120 1600 40 ) ( 1120 1600 8 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1128 1792 -120 ) ( 1120 1792 -120 ) ( 1124 1792 -56 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 1184 1808 72 ) ( 1184 1792 72 ) ( 1120 1800 72 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 2335 +{ +( 1144 1600 416 ) ( 1120 1600 416 ) ( 1120 1712 416 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1248 1592 48 ) ( 1248 1704 48 ) ( 1248 1704 16 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1136 1920 48 ) ( 1112 1920 48 ) ( 1112 1920 16 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1120 1712 48 ) ( 1120 1600 48 ) ( 1120 1600 16 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1128 1792 -96 ) ( 1120 1792 -96 ) ( 1124 1792 -32 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +( 1184 1792 72 ) ( 1184 1808 72 ) ( 1120 1800 72 ) bricks/b_sr_20 0 32 0 1 1 0 0 0 +} +// brush 2336 +{ +( 1152 1792 72 ) ( 1152 1664 72 ) ( 1216 1664 72 ) bricks/b_mf_v2a 0 -32 0 1 1 0 0 0 +( 1216 1664 208 ) ( 1152 1664 208 ) ( 1152 1792 208 ) bricks/b_mf_v2a 0 -32 0 1 1 0 0 0 +( 1248 1664 400 ) ( 1248 1792 400 ) ( 1248 1792 80 ) bricks/b_mf_v2a 0 96 0 1 1 0 0 0 +( 1216 1792 400 ) ( 1152 1792 400 ) ( 1152 1792 80 ) bricks/b_mf_v2a 0 96 0 1 1 0 0 0 +( 1152 1792 400 ) ( 1152 1664 400 ) ( 1152 1664 80 ) bricks/b_mf_v2a 0 80 0 1 1 0 0 0 +( 1152 1664 400 ) ( 1216 1664 400 ) ( 1216 1664 80 ) bricks/b_mf_v2a 0 96 0 1 1 0 0 0 +} +// brush 2337 +{ +( 1152 1712 208 ) ( 1152 1600 208 ) ( 1176 1600 208 ) bricks/b_sr_21 0 0 0 1 1 0 0 0 +( 1176 1600 240 ) ( 1152 1600 240 ) ( 1152 1712 240 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1248 1592 208 ) ( 1248 1704 208 ) ( 1248 1704 176 ) bricks/b_sr_21 0 0 0 1 1 0 0 0 +( 1152 1712 208 ) ( 1152 1600 208 ) ( 1152 1600 176 ) bricks/b_sr_21 0 16 0 1 1 0 0 0 +( 1216 1664 176 ) ( 1208 1664 176 ) ( 1212 1664 240 ) bricks/b_sr_21 0 0 0 1 1 0 0 0 +( 1200 1792 176 ) ( 1208 1792 176 ) ( 1204 1792 240 ) bricks/b_sr_21 0 0 0 1 1 0 0 0 +} +// brush 2338 +{ +( 1152 1712 240 ) ( 1152 1600 240 ) ( 1176 1600 240 ) props/w_sr_m6d 0 -96 0 1 1 0 0 0 +( 1176 1600 368 ) ( 1152 1600 368 ) ( 1152 1712 368 ) props/w_sr_m6d 0 -96 0 1 1 0 0 0 +( 1248 1592 272 ) ( 1248 1704 272 ) ( 1248 1704 240 ) props/w_sr_m6d 0 -16 0 1 1 0 0 0 +( 1168 1712 272 ) ( 1168 1600 272 ) ( 1168 1600 240 ) props/w_sr_m6d 0 -16 0 1 1 0 1 2500 +( 1216 1664 240 ) ( 1208 1664 240 ) ( 1212 1664 304 ) props/w_sr_m6d 0 -16 0 1 1 0 0 0 +( 1208 1792 240 ) ( 1216 1792 240 ) ( 1212 1792 304 ) props/w_sr_m6d 0 -16 0 1 1 0 0 0 +} +// brush 2339 +{ +( 656 2064 128 ) ( 512 2064 128 ) ( 512 2048 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 2048 256 ) ( 512 2064 256 ) ( 656 2064 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 2048 256 ) ( 656 2048 256 ) ( 656 2048 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 640 2048 264 ) ( 640 2064 264 ) ( 640 2064 136 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 656 2064 256 ) ( 512 2064 256 ) ( 512 2064 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 512 2064 256 ) ( 512 2048 256 ) ( 512 2048 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2340 +{ +( 656 2064 -8 ) ( 512 2064 -8 ) ( 512 2048 -8 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 512 2048 128 ) ( 512 2064 128 ) ( 656 2064 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 512 2048 120 ) ( 656 2048 120 ) ( 656 2048 -8 ) bricks/c_pv_m2pp 0 0 0 1 1 0 0 0 +( 640 2048 128 ) ( 640 2064 128 ) ( 640 2064 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 656 2064 120 ) ( 512 2064 120 ) ( 512 2064 -8 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 512 2064 120 ) ( 512 2048 120 ) ( 512 2048 -8 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2341 +{ +( 1088 1536 448 ) ( 624 1536 448 ) ( 624 1520 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 624 1520 576 ) ( 624 1536 576 ) ( 1088 1536 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 624 1520 512 ) ( 1088 1520 512 ) ( 1088 1520 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1264 1512 512 ) ( 1264 1528 512 ) ( 1264 1528 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 1088 1536 512 ) ( 624 1536 512 ) ( 624 1536 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 624 1536 512 ) ( 624 1520 512 ) ( 624 1520 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2342 +{ +( 640 2048 -16 ) ( 512 2048 -16 ) ( 512 1856 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 512 1856 0 ) ( 512 2048 0 ) ( 640 2048 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 512 1856 0 ) ( 640 1856 0 ) ( 640 1856 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 1856 0 ) ( 640 2048 0 ) ( 640 2048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 2048 0 ) ( 512 2048 0 ) ( 512 2048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 512 2048 0 ) ( 512 1856 0 ) ( 512 1856 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2343 +{ +( 512 2048 256 ) ( 496 2048 256 ) ( 496 1872 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 496 1872 320 ) ( 496 2048 320 ) ( 512 2048 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( 496 1872 320 ) ( 512 1872 320 ) ( 512 1872 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 512 1872 320 ) ( 512 2048 320 ) ( 512 2048 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( 512 2048 320 ) ( 496 2048 320 ) ( 496 2048 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -64 2056 320 ) ( -64 1880 320 ) ( -64 1880 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +} +// brush 2344 +{ +( 512 2048 0 ) ( 496 2048 0 ) ( 496 1872 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 496 1872 128 ) ( 496 2048 128 ) ( 512 2048 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 496 1872 128 ) ( 512 1872 128 ) ( 512 1872 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 512 1872 128 ) ( 512 2048 128 ) ( 512 2048 0 ) bricks/b_sr_20ag 0 0 0 1 1 0 0 0 +( 512 2048 128 ) ( 496 2048 128 ) ( 496 2048 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( 496 2048 128 ) ( 496 1872 128 ) ( 496 1872 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2345 +{ +( 640 1712 448 ) ( 624 1712 448 ) ( 624 1536 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 624 1536 576 ) ( 624 1712 576 ) ( 640 1712 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 624 1536 512 ) ( 640 1536 512 ) ( 640 1536 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 640 1536 512 ) ( 640 1712 512 ) ( 640 1712 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 640 1712 512 ) ( 624 1712 512 ) ( 624 1712 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 624 1712 544 ) ( 624 1536 544 ) ( 624 1536 480 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2346 +{ +( 640 1712 384 ) ( 624 1712 384 ) ( 624 1536 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 624 1536 448 ) ( 624 1712 448 ) ( 640 1712 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 624 1536 448 ) ( 640 1536 448 ) ( 640 1536 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 640 1536 448 ) ( 640 1712 448 ) ( 640 1712 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 640 1712 448 ) ( 624 1712 448 ) ( 624 1712 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( 624 1712 448 ) ( 624 1536 448 ) ( 624 1536 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 2347 +{ +( 640 1712 256 ) ( 624 1712 256 ) ( 624 1536 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 624 1536 384 ) ( 624 1712 384 ) ( 640 1712 384 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 620 1520 384 ) ( 636 1520 384 ) ( 636 1520 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 640 1536 384 ) ( 640 1712 384 ) ( 640 1712 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 640 1712 384 ) ( 624 1712 384 ) ( 624 1712 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 624 1712 384 ) ( 624 1536 384 ) ( 624 1536 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2348 +{ +( 640 1712 128 ) ( 624 1712 128 ) ( 624 1536 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 624 1536 256 ) ( 624 1712 256 ) ( 640 1712 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 624 1536 256 ) ( 640 1536 256 ) ( 640 1536 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 640 1536 256 ) ( 640 1712 256 ) ( 640 1712 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 640 1712 256 ) ( 624 1712 256 ) ( 624 1712 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 624 1712 256 ) ( 624 1536 256 ) ( 624 1536 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2349 +{ +( 640 1712 0 ) ( 624 1712 0 ) ( 624 1536 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 624 1536 128 ) ( 624 1712 128 ) ( 640 1712 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 624 1536 128 ) ( 640 1536 128 ) ( 640 1536 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 640 1536 128 ) ( 640 1712 128 ) ( 640 1712 0 ) bricks/c_pv_m2gg 0 0 0 1 1 0 0 0 +( 640 1712 128 ) ( 624 1712 128 ) ( 624 1712 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 624 1712 128 ) ( 624 1536 128 ) ( 624 1536 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2350 +{ +( 512 1872 128 ) ( -88 1872 128 ) ( -88 1848 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -88 1856 256 ) ( 512 1856 256 ) ( 512 1856 128 ) bricks/b_sr_20b 4 0 0 1 1 0 0 0 +( 512 1872 256 ) ( -88 1872 256 ) ( -88 1872 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 0 1856 128 ) ( 0 1872 128 ) ( 0 1864 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 64 1872 128 ) ( 64 1856 128 ) ( 64 1864 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 24 1856 160 ) ( 0 1856 160 ) ( 12 1872 160 ) bricks/b_sr_21 0 0 180 1 1 0 0 0 +} +// brush 2351 +{ +( -88 1872 256 ) ( 512 1872 256 ) ( 512 1872 128 ) props/w_sr_ba7b 0 32 0 1 1 0 1 10000 +( 512 1888 256 ) ( -88 1888 256 ) ( -88 1888 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( 0 1872 128 ) ( 0 1888 128 ) ( 0 1880 256 ) bricks/b_sr_20 -16 0 0 1 1 0 0 0 +( 64 1888 128 ) ( 64 1872 128 ) ( 64 1880 256 ) bricks/b_sr_20 -16 0 0 1 1 0 0 0 +( 16 1872 224 ) ( -8 1872 224 ) ( 4 1888 224 ) bricks/b_sr_20 0 16 0 1 1 0 0 0 +( 0 1872 160 ) ( 24 1872 160 ) ( 12 1888 160 ) bricks/b_sr_20 0 16 0 1 1 0 0 0 +} +// brush 2352 +{ +( -88 1848 256 ) ( -88 1872 256 ) ( 512 1872 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -88 1856 256 ) ( 512 1856 256 ) ( 512 1856 128 ) bricks/b_sr_20b 4 0 0 1 1 0 0 0 +( 512 1872 256 ) ( -88 1872 256 ) ( -88 1872 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 0 1856 128 ) ( 0 1872 128 ) ( 0 1864 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 64 1872 128 ) ( 64 1856 128 ) ( 64 1864 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -8 1856 224 ) ( 16 1856 224 ) ( 4 1872 224 ) bricks/b_sr_21 0 0 180 1 1 0 0 0 +} +// brush 2353 +{ +( 512 1872 128 ) ( -88 1872 128 ) ( -88 1848 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -88 1848 256 ) ( -88 1872 256 ) ( 512 1872 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -88 1856 256 ) ( 512 1856 256 ) ( 512 1856 128 ) bricks/b_sr_20b 4 0 0 1 1 0 0 0 +( 512 1872 256 ) ( -88 1872 256 ) ( -88 1872 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -80 1872 256 ) ( -80 1848 256 ) ( -80 1848 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( 0 1872 128 ) ( 0 1856 128 ) ( 0 1864 256 ) bricks/b_sr_21 0 0 90 1 1 0 0 0 +} +// brush 2354 +{ +( -64 1728 128 ) ( -80 1728 128 ) ( -80 1552 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -80 1552 256 ) ( -80 1728 256 ) ( -64 1728 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -80 1552 256 ) ( -64 1552 256 ) ( -64 1552 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -64 1552 256 ) ( -64 1728 256 ) ( -64 1728 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -80 1728 256 ) ( -80 1552 256 ) ( -80 1552 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -80 1856 128 ) ( -56 1856 128 ) ( -68 1856 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 2355 +{ +( 512 1856 512 ) ( 128 1856 512 ) ( 128 1728 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( 128 1728 576 ) ( 128 1856 576 ) ( 512 1856 576 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( 128 1728 528 ) ( 512 1728 528 ) ( 512 1728 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( 320 1736 528 ) ( 320 1864 528 ) ( 320 1864 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( 512 1856 528 ) ( 128 1856 528 ) ( 128 1856 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( 128 1856 528 ) ( 128 1728 528 ) ( 128 1728 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +} +// brush 2356 +{ +( 512 1728 448 ) ( 144 1728 448 ) ( 144 1712 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 144 1712 576 ) ( 144 1728 576 ) ( 512 1728 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 144 1712 512 ) ( 512 1712 512 ) ( 512 1712 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 640 1712 512 ) ( 640 1728 512 ) ( 640 1728 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 512 1728 512 ) ( 144 1728 512 ) ( 144 1728 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 144 1728 512 ) ( 144 1712 512 ) ( 144 1712 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2357 +{ +( 512 1872 0 ) ( -80 1872 0 ) ( -80 1856 0 ) props2/si_sewer1 0 1 0 1 1 0 0 0 +( -80 1856 60 ) ( -80 1872 60 ) ( 512 1872 60 ) props2/si_sewer1 0 1 0 1 1 0 0 0 +( -80 1856 128 ) ( 512 1856 128 ) ( 512 1856 0 ) props2/si_sewer1 4 0 0 1 1 0 0 0 +( 256 1856 128 ) ( 256 1872 128 ) ( 256 1872 0 ) props2/si_sewer1 0 1 0 1 1 0 0 0 +( 512 1872 128 ) ( -80 1872 128 ) ( -80 1872 0 ) props2/si_sewer1 0 1 0 1 1 0 0 0 +( -80 1880 128 ) ( -80 1864 128 ) ( -80 1864 0 ) props2/si_sewer1 0 1 0 1 1 0 0 0 +} +// brush 2358 +{ +( 512 1856 -16 ) ( 128 1856 -16 ) ( 128 1728 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1728 0 ) ( 128 1856 0 ) ( 512 1856 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1728 0 ) ( 512 1728 0 ) ( 512 1728 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 640 1728 0 ) ( 640 1856 0 ) ( 640 1856 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 512 1856 0 ) ( 128 1856 0 ) ( 128 1856 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1856 0 ) ( 128 1728 0 ) ( 128 1728 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2359 +{ +( 384 1728 384 ) ( 144 1728 384 ) ( 144 1712 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 144 1712 448 ) ( 144 1728 448 ) ( 384 1728 448 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 144 1712 448 ) ( 384 1712 448 ) ( 384 1712 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 640 1704 448 ) ( 640 1720 448 ) ( 640 1720 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 384 1728 448 ) ( 144 1728 448 ) ( 144 1728 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 144 1728 448 ) ( 144 1712 448 ) ( 144 1712 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +} +// brush 2360 +{ +( 384 1728 256 ) ( 144 1728 256 ) ( 144 1712 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 144 1712 384 ) ( 144 1728 384 ) ( 384 1728 384 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 144 1712 384 ) ( 384 1712 384 ) ( 384 1712 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 640 1704 384 ) ( 640 1720 384 ) ( 640 1720 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 384 1728 384 ) ( 144 1728 384 ) ( 144 1728 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 144 1728 384 ) ( 144 1712 384 ) ( 144 1712 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2361 +{ +( 384 1728 128 ) ( 144 1728 128 ) ( 144 1712 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 144 1712 256 ) ( 144 1728 256 ) ( 384 1728 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 144 1712 256 ) ( 384 1712 256 ) ( 384 1712 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 640 1704 256 ) ( 640 1720 256 ) ( 640 1720 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 384 1728 256 ) ( 144 1728 256 ) ( 144 1728 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 144 1728 256 ) ( 144 1712 256 ) ( 144 1712 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2362 +{ +( 144 1728 384 ) ( 128 1728 384 ) ( 128 1352 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 128 1352 448 ) ( 128 1728 448 ) ( 144 1728 448 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 120 960 448 ) ( 136 960 448 ) ( 136 960 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 144 1352 448 ) ( 144 1728 448 ) ( 144 1728 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 144 1728 448 ) ( 128 1728 448 ) ( 128 1728 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +( 128 1728 448 ) ( 128 1352 448 ) ( 128 1352 384 ) bricks/s_sr_m12a 0 0 -180 1 -1 0 0 0 +} +// brush 2363 +{ +( 127 1500 238 ) ( 127 1508 238 ) ( 121 1508 236 ) metals/mt_pv_m26y -9 31 0 0.939690 1 134217728 0 0 +( 127 1508 247 ) ( 127 1500 247 ) ( 119 1500 244 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 115 1500 255 ) ( 122 1500 258 ) ( 133 1500 228 ) metals/mt_pv_m26y -10 -24 20 1.000013 1.000004 134217728 0 0 +( 127 1508 238 ) ( 127 1500 238 ) ( 127 1500 247 ) metals/mt_pv_m26y 0 17 0 1 0.939713 134217728 0 0 +( 122 1508 258 ) ( 115 1508 255 ) ( 125 1508 225 ) metals/mt_pv_m26y -10 -24 20 1.000013 1.000004 134217728 0 0 +( 115 1508 255 ) ( 115 1500 255 ) ( 125 1500 225 ) metals/mt_pv_m26y 0 14 0 1 0.939682 134217728 0 0 +} +// brush 2364 +{ +( 125 1520 225 ) ( 118 1520 222 ) ( 118 1488 222 ) metals/mt_pv_m26y -13 31 0 0.939705 1 134217728 0 0 +( 107 1488 252 ) ( 107 1520 252 ) ( 115 1520 255 ) metals/mt_pv_m26y 0 0 0 5 5 134217728 8390656 0 +( 107 1488 252 ) ( 115 1488 255 ) ( 125 1488 225 ) metals/mt_pv_m26y -10 -24 20 1.000013 1.000004 134217728 0 0 +( 115 1488 255 ) ( 115 1520 255 ) ( 125 1520 225 ) metals/mt_pv_m26y 0 14 0 1 0.939682 134217728 0 0 +( 115 1520 255 ) ( 107 1520 252 ) ( 118 1520 222 ) metals/mt_pv_m26y -10 -24 20 1.000013 1.000004 134217728 0 0 +( 107 1520 252 ) ( 107 1488 252 ) ( 118 1488 222 ) common/li_sr_v13 16 28 0 1 1 134217728 1 40000 +} +// brush 2365 +{ +( -448 1536 288 ) ( -640 1536 288 ) ( -640 1280 288 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -640 1280 512 ) ( -640 1536 512 ) ( -448 1536 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -640 1288 512 ) ( -448 1288 512 ) ( -448 1288 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -448 1280 512 ) ( -448 1536 512 ) ( -448 1536 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -448 1536 512 ) ( -640 1536 512 ) ( -640 1536 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -640 1536 512 ) ( -640 1280 512 ) ( -640 1280 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2366 +{ +( 128 1280 512 ) ( -64 1280 512 ) ( -64 1088 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -64 1088 528 ) ( -64 1280 528 ) ( 128 1280 528 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -64 960 528 ) ( 128 960 528 ) ( 128 960 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( 128 1088 528 ) ( 128 1280 528 ) ( 128 1280 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( 128 1280 528 ) ( -64 1280 528 ) ( -64 1280 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -64 1280 528 ) ( -64 1088 528 ) ( -64 1088 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +} +// brush 2367 +{ +( 128 1728 512 ) ( -192 1728 512 ) ( -192 1536 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -192 1536 528 ) ( -192 1728 528 ) ( 128 1728 528 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -192 1536 528 ) ( 128 1536 528 ) ( 128 1536 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( 128 1536 528 ) ( 128 1728 528 ) ( 128 1728 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( 128 1856 528 ) ( -192 1856 528 ) ( -192 1856 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -64 1720 528 ) ( -64 1528 528 ) ( -64 1528 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +} +// brush 2368 +{ +( 48 1536 512 ) ( -320 1536 512 ) ( -320 1280 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -320 1280 528 ) ( -320 1536 528 ) ( 48 1536 528 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -320 1280 528 ) ( 48 1280 528 ) ( 48 1280 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( 128 1280 528 ) ( 128 1536 528 ) ( 128 1536 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( 48 1536 528 ) ( -320 1536 528 ) ( -320 1536 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -320 1536 528 ) ( -320 1280 528 ) ( -320 1280 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +} +// brush 2369 +{ +( 144 1728 448 ) ( 128 1728 448 ) ( 128 1440 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 128 1440 512 ) ( 128 1728 512 ) ( 144 1728 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 136 960 512 ) ( 152 960 512 ) ( 152 960 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 144 1440 512 ) ( 144 1728 512 ) ( 144 1728 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 144 1728 512 ) ( 128 1728 512 ) ( 128 1728 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( 128 1728 512 ) ( 128 1440 512 ) ( 128 1440 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2370 +{ +( -192 1552 320 ) ( -320 1552 320 ) ( -320 1536 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -320 1536 512 ) ( -320 1552 512 ) ( -192 1552 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -312 1536 512 ) ( -184 1536 512 ) ( -184 1536 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -64 1528 512 ) ( -64 1544 512 ) ( -64 1544 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -192 1552 512 ) ( -320 1552 512 ) ( -320 1552 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -320 1552 512 ) ( -320 1536 512 ) ( -320 1536 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2371 +{ +( 128 1728 -16 ) ( -192 1728 -16 ) ( -192 1536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -192 1536 0 ) ( -192 1728 0 ) ( 128 1728 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -192 1536 0 ) ( 128 1536 0 ) ( 128 1536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1536 0 ) ( 128 1728 0 ) ( 128 1728 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( 128 1856 0 ) ( -192 1856 0 ) ( -192 1856 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -64 1720 0 ) ( -64 1528 0 ) ( -64 1528 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2372 +{ +( -64 1728 256 ) ( -80 1728 256 ) ( -80 1552 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -80 1552 320 ) ( -80 1728 320 ) ( -64 1728 320 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -80 1552 320 ) ( -64 1552 320 ) ( -64 1552 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -64 1552 320 ) ( -64 1728 320 ) ( -64 1728 256 ) bricks/b_sr_23 64 0 -180 1 -1 0 0 0 +( -56 1856 320 ) ( -72 1856 320 ) ( -72 1856 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -80 1728 320 ) ( -80 1552 320 ) ( -80 1552 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +} +// brush 2373 +{ +( -64 1728 0 ) ( -80 1728 0 ) ( -80 1552 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -80 1552 128 ) ( -80 1728 128 ) ( -64 1728 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -80 1552 128 ) ( -64 1552 128 ) ( -64 1552 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -64 1552 128 ) ( -64 1728 128 ) ( -64 1728 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -56 1856 128 ) ( -72 1856 128 ) ( -72 1856 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -80 1728 128 ) ( -80 1552 128 ) ( -80 1552 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2374 +{ +( -192 1552 256 ) ( -320 1552 256 ) ( -320 1536 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -320 1536 320 ) ( -320 1552 320 ) ( -192 1552 320 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -320 1536 320 ) ( -192 1536 320 ) ( -192 1536 256 ) bricks/b_sr_23 64 0 -180 1 -1 0 0 0 +( -64 1528 320 ) ( -64 1544 320 ) ( -64 1544 256 ) bricks/b_sr_23 64 0 -180 1 -1 0 0 0 +( -192 1552 320 ) ( -320 1552 320 ) ( -320 1552 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -320 1552 320 ) ( -320 1536 320 ) ( -320 1536 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +} +// brush 2375 +{ +( -192 1552 128 ) ( -320 1552 128 ) ( -320 1536 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -320 1536 256 ) ( -320 1552 256 ) ( -192 1552 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -320 1536 256 ) ( -192 1536 256 ) ( -192 1536 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -64 1528 256 ) ( -64 1544 256 ) ( -64 1544 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -192 1552 256 ) ( -320 1552 256 ) ( -320 1552 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -320 1552 256 ) ( -320 1536 256 ) ( -320 1536 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 2376 +{ +( -192 1552 0 ) ( -320 1552 0 ) ( -320 1536 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -320 1536 128 ) ( -320 1552 128 ) ( -192 1552 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -320 1536 128 ) ( -192 1536 128 ) ( -192 1536 0 ) bricks/b_sr_20ag 0 0 0 1 1 0 0 0 +( -64 1528 128 ) ( -64 1544 128 ) ( -64 1544 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -192 1552 128 ) ( -320 1552 128 ) ( -320 1552 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -320 1552 128 ) ( -320 1536 128 ) ( -320 1536 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2377 +{ +( -64 1264 448 ) ( -80 1264 448 ) ( -80 1088 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -80 1088 576 ) ( -80 1264 576 ) ( -64 1264 576 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -112 576 512 ) ( -96 576 512 ) ( -96 576 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -64 1088 512 ) ( -64 1264 512 ) ( -64 1264 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -64 1264 512 ) ( -80 1264 512 ) ( -80 1264 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -80 1264 512 ) ( -80 1088 512 ) ( -80 1088 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2378 +{ +( -64 1264 128 ) ( -80 1264 128 ) ( -80 1088 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -80 1088 256 ) ( -80 1264 256 ) ( -64 1264 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -96 768 256 ) ( -80 768 256 ) ( -80 768 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -64 1088 256 ) ( -64 1264 256 ) ( -64 1264 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -64 1264 256 ) ( -80 1264 256 ) ( -80 1264 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -80 1264 256 ) ( -80 1088 256 ) ( -80 1088 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2379 +{ +( 144 1536 256 ) ( 128 1536 256 ) ( 128 1216 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 128 1216 384 ) ( 128 1536 384 ) ( 144 1536 384 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 120 960 320 ) ( 136 960 320 ) ( 136 960 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( 144 1216 320 ) ( 144 1536 320 ) ( 144 1536 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 144 1728 320 ) ( 128 1728 320 ) ( 128 1728 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 128 1536 320 ) ( 128 1216 320 ) ( 128 1216 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2380 +{ +( 144 1536 128 ) ( 128 1536 128 ) ( 128 1216 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 128 1216 256 ) ( 128 1536 256 ) ( 144 1536 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 120 960 256 ) ( 136 960 256 ) ( 136 960 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 144 1216 256 ) ( 144 1536 256 ) ( 144 1536 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 144 1728 256 ) ( 128 1728 256 ) ( 128 1728 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( 128 1536 256 ) ( 128 1216 256 ) ( 128 1216 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2381 +{ +( 144 1536 0 ) ( 128 1536 0 ) ( 128 1216 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 128 1216 128 ) ( 128 1536 128 ) ( 144 1536 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 120 960 128 ) ( 136 960 128 ) ( 136 960 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 144 1216 128 ) ( 144 1536 128 ) ( 144 1536 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 144 1728 128 ) ( 128 1728 128 ) ( 128 1728 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( 128 1536 128 ) ( 128 1216 128 ) ( 128 1216 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2382 +{ +( -64 1536 -16 ) ( -320 1536 -16 ) ( -320 1280 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -320 1280 0 ) ( -320 1536 0 ) ( -64 1536 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -320 1280 0 ) ( -64 1280 0 ) ( -64 1280 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -192 1272 0 ) ( -192 1528 0 ) ( -192 1528 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -64 1536 0 ) ( -320 1536 0 ) ( -320 1536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -320 1536 0 ) ( -320 1280 0 ) ( -320 1280 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2383 +{ +( -64 1280 0 ) ( -320 1280 0 ) ( -320 1264 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -320 1264 128 ) ( -320 1280 128 ) ( -64 1280 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -320 1264 128 ) ( -64 1264 128 ) ( -64 1264 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -64 1264 128 ) ( -64 1280 128 ) ( -64 1280 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -64 1280 128 ) ( -320 1280 128 ) ( -320 1280 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -320 1280 128 ) ( -320 1264 128 ) ( -320 1264 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2384 +{ +( -64 1280 128 ) ( -320 1280 128 ) ( -320 1264 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -320 1264 256 ) ( -320 1280 256 ) ( -64 1280 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -320 1264 256 ) ( -64 1264 256 ) ( -64 1264 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -64 1264 256 ) ( -64 1280 256 ) ( -64 1280 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -64 1280 256 ) ( -320 1280 256 ) ( -320 1280 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -320 1280 256 ) ( -320 1264 256 ) ( -320 1264 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2385 +{ +( -64 1280 256 ) ( -320 1280 256 ) ( -320 1264 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -320 1264 384 ) ( -320 1280 384 ) ( -64 1280 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -320 1264 384 ) ( -64 1264 384 ) ( -64 1264 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -64 1264 384 ) ( -64 1280 384 ) ( -64 1280 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -64 1280 384 ) ( -320 1280 384 ) ( -320 1280 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -320 1280 384 ) ( -320 1264 384 ) ( -320 1264 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2386 +{ +( -64 1280 384 ) ( -320 1280 384 ) ( -320 1264 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -320 1264 448 ) ( -320 1280 448 ) ( -64 1280 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -320 1264 448 ) ( -64 1264 448 ) ( -64 1264 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -64 1264 448 ) ( -64 1280 448 ) ( -64 1280 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -64 1280 448 ) ( -320 1280 448 ) ( -320 1280 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -320 1280 448 ) ( -320 1264 448 ) ( -320 1264 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 2387 +{ +( -64 1280 448 ) ( -320 1280 448 ) ( -320 1264 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -320 1264 512 ) ( -320 1280 512 ) ( -64 1280 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -320 1264 512 ) ( -64 1264 512 ) ( -64 1264 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -64 1264 512 ) ( -64 1280 512 ) ( -64 1280 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -64 1280 512 ) ( -320 1280 512 ) ( -320 1280 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -320 1280 512 ) ( -320 1264 512 ) ( -320 1264 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2388 +{ +( -744 1299 0 ) ( -768 1299 0 ) ( -768 1280 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -768 1280 128 ) ( -768 1299 128 ) ( -744 1299 128 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -768 1280 128 ) ( -744 1280 128 ) ( -744 1280 112 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -39 1299 128 ) ( -63 1299 128 ) ( -63 1299 112 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -768 1299 128 ) ( -768 1280 128 ) ( -768 1280 112 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -320 472 512 ) ( -320 1616 512 ) ( -320 472 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2389 +{ +( -768 1408 256 ) ( -768 1280 256 ) ( -768 1280 128 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +( -768 1280 256 ) ( -744 1280 256 ) ( -744 1280 128 ) bricks/b_mf_v3 -8 0 0 1 1 0 0 0 +( -744 1299 48 ) ( -744 1299 64 ) ( -768 1299 56 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -744 1280 128 ) ( -744 1328 128 ) ( -768 1304 128 ) bricks/b_mf_v3 -8 0 0 1 -1 0 0 0 +( -744 1296 144 ) ( -744 1285 144 ) ( -768 1290 144 ) bricks/b_mf_v3 -8 0 0 1 -1 0 0 0 +( -320 472 512 ) ( -320 1616 512 ) ( -320 472 0 ) bricks/b_mf_v3 -8 0 0 1 -1 0 0 0 +} +// brush 2390 +{ +( -768 1408 256 ) ( -768 1280 256 ) ( -768 1280 128 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +( -768 1280 256 ) ( -744 1280 256 ) ( -744 1280 128 ) bricks/b_mf_v3 -8 0 0 1 1 0 0 0 +( -744 1303 160 ) ( -768 1303 160 ) ( -768 1299 144 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -744 1299 144 ) ( -768 1299 144 ) ( -768 1280 144 ) bricks/b_mf_v3 -8 0 0 1 -1 0 0 0 +( -768 1303 160 ) ( -744 1303 160 ) ( -744 1280 160 ) bricks/b_mf_v3 -8 0 0 1 -1 0 0 0 +( -320 472 512 ) ( -320 1616 512 ) ( -320 472 0 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +} +// brush 2391 +{ +( -768 1408 256 ) ( -768 1280 256 ) ( -768 1280 128 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +( -768 1280 256 ) ( -744 1280 256 ) ( -744 1280 128 ) bricks/b_mf_v3 -8 0 0 1 1 0 0 0 +( -744 1310 176 ) ( -768 1310 176 ) ( -768 1303 160 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -744 1287 160 ) ( -744 1296 160 ) ( -768 1291 160 ) bricks/b_mf_v3 -8 0 0 1 -1 0 0 0 +( -768 1310 176 ) ( -744 1310 176 ) ( -744 1280 176 ) bricks/b_mf_v3 -8 0 0 1 -1 0 0 0 +( -320 472 512 ) ( -320 1616 512 ) ( -320 472 0 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +} +// brush 2392 +{ +( -768 1408 256 ) ( -768 1280 256 ) ( -768 1280 128 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +( -768 1280 256 ) ( -744 1280 256 ) ( -744 1280 128 ) bricks/b_mf_v3 -8 0 0 1 1 0 0 0 +( -744 1319 192 ) ( -768 1319 192 ) ( -768 1310 176 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -744 1288 176 ) ( -744 1296 176 ) ( -768 1292 176 ) bricks/b_mf_v3 -8 0 0 1 -1 0 0 0 +( -768 1319 192 ) ( -744 1319 192 ) ( -744 1280 192 ) bricks/b_mf_v3 -8 0 0 1 -1 0 0 0 +( -320 472 512 ) ( -320 1616 512 ) ( -320 472 0 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +} +// brush 2393 +{ +( -768 1408 256 ) ( -768 1280 256 ) ( -768 1280 128 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +( -768 1280 256 ) ( -744 1280 256 ) ( -744 1280 128 ) bricks/b_mf_v3 -8 0 0 1 1 0 0 0 +( -744 1333 208 ) ( -768 1333 208 ) ( -768 1319 192 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -744 1288 192 ) ( -744 1304 192 ) ( -768 1296 192 ) bricks/b_mf_v3 -8 0 0 1 -1 0 0 0 +( -768 1333 208 ) ( -744 1333 208 ) ( -744 1280 208 ) bricks/b_mf_v3 -8 0 0 1 -1 0 0 0 +( -320 472 512 ) ( -320 1616 512 ) ( -320 472 0 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +} +// brush 2394 +{ +( -768 1408 256 ) ( -768 1280 256 ) ( -768 1280 128 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +( -768 1280 256 ) ( -744 1280 256 ) ( -744 1280 128 ) bricks/b_mf_v3 -8 0 0 1 1 0 0 0 +( -744 1358 224 ) ( -768 1358 224 ) ( -768 1333 208 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -744 1288 208 ) ( -744 1304 208 ) ( -768 1296 208 ) bricks/b_mf_v3 -8 0 0 1 -1 0 0 0 +( -768 1358 224 ) ( -744 1358 224 ) ( -744 1280 224 ) bricks/b_mf_v3 -8 0 0 1 -1 0 0 0 +( -320 472 512 ) ( -320 1616 512 ) ( -320 472 0 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +} +// brush 2395 +{ +( -768 1408 256 ) ( -768 1280 256 ) ( -768 1280 128 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +( -768 1280 256 ) ( -744 1280 256 ) ( -744 1280 128 ) bricks/b_mf_v3 -8 0 0 1 1 0 0 0 +( -744 1392 236 ) ( -768 1392 236 ) ( -768 1358 224 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -744 1272 224 ) ( -744 1304 224 ) ( -768 1288 224 ) bricks/b_mf_v3 -8 0 0 1 -1 0 0 0 +( -768 1392 236 ) ( -744 1392 236 ) ( -744 1280 236 ) bricks/b_mf_v3 -8 0 0 1 -1 0 0 0 +( -320 472 512 ) ( -320 1616 512 ) ( -320 472 0 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +} +// brush 2396 +{ +( -744 1536 256 ) ( -768 1536 256 ) ( -768 1536 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -768 1536 256 ) ( -768 1408 256 ) ( -768 1408 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( 104 1424 236 ) ( 128 1424 236 ) ( 128 1458 224 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -768 1544 224 ) ( -768 1512 224 ) ( -744 1528 224 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -744 1424 236 ) ( -768 1424 236 ) ( -768 1536 236 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -320 472 512 ) ( -320 1616 512 ) ( -320 472 0 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +} +// brush 2397 +{ +( -744 1536 256 ) ( -768 1536 256 ) ( -768 1536 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -768 1536 256 ) ( -768 1408 256 ) ( -768 1408 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( 104 1458 224 ) ( 128 1458 224 ) ( 128 1483 208 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -768 1528 208 ) ( -768 1512 208 ) ( -744 1520 208 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -744 1458 224 ) ( -768 1458 224 ) ( -768 1536 224 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -320 472 512 ) ( -320 1616 512 ) ( -320 472 0 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +} +// brush 2398 +{ +( -744 1536 256 ) ( -768 1536 256 ) ( -768 1536 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -768 1536 256 ) ( -768 1408 256 ) ( -768 1408 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( 104 1483 208 ) ( 128 1483 208 ) ( 128 1497 192 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -768 1528 192 ) ( -768 1512 192 ) ( -744 1520 192 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -744 1483 208 ) ( -768 1483 208 ) ( -768 1536 208 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -320 472 512 ) ( -320 1616 512 ) ( -320 472 0 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +} +// brush 2399 +{ +( -744 1536 256 ) ( -768 1536 256 ) ( -768 1536 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -768 1536 256 ) ( -768 1408 256 ) ( -768 1408 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( 104 1497 192 ) ( 128 1497 192 ) ( 128 1506 176 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -768 1528 176 ) ( -768 1520 176 ) ( -744 1524 176 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -744 1497 192 ) ( -768 1497 192 ) ( -768 1536 192 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -320 472 512 ) ( -320 1616 512 ) ( -320 472 0 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +} +// brush 2400 +{ +( -744 1536 256 ) ( -768 1536 256 ) ( -768 1536 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -768 1536 256 ) ( -768 1408 256 ) ( -768 1408 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( 104 1506 176 ) ( 128 1506 176 ) ( 128 1513 160 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -768 1529 160 ) ( -768 1520 160 ) ( -744 1525 160 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -744 1506 176 ) ( -768 1506 176 ) ( -768 1536 176 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -320 472 512 ) ( -320 1616 512 ) ( -320 472 0 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +} +// brush 2401 +{ +( -744 1536 256 ) ( -768 1536 256 ) ( -768 1536 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -768 1536 256 ) ( -768 1408 256 ) ( -768 1408 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( 104 1517 48 ) ( 104 1517 64 ) ( 128 1517 56 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -768 1536 128 ) ( -768 1488 128 ) ( -744 1512 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -768 1520 144 ) ( -768 1531 144 ) ( -744 1526 144 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -320 472 512 ) ( -320 1616 512 ) ( -320 472 0 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +} +// brush 2402 +{ +( -744 1536 256 ) ( -768 1536 256 ) ( -768 1536 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -768 1536 256 ) ( -768 1408 256 ) ( -768 1408 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( 104 1513 160 ) ( 128 1513 160 ) ( 128 1517 144 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -768 1517 144 ) ( -744 1517 144 ) ( -744 1536 144 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -744 1513 160 ) ( -768 1513 160 ) ( -768 1536 160 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -320 472 512 ) ( -320 1616 512 ) ( -320 472 0 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +} +// brush 2403 +{ +( -744 1536 0 ) ( -768 1536 0 ) ( -768 1517 0 ) bricks/b_mf_v3 104 0 0 1 1 0 0 0 +( -768 1517 128 ) ( -768 1536 128 ) ( -744 1536 128 ) bricks/b_mf_v3 104 0 0 1 1 0 0 0 +( -256 1517 128 ) ( -232 1517 128 ) ( -232 1517 112 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -744 1536 128 ) ( -768 1536 128 ) ( -768 1536 112 ) bricks/b_mf_v3 104 -16 0 1 1 0 0 0 +( -768 1536 128 ) ( -768 1517 128 ) ( -768 1517 112 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -320 472 512 ) ( -320 1616 512 ) ( -320 472 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2404 +{ +( -824 1472 -16 ) ( -944 1472 -16 ) ( -944 1312 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 67108864 0 +( -944 1312 0 ) ( -944 1472 0 ) ( -824 1472 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 67108864 0 +( -944 1280 0 ) ( -824 1280 0 ) ( -824 1280 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 67108864 0 +( -816 1536 0 ) ( -936 1536 0 ) ( -936 1536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 67108864 0 +( -768 1480 0 ) ( -768 1320 0 ) ( -768 1320 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 67108864 0 +( -320 472 512 ) ( -320 1616 512 ) ( -320 472 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 67108864 0 +} +// brush 2405 +{ +( -768 1280 256 ) ( -768 1408 256 ) ( -744 1408 256 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -768 1408 256 ) ( -768 1280 256 ) ( -768 1280 128 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +( -408 1280 47 ) ( -408 1280 63 ) ( -384 1280 55 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -768 1384 236 ) ( -768 1368 236 ) ( -744 1376 236 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -768 1408 236 ) ( -752 1408 236 ) ( -760 1408 256 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -320 472 512 ) ( -320 1616 512 ) ( -320 472 0 ) bricks/b_mf_v3 0 0 0 1 1 0 0 0 +} +// brush 2406 +{ +( -768 1408 256 ) ( -768 1536 256 ) ( -744 1536 256 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -744 1536 256 ) ( -768 1536 256 ) ( -768 1536 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -768 1536 256 ) ( -768 1408 256 ) ( -768 1408 128 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +( -768 1512 236 ) ( -768 1496 236 ) ( -744 1504 236 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -752 1408 236 ) ( -768 1408 236 ) ( -760 1408 256 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -320 472 512 ) ( -320 1616 512 ) ( -320 472 0 ) bricks/b_mf_v3 0 0 0 -1 1 0 0 0 +} +// brush 2407 +{ +( -768 1280 384 ) ( -1088 1280 384 ) ( -1088 1264 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -1088 1264 448 ) ( -1088 1280 448 ) ( -768 1280 448 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -1088 1264 448 ) ( -768 1264 448 ) ( -768 1264 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -320 1248 448 ) ( -320 1264 448 ) ( -320 1264 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -768 1280 448 ) ( -1088 1280 448 ) ( -1088 1280 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -1088 1280 448 ) ( -1088 1264 448 ) ( -1088 1264 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +} +// brush 2408 +{ +( -744 1536 256 ) ( -768 1536 256 ) ( -768 1280 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -768 1280 288 ) ( -768 1536 288 ) ( -744 1536 288 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -768 1280 384 ) ( -744 1280 384 ) ( -744 1280 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -320 1264 384 ) ( -320 1520 384 ) ( -320 1520 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -744 1536 384 ) ( -768 1536 384 ) ( -768 1536 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -768 1536 384 ) ( -768 1280 384 ) ( -768 1280 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2409 +{ +( -760 1536 512 ) ( -960 1536 512 ) ( -960 1280 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -960 1280 528 ) ( -960 1536 528 ) ( -760 1536 528 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -960 1280 528 ) ( -760 1280 528 ) ( -760 1280 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -320 1280 528 ) ( -320 1536 528 ) ( -320 1536 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -760 1536 528 ) ( -960 1536 528 ) ( -960 1536 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -960 1536 528 ) ( -960 1280 528 ) ( -960 1280 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +} +// brush 2410 +{ +( -576 1552 320 ) ( -944 1552 320 ) ( -944 1536 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -944 1536 512 ) ( -944 1552 512 ) ( -576 1552 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -944 1536 512 ) ( -576 1536 512 ) ( -576 1536 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -320 1536 512 ) ( -320 1552 512 ) ( -320 1552 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -576 1552 512 ) ( -944 1552 512 ) ( -944 1552 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -832 1552 512 ) ( -832 1536 512 ) ( -832 1536 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2411 +{ +( -896 1552 256 ) ( -944 1552 256 ) ( -944 1536 256 ) bricks/b_sr_23 72 32 -180 1 -1 0 0 0 +( -944 1536 320 ) ( -944 1552 320 ) ( -896 1552 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -944 1536 320 ) ( -896 1536 320 ) ( -896 1536 256 ) bricks/b_sr_23 64 0 -180 1 -1 0 0 0 +( -320 1536 320 ) ( -320 1552 320 ) ( -320 1552 256 ) bricks/b_sr_23 104 0 -180 1 -1 0 0 0 +( -896 1552 320 ) ( -944 1552 320 ) ( -944 1552 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -944 1552 320 ) ( -944 1536 320 ) ( -944 1536 256 ) bricks/b_sr_23 104 0 -180 1 -1 0 0 0 +} +// brush 2412 +{ +( -896 1552 128 ) ( -944 1552 128 ) ( -944 1536 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -944 1536 256 ) ( -944 1552 256 ) ( -896 1552 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -944 1536 256 ) ( -896 1536 256 ) ( -896 1536 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -768 1536 256 ) ( -768 1552 256 ) ( -768 1552 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -896 1552 256 ) ( -944 1552 256 ) ( -944 1552 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -944 1552 256 ) ( -944 1536 256 ) ( -944 1536 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 2413 +{ +( -888 1552 0 ) ( -944 1552 0 ) ( -944 1536 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -944 1536 128 ) ( -944 1552 128 ) ( -888 1552 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -944 1536 128 ) ( -888 1536 128 ) ( -888 1536 0 ) bricks/b_sr_20ag 0 0 0 1 1 0 0 0 +( -768 1536 128 ) ( -768 1552 128 ) ( -768 1552 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -888 1552 128 ) ( -944 1552 128 ) ( -944 1552 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -944 1552 128 ) ( -944 1536 128 ) ( -944 1536 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2414 +{ +( -944 1664 0 ) ( -960 1664 0 ) ( -960 1408 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -960 1408 128 ) ( -960 1664 128 ) ( -944 1664 128 ) bricks/b_sr_22 0 0 270 1 1 0 0 0 +( -944 1408 128 ) ( -944 1664 128 ) ( -944 1664 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -960 2256 128 ) ( -976 2256 128 ) ( -976 2256 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -960 1664 128 ) ( -960 1408 128 ) ( -960 1408 0 ) bricks/b_sr_20a 0 0 0 -1 1 0 0 0 +( -944 1536 0 ) ( -960 1536 0 ) ( -952 1536 128 ) bricks/b_sr_20ag 0 0 0 1 1 0 0 0 +} +// brush 2415 +{ +( -944 1664 128 ) ( -960 1664 128 ) ( -960 1408 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -960 1408 256 ) ( -960 1664 256 ) ( -944 1664 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -944 1408 256 ) ( -944 1664 256 ) ( -944 1664 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -960 1664 256 ) ( -960 1408 256 ) ( -960 1408 128 ) bricks/b_sr_20b 0 0 0 -1 1 0 0 0 +( -960 1920 256 ) ( -960 1920 224 ) ( -944 1920 240 ) bricks/b_sr_22 0 0 270 1 1 0 0 0 +( -944 1536 128 ) ( -960 1536 128 ) ( -952 1536 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 2416 +{ +( -944 1664 256 ) ( -960 1664 256 ) ( -960 1408 256 ) bricks/b_sr_22 0 0 270 1 1 0 0 0 +( -960 1408 320 ) ( -960 1664 320 ) ( -944 1664 320 ) metals/mt_pv_m16k 0 0 0 1 1 0 0 0 +( -944 1408 320 ) ( -944 1664 320 ) ( -944 1664 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -960 2256 320 ) ( -976 2256 320 ) ( -976 2256 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -960 1664 320 ) ( -960 1408 320 ) ( -960 1408 256 ) bricks/b_sr_23 64 0 -180 1 -1 0 0 0 +( -944 1536 256 ) ( -960 1536 256 ) ( -952 1536 320 ) bricks/b_sr_23 64 0 -180 1 -1 0 0 0 +} +// brush 2417 +{ +( -960 2256 0 ) ( -1200 2256 0 ) ( -1200 2240 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1200 2240 128 ) ( -1200 2256 128 ) ( -960 2256 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1200 2240 128 ) ( -960 2240 128 ) ( -960 2240 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -960 2256 128 ) ( -1200 2256 128 ) ( -1200 2256 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1200 2256 128 ) ( -1200 2240 128 ) ( -1200 2240 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -960 2256 0 ) ( -960 2240 0 ) ( -960 2248 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2418 +{ +( -960 2256 128 ) ( -1200 2256 128 ) ( -1200 2240 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1200 2240 256 ) ( -1200 2256 256 ) ( -960 2256 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1200 2240 256 ) ( -960 2240 256 ) ( -960 2240 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -960 2256 256 ) ( -1200 2256 256 ) ( -1200 2256 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1200 2256 256 ) ( -1200 2240 256 ) ( -1200 2240 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -960 2256 128 ) ( -960 2240 128 ) ( -960 2248 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 2419 +{ +( -1712 2432 128 ) ( -1728 2432 128 ) ( -1728 2368 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1728 2368 256 ) ( -1728 2432 256 ) ( -1712 2432 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1712 2368 256 ) ( -1712 2432 256 ) ( -1712 2432 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1712 2432 256 ) ( -1728 2432 256 ) ( -1728 2432 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1760 2416 128 ) ( -1760 2432 128 ) ( -1760 2424 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1696 2240 128 ) ( -1712 2240 128 ) ( -1704 2240 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 2420 +{ +( -928 1664 128 ) ( -944 1664 128 ) ( -944 1408 128 ) bricks/b_sr_20 80 0 -180 1 -1 0 0 0 +( -944 1408 256 ) ( -944 1664 256 ) ( -928 1664 256 ) bricks/b_sr_20 80 0 -180 1 -1 0 0 0 +( -928 1408 256 ) ( -928 1664 256 ) ( -928 1664 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -944 1664 256 ) ( -944 1408 256 ) ( -944 1408 128 ) props/w_sr_m6d 0 0 0 1 1 0 0 0 +( -944 1984 256 ) ( -944 1984 128 ) ( -928 1984 192 ) bricks/b_sr_20 80 0 -180 1 -1 0 0 0 +( -944 1920 224 ) ( -944 1920 256 ) ( -928 1920 240 ) bricks/b_sr_20 80 0 -180 1 -1 0 0 0 +} +// brush 2421 +{ +( -944 1664 128 ) ( -960 1664 128 ) ( -960 1408 128 ) bricks/b_sr_20b 0 0 0 -1 1 0 0 0 +( -960 1408 256 ) ( -960 1664 256 ) ( -944 1664 256 ) bricks/b_sr_20b 0 0 0 -1 1 0 0 0 +( -944 1408 256 ) ( -944 1664 256 ) ( -944 1664 128 ) bricks/b_sr_20b 0 0 0 -1 1 0 0 0 +( -960 1664 256 ) ( -960 1408 256 ) ( -960 1408 128 ) bricks/b_sr_20b 0 0 0 -1 1 0 0 0 +( -960 2112 256 ) ( -960 2112 128 ) ( -944 2112 192 ) bricks/b_sr_22 0 0 270 1 1 0 0 0 +( -960 1984 128 ) ( -960 1984 256 ) ( -944 1984 192 ) bricks/b_sr_22 0 0 270 1 1 0 0 0 +} +// brush 2422 +{ +( -928 1664 128 ) ( -944 1664 128 ) ( -944 1408 128 ) bricks/b_sr_20 80 0 -180 1 -1 0 0 0 +( -944 1408 256 ) ( -944 1664 256 ) ( -928 1664 256 ) bricks/b_sr_20 80 0 -180 1 -1 0 0 0 +( -928 1408 256 ) ( -928 1664 256 ) ( -928 1664 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -944 1664 256 ) ( -944 1408 256 ) ( -944 1408 128 ) props/w_sr_m6e 0 0 0 1 1 0 0 0 +( -944 2176 256 ) ( -944 2176 240 ) ( -928 2176 248 ) bricks/b_sr_20 80 0 -180 1 -1 0 0 0 +( -944 2112 128 ) ( -944 2112 256 ) ( -928 2112 192 ) bricks/b_sr_20 80 0 -180 1 -1 0 0 0 +} +// brush 2423 +{ +( -944 1664 128 ) ( -960 1664 128 ) ( -960 1408 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -960 1408 256 ) ( -960 1664 256 ) ( -944 1664 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -944 1408 256 ) ( -944 1664 256 ) ( -944 1664 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -960 2256 256 ) ( -976 2256 256 ) ( -976 2256 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -960 1664 256 ) ( -960 1408 256 ) ( -960 1408 128 ) bricks/b_sr_20b 0 0 0 -1 1 0 0 0 +( -960 2176 240 ) ( -960 2176 256 ) ( -944 2176 248 ) bricks/b_sr_22 0 0 270 1 1 0 0 0 +} +// brush 2424 +{ +( -1079 1297 236 ) ( -1085 1292 236 ) ( -1079 1286 236 ) metals/mt_pv_m26y 0 31 0 1 1 134217728 0 0 +( -1079 1286 244 ) ( -1085 1292 244 ) ( -1079 1297 244 ) metals/mt_pv_m26y 0 31 0 1 1 134217728 0 0 +( -1079 1286 252 ) ( -1073 1291 252 ) ( -1073 1291 220 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1073 1291 252 ) ( -1079 1297 252 ) ( -1079 1297 220 ) metals/mt_pv_m26y -24 0 0 1 1 134217728 0 0 +( -1079 1297 252 ) ( -1085 1292 252 ) ( -1085 1292 220 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1088 1286 236 ) ( -1088 1292 236 ) ( -1088 1289 244 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -960 1280 256 ) ( -704 1280 256 ) ( -960 1280 128 ) metals/mt_pv_m26y -16 0 -180 1 -1 134217728 0 0 +} +// brush 2425 +{ +( -960 2256 256 ) ( -1200 2256 256 ) ( -1200 2240 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1200 2240 320 ) ( -1200 2256 320 ) ( -960 2256 320 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1200 2240 320 ) ( -960 2240 320 ) ( -960 2240 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -960 2256 320 ) ( -1200 2256 320 ) ( -1200 2256 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1200 2256 320 ) ( -1200 2240 320 ) ( -1200 2240 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -960 2256 256 ) ( -960 2240 256 ) ( -960 2248 320 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +} +// brush 2426 +{ +( -1448 2280 0 ) ( -1432 2232 8 ) ( -1448 2232 -40 ) bricks/s_sr_m12ab -40 -24 0 1 1 0 0 0 +( -1448 2296 -40 ) ( -1416 2320 -40 ) ( -1416 2288 8 ) bricks/s_sr_m12ab 40 -23 -180 1 -1 0 0 0 +( -1344 2304 -40 ) ( -1296 2264 -40 ) ( -1392 2264 16 ) bricks/s_sr_m12ab -40 -56 90 1 1 0 0 0 +( -1397 2249 -40 ) ( -1397 2249 8 ) ( -1390 2272 8 ) bricks/s_sr_m12ab -40 -24 0 1 1 0 0 0 +( -1440 2232 -16 ) ( -1400 2232 -16 ) ( -1400 2232 -40 ) bricks/s_sr_m12ab 40 -23 -180 1 -1 0 0 0 +( -1296 2264 -40 ) ( -1344 2304 -40 ) ( -1464 2288 -40 ) bricks/s_sr_m12ab -40 -40 90 1 1 0 0 0 +( -1432 2232 8 ) ( -1448 2280 0 ) ( -1416 2288 8 ) bricks/s_sr_m12ab -40 -40 90 1 1 0 0 0 +( -1400 2232 -16 ) ( -1440 2232 -16 ) ( -1432 2240 8 ) bricks/s_sr_m12ab 40 -23 -180 1 -1 0 0 0 +( -1416 2341 14 ) ( -1378 2341 14 ) ( -1397 2232 14 ) bricks/s_sr_m12ab -40 -72 90 1 1 0 0 0 +} +// brush 2427 +{ +( -1352 2112 -16 ) ( -1304 2128 -8 ) ( -1304 2112 -56 ) bricks/s_sr_m12ab -104 -40 0 1 1 0 0 0 +( -1368 2112 -56 ) ( -1392 2144 -56 ) ( -1360 2144 -8 ) bricks/s_sr_m12ab 96 -40 0 1 1 0 0 0 +( -1376 2216 -56 ) ( -1336 2264 -56 ) ( -1336 2168 0 ) bricks/s_sr_m12ab -104 -112 0 1 1 0 0 0 +( -1321 2163 -56 ) ( -1321 2163 -8 ) ( -1344 2170 -8 ) bricks/s_sr_m12ab -104 -40 0 1 1 0 0 0 +( -1304 2120 -32 ) ( -1304 2160 -32 ) ( -1304 2160 -56 ) bricks/s_sr_m12ab 96 -40 0 1 1 0 0 0 +( -1336 2264 -56 ) ( -1376 2216 -56 ) ( -1360 2096 -56 ) bricks/s_sr_m12ab -104 -96 0 1 1 0 0 0 +( -1304 2128 -8 ) ( -1352 2112 -16 ) ( -1360 2144 -8 ) bricks/s_sr_m12ab -104 -96 0 1 1 0 0 0 +( -1304 2160 -32 ) ( -1304 2120 -32 ) ( -1312 2128 -8 ) bricks/s_sr_m12ab 96 -40 0 1 1 0 0 0 +( -1413 2144 -2 ) ( -1413 2182 -2 ) ( -1304 2163 -2 ) bricks/s_sr_m12ab -104 0 0 1 1 0 0 0 +} +// brush 2428 +{ +( -1216 2240 -32 ) ( -1472 2240 -32 ) ( -1472 2048 -32 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( -1472 2048 -16 ) ( -1472 2240 -16 ) ( -1216 2240 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( -1472 2048 -16 ) ( -1216 2048 -16 ) ( -1216 2048 -32 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( -1216 2048 -16 ) ( -1216 2240 -16 ) ( -1216 2240 -32 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( -1216 2240 -16 ) ( -1472 2240 -16 ) ( -1472 2240 -32 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( -1472 2240 -16 ) ( -1472 2048 -16 ) ( -1472 2048 -32 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +} +// brush 2429 +{ +( -1440 2240 -16 ) ( -1472 2240 -16 ) ( -1472 2200 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1472 2200 0 ) ( -1472 2240 0 ) ( -1440 2240 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1472 2200 0 ) ( -1440 2200 0 ) ( -1440 2200 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1440 2200 0 ) ( -1440 2240 0 ) ( -1440 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1440 2240 0 ) ( -1472 2240 0 ) ( -1472 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1472 2240 0 ) ( -1472 2200 0 ) ( -1472 2200 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2430 +{ +( -1216 2072 -16 ) ( -1248 2072 -16 ) ( -1248 2048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1248 2048 0 ) ( -1248 2072 0 ) ( -1216 2072 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1248 2048 0 ) ( -1216 2048 0 ) ( -1216 2048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 2048 0 ) ( -1216 2072 0 ) ( -1216 2072 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 2072 0 ) ( -1248 2072 0 ) ( -1248 2072 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1248 2072 0 ) ( -1248 2048 0 ) ( -1248 2048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2431 +{ +( -1216 2240 -16 ) ( -1296 2240 -16 ) ( -1296 2216 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1296 2216 0 ) ( -1296 2240 0 ) ( -1216 2240 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1296 2216 0 ) ( -1216 2216 0 ) ( -1216 2216 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 2216 0 ) ( -1216 2240 0 ) ( -1216 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 2240 0 ) ( -1296 2240 0 ) ( -1296 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1296 2240 0 ) ( -1296 2216 0 ) ( -1296 2216 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2432 +{ +( -1440 2176 -16 ) ( -1440 2200 -16 ) ( -1472 2200 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1448 2176 0 ) ( -1448 2224 0 ) ( -1440 2224 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1472 2176 -16 ) ( -1472 2176 0 ) ( -1440 2176 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1440 2200 -16 ) ( -1440 2176 -16 ) ( -1440 2176 0 ) bricks/s_sr_m6 0 128 0 1 1 0 0 0 +( -1472 2200 0 ) ( -1472 2200 -16 ) ( -1440 2200 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1472 2176 0 ) ( -1472 2176 -16 ) ( -1472 2200 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2433 +{ +( -1424 2144 -16 ) ( -1440 2176 -16 ) ( -1472 2176 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1424 2144 0 ) ( -1424 2176 0 ) ( -1416 2176 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1448 2144 -16 ) ( -1448 2144 0 ) ( -1424 2144 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1440 2176 -16 ) ( -1424 2144 -16 ) ( -1424 2144 0 ) bricks/s_sr_m6 0 128 0 1 1 0 0 0 +( -1440 2176 -16 ) ( -1440 2176 0 ) ( -1448 2176 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1472 2144 0 ) ( -1472 2144 -16 ) ( -1472 2176 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2434 +{ +( -1456 2120 -16 ) ( -1424 2144 -16 ) ( -1472 2144 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1424 2144 0 ) ( -1456 2120 0 ) ( -1472 2120 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1459 2120 0 ) ( -1448 2120 -16 ) ( -1472 2120 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1424 2144 -16 ) ( -1456 2120 -16 ) ( -1456 2120 0 ) bricks/s_sr_m6 0 128 0 1 1 0 0 0 +( -1464 2144 0 ) ( -1464 2144 -16 ) ( -1424 2144 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1472 2144 -16 ) ( -1472 2144 0 ) ( -1472 2120 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2435 +{ +( -1456 2048 -16 ) ( -1456 2120 -16 ) ( -1472 2120 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1456 2120 0 ) ( -1456 2048 0 ) ( -1472 2048 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1464 2048 0 ) ( -1456 2048 0 ) ( -1456 2048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1456 2120 -16 ) ( -1456 2048 -16 ) ( -1456 2048 0 ) bricks/s_sr_m6 0 128 0 1 1 0 0 0 +( -1456 2120 0 ) ( -1464 2120 0 ) ( -1464 2120 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1472 2128 0 ) ( -1472 2096 0 ) ( -1472 2096 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2436 +{ +( -1408 2064 -16 ) ( -1456 2096 -16 ) ( -1456 2048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1456 2096 0 ) ( -1408 2064 0 ) ( -1408 2048 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1456 2048 -16 ) ( -1456 2048 0 ) ( -1408 2048 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1408 2056 0 ) ( -1408 2064 0 ) ( -1408 2064 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1456 2096 -16 ) ( -1408 2064 -16 ) ( -1408 2064 0 ) bricks/s_sr_m6 0 128 0 1 1 0 0 0 +( -1456 2056 0 ) ( -1456 2056 -16 ) ( -1456 2096 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2437 +{ +( -1384 2080 -16 ) ( -1408 2064 -16 ) ( -1408 2048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1416 2072 0 ) ( -1416 2080 0 ) ( -1384 2080 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1384 2048 0 ) ( -1384 2048 -16 ) ( -1408 2048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1384 2056 -16 ) ( -1384 2056 0 ) ( -1384 2080 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1408 2064 -16 ) ( -1384 2080 -16 ) ( -1384 2080 0 ) bricks/s_sr_m6 0 128 0 1 1 0 0 0 +( -1408 2064 -16 ) ( -1408 2064 0 ) ( -1408 2056 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2438 +{ +( -1344 2064 -16 ) ( -1384 2080 -16 ) ( -1384 2048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1384 2056 0 ) ( -1384 2064 0 ) ( -1344 2064 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1384 2048 -16 ) ( -1384 2048 0 ) ( -1344 2048 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1344 2056 0 ) ( -1344 2064 0 ) ( -1344 2064 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1384 2080 -16 ) ( -1344 2064 -16 ) ( -1344 2064 0 ) bricks/s_sr_m6 0 128 0 1 1 0 0 0 +( -1384 2056 0 ) ( -1384 2056 -16 ) ( -1384 2080 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2439 +{ +( -1304 2088 -16 ) ( -1344 2064 -16 ) ( -1344 2048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1344 2064 0 ) ( -1304 2088 0 ) ( -1304 2048 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1304 2048 0 ) ( -1304 2048 -16 ) ( -1344 2048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1304 2056 -16 ) ( -1304 2056 0 ) ( -1304 2088 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1344 2064 -16 ) ( -1304 2088 -16 ) ( -1304 2088 0 ) bricks/s_sr_m6 0 128 0 1 1 0 0 0 +( -1344 2064 -16 ) ( -1344 2064 0 ) ( -1344 2056 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2440 +{ +( -1248 2072 -16 ) ( -1304 2088 -16 ) ( -1304 2048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1304 2088 0 ) ( -1248 2072 0 ) ( -1248 2048 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1304 2048 -16 ) ( -1304 2048 0 ) ( -1248 2048 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1248 2064 0 ) ( -1248 2072 0 ) ( -1248 2072 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1304 2088 -16 ) ( -1248 2072 -16 ) ( -1248 2072 0 ) bricks/s_sr_m6 0 128 0 1 1 0 0 0 +( -1304 2064 0 ) ( -1304 2064 -16 ) ( -1304 2088 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2441 +{ +( -1232 2128 -16 ) ( -1248 2072 -16 ) ( -1216 2072 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1232 2072 0 ) ( -1232 2128 0 ) ( -1224 2128 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1224 2072 0 ) ( -1224 2072 -16 ) ( -1248 2072 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 2072 -16 ) ( -1216 2072 0 ) ( -1216 2128 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1224 2128 0 ) ( -1232 2128 0 ) ( -1232 2128 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1248 2072 -16 ) ( -1232 2128 -16 ) ( -1232 2128 0 ) bricks/s_sr_m6 0 128 0 1 1 0 0 0 +} +// brush 2442 +{ +( -1256 2160 -16 ) ( -1232 2128 -16 ) ( -1216 2128 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1232 2128 0 ) ( -1256 2160 0 ) ( -1216 2160 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 2128 0 ) ( -1216 2128 -16 ) ( -1232 2128 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 2128 -16 ) ( -1216 2128 0 ) ( -1216 2160 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 2160 -16 ) ( -1216 2160 0 ) ( -1256 2160 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1232 2128 -16 ) ( -1256 2160 -16 ) ( -1256 2160 0 ) bricks/s_sr_m6 0 128 0 1 1 0 0 0 +} +// brush 2443 +{ +( -1256 2200 -16 ) ( -1256 2160 -16 ) ( -1216 2160 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1256 2160 0 ) ( -1256 2192 0 ) ( -1248 2192 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1256 2160 0 ) ( -1248 2160 0 ) ( -1248 2160 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 2160 0 ) ( -1216 2192 0 ) ( -1216 2192 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1248 2200 0 ) ( -1256 2200 0 ) ( -1256 2200 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1256 2160 -16 ) ( -1256 2200 -16 ) ( -1256 2200 0 ) bricks/s_sr_m6 0 128 0 1 1 0 0 0 +} +// brush 2444 +{ +( -1296 2216 -16 ) ( -1240 2184 -16 ) ( -1216 2184 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1296 2216 0 ) ( -1216 2216 0 ) ( -1216 2192 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1256 2184 -16 ) ( -1256 2184 0 ) ( -1248 2184 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 2192 0 ) ( -1216 2216 0 ) ( -1216 2216 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 2216 -16 ) ( -1216 2216 0 ) ( -1296 2216 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1240 2184 -16 ) ( -1296 2216 -16 ) ( -1296 2216 0 ) bricks/s_sr_m6 0 128 0 1 1 0 0 0 +} +// brush 2445 +{ +( -1328 2224 -16 ) ( -1296 2216 -16 ) ( -1296 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1328 2224 0 ) ( -1328 2232 0 ) ( -1296 2232 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1296 2216 -16 ) ( -1328 2224 -16 ) ( -1328 2224 0 ) bricks/s_sr_m6 0 128 0 1 1 0 0 0 +( -1296 2232 0 ) ( -1296 2232 -16 ) ( -1296 2216 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1296 2240 -16 ) ( -1296 2240 0 ) ( -1328 2240 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1328 2232 0 ) ( -1328 2224 0 ) ( -1328 2224 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2446 +{ +( -1344 2208 -16 ) ( -1328 2224 -16 ) ( -1328 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1328 2224 0 ) ( -1344 2208 0 ) ( -1344 2240 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1328 2224 -16 ) ( -1344 2208 -16 ) ( -1344 2208 0 ) bricks/s_sr_m6 0 128 0 1 1 0 0 0 +( -1328 2224 -16 ) ( -1328 2224 0 ) ( -1328 2232 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1344 2240 0 ) ( -1344 2240 -16 ) ( -1328 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1344 2232 -16 ) ( -1344 2232 0 ) ( -1344 2208 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2447 +{ +( -1376 2208 -16 ) ( -1344 2208 -16 ) ( -1344 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1344 2208 0 ) ( -1376 2208 0 ) ( -1376 2240 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1344 2208 -16 ) ( -1376 2208 -16 ) ( -1376 2208 0 ) bricks/s_sr_m6 0 128 0 1 1 0 0 0 +( -1344 2208 0 ) ( -1344 2216 0 ) ( -1344 2216 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1336 2240 0 ) ( -1368 2240 0 ) ( -1368 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1376 2216 0 ) ( -1376 2208 0 ) ( -1376 2208 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2448 +{ +( -1416 2224 -16 ) ( -1376 2208 -16 ) ( -1376 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1376 2208 0 ) ( -1416 2224 0 ) ( -1416 2240 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1376 2208 -16 ) ( -1416 2224 -16 ) ( -1416 2224 0 ) bricks/s_sr_m6 0 128 0 1 1 0 0 0 +( -1376 2232 0 ) ( -1376 2232 -16 ) ( -1376 2208 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1376 2240 -16 ) ( -1376 2240 0 ) ( -1416 2240 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1416 2232 0 ) ( -1416 2224 0 ) ( -1416 2224 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2449 +{ +( -1440 2200 -16 ) ( -1416 2224 -16 ) ( -1416 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1456 2224 0 ) ( -1456 2232 0 ) ( -1416 2232 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1416 2224 -16 ) ( -1440 2200 -16 ) ( -1440 2200 0 ) bricks/s_sr_m6 0 128 0 1 1 0 0 0 +( -1416 2224 0 ) ( -1416 2232 0 ) ( -1416 2232 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1440 2240 0 ) ( -1440 2240 -16 ) ( -1416 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1440 2232 -16 ) ( -1440 2232 0 ) ( -1440 2200 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2450 +{ +( -1384 2304 86 ) ( -1216 2304 86 ) ( -1216 2368 102 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1216 2304 88 ) ( -1384 2304 88 ) ( -1384 2368 104 ) metals/mt_pv_m7m 16 -40 0 1 1 0 16777216 0 +( -1384 2304 94 ) ( -1216 2304 94 ) ( -1216 2304 86 ) metals/mt_pv_m7m 184 88 270 1 1 0 0 0 +( -1216 2304 104 ) ( -1216 2368 104 ) ( -1216 2368 -24 ) metals/mt_pv_m7m 0 -24 0 1 1 0 0 0 +( -1232 2368 104 ) ( -1384 2368 104 ) ( -1384 2368 -24 ) metals/mt_pv_m7m 0 -24 0 1 1 0 0 0 +( -1298 2304 86 ) ( -1294 2368 86 ) ( -1296 2336 104 ) metals/mt_pv_m7m 0 -24 0 1 1 0 0 0 +} +// brush 2451 +{ +( -1374 2300 88 ) ( -1206 2300 88 ) ( -1206 2364 104 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1206 2300 90 ) ( -1374 2300 90 ) ( -1374 2364 106 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1374 2300 96 ) ( -1206 2300 96 ) ( -1206 2300 88 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1222 2364 106 ) ( -1374 2364 106 ) ( -1374 2364 -22 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1374 2364 106 ) ( -1374 2300 106 ) ( -1374 2300 -22 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1302 2364 88 ) ( -1302 2356 88 ) ( -1302 2360 106 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 2452 +{ +( -1332 2310 0 ) ( -1352 2310 0 ) ( -1352 2308 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1352 2308 72 ) ( -1352 2310 72 ) ( -1332 2310 72 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1352 2308 82 ) ( -1332 2308 82 ) ( -1332 2308 0 ) metals/mt_pv_m7m 0 -55 0 1 1 0 16777216 0 +( -1332 2308 82 ) ( -1332 2310 82 ) ( -1332 2310 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1322 2310 82 ) ( -1342 2310 82 ) ( -1342 2310 0 ) metals/mt_pv_m7m 0 -56 0 1 1 0 16777216 0 +( -1348 2310 82 ) ( -1348 2308 82 ) ( -1348 2308 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +} +// brush 2453 +{ +( -1332 2308 0 ) ( -1370 2308 0 ) ( -1370 2306 0 ) wood/wd_sr_m3a 80 -2 0 1 1 134217728 0 0 +( -1370 2306 68 ) ( -1370 2308 68 ) ( -1332 2308 68 ) wood/wd_sr_m3a 80 -2 0 1 1 134217728 0 0 +( -1370 2306 82 ) ( -1332 2306 82 ) ( -1332 2306 0 ) wood/wd_sr_m3a 80 0 0 1 1 134217728 134217728 0 +( -1332 2306 82 ) ( -1332 2308 82 ) ( -1332 2308 0 ) wood/wd_sr_m3a 2 0 0 1 1 134217728 0 0 +( -1332 2308 82 ) ( -1370 2308 82 ) ( -1370 2308 0 ) wood/wd_sr_m3a 80 0 0 1 1 134217728 0 0 +( -1342 2308 82 ) ( -1342 2306 82 ) ( -1342 2306 0 ) wood/wd_sr_m3a 2 0 0 1 1 134217728 0 0 +} +// brush 2454 +{ +( -1310 2310 0 ) ( -1330 2310 0 ) ( -1330 2308 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1330 2308 90 ) ( -1330 2310 90 ) ( -1310 2310 90 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1330 2308 82 ) ( -1310 2308 82 ) ( -1310 2308 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1310 2308 82 ) ( -1310 2310 82 ) ( -1310 2310 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1310 2310 82 ) ( -1330 2310 82 ) ( -1330 2310 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1332 2310 82 ) ( -1332 2308 82 ) ( -1332 2308 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +} +// brush 2455 +{ +( -1300 2302 0 ) ( -1322 2302 0 ) ( -1322 2300 0 ) wood/wd_sr_m3a 48 -2 0 1 1 0 0 0 +( -1338 2306 68 ) ( -1338 2308 68 ) ( -1300 2308 68 ) wood/wd_sr_m3a 48 -2 0 1 1 0 0 0 +( -1300 2300 0 ) ( -1322 2300 0 ) ( -1322 2306 68 ) wood/wd_sr_m3a 48 0 0 1 1 0 134217728 0 +( -1300 2306 82 ) ( -1300 2308 82 ) ( -1300 2308 0 ) wood/wd_sr_m3a 2 0 0 1 1 0 0 0 +( -1322 2302 0 ) ( -1300 2302 0 ) ( -1300 2308 68 ) wood/wd_sr_m3a 48 0 0 1 1 0 0 0 +( -1322 2308 82 ) ( -1322 2306 82 ) ( -1322 2306 0 ) wood/wd_sr_m3a 2 0 0 1 1 0 0 0 +} +// brush 2456 +{ +( -1290 2310 0 ) ( -1310 2310 0 ) ( -1310 2308 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1310 2308 82 ) ( -1310 2310 82 ) ( -1290 2310 82 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1310 2308 82 ) ( -1290 2308 82 ) ( -1290 2308 0 ) metals/mt_pv_m7m 0 -45 0 1 1 0 16777216 0 +( -1290 2308 82 ) ( -1290 2310 82 ) ( -1290 2310 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1290 2310 82 ) ( -1310 2310 82 ) ( -1310 2310 0 ) metals/mt_pv_m7m 0 -46 0 1 1 0 16777216 0 +( -1310 2310 83 ) ( -1310 2308 83 ) ( -1310 2308 1 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +} +// brush 2457 +{ +( -1270 2308 0 ) ( -1290 2308 0 ) ( -1290 2306 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1290 2306 54 ) ( -1290 2308 54 ) ( -1270 2308 54 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1270 2298 54 ) ( -1270 2298 0 ) ( -1292 2306 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 134217728 0 +( -1270 2300 56 ) ( -1270 2300 2 ) ( -1270 2298 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1270 2300 2 ) ( -1270 2300 56 ) ( -1292 2308 54 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1292 2308 82 ) ( -1292 2306 82 ) ( -1292 2306 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +} +// brush 2458 +{ +( -1252 2310 0 ) ( -1290 2310 0 ) ( -1290 2308 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( -1290 2308 88 ) ( -1290 2310 88 ) ( -1252 2310 88 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( -1290 2308 82 ) ( -1252 2308 82 ) ( -1252 2308 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 8388608 0 +( -1252 2308 82 ) ( -1252 2310 82 ) ( -1252 2310 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( -1252 2310 82 ) ( -1290 2310 82 ) ( -1290 2310 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( -1290 2310 82 ) ( -1290 2308 82 ) ( -1290 2308 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +} +// brush 2459 +{ +( -1218 2308 0 ) ( -1256 2308 0 ) ( -1256 2306 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1256 2306 88 ) ( -1256 2308 88 ) ( -1218 2308 88 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1256 2306 82 ) ( -1218 2306 82 ) ( -1218 2306 62 ) metals/mt_pv_m7m 0 -40 0 1 1 0 16777216 0 +( -1218 2306 82 ) ( -1218 2308 82 ) ( -1218 2308 62 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1218 2308 82 ) ( -1256 2308 82 ) ( -1256 2308 62 ) metals/mt_pv_m7m 0 -41 0 1 1 0 16777216 0 +( -1256 2308 82 ) ( -1256 2306 82 ) ( -1256 2306 62 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +} +// brush 2460 +{ +( -1222 2312 0 ) ( -1226 2312 0 ) ( -1226 2308 0 ) wood/wd_sr_m3a -24 0 0 1 1 0 0 0 +( -1226 2308 128 ) ( -1222 2308 128 ) ( -1222 2308 0 ) wood/wd_sr_m3a -24 0 0 1 1 0 0 0 +( -1222 2308 128 ) ( -1222 2312 128 ) ( -1222 2312 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( -1222 2312 128 ) ( -1226 2312 128 ) ( -1226 2312 0 ) wood/wd_sr_m3a -24 0 0 1 1 0 0 0 +( -1226 2312 128 ) ( -1226 2308 128 ) ( -1226 2308 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( -1064 2304 86 ) ( -1232 2304 86 ) ( -1064 2368 102 ) wood/wd_sr_m3a -24 0 0 1 1 0 0 0 +} +// brush 2461 +{ +( -1374 2312 0 ) ( -1378 2312 0 ) ( -1378 2308 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( -1378 2308 130 ) ( -1374 2308 130 ) ( -1374 2308 2 ) wood/wd_sr_m3a 0 2 0 1 1 0 0 0 +( -1374 2308 130 ) ( -1374 2312 130 ) ( -1374 2312 2 ) wood/wd_sr_m3a 0 2 0 1 1 0 0 0 +( -1374 2312 130 ) ( -1378 2312 130 ) ( -1378 2312 2 ) wood/wd_sr_m3a 0 2 0 1 1 0 0 0 +( -1378 2312 130 ) ( -1378 2308 130 ) ( -1378 2308 2 ) wood/wd_sr_m3a 0 2 0 1 1 0 0 0 +( -1216 2304 88 ) ( -1384 2304 88 ) ( -1216 2368 104 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +} +// brush 2462 +{ +( -1216 2368 -16 ) ( -1408 2368 -16 ) ( -1408 2296 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1408 2296 0 ) ( -1408 2368 0 ) ( -1216 2368 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1400 2240 0 ) ( -1208 2240 0 ) ( -1208 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 2296 0 ) ( -1216 2368 0 ) ( -1216 2368 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 2368 0 ) ( -1408 2368 0 ) ( -1408 2368 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1408 2368 0 ) ( -1408 2296 0 ) ( -1408 2296 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2463 +{ +( -1088 1648 128 ) ( -1104 1648 128 ) ( -1104 1408 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1104 1280 256 ) ( -1088 1280 256 ) ( -1088 1280 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1088 1408 256 ) ( -1088 1648 256 ) ( -1088 1648 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1088 1648 256 ) ( -1104 1648 256 ) ( -1104 1648 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1104 1648 256 ) ( -1104 1408 256 ) ( -1104 1408 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1096 1280 256 ) ( -1112 1280 256 ) ( -1104 1648 256 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +} +// brush 2464 +{ +( -1104 1408 384 ) ( -1104 1648 384 ) ( -1088 1648 384 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1104 1280 256 ) ( -1088 1280 256 ) ( -1088 1280 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1088 1408 256 ) ( -1088 1648 256 ) ( -1088 1648 128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1088 1648 256 ) ( -1104 1648 256 ) ( -1104 1648 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1104 1648 256 ) ( -1104 1408 256 ) ( -1104 1408 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1112 1280 256 ) ( -1096 1280 256 ) ( -1104 1648 256 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +} +// brush 2465 +{ +( -1144 1648 384 ) ( -1144 1664 384 ) ( -960 1664 384 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1144 1648 256 ) ( -960 1648 256 ) ( -960 1648 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -960 1664 256 ) ( -1144 1664 256 ) ( -1144 1664 128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1472 1648 256 ) ( -1456 1648 256 ) ( -1464 1664 256 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1184 1664 256 ) ( -1184 1648 256 ) ( -1184 1656 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1248 1648 256 ) ( -1248 1664 256 ) ( -1248 1656 384 ) bricks/b_mf_v2a 0 1 0 1 1 0 0 0 +} +// brush 2466 +{ +( -1144 1632 384 ) ( -1144 1648 384 ) ( -960 1648 384 ) bricks/b_sr_20 64 -15 -180 1 -1 0 0 0 +( -1144 1632 256 ) ( -960 1632 256 ) ( -960 1632 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -960 1648 256 ) ( -1144 1648 256 ) ( -1144 1648 128 ) props/w_sr_m6d 0 0 0 1 1 0 0 0 +( -1472 1632 256 ) ( -1456 1632 256 ) ( -1464 1648 256 ) bricks/b_sr_20 64 -15 -180 1 -1 0 0 0 +( -1312 1632 256 ) ( -1312 1648 256 ) ( -1312 1640 384 ) bricks/b_sr_20 48 0 -180 1 -1 0 0 0 +( -1248 1648 256 ) ( -1248 1632 256 ) ( -1248 1640 384 ) bricks/b_sr_20 48 0 -180 1 -1 0 0 0 +} +// brush 2467 +{ +( -1144 1648 384 ) ( -1144 1664 384 ) ( -960 1664 384 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1144 1648 256 ) ( -960 1648 256 ) ( -960 1648 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -960 1664 256 ) ( -1144 1664 256 ) ( -1144 1664 128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1472 1648 256 ) ( -1456 1648 256 ) ( -1464 1664 256 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1344 1648 256 ) ( -1344 1664 256 ) ( -1344 1656 384 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1312 1664 256 ) ( -1312 1648 256 ) ( -1312 1656 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2468 +{ +( -1144 1632 384 ) ( -1144 1648 384 ) ( -960 1648 384 ) bricks/b_sr_20 64 -15 -180 1 -1 0 0 0 +( -1144 1632 256 ) ( -960 1632 256 ) ( -960 1632 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -960 1648 256 ) ( -1144 1648 256 ) ( -1144 1648 128 ) props/w_sr_m6e 0 0 0 1 1 0 0 0 +( -1472 1632 256 ) ( -1456 1632 256 ) ( -1464 1648 256 ) bricks/b_sr_20 64 -15 -180 1 -1 0 0 0 +( -1120 1648 256 ) ( -1120 1632 256 ) ( -1120 1640 384 ) bricks/b_sr_20 48 0 -180 1 -1 0 0 0 +( -1184 1632 256 ) ( -1184 1648 256 ) ( -1184 1640 384 ) bricks/b_sr_20 48 0 -180 1 -1 0 0 0 +} +// brush 2469 +{ +( -1144 1648 384 ) ( -1144 1664 384 ) ( -960 1664 384 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1144 1648 256 ) ( -960 1648 256 ) ( -960 1648 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1088 1648 256 ) ( -1088 1664 256 ) ( -1088 1664 128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -960 1664 256 ) ( -1144 1664 256 ) ( -1144 1664 128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1472 1648 256 ) ( -1456 1648 256 ) ( -1464 1664 256 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1120 1648 256 ) ( -1120 1664 256 ) ( -1120 1656 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2470 +{ +( -1144 1648 384 ) ( -1144 1664 384 ) ( -960 1664 384 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1144 1648 256 ) ( -960 1648 256 ) ( -960 1648 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -960 1664 256 ) ( -1144 1664 256 ) ( -1144 1664 128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1472 1664 256 ) ( -1472 1648 256 ) ( -1472 1648 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1472 1648 256 ) ( -1456 1648 256 ) ( -1464 1664 256 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1344 1664 256 ) ( -1344 1648 256 ) ( -1344 1656 384 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +} +// brush 2471 +{ +( -960 1664 128 ) ( -1144 1664 128 ) ( -1144 1648 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1144 1648 256 ) ( -960 1648 256 ) ( -960 1648 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1088 1648 256 ) ( -1088 1664 256 ) ( -1088 1664 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -960 1664 256 ) ( -1144 1664 256 ) ( -1144 1664 128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1472 1664 256 ) ( -1472 1648 256 ) ( -1472 1648 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1456 1648 256 ) ( -1472 1648 256 ) ( -1464 1664 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2472 +{ +( -1472 1920 320 ) ( -1488 1920 320 ) ( -1488 1664 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1488 1664 512 ) ( -1488 1920 512 ) ( -1472 1920 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1488 1664 512 ) ( -1472 1664 512 ) ( -1472 1664 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1472 1664 512 ) ( -1472 1920 512 ) ( -1472 1920 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1472 1920 512 ) ( -1488 1920 512 ) ( -1488 1920 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1488 1920 512 ) ( -1488 1664 512 ) ( -1488 1664 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2473 +{ +( -1088 1664 448 ) ( -1352 1664 448 ) ( -1352 1656 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1352 1656 512 ) ( -1352 1664 512 ) ( -1088 1664 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1352 1648 512 ) ( -1088 1648 512 ) ( -1088 1648 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1088 1656 512 ) ( -1088 1664 512 ) ( -1088 1664 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1088 1664 512 ) ( -1352 1664 512 ) ( -1352 1664 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1472 1656 512 ) ( -1472 1648 512 ) ( -1472 1648 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2474 +{ +( -1081 1311 224 ) ( -1087 1306 224 ) ( -1065 1282 224 ) metals/mt_pv_m26y 0 31 0 1 1 134217728 0 0 +( -1065 1282 256 ) ( -1087 1306 256 ) ( -1081 1311 256 ) metals/mt_pv_m26y 0 31 0 1 1 134217728 0 0 +( -1065 1282 256 ) ( -1059 1287 256 ) ( -1059 1287 224 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1059 1287 256 ) ( -1081 1311 256 ) ( -1081 1311 224 ) common/li_sr_v13 20 0 0 0.740000 1 134217728 1 55000 +( -1081 1311 256 ) ( -1087 1306 256 ) ( -1087 1306 224 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1087 1306 256 ) ( -1065 1282 256 ) ( -1065 1282 224 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +} +// brush 2475 +{ +( -1336 1908 8 ) ( -1336 1892 8 ) ( -1272 1892 8 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1336 1892 16 ) ( -1336 1908 16 ) ( -1272 1908 16 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 0 16779264 0 +( -1336 1892 15 ) ( -1208 1892 15 ) ( -1208 1892 7 ) metals/mt_sr_b1a -7 6 0 1 1 0 0 0 +( -1208 1908 15 ) ( -1336 1908 15 ) ( -1336 1908 7 ) metals/mt_sr_b1a -9 93 1 1 1 0 0 0 +( -1336 1908 16 ) ( -1336 1892 16 ) ( -1336 1892 8 ) metals/mt_pv_m26y 0 1 0 1 1 0 0 0 +( -1272 1916 7 ) ( -1272 1908 7 ) ( -1272 1912 15 ) metals/mt_pv_m26y 0 1 0 1 1 0 0 0 +} +// brush 2476 +{ +( -1216 2048 512 ) ( -1472 2048 512 ) ( -1472 1784 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -1472 1784 528 ) ( -1472 2048 528 ) ( -1216 2048 528 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -1464 1648 528 ) ( -1208 1648 528 ) ( -1208 1648 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -1216 1784 528 ) ( -1216 2048 528 ) ( -1216 2048 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -1216 2048 528 ) ( -1472 2048 528 ) ( -1472 2048 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -1472 2048 528 ) ( -1472 1784 528 ) ( -1472 1784 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +} +// brush 2477 +{ +( -960 2240 512 ) ( -1216 2240 512 ) ( -1216 1792 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -1216 1792 528 ) ( -1216 2240 528 ) ( -960 2240 528 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -1216 1280 528 ) ( -960 1280 528 ) ( -960 1280 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -960 1792 528 ) ( -960 2240 528 ) ( -960 2240 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -960 2240 528 ) ( -1216 2240 528 ) ( -1216 2240 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -1216 2240 528 ) ( -1216 1792 528 ) ( -1216 1792 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +} +// brush 2478 +{ +( -1088 1648 448 ) ( -1104 1648 448 ) ( -1104 1280 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1104 1280 512 ) ( -1104 1648 512 ) ( -1088 1648 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1104 1280 512 ) ( -1088 1280 512 ) ( -1088 1280 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1088 1280 512 ) ( -1088 1648 512 ) ( -1088 1648 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1088 1648 512 ) ( -1104 1648 512 ) ( -1104 1648 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1104 1648 512 ) ( -1104 1280 512 ) ( -1104 1280 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2479 +{ +( -960 1280 448 ) ( -1088 1280 448 ) ( -1088 1264 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1088 1264 512 ) ( -1088 1280 512 ) ( -960 1280 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1088 1264 512 ) ( -960 1264 512 ) ( -960 1264 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -320 1256 512 ) ( -320 1272 512 ) ( -320 1272 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -960 1280 512 ) ( -1088 1280 512 ) ( -1088 1280 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1088 1280 512 ) ( -1088 1264 512 ) ( -1088 1264 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2480 +{ +( -944 2264 320 ) ( -960 2264 320 ) ( -960 1920 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -960 1920 512 ) ( -960 2264 512 ) ( -944 2264 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -944 1664 512 ) ( -928 1664 512 ) ( -928 1664 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -944 1600 512 ) ( -944 1944 512 ) ( -944 1944 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -928 2256 512 ) ( -944 2256 512 ) ( -944 2256 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -960 2520 512 ) ( -960 2176 512 ) ( -960 2176 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2481 +{ +( -960 2264 320 ) ( -1200 2264 320 ) ( -1200 2240 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1200 2240 512 ) ( -1200 2264 512 ) ( -960 2264 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1200 2240 512 ) ( -960 2240 512 ) ( -960 2240 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -960 2240 512 ) ( -960 2264 512 ) ( -960 2264 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -960 2256 512 ) ( -1200 2256 512 ) ( -1200 2256 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1200 2264 512 ) ( -1200 2240 512 ) ( -1200 2240 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2482 +{ +( -1012 1718 0 ) ( -1012 1726 0 ) ( -1020 1726 0 ) metals/mt_pv_m26y 0 0 0 2 2 0 8388608 0 +( -1008 1720 144 ) ( -1016 1720 144 ) ( -1016 1728 144 ) metals/mt_pv_m26y 0 0 0 2 2 0 8388608 0 +( -1016 1720 144 ) ( -1008 1720 144 ) ( -1010 1718 0 ) metals/mt_pv_m26y 0 0 0 2 2 0 8388608 0 +( -1012 1726 0 ) ( -1012 1718 0 ) ( -1008 1720 144 ) metals/mt_pv_m26y 0 0 0 2 2 0 8388608 0 +( -1008 1728 144 ) ( -1016 1728 144 ) ( -1018 1726 0 ) metals/mt_pv_m26y 0 0 0 2 2 0 8388608 0 +( -1020 1718 0 ) ( -1020 1726 0 ) ( -1016 1728 144 ) metals/mt_pv_m26y 0 0 0 2 2 0 8388608 0 +} +// brush 2483 +{ +( -960 1280 256 ) ( -1088 1280 256 ) ( -1088 1264 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1088 1264 384 ) ( -1088 1280 384 ) ( -960 1280 384 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1088 1264 320 ) ( -960 1264 320 ) ( -960 1264 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -320 1248 320 ) ( -320 1264 320 ) ( -320 1264 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -960 1280 320 ) ( -1088 1280 320 ) ( -1088 1280 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1088 1280 320 ) ( -1088 1264 320 ) ( -1088 1264 256 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2484 +{ +( -960 1280 128 ) ( -1088 1280 128 ) ( -1088 1264 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1088 1264 256 ) ( -1088 1280 256 ) ( -960 1280 256 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -1088 1264 256 ) ( -960 1264 256 ) ( -960 1264 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -768 1264 256 ) ( -768 1280 256 ) ( -768 1280 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +( -960 1280 256 ) ( -1088 1280 256 ) ( -1088 1280 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1088 1280 256 ) ( -1088 1264 256 ) ( -1088 1264 128 ) bricks/b_sr_20 64 0 -180 1 -1 0 0 0 +} +// brush 2485 +{ +( -960 1280 0 ) ( -1088 1280 0 ) ( -1088 1264 0 ) bricks/b_sr_20a 64 0 -180 1 -1 0 0 0 +( -1088 1264 128 ) ( -1088 1280 128 ) ( -960 1280 128 ) bricks/b_sr_20a 64 0 -180 1 -1 0 0 0 +( -1088 1264 128 ) ( -960 1264 128 ) ( -960 1264 0 ) bricks/b_sr_20a 64 0 -180 1 -1 0 0 0 +( -768 1264 128 ) ( -768 1280 128 ) ( -768 1280 0 ) bricks/b_sr_20a 64 0 -180 1 -1 0 0 0 +( -960 1280 128 ) ( -1088 1280 128 ) ( -1088 1280 0 ) bricks/c_pv_m2gg 0 0 0 1 1 0 0 0 +( -1088 1280 128 ) ( -1088 1264 128 ) ( -1088 1264 0 ) bricks/b_sr_20a 64 0 -180 1 -1 0 0 0 +} +// brush 2486 +{ +( -1088 1648 384 ) ( -1104 1648 384 ) ( -1104 1408 384 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -1104 1408 448 ) ( -1104 1648 448 ) ( -1088 1648 448 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -1104 1280 448 ) ( -1088 1280 448 ) ( -1088 1280 384 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -1088 1408 448 ) ( -1088 1648 448 ) ( -1088 1648 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -1088 1648 448 ) ( -1104 1648 448 ) ( -1104 1648 384 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -1104 1648 448 ) ( -1104 1408 448 ) ( -1104 1408 384 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +} +// brush 2487 +{ +( -1088 1648 0 ) ( -1104 1648 0 ) ( -1104 1408 0 ) bricks/b_sr_20a 64 0 -180 1 -1 0 0 0 +( -1104 1408 128 ) ( -1104 1648 128 ) ( -1088 1648 128 ) bricks/b_sr_20a 64 0 -180 1 -1 0 0 0 +( -1104 1280 128 ) ( -1088 1280 128 ) ( -1088 1280 0 ) bricks/b_sr_20a 64 0 -180 1 -1 0 0 0 +( -1088 1408 128 ) ( -1088 1648 128 ) ( -1088 1648 0 ) bricks/c_pv_m2gg 0 0 0 1 1 0 0 0 +( -1088 1472 128 ) ( -1104 1472 128 ) ( -1104 1472 0 ) bricks/b_sr_20a 64 0 -180 1 -1 0 0 0 +( -1104 1648 128 ) ( -1104 1408 128 ) ( -1104 1408 0 ) bricks/b_sr_20a 64 0 -180 1 -1 0 0 0 +} +// brush 2488 +{ +( -960 1664 -16 ) ( -1184 1664 -16 ) ( -1184 1472 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1184 1472 0 ) ( -1184 1664 0 ) ( -960 1664 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1192 1280 0 ) ( -968 1280 0 ) ( -968 1280 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -960 1472 0 ) ( -960 1664 0 ) ( -960 1664 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -960 1664 0 ) ( -1184 1664 0 ) ( -1184 1664 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1184 1664 0 ) ( -1184 1472 0 ) ( -1184 1472 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2489 +{ +( -960 1668 0 ) ( -1180 1668 0 ) ( -1180 1660 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1180 1660 128 ) ( -1180 1668 128 ) ( -960 1668 128 ) metals/mt_pv_m26y 0 0 0 1 1 0 8388608 0 +( -1184 1664 0 ) ( -1184 1664 128 ) ( -960 1664 128 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1088 1660 128 ) ( -1088 1668 128 ) ( -1088 1668 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1184 1668 128 ) ( -1184 1668 0 ) ( -960 1668 0 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +( -1184 1668 0 ) ( -1184 1668 128 ) ( -1184 1664 128 ) metals/mt_pv_m7m 0 0 0 1 1 0 16777216 0 +} +// brush 2490 +{ +( -1336 1888 19 ) ( -1336 1872 19 ) ( -1280 1872 17 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1336 1872 27 ) ( -1336 1888 27 ) ( -1280 1888 25 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 0 16779264 0 +( -1336 1872 25 ) ( -1208 1872 25 ) ( -1208 1872 17 ) metals/mt_sr_b1a -7 16 0 1 1 0 0 0 +( -1208 1888 25 ) ( -1336 1888 25 ) ( -1336 1888 17 ) metals/mt_sr_b1a -7 35 -2 1 1 0 0 0 +( -1336 1872 19 ) ( -1336 1888 19 ) ( -1336 1888 27 ) metals/mt_pv_m26y 0 -5 0 1 1 0 0 0 +( -1280 1896 17 ) ( -1280 1888 17 ) ( -1280 1892 25 ) metals/mt_pv_m26y 0 -5 0 1 1 0 0 0 +} +// brush 2491 +{ +( -1272 1868 36 ) ( -1336 1868 38 ) ( -1336 1852 38 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1336 1868 44 ) ( -1272 1868 44 ) ( -1272 1852 44 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 0 16779264 0 +( -1337 1852 45 ) ( -1273 1852 45 ) ( -1272 1852 37 ) metals/mt_sr_b1a -7 36 0 1 1 0 0 0 +( -1272 1868 44 ) ( -1336 1868 44 ) ( -1336 1868 38 ) metals/mt_sr_b1a -7 35 0 1 1 0 0 0 +( -1336 1876 46 ) ( -1336 1852 46 ) ( -1336 1852 38 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1272 1854 44 ) ( -1272 1870 46 ) ( -1272 1868 36 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +} +// brush 2492 +{ +( -1272 1812 71 ) ( -1272 1828 71 ) ( -1336 1828 70 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1272 1828 79 ) ( -1272 1812 79 ) ( -1336 1812 78 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 0 16779264 0 +( -1336 1812 78 ) ( -1208 1812 78 ) ( -1208 1812 70 ) metals/mt_sr_b1a -7 5 0 1 1 0 0 0 +( -1208 1828 78 ) ( -1336 1828 78 ) ( -1336 1828 70 ) metals/mt_sr_b1a -11 51 2 1 1 0 0 0 +( -1336 1836 78 ) ( -1336 1812 78 ) ( -1336 1812 70 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1272 1828 71 ) ( -1272 1812 71 ) ( -1272 1812 79 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +} +// brush 2493 +{ +( -1211 1819 86 ) ( -1339 1815 86 ) ( -1338 1791 86 ) metals/mt_pv_m26y -63 44 2 0.999999 0.999999 0 0 0 +( -1336 1791 94 ) ( -1337 1815 94 ) ( -1209 1819 94 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 0 16779264 0 +( -1336 1791 94 ) ( -1208 1795 94 ) ( -1208 1795 86 ) metals/mt_sr_b1a -6 21 0 0.999390 1 0 0 0 +( -1208 1811 94 ) ( -1336 1807 94 ) ( -1336 1807 86 ) metals/mt_sr_b1a -5 21 0 0.999390 1 0 0 0 +( -1337 1815 94 ) ( -1336 1791 94 ) ( -1336 1791 86 ) metals/mt_pv_m26y 0 0 0 0.999390 1 0 0 0 +( -1276 1849 86 ) ( -1275 1841 86 ) ( -1276 1845 94 ) metals/mt_pv_m26y -2 0 0 0.999390 1 0 0 0 +} +// brush 2494 +{ +( -1208 1796 102 ) ( -1336 1796 102 ) ( -1336 1772 102 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1336 1772 110 ) ( -1336 1796 110 ) ( -1208 1796 110 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 0 16779264 0 +( -1336 1772 110 ) ( -1208 1772 110 ) ( -1208 1772 102 ) metals/mt_sr_b1a -7 37 0 1 1 0 0 0 +( -1208 1788 110 ) ( -1336 1788 110 ) ( -1336 1788 102 ) metals/mt_sr_b1a -7 37 0 1 1 0 0 0 +( -1336 1796 110 ) ( -1336 1772 110 ) ( -1336 1772 102 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1272 1860 102 ) ( -1272 1852 102 ) ( -1272 1856 110 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +} +// brush 2495 +{ +( -1272 1752 116 ) ( -1272 1768 116 ) ( -1336 1768 118 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1272 1768 124 ) ( -1272 1752 124 ) ( -1336 1752 126 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 0 16779264 0 +( -1336 1752 126 ) ( -1208 1752 126 ) ( -1208 1752 118 ) metals/mt_sr_b1a -7 53 0 1 1 0 0 0 +( -1208 1768 126 ) ( -1336 1768 126 ) ( -1336 1768 118 ) metals/mt_sr_b1a -3 70 -2 1 1 0 0 0 +( -1336 1776 126 ) ( -1336 1752 126 ) ( -1336 1752 118 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1272 1752 124 ) ( -1272 1768 124 ) ( -1272 1768 116 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +} +// brush 2496 +{ +( -1336 1748 130 ) ( -1336 1732 132 ) ( -1272 1732 134 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1334 1732 140 ) ( -1334 1748 138 ) ( -1272 1748 140 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 0 16779264 0 +( -1336 1732 142 ) ( -1208 1732 142 ) ( -1208 1732 134 ) metals/mt_sr_b1a -7 5 0 1 1 0 0 0 +( -1272 1748 140 ) ( -1336 1748 140 ) ( -1336 1748 132 ) metals/mt_sr_b1a -15 58 2 1 1 0 0 0 +( -1334 1748 138 ) ( -1334 1732 140 ) ( -1336 1732 132 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1272 1884 134 ) ( -1272 1876 134 ) ( -1272 1880 142 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +} +// brush 2497 +{ +( -960 1728 144 ) ( -1344 1728 144 ) ( -1344 1664 144 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 0 16779264 0 +( -1344 1664 152 ) ( -1344 1728 152 ) ( -960 1728 152 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 0 16779264 0 +( -1344 1664 256 ) ( -960 1664 256 ) ( -960 1664 128 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 0 16779264 0 +( -1008 1656 256 ) ( -1008 1720 256 ) ( -1008 1720 128 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 0 16779264 0 +( -960 1728 256 ) ( -1344 1728 256 ) ( -1344 1728 128 ) metals/mt_sr_b1a -11 15 0 1 1 0 0 0 +( -1344 1728 256 ) ( -1344 1664 256 ) ( -1344 1664 128 ) metals/mt_pv_v4b 0 0 0 0.500000 0.500000 0 16779264 0 +} +// brush 2498 +{ +( -960 1664 384 ) ( -1344 1664 384 ) ( -1344 1648 384 ) bricks/b_mf_v2a 0 1 0 1 1 0 0 0 +( -1344 1648 448 ) ( -1344 1664 448 ) ( -960 1664 448 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -1344 1648 448 ) ( -960 1648 448 ) ( -960 1648 384 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -1088 1648 448 ) ( -1088 1664 448 ) ( -1088 1664 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -960 1664 448 ) ( -1344 1664 448 ) ( -1344 1664 384 ) bricks/s_sr_m12a 0 0 0 1 1 0 0 0 +( -1472 1672 448 ) ( -1472 1656 448 ) ( -1472 1656 384 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +} +// brush 2499 +{ +( -1088 1664 0 ) ( -1344 1664 0 ) ( -1344 1640 0 ) bricks/b_sr_20a 64 0 -180 1 -1 0 0 0 +( -1344 1640 128 ) ( -1344 1664 128 ) ( -1088 1664 128 ) bricks/b_sr_20a 64 0 -180 1 -1 0 0 0 +( -1344 1648 128 ) ( -1088 1648 128 ) ( -1088 1648 0 ) bricks/b_sr_20a 64 0 -180 1 -1 0 0 0 +( -1088 1632 128 ) ( -1088 1656 128 ) ( -1088 1656 0 ) bricks/c_pv_m2 0 0 0 1 1 0 0 0 +( -1088 1664 128 ) ( -1344 1664 128 ) ( -1344 1664 0 ) bricks/c_pv_m2gg 0 0 0 1 1 0 0 0 +( -1344 1664 128 ) ( -1344 1640 128 ) ( -1344 1640 0 ) bricks/b_sr_20a 64 0 -180 1 -1 0 0 0 +} +// brush 2500 +{ +( -1200 2384 256 ) ( -1224 2384 256 ) ( -1224 2240 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1224 2240 320 ) ( -1224 2384 320 ) ( -1200 2384 320 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1224 2240 320 ) ( -1200 2240 320 ) ( -1200 2240 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1200 2240 320 ) ( -1200 2384 320 ) ( -1200 2384 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1200 2384 320 ) ( -1224 2384 320 ) ( -1224 2384 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1216 2384 320 ) ( -1216 2240 320 ) ( -1216 2240 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +} +// brush 2501 +{ +( -1200 2384 128 ) ( -1216 2384 128 ) ( -1216 2240 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1216 2240 256 ) ( -1216 2384 256 ) ( -1200 2384 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1216 2240 256 ) ( -1200 2240 256 ) ( -1200 2240 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1200 2240 256 ) ( -1200 2384 256 ) ( -1200 2384 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1200 2384 256 ) ( -1216 2384 256 ) ( -1216 2384 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1216 2384 256 ) ( -1216 2240 256 ) ( -1216 2240 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 2502 +{ +( -1200 2384 0 ) ( -1216 2384 0 ) ( -1216 2240 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1216 2240 128 ) ( -1216 2384 128 ) ( -1200 2384 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1216 2240 128 ) ( -1200 2240 128 ) ( -1200 2240 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1200 2240 128 ) ( -1200 2384 128 ) ( -1200 2384 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1200 2384 128 ) ( -1216 2384 128 ) ( -1216 2384 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1216 2384 128 ) ( -1216 2240 128 ) ( -1216 2240 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2503 +{ +( -1216 2056 -16 ) ( -1472 2056 -16 ) ( -1472 1792 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1472 1792 0 ) ( -1472 2056 0 ) ( -1216 2056 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1472 1792 0 ) ( -1216 1792 0 ) ( -1216 1792 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 1792 0 ) ( -1216 2056 0 ) ( -1216 2056 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 2048 0 ) ( -1472 2048 0 ) ( -1472 2048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1472 2056 0 ) ( -1472 1792 0 ) ( -1472 1792 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2504 +{ +( -1264 2048 320 ) ( -1344 2048 320 ) ( -1344 2032 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1344 2032 512 ) ( -1344 2048 512 ) ( -1264 2048 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1344 1920 384 ) ( -1264 1920 384 ) ( -1264 1920 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1472 2048 384 ) ( -1472 2032 384 ) ( -1472 2032 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1472 2048 320 ) ( -1344 1920 320 ) ( -1408 1984 384 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2505 +{ +( -1344 1920 256 ) ( -1368 1920 256 ) ( -1368 1792 256 ) bricks/b_sr_23 7 0 -180 1 -1 0 0 0 +( -1368 1792 320 ) ( -1368 1920 320 ) ( -1344 1920 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -1360 1664 320 ) ( -1336 1664 320 ) ( -1336 1664 256 ) bricks/b_sr_23 8 0 -180 1 -1 0 0 0 +( -1344 1792 320 ) ( -1344 1920 320 ) ( -1344 1920 256 ) bricks/b_sr_23 64 0 -180 1 -1 0 0 0 +( -1344 1920 320 ) ( -1368 1920 320 ) ( -1368 1920 256 ) bricks/b_sr_23 8 0 -180 1 -1 0 0 0 +( -1472 1912 320 ) ( -1472 1784 320 ) ( -1472 1784 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +} +// brush 2506 +{ +( -1344 1920 128 ) ( -1360 1920 128 ) ( -1360 1792 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1360 1792 256 ) ( -1360 1920 256 ) ( -1344 1920 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1352 1664 256 ) ( -1336 1664 256 ) ( -1336 1664 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1344 1792 256 ) ( -1344 1920 256 ) ( -1344 1920 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1344 1920 256 ) ( -1360 1920 256 ) ( -1360 1920 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1360 1920 256 ) ( -1360 1792 256 ) ( -1360 1792 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 2507 +{ +( -1344 1920 0 ) ( -1360 1920 0 ) ( -1360 1792 0 ) bricks/b_sr_20a 0 0 -180 1 -1 0 0 0 +( -1360 1792 128 ) ( -1360 1920 128 ) ( -1344 1920 128 ) bricks/b_sr_20a 0 0 -180 1 -1 0 0 0 +( -1352 1664 128 ) ( -1336 1664 128 ) ( -1336 1664 0 ) bricks/b_sr_20a 0 0 -180 1 -1 0 0 0 +( -1344 1792 128 ) ( -1344 1920 128 ) ( -1344 1920 0 ) bricks/c_pv_m2gg 0 0 0 1 1 0 0 0 +( -1344 1920 128 ) ( -1360 1920 128 ) ( -1360 1920 0 ) bricks/b_sr_20a 0 0 -180 1 -1 0 0 0 +( -1360 1920 128 ) ( -1360 1792 128 ) ( -1360 1792 0 ) bricks/b_sr_20a 64 0 -180 1 -1 0 0 0 +} +// brush 2508 +{ +( -1264 2048 256 ) ( -1344 2048 256 ) ( -1344 2032 256 ) bricks/b_sr_23 8 0 -180 1 -1 0 0 0 +( -1344 2032 320 ) ( -1344 2048 320 ) ( -1264 2048 320 ) bricks/b_sr_23 8 0 -180 1 -1 0 0 0 +( -1344 1920 320 ) ( -1264 1920 320 ) ( -1264 1920 256 ) bricks/b_sr_23 8 0 -180 1 -1 0 0 0 +( -1472 2048 320 ) ( -1472 2032 320 ) ( -1472 2032 256 ) bricks/b_sr_23 72 0 -180 1 -1 0 0 0 +( -1472 2048 256 ) ( -1344 1920 256 ) ( -1408 1984 320 ) bricks/b_sr_23 72 0 -180 0.750000 -1 0 0 0 +} +// brush 2509 +{ +( -1264 2048 128 ) ( -1344 2048 128 ) ( -1344 2032 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1344 2032 256 ) ( -1344 2048 256 ) ( -1264 2048 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1344 1920 256 ) ( -1264 1920 256 ) ( -1264 1920 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1472 2048 256 ) ( -1472 2032 256 ) ( -1472 2032 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1472 2048 128 ) ( -1344 1920 128 ) ( -1408 1984 256 ) bricks/b_sr_20b 0 0 0 0.750000 1 0 0 0 +} +// brush 2510 +{ +( -1264 2048 0 ) ( -1344 2048 0 ) ( -1344 2032 0 ) bricks/b_sr_20a 0 0 -180 1 -1 0 0 0 +( -1344 2032 128 ) ( -1344 2048 128 ) ( -1264 2048 128 ) bricks/b_sr_20a 0 0 -180 1 -1 0 0 0 +( -1344 1920 128 ) ( -1264 1920 128 ) ( -1264 1920 0 ) bricks/b_sr_20a 0 0 -180 1 -1 0 0 0 +( -1472 2048 128 ) ( -1472 2032 128 ) ( -1472 2032 0 ) bricks/b_sr_20a 64 0 -180 1 -1 0 0 0 +( -1472 2048 0 ) ( -1344 1920 0 ) ( -1408 1984 128 ) bricks/c_pv_m2gg 0 0 0 0.750000 1 0 0 0 +} +// brush 2511 +{ +( -1600 2048 0 ) ( -1984 2048 0 ) ( -1984 2032 0 ) bricks/c_pv_m2gg 64 0 0 1 1 0 0 0 +( -1984 2032 128 ) ( -1984 2048 128 ) ( -1600 2048 128 ) bricks/c_pv_m2gg 64 0 0 1 1 0 0 0 +( -1984 2032 128 ) ( -1600 2032 128 ) ( -1600 2032 0 ) bricks/c_pv_m2gg 64 0 0 1 1 0 0 0 +( -1600 2048 128 ) ( -1984 2048 128 ) ( -1984 2048 0 ) bricks/c_pv_m2gg 66 0 0 1 1 0 0 0 +( -1984 2048 128 ) ( -1984 2032 128 ) ( -1984 2032 0 ) bricks/c_pv_m2gg 64 0 0 1 1 0 0 0 +( -1728 2048 0 ) ( -1728 2024 0 ) ( -1728 2036 128 ) bricks/c_pv_m2gg 64 0 0 1 1 0 0 0 +} +// brush 2512 +{ +( -1600 2048 128 ) ( -1984 2048 128 ) ( -1984 2032 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1984 2032 256 ) ( -1984 2048 256 ) ( -1600 2048 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1984 2032 256 ) ( -1600 2032 256 ) ( -1600 2032 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1600 2048 256 ) ( -1984 2048 256 ) ( -1984 2048 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1984 2048 256 ) ( -1984 2032 256 ) ( -1984 2032 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1472 2048 128 ) ( -1472 2024 128 ) ( -1472 2036 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 2513 +{ +( -1600 2048 256 ) ( -1984 2048 256 ) ( -1984 2032 256 ) bricks/b_sr_23 8 0 0 1 1 0 0 0 +( -1984 2032 320 ) ( -1984 2048 320 ) ( -1600 2048 320 ) bricks/b_sr_23 8 0 0 1 1 0 0 0 +( -1984 2032 320 ) ( -1600 2032 320 ) ( -1600 2032 256 ) bricks/b_sr_23 8 0 0 1 1 0 0 0 +( -1600 2048 320 ) ( -1984 2048 320 ) ( -1984 2048 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1984 2048 320 ) ( -1984 2032 320 ) ( -1984 2032 256 ) bricks/b_sr_23 8 0 0 1 1 0 0 0 +( -1472 2048 256 ) ( -1472 2024 256 ) ( -1472 2036 320 ) bricks/b_sr_23 8 0 0 1 1 0 0 0 +} +// brush 2514 +{ +( -1520 2368 256 ) ( -1520 2384 256 ) ( -1216 2384 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1520 2368 256 ) ( -1216 2368 256 ) ( -1216 2368 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1216 2384 256 ) ( -1520 2384 256 ) ( -1520 2384 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1248 2384 128 ) ( -1248 2368 128 ) ( -1248 2376 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1472 2368 208 ) ( -1456 2368 208 ) ( -1464 2384 208 ) bricks/b_sr_22 0 0 180 1 1 0 0 0 +( -1312 2368 128 ) ( -1312 2384 128 ) ( -1312 2376 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 2515 +{ +( -1216 2384 128 ) ( -1520 2384 128 ) ( -1520 2368 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1520 2368 256 ) ( -1216 2368 256 ) ( -1216 2368 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1216 2384 256 ) ( -1520 2384 256 ) ( -1520 2384 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1248 2384 128 ) ( -1248 2368 128 ) ( -1248 2376 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1464 2368 144 ) ( -1472 2368 144 ) ( -1468 2384 144 ) bricks/b_sr_22 0 0 180 1 1 0 0 0 +( -1312 2368 128 ) ( -1312 2384 128 ) ( -1312 2376 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 2516 +{ +( -1488 2384 256 ) ( -1184 2384 256 ) ( -1184 2384 128 ) props/w_sr_ba7b 32 16 0 1 1 0 1 3000 +( -1184 2400 256 ) ( -1488 2400 256 ) ( -1488 2400 128 ) bricks/b_sr_20b -32 0 0 1 1 0 0 0 +( -1312 2384 128 ) ( -1312 2400 128 ) ( -1312 2392 256 ) bricks/b_sr_20b -16 0 0 1 1 0 0 0 +( -1248 2400 128 ) ( -1248 2384 128 ) ( -1248 2392 256 ) bricks/b_sr_20b -16 0 0 1 1 0 0 0 +( -1440 2384 144 ) ( -1432 2384 144 ) ( -1436 2400 144 ) bricks/b_sr_20b -32 16 0 1 1 0 0 0 +( -1424 2384 208 ) ( -1440 2384 208 ) ( -1432 2400 208 ) bricks/b_sr_20b -32 16 0 1 1 0 0 0 +} +// brush 2517 +{ +( -1216 2384 128 ) ( -1520 2384 128 ) ( -1520 2368 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1520 2368 256 ) ( -1520 2384 256 ) ( -1216 2384 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1520 2368 256 ) ( -1216 2368 256 ) ( -1216 2368 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1216 2384 256 ) ( -1520 2384 256 ) ( -1520 2384 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1216 2384 128 ) ( -1216 2360 128 ) ( -1216 2372 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1248 2368 128 ) ( -1248 2384 128 ) ( -1248 2376 256 ) bricks/b_sr_22 0 0 270 1 1 0 0 0 +} +// brush 2518 +{ +( -1216 2384 128 ) ( -1520 2384 128 ) ( -1520 2368 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1520 2368 256 ) ( -1520 2384 256 ) ( -1216 2384 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1520 2368 256 ) ( -1216 2368 256 ) ( -1216 2368 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1216 2384 256 ) ( -1520 2384 256 ) ( -1520 2384 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1440 2368 128 ) ( -1440 2384 128 ) ( -1440 2376 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1312 2384 128 ) ( -1312 2368 128 ) ( -1312 2376 256 ) bricks/b_sr_22 0 0 270 1 1 0 0 0 +} +// brush 2519 +{ +( -1216 2384 128 ) ( -1520 2384 128 ) ( -1520 2368 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1520 2368 256 ) ( -1520 2384 256 ) ( -1216 2384 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1520 2368 256 ) ( -1216 2368 256 ) ( -1216 2368 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1216 2384 256 ) ( -1520 2384 256 ) ( -1520 2384 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1536 2376 128 ) ( -1536 2392 128 ) ( -1536 2384 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1440 2384 128 ) ( -1440 2368 128 ) ( -1440 2376 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 2520 +{ +( -1712 2176 256 ) ( -1712 2240 256 ) ( -1600 2240 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1536 2176 256 ) ( -1536 2240 256 ) ( -1536 2240 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1712 2240 256 ) ( -1712 2176 256 ) ( -1712 2176 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1696 2240 128 ) ( -1712 2240 128 ) ( -1704 2240 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1712 2304 128 ) ( -1696 2304 128 ) ( -1704 2304 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1712 2248 208 ) ( -1712 2240 208 ) ( -1536 2244 208 ) bricks/b_sr_22 0 0 270 1 1 0 0 0 +} +// brush 2521 +{ +( -1552 2176 256 ) ( -1552 2240 256 ) ( -1552 2240 128 ) props/w_sr_ba7b 32 16 0 1 1 0 1 3000 +( -1712 2240 256 ) ( -1712 2176 256 ) ( -1712 2176 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1696 2240 128 ) ( -1712 2240 128 ) ( -1704 2240 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1712 2304 128 ) ( -1696 2304 128 ) ( -1704 2304 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1712 2248 144 ) ( -1712 2240 144 ) ( -1536 2244 144 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1712 2240 208 ) ( -1712 2248 208 ) ( -1536 2244 208 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 2522 +{ +( -1600 2240 128 ) ( -1712 2240 128 ) ( -1712 2176 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1536 2176 256 ) ( -1536 2240 256 ) ( -1536 2240 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1712 2240 256 ) ( -1712 2176 256 ) ( -1712 2176 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1696 2240 128 ) ( -1712 2240 128 ) ( -1704 2240 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1712 2304 128 ) ( -1696 2304 128 ) ( -1704 2304 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1712 2240 144 ) ( -1712 2248 144 ) ( -1536 2244 144 ) bricks/b_sr_22 0 0 270 1 1 0 0 0 +} +// brush 2523 +{ +( -1600 2240 128 ) ( -1712 2240 128 ) ( -1712 2176 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1712 2176 256 ) ( -1712 2240 256 ) ( -1600 2240 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1536 2176 256 ) ( -1536 2240 256 ) ( -1536 2240 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1712 2240 256 ) ( -1712 2176 256 ) ( -1712 2176 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1672 2368 128 ) ( -1656 2368 128 ) ( -1664 2368 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1696 2304 128 ) ( -1712 2304 128 ) ( -1704 2304 256 ) bricks/b_sr_22 0 0 270 1 1 0 0 0 +} +// brush 2524 +{ +( -1600 2240 128 ) ( -1712 2240 128 ) ( -1712 2176 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1712 2176 256 ) ( -1712 2240 256 ) ( -1600 2240 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1712 2176 256 ) ( -1600 2176 256 ) ( -1600 2176 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1536 2176 256 ) ( -1536 2240 256 ) ( -1536 2240 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1824 2248 256 ) ( -1824 2184 256 ) ( -1824 2184 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1712 2240 128 ) ( -1696 2240 128 ) ( -1704 2240 256 ) bricks/b_sr_22 0 0 270 1 1 0 0 0 +} +// brush 2525 +{ +( -1216 2368 512 ) ( -1536 2368 512 ) ( -1536 2048 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -1536 2048 528 ) ( -1536 2368 528 ) ( -1216 2368 528 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -1536 2048 528 ) ( -1216 2048 528 ) ( -1216 2048 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -1216 2048 528 ) ( -1216 2368 528 ) ( -1216 2368 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -1216 2496 528 ) ( -1536 2496 528 ) ( -1536 2496 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +( -1536 2368 528 ) ( -1536 2048 528 ) ( -1536 2048 512 ) common/li_sr_v17 0 0 0 1 1 0 133 375 +} +// brush 2526 +{ +( -1200 2368 320 ) ( -1216 2368 320 ) ( -1216 2048 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1216 2048 512 ) ( -1216 2368 512 ) ( -1200 2368 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1216 2240 512 ) ( -1200 2240 512 ) ( -1200 2240 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1200 2176 512 ) ( -1200 2496 512 ) ( -1200 2496 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1208 2496 512 ) ( -1224 2496 512 ) ( -1224 2496 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1216 2368 512 ) ( -1216 2048 512 ) ( -1216 2048 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2527 +{ +( -1200 2512 320 ) ( -1536 2512 320 ) ( -1536 2496 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1536 2496 512 ) ( -1536 2512 512 ) ( -1200 2512 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1536 2496 512 ) ( -1200 2496 512 ) ( -1200 2496 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1200 2496 512 ) ( -1200 2512 512 ) ( -1200 2512 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1200 2512 512 ) ( -1536 2512 512 ) ( -1536 2512 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1536 2512 512 ) ( -1536 2496 512 ) ( -1536 2496 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2528 +{ +( -1536 2368 320 ) ( -1680 2368 320 ) ( -1680 2192 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1680 2192 512 ) ( -1680 2368 512 ) ( -1536 2368 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1688 2168 512 ) ( -1544 2168 512 ) ( -1544 2168 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1528 2192 512 ) ( -1528 2368 512 ) ( -1528 2368 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1544 2440 512 ) ( -1688 2440 512 ) ( -1688 2440 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1864 2352 512 ) ( -1864 2176 512 ) ( -1864 2176 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2529 +{ +( -1216 2384 0 ) ( -1536 2384 0 ) ( -1536 2368 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1536 2368 128 ) ( -1536 2384 128 ) ( -1216 2384 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1536 2368 128 ) ( -1216 2368 128 ) ( -1216 2368 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1216 2368 128 ) ( -1216 2384 128 ) ( -1216 2384 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1216 2384 128 ) ( -1536 2384 128 ) ( -1536 2384 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1536 2384 128 ) ( -1536 2368 128 ) ( -1536 2368 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2530 +{ +( -1216 2384 256 ) ( -1536 2384 256 ) ( -1536 2368 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1536 2368 320 ) ( -1536 2384 320 ) ( -1216 2384 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -1536 2368 320 ) ( -1216 2368 320 ) ( -1216 2368 256 ) bricks/b_sr_23 -2 0 0 1 1 0 0 0 +( -1216 2496 320 ) ( -1536 2496 320 ) ( -1536 2496 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1536 2376 256 ) ( -1536 2392 256 ) ( -1536 2384 320 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1216 2384 256 ) ( -1216 2360 256 ) ( -1216 2372 320 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +} +// brush 2531 +{ +( -1216 2368 -16 ) ( -1520 2368 -16 ) ( -1520 2176 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1520 2176 0 ) ( -1520 2368 0 ) ( -1216 2368 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1520 2240 0 ) ( -1216 2240 0 ) ( -1216 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1408 2176 0 ) ( -1408 2368 0 ) ( -1408 2368 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1216 2368 0 ) ( -1520 2368 0 ) ( -1520 2368 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1536 2368 0 ) ( -1536 2176 0 ) ( -1536 2176 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2532 +{ +( -1152 2304 -96 ) ( -1152 2384 -96 ) ( -1152 2384 -128 ) floors/c_pv_m2 0 -1 0 1 1 0 0 0 +( -1152 2384 -96 ) ( -1168 2384 -96 ) ( -1168 2384 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1168 2384 -96 ) ( -1168 2304 -96 ) ( -1168 2304 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1176 2304 -120 ) ( -1160 2304 -120 ) ( -1168 2384 -120 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1160 2304 -104 ) ( -1168 2304 -104 ) ( -1164 2384 -104 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1152 2352 -120 ) ( -1168 2352 -120 ) ( -1160 2352 -104 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2533 +{ +( -1152 2304 -96 ) ( -1152 2384 -96 ) ( -1152 2384 -128 ) floors/c_pv_m2 0 -1 0 1 1 0 0 0 +( -1168 2384 -96 ) ( -1168 2304 -96 ) ( -1168 2304 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1176 2304 -120 ) ( -1160 2304 -120 ) ( -1168 2384 -120 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1160 2304 -104 ) ( -1168 2304 -104 ) ( -1164 2384 -104 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1160 2336 -120 ) ( -1168 2336 -120 ) ( -1164 2336 -104 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1168 2352 -120 ) ( -1152 2352 -120 ) ( -1160 2352 -104 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2534 +{ +( -1168 2304 -96 ) ( -1152 2304 -96 ) ( -1152 2304 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1152 2304 -96 ) ( -1152 2384 -96 ) ( -1152 2384 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1168 2384 -96 ) ( -1168 2304 -96 ) ( -1168 2304 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1176 2304 -120 ) ( -1160 2304 -120 ) ( -1168 2384 -120 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1160 2304 -104 ) ( -1168 2304 -104 ) ( -1164 2384 -104 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1168 2336 -120 ) ( -1160 2336 -120 ) ( -1164 2336 -104 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2535 +{ +( -1168 2304 -96 ) ( -1168 2384 -96 ) ( -1152 2384 -96 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1168 2304 -96 ) ( -1152 2304 -96 ) ( -1152 2304 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1152 2304 -96 ) ( -1152 2384 -96 ) ( -1152 2384 -128 ) floors/c_pv_m2 0 -1 0 1 1 0 0 0 +( -1152 2384 -96 ) ( -1168 2384 -96 ) ( -1168 2384 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1168 2384 -96 ) ( -1168 2304 -96 ) ( -1168 2304 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1168 2304 -104 ) ( -1160 2304 -104 ) ( -1164 2384 -104 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2536 +{ +( -1152 2384 -128 ) ( -1168 2384 -128 ) ( -1168 2304 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1168 2304 -96 ) ( -1152 2304 -96 ) ( -1152 2304 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1152 2304 -96 ) ( -1152 2384 -96 ) ( -1152 2384 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1152 2384 -96 ) ( -1168 2384 -96 ) ( -1168 2384 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1168 2384 -96 ) ( -1168 2304 -96 ) ( -1168 2304 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1160 2304 -120 ) ( -1176 2304 -120 ) ( -1168 2384 -120 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2537 +{ +( -1062 2463 -22 ) ( -1078 2463 -22 ) ( -1078 2452 -34 ) common/li_sr_v27 6 2 0 1 0.740000 134217728 1 15000 +( -1078 2449 -32 ) ( -1078 2460 -20 ) ( -1062 2460 -20 ) metals/mt_pv_m26y -10 -2 0 1 0.743294 134217728 0 0 +( -1078 2256 142 ) ( -1062 2256 142 ) ( -1062 2446 -29 ) metals/mt_pv_m26y -10 27 0 1 -0.743164 134217728 0 0 +( -1062 2256 142 ) ( -1062 2267 154 ) ( -1062 2457 -17 ) metals/mt_pv_m26y 0 -21 48 0.999648 0.999617 134217728 0 0 +( -1062 2267 154 ) ( -1078 2267 154 ) ( -1078 2457 -17 ) metals/mt_pv_m26y -10 13 0 1 -0.742920 134217728 0 0 +( -1078 2273 149 ) ( -1078 2262 137 ) ( -1078 2452 -34 ) metals/mt_pv_m26y 0 -21 48 0.999648 0.999617 134217728 0 0 +} +// brush 2538 +{ +( -1072 2454 -27 ) ( -1068 2454 -27 ) ( -1068 2456 -24 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1072 2448 -12 ) ( -1072 2452 -12 ) ( -1068 2452 -12 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1068 2454 -27 ) ( -1072 2454 -27 ) ( -1072 2448 -12 ) metals/mt_pv_m26y 0 12 0 1 1 134217728 0 0 +( -1068 2448 -12 ) ( -1068 2452 -12 ) ( -1068 2452 -28 ) metals/mt_pv_m26y 0 12 0 1 1 134217728 0 0 +( -1072 2456 -24 ) ( -1068 2456 -24 ) ( -1068 2452 -12 ) metals/mt_pv_m26y 0 12 0 1 1 134217728 0 0 +( -1072 2452 -12 ) ( -1072 2448 -12 ) ( -1072 2448 -28 ) metals/mt_pv_m26y 0 12 0 1 1 134217728 0 0 +} +// brush 2539 +{ +( -1068 2452 -12 ) ( -1072 2452 -12 ) ( -1072 2448 -12 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1072 2448 4 ) ( -1072 2452 4 ) ( -1068 2452 4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1072 2448 4 ) ( -1068 2448 4 ) ( -1068 2448 -12 ) metals/mt_pv_m26y 0 28 0 1 1 134217728 0 0 +( -1068 2448 4 ) ( -1068 2452 4 ) ( -1068 2452 -12 ) metals/mt_pv_m26y 0 28 0 1 1 134217728 0 0 +( -1068 2452 4 ) ( -1072 2452 4 ) ( -1072 2452 -12 ) metals/mt_pv_m26y 0 28 0 1 1 134217728 0 0 +( -1072 2452 4 ) ( -1072 2448 4 ) ( -1072 2448 -12 ) metals/mt_pv_m26y 0 28 0 1 1 134217728 0 0 +} +// brush 2540 +{ +( -1089 2415 -128 ) ( -1102 2387 -128 ) ( -1088 2380 -128 ) bricks/b_mf_v5 -12 -44 64 1.000046 0.998741 134217728 0 0 +( -1088 2380 -122 ) ( -1102 2387 -122 ) ( -1089 2415 -122 ) bricks/b_mf_v5 -12 -44 64 1 1 134217728 67108864 0 +( -1081 2376 -112 ) ( -1067 2405 -112 ) ( -1067 2405 -128 ) bricks/b_mf_v5 31 -8 0 0.899658 1 134217728 0 0 +( -1078 2401 -112 ) ( -1092 2408 -112 ) ( -1092 2408 -128 ) bricks/b_mf_v5 59 -7 -180 0.866211 -1 134217728 0 0 +( -1081 2413 -112 ) ( -1096 2383 -112 ) ( -1096 2383 -128 ) bricks/b_mf_v5 1 -8 0 0.893066 1 134217728 0 0 +( -1102 2387 -112 ) ( -1088 2380 -112 ) ( -1088 2380 -128 ) bricks/b_mf_v5 8 -7 -180 0.932617 -1 134217728 0 0 +} +// brush 2541 +{ +( -1036 2433 -128 ) ( -1067 2442 -128 ) ( -1070 2427 -128 ) bricks/b_mf_v5 19 -34 -15 0.999914 0.999335 134217728 0 0 +( -1070 2427 -122 ) ( -1067 2442 -122 ) ( -1036 2433 -122 ) bricks/b_mf_v5 19 -34 -15 1 1 134217728 67108864 0 +( -1073 2419 -112 ) ( -1043 2410 -112 ) ( -1043 2410 -128 ) bricks/b_mf_v5 10 -8 0 0.963135 1 134217728 0 0 +( -1049 2420 -112 ) ( -1044 2435 -112 ) ( -1044 2435 -128 ) bricks/b_mf_v5 -5 -8 0 0.934570 1 134217728 0 0 +( -1038 2425 -112 ) ( -1069 2435 -112 ) ( -1069 2435 -128 ) bricks/b_mf_v5 15 -8 0 0.954102 1 134217728 0 0 +( -1067 2442 -112 ) ( -1070 2427 -112 ) ( -1070 2427 -128 ) bricks/b_mf_v5 -50 -8 0 0.993652 1 134217728 0 0 +} +// brush 2542 +{ +( -1080 2479 -128 ) ( -1109 2466 -128 ) ( -1103 2451 -128 ) bricks/b_mf_v5 -5 39 24 0.999915 0.999977 134217728 0 0 +( -1103 2451 -122 ) ( -1109 2466 -122 ) ( -1080 2479 -122 ) bricks/b_mf_v5 -5 39 24 1 1 134217728 67108864 0 +( -1100 2444 -112 ) ( -1070 2457 -112 ) ( -1070 2457 -128 ) bricks/b_mf_v5 35 -8 0 0.913574 1 134217728 0 0 +( -1081 2461 -112 ) ( -1088 2475 -112 ) ( -1088 2475 -128 ) bricks/b_mf_v5 -45 -8 0 0.913330 1 134217728 0 0 +( -1077 2471 -112 ) ( -1106 2458 -112 ) ( -1106 2458 -128 ) bricks/b_mf_v5 42 -8 0 0.913452 1 134217728 0 0 +( -1109 2466 -112 ) ( -1103 2451 -112 ) ( -1103 2451 -128 ) bricks/b_mf_v5 -35 -8 0 0.913818 1 134217728 0 0 +} +// brush 2543 +{ +( -1083 2586 -128 ) ( -1083 2586 -40 ) ( -1061 2603 -40 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1120 2584 -56 ) ( -1096 2576 -56 ) ( -1096 2576 -128 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1152 2584 -128 ) ( -1160 2608 -128 ) ( -1128 2608 -40 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1152 2592 -112 ) ( -1136 2632 -112 ) ( -1120 2632 -16 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1104 2656 -8 ) ( -1128 2648 -24 ) ( -1136 2632 -112 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1083 2630 -128 ) ( -1083 2630 -40 ) ( -1105 2647 -40 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1072 2608 -128 ) ( -1072 2608 -40 ) ( -1072 2636 -40 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1096 2648 -120 ) ( -1136 2632 -112 ) ( -1152 2600 -112 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1128 2648 -24 ) ( -1104 2656 -8 ) ( -1072 2624 -16 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +} +// brush 2544 +{ +( -1144 2584 -80 ) ( -1112 2592 -80 ) ( -1112 2592 -128 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1155 2598 -128 ) ( -1155 2598 -56 ) ( -1141 2579 -56 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1155 2626 -128 ) ( -1155 2626 -56 ) ( -1169 2607 -56 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1129 2635 -128 ) ( -1129 2635 -56 ) ( -1152 2642 -56 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1112 2612 -128 ) ( -1112 2612 -56 ) ( -1112 2636 -56 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1160 2600 -128 ) ( -1112 2600 -128 ) ( -1112 2624 -128 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1112 2592 -80 ) ( -1144 2584 -80 ) ( -1168 2616 -56 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +} +// brush 2545 +{ +( -1024 2536 -128 ) ( -1112 2536 -128 ) ( -1112 2512 -128 ) bricks/s_sr_m6 0 0 0 1 1 134217728 0 0 +( -1112 2512 -120 ) ( -1112 2536 -120 ) ( -1024 2536 -120 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1112 2512 -40 ) ( -1024 2512 -40 ) ( -1024 2512 -128 ) bricks/s_sr_m6 0 0 0 1 1 134217728 0 0 +( -1024 2536 -40 ) ( -1112 2536 -40 ) ( -1112 2536 -128 ) bricks/s_sr_m6 0 0 0 1 1 134217728 0 0 +( -1112 2536 -40 ) ( -1112 2512 -40 ) ( -1112 2512 -128 ) bricks/s_sr_m6 0 0 0 1 1 134217728 0 0 +( -1072 2536 -128 ) ( -1072 2512 -128 ) ( -1072 2524 -120 ) bricks/s_sr_m6 0 0 0 1 1 134217728 0 0 +} +// brush 2546 +{ +( -1024 2536 -128 ) ( -1112 2536 -128 ) ( -1112 2512 -128 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1072 2536 -112 ) ( -1024 2536 -112 ) ( -1024 2496 -120 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1024 2496 -120 ) ( -1024 2496 -128 ) ( -1072 2512 -128 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1024 2496 -128 ) ( -1024 2496 -120 ) ( -1024 2536 -120 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1024 2560 -112 ) ( -1072 2560 -112 ) ( -1072 2560 -128 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1072 2512 -128 ) ( -1072 2536 -128 ) ( -1072 2524 -120 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +} +// brush 2547 +{ +( -1072 2560 -80 ) ( -1040 2568 -80 ) ( -1040 2568 -128 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1083 2574 -128 ) ( -1083 2574 -56 ) ( -1069 2555 -56 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1083 2602 -128 ) ( -1083 2602 -56 ) ( -1097 2583 -56 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1057 2611 -128 ) ( -1057 2611 -56 ) ( -1080 2618 -56 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1040 2588 -128 ) ( -1040 2588 -56 ) ( -1040 2612 -56 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1088 2576 -128 ) ( -1040 2576 -128 ) ( -1040 2600 -128 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1040 2568 -80 ) ( -1072 2560 -80 ) ( -1096 2592 -56 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +} +// brush 2548 +{ +( -1056 2608 -96 ) ( -1128 2608 -96 ) ( -1128 2576 -96 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1128 2576 -80 ) ( -1128 2608 -80 ) ( -1056 2608 -80 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1128 2576 16 ) ( -1056 2576 16 ) ( -1056 2576 -96 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1056 2576 16 ) ( -1056 2608 16 ) ( -1056 2608 -96 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1056 2608 16 ) ( -1128 2608 16 ) ( -1128 2608 -96 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1128 2608 16 ) ( -1128 2576 16 ) ( -1128 2576 -96 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +} +// brush 2549 +{ +( -1152 2624 -104 ) ( -1152 2600 -104 ) ( -1024 2600 -104 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1080 2624 -24 ) ( -1016 2624 -24 ) ( -1024 2600 -48 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1088 2600 -48 ) ( -1024 2600 -48 ) ( -1024 2600 -72 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1024 2600 0 ) ( -1024 2624 0 ) ( -1024 2624 -24 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1016 2624 -24 ) ( -1080 2624 -24 ) ( -1088 2624 -104 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1152 2600 -104 ) ( -1152 2624 -104 ) ( -1088 2624 -24 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +} +// brush 2550 +{ +( -1056 2544 -128 ) ( -1104 2544 -128 ) ( -1104 2528 -128 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1104 2544 -104 ) ( -1056 2544 -104 ) ( -1056 2528 -112 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1104 2528 -96 ) ( -1056 2528 -96 ) ( -1056 2528 -128 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1056 2528 -96 ) ( -1056 2544 -96 ) ( -1056 2544 -128 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1056 2544 -104 ) ( -1104 2544 -104 ) ( -1104 2544 -128 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1104 2544 -96 ) ( -1104 2528 -96 ) ( -1104 2528 -128 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +} +// brush 2551 +{ +( -1136 2528 -96 ) ( -1112 2536 -96 ) ( -1112 2536 -128 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1142 2531 -128 ) ( -1142 2531 -96 ) ( -1125 2521 -96 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1152 2548 -128 ) ( -1152 2548 -96 ) ( -1152 2528 -96 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1142 2565 -128 ) ( -1142 2565 -96 ) ( -1159 2555 -96 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1122 2565 -128 ) ( -1122 2565 -96 ) ( -1139 2575 -96 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1112 2536 -96 ) ( -1112 2560 -96 ) ( -1112 2560 -128 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1152 2528 -128 ) ( -1112 2528 -128 ) ( -1112 2568 -128 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1112 2560 -96 ) ( -1112 2536 -96 ) ( -1136 2528 -96 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +} +// brush 2552 +{ +( -1041 2549 -128 ) ( -1041 2549 -96 ) ( -1018 2556 -96 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1067 2558 -128 ) ( -1067 2558 -96 ) ( -1053 2539 -96 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1067 2586 -128 ) ( -1067 2586 -96 ) ( -1081 2567 -96 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1041 2595 -128 ) ( -1041 2595 -96 ) ( -1064 2602 -96 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1024 2572 -128 ) ( -1024 2572 -96 ) ( -1024 2596 -96 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1072 2552 -128 ) ( -1024 2552 -128 ) ( -1024 2592 -128 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +( -1024 2592 -96 ) ( -1024 2552 -96 ) ( -1072 2552 -96 ) bricks/s_sr_m6 0 0 0 1 1 134217728 4194304 0 +} +// brush 2553 +{ +( -1064 2624 0 ) ( -1152 2624 0 ) ( -1152 2608 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1152 2608 16 ) ( -1152 2624 16 ) ( -1064 2624 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1152 2608 16 ) ( -1064 2608 16 ) ( -1064 2608 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1024 2608 16 ) ( -1024 2624 16 ) ( -1024 2624 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1064 2624 16 ) ( -1152 2624 16 ) ( -1152 2624 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1152 2624 16 ) ( -1152 2608 16 ) ( -1152 2608 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 2554 +{ +( -1120 2592 0 ) ( -1152 2592 0 ) ( -1152 2576 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1152 2576 16 ) ( -1152 2592 16 ) ( -1120 2592 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1152 2576 16 ) ( -1120 2576 16 ) ( -1120 2576 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1120 2576 16 ) ( -1120 2592 16 ) ( -1120 2592 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1120 2608 16 ) ( -1152 2608 16 ) ( -1152 2608 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1152 2592 16 ) ( -1152 2576 16 ) ( -1152 2576 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 2555 +{ +( -1024 2640 -96 ) ( -1152 2640 -96 ) ( -1152 2624 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1152 2624 0 ) ( -1152 2640 0 ) ( -1024 2640 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1152 2624 0 ) ( -1024 2624 0 ) ( -1024 2624 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1024 2624 0 ) ( -1024 2640 0 ) ( -1024 2640 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1024 2640 0 ) ( -1152 2640 0 ) ( -1152 2640 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1152 2640 0 ) ( -1152 2624 0 ) ( -1152 2624 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2556 +{ +( -1024 2648 -128 ) ( -1152 2648 -128 ) ( -1152 2520 -128 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( -1024 2520 -104 ) ( -1024 2648 -104 ) ( -1024 2648 -128 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( -1152 2648 -104 ) ( -1152 2520 -104 ) ( -1152 2520 -128 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( -1152 2520 -128 ) ( -1152 2648 -40 ) ( -1024 2584 -84 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( -1152 2624 -128 ) ( -1144 2624 -128 ) ( -1148 2624 -40 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +} +// brush 2557 +{ +( -1088 2336 0 ) ( -1120 2336 0 ) ( -1120 2320 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1120 2320 16 ) ( -1120 2336 16 ) ( -1088 2336 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1120 2320 16 ) ( -1088 2320 16 ) ( -1088 2320 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1088 2320 16 ) ( -1088 2336 16 ) ( -1088 2336 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1088 2336 16 ) ( -1120 2336 16 ) ( -1120 2336 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1120 2336 16 ) ( -1120 2320 16 ) ( -1120 2320 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 2558 +{ +( -1024 2576 8 ) ( -1152 2576 8 ) ( -1152 2448 8 ) bricks/c_sr_m3a 0 0 0 1 1 0 0 0 +( -1152 2448 16 ) ( -1152 2576 16 ) ( -1024 2576 16 ) bricks/c_sr_m3a 0 0 0 1 1 0 0 0 +( -1152 2304 32 ) ( -1024 2304 32 ) ( -1024 2304 16 ) bricks/c_sr_m3a 0 0 0 1 1 0 0 0 +( -1024 2448 32 ) ( -1024 2576 32 ) ( -1024 2576 16 ) bricks/c_sr_m3a 0 0 0 1 1 0 0 0 +( -1024 2624 32 ) ( -1152 2624 32 ) ( -1152 2624 16 ) bricks/c_sr_m3a 0 0 0 1 1 0 0 0 +( -1152 2576 32 ) ( -1152 2448 32 ) ( -1152 2448 16 ) bricks/c_sr_m3a 0 0 0 1 1 0 0 0 +} +// brush 2559 +{ +( -1024 2528 0 ) ( -1088 2528 0 ) ( -1088 2512 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1088 2512 16 ) ( -1088 2528 16 ) ( -1024 2528 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1088 2512 16 ) ( -1024 2512 16 ) ( -1024 2512 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1024 2512 16 ) ( -1024 2528 16 ) ( -1024 2528 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1024 2528 16 ) ( -1088 2528 16 ) ( -1088 2528 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1088 2528 16 ) ( -1088 2512 16 ) ( -1088 2512 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 2560 +{ +( -1024 2496 0 ) ( -1056 2496 0 ) ( -1056 2480 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1056 2480 16 ) ( -1056 2496 16 ) ( -1024 2496 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1056 2448 16 ) ( -1024 2448 16 ) ( -1024 2448 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1024 2480 16 ) ( -1024 2496 16 ) ( -1024 2496 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1024 2496 16 ) ( -1056 2496 16 ) ( -1056 2496 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1056 2496 16 ) ( -1056 2480 16 ) ( -1056 2480 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 2561 +{ +( -1024 2400 0 ) ( -1088 2400 0 ) ( -1088 2384 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1088 2384 16 ) ( -1088 2400 16 ) ( -1024 2400 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1088 2384 16 ) ( -1024 2384 16 ) ( -1024 2384 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1024 2384 16 ) ( -1024 2400 16 ) ( -1024 2400 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1024 2400 16 ) ( -1088 2400 16 ) ( -1088 2400 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1088 2400 16 ) ( -1088 2384 16 ) ( -1088 2384 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 2562 +{ +( -1024 2384 0 ) ( -1056 2384 0 ) ( -1056 2368 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1056 2368 16 ) ( -1056 2384 16 ) ( -1024 2384 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1056 2368 16 ) ( -1024 2368 16 ) ( -1024 2368 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1024 2368 16 ) ( -1024 2384 16 ) ( -1024 2384 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1024 2384 16 ) ( -1056 2384 16 ) ( -1056 2384 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1056 2384 16 ) ( -1056 2368 16 ) ( -1056 2368 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 2563 +{ +( -1024 2384 0 ) ( -1088 2384 0 ) ( -1088 2352 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1088 2352 16 ) ( -1088 2384 16 ) ( -1024 2384 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1088 2352 16 ) ( -1024 2352 16 ) ( -1024 2352 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1024 2352 16 ) ( -1024 2384 16 ) ( -1024 2384 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1024 2368 16 ) ( -1088 2368 16 ) ( -1088 2368 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1088 2384 16 ) ( -1088 2352 16 ) ( -1088 2352 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 2564 +{ +( -1088 2320 0 ) ( -1088 2304 0 ) ( -1056 2304 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1088 2304 16 ) ( -1088 2320 16 ) ( -1056 2320 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1088 2304 16 ) ( -1056 2304 16 ) ( -1056 2304 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1056 2304 16 ) ( -1056 2320 16 ) ( -1056 2320 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1056 2320 16 ) ( -1088 2320 16 ) ( -1088 2320 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1120 2304 0 ) ( -1120 2320 0 ) ( -1120 2320 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 2565 +{ +( -1024 2360 0 ) ( -1056 2360 0 ) ( -1056 2304 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1056 2304 16 ) ( -1056 2360 16 ) ( -1024 2360 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1056 2304 16 ) ( -1024 2304 16 ) ( -1024 2304 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1024 2304 16 ) ( -1024 2360 16 ) ( -1024 2360 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1024 2352 16 ) ( -1056 2352 16 ) ( -1056 2352 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1056 2360 16 ) ( -1056 2304 16 ) ( -1056 2304 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 2566 +{ +( -1056 2560 0 ) ( -1088 2560 0 ) ( -1088 2544 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1088 2544 16 ) ( -1088 2560 16 ) ( -1056 2560 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1088 2544 16 ) ( -1056 2544 16 ) ( -1056 2544 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1056 2544 16 ) ( -1056 2560 16 ) ( -1056 2560 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1056 2560 16 ) ( -1088 2560 16 ) ( -1088 2560 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1088 2560 16 ) ( -1088 2544 16 ) ( -1088 2544 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 2567 +{ +( -1056 2432 0 ) ( -1088 2432 0 ) ( -1088 2416 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1088 2416 16 ) ( -1088 2432 16 ) ( -1056 2432 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1088 2416 16 ) ( -1056 2416 16 ) ( -1056 2416 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1056 2416 16 ) ( -1056 2432 16 ) ( -1056 2432 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1056 2432 16 ) ( -1088 2432 16 ) ( -1088 2432 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1088 2432 16 ) ( -1088 2416 16 ) ( -1088 2416 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 2568 +{ +( -1104 2464 0 ) ( -1120 2464 0 ) ( -1120 2416 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1120 2416 8 ) ( -1120 2464 8 ) ( -1104 2464 8 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1120 2416 8 ) ( -1104 2416 8 ) ( -1104 2416 -8 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1088 2416 8 ) ( -1088 2464 8 ) ( -1088 2464 -8 ) bricks/b_mf_v5 0 8 0 1 1 0 0 0 +( -1104 2464 8 ) ( -1120 2464 8 ) ( -1120 2464 -8 ) bricks/b_mf_v5 0 8 0 1 1 0 0 0 +( -1120 2464 8 ) ( -1120 2416 8 ) ( -1120 2416 -8 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 2569 +{ +( -1088 2504 0 ) ( -1120 2504 0 ) ( -1120 2488 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1120 2488 8 ) ( -1120 2504 8 ) ( -1088 2504 8 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1120 2480 8 ) ( -1088 2480 8 ) ( -1088 2480 -8 ) bricks/b_mf_v5 0 -8 0 1 1 0 0 0 +( -1088 2488 8 ) ( -1088 2504 8 ) ( -1088 2504 -8 ) bricks/b_mf_v5 0 -8 0 1 1 0 0 0 +( -1088 2496 8 ) ( -1120 2496 8 ) ( -1120 2496 -8 ) bricks/b_mf_v5 0 -8 0 1 1 0 0 0 +( -1120 2504 8 ) ( -1120 2488 8 ) ( -1120 2488 -8 ) bricks/b_mf_v5 0 -8 0 1 1 0 0 0 +} +// brush 2570 +{ +( -1088 2576 0 ) ( -1120 2576 0 ) ( -1120 2504 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1120 2504 16 ) ( -1120 2576 16 ) ( -1088 2576 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1112 2544 32 ) ( -1080 2544 32 ) ( -1080 2544 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1088 2504 32 ) ( -1088 2576 32 ) ( -1088 2576 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1088 2576 32 ) ( -1120 2576 32 ) ( -1120 2576 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1120 2576 32 ) ( -1120 2504 32 ) ( -1120 2504 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 2571 +{ +( -1008 2576 -96 ) ( -1024 2576 -96 ) ( -1024 2288 -96 ) bricks/b_mf_v2a 0 32 0 1 1 0 0 0 +( -1024 2288 16 ) ( -1024 2576 16 ) ( -1008 2576 16 ) bricks/b_mf_v2a 0 32 0 1 1 0 0 0 +( -1024 2288 0 ) ( -1008 2288 0 ) ( -1008 2288 -96 ) bricks/b_mf_v2a 0 32 0 1 1 0 0 0 +( -1008 2288 0 ) ( -1008 2576 0 ) ( -1008 2576 -96 ) bricks/b_mf_v2a 0 32 0 1 1 0 0 0 +( -1016 2624 0 ) ( -1032 2624 0 ) ( -1032 2624 -96 ) bricks/b_mf_v2a 0 32 0 1 1 0 0 0 +( -1024 2576 0 ) ( -1024 2288 0 ) ( -1024 2288 -96 ) bricks/b_mf_v2a 0 32 0 1 1 0 0 0 +} +// brush 2572 +{ +( -1008 2576 -128 ) ( -1024 2576 -128 ) ( -1024 2288 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1024 2288 -96 ) ( -1024 2576 -96 ) ( -1008 2576 -96 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1024 2288 -96 ) ( -1008 2288 -96 ) ( -1008 2288 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1008 2288 -96 ) ( -1008 2576 -96 ) ( -1008 2576 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1016 2624 -96 ) ( -1032 2624 -96 ) ( -1032 2624 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1024 2576 -96 ) ( -1024 2288 -96 ) ( -1024 2288 -128 ) floors/c_pv_m2 0 -1 0 1 1 0 0 0 +} +// brush 2573 +{ +( -1152 2384 0 ) ( -1168 2384 0 ) ( -1168 2304 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1168 2304 16 ) ( -1168 2384 16 ) ( -1152 2384 16 ) bricks/c_sr_m3ba 0 0 0 1 1 0 0 0 +( -1168 2288 64 ) ( -1152 2288 64 ) ( -1152 2288 -32 ) bricks/c_sr_m3ba 0 0 0 1 1 0 0 0 +( -1120 2272 64 ) ( -1120 2352 64 ) ( -1120 2352 -32 ) bricks/b_mf_v2a 0 32 0 1 1 0 0 0 +( -1152 2576 64 ) ( -1168 2576 64 ) ( -1168 2576 -32 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1168 2384 64 ) ( -1168 2304 64 ) ( -1168 2304 -32 ) bricks/c_sr_m3ba 0 0 0 1 1 0 0 0 +} +// brush 2574 +{ +( -896 2560 -144 ) ( -1152 2560 -144 ) ( -1152 2304 -144 ) bricks/c_sr_m2 -192 -32 0 1 1 0 0 0 +( -1152 2304 -128 ) ( -1152 2560 -128 ) ( -896 2560 -128 ) bricks/c_sr_m2 -192 0 90 1 1 0 67108864 0 +( -1152 2304 -128 ) ( -896 2304 -128 ) ( -896 2304 -144 ) bricks/c_sr_m2 -192 -32 0 1 1 0 0 0 +( -1024 2280 -128 ) ( -1024 2536 -128 ) ( -1024 2536 -144 ) bricks/c_sr_m2 -192 -32 0 1 1 0 0 0 +( -896 2576 -128 ) ( -1152 2576 -128 ) ( -1152 2576 -144 ) bricks/c_sr_m2 -192 -32 0 1 1 0 0 0 +( -1152 2560 -128 ) ( -1152 2304 -128 ) ( -1152 2304 -144 ) bricks/c_sr_m2 -192 -32 0 1 1 0 0 0 +} +// brush 2575 +{ +( -1152 2560 -96 ) ( -1168 2560 -96 ) ( -1168 2512 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1168 2512 0 ) ( -1168 2560 0 ) ( -1152 2560 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1168 2512 0 ) ( -1152 2512 0 ) ( -1152 2512 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1152 2512 0 ) ( -1152 2560 0 ) ( -1152 2560 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1152 2624 0 ) ( -1168 2624 0 ) ( -1168 2624 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1168 2560 0 ) ( -1168 2512 0 ) ( -1168 2512 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2576 +{ +( -896 2304 -96 ) ( -1168 2304 -96 ) ( -1168 2288 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1168 2288 0 ) ( -1168 2304 0 ) ( -896 2304 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1168 2288 0 ) ( -896 2288 0 ) ( -896 2288 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1024 2288 0 ) ( -1024 2304 0 ) ( -1024 2304 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -896 2304 0 ) ( -1168 2304 0 ) ( -1168 2304 -96 ) bricks/b_mf_v2a 0 32 0 1 1 0 0 0 +( -1168 2304 0 ) ( -1168 2288 0 ) ( -1168 2288 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2577 +{ +( -1152 2384 -96 ) ( -1168 2384 -96 ) ( -1168 2304 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1168 2304 0 ) ( -1168 2384 0 ) ( -1152 2384 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1168 2304 0 ) ( -1152 2304 0 ) ( -1152 2304 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1152 2304 0 ) ( -1152 2384 0 ) ( -1152 2384 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1152 2384 0 ) ( -1168 2384 0 ) ( -1168 2384 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1168 2384 0 ) ( -1168 2304 0 ) ( -1168 2304 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2578 +{ +( -1152 2560 -128 ) ( -1168 2560 -128 ) ( -1168 2512 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1168 2512 -96 ) ( -1168 2560 -96 ) ( -1152 2560 -96 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1168 2512 -96 ) ( -1152 2512 -96 ) ( -1152 2512 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1152 2512 -96 ) ( -1152 2560 -96 ) ( -1152 2560 -128 ) floors/c_pv_m2 0 -1 0 1 1 0 0 0 +( -1152 2624 -96 ) ( -1168 2624 -96 ) ( -1168 2624 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1168 2560 -96 ) ( -1168 2512 -96 ) ( -1168 2512 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2579 +{ +( -896 2304 -128 ) ( -1168 2304 -128 ) ( -1168 2288 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1168 2288 -96 ) ( -1168 2304 -96 ) ( -896 2304 -96 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1168 2288 -96 ) ( -896 2288 -96 ) ( -896 2288 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1024 2288 -96 ) ( -1024 2304 -96 ) ( -1024 2304 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -896 2304 -96 ) ( -1168 2304 -96 ) ( -1168 2304 -128 ) floors/c_pv_m2 0 -1 0 1 1 0 0 0 +( -1168 2304 -96 ) ( -1168 2288 -96 ) ( -1168 2288 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2580 +{ +( -1384 2456 -128 ) ( -1448 2456 -128 ) ( -1448 2392 -128 ) props/box_sr_m6 0 20 0 0.750000 0.750000 0 134217728 0 +( -1448 2392 -80 ) ( -1448 2456 -80 ) ( -1384 2456 -80 ) props/box_sr_m6 0 64 0 0.750000 0.750000 0 134217728 0 +( -1448 2400 -96 ) ( -1384 2400 -96 ) ( -1384 2400 -128 ) props/box_sr_m6 0 20 0 0.750000 0.750000 0 134217728 0 +( -1392 2392 -96 ) ( -1392 2456 -96 ) ( -1392 2456 -128 ) props/box_sr_m6 0 20 0 0.750000 0.750000 0 134217728 0 +( -1384 2448 -96 ) ( -1448 2448 -96 ) ( -1448 2448 -128 ) props/box_sr_m6 0 20 0 0.750000 0.750000 0 134217728 0 +( -1440 2456 -96 ) ( -1440 2392 -96 ) ( -1440 2392 -128 ) props/box_sr_m6 0 20 0 0.750000 0.750000 0 134217728 0 +} +// brush 2581 +{ +( -1152 2496 0 ) ( -1440 2496 0 ) ( -1440 2400 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1440 2400 16 ) ( -1440 2496 16 ) ( -1152 2496 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1168 2456 0 ) ( -1152 2456 0 ) ( -1160 2456 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1152 2440 0 ) ( -1168 2440 0 ) ( -1160 2440 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1384 2456 264 ) ( -1384 2440 264 ) ( -1384 2456 8 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1224 2440 256 ) ( -1224 2456 256 ) ( -1224 2440 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 2582 +{ +( -1152 2496 0 ) ( -1440 2496 0 ) ( -1440 2400 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1440 2400 16 ) ( -1440 2496 16 ) ( -1152 2496 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1168 2400 16 ) ( -1168 2496 16 ) ( -1168 2496 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1184 2456 0 ) ( -1168 2456 0 ) ( -1176 2456 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1168 2440 0 ) ( -1184 2440 0 ) ( -1176 2440 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1208 2456 264 ) ( -1208 2440 264 ) ( -1208 2456 8 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 2583 +{ +( -1208 2456 0 ) ( -1224 2456 0 ) ( -1224 2440 0 ) common/li_sr_v27 -8 8 0 1 1 0 0 20000 +( -1224 2440 16 ) ( -1224 2456 16 ) ( -1208 2456 16 ) metals/mt_pv_m26y -24 -16 0 1 1 0 0 0 +( -1224 2440 264 ) ( -1208 2440 264 ) ( -1208 2440 8 ) metals/mt_pv_m26y -24 0 0 1 1 0 0 0 +( -1208 2440 264 ) ( -1208 2456 264 ) ( -1208 2456 8 ) metals/mt_pv_m26y 8 0 0 1 1 0 0 0 +( -1208 2456 264 ) ( -1224 2456 264 ) ( -1224 2456 8 ) metals/mt_pv_m26y -24 0 0 1 1 0 0 0 +( -1224 2456 256 ) ( -1224 2440 256 ) ( -1224 2440 0 ) metals/mt_pv_m26y 8 0 0 1 1 0 0 0 +} +// brush 2584 +{ +( -1152 2496 0 ) ( -1440 2496 0 ) ( -1440 2400 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1440 2400 16 ) ( -1440 2496 16 ) ( -1152 2496 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1440 2496 16 ) ( -1440 2400 16 ) ( -1440 2400 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1168 2456 0 ) ( -1152 2456 0 ) ( -1160 2456 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1152 2440 0 ) ( -1168 2440 0 ) ( -1160 2440 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1400 2440 256 ) ( -1400 2456 256 ) ( -1400 2440 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 2585 +{ +( -1384 2456 0 ) ( -1400 2456 0 ) ( -1400 2440 0 ) common/li_sr_v27 8 -8 0 1 1 0 0 5000 +( -1400 2440 16 ) ( -1400 2456 16 ) ( -1384 2456 16 ) metals/mt_pv_m26y -8 -16 0 1 1 0 0 0 +( -1400 2440 264 ) ( -1384 2440 264 ) ( -1384 2440 8 ) metals/mt_pv_m26y -8 0 0 1 1 0 0 0 +( -1384 2440 264 ) ( -1384 2456 264 ) ( -1384 2456 8 ) metals/mt_pv_m26y 8 0 0 1 1 0 0 0 +( -1384 2456 264 ) ( -1400 2456 264 ) ( -1400 2456 8 ) metals/mt_pv_m26y -8 0 0 1 1 0 0 0 +( -1400 2456 256 ) ( -1400 2440 256 ) ( -1400 2440 0 ) metals/mt_pv_m26y 8 0 0 1 1 0 0 0 +} +// brush 2586 +{ +( -1152 2496 0 ) ( -1440 2496 0 ) ( -1440 2400 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1440 2400 16 ) ( -1440 2496 16 ) ( -1152 2496 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1440 2400 16 ) ( -1152 2400 16 ) ( -1152 2400 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1168 2400 16 ) ( -1168 2496 16 ) ( -1168 2496 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1440 2496 16 ) ( -1440 2400 16 ) ( -1440 2400 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1184 2440 0 ) ( -1168 2440 0 ) ( -1176 2440 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 2587 +{ +( -1152 2496 0 ) ( -1440 2496 0 ) ( -1440 2400 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1440 2400 16 ) ( -1440 2496 16 ) ( -1152 2496 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1168 2400 16 ) ( -1168 2496 16 ) ( -1168 2496 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1152 2496 16 ) ( -1440 2496 16 ) ( -1440 2496 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1440 2496 16 ) ( -1440 2400 16 ) ( -1440 2400 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1168 2456 0 ) ( -1184 2456 0 ) ( -1176 2456 16 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +} +// brush 2588 +{ +( -1280 2512 -128 ) ( -1328 2512 -128 ) ( -1328 2496 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1328 2496 -96 ) ( -1328 2512 -96 ) ( -1280 2512 -96 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1328 2496 -96 ) ( -1280 2496 -96 ) ( -1280 2496 -128 ) floors/c_pv_m2 0 -1 0 1 1 0 0 0 +( -1280 2512 -96 ) ( -1328 2512 -96 ) ( -1328 2512 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1328 2512 -96 ) ( -1328 2496 -96 ) ( -1328 2496 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1152 2512 -128 ) ( -1152 2472 -128 ) ( -1152 2492 -96 ) floors/c_pv_m2 0 -1 0 1 1 0 0 0 +} +// brush 2589 +{ +( -1280 2512 -96 ) ( -1328 2512 -96 ) ( -1328 2496 -96 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1328 2496 0 ) ( -1328 2512 0 ) ( -1280 2512 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1328 2496 0 ) ( -1280 2496 0 ) ( -1280 2496 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1280 2512 0 ) ( -1328 2512 0 ) ( -1328 2512 -96 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1328 2512 0 ) ( -1328 2496 0 ) ( -1328 2496 -96 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1152 2512 -96 ) ( -1152 2472 -96 ) ( -1152 2492 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2590 +{ +( -1280 2400 -96 ) ( -1456 2400 -96 ) ( -1456 2384 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1456 2384 0 ) ( -1456 2400 0 ) ( -1280 2400 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1456 2384 0 ) ( -1280 2384 0 ) ( -1280 2384 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1280 2400 0 ) ( -1456 2400 0 ) ( -1456 2400 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1456 2400 0 ) ( -1456 2384 0 ) ( -1456 2384 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1152 2512 -96 ) ( -1152 2472 -96 ) ( -1152 2492 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2591 +{ +( -1280 2400 -128 ) ( -1456 2400 -128 ) ( -1456 2384 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1456 2384 -96 ) ( -1456 2400 -96 ) ( -1280 2400 -96 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1456 2384 -96 ) ( -1280 2384 -96 ) ( -1280 2384 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1280 2400 -96 ) ( -1456 2400 -96 ) ( -1456 2400 -128 ) floors/c_pv_m2 0 -1 0 1 1 0 0 0 +( -1456 2400 -96 ) ( -1456 2384 -96 ) ( -1456 2384 -128 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1152 2512 -128 ) ( -1152 2472 -128 ) ( -1152 2492 -96 ) floors/c_pv_m2 0 -1 0 1 1 0 0 0 +} +// brush 2592 +{ +( -1408 2680 -128 ) ( -1424 2680 -128 ) ( -1424 2656 -128 ) bricks/b_mf_v2a 0 0 0 1 1 134217728 0 0 +( -1424 2656 -124 ) ( -1424 2680 -124 ) ( -1408 2680 -124 ) bricks/b_mf_v2a 0 0 0 1 1 134217728 67108864 0 +( -1424 2656 -96 ) ( -1408 2656 -96 ) ( -1408 2656 -128 ) bricks/b_mf_v2a 0 0 0 1 1 134217728 0 0 +( -1408 2656 -96 ) ( -1408 2680 -96 ) ( -1408 2680 -128 ) bricks/b_mf_v2a 0 0 0 1 1 134217728 0 0 +( -1408 2680 -96 ) ( -1424 2680 -96 ) ( -1424 2680 -128 ) bricks/b_mf_v2a 0 0 0 1 1 134217728 0 0 +( -1424 2680 -96 ) ( -1424 2656 -96 ) ( -1424 2656 -128 ) bricks/b_mf_v2a 0 0 0 1 1 134217728 0 0 +} +// brush 2593 +{ +( -1424 2696 -128 ) ( -1440 2696 -128 ) ( -1440 2672 -128 ) bricks/b_mf_v2a 0 0 0 1 1 134217728 0 0 +( -1440 2672 -124 ) ( -1440 2696 -124 ) ( -1424 2696 -124 ) bricks/b_mf_v2a 0 10 0 1 1 134217728 0 0 +( -1440 2672 -96 ) ( -1424 2672 -96 ) ( -1424 2672 -128 ) bricks/b_mf_v2a 0 0 0 1 1 134217728 0 0 +( -1424 2672 -96 ) ( -1424 2696 -96 ) ( -1424 2696 -128 ) bricks/b_mf_v2a 0 0 0 1 1 134217728 0 0 +( -1424 2696 -96 ) ( -1440 2696 -96 ) ( -1440 2696 -128 ) bricks/b_mf_v2a 0 0 0 1 1 134217728 0 0 +( -1440 2696 -96 ) ( -1440 2672 -96 ) ( -1440 2672 -128 ) bricks/b_mf_v2a 0 0 0 1 1 134217728 0 0 +} +// brush 2594 +{ +( -928 2400 -144 ) ( -928 2496 -144 ) ( -1024 2496 -144 ) bricks/c_sr_m2 0 -120 90 1 1 0 0 0 +( -1024 2496 -128 ) ( -928 2496 -128 ) ( -928 2400 -128 ) bricks/c_sr_m2 -192 -32 0 1 1 0 67108864 0 +( -1440 2504 -128 ) ( -1440 2408 -128 ) ( -1440 2408 -144 ) bricks/c_sr_m2 0 72 0 1 1 0 0 0 +( -1024 2400 -128 ) ( -928 2400 -128 ) ( -928 2400 -144 ) bricks/c_sr_m2 192 72 -180 1 -1 0 0 0 +( -928 2496 -128 ) ( -1024 2496 -128 ) ( -1024 2496 -144 ) bricks/c_sr_m2 192 72 -180 1 -1 0 0 0 +( -1152 2496 -144 ) ( -1152 2480 -144 ) ( -1152 2488 -128 ) bricks/c_sr_m2 -180 116 0 1 1 0 0 0 +} +// brush 2595 +{ +( -1353 2599 -128 ) ( -1376 2592 -128 ) ( -1371 2577 -128 ) bricks/b_mf_v2a 1 -70 15 1.000157 0.999922 134217728 0 0 +( -1371 2577 -124 ) ( -1376 2592 -124 ) ( -1353 2599 -124 ) bricks/b_mf_v2a -110 -70 15 1 1 134217728 67108864 0 +( -1371 2579 -112 ) ( -1348 2586 -112 ) ( -1348 2586 -128 ) bricks/b_mf_v2a -69 0 0 0.961182 1 134217728 0 0 +( -1354 2582 -112 ) ( -1359 2597 -112 ) ( -1359 2597 -128 ) bricks/b_mf_v2a 112 0 0 0.961426 1 134217728 0 0 +( -1353 2599 -116 ) ( -1376 2592 -116 ) ( -1376 2592 -132 ) bricks/b_mf_v2a -65 0 0 0.961304 1 134217728 0 0 +( -1376 2592 -116 ) ( -1371 2577 -116 ) ( -1371 2577 -132 ) bricks/b_mf_v2a 119 0 0 0.961182 1 134217728 0 0 +} +// brush 2596 +{ +( -1342 2550 -128 ) ( -1368 2580 -128 ) ( -1390 2562 -128 ) bricks/c_sr_m2 -100 8 39 0.999731 1.000075 134217728 0 0 +( -1390 2562 -124 ) ( -1368 2580 -124 ) ( -1342 2550 -124 ) bricks/c_sr_m2 -106 -1 39 1 1 134217728 67108864 0 +( -1390 2562 -120 ) ( -1364 2532 -120 ) ( -1364 2532 -136 ) bricks/c_sr_m2 7 10 -90 1 0.766113 134217728 0 0 +( -1364 2532 -120 ) ( -1342 2550 -120 ) ( -1342 2550 -136 ) bricks/c_sr_m2 7 -32 -90 1 -0.766113 134217728 0 0 +( -1342 2550 -120 ) ( -1368 2580 -120 ) ( -1368 2580 -136 ) bricks/c_sr_m2 7 116 -90 1 0.765869 134217728 0 0 +( -1368 2580 -120 ) ( -1390 2562 -120 ) ( -1390 2562 -136 ) bricks/c_sr_m2 7 -65 -90 1 -0.766113 134217728 0 0 +} +// brush 2597 +{ +( -1390 2666 -128 ) ( -1420 2640 -128 ) ( -1402 2618 -128 ) bricks/c_sr_m2 -164 -31 -50 0.999731 0.999918 134217728 0 0 +( -1402 2618 -124 ) ( -1420 2640 -124 ) ( -1390 2666 -124 ) bricks/c_sr_m2 -164 -31 -50 1 1 134217728 67108864 0 +( -1402 2618 -120 ) ( -1372 2644 -120 ) ( -1372 2644 -136 ) bricks/c_sr_m2 8 -38 -90 1 0.766113 134217728 0 0 +( -1372 2644 -120 ) ( -1390 2666 -120 ) ( -1390 2666 -136 ) bricks/c_sr_m2 7 -37 -90 1 0.766113 134217728 0 0 +( -1390 2666 -120 ) ( -1420 2640 -120 ) ( -1420 2640 -136 ) bricks/c_sr_m2 8 -62 -90 1 0.765991 134217728 0 0 +( -1420 2640 -120 ) ( -1402 2618 -120 ) ( -1402 2618 -136 ) bricks/c_sr_m2 7 -70 -90 1 0.766113 134217728 0 0 +} +// brush 2598 +{ +( -1384 2602 -134 ) ( -1400 2602 -134 ) ( -1400 2608 -128 ) metals/mt_sr_mn8 0 0 0 1 1 134217728 8388608 0 +( -1384 2600 -140 ) ( -1400 2600 -140 ) ( -1400 2600 -132 ) metals/mt_sr_mn8 0 0 0 1 1 134217728 8388608 0 +( -1384 2602 -146 ) ( -1400 2602 -146 ) ( -1400 2596 -140 ) metals/mt_sr_mn8 0 0 0 1 1 134217728 8388608 0 +( -1384 2608 -148 ) ( -1400 2608 -148 ) ( -1400 2600 -148 ) metals/mt_sr_mn8 0 0 0 1 1 134217728 8388608 0 +( -1384 2614 -146 ) ( -1400 2614 -146 ) ( -1400 2608 -152 ) metals/mt_sr_mn8 0 0 0 1 1 134217728 8388608 0 +( -1384 2616 -140 ) ( -1400 2616 -140 ) ( -1400 2616 -148 ) metals/mt_sr_mn8 0 0 0 1 1 134217728 8388608 0 +( -1384 2614 -134 ) ( -1400 2614 -134 ) ( -1400 2620 -140 ) metals/mt_sr_mn8 0 0 0 1 1 134217728 8388608 0 +( -1384 2608 -132 ) ( -1400 2608 -132 ) ( -1400 2616 -132 ) metals/mt_sr_mn8 0 0 0 1 1 134217728 8388608 0 +( -1344 2600 -148 ) ( -1344 2600 -132 ) ( -1344 2616 -132 ) metals/mt_sr_mn8 0 0 0 1 1 134217728 8388608 0 +( -1440 2616 -132 ) ( -1440 2600 -132 ) ( -1440 2600 -148 ) metals/mt_sr_mn8 0 0 0 1 1 134217728 8388608 0 +} +// brush 2599 +{ +( -1358 2594 -144 ) ( -1372 2594 -144 ) ( -1372 2560 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1372 2560 -128 ) ( -1372 2594 -128 ) ( -1358 2594 -128 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1388 2560 -144 ) ( -1388 2560 -128 ) ( -1358 2560 -128 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1358 2560 -128 ) ( -1358 2594 -128 ) ( -1358 2594 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1358 2594 -128 ) ( -1372 2594 -128 ) ( -1372 2594 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1388 2560 -128 ) ( -1388 2560 -144 ) ( -1372 2594 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +} +// brush 2600 +{ +( -1344 2644 -168 ) ( -1428 2644 -168 ) ( -1428 2560 -168 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1428 2560 -136 ) ( -1428 2644 -136 ) ( -1344 2644 -136 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1428 2560 -136 ) ( -1344 2560 -136 ) ( -1344 2560 -152 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1344 2560 -136 ) ( -1344 2644 -136 ) ( -1344 2644 -152 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1344 2644 -136 ) ( -1428 2644 -136 ) ( -1428 2644 -152 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1440 2644 -136 ) ( -1440 2560 -136 ) ( -1440 2560 -152 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2601 +{ +( -1416 2644 -144 ) ( -1428 2644 -144 ) ( -1428 2612 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1428 2612 -128 ) ( -1428 2644 -128 ) ( -1416 2644 -128 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1428 2618 -128 ) ( -1416 2618 -128 ) ( -1416 2618 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1394 2644 -128 ) ( -1394 2644 -144 ) ( -1416 2618 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1394 2644 -144 ) ( -1394 2644 -128 ) ( -1428 2644 -128 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1428 2644 -128 ) ( -1428 2612 -128 ) ( -1428 2612 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +} +// brush 2602 +{ +( -1428 2644 -144 ) ( -1440 2644 -144 ) ( -1440 2560 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +( -1440 2560 -128 ) ( -1440 2644 -128 ) ( -1428 2644 -128 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +( -1440 2560 -128 ) ( -1428 2560 -128 ) ( -1428 2560 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +( -1428 2560 -128 ) ( -1428 2644 -128 ) ( -1428 2644 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +( -1428 2644 -128 ) ( -1440 2644 -128 ) ( -1440 2644 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +( -1440 2644 -128 ) ( -1440 2560 -128 ) ( -1440 2560 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +} +// brush 2603 +{ +( -1344 2644 -144 ) ( -1440 2644 -144 ) ( -1440 2560 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +( -1440 2560 -128 ) ( -1440 2644 -128 ) ( -1344 2644 -128 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +( -1440 2560 -128 ) ( -1344 2560 -128 ) ( -1344 2560 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +( -1344 2560 -128 ) ( -1344 2644 -128 ) ( -1344 2644 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +( -1344 2644 -128 ) ( -1440 2644 -128 ) ( -1440 2644 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +( -1358 2640 -128 ) ( -1358 2556 -128 ) ( -1358 2556 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +} +// brush 2604 +{ +( -1344 2912 -144 ) ( -1440 2912 -144 ) ( -1440 2816 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +( -1440 2816 -128 ) ( -1440 2912 -128 ) ( -1344 2912 -128 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +( -1344 2816 -128 ) ( -1344 2912 -128 ) ( -1344 2912 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +( -1440 2912 -128 ) ( -1440 2816 -128 ) ( -1440 2816 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +( -1440 2816 -144 ) ( -1424 2816 -144 ) ( -1432 2816 -128 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +( -1432 2644 -144 ) ( -1448 2644 -144 ) ( -1440 2644 -128 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +} +// brush 2605 +{ +( -1344 2912 -144 ) ( -1440 2912 -144 ) ( -1440 2816 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +( -1440 2816 -128 ) ( -1440 2912 -128 ) ( -1344 2912 -128 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +( -1440 2496 -128 ) ( -1344 2496 -128 ) ( -1344 2496 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +( -1344 2816 -128 ) ( -1344 2912 -128 ) ( -1344 2912 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +( -1440 2912 -128 ) ( -1440 2816 -128 ) ( -1440 2816 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +( -1440 2560 -144 ) ( -1424 2560 -144 ) ( -1432 2560 -128 ) bricks/c_sr_m2 0 96 270 1 1 0 67108864 0 +} +// brush 2606 +{ +( -1310 2630 -112 ) ( -1310 2630 -104 ) ( -1304 2636 -104 ) metals/mt_sr_v20 -17 2 90 1 1 0 0 0 +( -1316 2628 -112 ) ( -1316 2628 -104 ) ( -1308 2628 -104 ) metals/mt_sr_v20 -17 2 90 1 1 0 0 0 +( -1322 2630 -112 ) ( -1322 2630 -104 ) ( -1316 2624 -104 ) metals/mt_sr_v20 -17 2 90 1 1 0 0 0 +( -1324 2636 -112 ) ( -1324 2636 -104 ) ( -1324 2628 -104 ) metals/mt_sr_v20 -17 2 90 1 1 0 0 0 +( -1322 2642 -112 ) ( -1322 2642 -104 ) ( -1328 2636 -104 ) metals/mt_sr_v20 -17 2 90 1 1 0 0 0 +( -1316 2644 -112 ) ( -1316 2644 -104 ) ( -1324 2644 -104 ) metals/mt_sr_v20 -17 2 90 1 1 0 0 0 +( -1310 2642 -112 ) ( -1310 2642 -104 ) ( -1316 2648 -104 ) metals/mt_sr_v20 -17 2 90 1 1 0 0 0 +( -1308 2636 -112 ) ( -1308 2636 -104 ) ( -1308 2644 -104 ) metals/mt_sr_v20 -17 2 90 1 1 0 0 0 +( -1324 2628 -112 ) ( -1308 2628 -112 ) ( -1308 2644 -112 ) metals/mt_sr_v20 -17 2 90 1 1 0 0 0 +( -1308 2644 16 ) ( -1308 2628 16 ) ( -1324 2628 16 ) metals/mt_sr_v20 -17 2 90 1 1 0 0 0 +} +// brush 2607 +{ +( -1344 2816 -80 ) ( -1344 3008 -80 ) ( -1328 3008 -80 ) bricks/c_sr_m3a -2 78 0 1 1 0 0 0 +( -1312 2648 -96 ) ( -1312 2648 -80 ) ( -1312 2688 -80 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1344 2824 -96 ) ( -1344 2816 -96 ) ( -1328 2820 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1344 2688 -96 ) ( -1336 2688 -96 ) ( -1340 2688 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1312 2648 -80 ) ( -1312 2648 -96 ) ( -1336 2656 -96 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1336 2682 -96 ) ( -1336 2688 -96 ) ( -1336 2685 -80 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +} +// brush 2608 +{ +( -1344 2816 -80 ) ( -1344 3008 -80 ) ( -1328 3008 -80 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1344 2688 0 ) ( -1344 2496 0 ) ( -1344 2496 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1344 2824 -96 ) ( -1344 2816 -96 ) ( -1328 2820 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1344 2688 -96 ) ( -1336 2688 -96 ) ( -1340 2688 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1328 2656 -96 ) ( -1344 2656 -96 ) ( -1336 2656 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1336 2688 -96 ) ( -1336 2682 -96 ) ( -1336 2685 -80 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +} +// brush 2609 +{ +( -1336 2560 -16 ) ( -1336 2688 -16 ) ( -1328 2688 -16 ) bricks/c_sr_m3a -2 14 0 1 1 0 0 0 +( -1280 2560 0 ) ( -1280 2688 0 ) ( -1280 2688 -128 ) bricks/c_sr_m3a -2 14 0 1 1 0 0 0 +( -1328 2688 0 ) ( -1336 2688 0 ) ( -1336 2688 -128 ) bricks/c_sr_m3a -2 14 0 1 1 0 0 0 +( -1336 2682 -88 ) ( -1336 2648 -8 ) ( -1280 2600 -16 ) bricks/c_sr_m3a -2 78 0 1 1 0 0 0 +( -1280 2688 -24 ) ( -1328 2688 -24 ) ( -1328 2560 -24 ) bricks/c_sr_m3a -2 78 0 1 1 0 0 0 +( -1310 2688 112 ) ( -1310 2560 112 ) ( -1310 2688 8 ) bricks/c_sr_m3a -2 78 0 1 1 0 0 0 +} +// brush 2610 +{ +( -1328 2688 -96 ) ( -1336 2688 -96 ) ( -1336 2560 -96 ) bricks/c_sr_m3a -2 14 0 1 1 0 0 0 +( -1280 2560 0 ) ( -1280 2688 0 ) ( -1280 2688 -128 ) bricks/c_sr_m3a -2 14 0 1 1 0 0 0 +( -1328 2688 0 ) ( -1336 2688 0 ) ( -1336 2688 -128 ) bricks/c_sr_m3a -2 14 0 1 1 0 0 0 +( -1336 2648 -8 ) ( -1336 2682 -88 ) ( -1336 2688 -96 ) bricks/c_sr_m3a -2 78 0 1 1 0 0 0 +( -1336 2682 -88 ) ( -1336 2648 -8 ) ( -1280 2600 -16 ) bricks/c_sr_m3a -2 78 0 1 1 0 0 0 +( -1328 2688 -24 ) ( -1280 2688 -24 ) ( -1328 2560 -24 ) bricks/c_sr_m3a -2 78 0 1 1 0 0 0 +} +// brush 2611 +{ +( -1336 2560 -16 ) ( -1336 2688 -16 ) ( -1328 2688 -16 ) bricks/c_sr_m3a -2 14 0 1 1 0 0 0 +( -1336 2560 0 ) ( -1328 2560 0 ) ( -1328 2560 -128 ) bricks/c_sr_m3a -2 14 0 1 1 0 0 0 +( -1280 2560 0 ) ( -1280 2688 0 ) ( -1280 2688 -128 ) bricks/c_sr_m3a -2 14 0 1 1 0 0 0 +( -1311 2649 -85 ) ( -1311 2619 -17 ) ( -1339 2637 -20 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1280 2688 -24 ) ( -1328 2688 -24 ) ( -1328 2560 -24 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1310 2688 112 ) ( -1310 2560 112 ) ( -1310 2688 8 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +} +// brush 2612 +{ +( -1328 2688 -96 ) ( -1336 2688 -96 ) ( -1336 2560 -96 ) bricks/c_sr_m3a -2 14 0 1 1 0 0 0 +( -1336 2560 0 ) ( -1328 2560 0 ) ( -1328 2560 -128 ) bricks/c_sr_m3a -2 14 0 1 1 0 0 0 +( -1280 2560 0 ) ( -1280 2688 0 ) ( -1280 2688 -128 ) bricks/c_sr_m3a -2 14 0 1 1 0 0 0 +( -1336 2620 -96 ) ( -1336 2586 -16 ) ( -1336 2560 -16 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1311 2649 -85 ) ( -1311 2619 -17 ) ( -1339 2637 -20 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1336 2586 -16 ) ( -1336 2620 -96 ) ( -1310 2654 -96 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1328 2688 -24 ) ( -1280 2688 -24 ) ( -1328 2560 -24 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +} +// brush 2613 +{ +( -1344 2656 -16 ) ( -1344 2688 -16 ) ( -1328 2688 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1344 2656 -16 ) ( -1328 2656 -16 ) ( -1328 2656 -32 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1328 2688 -16 ) ( -1344 2688 -16 ) ( -1344 2688 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1344 2688 -16 ) ( -1344 2656 -16 ) ( -1344 2656 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1280 2688 -24 ) ( -1328 2688 -24 ) ( -1328 2560 -24 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1336 2560 112 ) ( -1336 2688 112 ) ( -1336 2560 8 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2614 +{ +( -1328 2688 -32 ) ( -1344 2688 -32 ) ( -1344 2656 -32 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1344 2656 -16 ) ( -1328 2656 -16 ) ( -1328 2656 -32 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1312 2656 -16 ) ( -1312 2688 -16 ) ( -1312 2688 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1328 2688 -16 ) ( -1344 2688 -16 ) ( -1344 2688 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1344 2688 -16 ) ( -1344 2656 -16 ) ( -1344 2656 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1328 2688 -24 ) ( -1280 2688 -24 ) ( -1328 2560 -24 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2615 +{ +( -1344 2592 -16 ) ( -1344 2624 -16 ) ( -1328 2624 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1344 2592 -16 ) ( -1328 2592 -16 ) ( -1328 2592 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1328 2624 -16 ) ( -1344 2624 -16 ) ( -1344 2624 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1344 2624 -16 ) ( -1344 2592 -16 ) ( -1344 2592 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1280 2688 -24 ) ( -1328 2688 -24 ) ( -1328 2560 -24 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1336 2560 112 ) ( -1336 2688 112 ) ( -1336 2560 8 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2616 +{ +( -1328 2624 -32 ) ( -1344 2624 -32 ) ( -1344 2592 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1344 2592 -16 ) ( -1328 2592 -16 ) ( -1328 2592 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1328 2592 -16 ) ( -1328 2624 -16 ) ( -1328 2624 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1328 2624 -16 ) ( -1344 2624 -16 ) ( -1344 2624 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1344 2624 -16 ) ( -1344 2592 -16 ) ( -1344 2592 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1328 2688 -24 ) ( -1280 2688 -24 ) ( -1328 2560 -24 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2617 +{ +( -1280 2688 -24 ) ( -1328 2688 -24 ) ( -1328 2560 -24 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1328 2560 16 ) ( -1328 2688 16 ) ( -1280 2688 16 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1328 2560 112 ) ( -1280 2560 112 ) ( -1280 2560 8 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1310 2560 112 ) ( -1310 2688 112 ) ( -1310 2688 8 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1280 2688 112 ) ( -1328 2688 112 ) ( -1328 2688 8 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1336 2688 112 ) ( -1336 2560 112 ) ( -1336 2560 8 ) bricks/b_mf_v2a 0 80 0 1 1 0 0 0 +} +// brush 2618 +{ +( -1280 2688 -104 ) ( -1328 2688 -104 ) ( -1328 2560 -104 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1328 2560 -96 ) ( -1328 2688 -96 ) ( -1280 2688 -96 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1328 2560 0 ) ( -1280 2560 0 ) ( -1280 2560 -104 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1280 2560 0 ) ( -1280 2688 0 ) ( -1280 2688 -104 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1280 2688 0 ) ( -1328 2688 0 ) ( -1328 2688 -104 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1328 2688 0 ) ( -1328 2560 0 ) ( -1328 2560 -104 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +} +// brush 2619 +{ +( -1280 2644 -96 ) ( -1310 2644 -96 ) ( -1310 2560 -96 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1310 2560 8 ) ( -1310 2644 8 ) ( -1280 2644 8 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1310 2560 -16 ) ( -1280 2560 -16 ) ( -1280 2560 -96 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1280 2560 -16 ) ( -1280 2644 -16 ) ( -1280 2644 -96 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1280 2688 -16 ) ( -1310 2688 -16 ) ( -1310 2688 -96 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1310 2644 -16 ) ( -1310 2560 -16 ) ( -1310 2560 -96 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +} +// brush 2620 +{ +( -1328 2592 -32 ) ( -1344 2592 -32 ) ( -1344 2560 -32 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1344 2560 -16 ) ( -1344 2592 -16 ) ( -1328 2592 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1336 2560 -16 ) ( -1336 2592 -16 ) ( -1336 2592 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1328 2624 -16 ) ( -1344 2624 -16 ) ( -1344 2624 -32 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1337 2608 -33 ) ( -1311 2619 -17 ) ( -1311 2649 -85 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1338 2651 -92 ) ( -1338 2619 -19 ) ( -1338 2608 -24 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2621 +{ +( -1328 2592 -32 ) ( -1344 2592 -32 ) ( -1344 2560 -32 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1344 2560 -16 ) ( -1344 2592 -16 ) ( -1328 2592 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1344 2560 -16 ) ( -1328 2560 -16 ) ( -1328 2560 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1336 2560 -16 ) ( -1336 2592 -16 ) ( -1336 2592 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1344 2592 -16 ) ( -1344 2560 -16 ) ( -1344 2560 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1311 2619 -17 ) ( -1337 2608 -33 ) ( -1311 2649 -85 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2622 +{ +( -1328 2688 -96 ) ( -1336 2688 -96 ) ( -1336 2560 -96 ) bricks/c_sr_m3a -2 14 0 1 1 0 0 0 +( -1336 2664 -76 ) ( -1336 2638 -86 ) ( -1336 2636 -96 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1311 2649 -85 ) ( -1311 2619 -17 ) ( -1339 2637 -20 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1337 2608 -33 ) ( -1311 2619 -17 ) ( -1311 2649 -85 ) bricks/c_sr_m3a -2 46 0 1 1 0 0 0 +( -1336 2638 -86 ) ( -1336 2664 -76 ) ( -1310 2646 -76 ) bricks/c_sr_m3a -2 62 0 1 1 0 0 0 +} +// brush 2623 +{ +( -1328 2688 -64 ) ( -1344 2688 -64 ) ( -1344 2656 -64 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1344 2656 -48 ) ( -1344 2688 -48 ) ( -1328 2688 -48 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1344 2656 -48 ) ( -1328 2656 -48 ) ( -1328 2656 -64 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1312 2656 -48 ) ( -1312 2688 -48 ) ( -1312 2688 -64 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1328 2688 -48 ) ( -1344 2688 -48 ) ( -1344 2688 -64 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1344 2688 -48 ) ( -1344 2656 -48 ) ( -1344 2656 -64 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2624 +{ +( -1328 2592 -48 ) ( -1344 2592 -48 ) ( -1344 2560 -48 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1344 2560 -32 ) ( -1344 2592 -32 ) ( -1328 2592 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1344 2560 -32 ) ( -1328 2560 -32 ) ( -1328 2560 -48 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1312 2560 -32 ) ( -1312 2592 -32 ) ( -1312 2592 -48 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1328 2592 -32 ) ( -1344 2592 -32 ) ( -1344 2592 -48 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1344 2592 -32 ) ( -1344 2560 -32 ) ( -1344 2560 -48 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2625 +{ +( -1328 2624 -80 ) ( -1344 2624 -80 ) ( -1344 2560 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1344 2560 -64 ) ( -1344 2624 -64 ) ( -1328 2624 -64 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1344 2560 -64 ) ( -1328 2560 -64 ) ( -1328 2560 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1312 2560 -64 ) ( -1312 2624 -64 ) ( -1312 2624 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1328 2592 -64 ) ( -1344 2592 -64 ) ( -1344 2592 -80 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1344 2624 -64 ) ( -1344 2560 -64 ) ( -1344 2560 -80 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2626 +{ +( -1328 2592 -96 ) ( -1344 2592 -96 ) ( -1344 2560 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1344 2560 -80 ) ( -1344 2592 -80 ) ( -1328 2592 -80 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1344 2560 -80 ) ( -1328 2560 -80 ) ( -1328 2560 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1312 2560 -80 ) ( -1312 2592 -80 ) ( -1312 2592 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1336 2624 -80 ) ( -1352 2624 -80 ) ( -1352 2624 -96 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1344 2592 -80 ) ( -1344 2560 -80 ) ( -1344 2560 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2627 +{ +( -1344 2816 0 ) ( -1344 3008 0 ) ( -1328 3008 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1336 2816 80 ) ( -1336 3008 80 ) ( -1336 3008 -48 ) bricks/b_mf_v2 0 80 0 1 1 0 0 0 +( -1344 2688 80 ) ( -1344 2496 80 ) ( -1344 2496 -48 ) bricks/b_mf_v2a 0 80 0 1 1 0 0 0 +( -1344 2824 -16 ) ( -1344 2816 -16 ) ( -1328 2820 -16 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1344 2688 -16 ) ( -1336 2688 -16 ) ( -1340 2688 80 ) bricks/b_mf_v2a 0 80 0 1 1 0 0 0 +( -1328 2560 -16 ) ( -1344 2560 -16 ) ( -1336 2560 80 ) bricks/b_mf_v2a 0 80 0 1 1 0 0 0 +} +// brush 2628 +{ +( -1344 2816 0 ) ( -1344 3008 0 ) ( -1328 3008 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1344 2496 0 ) ( -1328 2496 0 ) ( -1328 2496 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1328 2816 0 ) ( -1328 3008 0 ) ( -1328 3008 -128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1344 2688 0 ) ( -1344 2496 0 ) ( -1344 2496 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1344 2824 -96 ) ( -1344 2816 -96 ) ( -1328 2820 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1344 2560 -96 ) ( -1328 2560 -96 ) ( -1336 2560 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +} +// brush 2629 +{ +( -1344 2816 0 ) ( -1344 3008 0 ) ( -1328 3008 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1328 2816 0 ) ( -1328 3008 0 ) ( -1328 3008 -128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1328 3008 0 ) ( -1344 3008 0 ) ( -1344 3008 -128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1344 2688 0 ) ( -1344 2496 0 ) ( -1344 2496 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1344 2824 -96 ) ( -1344 2816 -96 ) ( -1328 2820 -96 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1336 2688 -96 ) ( -1344 2688 -96 ) ( -1340 2688 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +} +// brush 2630 +{ +( -1390 2883 -128 ) ( -1430 2877 -128 ) ( -1426 2849 -128 ) bricks/c_sr_m2 176 8 -82 0.999948 1.000120 134217728 0 0 +( -1426 2849 -124 ) ( -1430 2877 -124 ) ( -1390 2883 -124 ) bricks/c_sr_m2 176 8 -82 1 1 134217728 67108864 0 +( -1426 2849 -128 ) ( -1386 2855 -128 ) ( -1386 2855 -144 ) bricks/c_sr_m2 0 96 -90 1 0.990356 134217728 0 0 +( -1386 2855 -128 ) ( -1390 2883 -128 ) ( -1390 2883 -144 ) bricks/c_sr_m2 0 6 -90 1 0.990234 134217728 0 0 +( -1390 2883 -128 ) ( -1430 2877 -128 ) ( -1430 2877 -144 ) bricks/c_sr_m2 0 92 -90 1 0.990356 134217728 0 0 +( -1430 2877 -128 ) ( -1426 2849 -128 ) ( -1426 2849 -144 ) bricks/c_sr_m2 0 1 -90 1 0.990234 134217728 0 0 +} +// brush 2631 +{ +( -1358 2872 -152 ) ( -1400 2872 -152 ) ( -1400 2844 -152 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1400 2844 -136 ) ( -1400 2872 -136 ) ( -1358 2872 -136 ) metals/mt_pv_m26y 0 0 0 1 1 0 4194304 0 +( -1400 2844 -136 ) ( -1358 2844 -136 ) ( -1358 2844 -152 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1358 2844 -136 ) ( -1358 2872 -136 ) ( -1358 2872 -152 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1358 2872 -136 ) ( -1400 2872 -136 ) ( -1400 2872 -152 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1400 2872 -136 ) ( -1400 2844 -136 ) ( -1400 2844 -152 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +} +// brush 2632 +{ +( -1400 2872 -144 ) ( -1440 2872 -144 ) ( -1440 2844 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1440 2844 -128 ) ( -1440 2872 -128 ) ( -1400 2872 -128 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1440 2844 -128 ) ( -1400 2844 -128 ) ( -1400 2844 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1400 2844 -128 ) ( -1400 2872 -128 ) ( -1400 2872 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1400 2872 -128 ) ( -1440 2872 -128 ) ( -1440 2872 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1440 2872 -128 ) ( -1440 2844 -128 ) ( -1440 2844 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +} +// brush 2633 +{ +( -1344 2872 -144 ) ( -1400 2872 -144 ) ( -1400 2844 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1400 2844 -128 ) ( -1400 2872 -128 ) ( -1344 2872 -128 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1400 2844 -128 ) ( -1344 2844 -128 ) ( -1344 2844 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1344 2844 -128 ) ( -1344 2872 -128 ) ( -1344 2872 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1344 2872 -128 ) ( -1400 2872 -128 ) ( -1400 2872 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1358 2876 -128 ) ( -1358 2848 -128 ) ( -1358 2848 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +} +// brush 2634 +{ +( -1406 2834 -128 ) ( -1436 2808 -128 ) ( -1418 2786 -128 ) bricks/c_sr_m2 -25 64 -50 0.999731 0.999918 134217728 0 0 +( -1418 2786 -124 ) ( -1436 2808 -124 ) ( -1406 2834 -124 ) bricks/c_sr_m2 -25 64 -50 1 1 134217728 67108864 0 +( -1418 2786 -120 ) ( -1388 2812 -120 ) ( -1388 2812 -136 ) bricks/c_sr_m2 8 -59 -90 1 0.766113 134217728 0 0 +( -1388 2812 -120 ) ( -1406 2834 -120 ) ( -1406 2834 -136 ) bricks/c_sr_m2 8 54 -90 1 0.766113 134217728 0 0 +( -1406 2834 -120 ) ( -1436 2808 -120 ) ( -1436 2808 -136 ) bricks/c_sr_m2 8 -83 -90 1 0.765991 134217728 0 0 +( -1436 2808 -120 ) ( -1418 2786 -120 ) ( -1418 2786 -136 ) bricks/c_sr_m2 8 21 -90 1 0.766113 134217728 0 0 +} +// brush 2635 +{ +( -1400 2844 -152 ) ( -1440 2844 -152 ) ( -1440 2816 -152 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1440 2816 -136 ) ( -1440 2844 -136 ) ( -1400 2844 -136 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1440 2816 -136 ) ( -1400 2816 -136 ) ( -1400 2816 -152 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1400 2816 -136 ) ( -1400 2844 -136 ) ( -1400 2844 -152 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1400 2844 -136 ) ( -1440 2844 -136 ) ( -1440 2844 -152 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1440 2844 -136 ) ( -1440 2816 -136 ) ( -1440 2816 -152 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +} +// brush 2636 +{ +( -1440 2848 -136 ) ( -1456 2848 -136 ) ( -1456 2808 -136 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1456 2808 -128 ) ( -1456 2848 -128 ) ( -1440 2848 -128 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1456 2808 -104 ) ( -1440 2808 -104 ) ( -1440 2808 -136 ) bricks/c_sr_m2 -8 96 270 1 1 0 0 0 +( -1440 2808 -104 ) ( -1440 2848 -104 ) ( -1440 2848 -136 ) bricks/c_sr_m2 56 116 0 1 1 0 0 0 +( -1440 2848 -104 ) ( -1456 2848 -104 ) ( -1456 2848 -136 ) bricks/c_sr_m2 -8 96 270 1 1 0 0 0 +( -1456 2848 -104 ) ( -1456 2808 -104 ) ( -1456 2808 -136 ) bricks/c_sr_m2 -8 96 270 1 1 0 0 0 +} +// brush 2637 +{ +( -1344 2844 -144 ) ( -1384 2844 -144 ) ( -1384 2816 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1384 2816 -128 ) ( -1384 2844 -128 ) ( -1344 2844 -128 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1384 2816 -128 ) ( -1344 2816 -128 ) ( -1344 2816 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1344 2816 -128 ) ( -1344 2844 -128 ) ( -1344 2844 -144 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1344 2844 -128 ) ( -1384 2844 -128 ) ( -1384 2844 -144 ) bricks/c_sr_m2 0 98 270 1 1 0 0 0 +( -1400 2844 -128 ) ( -1400 2816 -128 ) ( -1400 2816 -144 ) bricks/c_sr_m2 56 116 0 1 1 0 0 0 +} +// brush 2638 +{ +( -1344 2912 -144 ) ( -1440 2912 -144 ) ( -1440 2816 -144 ) bricks/c_sr_m2 0 72 0 1 1 0 0 0 +( -1440 2816 -128 ) ( -1440 2912 -128 ) ( -1344 2912 -128 ) bricks/c_sr_m2 0 96 270 1 1 0 0 0 +( -1344 2816 -128 ) ( -1344 2912 -128 ) ( -1344 2912 -144 ) bricks/c_sr_m2 0 72 0 1 1 0 0 0 +( -1344 2912 -128 ) ( -1440 2912 -128 ) ( -1440 2912 -144 ) bricks/c_sr_m2 0 72 0 1 1 0 0 0 +( -1440 2912 -128 ) ( -1440 2816 -128 ) ( -1440 2816 -144 ) bricks/c_sr_m2 0 72 0 1 1 0 0 0 +( -1412 2872 -144 ) ( -1428 2872 -144 ) ( -1420 2872 -128 ) bricks/c_sr_m2 76 116 0 1 1 0 0 0 +} +// brush 2639 +{ +( -1344 2912 0 ) ( -1440 2912 0 ) ( -1440 2816 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1440 2816 16 ) ( -1440 2912 16 ) ( -1344 2912 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1400 2896 0 ) ( -1400 2912 0 ) ( -1400 2904 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1384 2912 0 ) ( -1384 2904 0 ) ( -1384 2908 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1384 2712 264 ) ( -1400 2712 264 ) ( -1384 2712 8 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1400 2600 264 ) ( -1384 2600 264 ) ( -1400 2600 8 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2640 +{ +( -1344 2912 0 ) ( -1440 2912 0 ) ( -1440 2816 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1440 2816 16 ) ( -1440 2912 16 ) ( -1344 2912 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1432 2496 16 ) ( -1336 2496 16 ) ( -1336 2496 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1400 2896 0 ) ( -1400 2912 0 ) ( -1400 2904 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1384 2912 0 ) ( -1384 2904 0 ) ( -1384 2908 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1384 2584 264 ) ( -1400 2584 264 ) ( -1384 2584 8 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2641 +{ +( -1384 2600 0 ) ( -1400 2600 0 ) ( -1400 2584 0 ) common/li_sr_v27 8 -8 0 1 1 0 1 25000 +( -1400 2584 16 ) ( -1400 2600 16 ) ( -1384 2600 16 ) metals/mt_pv_m26y -8 0 0 1 1 0 0 0 +( -1400 2584 264 ) ( -1384 2584 264 ) ( -1384 2584 8 ) metals/mt_pv_m26y -8 0 0 1 1 0 0 0 +( -1384 2584 264 ) ( -1384 2600 264 ) ( -1384 2600 8 ) metals/mt_pv_m26y 24 0 0 1 1 0 0 0 +( -1384 2600 264 ) ( -1400 2600 264 ) ( -1400 2600 8 ) metals/mt_pv_m26y -8 0 0 1 1 0 0 0 +( -1400 2600 256 ) ( -1400 2584 256 ) ( -1400 2584 0 ) metals/mt_pv_m26y 24 0 0 1 1 0 0 0 +} +// brush 2642 +{ +( -1344 2912 0 ) ( -1440 2912 0 ) ( -1440 2816 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1440 2816 16 ) ( -1440 2912 16 ) ( -1344 2912 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1400 2896 0 ) ( -1400 2912 0 ) ( -1400 2904 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1384 2912 0 ) ( -1384 2904 0 ) ( -1384 2908 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1384 2840 264 ) ( -1400 2840 264 ) ( -1384 2840 8 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1400 2728 264 ) ( -1384 2728 264 ) ( -1400 2728 8 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2643 +{ +( -1384 2728 0 ) ( -1400 2728 0 ) ( -1400 2712 0 ) common/li_sr_v27 8 -8 0 1 1 0 1 23000 +( -1400 2712 16 ) ( -1400 2728 16 ) ( -1384 2728 16 ) metals/mt_pv_m26y -8 0 0 1 1 0 0 0 +( -1400 2712 264 ) ( -1384 2712 264 ) ( -1384 2712 8 ) metals/mt_pv_m26y -8 0 0 1 1 0 0 0 +( -1384 2712 264 ) ( -1384 2728 264 ) ( -1384 2728 8 ) metals/mt_pv_m26y 24 0 0 1 1 0 0 0 +( -1384 2728 264 ) ( -1400 2728 264 ) ( -1400 2728 8 ) metals/mt_pv_m26y -8 0 0 1 1 0 0 0 +( -1400 2728 256 ) ( -1400 2712 256 ) ( -1400 2712 0 ) metals/mt_pv_m26y 24 0 0 1 1 0 0 0 +} +// brush 2644 +{ +( -1344 2912 0 ) ( -1440 2912 0 ) ( -1440 2816 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1440 2816 16 ) ( -1440 2912 16 ) ( -1344 2912 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1344 2912 16 ) ( -1440 2912 16 ) ( -1440 2912 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1400 2896 0 ) ( -1400 2912 0 ) ( -1400 2904 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1384 2912 0 ) ( -1384 2904 0 ) ( -1384 2908 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1400 2856 264 ) ( -1384 2856 264 ) ( -1400 2856 8 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2645 +{ +( -1384 2856 0 ) ( -1400 2856 0 ) ( -1400 2840 0 ) common/li_sr_v27 8 -8 0 1 1 0 1 15000 +( -1400 2840 16 ) ( -1400 2856 16 ) ( -1384 2856 16 ) metals/mt_pv_m26y -8 0 0 1 1 0 0 0 +( -1400 2840 264 ) ( -1384 2840 264 ) ( -1384 2840 8 ) metals/mt_pv_m26y -8 0 0 1 1 0 0 0 +( -1384 2840 264 ) ( -1384 2856 264 ) ( -1384 2856 8 ) metals/mt_pv_m26y 24 0 0 1 1 0 0 0 +( -1384 2856 264 ) ( -1400 2856 264 ) ( -1400 2856 8 ) metals/mt_pv_m26y -8 0 0 1 1 0 0 0 +( -1400 2856 256 ) ( -1400 2840 256 ) ( -1400 2840 0 ) metals/mt_pv_m26y 24 0 0 1 1 0 0 0 +} +// brush 2646 +{ +( -1344 2912 0 ) ( -1440 2912 0 ) ( -1440 2816 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1440 2816 16 ) ( -1440 2912 16 ) ( -1344 2912 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1432 2496 16 ) ( -1336 2496 16 ) ( -1336 2496 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1344 2816 16 ) ( -1344 2912 16 ) ( -1344 2912 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1344 2912 16 ) ( -1440 2912 16 ) ( -1440 2912 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1384 2904 0 ) ( -1384 2912 0 ) ( -1384 2908 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2647 +{ +( -1344 2912 0 ) ( -1440 2912 0 ) ( -1440 2816 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1440 2816 16 ) ( -1440 2912 16 ) ( -1344 2912 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1432 2496 16 ) ( -1336 2496 16 ) ( -1336 2496 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1344 2912 16 ) ( -1440 2912 16 ) ( -1440 2912 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1440 2912 16 ) ( -1440 2816 16 ) ( -1440 2816 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1400 2912 0 ) ( -1400 2896 0 ) ( -1400 2904 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2648 +{ +( -1456 2816 0 ) ( -1456 2896 0 ) ( -1440 2896 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1456 2400 0 ) ( -1440 2400 0 ) ( -1440 2400 -128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1440 2816 0 ) ( -1440 2896 0 ) ( -1440 2896 -128 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1440 2896 0 ) ( -1456 2896 0 ) ( -1456 2896 -128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1456 2896 0 ) ( -1456 2816 0 ) ( -1456 2816 -128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1456 2824 -96 ) ( -1456 2816 -96 ) ( -1440 2820 -96 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2649 +{ +( -1440 2896 -128 ) ( -1456 2896 -128 ) ( -1456 2816 -128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1456 2400 0 ) ( -1440 2400 0 ) ( -1440 2400 -128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1440 2816 0 ) ( -1440 2896 0 ) ( -1440 2896 -128 ) floors/c_pv_m2 0 -1 0 1 1 0 0 0 +( -1440 2896 0 ) ( -1456 2896 0 ) ( -1456 2896 -128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1456 2896 0 ) ( -1456 2816 0 ) ( -1456 2816 -128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1456 2816 -96 ) ( -1456 2824 -96 ) ( -1440 2820 -96 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2650 +{ +( -1328 3008 -128 ) ( -1344 3008 -128 ) ( -1344 2816 -128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1344 2496 0 ) ( -1328 2496 0 ) ( -1328 2496 -128 ) floors/c_pv_m2 0 -1 0 1 1 0 0 0 +( -1328 2816 0 ) ( -1328 3008 0 ) ( -1328 3008 -128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1328 3008 0 ) ( -1344 3008 0 ) ( -1344 3008 -128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1344 2688 0 ) ( -1344 2496 0 ) ( -1344 2496 -128 ) floors/c_pv_m2 0 -1 0 1 1 0 0 0 +( -1344 2816 -96 ) ( -1344 2824 -96 ) ( -1328 2820 -96 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +} +// brush 2651 +{ +( -1896 2896 0 ) ( -1896 2912 0 ) ( -1728 2912 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1896 2896 -16 ) ( -1728 2896 -16 ) ( -1728 2896 -32 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( -1440 2896 -16 ) ( -1440 2912 -16 ) ( -1440 2912 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1728 2912 -16 ) ( -1896 2912 -16 ) ( -1896 2912 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1536 2896 -128 ) ( -1536 2912 -128 ) ( -1536 2904 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1536 2904 -96 ) ( -1536 2896 -96 ) ( -1440 2900 -96 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +} +// brush 2652 +{ +( -1728 2912 -128 ) ( -1896 2912 -128 ) ( -1896 2896 -128 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1896 2896 -16 ) ( -1728 2896 -16 ) ( -1728 2896 -32 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( -1440 2896 -16 ) ( -1440 2912 -16 ) ( -1440 2912 -32 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1728 2912 -16 ) ( -1896 2912 -16 ) ( -1896 2912 -32 ) floors/c_pv_m2 0 -1 0 1 1 0 0 0 +( -1536 2896 -128 ) ( -1536 2912 -128 ) ( -1536 2904 0 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( -1536 2896 -96 ) ( -1536 2904 -96 ) ( -1440 2900 -96 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +} +// brush 2653 +{ +( -1896 2896 0 ) ( -1896 2912 0 ) ( -1728 2912 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1896 2896 -16 ) ( -1728 2896 -16 ) ( -1728 2896 -32 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( -1728 2912 -16 ) ( -1896 2912 -16 ) ( -1896 2912 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1728 2896 -128 ) ( -1728 2912 -128 ) ( -1728 2904 -16 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( -1664 2912 -128 ) ( -1664 2896 -128 ) ( -1664 2904 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1728 2904 -96 ) ( -1728 2896 -96 ) ( -1664 2900 -96 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +} +// brush 2654 +{ +( -1728 2912 -128 ) ( -1896 2912 -128 ) ( -1896 2896 -128 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1896 2896 -16 ) ( -1728 2896 -16 ) ( -1728 2896 -32 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( -1728 2912 -16 ) ( -1896 2912 -16 ) ( -1896 2912 -32 ) floors/c_pv_m2 0 -1 0 1 1 0 0 0 +( -1728 2896 -128 ) ( -1728 2912 -128 ) ( -1728 2904 -16 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( -1664 2912 -128 ) ( -1664 2896 -128 ) ( -1664 2904 0 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( -1728 2896 -96 ) ( -1728 2904 -96 ) ( -1664 2900 -96 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +} +// brush 2655 +{ +( -1896 2896 -16 ) ( -1896 2912 -16 ) ( -1728 2912 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1896 2896 -16 ) ( -1728 2896 -16 ) ( -1728 2896 -32 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( -1728 2912 -16 ) ( -1896 2912 -16 ) ( -1896 2912 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1984 2920 -16 ) ( -1984 2904 -16 ) ( -1984 2904 -32 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( -1728 2912 -128 ) ( -1728 2896 -128 ) ( -1728 2904 -16 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( -1984 2904 -96 ) ( -1984 2896 -96 ) ( -1728 2900 -96 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +} +// brush 2656 +{ +( -1728 2912 -128 ) ( -1896 2912 -128 ) ( -1896 2896 -128 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1896 2896 -16 ) ( -1728 2896 -16 ) ( -1728 2896 -32 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( -1728 2912 -16 ) ( -1896 2912 -16 ) ( -1896 2912 -32 ) floors/c_pv_m2 0 -1 0 1 1 0 0 0 +( -1984 2920 -16 ) ( -1984 2904 -16 ) ( -1984 2904 -32 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( -1728 2912 -128 ) ( -1728 2896 -128 ) ( -1728 2904 -16 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( -1984 2896 -96 ) ( -1984 2904 -96 ) ( -1728 2900 -96 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +} +// brush 2657 +{ +( -1728 3200 -128 ) ( -2112 3200 -128 ) ( -2112 3008 -128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -2112 3008 128 ) ( -1728 3008 128 ) ( -1728 3008 0 ) floors/c_pv_m2 0 -1 0 1 1 0 0 0 +( -1344 3032 128 ) ( -1344 3224 128 ) ( -1344 3224 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1728 3136 128 ) ( -2112 3136 128 ) ( -2112 3136 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -2304 3000 0 ) ( -2304 3056 0 ) ( -2304 3028 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -2288 3008 -96 ) ( -2304 3008 -96 ) ( -2296 3136 -96 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2658 +{ +( -2112 3008 128 ) ( -1728 3008 128 ) ( -1728 3008 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1344 3032 128 ) ( -1344 3224 128 ) ( -1344 3224 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1728 3136 128 ) ( -2112 3136 128 ) ( -2112 3136 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -2304 3000 0 ) ( -2304 3056 0 ) ( -2304 3028 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1344 3008 0 ) ( -1352 3008 0 ) ( -1348 3136 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -2304 3008 -96 ) ( -2288 3008 -96 ) ( -2296 3136 -96 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2659 +{ +( -1590 2978 -128 ) ( -1612 2988 -128 ) ( -1618 2974 -128 ) bricks/b_mf_v2a 39 -101 -23 0.999816 1.000077 134217728 0 0 +( -1618 2974 -124 ) ( -1612 2988 -124 ) ( -1590 2978 -124 ) bricks/b_mf_v2a 39 -101 -23 1 1 134217728 67108864 0 +( -1616 2976 -112 ) ( -1594 2966 -112 ) ( -1594 2966 -128 ) bricks/b_mf_v2a 19 0 0 0.913452 1 134217728 0 0 +( -1596 2964 -112 ) ( -1590 2978 -112 ) ( -1590 2978 -128 ) bricks/b_mf_v2a -60 0 0 0.913574 1 134217728 0 0 +( -1590 2978 -112 ) ( -1612 2988 -112 ) ( -1612 2988 -128 ) bricks/b_mf_v2a 12 0 0 0.913696 1 134217728 0 0 +( -1612 2988 -112 ) ( -1618 2974 -112 ) ( -1618 2974 -128 ) bricks/b_mf_v2a -70 0 0 0.913818 1 134217728 0 0 +} +// brush 2660 +{ +( -1608 2968 -128 ) ( -1632 2968 -128 ) ( -1632 2952 -128 ) bricks/b_mf_v2a 8 24 0 1 1 134217728 0 0 +( -1632 2952 -124 ) ( -1632 2968 -124 ) ( -1608 2968 -124 ) bricks/b_mf_v2a 8 40 0 1 1 134217728 67108864 0 +( -1632 2952 -112 ) ( -1608 2952 -112 ) ( -1608 2952 -128 ) bricks/b_mf_v2a 8 0 0 1 1 134217728 0 0 +( -1608 2952 -112 ) ( -1608 2968 -112 ) ( -1608 2968 -128 ) bricks/b_mf_v2a -24 0 0 1 1 134217728 0 0 +( -1608 2968 -112 ) ( -1632 2968 -112 ) ( -1632 2968 -128 ) bricks/b_mf_v2a 8 0 0 1 1 134217728 0 0 +( -1632 2968 -116 ) ( -1632 2952 -116 ) ( -1632 2952 -132 ) bricks/b_mf_v2a -24 0 0 1 1 134217728 0 0 +} +// brush 2661 +{ +( -1632 2944 -128 ) ( -1656 2944 -128 ) ( -1656 2928 -128 ) bricks/b_mf_v2a 32 0 0 1 1 134217728 0 0 +( -1656 2944 -126 ) ( -1638 2944 -126 ) ( -1638 2932 -124 ) bricks/b_mf_v2a 32 16 0 1 1 134217728 67108864 0 +( -1654 2932 -112 ) ( -1630 2932 -112 ) ( -1630 2932 -128 ) bricks/b_mf_v2a 32 0 0 1 1 134217728 0 0 +( -1638 2928 -116 ) ( -1638 2944 -116 ) ( -1638 2944 -132 ) bricks/b_mf_v2a 0 0 0 1 1 134217728 0 0 +( -1638 2944 -126 ) ( -1656 2944 -126 ) ( -1656 2944 -128 ) bricks/b_mf_v2a 32 0 0 1 1 134217728 0 0 +( -1656 2944 -112 ) ( -1656 2928 -112 ) ( -1656 2928 -128 ) bricks/b_mf_v2a 0 0 0 1 1 134217728 0 0 +} +// brush 2662 +{ +( -1571 2947 -128 ) ( -1594 2940 -128 ) ( -1589 2925 -128 ) bricks/b_mf_v2a -6 65 15 1.000157 0.999922 134217728 0 0 +( -1589 2925 -124 ) ( -1594 2940 -124 ) ( -1571 2947 -124 ) bricks/b_mf_v2a 9 65 15 1 1 134217728 67108864 0 +( -1589 2927 -112 ) ( -1566 2934 -112 ) ( -1566 2934 -128 ) bricks/b_mf_v2a 29 0 0 0.961182 1 134217728 0 0 +( -1572 2930 -112 ) ( -1577 2945 -112 ) ( -1577 2945 -128 ) bricks/b_mf_v2a -121 0 0 0.961426 1 134217728 0 0 +( -1571 2947 -116 ) ( -1594 2940 -116 ) ( -1594 2940 -132 ) bricks/b_mf_v2a 33 0 0 0.961304 1 134217728 0 0 +( -1594 2940 -116 ) ( -1589 2925 -116 ) ( -1589 2925 -132 ) bricks/b_mf_v2a -114 0 0 0.961182 1 134217728 0 0 +} +// brush 2663 +{ +( -1599 2931 -128 ) ( -1612 2950 -128 ) ( -1625 2941 -128 ) bricks/b_mf_v2a 59 -71 -56 1.000025 0.999450 134217728 0 0 +( -1614 2924 -126 ) ( -1624 2942 -126 ) ( -1614 2950 -124 ) bricks/b_mf_v2a 59 -103 -56 1 1 134217728 67108864 0 +( -1624 2942 -126 ) ( -1614 2924 -126 ) ( -1614 2924 -128 ) bricks/b_mf_v2a -123 0 -180 0.829102 -1 134217728 0 0 +( -1612 2926 -112 ) ( -1599 2935 -112 ) ( -1599 2935 -128 ) bricks/b_mf_v2a -119 0 0 0.829102 1 134217728 0 0 +( -1601 2931 -112 ) ( -1614 2950 -112 ) ( -1614 2950 -128 ) bricks/b_mf_v2a -113 0 -180 0.829102 -1 134217728 0 0 +( -1612 2950 -112 ) ( -1625 2941 -112 ) ( -1625 2941 -128 ) bricks/b_mf_v2a -107 0 0 0.829468 1 134217728 0 0 +} +// brush 2664 +{ +( -1536 2908 -128 ) ( -1664 2908 -128 ) ( -1664 2896 -128 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1896 2880 0 ) ( -1896 2896 0 ) ( -1728 2896 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1896 2896 -16 ) ( -1728 2896 -16 ) ( -1728 2896 -32 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( -1664 2908 -128 ) ( -1536 2908 -128 ) ( -1536 2904 0 ) bricks/c_sr_m3a -2 14 0 1 1 0 0 0 +( -1664 2880 -128 ) ( -1664 2896 -128 ) ( -1664 2888 0 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( -1536 2896 -128 ) ( -1536 2880 -128 ) ( -1536 2888 0 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +} +// brush 2665 +{ +( -1568 2912 -16 ) ( -1600 2912 -16 ) ( -1600 2896 -16 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1600 2896 0 ) ( -1600 2912 0 ) ( -1568 2912 0 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1600 2904 0 ) ( -1568 2904 0 ) ( -1568 2904 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1568 2896 0 ) ( -1568 2912 0 ) ( -1568 2912 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1568 2912 0 ) ( -1600 2912 0 ) ( -1600 2912 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1600 2912 0 ) ( -1600 2896 0 ) ( -1600 2896 -32 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +} +// brush 2666 +{ +( -1712 2912 -32 ) ( -1880 2912 -32 ) ( -1880 2896 -32 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1880 2896 0 ) ( -1880 2912 0 ) ( -1712 2912 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1880 2904 80 ) ( -1712 2904 80 ) ( -1712 2904 64 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( -1712 2912 80 ) ( -1880 2912 80 ) ( -1880 2912 64 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1568 2896 -32 ) ( -1568 2912 -32 ) ( -1568 2904 96 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1536 2912 -32 ) ( -1536 2896 -32 ) ( -1536 2904 96 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +} +// brush 2667 +{ +( -1712 2912 -64 ) ( -1880 2912 -64 ) ( -1880 2896 -64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1880 2896 -48 ) ( -1880 2912 -48 ) ( -1712 2912 -48 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1880 2904 48 ) ( -1712 2904 48 ) ( -1712 2904 32 ) bricks/s_sr_m12ab 0 -16 0 1 1 134217728 0 0 +( -1712 2912 48 ) ( -1880 2912 48 ) ( -1880 2912 32 ) bricks/b_mf_v2a 0 0 0 1 1 134217728 0 0 +( -1544 2896 -64 ) ( -1544 2912 -64 ) ( -1544 2904 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1536 2912 -64 ) ( -1536 2896 -64 ) ( -1536 2904 64 ) bricks/s_sr_m12ab 0 -16 0 1 1 134217728 0 0 +} +// brush 2668 +{ +( -1784 2912 -32 ) ( -1952 2912 -32 ) ( -1952 2896 -32 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1952 2896 0 ) ( -1952 2912 0 ) ( -1784 2912 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1952 2904 80 ) ( -1784 2904 80 ) ( -1784 2904 64 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( -1784 2912 80 ) ( -1952 2912 80 ) ( -1952 2912 64 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -1664 2896 -32 ) ( -1664 2912 -32 ) ( -1664 2904 96 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( -1600 2912 -32 ) ( -1600 2896 -32 ) ( -1600 2904 96 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +} +// brush 2669 +{ +( -1784 2912 -48 ) ( -1952 2912 -48 ) ( -1952 2896 -48 ) bricks/s_sr_m12ab 0 0 0 1 1 134217728 0 0 +( -1952 2896 -32 ) ( -1952 2912 -32 ) ( -1784 2912 -32 ) bricks/s_sr_m12ab 0 0 0 1 1 134217728 0 0 +( -1952 2904 64 ) ( -1784 2904 64 ) ( -1784 2904 48 ) bricks/s_sr_m12ab 0 -16 0 1 1 134217728 0 0 +( -1784 2912 64 ) ( -1952 2912 64 ) ( -1952 2912 48 ) bricks/b_mf_v2a 0 0 0 1 1 134217728 0 0 +( -1664 2896 -48 ) ( -1664 2912 -48 ) ( -1664 2904 80 ) bricks/s_sr_m12ab 0 -16 0 1 1 134217728 0 0 +( -1624 2912 -48 ) ( -1624 2896 -48 ) ( -1624 2904 80 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +} +// brush 2670 +{ +( -1784 2912 -64 ) ( -1952 2912 -64 ) ( -1952 2896 -64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1952 2896 -48 ) ( -1952 2912 -48 ) ( -1784 2912 -48 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1952 2904 48 ) ( -1784 2904 48 ) ( -1784 2904 32 ) bricks/s_sr_m12ab 0 -16 0 1 1 134217728 0 0 +( -1784 2912 48 ) ( -1952 2912 48 ) ( -1952 2912 32 ) bricks/b_mf_v2a 0 0 0 1 1 134217728 0 0 +( -1664 2896 -64 ) ( -1664 2912 -64 ) ( -1664 2904 64 ) bricks/s_sr_m12ab 0 -16 0 1 1 134217728 0 0 +( -1600 2912 -64 ) ( -1600 2896 -64 ) ( -1600 2904 64 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +} +// brush 2671 +{ +( -1784 2912 -80 ) ( -1952 2912 -80 ) ( -1952 2896 -80 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1952 2896 -64 ) ( -1952 2912 -64 ) ( -1784 2912 -64 ) bricks/s_sr_m12ab 0 0 0 1 1 134217728 0 0 +( -1952 2904 32 ) ( -1784 2904 32 ) ( -1784 2904 16 ) bricks/s_sr_m12ab 0 -16 0 1 1 134217728 0 0 +( -1784 2912 32 ) ( -1952 2912 32 ) ( -1952 2912 16 ) bricks/b_mf_v2a 0 0 0 1 1 134217728 0 0 +( -1664 2896 -80 ) ( -1664 2912 -80 ) ( -1664 2904 48 ) bricks/s_sr_m12ab 0 -16 0 1 1 134217728 0 0 +( -1632 2912 -80 ) ( -1632 2896 -80 ) ( -1632 2904 48 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +} +// brush 2672 +{ +( -1712 2912 -96 ) ( -1880 2912 -96 ) ( -1880 2896 -96 ) bricks/s_sr_m12ab 0 0 0 1 1 134217728 0 0 +( -1880 2896 -80 ) ( -1880 2912 -80 ) ( -1712 2912 -80 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1880 2904 16 ) ( -1712 2904 16 ) ( -1712 2904 0 ) bricks/s_sr_m12ab 0 -16 0 1 1 134217728 0 0 +( -1712 2912 16 ) ( -1880 2912 16 ) ( -1880 2912 0 ) bricks/b_mf_v2a 0 0 0 1 1 134217728 0 0 +( -1568 2896 -96 ) ( -1568 2912 -96 ) ( -1568 2904 32 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1536 2912 -96 ) ( -1536 2896 -96 ) ( -1536 2904 32 ) bricks/s_sr_m12ab 0 -16 0 1 1 134217728 0 0 +} +// brush 2673 +{ +( -1784 2912 -112 ) ( -1952 2912 -112 ) ( -1952 2896 -112 ) bricks/s_sr_m12ab 0 0 0 1 1 134217728 0 0 +( -1952 2896 -96 ) ( -1952 2912 -96 ) ( -1784 2912 -96 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +( -1952 2904 0 ) ( -1784 2904 0 ) ( -1784 2904 -16 ) bricks/s_sr_m12ab 0 -16 0 1 1 134217728 0 0 +( -1784 2912 0 ) ( -1952 2912 0 ) ( -1952 2912 -16 ) floors/c_pv_m2 0 -1 0 1 1 134217728 0 0 +( -1664 2896 -112 ) ( -1664 2912 -112 ) ( -1664 2904 16 ) bricks/s_sr_m12ab 0 -16 0 1 1 134217728 0 0 +( -1632 2912 -112 ) ( -1632 2896 -112 ) ( -1632 2904 16 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 0 0 +} +// brush 2674 +{ +( -1728 2912 -112 ) ( -1896 2912 -112 ) ( -1896 2896 -112 ) bricks/s_sr_m12ab 0 0 0 1 1 134217728 0 0 +( -1896 2896 -96 ) ( -1896 2912 -96 ) ( -1728 2912 -96 ) floors/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -1896 2904 0 ) ( -1728 2904 0 ) ( -1728 2904 -16 ) bricks/s_sr_m12ab 0 -16 0 1 1 134217728 0 0 +( -1728 2912 0 ) ( -1896 2912 0 ) ( -1896 2912 -16 ) floors/c_pv_m2 0 -1 0 1 1 134217728 0 0 +( -1592 2896 -112 ) ( -1592 2912 -112 ) ( -1592 2904 16 ) floors/c_pv_m2 0 0 0 1 1 134217728 0 0 +( -1536 2912 -112 ) ( -1536 2896 -112 ) ( -1536 2904 16 ) bricks/s_sr_m12ab 0 -16 0 1 1 134217728 0 0 +} +// brush 2675 +{ +( -1728 2912 -128 ) ( -1896 2912 -128 ) ( -1896 2896 -128 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1896 2896 -112 ) ( -1896 2912 -112 ) ( -1728 2912 -112 ) floors/c_pv_m2 0 0 0 1 1 0 0 0 +( -1896 2904 -16 ) ( -1728 2904 -16 ) ( -1728 2904 -32 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( -1728 2912 -16 ) ( -1896 2912 -16 ) ( -1896 2912 -32 ) floors/c_pv_m2 0 -1 0 1 1 0 0 0 +( -1664 2896 -128 ) ( -1664 2912 -128 ) ( -1664 2904 0 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +( -1536 2912 -128 ) ( -1536 2896 -128 ) ( -1536 2904 0 ) bricks/s_sr_m12ab 0 -16 0 1 1 0 0 0 +} +// brush 2676 +{ +( -1948 2858 0 ) ( -1962 2864 0 ) ( -1988 2806 0 ) wood/wd_sr_m3a 60 -14 -24 1.000114 1.000003 134217728 0 0 +( -1988 2806 4 ) ( -1962 2864 4 ) ( -1948 2858 4 ) wood/wd_sr_m3a 60 -14 -24 1.000114 1.000003 134217728 0 0 +( -1988 2806 128 ) ( -1974 2800 128 ) ( -1974 2800 0 ) wood/wd_sr_m3a 51 0 0 0.912598 1 134217728 0 0 +( -1968 2816 0 ) ( -1968 2816 8 ) ( -1944 2856 8 ) wood/wd_sr_m3a -16 0 0 0.913574 1 134217728 0 0 +( -1948 2858 128 ) ( -1962 2864 128 ) ( -1962 2864 0 ) wood/wd_sr_m3a 23 0 0 0.913086 1 134217728 0 0 +( -1962 2864 128 ) ( -1988 2806 128 ) ( -1988 2806 0 ) wood/wd_sr_m3a -23 0 0 0.913818 1 134217728 0 0 +( -1968 2816 8 ) ( -1968 2816 0 ) ( -1984 2800 0 ) wood/wd_sr_m3a -23 0 0 0.913818 1 134217728 0 0 +} +// brush 2677 +{ +( -2112 2624 32 ) ( -2112 2816 32 ) ( -2112 2816 0 ) common/li_sr_v27 16 8 0 1 1 0 1 30000 +( -2128 2816 32 ) ( -2128 2624 32 ) ( -2128 2624 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -2128 2880 8 ) ( -2120 2880 8 ) ( -2124 3008 8 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -2112 2880 24 ) ( -2128 2880 24 ) ( -2120 3008 24 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -2128 2928 8 ) ( -2112 2928 8 ) ( -2120 2928 24 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -2112 2912 8 ) ( -2128 2912 8 ) ( -2120 2912 24 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2678 +{ +( -2112 2624 32 ) ( -2112 2816 32 ) ( -2112 2816 0 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +( -2128 2816 32 ) ( -2128 2624 32 ) ( -2128 2624 0 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +( -2112 2880 0 ) ( -2128 2880 0 ) ( -2120 2880 128 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +( -2128 2880 8 ) ( -2120 2880 8 ) ( -2124 3008 8 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +( -2112 2880 24 ) ( -2128 2880 24 ) ( -2120 3008 24 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +( -2128 2912 8 ) ( -2112 2912 8 ) ( -2120 2912 24 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +} +// brush 2679 +{ +( -2112 2624 32 ) ( -2112 2816 32 ) ( -2112 2816 0 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +( -2128 2816 32 ) ( -2128 2624 32 ) ( -2128 2624 0 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +( -2152 3008 0 ) ( -2088 3008 0 ) ( -2120 3008 128 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +( -2128 2880 8 ) ( -2120 2880 8 ) ( -2124 3008 8 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +( -2112 2880 24 ) ( -2128 2880 24 ) ( -2120 3008 24 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +( -2112 2928 8 ) ( -2128 2928 8 ) ( -2120 2928 24 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +} +// brush 2680 +{ +( -2128 2624 128 ) ( -2128 2816 128 ) ( -2112 2816 128 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +( -2112 2624 32 ) ( -2112 2816 32 ) ( -2112 2816 0 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +( -2128 2816 32 ) ( -2128 2624 32 ) ( -2128 2624 0 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +( -2152 3008 0 ) ( -2088 3008 0 ) ( -2120 3008 128 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +( -2112 2880 0 ) ( -2128 2880 0 ) ( -2120 2880 128 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +( -2128 2880 24 ) ( -2112 2880 24 ) ( -2120 3008 24 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +} +// brush 2681 +{ +( -2112 2624 32 ) ( -2112 2816 32 ) ( -2112 2816 0 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +( -2128 2816 32 ) ( -2128 2624 32 ) ( -2128 2624 0 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +( -2152 3008 0 ) ( -2088 3008 0 ) ( -2120 3008 128 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +( -2136 2496 0 ) ( -2104 2496 0 ) ( -2120 3008 0 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +( -2112 2880 0 ) ( -2128 2880 0 ) ( -2120 2880 128 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +( -2120 2880 8 ) ( -2128 2880 8 ) ( -2124 3008 8 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +} +// brush 2682 +{ +( -2128 2624 128 ) ( -2128 2816 128 ) ( -2112 2816 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -2128 2496 32 ) ( -2112 2496 32 ) ( -2112 2496 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -2112 2624 32 ) ( -2112 2816 32 ) ( -2112 2816 0 ) bricks/b_sr_20ag 0 0 0 -1 1 0 0 0 +( -2128 2816 32 ) ( -2128 2624 32 ) ( -2128 2624 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -2136 2496 0 ) ( -2104 2496 0 ) ( -2120 3008 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -2128 2880 0 ) ( -2112 2880 0 ) ( -2120 2880 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2683 +{ +( -2048 2896 0 ) ( -2112 2896 0 ) ( -2112 2832 0 ) props/box_sr_m6 0 -32 0 0.500000 0.500000 0 134217728 0 +( -2112 2832 32 ) ( -2112 2896 32 ) ( -2048 2896 32 ) props/box_sr_m6 0 -32 0 0.500000 0.500000 0 134217728 0 +( -2112 2832 64 ) ( -2048 2832 64 ) ( -2048 2832 0 ) props/box_sr_m6 0 0 0 0.500000 0.500000 0 134217728 0 +( -2080 2832 64 ) ( -2080 2896 64 ) ( -2080 2896 0 ) props/box_sr_m6 32 0 0 0.500000 0.500000 0 134217728 0 +( -2048 2864 64 ) ( -2112 2864 64 ) ( -2112 2864 0 ) props/box_sr_m6 0 0 0 0.500000 0.500000 0 134217728 0 +( -2112 2896 64 ) ( -2112 2832 64 ) ( -2112 2832 0 ) props/box_sr_m6 32 0 0 0.500000 0.500000 0 134217728 0 +} +// brush 2684 +{ +( -2048 2832 0 ) ( -2112 2832 0 ) ( -2112 2768 0 ) props/box_sr_m5 0 -48 0 1 1 0 134217728 0 +( -2112 2768 64 ) ( -2112 2832 64 ) ( -2048 2832 64 ) props/box_sr_m5 0 -48 0 1 1 0 134217728 0 +( -2112 2768 128 ) ( -2048 2768 128 ) ( -2048 2768 0 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( -2048 2768 128 ) ( -2048 2832 128 ) ( -2048 2832 0 ) props/box_sr_m5 48 0 0 1 1 0 134217728 0 +( -2048 2832 128 ) ( -2112 2832 128 ) ( -2112 2832 0 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( -2112 2832 128 ) ( -2112 2768 128 ) ( -2112 2768 0 ) props/box_sr_m5 48 0 0 1 1 0 134217728 0 +} +// brush 2685 +{ +( -1784 2964 -4 ) ( -1784 2956 -4 ) ( -1736 2956 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1784 2956 4 ) ( -1784 2964 4 ) ( -1736 2964 4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1784 2956 4 ) ( -1736 2956 4 ) ( -1736 2956 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1736 2956 4 ) ( -1736 2964 4 ) ( -1736 2964 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1736 2964 4 ) ( -1784 2964 4 ) ( -1784 2964 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1756 2964 4 ) ( -1756 2956 4 ) ( -1756 2956 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2686 +{ +( -1784 2988 -6 ) ( -1784 2980 -6 ) ( -1736 2980 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1784 2980 2 ) ( -1784 2988 2 ) ( -1736 2988 4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1784 2980 4 ) ( -1736 2980 4 ) ( -1736 2980 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1736 2980 4 ) ( -1736 2988 4 ) ( -1736 2988 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1736 2988 4 ) ( -1784 2988 4 ) ( -1784 2988 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1784 2988 2 ) ( -1784 2980 2 ) ( -1784 2980 -6 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2687 +{ +( -1784 2942 -6 ) ( -1784 2934 -6 ) ( -1736 2932 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1784 2932 2 ) ( -1784 2940 2 ) ( -1736 2940 4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1784 2932 4 ) ( -1736 2932 4 ) ( -1736 2932 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1736 2932 4 ) ( -1736 2940 4 ) ( -1736 2940 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1736 2940 4 ) ( -1784 2940 4 ) ( -1784 2940 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1784 2940 2 ) ( -1784 2932 2 ) ( -1784 2932 -6 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2688 +{ +( -1736 2920 -4 ) ( -1784 2920 -4 ) ( -1784 2912 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1784 2912 4 ) ( -1784 2920 4 ) ( -1736 2920 4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1784 2912 4 ) ( -1736 2912 4 ) ( -1736 2912 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1736 2912 4 ) ( -1736 2920 4 ) ( -1736 2920 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1736 2920 4 ) ( -1784 2920 4 ) ( -1784 2920 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1784 2920 4 ) ( -1784 2912 4 ) ( -1784 2912 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2689 +{ +( -1784 3000 -6 ) ( -1792 3000 -6 ) ( -1792 2912 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1792 3000 2 ) ( -1784 3000 2 ) ( -1784 2912 4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1792 2912 4 ) ( -1784 2912 4 ) ( -1784 2912 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1784 2912 4 ) ( -1784 3000 4 ) ( -1784 3000 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1784 3000 2 ) ( -1792 3000 2 ) ( -1792 3000 -6 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1792 3000 4 ) ( -1792 2912 4 ) ( -1792 2912 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2690 +{ +( -1792 3008 -6 ) ( -1792 3000 -6 ) ( -1736 3000 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1792 3000 2 ) ( -1792 3008 2 ) ( -1736 3008 4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1792 3000 4 ) ( -1736 3000 4 ) ( -1736 3000 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1736 3000 4 ) ( -1736 3008 4 ) ( -1736 3008 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1736 3008 4 ) ( -1792 3008 4 ) ( -1792 3008 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1792 3008 2 ) ( -1792 3000 2 ) ( -1792 3000 -6 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2691 +{ +( -1728 3008 -4 ) ( -1736 3008 -4 ) ( -1736 2976 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1736 2976 4 ) ( -1736 3008 4 ) ( -1728 3008 4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1736 2912 124 ) ( -1728 2912 124 ) ( -1728 2912 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1728 2976 124 ) ( -1728 3008 124 ) ( -1728 3008 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1728 3008 124 ) ( -1736 3008 124 ) ( -1736 3008 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1736 3008 124 ) ( -1736 2976 124 ) ( -1736 2976 -4 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2692 +{ +( -1624 3008 0 ) ( -1712 3008 0 ) ( -1712 2912 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1712 2912 16 ) ( -1712 3008 16 ) ( -1624 3008 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1712 2968 0 ) ( -1696 2968 0 ) ( -1704 2968 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1688 2952 0 ) ( -1712 2952 0 ) ( -1700 2952 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1528 2968 264 ) ( -1528 2952 264 ) ( -1528 2968 8 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1400 2952 256 ) ( -1400 2968 256 ) ( -1400 2952 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2693 +{ +( -1624 3008 0 ) ( -1712 3008 0 ) ( -1712 2912 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1712 2912 16 ) ( -1712 3008 16 ) ( -1624 3008 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1344 2896 128 ) ( -1344 2992 128 ) ( -1344 2992 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1712 2968 0 ) ( -1696 2968 0 ) ( -1704 2968 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1688 2952 0 ) ( -1712 2952 0 ) ( -1700 2952 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1384 2968 264 ) ( -1384 2952 264 ) ( -1384 2968 8 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2694 +{ +( -1624 3008 0 ) ( -1712 3008 0 ) ( -1712 2912 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1712 2912 16 ) ( -1712 3008 16 ) ( -1624 3008 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1712 2968 0 ) ( -1696 2968 0 ) ( -1704 2968 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1688 2952 0 ) ( -1712 2952 0 ) ( -1700 2952 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1656 2968 264 ) ( -1656 2952 264 ) ( -1656 2968 8 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1544 2952 256 ) ( -1544 2968 256 ) ( -1544 2952 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2695 +{ +( -1624 3008 0 ) ( -1712 3008 0 ) ( -1712 2912 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1712 2912 16 ) ( -1712 3008 16 ) ( -1624 3008 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1712 3008 128 ) ( -1712 2912 128 ) ( -1712 2912 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1712 2968 0 ) ( -1696 2968 0 ) ( -1704 2968 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1688 2952 0 ) ( -1712 2952 0 ) ( -1700 2952 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1672 2952 264 ) ( -1672 2968 264 ) ( -1672 2952 8 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2696 +{ +( -1384 2968 0 ) ( -1400 2968 0 ) ( -1400 2952 0 ) common/li_sr_v27 8 8 0 1 1 0 1 13000 +( -1400 2952 16 ) ( -1400 2968 16 ) ( -1384 2968 16 ) metals/mt_pv_m26y -8 16 0 1 1 0 0 0 +( -1400 2952 264 ) ( -1384 2952 264 ) ( -1384 2952 8 ) metals/mt_pv_m26y -8 0 0 1 1 0 0 0 +( -1384 2952 264 ) ( -1384 2968 264 ) ( -1384 2968 8 ) metals/mt_pv_m26y 8 0 0 1 1 0 0 0 +( -1384 2968 264 ) ( -1400 2968 264 ) ( -1400 2968 8 ) metals/mt_pv_m26y -8 0 0 1 1 0 0 0 +( -1400 2968 256 ) ( -1400 2952 256 ) ( -1400 2952 0 ) metals/mt_pv_m26y 8 0 0 1 1 0 0 0 +} +// brush 2697 +{ +( -1528 2968 0 ) ( -1544 2968 0 ) ( -1544 2952 0 ) common/li_sr_v27 8 8 0 1 1 0 1 25000 +( -1544 2952 16 ) ( -1544 2968 16 ) ( -1528 2968 16 ) metals/mt_pv_m26y -24 16 0 1 1 0 0 0 +( -1544 2952 264 ) ( -1528 2952 264 ) ( -1528 2952 8 ) metals/mt_pv_m26y -24 0 0 1 1 0 0 0 +( -1528 2952 264 ) ( -1528 2968 264 ) ( -1528 2968 8 ) metals/mt_pv_m26y 8 0 0 1 1 0 0 0 +( -1528 2968 264 ) ( -1544 2968 264 ) ( -1544 2968 8 ) metals/mt_pv_m26y -24 0 0 1 1 0 0 0 +( -1544 2968 256 ) ( -1544 2952 256 ) ( -1544 2952 0 ) metals/mt_pv_m26y 8 0 0 1 1 0 0 0 +} +// brush 2698 +{ +( -1624 3008 0 ) ( -1712 3008 0 ) ( -1712 2912 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1712 2912 16 ) ( -1712 3008 16 ) ( -1624 3008 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1712 2912 128 ) ( -1624 2912 128 ) ( -1624 2912 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1344 2896 128 ) ( -1344 2992 128 ) ( -1344 2992 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1712 3008 128 ) ( -1712 2912 128 ) ( -1712 2912 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1712 2952 0 ) ( -1688 2952 0 ) ( -1700 2952 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2699 +{ +( -1624 3008 0 ) ( -1712 3008 0 ) ( -1712 2912 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1712 2912 16 ) ( -1712 3008 16 ) ( -1624 3008 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1344 2896 128 ) ( -1344 2992 128 ) ( -1344 2992 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1624 3008 128 ) ( -1712 3008 128 ) ( -1712 3008 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1712 3008 128 ) ( -1712 2912 128 ) ( -1712 2912 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1696 2968 0 ) ( -1712 2968 0 ) ( -1704 2968 16 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2700 +{ +( -1656 2968 0 ) ( -1672 2968 0 ) ( -1672 2952 0 ) common/li_sr_v27 8 8 0 1 1 0 1 20000 +( -1672 2952 16 ) ( -1672 2968 16 ) ( -1656 2968 16 ) metals/mt_pv_m26y -24 16 0 1 1 0 0 0 +( -1672 2952 264 ) ( -1656 2952 264 ) ( -1656 2952 8 ) metals/mt_pv_m26y -24 0 0 1 1 0 0 0 +( -1656 2952 264 ) ( -1656 2968 264 ) ( -1656 2968 8 ) metals/mt_pv_m26y 8 0 0 1 1 0 0 0 +( -1656 2968 264 ) ( -1672 2968 264 ) ( -1672 2968 8 ) metals/mt_pv_m26y -24 0 0 1 1 0 0 0 +( -1672 2968 264 ) ( -1672 2952 264 ) ( -1672 2952 8 ) metals/mt_pv_m26y 8 0 0 1 1 0 0 0 +} +// brush 2701 +{ +( -2112 3008 128 ) ( -1728 3008 128 ) ( -1728 3008 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1344 3032 128 ) ( -1344 3224 128 ) ( -1344 3224 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1728 3136 128 ) ( -2112 3136 128 ) ( -2112 3136 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -2264 3008 128 ) ( -2304 3008 128 ) ( -2284 3136 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -2304 3000 0 ) ( -2304 3056 0 ) ( -2304 3028 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1352 3008 0 ) ( -1344 3008 0 ) ( -1348 3136 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2702 +{ +( -1728 3008 -144 ) ( -1760 3008 -144 ) ( -1760 2912 -144 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1760 2912 -128 ) ( -1760 3008 -128 ) ( -1728 3008 -128 ) bricks/c_sr_m2 144 -32 0 1 1 0 67108864 0 +( -1760 2912 -128 ) ( -1728 2912 -128 ) ( -1728 2912 -144 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1344 2888 -128 ) ( -1344 2984 -128 ) ( -1344 2984 -144 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1728 3008 -128 ) ( -1760 3008 -128 ) ( -1760 3008 -144 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1760 3008 -128 ) ( -1760 2912 -128 ) ( -1760 2912 -144 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +} +// brush 2703 +{ +( -1760 3008 -128 ) ( -1792 3008 -128 ) ( -1792 2912 -128 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1792 2912 -112 ) ( -1792 3008 -112 ) ( -1760 3008 -112 ) bricks/c_sr_m2 -8 96 90 1 1 0 0 0 +( -1792 2912 -112 ) ( -1760 2912 -112 ) ( -1760 2912 -128 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1760 2912 -112 ) ( -1760 3008 -112 ) ( -1760 3008 -128 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1760 3008 -112 ) ( -1792 3008 -112 ) ( -1792 3008 -128 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1792 3008 -112 ) ( -1792 2912 -112 ) ( -1792 2912 -128 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +} +// brush 2704 +{ +( -1792 3008 -112 ) ( -1824 3008 -112 ) ( -1824 2912 -112 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1824 2912 -96 ) ( -1824 3008 -96 ) ( -1792 3008 -96 ) bricks/c_sr_m2 -8 96 90 1 1 0 0 0 +( -1824 2912 -96 ) ( -1792 2912 -96 ) ( -1792 2912 -112 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1792 2912 -96 ) ( -1792 3008 -96 ) ( -1792 3008 -112 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1792 3008 -96 ) ( -1824 3008 -96 ) ( -1824 3008 -112 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1824 3008 -96 ) ( -1824 2912 -96 ) ( -1824 2912 -112 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +} +// brush 2705 +{ +( -1824 3008 -96 ) ( -1856 3008 -96 ) ( -1856 2912 -96 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1856 2912 -80 ) ( -1856 3008 -80 ) ( -1824 3008 -80 ) bricks/c_sr_m2 -8 96 90 1 1 0 0 0 +( -1856 2912 -80 ) ( -1824 2912 -80 ) ( -1824 2912 -96 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1824 2912 -80 ) ( -1824 3008 -80 ) ( -1824 3008 -96 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1824 3008 -80 ) ( -1856 3008 -80 ) ( -1856 3008 -96 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1856 3008 -80 ) ( -1856 2912 -80 ) ( -1856 2912 -96 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +} +// brush 2706 +{ +( -1856 3008 -80 ) ( -1888 3008 -80 ) ( -1888 2912 -80 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1888 2912 -64 ) ( -1888 3008 -64 ) ( -1856 3008 -64 ) bricks/c_sr_m2 -8 96 90 1 1 0 0 0 +( -1888 2912 -64 ) ( -1856 2912 -64 ) ( -1856 2912 -80 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1856 2912 -64 ) ( -1856 3008 -64 ) ( -1856 3008 -80 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1856 3008 -64 ) ( -1888 3008 -64 ) ( -1888 3008 -80 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1888 3008 -64 ) ( -1888 2912 -64 ) ( -1888 2912 -80 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +} +// brush 2707 +{ +( -1888 3008 -64 ) ( -1920 3008 -64 ) ( -1920 2912 -64 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1920 2912 -48 ) ( -1920 3008 -48 ) ( -1888 3008 -48 ) bricks/c_sr_m2 -8 72 0 1 1 0 0 0 +( -1920 2912 -48 ) ( -1888 2912 -48 ) ( -1888 2912 -64 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1888 2912 -48 ) ( -1888 3008 -48 ) ( -1888 3008 -64 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1888 3008 -48 ) ( -1920 3008 -48 ) ( -1920 3008 -64 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1920 3008 -48 ) ( -1920 2912 -48 ) ( -1920 2912 -64 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +} +// brush 2708 +{ +( -1920 3008 -48 ) ( -1952 3008 -48 ) ( -1952 2912 -48 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1952 2912 -32 ) ( -1952 3008 -32 ) ( -1920 3008 -32 ) bricks/c_sr_m2 -80 120 90 1 1 0 0 0 +( -1952 2912 -32 ) ( -1920 2912 -32 ) ( -1920 2912 -48 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1920 2912 -32 ) ( -1920 3008 -32 ) ( -1920 3008 -48 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1920 3008 -32 ) ( -1952 3008 -32 ) ( -1952 3008 -48 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1952 3008 -32 ) ( -1952 2912 -32 ) ( -1952 2912 -48 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +} +// brush 2709 +{ +( -1952 3008 -32 ) ( -1984 3008 -32 ) ( -1984 2912 -32 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1984 2912 -16 ) ( -1984 3008 -16 ) ( -1952 3008 -16 ) bricks/c_sr_m2 -8 24 90 1 1 0 0 0 +( -1984 2912 -16 ) ( -1952 2912 -16 ) ( -1952 2912 -32 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1952 2912 -16 ) ( -1952 3008 -16 ) ( -1952 3008 -32 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1952 3008 -16 ) ( -1984 3008 -16 ) ( -1984 3008 -32 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +( -1984 3008 -16 ) ( -1984 2912 -16 ) ( -1984 2912 -32 ) bricks/c_sr_m2 0 0 0 1 1 0 0 0 +} +// brush 2710 +{ +( -2048 3008 -16 ) ( -2112 3008 -16 ) ( -2112 2912 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2112 2912 0 ) ( -2112 3008 0 ) ( -2048 3008 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2112 2912 0 ) ( -2048 2912 0 ) ( -2048 2912 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1984 2904 0 ) ( -1984 3000 0 ) ( -1984 3000 -16 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -2048 3008 0 ) ( -2112 3008 0 ) ( -2112 3008 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2112 3008 0 ) ( -2112 2912 0 ) ( -2112 2912 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2711 +{ +( -1712 3072 256 ) ( -1728 3072 256 ) ( -1728 2944 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1728 2944 320 ) ( -1728 3072 320 ) ( -1712 3072 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -1536 2248 320 ) ( -1536 2376 320 ) ( -1536 2376 192 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1728 3072 320 ) ( -1728 2944 320 ) ( -1728 2944 192 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1928 3008 256 ) ( -1896 3008 256 ) ( -1912 3008 320 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1664 2752 256 ) ( -1728 2752 256 ) ( -1696 2752 320 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +} +// brush 2712 +{ +( -1712 3072 256 ) ( -1728 3072 256 ) ( -1728 2944 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1728 2944 320 ) ( -1728 3072 320 ) ( -1712 3072 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -1536 2248 320 ) ( -1536 2376 320 ) ( -1536 2376 192 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1728 3072 320 ) ( -1728 2944 320 ) ( -1728 2944 192 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1672 2432 256 ) ( -1688 2432 256 ) ( -1680 2432 320 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1728 2752 256 ) ( -1664 2752 256 ) ( -1696 2752 320 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +} +// brush 2713 +{ +( -1960 2529 -20 ) ( -1976 2529 -20 ) ( -1976 2426 69 ) wood/wd_sr_v1 -8 -77 90 0.754639 0.940063 134217728 0 0 +( -1976 2428 72 ) ( -1976 2532 -16 ) ( -1960 2532 -16 ) wood/wd_sr_v1 -11 -77 90 0.750000 0.940000 134217728 134217728 0 +( -1976 2431 75 ) ( -1960 2431 75 ) ( -1960 2426 69 ) wood/wd_sr_v1 6 -22 179 1 0.708420 134217728 0 0 +( -1960 2431 75 ) ( -1960 2534 -13 ) ( -1960 2529 -20 ) wood/wd_sr_v1 0 -10 138 0.999770 0.939405 134217728 0 0 +( -1960 2513 7 ) ( -1976 2513 7 ) ( -1976 2508 2 ) wood/wd_sr_v1 7 76 -180 1 0.710449 134217728 0 0 +( -1976 2534 -13 ) ( -1976 2431 75 ) ( -1976 2426 69 ) wood/wd_sr_v1 0 -10 138 0.999770 0.939405 134217728 0 0 +} +// brush 2714 +{ +( -1846 2688 -16 ) ( -2046 2688 -16 ) ( -2046 2536 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -2048 2536 -8 ) ( -2048 2688 -8 ) ( -1848 2688 -8 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( -2048 2536 -16 ) ( -1848 2536 -16 ) ( -1848 2536 -32 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -1856 2536 -16 ) ( -1856 2688 -16 ) ( -1856 2688 -32 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -1848 2688 -16 ) ( -2048 2688 -16 ) ( -2048 2688 -32 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -2048 2688 -16 ) ( -2048 2536 -16 ) ( -2048 2536 -32 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 2715 +{ +( -1856 2688 -8 ) ( -1888 2688 -8 ) ( -1888 2664 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1888 2664 0 ) ( -1888 2688 0 ) ( -1856 2688 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1888 2664 0 ) ( -1856 2664 0 ) ( -1856 2664 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1856 2664 0 ) ( -1856 2688 0 ) ( -1856 2688 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1856 2688 0 ) ( -1888 2688 0 ) ( -1888 2688 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1888 2688 8 ) ( -1888 2664 8 ) ( -1888 2664 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2716 +{ +( -2000 2576 -8 ) ( -2048 2576 -8 ) ( -2048 2536 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2048 2536 0 ) ( -2048 2576 0 ) ( -2000 2576 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2048 2536 10 ) ( -2000 2536 10 ) ( -2000 2536 -6 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2000 2536 8 ) ( -2000 2576 8 ) ( -2000 2576 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2000 2576 8 ) ( -2048 2576 8 ) ( -2048 2576 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2048 2576 0 ) ( -2048 2536 0 ) ( -2048 2536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2717 +{ +( -2032 2680 -8 ) ( -2040 2680 -8 ) ( -2040 2640 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2040 2640 0 ) ( -2040 2680 0 ) ( -2032 2680 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2040 2640 0 ) ( -2032 2640 0 ) ( -2032 2640 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2032 2640 8 ) ( -2032 2680 8 ) ( -2032 2680 -8 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -2032 2688 0 ) ( -2040 2688 0 ) ( -2040 2688 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2048 2680 0 ) ( -2048 2640 0 ) ( -2048 2640 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2718 +{ +( -2008 2640 -8 ) ( -2016 2640 -8 ) ( -2016 2616 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2016 2616 0 ) ( -2016 2640 0 ) ( -2008 2640 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2040 2616 -8 ) ( -2040 2616 8 ) ( -2008 2616 8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2032 2640 8 ) ( -2032 2640 -8 ) ( -2008 2616 -8 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -2032 2640 -16 ) ( -2032 2640 0 ) ( -2040 2640 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2048 2616 0 ) ( -2048 2616 -16 ) ( -2048 2640 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2719 +{ +( -2008 2616 -8 ) ( -2016 2616 -8 ) ( -2016 2592 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2016 2592 0 ) ( -2016 2616 0 ) ( -2008 2616 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2016 2592 0 ) ( -2008 2592 0 ) ( -2008 2592 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2008 2592 8 ) ( -2008 2616 8 ) ( -2008 2616 -8 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -2008 2616 8 ) ( -2016 2616 8 ) ( -2016 2616 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2048 2616 0 ) ( -2048 2592 0 ) ( -2048 2592 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2720 +{ +( -2000 2592 -8 ) ( -2008 2592 -8 ) ( -2008 2576 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2008 2576 0 ) ( -2008 2592 0 ) ( -2000 2592 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2016 2576 -8 ) ( -2016 2576 8 ) ( -2000 2576 8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2008 2592 -2 ) ( -2008 2592 -18 ) ( -2000 2576 -18 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -2008 2592 -16 ) ( -2008 2592 0 ) ( -2016 2592 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2048 2576 0 ) ( -2048 2576 -16 ) ( -2048 2592 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2721 +{ +( -1968 2560 -8 ) ( -2000 2560 -8 ) ( -2000 2552 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2000 2552 0 ) ( -2000 2560 0 ) ( -1968 2560 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2000 2536 -6 ) ( -2000 2536 10 ) ( -1968 2536 10 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 2552 8 ) ( -1968 2560 8 ) ( -1968 2560 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2000 2576 0 ) ( -2000 2576 -16 ) ( -1968 2560 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -2000 2552 8 ) ( -2000 2552 -8 ) ( -2000 2576 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2722 +{ +( -1944 2560 -8 ) ( -1968 2560 -8 ) ( -1968 2552 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 2552 0 ) ( -1968 2560 0 ) ( -1944 2560 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1968 2536 10 ) ( -1944 2536 10 ) ( -1944 2536 -6 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1944 2552 -2 ) ( -1944 2560 -2 ) ( -1944 2560 -18 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1944 2560 0 ) ( -1968 2560 0 ) ( -1968 2560 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -1968 2560 8 ) ( -1968 2552 8 ) ( -1968 2552 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2723 +{ +( -1912 2576 -8 ) ( -1944 2576 -8 ) ( -1944 2568 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1944 2568 0 ) ( -1944 2576 0 ) ( -1912 2576 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1912 2536 10 ) ( -1912 2536 -6 ) ( -1944 2536 -6 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1912 2552 -8 ) ( -1912 2552 8 ) ( -1912 2576 8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1944 2560 0 ) ( -1944 2560 -16 ) ( -1912 2576 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -1944 2560 -18 ) ( -1944 2560 -2 ) ( -1944 2552 -2 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2724 +{ +( -1888 2576 -8 ) ( -1912 2576 -8 ) ( -1912 2568 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1912 2568 0 ) ( -1912 2576 0 ) ( -1888 2576 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1912 2536 10 ) ( -1888 2536 10 ) ( -1888 2536 -6 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1856 2568 0 ) ( -1856 2576 0 ) ( -1856 2576 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1888 2576 8 ) ( -1912 2576 8 ) ( -1912 2576 -8 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -1912 2576 8 ) ( -1912 2568 8 ) ( -1912 2568 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2725 +{ +( -1864 2608 -8 ) ( -1872 2608 -8 ) ( -1872 2576 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1872 2576 0 ) ( -1872 2608 0 ) ( -1864 2608 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1864 2576 8 ) ( -1864 2576 -8 ) ( -1888 2576 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1856 2576 -16 ) ( -1856 2576 0 ) ( -1856 2608 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1864 2608 0 ) ( -1872 2608 0 ) ( -1872 2608 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1888 2576 8 ) ( -1888 2576 -8 ) ( -1872 2608 -8 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 2726 +{ +( -1864 2640 -8 ) ( -1872 2640 -8 ) ( -1872 2608 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1872 2608 0 ) ( -1872 2640 0 ) ( -1864 2640 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1872 2608 0 ) ( -1864 2608 0 ) ( -1864 2608 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1856 2608 0 ) ( -1856 2640 0 ) ( -1856 2640 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1864 2640 0 ) ( -1872 2640 0 ) ( -1872 2640 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1872 2640 8 ) ( -1872 2608 8 ) ( -1872 2608 -8 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 2727 +{ +( -1880 2664 -8 ) ( -1888 2664 -8 ) ( -1888 2640 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1888 2640 0 ) ( -1888 2664 0 ) ( -1880 2664 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1872 2640 -16 ) ( -1872 2640 0 ) ( -1864 2640 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1856 2664 0 ) ( -1856 2664 -16 ) ( -1856 2640 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1864 2664 -16 ) ( -1864 2664 0 ) ( -1888 2664 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1872 2640 8 ) ( -1872 2640 -8 ) ( -1888 2664 -8 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +} +// brush 2728 +{ +( -1888 2680 -8 ) ( -1920 2680 -8 ) ( -1920 2672 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1920 2672 0 ) ( -1920 2680 0 ) ( -1888 2680 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1888 2664 10 ) ( -1888 2664 -6 ) ( -1920 2672 -6 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -1888 2680 8 ) ( -1888 2680 -8 ) ( -1888 2664 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1888 2688 -16 ) ( -1888 2688 0 ) ( -1920 2688 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1920 2680 -2 ) ( -1920 2672 -2 ) ( -1920 2672 -18 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2729 +{ +( -1920 2664 -8 ) ( -1952 2664 -8 ) ( -1952 2656 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1952 2656 0 ) ( -1952 2664 0 ) ( -1920 2664 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1920 2672 0 ) ( -1920 2672 -16 ) ( -1952 2656 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -1920 2672 -18 ) ( -1920 2672 -2 ) ( -1920 2680 -2 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1952 2688 0 ) ( -1952 2688 -16 ) ( -1920 2688 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1952 2680 -8 ) ( -1952 2680 8 ) ( -1952 2656 8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2730 +{ +( -1952 2680 -8 ) ( -1976 2680 -8 ) ( -1976 2672 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1976 2672 0 ) ( -1976 2680 0 ) ( -1952 2680 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1952 2656 10 ) ( -1952 2656 -6 ) ( -1976 2672 -6 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -1952 2680 8 ) ( -1952 2680 -8 ) ( -1952 2656 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1952 2688 -16 ) ( -1952 2688 0 ) ( -1976 2688 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1976 2680 -2 ) ( -1976 2672 -2 ) ( -1976 2672 -18 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2731 +{ +( -1976 2680 -8 ) ( -1992 2680 -8 ) ( -1992 2672 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1992 2672 0 ) ( -1992 2680 0 ) ( -1976 2680 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1992 2672 0 ) ( -1976 2672 0 ) ( -1976 2672 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -1976 2672 -2 ) ( -1976 2680 -2 ) ( -1976 2680 -18 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1976 2688 0 ) ( -1992 2688 0 ) ( -1992 2688 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1992 2680 8 ) ( -1992 2672 8 ) ( -1992 2672 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2732 +{ +( -1992 2688 -8 ) ( -2032 2688 -8 ) ( -2032 2680 -8 ) bricks/s_sr_m12ab 0 8 0 1 1 0 0 0 +( -2032 2680 0 ) ( -2032 2688 0 ) ( -1992 2688 0 ) bricks/s_sr_m12ab 0 8 0 1 1 0 0 0 +( -1992 2672 0 ) ( -1992 2672 -16 ) ( -2032 2680 -16 ) bricks/s_sr_m6 0 0 0 1 1 0 0 0 +( -1992 2688 8 ) ( -1992 2688 -8 ) ( -1992 2672 -8 ) bricks/s_sr_m12ab -8 0 0 1 1 0 0 0 +( -1992 2688 -16 ) ( -1992 2688 0 ) ( -2032 2688 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2032 2688 8 ) ( -2032 2680 8 ) ( -2032 2680 -8 ) bricks/s_sr_m12ab -8 0 0 1 1 0 0 0 +} +// brush 2733 +{ +( -1728 2752 -16 ) ( -2048 2752 -16 ) ( -2048 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2048 2240 0 ) ( -2048 2752 0 ) ( -1728 2752 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2112 2752 0 ) ( -2112 2240 0 ) ( -2112 2240 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2048 2536 0 ) ( -1856 2536 0 ) ( -1856 2536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1856 2688 0 ) ( -2048 2688 0 ) ( -2048 2688 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2048 2536 0 ) ( -2048 2688 0 ) ( -2048 2536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2734 +{ +( -1728 2752 -16 ) ( -2048 2752 -16 ) ( -2048 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2048 2240 0 ) ( -2048 2752 0 ) ( -1728 2752 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1696 2912 0 ) ( -2016 2912 0 ) ( -2016 2912 -8 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -2112 2752 0 ) ( -2112 2240 0 ) ( -2112 2240 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1856 2536 0 ) ( -1856 2688 0 ) ( -1856 2688 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2048 2688 0 ) ( -1856 2688 0 ) ( -2048 2688 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2735 +{ +( -1728 2752 -16 ) ( -2048 2752 -16 ) ( -2048 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2048 2240 0 ) ( -2048 2752 0 ) ( -1728 2752 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1728 2240 0 ) ( -1728 2752 0 ) ( -1728 2752 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1712 2912 0 ) ( -2032 2912 0 ) ( -2032 2912 -8 ) bricks/b_mf_v2a 0 0 0 1 1 0 0 0 +( -2048 2536 0 ) ( -1856 2536 0 ) ( -1856 2536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1856 2688 0 ) ( -1856 2536 0 ) ( -1856 2688 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2736 +{ +( -1728 2752 -16 ) ( -2048 2752 -16 ) ( -2048 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2048 2240 0 ) ( -2048 2752 0 ) ( -1728 2752 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2056 2048 0 ) ( -1736 2048 0 ) ( -1736 2048 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1728 2240 0 ) ( -1728 2752 0 ) ( -1728 2752 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -2112 2752 0 ) ( -2112 2240 0 ) ( -2112 2240 -8 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1856 2536 0 ) ( -2048 2536 0 ) ( -1856 2536 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2737 +{ +( -2064 2368 128 ) ( -2064 2432 128 ) ( -2032 2432 128 ) bricks/b_sr_20ag 0 0 0 1 1 0 0 0 +( -2064 2048 192 ) ( -2032 2048 192 ) ( -2032 2048 64 ) bricks/b_sr_20ag 0 0 0 1 1 0 0 0 +( -1984 2368 192 ) ( -1984 2432 192 ) ( -1984 2432 64 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -2032 2496 192 ) ( -2064 2496 192 ) ( -2064 2496 64 ) bricks/b_sr_20ag -124 0 0 -1 1 0 0 0 +( -2112 2440 192 ) ( -2112 2376 192 ) ( -2112 2376 64 ) bricks/b_sr_20ag 0 0 0 1 1 0 0 0 +( -2112 2048 62 ) ( -2104 2048 62 ) ( -2108 2496 62 ) bricks/b_sr_20ag 0 0 0 1 1 0 0 0 +} +// brush 2738 +{ +( -1975 2065 236 ) ( -1981 2060 236 ) ( -1975 2054 236 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1975 2054 244 ) ( -1981 2060 244 ) ( -1975 2065 244 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -1983 2049 236 ) ( -1983 2049 244 ) ( -1969 2059 244 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1969 2059 252 ) ( -1975 2065 252 ) ( -1975 2065 220 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1983 2059 244 ) ( -1983 2059 236 ) ( -1975 2065 236 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1983 2049 244 ) ( -1983 2049 236 ) ( -1983 2059 236 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +} +// brush 2739 +{ +( -1977 2079 224 ) ( -1983 2074 224 ) ( -1961 2050 224 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1961 2050 256 ) ( -1983 2074 256 ) ( -1977 2079 256 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -1961 2050 256 ) ( -1955 2055 256 ) ( -1955 2055 224 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1955 2055 256 ) ( -1977 2079 256 ) ( -1977 2079 224 ) common/li_sr_v13 7 64 0 0.740000 1 0 1 50000 +( -1977 2079 256 ) ( -1983 2074 256 ) ( -1983 2074 224 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1983 2074 256 ) ( -1961 2050 256 ) ( -1961 2050 224 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +} +// brush 2740 +{ +( -1728 2464 0 ) ( -1760 2464 0 ) ( -1760 2432 0 ) props/box_sr_m6 0 0 0 0.500000 0.500000 0 134217728 0 +( -1760 2432 32 ) ( -1760 2464 32 ) ( -1728 2464 32 ) props/box_sr_m6 0 0 0 0.500000 0.500000 0 134217728 0 +( -1760 2432 64 ) ( -1728 2432 64 ) ( -1728 2432 0 ) props/box_sr_m6 0 0 0 0.500000 0.500000 0 134217728 0 +( -1728 2432 64 ) ( -1728 2464 64 ) ( -1728 2464 0 ) props/box_sr_m6 0 0 0 0.500000 0.500000 0 134217728 0 +( -1728 2464 64 ) ( -1760 2464 64 ) ( -1760 2464 0 ) props/box_sr_m6 0 0 0 0.500000 0.500000 0 134217728 0 +( -1760 2464 64 ) ( -1760 2432 64 ) ( -1760 2432 0 ) props/box_sr_m6 0 0 0 0.500000 0.500000 0 134217728 0 +} +// brush 2741 +{ +( -1951 2352 19 ) ( -1951 2272 19 ) ( -1946 2272 4 ) wood/wd_sr_v1 7 -62 -180 0.500000 0.500000 0 134217728 0 +( -1942 2272 6 ) ( -1948 2272 21 ) ( -1948 2352 21 ) wood/wd_sr_v1 7 -62 -180 0.500000 0.500000 0 134217728 0 +( -1941 2272 14 ) ( -1941 2352 14 ) ( -1949 2352 11 ) wood/wd_sr_v1 7 -62 -180 0.500000 0.500000 0 134217728 0 +( -1938 2352 6 ) ( -1944 2352 21 ) ( -1951 2352 19 ) wood/wd_sr_v1 7 -62 -180 0.500000 0.500000 0 134217728 0 +( -1944 2352 21 ) ( -1944 2272 21 ) ( -1951 2272 19 ) wood/wd_sr_v1 7 -62 90 0.500000 0.500000 0 134217728 0 +( -1944 2272 21 ) ( -1938 2272 6 ) ( -1946 2272 4 ) wood/wd_sr_v1 7 -62 -180 0.500000 0.500000 0 134217728 0 +} +// brush 2742 +{ +( -1958 2352 38 ) ( -1958 2272 38 ) ( -1952 2272 23 ) wood/wd_sr_v1 7 -75 -180 1 0.939880 0 0 0 +( -1949 2272 25 ) ( -1954 2272 40 ) ( -1954 2352 40 ) wood/wd_sr_v1 7 -62 -180 0.500000 0.500000 0 134217728 0 +( -1948 2272 29 ) ( -1948 2352 29 ) ( -1955 2352 26 ) wood/wd_sr_v1 7 -68 90 0.500000 0.500000 0 0 0 +( -1945 2352 21 ) ( -1950 2352 36 ) ( -1958 2352 34 ) wood/wd_sr_v1 -27 -40 -69 0.999861 0.999764 0 0 0 +( -1946 2352 36 ) ( -1946 2272 36 ) ( -1954 2272 34 ) wood/wd_sr_v1 7 -68 90 0.500000 0.500000 0 134217728 0 +( -1946 2272 36 ) ( -1941 2272 21 ) ( -1948 2272 19 ) wood/wd_sr_v1 -27 -40 -69 0.999861 0.999764 0 0 0 +} +// brush 2743 +{ +( -1962 2352 49 ) ( -1962 2272 49 ) ( -1957 2272 34 ) wood/wd_sr_v1 7 -60 -180 1 0.939510 0 0 0 +( -1953 2272 36 ) ( -1959 2272 51 ) ( -1959 2352 51 ) wood/wd_sr_v1 7 -62 -180 0.500000 0.500000 0 134217728 0 +( -1952 2272 44 ) ( -1952 2352 44 ) ( -1960 2352 41 ) wood/wd_sr_v1 7 -62 90 0.500000 0.500000 0 0 0 +( -1949 2352 36 ) ( -1955 2352 51 ) ( -1962 2352 49 ) wood/wd_sr_v1 -42 -43 -70 0.999841 1.000131 0 0 0 +( -1955 2352 51 ) ( -1955 2272 51 ) ( -1962 2272 49 ) wood/wd_sr_v1 7 -62 90 0.500000 0.500000 0 134217728 0 +( -1955 2272 51 ) ( -1949 2272 36 ) ( -1957 2272 34 ) wood/wd_sr_v1 -42 -43 -70 0.999841 1.000131 0 0 0 +} +// brush 2744 +{ +( -1968 2352 64 ) ( -1968 2272 64 ) ( -1962 2272 49 ) wood/wd_sr_v1 7 -67 -180 1 0.939735 0 0 0 +( -1959 2272 51 ) ( -1964 2272 67 ) ( -1964 2352 67 ) wood/wd_sr_v1 7 -62 -180 0.500000 0.500000 0 134217728 0 +( -1958 2272 59 ) ( -1958 2352 59 ) ( -1965 2352 56 ) wood/wd_sr_v1 7 -62 90 0.500000 0.500000 0 0 0 +( -1955 2352 51 ) ( -1960 2352 67 ) ( -1968 2352 64 ) wood/wd_sr_v1 -34 -43 -70 0.999743 1.000011 0 0 0 +( -1960 2352 67 ) ( -1960 2272 67 ) ( -1968 2272 64 ) wood/wd_sr_v1 7 -62 90 0.500000 0.500000 0 134217728 0 +( -1960 2272 67 ) ( -1955 2272 51 ) ( -1962 2272 49 ) wood/wd_sr_v1 -34 -43 -70 0.999743 1.000011 0 0 0 +} +// brush 2745 +{ +( -1973 2352 79 ) ( -1973 2272 79 ) ( -1968 2272 64 ) wood/wd_sr_v1 7 -76 -180 1 0.939476 0 0 0 +( -1964 2272 67 ) ( -1970 2272 82 ) ( -1970 2352 82 ) wood/wd_sr_v1 7 -62 -180 0.500000 0.500000 0 134217728 0 +( -1963 2272 74 ) ( -1963 2352 74 ) ( -1971 2352 71 ) wood/wd_sr_v1 7 -62 90 0.500000 0.500000 0 0 0 +( -1960 2352 67 ) ( -1966 2352 82 ) ( -1973 2352 79 ) wood/wd_sr_v1 -26 -43 -69 0.999861 0.999764 0 0 0 +( -1966 2352 82 ) ( -1966 2272 82 ) ( -1973 2272 79 ) wood/wd_sr_v1 7 -62 90 0.500000 0.500000 0 134217728 0 +( -1966 2272 82 ) ( -1960 2272 67 ) ( -1968 2272 64 ) wood/wd_sr_v1 -26 -43 -69 0.999861 0.999764 0 0 0 +} +// brush 2746 +{ +( -1981 2280 80 ) ( -1981 2272 80 ) ( -1959 2272 20 ) wood/wd_sr_v1 -19 -43 111 1.000074 0.999983 0 0 0 +( -1951 2272 19 ) ( -1973 2272 79 ) ( -1973 2280 79 ) wood/wd_sr_v1 0 0 90 0.500000 0.500000 0 0 0 +( -1946 2272 4 ) ( -1946 2280 4 ) ( -1953 2280 1 ) wood/wd_sr_v1 -19 -43 21 1.000074 0.999983 0 0 0 +( -1951 2280 23 ) ( -1973 2280 83 ) ( -1981 2280 80 ) wood/wd_sr_v1 0 0 110 0.500000 0.500000 0 134217728 0 +( -1976 2280 86 ) ( -1976 2272 86 ) ( -1984 2272 84 ) wood/wd_sr_v1 -19 -43 111 1 1 0 134217728 0 +( -1976 2272 86 ) ( -1954 2272 26 ) ( -1962 2272 23 ) wood/wd_sr_v1 0 0 110 0.500000 0.500000 0 134217728 0 +} +// brush 2747 +{ +( -1981 2352 80 ) ( -1981 2344 80 ) ( -1959 2344 20 ) wood/wd_sr_v1 -19 -43 111 1 1 0 0 0 +( -1951 2344 19 ) ( -1973 2344 79 ) ( -1973 2352 79 ) wood/wd_sr_v1 0 0 90 0.500000 0.500000 0 0 0 +( -1946 2344 4 ) ( -1946 2352 4 ) ( -1953 2352 1 ) wood/wd_sr_v1 -19 -43 111 1 1 0 0 0 +( -1951 2352 19 ) ( -1973 2352 79 ) ( -1981 2352 76 ) wood/wd_sr_v1 0 0 110 0.500000 0.500000 0 134217728 0 +( -1976 2352 86 ) ( -1976 2344 86 ) ( -1984 2344 84 ) wood/wd_sr_v1 -19 -43 111 1 1 0 134217728 0 +( -1976 2344 90 ) ( -1954 2344 30 ) ( -1962 2344 27 ) wood/wd_sr_v1 0 0 110 0.500000 0.500000 0 134217728 0 +} +// brush 2748 +{ +( -1866 2414 0 ) ( -1880 2421 0 ) ( -1942 2282 0 ) wood/wd_sr_m3a -89 38 -24 0.999879 1.000648 134217728 0 0 +( -1942 2282 4 ) ( -1880 2421 4 ) ( -1866 2414 4 ) wood/wd_sr_m3a -81 46 -24 1 1 134217728 134217728 0 +( -1942 2282 120 ) ( -1928 2275 120 ) ( -1928 2275 0 ) wood/wd_sr_m3a -25 0 0 0.913330 1 134217728 0 0 +( -1928 2275 120 ) ( -1866 2414 120 ) ( -1866 2414 0 ) wood/wd_sr_m3a 45 0 0 0.913330 1 134217728 0 0 +( -1866 2414 120 ) ( -1880 2421 120 ) ( -1880 2421 0 ) wood/wd_sr_m3a -93 0 0 0.913086 1 134217728 0 0 +( -1880 2421 120 ) ( -1942 2282 120 ) ( -1942 2282 0 ) wood/wd_sr_m3a 38 0 0 0.913574 1 134217728 0 0 +} +// brush 2749 +{ +( -1952 2464 0 ) ( -1984 2464 0 ) ( -1984 2432 0 ) props/box_sr_m5 0 0 0 0.500000 0.500000 0 134217728 0 +( -1984 2432 32 ) ( -1984 2464 32 ) ( -1952 2464 32 ) props/box_sr_m5 0 0 0 0.500000 0.500000 0 134217728 0 +( -1984 2432 64 ) ( -1952 2432 64 ) ( -1952 2432 0 ) props/box_sr_m5 0 0 0 0.500000 0.500000 0 134217728 0 +( -1952 2432 64 ) ( -1952 2464 64 ) ( -1952 2464 0 ) props/box_sr_m5 0 0 0 0.500000 0.500000 0 134217728 0 +( -1952 2464 64 ) ( -1984 2464 64 ) ( -1984 2464 0 ) props/box_sr_m5 0 0 0 0.500000 0.500000 0 134217728 0 +( -1984 2464 64 ) ( -1984 2432 64 ) ( -1984 2432 0 ) props/box_sr_m5 0 0 0 0.500000 0.500000 0 134217728 0 +} +// brush 2750 +{ +( -1920 2432 0 ) ( -1984 2432 0 ) ( -1984 2368 0 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( -1984 2368 64 ) ( -1984 2432 64 ) ( -1920 2432 64 ) props/box_sr_m5 0 0 0 1 1 0 134217728 0 +( -1984 2368 128 ) ( -1920 2368 128 ) ( -1920 2368 0 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( -1920 2368 128 ) ( -1920 2432 128 ) ( -1920 2432 0 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( -1920 2432 128 ) ( -1984 2432 128 ) ( -1984 2432 0 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +( -1984 2432 128 ) ( -1984 2368 128 ) ( -1984 2368 0 ) props/box_sr_m6 0 0 0 1 1 0 134217728 0 +} +// brush 2751 +{ +( -2032 2368 128 ) ( -2064 2368 128 ) ( -2064 2304 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -2064 2304 256 ) ( -2064 2368 256 ) ( -2032 2368 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1984 2304 320 ) ( -1984 2368 320 ) ( -1984 2368 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -2032 2176 320 ) ( -2064 2176 320 ) ( -2064 2176 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -2112 2376 320 ) ( -2112 2312 320 ) ( -2112 2312 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1968 2048 128 ) ( -1984 2048 128 ) ( -1976 2048 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 2752 +{ +( -2112 3008 128 ) ( -1728 3008 128 ) ( -1728 3008 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1536 3024 128 ) ( -1536 3216 128 ) ( -1536 3216 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1728 3136 128 ) ( -2112 3136 128 ) ( -2112 3136 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -2304 3200 128 ) ( -2304 3008 128 ) ( -2304 3008 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -2304 3008 128 ) ( -2264 3008 128 ) ( -2284 3136 128 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -2272 3008 256 ) ( -2304 3008 256 ) ( -2288 3136 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2753 +{ +( -2112 3008 416 ) ( -2112 3200 416 ) ( -1728 3200 416 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -2112 3008 128 ) ( -1728 3008 128 ) ( -1728 3008 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1536 3024 128 ) ( -1536 3216 128 ) ( -1536 3216 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -1728 3136 128 ) ( -2112 3136 128 ) ( -2112 3136 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -2304 3200 128 ) ( -2304 3008 128 ) ( -2304 3008 0 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +( -2304 3008 256 ) ( -2272 3008 256 ) ( -2288 3136 256 ) bricks/b_mf_v2 0 0 0 1 1 0 0 0 +} +// brush 2754 +{ +( -1896 3136 448 ) ( -2304 3136 448 ) ( -2304 3008 448 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -2304 3008 512 ) ( -2304 3136 512 ) ( -1896 3136 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -2304 3008 512 ) ( -1896 3008 512 ) ( -1896 3008 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1536 3024 512 ) ( -1536 3152 512 ) ( -1536 3152 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1896 3136 512 ) ( -2304 3136 512 ) ( -2304 3136 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -2304 3136 512 ) ( -2304 3008 512 ) ( -2304 3008 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2755 +{ +( -2304 3392 320 ) ( -2328 3392 320 ) ( -2328 3144 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -2328 3144 512 ) ( -2328 3392 512 ) ( -2304 3392 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -2352 2048 384 ) ( -2328 2048 384 ) ( -2328 2048 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -2304 2744 384 ) ( -2304 2992 384 ) ( -2304 2992 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -2320 3392 384 ) ( -2320 3144 384 ) ( -2320 3144 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -2312 3008 320 ) ( -2288 3008 320 ) ( -2300 3008 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2756 +{ +( -1520 2288 320 ) ( -1536 2288 320 ) ( -1536 2256 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1536 2256 512 ) ( -1536 2288 512 ) ( -1520 2288 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1520 2368 512 ) ( -1504 2368 512 ) ( -1504 2368 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1520 2480 512 ) ( -1520 2512 512 ) ( -1520 2512 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1536 2288 512 ) ( -1536 2256 512 ) ( -1536 2256 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1968 3008 320 ) ( -1944 3008 320 ) ( -1956 3008 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2757 +{ +( -1712 2816 128 ) ( -1728 2816 128 ) ( -1728 2696 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1728 2696 256 ) ( -1728 2816 256 ) ( -1712 2816 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1712 2696 256 ) ( -1712 2816 256 ) ( -1712 2816 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1728 2816 256 ) ( -1728 2696 256 ) ( -1728 2696 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1712 2560 128 ) ( -1728 2560 128 ) ( -1720 2560 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1928 3008 128 ) ( -1896 3008 128 ) ( -1912 3008 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 2758 +{ +( -1712 2816 0 ) ( -1728 2816 0 ) ( -1728 2688 0 ) bricks/b_mf_v5 0 0 0 1 1 0 0 0 +( -1728 2688 128 ) ( -1728 2816 128 ) ( -1712 2816 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1728 2560 120 ) ( -1712 2560 120 ) ( -1712 2560 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1712 2688 120 ) ( -1712 2816 120 ) ( -1712 2816 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1728 2816 120 ) ( -1728 2688 120 ) ( -1728 2688 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1928 3008 0 ) ( -1896 3008 0 ) ( -1912 3008 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2759 +{ +( -2112 2536 256 ) ( -2128 2536 256 ) ( -2128 2432 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -2128 2432 320 ) ( -2128 2536 320 ) ( -2112 2536 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -2120 2496 320 ) ( -2104 2496 320 ) ( -2104 2496 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -2112 2432 320 ) ( -2112 2536 320 ) ( -2112 2536 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -2304 2592 320 ) ( -2304 2488 320 ) ( -2304 2488 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -2152 3008 256 ) ( -2088 3008 256 ) ( -2120 3008 320 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +} +// brush 2760 +{ +( -2112 2816 128 ) ( -2128 2816 128 ) ( -2128 2784 128 ) bricks/b_sr_20b 0 0 0 -1 1 0 0 0 +( -2128 2784 256 ) ( -2128 2816 256 ) ( -2112 2816 256 ) bricks/b_sr_20b 0 0 0 -1 1 0 0 0 +( -2128 2784 256 ) ( -2112 2784 256 ) ( -2112 2784 128 ) bricks/b_sr_20b 0 0 0 -1 1 0 0 0 +( -2112 2784 256 ) ( -2112 2816 256 ) ( -2112 2816 128 ) bricks/b_sr_20b 0 0 0 -1 1 0 0 0 +( -2128 2880 256 ) ( -2128 2848 256 ) ( -2128 2848 128 ) bricks/b_sr_20b 0 0 0 -1 1 0 0 0 +( -2152 3008 128 ) ( -2088 3008 128 ) ( -2120 3008 256 ) bricks/b_sr_20b 0 0 0 -1 1 0 0 0 +} +// brush 2761 +{ +( -1600 2048 320 ) ( -2128 2048 320 ) ( -2128 2032 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -2128 2032 512 ) ( -2128 2048 512 ) ( -1600 2048 512 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -2128 2032 512 ) ( -1600 2032 512 ) ( -1600 2032 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1472 2024 512 ) ( -1472 2040 512 ) ( -1472 2040 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -1600 2048 512 ) ( -2128 2048 512 ) ( -2128 2048 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +( -2304 2048 512 ) ( -2304 2032 512 ) ( -2304 2032 320 ) common/li_sr_v17 0 0 0 1 1 0 132 0 +} +// brush 2762 +{ +( -1728 3200 416 ) ( -2112 3200 416 ) ( -2112 3008 416 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( -2112 3008 448 ) ( -2112 3200 448 ) ( -1728 3200 448 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( -2112 3008 448 ) ( -1728 3008 448 ) ( -1728 3008 320 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( -1536 3024 448 ) ( -1536 3216 448 ) ( -1536 3216 320 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( -1728 3136 448 ) ( -2112 3136 448 ) ( -2112 3136 320 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +( -2304 3200 448 ) ( -2304 3008 448 ) ( -2304 3008 320 ) bricks/b_sr_v12 0 0 0 1 1 0 0 0 +} +// brush 2763 +{ +( -1600 2240 0 ) ( -1712 2240 0 ) ( -1712 2176 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1712 2176 128 ) ( -1712 2240 128 ) ( -1600 2240 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1712 2176 128 ) ( -1600 2176 128 ) ( -1600 2176 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1536 2176 128 ) ( -1536 2240 128 ) ( -1536 2240 0 ) bricks/b_sr_20ag 0 0 0 1 1 0 0 0 +( -1576 2368 128 ) ( -1688 2368 128 ) ( -1688 2368 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1712 2240 128 ) ( -1712 2176 128 ) ( -1712 2176 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2764 +{ +( -1600 2176 -16 ) ( -1728 2176 -16 ) ( -1728 2048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1728 2048 0 ) ( -1728 2176 0 ) ( -1600 2176 0 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1728 2048 0 ) ( -1600 2048 0 ) ( -1600 2048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1472 2056 0 ) ( -1472 2184 0 ) ( -1472 2184 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1600 2240 0 ) ( -1728 2240 0 ) ( -1728 2240 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +( -1728 2176 0 ) ( -1728 2048 0 ) ( -1728 2048 -16 ) bricks/s_sr_m12ab 0 0 0 1 1 0 0 0 +} +// brush 2765 +{ +( -1922 2737 0 ) ( -1938 2732 0 ) ( -1920 2671 0 ) wood/wd_sr_m3a -50 40 16 0.999922 0.999922 134217728 0 0 +( -1920 2671 4 ) ( -1938 2732 4 ) ( -1922 2737 4 ) wood/wd_sr_m3a -34 40 16 1 1 134217728 134217728 0 +( -1911 2698 8 ) ( -1911 2698 0 ) ( -1918 2663 0 ) wood/wd_sr_m3a -106 0 90 0.960000 1 134217728 0 0 +( -1911 2698 0 ) ( -1911 2698 8 ) ( -1922 2737 8 ) wood/wd_sr_m3a -106 0 90 0.960000 1 134217728 0 0 +( -1933 2717 8 ) ( -1933 2717 0 ) ( -1922 2737 0 ) wood/wd_sr_m3a -106 0 90 0.960000 1 134217728 0 0 +( -1933 2717 0 ) ( -1933 2717 8 ) ( -1918 2663 8 ) wood/wd_sr_m3a -106 0 90 0.960000 1 134217728 0 0 +( -1904 2680 0 ) ( -1936 2680 0 ) ( -1920 2680 4 ) wood/wd_sr_m3a -106 0 90 0.960000 1 134217728 0 0 +} +// brush 2766 +{ +( -2032 2688 128 ) ( -2064 2688 128 ) ( -2064 2624 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -2064 2624 256 ) ( -2064 2688 256 ) ( -2032 2688 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -2064 2432 320 ) ( -2032 2432 320 ) ( -2032 2432 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1984 2624 320 ) ( -1984 2688 320 ) ( -1984 2688 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -2032 2496 320 ) ( -2064 2496 320 ) ( -2064 2496 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -2112 2696 320 ) ( -2112 2632 320 ) ( -2112 2632 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 2767 +{ +( -2048 2760 0 ) ( -2080 2760 0 ) ( -2080 2752 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2080 2752 128 ) ( -2080 2760 128 ) ( -2048 2760 128 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2080 2752 120 ) ( -2048 2752 120 ) ( -2048 2752 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2048 2760 120 ) ( -2080 2760 120 ) ( -2080 2760 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2080 2760 120 ) ( -2080 2752 120 ) ( -2080 2752 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2064 2760 0 ) ( -2064 2752 0 ) ( -2064 2756 128 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2064 2752 102 ) ( -2072 2752 128 ) ( -2068 2760 115 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +} +// brush 2768 +{ +( -2048 2760 0 ) ( -2080 2760 0 ) ( -2080 2752 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2080 2752 104 ) ( -2080 2760 104 ) ( -2048 2760 104 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2080 2752 120 ) ( -2048 2752 120 ) ( -2048 2752 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2048 2752 120 ) ( -2048 2760 120 ) ( -2048 2760 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2048 2760 120 ) ( -2080 2760 120 ) ( -2080 2760 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2064 2752 0 ) ( -2064 2760 0 ) ( -2064 2756 128 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +} +// brush 2769 +{ +( -2094 2760 0 ) ( -2120 2760 0 ) ( -2120 2752 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( -2120 2752 112 ) ( -2120 2760 112 ) ( -2094 2760 112 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( -2120 2752 128 ) ( -2094 2752 128 ) ( -2094 2752 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2104 2752 128 ) ( -2104 2760 128 ) ( -2104 2760 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( -2094 2760 128 ) ( -2120 2760 128 ) ( -2120 2760 0 ) wood/wd_sr_m3a 1 0 0 1 1 0 134217728 0 +( -2112 2760 128 ) ( -2112 2752 128 ) ( -2112 2752 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +} +// brush 2770 +{ +( -2086 2760 0 ) ( -2112 2760 0 ) ( -2112 2752 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2112 2752 128 ) ( -2112 2760 128 ) ( -2086 2760 128 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2112 2752 128 ) ( -2086 2752 128 ) ( -2086 2752 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2086 2752 128 ) ( -2086 2760 128 ) ( -2086 2760 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2086 2760 128 ) ( -2112 2760 128 ) ( -2112 2760 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2104 2760 128 ) ( -2104 2752 128 ) ( -2104 2752 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +} +// brush 2771 +{ +( -2080 2760 0 ) ( -2112 2760 0 ) ( -2112 2752 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( -2112 2752 56 ) ( -2112 2760 56 ) ( -2080 2760 56 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( -2112 2752 128 ) ( -2080 2752 128 ) ( -2080 2752 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( -2080 2752 128 ) ( -2080 2760 128 ) ( -2080 2760 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( -2080 2760 128 ) ( -2112 2760 128 ) ( -2112 2760 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +( -2086 2760 128 ) ( -2086 2752 128 ) ( -2086 2752 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 0 0 +} +// brush 2772 +{ +( -2112 2784 128 ) ( -2128 2784 128 ) ( -2128 2576 128 ) bricks/b_sr_20b 0 0 0 -1 1 0 0 0 +( -2128 2576 256 ) ( -2128 2784 256 ) ( -2112 2784 256 ) bricks/b_sr_20b 0 0 0 -1 1 0 0 0 +( -2112 2576 128 ) ( -2112 2784 128 ) ( -2112 2784 64 ) bricks/b_sr_20b 0 0 0 -1 1 0 0 0 +( -2112 2784 128 ) ( -2128 2784 128 ) ( -2128 2784 64 ) bricks/b_sr_20b 0 0 0 -1 1 0 0 0 +( -2128 2784 128 ) ( -2128 2576 128 ) ( -2128 2576 64 ) bricks/b_sr_20b 0 0 0 -1 1 0 0 0 +( -2112 2528 128 ) ( -2128 2528 128 ) ( -2120 2528 256 ) bricks/b_sr_20b 0 0 0 -1 1 0 0 0 +} +// brush 2773 +{ +( -2112 2816 128 ) ( -2128 2816 128 ) ( -2128 2608 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -2128 2608 256 ) ( -2128 2816 256 ) ( -2112 2816 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -2120 2496 128 ) ( -2104 2496 128 ) ( -2104 2496 64 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -2112 2608 128 ) ( -2112 2816 128 ) ( -2112 2816 64 ) bricks/b_sr_20b 0 0 0 -1 1 0 0 0 +( -2128 2816 128 ) ( -2128 2608 128 ) ( -2128 2608 64 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -2128 2528 128 ) ( -2112 2528 128 ) ( -2120 2528 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 2774 +{ +( -2032 2432 256 ) ( -2064 2432 256 ) ( -2064 2368 256 ) bricks/b_sr_23 8 0 0 1 1 0 0 0 +( -2064 2368 320 ) ( -2064 2432 320 ) ( -2032 2432 320 ) metals/mt_pv_m26y 0 0 0 5 5 0 8390656 0 +( -2064 2048 384 ) ( -2032 2048 384 ) ( -2032 2048 256 ) bricks/b_sr_23 8 0 0 1 1 0 0 0 +( -1984 2368 384 ) ( -1984 2432 384 ) ( -1984 2432 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -2032 2496 384 ) ( -2064 2496 384 ) ( -2064 2496 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -2304 2440 384 ) ( -2304 2376 384 ) ( -2304 2376 256 ) bricks/b_sr_23 8 0 0 1 1 0 0 0 +} +// brush 2775 +{ +( -2032 2432 128 ) ( -2064 2432 128 ) ( -2064 2368 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -2064 2368 256 ) ( -2064 2432 256 ) ( -2032 2432 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -2064 2176 320 ) ( -2032 2176 320 ) ( -2032 2176 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1984 2368 320 ) ( -1984 2432 320 ) ( -1984 2432 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -2032 2432 320 ) ( -2064 2432 320 ) ( -2064 2432 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -2112 2440 320 ) ( -2112 2376 320 ) ( -2112 2376 192 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 2776 +{ +( -1989 2740 0 ) ( -1996 2743 0 ) ( -2019 2692 0 ) wood/wd_sr_m3a 36 -22 -23 1.000027 1.000027 134217728 0 0 +( -2019 2692 2 ) ( -1996 2743 2 ) ( -1989 2740 2 ) wood/wd_sr_m3a 44 -22 -23 1 1 134217728 134217728 0 +( -2019 2692 8 ) ( -2012 2689 8 ) ( -2012 2689 0 ) wood/wd_sr_m3a 73 0 0 0.913574 1 134217728 0 0 +( -2012 2689 8 ) ( -1989 2740 8 ) ( -1989 2740 0 ) wood/wd_sr_m3a -127 0 0 0.913574 1 134217728 0 0 +( -1989 2740 8 ) ( -1996 2743 8 ) ( -1996 2743 0 ) wood/wd_sr_m3a 48 0 0 0.913452 1 134217728 0 0 +( -1996 2743 8 ) ( -2019 2692 8 ) ( -2019 2692 0 ) wood/wd_sr_m3a -2 0 0 0.913574 1 134217728 0 0 +} +// brush 2777 +{ +( -1848 2432 108 ) ( -1848 2436 108 ) ( -1852 2436 108 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1848 2436 132 ) ( -1848 2432 132 ) ( -1852 2432 132 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1852 2432 112 ) ( -1848 2432 112 ) ( -1848 2432 108 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1848 2436 108 ) ( -1848 2432 108 ) ( -1848 2432 132 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1848 2436 112 ) ( -1852 2436 112 ) ( -1852 2436 108 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1852 2432 108 ) ( -1852 2436 108 ) ( -1852 2436 132 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2778 +{ +( -1728 2436 108 ) ( -1732 2436 108 ) ( -1732 2432 108 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1732 2432 132 ) ( -1732 2436 132 ) ( -1728 2436 132 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1732 2432 112 ) ( -1728 2432 112 ) ( -1728 2432 108 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1728 2432 112 ) ( -1728 2436 112 ) ( -1728 2436 108 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1728 2436 112 ) ( -1732 2436 112 ) ( -1732 2436 108 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1732 2436 112 ) ( -1732 2432 112 ) ( -1732 2432 108 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2779 +{ +( -1728 2472 126 ) ( -1732 2472 126 ) ( -1732 2468 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1732 2468 132 ) ( -1732 2472 132 ) ( -1728 2472 132 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1732 2468 132 ) ( -1728 2468 132 ) ( -1728 2468 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1728 2468 132 ) ( -1728 2472 132 ) ( -1728 2472 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1732 2472 126 ) ( -1728 2472 126 ) ( -1728 2472 132 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1732 2472 132 ) ( -1732 2468 132 ) ( -1732 2468 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2780 +{ +( -1728 2438 104 ) ( -1732 2438 104 ) ( -1732 2432 104 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1732 2432 108 ) ( -1732 2436 108 ) ( -1728 2436 108 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1732 2432 108 ) ( -1728 2432 108 ) ( -1728 2432 104 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1728 2432 108 ) ( -1728 2436 108 ) ( -1728 2436 104 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1732 2438 104 ) ( -1728 2438 104 ) ( -1728 2436 108 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1732 2436 108 ) ( -1732 2432 108 ) ( -1732 2432 104 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2781 +{ +( -1732 2438 104 ) ( -1728 2438 104 ) ( -1728 2472 126 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1728 2436 108 ) ( -1732 2436 108 ) ( -1732 2468 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1728 2438 104 ) ( -1732 2438 104 ) ( -1732 2436 108 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1728 2460 132 ) ( -1728 2468 132 ) ( -1728 2468 124 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1732 2472 126 ) ( -1728 2472 126 ) ( -1728 2468 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1732 2468 132 ) ( -1732 2460 132 ) ( -1732 2460 124 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2782 +{ +( -1848 2472 126 ) ( -1852 2472 126 ) ( -1852 2438 104 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1848 2436 108 ) ( -1852 2436 108 ) ( -1852 2468 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1848 2438 104 ) ( -1852 2438 104 ) ( -1852 2436 108 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1848 2460 132 ) ( -1848 2468 132 ) ( -1848 2468 124 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1852 2472 126 ) ( -1848 2472 126 ) ( -1848 2468 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1852 2468 132 ) ( -1852 2460 132 ) ( -1852 2460 124 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2783 +{ +( -1848 2438 104 ) ( -1852 2438 104 ) ( -1852 2432 104 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1852 2432 108 ) ( -1852 2436 108 ) ( -1848 2436 108 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1852 2432 108 ) ( -1848 2432 108 ) ( -1848 2432 104 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1848 2432 108 ) ( -1848 2436 108 ) ( -1848 2436 104 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1852 2438 104 ) ( -1848 2438 104 ) ( -1848 2436 108 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1852 2436 108 ) ( -1852 2432 108 ) ( -1852 2432 104 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2784 +{ +( -1848 2472 126 ) ( -1852 2472 126 ) ( -1852 2468 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1852 2468 132 ) ( -1852 2472 132 ) ( -1848 2472 132 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1852 2468 132 ) ( -1848 2468 132 ) ( -1848 2468 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1848 2468 132 ) ( -1848 2472 132 ) ( -1848 2472 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1852 2472 126 ) ( -1848 2472 126 ) ( -1848 2472 132 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1852 2472 132 ) ( -1852 2468 132 ) ( -1852 2468 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2785 +{ +( -1848 2472 130 ) ( -1852 2472 130 ) ( -1852 2432 132 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1852 2472 134 ) ( -1848 2472 134 ) ( -1848 2432 136 ) metals/mt_pv_m26y 0 33 0 1 1 134217728 8388608 0 +( -1856 2432 136 ) ( -1848 2432 136 ) ( -1848 2432 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1848 2432 136 ) ( -1848 2488 136 ) ( -1848 2488 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1848 2472 134 ) ( -1852 2472 134 ) ( -1852 2472 130 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1852 2488 136 ) ( -1852 2432 136 ) ( -1852 2432 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2786 +{ +( -1728 2488 132 ) ( -1736 2488 132 ) ( -1736 2432 132 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1736 2432 136 ) ( -1736 2488 136 ) ( -1728 2488 136 ) metals/mt_pv_m26y 0 24 0 1 1 134217728 8388608 0 +( -1736 2432 136 ) ( -1728 2432 136 ) ( -1728 2432 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1728 2432 136 ) ( -1728 2488 136 ) ( -1728 2488 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1728 2472 136 ) ( -1736 2472 136 ) ( -1736 2472 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1732 2476 136 ) ( -1732 2420 136 ) ( -1732 2420 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2787 +{ +( -1736 2476 132 ) ( -1848 2476 132 ) ( -1848 2468 132 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1848 2468 136 ) ( -1848 2476 136 ) ( -1736 2476 136 ) metals/mt_pv_m26y 0 33 0 1 1 134217728 8388608 0 +( -1844 2468 192 ) ( -1732 2468 192 ) ( -1732 2468 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1732 2468 192 ) ( -1732 2476 192 ) ( -1732 2476 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1736 2472 192 ) ( -1848 2472 192 ) ( -1848 2472 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1832 2476 192 ) ( -1832 2468 192 ) ( -1832 2468 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2788 +{ +( -1732 2458 132 ) ( -1732 2462 132 ) ( -1848 2462 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1848 2456 132 ) ( -1848 2460 132 ) ( -1732 2460 136 ) metals/mt_pv_m26y 0 -89 0 1 1 134217728 8388608 0 +( -1848 2458 128 ) ( -1848 2458 132 ) ( -1732 2456 136 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1732 2462 132 ) ( -1732 2458 132 ) ( -1732 2456 136 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1848 2462 132 ) ( -1848 2462 128 ) ( -1732 2460 136 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1848 2458 132 ) ( -1848 2458 128 ) ( -1848 2462 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2789 +{ +( -1736 2452 132 ) ( -1848 2452 132 ) ( -1848 2444 132 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1848 2444 136 ) ( -1848 2452 136 ) ( -1736 2452 136 ) metals/mt_pv_m26y 0 33 0 1 1 134217728 8388608 0 +( -1848 2444 192 ) ( -1736 2444 192 ) ( -1736 2444 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1732 2444 192 ) ( -1732 2452 192 ) ( -1732 2452 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1736 2448 192 ) ( -1848 2448 192 ) ( -1848 2448 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1848 2452 192 ) ( -1848 2444 192 ) ( -1848 2444 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2790 +{ +( -1736 2440 132 ) ( -1848 2440 132 ) ( -1848 2432 132 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1848 2432 136 ) ( -1848 2440 136 ) ( -1736 2440 136 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1848 2432 192 ) ( -1736 2432 192 ) ( -1736 2432 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1732 2432 192 ) ( -1732 2440 192 ) ( -1732 2440 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1732 2436 192 ) ( -1844 2436 192 ) ( -1844 2436 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +( -1848 2440 192 ) ( -1848 2432 192 ) ( -1848 2432 128 ) metals/mt_pv_m26y 0 0 0 1 1 134217728 8388608 0 +} +// brush 2791 +{ +( -1712 2416 256 ) ( -1728 2416 256 ) ( -1728 2416 128 ) props/w_sr_ba7b 32 32 0 1 1 0 1 2000 +( -1824 2416 128 ) ( -1824 2432 128 ) ( -1824 2424 256 ) props/w_sr_ba7b 32 32 0 1 1 0 1 2000 +( -1760 2432 128 ) ( -1760 2416 128 ) ( -1760 2424 256 ) props/w_sr_ba7b 32 32 0 1 1 0 1 2000 +( -1816 2400 128 ) ( -1824 2400 128 ) ( -1820 2400 256 ) props/w_sr_ba7b 32 32 0 1 1 0 1 2000 +( -1824 2400 160 ) ( -1816 2400 160 ) ( -1820 2432 160 ) props/w_sr_ba7b 32 32 0 1 1 0 1 2000 +( -1808 2400 224 ) ( -1824 2400 224 ) ( -1816 2432 224 ) props/w_sr_ba7b 32 32 0 1 1 0 1 2000 +} +// brush 2792 +{ +( -1728 2368 256 ) ( -1728 2432 256 ) ( -1712 2432 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1712 2432 256 ) ( -1728 2432 256 ) ( -1728 2432 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1824 2416 128 ) ( -1824 2432 128 ) ( -1824 2424 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1760 2432 128 ) ( -1760 2416 128 ) ( -1760 2424 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1816 2400 128 ) ( -1824 2400 128 ) ( -1820 2400 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1824 2400 224 ) ( -1808 2400 224 ) ( -1816 2432 224 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 2793 +{ +( -1712 2432 128 ) ( -1728 2432 128 ) ( -1728 2368 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1712 2432 256 ) ( -1728 2432 256 ) ( -1728 2432 128 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1824 2416 128 ) ( -1824 2432 128 ) ( -1824 2424 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1760 2432 128 ) ( -1760 2416 128 ) ( -1760 2424 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1816 2400 128 ) ( -1824 2400 128 ) ( -1820 2400 256 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +( -1816 2400 160 ) ( -1824 2400 160 ) ( -1820 2432 160 ) bricks/b_sr_20 0 0 0 1 1 0 0 0 +} +// brush 2794 +{ +( -1712 2432 128 ) ( -1728 2432 128 ) ( -1728 2368 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1728 2368 256 ) ( -1728 2432 256 ) ( -1712 2432 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1728 2176 256 ) ( -1712 2176 256 ) ( -1712 2176 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1712 2432 256 ) ( -1728 2432 256 ) ( -1728 2432 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1856 2440 256 ) ( -1856 2376 256 ) ( -1856 2376 128 ) bricks/b_sr_20b 0 0 0 -1 1 0 0 0 +( -1824 2432 128 ) ( -1824 2416 128 ) ( -1824 2424 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 2795 +{ +( -1536 2432 256 ) ( -1856 2432 256 ) ( -1856 2176 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1528 2440 296 ) ( -1528 2168 296 ) ( -1864 2168 296 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1856 2168 296 ) ( -1529 2168 296 ) ( -1536 2176 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1528 2168 296 ) ( -1528 2440 296 ) ( -1536 2432 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1864 2432 296 ) ( -1864 2168 296 ) ( -1856 2176 256 ) bricks/b_sr_23 0 0 0 1 1 0 0 0 +( -1528 2440 296 ) ( -1864 2440 296 ) ( -1856 2432 256 ) bricks/b_sr_23 3 0 0 1 1 0 0 0 +} +// brush 2796 +{ +( -1712 2816 128 ) ( -1728 2816 128 ) ( -1728 2696 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1728 2696 256 ) ( -1728 2816 256 ) ( -1712 2816 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1712 2696 256 ) ( -1712 2816 256 ) ( -1712 2816 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1728 2816 256 ) ( -1728 2696 256 ) ( -1728 2696 128 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1728 2560 128 ) ( -1712 2560 128 ) ( -1720 2560 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +( -1712 2432 128 ) ( -1728 2432 128 ) ( -1720 2432 256 ) bricks/b_sr_20b 0 0 0 1 1 0 0 0 +} +// brush 2797 +{ +( -1712 2560 0 ) ( -1728 2560 0 ) ( -1728 2456 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1728 2456 128 ) ( -1728 2560 128 ) ( -1712 2560 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1712 2456 128 ) ( -1712 2560 128 ) ( -1712 2560 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1712 2560 128 ) ( -1728 2560 128 ) ( -1728 2560 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1728 2560 128 ) ( -1728 2456 128 ) ( -1728 2456 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1712 2432 0 ) ( -1728 2432 0 ) ( -1720 2432 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +} +// brush 2798 +{ +( -1712 2560 0 ) ( -1728 2560 0 ) ( -1728 2456 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1728 2456 128 ) ( -1728 2560 128 ) ( -1712 2560 128 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1720 2176 128 ) ( -1704 2176 128 ) ( -1704 2176 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1712 2456 128 ) ( -1712 2560 128 ) ( -1712 2560 0 ) bricks/b_sr_20a 0 0 0 1 1 0 0 0 +( -1856 2568 128 ) ( -1856 2464 128 ) ( -1856 2464 0 ) bricks/b_sr_20a 0 0 0 -1 1 0 0 0 +( -1728 2432 0 ) ( -1712 2432 0 ) ( -1720 2432 128 ) bricks/b_sr_20ap 64 0 0 -1 1 0 0 0 +} +// brush 2799 +{ +( -1824 2760 0 ) ( -1848 2760 0 ) ( -1848 2752 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1848 2752 128 ) ( -1848 2760 128 ) ( -1824 2760 128 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1848 2752 128 ) ( -1824 2752 128 ) ( -1824 2752 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1800 2752 128 ) ( -1800 2760 128 ) ( -1800 2760 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1824 2760 128 ) ( -1848 2760 128 ) ( -1848 2760 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1824 2752 0 ) ( -1824 2760 0 ) ( -1824 2756 128 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +} +// brush 2800 +{ +( -1824 2760 0 ) ( -1848 2760 0 ) ( -1848 2752 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1848 2752 120 ) ( -1848 2760 120 ) ( -1824 2760 120 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1848 2752 128 ) ( -1824 2752 128 ) ( -1824 2752 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1824 2760 128 ) ( -1848 2760 128 ) ( -1848 2760 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1848 2760 128 ) ( -1848 2752 128 ) ( -1848 2752 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1824 2760 0 ) ( -1824 2752 0 ) ( -1824 2756 128 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +} +// brush 2801 +{ +( -1992 2768 88 ) ( -2048 2768 88 ) ( -2048 2760 88 ) wood/wd_sr_m3a 8 0 90 1 1 134217728 134217728 0 +( -2048 2760 96 ) ( -2048 2768 96 ) ( -1992 2768 96 ) wood/wd_sr_m3a 8 0 90 1 1 134217728 134217728 0 +( -2048 2760 144 ) ( -1992 2760 144 ) ( -1992 2760 24 ) wood/wd_sr_m3a 8 0 90 1 1 134217728 134217728 0 +( -1728 2760 144 ) ( -1728 2768 144 ) ( -1728 2768 24 ) wood/wd_sr_m3a 8 0 90 1 1 134217728 134217728 0 +( -1992 2764 144 ) ( -2048 2764 144 ) ( -2048 2764 24 ) wood/wd_sr_m3a 8 0 90 1 1 134217728 134217728 0 +( -2112 2768 144 ) ( -2112 2760 144 ) ( -2112 2760 24 ) wood/wd_sr_m3a 8 0 90 1 1 134217728 134217728 0 +} +// brush 2802 +{ +( -1924 2764 20 ) ( -1924 2760 20 ) ( -1732 2760 20 ) wood/wd_sr_m3a 8 0 90 1 1 134217728 134217728 0 +( -1916 2760 28 ) ( -1916 2764 28 ) ( -1728 2764 28 ) wood/wd_sr_m3a 8 0 90 1 1 134217728 134217728 0 +( -1920 2760 24 ) ( -1920 2760 32 ) ( -1728 2760 32 ) wood/wd_sr_m3a 8 0 90 1 1 134217728 134217728 0 +( -1728 2760 120 ) ( -1728 2768 120 ) ( -1728 2768 0 ) wood/wd_sr_m3a 8 0 90 1 1 134217728 134217728 0 +( -1992 2764 120 ) ( -2048 2764 120 ) ( -2048 2764 0 ) wood/wd_sr_m3a 8 0 90 1 1 134217728 134217728 0 +( -1920 2764 28 ) ( -1920 2760 28 ) ( -1924 2760 20 ) wood/wd_sr_m3a 8 0 90 1 1 134217728 134217728 0 +} +// brush 2803 +{ +( -1736 2760 0 ) ( -1760 2760 0 ) ( -1760 2752 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1760 2752 120 ) ( -1760 2760 120 ) ( -1736 2760 120 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1760 2752 128 ) ( -1736 2752 128 ) ( -1736 2752 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1728 2752 128 ) ( -1728 2760 128 ) ( -1728 2760 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1736 2760 128 ) ( -1760 2760 128 ) ( -1760 2760 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1760 2760 128 ) ( -1760 2752 128 ) ( -1760 2752 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +} +// brush 2804 +{ +( -1760 2760 0 ) ( -1784 2760 0 ) ( -1784 2752 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1784 2752 128 ) ( -1784 2760 128 ) ( -1760 2760 128 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1784 2752 128 ) ( -1760 2752 128 ) ( -1760 2752 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1760 2752 128 ) ( -1760 2760 128 ) ( -1760 2760 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1760 2760 128 ) ( -1784 2760 128 ) ( -1784 2760 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1784 2760 128 ) ( -1784 2752 128 ) ( -1784 2752 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +} +// brush 2805 +{ +( -1776 2760 0 ) ( -1800 2760 0 ) ( -1800 2752 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1800 2752 120 ) ( -1800 2760 120 ) ( -1776 2760 120 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1800 2752 128 ) ( -1776 2752 128 ) ( -1776 2752 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1784 2752 128 ) ( -1784 2760 128 ) ( -1784 2760 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1776 2760 128 ) ( -1800 2760 128 ) ( -1800 2760 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +( -1800 2760 128 ) ( -1800 2752 128 ) ( -1800 2752 0 ) wood/wd_sr_m3a 18 0 0 1 1 0 134217728 0 +} +// brush 2806 +{ +( -2032 2760 0 ) ( -2048 2760 0 ) ( -2048 2752 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2048 2752 120 ) ( -2048 2760 120 ) ( -2032 2760 120 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2048 2752 16 ) ( -2032 2752 16 ) ( -2032 2752 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2032 2760 16 ) ( -2048 2760 16 ) ( -2048 2760 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2048 2760 16 ) ( -2048 2752 16 ) ( -2048 2752 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2024 2760 0 ) ( -2024 2752 0 ) ( -2024 2756 128 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2024 2752 94 ) ( -2027 2752 120 ) ( -2025 2760 107 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +} +// brush 2807 +{ +( -2032 2760 0 ) ( -2048 2760 0 ) ( -2048 2752 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2048 2752 128 ) ( -2048 2760 128 ) ( -2032 2760 128 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2048 2752 16 ) ( -2032 2752 16 ) ( -2032 2752 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2000 2752 16 ) ( -2000 2760 16 ) ( -2000 2760 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2032 2760 16 ) ( -2048 2760 16 ) ( -2048 2760 0 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2000 2752 92 ) ( -2004 2752 128 ) ( -2002 2760 110 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +( -2024 2752 0 ) ( -2024 2760 0 ) ( -2024 2756 128 ) wood/wd_sr_m3a 0 0 0 1 1 0 134217728 0 +} +// brush 2808 +{ +( -1912 2760 0 ) ( -1928 2760 0 ) ( -1928 2752 0 ) wood/wd_sr_m3a -8 0 0 1 1 0 134217728 0 +( -1928 2752 120 ) ( -1928 2760 120 ) ( -1912 2760 120 ) wood/wd_sr_m3a -8 0 0 1 1 0 134217728 0 +( -1928 2752 16 ) ( -1912 2752 16 ) ( -1912 2752 0 ) wood/wd_sr_m3a -8 0 0 1 1 0 134217728 0 +( -1864 2752 16 ) ( -1864 2760 16 ) ( -1864 2760 0 ) wood/wd_sr_m3a -8 0 0 1 1 0 134217728 0 +( -1912 2760 16 ) ( -1928 2760 16 ) ( -1928 2760 0 ) wood/wd_sr_m3a -8 0 0 1 1 0 134217728 0 +( -1888 2752 0 ) ( -1888 2760 0 ) ( -1888 2756 128 ) wood/wd_sr_m3a -8 0 0 1 1 0 134217728 0 +} +// brush 2809 +{ +( -1912 2760 0 ) ( -1928 2760 0 ) ( -1928 2752 0 ) wood/wd_sr_m3a -10 0 0 1 1 0 134217728 0 +( -1928 2752 128 ) ( -1928 2760 128 ) ( -1912 2760 128 ) wood/wd_sr_m3a -10 0 0 1 1 0 134217728 0 +( -1928 2752 16 ) ( -1912 2752 16 ) ( -1912 2752 0 ) wood/wd_sr_m3a -10 0 0 1 1 0 134217728 0 +( -1912 2760 16 ) ( -1928 2760 16 ) ( -1928 2760 0 ) wood/wd_sr_m3a -10 0 0 1 1 0 134217728 0 +( -1912 2760 16 ) ( -1912 2752 16 ) ( -1912 2752 0 ) wood/wd_sr_m3a -10 0 0 1 1 0 134217728 0 +( -1906 2752 128 ) ( -1912 2752 112 ) ( -1909 2760 120 ) wood/wd_sr_m3a -10 0 0 1 1 0 134217728 0 +( -1888 2760 0 ) ( -1888 2752 0 ) ( -1888 2756 128 ) wood/wd_sr_m3a -10 0 0 1 1 0 134217728 0 +} +// brush 2810 +{ +( -1840 2760 0 ) ( -1864 2760 0 ) ( -1864 2752 0 ) wood/wd_sr_m3a -8 0 0 1 1 0 134217728 0 +( -1848 2760 112 ) ( -1848 2752 112 ) ( -1864 2752 104 ) wood/wd_sr_m3a -8 0 0 1 1 0 134217728 0 +( -1864 2752 128 ) ( -1840 2752 128 ) ( -1840 2752 0 ) wood/wd_sr_m3a -8 0 0 1 1 0 134217728 0 +( -1848 2752 112 ) ( -1848 2760 112 ) ( -1848 2760 0 ) wood/wd_sr_m3a -8 0 0 1 1 0 134217728 0 +( -1840 2760 128 ) ( -1864 2760 128 ) ( -1864 2760 0 ) wood/wd_sr_m3a -8 0 0 1 1 0 134217728 0 +( -1864 2760 128 ) ( -1864 2752 128 ) ( -1864 2752 0 ) wood/wd_sr_m3a -8 0 0 1 1 0 134217728 0 +} +// brush 2811 +{ +( -1928 2760 0 ) ( -1944 2760 0 ) ( -1944 2752 0 ) wood/wd_sr_m3a -10 0 0 1 1 0 134217728 0 +( -1928 2752 32 ) ( -1928 2760 32 ) ( -1912 2760 64 ) wood/wd_sr_m3a -10 0 0 1 1 0 134217728 0 +( -1944 2752 16 ) ( -1928 2752 16 ) ( -1928 2752 0 ) wood/wd_sr_m3a -8 0 0 1 1 0 134217728 0 +( -1912 2752 16 ) ( -1912 2760 16 ) ( -1912 2760 0 ) wood/wd_sr_m3a -10 0 0 1 1 0 134217728 0 +( -1928 2760 16 ) ( -1944 2760 16 ) ( -1944 2760 0 ) wood/wd_sr_m3a -10 0 0 1 1 0 134217728 0 +( -1928 2760 32 ) ( -1928 2752 32 ) ( -1928 2752 0 ) wood/wd_sr_m3a -10 0 0 1 1 0 134217728 0 +( -1926 2752 36 ) ( -1928 2752 16 ) ( -1927 2760 26 ) wood/wd_sr_m3a -10 0 0 1 1 0 134217728 0 +( -1912 2752 35 ) ( -1914 2752 61 ) ( -1913 2760 48 ) wood/wd_sr_m3a -10 0 0 1 1 0 134217728 0 +} +} +// entity 1 +{ +"classname" "func_wall" +// brush 0 +{ +( -1077 1480 0 ) ( -1077 1664 144 ) ( -1085 1664 144 ) metals/mt_pv_m26y -2 0 0 0.500000 0.500000 0 0 0 +( -1079 1480 8 ) ( -1087 1480 8 ) ( -1087 1664 152 ) metals/mt_pv_m26y -2 0 0 0.500000 0.500000 0 0 0 +( -1079 1664 152 ) ( -1087 1664 152 ) ( -1087 1664 144 ) metals/mt_pv_m26y -2 0 0 0.500000 0.500000 0 0 0 +( -1085 1480 0 ) ( -1085 1664 144 ) ( -1087 1664 152 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 0 0 0 +( -1079 1480 0 ) ( -1087 1480 0 ) ( -1087 1480 8 ) metals/mt_pv_m26y -2 0 0 0.500000 0.500000 0 0 0 +( -1077 1664 144 ) ( -1077 1480 0 ) ( -1079 1480 8 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 0 0 0 +} +// brush 1 +{ +( -1016 1480 0 ) ( -1008 1480 0 ) ( -1008 1664 144 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1008 1480 8 ) ( -1016 1480 8 ) ( -1016 1664 152 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 0 0 0 +( -1008 1664 152 ) ( -1016 1664 152 ) ( -1016 1664 144 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1018 1480 8 ) ( -1018 1480 0 ) ( -1016 1664 144 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1010 1480 8 ) ( -1010 1480 0 ) ( -1018 1480 0 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +( -1010 1480 0 ) ( -1010 1480 8 ) ( -1008 1664 152 ) metals/mt_pv_m26y 0 0 0 1 1 0 0 0 +} +} +// entity 2 +{ +"classname" "func_wall" +// brush 0 +{ +( -1274 1912 0 ) ( -1274 1728 144 ) ( -1266 1728 144 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 0 0 0 +( -1272 1912 8 ) ( -1264 1912 8 ) ( -1264 1728 152 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 0 0 0 +( -1272 1728 152 ) ( -1264 1728 152 ) ( -1264 1728 144 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 0 0 0 +( -1266 1912 0 ) ( -1266 1728 144 ) ( -1264 1728 152 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 0 0 0 +( -1272 1912 0 ) ( -1264 1912 0 ) ( -1264 1912 8 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 0 0 0 +( -1274 1728 144 ) ( -1274 1912 0 ) ( -1272 1912 8 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 0 0 0 +} +// brush 1 +{ +( -1336 1912 0 ) ( -1344 1912 0 ) ( -1344 1728 144 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 0 0 0 +( -1344 1912 8 ) ( -1336 1912 8 ) ( -1336 1728 152 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 0 0 0 +( -1344 1728 152 ) ( -1336 1728 152 ) ( -1336 1728 144 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 0 0 0 +( -1336 1728 152 ) ( -1336 1880 152 ) ( -1336 1880 144 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 0 0 0 +( -1344 1912 0 ) ( -1336 1912 0 ) ( -1336 1912 8 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 0 0 0 +( -1344 1896 144 ) ( -1344 1896 152 ) ( -1344 1728 152 ) metals/mt_pv_m26y 0 0 0 0.500000 0.500000 0 0 0 +} +} +// entity 3 +{ +"classname" "func_group" +// brush 0 +{ +( 936 -48 32 ) ( 936 -80 32 ) ( 960 -80 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 936 -80 32 ) ( 936 -48 32 ) ( 944 -48 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 936 -80 128 ) ( 960 -80 128 ) ( 960 -80 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 960 -80 128 ) ( 960 -48 128 ) ( 960 -48 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 960 -48 128 ) ( 936 -48 128 ) ( 936 -48 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 944 -80 48 ) ( 944 -48 48 ) ( 960 -64 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 1 +{ +( 960 -80 48 ) ( 960 -48 48 ) ( 928 -48 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 928 -48 224 ) ( 960 -48 224 ) ( 960 -80 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 944 -48 224 ) ( 944 -80 224 ) ( 944 -80 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 928 -80 224 ) ( 960 -80 224 ) ( 960 -80 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 960 -80 224 ) ( 960 -48 224 ) ( 960 -48 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 960 -48 224 ) ( 928 -48 224 ) ( 928 -48 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 2 +{ +( 928 -48 202 ) ( 928 -80 202 ) ( 944 -80 192 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 912 -48 224 ) ( 944 -48 224 ) ( 944 -80 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 928 -80 202 ) ( 928 -48 202 ) ( 928 -48 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 912 -80 224 ) ( 944 -80 224 ) ( 944 -80 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 944 -80 224 ) ( 944 -48 224 ) ( 944 -48 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 944 -48 224 ) ( 912 -48 224 ) ( 912 -48 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 3 +{ +( 928 -80 202 ) ( 928 -48 202 ) ( 896 -48 208 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 880 -48 224 ) ( 912 -48 224 ) ( 912 -80 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 896 -80 208 ) ( 896 -48 208 ) ( 896 -48 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 880 -80 224 ) ( 912 -80 224 ) ( 912 -80 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 928 -48 202 ) ( 928 -80 202 ) ( 928 -80 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 912 -48 224 ) ( 880 -48 224 ) ( 880 -48 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 4 +{ +( 864 -80 208 ) ( 864 -48 208 ) ( 832 -48 208 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 832 -48 224 ) ( 864 -48 224 ) ( 864 -80 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 832 -48 224 ) ( 832 -80 224 ) ( 832 -80 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 832 -80 224 ) ( 864 -80 224 ) ( 864 -80 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 896 -80 224 ) ( 896 -48 224 ) ( 896 -48 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 864 -48 224 ) ( 832 -48 224 ) ( 832 -48 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 5 +{ +( 800 -48 202 ) ( 800 -80 202 ) ( 832 -80 208 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 816 -48 224 ) ( 848 -48 224 ) ( 848 -80 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 800 -80 202 ) ( 800 -48 202 ) ( 800 -48 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 816 -80 224 ) ( 848 -80 224 ) ( 848 -80 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 832 -80 224 ) ( 832 -48 224 ) ( 832 -48 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 848 -48 224 ) ( 816 -48 224 ) ( 816 -48 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 6 +{ +( 800 -80 202 ) ( 800 -48 202 ) ( 784 -48 192 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 784 -48 224 ) ( 816 -48 224 ) ( 816 -80 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 784 -48 224 ) ( 784 -80 224 ) ( 784 -80 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 784 -80 224 ) ( 816 -80 224 ) ( 816 -80 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 800 -48 202 ) ( 800 -80 202 ) ( 800 -80 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 816 -48 224 ) ( 784 -48 224 ) ( 784 -48 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 7 +{ +( 800 -80 48 ) ( 800 -48 48 ) ( 768 -48 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 768 -48 224 ) ( 800 -48 224 ) ( 800 -80 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 768 -48 224 ) ( 768 -80 224 ) ( 768 -80 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 768 -80 224 ) ( 800 -80 224 ) ( 800 -80 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 784 -80 80 ) ( 784 -48 80 ) ( 784 -48 -16 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 800 -48 224 ) ( 768 -48 224 ) ( 768 -48 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 8 +{ +( 792 -80 32 ) ( 792 -48 32 ) ( 768 -48 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 768 -48 128 ) ( 768 -80 128 ) ( 768 -80 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 792 -80 32 ) ( 776 -80 32 ) ( 768 -80 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 792 -48 32 ) ( 792 -80 32 ) ( 784 -80 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 784 -48 128 ) ( 768 -48 128 ) ( 768 -48 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 768 -80 48 ) ( 768 -48 48 ) ( 784 -64 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +} +// entity 4 +{ +"classname" "func_group" +// brush 0 +{ +( 1280 1280 292 ) ( 1264 1288 284 ) ( 1280 1298 284 ) metals/mt_pv_m26y -34 -1 -180 1 1 134217728 8388608 0 +( 1280 1280 292 ) ( 1264 1272 284 ) ( 1264 1288 284 ) metals/mt_pv_m26y -34 -1 -180 1 1 134217728 8388608 0 +( 1280 1262 284 ) ( 1264 1272 284 ) ( 1280 1280 292 ) metals/mt_pv_m26y -34 -1 -180 1 1 134217728 8388608 0 +( 1280 1280 292 ) ( 1296 1272 284 ) ( 1280 1262 284 ) metals/mt_pv_m26y -34 -1 -180 1 1 134217728 8388608 0 +( 1280 1280 292 ) ( 1296 1288 284 ) ( 1296 1272 284 ) metals/mt_pv_m26y -34 -1 -180 1 1 134217728 8388608 0 +( 1280 1298 284 ) ( 1296 1288 284 ) ( 1280 1280 292 ) metals/mt_pv_m26y -34 -1 -180 1 1 134217728 8388608 0 +( 1296 1272 284 ) ( 1296 1288 284 ) ( 1280 1298 284 ) common/li_mf_v12c 16 16 0 1 1 134217728 8388609 35000 +} +// brush 1 +{ +( 1281 1281 311 ) ( 1281 1277 311 ) ( 1277 1277 311 ) metals/mt_pv_m26y -33 -3 -180 0.500000 0.500000 134217728 8390656 0 +( 1281 1281 273 ) ( 1281 1281 275 ) ( 1277 1281 275 ) metals/mt_pv_m26y -32 42 -180 0.500000 -0.500000 134217728 8390656 0 +( 1281 1281 292 ) ( 1280 1279 292 ) ( 1280 1279 307 ) metals/mt_pv_m26y 0 41 -180 0.500000 -0.500000 134217728 8390656 0 +( 1303 1303 292 ) ( 1259 1251 292 ) ( 1303 1251 292 ) metals/mt_pv_m26y -33 -3 -180 0.500000 0.500000 134217728 8390656 0 +( 1279 1281 307 ) ( 1280 1279 307 ) ( 1280 1279 292 ) metals/mt_pv_m26y 33 55 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 5 +{ +"angle" "5" +"classname" "item_health_lg" +"origin" "896 -560 336" +} +// entity 6 +{ +"classname" "props_crate_bust_32" +"spawnflags" "4" +"origin" "1232 -208 272" +} +// entity 7 +{ +"classname" "props_crate_bust_32" +"spawnflags" "16" +"origin" "1744 -880 140" +} +// entity 8 +{ +"classname" "props_crate_bust_32" +"spawnflags" "16" +"origin" "848 -688 48" +} +// entity 9 +{ +"classname" "props_crate_bust_32" +"spawnflags" "16" +"origin" "2160 -528 140" +} +// entity 10 +{ +"classname" "props_crate_bust_32" +"spawnflags" "4" +"origin" "2096 -816 140" +} +// entity 11 +{ +"classname" "props_crate_bust_32" +"spawnflags" "16" +"origin" "784 -480 48" +} +// entity 12 +{ +"spawnflags" "0" +"classname" "trigger_hurt_fire" +// brush 0 +{ +( 234 1066 48 ) ( 214 1066 48 ) ( 214 1046 48 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 214 1046 96 ) ( 214 1066 96 ) ( 234 1066 96 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 214 1048 96 ) ( 234 1048 96 ) ( 234 1048 48 ) common/0_trigger 0 16 0 1 1 0 128 0 +( 232 1044 96 ) ( 232 1064 96 ) ( 232 1064 48 ) common/0_trigger 0 16 0 1 1 0 128 0 +( 234 1064 96 ) ( 214 1064 96 ) ( 214 1064 48 ) common/0_trigger 0 16 0 1 1 0 128 0 +( 216 1066 96 ) ( 216 1046 96 ) ( 216 1046 48 ) common/0_trigger 0 16 0 1 1 0 128 0 +} +} +// entity 13 +{ +"spawnflags" "0" +"classname" "trigger_hurt_fire" +// brush 0 +{ +( 2556 2644 48 ) ( 2540 2644 48 ) ( 2540 2628 48 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 2540 2628 96 ) ( 2540 2644 96 ) ( 2556 2644 96 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 2540 2628 96 ) ( 2556 2628 96 ) ( 2556 2628 48 ) common/0_trigger 0 16 0 1 1 0 128 0 +( 2556 2628 96 ) ( 2556 2644 96 ) ( 2556 2644 48 ) common/0_trigger 0 16 0 1 1 0 128 0 +( 2556 2644 96 ) ( 2540 2644 96 ) ( 2540 2644 48 ) common/0_trigger 0 16 0 1 1 0 128 0 +( 2540 2644 96 ) ( 2540 2628 96 ) ( 2540 2628 48 ) common/0_trigger 0 16 0 1 1 0 128 0 +} +} +// entity 14 +{ +"origin" "2456 480 -112" +"targetname" "t121" +"spawnflags" "0" +"classname" "props_rat_spawner_node" +} +// entity 15 +{ +"origin" "2156 -564 124" +"spawnflags" "0" +"classname" "props_rat" +} +// entity 16 +{ +"origin" "2292 796 208" +"spawnflags" "0" +"classname" "props_rat" +} +// entity 17 +{ +"origin" "1816 1344 48" +"targetname" "t121" +"spawnflags" "0" +"classname" "props_rat_spawner_node" +} +// entity 18 +{ +"origin" "-2096 2880 16" +"targetname" "t121" +"spawnflags" "0" +"classname" "props_rat_spawner_node" +} +// entity 19 +{ +"origin" "-1064 1624 16" +"angle" "0" +"targetname" "t121" +"spawnflags" "0" +"classname" "props_rat_spawner_node" +} +// entity 20 +{ +"origin" "560 -400 16" +"targetname" "t121" +"spawnflags" "0" +"classname" "props_rat_spawner_node" +} +// entity 21 +{ +"origin" "2520 3408 16" +"targetname" "t121" +"spawnflags" "0" +"classname" "props_rat_spawner_node" +} +// entity 22 +{ +"origin" "944 2736 24" +"target" "t121" +"deadticks" "4" +"dmg" "1" +"spawnflags" "0" +"classname" "props_rat_spawner" +} +// entity 23 +{ +"classname" "item_whiskey" +"origin" "904 192 308" +} +// entity 24 +{ +"origin" "870 -87 42" +"option" "1" +"angle" "180" +"classname" "props_trashwall" +} +// entity 25 +{ +"classname" "trigger_unlock" +"target" "t120" +// brush 0 +{ +( 720 384 32 ) ( 704 384 32 ) ( 704 -128 32 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 696 0 240 ) ( 712 0 240 ) ( 712 0 112 ) common/0_trigger 0 16 0 1 1 0 128 0 +( 768 -128 240 ) ( 768 384 240 ) ( 768 384 112 ) common/0_trigger 0 16 0 1 1 0 128 0 +( 696 128 48 ) ( 720 128 48 ) ( 708 128 240 ) common/0_trigger 0 16 0 1 1 0 128 0 +( 712 -128 160 ) ( 672 -128 160 ) ( 692 128 160 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 736 -128 48 ) ( 736 -120 48 ) ( 736 -124 144 ) common/0_trigger 0 16 0 1 1 0 128 0 +} +} +// entity 26 +{ +"origin" "1096 88 280" +"classname" "props_crate_bust_48" +"spawnflags" "8" +} +// entity 27 +{ +"classname" "light" +"_color" "1.000000 0.259259 0.148148" +"light" "125" +"origin" "864 608 264" +} +// entity 28 +{ +"classname" "junior" +"_color" "1.000000 0.259259 0.148148" +"origin" "864 288 264" +} +// entity 29 +{ +"classname" "target_speaker" +"targetname" "t119" +"noise" "world/metalbreak" +"origin" "1152 608 264" +} +// entity 30 +{ +"classname" "target_speaker" +"targetname" "t118" +"noise" "world/metalbreak" +"origin" "1104 88 336" +} +// entity 31 +{ +"classname" "func_explosive" +"health" "1" +"type" "metal" +"mass" "150" +"target" "t118" +"spawnflags" "8" +// brush 0 +{ +( 1136 -32 256 ) ( 1136 352 256 ) ( 1120 352 256 ) sprites/grate_a_m1a 0 -63 0 1 1 0 16777216 0 +( 1128 352 480 ) ( 1128 -32 480 ) ( 1128 -32 224 ) sprites/grate_a_m1a 0 -63 0 1 1 0 16777216 0 +( 1120 64 480 ) ( 1136 64 480 ) ( 1136 64 224 ) sprites/grate_a_m1a 0 -63 0 1 1 0 16777216 0 +( 1136 -32 480 ) ( 1136 352 480 ) ( 1136 352 224 ) sprites/grate_a_m1a 0 -63 0 1 1 0 16777216 0 +( 1136 128 480 ) ( 1120 128 480 ) ( 1120 128 224 ) sprites/grate_a_m1a 0 -63 0 1 1 0 16777216 0 +( 1120 -32 320 ) ( 1120 -8 320 ) ( 1136 -20 320 ) sprites/grate_a_m1a 0 -63 0 1 1 0 16777216 0 +} +} +// entity 32 +{ +"spawnflags" "8" +"classname" "func_explosive" +"type" "metal" +"mass" "150" +"health" "1" +"target" "t119" +// brush 0 +{ +( 1152 640 224 ) ( 896 640 224 ) ( 896 448 224 ) sprites/grate_a_m1a 64 33 270 1 1 0 16777216 0 +( 896 448 228 ) ( 896 640 228 ) ( 1152 640 228 ) sprites/grate_a_m1a 64 33 270 1 1 0 16777216 0 +( 888 576 232 ) ( 1144 576 232 ) ( 1144 576 224 ) sprites/grate_a_m1a 64 33 270 1 1 0 16777216 0 +( 1184 448 232 ) ( 1184 640 232 ) ( 1184 640 224 ) sprites/grate_a_m1a 64 33 270 1 1 0 16777216 0 +( 1152 640 232 ) ( 896 640 232 ) ( 896 640 224 ) sprites/grate_a_m1a 64 33 270 1 1 0 16777216 0 +( 1120 640 232 ) ( 1120 448 232 ) ( 1120 448 224 ) sprites/grate_a_m1a 64 33 270 1 1 0 16777216 0 +} +} +// entity 33 +{ +"classname" "func_wall" +// brush 0 +{ +( 504 1312 112 ) ( 504 1320 112 ) ( 632 1320 112 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 0 0 0 +( 504 1184 176 ) ( 632 1184 176 ) ( 632 1184 48 ) bricks/b_pv_v1c -24 80 0 1 1 0 0 0 +( 712 1352 144 ) ( 712 1360 144 ) ( 712 1360 16 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 0 0 0 +( 640 1188 176 ) ( 512 1188 176 ) ( 512 1188 48 ) props2/ne_pv_C03 16 32 0 -0.500000 0.500000 0 1 300 +( 488 1312 80 ) ( 528 1312 80 ) ( 508 1320 80 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 0 0 0 +( 680 1312 48 ) ( 680 1320 48 ) ( 680 1316 208 ) metals/mt_pv_m26y 0 16 -180 0.500000 0.500000 0 0 0 +} +} +// entity 34 +{ +"classname" "light" +"_color" "1.000000 0.680000 0.040000" +"style" "6" +"light" "150" +"origin" "696 1198 96" +} +// entity 35 +{ +"classname" "func_wall" +// brush 0 +{ +( 338 424 320 ) ( 338 424 448 ) ( 346 426 448 ) metals/mt_pv_m26y -8 8 0 1 1 0 0 0 +( 330 427 320 ) ( 330 427 448 ) ( 335 421 448 ) metals/mt_pv_m26y 16 8 0 1 1 0 0 0 +( 330 437 320 ) ( 330 437 448 ) ( 325 431 448 ) metals/mt_pv_m26y 16 8 0 1 1 0 0 0 +( 338 440 320 ) ( 338 440 448 ) ( 330 442 448 ) metals/mt_pv_m26y -8 8 0 1 1 0 0 0 +( 344 432 320 ) ( 344 432 448 ) ( 344 440 448 ) metals/mt_pv_m26y 16 8 0 1 1 0 0 0 +( 328 424 328 ) ( 344 424 328 ) ( 344 440 328 ) metals/mt_pv_m26y -8 -8 0 1 1 0 0 0 +( 344 440 408 ) ( 344 424 408 ) ( 328 424 408 ) metals/mt_pv_m26y -8 -8 0 1 1 0 0 0 +} +} +// entity 36 +{ +"classname" "item_flashlight" +"origin" "808 80 320" +} +// entity 37 +{ +"option" "1" +"classname" "props_trashcorner" +"angle" "180" +"lightit" "8" +"origin" "-1048 1320 8" +} +// entity 38 +{ +"classname" "props_trashbottle" +"lightit" "8" +"origin" "-684 1506 2" +} +// entity 39 +{ +"option" "1" +"classname" "props_trashwall" +"lightit" "8" +"origin" "286 1061 10" +} +// entity 40 +{ +"option" "1" +"classname" "props_trashbottle" +"lightit" "8" +"angle" "45" +"origin" "344 990 2" +} +// entity 41 +{ +"option" "1" +"classname" "props_trashwall" +"lightit" "8" +"origin" "838 2937 10" +} +// entity 42 +{ +"option" "1" +"classname" "props_trashwall" +"angle" "270" +"origin" "1126 2241 18" +"lightit" "8" +} +// entity 43 +{ +"option" "1" +"classname" "props_trashcorner" +"angle" "90" +"lightit" "7" +"origin" "-1496 2328 8" +} +// entity 44 +{ +"option" "1" +"classname" "props_trashbottle" +"angle" "315" +"origin" "-1248 1898 2" +"lightit" "8" +} +// entity 45 +{ +"option" "1" +"classname" "props_trashpaper" +"origin" "-1326 1922 2" +"lightit" "8" +} +// entity 46 +{ +"option" "1" +"classname" "props_trashcorner" +"origin" "-1000 2200 8" +"lightit" "8" +} +// entity 47 +{ +"option" "1" +"classname" "props_trashwall" +"angle" "270" +"origin" "-986 1801 10" +"lightit" "8" +} +// entity 48 +{ +"option" "1" +"classname" "props_trashcorner" +"angle" "90" +"origin" "-2072 2968 8" +"lightit" "8" +} +// entity 49 +{ +"option" "1" +"classname" "props_trashpaper" +"angle" "225" +"origin" "-1806 2610 2" +} +// entity 50 +{ +"option" "1" +"classname" "props_trashcorner" +"angle" "180" +"origin" "-1944 2088 8" +"lightit" "8" +} +// entity 51 +{ +"option" "1" +"classname" "props_trashwall" +"angle" "180" +"origin" "-1794 2457 10" +"lightit" "7" +} +// entity 52 +{ +"option" "1" +"origin" "-1804 2666 2" +"angle" "315" +"classname" "props_trashbottle" +"lightit" "7" +} +// entity 53 +{ +"classname" "path_corner_cast" +"targetname" "cam_1_viewtarget" +"origin" "-1917 2647 32" +} +// entity 54 +{ +"origin" "1920 1242 135" +"spawnflags" "2" +"light" "100" +"health" "196" +"classname" "light_bulb" +} +// entity 55 +{ +"origin" "-188 320 140" +"targetname" "t117" +"classname" "info_null" +} +// entity 56 +{ +"classname" "target_speaker" +"noise" "world/boardbreak" +"volume" "0.7" +"targetname" "t116" +"origin" "-1928 2448 56" +} +// entity 57 +{ +"classname" "func_explosive" +"health" "10" +"type" "wood" +"mass" "50" +"volume" "0.7" +"target" "t116" +// brush 0 +{ +( -1932 2459 2 ) ( -1948 2459 2 ) ( -1948 2455 0 ) fx/break_wd2 24 0 0 0.500000 0.500000 134217728 134217728 0 +( -1948 2421 94 ) ( -1948 2425 96 ) ( -1932 2425 96 ) fx/break_wd2 24 0 0 0.500000 0.500000 134217728 134217728 0 +( -1948 2432 64 ) ( -1932 2432 64 ) ( -1932 2455 0 ) fx/break_wd2 24 0 0 0.500000 0.500000 134217728 134217728 0 +( -1942 2432 64 ) ( -1942 2436 66 ) ( -1942 2459 2 ) fx/break_wd2 24 0 20 0.500000 0.500000 134217728 134217728 0 +( -1932 2436 66 ) ( -1948 2436 66 ) ( -1948 2459 2 ) fx/break_wd2 24 0 0 0.500000 0.500000 134217728 134217728 0 +( -1948 2436 66 ) ( -1948 2432 64 ) ( -1948 2455 0 ) fx/break_wd2 24 0 20 0.500000 0.500000 134217728 134217728 0 +} +} +// entity 58 +{ +"duration" "1" +"classname" "misc_cutscene_trigger" +"scriptname" "intro_end" +"target" "cam_1" +// brush 0 +{ +( -1768 2744 0 ) ( -1808 2744 0 ) ( -1808 2696 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -1808 2696 72 ) ( -1808 2744 72 ) ( -1768 2744 72 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -1808 2696 56 ) ( -1768 2696 56 ) ( -1768 2696 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -1768 2696 56 ) ( -1768 2744 56 ) ( -1768 2744 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -1768 2744 56 ) ( -1808 2744 56 ) ( -1808 2744 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -1808 2744 56 ) ( -1808 2696 56 ) ( -1808 2696 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 59 +{ +"classname" "target_speaker" +"spawnflags" "4" +"noise" "world/hey_al" +"targetname" "t115" +"origin" "1136 920 120" +} +// entity 60 +{ +"classname" "trigger_once" +"target" "t115" +// brush 0 +{ +( 1216 896 32 ) ( 1200 896 32 ) ( 1200 848 32 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1200 848 160 ) ( 1200 896 160 ) ( 1216 896 160 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1200 848 80 ) ( 1216 848 80 ) ( 1216 848 32 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1216 848 80 ) ( 1216 896 80 ) ( 1216 896 32 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1216 896 80 ) ( 1200 896 80 ) ( 1200 896 32 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1088 896 80 ) ( 1088 848 80 ) ( 1088 848 32 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 61 +{ +"classname" "func_wall" +// brush 0 +{ +( 480 702 148 ) ( 480 710 148 ) ( 416 710 148 ) props/sign_v1 -33 3 -180 1 -1 134217728 8388608 0 +( 416 710 164 ) ( 480 710 164 ) ( 480 702 164 ) props/sign_v1 -33 3 -180 1 -1 134217728 8388608 0 +( 416 710 148 ) ( 416 702 148 ) ( 416 702 116 ) props/sign_v1 -60 4 -180 1 -1 134217728 8388608 0 +( 416 704 148 ) ( 480 704 148 ) ( 480 704 116 ) metals/mt_sr_b1a 0 -24 0 0.500000 0.500000 134217728 0 0 +( 480 702 148 ) ( 480 710 148 ) ( 480 710 116 ) props/sign_v1 -60 4 -180 1 -1 134217728 8388608 0 +( 472 705 147 ) ( 408 705 147 ) ( 408 705 115 ) props/sign_v1 -32 4 -180 1 -1 134217728 8388608 0 +} +} +// entity 62 +{ +"moral" "1" +"angle" "0" +"cast_group" "3" +"classname" "ai_territory" +// brush 0 +{ +( 1632 3072 0 ) ( 1568 3072 0 ) ( 1568 2960 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1568 2960 128 ) ( 1568 3072 128 ) ( 1632 3072 128 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1568 2944 128 ) ( 1632 2944 128 ) ( 1632 2944 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1632 2960 128 ) ( 1632 3072 128 ) ( 1632 3072 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1632 3072 128 ) ( 1568 3072 128 ) ( 1568 3072 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1568 3072 128 ) ( 1568 2960 128 ) ( 1568 2960 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 63 +{ +"cast_group" "3" +"classname" "ai_event_hostile" +// brush 0 +{ +( 1858 2592 -112 ) ( 1822 2592 -112 ) ( 1822 2560 -112 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1824 2560 0 ) ( 1824 2592 0 ) ( 1860 2592 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1824 2560 0 ) ( 1860 2560 0 ) ( 1860 2560 -128 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1952 2559 0 ) ( 1952 2591 0 ) ( 1952 2591 -128 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1860 2592 0 ) ( 1824 2592 0 ) ( 1824 2592 -128 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1824 2592 0 ) ( 1824 2560 0 ) ( 1824 2560 -128 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 64 +{ +"target" "t108" +"classname" "func_explosive" +"type" "metal" +"health" "10" +"mass" "150" +// brush 0 +{ +( -254 1526 0 ) ( -286 1530 0 ) ( -290 1498 0 ) sprites/grate_a_m1a 45 -41 -7 0.500000 0.500000 0 16777216 0 +( -290 1498 2 ) ( -286 1530 2 ) ( -254 1526 2 ) sprites/grate_a_m1a 45 -41 -7 0.500000 0.500000 0 16777216 0 +( -290 1498 22 ) ( -258 1494 22 ) ( -258 1494 14 ) sprites/grate_a_m1a 0 0 0 1 1 0 0 0 +( -258 1494 22 ) ( -254 1526 22 ) ( -254 1526 14 ) sprites/grate_a_m1a 0 0 0 1 1 0 0 0 +( -254 1526 22 ) ( -286 1530 22 ) ( -286 1530 14 ) sprites/grate_a_m1a 0 0 0 1 1 0 0 0 +( -286 1530 22 ) ( -290 1498 22 ) ( -290 1498 14 ) sprites/grate_a_m1a 0 0 0 1 1 0 0 0 +} +} +// entity 65 +{ +"target" "t111" +"classname" "func_explosive" +"type" "metal" +"health" "25" +"mass" "200" +// brush 0 +{ +( -467 1514 44 ) ( -467 1486 44 ) ( -467 1486 -4 ) metals/mt_sr_b1b -53 -16 0 1 1 134217728 8388608 0 +( -466 1486 -3 ) ( -466 1486 45 ) ( -466 1514 45 ) props2/stove_pv_v -16 13 -90 0.500000 0.500000 134217728 16777216 0 +( -432 1486 4 ) ( -432 1514 4 ) ( -504 1514 4 ) metals/mt_sr_b1b -53 3 90 1 1 134217728 0 0 +( -432 1509 -3 ) ( -432 1509 45 ) ( -504 1509 45 ) metals/m_hl_c10b 0 0 0 1 1 134217728 0 0 +( -432 1514 29 ) ( -432 1486 29 ) ( -504 1486 29 ) metals/m_hl_c10b 49 60 0 0.500000 0.500000 134217728 16777216 0 +( -432 1480 45 ) ( -432 1480 -3 ) ( -504 1480 -3 ) metals/m_hl_c10b -71 89 -90 1 1 134217728 0 0 +} +} +// entity 66 +{ +"classname" "func_wall" +// brush 0 +{ +( 546 2160 128 ) ( 530 2160 128 ) ( 530 2048 128 ) props2/si_sr_m2cc 0 -10 90 1 1 0 0 0 +( 530 2048 144 ) ( 530 2160 144 ) ( 546 2160 144 ) props2/si_sr_m2cc 0 -10 90 1 1 0 0 0 +( 545 2048 152 ) ( 545 2160 152 ) ( 545 2160 24 ) props2/si_sr_m2cc 32 0 0 0.500000 0.500000 0 8388608 0 +( 544 2224 152 ) ( 544 2112 152 ) ( 544 2112 24 ) props2/si_sr_m2cc 16 0 0 1 1 0 0 0 +( 522 2224 88 ) ( 554 2224 88 ) ( 538 2224 152 ) props2/si_sr_m2cc 5 -10 90 1 1 0 0 0 +( 562 2192 88 ) ( 530 2192 88 ) ( 546 2192 152 ) props2/si_sr_m2cc 5 -10 90 1 1 0 0 0 +} +} +// entity 67 +{ +"classname" "item_cashbagsmall" +"origin" "1080 208 293" +"currentcash" "100" +} +// entity 68 +{ +"_fade" "0.6" +"classname" "light" +"_color" "1.000000 0.815686 0.666667" +"light" "50" +"origin" "1076 204 288" +} +// entity 69 +{ +"option" "1" +"classname" "props_tablesetA" +"origin" "1922 1243 78" +} +// entity 70 +{ +"classname" "props_radio" +"origin" "-74 319 104" +"health" "666" +} +// entity 71 +{ +"classname" "props_crate_bust_32" +"origin" "2520 608 -104" +"_minlight" ".4" +"spawnflags" "4" +} +// entity 72 +{ +"classname" "target_speaker" +"noise" "world/metalbreak.wav" +"targetname" "t107" +"origin" "2032 1056 240" +} +// entity 73 +{ +"targetname" "t104" +"origin" "-1940 2736 88" +"volume" "1" +"noise" "world/boardbreak.wav" +"classname" "target_speaker" +} +// entity 74 +{ +"target" "t106" +"type" "wood" +"health" "20" +"mass" "50" +"classname" "func_explosive" +// brush 0 +{ +( -1977 2760 0 ) ( -1993 2760 0 ) ( -1993 2752 0 ) fx/break_wd2 26 34 1 1 1 0 134217728 0 +( -1995 2752 120 ) ( -1995 2760 120 ) ( -1979 2760 120 ) fx/break_wd2 26 34 1 1 1 0 134217728 0 +( -1993 2752 16 ) ( -1977 2752 16 ) ( -1977 2752 0 ) fx/break_wd2 26 34 1 1 1 0 134217728 0 +( -1977 2752 16 ) ( -1977 2760 16 ) ( -1977 2760 0 ) fx/break_wd2 26 34 1 1 1 0 134217728 0 +( -1977 2760 16 ) ( -1993 2760 16 ) ( -1993 2760 0 ) fx/break_wd2 26 34 1 1 1 0 134217728 0 +( -1993 2760 16 ) ( -1993 2752 16 ) ( -1993 2752 0 ) fx/break_wd2 26 34 1 1 1 0 134217728 0 +} +} +// entity 75 +{ +"target" "t105" +"type" "wood" +"health" "20" +"mass" "50" +"classname" "func_explosive" +// brush 0 +{ +( -1976 2760 4 ) ( -1976 2752 4 ) ( -1952 2752 2 ) fx/break_wd2 24 0 0 1 1 0 134217728 0 +( -1953 2760 126 ) ( -1953 2752 126 ) ( -1974 2752 128 ) fx/break_wd2 24 24 0 1 1 0 134217728 0 +( -1976 2752 16 ) ( -1960 2752 16 ) ( -1960 2752 0 ) fx/break_wd2 24 0 0 1 1 0 134217728 0 +( -1953 2752 126 ) ( -1953 2760 126 ) ( -1952 2760 2 ) fx/break_wd2 26 0 0 1 1 0 134217728 0 +( -1960 2760 16 ) ( -1976 2760 16 ) ( -1976 2760 0 ) fx/break_wd2 24 0 0 1 1 0 134217728 0 +( -1974 2760 128 ) ( -1974 2752 128 ) ( -1976 2752 4 ) fx/break_wd2 26 0 0 1 1 0 134217728 0 +} +} +// entity 76 +{ +"target" "t104" +"mass" "50" +"health" "20" +"type" "wood" +"classname" "func_explosive" +// brush 0 +{ +( -1928 2759 1 ) ( -1950 2759 1 ) ( -1950 2751 1 ) fx/break_wd2 34 0 0 1 1 0 134217728 0 +( -1950 2752 130 ) ( -1950 2760 130 ) ( -1929 2760 128 ) fx/break_wd2 34 0 0 1 1 0 134217728 0 +( -1928 2751 1 ) ( -1950 2751 1 ) ( -1950 2752 130 ) fx/break_wd2 34 0 0 1 1 0 134217728 0 +( -1929 2752 128 ) ( -1929 2760 128 ) ( -1928 2760 0 ) fx/break_wd2 26 0 0 1 1 0 134217728 0 +( -1950 2759 1 ) ( -1928 2759 1 ) ( -1929 2760 128 ) fx/break_wd2 34 0 0 1 1 0 134217728 0 +( -1950 2760 130 ) ( -1950 2752 130 ) ( -1950 2752 1 ) fx/break_wd2 26 0 0 1 1 0 134217728 0 +} +} +// entity 77 +{ +"classname" "item_cashroll" +"currentcash" "5" +"origin" "2156 -872 140" +} +// entity 78 +{ +"classname" "ammo_bullets" +"origin" "-1120 2424 -112" +} +// entity 79 +{ +"origin" "-1328 2324 72" +"_color" "1.000000 0.501961 0.000000" +"style" "1" +"light" "200" +"classname" "junior" +} +// entity 80 +{ +"classname" "junior" +"_color" "1.000000 0.792208 0.727273" +"light" "200" +"origin" "-1664 2960 -32" +} +// entity 81 +{ +"classname" "info_player_start" +"angle" "90" +"targetname" "pawn_sr" +"origin" "768 1328 56" +} +// entity 82 +{ +"classname" "target_changelevel" +"targetname" "t103" +"map" "pawn_sr$sr1" +"origin" "768 1272 104" +} +// entity 83 +{ +"classname" "trigger_multiple" +"target" "t103" +// brush 0 +{ +( 680 1360 160 ) ( 680 1368 160 ) ( 808 1368 160 ) common/0_trigger 0 -8 0 1 1 0 128 0 +( 720 1224 128 ) ( 848 1224 128 ) ( 848 1224 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 896 1400 128 ) ( 896 1408 128 ) ( 896 1408 0 ) common/0_trigger 8 0 0 1 1 0 128 0 +( 800 1256 128 ) ( 672 1256 128 ) ( 672 1256 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 664 1360 32 ) ( 704 1360 32 ) ( 684 1368 32 ) common/0_trigger 0 -8 0 1 1 0 128 0 +( 640 1384 32 ) ( 640 1392 32 ) ( 640 1388 192 ) common/0_trigger 8 0 0 1 1 0 128 0 +} +} +// entity 84 +{ +"classname" "misc_skidrow_ai_reset" +// brush 0 +{ +( 128 1216 0 ) ( -64 1216 0 ) ( -64 1088 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -64 1088 128 ) ( -64 1216 128 ) ( 128 1216 128 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -64 1024 16 ) ( 128 1024 16 ) ( 128 1024 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 128 1088 16 ) ( 128 1216 16 ) ( 128 1216 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 128 1088 16 ) ( -64 1088 16 ) ( -64 1088 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -64 1216 16 ) ( -64 1088 16 ) ( -64 1088 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 85 +{ +"classname" "func_group" +// brush 0 +{ +( -1792 2622 48 ) ( -1792 2562 48 ) ( -1732 2564 66 ) props/dump_m4a -21 -15 90 0.750000 0.750000 0 8388608 0 +( -1792 2564 52 ) ( -1792 2624 52 ) ( -1732 2624 70 ) props/dump_m4a -21 -15 90 0.750000 0.750000 0 8388608 0 +( -1792 2624 50 ) ( -1792 2564 50 ) ( -1792 2564 48 ) props/dump_m4a -21 -25 0 0.750000 0.750000 0 8388608 0 +( -1792 2564 68 ) ( -1732 2564 68 ) ( -1732 2564 4 ) props/dump_m4a -21 -15 90 0.750000 0.750000 0 8388608 0 +( -1732 2564 70 ) ( -1732 2624 70 ) ( -1732 2624 6 ) props/dump_m4a -21 -25 0 0.750000 0.750000 0 8388608 0 +( -1732 2624 68 ) ( -1792 2624 68 ) ( -1792 2624 4 ) props/dump_m4a -21 -15 90 0.750000 0.750000 0 8388608 0 +} +// brush 1 +{ +( -1732 2816 0 ) ( -1796 2816 0 ) ( -1796 2688 0 ) props/dump_m1a -4 -31 90 1 0.750000 0 0 0 +( -1732 2688 66 ) ( -1732 2684 66 ) ( -1796 2684 48 ) props/dump_m4a -21 -15 90 0.750000 0.750000 0 8388608 0 +( -1732 2684 66 ) ( -1732 2688 66 ) ( -1732 2688 0 ) props/dump_m4a -21 -28 0 0.750000 0.750000 0 0 0 +( -1796 2784 124 ) ( -1796 2656 124 ) ( -1796 2656 -4 ) props/dump_m1a 0 0 0 -1 0.750000 0 8388608 0 +( -1784 2684 -4 ) ( -1792 2684 -4 ) ( -1788 2684 36 ) props/dump_m4a 16 0 -180 1 -1 0 8388608 0 +( -1801 2688 -4 ) ( -1793 2688 -4 ) ( -1797 2688 36 ) props/dump_m2a 68 0 -180 -1 -0.750000 0 8388608 0 +} +// brush 2 +{ +( -1736 2692 0 ) ( -1800 2692 0 ) ( -1800 2564 0 ) props/dump_m1a 0 -38 90 1 0.750000 0 0 0 +( -1800 2564 48 ) ( -1800 2692 48 ) ( -1736 2692 48 ) props/dump_m4a -21 -15 90 0.750000 0.750000 0 8388608 0 +( -1792 2564 124 ) ( -1792 2692 124 ) ( -1792 2692 -4 ) props/dump_m4a 0 0 0 1 1 0 8388608 0 +( -1796 2664 124 ) ( -1796 2536 124 ) ( -1796 2536 -4 ) props/dump_m1a 0 0 0 -1 0.750000 0 8388608 0 +( -1788 2564 -4 ) ( -1796 2564 -4 ) ( -1792 2564 36 ) props/dump_m2a 52 0 -180 1 -0.750000 0 0 0 +( -1796 2684 -4 ) ( -1788 2684 -4 ) ( -1792 2684 36 ) props/dump_m1a 52 0 -180 1 -0.750000 0 0 0 +} +// brush 3 +{ +( -1732 2692 0 ) ( -1796 2692 0 ) ( -1796 2564 0 ) props/dump_m1a 0 -31 90 1 0.750000 0 0 0 +( -1732 2564 66 ) ( -1732 2560 66 ) ( -1796 2560 48 ) props/dump_m4a -21 -15 90 0.750000 0.750000 0 8388608 0 +( -1732 2560 66 ) ( -1732 2564 66 ) ( -1732 2564 0 ) props/dump_m4a -21 -28 0 0.750000 0.750000 0 0 0 +( -1796 2660 124 ) ( -1796 2532 124 ) ( -1796 2532 -4 ) props/dump_m1a 0 0 0 -1 0.750000 0 8388608 0 +( -1784 2560 -4 ) ( -1792 2560 -4 ) ( -1788 2560 36 ) props/dump_m2a 68 0 -180 -1 -0.750000 0 8388608 0 +( -1801 2564 -4 ) ( -1793 2564 -4 ) ( -1797 2564 36 ) props/dump_m4a 16 0 -180 1 -1 0 8388608 0 +} +// brush 4 +{ +( -1732 2692 0 ) ( -1796 2692 0 ) ( -1796 2564 0 ) props/dump_m1a 0 -32 90 1 0.750000 0 0 0 +( -1796 2564 4 ) ( -1796 2692 4 ) ( -1732 2692 4 ) props/dump_m4a 0 0 0 1 1 0 8388608 0 +( -1736 2568 124 ) ( -1736 2696 124 ) ( -1736 2696 -4 ) props/dump_m1a 0 0 0 1 0.750000 0 0 0 +( -1792 2664 124 ) ( -1792 2536 124 ) ( -1792 2536 -4 ) props/dump_m1a 0 0 0 1 0.750000 0 0 0 +( -1784 2564 -4 ) ( -1792 2564 -4 ) ( -1788 2564 36 ) props/dump_m2a 48 0 -180 1 -0.750000 0 0 0 +( -1792 2684 -4 ) ( -1784 2684 -4 ) ( -1788 2684 36 ) props/dump_m1a 48 0 -180 1 -0.750000 0 0 0 +} +// brush 5 +{ +( -1732 2692 0 ) ( -1796 2692 0 ) ( -1796 2564 0 ) props/dump_m1a 0 -33 90 1 0.750000 0 0 0 +( -1796 2564 66 ) ( -1796 2692 66 ) ( -1732 2692 66 ) props/dump_m4a 0 -48 90 1 1 0 0 0 +( -1732 2564 124 ) ( -1732 2692 124 ) ( -1732 2692 -4 ) props/dump_m4a -21 -28 0 0.750000 0.750000 0 0 0 +( -1736 2672 124 ) ( -1736 2544 124 ) ( -1736 2544 -4 ) props/dump_m4a 0 0 0 1 1 0 8388608 0 +( -1784 2564 -4 ) ( -1792 2564 -4 ) ( -1788 2564 36 ) props/dump_m2a 52 0 -180 1 -0.750000 0 0 0 +( -1792 2684 -4 ) ( -1784 2684 -4 ) ( -1788 2684 36 ) props/dump_m1a 48 0 -180 1 -0.750000 0 0 0 +} +// brush 6 +{ +( -1736 2684 66 ) ( -1736 2624 66 ) ( -1732 2624 66 ) props/dump_m4a -21 -2 90 0.750000 0.750000 0 0 0 +( -1736 2684 130 ) ( -1736 2624 130 ) ( -1740 2624 130 ) props/dump_m4a -21 -2 90 0.750000 0.750000 0 0 0 +( -1736 2624 130 ) ( -1736 2684 130 ) ( -1732 2684 66 ) props/dump_m4a -21 -25 0 0.750000 0.750000 0 0 0 +( -1740 2684 130 ) ( -1740 2624 130 ) ( -1736 2624 66 ) props/dump_m4a -21 -25 0 0.750000 0.750000 0 8388608 0 +( -1784 2624 62 ) ( -1792 2624 62 ) ( -1788 2624 102 ) props/dump_m4a 5 -25 -180 0.750000 -0.750000 0 0 0 +( -1792 2684 62 ) ( -1784 2684 62 ) ( -1788 2684 102 ) props/dump_m4a 5 -25 -180 0.750000 -0.750000 0 0 0 +} +} +// entity 86 +{ +"option" "1" +"origin" "914 226 298" +"classname" "props_phone" +"angle" "225" +} +// entity 87 +{ +"classname" "info_player_start" +"angle" "180" +"targetname" "sewer" +"origin" "2448 1920 -104" +} +// entity 88 +{ +"classname" "target_changelevel" +"targetname" "t95" +"origin" "2672 1920 -40" +"map" "sewer$sr1" +} +// entity 89 +{ +"classname" "trigger_multiple" +"target" "t95" +// brush 0 +{ +( 2704 2032 -128 ) ( 2704 1824 -128 ) ( 2720 1824 -128 ) common/0_trigger -16 0 0 1 1 0 128 0 +( 2720 1824 0 ) ( 2704 1824 0 ) ( 2704 2032 0 ) common/0_trigger -16 0 0 1 1 0 128 0 +( 2712 1824 48 ) ( 2712 2032 48 ) ( 2712 2032 -144 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 2696 2032 48 ) ( 2696 1824 48 ) ( 2696 1824 -144 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 2704 1856 48 ) ( 2720 1856 48 ) ( 2720 1856 -144 ) common/0_trigger -16 0 0 1 1 0 128 0 +( 2696 1984 -144 ) ( 2712 1984 -144 ) ( 2704 1984 80 ) common/0_trigger -16 0 0 1 1 0 128 0 +} +} +// entity 90 +{ +"classname" "func_areaportal" +"targetname" "t94" +// brush 0 +{ +( 749 1449 32 ) ( 736 1449 32 ) ( 736 1447 32 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 736 1447 144 ) ( 736 1449 144 ) ( 749 1449 144 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 736 1447 148 ) ( 749 1447 148 ) ( 749 1447 28 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 800 1445 148 ) ( 800 1447 148 ) ( 800 1447 28 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 749 1449 148 ) ( 736 1449 148 ) ( 736 1449 28 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 736 1449 148 ) ( 736 1447 148 ) ( 736 1447 28 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 91 +{ +"classname" "func_wall" +// brush 0 +{ +( 2026 1921 -152 ) ( 2026 1921 -120 ) ( 2045 1927 -120 ) bricks/s_sr_m6 0 -24 0 1 1 0 4194304 0 +( 2004 1928 -152 ) ( 2004 1928 -120 ) ( 2016 1912 -120 ) bricks/s_sr_m6 0 -24 0 1 1 0 4194304 0 +( 2004 1952 -152 ) ( 2004 1952 -120 ) ( 1992 1936 -120 ) bricks/s_sr_m6 0 -24 0 1 1 0 4194304 0 +( 2026 1959 -152 ) ( 2026 1959 -120 ) ( 2007 1965 -120 ) bricks/s_sr_m6 0 -24 0 1 1 0 4194304 0 +( 2040 1940 -152 ) ( 2040 1940 -120 ) ( 2040 1960 -120 ) bricks/s_sr_m6 0 -24 0 1 1 0 4194304 0 +( 2000 1920 -152 ) ( 2040 1920 -152 ) ( 2040 1960 -152 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +( 2040 1960 -120 ) ( 2040 1920 -120 ) ( 2000 1920 -120 ) bricks/s_sr_m6 0 0 0 1 1 0 4194304 0 +} +// brush 1 +{ +( 2081 1945 -152 ) ( 2081 1945 -120 ) ( 2108 1954 -120 ) bricks/s_sr_m6 -16 0 0 1 1 0 4194304 0 +( 2032 1936 -152 ) ( 2008 1976 -152 ) ( 2040 1976 -104 ) bricks/s_sr_m6 -16 0 0 1 1 0 4194304 0 +( 2049 1988 -152 ) ( 2049 1988 -120 ) ( 2033 1965 -120 ) bricks/s_sr_m6 -16 0 0 1 1 0 4194304 0 +( 2081 1999 -152 ) ( 2081 1999 -120 ) ( 2054 2008 -120 ) bricks/s_sr_m6 -16 0 0 1 1 0 4194304 0 +( 2100 1972 -152 ) ( 2100 1972 -120 ) ( 2100 2000 -120 ) bricks/s_sr_m6 -16 0 0 1 1 0 4194304 0 +( 2008 1976 -152 ) ( 2032 1936 -152 ) ( 2104 1952 -152 ) bricks/s_sr_m6 -16 16 0 1 1 0 4194304 0 +( 2096 2000 -104 ) ( 2096 1944 -104 ) ( 2048 1944 -104 ) bricks/s_sr_m6 -16 16 0 1 1 0 4194304 0 +} +// brush 2 +{ +( 2072 2000 -152 ) ( 2104 2008 -152 ) ( 2104 1976 -120 ) bricks/s_sr_m6 16 47 -180 1 1 0 4194304 0 +( 2124 1952 -152 ) ( 2124 1952 -120 ) ( 2112 1968 -120 ) bricks/s_sr_m6 40 -23 -180 1 -1 0 4194304 0 +( 2124 1928 -152 ) ( 2124 1928 -120 ) ( 2136 1944 -120 ) bricks/s_sr_m6 40 -23 -180 1 -1 0 4194304 0 +( 2112 1896 -152 ) ( 2072 1904 -152 ) ( 2072 1928 -120 ) bricks/s_sr_m6 16 -23 -180 1 -1 0 4194304 0 +( 2072 1940 -152 ) ( 2072 1940 -120 ) ( 2072 1920 -120 ) bricks/s_sr_m6 40 -23 -180 1 -1 0 4194304 0 +( 2072 1904 -152 ) ( 2112 1896 -152 ) ( 2136 1944 -152 ) bricks/s_sr_m6 16 -40 -180 1 1 0 4194304 0 +( 2088 1920 -120 ) ( 2088 1960 -120 ) ( 2128 1960 -120 ) bricks/s_sr_m6 16 -40 -180 1 1 0 4194304 0 +} +// brush 3 +{ +( 2168 1904 -160 ) ( 2136 1896 -160 ) ( 2136 1944 -112 ) bricks/s_sr_m6 8 -8 0 1 1 0 4194304 0 +( 2125 1954 -160 ) ( 2125 1954 -112 ) ( 2139 1935 -112 ) bricks/s_sr_m6 -16 -8 0 1 1 0 4194304 0 +( 2125 1982 -160 ) ( 2125 1982 -112 ) ( 2111 1963 -112 ) bricks/s_sr_m6 -16 -8 0 1 1 0 4194304 0 +( 2151 1991 -160 ) ( 2151 1991 -112 ) ( 2128 1998 -112 ) bricks/s_sr_m6 8 -8 0 1 1 0 4194304 0 +( 2168 1968 -160 ) ( 2168 1968 -112 ) ( 2168 1992 -112 ) bricks/s_sr_m6 -16 -8 0 1 1 0 4194304 0 +( 2136 1896 -160 ) ( 2168 1904 -160 ) ( 2168 1984 -160 ) bricks/s_sr_m6 8 16 0 1 1 0 4194304 0 +( 2168 1992 -112 ) ( 2168 1944 -112 ) ( 2120 1944 -112 ) bricks/s_sr_m6 8 16 0 1 1 0 4194304 0 +} +// brush 4 +{ +( 2178 1930 -168 ) ( 2178 1930 -120 ) ( 2208 1940 -120 ) bricks/s_sr_m6 24 -8 0 1 1 0 4194304 0 +( 2142 1941 -168 ) ( 2142 1941 -120 ) ( 2161 1915 -120 ) bricks/s_sr_m6 -8 -8 0 1 1 0 4194304 0 +( 2142 1979 -168 ) ( 2142 1979 -120 ) ( 2123 1953 -120 ) bricks/s_sr_m6 -8 -8 0 1 1 0 4194304 0 +( 2178 1990 -168 ) ( 2178 1990 -120 ) ( 2148 2000 -120 ) bricks/s_sr_m6 24 -8 0 1 1 0 4194304 0 +( 2240 1984 -168 ) ( 2240 1936 -168 ) ( 2200 1936 -120 ) bricks/s_sr_m6 -8 -8 0 1 1 0 4194304 0 +( 2240 1936 -168 ) ( 2240 1984 -168 ) ( 2152 2000 -168 ) bricks/s_sr_m6 24 8 0 1 1 0 4194304 0 +( 2192 1992 -120 ) ( 2192 1928 -120 ) ( 2144 1928 -120 ) bricks/s_sr_m6 24 8 0 1 1 0 4194304 0 +} +} +// entity 92 +{ +"spawnflags" "2" +"classname" "func_door_rotating" +"distance" "90" +"speed" "65" +"sounds" "4" +// brush 0 +{ +( 2313 1891 -128 ) ( 2311 1891 -128 ) ( 2311 1889 -128 ) common/0_origin 0 0 0 1 1 16777216 0 0 +( 2311 1889 -16 ) ( 2311 1891 -16 ) ( 2313 1891 -16 ) common/0_origin 0 0 0 1 1 16777216 0 0 +( 2311 1889 -16 ) ( 2313 1889 -16 ) ( 2313 1889 -128 ) common/0_origin 0 0 0 1 1 16777216 0 0 +( 2313 1889 -16 ) ( 2313 1891 -16 ) ( 2313 1891 -128 ) common/0_origin 0 0 0 1 1 16777216 0 0 +( 2313 1891 -16 ) ( 2311 1891 -16 ) ( 2311 1891 -128 ) common/0_origin 0 0 0 1 1 16777216 0 0 +( 2311 1891 -16 ) ( 2311 1889 -16 ) ( 2311 1889 -128 ) common/0_origin 0 0 0 1 1 16777216 0 0 +} +// brush 1 +{ +( 2308 1952 -128 ) ( 2308 1888 -128 ) ( 2324 1888 -128 ) floors/dr_pv_vv1d -24 0 -180 1 -1 0 8388608 0 +( 2324 1888 -16 ) ( 2308 1888 -16 ) ( 2308 1952 -16 ) floors/dr_pv_vv1d -24 0 -180 1 -1 0 8388608 0 +( 2314 1888 -32 ) ( 2314 1952 -32 ) ( 2314 1952 -128 ) floors/dr_pv_vv1d 32 0 0 1 1 0 8388608 0 +( 2324 1952 -32 ) ( 2308 1952 -32 ) ( 2308 1952 -128 ) floors/dr_pv_vv1d -24 0 -180 1 -1 0 8388608 0 +( 2308 1888 -32 ) ( 2324 1888 -32 ) ( 2324 1888 -128 ) floors/dr_pv_vv1d -24 0 -180 1 -1 0 8388608 0 +( 2310 1888 -128 ) ( 2310 1952 -128 ) ( 2310 1920 -16 ) floors/dr_pv_vv1d 32 0 0 1 1 0 8388608 0 +} +} +// entity 93 +{ +"classname" "misc_skidrow_afraid" +"origin" "-1768 2520 24" +} +// entity 94 +{ +"moral" "6" +"classname" "ai_boundary" +"cast_group" "3" +// brush 0 +{ +( 1520 2992 0 ) ( 1424 2992 0 ) ( 1424 2960 0 ) common/0_trigger 16 -16 0 1 1 0 128 0 +( 1424 2960 128 ) ( 1424 2992 128 ) ( 1520 2992 128 ) common/0_trigger 16 -16 0 1 1 0 128 0 +( 1504 3072 0 ) ( 1504 3072 128 ) ( 1504 2960 128 ) common/0_trigger 16 0 0 1 1 0 128 0 +( 1568 2944 128 ) ( 1568 2944 0 ) ( 1504 2944 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1568 3072 128 ) ( 1568 3072 0 ) ( 1568 2960 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1504 3072 128 ) ( 1504 3072 0 ) ( 1568 3072 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 95 +{ +"classname" "misc_skidrow_afraid" +"origin" "712 2712 32" +} +// entity 96 +{ +"origin" "-1920 2160 120" +"_color" "0.658824 0.925490 0.999999" +"light" "350" +"classname" "junior" +} +// entity 97 +{ +"classname" "junior" +"_color" "0.776471 1.000000 1.000000" +"light" "225" +"origin" "256 384 128" +} +// entity 98 +{ +"origin" "32 408 168" +"light" "250" +"_color" "1.000000 0.952941 0.709804" +"classname" "junior" +} +// entity 99 +{ +"origin" "704 1376 120" +"light" "200" +"_color" "1.000000 0.941176 0.768627" +"classname" "junior" +} +// entity 100 +{ +"origin" "96 1504 232" +"_color" "0.701961 0.917647 1.000000" +"light" "350" +"classname" "junior" +} +// entity 101 +{ +"classname" "junior" +"light" "250" +"_color" "1.000000 0.850980 0.701961" +"origin" "-1816 2640 136" +} +// entity 102 +{ +"classname" "junior" +"_color" "1.000000 0.501961 0.000000" +"origin" "1000 1560 104" +"light" "250" +"style" "6" +} +// entity 103 +{ +"classname" "junior" +"_color" "1.000000 0.000000 0.000000" +"light" "300" +"style" "6" +"origin" "1040 1560 88" +} +// entity 104 +{ +"style" "6" +"classname" "junior" +"_color" "0.627451 0.494118 1.000000" +"light" "350" +"origin" "680 2288 192" +} +// entity 105 +{ +"classname" "junior" +"_color" "1.000000 0.827451 0.658824" +"light" "350" +"origin" "880 160 356" +} +// entity 106 +{ +"classname" "junior" +"light" "400" +"_color" "1.000000 0.803922 0.215686" +"origin" "680 1568 134" +} +// entity 107 +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.807843 0.615686" +"origin" "856 2872 128" +} +// entity 108 +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.807843 0.615686" +"origin" "1328 3008 168" +} +// entity 109 +{ +"classname" "junior" +"light" "150" +"_color" "1.000000 0.807843 0.615686" +"origin" "1888 1920 -8" +} +// entity 110 +{ +"classname" "junior" +"light" "350" +"_color" "1.000000 0.807843 0.615686" +"origin" "2184 2880 216" +} +// entity 111 +{ +"classname" "junior" +"light" "225" +"_color" "0.749020 1.000000 1.000000" +"origin" "536 1984 152" +} +// entity 112 +{ +"origin" "1920 1242 114" +"_color" "1.000000 0.894118 0.792157" +"light" "300" +"classname" "junior" +} +// entity 113 +{ +"origin" "1792 1280 272" +"light" "300" +"_color" "1.000000 0.894118 0.792157" +"classname" "junior" +} +// entity 114 +{ +"_color" "1.000000 0.847059 0.709804" +"classname" "junior" +"light" "300" +"origin" "-1240 1776 288" +} +// entity 115 +{ +"_color" "0.835294 0.945098 1.000000" +"classname" "junior" +"light" "300" +"origin" "-992 2208 224" +} +// entity 116 +{ +"origin" "-1016 1944 72" +"noise" "world/cypress" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 117 +{ +"art_skins" "008 006 003" +"spawnflags" "64" +"name" "betty" +"origin" "-1128 1832 39" +"cast_group" "5" +"angle" "90" +"classname" "cast_bitch" +"moral" "4" +"currentcash" "1" +} +// entity 118 +{ +"art_skins" "010 010 003" +"origin" "-1128 1872 24" +"angle" "270" +"cast_group" "5" +"name" "leroy" +"classname" "cast_thug" +"spawnflags" "64" +"moral" "4" +"currentcash" "5" +} +// entity 119 +{ +"classname" "func_timer" +"origin" "-1768 2552 64" +"spawnflags" "1" +"wait" "225" +"random" "25" +"target" "t92" +} +// entity 120 +{ +"classname" "target_speaker" +"origin" "-1824 2552 64" +"noise" "world/siren2" +"attenuation" "-1" +"volume" "1" +"targetname" "t91" +} +// entity 121 +{ +"aiflags" "1" +"name" "bubba" +"origin" "592 2000 32" +"cast_group" "1" +"classname" "cast_runt" +"spawnflags" "64" +"art_skins" "017 016 008" +"currentcash" "-10" +"count" "9" +"acc" "3" +} +// entity 122 +{ +"origin" "848 1416 80" +"target" "t90" +"targetname" "t89" +"classname" "trigger_relay" +} +// entity 123 +{ +"origin" "824 1416 80" +"targetname" "t90" +"noise" "world/pawnbuzz_out" +"classname" "target_speaker" +} +// entity 124 +{ +"moral" "5" +"classname" "ai_boundary" +"cast_group" "2" +// brush 0 +{ +( 480 800 0 ) ( 352 800 0 ) ( 352 616 0 ) common/0_trigger 0 -16 0 1 1 0 128 0 +( 352 616 128 ) ( 352 800 128 ) ( 480 800 128 ) common/0_trigger 0 -16 0 1 1 0 128 0 +( 336 768 16 ) ( 464 768 16 ) ( 464 768 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 384 616 16 ) ( 384 800 16 ) ( 384 800 0 ) common/0_trigger 16 0 0 1 1 0 128 0 +( 496 1088 16 ) ( 368 1088 16 ) ( 368 1088 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 352 800 16 ) ( 352 616 16 ) ( 352 616 0 ) common/0_trigger 16 0 0 1 1 0 128 0 +} +} +// entity 125 +{ +"delay" "1" +"origin" "824 1421 112" +"target" "t87" +"targetname" "t89" +"classname" "trigger_relay" +} +// entity 126 +{ +"target" "t89" +"angle" "90" +"sounds" "4" +"lip" "5" +"classname" "func_button" +// brush 0 +{ +( 829 1431 78 ) ( 829 1439 78 ) ( 813 1439 78 ) props/callbox4 2 -12 90 0.250000 -0.250000 0 0 0 +( 807 1439 80 ) ( 827 1439 80 ) ( 827 1431 80 ) props/callbox4 2 -12 90 0.250000 -0.250000 0 0 0 +( 824 1439 88 ) ( 824 1439 72 ) ( 824 1431 72 ) props/callbox4 3 48 0 0.250000 0.250000 0 0 0 +( 822 1439 72 ) ( 822 1439 88 ) ( 822 1431 88 ) props/callbox4 3 48 0 0.250000 0.250000 0 8388608 0 +( 828 1431 97 ) ( 828 1431 67 ) ( 812 1431 67 ) props/callbox4 63 48 -180 -0.250000 -0.250000 0 0 0 +( 828 1435 72 ) ( 828 1435 88 ) ( 812 1435 88 ) props/callbox4 -17 47 -180 0.250000 -0.250000 0 0 0 +} +} +// entity 127 +{ +"origin" "728 1504 96" +"targetname" "t88" +"spawnflags" "4" +"noise" "world/pawnbuzz" +"classname" "target_speaker" +} +// entity 128 +{ +"origin" "814 1504 97" +"spawnflags" "4" +"targetname" "t88" +"noise" "world/pawnbuzz" +"classname" "target_speaker" +} +// entity 129 +{ +"target" "t88" +"targetname" "t86" +"origin" "768 1528 74" +"classname" "trigger_relay" +} +// entity 130 +{ +"origin" "768 1505 74" +"target" "t87" +"targetname" "t86" +"delay" "4" +"classname" "trigger_relay" +} +// entity 131 +{ +"classname" "item_coil" +"origin" "2716 676 80" +} +// entity 132 +{ +"classname" "misc_skidrow_ambush" +"origin" "504 136 24" +} +// entity 133 +{ +"target" "t86" +"angle" "0" +"sounds" "4" +"lip" "5" +"classname" "func_button" +// brush 0 +{ +( 815 1499 74 ) ( 823 1499 74 ) ( 823 1515 74 ) props/callbox4 27 36 0 -0.250000 0.250000 0 0 0 +( 823 1521 76 ) ( 823 1501 76 ) ( 815 1501 76 ) props/callbox4 27 36 0 -0.250000 0.250000 0 0 0 +( 823 1504 84 ) ( 823 1504 68 ) ( 815 1504 68 ) props/callbox4 27 32 0 -0.250000 0.250000 0 0 0 +( 823 1506 68 ) ( 823 1506 84 ) ( 815 1506 84 ) props/callbox4 27 32 0 -0.250000 0.250000 0 0 0 +( 815 1500 93 ) ( 815 1500 63 ) ( 815 1516 63 ) props/callbox4 31 32 0 -0.250000 0.250000 0 1 10000 +( 819 1500 68 ) ( 819 1500 84 ) ( 819 1516 84 ) props/callbox4 31 32 0 -0.250000 0.250000 0 0 0 +} +} +// entity 134 +{ +"moral" "4" +"angle" "270" +"cast_group" "2" +"classname" "ai_territory" +// brush 0 +{ +( 512 512 0 ) ( 376 512 0 ) ( 376 384 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 376 384 128 ) ( 376 512 128 ) ( 512 512 128 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 376 448 128 ) ( 512 448 128 ) ( 512 448 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 512 384 128 ) ( 512 512 128 ) ( 512 512 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 512 512 128 ) ( 376 512 128 ) ( 376 512 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 384 512 128 ) ( 384 384 128 ) ( 384 384 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 135 +{ +"classname" "ai_guard" +"guard_radius" "384" +"origin" "-40 272 88" +"targetname" "radio_guard" +} +// entity 136 +{ +"health" "150" +"art_skins" "011 012 004" +"classname" "cast_runt" +"name" "bernie" +"angle" "225" +"cast_group" "2" +"guard_target" "radio_guard" +"origin" "-24 352 88" +"moral" "5" +"localteam" "courtyard" +"count" "1" +"acc" "3" +} +// entity 137 +{ +"target" "t117" +"classname" "misc_skidrow_radio" +"delay" "30" +"speed" "7" +"wait" "15" +"origin" "-48 312 88" +} +// entity 138 +{ +"classname" "func_group" +// brush 0 +{ +( 802 151 276 ) ( 822 151 276 ) ( 822 169 276 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 134217728 0 +( 822 169 278 ) ( 822 151 278 ) ( 802 151 278 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 134217728 0 +( 808 178 278 ) ( 808 178 276 ) ( 821 178 276 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +( 795 177 276 ) ( 795 177 278 ) ( 795 156 278 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +( 808 155 276 ) ( 808 155 278 ) ( 821 155 278 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +( 822 156 276 ) ( 822 156 278 ) ( 822 177 278 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +( 821 178 278 ) ( 821 178 276 ) ( 822 177 276 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +( 821 155 276 ) ( 821 155 278 ) ( 822 156 278 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +( 808 178 276 ) ( 808 178 278 ) ( 795 177 278 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +( 808 155 278 ) ( 808 155 276 ) ( 795 156 276 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +} +// brush 1 +{ +( 796 163 278 ) ( 795 163 278 ) ( 795 162 278 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 796 162 315 ) ( 797 162 315 ) ( 797 162 255 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 797 162 315 ) ( 797 163 315 ) ( 797 163 255 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 797 164 315 ) ( 796 164 315 ) ( 796 164 255 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 795 163 315 ) ( 795 162 315 ) ( 795 162 255 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 800 162 303 ) ( 796 162 303 ) ( 798 164 303 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +} +// brush 2 +{ +( 797 179 303 ) ( 795 179 303 ) ( 795 155 303 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 134217728 0 +( 795 181 308 ) ( 797 181 308 ) ( 797 153 308 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 134217728 0 +( 794 152 306 ) ( 798 152 306 ) ( 798 154 303 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 134217728 0 +( 798 153 308 ) ( 798 181 308 ) ( 798 181 306 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 134217728 0 +( 798 181 306 ) ( 794 181 306 ) ( 794 179 303 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 134217728 0 +( 794 178 307 ) ( 794 156 307 ) ( 794 156 305 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 134217728 0 +( 798 152 306 ) ( 794 152 306 ) ( 794 152 308 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 134217728 0 +( 794 181 306 ) ( 798 181 306 ) ( 798 181 308 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 134217728 0 +( 793 151 306 ) ( 795 151 303 ) ( 794 183 305 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 134217728 0 +( 797 151 303 ) ( 799 151 306 ) ( 798 183 305 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 134217728 0 +} +// brush 3 +{ +( 799 157 256 ) ( 795 157 256 ) ( 795 153 256 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 795 155 280 ) ( 799 155 280 ) ( 799 155 256 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 797 153 280 ) ( 797 157 280 ) ( 797 157 256 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 799 157 280 ) ( 795 157 280 ) ( 795 157 256 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 795 157 280 ) ( 795 153 280 ) ( 795 153 256 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 800 155 303 ) ( 792 155 303 ) ( 796 157 303 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +} +// brush 4 +{ +( 796 170 278 ) ( 795 170 278 ) ( 795 169 278 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 796 169 315 ) ( 797 169 315 ) ( 797 169 255 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 797 169 315 ) ( 797 170 315 ) ( 797 170 255 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 797 171 315 ) ( 796 171 315 ) ( 796 171 255 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 795 170 315 ) ( 795 169 315 ) ( 795 169 255 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 800 169 303 ) ( 796 169 303 ) ( 798 171 303 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +} +// brush 5 +{ +( 799 178 256 ) ( 795 178 256 ) ( 795 174 256 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 795 176 280 ) ( 799 176 280 ) ( 799 176 256 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 797 174 280 ) ( 797 178 280 ) ( 797 178 256 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 799 178 280 ) ( 795 178 280 ) ( 795 178 256 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 795 178 280 ) ( 795 174 280 ) ( 795 174 256 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 800 176 303 ) ( 792 176 303 ) ( 796 178 303 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +} +// brush 6 +{ +( 820 156 265 ) ( 820 158 265 ) ( 802 158 265 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +( 802 158 266 ) ( 820 158 266 ) ( 820 156 266 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +( 797 155 266 ) ( 797 155 265 ) ( 797 157 265 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +( 819 156 266 ) ( 819 156 265 ) ( 797 155 265 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +( 819 156 265 ) ( 819 156 266 ) ( 819 158 266 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +( 819 158 265 ) ( 819 158 266 ) ( 797 157 266 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +} +// brush 7 +{ +( 809 178 265 ) ( 807 178 265 ) ( 807 156 265 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +( 807 156 266 ) ( 807 178 266 ) ( 809 178 266 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +( 809 156 267 ) ( 809 178 267 ) ( 809 178 265 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +( 808 178 266 ) ( 808 156 266 ) ( 808 156 264 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +( 797 156 264 ) ( 797 156 266 ) ( 820 158 264 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +( 798 177 266 ) ( 798 177 264 ) ( 821 175 266 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +} +// brush 8 +{ +( 820 175 265 ) ( 820 177 265 ) ( 802 177 265 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +( 802 177 266 ) ( 820 177 266 ) ( 820 175 266 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +( 797 178 265 ) ( 797 178 266 ) ( 797 176 266 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +( 819 175 266 ) ( 819 175 265 ) ( 797 176 265 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +( 819 177 266 ) ( 819 177 265 ) ( 819 175 265 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +( 819 177 265 ) ( 819 177 266 ) ( 797 178 266 ) wood/wd_st_m3 5 -102 270 0.250000 0.250000 134217728 0 0 +} +// brush 9 +{ +( 795 177 256 ) ( 791 177 256 ) ( 791 173 256 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 791 175 280 ) ( 795 175 280 ) ( 795 175 256 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 821 175 280 ) ( 821 179 280 ) ( 821 179 256 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 795 177 280 ) ( 791 177 280 ) ( 791 177 256 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 819 177 280 ) ( 819 173 280 ) ( 819 173 256 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 823 175 276 ) ( 814 175 276 ) ( 819 177 276 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +} +// brush 10 +{ +( 795 158 256 ) ( 791 158 256 ) ( 791 154 256 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 791 156 280 ) ( 795 156 280 ) ( 795 156 256 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 821 156 280 ) ( 821 160 280 ) ( 821 160 256 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 795 158 280 ) ( 791 158 280 ) ( 791 158 256 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 819 158 280 ) ( 819 154 280 ) ( 819 154 256 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +( 823 156 276 ) ( 814 156 276 ) ( 819 158 276 ) wood/wd_st_m3 21 -94 180 0.250000 0.250000 134217728 134217728 0 +} +} +// entity 139 +{ +"health" "80" +"art_skins" "011 007 004" +"classname" "cast_thug" +"angle" "45" +"origin" "1864 1200 56" +"cast_group" "2" +"name" "johnny" +"spawnflags" "64" +"currentcash" "5" +"moral" "3" +} +// entity 140 +{ +"origin" "658 1222 74" +"classname" "smoke_esm" +} +// entity 141 +{ +"spawnflags" "0" +"classname" "light" +"origin" "883 1298 104" +"_color" "1.000000 0.000000 0.000000" +"style" "6" +"light" "100" +} +// entity 142 +{ +"targetname" "t87" +"classname" "func_door_rotating" +"spawnflags" "2" +"distance " "90" +"speed " "65" +"angle" "270" +"sounds" "4" +"target" "t94" +// brush 0 +{ +( 704 1446 128 ) ( 832 1446 128 ) ( 832 1446 0 ) floors/dr_pv_vv1d 32 32 0 1 1 0 8388608 0 +( 832 1450 128 ) ( 704 1450 128 ) ( 704 1450 0 ) floors/dr_pv_vv1d 32 32 0 1 1 0 8388608 0 +( 688 1460 32 ) ( 728 1460 32 ) ( 708 1468 32 ) floors/dr_pv_ma1 32 32 0 1 1 0 0 0 +( 800 1468 32 ) ( 800 1460 32 ) ( 800 1464 192 ) floors/dr_pv_ma1 -44 32 0 1 1 0 0 0 +( 736 1460 32 ) ( 736 1468 32 ) ( 736 1464 192 ) floors/dr_pv_ma1 32 32 0 1 1 0 0 0 +( 760 1444 144 ) ( 736 1444 144 ) ( 748 1468 144 ) floors/dr_pv_ma1 32 32 0 1 1 0 0 0 +} +// brush 1 +{ +( 740 1452 28 ) ( 732 1452 28 ) ( 732 1444 28 ) common/0_origin 0 0 0 1 1 16777216 128 0 +( 732 1444 148 ) ( 732 1452 148 ) ( 740 1452 148 ) common/0_origin 0 0 0 1 1 16777216 128 0 +( 733 1447 144 ) ( 741 1447 144 ) ( 741 1447 32 ) common/0_origin 0 0 0 1 1 16777216 128 0 +( 739 1444 144 ) ( 739 1452 144 ) ( 739 1452 32 ) common/0_origin 0 0 0 1 1 16777216 128 0 +( 740 1449 144 ) ( 732 1449 144 ) ( 732 1449 32 ) common/0_origin 0 0 0 1 1 16777216 128 0 +( 737 1452 144 ) ( 737 1444 144 ) ( 737 1444 32 ) common/0_origin 0 0 0 1 1 16777216 128 0 +} +} +// entity 143 +{ +"spawnflags" "0" +"origin" "832 1376 136" +"light" "75" +"_color" "0.277359 0.261106 0.212485" +"classname" "light" +} +// entity 144 +{ +"classname" "func_group" +// brush 0 +{ +( 1976 1244 52 ) ( 1956 1244 52 ) ( 1956 1226 52 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1956 1226 55 ) ( 1956 1244 55 ) ( 1976 1244 55 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1983 1216 55 ) ( 1983 1216 53 ) ( 1958 1216 53 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1983 1242 55 ) ( 1983 1242 53 ) ( 1983 1216 53 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1983 1242 53 ) ( 1983 1242 55 ) ( 1958 1242 55 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1956 1218 55 ) ( 1956 1218 53 ) ( 1956 1240 53 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1956 1218 53 ) ( 1956 1218 55 ) ( 1958 1216 55 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1956 1240 55 ) ( 1956 1240 53 ) ( 1958 1242 53 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1983 1218 53 ) ( 1970 1216 53 ) ( 1977 1217 55 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1970 1242 53 ) ( 1983 1240 53 ) ( 1977 1241 55 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +} +// brush 1 +{ +( 1982 1238 32 ) ( 1986 1238 32 ) ( 1986 1242 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1986 1240 56 ) ( 1982 1240 56 ) ( 1982 1240 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1956 1240 56 ) ( 1956 1236 56 ) ( 1956 1236 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1982 1238 56 ) ( 1986 1238 56 ) ( 1986 1238 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1958 1238 56 ) ( 1958 1242 56 ) ( 1958 1242 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1954 1240 52 ) ( 1963 1240 52 ) ( 1958 1238 52 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +} +// brush 2 +{ +( 1958 1240 41 ) ( 1958 1238 41 ) ( 1976 1238 41 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 0 0 +( 1976 1238 42 ) ( 1958 1238 42 ) ( 1958 1240 42 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 0 0 +( 1981 1240 40 ) ( 1981 1240 42 ) ( 1981 1242 42 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 0 0 +( 1981 1242 40 ) ( 1981 1242 42 ) ( 1958 1240 42 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 0 0 +( 1958 1240 60 ) ( 1958 1238 60 ) ( 1958 1238 40 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 0 0 +( 1981 1240 42 ) ( 1981 1240 40 ) ( 1958 1238 40 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 0 0 +} +// brush 3 +{ +( 1969 1218 41 ) ( 1971 1218 41 ) ( 1971 1240 41 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 0 0 +( 1971 1240 42 ) ( 1971 1218 42 ) ( 1969 1218 42 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 0 0 +( 1969 1240 43 ) ( 1969 1218 43 ) ( 1969 1218 41 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 0 0 +( 1970 1218 42 ) ( 1970 1240 42 ) ( 1970 1240 40 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 0 0 +( 1981 1240 40 ) ( 1981 1240 42 ) ( 1958 1238 40 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 0 0 +( 1981 1218 42 ) ( 1981 1218 40 ) ( 1958 1220 42 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 0 0 +} +// brush 4 +{ +( 1958 1220 41 ) ( 1958 1218 41 ) ( 1976 1218 41 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 0 0 +( 1976 1218 42 ) ( 1958 1218 42 ) ( 1958 1220 42 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 0 0 +( 1981 1218 42 ) ( 1981 1218 40 ) ( 1981 1216 40 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 0 0 +( 1981 1218 40 ) ( 1981 1218 42 ) ( 1958 1220 42 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 0 0 +( 1958 1220 60 ) ( 1958 1218 60 ) ( 1958 1218 40 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 0 0 +( 1981 1216 42 ) ( 1981 1216 40 ) ( 1958 1218 40 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 0 0 +} +// brush 5 +{ +( 1982 1218 32 ) ( 1986 1218 32 ) ( 1986 1222 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1986 1220 56 ) ( 1982 1220 56 ) ( 1982 1220 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1956 1220 56 ) ( 1956 1216 56 ) ( 1956 1216 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1982 1218 56 ) ( 1986 1218 56 ) ( 1986 1218 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1958 1218 56 ) ( 1958 1222 56 ) ( 1958 1222 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1954 1220 52 ) ( 1963 1220 52 ) ( 1958 1218 52 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +} +// brush 6 +{ +( 1979 1240 32 ) ( 1983 1240 32 ) ( 1983 1244 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1983 1242 56 ) ( 1979 1242 56 ) ( 1979 1242 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1981 1244 56 ) ( 1981 1240 56 ) ( 1981 1240 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1979 1240 56 ) ( 1983 1240 56 ) ( 1983 1240 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1983 1240 56 ) ( 1983 1244 56 ) ( 1983 1244 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1978 1242 82 ) ( 1986 1242 82 ) ( 1982 1240 82 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +} +// brush 7 +{ +( 1982 1233 55 ) ( 1983 1233 55 ) ( 1983 1234 55 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1982 1234 92 ) ( 1981 1234 92 ) ( 1981 1234 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1981 1234 92 ) ( 1981 1233 92 ) ( 1981 1233 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1981 1232 92 ) ( 1982 1232 92 ) ( 1982 1232 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1983 1233 92 ) ( 1983 1234 92 ) ( 1983 1234 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1978 1234 82 ) ( 1982 1234 82 ) ( 1980 1232 82 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +} +// brush 8 +{ +( 1982 1225 55 ) ( 1983 1225 55 ) ( 1983 1226 55 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1982 1226 92 ) ( 1981 1226 92 ) ( 1981 1226 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1981 1226 92 ) ( 1981 1225 92 ) ( 1981 1225 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1981 1224 92 ) ( 1982 1224 92 ) ( 1982 1224 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1983 1225 92 ) ( 1983 1226 92 ) ( 1983 1226 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1978 1226 82 ) ( 1982 1226 82 ) ( 1980 1224 82 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +} +// brush 9 +{ +( 1981 1217 82 ) ( 1983 1217 82 ) ( 1983 1241 82 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1983 1215 87 ) ( 1981 1215 87 ) ( 1981 1243 87 ) wood/wd_sr_v1 64 -15 -90 0.250000 0.250000 134217728 134217728 0 +( 1984 1245 85 ) ( 1980 1245 85 ) ( 1980 1243 82 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1980 1243 87 ) ( 1980 1215 87 ) ( 1980 1215 85 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1980 1213 85 ) ( 1984 1213 85 ) ( 1984 1215 82 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1984 1218 86 ) ( 1984 1240 86 ) ( 1984 1240 84 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1980 1245 85 ) ( 1984 1245 85 ) ( 1984 1245 87 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1984 1213 85 ) ( 1980 1213 85 ) ( 1980 1213 87 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1985 1245 85 ) ( 1983 1245 82 ) ( 1984 1213 84 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1981 1245 82 ) ( 1979 1245 85 ) ( 1980 1213 84 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +} +// brush 10 +{ +( 1979 1216 32 ) ( 1983 1216 32 ) ( 1983 1220 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1983 1218 56 ) ( 1979 1218 56 ) ( 1979 1218 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1981 1220 56 ) ( 1981 1216 56 ) ( 1981 1216 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1979 1216 56 ) ( 1983 1216 56 ) ( 1983 1216 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1983 1216 56 ) ( 1983 1220 56 ) ( 1983 1220 32 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +( 1978 1218 82 ) ( 1986 1218 82 ) ( 1982 1216 82 ) wood/wd_sr_v1 64 -15 270 0.250000 0.250000 134217728 134217728 0 +} +} +// entity 145 +{ +"classname" "light" +"light" "125" +"_color" "0.890625 1.000000 0.994792" +"origin" "2652 2192 432" +"spawnflags" "0" +} +// entity 146 +{ +"classname" "func_group" +// brush 0 +{ +( -2069 2517 104 ) ( -2069 2517 136 ) ( -2058 2528 136 ) props/barrel_v4 62 0 0 0.625000 0.750000 134217728 8388608 1 +( -2080 2512 0 ) ( -2080 2512 32 ) ( -2064 2512 32 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 1 +( -2064 2528 104 ) ( -2064 2528 136 ) ( -2064 2544 136 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 1 +( -2096 2512 0 ) ( -2064 2512 0 ) ( -2064 2544 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2064 2544 48 ) ( -2064 2512 48 ) ( -2096 2512 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2070 2518 127 ) ( -2070 2518 98 ) ( -2060 2528 127 ) props/barrel_v4 20 0 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 1 +{ +( -2096 2512 0 ) ( -2064 2512 0 ) ( -2064 2544 0 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -2070 2518 98 ) ( -2070 2518 127 ) ( -2060 2528 127 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -2080 2514 4 ) ( -2080 2514 33 ) ( -2066 2514 33 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -2090 2518 4 ) ( -2090 2518 33 ) ( -2080 2508 33 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -2094 2528 4 ) ( -2094 2528 33 ) ( -2094 2514 33 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -2090 2538 4 ) ( -2090 2538 33 ) ( -2100 2528 33 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -2080 2542 98 ) ( -2080 2542 127 ) ( -2094 2542 127 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -2070 2538 98 ) ( -2070 2538 127 ) ( -2080 2548 127 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -2066 2528 98 ) ( -2066 2528 127 ) ( -2066 2542 127 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -2066 2514 36 ) ( -2094 2514 36 ) ( -2066 2542 36 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +} +// brush 2 +{ +( -2080 2512 0 ) ( -2080 2512 32 ) ( -2064 2512 32 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 1 +( -2091 2517 0 ) ( -2091 2517 32 ) ( -2080 2506 32 ) props/barrel_v4 23 0 0 -0.750000 0.750000 134217728 8388608 1 +( -2096 2512 0 ) ( -2064 2512 0 ) ( -2064 2544 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2064 2544 48 ) ( -2064 2512 48 ) ( -2096 2512 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2070 2518 98 ) ( -2070 2518 127 ) ( -2060 2528 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2080 2514 33 ) ( -2080 2514 4 ) ( -2066 2514 33 ) props/barrel_v4 20 0 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 3 +{ +( -2091 2517 0 ) ( -2091 2517 32 ) ( -2080 2506 32 ) props/barrel_v4 23 0 0 -0.750000 0.750000 134217728 8388608 1 +( -2096 2528 0 ) ( -2096 2528 32 ) ( -2096 2512 32 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 1 +( -2096 2512 0 ) ( -2064 2512 0 ) ( -2064 2544 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2064 2544 48 ) ( -2064 2512 48 ) ( -2096 2512 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2080 2514 4 ) ( -2080 2514 33 ) ( -2066 2514 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2090 2518 33 ) ( -2090 2518 4 ) ( -2080 2508 33 ) props/barrel_v4 20 0 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 4 +{ +( -2096 2528 0 ) ( -2096 2528 32 ) ( -2096 2512 32 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 1 +( -2091 2539 0 ) ( -2091 2539 32 ) ( -2102 2528 32 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 1 +( -2096 2512 0 ) ( -2064 2512 0 ) ( -2064 2544 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2064 2544 48 ) ( -2064 2512 48 ) ( -2096 2512 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2090 2518 4 ) ( -2090 2518 33 ) ( -2080 2508 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2094 2528 33 ) ( -2094 2528 4 ) ( -2094 2514 33 ) props/barrel_v4 20 0 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 5 +{ +( -2091 2539 0 ) ( -2091 2539 32 ) ( -2102 2528 32 ) props/barrel_v4 59 0 0 0.625000 0.750000 134217728 8388608 1 +( -2080 2544 104 ) ( -2080 2544 136 ) ( -2096 2544 136 ) props/barrel_v4 20 0 0 -0.750000 0.750000 134217728 8388608 1 +( -2096 2512 0 ) ( -2064 2512 0 ) ( -2064 2544 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2064 2544 48 ) ( -2064 2512 48 ) ( -2096 2512 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2094 2528 4 ) ( -2094 2528 33 ) ( -2094 2514 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2090 2538 33 ) ( -2090 2538 4 ) ( -2100 2528 33 ) props/barrel_v4 20 0 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 6 +{ +( -2080 2544 104 ) ( -2080 2544 136 ) ( -2096 2544 136 ) props/barrel_v4 20 0 0 -0.750000 0.750000 134217728 8388608 1 +( -2069 2539 104 ) ( -2069 2539 136 ) ( -2080 2550 136 ) props/barrel_v4 59 0 0 0.625000 0.750000 134217728 8388608 1 +( -2096 2512 0 ) ( -2064 2512 0 ) ( -2064 2544 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2064 2544 48 ) ( -2064 2512 48 ) ( -2096 2512 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2090 2538 4 ) ( -2090 2538 33 ) ( -2100 2528 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2080 2542 127 ) ( -2080 2542 98 ) ( -2094 2542 127 ) props/barrel_v4 20 0 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 7 +{ +( -2069 2539 104 ) ( -2069 2539 136 ) ( -2080 2550 136 ) props/barrel_v4 59 0 0 0.625000 0.750000 134217728 8388608 1 +( -2064 2528 104 ) ( -2064 2528 136 ) ( -2064 2544 136 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 1 +( -2096 2512 0 ) ( -2064 2512 0 ) ( -2064 2544 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2064 2544 48 ) ( -2064 2512 48 ) ( -2096 2512 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2080 2542 98 ) ( -2080 2542 127 ) ( -2094 2542 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2070 2538 127 ) ( -2070 2538 98 ) ( -2080 2548 127 ) props/barrel_v4 20 0 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 8 +{ +( -2064 2528 104 ) ( -2064 2528 136 ) ( -2064 2544 136 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 1 +( -2096 2512 0 ) ( -2064 2512 0 ) ( -2064 2544 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2064 2544 48 ) ( -2064 2512 48 ) ( -2096 2512 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2070 2518 98 ) ( -2070 2518 127 ) ( -2060 2528 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2070 2538 98 ) ( -2070 2538 127 ) ( -2080 2548 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -2066 2528 127 ) ( -2066 2528 98 ) ( -2066 2542 127 ) props/barrel_v4 20 0 0 -0.750000 0.750000 134217728 8388608 1 +} +} +// entity 147 +{ +"spawnflags" "0" +"origin" "64 864 184" +"light" "115" +"_color" "0.122036 0.132615 0.122228" +"classname" "light" +} +// entity 148 +{ +"origin" "-1920 2160 152" +"light" "150" +"_color" "0.226348 0.237017 0.225191" +"classname" "light" +"spawnflags" "0" +} +// entity 149 +{ +"classname" "func_wall" +"spawnflags" "6" +// brush 0 +{ +( 2581 461 -104 ) ( 2532 420 -104 ) ( 2491 469 -104 ) props/bo_pv_c2 0 -14 40 0.750000 0.750000 0 134217728 0 +( 2605 481 -128 ) ( 2564 530 -128 ) ( 2564 530 -192 ) props/bo_pv_c3 11 -11 -180 0.570000 -0.750000 0 0 0 +( 2563 383 -128 ) ( 2612 424 -128 ) ( 2612 424 -192 ) props/bo_pv_c1 113 -11 -180 -0.570000 -0.750000 0 134217728 0 +( 2532 420 -192 ) ( 2491 469 -192 ) ( 2511 444 -128 ) props/bo_pv_c3 31 -11 -180 0.570000 -0.750000 0 134217728 0 +( 2581 461 -192 ) ( 2599 476 -192 ) ( 2590 468 -64 ) props/bo_pv_c1 -38 -11 0 -0.570000 0.750000 0 134217728 0 +( 2640 490 -128 ) ( 2630 502 -128 ) ( 2586 455 -128 ) props/bo_pv_c2 -1 -14 39 0.750111 0.750049 0 0 0 +} +} +// entity 150 +{ +"classname" "func_wall" +"spawnflags" "6" +// brush 0 +{ +( 2626 208 -119 ) ( 2626 192 -119 ) ( 2654 192 -128 ) props/locker_m1 -40 -43 0 0.961182 0.750000 0 0 0 +( 2678 208 -34 ) ( 2678 192 -34 ) ( 2650 192 -26 ) metals/m_hl_c10b -4 0 0 0.961426 1 0 0 0 +( 2681 192 -35 ) ( 2654 192 -128 ) ( 2623 192 -119 ) props/locker_m1 -57 43 -16 0.999931 0.749979 0 0 0 +( 2678 192 -34 ) ( 2678 208 -34 ) ( 2654 208 -128 ) metals/m_hl_c10b 0 -4 0 1 0.961258 0 0 0 +( 2654 208 -128 ) ( 2681 208 -35 ) ( 2650 208 -26 ) props/locker_m1 -57 43 -16 1 0.750000 0 16777216 0 +( 2626 192 -119 ) ( 2626 208 -119 ) ( 2650 208 -26 ) metals/m_hl_c10b 0 4 0 1 0.960000 0 16777216 0 +} +} +// entity 151 +{ +"classname" "func_areaportal" +"targetname" "t21" +// brush 0 +{ +( 2308 384 -128 ) ( 2300 384 -128 ) ( 2300 256 -128 ) common/0_trigger -28 0 0 1 1 0 128 0 +( 2300 256 0 ) ( 2300 384 0 ) ( 2308 384 0 ) common/0_trigger -28 0 0 1 1 0 128 0 +( 2300 256 0 ) ( 2308 256 0 ) ( 2308 256 -128 ) common/0_trigger -28 0 0 1 1 0 128 0 +( 2308 256 0 ) ( 2308 384 0 ) ( 2308 384 -128 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 2308 384 0 ) ( 2300 384 0 ) ( 2300 384 -128 ) common/0_trigger -28 0 0 1 1 0 128 0 +( 2300 384 0 ) ( 2300 256 0 ) ( 2300 256 -128 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 152 +{ +"classname" "func_door" +"angle" "-1" +"target" "t21" +// brush 0 +{ +( 2312 384 -128 ) ( 2296 384 -128 ) ( 2296 256 -128 ) metals/mt_pv_m16k -64 -48 0 1 1 0 0 0 +( 2296 256 0 ) ( 2296 384 0 ) ( 2312 384 0 ) floors/dr_pv_m1 0 0 0 1 1 0 0 0 +( 2296 256 0 ) ( 2312 256 0 ) ( 2312 256 -128 ) floors/dr_pv_m1 0 0 0 1 1 0 0 0 +( 2312 256 0 ) ( 2312 384 0 ) ( 2312 384 -128 ) floors/dr_pv_m1 0 0 0 1 1 0 8388608 0 +( 2312 384 0 ) ( 2296 384 0 ) ( 2296 384 -128 ) floors/dr_pv_m1 0 0 0 1 1 0 0 0 +( 2296 384 0 ) ( 2296 256 0 ) ( 2296 256 -128 ) floors/dr_pv_m1 0 0 0 1 1 0 8388608 0 +} +} +// entity 153 +{ +"classname" "func_explosive" +"health" "5" +"mass" "150" +"type" "metal" +"target" "t107" +// brush 0 +{ +( 2056 880 272 ) ( 2056 1424 272 ) ( 2056 1424 208 ) sprites/grate_a_m1a 0 17 0 1 1 0 16781312 0 +( 2048 1424 272 ) ( 2048 880 272 ) ( 2048 880 208 ) sprites/grate_a_m1a 0 17 0 1 1 0 16781312 0 +( 2048 1024 264 ) ( 2048 1024 272 ) ( 2056 1024 268 ) sprites/grate_a_m1a 0 17 0 1 1 128 16781312 0 +( 2048 1034 208 ) ( 2048 1028 208 ) ( 2056 1031 208 ) sprites/grate_a_m1a 0 17 0 1 1 128 16781312 0 +( 2048 1088 220 ) ( 2048 1088 216 ) ( 2056 1088 218 ) sprites/grate_a_m1a 0 17 0 1 1 128 16781312 0 +( 2048 1030 272 ) ( 2048 1036 272 ) ( 2056 1033 272 ) sprites/grate_a_m1a 0 17 0 1 1 128 16781312 0 +} +} +// entity 154 +{ +"origin" "1088 1407 48" +"dmg" "2" +"health" "32" +"spawnflags" "2" +"light" "10" +"classname" "lightflare" +} +// entity 155 +{ +"origin" "1088 1392 48" +"light" "80" +"_color" "1.000000 0.942857 0.771429" +"classname" "light" +} +// entity 156 +{ +"targetname" "t20" +"classname" "func_areaportal" +// brush 0 +{ +( 1216 844 32 ) ( 1088 844 32 ) ( 1088 836 32 ) common/0_trigger 0 -4 0 1 1 0 128 0 +( 1088 836 160 ) ( 1088 844 160 ) ( 1216 844 160 ) common/0_trigger 0 -4 0 1 1 0 128 0 +( 1088 836 160 ) ( 1216 836 160 ) ( 1216 836 32 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1216 836 160 ) ( 1216 844 160 ) ( 1216 844 32 ) common/0_trigger 4 0 0 1 1 0 128 0 +( 1216 844 160 ) ( 1088 844 160 ) ( 1088 844 32 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1088 844 160 ) ( 1088 836 160 ) ( 1088 836 32 ) common/0_trigger 4 0 0 1 1 0 128 0 +} +} +// entity 157 +{ +"target" "t20" +"angle" "-1" +"classname" "func_door" +// brush 0 +{ +( 1152 848 32 ) ( 1088 848 32 ) ( 1088 832 32 ) metals/mt_pv_m16k 8 400 270 1 1 0 0 0 +( 1088 832 160 ) ( 1088 848 160 ) ( 1152 848 160 ) floors/dr_pv_m1 64 32 0 1 1 0 0 0 +( 1088 832 160 ) ( 1152 832 160 ) ( 1152 832 32 ) floors/dr_pv_m1 64 32 0 1 1 0 8388608 0 +( 1216 832 160 ) ( 1216 848 160 ) ( 1216 848 32 ) floors/dr_pv_m1 64 32 0 1 1 0 0 0 +( 1152 848 160 ) ( 1088 848 160 ) ( 1088 848 32 ) floors/dr_pv_m1 64 32 0 1 1 0 8388608 0 +( 1088 848 160 ) ( 1088 832 160 ) ( 1088 832 32 ) floors/dr_pv_m1 64 32 0 1 1 0 0 0 +} +} +// entity 158 +{ +"light" "10" +"origin" "1152 768 159" +"dmg" "2" +"health" "32" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 159 +{ +"wait" "6" +"angle" "-1" +"classname" "func_door" +"key" "-1" +"sounds" "6" +"targetname" "t120" +// brush 0 +{ +( 736 128 32 ) ( 720 128 32 ) ( 720 0 32 ) props/dump_m4a 0 0 0 1 1 0 0 0 +( 720 0 160 ) ( 720 128 160 ) ( 736 128 160 ) floors/dr_sr_mm8 0 32 0 1 1 0 0 0 +( 720 0 160 ) ( 736 0 160 ) ( 736 0 32 ) floors/dr_sr_mm8 0 32 0 1 1 0 0 0 +( 736 0 160 ) ( 736 128 160 ) ( 736 128 32 ) floors/dr_sr_mm8 0 32 0 1 1 0 8388608 0 +( 736 128 160 ) ( 720 128 160 ) ( 720 128 32 ) floors/dr_sr_mm8 0 32 0 1 1 0 0 0 +( 720 128 160 ) ( 720 0 160 ) ( 720 0 32 ) floors/dr_sr_mm8 0 32 0 -1 1 0 8388608 0 +} +} +// entity 160 +{ +"option" "1" +"origin" "-96 422 491" +"angle" "270" +"classname" "props_antenna2c" +} +// entity 161 +{ +"option" "1" +"origin" "-2144 2932 340" +"angle" "315" +"classname" "props_antenna2a" +} +// entity 162 +{ +"angle" "225" +"origin" "478 2000 361" +"classname" "props_antenna2c" +} +// entity 163 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/lightf_broker" +"origin" "1888 2096 -48" +} +// entity 164 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/neon" +"origin" "992 1560 64" +} +// entity 165 +{ +"classname" "target_speaker" +"noise" "world/glasbrk" +"attenuation" "1" +"volume" "1" +"origin" "1176 -544 392" +"targetname" "t16" +} +// entity 166 +{ +"classname" "func_explosive" +"mass" "200" +"health" "1" +"target" "t9" +// brush 0 +{ +( 1152 -200 320 ) ( 1144 -200 320 ) ( 1144 -248 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1144 -252 448 ) ( 1152 -252 448 ) ( 1152 -252 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -248 448 ) ( 1150 -200 448 ) ( 1150 -200 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1152 -195 448 ) ( 1144 -195 448 ) ( 1144 -195 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -200 448 ) ( 1146 -248 448 ) ( 1146 -248 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -259 385 ) ( 1146 -246 385 ) ( 1150 -252 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +} +// entity 167 +{ +"classname" "func_explosive" +"health" "1" +"mass" "100" +"target" "t8" +// brush 0 +{ +( 1144 -252 447 ) ( 1152 -252 447 ) ( 1152 -252 319 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -248 448 ) ( 1150 -200 448 ) ( 1150 -200 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1152 -195 448 ) ( 1144 -195 448 ) ( 1144 -195 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -200 448 ) ( 1146 -248 448 ) ( 1146 -248 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -246 385 ) ( 1146 -259 385 ) ( 1150 -252 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -573 416 ) ( 1146 -570 416 ) ( 1150 -571 416 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +} +// entity 168 +{ +"classname" "func_explosive" +"mass" "200" +"health" "1" +"target" "t11" +// brush 0 +{ +( 1152 -264 320 ) ( 1144 -264 320 ) ( 1144 -312 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -312 448 ) ( 1150 -264 448 ) ( 1150 -264 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -259 362 ) ( 1146 -259 362 ) ( 1146 -259 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -264 448 ) ( 1146 -312 448 ) ( 1146 -312 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -317 360 ) ( 1150 -317 360 ) ( 1150 -317 318 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -295 385 ) ( 1146 -295 385 ) ( 1146 -260 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +} +// entity 169 +{ +"classname" "func_explosive" +"health" "1" +"mass" "100" +"target" "t10" +// brush 0 +{ +( 1144 -317 447 ) ( 1152 -317 447 ) ( 1152 -317 319 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -312 448 ) ( 1150 -264 448 ) ( 1150 -264 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1152 -259 448 ) ( 1144 -259 448 ) ( 1144 -259 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -264 448 ) ( 1146 -312 448 ) ( 1146 -312 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -246 385 ) ( 1146 -259 385 ) ( 1150 -252 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -573 416 ) ( 1146 -570 416 ) ( 1150 -571 416 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +} +// entity 170 +{ +"classname" "func_explosive" +"mass" "100" +"health" "1" +"target" "t12" +// brush 0 +{ +( 1152 -331 386 ) ( 1144 -331 386 ) ( 1144 -379 386 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -373 448 ) ( 1150 -325 448 ) ( 1150 -325 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1152 -320 448 ) ( 1144 -320 448 ) ( 1144 -320 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -325 448 ) ( 1146 -373 448 ) ( 1146 -373 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1155 -384 385 ) ( 1138 -384 385 ) ( 1147 -384 445 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -573 416 ) ( 1146 -570 416 ) ( 1150 -571 416 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +} +// entity 171 +{ +"classname" "func_explosive" +"health" "1" +"mass" "125" +"target" "t13" +// brush 0 +{ +( 1152 -331 386 ) ( 1144 -331 386 ) ( 1144 -379 386 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1145 -448 447 ) ( 1153 -448 447 ) ( 1153 -448 319 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -373 448 ) ( 1150 -325 448 ) ( 1150 -325 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -325 448 ) ( 1146 -373 448 ) ( 1146 -373 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1138 -384 385 ) ( 1155 -384 385 ) ( 1147 -384 445 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -573 416 ) ( 1146 -570 416 ) ( 1150 -571 416 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +} +// entity 172 +{ +"classname" "func_explosive" +"mass" "150" +"health" "1" +"target" "t15" +// brush 0 +{ +( 1152 -456 320 ) ( 1144 -456 320 ) ( 1144 -504 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1144 -509 448 ) ( 1152 -509 448 ) ( 1152 -509 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -504 448 ) ( 1150 -456 448 ) ( 1150 -456 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1152 -451 448 ) ( 1144 -451 448 ) ( 1144 -451 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -456 448 ) ( 1146 -504 448 ) ( 1146 -504 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -458 385 ) ( 1146 -451 385 ) ( 1150 -454 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +} +// entity 173 +{ +"classname" "func_explosive" +"health" "1" +"mass" "100" +"target" "t14" +// brush 0 +{ +( 1150 -504 448 ) ( 1150 -456 448 ) ( 1150 -456 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1152 -451 448 ) ( 1144 -451 448 ) ( 1144 -451 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -456 448 ) ( 1146 -504 448 ) ( 1146 -504 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -486 385 ) ( 1150 -486 385 ) ( 1150 -451 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -486 416 ) ( 1146 -486 416 ) ( 1146 -451 416 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -509 385 ) ( 1146 -509 385 ) ( 1146 -509 402 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +} +// entity 174 +{ +"classname" "func_explosive" +"mass" "125" +"health" "1" +"target" "t17" +// brush 0 +{ +( 1152 -520 320 ) ( 1144 -520 320 ) ( 1144 -568 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1144 -573 448 ) ( 1152 -573 448 ) ( 1152 -573 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -568 448 ) ( 1150 -520 448 ) ( 1150 -520 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1152 -515 448 ) ( 1144 -515 448 ) ( 1144 -515 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -520 448 ) ( 1146 -568 448 ) ( 1146 -568 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -458 385 ) ( 1146 -451 385 ) ( 1150 -454 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +} +// entity 175 +{ +"classname" "func_explosive" +"health" "1" +"mass" "100" +"target" "t16" +// brush 0 +{ +( 1144 -573 448 ) ( 1152 -573 448 ) ( 1152 -573 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -568 448 ) ( 1150 -520 448 ) ( 1150 -520 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1152 -515 448 ) ( 1144 -515 448 ) ( 1144 -515 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -520 448 ) ( 1146 -568 448 ) ( 1146 -568 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -451 385 ) ( 1146 -458 385 ) ( 1150 -454 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -573 416 ) ( 1146 -570 416 ) ( 1150 -571 416 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +} +// entity 176 +{ +"classname" "func_wall" +"spawnflags" "3" +"targetname" "t17" +// brush 0 +{ +( 1146 -568 320 ) ( 1150 -568 320 ) ( 1150 -548 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -568 448 ) ( 1150 -520 448 ) ( 1150 -520 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -520 448 ) ( 1146 -568 448 ) ( 1146 -568 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -568 320 ) ( 1146 -568 320 ) ( 1146 -560 328 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -550 324 ) ( 1150 -550 324 ) ( 1150 -560 342 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -550 324 ) ( 1146 -550 324 ) ( 1146 -540 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 1 +{ +( 1146 -525 320 ) ( 1150 -525 320 ) ( 1150 -515 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -568 448 ) ( 1150 -520 448 ) ( 1150 -520 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1152 -515 448 ) ( 1144 -515 448 ) ( 1144 -515 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -520 448 ) ( 1146 -568 448 ) ( 1146 -568 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -525 320 ) ( 1146 -525 320 ) ( 1146 -520 326 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -520 326 ) ( 1150 -520 326 ) ( 1150 -540 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 2 +{ +( 1150 -568 459 ) ( 1150 -520 459 ) ( 1150 -520 331 ) props/w_sr_v1 0 11 0 1 1 0 16 0 +( 1152 -515 459 ) ( 1144 -515 459 ) ( 1144 -515 331 ) props/w_sr_v1 0 11 0 1 1 0 16 0 +( 1146 -520 459 ) ( 1146 -568 459 ) ( 1146 -568 331 ) props/w_sr_v1 0 11 0 1 1 0 16 0 +( 1150 -519 359 ) ( 1146 -519 359 ) ( 1146 -520 368 ) props/w_sr_v1 0 11 0 1 1 0 16 0 +( 1146 -519 359 ) ( 1150 -519 359 ) ( 1150 -515 353 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -520 368 ) ( 1150 -520 368 ) ( 1150 -542 353 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 3 +{ +( 1150 -568 448 ) ( 1150 -520 448 ) ( 1150 -520 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1152 -515 448 ) ( 1144 -515 448 ) ( 1144 -515 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -520 448 ) ( 1146 -568 448 ) ( 1146 -568 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -458 385 ) ( 1146 -451 385 ) ( 1150 -454 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -519 380 ) ( 1150 -519 380 ) ( 1150 -515 374 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -519 380 ) ( 1146 -519 380 ) ( 1146 -538 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 4 +{ +( 1150 -568 448 ) ( 1150 -520 448 ) ( 1150 -520 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -520 448 ) ( 1146 -568 448 ) ( 1146 -568 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -458 385 ) ( 1146 -451 385 ) ( 1150 -454 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -544 379 ) ( 1146 -544 379 ) ( 1146 -549 382 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -549 382 ) ( 1150 -549 382 ) ( 1150 -538 374 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -544 379 ) ( 1150 -544 379 ) ( 1150 -538 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 5 +{ +( 1150 -567 383 ) ( 1146 -567 383 ) ( 1146 -573 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -568 448 ) ( 1150 -520 448 ) ( 1150 -520 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -520 448 ) ( 1146 -568 448 ) ( 1146 -568 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -458 385 ) ( 1146 -451 385 ) ( 1150 -454 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -560 384 ) ( 1146 -560 364 ) ( 1150 -560 374 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -567 383 ) ( 1150 -567 383 ) ( 1150 -560 354 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 6 +{ +( 1150 -570 347 ) ( 1146 -570 347 ) ( 1146 -573 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -573 362 ) ( 1150 -573 362 ) ( 1150 -573 345 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -568 448 ) ( 1150 -520 448 ) ( 1150 -520 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -520 448 ) ( 1146 -568 448 ) ( 1146 -568 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -570 347 ) ( 1150 -570 347 ) ( 1150 -560 354 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -573 362 ) ( 1146 -573 362 ) ( 1146 -569 354 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +} +// entity 177 +{ +"classname" "func_wall" +"spawnflags" "3" +"targetname" "t16" +// brush 0 +{ +( 1144 -573 448 ) ( 1152 -573 448 ) ( 1152 -573 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -568 448 ) ( 1150 -520 448 ) ( 1150 -520 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -520 448 ) ( 1146 -568 448 ) ( 1146 -568 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -451 385 ) ( 1146 -458 385 ) ( 1150 -454 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -569 396 ) ( 1150 -569 396 ) ( 1150 -573 416 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -569 396 ) ( 1146 -569 396 ) ( 1146 -560 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 1 +{ +( 1150 -568 448 ) ( 1150 -520 448 ) ( 1150 -520 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -552 413 ) ( 1150 -552 413 ) ( 1150 -515 416 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -520 448 ) ( 1146 -568 448 ) ( 1146 -568 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -573 416 ) ( 1146 -570 416 ) ( 1150 -571 416 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -560 410 ) ( 1146 -560 416 ) ( 1150 -560 413 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -552 413 ) ( 1146 -552 413 ) ( 1146 -560 408 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 2 +{ +( 1150 -568 448 ) ( 1150 -520 448 ) ( 1150 -520 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1152 -515 448 ) ( 1144 -515 448 ) ( 1144 -515 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -520 448 ) ( 1146 -568 448 ) ( 1146 -568 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -518 408 ) ( 1150 -518 408 ) ( 1150 -519 404 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -518 408 ) ( 1146 -518 408 ) ( 1146 -515 408 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -519 404 ) ( 1146 -519 404 ) ( 1146 -524 408 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 3 +{ +( 1150 -568 448 ) ( 1150 -520 448 ) ( 1150 -520 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -520 448 ) ( 1146 -568 448 ) ( 1146 -568 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -451 385 ) ( 1146 -458 385 ) ( 1150 -454 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -528 388 ) ( 1150 -528 388 ) ( 1150 -560 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -524 408 ) ( 1146 -524 396 ) ( 1150 -524 402 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -528 388 ) ( 1146 -528 388 ) ( 1146 -524 396 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +} +// entity 178 +{ +"classname" "func_wall" +"spawnflags" "3" +"targetname" "t15" +// brush 0 +{ +( 1150 -504 448 ) ( 1150 -456 448 ) ( 1150 -456 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1152 -451 448 ) ( 1144 -451 448 ) ( 1144 -451 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -456 448 ) ( 1146 -504 448 ) ( 1146 -504 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -458 385 ) ( 1146 -451 385 ) ( 1150 -454 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -457 380 ) ( 1150 -457 380 ) ( 1150 -451 372 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -457 380 ) ( 1146 -457 380 ) ( 1146 -478 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 1 +{ +( 1150 -483 382 ) ( 1146 -483 382 ) ( 1146 -491 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -504 448 ) ( 1150 -456 448 ) ( 1150 -456 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -456 448 ) ( 1146 -504 448 ) ( 1146 -504 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -458 385 ) ( 1146 -451 385 ) ( 1150 -454 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -483 382 ) ( 1150 -483 382 ) ( 1150 -478 372 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -478 384 ) ( 1146 -478 376 ) ( 1150 -478 380 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 2 +{ +( 1150 -451 334 ) ( 1146 -451 334 ) ( 1146 -452 334 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -504 448 ) ( 1150 -456 448 ) ( 1150 -456 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -451 334 ) ( 1150 -451 334 ) ( 1150 -451 342 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -456 448 ) ( 1146 -504 448 ) ( 1146 -504 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -454 345 ) ( 1146 -454 345 ) ( 1146 -451 342 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -454 345 ) ( 1150 -454 345 ) ( 1150 -454 339 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -454 339 ) ( 1150 -454 339 ) ( 1150 -452 334 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 3 +{ +( 1144 -509 448 ) ( 1152 -509 448 ) ( 1152 -509 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -504 448 ) ( 1150 -456 448 ) ( 1150 -456 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -456 448 ) ( 1146 -504 448 ) ( 1146 -504 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -510 372 ) ( 1146 -500 372 ) ( 1150 -505 372 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -502 365 ) ( 1150 -502 365 ) ( 1150 -460 372 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -502 365 ) ( 1146 -502 365 ) ( 1146 -509 342 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 4 +{ +( 1152 -456 320 ) ( 1144 -456 320 ) ( 1144 -504 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1144 -509 448 ) ( 1152 -509 448 ) ( 1152 -509 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -504 448 ) ( 1150 -456 448 ) ( 1150 -456 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -456 448 ) ( 1146 -504 448 ) ( 1146 -504 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -510 332 ) ( 1146 -502 320 ) ( 1150 -506 326 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +} +// entity 179 +{ +"classname" "func_wall" +"spawnflags" "3" +"targetname" "t14" +// brush 0 +{ +( 1144 -509 447 ) ( 1152 -509 447 ) ( 1152 -509 319 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -504 448 ) ( 1150 -456 448 ) ( 1150 -456 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -456 448 ) ( 1146 -504 448 ) ( 1146 -504 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -451 385 ) ( 1146 -458 385 ) ( 1150 -454 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -510 400 ) ( 1146 -504 384 ) ( 1150 -507 392 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 1 +{ +( 1150 -504 448 ) ( 1150 -456 448 ) ( 1150 -456 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1152 -451 448 ) ( 1144 -451 448 ) ( 1144 -451 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -456 448 ) ( 1146 -504 448 ) ( 1146 -504 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -454 394 ) ( 1146 -454 394 ) ( 1146 -450 404 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -450 390 ) ( 1146 -454 394 ) ( 1150 -452 392 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 2 +{ +( 1150 -504 447 ) ( 1150 -456 447 ) ( 1150 -456 319 ) props/w_sr_v1 0 -1 0 1 1 0 16 0 +( 1150 -451 389 ) ( 1146 -451 389 ) ( 1146 -451 385 ) props/w_sr_v1 0 -1 0 1 1 0 16 0 +( 1146 -456 447 ) ( 1146 -504 447 ) ( 1146 -504 319 ) props/w_sr_v1 0 -1 0 1 1 0 16 0 +( 1146 -460 385 ) ( 1150 -460 385 ) ( 1150 -450 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -460 385 ) ( 1146 -460 385 ) ( 1146 -456 387 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -451 389 ) ( 1150 -451 389 ) ( 1150 -456 387 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +} +// entity 180 +{ +"classname" "func_wall" +"spawnflags" "3" +"targetname" "t13" +// brush 0 +{ +( 1150 -373 448 ) ( 1150 -325 448 ) ( 1150 -325 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -325 448 ) ( 1146 -373 448 ) ( 1146 -373 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1138 -384 385 ) ( 1155 -384 385 ) ( 1147 -384 445 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -390 416 ) ( 1146 -390 416 ) ( 1146 -384 416 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -390 416 ) ( 1150 -390 416 ) ( 1150 -386 408 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -426 408 ) ( 1146 -440 408 ) ( 1150 -433 408 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 1 +{ +( 1150 -373 442 ) ( 1150 -325 442 ) ( 1150 -325 314 ) props/w_sr_v1 0 -6 0 1 1 0 16 0 +( 1146 -325 442 ) ( 1146 -373 442 ) ( 1146 -373 314 ) props/w_sr_v1 0 -6 0 1 1 0 16 0 +( 1150 -384 404 ) ( 1146 -384 404 ) ( 1146 -384 386 ) props/w_sr_v1 0 -6 0 1 1 0 16 0 +( 1146 -384 404 ) ( 1150 -384 404 ) ( 1150 -386 402 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -386 394 ) ( 1146 -386 394 ) ( 1146 -388 402 ) props/w_sr_v1 0 -6 0 1 1 0 16 0 +( 1146 -386 402 ) ( 1150 -386 402 ) ( 1150 -386 394 ) props/w_sr_v1 0 -6 0 1 1 0 16 0 +} +// brush 2 +{ +( 1152 -331 386 ) ( 1144 -331 386 ) ( 1144 -379 386 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -373 448 ) ( 1150 -325 448 ) ( 1150 -325 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -325 448 ) ( 1146 -373 448 ) ( 1146 -373 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -402 390 ) ( 1146 -402 390 ) ( 1146 -396 386 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -406 386 ) ( 1146 -402 390 ) ( 1150 -404 388 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 3 +{ +( 1146 -434 386 ) ( 1150 -434 386 ) ( 1150 -410 386 ) props/w_sr_v1 0 8 0 1 1 0 16 0 +( 1150 -365 448 ) ( 1150 -317 448 ) ( 1150 -317 320 ) props/w_sr_v1 -8 0 0 1 1 0 16 0 +( 1146 -317 448 ) ( 1146 -365 448 ) ( 1146 -365 320 ) props/w_sr_v1 -8 0 0 1 1 0 16 0 +( 1150 -434 386 ) ( 1146 -434 386 ) ( 1146 -432 390 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -412 388 ) ( 1150 -412 388 ) ( 1150 -432 390 ) props/w_sr_v1 0 8 0 1 1 0 16 0 +( 1150 -412 388 ) ( 1146 -412 388 ) ( 1146 -410 386 ) props/w_sr_v1 0 8 0 1 1 0 16 0 +} +// brush 4 +{ +( 1152 -331 386 ) ( 1144 -331 386 ) ( 1144 -379 386 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -448 400 ) ( 1150 -448 400 ) ( 1150 -448 386 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -373 448 ) ( 1150 -325 448 ) ( 1150 -325 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -325 448 ) ( 1146 -373 448 ) ( 1146 -373 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -448 400 ) ( 1146 -448 400 ) ( 1146 -440 390 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -440 416 ) ( 1146 -440 408 ) ( 1150 -440 412 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +} +// entity 181 +{ +"classname" "func_wall" +"spawnflags" "3" +"targetname" "t12" +// brush 0 +{ +( 1152 -331 386 ) ( 1144 -331 386 ) ( 1144 -379 386 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -373 448 ) ( 1150 -325 448 ) ( 1150 -325 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1152 -320 448 ) ( 1144 -320 448 ) ( 1144 -320 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -325 448 ) ( 1146 -373 448 ) ( 1146 -373 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -326 386 ) ( 1146 -320 392 ) ( 1150 -323 389 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 1 +{ +( 1146 -372 414 ) ( 1150 -372 414 ) ( 1150 -362 412 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -373 448 ) ( 1150 -325 448 ) ( 1150 -325 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -325 448 ) ( 1146 -373 448 ) ( 1146 -373 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -573 416 ) ( 1146 -570 416 ) ( 1150 -571 416 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -372 414 ) ( 1146 -372 414 ) ( 1146 -372 416 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -362 412 ) ( 1150 -362 412 ) ( 1150 -348 416 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 2 +{ +( 1150 -373 448 ) ( 1150 -325 448 ) ( 1150 -325 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -325 448 ) ( 1146 -373 448 ) ( 1146 -373 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1155 -384 385 ) ( 1138 -384 385 ) ( 1147 -384 445 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -573 416 ) ( 1146 -570 416 ) ( 1150 -571 416 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -380 416 ) ( 1146 -380 406 ) ( 1150 -380 411 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -380 402 ) ( 1146 -384 394 ) ( 1150 -382 398 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 3 +{ +( 1152 -331 386 ) ( 1144 -331 386 ) ( 1144 -379 386 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -373 448 ) ( 1150 -325 448 ) ( 1150 -325 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -325 448 ) ( 1146 -373 448 ) ( 1146 -373 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -380 406 ) ( 1146 -380 416 ) ( 1150 -380 411 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -380 390 ) ( 1146 -376 386 ) ( 1150 -378 388 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +} +// entity 182 +{ +"classname" "func_wall" +"spawnflags" "3" +"targetname" "t11" +// brush 0 +{ +( 1144 -317 448 ) ( 1152 -317 448 ) ( 1152 -317 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -312 448 ) ( 1150 -264 448 ) ( 1150 -264 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -264 448 ) ( 1146 -312 448 ) ( 1146 -312 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -259 385 ) ( 1146 -246 385 ) ( 1150 -252 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -307 386 ) ( 1146 -317 380 ) ( 1150 -312 383 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 1 +{ +( 1150 -310 320 ) ( 1146 -310 320 ) ( 1146 -317 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1144 -317 448 ) ( 1152 -317 448 ) ( 1152 -317 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -312 448 ) ( 1150 -264 448 ) ( 1150 -264 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -264 448 ) ( 1146 -312 448 ) ( 1146 -312 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -315 334 ) ( 1150 -315 334 ) ( 1150 -317 334 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -310 320 ) ( 1150 -310 320 ) ( 1150 -315 334 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -313 332 ) ( 1146 -313 325 ) ( 1150 -313 329 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 2 +{ +( 1146 -276 320 ) ( 1150 -276 320 ) ( 1150 -259 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -312 448 ) ( 1150 -264 448 ) ( 1150 -264 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -259 326 ) ( 1146 -259 326 ) ( 1146 -259 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -264 448 ) ( 1146 -312 448 ) ( 1146 -312 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -259 326 ) ( 1150 -259 326 ) ( 1150 -272 323 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -272 323 ) ( 1150 -272 323 ) ( 1150 -276 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 3 +{ +( 1150 -312 448 ) ( 1150 -264 448 ) ( 1150 -264 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1152 -259 448 ) ( 1144 -259 448 ) ( 1144 -259 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -264 448 ) ( 1146 -312 448 ) ( 1146 -312 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -262 361 ) ( 1146 -262 361 ) ( 1146 -259 355 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -263 347 ) ( 1150 -263 347 ) ( 1150 -259 334 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -262 361 ) ( 1150 -262 361 ) ( 1150 -263 347 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 4 +{ +( 1152 -264 320 ) ( 1144 -264 320 ) ( 1144 -312 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -312 448 ) ( 1150 -264 448 ) ( 1150 -264 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -264 448 ) ( 1146 -312 448 ) ( 1146 -312 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -300 328 ) ( 1146 -300 333 ) ( 1150 -300 331 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -290 324 ) ( 1150 -290 324 ) ( 1150 -300 321 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -290 324 ) ( 1146 -290 324 ) ( 1146 -282 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +} +// entity 183 +{ +"classname" "func_wall" +"spawnflags" "3" +"targetname" "t10" +// brush 0 +{ +( 1144 -317 447 ) ( 1152 -317 447 ) ( 1152 -317 319 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -312 448 ) ( 1150 -264 448 ) ( 1150 -264 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -264 448 ) ( 1146 -312 448 ) ( 1146 -312 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -573 416 ) ( 1146 -570 416 ) ( 1150 -571 416 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -315 416 ) ( 1146 -317 407 ) ( 1150 -316 412 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 1 +{ +( 1150 -312 448 ) ( 1150 -264 448 ) ( 1150 -264 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -264 448 ) ( 1146 -312 448 ) ( 1146 -312 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -280 385 ) ( 1146 -280 385 ) ( 1146 -298 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -317 392 ) ( 1146 -312 392 ) ( 1150 -314 392 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -298 385 ) ( 1146 -289 392 ) ( 1150 -293 389 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -280 385 ) ( 1150 -280 385 ) ( 1150 -289 392 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 2 +{ +( 1150 -312 448 ) ( 1150 -264 448 ) ( 1150 -264 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -259 389 ) ( 1146 -259 389 ) ( 1146 -259 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -264 448 ) ( 1146 -312 448 ) ( 1146 -312 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -264 385 ) ( 1150 -264 385 ) ( 1150 -259 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -259 389 ) ( 1150 -259 389 ) ( 1150 -267 387 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -267 387 ) ( 1150 -267 387 ) ( 1150 -264 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 3 +{ +( 1150 -312 448 ) ( 1150 -264 448 ) ( 1150 -264 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -259 408 ) ( 1146 -259 408 ) ( 1146 -259 392 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -264 448 ) ( 1146 -312 448 ) ( 1146 -312 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -261 407 ) ( 1146 -261 407 ) ( 1146 -259 408 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -261 400 ) ( 1150 -261 400 ) ( 1150 -259 392 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -261 400 ) ( 1146 -261 400 ) ( 1146 -261 407 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +} +// entity 184 +{ +"classname" "func_wall" +"spawnflags" "3" +"targetname" "t9" +// brush 0 +{ +( 1150 -248 448 ) ( 1150 -200 448 ) ( 1150 -200 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -200 448 ) ( 1146 -248 448 ) ( 1146 -248 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -259 385 ) ( 1146 -246 385 ) ( 1150 -252 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -238 382 ) ( 1146 -238 382 ) ( 1146 -241 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -232 381 ) ( 1150 -232 381 ) ( 1150 -225 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -238 382 ) ( 1150 -238 382 ) ( 1150 -232 381 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 1 +{ +( 1150 -248 448 ) ( 1150 -200 448 ) ( 1150 -200 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -200 448 ) ( 1146 -248 448 ) ( 1146 -248 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -223 385 ) ( 1146 -223 385 ) ( 1146 -219 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -227 377 ) ( 1146 -227 377 ) ( 1146 -223 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -227 377 ) ( 1150 -227 377 ) ( 1150 -219 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -221 380 ) ( 1146 -227 380 ) ( 1150 -224 380 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 2 +{ +( 1152 -200 320 ) ( 1144 -200 320 ) ( 1144 -248 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1144 -252 448 ) ( 1152 -252 448 ) ( 1152 -252 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -248 448 ) ( 1150 -200 448 ) ( 1150 -200 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -200 448 ) ( 1146 -248 448 ) ( 1146 -248 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -249 325 ) ( 1146 -249 320 ) ( 1150 -249 323 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -253 354 ) ( 1146 -249 326 ) ( 1150 -251 340 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 3 +{ +( 1146 -202 320 ) ( 1150 -202 320 ) ( 1150 -195 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -248 448 ) ( 1150 -200 448 ) ( 1150 -200 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1152 -195 448 ) ( 1144 -195 448 ) ( 1144 -195 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -200 448 ) ( 1146 -248 448 ) ( 1146 -248 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -202 320 ) ( 1146 -202 320 ) ( 1146 -198 334 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -216 343 ) ( 1146 -192 331 ) ( 1150 -204 337 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 4 +{ +( 1150 -248 448 ) ( 1150 -200 448 ) ( 1150 -200 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1152 -195 448 ) ( 1144 -195 448 ) ( 1144 -195 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -200 448 ) ( 1146 -248 448 ) ( 1146 -248 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -198 385 ) ( 1150 -198 385 ) ( 1150 -198 338 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -198 338 ) ( 1150 -198 338 ) ( 1150 -195 349 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -198 347 ) ( 1146 -194 362 ) ( 1150 -196 355 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +} +// entity 185 +{ +"classname" "func_wall" +"spawnflags" "3" +"targetname" "t8" +// brush 0 +{ +( 1150 -248 448 ) ( 1150 -200 448 ) ( 1150 -200 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1152 -195 448 ) ( 1144 -195 448 ) ( 1144 -195 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -200 448 ) ( 1146 -248 448 ) ( 1146 -248 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -246 385 ) ( 1146 -259 385 ) ( 1150 -252 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -197 385 ) ( 1146 -195 391 ) ( 1150 -196 388 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 1 +{ +( 1150 -248 448 ) ( 1150 -200 448 ) ( 1150 -200 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1152 -195 448 ) ( 1144 -195 448 ) ( 1144 -195 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -200 448 ) ( 1146 -248 448 ) ( 1146 -248 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -573 416 ) ( 1146 -570 416 ) ( 1150 -571 416 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -195 414 ) ( 1146 -200 414 ) ( 1150 -197 414 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -206 414 ) ( 1146 -226 416 ) ( 1150 -216 415 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 2 +{ +( 1144 -252 447 ) ( 1152 -252 447 ) ( 1152 -252 319 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -248 448 ) ( 1150 -200 448 ) ( 1150 -200 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -200 448 ) ( 1146 -248 448 ) ( 1146 -248 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -573 416 ) ( 1146 -570 416 ) ( 1150 -571 416 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -248 416 ) ( 1146 -248 410 ) ( 1150 -248 413 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -248 414 ) ( 1146 -252 408 ) ( 1150 -250 411 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +// brush 3 +{ +( 1144 -252 447 ) ( 1152 -252 447 ) ( 1152 -252 319 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1150 -248 448 ) ( 1150 -200 448 ) ( 1150 -200 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -200 448 ) ( 1146 -248 448 ) ( 1146 -248 320 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -246 385 ) ( 1146 -259 385 ) ( 1150 -252 385 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +( 1146 -253 393 ) ( 1146 -245 385 ) ( 1150 -249 389 ) props/w_sr_v1 0 0 0 1 1 0 16 0 +} +} +// entity 186 +{ +"classname" "light" +"light" "85" +"_color" "0.501961 1.000000 1.000000" +"origin" "1028 1536 120" +"style" "6" +"spawnflags" "0" +} +// entity 187 +{ +"origin" "2080 -194 48" +"dmg" "2" +"health" "32" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 188 +{ +"spawnflags" "0" +"origin" "-88 -16 16" +"light" "80" +"_color" "0.277359 0.261106 0.212485" +"classname" "light" +} +// entity 189 +{ +"spawnflags" "2" +"origin" "288 -576 202" +"health" "32" +"light" "10" +"classname" "lightflare" +} +// entity 190 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"origin" "864 -192 187" +} +// entity 191 +{ +"classname" "lightflare" +"health" "96" +"spawnflags" "2" +"light" "10" +"origin" "-1808 2694 318" +} +// entity 192 +{ +"classname" "smoke_sm" +"origin" "912 136 304" +"spawnflags" "0" +} +// entity 193 +{ +"speed" "75" +"spawnflags" "1" +"classname" "func_rotating" +// brush 0 +{ +( 884 156 433 ) ( 884 164 433 ) ( 876 164 433 ) common/0_origin -16 16 0 1 1 16777216 128 0 +( 876 164 446 ) ( 884 164 446 ) ( 884 156 446 ) common/0_origin -16 16 0 1 1 16777216 128 0 +( 878 164 448 ) ( 878 156 448 ) ( 878 156 444 ) common/0_origin -16 0 0 1 1 16777216 128 0 +( 876 158 448 ) ( 884 158 448 ) ( 884 158 444 ) common/0_origin -16 0 0 1 1 16777216 128 0 +( 882 156 448 ) ( 882 164 448 ) ( 882 164 444 ) common/0_origin -16 0 0 1 1 16777216 128 0 +( 884 162 448 ) ( 876 162 448 ) ( 876 162 444 ) common/0_origin -16 0 0 1 1 16777216 128 0 +} +// brush 1 +{ +( 882 188 445 ) ( 878 188 445 ) ( 878 164 445 ) wood/wd_sr_v8 -45 2 0 1 1 0 0 0 +( 878 164 446 ) ( 878 188 446 ) ( 882 188 446 ) wood/wd_sr_v8 0 0 0 1 1 0 0 0 +( 882 164 446 ) ( 882 164 445 ) ( 878 164 445 ) wood/wd_sr_v8 0 0 0 1 1 0 0 0 +( 882 164 445 ) ( 882 164 446 ) ( 888 184 446 ) wood/wd_sr_v8 0 0 0 1 1 0 0 0 +( 888 224 444 ) ( 888 224 448 ) ( 872 224 448 ) wood/wd_sr_v8 0 0 0 1 1 0 0 0 +( 878 164 446 ) ( 878 164 445 ) ( 872 184 445 ) wood/wd_sr_v8 0 0 0 1 1 0 0 0 +( 872 224 444 ) ( 872 224 448 ) ( 872 184 448 ) wood/wd_sr_v8 0 0 0 1 1 0 0 0 +( 888 224 448 ) ( 888 224 444 ) ( 888 184 444 ) wood/wd_sr_v8 0 0 0 1 1 0 0 0 +} +// brush 2 +{ +( 908 158 445 ) ( 908 162 445 ) ( 884 162 445 ) wood/wd_sr_v8 -21 0 90 1 1 0 0 0 +( 884 162 446 ) ( 908 162 446 ) ( 908 158 446 ) wood/wd_sr_v8 0 0 0 1 1 0 0 0 +( 884 158 446 ) ( 884 158 445 ) ( 884 162 445 ) wood/wd_sr_v8 0 0 0 1 1 0 0 0 +( 884 158 445 ) ( 884 158 446 ) ( 904 152 446 ) wood/wd_sr_v8 0 0 0 1 1 0 0 0 +( 944 152 444 ) ( 944 152 448 ) ( 944 168 448 ) wood/wd_sr_v8 0 0 0 1 1 0 0 0 +( 884 162 446 ) ( 884 162 445 ) ( 904 168 445 ) wood/wd_sr_v8 0 0 0 1 1 0 0 0 +( 944 168 444 ) ( 944 168 448 ) ( 904 168 448 ) wood/wd_sr_v8 0 0 0 1 1 0 0 0 +( 944 152 448 ) ( 944 152 444 ) ( 904 152 444 ) wood/wd_sr_v8 0 0 0 1 1 0 0 0 +} +// brush 3 +{ +( 878 132 445 ) ( 882 132 445 ) ( 882 156 445 ) wood/wd_sr_v8 -45 2 0 1 1 0 0 0 +( 882 156 446 ) ( 882 132 446 ) ( 878 132 446 ) wood/wd_sr_v8 -45 2 0 1 1 0 0 0 +( 878 156 446 ) ( 878 156 445 ) ( 882 156 445 ) wood/wd_sr_v8 -45 2 0 1 1 0 0 0 +( 878 156 445 ) ( 878 156 446 ) ( 872 136 446 ) wood/wd_sr_v8 -45 2 0 1 1 0 0 0 +( 872 96 444 ) ( 872 96 448 ) ( 888 96 448 ) wood/wd_sr_v8 -45 2 0 1 1 0 0 0 +( 882 156 446 ) ( 882 156 445 ) ( 888 136 445 ) wood/wd_sr_v8 -45 2 0 1 1 0 0 0 +( 888 96 444 ) ( 888 96 448 ) ( 888 136 448 ) wood/wd_sr_v8 -45 2 0 1 1 0 0 0 +( 872 96 448 ) ( 872 96 444 ) ( 872 136 444 ) wood/wd_sr_v8 -45 2 0 1 1 0 0 0 +} +// brush 4 +{ +( 852 162 445 ) ( 852 158 445 ) ( 876 158 445 ) wood/wd_sr_v8 48 0 90 1 1 0 0 0 +( 876 158 446 ) ( 852 158 446 ) ( 852 162 446 ) wood/wd_sr_v8 92 0 90 1 1 0 0 0 +( 876 162 446 ) ( 876 162 445 ) ( 876 158 445 ) wood/wd_sr_v8 92 0 90 1 1 0 0 0 +( 876 162 445 ) ( 876 162 446 ) ( 856 168 446 ) wood/wd_sr_v8 92 0 90 1 1 0 0 0 +( 816 168 444 ) ( 816 168 448 ) ( 816 152 448 ) wood/wd_sr_v8 92 0 90 1 1 0 0 0 +( 876 158 446 ) ( 876 158 445 ) ( 856 152 445 ) wood/wd_sr_v8 92 0 90 1 1 0 0 0 +( 816 152 444 ) ( 816 152 448 ) ( 856 152 448 ) wood/wd_sr_v8 92 0 90 1 1 0 0 0 +( 816 168 448 ) ( 816 168 444 ) ( 856 168 444 ) wood/wd_sr_v8 92 0 90 1 1 0 0 0 +} +// brush 5 +{ +( 884 164 444 ) ( 876 164 444 ) ( 876 156 444 ) metals/mt_pv_m26y -16 1 0 1 1 0 0 0 +( 876 156 448 ) ( 876 164 448 ) ( 884 164 448 ) metals/mt_pv_m26y -16 1 0 1 1 0 0 0 +( 876 156 480 ) ( 884 156 480 ) ( 884 156 444 ) metals/mt_pv_m26y -16 -23 0 1 1 0 0 0 +( 884 156 480 ) ( 884 164 480 ) ( 884 164 444 ) metals/mt_pv_m26y 0 -23 0 1 1 0 0 0 +( 884 164 480 ) ( 876 164 480 ) ( 876 164 444 ) metals/mt_pv_m26y -16 -23 0 1 1 0 0 0 +( 876 164 480 ) ( 876 156 480 ) ( 876 156 444 ) metals/mt_pv_m26y 0 -23 0 1 1 0 0 0 +( 874 160 444 ) ( 878 164 444 ) ( 876 162 448 ) metals/mt_pv_m26y 0 -23 0 1 1 0 0 0 +( 882 164 444 ) ( 886 160 444 ) ( 884 162 448 ) metals/mt_pv_m26y 0 -23 0 1 1 0 0 0 +( 886 160 444 ) ( 880 154 444 ) ( 883 157 448 ) metals/mt_pv_m26y 0 -23 0 1 1 0 0 0 +( 880 154 444 ) ( 874 160 444 ) ( 877 157 448 ) metals/mt_pv_m26y 0 -23 0 1 1 0 0 0 +} +} +// entity 194 +{ +"origin" "1456 -472 208" +"light" "80" +"_color" "0.277359 0.261106 0.212485" +"classname" "light" +} +// entity 195 +{ +"origin" "-24 1440 128" +"spawnflags" "0" +"light" "200" +"_color" "0.950000 1.000000 0.950000" +"classname" "light" +} +// entity 196 +{ +"targetname" "t7" +"classname" "func_areaportal" +// brush 0 +{ +( 1644 -544 32 ) ( 1628 -544 32 ) ( 1628 -672 32 ) common/0_trigger 20 0 0 1 1 0 128 0 +( 1628 -672 160 ) ( 1628 -544 160 ) ( 1644 -544 160 ) common/0_trigger 20 0 0 1 1 0 128 0 +( 1628 -672 160 ) ( 1644 -672 160 ) ( 1644 -672 32 ) common/0_trigger 20 0 0 1 1 0 128 0 +( 1636 -672 160 ) ( 1636 -544 160 ) ( 1636 -544 32 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1644 -544 160 ) ( 1628 -544 160 ) ( 1628 -544 32 ) common/0_trigger 20 0 0 1 1 0 128 0 +( 1628 -544 160 ) ( 1628 -672 160 ) ( 1628 -672 32 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 197 +{ +"target" "t7" +"angle" "-1" +"classname" "func_door" +// brush 0 +{ +( 1640 -544 32 ) ( 1624 -544 32 ) ( 1624 -672 32 ) metals/mt_pv_m16k 0 -32 0 1 1 0 0 0 +( 1624 -672 160 ) ( 1624 -544 160 ) ( 1640 -544 160 ) floors/dr_pv_m1 32 32 0 1 1 0 0 0 +( 1624 -672 128 ) ( 1640 -672 128 ) ( 1640 -672 32 ) floors/dr_pv_m1 32 32 0 1 1 0 0 0 +( 1640 -672 128 ) ( 1640 -544 128 ) ( 1640 -544 32 ) floors/dr_pv_m1 32 32 0 1 1 0 8388608 0 +( 1640 -544 128 ) ( 1624 -544 128 ) ( 1624 -544 32 ) floors/dr_pv_m1 32 32 0 1 1 0 0 0 +( 1624 -544 128 ) ( 1624 -672 128 ) ( 1624 -672 32 ) floors/dr_pv_m1 32 32 0 1 1 0 8388608 0 +} +} +// entity 198 +{ +"targetname" "t6" +"classname" "func_areaportal" +// brush 0 +{ +( 1840 -156 32 ) ( 1760 -156 32 ) ( 1760 -164 32 ) common/0_trigger 0 20 0 1 1 0 128 0 +( 1760 -164 160 ) ( 1760 -156 160 ) ( 1840 -156 160 ) common/0_trigger 0 20 0 1 1 0 128 0 +( 1760 -164 160 ) ( 1840 -164 160 ) ( 1840 -164 32 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1888 -164 160 ) ( 1888 -156 160 ) ( 1888 -156 32 ) common/0_trigger -20 0 0 1 1 0 128 0 +( 1840 -156 160 ) ( 1760 -156 160 ) ( 1760 -156 32 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1760 -156 160 ) ( 1760 -164 160 ) ( 1760 -164 32 ) common/0_trigger -20 0 0 1 1 0 128 0 +} +} +// entity 199 +{ +"wait" "6" +"target" "t6" +"angle" "-1" +"classname" "func_door" +// brush 0 +{ +( 1848 -152 32 ) ( 1760 -152 32 ) ( 1760 -168 32 ) metals/mt_pv_m16k 0 0 90 1 1 0 0 0 +( 1760 -168 160 ) ( 1760 -152 160 ) ( 1848 -152 160 ) floors/dr_pv_m1 32 32 0 1 1 0 0 0 +( 1760 -168 128 ) ( 1848 -168 128 ) ( 1848 -168 32 ) floors/dr_pv_m1 32 32 0 1 1 0 8388608 0 +( 1888 -168 128 ) ( 1888 -152 128 ) ( 1888 -152 32 ) floors/dr_pv_m1 32 32 0 1 1 0 0 0 +( 1848 -152 128 ) ( 1760 -152 128 ) ( 1760 -152 32 ) floors/dr_pv_m1 32 32 0 1 1 0 8388608 0 +( 1760 -152 128 ) ( 1760 -168 128 ) ( 1760 -168 32 ) floors/dr_pv_m1 32 32 0 1 1 0 0 0 +} +} +// entity 200 +{ +"classname" "light" +"_color" "0.347120 0.347258 0.347365" +"light" "80" +"origin" "1688 -864 48" +} +// entity 201 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "1024 -608 160" +} +// entity 202 +{ +"classname" "func_areaportal" +"targetname" "t5" +// brush 0 +{ +( 728 -256 32 ) ( 724 -256 32 ) ( 724 -384 32 ) common/0_trigger -8 0 0 1 1 0 128 0 +( 724 -384 160 ) ( 724 -256 160 ) ( 728 -256 160 ) common/0_trigger -8 0 0 1 1 0 128 0 +( 724 -384 160 ) ( 728 -384 160 ) ( 728 -384 32 ) common/0_trigger -8 0 0 1 1 0 128 0 +( 732 -384 160 ) ( 732 -256 160 ) ( 732 -256 32 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 728 -256 160 ) ( 724 -256 160 ) ( 724 -256 32 ) common/0_trigger -8 0 0 1 1 0 128 0 +( 724 -256 160 ) ( 724 -384 160 ) ( 724 -384 32 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 203 +{ +"wait" "6" +"angle" "-1" +"classname" "func_door" +"target" "t5" +"sounds" "6" +// brush 0 +{ +( 736 -128 32 ) ( 720 -128 32 ) ( 720 -640 32 ) props/dump_m4a 0 0 0 1 1 0 0 0 +( 736 -640 224 ) ( 736 -128 224 ) ( 736 -128 96 ) floors/dr_sr_mm8 0 32 0 1 1 0 8388608 0 +( 720 -128 224 ) ( 720 -640 224 ) ( 720 -640 96 ) floors/dr_sr_mm8 0 32 0 -1 1 0 8388608 0 +( 720 -256 32 ) ( 736 -256 32 ) ( 728 -256 224 ) floors/dr_sr_mm8 64 32 0 -1 1 0 0 0 +( 736 -384 32 ) ( 712 -384 32 ) ( 724 -384 224 ) floors/dr_sr_mm8 64 32 0 -1 1 0 0 0 +( 744 -384 160 ) ( 712 -384 160 ) ( 728 -256 160 ) bricks/b_sr_20 112 0 0 1 1 0 0 0 +} +} +// entity 204 +{ +"spawnflags" "0" +"origin" "288 -552 128" +"light" "225" +"_color" "0.400781 0.400904 0.401072" +"classname" "light" +} +// entity 205 +{ +"spawnflags" "0" +"classname" "light" +"_color" "1.000000 0.952941 0.709804" +"light" "70" +"origin" "32 408 192" +} +// entity 206 +{ +"origin" "-1120 1704 40" +"_color" "1.000000 0.501961 0.000000" +"style" "1" +"light" "90" +"classname" "light" +"spawnflags" "0" +} +// entity 207 +{ +"classname" "light" +"_color" "1.000000 0.741176 0.643137" +"light" "175" +"origin" "1888 2112 -48" +"style" "8" +"spawnflags" "0" +} +// entity 208 +{ +"classname" "light" +"light" "125" +"style" "1" +"_color" "1.000000 0.501961 0.000000" +"origin" "2516 2636 40" +} +// entity 209 +{ +"_color" "1.000000 0.501961 0.000000" +"style" "1" +"light" "300" +"origin" "-2080 2528 48" +"classname" "light_fire_med" +"spawnflags" "8" +} +// entity 210 +{ +"origin" "488 1880 392" +"spawnflags" "1" +"classname" "smoke_med" +} +// entity 211 +{ +"classname" "light" +"_color" "0.302650 0.242770 0.221798" +"light" "70" +"origin" "768 1504 152" +"spawnflags" "0" +} +// entity 212 +{ +"classname" "func_timer" +"origin" "-1848 2520 64" +"spawnflags" "1" +"wait" "100" +"random" "10" +"target" "t1" +} +// entity 213 +{ +"classname" "target_speaker" +"attenuation" "-1" +"noise" "world/dog1" +"origin" "-1792 2496 64" +"targetname" "t4" +} +// entity 214 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"attenuation" "-1" +"origin" "-1920 2112 64" +} +// entity 215 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/steam" +"attenuation" "3" +"origin" "-1984 2608 80" +} +// entity 216 +{ +"origin" "-1664 2960 -24" +"_color" "0.348851 0.348943 0.349020" +"light" "75" +"classname" "light" +} +// entity 217 +{ +"origin" "-1984 2632 20" +"spawnflags" "33" +"classname" "smoke_med" +"alphalevel" "10" +} +// entity 218 +{ +"origin" "-1824 2632 72" +"light" "155" +"_color" "1.000000 0.870588 0.690196" +"classname" "light" +"spawnflags" "0" +} +// entity 219 +{ +"classname" "info_player_start" +"angle" "225" +"origin" "-1788 2720 24" +} +// entity 220 +{ +"classname" "light" +"light" "75" +"_color" "0.348851 0.348943 0.349020" +"origin" "-1536 2960 -24" +} +// entity 221 +{ +"origin" "-1392 2960 -24" +"_color" "0.348851 0.348943 0.349020" +"light" "75" +"classname" "light" +} +// entity 222 +{ +"classname" "light" +"light" "75" +"_color" "0.348851 0.348943 0.349020" +"origin" "-2096 2920 16" +} +// entity 223 +{ +"classname" "light" +"light" "75" +"_color" "0.348851 0.348943 0.349020" +"origin" "-1392 2848 -24" +} +// entity 224 +{ +"origin" "-1392 2720 -24" +"_color" "0.348851 0.348943 0.349020" +"light" "75" +"classname" "light" +} +// entity 225 +{ +"classname" "light" +"light" "75" +"_color" "0.348851 0.348943 0.349020" +"origin" "-1392 2592 -24" +} +// entity 226 +{ +"origin" "-1072 2456 -56" +"_color" "1.000000 0.487805 0.325203" +"light" "75" +"classname" "light" +} +// entity 227 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.788235 0.717647" +"origin" "-1072 2512 -80" +} +// entity 228 +{ +"origin" "-1112 2336 -64" +"style" "1" +"light" "100" +"_color" "1.000000 0.501961 0.000000" +"classname" "light" +} +// entity 229 +{ +"classname" "light" +"_color" "0.383104 0.383081 0.383042" +"light" "250" +"origin" "-1288 1768 152" +"spawnflags" "0" +} +// entity 230 +{ +"origin" "-1346 2334 66" +"style" "1" +"light" "200" +"_color" "1.000000 0.501961 0.000000" +"classname" "light" +} +// entity 231 +{ +"origin" "-2080 2528 80" +"attenuation" "3" +"noise" "world/fire_sm" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 232 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/fire_sm" +"attenuation" "3" +"origin" "-1358 2284 80" +} +// entity 233 +{ +"origin" "-1056 1704 80" +"attenuation" "3" +"noise" "world/fire_sm" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 234 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/fire_sm" +"attenuation" "3" +"origin" "-1056 2336 -56" +} +// entity 235 +{ +"origin" "-1920 2280 64" +"attenuation" "-1" +"noise" "world/citybg" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 236 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"attenuation" "-1" +"origin" "-1920 2472 64" +} +// entity 237 +{ +"origin" "-2048 2624 64" +"attenuation" "-1" +"noise" "world/citybg" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 238 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"attenuation" "-1" +"origin" "-1848 2624 64" +} +// entity 239 +{ +"origin" "-1840 2848 64" +"attenuation" "-1" +"noise" "world/citybg" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 240 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"attenuation" "-1" +"origin" "-2024 2856 64" +} +// entity 241 +{ +"origin" "-1728 2112 64" +"attenuation" "-1" +"noise" "world/citybg" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 242 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"attenuation" "-1" +"origin" "-1512 2112 64" +} +// entity 243 +{ +"origin" "-1272 2200 64" +"attenuation" "-1" +"noise" "world/citybg" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 244 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"attenuation" "-1" +"origin" "-1328 1976 64" +} +// entity 245 +{ +"origin" "-1080 1984 64" +"attenuation" "-1" +"noise" "world/citybg" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 246 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"attenuation" "-1" +"origin" "-1128 2152 64" +} +// entity 247 +{ +"origin" "-1016 1768 64" +"attenuation" "-1" +"noise" "world/citybg" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 248 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"attenuation" "-1" +"origin" "-992 1512 64" +} +// entity 249 +{ +"origin" "-880 1376 64" +"attenuation" "-1" +"noise" "world/citybg" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 250 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"attenuation" "-1" +"origin" "-1272 1704 224" +} +// entity 251 +{ +"origin" "-1824 2496 64" +"noise" "world/dog2" +"attenuation" "-1" +"classname" "target_speaker" +"targetname" "t2" +} +// entity 252 +{ +"classname" "target_speaker" +"attenuation" "-1" +"noise" "world/can1" +"origin" "-1824 2520 64" +"targetname" "t1" +} +// entity 253 +{ +"origin" "-1792 2520 64" +"noise" "world/canbeer" +"attenuation" "-1" +"classname" "target_speaker" +"targetname" "t3" +} +// entity 254 +{ +"origin" "-1848 2496 64" +"classname" "func_timer" +"spawnflags" "1" +"wait" "100" +"random" "20" +"target" "t2" +} +// entity 255 +{ +"classname" "func_timer" +"origin" "-1768 2520 64" +"spawnflags" "1" +"wait" "60" +"random" "30" +"target" "t3" +} +// entity 256 +{ +"origin" "-1768 2496 64" +"classname" "func_timer" +"spawnflags" "1" +"wait" "45" +"random" "25" +"target" "t4" +} +// entity 257 +{ +"origin" "880 1984 104" +"light" "250" +"_color" "1.000000 0.811765 0.623529" +"classname" "light" +"spawnflags" "8" +} +// entity 258 +{ +"classname" "light" +"_color" "0.302650 0.242770 0.221798" +"light" "85" +"origin" "1136 2560 160" +"spawnflags" "0" +} +// entity 259 +{ +"origin" "1328 3008 160" +"light" "85" +"_color" "0.302650 0.242770 0.221798" +"classname" "light" +"spawnflags" "0" +} +// entity 260 +{ +"spawnflags" "0" +"classname" "light" +"_color" "0.302650 0.242770 0.221798" +"light" "85" +"origin" "304 1792 160" +} +// entity 261 +{ +"classname" "light" +"_color" "0.302650 0.242770 0.221798" +"light" "85" +"origin" "1680 3008 160" +"spawnflags" "0" +} +// entity 262 +{ +"angle" "315" +"_color" "1.000000 0.501961 0.000000" +"style" "1" +"light" "250" +"classname" "light_fire_med" +"origin" "-1358 2284 48" +"spawnflags" "8" +} +// entity 263 +{ +"_color" "1.000000 0.501961 0.000000" +"light" "300" +"style" "1" +"origin" "-1056 1704 48" +"classname" "light_fire_med" +"spawnflags" "8" +} +// entity 264 +{ +"style" "1" +"light" "250" +"_color" "1.000000 0.501961 0.000000" +"classname" "light_fire_med" +"origin" "-1056 2336 -80" +} +// entity 265 +{ +"classname" "light" +"light" "225" +"_color" "1.000000 0.786957 0.682609" +"origin" "2184 2880 248" +"spawnflags" "0" +} +// entity 266 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/fire_sm" +"attenuation" "3" +"origin" "2548 2636 80" +} +// entity 267 +{ +"classname" "light_fire_med" +"origin" "2548 2636 48" +"style" "1" +"light" "300" +"_color" "1.000000 0.501961 0.000000" +"spawnflags" "8" +} +// entity 268 +{ +"origin" "2528 2576 40" +"_color" "1.000000 0.501961 0.000000" +"style" "1" +"light" "100" +"classname" "light" +} +// entity 269 +{ +"origin" "1888 2304 -24" +"light" "80" +"_color" "0.302650 0.242770 0.221798" +"classname" "light" +"spawnflags" "0" +} +// entity 270 +{ +"classname" "light" +"_color" "0.302650 0.242770 0.221798" +"light" "80" +"origin" "1888 2496 -24" +"spawnflags" "0" +} +// entity 271 +{ +"origin" "2184 2528 248" +"_color" "1.000000 0.786957 0.682609" +"light" "225" +"classname" "light" +"spawnflags" "0" +} +// entity 272 +{ +"origin" "2184 3232 248" +"_color" "1.000000 0.786957 0.682609" +"light" "225" +"classname" "light" +"spawnflags" "0" +} +// entity 273 +{ +"origin" "2496 3232 248" +"_color" "1.000000 0.786957 0.682609" +"light" "175" +"classname" "light" +"spawnflags" "8" +} +// entity 274 +{ +"classname" "light" +"light" "175" +"_color" "1.000000 0.786957 0.682609" +"origin" "2496 2880 248" +"spawnflags" "8" +} +// entity 275 +{ +"origin" "2496 2528 248" +"_color" "1.000000 0.786957 0.682609" +"light" "175" +"classname" "light" +"spawnflags" "8" +} +// entity 276 +{ +"origin" "1772 2636 80" +"attenuation" "3" +"noise" "world/fire_sm" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 277 +{ +"_color" "1.000000 0.501961 0.000000" +"light" "350" +"style" "1" +"origin" "1772 2636 48" +"classname" "light_fire_med" +"spawnflags" "8" +} +// entity 278 +{ +"origin" "1804 2640 40" +"_color" "1.000000 0.501961 0.000000" +"style" "1" +"light" "125" +"classname" "light" +} +// entity 279 +{ +"spawnflags" "0" +"origin" "448 768 104" +"light" "130" +"_color" "0.302650 0.242770 0.221798" +"classname" "light" +} +// entity 280 +{ +"classname" "light" +"_color" "0.348851 0.348943 0.349020" +"light" "85" +"origin" "448 432 160" +} +// entity 281 +{ +"spawnflags" "0" +"origin" "688 64 160" +"light" "85" +"_color" "0.348851 0.348943 0.349020" +"classname" "light" +} +// entity 282 +{ +"spawnflags" "0" +"classname" "light" +"_color" "0.348851 0.348943 0.349020" +"light" "85" +"origin" "688 -320 160" +} +// entity 283 +{ +"spawnflags" "0" +"origin" "288 -960 176" +"light" "100" +"_color" "0.400781 0.400904 0.401072" +"classname" "light" +} +// entity 284 +{ +"spawnflags" "0" +"origin" "1280 -608 160" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 285 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "1536 -608 160" +} +// entity 286 +{ +"spawnflags" "0" +"origin" "864 -448 160" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 287 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "864 -192 160" +} +// entity 288 +{ +"spawnflags" "0" +"origin" "2048 -384 280" +"_color" "0.291728 0.291762 0.291793" +"light" "100" +"classname" "light" +} +// entity 289 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.291728 0.291762 0.291793" +"origin" "2048 -576 280" +} +// entity 290 +{ +"spawnflags" "0" +"origin" "2048 -768 280" +"_color" "0.291728 0.291762 0.291793" +"light" "100" +"classname" "light" +} +// entity 291 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.291728 0.291762 0.291793" +"origin" "1792 -384 280" +} +// entity 292 +{ +"spawnflags" "0" +"origin" "1792 -576 280" +"_color" "0.291728 0.291762 0.291793" +"light" "100" +"classname" "light" +} +// entity 293 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.291728 0.291762 0.291793" +"origin" "1792 -768 280" +} +// entity 294 +{ +"origin" "2080 -216 48" +"light" "80" +"_color" "0.347120 0.347258 0.347365" +"classname" "light" +} +// entity 295 +{ +"classname" "light" +"_color" "0.347120 0.347258 0.347365" +"light" "80" +"origin" "2080 -936 48" +} +// entity 296 +{ +"classname" "light" +"_color" "0.347120 0.347258 0.347365" +"light" "80" +"origin" "2152 -672 48" +} +// entity 297 +{ +"spawnflags" "0" +"origin" "1824 -64 160" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 298 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "1824 192 160" +} +// entity 299 +{ +"spawnflags" "0" +"origin" "1664 352 160" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 300 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "1376 224 160" +} +// entity 301 +{ +"spawnflags" "0" +"classname" "light" +"_color" "0.348851 0.348943 0.349020" +"light" "85" +"origin" "1376 -208 360" +} +// entity 302 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "960 -416 456" +} +// entity 303 +{ +"spawnflags" "0" +"origin" "960 -128 456" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 304 +{ +"spawnflags" "0" +"classname" "light" +"light" "80" +"_color" "0.308935 0.308969 0.309000" +"origin" "1312 -384 456" +} +// entity 305 +{ +"origin" "880 160 400" +"_color" "1.000000 1.000000 1.000000" +"light" "80" +"classname" "light" +"spawnflags" "0" +} +// entity 306 +{ +"origin" "1888 1920 -24" +"light" "80" +"_color" "0.302650 0.242770 0.221798" +"classname" "light" +"spawnflags" "0" +} +// entity 307 +{ +"dmg" "4" +"origin" "-1961 2062 241" +"spawnflags" "2" +"light" "10" +"classname" "lightflare" +"health" "64" +} +// entity 308 +{ +"dmg" "4" +"health" "64" +"classname" "lightflare" +"light" "10" +"spawnflags" "2" +"origin" "-983 2226 239" +} +// entity 309 +{ +"dmg" "4" +"origin" "-1066 1294 239" +"spawnflags" "2" +"light" "25" +"classname" "lightflare" +"health" "64" +} +// entity 310 +{ +"dmg" "4" +"health" "64" +"classname" "lightflare" +"light" "25" +"spawnflags" "2" +"origin" "110 1510 236" +} +// entity 311 +{ +"classname" "smoke_med" +"spawnflags" "1" +"origin" "336 432 432" +} +// entity 312 +{ +"origin" "-1243 1771 318" +"light" "10" +"spawnflags" "2" +"health" "96" +"classname" "lightflare" +} +// entity 313 +{ +"classname" "lightflare" +"health" "96" +"spawnflags" "2" +"light" "10" +"origin" "830 1984 326" +} +// entity 314 +{ +"origin" "824 2874 326" +"light" "10" +"spawnflags" "2" +"health" "96" +"classname" "lightflare" +} +// entity 315 +{ +"origin" "864 -448 187" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 316 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"origin" "1024 -608 187" +} +// entity 317 +{ +"origin" "1280 -608 187" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 318 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"origin" "1536 -608 187" +} +// entity 319 +{ +"origin" "1792 -768 307" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 320 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"origin" "2048 -768 307" +} +// entity 321 +{ +"origin" "2048 -576 307" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 322 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"origin" "1792 -576 307" +} +// entity 323 +{ +"origin" "1792 -384 307" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 324 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"origin" "2048 -384 307" +} +// entity 325 +{ +"origin" "1824 -64 187" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 326 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"origin" "1824 192 187" +} +// entity 327 +{ +"origin" "1664 352 187" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 328 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"origin" "1376 224 187" +} +// entity 329 +{ +"origin" "1312 -384 483" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 330 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"origin" "960 -416 483" +} +// entity 331 +{ +"origin" "960 -128 483" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 332 +{ +"spawnflags" "2" +"classname" "lightflare" +"light" "10" +"health" "32" +"origin" "288 -960 202" +} +// entity 333 +{ +"origin" "-288 -344 376" +"spawnflags" "1" +"classname" "smoke_med" +} +// entity 334 +{ +"classname" "light" +"_color" "1.000000 0.501961 0.000000" +"light" "100" +"style" "1" +"origin" "-1056 2400 -64" +} +// entity 335 +{ +"origin" "-1152 2448 -64" +"style" "1" +"light" "100" +"_color" "1.000000 0.501961 0.000000" +"classname" "light" +} +// entity 336 +{ +"classname" "light" +"light" "90" +"style" "1" +"_color" "1.000000 0.501961 0.000000" +"origin" "-1064 1776 40" +"spawnflags" "0" +} +// entity 337 +{ +"origin" "2456 2744 72" +"_color" "1.000000 0.501961 0.000000" +"style" "1" +"light" "100" +"classname" "light" +"spawnflags" "8" +} +// entity 338 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "32" +"dmg" "2" +"origin" "2174 -672 48" +} +// entity 339 +{ +"origin" "2080 -958 48" +"dmg" "2" +"health" "32" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 340 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "32" +"dmg" "2" +"origin" "1666 -864 48" +} +// entity 341 +{ +"spawnflags" "0" +"origin" "32 320 128" +"light" "160" +"_color" "1.000000 0.956175 0.713147" +"classname" "light" +} +// entity 342 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "50" +"dmg" "2" +"origin" "1471 -472 208" +} +// entity 343 +{ +"origin" "32 408 223" +"dmg" "2" +"health" "32" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 344 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "32" +"dmg" "2" +"origin" "696 64 183" +} +// entity 345 +{ +"origin" "696 -320 183" +"dmg" "2" +"health" "32" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 346 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "32" +"dmg" "2" +"origin" "448 440 183" +} +// entity 347 +{ +"origin" "448 712 183" +"dmg" "2" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 348 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"dmg" "2" +"origin" "312 1792 183" +} +// entity 349 +{ +"origin" "1336 3008 183" +"dmg" "2" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 350 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "32" +"dmg" "2" +"origin" "1672 3008 183" +} +// entity 351 +{ +"origin" "2200 2880 287" +"dmg" "2" +"health" "72" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 352 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "72" +"dmg" "2" +"origin" "2200 2528 287" +} +// entity 353 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "72" +"dmg" "2" +"origin" "2200 3232 287" +} +// entity 354 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "72" +"dmg" "2" +"origin" "2472 2880 287" +} +// entity 355 +{ +"origin" "2472 2528 287" +"dmg" "2" +"health" "72" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 356 +{ +"origin" "2472 3232 287" +"dmg" "2" +"health" "72" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 357 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"origin" "1128 2764 439" +} +// entity 358 +{ +"origin" "1128 2652 439" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 359 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"origin" "1128 2556 439" +} +// entity 360 +{ +"origin" "1144 2560 183" +"dmg" "2" +"health" "32" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 361 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"attenuation" "-1" +"origin" "-320 1408 64" +} +// entity 362 +{ +"origin" "16 1416 64" +"attenuation" "-1" +"noise" "world/citybg" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 363 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"attenuation" "-1" +"origin" "32 1768 64" +} +// entity 364 +{ +"origin" "376 1792 64" +"attenuation" "-1" +"noise" "world/citybg" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 365 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"attenuation" "-1" +"origin" "760 1744 64" +} +// entity 366 +{ +"origin" "1064 1920 64" +"attenuation" "-1" +"noise" "world/citybg" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 367 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"attenuation" "-1" +"origin" "824 2104 64" +} +// entity 368 +{ +"origin" "1008 2360 64" +"attenuation" "-1" +"noise" "world/citybg" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 369 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"attenuation" "-1" +"origin" "832 2632 64" +} +// entity 370 +{ +"origin" "1032 2888 64" +"attenuation" "-1" +"noise" "world/citybg" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 371 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"attenuation" "-1" +"origin" "1176 3136 64" +} +// entity 372 +{ +"origin" "1456 3008 64" +"attenuation" "-1" +"noise" "world/citybg" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 373 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"attenuation" "-1" +"origin" "1872 2960 64" +} +// entity 374 +{ +"origin" "2264 2984 64" +"attenuation" "-1" +"noise" "world/citybg" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 375 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"attenuation" "-1" +"origin" "2352 3328 64" +} +// entity 376 +{ +"origin" "2360 2712 64" +"attenuation" "-1" +"noise" "world/citybg" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 377 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"attenuation" "-1" +"origin" "2000 2712 64" +} +// entity 378 +{ +"origin" "32 1064 64" +"attenuation" "-1" +"noise" "world/citybg" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 379 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"attenuation" "-1" +"origin" "128 864 64" +} +// entity 380 +{ +"origin" "464 752 64" +"attenuation" "-1" +"noise" "world/citybg" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 381 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"attenuation" "-1" +"origin" "440 328 64" +} +// entity 382 +{ +"origin" "64 200 64" +"attenuation" "-1" +"noise" "world/citybg" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 383 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"attenuation" "-1" +"origin" "544 8 64" +} +// entity 384 +{ +"origin" "96 -80 64" +"attenuation" "-1" +"noise" "world/citybg" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 385 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/citybg" +"attenuation" "-1" +"origin" "264 -456 64" +} +// entity 386 +{ +"origin" "400 -184 64" +"attenuation" "-1" +"noise" "world/citybg" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 387 +{ +"origin" "964 1536 120" +"_color" "0.501961 1.000000 1.000000" +"light" "85" +"classname" "light" +"style" "6" +"spawnflags" "0" +} +// entity 388 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.501961 0.250980" +"origin" "976 1536 104" +"style" "6" +"spawnflags" "0" +} +// entity 389 +{ +"origin" "1008 1536 104" +"_color" "1.000000 0.501961 0.250980" +"light" "100" +"classname" "light" +"style" "6" +"spawnflags" "0" +} +// entity 390 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.000000 0.000000" +"origin" "1040 1536 88" +"style" "6" +"spawnflags" "0" +} +// entity 391 +{ +"style" "6" +"classname" "light" +"light" "85" +"_color" "0.501961 1.000000 1.000000" +"origin" "996 1536 128" +"spawnflags" "0" +} +// entity 392 +{ +"origin" "1176 -544 344" +"volume" "1" +"attenuation" "1" +"noise" "world/glasbrk" +"classname" "target_speaker" +"targetname" "t17" +} +// entity 393 +{ +"origin" "1176 -480 392" +"volume" "1" +"attenuation" "1" +"noise" "world/glasbrk" +"classname" "target_speaker" +"targetname" "t14" +} +// entity 394 +{ +"classname" "target_speaker" +"noise" "world/glasbrk" +"attenuation" "1" +"volume" "1" +"origin" "1176 -480 344" +"targetname" "t15" +} +// entity 395 +{ +"classname" "target_speaker" +"noise" "world/glasbrk" +"attenuation" "1" +"volume" "1" +"origin" "1176 -416 392" +"targetname" "t13" +} +// entity 396 +{ +"origin" "1176 -352 392" +"volume" "1" +"attenuation" "1" +"noise" "world/glasbrk" +"classname" "target_speaker" +"targetname" "t12" +} +// entity 397 +{ +"classname" "target_speaker" +"noise" "world/glasbrk" +"attenuation" "1" +"volume" "1" +"origin" "1176 -288 392" +"targetname" "t10" +} +// entity 398 +{ +"origin" "1176 -288 344" +"volume" "1" +"attenuation" "1" +"noise" "world/glasbrk" +"classname" "target_speaker" +"targetname" "t11" +} +// entity 399 +{ +"origin" "1176 -224 392" +"volume" "1" +"attenuation" "1" +"noise" "world/glasbrk" +"classname" "target_speaker" +"targetname" "t8" +} +// entity 400 +{ +"classname" "target_speaker" +"noise" "world/glasbrk" +"attenuation" "1" +"volume" "1" +"origin" "1176 -224 344" +"targetname" "t9" +} +// entity 401 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "864 192 160" +} +// entity 402 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"origin" "864 192 187" +} +// entity 403 +{ +"origin" "864 -64 187" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 404 +{ +"spawnflags" "0" +"origin" "864 -64 160" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 405 +{ +"origin" "864 448 187" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 406 +{ +"spawnflags" "0" +"origin" "864 448 160" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 407 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"origin" "1024 608 187" +} +// entity 408 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "1024 608 160" +} +// entity 409 +{ +"origin" "1280 608 187" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 410 +{ +"spawnflags" "0" +"origin" "1280 608 160" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 411 +{ +"spawnflags" "0" +"origin" "1984 608 0" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 412 +{ +"origin" "1984 608 27" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 413 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "1728 608 0" +} +// entity 414 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"origin" "1728 608 27" +} +// entity 415 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "1.000000 1.000000 1.000000" +"origin" "2144 448 0" +} +// entity 416 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"origin" "2144 448 27" +} +// entity 417 +{ +"spawnflags" "0" +"origin" "2144 192 0" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 418 +{ +"origin" "2144 192 27" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 419 +{ +"origin" "1280 1280 283" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 420 +{ +"spawnflags" "0" +"origin" "1344 1280 256" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 421 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"origin" "1280 1024 283" +} +// entity 422 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "1216 1024 256" +} +// entity 423 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"origin" "1536 1280 283" +} +// entity 424 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "1472 1280 256" +} +// entity 425 +{ +"origin" "1536 1024 283" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 426 +{ +"spawnflags" "0" +"origin" "1472 1024 256" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 427 +{ +"origin" "1792 1280 283" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 428 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"origin" "1792 1024 283" +} +// entity 429 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "1728 1024 256" +} +// entity 430 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "1600 1024 256" +} +// entity 431 +{ +"spawnflags" "0" +"origin" "1600 1280 256" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 432 +{ +"spawnflags" "0" +"origin" "1856 1024 256" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 433 +{ +"spawnflags" "0" +"origin" "1728 1280 256" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 434 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "1856 1280 256" +} +// entity 435 +{ +"spawnflags" "0" +"origin" "1344 1024 256" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 436 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "1216 1280 256" +} +// entity 437 +{ +"classname" "lightflare" +"light" "10" +"spawnflags" "2" +"health" "32" +"dmg" "2" +"origin" "2047 1376 48" +} +// entity 438 +{ +"classname" "light" +"_color" "0.277359 0.261106 0.212485" +"light" "80" +"origin" "2032 1376 48" +} +// entity 439 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "1960 1128 232" +} +// entity 440 +{ +"spawnflags" "0" +"classname" "light" +"light" "125" +"_color" "0.308935 0.308969 0.309000" +"origin" "2560 320 72" +} +// entity 441 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"origin" "2560 320 99" +} +// entity 442 +{ +"spawnflags" "0" +"origin" "2560 576 72" +"_color" "0.308935 0.308969 0.309000" +"light" "125" +"classname" "light" +} +// entity 443 +{ +"origin" "2560 576 99" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 444 +{ +"spawnflags" "0" +"origin" "2560 320 -56" +"_color" "0.308935 0.308969 0.309000" +"light" "125" +"classname" "light" +} +// entity 445 +{ +"spawnflags" "0" +"origin" "2560 576 -56" +"_color" "0.308935 0.308969 0.309000" +"light" "125" +"classname" "light" +} +// entity 446 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "1.000000 1.000000 1.000000" +"origin" "2144 448 -56" +} +// entity 447 +{ +"origin" "2144 192 -40" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 448 +{ +"origin" "2088 1056 240" +"_color" "0.308935 0.308969 0.309000" +"light" "65" +"classname" "light" +"_fade" "0.65" +} +// entity 449 +{ +"origin" "2144 960 240" +"_color" "0.308935 0.308969 0.309000" +"light" "65" +"classname" "light" +} +// entity 450 +{ +"classname" "light" +"light" "65" +"_color" "0.308935 0.308969 0.309000" +"origin" "2144 896 240" +} +// entity 451 +{ +"origin" "2144 832 240" +"_color" "0.308935 0.308969 0.309000" +"light" "65" +"classname" "light" +} +// entity 452 +{ +"origin" "2240 800 240" +"_color" "0.308935 0.308969 0.309000" +"light" "65" +"classname" "light" +} +// entity 453 +{ +"classname" "light" +"light" "65" +"_color" "0.308935 0.308969 0.309000" +"origin" "2304 800 240" +} +// entity 454 +{ +"origin" "2368 800 240" +"_color" "0.308935 0.308969 0.309000" +"light" "65" +"classname" "light" +} +// entity 455 +{ +"classname" "light" +"light" "65" +"_color" "0.308935 0.308969 0.309000" +"origin" "2400 736 240" +} +// entity 456 +{ +"spawnflags" "0" +"origin" "1984 608 -56" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 457 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "1728 608 -56" +} +// entity 458 +{ +"spawnflags" "0" +"origin" "1280 608 104" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 459 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "1024 608 104" +} +// entity 460 +{ +"spawnflags" "0" +"origin" "864 448 104" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 461 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "864 192 104" +} +// entity 462 +{ +"spawnflags" "0" +"origin" "864 -64 104" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 463 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "864 -192 104" +} +// entity 464 +{ +"spawnflags" "0" +"origin" "864 -448 104" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 465 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "1024 -608 104" +} +// entity 466 +{ +"spawnflags" "0" +"origin" "1280 -608 104" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 467 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "1536 -608 104" +} +// entity 468 +{ +"spawnflags" "0" +"origin" "1824 -64 104" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 469 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "1824 192 104" +} +// entity 470 +{ +"spawnflags" "0" +"origin" "1664 352 104" +"_color" "0.308935 0.308969 0.309000" +"light" "100" +"classname" "light" +} +// entity 471 +{ +"spawnflags" "0" +"classname" "light" +"light" "100" +"_color" "0.308935 0.308969 0.309000" +"origin" "1376 224 104" +} +// entity 472 +{ +"origin" "1312 -384 344" +"_color" "0.308935 0.308969 0.309000" +"light" "125" +"classname" "light" +} +// entity 473 +{ +"spawnflags" "0" +"classname" "light" +"_color" "0.277359 0.261106 0.212485" +"light" "100" +"origin" "1152 768 56" +} +// entity 474 +{ +"spawnflags" "0" +"classname" "light" +"_color" "0.226348 0.237017 0.225191" +"light" "150" +"origin" "-1024 1408 152" +} +// entity 475 +{ +"classname" "light" +"_color" "0.226348 0.237017 0.225191" +"light" "125" +"spawnflags" "0" +"origin" "-112 1424 72" +} +// entity 476 +{ +"spawnflags" "0" +"classname" "light" +"_color" "0.122036 0.132615 0.122228" +"light" "115" +"origin" "192 864 184" +} +// entity 477 +{ +"spawnflags" "0" +"origin" "320 864 184" +"light" "115" +"_color" "0.122036 0.132615 0.122228" +"classname" "light" +} +// entity 478 +{ +"classname" "light" +"_color" "0.302650 0.242770 0.221798" +"light" "130" +"origin" "448 384 104" +} +// entity 479 +{ +"spawnflags" "0" +"origin" "648 -320 88" +"light" "125" +"_color" "0.302650 0.242770 0.221798" +"classname" "light" +} +// entity 480 +{ +"spawnflags" "0" +"classname" "light" +"_color" "0.302650 0.242770 0.221798" +"light" "125" +"origin" "648 64 88" +} +// entity 481 +{ +"spawnflags" "0" +"classname" "light" +"_color" "0.400781 0.400904 0.401072" +"light" "150" +"origin" "160 -128 144" +} +// entity 482 +{ +"classname" "light" +"_color" "0.277359 0.261106 0.212485" +"light" "85" +"origin" "-24 -88 96" +"spawnflags" "0" +} +// entity 483 +{ +"spawnflags" "0" +"classname" "light" +"_color" "0.302650 0.242770 0.221798" +"light" "130" +"origin" "256 1792 104" +} +// entity 484 +{ +"origin" "1280 3008 104" +"light" "130" +"_color" "0.302650 0.242770 0.221798" +"classname" "light" +"spawnflags" "0" +} +// entity 485 +{ +"origin" "768 1568 80" +"light" "100" +"_color" "0.302650 0.242770 0.221798" +"classname" "light" +"spawnflags" "0" +} +// entity 486 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "32" +"dmg" "2" +"origin" "768 1504 179" +} +// entity 487 +{ +"origin" "1088 2560 80" +"light" "100" +"_color" "0.302650 0.242770 0.221798" +"classname" "light" +"spawnflags" "0" +} +// entity 488 +{ +"origin" "512 1792 160" +"light" "85" +"_color" "0.302650 0.242770 0.221798" +"classname" "light" +"spawnflags" "0" +} +// entity 489 +{ +"origin" "504 1792 183" +"dmg" "2" +"health" "32" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 490 +{ +"origin" "560 1792 104" +"light" "100" +"_color" "0.302650 0.242770 0.221798" +"classname" "light" +"spawnflags" "0" +} +// entity 491 +{ +"style" "6" +"origin" "1072 1560 80" +"_color" "1.000000 0.000000 0.000000" +"light" "75" +"classname" "light" +"spawnflags" "0" +} +// entity 492 +{ +"classname" "light" +"light" "60" +"_color" "1.000000 0.000000 0.000000" +"origin" "1088 1592 40" +"style" "6" +"spawnflags" "0" +} +// entity 493 +{ +"classname" "light" +"_color" "0.302650 0.242770 0.221798" +"light" "130" +"origin" "1728 3008 104" +"spawnflags" "0" +} +// entity 494 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.786957 0.682609" +"origin" "2128 2528 72" +"spawnflags" "0" +} +// entity 495 +{ +"origin" "2128 2880 72" +"_color" "1.000000 0.786957 0.682609" +"light" "100" +"classname" "light" +"spawnflags" "0" +} +// entity 496 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.786957 0.682609" +"origin" "2160 3232 72" +"spawnflags" "0" +} +// entity 497 +{ +"origin" "2528 3232 72" +"_color" "1.000000 0.786957 0.682609" +"light" "100" +"classname" "light" +"spawnflags" "0" +} +// entity 498 +{ +"classname" "light" +"light" "100" +"_color" "1.000000 0.786957 0.682609" +"origin" "2528 2880 72" +"spawnflags" "0" +} +// entity 499 +{ +"_color" "1.000000 0.501961 0.000000" +"light" "250" +"style" "1" +"origin" "-576 1493 48" +"classname" "light_fire_med" +"spawnflags" "8" +} +// entity 500 +{ +"dmg" "4" +"origin" "-973 2215 239" +"spawnflags" "2" +"light" "10" +"classname" "lightflare" +"health" "64" +} +// entity 501 +{ +"classname" "func_group" +// brush 0 +{ +( -1347 2273 104 ) ( -1347 2273 136 ) ( -1336 2284 136 ) props/barrel_v4 4 0 0 0.750000 0.750000 134217728 8388608 1 +( -1358 2268 0 ) ( -1358 2268 32 ) ( -1342 2268 32 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 1 +( -1342 2284 104 ) ( -1342 2284 136 ) ( -1342 2300 136 ) props/barrel_v4 4 0 0 0.750000 0.750000 134217728 8388608 1 +( -1374 2268 0 ) ( -1342 2268 0 ) ( -1342 2300 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1342 2300 48 ) ( -1342 2268 48 ) ( -1374 2268 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1348 2274 127 ) ( -1348 2274 98 ) ( -1338 2284 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +// brush 1 +{ +( -1374 2268 0 ) ( -1342 2268 0 ) ( -1342 2300 0 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -1348 2274 98 ) ( -1348 2274 127 ) ( -1338 2284 127 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -1358 2270 4 ) ( -1358 2270 33 ) ( -1344 2270 33 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -1368 2274 4 ) ( -1368 2274 33 ) ( -1358 2264 33 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -1372 2284 4 ) ( -1372 2284 33 ) ( -1372 2270 33 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -1368 2294 4 ) ( -1368 2294 33 ) ( -1378 2284 33 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -1358 2298 98 ) ( -1358 2298 127 ) ( -1372 2298 127 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -1348 2294 98 ) ( -1348 2294 127 ) ( -1358 2304 127 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -1344 2284 98 ) ( -1344 2284 127 ) ( -1344 2298 127 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -1344 2270 36 ) ( -1372 2270 36 ) ( -1344 2298 36 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +} +// brush 2 +{ +( -1358 2268 0 ) ( -1358 2268 32 ) ( -1342 2268 32 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 1 +( -1369 2273 0 ) ( -1369 2273 32 ) ( -1358 2262 32 ) props/barrel_v4 85 0 0 -0.750000 0.750000 134217728 8388608 1 +( -1374 2268 0 ) ( -1342 2268 0 ) ( -1342 2300 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1342 2300 48 ) ( -1342 2268 48 ) ( -1374 2268 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1348 2274 98 ) ( -1348 2274 127 ) ( -1338 2284 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1358 2270 33 ) ( -1358 2270 4 ) ( -1344 2270 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +// brush 3 +{ +( -1369 2273 0 ) ( -1369 2273 32 ) ( -1358 2262 32 ) props/barrel_v4 85 0 0 -0.750000 0.750000 134217728 8388608 1 +( -1374 2284 0 ) ( -1374 2284 32 ) ( -1374 2268 32 ) props/barrel_v4 47 0 0 0.750000 0.750000 134217728 8388608 1 +( -1374 2268 0 ) ( -1342 2268 0 ) ( -1342 2300 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1342 2300 48 ) ( -1342 2268 48 ) ( -1374 2268 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1358 2270 4 ) ( -1358 2270 33 ) ( -1344 2270 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1368 2274 33 ) ( -1368 2274 4 ) ( -1358 2264 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +// brush 4 +{ +( -1374 2284 0 ) ( -1374 2284 32 ) ( -1374 2268 32 ) props/barrel_v4 47 0 0 0.750000 0.750000 134217728 8388608 1 +( -1369 2295 0 ) ( -1369 2295 32 ) ( -1380 2284 32 ) props/barrel_v4 47 0 0 0.750000 0.750000 134217728 8388608 1 +( -1374 2268 0 ) ( -1342 2268 0 ) ( -1342 2300 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1342 2300 48 ) ( -1342 2268 48 ) ( -1374 2268 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1368 2274 4 ) ( -1368 2274 33 ) ( -1358 2264 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1372 2284 33 ) ( -1372 2284 4 ) ( -1372 2270 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +// brush 5 +{ +( -1369 2295 0 ) ( -1369 2295 32 ) ( -1380 2284 32 ) props/barrel_v4 47 0 0 0.750000 0.750000 134217728 8388608 1 +( -1358 2300 104 ) ( -1358 2300 136 ) ( -1374 2300 136 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1374 2268 0 ) ( -1342 2268 0 ) ( -1342 2300 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1342 2300 48 ) ( -1342 2268 48 ) ( -1374 2268 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1372 2284 4 ) ( -1372 2284 33 ) ( -1372 2270 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1368 2294 33 ) ( -1368 2294 4 ) ( -1378 2284 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +// brush 6 +{ +( -1358 2300 104 ) ( -1358 2300 136 ) ( -1374 2300 136 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 1 +( -1347 2295 104 ) ( -1347 2295 136 ) ( -1358 2306 136 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1374 2268 0 ) ( -1342 2268 0 ) ( -1342 2300 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1342 2300 48 ) ( -1342 2268 48 ) ( -1374 2268 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1368 2294 4 ) ( -1368 2294 33 ) ( -1378 2284 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1358 2298 127 ) ( -1358 2298 98 ) ( -1372 2298 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +// brush 7 +{ +( -1347 2295 104 ) ( -1347 2295 136 ) ( -1358 2306 136 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1342 2284 104 ) ( -1342 2284 136 ) ( -1342 2300 136 ) props/barrel_v4 4 0 0 0.750000 0.750000 134217728 8388608 0 +( -1374 2268 0 ) ( -1342 2268 0 ) ( -1342 2300 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1342 2300 48 ) ( -1342 2268 48 ) ( -1374 2268 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1358 2298 98 ) ( -1358 2298 127 ) ( -1372 2298 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1348 2294 127 ) ( -1348 2294 98 ) ( -1358 2304 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +// brush 8 +{ +( -1342 2284 104 ) ( -1342 2284 136 ) ( -1342 2300 136 ) props/barrel_v4 4 0 0 0.750000 0.750000 134217728 8388608 1 +( -1374 2268 0 ) ( -1342 2268 0 ) ( -1342 2300 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1342 2300 48 ) ( -1342 2268 48 ) ( -1374 2268 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1348 2274 98 ) ( -1348 2274 127 ) ( -1338 2284 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1348 2294 98 ) ( -1348 2294 127 ) ( -1358 2304 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -1344 2284 127 ) ( -1344 2284 98 ) ( -1344 2298 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +} +// entity 502 +{ +"classname" "func_group" +// brush 0 +{ +( -565 1482 104 ) ( -565 1482 136 ) ( -554 1493 136 ) props/barrel_v4 74 0 0 0.600000 0.750000 134217728 8388608 1 +( -576 1477 0 ) ( -576 1477 32 ) ( -560 1477 32 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 1 +( -560 1493 104 ) ( -560 1493 136 ) ( -560 1509 136 ) props/barrel_v4 74 0 0 0.600000 0.750000 134217728 8388608 1 +( -592 1477 0 ) ( -560 1477 0 ) ( -560 1509 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -560 1509 48 ) ( -560 1477 48 ) ( -592 1477 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -566 1483 127 ) ( -566 1483 98 ) ( -556 1493 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +// brush 1 +{ +( -592 1477 0 ) ( -560 1477 0 ) ( -560 1509 0 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -566 1483 98 ) ( -566 1483 127 ) ( -556 1493 127 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -576 1479 4 ) ( -576 1479 33 ) ( -562 1479 33 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -586 1483 4 ) ( -586 1483 33 ) ( -576 1473 33 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -590 1493 4 ) ( -590 1493 33 ) ( -590 1479 33 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -586 1503 4 ) ( -586 1503 33 ) ( -596 1493 33 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -576 1507 98 ) ( -576 1507 127 ) ( -590 1507 127 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -566 1503 98 ) ( -566 1503 127 ) ( -576 1513 127 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -562 1493 98 ) ( -562 1493 127 ) ( -562 1507 127 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( -562 1479 36 ) ( -590 1479 36 ) ( -562 1507 36 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +} +// brush 2 +{ +( -576 1477 0 ) ( -576 1477 32 ) ( -560 1477 32 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 1 +( -587 1482 0 ) ( -587 1482 32 ) ( -576 1471 32 ) props/barrel_v4 52 0 0 -0.600000 0.750000 134217728 8388608 1 +( -592 1477 0 ) ( -560 1477 0 ) ( -560 1509 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -560 1509 48 ) ( -560 1477 48 ) ( -592 1477 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -566 1483 98 ) ( -566 1483 127 ) ( -556 1493 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -576 1479 33 ) ( -576 1479 4 ) ( -562 1479 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +// brush 3 +{ +( -587 1482 0 ) ( -587 1482 32 ) ( -576 1471 32 ) props/barrel_v4 52 0 0 -0.600000 0.750000 134217728 8388608 1 +( -592 1493 0 ) ( -592 1493 32 ) ( -592 1477 32 ) props/barrel_v4 52 0 0 -0.600000 0.750000 134217728 8388608 1 +( -592 1477 0 ) ( -560 1477 0 ) ( -560 1509 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -560 1509 48 ) ( -560 1477 48 ) ( -592 1477 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -576 1479 4 ) ( -576 1479 33 ) ( -562 1479 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -586 1483 33 ) ( -586 1483 4 ) ( -576 1473 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +// brush 4 +{ +( -592 1493 0 ) ( -592 1493 32 ) ( -592 1477 32 ) props/barrel_v4 52 0 0 -0.600000 0.750000 134217728 8388608 1 +( -587 1504 0 ) ( -587 1504 32 ) ( -598 1493 32 ) props/barrel_v4 52 0 0 -0.600000 0.750000 134217728 8388608 1 +( -592 1477 0 ) ( -560 1477 0 ) ( -560 1509 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -560 1509 48 ) ( -560 1477 48 ) ( -592 1477 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -586 1483 4 ) ( -586 1483 33 ) ( -576 1473 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -590 1493 33 ) ( -590 1493 4 ) ( -590 1479 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +// brush 5 +{ +( -587 1504 0 ) ( -587 1504 32 ) ( -598 1493 32 ) props/barrel_v4 52 0 0 -0.600000 0.750000 134217728 8388608 1 +( -576 1509 104 ) ( -576 1509 136 ) ( -592 1509 136 ) props/barrel_v4 52 0 0 -0.600000 0.750000 134217728 8388608 1 +( -592 1477 0 ) ( -560 1477 0 ) ( -560 1509 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -560 1509 48 ) ( -560 1477 48 ) ( -592 1477 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -590 1493 4 ) ( -590 1493 33 ) ( -590 1479 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -586 1503 33 ) ( -586 1503 4 ) ( -596 1493 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +// brush 6 +{ +( -576 1509 104 ) ( -576 1509 136 ) ( -592 1509 136 ) props/barrel_v4 52 0 0 -0.600000 0.750000 134217728 8388608 1 +( -565 1504 104 ) ( -565 1504 136 ) ( -576 1515 136 ) props/barrel_v4 74 0 0 0.600000 0.750000 134217728 8388608 1 +( -592 1477 0 ) ( -560 1477 0 ) ( -560 1509 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -560 1509 48 ) ( -560 1477 48 ) ( -592 1477 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -586 1503 4 ) ( -586 1503 33 ) ( -596 1493 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -576 1507 127 ) ( -576 1507 98 ) ( -590 1507 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +// brush 7 +{ +( -565 1504 104 ) ( -565 1504 136 ) ( -576 1515 136 ) props/barrel_v4 74 0 0 0.600000 0.750000 134217728 8388608 1 +( -560 1493 104 ) ( -560 1493 136 ) ( -560 1509 136 ) props/barrel_v4 74 0 0 0.600000 0.750000 134217728 8388608 1 +( -592 1477 0 ) ( -560 1477 0 ) ( -560 1509 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -560 1509 48 ) ( -560 1477 48 ) ( -592 1477 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -576 1507 98 ) ( -576 1507 127 ) ( -590 1507 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -566 1503 127 ) ( -566 1503 98 ) ( -576 1513 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +// brush 8 +{ +( -560 1493 104 ) ( -560 1493 136 ) ( -560 1509 136 ) props/barrel_v4 74 0 0 0.600000 0.750000 134217728 8388608 1 +( -592 1477 0 ) ( -560 1477 0 ) ( -560 1509 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -560 1509 48 ) ( -560 1477 48 ) ( -592 1477 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -566 1483 98 ) ( -566 1483 127 ) ( -556 1493 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -566 1503 98 ) ( -566 1503 127 ) ( -576 1513 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( -562 1493 127 ) ( -562 1493 98 ) ( -562 1507 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +} +// entity 503 +{ +"classname" "func_group" +// brush 0 +{ +( 2559 2625 104 ) ( 2559 2625 136 ) ( 2570 2636 136 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2548 2620 0 ) ( 2548 2620 32 ) ( 2564 2620 32 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2564 2636 104 ) ( 2564 2636 136 ) ( 2564 2652 136 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2532 2620 0 ) ( 2564 2620 0 ) ( 2564 2652 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2564 2652 48 ) ( 2564 2620 48 ) ( 2532 2620 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2558 2626 127 ) ( 2558 2626 98 ) ( 2568 2636 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +// brush 1 +{ +( 2532 2620 0 ) ( 2564 2620 0 ) ( 2564 2652 0 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( 2558 2626 98 ) ( 2558 2626 127 ) ( 2568 2636 127 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( 2548 2622 4 ) ( 2548 2622 33 ) ( 2562 2622 33 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( 2538 2626 4 ) ( 2538 2626 33 ) ( 2548 2616 33 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( 2534 2636 4 ) ( 2534 2636 33 ) ( 2534 2622 33 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( 2538 2646 4 ) ( 2538 2646 33 ) ( 2528 2636 33 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( 2548 2650 98 ) ( 2548 2650 127 ) ( 2534 2650 127 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( 2558 2646 98 ) ( 2558 2646 127 ) ( 2548 2656 127 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( 2562 2636 98 ) ( 2562 2636 127 ) ( 2562 2650 127 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +( 2562 2622 36 ) ( 2534 2622 36 ) ( 2562 2650 36 ) bricks/s_sr_m6 232 24 0 0.500000 0.500000 134217728 0 0 +} +// brush 2 +{ +( 2548 2620 0 ) ( 2548 2620 32 ) ( 2564 2620 32 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2537 2625 0 ) ( 2537 2625 32 ) ( 2548 2614 32 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2532 2620 0 ) ( 2564 2620 0 ) ( 2564 2652 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2564 2652 48 ) ( 2564 2620 48 ) ( 2532 2620 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2558 2626 98 ) ( 2558 2626 127 ) ( 2568 2636 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2548 2622 33 ) ( 2548 2622 4 ) ( 2562 2622 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +// brush 3 +{ +( 2537 2625 0 ) ( 2537 2625 32 ) ( 2548 2614 32 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2532 2636 0 ) ( 2532 2636 32 ) ( 2532 2620 32 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2532 2620 0 ) ( 2564 2620 0 ) ( 2564 2652 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2564 2652 48 ) ( 2564 2620 48 ) ( 2532 2620 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2548 2622 4 ) ( 2548 2622 33 ) ( 2562 2622 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2538 2626 33 ) ( 2538 2626 4 ) ( 2548 2616 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +// brush 4 +{ +( 2532 2636 0 ) ( 2532 2636 32 ) ( 2532 2620 32 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2537 2647 0 ) ( 2537 2647 32 ) ( 2526 2636 32 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2532 2620 0 ) ( 2564 2620 0 ) ( 2564 2652 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2564 2652 48 ) ( 2564 2620 48 ) ( 2532 2620 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2538 2626 4 ) ( 2538 2626 33 ) ( 2548 2616 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2534 2636 33 ) ( 2534 2636 4 ) ( 2534 2622 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +// brush 5 +{ +( 2537 2647 0 ) ( 2537 2647 32 ) ( 2526 2636 32 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2548 2652 104 ) ( 2548 2652 136 ) ( 2532 2652 136 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2532 2620 0 ) ( 2564 2620 0 ) ( 2564 2652 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2564 2652 48 ) ( 2564 2620 48 ) ( 2532 2620 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2534 2636 4 ) ( 2534 2636 33 ) ( 2534 2622 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2538 2646 33 ) ( 2538 2646 4 ) ( 2528 2636 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +// brush 6 +{ +( 2548 2652 104 ) ( 2548 2652 136 ) ( 2532 2652 136 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2559 2647 104 ) ( 2559 2647 136 ) ( 2548 2658 136 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2532 2620 0 ) ( 2564 2620 0 ) ( 2564 2652 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2564 2652 48 ) ( 2564 2620 48 ) ( 2532 2620 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2538 2646 4 ) ( 2538 2646 33 ) ( 2528 2636 33 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2548 2650 127 ) ( 2548 2650 98 ) ( 2534 2650 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +// brush 7 +{ +( 2559 2647 104 ) ( 2559 2647 136 ) ( 2548 2658 136 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2564 2636 104 ) ( 2564 2636 136 ) ( 2564 2652 136 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2532 2620 0 ) ( 2564 2620 0 ) ( 2564 2652 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2564 2652 48 ) ( 2564 2620 48 ) ( 2532 2620 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2548 2650 98 ) ( 2548 2650 127 ) ( 2534 2650 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2558 2646 127 ) ( 2558 2646 98 ) ( 2548 2656 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +// brush 8 +{ +( 2564 2636 104 ) ( 2564 2636 136 ) ( 2564 2652 136 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2532 2620 0 ) ( 2564 2620 0 ) ( 2564 2652 0 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2564 2652 48 ) ( 2564 2620 48 ) ( 2532 2620 48 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2558 2626 98 ) ( 2558 2626 127 ) ( 2568 2636 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2558 2646 98 ) ( 2558 2646 127 ) ( 2548 2656 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +( 2562 2636 127 ) ( 2562 2636 98 ) ( 2562 2650 127 ) props/barrel_v4 31 0 0 0.750000 0.750000 134217728 8388608 0 +} +} +// entity 504 +{ +"origin" "2604 2192 480" +"_color" "0.890625 1.000000 0.994792" +"light" "125" +"classname" "light" +"spawnflags" "0" +} +// entity 505 +{ +"classname" "light" +"light" "125" +"_color" "0.890625 1.000000 0.994792" +"origin" "2732 2192 480" +"spawnflags" "0" +} +// entity 506 +{ +"origin" "2780 2192 432" +"_color" "0.890625 1.000000 0.994792" +"light" "125" +"classname" "light" +"spawnflags" "0" +} +// entity 507 +{ +"origin" "2524 2192 432" +"_color" "0.890625 1.000000 0.994792" +"light" "125" +"classname" "light" +"spawnflags" "0" +} +// entity 508 +{ +"classname" "light" +"light" "125" +"_color" "0.890625 1.000000 0.994792" +"origin" "2604 2192 328" +"spawnflags" "0" +} +// entity 509 +{ +"classname" "light" +"light" "7" +"_color" "1.000000 0.784314 0.682353" +"origin" "1936 3264 464" +"spawnflags" "0" +} +// entity 510 +{ +"origin" "1936 3584 456" +"_color" "1.000000 0.666667 0.333333" +"light" "1000" +"classname" "light" +"spawnflags" "0" +} +// entity 511 +{ +"classname" "light" +"light" "125" +"style" "1" +"_color" "1.000000 0.501961 0.000000" +"origin" "1772 2668 40" +} +// entity 512 +{ +"origin" "2548 2668 40" +"_color" "1.000000 0.501961 0.000000" +"style" "1" +"light" "125" +"classname" "light" +} +// entity 513 +{ +"classname" "light" +"light" "1100" +"_color" "1.000000 0.666667 0.333333" +"origin" "448 2688 528" +"spawnflags" "8" +} +// entity 514 +{ +"origin" "824 3376 528" +"_color" "1.000000 0.666667 0.333333" +"light" "800" +"classname" "light" +"spawnflags" "8" +} +// entity 515 +{ +"origin" "-1480 2464 400" +"_color" "1.000000 0.796078 0.592157" +"light" "650" +"classname" "light" +"spawnflags" "8" +} +// entity 516 +{ +"classname" "light" +"_color" "1.000000 0.858824 0.600000" +"light" "700" +"origin" "-2280 2960 416" +} +// entity 517 +{ +"origin" "-120 568 504" +"_color" "1.000000 0.666667 0.333333" +"light" "1100" +"classname" "light" +} +// entity 518 +{ +"origin" "-608 1494 48" +"_color" "1.000000 0.501961 0.000000" +"style" "1" +"light" "115" +"classname" "light" +"spawnflags" "8" +} +// entity 519 +{ +"classname" "light" +"light" "115" +"style" "1" +"_color" "1.000000 0.501961 0.000000" +"origin" "-576 1462 48" +"spawnflags" "8" +} +// entity 520 +{ +"origin" "-544 1494 48" +"_color" "1.000000 0.501961 0.000000" +"style" "1" +"light" "115" +"classname" "light" +"spawnflags" "8" +} +// entity 521 +{ +"dmg" "4" +"angle" "90" +"health" "64" +"classname" "lightflare" +"light" "10" +"spawnflags" "2" +"origin" "-1970 2072 241" +} +// entity 522 +{ +"classname" "light" +"light" "90" +"style" "1" +"_color" "1.000000 0.501961 0.000000" +"origin" "-1386 2284 48" +} +// entity 523 +{ +"origin" "-1358 2256 48" +"_color" "1.000000 0.501961 0.000000" +"style" "1" +"light" "90" +"classname" "light" +} +// entity 524 +{ +"classname" "light" +"light" "115" +"style" "1" +"_color" "1.000000 0.501961 0.000000" +"origin" "-1326 2284 48" +} +// entity 525 +{ +"classname" "light" +"light" "90" +"style" "1" +"_color" "1.000000 0.501961 0.000000" +"origin" "-2052 2528 48" +} +// entity 526 +{ +"origin" "-2080 2556 48" +"_color" "1.000000 0.501961 0.000000" +"style" "1" +"light" "90" +"classname" "light" +} +// entity 527 +{ +"dmg" "4" +"health" "64" +"classname" "lightflare" +"light" "25" +"spawnflags" "2" +"origin" "-1075 1305 239" +} +// entity 528 +{ +"classname" "light" +"_color" "1.000000 0.811765 0.623529" +"light" "250" +"origin" "856 2874 104" +"spawnflags" "0" +} +// entity 529 +{ +"classname" "light_fire_med" +"origin" "224 1056 48" +"style" "1" +"light" "250" +"_color" "1.000000 0.501961 0.000000" +"spawnflags" "8" +} +// entity 530 +{ +"origin" "224 1025 48" +"_color" "1.000000 0.501961 0.000000" +"style" "1" +"light" "115" +"classname" "light" +} +// entity 531 +{ +"classname" "light" +"light" "115" +"style" "1" +"_color" "1.000000 0.501961 0.000000" +"origin" "256 1057 48" +} +// entity 532 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/fire_sm" +"attenuation" "3" +"origin" "-576 1494 80" +} +// entity 533 +{ +"origin" "224 1056 80" +"attenuation" "3" +"noise" "world/fire_sm" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 534 +{ +"dmg" "4" +"angle" "45" +"origin" "110 1498 236" +"spawnflags" "2" +"light" "25" +"classname" "lightflare" +"health" "64" +} +// entity 535 +{ +"classname" "light" +"light" "125" +"_color" "0.890625 1.000000 0.994792" +"origin" "2740 2616 448" +"spawnflags" "0" +} +// entity 536 +{ +"origin" "2740 2672 304" +"_color" "0.890625 1.000000 0.994792" +"light" "125" +"classname" "light" +"spawnflags" "0" +} +// entity 537 +{ +"classname" "light" +"light" "125" +"_color" "1.000000 0.788235 0.576471" +"origin" "2804 2872 352" +"spawnflags" "0" +} +// entity 538 +{ +"origin" "2804 3000 352" +"_color" "1.000000 0.788235 0.576471" +"light" "125" +"classname" "light" +"spawnflags" "0" +} +// entity 539 +{ +"classname" "light" +"light" "125" +"_color" "0.890625 1.000000 0.994792" +"origin" "2772 3184 440" +"spawnflags" "0" +} +// entity 540 +{ +"origin" "2740 3352 440" +"_color" "0.890625 1.000000 0.994792" +"light" "125" +"classname" "light" +"spawnflags" "0" +} +// entity 541 +{ +"classname" "func_group" +// brush 0 +{ +( 1872 1236 52 ) ( 1892 1236 52 ) ( 1892 1254 52 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1892 1254 55 ) ( 1892 1236 55 ) ( 1872 1236 55 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1865 1264 55 ) ( 1865 1264 53 ) ( 1890 1264 53 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1865 1238 55 ) ( 1865 1238 53 ) ( 1865 1264 53 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1865 1238 53 ) ( 1865 1238 55 ) ( 1890 1238 55 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1892 1262 55 ) ( 1892 1262 53 ) ( 1892 1240 53 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1892 1262 53 ) ( 1892 1262 55 ) ( 1890 1264 55 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1892 1240 55 ) ( 1892 1240 53 ) ( 1890 1238 53 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1865 1262 53 ) ( 1878 1264 53 ) ( 1871 1263 55 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1878 1238 53 ) ( 1865 1240 53 ) ( 1871 1239 55 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +} +// brush 1 +{ +( 1866 1242 32 ) ( 1862 1242 32 ) ( 1862 1238 32 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1862 1240 56 ) ( 1866 1240 56 ) ( 1866 1240 32 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1892 1240 56 ) ( 1892 1244 56 ) ( 1892 1244 32 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1866 1242 56 ) ( 1862 1242 56 ) ( 1862 1242 32 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1890 1242 56 ) ( 1890 1238 56 ) ( 1890 1238 32 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1894 1240 52 ) ( 1885 1240 52 ) ( 1890 1242 52 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +} +// brush 2 +{ +( 1890 1240 41 ) ( 1890 1242 41 ) ( 1872 1242 41 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1872 1242 42 ) ( 1890 1242 42 ) ( 1890 1240 42 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1867 1240 40 ) ( 1867 1240 42 ) ( 1867 1238 42 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1867 1238 40 ) ( 1867 1238 42 ) ( 1890 1240 42 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1890 1240 60 ) ( 1890 1242 60 ) ( 1890 1242 40 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1867 1240 42 ) ( 1867 1240 40 ) ( 1890 1242 40 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +} +// brush 3 +{ +( 1879 1262 41 ) ( 1877 1262 41 ) ( 1877 1240 41 ) wood/wd_sr_v1 12 -61 90 0.100098 0.100098 134217728 0 0 +( 1877 1240 42 ) ( 1877 1262 42 ) ( 1879 1262 42 ) wood/wd_sr_v1 12 -61 90 0.100098 0.100098 134217728 0 0 +( 1879 1240 43 ) ( 1879 1262 43 ) ( 1879 1262 41 ) wood/wd_sr_v1 36 -41 90 0.100006 0.100098 134217728 0 0 +( 1878 1262 42 ) ( 1878 1240 42 ) ( 1878 1240 40 ) wood/wd_sr_v1 36 -41 90 0.100006 0.100098 134217728 0 0 +( 1867 1240 40 ) ( 1867 1240 42 ) ( 1890 1242 40 ) wood/wd_sr_v1 35 -61 90 0.100006 0.100098 134217728 0 0 +( 1867 1262 42 ) ( 1867 1262 40 ) ( 1890 1260 42 ) wood/wd_sr_v1 35 -61 90 0.100006 0.100098 134217728 0 0 +} +// brush 4 +{ +( 1890 1260 41 ) ( 1890 1262 41 ) ( 1872 1262 41 ) wood/wd_sr_v1 101 -99 -180 0.099854 0.099854 134217728 0 0 +( 1872 1262 42 ) ( 1890 1262 42 ) ( 1890 1260 42 ) wood/wd_sr_v1 101 -99 -180 0.099854 0.099854 134217728 0 0 +( 1867 1262 42 ) ( 1867 1262 40 ) ( 1867 1264 40 ) wood/wd_sr_v1 74 112 -180 0.100098 0.100006 134217728 0 0 +( 1867 1262 40 ) ( 1867 1262 42 ) ( 1890 1260 42 ) wood/wd_sr_v1 86 113 -180 0.100098 0.100006 134217728 0 0 +( 1890 1260 60 ) ( 1890 1262 60 ) ( 1890 1262 40 ) wood/wd_sr_v1 74 112 -180 0.100098 0.100006 134217728 0 0 +( 1867 1264 42 ) ( 1867 1264 40 ) ( 1890 1262 40 ) wood/wd_sr_v1 86 113 -180 0.100098 0.100006 134217728 0 0 +} +// brush 5 +{ +( 1866 1262 32 ) ( 1862 1262 32 ) ( 1862 1258 32 ) wood/wd_sr_v1 -27 -116 90 0.099854 0.100098 134217728 0 0 +( 1862 1260 56 ) ( 1866 1260 56 ) ( 1866 1260 32 ) wood/wd_sr_v1 58 -3 90 0.100006 0.099854 134217728 0 0 +( 1892 1260 56 ) ( 1892 1264 56 ) ( 1892 1264 32 ) wood/wd_sr_v1 59 -90 90 0.100006 0.100098 134217728 0 0 +( 1866 1262 56 ) ( 1862 1262 56 ) ( 1862 1262 32 ) wood/wd_sr_v1 58 -3 90 0.100006 0.099854 134217728 0 0 +( 1890 1262 56 ) ( 1890 1258 56 ) ( 1890 1258 32 ) wood/wd_sr_v1 59 -90 90 0.100006 0.100098 134217728 0 0 +( 1894 1260 52 ) ( 1885 1260 52 ) ( 1890 1262 52 ) wood/wd_sr_v1 -27 -116 90 0.099854 0.100098 134217728 0 0 +} +// brush 6 +{ +( 1869 1240 32 ) ( 1865 1240 32 ) ( 1865 1236 32 ) wood/wd_sr_v1 64 -15 -90 0.250000 0.250000 134217728 134217728 0 +( 1865 1238 56 ) ( 1869 1238 56 ) ( 1869 1238 32 ) wood/wd_sr_v1 64 -15 -90 0.250000 0.250000 134217728 134217728 0 +( 1867 1236 56 ) ( 1867 1240 56 ) ( 1867 1240 32 ) wood/wd_sr_v1 64 -15 -90 0.250000 0.250000 134217728 134217728 0 +( 1869 1240 56 ) ( 1865 1240 56 ) ( 1865 1240 32 ) wood/wd_sr_v1 64 -15 -90 0.250000 0.250000 134217728 134217728 0 +( 1865 1240 56 ) ( 1865 1236 56 ) ( 1865 1236 32 ) wood/wd_sr_v1 64 -15 -90 0.250000 0.250000 134217728 134217728 0 +( 1870 1238 82 ) ( 1862 1238 82 ) ( 1866 1240 82 ) wood/wd_sr_v1 64 -15 -90 0.250000 0.250000 134217728 134217728 0 +} +// brush 7 +{ +( 1866 1247 55 ) ( 1865 1247 55 ) ( 1865 1246 55 ) wood/wd_sr_v1 -27 -116 90 0.099854 0.100098 134217728 0 0 +( 1866 1246 92 ) ( 1867 1246 92 ) ( 1867 1246 32 ) wood/wd_sr_v1 -58 76 270 0.100000 0.100000 134217728 0 0 +( 1867 1246 92 ) ( 1867 1247 92 ) ( 1867 1247 32 ) wood/wd_sr_v1 59 -90 90 0.100006 0.100098 134217728 0 0 +( 1867 1248 92 ) ( 1866 1248 92 ) ( 1866 1248 32 ) wood/wd_sr_v1 58 -3 90 0.100006 0.099854 134217728 0 0 +( 1865 1247 92 ) ( 1865 1246 92 ) ( 1865 1246 32 ) wood/wd_sr_v1 59 -90 90 0.100006 0.100098 134217728 0 0 +( 1870 1246 82 ) ( 1866 1246 82 ) ( 1868 1248 82 ) wood/wd_sr_v1 -27 -116 90 0.099854 0.100098 134217728 0 0 +} +// brush 8 +{ +( 1866 1255 55 ) ( 1865 1255 55 ) ( 1865 1254 55 ) wood/wd_sr_v1 -27 -116 90 0.099854 0.100098 134217728 0 0 +( 1866 1254 92 ) ( 1867 1254 92 ) ( 1867 1254 32 ) wood/wd_sr_v1 -58 76 270 0.100000 0.100000 134217728 0 0 +( 1867 1254 92 ) ( 1867 1255 92 ) ( 1867 1255 32 ) wood/wd_sr_v1 59 -90 90 0.100006 0.100098 134217728 0 0 +( 1867 1256 92 ) ( 1866 1256 92 ) ( 1866 1256 32 ) wood/wd_sr_v1 58 -3 90 0.100006 0.099854 134217728 0 0 +( 1865 1255 92 ) ( 1865 1254 92 ) ( 1865 1254 32 ) wood/wd_sr_v1 59 -90 90 0.100006 0.100098 134217728 0 0 +( 1870 1254 82 ) ( 1866 1254 82 ) ( 1868 1256 82 ) wood/wd_sr_v1 -27 -116 90 0.099854 0.100098 134217728 0 0 +} +// brush 9 +{ +( 1867 1263 82 ) ( 1865 1263 82 ) ( 1865 1239 82 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1865 1265 87 ) ( 1867 1265 87 ) ( 1867 1237 87 ) wood/wd_sr_v1 64 -15 -90 0.250000 0.250000 134217728 134217728 0 +( 1864 1235 85 ) ( 1868 1235 85 ) ( 1868 1237 82 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1868 1237 87 ) ( 1868 1265 87 ) ( 1868 1265 85 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1868 1267 85 ) ( 1864 1267 85 ) ( 1864 1265 82 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1864 1262 86 ) ( 1864 1240 86 ) ( 1864 1240 84 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1868 1235 85 ) ( 1864 1235 85 ) ( 1864 1235 87 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1864 1267 85 ) ( 1868 1267 85 ) ( 1868 1267 87 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1863 1235 85 ) ( 1865 1235 82 ) ( 1864 1267 84 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +( 1867 1235 82 ) ( 1869 1235 85 ) ( 1868 1267 84 ) wood/wd_sr_v1 64 -15 -180 0.250000 0.250000 134217728 134217728 0 +} +// brush 10 +{ +( 1869 1264 32 ) ( 1865 1264 32 ) ( 1865 1260 32 ) wood/wd_sr_v1 -27 -116 90 0.099854 0.100098 134217728 0 0 +( 1865 1262 56 ) ( 1869 1262 56 ) ( 1869 1262 32 ) wood/wd_sr_v1 -58 76 270 0.100000 0.100000 134217728 0 0 +( 1867 1260 56 ) ( 1867 1264 56 ) ( 1867 1264 32 ) wood/wd_sr_v1 59 -90 90 0.100006 0.100098 134217728 0 0 +( 1869 1264 56 ) ( 1865 1264 56 ) ( 1865 1264 32 ) wood/wd_sr_v1 58 -3 90 0.100006 0.099854 134217728 0 0 +( 1865 1264 56 ) ( 1865 1260 56 ) ( 1865 1260 32 ) wood/wd_sr_v1 59 -90 90 0.100006 0.100098 134217728 0 0 +( 1870 1262 82 ) ( 1862 1262 82 ) ( 1866 1264 82 ) wood/wd_sr_v1 -27 -116 90 0.099854 0.100098 134217728 0 0 +} +} +// entity 542 +{ +"spawnflags" "0" +"origin" "1920 1258 136" +"_color" "0.988235 1.000000 0.835294" +"light" "125" +"classname" "light" +} +// entity 543 +{ +"spawnflags" "0" +"classname" "light" +"light" "125" +"_color" "0.988235 1.000000 0.835294" +"origin" "1936 1242 136" +} +// entity 544 +{ +"spawnflags" "0" +"origin" "1920 1226 136" +"_color" "0.988235 1.000000 0.835294" +"light" "125" +"classname" "light" +} +// entity 545 +{ +"spawnflags" "0" +"classname" "light" +"light" "125" +"_color" "0.988235 1.000000 0.835294" +"origin" "1904 1242 136" +} +// entity 546 +{ +"spawnflags" "0" +"origin" "1920 1242 86" +"_color" "0.988235 1.000000 0.835294" +"light" "50" +"classname" "light" +} +// entity 547 +{ +"classname" "light" +"_color" "0.277359 0.261106 0.212485" +"light" "80" +"origin" "1040 960 48" +} +// entity 548 +{ +"classname" "lightflare" +"light" "10" +"spawnflags" "2" +"health" "32" +"dmg" "2" +"origin" "1025 960 48" +} +// entity 549 +{ +"origin" "1312 912 48" +"light" "80" +"_color" "0.277359 0.261106 0.212485" +"classname" "light" +} +// entity 550 +{ +"origin" "1312 897 48" +"dmg" "2" +"health" "32" +"spawnflags" "2" +"light" "10" +"classname" "lightflare" +} +// entity 551 +{ +"spawnflags" "0" +"origin" "704 1248 136" +"light" "75" +"_color" "0.277359 0.261106 0.212485" +"classname" "light" +} +// entity 552 +{ +"spawnflags" "0" +"classname" "light" +"_color" "1.000000 0.942857 0.771429" +"light" "75" +"origin" "704 1376 136" +} +// entity 553 +{ +"spawnflags" "0" +"origin" "-144 320 168" +"light" "70" +"_color" "1.000000 0.956175 0.713147" +"classname" "light" +} +// entity 554 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"dmg" "2" +"origin" "-144 320 183" +} +// entity 555 +{ +"classname" "light" +"_color" "0.650980 0.984314 1.000000" +"light" "75" +"origin" "568 2024 72" +} +// entity 556 +{ +"health" "1000" +"origin" "-1216 1688 21" +"classname" "props_trashcanA" +} +// entity 557 +{ +"health" "1000" +"classname" "props_trashcanA" +"origin" "-1264 1712 21" +} +// entity 558 +{ +"classname" "func_group" +// brush 0 +{ +( 886 1268 52 ) ( 866 1268 52 ) ( 866 1250 52 ) wood/wd_sr_v1 -36 -26 0 0.099854 0.099854 134217728 0 0 +( 866 1250 55 ) ( 866 1268 55 ) ( 886 1268 55 ) wood/wd_sr_v1 -87 17 0 0.250000 0.250000 134217728 0 0 +( 893 1240 55 ) ( 893 1240 53 ) ( 868 1240 53 ) wood/wd_sr_v1 -36 -65 0 0.099854 0.099976 134217728 0 0 +( 893 1266 55 ) ( 893 1266 53 ) ( 893 1240 53 ) wood/wd_sr_v1 21 -62 0 0.099854 0.099979 134217728 0 0 +( 893 1266 53 ) ( 893 1266 55 ) ( 868 1266 55 ) wood/wd_sr_v1 -36 -65 0 0.099854 0.099976 134217728 0 0 +( 866 1242 55 ) ( 866 1242 53 ) ( 866 1264 53 ) wood/wd_sr_v1 21 -62 0 0.099854 0.099979 134217728 0 0 +( 866 1242 53 ) ( 866 1242 55 ) ( 868 1240 55 ) wood/wd_sr_v1 12 -64 0 0.099854 0.099976 134217728 0 0 +( 866 1264 55 ) ( 866 1264 53 ) ( 868 1266 53 ) wood/wd_sr_v1 62 -64 0 0.100098 0.099976 134217728 0 0 +( 893 1242 53 ) ( 880 1240 53 ) ( 887 1241 55 ) wood/wd_sr_v1 -36 -65 0 0.099854 0.099976 134217728 0 0 +( 880 1266 53 ) ( 893 1264 53 ) ( 887 1265 55 ) wood/wd_sr_v1 -36 -65 0 0.099854 0.099976 134217728 0 0 +} +// brush 1 +{ +( 892 1262 32 ) ( 896 1262 32 ) ( 896 1266 32 ) wood/wd_sr_v1 -38 45 -90 0.099854 0.100098 134217728 0 0 +( 896 1264 56 ) ( 892 1264 56 ) ( 892 1264 32 ) wood/wd_sr_v1 58 97 90 0.100006 -0.099854 134217728 0 0 +( 866 1264 56 ) ( 866 1260 56 ) ( 866 1260 32 ) wood/wd_sr_v1 59 -35 90 0.100006 -0.100098 134217728 0 0 +( 892 1262 56 ) ( 896 1262 56 ) ( 896 1262 32 ) wood/wd_sr_v1 58 97 90 0.100006 -0.099854 134217728 0 0 +( 868 1262 56 ) ( 868 1266 56 ) ( 868 1266 32 ) wood/wd_sr_v1 59 -35 90 0.100006 -0.100098 134217728 0 0 +( 864 1264 52 ) ( 873 1264 52 ) ( 868 1262 52 ) wood/wd_sr_v1 -38 45 -90 0.099854 0.100098 134217728 0 0 +} +// brush 2 +{ +( 868 1264 41 ) ( 868 1262 41 ) ( 886 1262 41 ) wood/wd_sr_v1 -127 17 0 0.099854 0.099854 134217728 0 0 +( 886 1262 42 ) ( 868 1262 42 ) ( 868 1264 42 ) wood/wd_sr_v1 -127 17 0 0.099854 0.099854 134217728 0 0 +( 891 1264 40 ) ( 891 1264 42 ) ( 891 1266 42 ) wood/wd_sr_v1 19 111 0 0.100098 -0.100006 134217728 0 0 +( 891 1266 40 ) ( 891 1266 42 ) ( 868 1264 42 ) wood/wd_sr_v1 -75 113 0 0.100098 -0.100006 134217728 0 0 +( 868 1264 60 ) ( 868 1262 60 ) ( 868 1262 40 ) wood/wd_sr_v1 19 111 0 0.100098 -0.100006 134217728 0 0 +( 891 1264 42 ) ( 891 1264 40 ) ( 868 1262 40 ) wood/wd_sr_v1 -75 113 0 0.100098 -0.100006 134217728 0 0 +} +// brush 3 +{ +( 879 1242 41 ) ( 881 1242 41 ) ( 881 1264 41 ) wood/wd_sr_v1 -61 100 -90 0.100098 0.100098 134217728 0 0 +( 881 1264 42 ) ( 881 1242 42 ) ( 879 1242 42 ) wood/wd_sr_v1 -61 100 -90 0.100098 0.100098 134217728 0 0 +( 879 1264 43 ) ( 879 1242 43 ) ( 879 1242 41 ) wood/wd_sr_v1 36 14 0 0.100000 -0.100000 134217728 0 0 +( 880 1242 42 ) ( 880 1264 42 ) ( 880 1264 40 ) wood/wd_sr_v1 53 113 0 0.100098 -0.100006 134217728 0 0 +( 891 1264 40 ) ( 891 1264 42 ) ( 868 1262 40 ) wood/wd_sr_v1 35 100 90 0.100006 -0.100098 134217728 0 0 +( 891 1242 42 ) ( 891 1242 40 ) ( 868 1244 42 ) wood/wd_sr_v1 35 100 90 0.100006 -0.100098 134217728 0 0 +} +// brush 4 +{ +( 868 1244 41 ) ( 868 1242 41 ) ( 886 1242 41 ) wood/wd_sr_v1 -127 17 0 0.099854 0.099854 134217728 0 0 +( 886 1242 42 ) ( 868 1242 42 ) ( 868 1244 42 ) wood/wd_sr_v1 -127 17 0 0.099854 0.099854 134217728 0 0 +( 891 1242 42 ) ( 891 1242 40 ) ( 891 1240 40 ) wood/wd_sr_v1 19 111 0 0.100098 -0.100006 134217728 0 0 +( 891 1242 40 ) ( 891 1242 42 ) ( 868 1244 42 ) wood/wd_sr_v1 -75 113 0 0.100098 -0.100006 134217728 0 0 +( 868 1244 60 ) ( 868 1242 60 ) ( 868 1242 40 ) wood/wd_sr_v1 19 111 0 0.100098 -0.100006 134217728 0 0 +( 891 1240 42 ) ( 891 1240 40 ) ( 868 1242 40 ) wood/wd_sr_v1 -75 113 0 0.100098 -0.100006 134217728 0 0 +} +// brush 5 +{ +( 892 1242 32 ) ( 896 1242 32 ) ( 896 1246 32 ) wood/wd_sr_v1 -38 45 -90 0.099854 0.100098 134217728 0 0 +( 896 1244 56 ) ( 892 1244 56 ) ( 892 1244 32 ) wood/wd_sr_v1 58 97 90 0.100006 -0.099854 134217728 0 0 +( 866 1244 56 ) ( 866 1240 56 ) ( 866 1240 32 ) wood/wd_sr_v1 59 -35 90 0.100006 -0.100098 134217728 0 0 +( 892 1242 56 ) ( 896 1242 56 ) ( 896 1242 32 ) wood/wd_sr_v1 58 97 90 0.100006 -0.099854 134217728 0 0 +( 868 1242 56 ) ( 868 1246 56 ) ( 868 1246 32 ) wood/wd_sr_v1 59 -35 90 0.100006 -0.100098 134217728 0 0 +( 864 1244 52 ) ( 873 1244 52 ) ( 868 1242 52 ) wood/wd_sr_v1 -38 45 -90 0.099854 0.100098 134217728 0 0 +} +// brush 6 +{ +( 889 1264 32 ) ( 893 1264 32 ) ( 893 1268 32 ) wood/wd_sr_v1 -38 45 -90 0.099854 0.100098 134217728 0 0 +( 893 1266 56 ) ( 889 1266 56 ) ( 889 1266 32 ) wood/wd_sr_v1 -57 -115 -90 0.099998 -0.099976 134217728 0 0 +( 891 1268 56 ) ( 891 1264 56 ) ( 891 1264 32 ) wood/wd_sr_v1 59 -35 90 0.100006 -0.100098 134217728 0 0 +( 889 1264 56 ) ( 893 1264 56 ) ( 893 1264 32 ) wood/wd_sr_v1 58 57 90 0.100006 -0.099854 134217728 0 0 +( 893 1264 56 ) ( 893 1268 56 ) ( 893 1268 32 ) wood/wd_sr_v1 59 -35 90 0.100006 -0.100098 134217728 0 0 +( 888 1266 82 ) ( 896 1266 82 ) ( 892 1264 82 ) wood/wd_sr_v1 -38 45 -90 0.099854 0.100098 134217728 0 0 +} +// brush 7 +{ +( 892 1257 55 ) ( 893 1257 55 ) ( 893 1258 55 ) wood/wd_sr_v1 -38 45 -90 0.099854 0.100098 134217728 0 0 +( 892 1258 92 ) ( 891 1258 92 ) ( 891 1258 32 ) wood/wd_sr_v1 -57 -115 -90 0.099998 -0.099976 134217728 0 0 +( 891 1258 92 ) ( 891 1257 92 ) ( 891 1257 32 ) wood/wd_sr_v1 59 -35 90 0.100006 -0.100098 134217728 0 0 +( 891 1256 92 ) ( 892 1256 92 ) ( 892 1256 32 ) wood/wd_sr_v1 58 97 90 0.100006 -0.099854 134217728 0 0 +( 893 1257 92 ) ( 893 1258 92 ) ( 893 1258 32 ) wood/wd_sr_v1 59 -35 90 0.100006 -0.100098 134217728 0 0 +( 888 1258 82 ) ( 892 1258 82 ) ( 890 1256 82 ) wood/wd_sr_v1 -38 45 -90 0.099854 0.100098 134217728 0 0 +} +// brush 8 +{ +( 892 1249 55 ) ( 893 1249 55 ) ( 893 1250 55 ) wood/wd_sr_v1 -38 45 -90 0.099854 0.100098 134217728 0 0 +( 892 1250 92 ) ( 891 1250 92 ) ( 891 1250 32 ) wood/wd_sr_v1 -57 -115 -90 0.099998 -0.099976 134217728 0 0 +( 891 1250 92 ) ( 891 1249 92 ) ( 891 1249 32 ) wood/wd_sr_v1 59 21 90 0.100006 -0.100098 134217728 0 0 +( 891 1248 92 ) ( 892 1248 92 ) ( 892 1248 32 ) wood/wd_sr_v1 58 45 90 0.100006 -0.099854 134217728 0 0 +( 893 1249 92 ) ( 893 1250 92 ) ( 893 1250 32 ) wood/wd_sr_v1 59 -35 90 0.100006 -0.100098 134217728 0 0 +( 888 1250 82 ) ( 892 1250 82 ) ( 890 1248 82 ) wood/wd_sr_v1 -38 45 -90 0.099854 0.100098 134217728 0 0 +} +// brush 9 +{ +( 891 1241 82 ) ( 893 1241 82 ) ( 893 1265 82 ) wood/wd_sr_v1 15 -115 90 0.099976 0.099976 134217728 0 0 +( 893 1239 87 ) ( 891 1239 87 ) ( 891 1267 87 ) wood/wd_sr_v1 15 -115 90 0.099976 0.099976 134217728 0 0 +( 894 1269 85 ) ( 890 1269 85 ) ( 890 1267 82 ) wood/wd_sr_v1 90 -64 -180 0.100098 -0.099976 134217728 0 0 +( 890 1267 87 ) ( 890 1239 87 ) ( 890 1239 85 ) wood/wd_sr_v1 -38 -64 -180 0.100098 -0.099976 134217728 0 0 +( 890 1237 85 ) ( 894 1237 85 ) ( 894 1239 82 ) wood/wd_sr_v1 90 -64 -180 0.100098 -0.099976 134217728 0 0 +( 894 1242 86 ) ( 894 1264 86 ) ( 894 1264 84 ) wood/wd_sr_v1 -38 -64 -180 0.100098 -0.099976 134217728 0 0 +( 890 1269 85 ) ( 894 1269 85 ) ( 894 1269 87 ) wood/wd_sr_v1 90 -64 -180 0.100098 -0.099976 134217728 0 0 +( 894 1237 85 ) ( 890 1237 85 ) ( 890 1237 87 ) wood/wd_sr_v1 90 -64 -180 0.100098 -0.099976 134217728 0 0 +( 895 1269 85 ) ( 893 1269 82 ) ( 894 1237 84 ) wood/wd_sr_v1 -38 -64 -180 0.100098 -0.099976 134217728 0 0 +( 891 1269 82 ) ( 889 1269 85 ) ( 890 1237 84 ) wood/wd_sr_v1 -38 -64 -180 0.100098 -0.099976 134217728 0 0 +} +// brush 10 +{ +( 889 1240 32 ) ( 893 1240 32 ) ( 893 1244 32 ) wood/wd_sr_v1 -38 45 -90 0.099854 0.100098 134217728 0 0 +( 893 1242 56 ) ( 889 1242 56 ) ( 889 1242 32 ) wood/wd_sr_v1 -57 -115 -90 0.099998 -0.099976 134217728 0 0 +( 891 1244 56 ) ( 891 1240 56 ) ( 891 1240 32 ) wood/wd_sr_v1 59 -35 90 0.100006 -0.100098 134217728 0 0 +( 889 1240 56 ) ( 893 1240 56 ) ( 893 1240 32 ) wood/wd_sr_v1 58 97 90 0.100006 -0.099854 134217728 0 0 +( 893 1240 56 ) ( 893 1244 56 ) ( 893 1244 32 ) wood/wd_sr_v1 59 -35 90 0.100006 -0.100098 134217728 0 0 +( 888 1242 82 ) ( 896 1242 82 ) ( 892 1240 82 ) wood/wd_sr_v1 -38 45 -90 0.099854 0.100098 134217728 0 0 +} +} +// entity 559 +{ +"health" "100" +"art_skins" "009 007 004" +"name" "beth" +"origin" "293 1063 38" +"cast_group" "0" +"classname" "cast_bitch" +"moral" "1" +"angle" "270" +"spawnflags" "64" +"currentcash" "5" +} +// entity 560 +{ +"health" "80" +"art_skins" "011 011 005" +"classname" "cast_runt" +"cast_group" "2" +"name" "louie" +"origin" "848 126 280" +"deathtarget" "louie_death_target" +"spawnflags" "64" +"moral" "1" +"currentcash" "10" +"count" "3" +} +// entity 561 +{ +"classname" "path_corner_cast" +"origin" "488 184 24" +"target" "t24" +"targetname" "t32" +} +// entity 562 +{ +"health" "200" +"art_skins" "012 007 004" +"target" "t24" +"classname" "cast_thug" +"origin" "616 224 24" +"name" "arnold" +"spawnflags" "1" +"cast_group" "2" +"moral" "5" +"currentcash" "2" +"localteam" "courtyard" +"acc" "3" +} +// entity 563 +{ +"origin" "48 48 24" +"classname" "path_corner_cast" +"targetname" "t24" +"target" "t25" +} +// entity 564 +{ +"classname" "path_corner_cast" +"origin" "-96 -104 24" +"targetname" "t25" +"target" "t26" +} +// entity 565 +{ +"origin" "-88 -352 24" +"classname" "path_corner_cast" +"targetname" "t26" +"target" "t27" +} +// entity 566 +{ +"classname" "path_corner_cast" +"origin" "240 -376 24" +"targetname" "t27" +"target" "t28" +} +// entity 567 +{ +"origin" "288 -464 24" +"classname" "path_corner_cast" +"targetname" "t28" +"target" "t29" +} +// entity 568 +{ +"classname" "path_corner_cast" +"origin" "440 -368 24" +"targetname" "t29" +"target" "t30" +} +// entity 569 +{ +"origin" "416 -264 24" +"classname" "path_corner_cast" +"targetname" "t30" +"target" "t31" +} +// entity 570 +{ +"classname" "path_corner_cast" +"origin" "432 48 24" +"targetname" "t31" +"target" "t32" +} +// entity 571 +{ +"spawnflags" "0" +"origin" "-32 832 88" +"light" "75" +"_color" "0.650980 0.984314 1.000000" +"classname" "light" +} +// entity 572 +{ +"spawnflags" "0" +"origin" "-56 336 112" +"light" "50" +"_color" "1.000000 0.839216 0.674510" +"classname" "light" +} +// entity 573 +{ +"spawnflags" "0" +"origin" "883 1328 104" +"classname" "light" +"_color" "1.000000 0.000000 0.000000" +"style" "6" +"light" "100" +} +// entity 574 +{ +"spawnflags" "0" +"light" "75" +"style" "6" +"_color" "1.000000 0.501961 0.000000" +"origin" "883 1284 124" +"classname" "light" +} +// entity 575 +{ +"spawnflags" "0" +"light" "75" +"style" "6" +"_color" "1.000000 0.501961 0.000000" +"classname" "light" +"origin" "883 1342 124" +} +// entity 576 +{ +"spawnflags" "0" +"classname" "light" +"origin" "883 1312 130" +"_color" "1.000000 0.501961 0.000000" +"style" "6" +"light" "75" +} +// entity 577 +{ +"spawnflags" "0" +"classname" "light" +"_color" "0.277359 0.261106 0.212485" +"light" "75" +"origin" "832 1376 48" +} +// entity 578 +{ +"spawnflags" "0" +"classname" "light" +"_color" "0.277359 0.261106 0.212485" +"light" "50" +"origin" "704 1248 48" +} +// entity 579 +{ +"spawnflags" "0" +"origin" "704 1376 48" +"light" "75" +"_color" "0.277359 0.261106 0.212485" +"classname" "light" +} +// entity 580 +{ +"spawnflags" "0" +"origin" "832 1248 48" +"light" "50" +"_color" "0.277359 0.261106 0.212485" +"classname" "light" +} +// entity 581 +{ +"spawnflags" "0" +"classname" "light" +"_color" "0.277359 0.261106 0.212485" +"light" "75" +"origin" "832 1248 136" +} +// entity 582 +{ +"classname" "func_group" +// brush 0 +{ +( 868 1417 52 ) ( 853 1403 52 ) ( 866 1390 52 ) wood/wd_st_m2 28 -90 136 0.250000 0.250000 134217728 0 0 +( 866 1390 55 ) ( 853 1403 55 ) ( 868 1417 55 ) wood/wd_st_m2 28 -90 136 0.250000 0.250000 134217728 0 0 +( 892 1402 55 ) ( 892 1402 53 ) ( 875 1384 53 ) wood/wd_st_m2 28 -90 136 0.250000 0.250000 134217728 0 0 +( 874 1420 55 ) ( 874 1420 53 ) ( 892 1402 53 ) wood/wd_st_m2 28 -90 136 0.250000 0.250000 134217728 0 0 +( 874 1420 53 ) ( 874 1420 55 ) ( 856 1403 55 ) wood/wd_st_m2 28 -90 136 0.250000 0.250000 134217728 0 0 +( 872 1384 55 ) ( 872 1384 53 ) ( 856 1400 53 ) wood/wd_st_m2 28 -90 136 0.250000 0.250000 134217728 0 0 +( 872 1384 53 ) ( 872 1384 55 ) ( 875 1384 55 ) wood/wd_st_m2 28 -90 136 0.250000 0.250000 134217728 0 0 +( 856 1400 55 ) ( 856 1400 53 ) ( 856 1403 53 ) wood/wd_st_m2 28 -90 136 0.250000 0.250000 134217728 0 0 +( 891 1403 53 ) ( 883 1393 53 ) ( 887 1398 55 ) wood/wd_st_m2 28 -90 136 0.250000 0.250000 134217728 0 0 +( 865 1411 53 ) ( 875 1419 53 ) ( 870 1415 55 ) wood/wd_st_m2 28 -90 136 0.250000 0.250000 134217728 0 0 +} +// brush 1 +{ +( 885 1408 55 ) ( 886 1408 55 ) ( 885 1409 55 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 885 1409 55 ) ( 885 1409 82 ) ( 884 1408 82 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 884 1408 92 ) ( 885 1407 92 ) ( 885 1407 32 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 885 1406 92 ) ( 886 1407 92 ) ( 886 1407 32 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 885 1409 82 ) ( 885 1409 55 ) ( 886 1408 55 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 882 1406 82 ) ( 885 1408 82 ) ( 885 1406 82 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +} +// brush 2 +{ +( 890 1401 82 ) ( 892 1403 82 ) ( 875 1420 82 ) wood/wd_st_m2 28 -90 136 0.250000 0.250000 134217728 0 0 +( 893 1401 87 ) ( 892 1400 87 ) ( 872 1420 87 ) wood/wd_st_m2 28 -90 136 0.250000 0.250000 134217728 0 0 +( 873 1423 85 ) ( 870 1420 85 ) ( 871 1419 82 ) wood/wd_st_m2 28 -90 136 0.250000 0.250000 134217728 0 0 +( 871 1419 87 ) ( 891 1399 87 ) ( 891 1399 85 ) wood/wd_st_m2 28 -90 136 0.250000 0.250000 134217728 0 0 +( 892 1398 85 ) ( 895 1401 85 ) ( 894 1402 82 ) wood/wd_st_m2 28 -90 136 0.250000 0.250000 134217728 0 0 +( 892 1404 86 ) ( 876 1420 86 ) ( 876 1420 84 ) wood/wd_st_m2 28 -90 136 0.250000 0.250000 134217728 0 0 +( 870 1420 85 ) ( 873 1423 85 ) ( 873 1423 87 ) wood/wd_st_m2 28 -90 136 0.250000 0.250000 134217728 0 0 +( 895 1401 85 ) ( 892 1398 85 ) ( 892 1398 87 ) wood/wd_st_m2 28 -90 136 0.250000 0.250000 134217728 0 0 +( 873 1424 85 ) ( 872 1423 82 ) ( 895 1401 84 ) wood/wd_st_m2 28 -90 136 0.250000 0.250000 134217728 0 0 +( 870 1421 82 ) ( 869 1420 85 ) ( 892 1398 84 ) wood/wd_st_m2 28 -90 136 0.250000 0.250000 134217728 0 0 +} +// brush 3 +{ +( 880 1413 55 ) ( 881 1413 55 ) ( 880 1414 55 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 880 1414 55 ) ( 880 1414 82 ) ( 879 1413 82 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 879 1413 92 ) ( 880 1412 92 ) ( 880 1412 32 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 880 1411 92 ) ( 881 1412 92 ) ( 881 1412 32 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 880 1414 82 ) ( 880 1414 55 ) ( 881 1413 55 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 877 1411 82 ) ( 880 1413 82 ) ( 880 1411 82 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +} +// brush 4 +{ +( 873 1416 32 ) ( 875 1419 32 ) ( 873 1422 32 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 873 1419 82 ) ( 873 1419 32 ) ( 874 1420 32 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 873 1419 32 ) ( 873 1419 82 ) ( 875 1417 82 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 875 1417 32 ) ( 875 1417 82 ) ( 876 1418 82 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 876 1418 32 ) ( 876 1418 82 ) ( 874 1420 82 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 870 1417 82 ) ( 876 1423 82 ) ( 875 1418 82 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +} +// brush 5 +{ +( 881 1394 41 ) ( 882 1395 41 ) ( 867 1410 41 ) wood/wd_st_m3 28 -90 136 0.250000 0.250000 134217728 0 0 +( 867 1410 42 ) ( 882 1395 42 ) ( 881 1394 42 ) wood/wd_sr_v1 7 -57 135 0.100127 0.100127 134217728 0 0 +( 866 1409 43 ) ( 881 1394 43 ) ( 881 1394 41 ) wood/wd_st_m2 28 -58 270 0.250000 0.250000 134217728 0 0 +( 882 1394 42 ) ( 866 1410 42 ) ( 866 1410 40 ) wood/wd_sr_v1 -85 110 -180 0.070801 0.100006 134217728 0 0 +( 874 1418 40 ) ( 874 1418 42 ) ( 859 1400 40 ) wood/wd_sr_v1 34 98 90 0.100006 0.076904 134217728 0 0 +( 890 1402 42 ) ( 890 1402 40 ) ( 872 1387 42 ) wood/wd_sr_v1 35 -27 90 0.100006 0.077148 134217728 0 0 +} +// brush 6 +{ +( 890 1399 32 ) ( 892 1402 32 ) ( 890 1405 32 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 890 1404 32 ) ( 890 1404 82 ) ( 889 1403 82 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 889 1403 32 ) ( 889 1403 82 ) ( 891 1401 82 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 892 1402 82 ) ( 892 1402 32 ) ( 891 1401 32 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 890 1404 82 ) ( 890 1404 32 ) ( 892 1402 32 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 887 1400 82 ) ( 893 1406 82 ) ( 892 1401 82 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +} +// brush 7 +{ +( 872 1387 41 ) ( 873 1386 41 ) ( 886 1398 41 ) wood/wd_st_m3 28 -90 136 0.250000 0.250000 134217728 0 0 +( 886 1398 42 ) ( 873 1386 42 ) ( 872 1387 42 ) wood/wd_st_m2 -55 -51 134 0.100000 0.100000 134217728 0 0 +( 890 1402 42 ) ( 890 1402 40 ) ( 891 1401 40 ) wood/wd_sr_v1 -52 108 -180 0.070557 0.100006 134217728 0 0 +( 890 1402 40 ) ( 890 1402 42 ) ( 872 1387 42 ) wood/wd_st_m2 28 -58 270 0.250000 0.250000 134217728 0 0 +( 872 1387 60 ) ( 873 1386 60 ) ( 873 1386 40 ) wood/wd_sr_v1 -31 108 -180 0.070801 0.100006 134217728 0 0 +( 891 1401 42 ) ( 891 1401 40 ) ( 873 1386 40 ) wood/wd_st_m2 28 -58 270 0.250000 0.250000 134217728 0 0 +} +// brush 8 +{ +( 890 1403 32 ) ( 893 1406 32 ) ( 890 1408 32 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 892 1407 56 ) ( 889 1404 56 ) ( 889 1404 32 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 870 1386 56 ) ( 873 1383 56 ) ( 873 1383 32 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 890 1403 56 ) ( 893 1406 56 ) ( 893 1406 32 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 873 1386 56 ) ( 870 1389 56 ) ( 870 1389 32 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 869 1384 52 ) ( 875 1391 52 ) ( 873 1386 52 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +} +// brush 9 +{ +( 876 1417 32 ) ( 879 1420 32 ) ( 876 1423 32 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 878 1421 56 ) ( 875 1418 56 ) ( 875 1418 32 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 856 1400 56 ) ( 859 1397 56 ) ( 859 1397 32 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 876 1417 56 ) ( 879 1420 56 ) ( 879 1420 32 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 859 1400 56 ) ( 856 1403 56 ) ( 856 1403 32 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +( 855 1398 52 ) ( 861 1405 52 ) ( 859 1400 52 ) wood/wd_st_m2 28 -90 0 0.250000 0.250000 134217728 0 0 +} +// brush 10 +{ +( 858 1401 41 ) ( 859 1400 41 ) ( 872 1413 41 ) wood/wd_st_m3 28 -90 136 0.250000 0.250000 134217728 0 0 +( 872 1413 42 ) ( 859 1400 42 ) ( 858 1401 42 ) wood/wd_st_m2 -55 -51 134 0.100000 0.100000 134217728 0 0 +( 874 1418 40 ) ( 874 1418 42 ) ( 873 1419 42 ) wood/wd_sr_v1 -52 108 -180 0.070557 0.100006 134217728 0 0 +( 873 1419 40 ) ( 873 1419 42 ) ( 858 1401 42 ) wood/wd_st_m2 28 -58 270 0.250000 0.250000 134217728 0 0 +( 858 1401 60 ) ( 859 1400 60 ) ( 859 1400 40 ) wood/wd_sr_v1 -31 108 -180 0.070801 0.100006 134217728 0 0 +( 874 1418 42 ) ( 874 1418 40 ) ( 859 1400 40 ) wood/wd_st_m2 28 -58 270 0.250000 0.250000 134217728 0 0 +} +} +// entity 583 +{ +"art_skins" "001 001 001" +"classname" "cast_runt" +"origin" "1776 2808 24" +"angle" "90" +"cast_group" "3" +"name" "buttmunch" +"spawnflags" "64" +"moral" "5" +"localteam" "sewer_rats" +} +// entity 584 +{ +"spawnflags" "64" +"acc" "5" +"health" "120" +"art_skins" "012 015 012" +"classname" "cast_bitch" +"name" "lisa" +"cast_group" "0" +"origin" "728 2840 46" +"moral" "1" +"currentcash" "8" +} +// entity 585 +{ +"art_skins" "002 001 001" +"origin" "2008 2776 24" +"classname" "cast_thug" +"angle" "135" +"cast_group" "3" +"name" "brewster" +"spawnflags" "64" +"moral" "5" +"item" "item_health_sm" +"currentcash" "2" +"localteam" "sewer_rats" +} +// entity 586 +{ +"health" "50" +"acc" "3" +"art_skins" "005 003 001" +"classname" "cast_runt" +"origin" "2096 2928 24" +"angle" "180" +"cast_group" "3" +"name" "punky" +"spawnflags" "0" +"moral" "5" +"localteam" "sewer_rats" +} +// entity 587 +{ +"art_skins" "003 002 001" +"cast_group" "3" +"angle" "90" +"classname" "cast_thug" +"origin" "1896 1944 -104" +"name" "igmo" +"spawnflags" "0" +"moral" "7" +"currentcash" "10" +"localteam" "sewer_rats" +"health" "200" +} +// entity 588 +{ +"origin" "2400 672 168" +"_color" "0.308935 0.308969 0.309000" +"light" "65" +"classname" "light" +} +// entity 589 +{ +"classname" "func_group" +// brush 0 +{ +( 949 242 276 ) ( 949 222 276 ) ( 967 222 276 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +( 967 222 278 ) ( 949 222 278 ) ( 949 242 278 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 976 236 278 ) ( 976 236 276 ) ( 976 223 276 ) wood/wd_st_m3 13 -102 90 0.250000 0.250000 134217728 0 0 +( 975 249 276 ) ( 975 249 278 ) ( 954 249 278 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +( 953 236 276 ) ( 953 236 278 ) ( 953 223 278 ) wood/wd_st_m3 13 -102 90 0.250000 0.250000 134217728 0 0 +( 954 222 276 ) ( 954 222 278 ) ( 975 222 278 ) wood/wd_st_m3 13 -102 90 0.250000 0.250000 134217728 0 0 +( 976 223 278 ) ( 976 223 276 ) ( 975 222 276 ) wood/wd_st_m3 13 -102 90 0.250000 0.250000 134217728 0 0 +( 953 223 276 ) ( 953 223 278 ) ( 954 222 278 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +( 976 236 276 ) ( 976 236 278 ) ( 975 249 278 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +( 953 236 278 ) ( 953 236 276 ) ( 954 249 276 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +} +// brush 1 +{ +( 961 248 278 ) ( 961 249 278 ) ( 960 249 278 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 960 248 315 ) ( 960 247 315 ) ( 960 247 255 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 960 247 315 ) ( 961 247 315 ) ( 961 247 255 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 962 247 315 ) ( 962 248 315 ) ( 962 248 255 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 961 249 315 ) ( 960 249 315 ) ( 960 249 255 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 960 244 303 ) ( 960 248 303 ) ( 962 246 303 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +} +// brush 2 +{ +( 977 247 303 ) ( 977 249 303 ) ( 953 249 303 ) wood/wd_st_m3 13 -102 90 0.250000 0.250000 134217728 134217728 0 +( 979 249 308 ) ( 979 247 308 ) ( 951 247 308 ) wood/wd_st_m3 13 -102 90 0.250000 0.250000 134217728 134217728 0 +( 950 250 306 ) ( 950 246 306 ) ( 952 246 303 ) wood/wd_st_m3 13 -102 90 0.250000 0.250000 134217728 134217728 0 +( 951 246 308 ) ( 979 246 308 ) ( 979 246 306 ) wood/wd_st_m3 13 -102 90 0.250000 0.250000 134217728 134217728 0 +( 979 246 306 ) ( 979 250 306 ) ( 977 250 303 ) wood/wd_st_m3 13 -102 90 0.250000 0.250000 134217728 134217728 0 +( 976 250 307 ) ( 954 250 307 ) ( 954 250 305 ) wood/wd_st_m3 13 -102 90 0.250000 0.250000 134217728 134217728 0 +( 950 246 306 ) ( 950 250 306 ) ( 950 250 308 ) wood/wd_st_m3 13 -102 90 0.250000 0.250000 134217728 134217728 0 +( 979 250 306 ) ( 979 246 306 ) ( 979 246 308 ) wood/wd_st_m3 13 -102 90 0.250000 0.250000 134217728 134217728 0 +( 949 251 306 ) ( 949 249 303 ) ( 981 250 305 ) wood/wd_st_m3 13 -102 90 0.250000 0.250000 134217728 134217728 0 +( 949 247 303 ) ( 949 245 306 ) ( 981 246 305 ) wood/wd_st_m3 13 -102 90 0.250000 0.250000 134217728 134217728 0 +} +// brush 3 +{ +( 955 245 256 ) ( 955 249 256 ) ( 951 249 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 953 249 280 ) ( 953 245 280 ) ( 953 245 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 951 247 280 ) ( 955 247 280 ) ( 955 247 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 955 245 280 ) ( 955 249 280 ) ( 955 249 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 955 249 280 ) ( 951 249 280 ) ( 951 249 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 953 244 303 ) ( 953 252 303 ) ( 955 248 303 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +} +// brush 4 +{ +( 968 248 278 ) ( 968 249 278 ) ( 967 249 278 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 967 248 315 ) ( 967 247 315 ) ( 967 247 255 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 967 247 315 ) ( 968 247 315 ) ( 968 247 255 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 969 247 315 ) ( 969 248 315 ) ( 969 248 255 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 968 249 315 ) ( 967 249 315 ) ( 967 249 255 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 967 244 303 ) ( 967 248 303 ) ( 969 246 303 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +} +// brush 5 +{ +( 976 245 256 ) ( 976 249 256 ) ( 972 249 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 974 249 280 ) ( 974 245 280 ) ( 974 245 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 972 247 280 ) ( 976 247 280 ) ( 976 247 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 976 245 280 ) ( 976 249 280 ) ( 976 249 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 976 249 280 ) ( 972 249 280 ) ( 972 249 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 974 244 303 ) ( 974 252 303 ) ( 976 248 303 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +} +// brush 6 +{ +( 954 224 265 ) ( 956 224 265 ) ( 956 242 265 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +( 956 242 266 ) ( 956 224 266 ) ( 954 224 266 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +( 953 247 266 ) ( 953 247 265 ) ( 955 247 265 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +( 954 225 266 ) ( 954 225 265 ) ( 953 247 265 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +( 954 225 265 ) ( 954 225 266 ) ( 956 225 266 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +( 956 225 265 ) ( 956 225 266 ) ( 955 247 266 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +} +// brush 7 +{ +( 976 235 265 ) ( 976 237 265 ) ( 954 237 265 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +( 954 237 266 ) ( 976 237 266 ) ( 976 235 266 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +( 954 235 267 ) ( 976 235 267 ) ( 976 235 265 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +( 976 236 266 ) ( 954 236 266 ) ( 954 236 264 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +( 954 247 264 ) ( 954 247 266 ) ( 956 224 264 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +( 975 246 266 ) ( 975 246 264 ) ( 973 223 266 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +} +// brush 8 +{ +( 973 224 265 ) ( 975 224 265 ) ( 975 242 265 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +( 975 242 266 ) ( 975 224 266 ) ( 973 224 266 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +( 976 247 265 ) ( 976 247 266 ) ( 974 247 266 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +( 973 225 266 ) ( 973 225 265 ) ( 974 247 265 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +( 975 225 266 ) ( 975 225 265 ) ( 973 225 265 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +( 975 225 265 ) ( 975 225 266 ) ( 976 247 266 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 0 0 +} +// brush 9 +{ +( 975 249 256 ) ( 975 253 256 ) ( 971 253 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 973 253 280 ) ( 973 249 280 ) ( 973 249 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 973 223 280 ) ( 977 223 280 ) ( 977 223 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 975 249 280 ) ( 975 253 280 ) ( 975 253 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 975 225 280 ) ( 971 225 280 ) ( 971 225 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 973 221 276 ) ( 973 230 276 ) ( 975 225 276 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +} +// brush 10 +{ +( 956 249 256 ) ( 956 253 256 ) ( 952 253 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 954 253 280 ) ( 954 249 280 ) ( 954 249 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 954 223 280 ) ( 958 223 280 ) ( 958 223 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 956 249 280 ) ( 956 253 280 ) ( 956 253 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 956 225 280 ) ( 952 225 280 ) ( 952 225 256 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +( 954 221 276 ) ( 954 230 276 ) ( 956 225 276 ) wood/wd_st_m3 13 -102 180 0.250000 0.250000 134217728 134217728 0 +} +} +// entity 590 +{ +"origin" "320 1041 24" +"_color" "1.000000 0.501961 0.000000" +"style" "1" +"light" "75" +"classname" "light" +} +// entity 591 +{ +"origin" "807 1505 75" +"light" "35" +"_color" "0.768627 1.000000 1.000000" +"classname" "light" +"spawnflags" "0" +} +// entity 592 +{ +"origin" "864 -24 64" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 593 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "864 320 64" +} +// entity 594 +{ +"origin" "864 608 64" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 595 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1024 608 64" +} +// entity 596 +{ +"origin" "1280 608 64" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 597 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1464 608 64" +} +// entity 598 +{ +"origin" "1728 608 -16" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 599 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1984 608 -16" +} +// entity 600 +{ +"origin" "2144 608 -16" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 601 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "2144 448 -16" +} +// entity 602 +{ +"origin" "2144 192 -16" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 603 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/lightf_hum" +"attenuation" "-1" +"origin" "2560 320 -40" +} +// entity 604 +{ +"origin" "2560 576 -40" +"attenuation" "-1" +"noise" "world/lightf_hum" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 605 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "2400 672 248" +} +// entity 606 +{ +"origin" "2400 800 248" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 607 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "2144 800 248" +} +// entity 608 +{ +"origin" "2144 1056 248" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 609 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "2000 1056 248" +} +// entity 610 +{ +"origin" "1792 1152 96" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 611 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1536 1152 96" +} +// entity 612 +{ +"origin" "1280 1152 96" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 613 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1120 1152 96" +} +// entity 614 +{ +"origin" "1080 1360 96" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 615 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1056 960 96" +} +// entity 616 +{ +"origin" "1280 928 96" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 617 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1536 928 96" +} +// entity 618 +{ +"origin" "1792 928 96" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 619 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1344 1376 96" +} +// entity 620 +{ +"origin" "1536 1384 96" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 621 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1864 1384 96" +} +// entity 622 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1792 1152 264" +} +// entity 623 +{ +"origin" "1536 1152 264" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 624 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1280 1152 264" +} +// entity 625 +{ +"origin" "1120 1152 264" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 626 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1080 1360 264" +} +// entity 627 +{ +"origin" "1056 960 264" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 628 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1280 928 264" +} +// entity 629 +{ +"origin" "1536 928 264" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 630 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1792 928 264" +} +// entity 631 +{ +"origin" "1344 1376 264" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 632 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1536 1384 264" +} +// entity 633 +{ +"origin" "1864 1384 264" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 634 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "864 -288 64" +} +// entity 635 +{ +"origin" "864 -608 64" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 636 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1024 -608 64" +} +// entity 637 +{ +"origin" "1280 -608 64" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 638 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1536 -608 64" +} +// entity 639 +{ +"origin" "1792 -576 200" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 640 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1792 -384 200" +} +// entity 641 +{ +"origin" "2048 -384 200" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 642 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "2048 -576 200" +} +// entity 643 +{ +"origin" "2048 -768 200" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 644 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1792 -768 200" +} +// entity 645 +{ +"origin" "1824 -64 64" +"attenuation" "-1" +"noise" "world/lightf_hum" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 646 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/lightf_hum" +"attenuation" "-1" +"origin" "1824 192 64" +} +// entity 647 +{ +"origin" "1664 352 64" +"attenuation" "-1" +"noise" "world/lightf_hum" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 648 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/lightf_hum" +"attenuation" "-1" +"origin" "1376 352 64" +} +// entity 649 +{ +"origin" "1376 112 104" +"attenuation" "-1" +"noise" "world/lightf_hum" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 650 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1376 -224 240" +} +// entity 651 +{ +"origin" "1312 -384 344" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 652 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "816 -384 344" +} +// entity 653 +{ +"origin" "816 -192 344" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 654 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "816 -8 344" +} +// entity 655 +{ +"origin" "1032 0 344" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 656 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1024 128 344" +} +// entity 657 +{ +"origin" "-1792 2552 64" +"classname" "target_speaker" +"noise" "world/siren2" +"attenuation" "-1" +"volume" "1" +"targetname" "t92" +} +// entity 658 +{ +"origin" "-1848 2552 64" +"classname" "func_timer" +"spawnflags" "1" +"wait" "200" +"random" "20" +"target" "t91" +} +// entity 659 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/cypress" +"origin" "-1056 2184 72" +} +// entity 660 +{ +"origin" "-1104 1752 72" +"noise" "world/cypress" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 661 +{ +"art_skins" "020 011 005" +"classname" "cast_runt" +"name" "magicj" +"cast_group" "0" +"angle" "225" +"origin" "-1288 2266 24" +"spawnflags" "64" +"moral" "1" +} +// entity 662 +{ +"classname" "junior" +"_color" "1.000000 0.894118 0.792157" +"light" "300" +"origin" "1792 1024 272" +} +// entity 663 +{ +"classname" "junior" +"_color" "1.000000 0.894118 0.792157" +"light" "300" +"origin" "1536 1280 272" +} +// entity 664 +{ +"origin" "1536 1024 272" +"light" "300" +"_color" "1.000000 0.894118 0.792157" +"classname" "junior" +} +// entity 665 +{ +"origin" "1280 1280 272" +"light" "300" +"_color" "1.000000 0.894118 0.792157" +"classname" "junior" +} +// entity 666 +{ +"classname" "junior" +"_color" "1.000000 0.894118 0.792157" +"light" "300" +"origin" "1280 1024 272" +} +// entity 667 +{ +"origin" "2184 2528 216" +"_color" "1.000000 0.807843 0.615686" +"light" "350" +"classname" "junior" +} +// entity 668 +{ +"classname" "junior" +"light" "350" +"_color" "1.000000 0.807843 0.615686" +"origin" "2160 3232 216" +} +// entity 669 +{ +"spawnflags" "0" +"origin" "2496 2880 248" +"_color" "1.000000 0.786957 0.682609" +"light" "225" +"classname" "light" +} +// entity 670 +{ +"spawnflags" "0" +"classname" "light" +"light" "225" +"_color" "1.000000 0.786957 0.682609" +"origin" "2496 2528 248" +} +// entity 671 +{ +"spawnflags" "0" +"classname" "light" +"light" "225" +"_color" "1.000000 0.786957 0.682609" +"origin" "2496 3232 248" +} +// entity 672 +{ +"origin" "1888 2112 -30" +"_color" "1.000000 0.807843 0.615686" +"light" "225" +"classname" "junior" +"style" "8" +} +// entity 673 +{ +"classname" "junior" +"light" "150" +"_color" "1.000000 0.803922 0.611765" +"origin" "1888 2304 -8" +} +// entity 674 +{ +"origin" "1888 2496 -8" +"_color" "1.000000 0.807843 0.615686" +"light" "150" +"classname" "junior" +} +// entity 675 +{ +"origin" "2496 2880 216" +"_color" "1.000000 0.807843 0.615686" +"light" "300" +"classname" "junior" +} +// entity 676 +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.807843 0.615686" +"origin" "2496 2528 216" +} +// entity 677 +{ +"origin" "2472 3232 216" +"_color" "1.000000 0.807843 0.615686" +"light" "300" +"classname" "junior" +} +// entity 678 +{ +"origin" "1680 3008 168" +"_color" "1.000000 0.807843 0.615686" +"light" "300" +"classname" "junior" +} +// entity 679 +{ +"origin" "792 120 364" +"light" "250" +"_color" "0.690196 1.000000 1.000000" +"classname" "junior" +} +// entity 680 +{ +"origin" "1128 2560 144" +"_color" "1.000000 0.807843 0.615686" +"light" "200" +"classname" "junior" +} +// entity 681 +{ +"classname" "junior" +"light" "300" +"_color" "0.701961 0.917647 1.000000" +"origin" "-16 784 152" +} +// entity 682 +{ +"origin" "304 1792 168" +"_color" "1.000000 0.807843 0.615686" +"light" "300" +"classname" "junior" +} +// entity 683 +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.807843 0.615686" +"origin" "512 1792 168" +} +// entity 684 +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.807843 0.615686" +"origin" "448 720 168" +} +// entity 685 +{ +"origin" "448 432 168" +"_color" "1.000000 0.807843 0.615686" +"light" "300" +"classname" "junior" +} +// entity 686 +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.807843 0.615686" +"origin" "688 64 168" +} +// entity 687 +{ +"origin" "688 -320 168" +"_color" "1.000000 0.807843 0.615686" +"light" "300" +"classname" "junior" +} +// entity 688 +{ +"classname" "junior" +"light" "200" +"_color" "1.000000 0.921569 0.843137" +"origin" "864 -448 120" +} +// entity 689 +{ +"origin" "864 -192 120" +"_color" "1.000000 0.921569 0.843137" +"light" "200" +"classname" "junior" +} +// entity 690 +{ +"classname" "junior" +"light" "200" +"_color" "1.000000 0.921569 0.843137" +"origin" "1024 -608 120" +} +// entity 691 +{ +"origin" "1280 -608 120" +"_color" "1.000000 0.921569 0.843137" +"light" "200" +"classname" "junior" +} +// entity 692 +{ +"classname" "junior" +"light" "200" +"_color" "1.000000 0.921569 0.843137" +"origin" "1536 -608 120" +} +// entity 693 +{ +"origin" "1792 -576 264" +"_color" "1.000000 0.921569 0.843137" +"light" "300" +"classname" "junior" +} +// entity 694 +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.921569 0.843137" +"origin" "1792 -384 264" +} +// entity 695 +{ +"origin" "2048 -384 264" +"_color" "1.000000 0.921569 0.843137" +"light" "300" +"classname" "junior" +} +// entity 696 +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.921569 0.843137" +"origin" "2048 -576 264" +} +// entity 697 +{ +"origin" "2048 -768 264" +"_color" "1.000000 0.921569 0.843137" +"light" "300" +"classname" "junior" +} +// entity 698 +{ +"classname" "junior" +"light" "300" +"_color" "1.000000 0.921569 0.843137" +"origin" "1784 -768 264" +} +// entity 699 +{ +"origin" "1824 -64 120" +"_color" "1.000000 0.921569 0.843137" +"light" "200" +"classname" "junior" +} +// entity 700 +{ +"classname" "junior" +"light" "200" +"_color" "1.000000 0.921569 0.843137" +"origin" "1824 192 120" +} +// entity 701 +{ +"origin" "1664 352 120" +"_color" "1.000000 0.921569 0.843137" +"light" "200" +"classname" "junior" +} +// entity 702 +{ +"classname" "junior" +"light" "200" +"_color" "1.000000 0.921569 0.843137" +"origin" "1376 224 120" +} +// entity 703 +{ +"origin" "1376 -208 352" +"_color" "1.000000 0.921569 0.843137" +"light" "200" +"classname" "junior" +} +// entity 704 +{ +"classname" "junior" +"light" "250" +"_color" "1.000000 0.921569 0.843137" +"origin" "1312 -384 360" +} +// entity 705 +{ +"origin" "960 -416 448" +"_color" "1.000000 0.921569 0.843137" +"light" "250" +"classname" "junior" +} +// entity 706 +{ +"classname" "junior" +"light" "250" +"_color" "1.000000 0.921569 0.843137" +"origin" "960 -128 448" +} +// entity 707 +{ +"classname" "junior" +"light" "200" +"_color" "1.000000 0.921569 0.843137" +"origin" "864 -64 120" +} +// entity 708 +{ +"origin" "864 192 120" +"_color" "1.000000 0.921569 0.843137" +"light" "200" +"classname" "junior" +} +// entity 709 +{ +"classname" "junior" +"light" "200" +"_color" "1.000000 0.921569 0.843137" +"origin" "864 448 120" +} +// entity 710 +{ +"origin" "1024 608 120" +"_color" "1.000000 0.921569 0.843137" +"light" "200" +"classname" "junior" +} +// entity 711 +{ +"classname" "junior" +"light" "200" +"_color" "1.000000 0.921569 0.843137" +"origin" "1280 608 120" +} +// entity 712 +{ +"origin" "1152 768 120" +"_color" "1.000000 0.921569 0.843137" +"light" "200" +"classname" "junior" +} +// entity 713 +{ +"origin" "1728 608 -40" +"_color" "1.000000 0.921569 0.843137" +"light" "200" +"classname" "junior" +} +// entity 714 +{ +"classname" "junior" +"light" "200" +"_color" "1.000000 0.921569 0.843137" +"origin" "1984 608 -40" +} +// entity 715 +{ +"origin" "2144 448 -40" +"_color" "1.000000 0.921569 0.843137" +"light" "200" +"classname" "junior" +} +// entity 716 +{ +"classname" "junior" +"light" "200" +"_color" "1.000000 0.921569 0.843137" +"origin" "2144 192 -40" +} +// entity 717 +{ +"origin" "2560 320 56" +"_color" "1.000000 0.921569 0.843137" +"light" "250" +"classname" "junior" +} +// entity 718 +{ +"classname" "junior" +"light" "250" +"_color" "1.000000 0.921569 0.843137" +"origin" "2560 576 56" +} +// entity 719 +{ +"classname" "junior" +"light" "150" +"_color" "1.000000 0.921569 0.843137" +"origin" "2560 320 -72" +} +// entity 720 +{ +"origin" "2560 576 -72" +"_color" "1.000000 0.921569 0.843137" +"light" "150" +"classname" "junior" +} +// entity 721 +{ +"classname" "junior" +"light" "350" +"_color" "0.701961 0.917647 1.000000" +"origin" "-1056 1312 224" +} +// entity 722 +{ +"style" "6" +"origin" "675 2274 232" +"_color" "0.628866 0.494845 1.000000" +"classname" "light" +"spawnflags" "0" +} +// entity 723 +{ +"light" "150" +"classname" "light" +"_color" "0.628866 0.494845 1.000000" +"origin" "687 2302 232" +"spawnflags" "0" +} +// entity 724 +{ +"classname" "junior" +"_color" "1.000000 0.941176 0.768627" +"light" "200" +"origin" "832 1376 120" +} +// entity 725 +{ +"origin" "832 1248 120" +"light" "200" +"_color" "1.000000 0.941176 0.768627" +"classname" "junior" +} +// entity 726 +{ +"classname" "junior" +"_color" "1.000000 0.941176 0.768627" +"light" "200" +"origin" "704 1248 120" +} +// entity 727 +{ +"origin" "883 1312 104" +"style" "6" +"light" "300" +"_color" "1.000000 0.000000 0.000000" +"classname" "junior" +} +// entity 728 +{ +"origin" "784 1192 120" +"light" "200" +"_color" "1.000000 0.941176 0.768627" +"classname" "junior" +} +// entity 729 +{ +"origin" "560 2128 72" +"noise" "world/cypress" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 730 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/cypress" +"origin" "560 2224 72" +} +// entity 731 +{ +"origin" "640 2256 88" +"noise" "world/cypress" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 732 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/cypress" +"origin" "640 2096 88" +} +// entity 733 +{ +"origin" "1888 2304 -48" +"noise" "world/lightf_hum" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 734 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/lightf_hum" +"origin" "1888 2496 -48" +} +// entity 735 +{ +"origin" "1880 1920 -48" +"noise" "world/lightf_hum" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 736 +{ +"classname" "junior" +"_color" "1.000000 0.952941 0.709804" +"light" "150" +"origin" "-40 272 168" +} +// entity 737 +{ +"classname" "junior" +"_color" "1.000000 0.952941 0.709804" +"light" "300" +"origin" "160 -128 168" +} +// entity 738 +{ +"origin" "280 -544 168" +"light" "300" +"_color" "1.000000 0.952941 0.709804" +"classname" "junior" +} +// entity 739 +{ +"origin" "-88 -16 40" +"light" "125" +"_color" "1.000000 0.952941 0.709804" +"classname" "junior" +} +// entity 740 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/cypress" +"origin" "704 2176 112" +} +// entity 741 +{ +"origin" "680 2032 112" +"noise" "world/cypress" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 742 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/cypress" +"origin" "680 2328 112" +} +// entity 743 +{ +"origin" "760 2368 112" +"noise" "world/cypress" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 744 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/cypress" +"origin" "808 2176 112" +} +// entity 745 +{ +"origin" "744 1920 112" +"noise" "world/cypress" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 746 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/cypress" +"origin" "584 1968 112" +} +// entity 747 +{ +"origin" "1104 -16 352" +"_color" "1.000000 0.921569 0.843137" +"light" "150" +"classname" "junior" +} +// entity 748 +{ +"classname" "junior" +"light" "150" +"_color" "1.000000 0.921569 0.843137" +"origin" "1112 -464 352" +} +// entity 749 +{ +"classname" "junior" +"light" "125" +"_color" "1.000000 0.921569 0.843137" +"origin" "1776 384 120" +} +// entity 750 +{ +"origin" "1088 2944 152" +"_color" "1.000000 0.807843 0.615686" +"light" "300" +"classname" "junior" +} +// entity 751 +{ +"classname" "junior" +"light" "250" +"_color" "0.529412 1.000000 1.000000" +"origin" "1264 3168 152" +} +// entity 752 +{ +"origin" "1384 3008 104" +"_color" "1.000000 0.807843 0.615686" +"light" "125" +"classname" "junior" +} +// entity 753 +{ +"classname" "junior" +"light" "125" +"_color" "1.000000 0.807843 0.615686" +"origin" "1624 3008 104" +} +// entity 754 +{ +"classname" "light" +"_color" "1.000000 0.941935 0.703226" +"light" "100" +"origin" "2640 1920 -80" +} +// entity 755 +{ +"origin" "2512 1920 -80" +"light" "125" +"_color" "1.000000 0.941935 0.703226" +"classname" "light" +} +// entity 756 +{ +"classname" "light" +"_color" "1.000000 0.941935 0.703226" +"light" "100" +"origin" "2384 1920 -80" +} +// entity 757 +{ +"origin" "2640 1920 -7" +"dmg" "2" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 758 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"dmg" "2" +"origin" "2512 1920 -7" +} +// entity 759 +{ +"origin" "2384 1920 -7" +"dmg" "2" +"health" "64" +"light" "10" +"spawnflags" "2" +"classname" "lightflare" +} +// entity 760 +{ +"origin" "2640 1920 -16" +"light" "300" +"_color" "1.000000 0.941935 0.703226" +"classname" "junior" +} +// entity 761 +{ +"classname" "junior" +"_color" "1.000000 0.941935 0.703226" +"light" "300" +"origin" "2512 1920 -16" +} +// entity 762 +{ +"origin" "2384 1920 -16" +"light" "300" +"_color" "1.000000 0.941935 0.703226" +"classname" "junior" +} +// entity 763 +{ +"spawnflags" "0" +"classname" "light" +"_color" "0.302650 0.242770 0.221798" +"light" "80" +"origin" "2048 1920 -24" +} +// entity 764 +{ +"origin" "2048 1920 -8" +"_color" "1.000000 0.807843 0.615686" +"light" "150" +"classname" "junior" +} +// entity 765 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/lightf_hum" +"origin" "2048 1920 -48" +} +// entity 766 +{ +"origin" "2240 1920 -24" +"light" "80" +"_color" "1.000000 0.792208 0.727273" +"classname" "light" +"spawnflags" "0" +} +// entity 767 +{ +"classname" "junior" +"light" "150" +"_color" "1.000000 0.807843 0.615686" +"origin" "2240 1920 -8" +} +// entity 768 +{ +"origin" "2240 1920 -48" +"noise" "world/lightf_hum" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 769 +{ +"origin" "472 1792 104" +"_color" "1.000000 0.807843 0.615686" +"light" "125" +"classname" "junior" +} +// entity 770 +{ +"classname" "junior" +"light" "125" +"_color" "1.000000 0.807843 0.615686" +"origin" "360 1792 104" +} +// entity 771 +{ +"origin" "2392 1952 -88" +"targetname" "t98" +"angle" "180" +"classname" "info_player_coop" +} +// entity 772 +{ +"classname" "info_player_coop" +"angle" "180" +"targetname" "t99" +"origin" "2392 1888 -88" +} +// entity 773 +{ +"origin" "824 1376 72" +"targetname" "t100" +"angle" "90" +"classname" "info_player_coop" +} +// entity 774 +{ +"classname" "info_player_coop" +"angle" "90" +"targetname" "t101" +"origin" "712 1376 72" +} +// entity 775 +{ +"origin" "-1536 2960 -32" +"light" "200" +"_color" "1.000000 0.792208 0.727273" +"classname" "junior" +} +// entity 776 +{ +"classname" "junior" +"_color" "1.000000 0.792208 0.727273" +"light" "200" +"origin" "-1392 2960 -32" +} +// entity 777 +{ +"origin" "-1392 2848 -32" +"light" "200" +"_color" "1.000000 0.792208 0.727273" +"classname" "junior" +} +// entity 778 +{ +"classname" "junior" +"_color" "1.000000 0.792208 0.727273" +"light" "200" +"origin" "-1392 2720 -32" +} +// entity 779 +{ +"origin" "-1392 2592 -32" +"light" "200" +"_color" "1.000000 0.792208 0.727273" +"classname" "junior" +} +// entity 780 +{ +"classname" "junior" +"_color" "1.000000 0.792208 0.727273" +"light" "200" +"origin" "-1072 2472 -40" +} +// entity 781 +{ +"origin" "-1064 2368 -40" +"light" "250" +"_color" "1.000000 0.501961 0.000000" +"classname" "junior" +"style" "1" +} +// entity 782 +{ +"classname" "junior" +"light" "200" +"_color" "1.000000 0.921569 0.843137" +"origin" "1072 960 72" +} +// entity 783 +{ +"origin" "1080 1360 72" +"_color" "1.000000 0.921569 0.843137" +"light" "150" +"classname" "junior" +} +// entity 784 +{ +"classname" "junior" +"light" "150" +"_color" "1.000000 0.921569 0.843137" +"origin" "1368 1376 72" +} +// entity 785 +{ +"origin" "1568 1376 72" +"_color" "1.000000 0.921569 0.843137" +"light" "150" +"classname" "junior" +} +// entity 786 +{ +"origin" "1312 928 72" +"_color" "1.000000 0.921569 0.843137" +"light" "200" +"classname" "junior" +} +// entity 787 +{ +"classname" "junior" +"light" "150" +"_color" "1.000000 0.886364 0.840909" +"origin" "1824 928 176" +} +// entity 788 +{ +"classname" "junior" +"_color" "1.000000 0.942857 0.771429" +"light" "150" +"origin" "2080 -216 72" +} +// entity 789 +{ +"origin" "2152 -672 72" +"light" "150" +"_color" "1.000000 0.942857 0.771429" +"classname" "junior" +} +// entity 790 +{ +"classname" "junior" +"_color" "1.000000 0.942857 0.771429" +"light" "150" +"origin" "2080 -936 72" +} +// entity 791 +{ +"origin" "1688 -864 72" +"light" "150" +"_color" "1.000000 0.942857 0.771429" +"classname" "junior" +} +// entity 792 +{ +"origin" "2400 736 256" +"_color" "1.000000 1.000000 1.000000" +"light" "100" +"classname" "junior" +} +// entity 793 +{ +"classname" "junior" +"light" "100" +"_color" "1.000000 1.000000 1.000000" +"origin" "2304 800 256" +} +// entity 794 +{ +"origin" "2144 896 256" +"_color" "1.000000 1.000000 1.000000" +"light" "100" +"classname" "junior" +} +// entity 795 +{ +"classname" "junior" +"light" "100" +"_color" "1.000000 1.000000 1.000000" +"origin" "2112 1056 256" +} +// entity 796 +{ +"targetname" "t106" +"classname" "target_speaker" +"noise" "world/boardbreak.wav" +"volume" "1" +"origin" "-1984 2736 88" +} +// entity 797 +{ +"targetname" "t105" +"origin" "-1962 2736 88" +"volume" "1" +"noise" "world/boardbreak.wav" +"classname" "target_speaker" +} +// entity 798 +{ +"origin" "2648 228 24" +"classname" "item_health_lg" +} +// entity 799 +{ +"angle" "13" +"origin" "848 -560 280" +"classname" "item_health_lg" +} +// entity 800 +{ +"origin" "2716 668 20" +"classname" "ammo_bullets" +} +// entity 801 +{ +"origin" "-88 -352 208" +"light" "300" +"_color" "0.833333 0.958333 1.000000" +"classname" "junior" +} +// entity 802 +{ +"classname" "light" +"light" "85" +"_color" "0.308935 0.308969 0.309000" +"origin" "800 64 168" +"spawnflags" "0" +} +// entity 803 +{ +"origin" "-120 320 104" +"light" "150" +"_color" "1.000000 0.712598 0.472441" +"classname" "junior" +} +// entity 804 +{ +"key" "-1" +"targetname" "safedoor_sr" +"classname" "func_door_rotating" +"speed" "65" +"distance" "100" +"wait" "-1" +"sounds" "4" +"spawnflags" "10" +"angle" "225" +"_minlight" ".3" +"style" "1" +// brush 0 +{ +( 1097 236 260 ) ( 1080 253 260 ) ( 1035 208 260 ) props/safe_w -46 -8 45 1.000066 1.000023 0 0 0 +( 1035 208 316 ) ( 1080 253 316 ) ( 1097 236 316 ) props/safe_w -46 -8 45 1.000066 1.000023 0 0 0 +( 1035 208 320 ) ( 1052 191 320 ) ( 1052 191 256 ) props/safe 54 -32 -180 0.350000 -0.500000 0 8388608 0 +( 1077 166 320 ) ( 1122 211 320 ) ( 1122 211 256 ) props/safe_w -42 0 0 0.707092 1 0 0 0 +( 1054 200 320 ) ( 1037 217 320 ) ( 1037 217 256 ) props/safe_w -46 0 0 0.710000 1 0 8388608 0 +( 1083 250 320 ) ( 1038 205 320 ) ( 1038 205 256 ) props/safe_w -34 0 0 0.707092 1 0 0 0 +} +// brush 1 +{ +( 1041 211 252 ) ( 1038 208 252 ) ( 1041 205 252 ) common/0_origin -14 -4 45 1.000066 1.000023 16777216 0 0 +( 1041 205 324 ) ( 1038 208 324 ) ( 1041 211 324 ) common/0_origin -14 -4 45 1.000066 1.000023 16777216 0 0 +( 1041 205 316 ) ( 1044 208 316 ) ( 1044 208 260 ) common/0_origin -11 0 0 0.707153 1 16777216 0 0 +( 1044 208 316 ) ( 1041 211 316 ) ( 1041 211 260 ) common/0_origin -16 0 0 0.707108 1 16777216 0 0 +( 1041 211 316 ) ( 1038 208 316 ) ( 1038 208 260 ) common/0_origin -4 0 0 0.707153 1 16777216 0 0 +( 1038 208 316 ) ( 1041 205 316 ) ( 1041 205 260 ) common/0_origin -23 0 0 0.707108 1 16777216 0 0 +} +} +// entity 805 +{ +"origin" "1024 176 328" +"light" "100" +"_color" "1.000000 0.815686 0.666667" +"classname" "light" +} +// entity 806 +{ +"classname" "light" +"_color" "1.000000 0.815686 0.666667" +"light" "35" +"origin" "1108 152 288" +} +// entity 807 +{ +"spawnflags" "8" +"classname" "light" +"light" "125" +"_color" "1.000000 0.259259 0.148148" +"origin" "2384 672 92" +} +// entity 808 +{ +"classname" "func_wall" +// brush 0 +{ +( 1166 2576 100 ) ( 1182 2576 100 ) ( 1182 2688 98 ) props2/si_sr_m3cc -37 27 179 0.500000 -0.500000 0 0 0 +( 1182 2688 114 ) ( 1182 2576 116 ) ( 1166 2576 116 ) props2/si_sr_m3cc -36 12 179 0.500000 -0.500000 0 0 0 +( 1167 2688 122 ) ( 1167 2576 124 ) ( 1167 2574 -4 ) props2/si_sr_m3cc -37 0 179 0.500000 -0.500000 0 8388608 0 +( 1168 2512 125 ) ( 1168 2624 123 ) ( 1168 2622 -5 ) props2/si_sr_m2cc 13 16 179 1.000152 -1.000002 0 0 0 +( 1190 2511 61 ) ( 1158 2511 61 ) ( 1174 2512 125 ) props2/si_sr_m3cc -36 17 179 0.500000 -0.500000 0 0 0 +( 1150 2543 61 ) ( 1182 2543 61 ) ( 1166 2544 125 ) props2/si_sr_m3cc -36 17 179 0.500000 -0.500000 0 0 0 +} +} +// entity 809 +{ +"targetname" "t111" +"origin" "-444 1480 32" +"noise" "world/metalbreak" +"classname" "target_speaker" +} +// entity 810 +{ +"targetname" "t108" +"classname" "target_speaker" +"noise" "world/metalbreak" +"origin" "-302 1516 32" +} +// entity 811 +{ +"name" "cut_scenes/cut3.wav" +"origin" "-1759 2468 163" +"cameraangle" "37 127 0" +"targetname" "cam_3" +"wait" "60" +"classname" "misc_cutscene_camera" +"cameraorigin" "-1759 2468 163" +} +// entity 812 +{ +"name" "cut_scenes/cut2.wav" +"scriptname" "intro_camera3" +"targetname" "cam_2" +"angle" "0" +"origin" "-1846 2538 16" +"cameraangle" "-15 125 0" +"wait" "7" +"classname" "misc_cutscene_camera" +"cameraorigin" "-1857 2572 22" +"deadticks" "10" +"target" "cam_3" +} +// entity 813 +{ +"name" "cut_scenes/cut1.wav" +"targetname" "cam_1" +"origin" "-2059 2537 329" +"classname" "misc_cutscene_camera" +"angle" "0" +"cameraangle" "52 35 0" +"wait" "15" +"cameraorigin" "-2071 2534 263" +"target" "cam_2" +"cameravelrel" "0 10 0" +"reactdelay" "5" +"cameravel" "7 50 -48" +"target2" "cam_1_viewtarget" +"decel" "0.3" +"accel" "0.3" +"delay" "5" +"count" "3" +} +// entity 814 +{ +"origin" "-1944 2696 8" +"target" "intro_player_corner2" +"scriptname" "intro_player_script1a" +"wait" "3" +"targetname" "intro_player_corner1a" +"classname" "path_corner_cast" +} +// entity 815 +{ +"origin" "-1760 2728 24" +"scriptname" "intro_player_script2" +"targetname" "intro_player_corner2" +"classname" "path_corner_cast" +} +// entity 816 +{ +"wait" "3" +"origin" "-1960 2616 24" +"target" "intro_corner1" +"targetname" "intro_corner_start" +"classname" "path_corner_cast" +} +// entity 817 +{ +"name" "cut_scenes/cut1.wav" +"wait" "5" +"classname" "path_corner_cast" +"targetname" "intro_player_corner1" +"scriptname" "intro_player_script1" +"origin" "-1952 2704 24" +} +// entity 818 +{ +"classname" "path_corner_cast" +"targetname" "intro_corner3" +"origin" "-1904 2128 168" +} +// entity 819 +{ +"classname" "path_corner_cast" +"targetname" "intro_corner2" +"scriptname" "intro_script2" +"origin" "-1952 2632 24" +"target" "intro_corner3" +} +// entity 820 +{ +"classname" "path_corner_cast" +"targetname" "intro_corner1" +"origin" "-1952 2616 24" +"target" "intro_corner2" +"scriptname" "intro_script1" +"wait" "4" +} +// entity 821 +{ +"art_skins" "020 029 010" +"classname" "cast_thug" +"angle" "135" +"name" "ToughGuy2" +"spawnflags" "64" +"origin" "-1896 2632 24" +} +// entity 822 +{ +"art_skins" "041 026 010" +"classname" "cast_thug" +"name" "IntroGuy" +"spawnflags" "64" +"angle" "270" +"origin" "-1952 2712 24" +"target" "intro_player_corner1" +} +// entity 823 +{ +"art_skins" "019 028 010" +"origin" "-1952 2592 24" +"spawnflags" "0" +"name" "ToughGuy1" +"angle" "90" +"classname" "cast_thug" +"target" "intro_corner_start" +} +// entity 824 +{ +"origin" "-2048 2944 176" +"_color" "0.833333 0.958333 1.000000" +"light" "200" +"classname" "junior" +} +// entity 825 +{ +"classname" "junior" +"light" "200" +"_color" "0.833333 0.958333 1.000000" +"origin" "-1808 2944 136" +} +// entity 826 +{ +"origin" "-1920 2824 168" +"_color" "0.833333 0.958333 1.000000" +"light" "200" +"classname" "junior" +} +// entity 827 +{ +"classname" "junior" +"light" "200" +"_color" "0.833333 0.958333 1.000000" +"origin" "-1736 2656 248" +} +// entity 828 +{ +"classname" "func_group" +// brush 0 +{ +( -1045 2325 -24 ) ( -1045 2325 8 ) ( -1034 2336 8 ) props/barrel_v4 -14 -42 0 0.625000 0.750000 134217728 8388608 1 +( -1056 2320 -128 ) ( -1056 2320 -96 ) ( -1040 2320 -96 ) props/barrel_v4 9 -42 0 0.750000 0.750000 134217728 8388608 1 +( -1040 2336 -24 ) ( -1040 2336 8 ) ( -1040 2352 8 ) props/barrel_v4 -33 -42 0 0.750000 0.750000 134217728 8388608 1 +( -1072 2320 -128 ) ( -1040 2320 -128 ) ( -1040 2352 -128 ) props/barrel_v4 9 0 0 0.750000 0.750000 134217728 8388608 0 +( -1040 2352 -80 ) ( -1040 2320 -80 ) ( -1072 2320 -80 ) props/barrel_v4 9 0 0 0.750000 0.750000 134217728 8388608 0 +( -1046 2326 -1 ) ( -1046 2326 -30 ) ( -1036 2336 -1 ) props/barrel_v4 20 -42 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 1 +{ +( -1072 2320 -128 ) ( -1040 2320 -128 ) ( -1040 2352 -128 ) bricks/s_sr_m6 -24 24 0 0.500000 0.500000 134217728 0 0 +( -1046 2326 -30 ) ( -1046 2326 -1 ) ( -1036 2336 -1 ) bricks/s_sr_m6 -24 -104 0 0.500000 0.500000 134217728 0 0 +( -1056 2322 -124 ) ( -1056 2322 -95 ) ( -1042 2322 -95 ) bricks/s_sr_m6 -24 -104 0 0.500000 0.500000 134217728 0 0 +( -1066 2326 -124 ) ( -1066 2326 -95 ) ( -1056 2316 -95 ) bricks/s_sr_m6 -24 -104 0 0.500000 0.500000 134217728 0 0 +( -1070 2336 -124 ) ( -1070 2336 -95 ) ( -1070 2322 -95 ) bricks/s_sr_m6 -24 -104 0 0.500000 0.500000 134217728 0 0 +( -1066 2346 -124 ) ( -1066 2346 -95 ) ( -1076 2336 -95 ) bricks/s_sr_m6 -24 -104 0 0.500000 0.500000 134217728 0 0 +( -1056 2350 -30 ) ( -1056 2350 -1 ) ( -1070 2350 -1 ) bricks/s_sr_m6 -24 -104 0 0.500000 0.500000 134217728 0 0 +( -1046 2346 -30 ) ( -1046 2346 -1 ) ( -1056 2356 -1 ) bricks/s_sr_m6 -24 -104 0 0.500000 0.500000 134217728 0 0 +( -1042 2336 -30 ) ( -1042 2336 -1 ) ( -1042 2350 -1 ) bricks/s_sr_m6 -24 -104 0 0.500000 0.500000 134217728 0 0 +( -1042 2322 -92 ) ( -1070 2322 -92 ) ( -1042 2350 -92 ) bricks/s_sr_m6 -24 24 0 0.500000 0.500000 134217728 0 0 +} +// brush 2 +{ +( -1056 2320 -128 ) ( -1056 2320 -96 ) ( -1040 2320 -96 ) props/barrel_v4 9 -42 0 0.750000 0.750000 134217728 8388608 1 +( -1067 2325 -128 ) ( -1067 2325 -96 ) ( -1056 2314 -96 ) props/barrel_v4 22 -42 0 -0.750000 0.750000 134217728 8388608 1 +( -1072 2320 -128 ) ( -1040 2320 -128 ) ( -1040 2352 -128 ) props/barrel_v4 9 0 0 0.750000 0.750000 134217728 8388608 0 +( -1040 2352 -80 ) ( -1040 2320 -80 ) ( -1072 2320 -80 ) props/barrel_v4 9 0 0 0.750000 0.750000 134217728 8388608 0 +( -1046 2326 -30 ) ( -1046 2326 -1 ) ( -1036 2336 -1 ) props/barrel_v4 -33 -42 0 0.750000 0.750000 134217728 8388608 0 +( -1056 2322 -95 ) ( -1056 2322 -124 ) ( -1042 2322 -95 ) props/barrel_v4 -22 -42 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 3 +{ +( -1067 2325 -128 ) ( -1067 2325 -96 ) ( -1056 2314 -96 ) props/barrel_v4 22 -42 0 -0.750000 0.750000 134217728 8388608 1 +( -1072 2336 -128 ) ( -1072 2336 -96 ) ( -1072 2320 -96 ) props/barrel_v4 -33 -42 0 0.750000 0.750000 134217728 8388608 1 +( -1072 2320 -128 ) ( -1040 2320 -128 ) ( -1040 2352 -128 ) props/barrel_v4 9 0 0 0.750000 0.750000 134217728 8388608 0 +( -1040 2352 -80 ) ( -1040 2320 -80 ) ( -1072 2320 -80 ) props/barrel_v4 9 0 0 0.750000 0.750000 134217728 8388608 0 +( -1056 2322 -124 ) ( -1056 2322 -95 ) ( -1042 2322 -95 ) props/barrel_v4 9 -42 0 0.750000 0.750000 134217728 8388608 0 +( -1066 2326 -95 ) ( -1066 2326 -124 ) ( -1056 2316 -95 ) props/barrel_v4 20 -42 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 4 +{ +( -1072 2336 -128 ) ( -1072 2336 -96 ) ( -1072 2320 -96 ) props/barrel_v4 -33 -42 0 0.750000 0.750000 134217728 8388608 1 +( -1067 2347 -128 ) ( -1067 2347 -96 ) ( -1078 2336 -96 ) props/barrel_v4 -33 -42 0 0.750000 0.750000 134217728 8388608 1 +( -1072 2320 -128 ) ( -1040 2320 -128 ) ( -1040 2352 -128 ) props/barrel_v4 9 0 0 0.750000 0.750000 134217728 8388608 0 +( -1040 2352 -80 ) ( -1040 2320 -80 ) ( -1072 2320 -80 ) props/barrel_v4 9 0 0 0.750000 0.750000 134217728 8388608 0 +( -1066 2326 -124 ) ( -1066 2326 -95 ) ( -1056 2316 -95 ) props/barrel_v4 -33 -42 0 0.750000 0.750000 134217728 8388608 0 +( -1070 2336 -95 ) ( -1070 2336 -124 ) ( -1070 2322 -95 ) props/barrel_v4 20 -42 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 5 +{ +( -1067 2347 -128 ) ( -1067 2347 -96 ) ( -1078 2336 -96 ) props/barrel_v4 -17 -42 0 0.625000 0.750000 134217728 8388608 1 +( -1056 2352 -24 ) ( -1056 2352 8 ) ( -1072 2352 8 ) props/barrel_v4 -22 -42 0 -0.750000 0.750000 134217728 8388608 1 +( -1072 2320 -128 ) ( -1040 2320 -128 ) ( -1040 2352 -128 ) props/barrel_v4 9 0 0 0.750000 0.750000 134217728 8388608 0 +( -1040 2352 -80 ) ( -1040 2320 -80 ) ( -1072 2320 -80 ) props/barrel_v4 9 0 0 0.750000 0.750000 134217728 8388608 0 +( -1070 2336 -124 ) ( -1070 2336 -95 ) ( -1070 2322 -95 ) props/barrel_v4 -33 -42 0 0.750000 0.750000 134217728 8388608 0 +( -1066 2346 -95 ) ( -1066 2346 -124 ) ( -1076 2336 -95 ) props/barrel_v4 20 -42 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 6 +{ +( -1056 2352 -24 ) ( -1056 2352 8 ) ( -1072 2352 8 ) props/barrel_v4 -22 -42 0 -0.750000 0.750000 134217728 8388608 1 +( -1045 2347 -24 ) ( -1045 2347 8 ) ( -1056 2358 8 ) props/barrel_v4 -17 -42 0 0.625000 0.750000 134217728 8388608 1 +( -1072 2320 -128 ) ( -1040 2320 -128 ) ( -1040 2352 -128 ) props/barrel_v4 9 0 0 0.750000 0.750000 134217728 8388608 0 +( -1040 2352 -80 ) ( -1040 2320 -80 ) ( -1072 2320 -80 ) props/barrel_v4 9 0 0 0.750000 0.750000 134217728 8388608 0 +( -1066 2346 -124 ) ( -1066 2346 -95 ) ( -1076 2336 -95 ) props/barrel_v4 -33 -42 0 0.750000 0.750000 134217728 8388608 0 +( -1056 2350 -1 ) ( -1056 2350 -30 ) ( -1070 2350 -1 ) props/barrel_v4 -22 -42 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 7 +{ +( -1045 2347 -24 ) ( -1045 2347 8 ) ( -1056 2358 8 ) props/barrel_v4 -17 -42 0 0.625000 0.750000 134217728 8388608 1 +( -1040 2336 -24 ) ( -1040 2336 8 ) ( -1040 2352 8 ) props/barrel_v4 -33 -42 0 0.750000 0.750000 134217728 8388608 1 +( -1072 2320 -128 ) ( -1040 2320 -128 ) ( -1040 2352 -128 ) props/barrel_v4 9 0 0 0.750000 0.750000 134217728 8388608 0 +( -1040 2352 -80 ) ( -1040 2320 -80 ) ( -1072 2320 -80 ) props/barrel_v4 9 0 0 0.750000 0.750000 134217728 8388608 0 +( -1056 2350 -30 ) ( -1056 2350 -1 ) ( -1070 2350 -1 ) props/barrel_v4 9 -42 0 0.750000 0.750000 134217728 8388608 0 +( -1046 2346 -1 ) ( -1046 2346 -30 ) ( -1056 2356 -1 ) props/barrel_v4 20 -42 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 8 +{ +( -1040 2336 -24 ) ( -1040 2336 8 ) ( -1040 2352 8 ) props/barrel_v4 -33 -42 0 0.750000 0.750000 134217728 8388608 1 +( -1072 2320 -128 ) ( -1040 2320 -128 ) ( -1040 2352 -128 ) props/barrel_v4 9 0 0 0.750000 0.750000 134217728 8388608 0 +( -1040 2352 -80 ) ( -1040 2320 -80 ) ( -1072 2320 -80 ) props/barrel_v4 9 0 0 0.750000 0.750000 134217728 8388608 0 +( -1046 2326 -30 ) ( -1046 2326 -1 ) ( -1036 2336 -1 ) props/barrel_v4 -33 -42 0 0.750000 0.750000 134217728 8388608 0 +( -1046 2346 -30 ) ( -1046 2346 -1 ) ( -1056 2356 -1 ) props/barrel_v4 -33 -42 0 0.750000 0.750000 134217728 8388608 0 +( -1042 2336 -1 ) ( -1042 2336 -30 ) ( -1042 2350 -1 ) props/barrel_v4 20 -42 0 -0.750000 0.750000 134217728 8388608 1 +} +} +// entity 829 +{ +"classname" "func_group" +// brush 0 +{ +( -1045 1693 104 ) ( -1045 1693 136 ) ( -1034 1704 136 ) props/barrel_v4 36 -63 0 0.625000 0.750000 134217728 8388608 1 +( -1056 1688 0 ) ( -1056 1688 32 ) ( -1040 1688 32 ) props/barrel_v4 9 -63 0 0.750000 0.750000 134217728 8388608 1 +( -1040 1704 104 ) ( -1040 1704 136 ) ( -1040 1720 136 ) props/barrel_v4 41 -63 0 0.750000 0.750000 134217728 8388608 1 +( -1072 1688 0 ) ( -1040 1688 0 ) ( -1040 1720 0 ) props/barrel_v4 9 -10 0 0.750000 0.750000 134217728 8388608 0 +( -1040 1720 48 ) ( -1040 1688 48 ) ( -1072 1688 48 ) props/barrel_v4 9 -10 0 0.750000 0.750000 134217728 8388608 0 +( -1046 1694 127 ) ( -1046 1694 98 ) ( -1036 1704 127 ) props/barrel_v4 9 -63 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 1 +{ +( -1072 1688 0 ) ( -1040 1688 0 ) ( -1040 1720 0 ) bricks/s_sr_m6 -24 -88 0 0.500000 0.500000 134217728 0 0 +( -1046 1694 98 ) ( -1046 1694 127 ) ( -1036 1704 127 ) bricks/s_sr_m6 88 -104 0 0.500000 0.500000 134217728 0 0 +( -1056 1690 4 ) ( -1056 1690 33 ) ( -1042 1690 33 ) bricks/s_sr_m6 -24 -104 0 0.500000 0.500000 134217728 0 0 +( -1066 1694 4 ) ( -1066 1694 33 ) ( -1056 1684 33 ) bricks/s_sr_m6 88 -104 0 0.500000 0.500000 134217728 0 0 +( -1070 1704 4 ) ( -1070 1704 33 ) ( -1070 1690 33 ) bricks/s_sr_m6 88 -104 0 0.500000 0.500000 134217728 0 0 +( -1066 1714 4 ) ( -1066 1714 33 ) ( -1076 1704 33 ) bricks/s_sr_m6 88 -104 0 0.500000 0.500000 134217728 0 0 +( -1056 1718 98 ) ( -1056 1718 127 ) ( -1070 1718 127 ) bricks/s_sr_m6 -24 -104 0 0.500000 0.500000 134217728 0 0 +( -1046 1714 98 ) ( -1046 1714 127 ) ( -1056 1724 127 ) bricks/s_sr_m6 88 -104 0 0.500000 0.500000 134217728 0 0 +( -1042 1704 98 ) ( -1042 1704 127 ) ( -1042 1718 127 ) bricks/s_sr_m6 88 -104 0 0.500000 0.500000 134217728 0 0 +( -1042 1690 36 ) ( -1070 1690 36 ) ( -1042 1718 36 ) bricks/s_sr_m6 -24 -88 0 0.500000 0.500000 134217728 0 0 +} +// brush 2 +{ +( -1056 1688 0 ) ( -1056 1688 32 ) ( -1040 1688 32 ) props/barrel_v4 9 -63 0 0.750000 0.750000 134217728 8388608 1 +( -1067 1693 0 ) ( -1067 1693 32 ) ( -1056 1682 32 ) props/barrel_v4 27 -64 0 -0.630000 0.750000 134217728 8388608 1 +( -1072 1688 0 ) ( -1040 1688 0 ) ( -1040 1720 0 ) props/barrel_v4 9 -10 0 0.750000 0.750000 134217728 8388608 0 +( -1040 1720 48 ) ( -1040 1688 48 ) ( -1072 1688 48 ) props/barrel_v4 9 -10 0 0.750000 0.750000 134217728 8388608 0 +( -1046 1694 98 ) ( -1046 1694 127 ) ( -1036 1704 127 ) props/barrel_v4 41 -63 0 0.750000 0.750000 134217728 8388608 0 +( -1056 1690 33 ) ( -1056 1690 4 ) ( -1042 1690 33 ) props/barrel_v4 41 -63 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 3 +{ +( -1067 1693 0 ) ( -1067 1693 32 ) ( -1056 1682 32 ) props/barrel_v4 27 -64 0 -0.630000 0.750000 134217728 8388608 1 +( -1072 1704 0 ) ( -1072 1704 32 ) ( -1072 1688 32 ) props/barrel_v4 41 -63 0 -0.750000 0.750000 134217728 8388608 1 +( -1072 1688 0 ) ( -1040 1688 0 ) ( -1040 1720 0 ) props/barrel_v4 9 -10 0 0.750000 0.750000 134217728 8388608 0 +( -1040 1720 48 ) ( -1040 1688 48 ) ( -1072 1688 48 ) props/barrel_v4 9 -10 0 0.750000 0.750000 134217728 8388608 0 +( -1056 1690 4 ) ( -1056 1690 33 ) ( -1042 1690 33 ) props/barrel_v4 9 -63 0 0.750000 0.750000 134217728 8388608 0 +( -1066 1694 33 ) ( -1066 1694 4 ) ( -1056 1684 33 ) props/barrel_v4 9 -63 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 4 +{ +( -1072 1704 0 ) ( -1072 1704 32 ) ( -1072 1688 32 ) props/barrel_v4 41 -63 0 -0.750000 0.750000 134217728 8388608 1 +( -1067 1715 0 ) ( -1067 1715 32 ) ( -1078 1704 32 ) props/barrel_v4 27 -64 0 -0.630000 0.750000 134217728 8388608 1 +( -1072 1688 0 ) ( -1040 1688 0 ) ( -1040 1720 0 ) props/barrel_v4 9 -10 0 0.750000 0.750000 134217728 8388608 0 +( -1040 1720 48 ) ( -1040 1688 48 ) ( -1072 1688 48 ) props/barrel_v4 9 -10 0 0.750000 0.750000 134217728 8388608 0 +( -1066 1694 4 ) ( -1066 1694 33 ) ( -1056 1684 33 ) props/barrel_v4 41 -63 0 0.750000 0.750000 134217728 8388608 0 +( -1070 1704 33 ) ( -1070 1704 4 ) ( -1070 1690 33 ) props/barrel_v4 9 -63 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 5 +{ +( -1067 1715 0 ) ( -1067 1715 32 ) ( -1078 1704 32 ) props/barrel_v4 27 -64 0 -0.630000 0.750000 134217728 8388608 1 +( -1056 1720 104 ) ( -1056 1720 136 ) ( -1072 1720 136 ) props/barrel_v4 41 -63 0 -0.750000 0.750000 134217728 8388608 1 +( -1072 1688 0 ) ( -1040 1688 0 ) ( -1040 1720 0 ) props/barrel_v4 9 -10 0 0.750000 0.750000 134217728 8388608 0 +( -1040 1720 48 ) ( -1040 1688 48 ) ( -1072 1688 48 ) props/barrel_v4 9 -10 0 0.750000 0.750000 134217728 8388608 0 +( -1070 1704 4 ) ( -1070 1704 33 ) ( -1070 1690 33 ) props/barrel_v4 41 -63 0 0.750000 0.750000 134217728 8388608 0 +( -1066 1714 33 ) ( -1066 1714 4 ) ( -1076 1704 33 ) props/barrel_v4 9 -63 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 6 +{ +( -1056 1720 104 ) ( -1056 1720 136 ) ( -1072 1720 136 ) props/barrel_v4 41 -63 0 -0.750000 0.750000 134217728 8388608 1 +( -1045 1715 104 ) ( -1045 1715 136 ) ( -1056 1726 136 ) props/barrel_v4 33 -63 0 0.625000 0.750000 134217728 8388608 1 +( -1072 1688 0 ) ( -1040 1688 0 ) ( -1040 1720 0 ) props/barrel_v4 9 -10 0 0.750000 0.750000 134217728 8388608 0 +( -1040 1720 48 ) ( -1040 1688 48 ) ( -1072 1688 48 ) props/barrel_v4 9 -10 0 0.750000 0.750000 134217728 8388608 0 +( -1066 1714 4 ) ( -1066 1714 33 ) ( -1076 1704 33 ) props/barrel_v4 41 -63 0 0.750000 0.750000 134217728 8388608 0 +( -1056 1718 127 ) ( -1056 1718 98 ) ( -1070 1718 127 ) props/barrel_v4 41 -63 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 7 +{ +( -1045 1715 104 ) ( -1045 1715 136 ) ( -1056 1726 136 ) props/barrel_v4 33 -63 0 0.625000 0.750000 134217728 8388608 1 +( -1040 1704 104 ) ( -1040 1704 136 ) ( -1040 1720 136 ) props/barrel_v4 41 -63 0 0.750000 0.750000 134217728 8388608 1 +( -1072 1688 0 ) ( -1040 1688 0 ) ( -1040 1720 0 ) props/barrel_v4 9 -10 0 0.750000 0.750000 134217728 8388608 0 +( -1040 1720 48 ) ( -1040 1688 48 ) ( -1072 1688 48 ) props/barrel_v4 9 -10 0 0.750000 0.750000 134217728 8388608 0 +( -1056 1718 98 ) ( -1056 1718 127 ) ( -1070 1718 127 ) props/barrel_v4 9 -63 0 0.750000 0.750000 134217728 8388608 0 +( -1046 1714 127 ) ( -1046 1714 98 ) ( -1056 1724 127 ) props/barrel_v4 9 -63 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 8 +{ +( -1040 1704 104 ) ( -1040 1704 136 ) ( -1040 1720 136 ) props/barrel_v4 41 -63 0 0.750000 0.750000 134217728 8388608 1 +( -1072 1688 0 ) ( -1040 1688 0 ) ( -1040 1720 0 ) props/barrel_v4 9 -10 0 0.750000 0.750000 134217728 8388608 0 +( -1040 1720 48 ) ( -1040 1688 48 ) ( -1072 1688 48 ) props/barrel_v4 9 -10 0 0.750000 0.750000 134217728 8388608 0 +( -1046 1694 98 ) ( -1046 1694 127 ) ( -1036 1704 127 ) props/barrel_v4 41 -63 0 0.750000 0.750000 134217728 8388608 0 +( -1046 1714 98 ) ( -1046 1714 127 ) ( -1056 1724 127 ) props/barrel_v4 41 -63 0 0.750000 0.750000 134217728 8388608 0 +( -1042 1704 127 ) ( -1042 1704 98 ) ( -1042 1718 127 ) props/barrel_v4 9 -63 0 -0.750000 0.750000 134217728 8388608 1 +} +} +// entity 830 +{ +"classname" "func_group" +// brush 0 +{ +( 235 1045 104 ) ( 235 1045 136 ) ( 246 1056 136 ) props/barrel_v4 -15 -64 0 0.625000 0.750000 134217728 8388608 1 +( 224 1040 0 ) ( 224 1040 32 ) ( 240 1040 32 ) props/barrel_v4 -33 -64 0 0.750000 0.750000 134217728 8388608 1 +( 240 1056 104 ) ( 240 1056 136 ) ( 240 1072 136 ) props/barrel_v4 9 -64 0 0.750000 0.750000 134217728 8388608 1 +( 208 1040 0 ) ( 240 1040 0 ) ( 240 1072 0 ) props/barrel_v4 -33 21 0 0.750000 0.750000 134217728 8388608 0 +( 240 1072 48 ) ( 240 1040 48 ) ( 208 1040 48 ) props/barrel_v4 -33 21 0 0.750000 0.750000 134217728 8388608 0 +( 234 1046 127 ) ( 234 1046 98 ) ( 244 1056 127 ) props/barrel_v4 40 -63 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 1 +{ +( 208 1040 0 ) ( 240 1040 0 ) ( 240 1072 0 ) bricks/s_sr_m6 -24 24 0 0.500000 0.500000 134217728 0 0 +( 234 1046 98 ) ( 234 1046 127 ) ( 244 1056 127 ) bricks/s_sr_m6 -24 -104 0 0.500000 0.500000 134217728 0 0 +( 224 1042 4 ) ( 224 1042 33 ) ( 238 1042 33 ) bricks/s_sr_m6 -24 -104 0 0.500000 0.500000 134217728 0 0 +( 214 1046 4 ) ( 214 1046 33 ) ( 224 1036 33 ) bricks/s_sr_m6 -24 -104 0 0.500000 0.500000 134217728 0 0 +( 210 1056 4 ) ( 210 1056 33 ) ( 210 1042 33 ) bricks/s_sr_m6 -24 -104 0 0.500000 0.500000 134217728 0 0 +( 214 1066 4 ) ( 214 1066 33 ) ( 204 1056 33 ) bricks/s_sr_m6 -24 -104 0 0.500000 0.500000 134217728 0 0 +( 224 1070 98 ) ( 224 1070 127 ) ( 210 1070 127 ) bricks/s_sr_m6 -24 -104 0 0.500000 0.500000 134217728 0 0 +( 234 1066 98 ) ( 234 1066 127 ) ( 224 1076 127 ) bricks/s_sr_m6 -24 -104 0 0.500000 0.500000 134217728 0 0 +( 238 1056 98 ) ( 238 1056 127 ) ( 238 1070 127 ) bricks/s_sr_m6 -24 -104 0 0.500000 0.500000 134217728 0 0 +( 238 1042 36 ) ( 210 1042 36 ) ( 238 1070 36 ) bricks/s_sr_m6 -24 24 0 0.500000 0.500000 134217728 0 0 +} +// brush 2 +{ +( 224 1040 0 ) ( 224 1040 32 ) ( 240 1040 32 ) props/barrel_v4 -33 -64 0 0.750000 0.750000 134217728 8388608 1 +( 213 1045 0 ) ( 213 1045 32 ) ( 224 1034 32 ) props/barrel_v4 244 -64 0 -0.630000 0.750000 134217728 8388608 1 +( 208 1040 0 ) ( 240 1040 0 ) ( 240 1072 0 ) props/barrel_v4 -33 21 0 0.750000 0.750000 134217728 8388608 0 +( 240 1072 48 ) ( 240 1040 48 ) ( 208 1040 48 ) props/barrel_v4 -33 21 0 0.750000 0.750000 134217728 8388608 0 +( 234 1046 98 ) ( 234 1046 127 ) ( 244 1056 127 ) props/barrel_v4 9 -63 0 0.750000 0.750000 134217728 8388608 0 +( 224 1042 33 ) ( 224 1042 4 ) ( 238 1042 33 ) props/barrel_v4 19 -63 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 3 +{ +( 213 1045 0 ) ( 213 1045 32 ) ( 224 1034 32 ) props/barrel_v4 244 -64 0 -0.630000 0.750000 134217728 8388608 1 +( 208 1056 0 ) ( 208 1056 32 ) ( 208 1040 32 ) props/barrel_v4 8 -64 0 -0.750000 0.750000 134217728 8388608 1 +( 208 1040 0 ) ( 240 1040 0 ) ( 240 1072 0 ) props/barrel_v4 -33 21 0 0.750000 0.750000 134217728 8388608 0 +( 240 1072 48 ) ( 240 1040 48 ) ( 208 1040 48 ) props/barrel_v4 -33 21 0 0.750000 0.750000 134217728 8388608 0 +( 224 1042 4 ) ( 224 1042 33 ) ( 238 1042 33 ) props/barrel_v4 -33 -63 0 0.750000 0.750000 134217728 8388608 0 +( 214 1046 33 ) ( 214 1046 4 ) ( 224 1036 33 ) props/barrel_v4 40 -63 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 4 +{ +( 208 1056 0 ) ( 208 1056 32 ) ( 208 1040 32 ) props/barrel_v4 8 -64 0 -0.750000 0.750000 134217728 8388608 1 +( 213 1067 0 ) ( 213 1067 32 ) ( 202 1056 32 ) props/barrel_v4 22 -63 0 -0.630000 0.750000 134217728 8388608 1 +( 208 1040 0 ) ( 240 1040 0 ) ( 240 1072 0 ) props/barrel_v4 -33 21 0 0.750000 0.750000 134217728 8388608 0 +( 240 1072 48 ) ( 240 1040 48 ) ( 208 1040 48 ) props/barrel_v4 -33 21 0 0.750000 0.750000 134217728 8388608 0 +( 214 1046 4 ) ( 214 1046 33 ) ( 224 1036 33 ) props/barrel_v4 9 -63 0 0.750000 0.750000 134217728 8388608 0 +( 210 1056 33 ) ( 210 1056 4 ) ( 210 1042 33 ) props/barrel_v4 40 -63 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 5 +{ +( 213 1067 0 ) ( 213 1067 32 ) ( 202 1056 32 ) props/barrel_v4 22 -63 0 -0.630000 0.750000 134217728 8388608 1 +( 224 1072 104 ) ( 224 1072 136 ) ( 208 1072 136 ) props/barrel_v4 19 -63 0 -0.750000 0.750000 134217728 8388608 1 +( 208 1040 0 ) ( 240 1040 0 ) ( 240 1072 0 ) props/barrel_v4 -33 21 0 0.750000 0.750000 134217728 8388608 0 +( 240 1072 48 ) ( 240 1040 48 ) ( 208 1040 48 ) props/barrel_v4 -33 21 0 0.750000 0.750000 134217728 8388608 0 +( 210 1056 4 ) ( 210 1056 33 ) ( 210 1042 33 ) props/barrel_v4 9 -63 0 0.750000 0.750000 134217728 8388608 0 +( 214 1066 33 ) ( 214 1066 4 ) ( 204 1056 33 ) props/barrel_v4 40 -63 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 6 +{ +( 224 1072 104 ) ( 224 1072 136 ) ( 208 1072 136 ) props/barrel_v4 19 -63 0 -0.750000 0.750000 134217728 8388608 1 +( 235 1067 104 ) ( 235 1067 136 ) ( 224 1078 136 ) props/barrel_v4 -18 -64 0 0.625000 0.750000 134217728 8388608 1 +( 208 1040 0 ) ( 240 1040 0 ) ( 240 1072 0 ) props/barrel_v4 -33 21 0 0.750000 0.750000 134217728 8388608 0 +( 240 1072 48 ) ( 240 1040 48 ) ( 208 1040 48 ) props/barrel_v4 -33 21 0 0.750000 0.750000 134217728 8388608 0 +( 214 1066 4 ) ( 214 1066 33 ) ( 204 1056 33 ) props/barrel_v4 9 -63 0 0.750000 0.750000 134217728 8388608 0 +( 224 1070 127 ) ( 224 1070 98 ) ( 210 1070 127 ) props/barrel_v4 19 -63 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 7 +{ +( 235 1067 104 ) ( 235 1067 136 ) ( 224 1078 136 ) props/barrel_v4 -18 -64 0 0.625000 0.750000 134217728 8388608 1 +( 240 1056 104 ) ( 240 1056 136 ) ( 240 1072 136 ) props/barrel_v4 -18 -63 0 0.625000 0.750000 134217728 8388608 1 +( 208 1040 0 ) ( 240 1040 0 ) ( 240 1072 0 ) props/barrel_v4 -18 -63 0 0.625000 0.750000 134217728 8388608 1 +( 240 1072 48 ) ( 240 1040 48 ) ( 208 1040 48 ) props/barrel_v4 -18 -63 0 0.625000 0.750000 134217728 8388608 1 +( 224 1070 98 ) ( 224 1070 127 ) ( 210 1070 127 ) props/barrel_v4 -18 -63 0 0.625000 0.750000 134217728 8388608 1 +( 234 1066 127 ) ( 234 1066 98 ) ( 224 1076 127 ) props/barrel_v4 -18 -63 0 0.625000 0.750000 134217728 8388608 1 +} +// brush 8 +{ +( 240 1056 104 ) ( 240 1056 136 ) ( 240 1072 136 ) props/barrel_v4 9 -64 0 0.750000 0.750000 134217728 8388608 1 +( 208 1040 0 ) ( 240 1040 0 ) ( 240 1072 0 ) props/barrel_v4 -33 21 0 0.750000 0.750000 134217728 8388608 0 +( 240 1072 48 ) ( 240 1040 48 ) ( 208 1040 48 ) props/barrel_v4 -33 21 0 0.750000 0.750000 134217728 8388608 0 +( 234 1046 98 ) ( 234 1046 127 ) ( 244 1056 127 ) props/barrel_v4 9 -63 0 0.750000 0.750000 134217728 8388608 0 +( 234 1066 98 ) ( 234 1066 127 ) ( 224 1076 127 ) props/barrel_v4 9 -63 0 0.750000 0.750000 134217728 8388608 0 +( 238 1056 127 ) ( 238 1056 98 ) ( 238 1070 127 ) props/barrel_v4 40 -63 0 -0.750000 0.750000 134217728 8388608 1 +} +} +// entity 831 +{ +"classname" "func_group" +// brush 0 +{ +( 1783 2625 104 ) ( 1783 2625 136 ) ( 1794 2636 136 ) props/barrel_v4 17 -63 0 0.625000 0.750000 134217728 8388608 1 +( 1772 2620 0 ) ( 1772 2620 32 ) ( 1788 2620 32 ) props/barrel_v4 14 -63 0 0.750000 0.750000 134217728 8388608 1 +( 1788 2636 104 ) ( 1788 2636 136 ) ( 1788 2652 136 ) props/barrel_v4 14 -63 0 0.750000 0.750000 134217728 8388608 1 +( 1756 2620 0 ) ( 1788 2620 0 ) ( 1788 2652 0 ) props/barrel_v4 14 15 0 0.750000 0.750000 134217728 8388608 0 +( 1788 2652 48 ) ( 1788 2620 48 ) ( 1756 2620 48 ) props/barrel_v4 14 15 0 0.750000 0.750000 134217728 8388608 0 +( 1782 2626 127 ) ( 1782 2626 98 ) ( 1792 2636 127 ) props/barrel_v4 34 -63 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 1 +{ +( 1756 2620 0 ) ( 1788 2620 0 ) ( 1788 2652 0 ) bricks/s_sr_m6 80 -16 0 0.500000 0.500000 134217728 0 0 +( 1782 2626 98 ) ( 1782 2626 127 ) ( 1792 2636 127 ) bricks/s_sr_m6 16 -104 0 0.500000 0.500000 134217728 0 0 +( 1772 2622 4 ) ( 1772 2622 33 ) ( 1786 2622 33 ) bricks/s_sr_m6 80 -104 0 0.500000 0.500000 134217728 0 0 +( 1762 2626 4 ) ( 1762 2626 33 ) ( 1772 2616 33 ) bricks/s_sr_m6 16 -104 0 0.500000 0.500000 134217728 0 0 +( 1758 2636 4 ) ( 1758 2636 33 ) ( 1758 2622 33 ) bricks/s_sr_m6 16 -104 0 0.500000 0.500000 134217728 0 0 +( 1762 2646 4 ) ( 1762 2646 33 ) ( 1752 2636 33 ) bricks/s_sr_m6 16 -104 0 0.500000 0.500000 134217728 0 0 +( 1772 2650 98 ) ( 1772 2650 127 ) ( 1758 2650 127 ) bricks/s_sr_m6 80 -104 0 0.500000 0.500000 134217728 0 0 +( 1782 2646 98 ) ( 1782 2646 127 ) ( 1772 2656 127 ) bricks/s_sr_m6 16 -104 0 0.500000 0.500000 134217728 0 0 +( 1786 2636 98 ) ( 1786 2636 127 ) ( 1786 2650 127 ) bricks/s_sr_m6 16 -104 0 0.500000 0.500000 134217728 0 0 +( 1786 2622 36 ) ( 1758 2622 36 ) ( 1786 2650 36 ) bricks/s_sr_m6 80 -16 0 0.500000 0.500000 134217728 0 0 +} +// brush 2 +{ +( 1772 2620 0 ) ( 1772 2620 32 ) ( 1788 2620 32 ) props/barrel_v4 14 -63 0 0.750000 0.750000 134217728 8388608 1 +( 1761 2625 0 ) ( 1761 2625 32 ) ( 1772 2614 32 ) props/barrel_v4 0 -63 0 -0.630000 0.750000 134217728 8388608 1 +( 1756 2620 0 ) ( 1788 2620 0 ) ( 1788 2652 0 ) props/barrel_v4 14 15 0 0.750000 0.750000 134217728 8388608 0 +( 1788 2652 48 ) ( 1788 2620 48 ) ( 1756 2620 48 ) props/barrel_v4 14 15 0 0.750000 0.750000 134217728 8388608 0 +( 1782 2626 98 ) ( 1782 2626 127 ) ( 1792 2636 127 ) props/barrel_v4 14 -63 0 0.750000 0.750000 134217728 8388608 0 +( 1772 2622 33 ) ( 1772 2622 4 ) ( 1786 2622 33 ) props/barrel_v4 -28 -63 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 3 +{ +( 1761 2625 0 ) ( 1761 2625 32 ) ( 1772 2614 32 ) props/barrel_v4 0 -63 0 -0.630000 0.750000 134217728 8388608 1 +( 1756 2636 0 ) ( 1756 2636 32 ) ( 1756 2620 32 ) props/barrel_v4 2 -63 0 -0.750000 0.750000 134217728 8388608 1 +( 1756 2620 0 ) ( 1788 2620 0 ) ( 1788 2652 0 ) props/barrel_v4 14 15 0 0.750000 0.750000 134217728 8388608 0 +( 1788 2652 48 ) ( 1788 2620 48 ) ( 1756 2620 48 ) props/barrel_v4 14 15 0 0.750000 0.750000 134217728 8388608 0 +( 1772 2622 4 ) ( 1772 2622 33 ) ( 1786 2622 33 ) props/barrel_v4 14 -63 0 0.750000 0.750000 134217728 8388608 0 +( 1762 2626 33 ) ( 1762 2626 4 ) ( 1772 2616 33 ) props/barrel_v4 34 -63 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 4 +{ +( 1756 2636 0 ) ( 1756 2636 32 ) ( 1756 2620 32 ) props/barrel_v4 2 -63 0 -0.750000 0.750000 134217728 8388608 1 +( 1761 2647 0 ) ( 1761 2647 32 ) ( 1750 2636 32 ) props/barrel_v4 -30 -64 0 -0.630000 0.750000 134217728 8388608 1 +( 1756 2620 0 ) ( 1788 2620 0 ) ( 1788 2652 0 ) props/barrel_v4 14 15 0 0.750000 0.750000 134217728 8388608 0 +( 1788 2652 48 ) ( 1788 2620 48 ) ( 1756 2620 48 ) props/barrel_v4 14 15 0 0.750000 0.750000 134217728 8388608 0 +( 1762 2626 4 ) ( 1762 2626 33 ) ( 1772 2616 33 ) props/barrel_v4 14 -63 0 0.750000 0.750000 134217728 8388608 0 +( 1758 2636 33 ) ( 1758 2636 4 ) ( 1758 2622 33 ) props/barrel_v4 34 -63 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 5 +{ +( 1761 2647 0 ) ( 1761 2647 32 ) ( 1750 2636 32 ) props/barrel_v4 -30 -64 0 -0.630000 0.750000 134217728 8388608 1 +( 1772 2652 104 ) ( 1772 2652 136 ) ( 1756 2652 136 ) props/barrel_v4 -28 -64 0 -0.750000 0.750000 134217728 8388608 1 +( 1756 2620 0 ) ( 1788 2620 0 ) ( 1788 2652 0 ) props/barrel_v4 14 15 0 0.750000 0.750000 134217728 8388608 0 +( 1788 2652 48 ) ( 1788 2620 48 ) ( 1756 2620 48 ) props/barrel_v4 14 15 0 0.750000 0.750000 134217728 8388608 0 +( 1758 2636 4 ) ( 1758 2636 33 ) ( 1758 2622 33 ) props/barrel_v4 14 -63 0 0.750000 0.750000 134217728 8388608 0 +( 1762 2646 33 ) ( 1762 2646 4 ) ( 1752 2636 33 ) props/barrel_v4 34 -63 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 6 +{ +( 1772 2652 104 ) ( 1772 2652 136 ) ( 1756 2652 136 ) props/barrel_v4 -28 -64 0 -0.750000 0.750000 134217728 8388608 1 +( 1783 2647 104 ) ( 1783 2647 136 ) ( 1772 2658 136 ) props/barrel_v4 14 -63 0 0.625000 0.750000 134217728 8388608 1 +( 1756 2620 0 ) ( 1788 2620 0 ) ( 1788 2652 0 ) props/barrel_v4 14 15 0 0.750000 0.750000 134217728 8388608 0 +( 1788 2652 48 ) ( 1788 2620 48 ) ( 1756 2620 48 ) props/barrel_v4 14 15 0 0.750000 0.750000 134217728 8388608 0 +( 1762 2646 4 ) ( 1762 2646 33 ) ( 1752 2636 33 ) props/barrel_v4 14 -63 0 0.750000 0.750000 134217728 8388608 0 +( 1772 2650 127 ) ( 1772 2650 98 ) ( 1758 2650 127 ) props/barrel_v4 -28 -63 0 -0.750000 0.750000 134217728 8388608 1 +} +// brush 7 +{ +( 1783 2647 104 ) ( 1783 2647 136 ) ( 1772 2658 136 ) props/barrel_v4 14 -63 0 0.625000 0.750000 134217728 8388608 1 +( 1788 2636 104 ) ( 1788 2636 136 ) ( 1788 2652 136 ) props/barrel_v4 14 -63 0 0.625000 0.750000 134217728 8388608 1 +( 1756 2620 0 ) ( 1788 2620 0 ) ( 1788 2652 0 ) props/barrel_v4 1 -4 0 0.625000 0.750000 134217728 8388608 1 +( 1788 2652 48 ) ( 1788 2620 48 ) ( 1756 2620 48 ) props/barrel_v4 1 -4 0 0.625000 0.750000 134217728 8388608 1 +( 1772 2650 98 ) ( 1772 2650 127 ) ( 1758 2650 127 ) props/barrel_v4 1 -63 0 0.625000 0.750000 134217728 8388608 1 +( 1782 2646 127 ) ( 1782 2646 98 ) ( 1772 2656 127 ) props/barrel_v4 14 -63 0 0.625000 0.750000 134217728 8388608 1 +} +// brush 8 +{ +( 1788 2636 104 ) ( 1788 2636 136 ) ( 1788 2652 136 ) props/barrel_v4 14 -63 0 0.750000 0.750000 134217728 8388608 1 +( 1756 2620 0 ) ( 1788 2620 0 ) ( 1788 2652 0 ) props/barrel_v4 14 15 0 0.750000 0.750000 134217728 8388608 0 +( 1788 2652 48 ) ( 1788 2620 48 ) ( 1756 2620 48 ) props/barrel_v4 14 15 0 0.750000 0.750000 134217728 8388608 0 +( 1782 2626 98 ) ( 1782 2626 127 ) ( 1792 2636 127 ) props/barrel_v4 14 -63 0 0.750000 0.750000 134217728 8388608 0 +( 1782 2646 98 ) ( 1782 2646 127 ) ( 1772 2656 127 ) props/barrel_v4 14 -63 0 0.750000 0.750000 134217728 8388608 0 +( 1786 2636 127 ) ( 1786 2636 98 ) ( 1786 2650 127 ) props/barrel_v4 34 -63 0 -0.750000 0.750000 134217728 8388608 1 +} +} +// entity 832 +{ +"spawnflags" "6" +"classname" "func_wall" +// brush 0 +{ +( 2763 1912 -6 ) ( 2763 1928 -6 ) ( 2760 1928 0 ) metals/mt_pv_m26y 8 -1 -180 1 -1.000046 134217728 0 0 +( 2773 1928 -6 ) ( 2773 1912 -6 ) ( 2776 1912 0 ) metals/mt_pv_m26y 8 -1 -180 1 -1.000046 134217728 0 0 +( 2766 1928 0 ) ( 2766 1912 0 ) ( 2760 1912 0 ) metals/mt_pv_m26y 8 -8 -90 1 -1 134217728 0 0 +( 2773 1915 -6 ) ( 2763 1915 -6 ) ( 2760 1912 0 ) metals/mt_pv_m26y 18 -8 90 1 1 134217728 0 0 +( 2763 1925 -6 ) ( 2773 1925 -6 ) ( 2776 1928 0 ) metals/mt_pv_m26y 18 -7 90 1 1 134217728 0 0 +( 2760 1925 -3 ) ( 2760 1917 -3 ) ( 2776 1921 -3 ) metals/mt_pv_m26y 8 -8 -90 1 -1 134217728 0 0 +} +} +// entity 833 +{ +"origin" "2768 1920 -80" +"light" "100" +"_color" "1.000000 0.941935 0.703226" +"classname" "light" +} +// entity 834 +{ +"classname" "lightflare" +"spawnflags" "2" +"light" "10" +"health" "64" +"dmg" "2" +"origin" "2768 1920 -7" +} +// entity 835 +{ +"classname" "junior" +"_color" "1.000000 0.941935 0.703226" +"light" "300" +"origin" "2768 1920 -16" +} +// entity 836 +{ +"option" "1" +"origin" "-2022 2514 2" +"angle" "180" +"classname" "props_trashpaper" +"lightit" "8" +} +// entity 837 +{ +"classname" "props_trashbottle" +"angle" "315" +"origin" "-2092 2698 2" +"lightit" "6" +"option" "1" +} +// entity 838 +{ +"option" "1" +"origin" "344 1010 2" +"angle" "135" +"lightit" "8" +"classname" "props_trashbottle" +} +// entity 839 +{ +"option" "1" +"classname" "props_trashbottle" +"lightit" "8" +"angle" "0" +"origin" "324 998 2" +} +// entity 840 +{ +"origin" "-684 1490 2" +"lightit" "8" +"classname" "props_trashbottle" +"angle" "315" +} +// entity 841 +{ +"origin" "1456 1072 48" +"classname" "props_crate_bust_32" +"spawnflags" "16" +} +// entity 842 +{ +"classname" "light" +"light" "65" +"_color" "0.308935 0.308969 0.309000" +"origin" "2144 1040 240" +} +// entity 843 +{ +"origin" "1256 608 264" +"_color" "1.000000 0.259259 0.148148" +"classname" "junior" +} +// entity 844 +{ +"classname" "junior" +"_color" "1.000000 0.259259 0.148148" +"origin" "1024 608 272" +"light" "175" +} +// entity 845 +{ +"origin" "864 448 264" +"_color" "1.000000 0.259259 0.148148" +"classname" "junior" +"light" "175" +} +// entity 846 +{ +"origin" "864 608 272" +"_color" "1.000000 0.259259 0.148148" +"classname" "junior" +"light" "175" +} +// entity 847 +{ +"origin" "864 448 264" +"light" "100" +"_color" "1.000000 0.259259 0.148148" +"classname" "light" +} +// entity 848 +{ +"classname" "light" +"_color" "1.000000 0.259259 0.148148" +"light" "115" +"origin" "1024 608 264" +} +// entity 849 +{ +"origin" "864 352 272" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 850 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "864 544 272" +} +// entity 851 +{ +"origin" "928 608 272" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 852 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1088 608 272" +} +// entity 853 +{ +"origin" "1224 608 272" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 854 +{ +"classname" "junior" +"_color" "1.000000 0.259259 0.148148" +"origin" "992 352 272" +"light" "175" +} +// entity 855 +{ +"classname" "light" +"_color" "1.000000 0.259259 0.148148" +"light" "65" +"origin" "992 352 264" +} +// entity 856 +{ +"classname" "light" +"_color" "1.000000 0.259259 0.148148" +"light" "100" +"origin" "992 352 264" +} +// entity 857 +{ +"light" "175" +"origin" "1088 352 272" +"_color" "1.000000 0.627451 0.576471" +"classname" "junior" +} +// entity 858 +{ +"origin" "1088 352 264" +"light" "65" +"_color" "1.000000 0.627451 0.576471" +"classname" "light" +} +// entity 859 +{ +"origin" "1088 352 272" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 860 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "992 352 272" +} +// entity 861 +{ +"classname" "junior" +"_color" "1.000000 0.627451 0.576471" +"origin" "1212 356 272" +"light" "175" +} +// entity 862 +{ +"classname" "light" +"_color" "1.000000 0.627451 0.576471" +"light" "65" +"origin" "1212 356 264" +} +// entity 863 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1212 356 272" +} +// entity 864 +{ +"light" "175" +"origin" "1216 256 272" +"_color" "1.000000 0.627451 0.576471" +"classname" "junior" +} +// entity 865 +{ +"origin" "1216 256 264" +"light" "65" +"_color" "1.000000 0.627451 0.576471" +"classname" "light" +} +// entity 866 +{ +"origin" "1216 256 272" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 867 +{ +"classname" "junior" +"_color" "1.000000 0.627451 0.576471" +"origin" "1216 92 272" +"light" "175" +} +// entity 868 +{ +"classname" "light" +"_color" "1.000000 0.627451 0.576471" +"light" "65" +"origin" "1216 92 264" +} +// entity 869 +{ +"classname" "target_speaker" +"spawnflags" "1" +"noise" "world/mach_lt" +"attenuation" "-1" +"origin" "1216 92 272" +} +// entity 870 +{ +"light" "175" +"origin" "1148 92 300" +"_color" "1.000000 0.627451 0.576471" +"classname" "junior" +} +// entity 871 +{ +"origin" "1148 92 292" +"light" "65" +"_color" "1.000000 0.627451 0.576471" +"classname" "light" +} +// entity 872 +{ +"origin" "1148 92 300" +"attenuation" "-1" +"noise" "world/mach_lt" +"spawnflags" "1" +"classname" "target_speaker" +} +// entity 873 +{ +"origin" "864 288 264" +"light" "150" +"_color" "1.000000 0.259259 0.148148" +"classname" "light" +} +// entity 874 +{ +"classname" "light" +"_color" "1.000000 0.259259 0.148148" +"light" "150" +"origin" "1256 608 264" +} +// entity 875 +{ +"classname" "cast_bum_sit" +"cast_group" "0" +"art_skins" "024 017 011" +"angle" "270" +"origin" "-640 1493 24" +"name" "rummy" +"health" "80" +} +// entity 876 +{ +"origin" "1044 80 292" +"light" "150" +"_color" "1.000000 0.827451 0.658824" +"classname" "junior" +} +// entity 877 +{ +"classname" "props_rat" +"spawnflags" "0" +"origin" "2140 932 208" +} +// entity 878 +{ +"targetname" "t121" +"classname" "props_rat_spawner_node" +"spawnflags" "0" +"origin" "1712 -816 48" +} +// entity 879 +{ +"classname" "trigger_hurt_fire" +"spawnflags" "0" +// brush 0 +{ +( 1780 2646 48 ) ( 1764 2646 48 ) ( 1764 2630 48 ) common/0_trigger -24 2 0 1 1 0 128 0 +( 1764 2630 96 ) ( 1764 2646 96 ) ( 1780 2646 96 ) common/0_trigger -24 2 0 1 1 0 128 0 +( 1764 2628 96 ) ( 1780 2628 96 ) ( 1780 2628 48 ) common/0_trigger -24 16 0 1 1 0 128 0 +( 1780 2628 96 ) ( 1780 2644 96 ) ( 1780 2644 48 ) common/0_trigger -2 16 0 1 1 0 128 0 +( 1780 2644 96 ) ( 1764 2644 96 ) ( 1764 2644 48 ) common/0_trigger -24 16 0 1 1 0 128 0 +( 1764 2646 96 ) ( 1764 2630 96 ) ( 1764 2630 48 ) common/0_trigger -2 16 0 1 1 0 128 0 +} +} +// entity 880 +{ +"spawnflags" "0" +"classname" "trigger_hurt_fire" +// brush 0 +{ +( -568 1504 48 ) ( -584 1504 48 ) ( -584 1488 48 ) common/0_trigger 20 12 0 1 1 0 128 0 +( -584 1488 96 ) ( -584 1504 96 ) ( -568 1504 96 ) common/0_trigger 20 12 0 1 1 0 128 0 +( -584 1486 96 ) ( -568 1486 96 ) ( -568 1486 48 ) common/0_trigger 20 16 0 1 1 0 128 0 +( -568 1486 96 ) ( -568 1502 96 ) ( -568 1502 48 ) common/0_trigger -12 16 0 1 1 0 128 0 +( -568 1502 96 ) ( -584 1502 96 ) ( -584 1502 48 ) common/0_trigger 20 16 0 1 1 0 128 0 +( -584 1506 96 ) ( -584 1490 96 ) ( -584 1490 48 ) common/0_trigger -12 16 0 1 1 0 128 0 +} +} +// entity 881 +{ +"classname" "trigger_hurt_fire" +"spawnflags" "0" +// brush 0 +{ +( -1048 1712 48 ) ( -1064 1712 48 ) ( -1064 1696 48 ) common/0_trigger 20 -4 0 1 1 0 128 0 +( -1064 1696 96 ) ( -1064 1712 96 ) ( -1048 1712 96 ) common/0_trigger 20 -4 0 1 1 0 128 0 +( -1062 1696 96 ) ( -1046 1696 96 ) ( -1046 1696 48 ) common/0_trigger 20 16 0 1 1 0 128 0 +( -1048 1696 96 ) ( -1048 1712 96 ) ( -1048 1712 48 ) common/0_trigger 4 16 0 1 1 0 128 0 +( -1048 1712 96 ) ( -1064 1712 96 ) ( -1064 1712 48 ) common/0_trigger 20 16 0 1 1 0 128 0 +( -1064 1712 96 ) ( -1064 1696 96 ) ( -1064 1696 48 ) common/0_trigger 4 16 0 1 1 0 128 0 +} +} +// entity 882 +{ +"spawnflags" "0" +"classname" "trigger_hurt_fire" +// brush 0 +{ +( -1348 2292 48 ) ( -1364 2292 48 ) ( -1364 2276 48 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -1364 2276 96 ) ( -1364 2292 96 ) ( -1348 2292 96 ) common/0_trigger 0 0 0 1 1 0 128 0 +( -1364 2276 96 ) ( -1348 2276 96 ) ( -1348 2276 48 ) common/0_trigger 0 16 0 1 1 0 128 0 +( -1350 2276 96 ) ( -1350 2292 96 ) ( -1350 2292 48 ) common/0_trigger 0 16 0 1 1 0 128 0 +( -1348 2292 96 ) ( -1364 2292 96 ) ( -1364 2292 48 ) common/0_trigger 0 16 0 1 1 0 128 0 +( -1366 2292 96 ) ( -1366 2276 96 ) ( -1366 2276 48 ) common/0_trigger 0 16 0 1 1 0 128 0 +} +} +// entity 883 +{ +"classname" "trigger_hurt_fire" +"spawnflags" "0" +// brush 0 +{ +( -1048 2344 -80 ) ( -1064 2344 -80 ) ( -1064 2328 -80 ) common/0_trigger -12 -12 0 1 1 0 128 0 +( -1064 2328 -32 ) ( -1064 2344 -32 ) ( -1048 2344 -32 ) common/0_trigger -12 -12 0 1 1 0 128 0 +( -1064 2326 -32 ) ( -1048 2326 -32 ) ( -1048 2326 -80 ) common/0_trigger -12 16 0 1 1 0 128 0 +( -1046 2328 -32 ) ( -1046 2344 -32 ) ( -1046 2344 -80 ) common/0_trigger 12 16 0 1 1 0 128 0 +( -1048 2346 -32 ) ( -1064 2346 -32 ) ( -1064 2346 -80 ) common/0_trigger -12 16 0 1 1 0 128 0 +( -1066 2344 -32 ) ( -1066 2328 -32 ) ( -1066 2328 -80 ) common/0_trigger 12 16 0 1 1 0 128 0 +} +} +// entity 884 +{ +"spawnflags" "0" +"classname" "trigger_hurt_fire" +// brush 0 +{ +( -2072 2536 64 ) ( -2088 2536 64 ) ( -2088 2520 64 ) common/0_trigger 20 20 0 1 1 0 128 0 +( -2088 2520 112 ) ( -2088 2536 112 ) ( -2072 2536 112 ) common/0_trigger 20 20 0 1 1 0 128 0 +( -2088 2520 112 ) ( -2072 2520 112 ) ( -2072 2520 64 ) common/0_trigger 20 0 0 1 1 0 128 0 +( -2072 2516 112 ) ( -2072 2532 112 ) ( -2072 2532 64 ) common/0_trigger -20 0 0 1 1 0 128 0 +( -2076 2536 112 ) ( -2092 2536 112 ) ( -2092 2536 64 ) common/0_trigger 20 0 0 1 1 0 128 0 +( -2088 2536 112 ) ( -2088 2520 112 ) ( -2088 2520 64 ) common/0_trigger -20 0 0 1 1 0 128 0 +} +} +// entity 885 +{ +"cast_group" "5" +"classname" "ai_boundary" +"moral" "6" +// brush 0 +{ +( 512 608 0 ) ( 384 608 0 ) ( 384 424 0 ) common/0_trigger 0 16 0 1 1 0 128 0 +( 384 424 128 ) ( 384 608 128 ) ( 512 608 128 ) common/0_trigger 0 16 0 1 1 0 128 0 +( 368 576 16 ) ( 496 576 16 ) ( 496 576 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 512 424 16 ) ( 512 608 16 ) ( 512 608 0 ) common/0_trigger -16 0 0 1 1 0 128 0 +( 512 608 16 ) ( 384 608 16 ) ( 384 608 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 384 608 16 ) ( 384 424 16 ) ( 384 424 0 ) common/0_trigger -16 0 0 1 1 0 128 0 +} +} +// entity 886 +{ +"cast_group" "5" +"classname" "ai_boundary" +"moral" "6" +// brush 0 +{ +( 1680 2992 0 ) ( 1584 2992 0 ) ( 1584 2960 0 ) common/0_trigger -16 -16 0 1 1 0 128 0 +( 1584 2960 128 ) ( 1584 2992 128 ) ( 1680 2992 128 ) common/0_trigger -16 -16 0 1 1 0 128 0 +( 1664 3072 0 ) ( 1664 3072 128 ) ( 1664 2960 128 ) common/0_trigger 16 0 0 1 1 0 128 0 +( 1728 2944 128 ) ( 1728 2944 0 ) ( 1664 2944 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1696 3072 128 ) ( 1696 3072 0 ) ( 1696 2960 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +( 1664 3072 128 ) ( 1664 3072 0 ) ( 1728 3072 0 ) common/0_trigger 0 0 0 1 1 0 128 0 +} +} +// entity 887 +{ +"classname" "func_group" +// brush 0 +{ +( 1536 1280 292 ) ( 1520 1288 284 ) ( 1536 1298 284 ) metals/mt_pv_m26y 94 -1 -180 1 1 134217728 8388608 0 +( 1536 1280 292 ) ( 1520 1272 284 ) ( 1520 1288 284 ) metals/mt_pv_m26y 94 -1 -180 1 1 134217728 8388608 0 +( 1536 1262 284 ) ( 1520 1272 284 ) ( 1536 1280 292 ) metals/mt_pv_m26y 94 -1 -180 1 1 134217728 8388608 0 +( 1536 1280 292 ) ( 1552 1272 284 ) ( 1536 1262 284 ) metals/mt_pv_m26y 94 -1 -180 1 1 134217728 8388608 0 +( 1536 1280 292 ) ( 1552 1288 284 ) ( 1552 1272 284 ) metals/mt_pv_m26y 94 -1 -180 1 1 134217728 8388608 0 +( 1536 1298 284 ) ( 1552 1288 284 ) ( 1536 1280 292 ) metals/mt_pv_m26y 94 -1 -180 1 1 134217728 8388608 0 +( 1552 1272 284 ) ( 1552 1288 284 ) ( 1536 1298 284 ) common/li_mf_v12c -16 16 0 1 1 134217728 8388609 25000 +} +// brush 1 +{ +( 1537 1281 311 ) ( 1537 1277 311 ) ( 1533 1277 311 ) metals/mt_pv_m26y 95 -3 -180 0.500000 0.500000 134217728 8390656 0 +( 1537 1281 273 ) ( 1537 1281 275 ) ( 1533 1281 275 ) metals/mt_pv_m26y 96 42 -180 0.500000 -0.500000 134217728 8390656 0 +( 1537 1281 292 ) ( 1536 1279 292 ) ( 1536 1279 307 ) metals/mt_pv_m26y 0 41 -180 0.500000 -0.500000 134217728 8390656 0 +( 1559 1303 292 ) ( 1515 1251 292 ) ( 1559 1251 292 ) metals/mt_pv_m26y 95 -3 -180 0.500000 0.500000 134217728 8390656 0 +( 1535 1281 307 ) ( 1536 1279 307 ) ( 1536 1279 292 ) metals/mt_pv_m26y 33 55 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 888 +{ +"classname" "func_group" +// brush 0 +{ +( 1792 1280 292 ) ( 1776 1288 284 ) ( 1792 1298 284 ) metals/mt_pv_m26y 94 -1 -180 1 1 134217728 8388608 0 +( 1792 1280 292 ) ( 1776 1272 284 ) ( 1776 1288 284 ) metals/mt_pv_m26y 94 -1 -180 1 1 134217728 8388608 0 +( 1792 1262 284 ) ( 1776 1272 284 ) ( 1792 1280 292 ) metals/mt_pv_m26y 94 -1 -180 1 1 134217728 8388608 0 +( 1792 1280 292 ) ( 1808 1272 284 ) ( 1792 1262 284 ) metals/mt_pv_m26y 94 -1 -180 1 1 134217728 8388608 0 +( 1792 1280 292 ) ( 1808 1288 284 ) ( 1808 1272 284 ) metals/mt_pv_m26y 94 -1 -180 1 1 134217728 8388608 0 +( 1792 1298 284 ) ( 1808 1288 284 ) ( 1792 1280 292 ) metals/mt_pv_m26y 94 -1 -180 1 1 134217728 8388608 0 +( 1808 1272 284 ) ( 1808 1288 284 ) ( 1792 1298 284 ) common/li_mf_v12c -16 -16 0 1 1 134217728 8388609 35000 +} +// brush 1 +{ +( 1793 1281 311 ) ( 1793 1277 311 ) ( 1789 1277 311 ) metals/mt_pv_m26y 95 -3 -180 0.500000 0.500000 134217728 8390656 0 +( 1793 1281 273 ) ( 1793 1281 275 ) ( 1789 1281 275 ) metals/mt_pv_m26y 96 42 -180 0.500000 -0.500000 134217728 8390656 0 +( 1793 1281 292 ) ( 1792 1279 292 ) ( 1792 1279 307 ) metals/mt_pv_m26y 0 41 -180 0.500000 -0.500000 134217728 8390656 0 +( 1815 1303 292 ) ( 1771 1251 292 ) ( 1815 1251 292 ) metals/mt_pv_m26y 95 -3 -180 0.500000 0.500000 134217728 8390656 0 +( 1791 1281 307 ) ( 1792 1279 307 ) ( 1792 1279 292 ) metals/mt_pv_m26y 33 55 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 889 +{ +"classname" "func_group" +// brush 0 +{ +( 1792 1024 292 ) ( 1776 1032 284 ) ( 1792 1042 284 ) metals/mt_pv_m26y 94 126 -180 1 1 134217728 8388608 0 +( 1792 1024 292 ) ( 1776 1016 284 ) ( 1776 1032 284 ) metals/mt_pv_m26y 94 126 -180 1 1 134217728 8388608 0 +( 1792 1006 284 ) ( 1776 1016 284 ) ( 1792 1024 292 ) metals/mt_pv_m26y 94 126 -180 1 1 134217728 8388608 0 +( 1792 1024 292 ) ( 1808 1016 284 ) ( 1792 1006 284 ) metals/mt_pv_m26y 94 126 -180 1 1 134217728 8388608 0 +( 1792 1024 292 ) ( 1808 1032 284 ) ( 1808 1016 284 ) metals/mt_pv_m26y 94 126 -180 1 1 134217728 8388608 0 +( 1792 1042 284 ) ( 1808 1032 284 ) ( 1792 1024 292 ) metals/mt_pv_m26y 94 126 -180 1 1 134217728 8388608 0 +( 1808 1016 284 ) ( 1808 1032 284 ) ( 1792 1042 284 ) common/li_mf_v12c 16 -16 0 1 1 134217728 8388609 31000 +} +// brush 1 +{ +( 1793 1025 311 ) ( 1793 1021 311 ) ( 1789 1021 311 ) metals/mt_pv_m26y 95 124 -180 0.500000 0.500000 134217728 8390656 0 +( 1793 1025 273 ) ( 1793 1025 275 ) ( 1789 1025 275 ) metals/mt_pv_m26y -32 42 -180 0.500000 -0.500000 134217728 8390656 0 +( 1793 1025 292 ) ( 1792 1023 292 ) ( 1792 1023 307 ) metals/mt_pv_m26y 0 40 -180 0.500000 -0.500000 134217728 8390656 0 +( 1815 1047 292 ) ( 1771 995 292 ) ( 1815 995 292 ) metals/mt_pv_m26y 95 124 -180 0.500000 0.500000 134217728 8390656 0 +( 1791 1025 307 ) ( 1792 1023 307 ) ( 1792 1023 292 ) metals/mt_pv_m26y -95 54 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 890 +{ +"classname" "func_group" +// brush 0 +{ +( 1536 1024 292 ) ( 1520 1032 284 ) ( 1536 1042 284 ) metals/mt_pv_m26y 94 126 -180 1 1 134217728 8388608 0 +( 1536 1024 292 ) ( 1520 1016 284 ) ( 1520 1032 284 ) metals/mt_pv_m26y 94 126 -180 1 1 134217728 8388608 0 +( 1536 1006 284 ) ( 1520 1016 284 ) ( 1536 1024 292 ) metals/mt_pv_m26y 94 126 -180 1 1 134217728 8388608 0 +( 1536 1024 292 ) ( 1552 1016 284 ) ( 1536 1006 284 ) metals/mt_pv_m26y 94 126 -180 1 1 134217728 8388608 0 +( 1536 1024 292 ) ( 1552 1032 284 ) ( 1552 1016 284 ) metals/mt_pv_m26y 94 126 -180 1 1 134217728 8388608 0 +( 1536 1042 284 ) ( 1552 1032 284 ) ( 1536 1024 292 ) metals/mt_pv_m26y 94 126 -180 1 1 134217728 8388608 0 +( 1552 1016 284 ) ( 1552 1032 284 ) ( 1536 1042 284 ) common/li_mf_v12c 16 -16 0 1 1 134217728 8388609 35000 +} +// brush 1 +{ +( 1537 1025 311 ) ( 1537 1021 311 ) ( 1533 1021 311 ) metals/mt_pv_m26y 95 124 -180 0.500000 0.500000 134217728 8390656 0 +( 1537 1025 273 ) ( 1537 1025 275 ) ( 1533 1025 275 ) metals/mt_pv_m26y -32 42 -180 0.500000 -0.500000 134217728 8390656 0 +( 1537 1025 292 ) ( 1536 1023 292 ) ( 1536 1023 307 ) metals/mt_pv_m26y 0 40 -180 0.500000 -0.500000 134217728 8390656 0 +( 1559 1047 292 ) ( 1515 995 292 ) ( 1559 995 292 ) metals/mt_pv_m26y 95 124 -180 0.500000 0.500000 134217728 8390656 0 +( 1535 1025 307 ) ( 1536 1023 307 ) ( 1536 1023 292 ) metals/mt_pv_m26y -95 54 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 891 +{ +"classname" "func_group" +// brush 0 +{ +( 1280 1024 292 ) ( 1264 1032 284 ) ( 1280 1042 284 ) metals/mt_pv_m26y -34 -1 -180 1 1 134217728 8388608 0 +( 1280 1024 292 ) ( 1264 1016 284 ) ( 1264 1032 284 ) metals/mt_pv_m26y -34 -1 -180 1 1 134217728 8388608 0 +( 1280 1006 284 ) ( 1264 1016 284 ) ( 1280 1024 292 ) metals/mt_pv_m26y -34 -1 -180 1 1 134217728 8388608 0 +( 1280 1024 292 ) ( 1296 1016 284 ) ( 1280 1006 284 ) metals/mt_pv_m26y -34 -1 -180 1 1 134217728 8388608 0 +( 1280 1024 292 ) ( 1296 1032 284 ) ( 1296 1016 284 ) metals/mt_pv_m26y -34 -1 -180 1 1 134217728 8388608 0 +( 1280 1042 284 ) ( 1296 1032 284 ) ( 1280 1024 292 ) metals/mt_pv_m26y -34 -1 -180 1 1 134217728 8388608 0 +( 1296 1016 284 ) ( 1296 1032 284 ) ( 1280 1042 284 ) common/li_mf_v12c 16 -16 0 1 1 134217728 8388609 32000 +} +// brush 1 +{ +( 1281 1025 311 ) ( 1281 1021 311 ) ( 1277 1021 311 ) metals/mt_pv_m26y -32 -3 -180 0.500000 0.500000 134217728 8390656 0 +( 1281 1025 273 ) ( 1281 1025 275 ) ( 1277 1025 275 ) metals/mt_pv_m26y -32 41 -180 0.500000 -0.500000 134217728 8390656 0 +( 1281 1025 292 ) ( 1280 1023 292 ) ( 1280 1023 307 ) metals/mt_pv_m26y 0 40 -180 0.500000 -0.500000 134217728 8390656 0 +( 1303 1047 292 ) ( 1259 995 292 ) ( 1303 995 292 ) metals/mt_pv_m26y -32 -3 -180 0.500000 0.500000 134217728 8390656 0 +( 1279 1025 307 ) ( 1280 1023 307 ) ( 1280 1023 292 ) metals/mt_pv_m26y -95 54 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 892 +{ +"classname" "func_group" +// brush 0 +{ +( 1280 608 196 ) ( 1264 616 188 ) ( 1280 626 188 ) metals/mt_pv_m26y 94 30 -180 1 1 134217728 8388608 0 +( 1280 608 196 ) ( 1264 600 188 ) ( 1264 616 188 ) metals/mt_pv_m26y 94 30 -180 1 1 134217728 8388608 0 +( 1280 590 188 ) ( 1264 600 188 ) ( 1280 608 196 ) metals/mt_pv_m26y 94 30 -180 1 1 134217728 8388608 0 +( 1280 608 196 ) ( 1296 600 188 ) ( 1280 590 188 ) metals/mt_pv_m26y 94 30 -180 1 1 134217728 8388608 0 +( 1280 608 196 ) ( 1296 616 188 ) ( 1296 600 188 ) metals/mt_pv_m26y 94 30 -180 1 1 134217728 8388608 0 +( 1280 626 188 ) ( 1296 616 188 ) ( 1280 608 196 ) metals/mt_pv_m26y 94 30 -180 1 1 134217728 8388608 0 +( 1296 600 188 ) ( 1296 616 188 ) ( 1280 626 188 ) common/li_mf_v12c -16 16 0 1 1 134217728 8388609 10000 +} +// brush 1 +{ +( 1281 609 207 ) ( 1281 605 207 ) ( 1277 605 207 ) metals/mt_pv_m26y 95 60 -180 0.500000 0.500000 134217728 8390656 0 +( 1281 609 177 ) ( 1281 609 179 ) ( 1277 609 179 ) metals/mt_pv_m26y 96 -21 -180 0.500000 -0.500000 134217728 8390656 0 +( 1281 609 196 ) ( 1280 607 196 ) ( 1280 607 211 ) metals/mt_pv_m26y -63 -23 -180 0.500000 -0.500000 134217728 8390656 0 +( 1303 631 196 ) ( 1259 579 196 ) ( 1303 579 196 ) metals/mt_pv_m26y 95 60 -180 0.500000 0.500000 134217728 8390656 0 +( 1279 609 213 ) ( 1280 607 213 ) ( 1280 607 198 ) metals/mt_pv_m26y -30 -9 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 893 +{ +"classname" "func_group" +// brush 0 +{ +( 1024 608 196 ) ( 1008 616 188 ) ( 1024 626 188 ) metals/mt_pv_m26y -34 30 -180 1 1 134217728 8388608 0 +( 1024 608 196 ) ( 1008 600 188 ) ( 1008 616 188 ) metals/mt_pv_m26y -34 30 -180 1 1 134217728 8388608 0 +( 1024 590 188 ) ( 1008 600 188 ) ( 1024 608 196 ) metals/mt_pv_m26y -34 30 -180 1 1 134217728 8388608 0 +( 1024 608 196 ) ( 1040 600 188 ) ( 1024 590 188 ) metals/mt_pv_m26y -34 30 -180 1 1 134217728 8388608 0 +( 1024 608 196 ) ( 1040 616 188 ) ( 1040 600 188 ) metals/mt_pv_m26y -34 30 -180 1 1 134217728 8388608 0 +( 1024 626 188 ) ( 1040 616 188 ) ( 1024 608 196 ) metals/mt_pv_m26y -34 30 -180 1 1 134217728 8388608 0 +( 1040 600 188 ) ( 1040 616 188 ) ( 1024 626 188 ) common/li_mf_v12c -16 -16 0 1 1 134217728 8388609 25000 +} +// brush 1 +{ +( 1025 609 207 ) ( 1025 605 207 ) ( 1021 605 207 ) metals/mt_pv_m26y -32 60 -180 0.500000 0.500000 134217728 8390656 0 +( 1025 609 177 ) ( 1025 609 179 ) ( 1021 609 179 ) metals/mt_pv_m26y -32 -21 -180 0.500000 -0.500000 134217728 8390656 0 +( 1025 609 196 ) ( 1024 607 196 ) ( 1024 607 211 ) metals/mt_pv_m26y -63 -23 -180 0.500000 -0.500000 134217728 8390656 0 +( 1047 631 196 ) ( 1003 579 196 ) ( 1047 579 196 ) metals/mt_pv_m26y -32 60 -180 0.500000 0.500000 134217728 8390656 0 +( 1023 609 213 ) ( 1024 607 213 ) ( 1024 607 198 ) metals/mt_pv_m26y -30 -9 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 894 +{ +"classname" "func_group" +// brush 0 +{ +( 864 448 196 ) ( 848 456 188 ) ( 864 466 188 ) metals/mt_pv_m26y -65 62 -180 1 1 134217728 8388608 0 +( 864 448 196 ) ( 848 440 188 ) ( 848 456 188 ) metals/mt_pv_m26y -65 62 -180 1 1 134217728 8388608 0 +( 864 430 188 ) ( 848 440 188 ) ( 864 448 196 ) metals/mt_pv_m26y -65 62 -180 1 1 134217728 8388608 0 +( 864 448 196 ) ( 880 440 188 ) ( 864 430 188 ) metals/mt_pv_m26y -65 62 -180 1 1 134217728 8388608 0 +( 864 448 196 ) ( 880 456 188 ) ( 880 440 188 ) metals/mt_pv_m26y -65 62 -180 1 1 134217728 8388608 0 +( 864 466 188 ) ( 880 456 188 ) ( 864 448 196 ) metals/mt_pv_m26y -65 62 -180 1 1 134217728 8388608 0 +( 880 440 188 ) ( 880 456 188 ) ( 864 466 188 ) common/li_mf_v12c 16 -16 0 1 1 134217728 8388609 25000 +} +// brush 1 +{ +( 865 449 207 ) ( 865 445 207 ) ( 861 445 207 ) metals/mt_pv_m26y -95 124 -180 0.500000 0.500000 134217728 8390656 0 +( 865 449 177 ) ( 865 449 179 ) ( 861 449 179 ) metals/mt_pv_m26y -96 -21 -180 0.500000 -0.500000 134217728 8390656 0 +( 865 449 196 ) ( 864 447 196 ) ( 864 447 211 ) metals/mt_pv_m26y -127 -23 -180 0.500000 -0.500000 134217728 8390656 0 +( 887 471 196 ) ( 843 419 196 ) ( 887 419 196 ) metals/mt_pv_m26y -95 124 -180 0.500000 0.500000 134217728 8390656 0 +( 863 449 213 ) ( 864 447 213 ) ( 864 447 198 ) metals/mt_pv_m26y -94 -9 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 895 +{ +"classname" "func_group" +// brush 0 +{ +( 864 192 196 ) ( 848 200 188 ) ( 864 210 188 ) metals/mt_pv_m26y -64 62 -180 1 1 134217728 8388608 0 +( 864 192 196 ) ( 848 184 188 ) ( 848 200 188 ) metals/mt_pv_m26y -64 62 -180 1 1 134217728 8388608 0 +( 864 174 188 ) ( 848 184 188 ) ( 864 192 196 ) metals/mt_pv_m26y -64 62 -180 1 1 134217728 8388608 0 +( 864 192 196 ) ( 880 184 188 ) ( 864 174 188 ) metals/mt_pv_m26y -64 62 -180 1 1 134217728 8388608 0 +( 864 192 196 ) ( 880 200 188 ) ( 880 184 188 ) metals/mt_pv_m26y -64 62 -180 1 1 134217728 8388608 0 +( 864 210 188 ) ( 880 200 188 ) ( 864 192 196 ) metals/mt_pv_m26y -64 62 -180 1 1 134217728 8388608 0 +( 880 184 188 ) ( 880 200 188 ) ( 864 210 188 ) common/li_mf_v12c 16 -16 0 1 1 134217728 8388609 25000 +} +// brush 1 +{ +( 865 193 207 ) ( 865 189 207 ) ( 861 189 207 ) metals/mt_pv_m26y -94 124 -180 0.500000 0.500000 134217728 8390656 0 +( 865 193 177 ) ( 865 193 179 ) ( 861 193 179 ) metals/mt_pv_m26y -96 -21 -180 0.500000 -0.500000 134217728 8390656 0 +( 865 193 196 ) ( 864 191 196 ) ( 864 191 211 ) metals/mt_pv_m26y -127 -23 -180 0.500000 -0.500000 134217728 8390656 0 +( 887 215 196 ) ( 843 163 196 ) ( 887 163 196 ) metals/mt_pv_m26y -94 124 -180 0.500000 0.500000 134217728 8390656 0 +( 863 193 213 ) ( 864 191 213 ) ( 864 191 198 ) metals/mt_pv_m26y -94 -9 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 896 +{ +"classname" "func_group" +// brush 0 +{ +( 864 -64 196 ) ( 848 -56 188 ) ( 864 -46 188 ) metals/mt_pv_m26y -63 62 -180 1 1 134217728 8388608 0 +( 864 -64 196 ) ( 848 -72 188 ) ( 848 -56 188 ) metals/mt_pv_m26y -63 62 -180 1 1 134217728 8388608 0 +( 864 -82 188 ) ( 848 -72 188 ) ( 864 -64 196 ) metals/mt_pv_m26y -63 62 -180 1 1 134217728 8388608 0 +( 864 -64 196 ) ( 880 -72 188 ) ( 864 -82 188 ) metals/mt_pv_m26y -63 62 -180 1 1 134217728 8388608 0 +( 864 -64 196 ) ( 880 -56 188 ) ( 880 -72 188 ) metals/mt_pv_m26y -63 62 -180 1 1 134217728 8388608 0 +( 864 -46 188 ) ( 880 -56 188 ) ( 864 -64 196 ) metals/mt_pv_m26y -63 62 -180 1 1 134217728 8388608 0 +( 880 -72 188 ) ( 880 -56 188 ) ( 864 -46 188 ) common/li_mf_v12c 16 -16 0 1 1 134217728 8388609 12000 +} +// brush 1 +{ +( 865 -63 207 ) ( 865 -67 207 ) ( 861 -67 207 ) metals/mt_pv_m26y -93 124 -180 0.500000 0.500000 134217728 8390656 0 +( 865 -63 177 ) ( 865 -63 179 ) ( 861 -63 179 ) metals/mt_pv_m26y -96 -21 -180 0.500000 -0.500000 134217728 8390656 0 +( 865 -63 196 ) ( 864 -65 196 ) ( 864 -65 211 ) metals/mt_pv_m26y -127 -23 -180 0.500000 -0.500000 134217728 8390656 0 +( 887 -41 196 ) ( 843 -93 196 ) ( 887 -93 196 ) metals/mt_pv_m26y -93 124 -180 0.500000 0.500000 134217728 8390656 0 +( 863 -63 213 ) ( 864 -65 213 ) ( 864 -65 198 ) metals/mt_pv_m26y -94 -9 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 897 +{ +"classname" "func_group" +// brush 0 +{ +( 960 -128 496 ) ( 944 -120 488 ) ( 960 -110 488 ) metals/mt_pv_m26y 32 126 -180 1 1 134217728 8388608 0 +( 960 -128 496 ) ( 944 -136 488 ) ( 944 -120 488 ) metals/mt_pv_m26y 32 126 -180 1 1 134217728 8388608 0 +( 960 -146 488 ) ( 944 -136 488 ) ( 960 -128 496 ) metals/mt_pv_m26y 32 126 -180 1 1 134217728 8388608 0 +( 960 -128 496 ) ( 976 -136 488 ) ( 960 -146 488 ) metals/mt_pv_m26y 32 126 -180 1 1 134217728 8388608 0 +( 960 -128 496 ) ( 976 -120 488 ) ( 976 -136 488 ) metals/mt_pv_m26y 32 126 -180 1 1 134217728 8388608 0 +( 960 -110 488 ) ( 976 -120 488 ) ( 960 -128 496 ) metals/mt_pv_m26y 32 126 -180 1 1 134217728 8388608 0 +( 976 -136 488 ) ( 976 -120 488 ) ( 960 -110 488 ) common/li_mf_v12c 16 -16 0 1 1 134217728 8388609 40000 +} +// brush 1 +{ +( 961 -127 511 ) ( 961 -131 511 ) ( 957 -131 511 ) metals/mt_pv_m26y -29 124 -180 0.500000 0.500000 134217728 8390656 0 +( 961 -127 477 ) ( 961 -127 479 ) ( 957 -127 479 ) metals/mt_pv_m26y -32 67 -180 0.500000 -0.500000 134217728 8390656 0 +( 961 -127 500 ) ( 960 -129 500 ) ( 960 -129 515 ) metals/mt_pv_m26y -127 64 -180 0.500000 -0.500000 134217728 8390656 0 +( 983 -105 496 ) ( 939 -157 496 ) ( 983 -157 496 ) metals/mt_pv_m26y -29 124 -180 0.500000 0.500000 134217728 8390656 0 +( 959 -127 513 ) ( 960 -129 513 ) ( 960 -129 498 ) metals/mt_pv_m26y -94 78 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 898 +{ +"classname" "func_group" +// brush 0 +{ +( 960 -416 496 ) ( 944 -408 488 ) ( 960 -398 488 ) metals/mt_pv_m26y 32 29 -180 1 1 134217728 8388608 0 +( 960 -416 496 ) ( 944 -424 488 ) ( 944 -408 488 ) metals/mt_pv_m26y 32 29 -180 1 1 134217728 8388608 0 +( 960 -434 488 ) ( 944 -424 488 ) ( 960 -416 496 ) metals/mt_pv_m26y 32 29 -180 1 1 134217728 8388608 0 +( 960 -416 496 ) ( 976 -424 488 ) ( 960 -434 488 ) metals/mt_pv_m26y 32 29 -180 1 1 134217728 8388608 0 +( 960 -416 496 ) ( 976 -408 488 ) ( 976 -424 488 ) metals/mt_pv_m26y 32 29 -180 1 1 134217728 8388608 0 +( 960 -398 488 ) ( 976 -408 488 ) ( 960 -416 496 ) metals/mt_pv_m26y 32 29 -180 1 1 134217728 8388608 0 +( 976 -424 488 ) ( 976 -408 488 ) ( 960 -398 488 ) common/li_mf_v12c -16 -16 0 1 1 134217728 8388609 42000 +} +// brush 1 +{ +( 961 -415 511 ) ( 961 -419 511 ) ( 957 -419 511 ) metals/mt_pv_m26y -28 59 -180 0.500000 0.500000 134217728 8390656 0 +( 961 -415 477 ) ( 961 -415 479 ) ( 957 -415 479 ) metals/mt_pv_m26y -32 67 -180 0.500000 -0.500000 134217728 8390656 0 +( 961 -415 500 ) ( 960 -417 500 ) ( 960 -417 515 ) metals/mt_pv_m26y -63 63 -180 0.500000 -0.500000 134217728 8390656 0 +( 983 -393 496 ) ( 939 -445 496 ) ( 983 -445 496 ) metals/mt_pv_m26y -28 59 -180 0.500000 0.500000 134217728 8390656 0 +( 959 -415 513 ) ( 960 -417 513 ) ( 960 -417 498 ) metals/mt_pv_m26y -30 77 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 899 +{ +"classname" "func_group" +// brush 0 +{ +( 1312 -384 492 ) ( 1296 -376 484 ) ( 1312 -366 484 ) metals/mt_pv_m26y 0 -3 -180 1 1 134217728 8388608 0 +( 1312 -384 492 ) ( 1296 -392 484 ) ( 1296 -376 484 ) metals/mt_pv_m26y 0 -3 -180 1 1 134217728 8388608 0 +( 1312 -402 484 ) ( 1296 -392 484 ) ( 1312 -384 492 ) metals/mt_pv_m26y 0 -3 -180 1 1 134217728 8388608 0 +( 1312 -384 492 ) ( 1328 -392 484 ) ( 1312 -402 484 ) metals/mt_pv_m26y 0 -3 -180 1 1 134217728 8388608 0 +( 1312 -384 492 ) ( 1328 -376 484 ) ( 1328 -392 484 ) metals/mt_pv_m26y 0 -3 -180 1 1 134217728 8388608 0 +( 1312 -366 484 ) ( 1328 -376 484 ) ( 1312 -384 492 ) metals/mt_pv_m26y 0 -3 -180 1 1 134217728 8388608 0 +( 1328 -392 484 ) ( 1328 -376 484 ) ( 1312 -366 484 ) common/li_mf_v12c -16 16 0 1 1 134217728 8388609 45000 +} +// brush 1 +{ +( 1313 -383 511 ) ( 1313 -387 511 ) ( 1309 -387 511 ) metals/mt_pv_m26y 35 -5 -180 0.500000 0.500000 134217728 8390656 0 +( 1313 -383 473 ) ( 1313 -383 475 ) ( 1309 -383 475 ) metals/mt_pv_m26y 32 59 -180 0.500000 -0.500000 134217728 8390656 0 +( 1313 -383 496 ) ( 1312 -385 496 ) ( 1312 -385 511 ) metals/mt_pv_m26y 1 55 -180 0.500000 -0.500000 134217728 8390656 0 +( 1335 -361 492 ) ( 1291 -413 492 ) ( 1335 -413 492 ) metals/mt_pv_m26y 35 -5 -180 0.500000 0.500000 134217728 8390656 0 +( 1311 -383 509 ) ( 1312 -385 509 ) ( 1312 -385 494 ) metals/mt_pv_m26y 34 69 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 900 +{ +"classname" "func_group" +// brush 0 +{ +( 880 160 444 ) ( 864 168 436 ) ( 880 178 436 ) metals/mt_pv_m26y -48 -33 -180 1 1 134217728 8388608 0 +( 880 160 444 ) ( 864 152 436 ) ( 864 168 436 ) metals/mt_pv_m26y -48 -33 -180 1 1 134217728 8388608 0 +( 880 142 436 ) ( 864 152 436 ) ( 880 160 444 ) metals/mt_pv_m26y -48 -33 -180 1 1 134217728 8388608 0 +( 880 160 444 ) ( 896 152 436 ) ( 880 142 436 ) metals/mt_pv_m26y -48 -33 -180 1 1 134217728 8388608 0 +( 880 160 444 ) ( 896 168 436 ) ( 896 152 436 ) metals/mt_pv_m26y -48 -33 -180 1 1 134217728 8388608 0 +( 880 178 436 ) ( 896 168 436 ) ( 880 160 444 ) metals/mt_pv_m26y -48 -33 -180 1 1 134217728 8388608 0 +( 896 152 436 ) ( 896 168 436 ) ( 880 178 436 ) common/li_mf_v12c 0 16 0 1 1 134217728 8388609 28000 +} +// brush 1 +{ +( 881 161 511 ) ( 881 157 511 ) ( 877 157 511 ) metals/mt_pv_m26y -61 -67 -180 0.500000 0.500000 134217728 8390656 0 +( 881 161 425 ) ( 881 161 427 ) ( 877 161 427 ) metals/mt_pv_m26y -63 -37 -180 0.500000 -0.500000 134217728 8390656 0 +( 881 161 448 ) ( 880 159 448 ) ( 880 159 463 ) metals/mt_pv_m26y 65 -39 -180 0.500000 -0.500000 134217728 8390656 0 +( 903 183 444 ) ( 859 131 444 ) ( 903 131 444 ) metals/mt_pv_m26y -61 -67 -180 0.500000 0.500000 134217728 8390656 0 +( 879 161 461 ) ( 880 159 461 ) ( 880 159 446 ) metals/mt_pv_m26y 98 -25 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 901 +{ +"classname" "func_group" +// brush 0 +{ +( 864 -192 196 ) ( 848 -184 188 ) ( 864 -174 188 ) metals/mt_pv_m26y -62 62 -180 1 1 134217728 8388608 0 +( 864 -192 196 ) ( 848 -200 188 ) ( 848 -184 188 ) metals/mt_pv_m26y -62 62 -180 1 1 134217728 8388608 0 +( 864 -210 188 ) ( 848 -200 188 ) ( 864 -192 196 ) metals/mt_pv_m26y -62 62 -180 1 1 134217728 8388608 0 +( 864 -192 196 ) ( 880 -200 188 ) ( 864 -210 188 ) metals/mt_pv_m26y -62 62 -180 1 1 134217728 8388608 0 +( 864 -192 196 ) ( 880 -184 188 ) ( 880 -200 188 ) metals/mt_pv_m26y -62 62 -180 1 1 134217728 8388608 0 +( 864 -174 188 ) ( 880 -184 188 ) ( 864 -192 196 ) metals/mt_pv_m26y -62 62 -180 1 1 134217728 8388608 0 +( 880 -200 188 ) ( 880 -184 188 ) ( 864 -174 188 ) common/li_mf_v12c 16 16 0 1 1 134217728 8388609 12000 +} +// brush 1 +{ +( 865 -191 207 ) ( 865 -195 207 ) ( 861 -195 207 ) metals/mt_pv_m26y -92 -4 -180 0.500000 0.500000 134217728 8390656 0 +( 865 -191 177 ) ( 865 -191 179 ) ( 861 -191 179 ) metals/mt_pv_m26y -96 -21 -180 0.500000 -0.500000 134217728 8390656 0 +( 865 -191 196 ) ( 864 -193 196 ) ( 864 -193 211 ) metals/mt_pv_m26y 1 -23 -180 0.500000 -0.500000 134217728 8390656 0 +( 887 -169 196 ) ( 843 -221 196 ) ( 887 -221 196 ) metals/mt_pv_m26y -92 -4 -180 0.500000 0.500000 134217728 8390656 0 +( 863 -191 213 ) ( 864 -193 213 ) ( 864 -193 198 ) metals/mt_pv_m26y 34 -9 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 902 +{ +"classname" "func_group" +// brush 0 +{ +( 864 -448 196 ) ( 848 -440 188 ) ( 864 -430 188 ) metals/mt_pv_m26y -61 62 -180 1 1 134217728 8388608 0 +( 864 -448 196 ) ( 848 -456 188 ) ( 848 -440 188 ) metals/mt_pv_m26y -61 62 -180 1 1 134217728 8388608 0 +( 864 -466 188 ) ( 848 -456 188 ) ( 864 -448 196 ) metals/mt_pv_m26y -61 62 -180 1 1 134217728 8388608 0 +( 864 -448 196 ) ( 880 -456 188 ) ( 864 -466 188 ) metals/mt_pv_m26y -61 62 -180 1 1 134217728 8388608 0 +( 864 -448 196 ) ( 880 -440 188 ) ( 880 -456 188 ) metals/mt_pv_m26y -61 62 -180 1 1 134217728 8388608 0 +( 864 -430 188 ) ( 880 -440 188 ) ( 864 -448 196 ) metals/mt_pv_m26y -61 62 -180 1 1 134217728 8388608 0 +( 880 -456 188 ) ( 880 -440 188 ) ( 864 -430 188 ) common/li_mf_v12c 16 -16 0 1 1 134217728 8388609 25000 +} +// brush 1 +{ +( 865 -447 207 ) ( 865 -451 207 ) ( 861 -451 207 ) metals/mt_pv_m26y -91 123 -180 0.500000 0.500000 134217728 8390656 0 +( 865 -447 177 ) ( 865 -447 179 ) ( 861 -447 179 ) metals/mt_pv_m26y -96 -21 -180 0.500000 -0.500000 134217728 8390656 0 +( 865 -447 196 ) ( 864 -449 196 ) ( 864 -449 211 ) metals/mt_pv_m26y -127 -23 -180 0.500000 -0.500000 134217728 8390656 0 +( 887 -425 196 ) ( 843 -477 196 ) ( 887 -477 196 ) metals/mt_pv_m26y -91 123 -180 0.500000 0.500000 134217728 8390656 0 +( 863 -447 213 ) ( 864 -449 213 ) ( 864 -449 198 ) metals/mt_pv_m26y -94 -9 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 903 +{ +"classname" "func_group" +// brush 0 +{ +( 1024 -608 196 ) ( 1008 -600 188 ) ( 1024 -590 188 ) metals/mt_pv_m26y 99 93 -180 1 1 134217728 8388608 0 +( 1024 -608 196 ) ( 1008 -616 188 ) ( 1008 -600 188 ) metals/mt_pv_m26y 99 93 -180 1 1 134217728 8388608 0 +( 1024 -626 188 ) ( 1008 -616 188 ) ( 1024 -608 196 ) metals/mt_pv_m26y 99 93 -180 1 1 134217728 8388608 0 +( 1024 -608 196 ) ( 1040 -616 188 ) ( 1024 -626 188 ) metals/mt_pv_m26y 99 93 -180 1 1 134217728 8388608 0 +( 1024 -608 196 ) ( 1040 -600 188 ) ( 1040 -616 188 ) metals/mt_pv_m26y 99 93 -180 1 1 134217728 8388608 0 +( 1024 -590 188 ) ( 1040 -600 188 ) ( 1024 -608 196 ) metals/mt_pv_m26y 99 93 -180 1 1 134217728 8388608 0 +( 1040 -616 188 ) ( 1040 -600 188 ) ( 1024 -590 188 ) common/li_mf_v12c -16 -16 0 1 1 134217728 8388609 23000 +} +// brush 1 +{ +( 1025 -607 207 ) ( 1025 -611 207 ) ( 1021 -611 207 ) metals/mt_pv_m26y 101 58 -180 0.500000 0.500000 134217728 8390656 0 +( 1025 -607 177 ) ( 1025 -607 179 ) ( 1021 -607 179 ) metals/mt_pv_m26y 96 -20 -180 0.500000 -0.500000 134217728 8390656 0 +( 1025 -607 196 ) ( 1024 -609 196 ) ( 1024 -609 211 ) metals/mt_pv_m26y -63 -23 -180 0.500000 -0.500000 134217728 8390656 0 +( 1047 -585 196 ) ( 1003 -637 196 ) ( 1047 -637 196 ) metals/mt_pv_m26y 101 58 -180 0.500000 0.500000 134217728 8390656 0 +( 1023 -607 213 ) ( 1024 -609 213 ) ( 1024 -609 198 ) metals/mt_pv_m26y -30 -9 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 904 +{ +"classname" "func_group" +// brush 0 +{ +( 1280 -608 196 ) ( 1264 -600 188 ) ( 1280 -590 188 ) metals/mt_pv_m26y 99 92 -180 1 1 134217728 8388608 0 +( 1280 -608 196 ) ( 1264 -616 188 ) ( 1264 -600 188 ) metals/mt_pv_m26y 99 92 -180 1 1 134217728 8388608 0 +( 1280 -626 188 ) ( 1264 -616 188 ) ( 1280 -608 196 ) metals/mt_pv_m26y 99 92 -180 1 1 134217728 8388608 0 +( 1280 -608 196 ) ( 1296 -616 188 ) ( 1280 -626 188 ) metals/mt_pv_m26y 99 92 -180 1 1 134217728 8388608 0 +( 1280 -608 196 ) ( 1296 -600 188 ) ( 1296 -616 188 ) metals/mt_pv_m26y 99 92 -180 1 1 134217728 8388608 0 +( 1280 -590 188 ) ( 1296 -600 188 ) ( 1280 -608 196 ) metals/mt_pv_m26y 99 92 -180 1 1 134217728 8388608 0 +( 1296 -616 188 ) ( 1296 -600 188 ) ( 1280 -590 188 ) common/li_mf_v12c -16 16 0 1 1 134217728 8388609 20000 +} +// brush 1 +{ +( 1281 -607 207 ) ( 1281 -611 207 ) ( 1277 -611 207 ) metals/mt_pv_m26y 101 57 -180 0.500000 0.500000 134217728 8390656 0 +( 1281 -607 177 ) ( 1281 -607 179 ) ( 1277 -607 179 ) metals/mt_pv_m26y 96 -19 -180 0.500000 -0.500000 134217728 8390656 0 +( 1281 -607 196 ) ( 1280 -609 196 ) ( 1280 -609 211 ) metals/mt_pv_m26y -63 -23 -180 0.500000 -0.500000 134217728 8390656 0 +( 1303 -585 196 ) ( 1259 -637 196 ) ( 1303 -637 196 ) metals/mt_pv_m26y 101 57 -180 0.500000 0.500000 134217728 8390656 0 +( 1279 -607 213 ) ( 1280 -609 213 ) ( 1280 -609 198 ) metals/mt_pv_m26y -30 -9 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 905 +{ +"classname" "func_group" +// brush 0 +{ +( 1536 -608 196 ) ( 1520 -600 188 ) ( 1536 -590 188 ) metals/mt_pv_m26y 99 91 -180 1 1 134217728 8388608 0 +( 1536 -608 196 ) ( 1520 -616 188 ) ( 1520 -600 188 ) metals/mt_pv_m26y 99 91 -180 1 1 134217728 8388608 0 +( 1536 -626 188 ) ( 1520 -616 188 ) ( 1536 -608 196 ) metals/mt_pv_m26y 99 91 -180 1 1 134217728 8388608 0 +( 1536 -608 196 ) ( 1552 -616 188 ) ( 1536 -626 188 ) metals/mt_pv_m26y 99 91 -180 1 1 134217728 8388608 0 +( 1536 -608 196 ) ( 1552 -600 188 ) ( 1552 -616 188 ) metals/mt_pv_m26y 99 91 -180 1 1 134217728 8388608 0 +( 1536 -590 188 ) ( 1552 -600 188 ) ( 1536 -608 196 ) metals/mt_pv_m26y 99 91 -180 1 1 134217728 8388608 0 +( 1552 -616 188 ) ( 1552 -600 188 ) ( 1536 -590 188 ) common/li_mf_v12c 16 -16 0 1 1 134217728 8388609 25000 +} +// brush 1 +{ +( 1537 -607 207 ) ( 1537 -611 207 ) ( 1533 -611 207 ) metals/mt_pv_m26y -26 56 -180 0.500000 0.500000 134217728 8390656 0 +( 1537 -607 177 ) ( 1537 -607 179 ) ( 1533 -607 179 ) metals/mt_pv_m26y -32 -18 -180 0.500000 -0.500000 134217728 8390656 0 +( 1537 -607 196 ) ( 1536 -609 196 ) ( 1536 -609 211 ) metals/mt_pv_m26y -63 -23 -180 0.500000 -0.500000 134217728 8390656 0 +( 1559 -585 196 ) ( 1515 -637 196 ) ( 1559 -637 196 ) metals/mt_pv_m26y -26 56 -180 0.500000 0.500000 134217728 8390656 0 +( 1535 -607 213 ) ( 1536 -609 213 ) ( 1536 -609 198 ) metals/mt_pv_m26y -30 -9 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 906 +{ +"classname" "func_group" +// brush 0 +{ +( 1792 -768 316 ) ( 1776 -760 308 ) ( 1792 -750 308 ) metals/mt_pv_m26y -28 122 -180 1 1 134217728 8388608 0 +( 1792 -768 316 ) ( 1776 -776 308 ) ( 1776 -760 308 ) metals/mt_pv_m26y -28 122 -180 1 1 134217728 8388608 0 +( 1792 -786 308 ) ( 1776 -776 308 ) ( 1792 -768 316 ) metals/mt_pv_m26y -28 122 -180 1 1 134217728 8388608 0 +( 1792 -768 316 ) ( 1808 -776 308 ) ( 1792 -786 308 ) metals/mt_pv_m26y -28 122 -180 1 1 134217728 8388608 0 +( 1792 -768 316 ) ( 1808 -760 308 ) ( 1808 -776 308 ) metals/mt_pv_m26y -28 122 -180 1 1 134217728 8388608 0 +( 1792 -750 308 ) ( 1808 -760 308 ) ( 1792 -768 316 ) metals/mt_pv_m26y -28 122 -180 1 1 134217728 8388608 0 +( 1808 -776 308 ) ( 1808 -760 308 ) ( 1792 -750 308 ) common/li_mf_v12c 16 -16 0 1 1 134217728 8388609 20000 +} +// brush 1 +{ +( 1793 -767 387 ) ( 1793 -771 387 ) ( 1789 -771 387 ) metals/mt_pv_m26y -25 119 -180 0.500000 0.500000 134217728 8390656 0 +( 1793 -767 297 ) ( 1793 -767 299 ) ( 1789 -767 299 ) metals/mt_pv_m26y -32 94 -180 0.500000 -0.500000 134217728 8390656 0 +( 1793 -767 316 ) ( 1792 -769 316 ) ( 1792 -769 331 ) metals/mt_pv_m26y -127 88 -180 0.500000 -0.500000 134217728 8390656 0 +( 1815 -745 316 ) ( 1771 -797 316 ) ( 1815 -797 316 ) metals/mt_pv_m26y -25 119 -180 0.500000 0.500000 134217728 8390656 0 +( 1791 -767 333 ) ( 1792 -769 333 ) ( 1792 -769 318 ) metals/mt_pv_m26y -94 102 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 907 +{ +"classname" "func_group" +// brush 0 +{ +( 1792 -576 316 ) ( 1776 -568 308 ) ( 1792 -558 308 ) metals/mt_pv_m26y -28 -70 -180 1 1 134217728 8388608 0 +( 1792 -576 316 ) ( 1776 -584 308 ) ( 1776 -568 308 ) metals/mt_pv_m26y -28 -70 -180 1 1 134217728 8388608 0 +( 1792 -594 308 ) ( 1776 -584 308 ) ( 1792 -576 316 ) metals/mt_pv_m26y -28 -70 -180 1 1 134217728 8388608 0 +( 1792 -576 316 ) ( 1808 -584 308 ) ( 1792 -594 308 ) metals/mt_pv_m26y -28 -70 -180 1 1 134217728 8388608 0 +( 1792 -576 316 ) ( 1808 -568 308 ) ( 1808 -584 308 ) metals/mt_pv_m26y -28 -70 -180 1 1 134217728 8388608 0 +( 1792 -558 308 ) ( 1808 -568 308 ) ( 1792 -576 316 ) metals/mt_pv_m26y -28 -70 -180 1 1 134217728 8388608 0 +( 1808 -584 308 ) ( 1808 -568 308 ) ( 1792 -558 308 ) common/li_mf_v12c 16 16 0 1 1 134217728 8388609 23000 +} +// brush 1 +{ +( 1793 -575 387 ) ( 1793 -579 387 ) ( 1789 -579 387 ) metals/mt_pv_m26y -25 -8 -180 0.500000 0.500000 134217728 8390656 0 +( 1793 -575 297 ) ( 1793 -575 299 ) ( 1789 -575 299 ) metals/mt_pv_m26y -32 94 -180 0.500000 -0.500000 134217728 8390656 0 +( 1793 -575 316 ) ( 1792 -577 316 ) ( 1792 -577 331 ) metals/mt_pv_m26y 1 88 -180 0.500000 -0.500000 134217728 8390656 0 +( 1815 -553 316 ) ( 1771 -605 316 ) ( 1815 -605 316 ) metals/mt_pv_m26y -25 -8 -180 0.500000 0.500000 134217728 8390656 0 +( 1791 -575 333 ) ( 1792 -577 333 ) ( 1792 -577 318 ) metals/mt_pv_m26y 34 102 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 908 +{ +"classname" "func_group" +// brush 0 +{ +( 1792 -384 316 ) ( 1776 -376 308 ) ( 1792 -366 308 ) metals/mt_pv_m26y -28 -6 -180 1 1 134217728 8388608 0 +( 1792 -384 316 ) ( 1776 -392 308 ) ( 1776 -376 308 ) metals/mt_pv_m26y -28 -6 -180 1 1 134217728 8388608 0 +( 1792 -402 308 ) ( 1776 -392 308 ) ( 1792 -384 316 ) metals/mt_pv_m26y -28 -6 -180 1 1 134217728 8388608 0 +( 1792 -384 316 ) ( 1808 -392 308 ) ( 1792 -402 308 ) metals/mt_pv_m26y -28 -6 -180 1 1 134217728 8388608 0 +( 1792 -384 316 ) ( 1808 -376 308 ) ( 1808 -392 308 ) metals/mt_pv_m26y -28 -6 -180 1 1 134217728 8388608 0 +( 1792 -366 308 ) ( 1808 -376 308 ) ( 1792 -384 316 ) metals/mt_pv_m26y -28 -6 -180 1 1 134217728 8388608 0 +( 1808 -392 308 ) ( 1808 -376 308 ) ( 1792 -366 308 ) common/li_mf_v12c 16 16 0 1 1 134217728 8388609 25000 +} +// brush 1 +{ +( 1793 -383 387 ) ( 1793 -387 387 ) ( 1789 -387 387 ) metals/mt_pv_m26y -25 -8 -180 0.500000 0.500000 134217728 8390656 0 +( 1793 -383 297 ) ( 1793 -383 299 ) ( 1789 -383 299 ) metals/mt_pv_m26y -32 94 -180 0.500000 -0.500000 134217728 8390656 0 +( 1793 -383 316 ) ( 1792 -385 316 ) ( 1792 -385 331 ) metals/mt_pv_m26y 1 88 -180 0.500000 -0.500000 134217728 8390656 0 +( 1815 -361 316 ) ( 1771 -413 316 ) ( 1815 -413 316 ) metals/mt_pv_m26y -25 -8 -180 0.500000 0.500000 134217728 8390656 0 +( 1791 -383 333 ) ( 1792 -385 333 ) ( 1792 -385 318 ) metals/mt_pv_m26y 34 102 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 909 +{ +"classname" "func_group" +// brush 0 +{ +( 2048 -384 316 ) ( 2032 -376 308 ) ( 2048 -366 308 ) metals/mt_pv_m26y 100 -6 -180 1 1 134217728 8388608 0 +( 2048 -384 316 ) ( 2032 -392 308 ) ( 2032 -376 308 ) metals/mt_pv_m26y 100 -6 -180 1 1 134217728 8388608 0 +( 2048 -402 308 ) ( 2032 -392 308 ) ( 2048 -384 316 ) metals/mt_pv_m26y 100 -6 -180 1 1 134217728 8388608 0 +( 2048 -384 316 ) ( 2064 -392 308 ) ( 2048 -402 308 ) metals/mt_pv_m26y 100 -6 -180 1 1 134217728 8388608 0 +( 2048 -384 316 ) ( 2064 -376 308 ) ( 2064 -392 308 ) metals/mt_pv_m26y 100 -6 -180 1 1 134217728 8388608 0 +( 2048 -366 308 ) ( 2064 -376 308 ) ( 2048 -384 316 ) metals/mt_pv_m26y 100 -6 -180 1 1 134217728 8388608 0 +( 2064 -392 308 ) ( 2064 -376 308 ) ( 2048 -366 308 ) common/li_mf_v12c -16 16 0 1 1 134217728 8388609 23000 +} +// brush 1 +{ +( 2049 -383 387 ) ( 2049 -387 387 ) ( 2045 -387 387 ) metals/mt_pv_m26y 102 -8 -180 0.500000 0.500000 134217728 8390656 0 +( 2049 -383 297 ) ( 2049 -383 299 ) ( 2045 -383 299 ) metals/mt_pv_m26y 96 94 -180 0.500000 -0.500000 134217728 8390656 0 +( 2049 -383 316 ) ( 2048 -385 316 ) ( 2048 -385 331 ) metals/mt_pv_m26y 1 88 -180 0.500000 -0.500000 134217728 8390656 0 +( 2071 -361 316 ) ( 2027 -413 316 ) ( 2071 -413 316 ) metals/mt_pv_m26y 102 -8 -180 0.500000 0.500000 134217728 8390656 0 +( 2047 -383 333 ) ( 2048 -385 333 ) ( 2048 -385 318 ) metals/mt_pv_m26y 34 102 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 910 +{ +"classname" "func_group" +// brush 0 +{ +( 2048 -576 316 ) ( 2032 -568 308 ) ( 2048 -558 308 ) metals/mt_pv_m26y 100 57 -180 1 1 134217728 8388608 0 +( 2048 -576 316 ) ( 2032 -584 308 ) ( 2032 -568 308 ) metals/mt_pv_m26y 100 57 -180 1 1 134217728 8388608 0 +( 2048 -594 308 ) ( 2032 -584 308 ) ( 2048 -576 316 ) metals/mt_pv_m26y 100 57 -180 1 1 134217728 8388608 0 +( 2048 -576 316 ) ( 2064 -584 308 ) ( 2048 -594 308 ) metals/mt_pv_m26y 100 57 -180 1 1 134217728 8388608 0 +( 2048 -576 316 ) ( 2064 -568 308 ) ( 2064 -584 308 ) metals/mt_pv_m26y 100 57 -180 1 1 134217728 8388608 0 +( 2048 -558 308 ) ( 2064 -568 308 ) ( 2048 -576 316 ) metals/mt_pv_m26y 100 57 -180 1 1 134217728 8388608 0 +( 2064 -584 308 ) ( 2064 -568 308 ) ( 2048 -558 308 ) common/li_mf_v12c 16 -16 0 1 1 134217728 8388609 25000 +} +// brush 1 +{ +( 2049 -575 387 ) ( 2049 -579 387 ) ( 2045 -579 387 ) metals/mt_pv_m26y -24 119 -180 0.500000 0.500000 134217728 8390656 0 +( 2049 -575 297 ) ( 2049 -575 299 ) ( 2045 -575 299 ) metals/mt_pv_m26y -32 94 -180 0.500000 -0.500000 134217728 8390656 0 +( 2049 -575 316 ) ( 2048 -577 316 ) ( 2048 -577 331 ) metals/mt_pv_m26y -127 88 -180 0.500000 -0.500000 134217728 8390656 0 +( 2071 -553 316 ) ( 2027 -605 316 ) ( 2071 -605 316 ) metals/mt_pv_m26y -24 119 -180 0.500000 0.500000 134217728 8390656 0 +( 2047 -575 333 ) ( 2048 -577 333 ) ( 2048 -577 318 ) metals/mt_pv_m26y -94 102 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 911 +{ +"classname" "func_group" +// brush 0 +{ +( 2048 -768 316 ) ( 2032 -760 308 ) ( 2048 -750 308 ) metals/mt_pv_m26y 100 121 -180 1 1 134217728 8388608 0 +( 2048 -768 316 ) ( 2032 -776 308 ) ( 2032 -760 308 ) metals/mt_pv_m26y 100 121 -180 1 1 134217728 8388608 0 +( 2048 -786 308 ) ( 2032 -776 308 ) ( 2048 -768 316 ) metals/mt_pv_m26y 100 121 -180 1 1 134217728 8388608 0 +( 2048 -768 316 ) ( 2064 -776 308 ) ( 2048 -786 308 ) metals/mt_pv_m26y 100 121 -180 1 1 134217728 8388608 0 +( 2048 -768 316 ) ( 2064 -760 308 ) ( 2064 -776 308 ) metals/mt_pv_m26y 100 121 -180 1 1 134217728 8388608 0 +( 2048 -750 308 ) ( 2064 -760 308 ) ( 2048 -768 316 ) metals/mt_pv_m26y 100 121 -180 1 1 134217728 8388608 0 +( 2064 -776 308 ) ( 2064 -760 308 ) ( 2048 -750 308 ) common/li_mf_v12c -16 -16 0 1 1 134217728 8388609 23000 +} +// brush 1 +{ +( 2049 -767 387 ) ( 2049 -771 387 ) ( 2045 -771 387 ) metals/mt_pv_m26y -25 119 -180 0.500000 0.500000 134217728 8390656 0 +( 2049 -767 297 ) ( 2049 -767 299 ) ( 2045 -767 299 ) metals/mt_pv_m26y -32 94 -180 0.500000 -0.500000 134217728 8390656 0 +( 2049 -767 316 ) ( 2048 -769 316 ) ( 2048 -769 331 ) metals/mt_pv_m26y -127 87 -180 0.500000 -0.500000 134217728 8390656 0 +( 2071 -745 316 ) ( 2027 -797 316 ) ( 2071 -797 316 ) metals/mt_pv_m26y -25 119 -180 0.500000 0.500000 134217728 8390656 0 +( 2047 -767 333 ) ( 2048 -769 333 ) ( 2048 -769 318 ) metals/mt_pv_m26y -94 101 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 912 +{ +"classname" "func_group" +// brush 0 +{ +( 1824 -64 196 ) ( 1808 -56 188 ) ( 1824 -46 188 ) metals/mt_pv_m26y 2 -69 -180 1 1 134217728 8388608 0 +( 1824 -64 196 ) ( 1808 -72 188 ) ( 1808 -56 188 ) metals/mt_pv_m26y 2 -69 -180 1 1 134217728 8388608 0 +( 1824 -82 188 ) ( 1808 -72 188 ) ( 1824 -64 196 ) metals/mt_pv_m26y 2 -69 -180 1 1 134217728 8388608 0 +( 1824 -64 196 ) ( 1840 -72 188 ) ( 1824 -82 188 ) metals/mt_pv_m26y 2 -69 -180 1 1 134217728 8388608 0 +( 1824 -64 196 ) ( 1840 -56 188 ) ( 1840 -72 188 ) metals/mt_pv_m26y 2 -69 -180 1 1 134217728 8388608 0 +( 1824 -46 188 ) ( 1840 -56 188 ) ( 1824 -64 196 ) metals/mt_pv_m26y 2 -69 -180 1 1 134217728 8388608 0 +( 1840 -72 188 ) ( 1840 -56 188 ) ( 1824 -46 188 ) common/li_mf_v12c -16 16 0 1 1 134217728 8388609 25000 +} +// brush 1 +{ +( 1825 -63 207 ) ( 1825 -67 207 ) ( 1821 -67 207 ) metals/mt_pv_m26y -90 -8 -180 0.500000 0.500000 134217728 8390656 0 +( 1825 -63 177 ) ( 1825 -63 179 ) ( 1821 -63 179 ) metals/mt_pv_m26y 32 -17 -180 0.500000 -0.500000 134217728 8390656 0 +( 1825 -63 196 ) ( 1824 -65 196 ) ( 1824 -65 211 ) metals/mt_pv_m26y 1 -22 -180 0.500000 -0.500000 134217728 8390656 0 +( 1847 -41 196 ) ( 1803 -93 196 ) ( 1847 -93 196 ) metals/mt_pv_m26y -90 -8 -180 0.500000 0.500000 134217728 8390656 0 +( 1823 -63 213 ) ( 1824 -65 213 ) ( 1824 -65 198 ) metals/mt_pv_m26y 34 -8 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 913 +{ +"classname" "func_group" +// brush 0 +{ +( 1824 192 196 ) ( 1808 200 188 ) ( 1824 210 188 ) metals/mt_pv_m26y 1 -69 -180 1 1 134217728 8388608 0 +( 1824 192 196 ) ( 1808 184 188 ) ( 1808 200 188 ) metals/mt_pv_m26y 1 -69 -180 1 1 134217728 8388608 0 +( 1824 174 188 ) ( 1808 184 188 ) ( 1824 192 196 ) metals/mt_pv_m26y 1 -69 -180 1 1 134217728 8388608 0 +( 1824 192 196 ) ( 1840 184 188 ) ( 1824 174 188 ) metals/mt_pv_m26y 1 -69 -180 1 1 134217728 8388608 0 +( 1824 192 196 ) ( 1840 200 188 ) ( 1840 184 188 ) metals/mt_pv_m26y 1 -69 -180 1 1 134217728 8388608 0 +( 1824 210 188 ) ( 1840 200 188 ) ( 1824 192 196 ) metals/mt_pv_m26y 1 -69 -180 1 1 134217728 8388608 0 +( 1840 184 188 ) ( 1840 200 188 ) ( 1824 210 188 ) common/li_mf_v12c -16 16 0 1 1 134217728 8388609 20000 +} +// brush 1 +{ +( 1825 193 207 ) ( 1825 189 207 ) ( 1821 189 207 ) metals/mt_pv_m26y -90 -8 -180 0.500000 0.500000 134217728 8390656 0 +( 1825 193 177 ) ( 1825 193 179 ) ( 1821 193 179 ) metals/mt_pv_m26y 32 -17 -180 0.500000 -0.500000 134217728 8390656 0 +( 1825 193 196 ) ( 1824 191 196 ) ( 1824 191 211 ) metals/mt_pv_m26y 1 -21 -180 0.500000 -0.500000 134217728 8390656 0 +( 1847 215 196 ) ( 1803 163 196 ) ( 1847 163 196 ) metals/mt_pv_m26y -90 -8 -180 0.500000 0.500000 134217728 8390656 0 +( 1823 193 213 ) ( 1824 191 213 ) ( 1824 191 198 ) metals/mt_pv_m26y 34 -7 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 914 +{ +"classname" "func_group" +// brush 0 +{ +( 1664 352 196 ) ( 1648 360 188 ) ( 1664 370 188 ) metals/mt_pv_m26y -30 -101 -180 1 1 134217728 8388608 0 +( 1664 352 196 ) ( 1648 344 188 ) ( 1648 360 188 ) metals/mt_pv_m26y -30 -101 -180 1 1 134217728 8388608 0 +( 1664 334 188 ) ( 1648 344 188 ) ( 1664 352 196 ) metals/mt_pv_m26y -30 -101 -180 1 1 134217728 8388608 0 +( 1664 352 196 ) ( 1680 344 188 ) ( 1664 334 188 ) metals/mt_pv_m26y -30 -101 -180 1 1 134217728 8388608 0 +( 1664 352 196 ) ( 1680 360 188 ) ( 1680 344 188 ) metals/mt_pv_m26y -30 -101 -180 1 1 134217728 8388608 0 +( 1664 370 188 ) ( 1680 360 188 ) ( 1664 352 196 ) metals/mt_pv_m26y -30 -101 -180 1 1 134217728 8388608 0 +( 1680 344 188 ) ( 1680 360 188 ) ( 1664 370 188 ) common/li_mf_v12c 16 16 0 1 1 134217728 8388609 25000 +} +// brush 1 +{ +( 1665 353 207 ) ( 1665 349 207 ) ( 1661 349 207 ) metals/mt_pv_m26y -26 -72 -180 0.500000 0.500000 134217728 8390656 0 +( 1665 353 177 ) ( 1665 353 179 ) ( 1661 353 179 ) metals/mt_pv_m26y -32 -17 -180 0.500000 -0.500000 134217728 8390656 0 +( 1665 353 196 ) ( 1664 351 196 ) ( 1664 351 211 ) metals/mt_pv_m26y 65 -21 -180 0.500000 -0.500000 134217728 8390656 0 +( 1687 375 196 ) ( 1643 323 196 ) ( 1687 323 196 ) metals/mt_pv_m26y -26 -72 -180 0.500000 0.500000 134217728 8390656 0 +( 1663 353 213 ) ( 1664 351 213 ) ( 1664 351 198 ) metals/mt_pv_m26y 98 -7 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 915 +{ +"classname" "func_group" +// brush 0 +{ +( 1376 224 196 ) ( 1360 232 188 ) ( 1376 242 188 ) metals/mt_pv_m26y -62 -100 -180 1 1 134217728 8388608 0 +( 1376 224 196 ) ( 1360 216 188 ) ( 1360 232 188 ) metals/mt_pv_m26y -62 -100 -180 1 1 134217728 8388608 0 +( 1376 206 188 ) ( 1360 216 188 ) ( 1376 224 196 ) metals/mt_pv_m26y -62 -100 -180 1 1 134217728 8388608 0 +( 1376 224 196 ) ( 1392 216 188 ) ( 1376 206 188 ) metals/mt_pv_m26y -62 -100 -180 1 1 134217728 8388608 0 +( 1376 224 196 ) ( 1392 232 188 ) ( 1392 216 188 ) metals/mt_pv_m26y -62 -100 -180 1 1 134217728 8388608 0 +( 1376 242 188 ) ( 1392 232 188 ) ( 1376 224 196 ) metals/mt_pv_m26y -62 -100 -180 1 1 134217728 8388608 0 +( 1392 216 188 ) ( 1392 232 188 ) ( 1376 242 188 ) common/li_mf_v12c -16 16 0 1 1 134217728 8388609 25000 +} +// brush 1 +{ +( 1377 225 207 ) ( 1377 221 207 ) ( 1373 221 207 ) metals/mt_pv_m26y -90 -71 -180 0.500000 0.500000 134217728 8390656 0 +( 1377 225 177 ) ( 1377 225 179 ) ( 1373 225 179 ) metals/mt_pv_m26y 32 -17 -180 0.500000 -0.500000 134217728 8390656 0 +( 1377 225 196 ) ( 1376 223 196 ) ( 1376 223 211 ) metals/mt_pv_m26y 65 -21 -180 0.500000 -0.500000 134217728 8390656 0 +( 1399 247 196 ) ( 1355 195 196 ) ( 1399 195 196 ) metals/mt_pv_m26y -90 -71 -180 0.500000 0.500000 134217728 8390656 0 +( 1375 225 213 ) ( 1376 223 213 ) ( 1376 223 198 ) metals/mt_pv_m26y 98 -7 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 916 +{ +"classname" "func_group" +// brush 0 +{ +( 2144 192 36 ) ( 2128 200 28 ) ( 2144 210 28 ) metals/mt_pv_m26y 65 58 -180 1 1 134217728 8388608 0 +( 2144 192 36 ) ( 2128 184 28 ) ( 2128 200 28 ) metals/mt_pv_m26y 65 58 -180 1 1 134217728 8388608 0 +( 2144 174 28 ) ( 2128 184 28 ) ( 2144 192 36 ) metals/mt_pv_m26y 65 58 -180 1 1 134217728 8388608 0 +( 2144 192 36 ) ( 2160 184 28 ) ( 2144 174 28 ) metals/mt_pv_m26y 65 58 -180 1 1 134217728 8388608 0 +( 2144 192 36 ) ( 2160 200 28 ) ( 2160 184 28 ) metals/mt_pv_m26y 65 58 -180 1 1 134217728 8388608 0 +( 2144 210 28 ) ( 2160 200 28 ) ( 2144 192 36 ) metals/mt_pv_m26y 65 58 -180 1 1 134217728 8388608 0 +( 2160 184 28 ) ( 2160 200 28 ) ( 2144 210 28 ) common/li_mf_v12c 16 -16 0 1 1 134217728 8388609 25000 +} +// brush 1 +{ +( 2145 193 47 ) ( 2145 189 47 ) ( 2141 189 47 ) metals/mt_pv_m26y 37 119 -180 0.500000 0.500000 134217728 8390656 0 +( 2145 193 17 ) ( 2145 193 19 ) ( 2141 193 19 ) metals/mt_pv_m26y 32 47 -180 0.500000 -0.500000 134217728 8390656 0 +( 2145 193 36 ) ( 2144 191 36 ) ( 2144 191 51 ) metals/mt_pv_m26y -126 42 -180 0.500000 -0.500000 134217728 8390656 0 +( 2167 215 36 ) ( 2123 163 36 ) ( 2167 163 36 ) metals/mt_pv_m26y 37 119 -180 0.500000 0.500000 134217728 8390656 0 +( 2143 193 53 ) ( 2144 191 53 ) ( 2144 191 38 ) metals/mt_pv_m26y -93 56 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 917 +{ +"classname" "func_group" +// brush 0 +{ +( 2144 448 36 ) ( 2128 456 28 ) ( 2144 466 28 ) metals/mt_pv_m26y 65 -69 -180 1 1 134217728 8388608 0 +( 2144 448 36 ) ( 2128 440 28 ) ( 2128 456 28 ) metals/mt_pv_m26y 65 -69 -180 1 1 134217728 8388608 0 +( 2144 430 28 ) ( 2128 440 28 ) ( 2144 448 36 ) metals/mt_pv_m26y 65 -69 -180 1 1 134217728 8388608 0 +( 2144 448 36 ) ( 2160 440 28 ) ( 2144 430 28 ) metals/mt_pv_m26y 65 -69 -180 1 1 134217728 8388608 0 +( 2144 448 36 ) ( 2160 456 28 ) ( 2160 440 28 ) metals/mt_pv_m26y 65 -69 -180 1 1 134217728 8388608 0 +( 2144 466 28 ) ( 2160 456 28 ) ( 2144 448 36 ) metals/mt_pv_m26y 65 -69 -180 1 1 134217728 8388608 0 +( 2160 440 28 ) ( 2160 456 28 ) ( 2144 466 28 ) common/li_mf_v12c -16 16 0 1 1 134217728 8388609 25000 +} +// brush 1 +{ +( 2145 449 47 ) ( 2145 445 47 ) ( 2141 445 47 ) metals/mt_pv_m26y 36 -9 -180 0.500000 0.500000 134217728 8390656 0 +( 2145 449 17 ) ( 2145 449 19 ) ( 2141 449 19 ) metals/mt_pv_m26y 32 47 -180 0.500000 -0.500000 134217728 8390656 0 +( 2145 449 36 ) ( 2144 447 36 ) ( 2144 447 51 ) metals/mt_pv_m26y 2 42 -180 0.500000 -0.500000 134217728 8390656 0 +( 2167 471 36 ) ( 2123 419 36 ) ( 2167 419 36 ) metals/mt_pv_m26y 36 -9 -180 0.500000 0.500000 134217728 8390656 0 +( 2143 449 53 ) ( 2144 447 53 ) ( 2144 447 38 ) metals/mt_pv_m26y 35 56 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 918 +{ +"classname" "func_group" +// brush 0 +{ +( 1984 608 36 ) ( 1968 616 28 ) ( 1984 626 28 ) metals/mt_pv_m26y -95 -100 -180 1 1 134217728 8388608 0 +( 1984 608 36 ) ( 1968 600 28 ) ( 1968 616 28 ) metals/mt_pv_m26y -95 -100 -180 1 1 134217728 8388608 0 +( 1984 590 28 ) ( 1968 600 28 ) ( 1984 608 36 ) metals/mt_pv_m26y -95 -100 -180 1 1 134217728 8388608 0 +( 1984 608 36 ) ( 2000 600 28 ) ( 1984 590 28 ) metals/mt_pv_m26y -95 -100 -180 1 1 134217728 8388608 0 +( 1984 608 36 ) ( 2000 616 28 ) ( 2000 600 28 ) metals/mt_pv_m26y -95 -100 -180 1 1 134217728 8388608 0 +( 1984 626 28 ) ( 2000 616 28 ) ( 1984 608 36 ) metals/mt_pv_m26y -95 -100 -180 1 1 134217728 8388608 0 +( 2000 600 28 ) ( 2000 616 28 ) ( 1984 626 28 ) common/li_mf_v12c 16 16 0 1 1 134217728 8388609 25000 +} +// brush 1 +{ +( 1985 609 47 ) ( 1985 605 47 ) ( 1981 605 47 ) metals/mt_pv_m26y -28 -72 -180 0.500000 0.500000 134217728 8390656 0 +( 1985 609 17 ) ( 1985 609 19 ) ( 1981 609 19 ) metals/mt_pv_m26y -32 46 -180 0.500000 -0.500000 134217728 8390656 0 +( 1985 609 36 ) ( 1984 607 36 ) ( 1984 607 51 ) metals/mt_pv_m26y 66 42 -180 0.500000 -0.500000 134217728 8390656 0 +( 2007 631 36 ) ( 1963 579 36 ) ( 2007 579 36 ) metals/mt_pv_m26y -28 -72 -180 0.500000 0.500000 134217728 8390656 0 +( 1983 609 53 ) ( 1984 607 53 ) ( 1984 607 38 ) metals/mt_pv_m26y -29 56 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 919 +{ +"classname" "func_group" +// brush 0 +{ +( 1728 608 36 ) ( 1712 616 28 ) ( 1728 626 28 ) metals/mt_pv_m26y -95 -99 -180 1 1 134217728 8388608 0 +( 1728 608 36 ) ( 1712 600 28 ) ( 1712 616 28 ) metals/mt_pv_m26y -95 -99 -180 1 1 134217728 8388608 0 +( 1728 590 28 ) ( 1712 600 28 ) ( 1728 608 36 ) metals/mt_pv_m26y -95 -99 -180 1 1 134217728 8388608 0 +( 1728 608 36 ) ( 1744 600 28 ) ( 1728 590 28 ) metals/mt_pv_m26y -95 -99 -180 1 1 134217728 8388608 0 +( 1728 608 36 ) ( 1744 616 28 ) ( 1744 600 28 ) metals/mt_pv_m26y -95 -99 -180 1 1 134217728 8388608 0 +( 1728 626 28 ) ( 1744 616 28 ) ( 1728 608 36 ) metals/mt_pv_m26y -95 -99 -180 1 1 134217728 8388608 0 +( 1744 600 28 ) ( 1744 616 28 ) ( 1728 626 28 ) common/li_mf_v12c 16 16 0 1 1 134217728 8388609 25000 +} +// brush 1 +{ +( 1729 609 47 ) ( 1729 605 47 ) ( 1725 605 47 ) metals/mt_pv_m26y -28 -71 -180 0.500000 0.500000 134217728 8390656 0 +( 1729 609 17 ) ( 1729 609 19 ) ( 1725 609 19 ) metals/mt_pv_m26y -32 45 -180 0.500000 -0.500000 134217728 8390656 0 +( 1729 609 36 ) ( 1728 607 36 ) ( 1728 607 51 ) metals/mt_pv_m26y 66 42 -180 0.500000 -0.500000 134217728 8390656 0 +( 1751 631 36 ) ( 1707 579 36 ) ( 1751 579 36 ) metals/mt_pv_m26y -28 -71 -180 0.500000 0.500000 134217728 8390656 0 +( 1727 609 53 ) ( 1728 607 53 ) ( 1728 607 38 ) metals/mt_pv_m26y -29 56 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 920 +{ +"classname" "func_group" +// brush 0 +{ +( 2560 576 108 ) ( 2544 584 100 ) ( 2560 594 100 ) metals/mt_pv_m26y -31 -69 -180 1 1 134217728 8388608 0 +( 2560 576 108 ) ( 2544 568 100 ) ( 2544 584 100 ) metals/mt_pv_m26y -31 -69 -180 1 1 134217728 8388608 0 +( 2560 558 100 ) ( 2544 568 100 ) ( 2560 576 108 ) metals/mt_pv_m26y -31 -69 -180 1 1 134217728 8388608 0 +( 2560 576 108 ) ( 2576 568 100 ) ( 2560 558 100 ) metals/mt_pv_m26y -31 -69 -180 1 1 134217728 8388608 0 +( 2560 576 108 ) ( 2576 584 100 ) ( 2576 568 100 ) metals/mt_pv_m26y -31 -69 -180 1 1 134217728 8388608 0 +( 2560 594 100 ) ( 2576 584 100 ) ( 2560 576 108 ) metals/mt_pv_m26y -31 -69 -180 1 1 134217728 8388608 0 +( 2576 568 100 ) ( 2576 584 100 ) ( 2560 594 100 ) common/li_mf_v12c 16 16 0 1 1 134217728 8388609 45000 +} +// brush 1 +{ +( 2561 577 127 ) ( 2561 573 127 ) ( 2557 573 127 ) metals/mt_pv_m26y -28 -9 -180 0.500000 0.500000 134217728 8390656 0 +( 2561 577 89 ) ( 2561 577 91 ) ( 2557 577 91 ) metals/mt_pv_m26y -32 63 -180 0.500000 -0.500000 134217728 8390656 0 +( 2561 577 108 ) ( 2560 575 108 ) ( 2560 575 123 ) metals/mt_pv_m26y 2 58 -180 0.500000 -0.500000 134217728 8390656 0 +( 2583 599 108 ) ( 2539 547 108 ) ( 2583 547 108 ) metals/mt_pv_m26y -28 -9 -180 0.500000 0.500000 134217728 8390656 0 +( 2559 577 125 ) ( 2560 575 125 ) ( 2560 575 110 ) metals/mt_pv_m26y 34 72 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 921 +{ +"classname" "func_group" +// brush 0 +{ +( 2560 320 108 ) ( 2544 328 100 ) ( 2560 338 100 ) metals/mt_pv_m26y -30 59 -180 1 1 134217728 8388608 0 +( 2560 320 108 ) ( 2544 312 100 ) ( 2544 328 100 ) metals/mt_pv_m26y -30 59 -180 1 1 134217728 8388608 0 +( 2560 302 100 ) ( 2544 312 100 ) ( 2560 320 108 ) metals/mt_pv_m26y -30 59 -180 1 1 134217728 8388608 0 +( 2560 320 108 ) ( 2576 312 100 ) ( 2560 302 100 ) metals/mt_pv_m26y -30 59 -180 1 1 134217728 8388608 0 +( 2560 320 108 ) ( 2576 328 100 ) ( 2576 312 100 ) metals/mt_pv_m26y -30 59 -180 1 1 134217728 8388608 0 +( 2560 338 100 ) ( 2576 328 100 ) ( 2560 320 108 ) metals/mt_pv_m26y -30 59 -180 1 1 134217728 8388608 0 +( 2576 312 100 ) ( 2576 328 100 ) ( 2560 338 100 ) common/li_mf_v12c 16 -16 0 1 1 134217728 8388609 50000 +} +// brush 1 +{ +( 2561 321 127 ) ( 2561 317 127 ) ( 2557 317 127 ) metals/mt_pv_m26y -27 118 -180 0.500000 0.500000 134217728 8390656 0 +( 2561 321 89 ) ( 2561 321 91 ) ( 2557 321 91 ) metals/mt_pv_m26y -32 63 -180 0.500000 -0.500000 134217728 8390656 0 +( 2561 321 108 ) ( 2560 319 108 ) ( 2560 319 123 ) metals/mt_pv_m26y -126 57 -180 0.500000 -0.500000 134217728 8390656 0 +( 2583 343 108 ) ( 2539 291 108 ) ( 2583 291 108 ) metals/mt_pv_m26y -27 118 -180 0.500000 0.500000 134217728 8390656 0 +( 2559 321 125 ) ( 2560 319 125 ) ( 2560 319 110 ) metals/mt_pv_m26y -94 71 -180 0.500000 -0.500000 134217728 8390656 0 +} +} +// entity 922 +{ +"classname" "func_group" +// brush 0 +{ +( 936 208 32 ) ( 936 176 32 ) ( 960 176 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 936 176 32 ) ( 936 208 32 ) ( 944 208 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 936 176 128 ) ( 960 176 128 ) ( 960 176 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 960 176 128 ) ( 960 208 128 ) ( 960 208 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 960 208 128 ) ( 936 208 128 ) ( 936 208 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 944 176 48 ) ( 944 208 48 ) ( 960 192 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 1 +{ +( 960 176 48 ) ( 960 208 48 ) ( 928 208 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 928 208 224 ) ( 960 208 224 ) ( 960 176 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 944 208 224 ) ( 944 176 224 ) ( 944 176 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 928 176 224 ) ( 960 176 224 ) ( 960 176 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 960 176 224 ) ( 960 208 224 ) ( 960 208 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 960 208 224 ) ( 928 208 224 ) ( 928 208 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 2 +{ +( 928 208 202 ) ( 928 176 202 ) ( 944 176 192 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 912 208 224 ) ( 944 208 224 ) ( 944 176 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 928 176 202 ) ( 928 208 202 ) ( 928 208 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 912 176 224 ) ( 944 176 224 ) ( 944 176 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 944 176 224 ) ( 944 208 224 ) ( 944 208 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 944 208 224 ) ( 912 208 224 ) ( 912 208 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 3 +{ +( 928 176 202 ) ( 928 208 202 ) ( 896 208 208 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 880 208 224 ) ( 912 208 224 ) ( 912 176 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 896 176 208 ) ( 896 208 208 ) ( 896 208 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 880 176 224 ) ( 912 176 224 ) ( 912 176 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 928 208 202 ) ( 928 176 202 ) ( 928 176 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 912 208 224 ) ( 880 208 224 ) ( 880 208 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 4 +{ +( 864 176 208 ) ( 864 208 208 ) ( 832 208 208 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 832 208 224 ) ( 864 208 224 ) ( 864 176 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 832 208 224 ) ( 832 176 224 ) ( 832 176 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 832 176 224 ) ( 864 176 224 ) ( 864 176 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 896 176 224 ) ( 896 208 224 ) ( 896 208 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 864 208 224 ) ( 832 208 224 ) ( 832 208 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 5 +{ +( 800 208 202 ) ( 800 176 202 ) ( 832 176 208 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 816 208 224 ) ( 848 208 224 ) ( 848 176 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 800 176 202 ) ( 800 208 202 ) ( 800 208 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 816 176 224 ) ( 848 176 224 ) ( 848 176 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 832 176 224 ) ( 832 208 224 ) ( 832 208 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 848 208 224 ) ( 816 208 224 ) ( 816 208 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 6 +{ +( 800 176 202 ) ( 800 208 202 ) ( 784 208 192 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 784 208 224 ) ( 816 208 224 ) ( 816 176 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 784 208 224 ) ( 784 176 224 ) ( 784 176 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 784 176 224 ) ( 816 176 224 ) ( 816 176 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 800 208 202 ) ( 800 176 202 ) ( 800 176 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 816 208 224 ) ( 784 208 224 ) ( 784 208 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 7 +{ +( 800 176 48 ) ( 800 208 48 ) ( 768 208 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 768 208 224 ) ( 800 208 224 ) ( 800 176 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 768 208 224 ) ( 768 176 224 ) ( 768 176 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 768 176 224 ) ( 800 176 224 ) ( 800 176 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 784 176 80 ) ( 784 208 80 ) ( 784 208 -16 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 800 208 224 ) ( 768 208 224 ) ( 768 208 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 8 +{ +( 792 176 32 ) ( 792 208 32 ) ( 768 208 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 768 208 128 ) ( 768 176 128 ) ( 768 176 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 792 176 32 ) ( 776 176 32 ) ( 768 176 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 792 208 32 ) ( 792 176 32 ) ( 784 176 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 784 208 128 ) ( 768 208 128 ) ( 768 208 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 768 176 48 ) ( 768 208 48 ) ( 784 192 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +} +// entity 923 +{ +"classname" "func_group" +// brush 0 +{ +( 936 464 32 ) ( 936 432 32 ) ( 960 432 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 936 432 32 ) ( 936 464 32 ) ( 944 464 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 936 432 128 ) ( 960 432 128 ) ( 960 432 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 960 432 128 ) ( 960 464 128 ) ( 960 464 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 960 464 128 ) ( 936 464 128 ) ( 936 464 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 944 432 48 ) ( 944 464 48 ) ( 960 448 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 1 +{ +( 960 432 48 ) ( 960 464 48 ) ( 928 464 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 928 464 224 ) ( 960 464 224 ) ( 960 432 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 944 464 224 ) ( 944 432 224 ) ( 944 432 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 928 432 224 ) ( 960 432 224 ) ( 960 432 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 960 432 224 ) ( 960 464 224 ) ( 960 464 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 960 464 224 ) ( 928 464 224 ) ( 928 464 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 2 +{ +( 928 464 202 ) ( 928 432 202 ) ( 944 432 192 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 912 464 224 ) ( 944 464 224 ) ( 944 432 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 928 432 202 ) ( 928 464 202 ) ( 928 464 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 912 432 224 ) ( 944 432 224 ) ( 944 432 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 944 432 224 ) ( 944 464 224 ) ( 944 464 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 944 464 224 ) ( 912 464 224 ) ( 912 464 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 3 +{ +( 928 432 202 ) ( 928 464 202 ) ( 896 464 208 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 880 464 224 ) ( 912 464 224 ) ( 912 432 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 896 432 208 ) ( 896 464 208 ) ( 896 464 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 880 432 224 ) ( 912 432 224 ) ( 912 432 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 928 464 202 ) ( 928 432 202 ) ( 928 432 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 912 464 224 ) ( 880 464 224 ) ( 880 464 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 4 +{ +( 864 432 208 ) ( 864 464 208 ) ( 832 464 208 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 832 464 224 ) ( 864 464 224 ) ( 864 432 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 832 464 224 ) ( 832 432 224 ) ( 832 432 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 832 432 224 ) ( 864 432 224 ) ( 864 432 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 896 432 224 ) ( 896 464 224 ) ( 896 464 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 864 464 224 ) ( 832 464 224 ) ( 832 464 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 5 +{ +( 800 464 202 ) ( 800 432 202 ) ( 832 432 208 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 816 464 224 ) ( 848 464 224 ) ( 848 432 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 800 432 202 ) ( 800 464 202 ) ( 800 464 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 816 432 224 ) ( 848 432 224 ) ( 848 432 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 832 432 224 ) ( 832 464 224 ) ( 832 464 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 848 464 224 ) ( 816 464 224 ) ( 816 464 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 6 +{ +( 800 432 202 ) ( 800 464 202 ) ( 784 464 192 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 784 464 224 ) ( 816 464 224 ) ( 816 432 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 784 464 224 ) ( 784 432 224 ) ( 784 432 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 784 432 224 ) ( 816 432 224 ) ( 816 432 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 800 464 202 ) ( 800 432 202 ) ( 800 432 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 816 464 224 ) ( 784 464 224 ) ( 784 464 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 7 +{ +( 800 432 48 ) ( 800 464 48 ) ( 768 464 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 768 464 224 ) ( 800 464 224 ) ( 800 432 224 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 768 464 224 ) ( 768 432 224 ) ( 768 432 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 768 432 224 ) ( 800 432 224 ) ( 800 432 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 784 432 80 ) ( 784 464 80 ) ( 784 464 -16 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 800 464 224 ) ( 768 464 224 ) ( 768 464 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 8 +{ +( 792 432 32 ) ( 792 464 32 ) ( 768 464 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 768 464 128 ) ( 768 432 128 ) ( 768 432 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 792 432 32 ) ( 776 432 32 ) ( 768 432 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 792 464 32 ) ( 792 432 32 ) ( 784 432 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 784 464 128 ) ( 768 464 128 ) ( 768 464 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 768 432 48 ) ( 768 464 48 ) ( 784 448 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +} +// entity 924 +{ +"classname" "func_group" +// brush 0 +{ +( 1040 536 32 ) ( 1008 536 32 ) ( 1008 512 32 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1008 536 32 ) ( 1040 536 32 ) ( 1040 528 48 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1008 536 128 ) ( 1008 512 128 ) ( 1008 512 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1008 512 128 ) ( 1040 512 128 ) ( 1040 512 32 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1040 512 128 ) ( 1040 536 128 ) ( 1040 536 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1008 528 48 ) ( 1040 528 48 ) ( 1024 512 48 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +} +// brush 1 +{ +( 1008 512 48 ) ( 1040 512 48 ) ( 1040 544 48 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1040 544 224 ) ( 1040 512 224 ) ( 1008 512 224 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1040 528 224 ) ( 1008 528 224 ) ( 1008 528 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1008 544 224 ) ( 1008 512 224 ) ( 1008 512 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1008 512 224 ) ( 1040 512 224 ) ( 1040 512 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1040 512 224 ) ( 1040 544 224 ) ( 1040 544 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 2 +{ +( 1040 544 202 ) ( 1008 544 202 ) ( 1008 528 192 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1040 560 224 ) ( 1040 528 224 ) ( 1008 528 224 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1008 544 202 ) ( 1040 544 202 ) ( 1040 544 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1008 560 224 ) ( 1008 528 224 ) ( 1008 528 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1008 528 224 ) ( 1040 528 224 ) ( 1040 528 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1040 528 224 ) ( 1040 560 224 ) ( 1040 560 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 3 +{ +( 1008 544 202 ) ( 1040 544 202 ) ( 1040 576 208 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1040 592 224 ) ( 1040 560 224 ) ( 1008 560 224 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1008 576 208 ) ( 1040 576 208 ) ( 1040 576 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1008 592 224 ) ( 1008 560 224 ) ( 1008 560 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1040 544 202 ) ( 1008 544 202 ) ( 1008 544 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1040 560 224 ) ( 1040 592 224 ) ( 1040 592 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 4 +{ +( 1008 608 208 ) ( 1040 608 208 ) ( 1040 640 208 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1040 640 224 ) ( 1040 608 224 ) ( 1008 608 224 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1040 640 224 ) ( 1008 640 224 ) ( 1008 640 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1008 640 224 ) ( 1008 608 224 ) ( 1008 608 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1008 576 224 ) ( 1040 576 224 ) ( 1040 576 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1040 608 224 ) ( 1040 640 224 ) ( 1040 640 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 5 +{ +( 1040 672 202 ) ( 1008 672 202 ) ( 1008 640 208 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1040 656 224 ) ( 1040 624 224 ) ( 1008 624 224 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1008 672 202 ) ( 1040 672 202 ) ( 1040 672 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1008 656 224 ) ( 1008 624 224 ) ( 1008 624 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1008 640 224 ) ( 1040 640 224 ) ( 1040 640 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1040 624 224 ) ( 1040 656 224 ) ( 1040 656 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 6 +{ +( 1008 672 202 ) ( 1040 672 202 ) ( 1040 688 192 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1040 688 224 ) ( 1040 656 224 ) ( 1008 656 224 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1040 688 224 ) ( 1008 688 224 ) ( 1008 688 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1008 688 224 ) ( 1008 656 224 ) ( 1008 656 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1040 672 202 ) ( 1008 672 202 ) ( 1008 672 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1040 656 224 ) ( 1040 688 224 ) ( 1040 688 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 7 +{ +( 1008 672 48 ) ( 1040 672 48 ) ( 1040 704 48 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1040 704 224 ) ( 1040 672 224 ) ( 1008 672 224 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1040 704 224 ) ( 1008 704 224 ) ( 1008 704 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1008 704 224 ) ( 1008 672 224 ) ( 1008 672 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1008 688 80 ) ( 1040 688 80 ) ( 1040 688 -16 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1040 672 224 ) ( 1040 704 224 ) ( 1040 704 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 8 +{ +( 1008 680 32 ) ( 1040 680 32 ) ( 1040 704 32 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1040 704 128 ) ( 1008 704 128 ) ( 1008 704 32 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1008 680 32 ) ( 1008 696 32 ) ( 1008 704 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1040 680 32 ) ( 1008 680 32 ) ( 1008 688 48 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1040 688 128 ) ( 1040 704 128 ) ( 1040 704 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1008 704 48 ) ( 1040 704 48 ) ( 1024 688 48 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +} +} +// entity 925 +{ +"classname" "func_group" +// brush 0 +{ +( 1296 536 32 ) ( 1264 536 32 ) ( 1264 512 32 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1264 536 32 ) ( 1296 536 32 ) ( 1296 528 48 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1264 536 128 ) ( 1264 512 128 ) ( 1264 512 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1264 512 128 ) ( 1296 512 128 ) ( 1296 512 32 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1296 512 128 ) ( 1296 536 128 ) ( 1296 536 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1264 528 48 ) ( 1296 528 48 ) ( 1280 512 48 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +} +// brush 1 +{ +( 1264 512 48 ) ( 1296 512 48 ) ( 1296 544 48 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1296 544 224 ) ( 1296 512 224 ) ( 1264 512 224 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1296 528 224 ) ( 1264 528 224 ) ( 1264 528 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1264 544 224 ) ( 1264 512 224 ) ( 1264 512 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1264 512 224 ) ( 1296 512 224 ) ( 1296 512 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1296 512 224 ) ( 1296 544 224 ) ( 1296 544 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 2 +{ +( 1296 544 202 ) ( 1264 544 202 ) ( 1264 528 192 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1296 560 224 ) ( 1296 528 224 ) ( 1264 528 224 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1264 544 202 ) ( 1296 544 202 ) ( 1296 544 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1264 560 224 ) ( 1264 528 224 ) ( 1264 528 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1264 528 224 ) ( 1296 528 224 ) ( 1296 528 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1296 528 224 ) ( 1296 560 224 ) ( 1296 560 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 3 +{ +( 1264 544 202 ) ( 1296 544 202 ) ( 1296 576 208 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1296 592 224 ) ( 1296 560 224 ) ( 1264 560 224 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1264 576 208 ) ( 1296 576 208 ) ( 1296 576 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1264 592 224 ) ( 1264 560 224 ) ( 1264 560 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1296 544 202 ) ( 1264 544 202 ) ( 1264 544 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1296 560 224 ) ( 1296 592 224 ) ( 1296 592 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 4 +{ +( 1264 608 208 ) ( 1296 608 208 ) ( 1296 640 208 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1296 640 224 ) ( 1296 608 224 ) ( 1264 608 224 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1296 640 224 ) ( 1264 640 224 ) ( 1264 640 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1264 640 224 ) ( 1264 608 224 ) ( 1264 608 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1264 576 224 ) ( 1296 576 224 ) ( 1296 576 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1296 608 224 ) ( 1296 640 224 ) ( 1296 640 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 5 +{ +( 1296 672 202 ) ( 1264 672 202 ) ( 1264 640 208 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1296 656 224 ) ( 1296 624 224 ) ( 1264 624 224 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1264 672 202 ) ( 1296 672 202 ) ( 1296 672 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1264 656 224 ) ( 1264 624 224 ) ( 1264 624 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1264 640 224 ) ( 1296 640 224 ) ( 1296 640 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1296 624 224 ) ( 1296 656 224 ) ( 1296 656 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 6 +{ +( 1264 672 202 ) ( 1296 672 202 ) ( 1296 688 192 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1296 688 224 ) ( 1296 656 224 ) ( 1264 656 224 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1296 688 224 ) ( 1264 688 224 ) ( 1264 688 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1264 688 224 ) ( 1264 656 224 ) ( 1264 656 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1296 672 202 ) ( 1264 672 202 ) ( 1264 672 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1296 656 224 ) ( 1296 688 224 ) ( 1296 688 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 7 +{ +( 1264 672 48 ) ( 1296 672 48 ) ( 1296 704 48 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1296 704 224 ) ( 1296 672 224 ) ( 1264 672 224 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1296 704 224 ) ( 1264 704 224 ) ( 1264 704 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1264 704 224 ) ( 1264 672 224 ) ( 1264 672 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1264 688 80 ) ( 1296 688 80 ) ( 1296 688 -16 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1296 672 224 ) ( 1296 704 224 ) ( 1296 704 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 8 +{ +( 1264 680 32 ) ( 1296 680 32 ) ( 1296 704 32 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +( 1296 704 128 ) ( 1264 704 128 ) ( 1264 704 32 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1264 680 32 ) ( 1264 696 32 ) ( 1264 704 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1296 680 32 ) ( 1264 680 32 ) ( 1264 688 48 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1296 688 128 ) ( 1296 704 128 ) ( 1296 704 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 1264 704 48 ) ( 1296 704 48 ) ( 1280 688 48 ) metals/mt_pv_m26y 0 -96 90 2 2 134217728 8388608 0 +} +} +// entity 926 +{ +"classname" "func_group" +// brush 0 +{ +( 1744 536 -128 ) ( 1712 536 -128 ) ( 1712 512 -128 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 1712 536 -128 ) ( 1744 536 -128 ) ( 1744 528 -112 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1712 536 -32 ) ( 1712 512 -32 ) ( 1712 512 -128 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +( 1712 512 -32 ) ( 1744 512 -32 ) ( 1744 512 -128 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1744 512 -32 ) ( 1744 536 -32 ) ( 1744 536 -128 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +( 1712 528 -112 ) ( 1744 528 -112 ) ( 1728 512 -112 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +} +// brush 1 +{ +( 1712 512 -112 ) ( 1744 512 -112 ) ( 1744 544 -112 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 1744 544 64 ) ( 1744 512 64 ) ( 1712 512 64 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 1744 528 64 ) ( 1712 528 64 ) ( 1712 528 -32 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1712 544 64 ) ( 1712 512 64 ) ( 1712 512 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +( 1712 512 64 ) ( 1744 512 64 ) ( 1744 512 -32 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1744 512 64 ) ( 1744 544 64 ) ( 1744 544 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +} +// brush 2 +{ +( 1744 544 42 ) ( 1712 544 42 ) ( 1712 528 32 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 1744 560 64 ) ( 1744 528 64 ) ( 1712 528 64 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 1712 544 42 ) ( 1744 544 42 ) ( 1744 544 64 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1712 560 64 ) ( 1712 528 64 ) ( 1712 528 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +( 1712 528 64 ) ( 1744 528 64 ) ( 1744 528 -32 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1744 528 64 ) ( 1744 560 64 ) ( 1744 560 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +} +// brush 3 +{ +( 1712 544 42 ) ( 1744 544 42 ) ( 1744 576 48 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 1744 592 64 ) ( 1744 560 64 ) ( 1712 560 64 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 1712 576 48 ) ( 1744 576 48 ) ( 1744 576 64 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1712 592 64 ) ( 1712 560 64 ) ( 1712 560 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +( 1744 544 42 ) ( 1712 544 42 ) ( 1712 544 64 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1744 560 64 ) ( 1744 592 64 ) ( 1744 592 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +} +// brush 4 +{ +( 1712 608 48 ) ( 1744 608 48 ) ( 1744 640 48 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 1744 640 64 ) ( 1744 608 64 ) ( 1712 608 64 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 1744 640 64 ) ( 1712 640 64 ) ( 1712 640 -32 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1712 640 64 ) ( 1712 608 64 ) ( 1712 608 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +( 1712 576 64 ) ( 1744 576 64 ) ( 1744 576 -32 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1744 608 64 ) ( 1744 640 64 ) ( 1744 640 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +} +// brush 5 +{ +( 1744 672 42 ) ( 1712 672 42 ) ( 1712 640 48 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 1744 656 64 ) ( 1744 624 64 ) ( 1712 624 64 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 1712 672 42 ) ( 1744 672 42 ) ( 1744 672 64 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1712 656 64 ) ( 1712 624 64 ) ( 1712 624 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +( 1712 640 64 ) ( 1744 640 64 ) ( 1744 640 -32 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1744 624 64 ) ( 1744 656 64 ) ( 1744 656 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +} +// brush 6 +{ +( 1712 672 42 ) ( 1744 672 42 ) ( 1744 688 32 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 1744 688 64 ) ( 1744 656 64 ) ( 1712 656 64 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 1744 688 64 ) ( 1712 688 64 ) ( 1712 688 -32 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1712 688 64 ) ( 1712 656 64 ) ( 1712 656 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +( 1744 672 42 ) ( 1712 672 42 ) ( 1712 672 64 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1744 656 64 ) ( 1744 688 64 ) ( 1744 688 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +} +// brush 7 +{ +( 1712 672 -112 ) ( 1744 672 -112 ) ( 1744 704 -112 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 1744 704 64 ) ( 1744 672 64 ) ( 1712 672 64 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 1744 704 64 ) ( 1712 704 64 ) ( 1712 704 -32 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1712 704 64 ) ( 1712 672 64 ) ( 1712 672 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +( 1712 688 -80 ) ( 1744 688 -80 ) ( 1744 688 -176 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1744 672 64 ) ( 1744 704 64 ) ( 1744 704 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +} +// brush 8 +{ +( 1712 680 -128 ) ( 1744 680 -128 ) ( 1744 704 -128 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 1744 704 -32 ) ( 1712 704 -32 ) ( 1712 704 -128 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1712 680 -128 ) ( 1712 696 -128 ) ( 1712 704 -112 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +( 1744 680 -128 ) ( 1712 680 -128 ) ( 1712 688 -112 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1744 688 -32 ) ( 1744 704 -32 ) ( 1744 704 -128 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +( 1712 704 -112 ) ( 1744 704 -112 ) ( 1728 688 -112 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +} +} +// entity 927 +{ +"classname" "func_group" +// brush 0 +{ +( 2000 536 -128 ) ( 1968 536 -128 ) ( 1968 512 -128 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 1968 536 -128 ) ( 2000 536 -128 ) ( 2000 528 -112 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1968 536 -32 ) ( 1968 512 -32 ) ( 1968 512 -128 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +( 1968 512 -32 ) ( 2000 512 -32 ) ( 2000 512 -128 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 2000 512 -32 ) ( 2000 536 -32 ) ( 2000 536 -128 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +( 1968 528 -112 ) ( 2000 528 -112 ) ( 1984 512 -112 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +} +// brush 1 +{ +( 1968 512 -112 ) ( 2000 512 -112 ) ( 2000 544 -112 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 2000 544 64 ) ( 2000 512 64 ) ( 1968 512 64 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 2000 528 64 ) ( 1968 528 64 ) ( 1968 528 -32 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1968 544 64 ) ( 1968 512 64 ) ( 1968 512 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +( 1968 512 64 ) ( 2000 512 64 ) ( 2000 512 -32 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 2000 512 64 ) ( 2000 544 64 ) ( 2000 544 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +} +// brush 2 +{ +( 2000 544 42 ) ( 1968 544 42 ) ( 1968 528 32 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 2000 560 64 ) ( 2000 528 64 ) ( 1968 528 64 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 1968 544 42 ) ( 2000 544 42 ) ( 2000 544 64 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1968 560 64 ) ( 1968 528 64 ) ( 1968 528 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +( 1968 528 64 ) ( 2000 528 64 ) ( 2000 528 -32 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 2000 528 64 ) ( 2000 560 64 ) ( 2000 560 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +} +// brush 3 +{ +( 1968 544 42 ) ( 2000 544 42 ) ( 2000 576 48 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 2000 592 64 ) ( 2000 560 64 ) ( 1968 560 64 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 1968 576 48 ) ( 2000 576 48 ) ( 2000 576 64 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1968 592 64 ) ( 1968 560 64 ) ( 1968 560 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +( 2000 544 42 ) ( 1968 544 42 ) ( 1968 544 64 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 2000 560 64 ) ( 2000 592 64 ) ( 2000 592 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +} +// brush 4 +{ +( 1968 608 48 ) ( 2000 608 48 ) ( 2000 640 48 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 2000 640 64 ) ( 2000 608 64 ) ( 1968 608 64 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 2000 640 64 ) ( 1968 640 64 ) ( 1968 640 -32 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1968 640 64 ) ( 1968 608 64 ) ( 1968 608 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +( 1968 576 64 ) ( 2000 576 64 ) ( 2000 576 -32 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 2000 608 64 ) ( 2000 640 64 ) ( 2000 640 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +} +// brush 5 +{ +( 2000 672 42 ) ( 1968 672 42 ) ( 1968 640 48 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 2000 656 64 ) ( 2000 624 64 ) ( 1968 624 64 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 1968 672 42 ) ( 2000 672 42 ) ( 2000 672 64 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1968 656 64 ) ( 1968 624 64 ) ( 1968 624 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +( 1968 640 64 ) ( 2000 640 64 ) ( 2000 640 -32 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 2000 624 64 ) ( 2000 656 64 ) ( 2000 656 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +} +// brush 6 +{ +( 1968 672 42 ) ( 2000 672 42 ) ( 2000 688 32 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 2000 688 64 ) ( 2000 656 64 ) ( 1968 656 64 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 2000 688 64 ) ( 1968 688 64 ) ( 1968 688 -32 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1968 688 64 ) ( 1968 656 64 ) ( 1968 656 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +( 2000 672 42 ) ( 1968 672 42 ) ( 1968 672 64 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 2000 656 64 ) ( 2000 688 64 ) ( 2000 688 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +} +// brush 7 +{ +( 1968 672 -112 ) ( 2000 672 -112 ) ( 2000 704 -112 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 2000 704 64 ) ( 2000 672 64 ) ( 1968 672 64 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 2000 704 64 ) ( 1968 704 64 ) ( 1968 704 -32 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1968 704 64 ) ( 1968 672 64 ) ( 1968 672 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +( 1968 688 -80 ) ( 2000 688 -80 ) ( 2000 688 -176 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 2000 672 64 ) ( 2000 704 64 ) ( 2000 704 -32 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +} +// brush 8 +{ +( 1968 680 -128 ) ( 2000 680 -128 ) ( 2000 704 -128 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +( 2000 704 -32 ) ( 1968 704 -32 ) ( 1968 704 -128 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 1968 680 -128 ) ( 1968 696 -128 ) ( 1968 704 -112 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +( 2000 680 -128 ) ( 1968 680 -128 ) ( 1968 688 -112 ) metals/mt_pv_m26y 64 -79 -180 2 -2 134217728 8388608 0 +( 2000 688 -32 ) ( 2000 704 -32 ) ( 2000 704 -128 ) metals/mt_pv_m26y 0 -80 0 2 2 134217728 8388608 0 +( 1968 704 -112 ) ( 2000 704 -112 ) ( 1984 688 -112 ) metals/mt_pv_m26y 0 -64 90 2 2 134217728 8388608 0 +} +} +// entity 928 +{ +"classname" "func_group" +// brush 0 +{ +( 2072 432 -128 ) ( 2072 464 -128 ) ( 2048 464 -128 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2072 464 -128 ) ( 2072 432 -128 ) ( 2064 432 -112 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2072 464 -32 ) ( 2048 464 -32 ) ( 2048 464 -128 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +( 2048 464 -32 ) ( 2048 432 -32 ) ( 2048 432 -128 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2048 432 -32 ) ( 2072 432 -32 ) ( 2072 432 -128 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +( 2064 464 -112 ) ( 2064 432 -112 ) ( 2048 448 -112 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +} +// brush 1 +{ +( 2048 464 -112 ) ( 2048 432 -112 ) ( 2080 432 -112 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2080 432 64 ) ( 2048 432 64 ) ( 2048 464 64 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2064 432 64 ) ( 2064 464 64 ) ( 2064 464 -32 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2080 464 64 ) ( 2048 464 64 ) ( 2048 464 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +( 2048 464 64 ) ( 2048 432 64 ) ( 2048 432 -32 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2048 432 64 ) ( 2080 432 64 ) ( 2080 432 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +} +// brush 2 +{ +( 2080 432 42 ) ( 2080 464 42 ) ( 2064 464 32 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2096 432 64 ) ( 2064 432 64 ) ( 2064 464 64 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2080 464 42 ) ( 2080 432 42 ) ( 2080 432 64 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2096 464 64 ) ( 2064 464 64 ) ( 2064 464 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +( 2064 464 64 ) ( 2064 432 64 ) ( 2064 432 -32 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2064 432 64 ) ( 2096 432 64 ) ( 2096 432 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +} +// brush 3 +{ +( 2080 464 42 ) ( 2080 432 42 ) ( 2112 432 48 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2128 432 64 ) ( 2096 432 64 ) ( 2096 464 64 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2112 464 48 ) ( 2112 432 48 ) ( 2112 432 64 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2128 464 64 ) ( 2096 464 64 ) ( 2096 464 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +( 2080 432 42 ) ( 2080 464 42 ) ( 2080 464 64 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2096 432 64 ) ( 2128 432 64 ) ( 2128 432 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +} +// brush 4 +{ +( 2144 464 48 ) ( 2144 432 48 ) ( 2176 432 48 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2176 432 64 ) ( 2144 432 64 ) ( 2144 464 64 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2176 432 64 ) ( 2176 464 64 ) ( 2176 464 -32 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2176 464 64 ) ( 2144 464 64 ) ( 2144 464 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +( 2112 464 64 ) ( 2112 432 64 ) ( 2112 432 -32 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2144 432 64 ) ( 2176 432 64 ) ( 2176 432 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +} +// brush 5 +{ +( 2208 432 42 ) ( 2208 464 42 ) ( 2176 464 48 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2192 432 64 ) ( 2160 432 64 ) ( 2160 464 64 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2208 464 42 ) ( 2208 432 42 ) ( 2208 432 64 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2192 464 64 ) ( 2160 464 64 ) ( 2160 464 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +( 2176 464 64 ) ( 2176 432 64 ) ( 2176 432 -32 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2160 432 64 ) ( 2192 432 64 ) ( 2192 432 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +} +// brush 6 +{ +( 2208 464 42 ) ( 2208 432 42 ) ( 2224 432 32 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2224 432 64 ) ( 2192 432 64 ) ( 2192 464 64 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2224 432 64 ) ( 2224 464 64 ) ( 2224 464 -32 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2224 464 64 ) ( 2192 464 64 ) ( 2192 464 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +( 2208 432 42 ) ( 2208 464 42 ) ( 2208 464 64 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2192 432 64 ) ( 2224 432 64 ) ( 2224 432 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +} +// brush 7 +{ +( 2208 464 -112 ) ( 2208 432 -112 ) ( 2240 432 -112 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2240 432 64 ) ( 2208 432 64 ) ( 2208 464 64 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2240 432 64 ) ( 2240 464 64 ) ( 2240 464 -32 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2240 464 64 ) ( 2208 464 64 ) ( 2208 464 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +( 2224 464 -80 ) ( 2224 432 -80 ) ( 2224 432 -176 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2208 432 64 ) ( 2240 432 64 ) ( 2240 432 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +} +// brush 8 +{ +( 2216 464 -128 ) ( 2216 432 -128 ) ( 2240 432 -128 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2240 432 -32 ) ( 2240 464 -32 ) ( 2240 464 -128 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2216 464 -128 ) ( 2232 464 -128 ) ( 2240 464 -112 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +( 2216 432 -128 ) ( 2216 464 -128 ) ( 2224 464 -112 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2224 432 -32 ) ( 2240 432 -32 ) ( 2240 432 -128 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +( 2240 464 -112 ) ( 2240 432 -112 ) ( 2224 448 -112 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +} +} +// entity 929 +{ +"classname" "func_group" +// brush 0 +{ +( 2072 176 -128 ) ( 2072 208 -128 ) ( 2048 208 -128 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2072 208 -128 ) ( 2072 176 -128 ) ( 2064 176 -112 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2072 208 -32 ) ( 2048 208 -32 ) ( 2048 208 -128 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +( 2048 208 -32 ) ( 2048 176 -32 ) ( 2048 176 -128 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2048 176 -32 ) ( 2072 176 -32 ) ( 2072 176 -128 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +( 2064 208 -112 ) ( 2064 176 -112 ) ( 2048 192 -112 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +} +// brush 1 +{ +( 2048 208 -112 ) ( 2048 176 -112 ) ( 2080 176 -112 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2080 176 64 ) ( 2048 176 64 ) ( 2048 208 64 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2064 176 64 ) ( 2064 208 64 ) ( 2064 208 -32 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2080 208 64 ) ( 2048 208 64 ) ( 2048 208 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +( 2048 208 64 ) ( 2048 176 64 ) ( 2048 176 -32 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2048 176 64 ) ( 2080 176 64 ) ( 2080 176 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +} +// brush 2 +{ +( 2080 176 42 ) ( 2080 208 42 ) ( 2064 208 32 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2096 176 64 ) ( 2064 176 64 ) ( 2064 208 64 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2080 208 42 ) ( 2080 176 42 ) ( 2080 176 64 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2096 208 64 ) ( 2064 208 64 ) ( 2064 208 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +( 2064 208 64 ) ( 2064 176 64 ) ( 2064 176 -32 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2064 176 64 ) ( 2096 176 64 ) ( 2096 176 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +} +// brush 3 +{ +( 2080 208 42 ) ( 2080 176 42 ) ( 2112 176 48 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2128 176 64 ) ( 2096 176 64 ) ( 2096 208 64 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2112 208 48 ) ( 2112 176 48 ) ( 2112 176 64 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2128 208 64 ) ( 2096 208 64 ) ( 2096 208 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +( 2080 176 42 ) ( 2080 208 42 ) ( 2080 208 64 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2096 176 64 ) ( 2128 176 64 ) ( 2128 176 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +} +// brush 4 +{ +( 2144 208 48 ) ( 2144 176 48 ) ( 2176 176 48 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2176 176 64 ) ( 2144 176 64 ) ( 2144 208 64 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2176 176 64 ) ( 2176 208 64 ) ( 2176 208 -32 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2176 208 64 ) ( 2144 208 64 ) ( 2144 208 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +( 2112 208 64 ) ( 2112 176 64 ) ( 2112 176 -32 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2144 176 64 ) ( 2176 176 64 ) ( 2176 176 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +} +// brush 5 +{ +( 2208 176 42 ) ( 2208 208 42 ) ( 2176 208 48 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2192 176 64 ) ( 2160 176 64 ) ( 2160 208 64 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2208 208 42 ) ( 2208 176 42 ) ( 2208 176 64 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2192 208 64 ) ( 2160 208 64 ) ( 2160 208 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +( 2176 208 64 ) ( 2176 176 64 ) ( 2176 176 -32 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2160 176 64 ) ( 2192 176 64 ) ( 2192 176 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +} +// brush 6 +{ +( 2208 208 42 ) ( 2208 176 42 ) ( 2224 176 32 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2224 176 64 ) ( 2192 176 64 ) ( 2192 208 64 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2224 176 64 ) ( 2224 208 64 ) ( 2224 208 -32 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2224 208 64 ) ( 2192 208 64 ) ( 2192 208 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +( 2208 176 42 ) ( 2208 208 42 ) ( 2208 208 64 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2192 176 64 ) ( 2224 176 64 ) ( 2224 176 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +} +// brush 7 +{ +( 2208 208 -112 ) ( 2208 176 -112 ) ( 2240 176 -112 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2240 176 64 ) ( 2208 176 64 ) ( 2208 208 64 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2240 176 64 ) ( 2240 208 64 ) ( 2240 208 -32 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2240 208 64 ) ( 2208 208 64 ) ( 2208 208 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +( 2224 208 -80 ) ( 2224 176 -80 ) ( 2224 176 -176 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2208 176 64 ) ( 2240 176 64 ) ( 2240 176 -32 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +} +// brush 8 +{ +( 2216 208 -128 ) ( 2216 176 -128 ) ( 2240 176 -128 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +( 2240 176 -32 ) ( 2240 208 -32 ) ( 2240 208 -128 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2216 208 -128 ) ( 2232 208 -128 ) ( 2240 208 -112 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +( 2216 176 -128 ) ( 2216 208 -128 ) ( 2224 208 -112 ) metals/mt_pv_m26y -64 -79 -180 2 -2 134217728 8388608 0 +( 2224 176 -32 ) ( 2240 176 -32 ) ( 2240 176 -128 ) metals/mt_pv_m26y 96 -79 -180 2 -2 134217728 8388608 0 +( 2240 208 -112 ) ( 2240 176 -112 ) ( 2224 192 -112 ) metals/mt_pv_m26y 96 63 -180 2 2 134217728 8388608 0 +} +} +// entity 930 +{ +"classname" "func_group" +// brush 0 +{ +( 1752 176 32 ) ( 1752 208 32 ) ( 1728 208 32 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1752 208 32 ) ( 1752 176 32 ) ( 1744 176 48 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1752 208 128 ) ( 1728 208 128 ) ( 1728 208 32 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1728 208 128 ) ( 1728 176 128 ) ( 1728 176 32 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1728 176 128 ) ( 1752 176 128 ) ( 1752 176 32 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1744 208 48 ) ( 1744 176 48 ) ( 1728 192 48 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +} +// brush 1 +{ +( 1728 208 48 ) ( 1728 176 48 ) ( 1760 176 48 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1760 176 224 ) ( 1728 176 224 ) ( 1728 208 224 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1744 176 224 ) ( 1744 208 224 ) ( 1744 208 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1760 208 224 ) ( 1728 208 224 ) ( 1728 208 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1728 208 224 ) ( 1728 176 224 ) ( 1728 176 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1728 176 224 ) ( 1760 176 224 ) ( 1760 176 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +} +// brush 2 +{ +( 1760 176 202 ) ( 1760 208 202 ) ( 1744 208 192 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1776 176 224 ) ( 1744 176 224 ) ( 1744 208 224 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1760 208 202 ) ( 1760 176 202 ) ( 1760 176 224 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1776 208 224 ) ( 1744 208 224 ) ( 1744 208 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1744 208 224 ) ( 1744 176 224 ) ( 1744 176 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1744 176 224 ) ( 1776 176 224 ) ( 1776 176 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +} +// brush 3 +{ +( 1760 208 202 ) ( 1760 176 202 ) ( 1792 176 208 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1808 176 224 ) ( 1776 176 224 ) ( 1776 208 224 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1792 208 208 ) ( 1792 176 208 ) ( 1792 176 224 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1808 208 224 ) ( 1776 208 224 ) ( 1776 208 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1760 176 202 ) ( 1760 208 202 ) ( 1760 208 224 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1776 176 224 ) ( 1808 176 224 ) ( 1808 176 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +} +// brush 4 +{ +( 1824 208 208 ) ( 1824 176 208 ) ( 1856 176 208 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1856 176 224 ) ( 1824 176 224 ) ( 1824 208 224 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1856 176 224 ) ( 1856 208 224 ) ( 1856 208 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1856 208 224 ) ( 1824 208 224 ) ( 1824 208 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1792 208 224 ) ( 1792 176 224 ) ( 1792 176 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1824 176 224 ) ( 1856 176 224 ) ( 1856 176 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +} +// brush 5 +{ +( 1888 176 202 ) ( 1888 208 202 ) ( 1856 208 208 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1872 176 224 ) ( 1840 176 224 ) ( 1840 208 224 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1888 208 202 ) ( 1888 176 202 ) ( 1888 176 224 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1872 208 224 ) ( 1840 208 224 ) ( 1840 208 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1856 208 224 ) ( 1856 176 224 ) ( 1856 176 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1840 176 224 ) ( 1872 176 224 ) ( 1872 176 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +} +// brush 6 +{ +( 1888 208 202 ) ( 1888 176 202 ) ( 1904 176 192 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1904 176 224 ) ( 1872 176 224 ) ( 1872 208 224 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1904 176 224 ) ( 1904 208 224 ) ( 1904 208 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1904 208 224 ) ( 1872 208 224 ) ( 1872 208 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1888 176 202 ) ( 1888 208 202 ) ( 1888 208 224 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1872 176 224 ) ( 1904 176 224 ) ( 1904 176 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +} +// brush 7 +{ +( 1888 208 48 ) ( 1888 176 48 ) ( 1920 176 48 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1920 176 224 ) ( 1888 176 224 ) ( 1888 208 224 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1920 176 224 ) ( 1920 208 224 ) ( 1920 208 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1920 208 224 ) ( 1888 208 224 ) ( 1888 208 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1904 208 80 ) ( 1904 176 80 ) ( 1904 176 -16 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1888 176 224 ) ( 1920 176 224 ) ( 1920 176 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +} +// brush 8 +{ +( 1896 208 32 ) ( 1896 176 32 ) ( 1920 176 32 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1920 176 128 ) ( 1920 208 128 ) ( 1920 208 32 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1896 208 32 ) ( 1912 208 32 ) ( 1920 208 48 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1896 176 32 ) ( 1896 208 32 ) ( 1904 208 48 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1904 176 128 ) ( 1920 176 128 ) ( 1920 176 32 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1920 208 48 ) ( 1920 176 48 ) ( 1904 192 48 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +} +} +// entity 931 +{ +"classname" "func_group" +// brush 0 +{ +( 1752 -80 32 ) ( 1752 -48 32 ) ( 1728 -48 32 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1752 -48 32 ) ( 1752 -80 32 ) ( 1744 -80 48 ) metals/mt_pv_m26y -64 0 -180 2 -2 134217728 8388608 0 +( 1752 -48 128 ) ( 1728 -48 128 ) ( 1728 -48 32 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1728 -48 128 ) ( 1728 -80 128 ) ( 1728 -80 32 ) metals/mt_pv_m26y -64 0 -180 2 -2 134217728 8388608 0 +( 1728 -80 128 ) ( 1752 -80 128 ) ( 1752 -80 32 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1744 -48 48 ) ( 1744 -80 48 ) ( 1728 -64 48 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +} +// brush 1 +{ +( 1728 -48 48 ) ( 1728 -80 48 ) ( 1760 -80 48 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1760 -80 224 ) ( 1728 -80 224 ) ( 1728 -48 224 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1744 -80 224 ) ( 1744 -48 224 ) ( 1744 -48 128 ) metals/mt_pv_m26y -64 0 -180 2 -2 134217728 8388608 0 +( 1760 -48 224 ) ( 1728 -48 224 ) ( 1728 -48 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1728 -48 224 ) ( 1728 -80 224 ) ( 1728 -80 128 ) metals/mt_pv_m26y -64 0 -180 2 -2 134217728 8388608 0 +( 1728 -80 224 ) ( 1760 -80 224 ) ( 1760 -80 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +} +// brush 2 +{ +( 1760 -80 202 ) ( 1760 -48 202 ) ( 1744 -48 192 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1776 -80 224 ) ( 1744 -80 224 ) ( 1744 -48 224 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1760 -48 202 ) ( 1760 -80 202 ) ( 1760 -80 224 ) metals/mt_pv_m26y -64 0 -180 2 -2 134217728 8388608 0 +( 1776 -48 224 ) ( 1744 -48 224 ) ( 1744 -48 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1744 -48 224 ) ( 1744 -80 224 ) ( 1744 -80 128 ) metals/mt_pv_m26y -64 0 -180 2 -2 134217728 8388608 0 +( 1744 -80 224 ) ( 1776 -80 224 ) ( 1776 -80 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +} +// brush 3 +{ +( 1760 -48 202 ) ( 1760 -80 202 ) ( 1792 -80 208 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1808 -80 224 ) ( 1776 -80 224 ) ( 1776 -48 224 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1792 -48 208 ) ( 1792 -80 208 ) ( 1792 -80 224 ) metals/mt_pv_m26y -64 0 -180 2 -2 134217728 8388608 0 +( 1808 -48 224 ) ( 1776 -48 224 ) ( 1776 -48 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1760 -80 202 ) ( 1760 -48 202 ) ( 1760 -48 224 ) metals/mt_pv_m26y -64 0 -180 2 -2 134217728 8388608 0 +( 1776 -80 224 ) ( 1808 -80 224 ) ( 1808 -80 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +} +// brush 4 +{ +( 1824 -48 208 ) ( 1824 -80 208 ) ( 1856 -80 208 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1856 -80 224 ) ( 1824 -80 224 ) ( 1824 -48 224 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1856 -80 224 ) ( 1856 -48 224 ) ( 1856 -48 128 ) metals/mt_pv_m26y -64 0 -180 2 -2 134217728 8388608 0 +( 1856 -48 224 ) ( 1824 -48 224 ) ( 1824 -48 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1792 -48 224 ) ( 1792 -80 224 ) ( 1792 -80 128 ) metals/mt_pv_m26y -64 0 -180 2 -2 134217728 8388608 0 +( 1824 -80 224 ) ( 1856 -80 224 ) ( 1856 -80 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +} +// brush 5 +{ +( 1888 -80 202 ) ( 1888 -48 202 ) ( 1856 -48 208 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1872 -80 224 ) ( 1840 -80 224 ) ( 1840 -48 224 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1888 -48 202 ) ( 1888 -80 202 ) ( 1888 -80 224 ) metals/mt_pv_m26y -64 0 -180 2 -2 134217728 8388608 0 +( 1872 -48 224 ) ( 1840 -48 224 ) ( 1840 -48 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1856 -48 224 ) ( 1856 -80 224 ) ( 1856 -80 128 ) metals/mt_pv_m26y -64 0 -180 2 -2 134217728 8388608 0 +( 1840 -80 224 ) ( 1872 -80 224 ) ( 1872 -80 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +} +// brush 6 +{ +( 1888 -48 202 ) ( 1888 -80 202 ) ( 1904 -80 192 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1904 -80 224 ) ( 1872 -80 224 ) ( 1872 -48 224 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1904 -80 224 ) ( 1904 -48 224 ) ( 1904 -48 128 ) metals/mt_pv_m26y -64 0 -180 2 -2 134217728 8388608 0 +( 1904 -48 224 ) ( 1872 -48 224 ) ( 1872 -48 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1888 -80 202 ) ( 1888 -48 202 ) ( 1888 -48 224 ) metals/mt_pv_m26y -64 0 -180 2 -2 134217728 8388608 0 +( 1872 -80 224 ) ( 1904 -80 224 ) ( 1904 -80 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +} +// brush 7 +{ +( 1888 -48 48 ) ( 1888 -80 48 ) ( 1920 -80 48 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1920 -80 224 ) ( 1888 -80 224 ) ( 1888 -48 224 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1920 -80 224 ) ( 1920 -48 224 ) ( 1920 -48 128 ) metals/mt_pv_m26y -64 0 -180 2 -2 134217728 8388608 0 +( 1920 -48 224 ) ( 1888 -48 224 ) ( 1888 -48 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1904 -48 80 ) ( 1904 -80 80 ) ( 1904 -80 -16 ) metals/mt_pv_m26y -64 0 -180 2 -2 134217728 8388608 0 +( 1888 -80 224 ) ( 1920 -80 224 ) ( 1920 -80 128 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +} +// brush 8 +{ +( 1896 -48 32 ) ( 1896 -80 32 ) ( 1920 -80 32 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +( 1920 -80 128 ) ( 1920 -48 128 ) ( 1920 -48 32 ) metals/mt_pv_m26y -64 0 -180 2 -2 134217728 8388608 0 +( 1896 -48 32 ) ( 1912 -48 32 ) ( 1920 -48 48 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1896 -80 32 ) ( 1896 -48 32 ) ( 1904 -48 48 ) metals/mt_pv_m26y -64 0 -180 2 -2 134217728 8388608 0 +( 1904 -80 128 ) ( 1920 -80 128 ) ( 1920 -80 32 ) metals/mt_pv_m26y -64 1 -180 2 -2 134217728 8388608 0 +( 1920 -48 48 ) ( 1920 -80 48 ) ( 1904 -64 48 ) metals/mt_pv_m26y -64 63 -180 2 2 134217728 8388608 0 +} +} +// entity 932 +{ +"classname" "func_group" +// brush 0 +{ +( 1648 424 32 ) ( 1680 424 32 ) ( 1680 448 32 ) metals/mt_pv_m26y -31 95 -90 2 2 134217728 8388608 0 +( 1680 424 32 ) ( 1648 424 32 ) ( 1648 432 48 ) metals/mt_pv_m26y -96 0 0 2 2 134217728 8388608 0 +( 1680 424 128 ) ( 1680 448 128 ) ( 1680 448 32 ) metals/mt_pv_m26y -32 0 -180 2 -2.000008 134217728 8388608 0 +( 1680 448 128 ) ( 1648 448 128 ) ( 1648 448 32 ) metals/mt_pv_m26y -96 0 0 2 2 134217728 8388608 0 +( 1648 448 128 ) ( 1648 424 128 ) ( 1648 424 32 ) metals/mt_pv_m26y -32 0 -180 2 -2.000008 134217728 8388608 0 +( 1680 432 48 ) ( 1648 432 48 ) ( 1664 448 48 ) metals/mt_pv_m26y -31 95 -90 2 2 134217728 8388608 0 +} +// brush 1 +{ +( 1680 448 48 ) ( 1648 448 48 ) ( 1648 416 48 ) metals/mt_pv_m26y -31 95 -90 2 2 134217728 8388608 0 +( 1648 416 224 ) ( 1648 448 224 ) ( 1680 448 224 ) metals/mt_pv_m26y -31 95 -90 2 2 134217728 8388608 0 +( 1648 432 224 ) ( 1680 432 224 ) ( 1680 432 128 ) metals/mt_pv_m26y -96 0 0 2 2 134217728 8388608 0 +( 1680 416 224 ) ( 1680 448 224 ) ( 1680 448 128 ) metals/mt_pv_m26y -32 0 -180 2 -2.000008 134217728 8388608 0 +( 1680 448 224 ) ( 1648 448 224 ) ( 1648 448 128 ) metals/mt_pv_m26y -96 0 0 2 2 134217728 8388608 0 +( 1648 448 224 ) ( 1648 416 224 ) ( 1648 416 128 ) metals/mt_pv_m26y -32 0 -180 2 -2.000008 134217728 8388608 0 +} +// brush 2 +{ +( 1648 416 202 ) ( 1680 416 202 ) ( 1680 432 192 ) metals/mt_pv_m26y -31 95 -90 2 2 134217728 8388608 0 +( 1648 400 224 ) ( 1648 432 224 ) ( 1680 432 224 ) metals/mt_pv_m26y -31 95 -90 2 2 134217728 8388608 0 +( 1680 416 202 ) ( 1648 416 202 ) ( 1648 416 224 ) metals/mt_pv_m26y -96 0 0 2 2 134217728 8388608 0 +( 1680 400 224 ) ( 1680 432 224 ) ( 1680 432 128 ) metals/mt_pv_m26y -32 0 -180 2 -2.000008 134217728 8388608 0 +( 1680 432 224 ) ( 1648 432 224 ) ( 1648 432 128 ) metals/mt_pv_m26y -96 0 0 2 2 134217728 8388608 0 +( 1648 432 224 ) ( 1648 400 224 ) ( 1648 400 128 ) metals/mt_pv_m26y -32 0 -180 2 -2.000008 134217728 8388608 0 +} +// brush 3 +{ +( 1680 416 202 ) ( 1648 416 202 ) ( 1648 384 208 ) metals/mt_pv_m26y -31 95 -90 2 2 134217728 8388608 0 +( 1648 368 224 ) ( 1648 400 224 ) ( 1680 400 224 ) metals/mt_pv_m26y -31 95 -90 2 2 134217728 8388608 0 +( 1680 384 208 ) ( 1648 384 208 ) ( 1648 384 224 ) metals/mt_pv_m26y -96 0 0 2 2 134217728 8388608 0 +( 1680 368 224 ) ( 1680 400 224 ) ( 1680 400 128 ) metals/mt_pv_m26y -32 0 -180 2 -2.000008 134217728 8388608 0 +( 1648 416 202 ) ( 1680 416 202 ) ( 1680 416 224 ) metals/mt_pv_m26y -96 0 0 2 2 134217728 8388608 0 +( 1648 400 224 ) ( 1648 368 224 ) ( 1648 368 128 ) metals/mt_pv_m26y -32 0 -180 2 -2.000008 134217728 8388608 0 +} +// brush 4 +{ +( 1680 352 208 ) ( 1648 352 208 ) ( 1648 320 208 ) metals/mt_pv_m26y -31 95 -90 2 2 134217728 8388608 0 +( 1648 320 224 ) ( 1648 352 224 ) ( 1680 352 224 ) metals/mt_pv_m26y -31 95 -90 2 2 134217728 8388608 0 +( 1648 320 224 ) ( 1680 320 224 ) ( 1680 320 128 ) metals/mt_pv_m26y -96 0 0 2 2 134217728 8388608 0 +( 1680 320 224 ) ( 1680 352 224 ) ( 1680 352 128 ) metals/mt_pv_m26y -32 0 -180 2 -2.000008 134217728 8388608 0 +( 1680 384 224 ) ( 1648 384 224 ) ( 1648 384 128 ) metals/mt_pv_m26y -96 0 0 2 2 134217728 8388608 0 +( 1648 352 224 ) ( 1648 320 224 ) ( 1648 320 128 ) metals/mt_pv_m26y -32 0 -180 2 -2.000008 134217728 8388608 0 +} +// brush 5 +{ +( 1648 288 202 ) ( 1680 288 202 ) ( 1680 320 208 ) metals/mt_pv_m26y -31 95 -90 2 2 134217728 8388608 0 +( 1648 304 224 ) ( 1648 336 224 ) ( 1680 336 224 ) metals/mt_pv_m26y -31 95 -90 2 2 134217728 8388608 0 +( 1680 288 202 ) ( 1648 288 202 ) ( 1648 288 224 ) metals/mt_pv_m26y -96 0 0 2 2 134217728 8388608 0 +( 1680 304 224 ) ( 1680 336 224 ) ( 1680 336 128 ) metals/mt_pv_m26y -32 0 -180 2 -2.000008 134217728 8388608 0 +( 1680 320 224 ) ( 1648 320 224 ) ( 1648 320 128 ) metals/mt_pv_m26y -96 0 0 2 2 134217728 8388608 0 +( 1648 336 224 ) ( 1648 304 224 ) ( 1648 304 128 ) metals/mt_pv_m26y -32 0 -180 2 -2.000008 134217728 8388608 0 +} +// brush 6 +{ +( 1680 288 202 ) ( 1648 288 202 ) ( 1648 272 192 ) metals/mt_pv_m26y -31 95 -90 2 2 134217728 8388608 0 +( 1648 272 224 ) ( 1648 304 224 ) ( 1680 304 224 ) metals/mt_pv_m26y -31 95 -90 2 2 134217728 8388608 0 +( 1648 272 224 ) ( 1680 272 224 ) ( 1680 272 128 ) metals/mt_pv_m26y -96 0 0 2 2 134217728 8388608 0 +( 1680 272 224 ) ( 1680 304 224 ) ( 1680 304 128 ) metals/mt_pv_m26y -32 0 -180 2 -2.000008 134217728 8388608 0 +( 1648 288 202 ) ( 1680 288 202 ) ( 1680 288 224 ) metals/mt_pv_m26y -96 0 0 2 2 134217728 8388608 0 +( 1648 304 224 ) ( 1648 272 224 ) ( 1648 272 128 ) metals/mt_pv_m26y -32 0 -180 2 -2.000008 134217728 8388608 0 +} +// brush 7 +{ +( 1680 288 48 ) ( 1648 288 48 ) ( 1648 256 48 ) metals/mt_pv_m26y -31 95 -90 2 2 134217728 8388608 0 +( 1648 256 224 ) ( 1648 288 224 ) ( 1680 288 224 ) metals/mt_pv_m26y -31 95 -90 2 2 134217728 8388608 0 +( 1648 256 224 ) ( 1680 256 224 ) ( 1680 256 128 ) metals/mt_pv_m26y -96 0 0 2 2 134217728 8388608 0 +( 1680 256 224 ) ( 1680 288 224 ) ( 1680 288 128 ) metals/mt_pv_m26y -32 0 -180 2 -2.000008 134217728 8388608 0 +( 1680 272 80 ) ( 1648 272 80 ) ( 1648 272 -16 ) metals/mt_pv_m26y -96 0 0 2 2 134217728 8388608 0 +( 1648 288 224 ) ( 1648 256 224 ) ( 1648 256 128 ) metals/mt_pv_m26y -32 0 -180 2 -2.000008 134217728 8388608 0 +} +// brush 8 +{ +( 1680 280 32 ) ( 1648 280 32 ) ( 1648 256 32 ) metals/mt_pv_m26y -31 95 -90 2 2 134217728 8388608 0 +( 1648 256 128 ) ( 1680 256 128 ) ( 1680 256 32 ) metals/mt_pv_m26y -96 0 0 2 2 134217728 8388608 0 +( 1680 280 32 ) ( 1680 264 32 ) ( 1680 256 48 ) metals/mt_pv_m26y -32 0 -180 2 -2.000008 134217728 8388608 0 +( 1648 280 32 ) ( 1680 280 32 ) ( 1680 272 48 ) metals/mt_pv_m26y -96 0 0 2 2 134217728 8388608 0 +( 1648 272 128 ) ( 1648 256 128 ) ( 1648 256 32 ) metals/mt_pv_m26y -32 0 -180 2 -2.000008 134217728 8388608 0 +( 1680 256 48 ) ( 1648 256 48 ) ( 1664 272 48 ) metals/mt_pv_m26y -31 95 -90 2 2 134217728 8388608 0 +} +} +// entity 933 +{ +"classname" "func_group" +// brush 0 +{ +( 1448 240 32 ) ( 1448 208 32 ) ( 1472 208 32 ) metals/mt_pv_m26y 1 -113 0 2 2 134217728 8388608 0 +( 1448 208 32 ) ( 1448 240 32 ) ( 1456 240 48 ) metals/mt_pv_m26y 112 0 0 2 2 134217728 8388608 0 +( 1448 208 128 ) ( 1472 208 128 ) ( 1472 208 32 ) metals/mt_pv_m26y 0 0 0 2 2.000008 134217728 8388608 0 +( 1472 208 128 ) ( 1472 240 128 ) ( 1472 240 32 ) metals/mt_pv_m26y 112 0 0 2 2 134217728 8388608 0 +( 1472 240 128 ) ( 1448 240 128 ) ( 1448 240 32 ) metals/mt_pv_m26y 0 0 0 2 2.000008 134217728 8388608 0 +( 1456 208 48 ) ( 1456 240 48 ) ( 1472 224 48 ) metals/mt_pv_m26y 1 -113 0 2 2 134217728 8388608 0 +} +// brush 1 +{ +( 1472 208 48 ) ( 1472 240 48 ) ( 1440 240 48 ) metals/mt_pv_m26y 1 -113 0 2 2 134217728 8388608 0 +( 1440 240 224 ) ( 1472 240 224 ) ( 1472 208 224 ) metals/mt_pv_m26y 1 -113 0 2 2 134217728 8388608 0 +( 1456 240 224 ) ( 1456 208 224 ) ( 1456 208 128 ) metals/mt_pv_m26y 112 0 0 2 2 134217728 8388608 0 +( 1440 208 224 ) ( 1472 208 224 ) ( 1472 208 128 ) metals/mt_pv_m26y 0 0 0 2 2.000008 134217728 8388608 0 +( 1472 208 224 ) ( 1472 240 224 ) ( 1472 240 128 ) metals/mt_pv_m26y 112 0 0 2 2 134217728 8388608 0 +( 1472 240 224 ) ( 1440 240 224 ) ( 1440 240 128 ) metals/mt_pv_m26y 0 0 0 2 2.000008 134217728 8388608 0 +} +// brush 2 +{ +( 1440 240 202 ) ( 1440 208 202 ) ( 1456 208 192 ) metals/mt_pv_m26y 1 -113 0 2 2 134217728 8388608 0 +( 1424 240 224 ) ( 1456 240 224 ) ( 1456 208 224 ) metals/mt_pv_m26y 1 -113 0 2 2 134217728 8388608 0 +( 1440 208 202 ) ( 1440 240 202 ) ( 1440 240 224 ) metals/mt_pv_m26y 112 0 0 2 2 134217728 8388608 0 +( 1424 208 224 ) ( 1456 208 224 ) ( 1456 208 128 ) metals/mt_pv_m26y 0 0 0 2 2.000008 134217728 8388608 0 +( 1456 208 224 ) ( 1456 240 224 ) ( 1456 240 128 ) metals/mt_pv_m26y 112 0 0 2 2 134217728 8388608 0 +( 1456 240 224 ) ( 1424 240 224 ) ( 1424 240 128 ) metals/mt_pv_m26y 0 0 0 2 2.000008 134217728 8388608 0 +} +// brush 3 +{ +( 1440 208 202 ) ( 1440 240 202 ) ( 1408 240 208 ) metals/mt_pv_m26y 1 -113 0 2 2 134217728 8388608 0 +( 1392 240 224 ) ( 1424 240 224 ) ( 1424 208 224 ) metals/mt_pv_m26y 1 -113 0 2 2 134217728 8388608 0 +( 1408 208 208 ) ( 1408 240 208 ) ( 1408 240 224 ) metals/mt_pv_m26y 112 0 0 2 2 134217728 8388608 0 +( 1392 208 224 ) ( 1424 208 224 ) ( 1424 208 128 ) metals/mt_pv_m26y 0 0 0 2 2.000008 134217728 8388608 0 +( 1440 240 202 ) ( 1440 208 202 ) ( 1440 208 224 ) metals/mt_pv_m26y 112 0 0 2 2 134217728 8388608 0 +( 1424 240 224 ) ( 1392 240 224 ) ( 1392 240 128 ) metals/mt_pv_m26y 0 0 0 2 2.000008 134217728 8388608 0 +} +// brush 4 +{ +( 1376 208 208 ) ( 1376 240 208 ) ( 1344 240 208 ) metals/mt_pv_m26y 1 -113 0 2 2 134217728 8388608 0 +( 1344 240 224 ) ( 1376 240 224 ) ( 1376 208 224 ) metals/mt_pv_m26y 1 -113 0 2 2 134217728 8388608 0 +( 1344 240 224 ) ( 1344 208 224 ) ( 1344 208 128 ) metals/mt_pv_m26y 112 0 0 2 2 134217728 8388608 0 +( 1344 208 224 ) ( 1376 208 224 ) ( 1376 208 128 ) metals/mt_pv_m26y 0 0 0 2 2.000008 134217728 8388608 0 +( 1408 208 224 ) ( 1408 240 224 ) ( 1408 240 128 ) metals/mt_pv_m26y 112 0 0 2 2 134217728 8388608 0 +( 1376 240 224 ) ( 1344 240 224 ) ( 1344 240 128 ) metals/mt_pv_m26y 0 0 0 2 2.000008 134217728 8388608 0 +} +// brush 5 +{ +( 1312 240 202 ) ( 1312 208 202 ) ( 1344 208 208 ) metals/mt_pv_m26y 1 -113 0 2 2 134217728 8388608 0 +( 1328 240 224 ) ( 1360 240 224 ) ( 1360 208 224 ) metals/mt_pv_m26y 1 -113 0 2 2 134217728 8388608 0 +( 1312 208 202 ) ( 1312 240 202 ) ( 1312 240 224 ) metals/mt_pv_m26y 112 0 0 2 2 134217728 8388608 0 +( 1328 208 224 ) ( 1360 208 224 ) ( 1360 208 128 ) metals/mt_pv_m26y 0 0 0 2 2.000008 134217728 8388608 0 +( 1344 208 224 ) ( 1344 240 224 ) ( 1344 240 128 ) metals/mt_pv_m26y 112 0 0 2 2 134217728 8388608 0 +( 1360 240 224 ) ( 1328 240 224 ) ( 1328 240 128 ) metals/mt_pv_m26y 0 0 0 2 2.000008 134217728 8388608 0 +} +// brush 6 +{ +( 1312 208 202 ) ( 1312 240 202 ) ( 1296 240 192 ) metals/mt_pv_m26y 1 -113 0 2 2 134217728 8388608 0 +( 1296 240 224 ) ( 1328 240 224 ) ( 1328 208 224 ) metals/mt_pv_m26y 1 -113 0 2 2 134217728 8388608 0 +( 1296 240 224 ) ( 1296 208 224 ) ( 1296 208 128 ) metals/mt_pv_m26y 112 0 0 2 2 134217728 8388608 0 +( 1296 208 224 ) ( 1328 208 224 ) ( 1328 208 128 ) metals/mt_pv_m26y 0 0 0 2 2.000008 134217728 8388608 0 +( 1312 240 202 ) ( 1312 208 202 ) ( 1312 208 224 ) metals/mt_pv_m26y 112 0 0 2 2 134217728 8388608 0 +( 1328 240 224 ) ( 1296 240 224 ) ( 1296 240 128 ) metals/mt_pv_m26y 0 0 0 2 2.000008 134217728 8388608 0 +} +// brush 7 +{ +( 1312 208 48 ) ( 1312 240 48 ) ( 1280 240 48 ) metals/mt_pv_m26y 1 -113 0 2 2 134217728 8388608 0 +( 1280 240 224 ) ( 1312 240 224 ) ( 1312 208 224 ) metals/mt_pv_m26y 1 -113 0 2 2 134217728 8388608 0 +( 1280 240 224 ) ( 1280 208 224 ) ( 1280 208 128 ) metals/mt_pv_m26y 112 0 0 2 2 134217728 8388608 0 +( 1280 208 224 ) ( 1312 208 224 ) ( 1312 208 128 ) metals/mt_pv_m26y 0 0 0 2 2.000008 134217728 8388608 0 +( 1296 208 80 ) ( 1296 240 80 ) ( 1296 240 -16 ) metals/mt_pv_m26y 112 0 0 2 2 134217728 8388608 0 +( 1312 240 224 ) ( 1280 240 224 ) ( 1280 240 128 ) metals/mt_pv_m26y 0 0 0 2 2.000008 134217728 8388608 0 +} +// brush 8 +{ +( 1304 208 32 ) ( 1304 240 32 ) ( 1280 240 32 ) metals/mt_pv_m26y 1 -113 0 2 2 134217728 8388608 0 +( 1280 240 128 ) ( 1280 208 128 ) ( 1280 208 32 ) metals/mt_pv_m26y 112 0 0 2 2 134217728 8388608 0 +( 1304 208 32 ) ( 1288 208 32 ) ( 1280 208 48 ) metals/mt_pv_m26y 0 0 0 2 2.000008 134217728 8388608 0 +( 1304 240 32 ) ( 1304 208 32 ) ( 1296 208 48 ) metals/mt_pv_m26y 112 0 0 2 2 134217728 8388608 0 +( 1296 240 128 ) ( 1280 240 128 ) ( 1280 240 32 ) metals/mt_pv_m26y 0 0 0 2 2.000008 134217728 8388608 0 +( 1280 208 48 ) ( 1280 240 48 ) ( 1296 224 48 ) metals/mt_pv_m26y 1 -113 0 2 2 134217728 8388608 0 +} +} +// entity 934 +{ +"classname" "func_group" +// brush 0 +{ +( 936 -176 32 ) ( 936 -208 32 ) ( 960 -208 32 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 936 -208 32 ) ( 936 -176 32 ) ( 944 -176 48 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 936 -208 128 ) ( 960 -208 128 ) ( 960 -208 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 960 -208 128 ) ( 960 -176 128 ) ( 960 -176 32 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 960 -176 128 ) ( 936 -176 128 ) ( 936 -176 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 944 -208 48 ) ( 944 -176 48 ) ( 960 -192 48 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +} +// brush 1 +{ +( 960 -208 48 ) ( 960 -176 48 ) ( 928 -176 48 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 928 -176 224 ) ( 960 -176 224 ) ( 960 -208 224 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 944 -176 224 ) ( 944 -208 224 ) ( 944 -208 128 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 928 -208 224 ) ( 960 -208 224 ) ( 960 -208 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 960 -208 224 ) ( 960 -176 224 ) ( 960 -176 128 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 960 -176 224 ) ( 928 -176 224 ) ( 928 -176 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 2 +{ +( 928 -176 202 ) ( 928 -208 202 ) ( 944 -208 192 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 912 -176 224 ) ( 944 -176 224 ) ( 944 -208 224 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 928 -208 202 ) ( 928 -176 202 ) ( 928 -176 224 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 912 -208 224 ) ( 944 -208 224 ) ( 944 -208 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 944 -208 224 ) ( 944 -176 224 ) ( 944 -176 128 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 944 -176 224 ) ( 912 -176 224 ) ( 912 -176 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 3 +{ +( 928 -208 202 ) ( 928 -176 202 ) ( 896 -176 208 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 880 -176 224 ) ( 912 -176 224 ) ( 912 -208 224 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 896 -208 208 ) ( 896 -176 208 ) ( 896 -176 224 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 880 -208 224 ) ( 912 -208 224 ) ( 912 -208 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 928 -176 202 ) ( 928 -208 202 ) ( 928 -208 224 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 912 -176 224 ) ( 880 -176 224 ) ( 880 -176 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 4 +{ +( 864 -208 208 ) ( 864 -176 208 ) ( 832 -176 208 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 832 -176 224 ) ( 864 -176 224 ) ( 864 -208 224 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 832 -176 224 ) ( 832 -208 224 ) ( 832 -208 128 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 832 -208 224 ) ( 864 -208 224 ) ( 864 -208 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 896 -208 224 ) ( 896 -176 224 ) ( 896 -176 128 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 864 -176 224 ) ( 832 -176 224 ) ( 832 -176 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 5 +{ +( 800 -176 202 ) ( 800 -208 202 ) ( 832 -208 208 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 816 -176 224 ) ( 848 -176 224 ) ( 848 -208 224 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 800 -208 202 ) ( 800 -176 202 ) ( 800 -176 224 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 816 -208 224 ) ( 848 -208 224 ) ( 848 -208 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 832 -208 224 ) ( 832 -176 224 ) ( 832 -176 128 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 848 -176 224 ) ( 816 -176 224 ) ( 816 -176 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 6 +{ +( 800 -208 202 ) ( 800 -176 202 ) ( 784 -176 192 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 784 -176 224 ) ( 816 -176 224 ) ( 816 -208 224 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 784 -176 224 ) ( 784 -208 224 ) ( 784 -208 128 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 784 -208 224 ) ( 816 -208 224 ) ( 816 -208 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 800 -176 202 ) ( 800 -208 202 ) ( 800 -208 224 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 816 -176 224 ) ( 784 -176 224 ) ( 784 -176 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 7 +{ +( 800 -208 48 ) ( 800 -176 48 ) ( 768 -176 48 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 768 -176 224 ) ( 800 -176 224 ) ( 800 -208 224 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 768 -176 224 ) ( 768 -208 224 ) ( 768 -208 128 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 768 -208 224 ) ( 800 -208 224 ) ( 800 -208 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 784 -208 80 ) ( 784 -176 80 ) ( 784 -176 -16 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 800 -176 224 ) ( 768 -176 224 ) ( 768 -176 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 8 +{ +( 792 -208 32 ) ( 792 -176 32 ) ( 768 -176 32 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 768 -176 128 ) ( 768 -208 128 ) ( 768 -208 32 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 792 -208 32 ) ( 776 -208 32 ) ( 768 -208 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 792 -176 32 ) ( 792 -208 32 ) ( 784 -208 48 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 784 -176 128 ) ( 768 -176 128 ) ( 768 -176 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 768 -208 48 ) ( 768 -176 48 ) ( 784 -192 48 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +} +} +// entity 935 +{ +"classname" "func_group" +// brush 0 +{ +( 936 -432 32 ) ( 936 -464 32 ) ( 960 -464 32 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 936 -464 32 ) ( 936 -432 32 ) ( 944 -432 48 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 936 -464 128 ) ( 960 -464 128 ) ( 960 -464 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 960 -464 128 ) ( 960 -432 128 ) ( 960 -432 32 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 960 -432 128 ) ( 936 -432 128 ) ( 936 -432 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 944 -464 48 ) ( 944 -432 48 ) ( 960 -448 48 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +} +// brush 1 +{ +( 960 -464 48 ) ( 960 -432 48 ) ( 928 -432 48 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 928 -432 224 ) ( 960 -432 224 ) ( 960 -464 224 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 944 -432 224 ) ( 944 -464 224 ) ( 944 -464 128 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 928 -464 224 ) ( 960 -464 224 ) ( 960 -464 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 960 -464 224 ) ( 960 -432 224 ) ( 960 -432 128 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 960 -432 224 ) ( 928 -432 224 ) ( 928 -432 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 2 +{ +( 928 -432 202 ) ( 928 -464 202 ) ( 944 -464 192 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 912 -432 224 ) ( 944 -432 224 ) ( 944 -464 224 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 928 -464 202 ) ( 928 -432 202 ) ( 928 -432 224 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 912 -464 224 ) ( 944 -464 224 ) ( 944 -464 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 944 -464 224 ) ( 944 -432 224 ) ( 944 -432 128 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 944 -432 224 ) ( 912 -432 224 ) ( 912 -432 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 3 +{ +( 928 -464 202 ) ( 928 -432 202 ) ( 896 -432 208 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 880 -432 224 ) ( 912 -432 224 ) ( 912 -464 224 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 896 -464 208 ) ( 896 -432 208 ) ( 896 -432 224 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 880 -464 224 ) ( 912 -464 224 ) ( 912 -464 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 928 -432 202 ) ( 928 -464 202 ) ( 928 -464 224 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 912 -432 224 ) ( 880 -432 224 ) ( 880 -432 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 4 +{ +( 864 -464 208 ) ( 864 -432 208 ) ( 832 -432 208 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 832 -432 224 ) ( 864 -432 224 ) ( 864 -464 224 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 832 -432 224 ) ( 832 -464 224 ) ( 832 -464 128 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 832 -464 224 ) ( 864 -464 224 ) ( 864 -464 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 896 -464 224 ) ( 896 -432 224 ) ( 896 -432 128 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 864 -432 224 ) ( 832 -432 224 ) ( 832 -432 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 5 +{ +( 800 -432 202 ) ( 800 -464 202 ) ( 832 -464 208 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 816 -432 224 ) ( 848 -432 224 ) ( 848 -464 224 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 800 -464 202 ) ( 800 -432 202 ) ( 800 -432 224 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 816 -464 224 ) ( 848 -464 224 ) ( 848 -464 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 832 -464 224 ) ( 832 -432 224 ) ( 832 -432 128 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 848 -432 224 ) ( 816 -432 224 ) ( 816 -432 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 6 +{ +( 800 -464 202 ) ( 800 -432 202 ) ( 784 -432 192 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 784 -432 224 ) ( 816 -432 224 ) ( 816 -464 224 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 784 -432 224 ) ( 784 -464 224 ) ( 784 -464 128 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 784 -464 224 ) ( 816 -464 224 ) ( 816 -464 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 800 -432 202 ) ( 800 -464 202 ) ( 800 -464 224 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 816 -432 224 ) ( 784 -432 224 ) ( 784 -432 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 7 +{ +( 800 -464 48 ) ( 800 -432 48 ) ( 768 -432 48 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 768 -432 224 ) ( 800 -432 224 ) ( 800 -464 224 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 768 -432 224 ) ( 768 -464 224 ) ( 768 -464 128 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 768 -464 224 ) ( 800 -464 224 ) ( 800 -464 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 784 -464 80 ) ( 784 -432 80 ) ( 784 -432 -16 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 800 -432 224 ) ( 768 -432 224 ) ( 768 -432 128 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +} +// brush 8 +{ +( 792 -464 32 ) ( 792 -432 32 ) ( 768 -432 32 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +( 768 -432 128 ) ( 768 -464 128 ) ( 768 -464 32 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 792 -464 32 ) ( 776 -464 32 ) ( 768 -464 48 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 792 -432 32 ) ( 792 -464 32 ) ( 784 -464 48 ) metals/mt_pv_m26y 64 0 0 2 2 134217728 8388608 0 +( 784 -432 128 ) ( 768 -432 128 ) ( 768 -432 32 ) metals/mt_pv_m26y 0 0 0 2 2 134217728 8388608 0 +( 768 -464 48 ) ( 768 -432 48 ) ( 784 -448 48 ) metals/mt_pv_m26y 0 -64 0 2 2 134217728 8388608 0 +} +} +// entity 936 +{ +"classname" "func_group" +// brush 0 +{ +( 1040 -680 32 ) ( 1008 -680 32 ) ( 1008 -704 32 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1008 -680 32 ) ( 1040 -680 32 ) ( 1040 -688 48 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1008 -680 128 ) ( 1008 -704 128 ) ( 1008 -704 32 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1008 -704 128 ) ( 1040 -704 128 ) ( 1040 -704 32 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1040 -704 128 ) ( 1040 -680 128 ) ( 1040 -680 32 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1008 -688 48 ) ( 1040 -688 48 ) ( 1024 -704 48 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +} +// brush 1 +{ +( 1008 -704 48 ) ( 1040 -704 48 ) ( 1040 -672 48 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1040 -672 224 ) ( 1040 -704 224 ) ( 1008 -704 224 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1040 -688 224 ) ( 1008 -688 224 ) ( 1008 -688 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1008 -672 224 ) ( 1008 -704 224 ) ( 1008 -704 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1008 -704 224 ) ( 1040 -704 224 ) ( 1040 -704 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1040 -704 224 ) ( 1040 -672 224 ) ( 1040 -672 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +} +// brush 2 +{ +( 1040 -672 202 ) ( 1008 -672 202 ) ( 1008 -688 192 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1040 -656 224 ) ( 1040 -688 224 ) ( 1008 -688 224 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1008 -672 202 ) ( 1040 -672 202 ) ( 1040 -672 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1008 -656 224 ) ( 1008 -688 224 ) ( 1008 -688 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1008 -688 224 ) ( 1040 -688 224 ) ( 1040 -688 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1040 -688 224 ) ( 1040 -656 224 ) ( 1040 -656 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +} +// brush 3 +{ +( 1008 -672 202 ) ( 1040 -672 202 ) ( 1040 -640 208 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1040 -624 224 ) ( 1040 -656 224 ) ( 1008 -656 224 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1008 -640 208 ) ( 1040 -640 208 ) ( 1040 -640 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1008 -624 224 ) ( 1008 -656 224 ) ( 1008 -656 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1040 -672 202 ) ( 1008 -672 202 ) ( 1008 -672 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1040 -656 224 ) ( 1040 -624 224 ) ( 1040 -624 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +} +// brush 4 +{ +( 1008 -608 208 ) ( 1040 -608 208 ) ( 1040 -576 208 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1040 -576 224 ) ( 1040 -608 224 ) ( 1008 -608 224 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1040 -576 224 ) ( 1008 -576 224 ) ( 1008 -576 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1008 -576 224 ) ( 1008 -608 224 ) ( 1008 -608 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1008 -640 224 ) ( 1040 -640 224 ) ( 1040 -640 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1040 -608 224 ) ( 1040 -576 224 ) ( 1040 -576 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +} +// brush 5 +{ +( 1040 -544 202 ) ( 1008 -544 202 ) ( 1008 -576 208 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1040 -560 224 ) ( 1040 -592 224 ) ( 1008 -592 224 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1008 -544 202 ) ( 1040 -544 202 ) ( 1040 -544 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1008 -560 224 ) ( 1008 -592 224 ) ( 1008 -592 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1008 -576 224 ) ( 1040 -576 224 ) ( 1040 -576 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1040 -592 224 ) ( 1040 -560 224 ) ( 1040 -560 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +} +// brush 6 +{ +( 1008 -544 202 ) ( 1040 -544 202 ) ( 1040 -528 192 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1040 -528 224 ) ( 1040 -560 224 ) ( 1008 -560 224 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1040 -528 224 ) ( 1008 -528 224 ) ( 1008 -528 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1008 -528 224 ) ( 1008 -560 224 ) ( 1008 -560 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1040 -544 202 ) ( 1008 -544 202 ) ( 1008 -544 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1040 -560 224 ) ( 1040 -528 224 ) ( 1040 -528 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +} +// brush 7 +{ +( 1008 -544 48 ) ( 1040 -544 48 ) ( 1040 -512 48 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1040 -512 224 ) ( 1040 -544 224 ) ( 1008 -544 224 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1040 -512 224 ) ( 1008 -512 224 ) ( 1008 -512 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1008 -512 224 ) ( 1008 -544 224 ) ( 1008 -544 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1008 -528 80 ) ( 1040 -528 80 ) ( 1040 -528 -16 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1040 -544 224 ) ( 1040 -512 224 ) ( 1040 -512 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +} +// brush 8 +{ +( 1008 -536 32 ) ( 1040 -536 32 ) ( 1040 -512 32 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1040 -512 128 ) ( 1008 -512 128 ) ( 1008 -512 32 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1008 -536 32 ) ( 1008 -520 32 ) ( 1008 -512 48 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1040 -536 32 ) ( 1008 -536 32 ) ( 1008 -528 48 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1040 -528 128 ) ( 1040 -512 128 ) ( 1040 -512 32 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1008 -512 48 ) ( 1040 -512 48 ) ( 1024 -528 48 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +} +} +// entity 937 +{ +"classname" "func_group" +// brush 0 +{ +( 1296 -680 32 ) ( 1264 -680 32 ) ( 1264 -704 32 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1264 -680 32 ) ( 1296 -680 32 ) ( 1296 -688 48 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1264 -680 128 ) ( 1264 -704 128 ) ( 1264 -704 32 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1264 -704 128 ) ( 1296 -704 128 ) ( 1296 -704 32 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1296 -704 128 ) ( 1296 -680 128 ) ( 1296 -680 32 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1264 -688 48 ) ( 1296 -688 48 ) ( 1280 -704 48 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +} +// brush 1 +{ +( 1264 -704 48 ) ( 1296 -704 48 ) ( 1296 -672 48 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1296 -672 224 ) ( 1296 -704 224 ) ( 1264 -704 224 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1296 -688 224 ) ( 1264 -688 224 ) ( 1264 -688 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1264 -672 224 ) ( 1264 -704 224 ) ( 1264 -704 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1264 -704 224 ) ( 1296 -704 224 ) ( 1296 -704 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1296 -704 224 ) ( 1296 -672 224 ) ( 1296 -672 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +} +// brush 2 +{ +( 1296 -672 202 ) ( 1264 -672 202 ) ( 1264 -688 192 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1296 -656 224 ) ( 1296 -688 224 ) ( 1264 -688 224 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1264 -672 202 ) ( 1296 -672 202 ) ( 1296 -672 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1264 -656 224 ) ( 1264 -688 224 ) ( 1264 -688 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1264 -688 224 ) ( 1296 -688 224 ) ( 1296 -688 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1296 -688 224 ) ( 1296 -656 224 ) ( 1296 -656 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +} +// brush 3 +{ +( 1264 -672 202 ) ( 1296 -672 202 ) ( 1296 -640 208 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1296 -624 224 ) ( 1296 -656 224 ) ( 1264 -656 224 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1264 -640 208 ) ( 1296 -640 208 ) ( 1296 -640 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1264 -624 224 ) ( 1264 -656 224 ) ( 1264 -656 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1296 -672 202 ) ( 1264 -672 202 ) ( 1264 -672 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1296 -656 224 ) ( 1296 -624 224 ) ( 1296 -624 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +} +// brush 4 +{ +( 1264 -608 208 ) ( 1296 -608 208 ) ( 1296 -576 208 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1296 -576 224 ) ( 1296 -608 224 ) ( 1264 -608 224 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1296 -576 224 ) ( 1264 -576 224 ) ( 1264 -576 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1264 -576 224 ) ( 1264 -608 224 ) ( 1264 -608 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1264 -640 224 ) ( 1296 -640 224 ) ( 1296 -640 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1296 -608 224 ) ( 1296 -576 224 ) ( 1296 -576 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +} +// brush 5 +{ +( 1296 -544 202 ) ( 1264 -544 202 ) ( 1264 -576 208 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1296 -560 224 ) ( 1296 -592 224 ) ( 1264 -592 224 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1264 -544 202 ) ( 1296 -544 202 ) ( 1296 -544 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1264 -560 224 ) ( 1264 -592 224 ) ( 1264 -592 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1264 -576 224 ) ( 1296 -576 224 ) ( 1296 -576 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1296 -592 224 ) ( 1296 -560 224 ) ( 1296 -560 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +} +// brush 6 +{ +( 1264 -544 202 ) ( 1296 -544 202 ) ( 1296 -528 192 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1296 -528 224 ) ( 1296 -560 224 ) ( 1264 -560 224 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1296 -528 224 ) ( 1264 -528 224 ) ( 1264 -528 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1264 -528 224 ) ( 1264 -560 224 ) ( 1264 -560 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1296 -544 202 ) ( 1264 -544 202 ) ( 1264 -544 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1296 -560 224 ) ( 1296 -528 224 ) ( 1296 -528 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +} +// brush 7 +{ +( 1264 -544 48 ) ( 1296 -544 48 ) ( 1296 -512 48 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1296 -512 224 ) ( 1296 -544 224 ) ( 1264 -544 224 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1296 -512 224 ) ( 1264 -512 224 ) ( 1264 -512 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1264 -512 224 ) ( 1264 -544 224 ) ( 1264 -544 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1264 -528 80 ) ( 1296 -528 80 ) ( 1296 -528 -16 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1296 -544 224 ) ( 1296 -512 224 ) ( 1296 -512 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +} +// brush 8 +{ +( 1264 -536 32 ) ( 1296 -536 32 ) ( 1296 -512 32 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1296 -512 128 ) ( 1264 -512 128 ) ( 1264 -512 32 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1264 -536 32 ) ( 1264 -520 32 ) ( 1264 -512 48 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1296 -536 32 ) ( 1264 -536 32 ) ( 1264 -528 48 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1296 -528 128 ) ( 1296 -512 128 ) ( 1296 -512 32 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1264 -512 48 ) ( 1296 -512 48 ) ( 1280 -528 48 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +} +} +// entity 938 +{ +"classname" "func_group" +// brush 0 +{ +( 1552 -680 32 ) ( 1520 -680 32 ) ( 1520 -704 32 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1520 -680 32 ) ( 1552 -680 32 ) ( 1552 -688 48 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1520 -680 128 ) ( 1520 -704 128 ) ( 1520 -704 32 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1520 -704 128 ) ( 1552 -704 128 ) ( 1552 -704 32 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1552 -704 128 ) ( 1552 -680 128 ) ( 1552 -680 32 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1520 -688 48 ) ( 1552 -688 48 ) ( 1536 -704 48 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +} +// brush 1 +{ +( 1520 -704 48 ) ( 1552 -704 48 ) ( 1552 -672 48 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1552 -672 224 ) ( 1552 -704 224 ) ( 1520 -704 224 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1552 -688 224 ) ( 1520 -688 224 ) ( 1520 -688 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1520 -672 224 ) ( 1520 -704 224 ) ( 1520 -704 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1520 -704 224 ) ( 1552 -704 224 ) ( 1552 -704 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1552 -704 224 ) ( 1552 -672 224 ) ( 1552 -672 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +} +// brush 2 +{ +( 1552 -672 202 ) ( 1520 -672 202 ) ( 1520 -688 192 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1552 -656 224 ) ( 1552 -688 224 ) ( 1520 -688 224 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1520 -672 202 ) ( 1552 -672 202 ) ( 1552 -672 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1520 -656 224 ) ( 1520 -688 224 ) ( 1520 -688 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1520 -688 224 ) ( 1552 -688 224 ) ( 1552 -688 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1552 -688 224 ) ( 1552 -656 224 ) ( 1552 -656 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +} +// brush 3 +{ +( 1520 -672 202 ) ( 1552 -672 202 ) ( 1552 -640 208 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1552 -624 224 ) ( 1552 -656 224 ) ( 1520 -656 224 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1520 -640 208 ) ( 1552 -640 208 ) ( 1552 -640 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1520 -624 224 ) ( 1520 -656 224 ) ( 1520 -656 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1552 -672 202 ) ( 1520 -672 202 ) ( 1520 -672 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1552 -656 224 ) ( 1552 -624 224 ) ( 1552 -624 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +} +// brush 4 +{ +( 1520 -608 208 ) ( 1552 -608 208 ) ( 1552 -576 208 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1552 -576 224 ) ( 1552 -608 224 ) ( 1520 -608 224 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1552 -576 224 ) ( 1520 -576 224 ) ( 1520 -576 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1520 -576 224 ) ( 1520 -608 224 ) ( 1520 -608 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1520 -640 224 ) ( 1552 -640 224 ) ( 1552 -640 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1552 -608 224 ) ( 1552 -576 224 ) ( 1552 -576 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +} +// brush 5 +{ +( 1552 -544 202 ) ( 1520 -544 202 ) ( 1520 -576 208 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1552 -560 224 ) ( 1552 -592 224 ) ( 1520 -592 224 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1520 -544 202 ) ( 1552 -544 202 ) ( 1552 -544 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1520 -560 224 ) ( 1520 -592 224 ) ( 1520 -592 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1520 -576 224 ) ( 1552 -576 224 ) ( 1552 -576 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1552 -592 224 ) ( 1552 -560 224 ) ( 1552 -560 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +} +// brush 6 +{ +( 1520 -544 202 ) ( 1552 -544 202 ) ( 1552 -528 192 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1552 -528 224 ) ( 1552 -560 224 ) ( 1520 -560 224 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1552 -528 224 ) ( 1520 -528 224 ) ( 1520 -528 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1520 -528 224 ) ( 1520 -560 224 ) ( 1520 -560 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1552 -544 202 ) ( 1520 -544 202 ) ( 1520 -544 224 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1552 -560 224 ) ( 1552 -528 224 ) ( 1552 -528 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +} +// brush 7 +{ +( 1520 -544 48 ) ( 1552 -544 48 ) ( 1552 -512 48 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1552 -512 224 ) ( 1552 -544 224 ) ( 1520 -544 224 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1552 -512 224 ) ( 1520 -512 224 ) ( 1520 -512 128 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1520 -512 224 ) ( 1520 -544 224 ) ( 1520 -544 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1520 -528 80 ) ( 1552 -528 80 ) ( 1552 -528 -16 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1552 -544 224 ) ( 1552 -512 224 ) ( 1552 -512 128 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +} +// brush 8 +{ +( 1520 -536 32 ) ( 1552 -536 32 ) ( 1552 -512 32 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +( 1552 -512 128 ) ( 1520 -512 128 ) ( 1520 -512 32 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1520 -536 32 ) ( 1520 -520 32 ) ( 1520 -512 48 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1552 -536 32 ) ( 1520 -536 32 ) ( 1520 -528 48 ) metals/mt_pv_m26y 96 0 -180 2 -2 134217728 8388608 0 +( 1552 -528 128 ) ( 1552 -512 128 ) ( 1552 -512 32 ) metals/mt_pv_m26y 96 0 0 2 2 134217728 8388608 0 +( 1520 -512 48 ) ( 1552 -512 48 ) ( 1536 -528 48 ) metals/mt_pv_m26y 96 -95 90 2 2 134217728 8388608 0 +} +} +// entity 939 +{ +"classname" "func_group" +// brush 0 +{ +( -144 320 192 ) ( -160 328 184 ) ( -144 338 184 ) metals/mt_pv_m26y -49 63 -180 1 1 134217728 8388608 0 +( -144 320 192 ) ( -160 312 184 ) ( -160 328 184 ) metals/mt_pv_m26y -49 63 -180 1 1 134217728 8388608 0 +( -144 302 184 ) ( -160 312 184 ) ( -144 320 192 ) metals/mt_pv_m26y -49 63 -180 1 1 134217728 8388608 0 +( -144 320 192 ) ( -128 312 184 ) ( -144 302 184 ) metals/mt_pv_m26y -49 63 -180 1 1 134217728 8388608 0 +( -144 320 192 ) ( -128 328 184 ) ( -128 312 184 ) metals/mt_pv_m26y -49 63 -180 1 1 134217728 8388608 0 +( -144 338 184 ) ( -128 328 184 ) ( -144 320 192 ) metals/mt_pv_m26y -49 63 -180 1 1 134217728 8388608 0 +( -128 312 184 ) ( -128 328 184 ) ( -144 338 184 ) common/li_mf_v12c 0 16 0 1 1 134217728 8388609 35000 +} +// brush 1 +{ +( -143 321 255 ) ( -143 317 255 ) ( -147 317 255 ) metals/mt_pv_m26y -64 -2 -180 0.500000 0.500000 134217728 8390656 0 +( -143 321 173 ) ( -143 321 175 ) ( -147 321 175 ) metals/mt_pv_m26y -63 -30 -180 0.500000 -0.500000 134217728 8390656 0 +( -143 321 236 ) ( -144 319 236 ) ( -144 319 251 ) metals/mt_pv_m26y 0 -31 -180 0.500000 -0.500000 134217728 8390656 0 +( -121 343 192 ) ( -165 291 192 ) ( -121 291 192 ) metals/mt_pv_m26y -64 -2 -180 0.500000 0.500000 134217728 8390656 0 +( -145 321 207 ) ( -144 319 207 ) ( -144 319 192 ) metals/mt_pv_m26y 33 -17 -180 0.500000 -0.500000 134217728 8390656 0 +} +} diff --git a/gamesrc/AI_BITCH.C b/gamesrc/AI_BITCH.C new file mode 100644 index 0000000..68e0a22 --- /dev/null +++ b/gamesrc/AI_BITCH.C @@ -0,0 +1,1375 @@ +#include "g_local.h" +#include "ai_bitch.h" + +#include "voice_bitch.h" + +void bitch_end_kneel_attack( edict_t *self ); +void bitch_talk( edict_t *self ); +void bitch_end_stand( edict_t *self ); +void bitch_kneel_shoot( edict_t *self ); +void bitch_talk_think( edict_t *self ); + +void bitch_firegun( edict_t *self, vec3_t ofs ); +void bitch_right_fire( edict_t *self ); +void bitch_left_fire( edict_t *self ); +void bitch_firegun_right( edict_t *self ); +void bitch_firegun_left( edict_t *self ); + +void bitch_show_guns( edict_t *self ); +void bitch_climb_loop( edict_t *self ); +void bitch_melee( edict_t *self ); + +void bitch_evade_amb( edict_t *self ); + +void bitch_melee_bail (edict_t *self); +void bitch_evade_checkadjust (edict_t *self); +void bitch_evade_adjust( edict_t *self ); + +#define BITCH_MELEE 64 // spawnflag +#define BITCH_NOWEAPON 128 + +// ========================================================================= + +#include "ai_bitch_tables.h" + +// ========================================================================= + +void bitch_backoff( edict_t *self, edict_t *other ) +{ + Voice_Random( self, other, f_backoff, F_NUM_BACKOFF ); +} + +void bitch_catch_fire( edict_t *self, edict_t *other ) +{ + self->enemy = NULL; // stop attacking + self->cast_info.currentmove = &bitch_move_run_on_fire; +} + +void bitch_evade_amb( edict_t *self ) +{ + // self->cast_info.currentmove = &bitch_move_evade_amb; + self->cast_info.currentmove = &bitch_move_evd_amb; +} + +void bitch_evade_checkadjust( edict_t *self ) +{ + if (self->enemy && !directly_infront(self, self->enemy )) + self->cast_info.currentmove = &bitch_move_evade_adjust; +} + +void bitch_evade_adjust (edict_t *self ) +{ + vec3_t vec; + + if (!self->enemy) + return; + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + self->ideal_yaw = vectoyaw( vec ); +} + + +void bitch_end_kneel_attack( edict_t *self ) +{ + AI_EndAttack(self); + + if (self->cast_info.currentmove == self->cast_info.move_stand) + // self->cast_info.currentmove = &bitch_move_kneel_up; + // we dont have a crouch kneel up + self->cast_info.currentmove = &bitch4_move_crch_amb_std; +} + + +void bitch_talk_think( edict_t *self ) +{ + AI_TalkThink( self, false ); +} + +void bitch_talk( edict_t *self ) +{ + float rnd; + + // only make talking gesture if we've recently said something + if (!(self->cast_info.aiflags & AI_REPEAT_TALK_JESTURE) && self->last_talk_time < (level.time - 1.0)) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + if (self->cast_info.currentmove != self->cast_info.move_stand) + return; + + rnd = random() * 10; + + if (rnd < 1) + self->cast_info.currentmove = &bitch_move_leanlook; + else if (rnd < 2) + self->cast_info.currentmove = &bitch_move_whatsup; + else if (rnd < 3) + self->cast_info.currentmove = &bitch_move_talkme; + else if (rnd < 4) + self->cast_info.currentmove = &bitch_move_nonono; + else if (rnd < 5) + self->cast_info.currentmove = &bitch_move_comeon; + else if (rnd < 6) + self->cast_info.currentmove = &bitch_move_getdown; + else if (rnd < 7) + self->cast_info.currentmove = &bitch_move_whomw; + else if (rnd < 8) + self->cast_info.currentmove = &bitch_move_lookself; + else // if (rnd < 9) + self->cast_info.currentmove = &bitch_move_flirt; +} + + +void bitch_avoid ( edict_t *self, edict_t *other, qboolean face ) +{ + vec3_t vec; + + if (self->health <= 0) + return; + + if (!self->groundentity) + return; + + self->cast_info.last_avoid = level.time; + self->cast_info.avoid_ent = NULL; + + if (face) + { // turn to face them + VectorSubtract( other->s.origin, self->s.origin, vec ); + self->cast_info.avoid_ent = other; + } + else + { // turn to face away from them + VectorSubtract( self->s.origin, other->s.origin, vec ); + } + VectorNormalize( vec ); + + self->ideal_yaw = vectoyaw( vec ); + + if (self->maxs[2] > DUCKING_MAX_Z) + { + if (self->cast_info.aiflags & AI_NOWALK_FACE) + { +// if (face) + { + int side_result; + + side_result = AI_SideTrace( self, 48, 90, SIDE_RANDOM ); + + if (side_result == AI_SideTrace( self, 48, 90 + (self->ideal_yaw - self->s.angles[YAW]), side_result )) + { + if (side_result < 0) + self->cast_info.currentmove = &bitch4_move_lside_step; + else + self->cast_info.currentmove = &bitch4_move_rside_step; + + return; + } + + // if no move set, just turn to face + M_ChangeYaw( self ); + + return; + } + } + + if ((VectorDistance( self->s.origin, other->s.origin ) > 72) || !face) + self->cast_info.currentmove = &bitch_move_avoid_walk; + else + self->cast_info.currentmove = &bitch_move_avoid_reverse_walk; + } + else + { + self->cast_info.currentmove = &bitch_move_crch_avoid_walk; + } + +} + +void bitch_end_stand( edict_t *self ) +{ + + if (self->cast_info.move_stand_evade && (self->last_stand_evade > (level.time - 3))) + return; + + //if (self->cast_info.currentmove == self->cast_info.move_crstand) + // return; + +// if ( ((!self->cast_group) && (random() < 0.8)) +// || ((self->cast_group) && (random() < 0.3))) + { // stand normally + + self->cast_info.currentmove = self->cast_info.move_stand; + +// return; + } + + AI_CheckTalk(self); +} + +void bitch_show_guns( edict_t *self ) +{ + self->s.model_parts[PART_GUN].invisible_objects = 0; +} + + +void bitch_kneel_shoot( edict_t *self ) +{ + // self->cast_info.currentmove = &bitch_move_knl_shoot; + self->cast_info.currentmove = &bitch4_move_crch_shoot; +} + +void bitch_melee_bail (edict_t *self) +{ + vec3_t vec; + float dist; + + if (self->enemy) + { + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + dist = VectorNormalize( vec ); + + if (dist > 48) + { +// AI_EndAttack(self); + self->cast_info.currentmove = &bitch4_move_run_melee; + return; + } + } + +} + +void bitch_long_attack( edict_t *self ) +{ + int rnd; + + // keep running, and try to fire if possible + + if (self->maxs[2] < self->cast_info.standing_max_z) + return; + + if (self->s.model_parts[PART_GUN].invisible_objects) + { // pull guns out + + // note to self dont have this animation yet + + self->cast_info.currentmove = &bitch_move_pull_gun; + return; + } + + //if (self->moral > MORAL_NORMAL) + rnd = rand()%10; + + + if (rnd > 8) + self->cast_info.currentmove = &bitch_move_shoot_stand; + else + self->cast_info.currentmove = &bitch_move_run_shoot; +} + +qboolean bitch_attack( edict_t *self ) +{ + vec3_t vec; + float dist; + + int rnd; + + // this is where we would start some of the fancy side-ways or rolling attacks + + if (self->maxs[2] < self->cast_info.standing_max_z) + { + if (self->cast_info.aiflags & AI_MELEE) + { // try to stand at all costs + self->maxs[2] = self->cast_info.standing_max_z; + + if (ValidBoxAtLoc( self->s.origin, self->mins, self->maxs, self, MASK_PLAYERSOLID )) + goto standing; + + self->maxs[2] = DUCKING_MAX_Z; + return false; // can't attack + } + + if (self->s.model_parts[PART_GUN].invisible_objects) + { // pull guns out + self->s.model_parts[PART_GUN].invisible_objects = 0; + } + + self->cast_info.currentmove = &bitch4_move_crch_shoot; + + return true; + } + +standing: + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + dist = VectorNormalize( vec ); + + + + if (self->cast_info.aiflags & AI_MELEE) + { + qboolean attack=false; + + if (dist < 64) + { + attack = true; + } + else // are they running towards us? + { + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + VectorMA( vec, 0.5, self->enemy->velocity, vec ); + dist = VectorNormalize( vec ); + + if (dist < 64) + { + attack = true; + } + } + + if (attack) + { + int rnd; + + self->ideal_yaw = vectoyaw(vec); + M_ChangeYaw( self ); + + Voice_Random( self, self->enemy, f_grunting, 5); + + rnd = rand()%4; + + switch (rnd) + { + case 0 : + self->cast_info.currentmove = &bitch4_move_melee1; + break; + case 1 : + self->cast_info.currentmove = &bitch4_move_melee3; + break; + /* + // moves are messed up + case 2 : + self->cast_info.currentmove = &bitch4_move_melee2; + break; + case 3 : + self->cast_info.currentmove = &bitch4_move_melee3; + break; + */ + } + + if (self->maxs[2] > self->enemy->maxs[2] || self->s.origin[2] > self->enemy->s.origin[2]) + self->cast_info.currentmove = &bitch4_move_low_melee1; + + return true; + } + else if (dist < 128) + { + self->ideal_yaw = vectoyaw(vec); + M_ChangeYaw( self ); + + self->cast_info.currentmove = &bitch4_move_run_melee; + return true; + } + else if (dist < 400) + self->cast_info.aiflags |= AI_RUSH_THE_PLAYER; + + return false; + } + + + // we can shoot and gun (not melee) + + if (self->s.model_parts[PART_GUN].invisible_objects) + { // pull guns out + self->cast_info.currentmove = &bitch_move_pull_gun; + return true; + } + + if ( (dist < 384) // they're close + && (self->enemy->client) + && (self->enemy->client->pers.weapon) + && (stricmp(self->enemy->client->pers.weapon->classname, "weapon_flamethrower") == 0)) + { + int side_result; + + // see if we can go backwards + if (side_result = AI_SideTrace( self, -64, 0, 1 )) + { + self->cast_info.currentmove = &bitch_move_reverse_run_shoot; + return true; + } + + } + + // if just popped out from a corner, just stand here + if (self->dont_takecover_time > (level.time - 2)) + { + goto stand_shoot; + } + + + rnd = rand()%10; +/* + if (dist > AI_NOT_HOLSTERED_RANGE_1 && rnd < 9) + { + self->cast_info.currentmove = &bitch_move_shoot_stand; + return true; + } + else +*/ + if ((skill->value > random()*2) && (self->cast_info.last_side_attack_time < (level.time - 1)) && (dist > 128)) + { + int side_result, side_result2; + + side_result = AI_SideTrace( self, 64, 90, -self->cast_info.last_side_attack ); + + if (side_result) + { + side_result2 = AI_SideTrace( self, 96, 90, side_result ); + + if (side_result2 == side_result) + { + if (side_result < 0) + self->cast_info.currentmove = &bitch_move_lside_run; + else + self->cast_info.currentmove = &bitch_move_rside_run; + + self->ideal_yaw = vectoyaw(vec) + side_result * 90; + + M_ChangeYaw( self ); + + self->cast_info.last_side_attack = side_result; + self->cast_info.last_side_attack_time = level.time; + + return true; + } + } + + } + + if ( (dist > 512) + && (rnd < 9) + && (infront(self, self->enemy))) + { + self->cast_info.currentmove = &bitch_move_walk_shoot; + + return true; + } + else + { + +stand_shoot: + + self->ideal_yaw = vectoyaw(vec); + + M_ChangeYaw( self ); + + self->cast_info.currentmove = &bitch_move_shoot_stand; +// self->cast_info.currentmove = &bitch_move_walk_shoot; + + return true; + } + + return false; +} + + +void bitch_climb_loop(edict_t *self) +{ + self->cast_info.currentmove = &bitch4_move_clmb_loop; +} + + +void bitch_melee( edict_t *self ) +{ + vec3_t start, offset; + vec3_t forward, right; + + float damage = 10; + + if (self->cast_info.currentmove == &bitch4_move_low_melee1) + damage *= 2; // double handed attack + + + // yell at them? + if (self->last_talk_time < (level.time - TALK_FIGHTING_DELAY)) + Voice_Random( self, self->enemy, f_grunting, 5); + + + // VectorSet(offset, 0, 8, self->viewheight - 4); + VectorSet(offset, 0, 8, 16); + + AngleVectors (self->s.angles, forward, right, NULL); + if (self->cast_info.currentmove == &bitch4_move_low_melee1) + forward[2] = -0.5; + G_ProjectSource (self->s.origin, offset, forward, right, start); + + if (self->cast_info.currentmove == &bitch4_move_low_melee1) + start[2] -= 8; + + // HACK, higher Moral does more damage + if (self->moral > 4) + damage *= 1.0 + (self->moral - 4)*0.25; + + fire_blackjack( self, start, forward, damage, 10, MOD_BLACKJACK ); +} + + +void bitch_firegun( edict_t *self, vec3_t ofs ) +{ + vec3_t start; + vec3_t forward, right; + vec3_t target; + vec3_t aim; + vec3_t offset; + int flash_number; + float dist; + + + if (self->cast_info.currentmove == &bitch4_move_crch_shoot) + { +/* + if (!directly_infront( self, self->enemy )) + { + self->cast_info.currentmove = &bitch4_move_crch_amb_std; + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + + self->cast_info.aiflags |= AI_FACE_ATTACK; +*/ + } + else + { + // check for reload + if (self->duration++ > 12) + { + self->duration = 0; + self->cast_info.currentmove = &bitch_move_reload; + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + } + + if (!AI_BeginAttack( self )) + { + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + + self->cast_info.aiflags &= ~AI_FACE_ATTACK; + + // yell at them? + if (self->last_talk_time < (level.time - TALK_FIGHTING_DELAY)) + Voice_Random(self, self->enemy, f_fightsounds, F_NUM_FIGHTING); + + // fire the gun + + VectorSet(offset, 0 + ofs[0], 8 + ofs[1], self->viewheight-8 + ofs[2]); + + AngleVectors (self->s.angles, forward, right, NULL); + G_ProjectSource (self->s.origin, offset, forward, right, start); + + // project enemy back a bit and target there + VectorCopy (self->enemy->s.origin, target); + + VectorMA (target, (-0.5 * (random()*0.8 + 0.2)) * (1.0 - (skill->value/4.0)), self->enemy->velocity, target); + + target[2] += self->enemy->viewheight; + + flash_number = MZ2_GUNNER_MACHINEGUN_1; + + VectorSubtract (target, start, aim); + dist = VectorNormalize (aim); + + self->ideal_yaw = vectoyaw( aim ); + + if ( dist > AI_NOT_HOLSTERED_RANGE_1) + if ( (dist < self->cast_info.max_attack_distance) + && ( ((random() < 0.1) && (self->cast_info.last_side_attack_time < (level.time - 2))) + || ( (!(self->cast_info.aiflags & AI_SIDE_ATTACK) || (self->cast_info.last_side_attack_time < (level.time - 2))) + && (directly_infront( self->enemy, self)) + && (self->enemy->client) + && (self->enemy->client->pers.weapon) + && (self->enemy->client->pers.weapon->ammo)))) // if we are directly infront of them, try to strafe + { + if (self->cast_info.aiflags & AI_SIDE_ATTACK) + self->cast_info.currentmove = &bitch_move_run_shoot; + else + self->cast_info.attack( self ); + } + + /* + if (self->acc > ACC_NORMAL) + cast_fire_bullet (self, start, aim, self->cal, 0, 0.0, 0.0, flash_number); + else + cast_fire_bullet (self, start, aim, self->cal, 0, DEFAULT_BULLET_HSPREAD, DEFAULT_BULLET_VSPREAD, flash_number); + */ + + if (self->acc) + cast_fire_bullet (self, start, aim, self->cal, 0, DEFAULT_BULLET_HSPREAD>>self->acc, DEFAULT_BULLET_VSPREAD>>self->acc, flash_number); + else + cast_fire_bullet (self, start, aim, self->cal, 0, DEFAULT_BULLET_HSPREAD, DEFAULT_BULLET_VSPREAD, flash_number); + + gi.sound(self, CHAN_WEAPON, gi.soundindex("weapons/machinegun/machgf1b.wav"), 1, ATTN_NORM, 0); + +} + +void bitch_right_fire( edict_t *self ) +{ + static vec3_t ofs = {4, 0, 0}; + bitch_firegun( self, ofs ); +} + +void bitch_left_fire( edict_t *self ) +{ + static vec3_t ofs = {-4, 0, 0}; + bitch_firegun( self, ofs ); +} + +void bitch_firegun_right( edict_t *self ) +{ + vec3_t vec; + float oldyaw; + static vec3_t ofs = {0,0,0}; + + if (!self->enemy) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + if (self->cast_info.aiflags & AI_TURN_BLOCKED) + { // abort the side run + self->cast_info.aiflags &= ~AI_TURN_BLOCKED; + AI_EndAttack(self); + return; + } + + // if the path ahead is not clear, abort + if (!AI_SideTrace( self, 96, 0, 1 )) + { + AI_EndAttack(self); + return; + } + + + oldyaw = self->s.angles[YAW]; + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + + self->s.angles[YAW] = vectoyaw( vec ); + + self->cast_info.aiflags |= AI_SIDE_ATTACK; + bitch_firegun(self, ofs); + self->cast_info.aiflags &= ~AI_SIDE_ATTACK; + + // keep running to the side + self->ideal_yaw = self->s.angles[YAW] + 90; + + self->s.angles[YAW] = oldyaw; +} + +void bitch_firegun_left( edict_t *self ) +{ + vec3_t vec; + float oldyaw; + static vec3_t ofs = {0,0,0}; + + if (!self->enemy) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + if (self->cast_info.aiflags & AI_TURN_BLOCKED) + { // abort the side run + self->cast_info.aiflags &= ~AI_TURN_BLOCKED; + AI_EndAttack(self); + return; + } + + // if the path ahead is not clear, abort + if (!AI_SideTrace( self, 96, 0, 1 )) + { + AI_EndAttack(self); + return; + } + + + oldyaw = self->s.angles[YAW]; + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + + self->s.angles[YAW] = vectoyaw( vec ); + + self->cast_info.aiflags |= AI_SIDE_ATTACK; + bitch_firegun(self, ofs); + self->cast_info.aiflags &= ~AI_SIDE_ATTACK; + + // keep running to the side + self->ideal_yaw = self->s.angles[YAW] - 90; + + self->s.angles[YAW] = oldyaw; +} + + +// JOSEPH 17-NOV-98 + +void think_playthud_bitch( edict_t *self ) +{ + char Temp[128]; + + strcpy ((char*)Temp, "actors/player/bodyfalls/"); + + if (self->thudsurf & SURF_FABRIC) + { + strcat((char*)&Temp[0], (char*)"rug"); + } + else if (self->thudsurf & SURF_GRAVEL) + { + strcat((char*)&Temp[0], (char*)"gravel"); + } + else if (self->thudsurf & SURF_METAL) + { + strcat((char*)&Temp[0], (char*)"metalh"); + } + else if (self->thudsurf & SURF_METAL_L) + { + strcat((char*)&Temp[0], (char*)"metall"); + } + else if (self->thudsurf & SURF_SNOW) + { + strcat((char*)&Temp[0], (char*)"tin"); + } + else if (self->thudsurf & SURF_TILE) + { + strcat((char*)&Temp[0], (char*)"marble"); + } + else if (self->thudsurf & SURF_WOOD) + { + strcat((char*)&Temp[0], (char*)"wood"); + } + else + { + strcat((char*)&Temp[0], (char*)"pavement"); + } + + if (self->thudsnd == 1) + { + strcat((char*)&Temp[0], (char*)"d1.wav"); + gi.positioned_sound (self->s.origin, self, CHAN_VOICE|CHAN_RELIABLE, gi.soundindex((char*)&Temp[0]), + 1.0, ATTN_NORM, 0); + } + else + { + strcat((char*)&Temp[0], (char*)"d2.wav"); + gi.positioned_sound (self->s.origin, self, CHAN_VOICE|CHAN_RELIABLE, gi.soundindex((char*)&Temp[0]), + 1.0, ATTN_NORM, 0); + } + + self->nextthink = level.time + (0.1*20.0); + self->think = G_FreeEdict; +} +// END JOSEPH + + +// JOSEPH 11-JUN-99-B +void bitch_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + trace_t tr; + vec3_t end; + edict_t *playthud1, *playthud2; + +// self->s.modelindex2 = 0; + + // regular death + self->takedamage = DAMAGE_YES; + + if (DeathByGib(self, inflictor, attacker, damage)) + { // gib + self->deadflag = DEAD_DEAD; + GibEntity( self, inflictor, damage ); + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + return; + } + + if (self->deadflag == DEAD_DEAD) + return; + + self->deadflag = DEAD_DEAD; + + if (!(self->cast_info.aiflags & AI_MELEE)) + SpawnTheWeapon (self, "weapon_pistol_e"); + + // EP_SpecialEventDeath (self); + + VectorCopy (self->s.origin, end); + end[2] -= 64; + tr = gi.trace (self->s.origin, self->mins, self->maxs, end, self, MASK_SHOT); + + if (self->maxs[2] < self->cast_info.standing_max_z) + { + if ((rand()%100) > 50) + { + self->cast_info.currentmove = &bitch4_move_crch_dth1; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*6.0); + playthud1->think = think_playthud_bitch; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*9.0); + playthud2->think = think_playthud_bitch; + gi.linkentity (playthud2); + } + else if ((rand()%100) > 50) + { + self->cast_info.currentmove = &bitch4_move_crch_dth2; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*7.0); + playthud1->think = think_playthud_bitch; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*11.0); + playthud2->think = think_playthud_bitch; + gi.linkentity (playthud2); + } + else + { + self->cast_info.currentmove = &bitch4_move_crch_dth4; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*6.0); + playthud1->think = think_playthud_bitch; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*20.0); + playthud2->think = think_playthud_bitch; + gi.linkentity (playthud2); + } + + // !!! TODO: use all 4 crouching deaths (which ones are played when?) + } + else if (mdx_part == PART_HEAD) + { + self->cast_info.currentmove = &bitch_move_death5; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*7.0); + playthud1->think = think_playthud_bitch; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*18.0); + playthud2->think = think_playthud_bitch; + gi.linkentity (playthud2); + + } + //else if (self->maxs[2] < self->cast_info.standing_max_z) + //{ + // self->cast_info.currentmove = &bitch_move_crch_dth; + //} + else + { + int n; + + n = rand() % 5; + if (n == 0) + { + self->cast_info.currentmove = &bitch_move_death1; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*7.0); + playthud1->think = think_playthud_bitch; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*11.0); + playthud2->think = think_playthud_bitch; + gi.linkentity (playthud2); + + } + else if (n == 1) + { + self->cast_info.currentmove = &bitch_move_death2; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*6.0); + playthud1->think = think_playthud_bitch; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*8.0); + playthud2->think = think_playthud_bitch; + gi.linkentity (playthud2); + + } + else if (n == 2) + { + self->cast_info.currentmove = &bitch_move_death3; + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*6.0); + playthud2->think = think_playthud_bitch; + gi.linkentity (playthud2); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*9.0); + playthud2->think = think_playthud_bitch; + gi.linkentity (playthud2); + } + else if (n == 3) + { + self->cast_info.currentmove = &bitch_move_death4; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*7.0); + playthud1->think = think_playthud_bitch; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*15.0); + playthud2->think = think_playthud_bitch; + gi.linkentity (playthud2); + + } + else + { + self->cast_info.currentmove = &bitch_move_death5; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*7.0); + playthud1->think = think_playthud_bitch; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*18.0); + playthud2->think = think_playthud_bitch; + gi.linkentity (playthud2); + + } + } + +// gi.sound (self, CHAN_VOICE, gi.soundindex(va("*death%i.wav", (rand()%4)+1)), 1, ATTN_NORM, 0); + if (!self->onfiretime) + Voice_Random (self, attacker, &female_specific[4], 2); + + // RAFAEL 01-25-99 + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); +} +// END JOSEPH + +void bitch_pain (edict_t *self, edict_t *other, float kick, int damage, int mdx_part, int mdx_subobject) +{ + int orientation; + + + AI_CheckMakeEnemy( self, other ); + + if (level.time < self->pain_debounce_time) + return; + + self->pain_debounce_time = level.time + 3 + random(); + + if (skill->value >= 3) + return; // no pain anims in nightmare + + /* + if (rand() % 100 > 50) + gi.sound (self, CHAN_VOICE, gi.soundindex("actors/bitch/pain1.wav"), 1, ATTN_NORM, 0); + else + gi.sound (self, CHAN_VOICE, gi.soundindex("actors/bitch/pain2.wav"), 1, ATTN_NORM, 0); + */ + + if (self->health < 25) + Voice_Specific (self, other, female_specific, 4); + else if (self->health < 50) + Voice_Specific (self, other, female_specific, 3); + else if (self->health < 75) + Voice_Specific (self, other, female_specific, 2); + else + Voice_Specific (self, other, female_specific, 1); + + // Ridah, randomly don't play an animation, since it' leaves them WAY open to be killed + if (skill->value > 0 && rand()%2) + return; + + + if (self->maxs[2] < self->cast_info.standing_max_z) + { + self->cast_info.currentmove = &bitch_move_p_pain_crch; + return; + } + + if (other->client || (other->svflags & SVF_MONSTER)) + { + orientation = AI_GetOrientation( self, other ); + } + else + { + orientation = ORIENTATION_CENTER; + } + + + if ( (mdx_part == PART_BODY) + || (other->client && other->client->pers.weapon && !(other->client->pers.weapon->ammo) && (orientation = rand()%2+1))) + { + int rnd; + + rnd = rand () % 2; + + switch (orientation) + { + case ORIENTATION_CENTER : + { + self->cast_info.currentmove = &bitch_move_p_pain_chst; + break; + } + case ORIENTATION_LEFT : + { + if (rnd) + self->cast_info.currentmove = &bitch_move_p_pain_lshd; + else + self->cast_info.currentmove = &bitch_move_p_pain_lshd2; + break; + } + case ORIENTATION_RIGHT : + { + if (rnd) + self->cast_info.currentmove = &bitch_move_p_pain_rshd; + else + self->cast_info.currentmove = &bitch_move_p_pain_rshd2; + break; + } + } + } + else if (mdx_part == PART_LEGS) + { + int rnd; + + switch (orientation) + { + case ORIENTATION_CENTER : + { + rnd = rand() % 2; + + if (infront(self, other)) + { + if (rnd == 1) + self->cast_info.currentmove = &bitch_move_p_pain_crch; + else + self->cast_info.currentmove = &bitch_move_p_pain_crch2; + } + else + { + if (rnd == 2) + self->cast_info.currentmove = &bitch_move_p_pain_butt; + else + self->cast_info.currentmove = &bitch_move_p_pain_butt2; + } + break; + } + case ORIENTATION_LEFT : + { + rnd = rand() * 2; + if (rnd) + self->cast_info.currentmove = &bitch_move_p_pain_lleg; + else + self->cast_info.currentmove = &bitch_move_p_pain_lleg2; + break; + } + case ORIENTATION_RIGHT : + { + rnd = rand() * 2; + if (rnd) + self->cast_info.currentmove = &bitch_move_p_pain_rleg; + else + self->cast_info.currentmove = &bitch_move_p_pain_rleg2; + break; + } + } + } + else if (mdx_part == PART_HEAD) + { + self->cast_info.currentmove = &bitch_move_p_pain_head2; + } +// else +// gi.dprintf ("what the fuck\n"); + + +} + +// ========================================================================= + +/*QUAKED cast_bitch (1 .5 0) (-16 -16 -24) (16 16 48) x TRIGGERED_START x x x IMMEDIATE_FOLLOW_PATH MELEE NOSHADOW +cast_group 0 neutral +cast_group 1 friendly +cast_group 2 or greater enemy +bitch with the pistol + +head 1 = bald 2 = pony tail 0 or anything else is default + +model="models\actors\bitch\" + +*/ +void SP_cast_bitch(edict_t *self) +{ + int i; + char *head_skin, *body_skin, *legs_skin; + int skin; + + if (deathmatch->value) + { + G_FreeEdict (self); + return; + } + + self->movetype = MOVETYPE_STEP; + self->solid = SOLID_BBOX; + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 48); + + self->s.skinnum = (self->skin-1) * 3; + + if (self->art_skins) + { + // convert spaces to NULL's + for (i=0; i<11; i++) + if (self->art_skins[i] == ' ') + self->art_skins[i] = '\0'; + + head_skin = &self->art_skins[0]; + body_skin = &self->art_skins[4]; + legs_skin = &self->art_skins[8]; + } + else + { + head_skin = body_skin = legs_skin = NULL; + } + + // ------------------------------------------------------------------------ + // initialize all model_part data + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + switch (self->head) + { + case 1: + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/bitch/bald_head.mdx"); + break; + case 2: + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/bitch/pony_head.mdx"); + break; + default: + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/bitch/head.mdx"); + break; + } + if (head_skin) + { + skin = gi.skinindex( self->s.model_parts[PART_HEAD].modelindex, head_skin ); + } + else + skin = self->s.skinnum; + + for (i=0; is.model_parts[PART_HEAD].baseskin = self->s.model_parts[PART_HEAD].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/bitch/head.mdx", &self->s.model_parts[PART_HEAD] ); + + self->s.num_parts++; + self->s.model_parts[PART_LEGS].modelindex = gi.modelindex("models/actors/bitch/legs.mdx"); + if (head_skin) + skin = gi.skinindex( self->s.model_parts[PART_LEGS].modelindex, legs_skin ); + else + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_LEGS].baseskin = self->s.model_parts[PART_LEGS].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/bitch/legs.mdx", &self->s.model_parts[PART_LEGS] ); + + self->s.num_parts++; + self->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/actors/bitch/body.mdx"); + if (head_skin) + skin = gi.skinindex( self->s.model_parts[PART_BODY].modelindex, body_skin ); + else + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_BODY].baseskin = self->s.model_parts[PART_BODY].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/bitch/body.mdx", &self->s.model_parts[PART_BODY] ); + + if (self->spawnflags & BITCH_MELEE) + { + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/bitch/pipe.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0; // self->s.skinnum; + gi.GetObjectBounds( "models/actors/bitch/pipe.mdx", &self->s.model_parts[PART_GUN] ); + + self->cast_info.aiflags |= AI_MELEE; + } + else + { + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/bitch/gun.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0;// self->s.skinnum; + gi.GetObjectBounds( "models/actors/bitch/gun.mdx", &self->s.model_parts[PART_GUN] ); + + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + } + + // remove NULL's + if (self->art_skins) + self->art_skins[3] = self->art_skins[7] = ' '; + + // ------------------------------------------------------------------------ + + if (!self->health) + self->health = 100; + self->gib_health = -200; + self->mass = 200; + + self->gender = GENDER_FEMALE; + + self->pain = bitch_pain; + self->die = bitch_die; + + self->cast_info.checkattack = AI_CheckAttack; + + self->cast_info.attack = bitch_attack; + self->cast_info.long_attack = bitch_long_attack; + self->cast_info.talk = bitch_talk; + self->cast_info.avoid = bitch_avoid; + self->cast_info.backoff = bitch_backoff; + + self->cast_info.catch_fire = bitch_catch_fire; + + self->cast_info.max_attack_distance = 2000; + + self->cast_info.move_stand = &bitch_move_boredA; // ok + + self->cast_info.move_crstand = &bitch4_move_crch_amb_std; + + self->cast_info.move_run = &bitch_move_run_guns_dn; // ok + self->cast_info.move_runwalk = &bitch_move_walk_guns_dn; // ok + + self->cast_info.move_crwalk = &bitch4_move_crch_walk; + + self->cast_info.move_jump = &bitch4_move_jump; + + // Betty walks away from you since she doesn't want to start any trouble + if (self->name && !stricmp( self->name, "Betty")) + self->cast_info.move_avoid_walk = &bitch_move_evd_walk; + else + self->cast_info.move_avoid_walk = &bitch_move_avoid_walk; + + self->cast_info.move_avoid_run = &bitch_move_avoid_run; + self->cast_info.move_avoid_reverse_walk = &bitch_move_avoid_reverse_walk; + self->cast_info.move_avoid_reverse_run = &bitch_move_avoid_reverse_run; + //self->cast_info.move_avoid_crwalk = &bitch_move_crouch_avoid_walk; + + self->cast_info.move_crouch_down = &bitch4_move_crch_knl_dn; + self->cast_info.move_stand_up = &bitch4_move_stand_up; + + self->cast_info.move_lside_step = &bitch4_move_lside_step; + self->cast_info.move_rside_step = &bitch4_move_rside_step; + + self->cast_info.move_start_climb = &bitch4_move_clmb_loop; + + self->cast_info.move_end_climb = &bitch4_move_clmb_jmp; + //self->cast_info.move_end_climb = NULL; + + self->cast_info.move_evade = &bitch_move_evd_walk; + self->cast_info.move_stand_evade = &bitch_move_evd_stand; + + gi.linkentity (self); + + self->cast_info.currentmove = self->cast_info.move_stand; + + + if (!self->cast_info.scale) + self->cast_info.scale = MODEL_SCALE; + + self->s.scale = self->cast_info.scale - 1.0; + + + walking_cast_start (self); + + // HACK THE BITCHES TO SEASONED + /* + if (!self->acc) + self->acc = ACC_NORMAL; + */ + if (!self->acc) + self->acc = 2; + + // talk by default + self->cast_info.aiflags |= AI_TALK; + + if (!self->cal) // weapon calibur + self->cal = 3; + + if (self->spawnflags & 128) + self->s.renderfx2 |= RF2_NOSHADOW; + +} diff --git a/gamesrc/AI_BITCH.H b/gamesrc/AI_BITCH.H new file mode 100644 index 0000000..ad7743d --- /dev/null +++ b/gamesrc/AI_BITCH.H @@ -0,0 +1,932 @@ +#define FRAME_boredA_01 0 +#define FRAME_boredA_02 1 +#define FRAME_boredA_03 2 +#define FRAME_boredA_04 3 +#define FRAME_boredA_05 4 +#define FRAME_boredA_06 5 +#define FRAME_boredA_07 6 +#define FRAME_boredA_08 7 +#define FRAME_boredA_09 8 +#define FRAME_boredA_10 9 +#define FRAME_boredA_11 10 +#define FRAME_boredA_12 11 +#define FRAME_boredA_13 12 +#define FRAME_boredA_14 13 +#define FRAME_boredA_15 14 +#define FRAME_boredA_16 15 +#define FRAME_boredA_17 16 +#define FRAME_boredA_18 17 +#define FRAME_boredA_19 18 +#define FRAME_boredA_20 19 +#define FRAME_boredA_21 20 +#define FRAME_boredA_22 21 +#define FRAME_boredA_23 22 +#define FRAME_boredA_24 23 +#define FRAME_boredA_25 24 +#define FRAME_boredA_26 25 +#define FRAME_boredA_27 26 +#define FRAME_boredA_28 27 +#define FRAME_boredA_29 28 +#define FRAME_boredA_30 29 +#define FRAME_boredA_31 30 +#define FRAME_boredA_32 31 +#define FRAME_boredA_33 32 +#define FRAME_boredA_34 33 +#define FRAME_boredA_35 34 +#define FRAME_boredA_36 35 +#define FRAME_boredA_37 36 +#define FRAME_boredA_38 37 +#define FRAME_boredA_39 38 +#define FRAME_boredA_40 39 +#define FRAME_boredA_41 40 +#define FRAME_boredA_42 41 +#define FRAME_boredA_43 42 +#define FRAME_boredA_44 43 +#define FRAME_boredA_45 44 +#define FRAME_boredA_46 45 +#define FRAME_boredA_47 46 +#define FRAME_boredA_48 47 +#define FRAME_leanlook_01 48 +#define FRAME_leanlook_02 49 +#define FRAME_leanlook_03 50 +#define FRAME_leanlook_04 51 +#define FRAME_leanlook_05 52 +#define FRAME_leanlook_06 53 +#define FRAME_leanlook_07 54 +#define FRAME_leanlook_08 55 +#define FRAME_leanlook_09 56 +#define FRAME_leanlook_10 57 +#define FRAME_leanlook_11 58 +#define FRAME_leanlook_12 59 +#define FRAME_leanlook_13 60 +#define FRAME_leanlook_14 61 +#define FRAME_leanlook_15 62 +#define FRAME_leanlook_16 63 +#define FRAME_leanlook_17 64 +#define FRAME_leanlook_18 65 +#define FRAME_leanlook_19 66 +#define FRAME_leanlook_20 67 +#define FRAME_leanlook_21 68 +#define FRAME_leanlook_22 69 +#define FRAME_leanlook_23 70 +#define FRAME_leanlook_24 71 +#define FRAME_leanlook_25 72 +#define FRAME_leanlook_26 73 +#define FRAME_leanlook_27 74 +#define FRAME_leanlook_28 75 +#define FRAME_leanlook_29 76 +#define FRAME_leanlook_30 77 +#define FRAME_leanlook_31 78 +#define FRAME_leanlook_32 79 +#define FRAME_leanlook_33 80 +#define FRAME_leanlook_34 81 +#define FRAME_leanlook_35 82 +#define FRAME_leanlook_36 83 +#define FRAME_leanlook_37 84 +#define FRAME_leanlook_38 85 +#define FRAME_leanlook_39 86 +#define FRAME_leanwave_01 87 +#define FRAME_leanwave_02 88 +#define FRAME_leanwave_03 89 +#define FRAME_leanwave_04 90 +#define FRAME_leanwave_05 91 +#define FRAME_leanwave_06 92 +#define FRAME_leanwave_07 93 +#define FRAME_leanwave_08 94 +#define FRAME_leanwave_09 95 +#define FRAME_leanwave_10 96 +#define FRAME_leanwave_11 97 +#define FRAME_leanwave_12 98 +#define FRAME_leanwave_13 99 +#define FRAME_leanwave_14 100 +#define FRAME_leanwave_15 101 +#define FRAME_leanwave_16 102 +#define FRAME_leanwave_17 103 +#define FRAME_leanwave_18 104 +#define FRAME_leanwave_19 105 +#define FRAME_leanwave_20 106 +#define FRAME_leanwave_21 107 +#define FRAME_leanwave_22 108 +#define FRAME_leanwave_23 109 +#define FRAME_leanwave_24 110 +#define FRAME_leanwave_25 111 +#define FRAME_leanwave_26 112 +#define FRAME_leanwave_27 113 +#define FRAME_leanwave_28 114 +#define FRAME_leanwave_29 115 +#define FRAME_leanwave_30 116 +#define FRAME_leanwave_31 117 +#define FRAME_leanwave_32 118 +#define FRAME_leanwave_33 119 +#define FRAME_whatsup_01 120 +#define FRAME_whatsup_02 121 +#define FRAME_whatsup_03 122 +#define FRAME_whatsup_04 123 +#define FRAME_whatsup_05 124 +#define FRAME_whatsup_06 125 +#define FRAME_whatsup_07 126 +#define FRAME_whatsup_08 127 +#define FRAME_whatsup_09 128 +#define FRAME_whatsup_10 129 +#define FRAME_whatsup_11 130 +#define FRAME_whatsup_12 131 +#define FRAME_whatsup_13 132 +#define FRAME_whatsup_14 133 +#define FRAME_whatsup_15 134 +#define FRAME_whatsup_16 135 +#define FRAME_whatsup_17 136 +#define FRAME_whatsup_18 137 +#define FRAME_whatsup_19 138 +#define FRAME_whatsup_20 139 +#define FRAME_whatsup_21 140 +#define FRAME_whatsup_22 141 +#define FRAME_whatsup_23 142 +#define FRAME_whatsup_24 143 +#define FRAME_whatsup_25 144 +#define FRAME_whatsup_26 145 +#define FRAME_whatsup_27 146 +#define FRAME_talkme_01 147 +#define FRAME_talkme_02 148 +#define FRAME_talkme_03 149 +#define FRAME_talkme_04 150 +#define FRAME_talkme_05 151 +#define FRAME_talkme_06 152 +#define FRAME_talkme_07 153 +#define FRAME_talkme_08 154 +#define FRAME_talkme_09 155 +#define FRAME_talkme_10 156 +#define FRAME_talkme_11 157 +#define FRAME_talkme_12 158 +#define FRAME_talkme_13 159 +#define FRAME_talkme_14 160 +#define FRAME_talkme_15 161 +#define FRAME_talkme_16 162 +#define FRAME_talkme_17 163 +#define FRAME_talkme_18 164 +#define FRAME_talkme_19 165 +#define FRAME_talkme_20 166 +#define FRAME_nonono_01 167 +#define FRAME_nonono_02 168 +#define FRAME_nonono_03 169 +#define FRAME_nonono_04 170 +#define FRAME_nonono_05 171 +#define FRAME_nonono_06 172 +#define FRAME_nonono_07 173 +#define FRAME_nonono_08 174 +#define FRAME_nonono_09 175 +#define FRAME_nonono_10 176 +#define FRAME_nonono_11 177 +#define FRAME_nonono_12 178 +#define FRAME_nonono_13 179 +#define FRAME_nonono_14 180 +#define FRAME_nonono_15 181 +#define FRAME_nonono_16 182 +#define FRAME_nonono_17 183 +#define FRAME_nonono_18 184 +#define FRAME_nonono_19 185 +#define FRAME_nonono_20 186 +#define FRAME_nonono_21 187 +#define FRAME_nonono_22 188 +#define FRAME_nonono_23 189 +#define FRAME_nonono_24 190 +#define FRAME_nonono_25 191 +#define FRAME_nonono_26 192 +#define FRAME_comeon_01 193 +#define FRAME_comeon_02 194 +#define FRAME_comeon_03 195 +#define FRAME_comeon_04 196 +#define FRAME_comeon_05 197 +#define FRAME_comeon_06 198 +#define FRAME_comeon_07 199 +#define FRAME_comeon_08 200 +#define FRAME_comeon_09 201 +#define FRAME_comeon_10 202 +#define FRAME_comeon_11 203 +#define FRAME_comeon_12 204 +#define FRAME_comeon_13 205 +#define FRAME_comeon_14 206 +#define FRAME_comeon_15 207 +#define FRAME_comeon_16 208 +#define FRAME_comeon_17 209 +#define FRAME_comeon_18 210 +#define FRAME_comeon_19 211 +#define FRAME_comeon_20 212 +#define FRAME_getdown_01 213 +#define FRAME_getdown_02 214 +#define FRAME_getdown_03 215 +#define FRAME_getdown_04 216 +#define FRAME_getdown_05 217 +#define FRAME_getdown_06 218 +#define FRAME_getdown_07 219 +#define FRAME_getdown_08 220 +#define FRAME_getdown_09 221 +#define FRAME_getdown_10 222 +#define FRAME_getdown_11 223 +#define FRAME_getdown_12 224 +#define FRAME_getdown_13 225 +#define FRAME_getdown_14 226 +#define FRAME_getdown_15 227 +#define FRAME_getdown_16 228 +#define FRAME_getdown_17 229 +#define FRAME_getdown_18 230 +#define FRAME_getdown_19 231 +#define FRAME_getdown_20 232 +#define FRAME_getdown_21 233 +#define FRAME_getdown_22 234 +#define FRAME_whomw_01 235 +#define FRAME_whomw_02 236 +#define FRAME_whomw_03 237 +#define FRAME_whomw_04 238 +#define FRAME_whomw_05 239 +#define FRAME_whomw_06 240 +#define FRAME_whomw_07 241 +#define FRAME_whomw_08 242 +#define FRAME_whomw_09 243 +#define FRAME_whomw_10 244 +#define FRAME_whomw_11 245 +#define FRAME_whomw_12 246 +#define FRAME_whomw_13 247 +#define FRAME_whomw_14 248 +#define FRAME_whomw_15 249 +#define FRAME_whomw_16 250 +#define FRAME_whomw_17 251 +#define FRAME_whomw_18 252 +#define FRAME_whomw_19 253 +#define FRAME_whomw_20 254 +#define FRAME_whomw_21 255 +#define FRAME_whomw_22 256 +#define FRAME_whomw_23 257 +#define FRAME_whomw_24 258 +#define FRAME_lookself_01 259 +#define FRAME_lookself_02 260 +#define FRAME_lookself_03 261 +#define FRAME_lookself_04 262 +#define FRAME_lookself_05 263 +#define FRAME_lookself_06 264 +#define FRAME_lookself_07 265 +#define FRAME_lookself_08 266 +#define FRAME_lookself_09 267 +#define FRAME_lookself_10 268 +#define FRAME_lookself_11 269 +#define FRAME_lookself_12 270 +#define FRAME_lookself_13 271 +#define FRAME_lookself_14 272 +#define FRAME_lookself_15 273 +#define FRAME_lookself_16 274 +#define FRAME_lookself_17 275 +#define FRAME_lookself_18 276 +#define FRAME_lookself_19 277 +#define FRAME_lookself_20 278 +#define FRAME_lookself_21 279 +#define FRAME_lookself_22 280 +#define FRAME_lookself_23 281 +#define FRAME_lookself_24 282 +#define FRAME_lookself_25 283 +#define FRAME_lookself_26 284 +#define FRAME_lookself_27 285 +#define FRAME_lookself_28 286 +#define FRAME_lookself_29 287 +#define FRAME_lookself_30 288 +#define FRAME_lookself_31 289 +#define FRAME_lookself_32 290 +#define FRAME_lookself_33 291 +#define FRAME_lookself_34 292 +#define FRAME_flirt_01 293 +#define FRAME_flirt_02 294 +#define FRAME_flirt_03 295 +#define FRAME_flirt_04 296 +#define FRAME_flirt_05 297 +#define FRAME_flirt_06 298 +#define FRAME_flirt_07 299 +#define FRAME_flirt_08 300 +#define FRAME_flirt_09 301 +#define FRAME_flirt_10 302 +#define FRAME_flirt_11 303 +#define FRAME_flirt_12 304 +#define FRAME_flirt_13 305 +#define FRAME_flirt_14 306 +#define FRAME_flirt_15 307 +#define FRAME_flirt_16 308 +#define FRAME_flirt_17 309 +#define FRAME_flirt_18 310 +#define FRAME_flirt_19 311 +#define FRAME_flirt_20 312 +#define FRAME_flirt_21 313 +#define FRAME_flirt_22 314 +#define FRAME_flirt_23 315 +#define FRAME_flirt_24 316 +#define FRAME_flirt_25 317 +#define FRAME_flirt_26 318 +#define FRAME_flirt_27 319 +#define FRAME_flirt_28 320 +#define FRAME_flirt_29 321 +#define FRAME_flirt_30 322 +#define FRAME_flirt_31 323 +#define FRAME_flirt_32 324 +#define FRAME_flirt_33 325 +#define FRAME_walk_shoot_01 326 +#define FRAME_walk_shoot_02 327 +#define FRAME_walk_shoot_03 328 +#define FRAME_walk_shoot_04 329 +#define FRAME_walk_shoot_05 330 +#define FRAME_walk_shoot_06 331 +#define FRAME_walk_shoot_07 332 +#define FRAME_walk_shoot_08 333 +#define FRAME_walk_shoot_09 334 +#define FRAME_walk_shoot_10 335 +#define FRAME_walk_shoot_11 336 +#define FRAME_walk_guns_dn_01 337 +#define FRAME_walk_guns_dn_02 338 +#define FRAME_walk_guns_dn_03 339 +#define FRAME_walk_guns_dn_04 340 +#define FRAME_walk_guns_dn_05 341 +#define FRAME_walk_guns_dn_06 342 +#define FRAME_walk_guns_dn_07 343 +#define FRAME_walk_guns_dn_08 344 +#define FRAME_walk_guns_dn_09 345 +#define FRAME_walk_guns_dn_10 346 +#define FRAME_walk_guns_dn_11 347 +#define FRAME_run_shoot_01 348 +#define FRAME_run_shoot_02 349 +#define FRAME_run_shoot_03 350 +#define FRAME_run_shoot_04 351 +#define FRAME_run_shoot_05 352 +#define FRAME_run_shoot_06 353 +#define FRAME_run_shoot_07 354 +#define FRAME_run_guns_dn_01 355 +#define FRAME_run_guns_dn_02 356 +#define FRAME_run_guns_dn_03 357 +#define FRAME_run_guns_dn_04 358 +#define FRAME_run_guns_dn_05 359 +#define FRAME_run_guns_dn_06 360 +#define FRAME_run_guns_dn_07 361 +#define FRAME_lside_run_01 362 +#define FRAME_lside_run_02 363 +#define FRAME_lside_run_03 364 +#define FRAME_lside_run_04 365 +#define FRAME_lside_run_05 366 +#define FRAME_lside_run_06 367 +#define FRAME_lside_run_07 368 +#define FRAME_rside_run_01 369 +#define FRAME_rside_run_02 370 +#define FRAME_rside_run_03 371 +#define FRAME_rside_run_04 372 +#define FRAME_rside_run_05 373 +#define FRAME_rside_run_06 374 +#define FRAME_rside_run_07 375 +#define FRAME_run_on_fire_01 376 +#define FRAME_run_on_fire_02 377 +#define FRAME_run_on_fire_03 378 +#define FRAME_run_on_fire_04 379 +#define FRAME_run_on_fire_05 380 +#define FRAME_run_on_fire_06 381 +#define FRAME_run_on_fire_07 382 +#define FRAME_run_on_fire_08 383 +#define FRAME_run_on_fire_09 384 +#define FRAME_run_on_fire_10 385 +#define FRAME_run_on_fire_11 386 +#define FRAME_run_on_fire_12 387 +#define FRAME_run_on_fire_13 388 +#define FRAME_evd_walk_01 389 +#define FRAME_evd_walk_02 390 +#define FRAME_evd_walk_03 391 +#define FRAME_evd_walk_04 392 +#define FRAME_evd_walk_05 393 +#define FRAME_evd_walk_06 394 +#define FRAME_evd_walk_07 395 +#define FRAME_evd_amb_01 396 +#define FRAME_evd_amb_02 397 +#define FRAME_evd_amb_03 398 +#define FRAME_evd_amb_04 399 +#define FRAME_evd_amb_05 400 +#define FRAME_evd_amb_06 401 +#define FRAME_evd_amb_07 402 +#define FRAME_evd_amb_08 403 +#define FRAME_evd_amb_09 404 +#define FRAME_evd_amb_10 405 +#define FRAME_evd_amb_11 406 +#define FRAME_pull_gun_01 407 +#define FRAME_pull_gun_02 408 +#define FRAME_pull_gun_03 409 +#define FRAME_pull_gun_04 410 +#define FRAME_pull_gun_05 411 +#define FRAME_pull_gun_06 412 +#define FRAME_pull_gun_07 413 +#define FRAME_pull_gun_08 414 +#define FRAME_stand_shoot_01 415 +#define FRAME_stand_shoot_02 416 +#define FRAME_stand_shoot_03 417 +#define FRAME_stand_shoot_04 418 +#define FRAME_stand_shoot_05 419 +#define FRAME_reload_01 420 +#define FRAME_reload_02 421 +#define FRAME_reload_03 422 +#define FRAME_reload_04 423 +#define FRAME_reload_05 424 +#define FRAME_reload_06 425 +#define FRAME_reload_07 426 +#define FRAME_reload_08 427 +#define FRAME_reload_09 428 +#define FRAME_reload_10 429 +#define FRAME_reload_11 430 +#define FRAME_reload_12 431 +#define FRAME_reload_13 432 +#define FRAME_reload_14 433 +#define FRAME_reload_15 434 +#define FRAME_reload_16 435 +#define FRAME_reload_17 436 +#define FRAME_reload_18 437 +#define FRAME_reload_19 438 +#define FRAME_reload_20 439 +#define FRAME_p_pain_chst_01 440 +#define FRAME_p_pain_chst_02 441 +#define FRAME_p_pain_chst_03 442 +#define FRAME_p_pain_chst_04 443 +#define FRAME_p_pain_chst_05 444 +#define FRAME_p_pain_chst_06 445 +#define FRAME_p_pain_rshd_01 446 +#define FRAME_p_pain_rshd_02 447 +#define FRAME_p_pain_rshd_03 448 +#define FRAME_p_pain_rshd_04 449 +#define FRAME_p_pain_rshd_05 450 +#define FRAME_p_pain_rshd_06 451 +#define FRAME_p_pain_rshd_07 452 +#define FRAME_p_pain_lshd_01 453 +#define FRAME_p_pain_lshd_02 454 +#define FRAME_p_pain_lshd_03 455 +#define FRAME_p_pain_lshd_04 456 +#define FRAME_p_pain_lshd_05 457 +#define FRAME_p_pain_lshd_06 458 +#define FRAME_p_pain_rshd2_01 459 +#define FRAME_p_pain_rshd2_02 460 +#define FRAME_p_pain_rshd2_03 461 +#define FRAME_p_pain_rshd2_04 462 +#define FRAME_p_pain_rshd2_05 463 +#define FRAME_p_pain_rleg_01 464 +#define FRAME_p_pain_rleg_02 465 +#define FRAME_p_pain_rleg_03 466 +#define FRAME_p_pain_rleg_04 467 +#define FRAME_p_pain_rleg_05 468 +#define FRAME_p_pain_rleg_06 469 +#define FRAME_p_pain_rleg_07 470 +#define FRAME_p_pain_rleg_08 471 +#define FRAME_p_pain_lleg_01 472 +#define FRAME_p_pain_lleg_02 473 +#define FRAME_p_pain_lleg_03 474 +#define FRAME_p_pain_lleg_04 475 +#define FRAME_p_pain_lleg_05 476 +#define FRAME_p_pain_lleg_06 477 +#define FRAME_p_pain_lleg_07 478 +#define FRAME_p_pain_crch_01 479 +#define FRAME_p_pain_crch_02 480 +#define FRAME_p_pain_crch_03 481 +#define FRAME_p_pain_crch_04 482 +#define FRAME_p_pain_crch_05 483 +#define FRAME_p_pain_crch_06 484 +#define FRAME_p_pain_crch_07 485 +#define FRAME_p_pain_butt_01 486 +#define FRAME_p_pain_butt_02 487 +#define FRAME_p_pain_butt_03 488 +#define FRAME_p_pain_butt_04 489 +#define FRAME_p_pain_butt_05 490 +#define FRAME_p_pain_butt_06 491 +#define FRAME_p_pain_butt_07 492 +#define FRAME_p_pain_butt_08 493 +#define FRAME_p_pain_butt_09 494 +#define FRAME_p_pain_butt_10 495 +#define FRAME_p_pain_butt_11 496 +#define FRAME_p_pain_butt_12 497 +#define FRAME_p_pain_butt_13 498 +#define FRAME_p_pain_lshd2_01 499 +#define FRAME_p_pain_lshd2_02 500 +#define FRAME_p_pain_lshd2_03 501 +#define FRAME_p_pain_lshd2_04 502 +#define FRAME_p_pain_lshd2_05 503 +#define FRAME_p_pain_lshd2_06 504 +#define FRAME_p_pain_lshd2_07 505 +#define FRAME_p_pain_lshd2_08 506 +#define FRAME_p_pain_lshd2_09 507 +#define FRAME_p_pain_rleg2_01 508 +#define FRAME_p_pain_rleg2_02 509 +#define FRAME_p_pain_rleg2_03 510 +#define FRAME_p_pain_rleg2_04 511 +#define FRAME_p_pain_rleg2_05 512 +#define FRAME_p_pain_rleg2_06 513 +#define FRAME_p_pain_rleg2_07 514 +#define FRAME_p_pain_rleg2_08 515 +#define FRAME_p_pain_rleg2_09 516 +#define FRAME_p_pain_rleg2_10 517 +#define FRAME_p_pain_lleg2_01 518 +#define FRAME_p_pain_lleg2_02 519 +#define FRAME_p_pain_lleg2_03 520 +#define FRAME_p_pain_lleg2_04 521 +#define FRAME_p_pain_lleg2_05 522 +#define FRAME_p_pain_lleg2_06 523 +#define FRAME_p_pain_lleg2_07 524 +#define FRAME_p_pain_crch2_01 525 +#define FRAME_p_pain_crch2_02 526 +#define FRAME_p_pain_crch2_03 527 +#define FRAME_p_pain_crch2_04 528 +#define FRAME_p_pain_crch2_05 529 +#define FRAME_p_pain_crch2_06 530 +#define FRAME_p_pain_butt2_01 531 +#define FRAME_p_pain_butt2_02 532 +#define FRAME_p_pain_butt2_03 533 +#define FRAME_p_pain_butt2_04 534 +#define FRAME_p_pain_butt2_05 535 +#define FRAME_p_pain_butt2_06 536 +#define FRAME_p_pain_butt2_07 537 +#define FRAME_p_pain_butt2_08 538 +#define FRAME_p_pain_head2_01 539 +#define FRAME_p_pain_head2_02 540 +#define FRAME_p_pain_head2_03 541 +#define FRAME_p_pain_head2_04 542 +#define FRAME_death1_01 543 +#define FRAME_death1_02 544 +#define FRAME_death1_03 545 +#define FRAME_death1_04 546 +#define FRAME_death1_05 547 +#define FRAME_death1_06 548 +#define FRAME_death1_07 549 +#define FRAME_death1_08 550 +#define FRAME_death1_09 551 +#define FRAME_death1_10 552 +#define FRAME_death1_11 553 +#define FRAME_death1_12 554 +#define FRAME_death1_13 555 +#define FRAME_death1_14 556 +#define FRAME_death1_15 557 +#define FRAME_death2_01 558 +#define FRAME_death2_02 559 +#define FRAME_death2_03 560 +#define FRAME_death2_04 561 +#define FRAME_death2_05 562 +#define FRAME_death2_06 563 +#define FRAME_death2_07 564 +#define FRAME_death2_08 565 +#define FRAME_death2_09 566 +#define FRAME_death2_10 567 +#define FRAME_death2_11 568 +#define FRAME_death2_12 569 +#define FRAME_death2_13 570 +#define FRAME_death2_14 571 +#define FRAME_death2_15 572 +#define FRAME_death2_16 573 +#define FRAME_death3_01 574 +#define FRAME_death3_02 575 +#define FRAME_death3_03 576 +#define FRAME_death3_04 577 +#define FRAME_death3_05 578 +#define FRAME_death3_06 579 +#define FRAME_death3_07 580 +#define FRAME_death3_08 581 +#define FRAME_death3_09 582 +#define FRAME_death3_10 583 +#define FRAME_death3_11 584 +#define FRAME_death3_12 585 +#define FRAME_death3_13 586 +#define FRAME_death3_14 587 +#define FRAME_death3_15 588 +#define FRAME_death3_16 589 +#define FRAME_death4_01 590 +#define FRAME_death4_02 591 +#define FRAME_death4_03 592 +#define FRAME_death4_04 593 +#define FRAME_death4_05 594 +#define FRAME_death4_06 595 +#define FRAME_death4_07 596 +#define FRAME_death4_08 597 +#define FRAME_death4_09 598 +#define FRAME_death4_10 599 +#define FRAME_death4_11 600 +#define FRAME_death4_12 601 +#define FRAME_death4_13 602 +#define FRAME_death4_14 603 +#define FRAME_death4_15 604 +#define FRAME_death4_16 605 +#define FRAME_death4_17 606 +#define FRAME_death4_18 607 +#define FRAME_death4_19 608 +#define FRAME_death4_20 609 +#define FRAME_death4_21 610 +#define FRAME_death4_22 611 +#define FRAME_death5_01 612 +#define FRAME_death5_02 613 +#define FRAME_death5_03 614 +#define FRAME_death5_04 615 +#define FRAME_death5_05 616 +#define FRAME_death5_06 617 +#define FRAME_death5_07 618 +#define FRAME_death5_08 619 +#define FRAME_death5_09 620 +#define FRAME_death5_10 621 +#define FRAME_death5_11 622 +#define FRAME_death5_12 623 +#define FRAME_death5_13 624 +#define FRAME_death5_14 625 +#define FRAME_death5_15 626 +#define FRAME_death5_16 627 +#define FRAME_death5_17 628 +#define FRAME_death5_18 629 +#define FRAME_death5_19 630 +#define FRAME_death5_20 631 +#define FRAME_death5_21 632 +#define FRAME_death5_22 633 +#define FRAME_death5_23 634 +#define FRAME_death5_24 635 +#define FRAME_death5_25 636 +#define FRAME_death5_26 637 +#define FRAME_death5_27 638 +#define FRAME_death5_28 639 +#define FRAME_death5_29 640 +#define FRAME_death5_30 641 +#define FRAME_death5_31 642 +#define FRAME_death5_32 643 +#define FRAME_death5_33 644 +#define FRAME_stnd2melee_01 645 +#define FRAME_stnd2melee_02 646 +#define FRAME_stnd2melee_03 647 +#define FRAME_stnd2melee_04 648 +#define FRAME_melee2stnd_01 649 +#define FRAME_melee2stnd_02 650 +#define FRAME_melee2stnd_03 651 +#define FRAME_melee2stnd_04 652 +#define FRAME_melee2stnd_05 653 +#define FRAME_melee_amb_01 654 +#define FRAME_melee_amb_02 655 +#define FRAME_melee_amb_03 656 +#define FRAME_melee_amb_04 657 +#define FRAME_melee_amb_05 658 +#define FRAME_melee_amb_06 659 +#define FRAME_melee_amb_07 660 +#define FRAME_melee_amb_08 661 +#define FRAME_low_melee1_01 662 +#define FRAME_low_melee1_02 663 +#define FRAME_low_melee1_03 664 +#define FRAME_low_melee1_04 665 +#define FRAME_low_melee1_05 666 +#define FRAME_low_melee1_06 667 +#define FRAME_melee1_01 668 +#define FRAME_melee1_02 669 +#define FRAME_melee1_03 670 +#define FRAME_melee1_04 671 +#define FRAME_melee1_05 672 +#define FRAME_melee1_06 673 +#define FRAME_melee1_07 674 +#define FRAME_melee1_08 675 +#define FRAME_melee1_09 676 +#define FRAME_melee1_10 677 +#define FRAME_melee1_11 678 +#define FRAME_melee1_12 679 +#define FRAME_melee1_13 680 +#define FRAME_melee1_14 681 +#define FRAME_melee1_15 682 +#define FRAME_melee1_16 683 +#define FRAME_melee1_17 684 +#define FRAME_melee1_18 685 +#define FRAME_melee2_01 686 +#define FRAME_melee2_02 687 +#define FRAME_melee2_03 688 +#define FRAME_melee2_04 689 +#define FRAME_melee2_05 690 +#define FRAME_melee2_06 691 +#define FRAME_melee2_07 692 +#define FRAME_melee2_08 693 +#define FRAME_melee2_09 694 +#define FRAME_melee2_10 695 +#define FRAME_melee3_01 696 +#define FRAME_melee3_02 697 +#define FRAME_melee3_03 698 +#define FRAME_melee3_04 699 +#define FRAME_melee3_05 700 +#define FRAME_melee3_06 701 +#define FRAME_melee3_07 702 +#define FRAME_melee3_08 703 +#define FRAME_melee3_09 704 +#define FRAME_melee3_10 705 +#define FRAME_melee3_11 706 +#define FRAME_melee3_12 707 +#define FRAME_melee3_13 708 +#define FRAME_melee3_14 709 +#define FRAME_melee3_15 710 +#define FRAME_melee3_16 711 +#define FRAME_melee3_17 712 +#define FRAME_melee3_18 713 +#define FRAME_run_melee_01 714 +#define FRAME_run_melee_02 715 +#define FRAME_run_melee_03 716 +#define FRAME_run_melee_04 717 +#define FRAME_run_melee_05 718 +#define FRAME_run_melee_06 719 +#define FRAME_run_melee_07 720 +#define FRAME_jump_01 721 +#define FRAME_jump_02 722 +#define FRAME_jump_03 723 +#define FRAME_jump_04 724 +#define FRAME_jump_05 725 +#define FRAME_jump_06 726 +#define FRAME_jump_07 727 +#define FRAME_jump_08 728 +#define FRAME_jump_09 729 +#define FRAME_jump_10 730 +#define FRAME_lside_step_01 731 +#define FRAME_lside_step_02 732 +#define FRAME_lside_step_03 733 +#define FRAME_lside_step_04 734 +#define FRAME_lside_step_05 735 +#define FRAME_lside_step_06 736 +#define FRAME_rside_step_01 737 +#define FRAME_rside_step_02 738 +#define FRAME_rside_step_03 739 +#define FRAME_rside_step_04 740 +#define FRAME_clmb_loop_01 741 +#define FRAME_clmb_loop_02 742 +#define FRAME_clmb_loop_03 743 +#define FRAME_clmb_loop_04 744 +#define FRAME_clmb_loop_05 745 +#define FRAME_clmb_loop_06 746 +#define FRAME_clmb_loop_07 747 +#define FRAME_clmb_loop_08 748 +#define FRAME_clmb_loop_09 749 +#define FRAME_clmb_loop_10 750 +#define FRAME_clmb_loop_11 751 +#define FRAME_st_climb_01 752 +#define FRAME_st_climb_02 753 +#define FRAME_st_climb_03 754 +#define FRAME_st_climb_04 755 +#define FRAME_st_climb_05 756 +#define FRAME_st_climb_06 757 +#define FRAME_st_climb_07 758 +#define FRAME_st_climb_08 759 +#define FRAME_crch_dth1_01 760 +#define FRAME_crch_dth1_02 761 +#define FRAME_crch_dth1_03 762 +#define FRAME_crch_dth1_04 763 +#define FRAME_crch_dth1_05 764 +#define FRAME_crch_dth1_06 765 +#define FRAME_crch_dth1_07 766 +#define FRAME_crch_dth1_08 767 +#define FRAME_crch_dth1_09 768 +#define FRAME_crch_dth1_10 769 +#define FRAME_crch_dth1_11 770 +#define FRAME_crch_dth1_12 771 +#define FRAME_crch_dth1_13 772 +#define FRAME_crch_dth1_14 773 +#define FRAME_crch_dth1_15 774 +#define FRAME_crch_dth1_16 775 +#define FRAME_crch_dth1_17 776 +#define FRAME_crch_dth1_18 777 +#define FRAME_crch_dth2_01 778 +#define FRAME_crch_dth2_02 779 +#define FRAME_crch_dth2_03 780 +#define FRAME_crch_dth2_04 781 +#define FRAME_crch_dth2_05 782 +#define FRAME_crch_dth2_06 783 +#define FRAME_crch_dth2_07 784 +#define FRAME_crch_dth2_08 785 +#define FRAME_crch_dth2_09 786 +#define FRAME_crch_dth2_10 787 +#define FRAME_crch_dth2_11 788 +#define FRAME_crch_dth2_12 789 +#define FRAME_crch_dth2_13 790 +#define FRAME_crch_dth2_14 791 +#define FRAME_crch_dth2_15 792 +#define FRAME_crch_dth2_16 793 +#define FRAME_crch_dth2_17 794 +#define FRAME_crch_dth2_18 795 +#define FRAME_crch_dth2_19 796 +#define FRAME_crch_dth2_20 797 +#define FRAME_crch_dth3_01 798 +#define FRAME_crch_dth3_02 799 +#define FRAME_crch_dth3_03 800 +#define FRAME_crch_dth3_04 801 +#define FRAME_crch_dth3_05 802 +#define FRAME_crch_dth3_06 803 +#define FRAME_crch_dth3_07 804 +#define FRAME_crch_dth3_08 805 +#define FRAME_crch_dth3_09 806 +#define FRAME_crch_dth3_10 807 +#define FRAME_crch_dth3_11 808 +#define FRAME_crch_dth3_12 809 +#define FRAME_crch_dth3_13 810 +#define FRAME_crch_dth3_14 811 +#define FRAME_crch_dth3_15 812 +#define FRAME_crch_dth3_16 813 +#define FRAME_crch_dth3_17 814 +#define FRAME_crch_dth4_01 815 +#define FRAME_crch_dth4_02 816 +#define FRAME_crch_dth4_03 817 +#define FRAME_crch_dth4_04 818 +#define FRAME_crch_dth4_05 819 +#define FRAME_crch_dth4_06 820 +#define FRAME_crch_dth4_07 821 +#define FRAME_crch_dth4_08 822 +#define FRAME_crch_dth4_09 823 +#define FRAME_crch_dth4_10 824 +#define FRAME_crch_dth4_11 825 +#define FRAME_crch_dth4_12 826 +#define FRAME_crch_dth4_13 827 +#define FRAME_crch_dth4_14 828 +#define FRAME_crch_dth4_15 829 +#define FRAME_crch_dth4_16 830 +#define FRAME_crch_dth4_17 831 +#define FRAME_crch_dth4_18 832 +#define FRAME_crch_dth4_19 833 +#define FRAME_crch_dth4_20 834 +#define FRAME_crch_dth4_21 835 +#define FRAME_crch_dth4_22 836 +#define FRAME_crch_dth4_23 837 +#define FRAME_crch_dth4_24 838 +#define FRAME_crch_dth4_25 839 +#define FRAME_crch_dth4_26 840 +#define FRAME_crch_dth4_27 841 +#define FRAME_crch_dth4_28 842 +#define FRAME_crch_knl_dn_01 843 +#define FRAME_crch_knl_dn_02 844 +#define FRAME_crch_knl_dn_03 845 +#define FRAME_crch_knl_dn_04 846 +#define FRAME_crch_knl_dn_05 847 +#define FRAME_crch_knl_dn_06 848 +#define FRAME_crch_knl_dn_07 849 +#define FRAME_crch_knl_dn_08 850 +#define FRAME_crch_amb_std_01 851 +#define FRAME_crch_amb_std_02 852 +#define FRAME_crch_amb_std_03 853 +#define FRAME_crch_amb_std_04 854 +#define FRAME_crch_amb_std_05 855 +#define FRAME_crch_amb_std_06 856 +#define FRAME_crch_amb_std_07 857 +#define FRAME_crch_amb_std_08 858 +#define FRAME_crch_amb_std_09 859 +#define FRAME_crch_amb_std_10 860 +#define FRAME_crch_amb_std_11 861 +#define FRAME_crch_amb_std_12 862 +#define FRAME_crch_amb_std_13 863 +#define FRAME_crch_amb_std_14 864 +#define FRAME_crch_amb_std_15 865 +#define FRAME_crch_amb_std_16 866 +#define FRAME_crch_amb_std_17 867 +#define FRAME_crch_amb_std_18 868 +#define FRAME_crch_amb_std_19 869 +#define FRAME_crch_amb_std_20 870 +#define FRAME_crch_amb_std_21 871 +#define FRAME_crch_amb_std_22 872 +#define FRAME_crch_amb_std_23 873 +#define FRAME_crch_amb_std_24 874 +#define FRAME_crch_amb_std_25 875 +#define FRAME_crch_amb_std_26 876 +#define FRAME_crch_amb_std_27 877 +#define FRAME_crch_amb_std_28 878 +#define FRAME_crch_amb_std_29 879 +#define FRAME_crch_amb_std_30 880 +#define FRAME_crch_amb_std_31 881 +#define FRAME_crch_amb_std_32 882 +#define FRAME_crch_amb_std_33 883 +#define FRAME_crch_amb_std_34 884 +#define FRAME_crch_shoot_01 885 +#define FRAME_crch_shoot_02 886 +#define FRAME_crch_shoot_03 887 +#define FRAME_crch_reload_01 888 +#define FRAME_crch_reload_02 889 +#define FRAME_crch_reload_03 890 +#define FRAME_crch_reload_04 891 +#define FRAME_crch_reload_05 892 +#define FRAME_crch_reload_06 893 +#define FRAME_crch_reload_07 894 +#define FRAME_crch_reload_08 895 +#define FRAME_crch_reload_09 896 +#define FRAME_crch_reload_10 897 +#define FRAME_crch_reload_11 898 +#define FRAME_crch_reload_12 899 +#define FRAME_crch_reload_13 900 +#define FRAME_crch_reload_14 901 +#define FRAME_crch_reload_15 902 +#define FRAME_crch_reload_16 903 +#define FRAME_crch_reload_17 904 +#define FRAME_crch_reload_18 905 +#define FRAME_crch_reload_19 906 +#define FRAME_crch_reload_20 907 +#define FRAME_crch_reload_21 908 +#define FRAME_crch_reload_22 909 +#define FRAME_crch_reload_23 910 +#define FRAME_crch_reload_24 911 +#define FRAME_crch_reload_25 912 +#define FRAME_crch_reload_26 913 +#define FRAME_crch_reload_27 914 +#define FRAME_crch_reload_28 915 +#define FRAME_crch_reload_29 916 +#define FRAME_crch_reload_30 917 +#define FRAME_crch_reload_31 918 +#define FRAME_crch_reload_32 919 +#define FRAME_crch_reload_33 920 +#define FRAME_crch_reload_34 921 +#define FRAME_crch_reload_35 922 +#define FRAME_crch_walk_01 923 +#define FRAME_crch_walk_02 924 +#define FRAME_crch_walk_03 925 +#define FRAME_crch_walk_04 926 +#define FRAME_crch_walk_05 927 +#define FRAME_crch_walk_06 928 +#define FRAME_crch_walk_07 929 + +#define MODEL_SCALE 1.000000 diff --git a/gamesrc/AI_DOG.C b/gamesrc/AI_DOG.C new file mode 100644 index 0000000..4c5ac63 --- /dev/null +++ b/gamesrc/AI_DOG.C @@ -0,0 +1,589 @@ +// dog +#include "g_local.h" +#include "ai_dog.h" + +void dog_sound (edict_t *self); +void dog_end_stand (edict_t *self); +void dog_sound_think (edict_t *self); +void dog_melee (edict_t *self); +void dog_evade_amb (edict_t *self); +void dog_melee_bail (edict_t *self); +void dog_evade_checkadjust (edict_t *self); +void dog_evade_adjust (edict_t *self); +void dog_lick2( edict_t *self ); +void dog_pounce (edict_t *self); +void dog_talk_think ( edict_t *self ); +void dog_bite (edict_t *self); +void dog_bark (edict_t *self); +void dog_growl (edict_t *self); + +#include "ai_dog_tables.h" + +char *wuf[7] = +{ +"actors/dog/dg_bark1.wav", +"actors/dog/dg_bark2.wav", +"actors/dog/dg_die.wav", +"actors/dog/dg_grwl1.wav", +"actors/dog/dg_grwl2.wav", +"actors/dog/dg_lunge.wav", +"actors/dog/dg_yelp.wav" +}; + +void dog_yelp (edict_t *self) +{ + self->last_talk_time = level.time; + gi.sound( self, CHAN_VOICE, gi.soundindex( wuf[6] ), 1, ATTN_NORM, 0 ); +} + +void dog_bark (edict_t *self) +{ + self->last_talk_time = level.time; + gi.sound( self, CHAN_VOICE, gi.soundindex( wuf[rand()%2] ), 1, ATTN_NORM, 0 ); +} + +void dog_growl (edict_t *self) +{ + self->last_talk_time = level.time + 0.5; // growl lasts a bit longer + gi.sound( self, CHAN_BODY, gi.soundindex( wuf[3+rand()%3] ), 1, ATTN_NORM, 0 ); +} + +void dog_talk_think ( edict_t *self ) +{ + edict_t *talk_ent; + cast_memory_t *mem; + + if (!(talk_ent = self->cast_info.talk_ent)) + return; + + if (VectorDistance( talk_ent->s.origin, self->s.origin ) > 600) + { + self->cast_info.talk_ent = NULL; + return; + } + + if ( (self->cast_info.talk_ent == &g_edicts[1]) + && (self->cast_info.talk_ent->last_talk_time < (level.time - TALK_OTHER_DELAY*2)) + && (self->last_talk_time > (level.time - TALK_SELF_DELAY))) + { + return; + } + +// if (last_client_talk && last_client_talk > (level.time - TALK_OTHER_DELAY)) +// return; // don't talk too much around the client + + if ((talk_ent->health <= 0) || !visible(self, talk_ent) || !infront(talk_ent, self)) + { + self->cast_info.talk_ent = NULL; + return; + } + + mem = level.global_cast_memory[self->character_index][talk_ent->character_index]; + if (!mem || (mem->flags & MEMORY_NO_TALK)) + return; + + // say something! + if ( ( (self->last_talk_time < (level.time - TALK_SELF_DELAY)) // we haven't spoken for a while + || ( (talk_ent->client || talk_ent->last_talk_time) // if they haven't spoken yet, don't bother + && (talk_ent->last_talk_time > (level.time - TALK_OTHER_DELAY*1.5)) // or they've just said something, and we've allowed some time for them to finish saying it + && (talk_ent->cast_info.talk_ent == self) + && (self->last_talk_time < talk_ent->last_talk_time) + && (self->last_talk_time < (level.time - TALK_OTHER_DELAY)))) + && (talk_ent->last_talk_time < (level.time - TALK_OTHER_DELAY))) + { + if (talk_ent->client) + { + // should we be aggressive? or friendly? + + if ((self->moral < MORAL_AGGRESSIVE) || (!self->profanity_level && talk_ent->profanity_level && (self->moral < rand()%MORAL_MAX))) + { // friendly + self->cast_info.currentmove = &dog_move_sniff; + dog_bark( self ); + } + else if (self->profanity_level) + { // attack! + AI_MakeEnemy( self, talk_ent, 0 ); + dog_bark( self ); + } + else // ready to attack at any second + { + self->cast_info.currentmove = &dog_move_sniff; + dog_growl (self); + self->profanity_level = 3; + } + + self->last_talk_time = level.time; + + if (!infront( self, talk_ent )) + { + self->cast_info.avoid( self, talk_ent, true ); + } + } + } +} + +void dog_end_stand( edict_t *self ) +{ + if (self->cast_info.move_stand_evade && (self->last_stand_evade > (level.time - 3))) + return; + + if (random() <= 0.2) + { + self->cast_info.currentmove = &dog_move_sniff; + } + else if (random() <= 0.1) + { + self->cast_info.currentmove = &dog_move_bark; + dog_bark (self); + } +/* + else if ( (random() <= 0.1) + && (AI_SideTrace( self, 32, 90, -1 ))) + { + self->cast_info.currentmove = &dog_move_pee; + } +*/ + else + { + self->cast_info.currentmove = self->cast_info.move_stand; + } +} + +void dog_backoff( edict_t *self, edict_t *other ) +{ + +} + +void dog_pain (edict_t *self, edict_t *other, float kick, int damage, int mdx_part, int mdx_subobject) +{ + int rnd; + int baseskin;//, currentskin; + + baseskin = self->s.model_parts[mdx_part].baseskin; + + if (self->health < (self->max_health * 0.5)) + { + self->s.model_parts[PART_HEAD].skinnum[0] = baseskin + 2; + } + else if (self->health < (self->max_health * 0.75)) + { + self->s.model_parts[PART_HEAD].skinnum[0] = baseskin + 1; + } + + AI_CheckMakeEnemy( self, other ); + + if (level.time < self->pain_debounce_time) + return; + + self->pain_debounce_time = level.time + 3 + random(); + + if (skill->value >= 3) + return; // no pain anims in nightmare + + + if (rand()%2) + dog_yelp (self); + + + // Ridah, randomly don't play an animation, since it' leaves them WAY open to be killed + if (skill->value > 0 && rand()%2) + return; + + rnd = rand()%3; + + switch (rnd) + { + case 0: + self->cast_info.currentmove = &dog_move_pain1; + break; + case 1: + self->cast_info.currentmove = &dog_move_pain2; + break; + case 2: + self->cast_info.currentmove = &dog_move_pain3; + break; + } + +} + +void dog_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + int rnd; + +// self->s.modelindex2 = 0; + + // regular death + self->takedamage = DAMAGE_YES; + + if (DeathByGib(self, inflictor, attacker, damage)) + { // gib + self->deadflag = DEAD_DEAD; + GibEntity( self, inflictor, damage ); + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + return; + } + + if (self->deadflag == DEAD_DEAD) + return; + + self->deadflag = DEAD_DEAD; + +// if (!self->onfiretime) + dog_yelp (self); + + rnd = rand()%1; + + switch (rnd) + { + case 0: + self->cast_info.currentmove = &dog_move_death1; + break; + case 1: + self->cast_info.currentmove = &dog_move_death2; + break; + } + +} + +qboolean dog_attack (edict_t *self) +{ + vec3_t vec; + float dist; + + self->cast_info.aiflags |= AI_RUN_LIKE_HELL; // dog runs really fast + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + dist = VectorNormalize( vec ); + + // start panting now when we stop + self->cast_info.move_stand = &dog_move_pant; + + // yell at them? + if (self->last_talk_time < (level.time - 0.5*TALK_FIGHTING_DELAY)) + { + if (rand()%2) + dog_bark(self); + else + dog_growl(self); + } + + { + qboolean attack=false; + + if (dist < 48 && VectorLength( self->enemy->velocity ) < 250) + { + attack = true; + } + else if (dist < 64) + { + attack = false; // so we do a high attack + } + else // are they running towards us? + { + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + VectorMA( vec, 0.5, self->enemy->velocity, vec ); + dist = VectorNormalize( vec ); + + if (dist < 96) + { + attack = true; + } + + } + + if (attack) + { + int rnd; + + self->ideal_yaw = vectoyaw(vec); + + M_ChangeYaw( self ); + + if (vec[2] < -0.5) + { + self->cast_info.currentmove = &dog_move_low_atk; + } + else if (vec[2] < -0.1) + { + self->cast_info.currentmove = &dog_move_med_atk; + } + else if (vec[2] > 0.5) + { + self->cast_info.currentmove = &dog_move_upr_atk; + } + else if (self->enemy->maxs[2] < self->enemy->cast_info.standing_max_z) + { + self->cast_info.currentmove = &dog_move_med_atk; + } +/* + if (self->enemy->maxs[2] < 30) + { + if (rand()%10 < 8) + self->cast_info.currentmove = &dog_move_med_atk; + else + self->cast_info.currentmove = &dog_move_low_atk; + } + else if (self->maxs[2] > self->enemy->maxs[2] || self->s.origin[2] > self->enemy->s.origin[2]) + { + self->cast_info.currentmove = &dog_move_low_atk; + } + else if (self->s.origin[2] < self->enemy->s.origin[2]) + { + self->cast_info.currentmove = &dog_move_upr_atk; + } +*/ + else + { + rnd = rand()%10; + + if (dist < 48 && rnd < 4) + self->cast_info.currentmove = &dog_move_low_atk; + else if (rnd < 6) + self->cast_info.currentmove = &dog_move_med_atk; + else + self->cast_info.currentmove = &dog_move_upr_atk; + } + + self->cast_info.aiflags &=~ AI_RUSH_THE_PLAYER; + return true; + } + else if (dist < 180) // Ridah, increased this to help SR4 dogs jump onto cars + { + self->ideal_yaw = vectoyaw(vec); + M_ChangeYaw( self ); + + self->cast_info.currentmove = &dog_move_upr_atk; + return true; + } + else if (dist < 400) + self->cast_info.aiflags |= AI_RUSH_THE_PLAYER; + + } + + return false; +} + + +void dog_bite (edict_t *self) +{ + vec3_t start;//, offset; + vec3_t forward, right; + + float damage = 8; + + if (self->cast_info.currentmove == &dog_move_upr_atk) + damage *= 2; // double handed attack + + // yell at them? + if (self->last_talk_time < (level.time - 1.0)) + { + if (rand()%2) + dog_bark(self); + else + dog_growl(self); + } + + // VectorSet(offset, 0, 8, self->viewheight - 4); + //VectorSet (offset, 0, 8, 16); + + AngleVectors (self->s.angles, forward, right, NULL); + + //G_ProjectSource (self->s.origin, offset, forward, right, start); + + /* + if (self->cast_info.currentmove == &dog_move_low_atk) + start[2] -= 20; + else if (self->cast_info.currentmove == &dog_move_med_atk) + start[2] -= 8; + else if (self->cast_info.currentmove == &dog_move_upr_atk) + start[2] += 8; + */ + + damage *= 0.5; + + // fire_dogbite (self, start, forward, damage, 10, MOD_DOGBITE); + if (self->enemy) + { +// trace_t tr; + vec3_t aimdir, dang, end; + + VectorSubtract (self->enemy->s.origin, self->s.origin, aimdir); + vectoangles (aimdir, dang); + AngleVectors (dang, forward, NULL, NULL); + VectorMA (self->s.origin, 16, forward, start); + VectorMA (start, 32, forward, end); + + // ok it seems to line up with the head ok now + // NAV_DrawLine (start, end); + fire_blackjack( self, start, forward, damage, 0, MOD_DOGBITE ); + /* + + if (VectorLength (aimdir) < 96) + { + tr = gi.trace (start, NULL, NULL, end, self, MASK_SHOT ); + + if (tr.ent->takedamage) + T_Damage (tr.ent, self, self, aimdir, tr.endpos, tr.plane.normal, damage, 0, DAMAGE_BULLET, MOD_DOGBITE); + } + // ok lets see why this isnt working + else if (self->enemy->groundentity == self) + T_Damage (self->enemy, self, self, aimdir, self->enemy->s.origin, vec3_origin, damage, 0, DAMAGE_BULLET, MOD_DOGBITE); + */ + } +} + +void dog_long_attack (edict_t *self) +{ +} + + +void dog_pounce (edict_t *self) +{ + if (!self->enemy) + return; + + self->ideal_yaw = entyaw( self, self->enemy ); + M_ChangeYaw( self ); + + // leap if on ground + if (self->groundentity) + { + AngleVectors( self->s.angles, self->velocity, NULL, NULL ); + VectorScale( self->velocity, 500, self->velocity ); + self->velocity[2] = 200; + self->groundentity = NULL; + } + +} + + +void dog_avoid ( edict_t *self, edict_t *other, qboolean face ) +{ + vec3_t vec; + + if (self->health <= 0) + return; + + if (!self->groundentity) + return; + + self->cast_info.last_avoid = level.time; + + if (face) + { // turn to face them + VectorSubtract( other->s.origin, self->s.origin, vec ); + self->cast_info.avoid_ent = other; + } + else + { // turn to face away from them + VectorSubtract( self->s.origin, other->s.origin, vec ); + self->cast_info.avoid_ent = NULL; + } + VectorNormalize( vec ); + + self->ideal_yaw = vectoyaw( vec ); + + if (!AI_SideTrace( self, -64, 0, 1)) + self->cast_info.currentmove = &dog_move_avoid_reverse_walk; + else + self->cast_info.currentmove = &dog_move_avoid_walk; +} + +void dog_catch_fire( edict_t *self, edict_t *other ) +{ + self->enemy = NULL; // stop attacking + self->cast_info.currentmove = &dog_move_run_on_fire; +} + +/*QUAKED cast_dog (1 .5 0) (-16 -16 -16) (16 16 22) x TRIGGERED_START x x x +Dog +cast_group defines which group the character is a member of +default cast_group is 0, which is neutral (won't help others out) +player's cast_group is 1 (friendly characters) +skin = 1 or 2 +model="models\actors\dog\" +*/ +void SP_cast_dog (edict_t *self) +{ + int i; + int skin; + +// return; + + if (deathmatch->value) + { + G_FreeEdict (self); + return; + } + + self->movetype = MOVETYPE_STEP; + self->solid = SOLID_BBOX; + + skin = self->s.skinnum = (self->skin-1) * 3; + + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, DUCKING_MAX_Z+2); + + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->art_skins = NULL; + + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/enemy_dog/enemy_dog.mdx"); + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_HEAD].baseskin = self->s.model_parts[PART_HEAD].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/enemy_dog/enemy_dog.mdx", &self->s.model_parts[PART_HEAD] ); + + if (!self->health) + self->health = 200; + self->gib_health = -200; + self->mass = 100; + + self->gender = GENDER_NONE; + + self->yaw_speed = 20; + + self->pain = dog_pain; + self->die = dog_die; + + self->cast_info.checkattack = AI_CheckAttack; + self->cast_info.attack = dog_attack; + self->cast_info.long_attack = dog_long_attack; + self->cast_info.talk = dog_end_stand; + self->cast_info.avoid = dog_avoid; + self->cast_info.backoff = dog_backoff; + self->cast_info.catch_fire = dog_catch_fire; + self->cast_info.max_attack_distance = 128; + + self->cast_info.move_stand = &dog_move_amb; + self->cast_info.move_run = &dog_move_run; + self->cast_info.move_runwalk = &dog_move_trot; +// self->cast_info.move_jump = &dog_move_jump; // Jumping animation screws up jump attacking, so don't do one + + self->cast_info.move_avoid_walk = &dog_move_avoid_walk; + self->cast_info.move_avoid_run = &dog_move_avoid_run; + self->cast_info.move_avoid_reverse_walk = &dog_move_avoid_reverse_walk; + self->cast_info.move_avoid_reverse_run = &dog_move_avoid_reverse_run; + + self->cast_info.move_evade = &dog_move_growl; + + self->cast_info.currentmove = self->cast_info.move_stand; + + self->cast_info.aiflags |= AI_MELEE; + self->cast_info.aiflags |= AI_NO_TALK; + self->cast_info.aiflags |= AI_ADJUSTPITCH; + +// self->gravity = 0.7; + +// Temp fix for Dog in SR2 that follows lamont +//if (self->leader_target) +// self->target = NULL; + + // we're a dog, therefore we don't hide + self->cast_info.aiflags |= AI_NO_TAKE_COVER; + + gi.linkentity (self); + + walking_cast_start (self); +} diff --git a/gamesrc/AI_DOG.H b/gamesrc/AI_DOG.H new file mode 100644 index 0000000..5c5d355 --- /dev/null +++ b/gamesrc/AI_DOG.H @@ -0,0 +1,167 @@ +#define FRAME_amb_01 0 +#define FRAME_amb_02 1 +#define FRAME_amb_03 2 +#define FRAME_amb_04 3 +#define FRAME_amb_05 4 +#define FRAME_amb_06 5 +#define FRAME_amb_07 6 +#define FRAME_amb_08 7 +#define FRAME_amb_09 8 +#define FRAME_amb_10 9 +#define FRAME_amb_11 10 +#define FRAME_amb_12 11 +#define FRAME_pant_01 12 +#define FRAME_pant_02 13 +#define FRAME_pant_03 14 +#define FRAME_pant_04 15 +#define FRAME_pant_05 16 +#define FRAME_pant_06 17 +#define FRAME_pant_07 18 +#define FRAME_pant_08 19 +#define FRAME_pant_09 20 +#define FRAME_pant_10 21 +#define FRAME_pant_11 22 +#define FRAME_pant_12 23 +#define FRAME_pant_13 24 +#define FRAME_pant_14 25 +#define FRAME_sniff_01 26 +#define FRAME_sniff_02 27 +#define FRAME_sniff_03 28 +#define FRAME_sniff_04 29 +#define FRAME_sniff_05 30 +#define FRAME_sniff_06 31 +#define FRAME_sniff_07 32 +#define FRAME_sniff_08 33 +#define FRAME_sniff_09 34 +#define FRAME_sniff_10 35 +#define FRAME_sniff_11 36 +#define FRAME_sniff_12 37 +#define FRAME_sniff_13 38 +#define FRAME_sniff_14 39 +#define FRAME_sniff_15 40 +#define FRAME_sniff_16 41 +#define FRAME_sniff_17 42 +#define FRAME_sniff_18 43 +#define FRAME_sniff_19 44 +#define FRAME_sniff_20 45 +#define FRAME_bark_01 46 +#define FRAME_bark_02 47 +#define FRAME_bark_03 48 +#define FRAME_bark_04 49 +#define FRAME_bark_05 50 +#define FRAME_bark_06 51 +#define FRAME_bark_07 52 +#define FRAME_bark_08 53 +#define FRAME_bark_09 54 +#define FRAME_growl_01 55 +#define FRAME_growl_02 56 +#define FRAME_growl_03 57 +#define FRAME_growl_04 58 +#define FRAME_growl_05 59 +#define FRAME_pee_01 60 +#define FRAME_pee_02 61 +#define FRAME_pee_03 62 +#define FRAME_pee_04 63 +#define FRAME_pee_05 64 +#define FRAME_pee_06 65 +#define FRAME_pee_07 66 +#define FRAME_pee_08 67 +#define FRAME_pee_09 68 +#define FRAME_pee_10 69 +#define FRAME_pee_11 70 +#define FRAME_pee_12 71 +#define FRAME_low_atk_01 72 +#define FRAME_low_atk_02 73 +#define FRAME_low_atk_03 74 +#define FRAME_low_atk_04 75 +#define FRAME_low_atk_05 76 +#define FRAME_low_atk_06 77 +#define FRAME_low_atk_07 78 +#define FRAME_low_atk_08 79 +#define FRAME_med_atk_01 80 +#define FRAME_med_atk_02 81 +#define FRAME_med_atk_03 82 +#define FRAME_med_atk_04 83 +#define FRAME_med_atk_05 84 +#define FRAME_med_atk_06 85 +#define FRAME_med_atk_07 86 +#define FRAME_upr_atk_01 87 +#define FRAME_upr_atk_02 88 +#define FRAME_upr_atk_03 89 +#define FRAME_upr_atk_04 90 +#define FRAME_upr_atk_05 91 +#define FRAME_upr_atk_06 92 +#define FRAME_upr_atk_07 93 +#define FRAME_upr_atk_08 94 +#define FRAME_upr_atk_09 95 +#define FRAME_upr_atk_10 96 +#define FRAME_pain1_01 97 +#define FRAME_pain1_02 98 +#define FRAME_pain1_03 99 +#define FRAME_pain1_04 100 +#define FRAME_pain1_05 101 +#define FRAME_pain2_01 102 +#define FRAME_pain2_02 103 +#define FRAME_pain2_03 104 +#define FRAME_pain2_04 105 +#define FRAME_pain2_05 106 +#define FRAME_pain2_06 107 +#define FRAME_pain2_07 108 +#define FRAME_pain3_01 109 +#define FRAME_pain3_02 110 +#define FRAME_pain3_03 111 +#define FRAME_pain3_04 112 +#define FRAME_pain3_05 113 +#define FRAME_death1_01 114 +#define FRAME_death1_02 115 +#define FRAME_death1_03 116 +#define FRAME_death1_04 117 +#define FRAME_death1_05 118 +#define FRAME_death1_06 119 +#define FRAME_death1_07 120 +#define FRAME_death1_08 121 +#define FRAME_death1_09 122 +#define FRAME_death1_10 123 +#define FRAME_death1_11 124 +#define FRAME_death1_12 125 +#define FRAME_death1_13 126 +#define FRAME_death1_14 127 +#define FRAME_death1_15 128 +#define FRAME_death1_16 129 +#define FRAME_death1_17 130 +#define FRAME_death2_01 131 +#define FRAME_death2_02 132 +#define FRAME_death2_03 133 +#define FRAME_death2_04 134 +#define FRAME_death2_05 135 +#define FRAME_death2_06 136 +#define FRAME_death2_07 137 +#define FRAME_death2_08 138 +#define FRAME_death2_09 139 +#define FRAME_walk_01 140 +#define FRAME_walk_02 141 +#define FRAME_walk_03 142 +#define FRAME_walk_04 143 +#define FRAME_walk_05 144 +#define FRAME_walk_06 145 +#define FRAME_walk_07 146 +#define FRAME_walk_08 147 +#define FRAME_walk_09 148 +#define FRAME_walk_10 149 +#define FRAME_walk_11 150 +#define FRAME_walk_12 151 +#define FRAME_walk_13 152 +#define FRAME_trot_01 153 +#define FRAME_trot_02 154 +#define FRAME_trot_03 155 +#define FRAME_trot_04 156 +#define FRAME_trot_05 157 +#define FRAME_trot_06 158 +#define FRAME_trot_07 159 +#define FRAME_trot_08 160 +#define FRAME_run_01 161 +#define FRAME_run_02 162 +#define FRAME_run_03 163 +#define FRAME_run_04 164 + +#define MODEL_SCALE 1.000000 \ No newline at end of file diff --git a/gamesrc/AI_PUNK.C b/gamesrc/AI_PUNK.C new file mode 100644 index 0000000..8933f98 --- /dev/null +++ b/gamesrc/AI_PUNK.C @@ -0,0 +1,1617 @@ +#include "g_local.h" +#include "ai_punk.h" + +#include "voice_punk.h" + +void punk_end_stand( edict_t *self ); +void punk_firegun( edict_t *self ); +void punk_firegun_left( edict_t *self ); +void punk_firegun_right( edict_t *self ); +void punk_talk_think( edict_t *self ); +// Joseph 20-NOV-98 +void think_killedict( edict_t *self ); +void think_playthud( edict_t *self ); +// END JOSEPH + +void punk_firegun_cr (edict_t *self); +void punk_shotgun_reload( edict_t *self ); + +void punk_reload_snd (edict_t *self); + +void punk_firehmg( edict_t *self ); +void punk_firehmg_delay (edict_t *self); +void punk_firebazooka_delay (edict_t *self); +void punk_hmg_avoid (edict_t *self); + +// ========================================================================= + +#include "ai_punk_tables.h" + +// ========================================================================= + +#define PUNK_FLAMEGUN 4 +#define PUNK_BAZOOKA 8 +#define PUNK_HMG 16 + +#define PUNK_TOMMYGUN 64 // spawnflag + +#define PUNK_GRENADE 128 +#define PUNK_SHOTGUN 8192 + + +int tommy_soundindex; +int shotgun_soundindex; +int shotgun_reload_soundindex; +int heavymachinegun_soundindex; +int rocketgun_soundindex; + +void punk_reload_snd (edict_t *self) +{ + if (self->spawnflags & PUNK_TOMMYGUN) + gi.sound(self, CHAN_VOICE, gi.soundindex("weapons/machinegun/machgcock.wav"), 1, ATTN_NORM, 0); + else if (self->spawnflags & PUNK_HMG) + gi.sound(self, CHAN_VOICE, gi.soundindex("weapons/machinegun/machgcock.wav"), 1, ATTN_NORM, 0); + else if (self->spawnflags & PUNK_BAZOOKA) + gi.sound(self, CHAN_VOICE, gi.soundindex("weapons/rocket_launcher/reload.wav"), 1, ATTN_NORM, 0); + else if (self->spawnflags & PUNK_GRENADE) + gi.sound(self, CHAN_VOICE, gi.soundindex("weapons/grenade_launcher/reload.wav"), 1, ATTN_NORM, 0); +} + +void punk_catch_fire( edict_t *self, edict_t *other ) +{ + self->enemy = NULL; // stop attacking + self->cast_info.currentmove = &punk_move_run_on_fire; +} + +void punk_talk_think( edict_t *self ) +{ + AI_TalkThink( self, true ); +} + +void punk_talk( edict_t *self ) +{ + float rnd; + + rnd = random() * 7; + + // only make talking jester if we've recently said something + if (!(self->cast_info.aiflags & AI_REPEAT_TALK_JESTURE) && self->last_talk_time < (level.time - 1.0)) + { + self->cast_info.currentmove = self->cast_info.move_stand; + + return; + } + + if (self->cast_info.currentmove != self->cast_info.move_stand) + return; + + if (self->spawnflags & PUNK_SHOTGUN) + { + if (rnd < 1) + self->cast_info.currentmove = &punk_move_sg_stand; + else if (rnd < 2) + self->cast_info.currentmove = &punk_move_sg_talk1; + else if (rnd < 3) + self->cast_info.currentmove = &punk_move_sg_talk2; + else if (rnd < 4) + self->cast_info.currentmove = &punk_move_sg_talk3; + else if (rnd < 5) + self->cast_info.currentmove = &punk_move_sg_talk4; + else if (rnd < 6) + self->cast_info.currentmove = &punk_move_sg_talk5; + else + self->cast_info.currentmove = &punk_move_sg_talk6; + } + else + { + if (rnd < 1) + self->cast_info.currentmove = &punk_move_talk1; + else if (rnd < 2) + self->cast_info.currentmove = &punk_move_talk2; + else if (rnd < 3) + self->cast_info.currentmove = &punk_move_talk3; + else if (rnd < 4) + self->cast_info.currentmove = &punk_move_talk4; + else if (rnd < 5) + self->cast_info.currentmove = &punk_move_talk5; + else if (rnd < 6) + self->cast_info.currentmove = &punk_move_talk6; + else + self->cast_info.currentmove = &punk_move_head_wipe; + } +} + +void punk_avoid ( edict_t *self, edict_t *other, qboolean face ) +{ + vec3_t vec; + + if (self->health <= 0) + return; + + if (!self->groundentity) + return; + + if (!other) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + self->cast_info.last_avoid = level.time; + self->cast_info.avoid_ent = NULL; + + if (face) + { // turn to face them + VectorSubtract( other->s.origin, self->s.origin, vec ); + self->cast_info.avoid_ent = other; + } + else + { // turn to face away from them + VectorSubtract( self->s.origin, other->s.origin, vec ); + } + VectorNormalize( vec ); + + self->ideal_yaw = vectoyaw( vec ); + + if (self->maxs[2] > DUCKING_MAX_Z) + { + if (self->cast_info.aiflags & AI_NOWALK_FACE) + { +// if (face) + { + int side_result; + + side_result = AI_SideTrace( self, 48, 90, SIDE_RANDOM ); + + if (side_result == AI_SideTrace( self, 48, 90 + (self->ideal_yaw - self->s.angles[YAW]), side_result )) + { + if (side_result < 0) + self->cast_info.currentmove = &punk_move_lside_step; + else + self->cast_info.currentmove = &punk_move_rside_step; + + return; + } + + // if no move set, just turn to face + M_ChangeYaw( self ); + + return; + } + } + + if ((VectorDistance( self->s.origin, other->s.origin ) > 72) || !face) + self->cast_info.currentmove = &punk_move_avoid_walk; + else + self->cast_info.currentmove = &punk_move_avoid_reverse_walk; + } + else + { + self->cast_info.currentmove = &punk_move_avoid_crouch_walk; + } + +} + +void punk_end_stand( edict_t *self ) +{ + if (self->cast_info.move_stand_evade && (self->last_stand_evade > (level.time - 3))) + return; + + if (self->cast_info.currentmove == self->cast_info.move_crstand) + return; + +// if ( ((!self->cast_group) && (random() < 0.8)) +// || ((self->cast_group) && (random() < 0.3))) + { // stand normally + + if ( (self->cast_info.currentmove != &punk_move_head_wipe) + && (random() < 0.3) && self->spawnflags & PUNK_TOMMYGUN) + { // randomly wipe our face + self->cast_info.currentmove = &punk_move_head_wipe; + } + else + { + self->cast_info.currentmove = self->cast_info.move_stand; + } + +// return; + } + + AI_CheckTalk(self); +} + +void punk_long_attack( edict_t *self ) +{ + // keep running, and try to fire if possible + + if (self->maxs[2] < self->cast_info.standing_max_z) + return; + + // self->cast_info.currentmove = &punk_move_run_shoot; + + if (self->spawnflags & PUNK_TOMMYGUN) + self->cast_info.currentmove = &punk_move_run_tg_sht; + else if (self->spawnflags & PUNK_SHOTGUN) + self->cast_info.currentmove = &punk_move_run_shg_sht; + else if (self->spawnflags & PUNK_HMG) + self->cast_info.currentmove = &punk_move_run_hmg_sht; + else if (self->spawnflags & PUNK_BAZOOKA) + self->cast_info.currentmove = &punk_move_run_bazooka_sht; + else if (self->spawnflags & PUNK_FLAMEGUN) + self->cast_info.currentmove = &punk_move_run_flamegun_sht; + else if (self->spawnflags & PUNK_GRENADE) + self->cast_info.currentmove = &punk_move_run_grenade_sht; + else + { + gi.dprintf ("actor is missing weapon spawnflag\n"); + self->cast_info.currentmove = &punk_move_run_shg_sht; + } +} + +qboolean punk_attack( edict_t *self ) +{ + + if (self->maxs[2] < self->cast_info.standing_max_z) + { + self->cast_info.currentmove = &punk_move_crouch_shoot; + return true; + } + else + { + vec3_t vec; + float dist; + + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + dist = VectorNormalize( vec ); + + // Special case: enemy has flamethrower, run backwards, keep firing + if ( (dist < 384) // they're close + && (self->spawnflags & PUNK_TOMMYGUN) + && (self->enemy->client) + && (self->enemy->client->pers.weapon) + && (stricmp(self->enemy->client->pers.weapon->classname, "weapon_flamethrower") == 0)) + { + int side_result; + + // see if we can go backwards + if (side_result = AI_SideTrace( self, -64, 0, 1 )) + { + self->cast_info.currentmove = &punk_move_run_reverse_tg_sht; + return true; + } + + } + + // if just popped out from a corner, just stand here + if (self->dont_takecover_time > (level.time - 2)) + { + goto stand_shoot; + } + + + if ((skill->value > random()*2) && (self->cast_info.last_side_attack_time < (level.time - 1)) && (dist > 128)) + { + // attempt a side-ways attack + + int side_result, side_result2; + + side_result = AI_SideTrace( self, 64, 90, -self->cast_info.last_side_attack ); + + if (side_result) + { + side_result2 = AI_SideTrace( self, 128, 90, side_result ); + + if (side_result2 == side_result) + { + /* + if (side_result < 0) + self->cast_info.currentmove = &punk_move_lside_run; + else + self->cast_info.currentmove = &punk_move_rside_run; + */ + if (side_result < 0) + { + if (self->spawnflags & PUNK_TOMMYGUN) + self->cast_info.currentmove = &punk_move_lsd_tg_run; + else if (self->spawnflags & PUNK_SHOTGUN) + self->cast_info.currentmove = &punk_move_lsd_shg_run; + else if (self->spawnflags & PUNK_HMG) + // self->cast_info.currentmove = &punk_move_lsd_hmg_run; + self->cast_info.currentmove = &punk_move_walk_hmg_sht; + else if (self->spawnflags & PUNK_BAZOOKA) + self->cast_info.currentmove = &punk_move_lsd_bazooka_run; + else if (self->spawnflags & PUNK_FLAMEGUN) + self->cast_info.currentmove = &punk_move_lsd_flamegun_run; + else if (self->spawnflags & PUNK_GRENADE) + self->cast_info.currentmove = &punk_move_lsd_grenade_run; + else + { + gi.dprintf ("missing weapon spawnflag\n"); + self->cast_info.currentmove = &punk_move_lsd_shg_run; + } + } + else + { + if (self->spawnflags & PUNK_TOMMYGUN) + self->cast_info.currentmove = &punk_move_rsd_tg_run; + else if (self->spawnflags & PUNK_SHOTGUN) + self->cast_info.currentmove = &punk_move_rsd_shg_run; + else if (self->spawnflags & PUNK_HMG) + // self->cast_info.currentmove = &punk_move_rsd_hmg_run; + self->cast_info.currentmove = &punk_move_walk_hmg_sht; + else if (self->spawnflags & PUNK_BAZOOKA) + self->cast_info.currentmove = &punk_move_rsd_bazooka_run; + else if (self->spawnflags & PUNK_FLAMEGUN) + self->cast_info.currentmove = &punk_move_rsd_flamegun_run; + else if (self->spawnflags & PUNK_GRENADE) + self->cast_info.currentmove = &punk_move_rsd_grenade_run; + else + { + gi.dprintf ("missing weapon spawnflag\n"); + } + } + + + self->ideal_yaw = vectoyaw(vec) + side_result * 90; + + M_ChangeYaw( self ); + + self->cast_info.last_side_attack = side_result; + self->cast_info.last_side_attack_time = level.time; + + return true; + } + } + + } + + self->ideal_yaw = vectoyaw(vec); + + M_ChangeYaw( self ); + + // just shoot like normal + + // walk shooting? + if ((dist > 256) && directly_infront( self, self->enemy ) && AI_SideTrace(self, 32, 0, 1 ) ) + { + if (self->spawnflags & PUNK_TOMMYGUN) + self->cast_info.currentmove = &punk_move_walk_tg_sht; + else if (self->spawnflags & PUNK_HMG) + self->cast_info.currentmove = &punk_move_walk_hmg_sht; + else if (self->spawnflags & PUNK_BAZOOKA) + self->cast_info.currentmove = &punk_move_walk_bazooka_sht; + else if (self->spawnflags & PUNK_FLAMEGUN) + self->cast_info.currentmove = &punk_move_walk_flamegun_sht; + else if (self->spawnflags & PUNK_GRENADE) + self->cast_info.currentmove = &punk_move_walk_grenade_sht; + else if (self->spawnflags & PUNK_SHOTGUN) + { + if (dist > 800) // shotgun dude should get closer + self->cast_info.currentmove = &punk_move_walk_shg_sht; + else + self->cast_info.currentmove = &punk_move_run_shg_sht; + } + + return true; + } +/* TODO: Reverse walking anim table + else if ((dist < 128) && AI_SideTrace(self, -32, 0, 1 ) ) + { + self->cast_info.currentmove = &thug_move_reverse_walk_shoot; + return true; + } +*/ + // normal attack + +stand_shoot: + + self->ideal_yaw = vectoyaw(vec); + + M_ChangeYaw( self ); + + if (self->spawnflags & PUNK_TOMMYGUN) + self->cast_info.currentmove = &punk_move_tg_shoot; + else if (self->spawnflags & PUNK_SHOTGUN) + self->cast_info.currentmove = &punk_move_shg_shoot; + else if (self->spawnflags & PUNK_HMG) + self->cast_info.currentmove = &punk_move_hmg_shoot; + else if (self->spawnflags & PUNK_BAZOOKA) + self->cast_info.currentmove = &punk_move_bazooka_shoot; + else if (self->spawnflags & PUNK_FLAMEGUN) + self->cast_info.currentmove = &punk_move_flamegun_shoot; + else if (self->spawnflags & PUNK_GRENADE) + self->cast_info.currentmove = &punk_move_grenade_shoot; + else + { + gi.dprintf ("missing weapon spawnflag\n"); + self->cast_info.currentmove = &punk_move_shg_shoot; + } + + return true; + } + + return false; +} + +void punk_firegun_cr ( edict_t *self ) +{ + if (self->spawnflags & PUNK_SHOTGUN) + return; + else if (self->spawnflags & PUNK_HMG) + return; + else if (self->spawnflags & PUNK_BAZOOKA) + return; + else if (self->spawnflags & PUNK_FLAMEGUN) + return; + else if (self->spawnflags & PUNK_GRENADE) + return; + else if (self->spawnflags & PUNK_TOMMYGUN) + punk_firegun (self); + else + gi.dprintf ("error : not tagged right!\n"); +} + +void punk_hmg_avoid (edict_t *self) +{ + if (self->s.frame == FRAME_tg_shoot_05) + self->cast_info.avoid(self, self->enemy, true); + else + self->cast_info.avoid(self, self->enemy, false); +} + +void punk_firehmg_delay (edict_t *self) +{ + + if (self->s.frame == FRAME_tg_shoot_05) + self->cast_info.currentmove = &punk_move_hmg_shoot2; + else if (self->s.frame == FRAME_walk_tg_sht_10) + self->cast_info.currentmove = &punk_move_walk_hmg_sht2; + else + self->cast_info.currentmove = &punk_move_run_hmg_sht2; +} + +void punk_firebazooka_delay (edict_t *self) +{ + if (self->s.frame == FRAME_tg_shoot_05) + self->cast_info.currentmove = &punk_move_bazooka_shoot2; + else if (self->s.frame == FRAME_walk_tg_sht_10) + self->cast_info.currentmove = &punk_move_walk_bazooka_shoot2; + else + self->cast_info.currentmove = &punk_move_run_bazooka_shoot2; +} + +void punk_firehmg( edict_t *self ) +{ + + vec3_t start; + vec3_t forward, right; + vec3_t target; + vec3_t aim; + vec3_t offset; + int flash_number; + float dist; + + if (!AI_BeginAttack( self )) + { + // self->s.frame++; // skip the firing frame since it might have a muzzle flash + self->cast_info.currentmove = self->cast_info.move_stand; + + // may need to hack this + // self->s.frame == standframe; + return; + } + + if (self->duration++ > 30) + { + self->duration = 0; + self->cast_info.currentmove = &punk_move_tg_reload; + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + + // JOSEPH 26-MAY-99 + // yell at them? + if (self->last_talk_time < (level.time - TALK_FIGHTING_DELAY)) + { + if (self->name_index == NAME_NICKIBLANCO) + { + Voice_Random (self, self->enemy, &nickiblanco[6], 10); + } + else if (self->cast_group != 1) + Voice_Random(self, self->enemy, fightsounds, NUM_FIGHTING); + else + Voice_Random(self, self->enemy, friendlycombat, NUM_FRIENDLYCOMBAT ); + } + // END JOSEPH + + { + VectorSet(offset, 0, 8, self->viewheight-8); + + AngleVectors (self->s.angles, forward, right, NULL); + G_ProjectSource (self->s.origin, offset, forward, right, start); + + // project enemy back a bit and target there + VectorCopy (self->enemy->s.origin, target); + VectorMA (target, (-0.5 * (crandom())) * (1.0 - (skill->value/4.0)), self->enemy->velocity, target); + + if (self->enemy->maxs[2] < self->cast_info.standing_max_z) + target[2] += - ( 8 * random()); + else + target[2] += self->enemy->viewheight - 4 - (16 * random()); + + flash_number = MZ2_GUNNER_MACHINEGUN_1; + + VectorSubtract (target, start, aim); + dist = VectorNormalize (aim); + } + + self->ideal_yaw = vectoyaw( aim ); + + { + fire_bullet (self, start, aim, 15, 50, DEFAULT_BULLET_HSPREAD>>self->acc, DEFAULT_BULLET_VSPREAD>>self->acc, MOD_BARMACHINEGUN); + { + //if (self->lastduration == 1) + if (self->s.frame == FRAME_tg_shoot_01 + || self->s.frame == FRAME_walk_tg_sht_01 + || self->s.frame == FRAME_run_tg_sht_01) + { + gi.sound(self, CHAN_WEAPON, gi.soundindex("weapons/hmg/hmg.wav"), 1, ATTN_NORM, 0); + } + + //if (self->lastduration == 0) + // self->durationflag = 1; + } + } + +}; + + +void punk_firegun( edict_t *self ) +{ + vec3_t start; + vec3_t forward, right; + vec3_t target; + vec3_t aim; + vec3_t offset; + int flash_number; + float dist; + + + if (self->name_index == NAME_DAVID) + { + self->s.model_parts[PART_GUN].invisible_objects = 0; + self->s.model_parts[PART_GUN2].invisible_objects = 0; + } + + if (self->cast_info.aiflags & AI_RELOAD) + { // we need to reload first, just do it now (since it's a similar motion) + punk_shotgun_reload( self ); + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + + if (self->spawnflags & PUNK_TOMMYGUN) + { + if ( (self->maxs[2] == self->cast_info.standing_max_z) + && !(self->cast_info.aiflags & AI_SIDE_ATTACK) + && (self->duration++ > 40)) + { + + self->duration = 0; + self->cast_info.currentmove = &punk_move_tg_reload; + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + } + else if (self->spawnflags & PUNK_BAZOOKA) + { + if ( (self->maxs[2] == self->cast_info.standing_max_z) + && !(self->cast_info.aiflags & AI_SIDE_ATTACK) + && (self->duration++ > 3)) + { + + self->duration = 0; + self->cast_info.currentmove = &punk_move_tg_reload; + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + } + else if (self->spawnflags & PUNK_GRENADE) + { + if ( (self->maxs[2] == self->cast_info.standing_max_z) + && !(self->cast_info.aiflags & AI_SIDE_ATTACK) + && (self->duration++ > 2)) + { + + self->duration = 0; + self->cast_info.currentmove = &punk_move_tg_reload; + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + } + + + if (!AI_BeginAttack( self )) + { + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + + // JOSEPH 26-MAY-99 + // yell at them? + if (self->last_talk_time < (level.time - TALK_FIGHTING_DELAY)) + { + if (self->name_index == NAME_NICKIBLANCO) + { + Voice_Random (self, self->enemy, &nickiblanco[6], 10); + } + if (self->name_index == NAME_NICKIBLANCO) + { + Voice_Random (self, self->enemy, &nickiblanco[6], 10); + } + else if (self->name_index == NAME_TYRONE) + { + Voice_Random (self, self->enemy, &ty_tyrone[6], 10); + } + else if (self->name_index == NAME_MOKER) + { + Voice_Random (self, self->enemy, &steeltown_moker[6], 10); + } + else if (self->cast_group != 1) + Voice_Random(self, self->enemy, fightsounds, NUM_FIGHTING); + else + Voice_Random(self, self->enemy, friendlycombat, NUM_FRIENDLYCOMBAT ); + } + // END JOSEPH + + // fire the gun + if (self->spawnflags & PUNK_BAZOOKA) + { + VectorSet(offset, 0, 8, self->viewheight-8); + + AngleVectors (self->s.angles, forward, right, NULL); + G_ProjectSource (self->s.origin, offset, forward, right, start); + + // project enemy back a bit and target there + VectorCopy (self->enemy->s.origin, target); + + target[2] -= 24; // this will help create more splash damage + + VectorMA (target, (-0.5 * (crandom())) * (1.0 - (skill->value/4.0)), self->enemy->velocity, target); + + if (self->enemy->maxs[2] < self->cast_info.standing_max_z) + target[2] += - ( 8 * random()); + else + target[2] += self->enemy->viewheight - 4 - (16 * random()); + + flash_number = MZ2_GUNNER_MACHINEGUN_1; + + VectorSubtract (target, start, aim); + dist = VectorNormalize (aim); + + // idiot check + { + // clean shot??? + trace_t tr; + vec3_t mins; + vec3_t maxs; + vec3_t origin; + vec3_t destination; + + VectorCopy (self->s.origin, origin); + origin[2] += self->viewheight; + + VectorCopy (self->enemy->s.origin, destination); + destination[2] += self->enemy->viewheight; + + VectorSet (mins, -8, -8, -8); + VectorSet (maxs, 8, 8, 8); + + tr = gi.trace (origin, mins, maxs, destination, self, MASK_SHOT); + + if (tr.ent != self->enemy) + { + if (!(AI_ForceTakeCover (self, self->enemy, false))) + { + self->cast_info.avoid(self, self->enemy, false); + } + + if (self->duration) + self->duration--; + + // NAV_DrawLine (origin, destination); + return; + } + goto skipbail; // causes bazooka dude to shoot twice + } + } + else + { + VectorSet(offset, 0, 8, self->viewheight-8); + + AngleVectors (self->s.angles, forward, right, NULL); + G_ProjectSource (self->s.origin, offset, forward, right, start); + + // project enemy back a bit and target there + VectorCopy (self->enemy->s.origin, target); + VectorMA (target, (-0.5 * (crandom())) * (1.0 - (skill->value/4.0)), self->enemy->velocity, target); + + if (self->enemy->maxs[2] < self->cast_info.standing_max_z) + target[2] += - ( 8 * random()); + else + target[2] += self->enemy->viewheight - 4 - (16 * random()); + + flash_number = MZ2_GUNNER_MACHINEGUN_1; + + VectorSubtract (target, start, aim); + dist = VectorNormalize (aim); + } + + // look for a new attack? + if ( (dist < self->cast_info.max_attack_distance) + && ( ((random() < 0.1) && (self->cast_info.last_side_attack_time < (level.time - 2))) + || ( (!(self->cast_info.aiflags & AI_SIDE_ATTACK) || (self->cast_info.last_side_attack_time < (level.time - 2))) + && (directly_infront( self->enemy, self)) + && (self->enemy->client) + && (self->enemy->client->pers.weapon) + && (self->enemy->client->pers.weapon->ammo)))) // if we are directly infront of them, try to strafe + { + if (self->cast_info.aiflags & AI_SIDE_ATTACK) + { + // self->cast_info.currentmove = &punk_move_shoot; + if (self->spawnflags & PUNK_TOMMYGUN) + self->cast_info.currentmove = &punk_move_run_tg_sht; + else if (self->spawnflags & PUNK_SHOTGUN) + self->cast_info.currentmove = &punk_move_run_shg_sht; + else if (self->spawnflags & PUNK_HMG) + self->cast_info.currentmove = &punk_move_run_hmg_sht; + else if (self->spawnflags & PUNK_BAZOOKA) + self->cast_info.currentmove = &punk_move_run_bazooka_sht; + else if (self->spawnflags & PUNK_FLAMEGUN) + self->cast_info.currentmove = &punk_move_run_flamegun_sht; + else if (self->spawnflags & PUNK_GRENADE) + self->cast_info.currentmove = &punk_move_run_grenade_sht; + else + { + gi.dprintf ("missing weapon spawnflag\n"); + self->cast_info.currentmove = &punk_move_run_shg_sht; + } + } + else + self->cast_info.attack( self ); + } + +skipbail: + + self->ideal_yaw = vectoyaw( aim ); + + if (self->spawnflags & PUNK_TOMMYGUN) + { + if (self->acc) + cast_fire_bullet (self, start, aim, 4, 0, DEFAULT_BULLET_HSPREAD>>self->acc, DEFAULT_BULLET_VSPREAD>>self->acc, flash_number); + else + cast_fire_bullet (self, start, aim, 4, 0, DEFAULT_BULLET_HSPREAD, DEFAULT_BULLET_VSPREAD, flash_number); + gi.sound(self, CHAN_WEAPON, tommy_soundindex, 1, ATTN_NORM, 0); + } + else if (self->spawnflags & PUNK_SHOTGUN) + { + // tweeking the damage + cast_fire_shotgun (self, start, aim, 6, 0, DEFAULT_SHOTGUN_HSPREAD, DEFAULT_SHOTGUN_VSPREAD, DEFAULT_SHOTGUN_COUNT, flash_number); + gi.sound(self, CHAN_WEAPON, shotgun_soundindex, 1, ATTN_NORM, 0); + self->cast_info.aiflags |= AI_RELOAD; + } + else if (self->spawnflags & PUNK_HMG) + { + fire_bullet (self, start, aim, 15, 50, DEFAULT_BULLET_HSPREAD>>self->acc, DEFAULT_BULLET_VSPREAD>>self->acc, MOD_BARMACHINEGUN); + { + if (self->lastduration == 1) + { + gi.sound(self, CHAN_WEAPON, gi.soundindex("weapons/hmg/hmg.wav"), 1, ATTN_NORM, 0); + } + + if (self->lastduration == 0) + self->durationflag = 1; + } + } + else if (self->spawnflags & PUNK_BAZOOKA) + { + { + int damage = 100; + int speed = 900; + + cast_fire_rocket (self, start, aim, damage, speed, MOD_ROCKET); + gi.sound (self, CHAN_WEAPON, rocketgun_soundindex, 1, ATTN_NORM, 0); + } + } + else if (self->spawnflags & PUNK_FLAMEGUN) + { + int damage = 1; + int kick = 4; + static int flamesnd = 0; + + extern void fire_target_flamethrower (edict_t *self, vec3_t start, vec3_t forward, int damage, int kick, int mod); + + fire_flamethrower(self, start, aim, damage, 0, MOD_FLAMETHROWER); + self->s.renderfx2 |= RF2_FLAMETHROWER; +// fire_target_flamethrower(self, start, aim, damage, 0, MOD_FLAMETHROWER); +// self->s.renderfx2 = RF2_FLAMESHOOTER; + + flamesnd++; + + if (flamesnd > 2) + flamesnd = 0; + + if (flamesnd == 1) + gi.sound(self, CHAN_AUTO, gi.soundindex("weapons/flame_thrower/flame2.wav"), 1, ATTN_NORM, 0); + else if (flamesnd == 2) + gi.sound(self, CHAN_AUTO, gi.soundindex("weapons/flame_thrower/flame3.wav"), 1, ATTN_NORM, 0); + else + gi.sound(self, CHAN_AUTO, gi.soundindex("weapons/flame_thrower/flame1.wav"), 1, ATTN_NORM, 0); + + } + else if (self->spawnflags & PUNK_GRENADE) + { + // Ridah, lob it higher if they're further away + if (VectorDistance(self->s.origin, self->enemy->s.origin) > 512) + aim[2] += 0.4; + + fire_grenade (self, start, aim, 150, 450, 2.0, 256); + gi.sound(self, CHAN_AUTO, gi.soundindex("weapons/grenade_launcher/gl_fire.wav"), 1, ATTN_NORM, 0); + } + else + { + gi.dprintf ("Error: Bang Bang not tagged right\n"); + } + +} + +void punk_shotgun_reload( edict_t *self ) +{ + if (self->cast_info.aiflags & AI_TURN_BLOCKED) + { // abort the side run + self->cast_info.aiflags &= ~AI_TURN_BLOCKED; + AI_EndAttack(self); + } + + if (!(self->spawnflags & PUNK_SHOTGUN)) + { // no need to reload + return; + } + + gi.sound(self, CHAN_AUTO, shotgun_reload_soundindex, 1, ATTN_NORM, 0); + self->cast_info.aiflags &= ~AI_RELOAD; +} + +void punk_firegun_right( edict_t *self ) +{ +// vec3_t vec; +// float oldyaw; + + if (!self->enemy || (self->enemy->health <= 0)) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + if (self->cast_info.aiflags & AI_TURN_BLOCKED) + { // abort the side run + self->cast_info.aiflags &= ~AI_TURN_BLOCKED; + AI_EndAttack(self); + return; + } + + // if the path ahead is not clear, abort + if (!AI_SideTrace( self, 96, 0, 1 )) + { + AI_EndAttack(self); + return; + } + +/* + oldyaw = self->s.angles[YAW]; + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + + self->s.angles[YAW] = vectoyaw( vec ); +*/ + self->cast_info.aiflags |= AI_SIDE_ATTACK; + punk_firegun(self); + self->cast_info.aiflags &= ~AI_SIDE_ATTACK; +/* + // keep running to the side + self->ideal_yaw = self->s.angles[YAW] + 90; + + self->s.angles[YAW] = oldyaw; +*/ +} + +void punk_firegun_left( edict_t *self ) +{ +// vec3_t vec; +// float oldyaw; + + if (!self->enemy) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + if (self->cast_info.aiflags & AI_TURN_BLOCKED) + { // abort the side run + self->cast_info.aiflags &= ~AI_TURN_BLOCKED; + AI_EndAttack(self); + return; + } + + // if the path ahead is not clear, abort + if (!AI_SideTrace( self, 96, 0, 1 )) + { + AI_EndAttack(self); + return; + } + +/* + oldyaw = self->s.angles[YAW]; + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + + self->s.angles[YAW] = vectoyaw( vec ); +*/ + self->cast_info.aiflags |= AI_SIDE_ATTACK; + punk_firegun(self); + self->cast_info.aiflags &= ~AI_SIDE_ATTACK; +/* + // keep running to the side + self->ideal_yaw = self->s.angles[YAW] - 90; + + self->s.angles[YAW] = oldyaw; +*/ +} + +void punk_pain (edict_t *self, edict_t *other, float kick, int damage, int mdx_part, int mdx_subobject) +{ + int orientation; + + if (self->s.renderfx2 & RF2_FLAMETHROWER) + self->s.renderfx2 &= ~RF2_FLAMETHROWER; + + AI_CheckMakeEnemy( self, other ); + + if (level.time < self->pain_debounce_time) + return; + + self->pain_debounce_time = level.time + 3 + random(); + + if (skill->value >= 3) + return; // no pain anims in nightmare + + // faked client pain sound + + // JOSEPH 26-MAY-99 + if (self->name_index == NAME_NICKIBLANCO) + { + Voice_Random (self, self->enemy, &nickiblanco[2], 4); + } + else if (self->name_index == NAME_TYRONE) + { + Voice_Random (self, self->enemy, &ty_tyrone[2], 4); + } + else if (self->name_index == NAME_MOKER) + { + Voice_Random (self, self->enemy, &steeltown_moker[2], 4); + } + // END JOSEPH + + // gi.sound (self, CHAN_VOICE, gi.soundindex(va("*pain%i_%i.wav", l, r)), 1, ATTN_NORM, 0); + + + // Ridah, randomly don't play an animation, since it' leaves them WAY open to be killed + if (skill->value > 0 && rand()%2) + return; + + + if (other->client || (other->svflags & SVF_MONSTER)) + { + orientation = AI_GetOrientation( self, other ); + } + else + { + orientation = ORIENTATION_CENTER; + } + + if (self->maxs[2] < self->cast_info.standing_max_z) + { // crouching + + switch (orientation) + { + case ORIENTATION_CENTER : + { + self->cast_info.currentmove = &punk_move_crouch_painC; + break; + } + case ORIENTATION_LEFT : + { + self->cast_info.currentmove = &punk_move_crouch_painL; + break; + } + case ORIENTATION_RIGHT : + { + self->cast_info.currentmove = &punk_move_crouch_painR; + break; + } + } + + } + else // standing + { + if ( (mdx_part == PART_BODY) + || (other->client && other->client->pers.weapon && !(other->client->pers.weapon->ammo) && (orientation = rand()%2+1))) + { + switch (orientation) + { + case ORIENTATION_CENTER : + { + self->cast_info.currentmove = &punk_move_pain_chest; + break; + } + case ORIENTATION_LEFT : + { + self->cast_info.currentmove = &punk_move_pain_Larm; + break; + } + case ORIENTATION_RIGHT : + { + self->cast_info.currentmove = &punk_move_pain_Rarm; + break; + } + } + } + else if (mdx_part == PART_LEGS) + { + switch (orientation) + { + case ORIENTATION_CENTER : + { + if (infront(self, other)) + { + self->cast_info.currentmove = &punk_move_pain_crch; + } + else + { + self->cast_info.currentmove = &punk_move_pain_butt; + } + break; + } + case ORIENTATION_LEFT : + { + self->cast_info.currentmove = &punk_move_pain_Lleg; + break; + } + case ORIENTATION_RIGHT : + { + self->cast_info.currentmove = &punk_move_pain_Rleg; + break; + } + } + } + else if (mdx_part == PART_HEAD) + { + self->cast_info.currentmove = &punk_move_pain_head; + } + + } + +} + +// JOSEPH 26-FEB-99 +void punk_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + trace_t tr; + vec3_t end; + edict_t *playthud1, *playthud2; + + if (self->s.renderfx2 & RF2_FLAMETHROWER) + self->s.renderfx2 &= ~RF2_FLAMETHROWER; + + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + self->s.model_parts[PART_GUN2].invisible_objects = (1<<0 | 1<<1); + +// regular death + self->takedamage = DAMAGE_YES; + + if (DeathByGib(self, inflictor, attacker, damage)) + { // gib + self->deadflag = DEAD_DEAD; + GibEntity( self, inflictor, damage ); + return; + } + + if (self->deadflag == DEAD_DEAD) + return; + + self->deadflag = DEAD_DEAD; + + // JOSEPH 7-MAY-99 + if (!(self->cast_info.aiflags & AI_MELEE)) + { + if (self->spawnflags & PUNK_SHOTGUN) + SpawnTheWeapon (self, "weapon_shotgun_e"); + else if (self->spawnflags & PUNK_HMG) + SpawnTheWeapon (self, "weapon_heavymachinegun_e"); + else if (self->spawnflags & PUNK_BAZOOKA) + SpawnTheWeapon (self, "weapon_bazooka_e"); + else if (self->spawnflags & PUNK_FLAMEGUN) + SpawnTheWeapon (self, "weapon_flamethrower_e"); + else if (self->spawnflags & PUNK_GRENADE) + SpawnTheWeapon (self, "weapon_grenadelauncher_e"); + else + SpawnTheWeapon (self, "weapon_tommygun_e"); + } + // END JOSEPH + + // EP_SpecialEventDeath (self); + + VectorCopy (self->s.origin, end); + end[2] -= 64; + tr = gi.trace (self->s.origin, self->mins, self->maxs, end, self, MASK_SHOT); + + if (mdx_part == PART_HEAD) + { // probably head impact, we should really be passing in the model_part here + self->cast_info.currentmove = &punk_move_death3; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*9.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*20.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + else if (self->maxs[2] < self->cast_info.standing_max_z) + { + self->cast_info.currentmove = &punk_move_crouch_death; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*6.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*9.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + else + { + int n; + + n = rand() % 4; + if (n == 0) + { + self->cast_info.currentmove = &punk_move_death1; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*6.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*9.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + else if (n == 1) + { + self->cast_info.currentmove = &punk_move_death2; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*5.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*9.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + else if (n == 2) + { + self->cast_info.currentmove = &punk_move_death3; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*9.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*20.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + else + { + self->cast_info.currentmove = &punk_move_death4; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*6.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*8.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + } + + // JOSEPH 7-DEC-98 + //if (!(self->spawnflags & PUNK_MELEE)) + //{ + //self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + //Shot_Drop_Item(self, FindItem("Tommygun"), "models/weapons/g_tomgun/tomgun_pu.mdx"); + //} + // END JOSEPH + + // JOSEPH 26-MAY-99 + if (!self->onfiretime) + { + if (self->name_index == NAME_NICKIBLANCO) + Voice_Random (self, self->enemy, nickiblanco, 2); + else if (self->name_index == NAME_TYRONE) + Voice_Random (self, attacker, &ty_tyrone[0], 2); + else if (self->name_index == NAME_MOKER) + Voice_Random (self, attacker, &steeltown_moker[0], 2); + else + Voice_Random (self, attacker, &male_specific[8], 2); + } + // END JOSEPH + + // gi.sound (self, CHAN_VOICE, gi.soundindex(va("*death%i.wav", (rand()%4)+1)), 1, ATTN_NORM, 0); +} +// END JOSEPH + + +// ========================================================================= + +/*QUAKED cast_punk (1 .5 0) (-16 -16 -24) (16 16 48) FLASH_LIGHT TRIGGERED_START FLAM_BE BAZOOKA HMG IMMEDIATE_FOLLOW_PATH TOMMYGUN GRENADE +Fidel Character +cast_group defines which group the character is a member of +default cast_group is 0, which is neutral (won't help others out) +player's cast_group is 1 (friendly characters) + +The default weapon for a punk is the shotgun + +model="models\actors\punk\" + + +*/ +void SP_cast_punk(edict_t *self) +{ + int i; + char *head_skin, *body_skin, *legs_skin; + int skin; + + if (deathmatch->value) + { + G_FreeEdict (self); + return; + } + + if (!(self->spawnflags & (PUNK_FLAMEGUN|PUNK_BAZOOKA|PUNK_HMG|PUNK_TOMMYGUN|PUNK_GRENADE))) + { + self->spawnflags |= PUNK_SHOTGUN; + } + +//self->spawnflags &= ~(PUNK_FLAMEGUN|PUNK_BAZOOKA|PUNK_HMG|PUNK_TOMMYGUN|PUNK_GRENADE); +//self->spawnflags |= PUNK_FLAMEGUN; + + self->movetype = MOVETYPE_STEP; + self->solid = SOLID_BBOX; + self->s.skinnum = (self->skin-1) * 3; + + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 48); + + if (!self->art_skins) + { // use default skins + self->art_skins = "001 001 001"; + } + + if (self->art_skins) + { + // convert spaces to NULL's + for (i=0; i<11; i++) + if (self->art_skins[i] == ' ') + self->art_skins[i] = '\0'; + + head_skin = &self->art_skins[0]; + body_skin = &self->art_skins[4]; + legs_skin = &self->art_skins[8]; + } + else + { + head_skin = body_skin = legs_skin = NULL; + } + + tommy_soundindex = gi.soundindex("weapons/machinegun/machgf1b.wav"); + shotgun_soundindex = gi.soundindex("weapons/shotgun/shotgf1b.wav"); + shotgun_reload_soundindex = gi.soundindex("weapons/shotgun/shotgr1b.wav"); + heavymachinegun_soundindex = gi.soundindex ("weapons/hmg/single.wav"); + rocketgun_soundindex = gi.soundindex ("weapons/rocket_launcher/rl_fire.wav"); + + // ------------------------------------------------------------------------ + // initialize all model_part data + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + + switch (self->head) + { + case 1: + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/punk/bald_head.mdx"); + break; + case 2: + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/punk/ski_head.mdx"); + break; + case 3: + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/punk/weld_head.mdx"); + break; + default: + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/punk/head.mdx"); + break; + } + if (head_skin) + { + skin = gi.skinindex( self->s.model_parts[PART_HEAD].modelindex, head_skin ); + } + else + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_HEAD].baseskin = self->s.model_parts[PART_HEAD].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/punk/head.mdx", &self->s.model_parts[PART_HEAD] ); + + self->s.num_parts++; + self->s.model_parts[PART_LEGS].modelindex = gi.modelindex("models/actors/punk/legs.mdx"); + if (head_skin) + skin = gi.skinindex( self->s.model_parts[PART_LEGS].modelindex, legs_skin ); + else + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_LEGS].baseskin = self->s.model_parts[PART_LEGS].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/punk/legs.mdx", &self->s.model_parts[PART_LEGS] ); + + self->s.num_parts++; + self->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/actors/punk/body.mdx"); + if (head_skin) + skin = gi.skinindex( self->s.model_parts[PART_BODY].modelindex, body_skin ); + else + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_BODY].baseskin = self->s.model_parts[PART_BODY].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/punk/body.mdx", &self->s.model_parts[PART_BODY] ); + + if (self->spawnflags & PUNK_TOMMYGUN) + { + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/punk/tommygun.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0;// self->s.skinnum; + gi.GetObjectBounds( "models/actors/punk/tommygun.mdx", &self->s.model_parts[PART_GUN] ); + } + else if (self->spawnflags & PUNK_SHOTGUN) + { + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/punk/shotgun.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0;// self->s.skinnum; + gi.GetObjectBounds( "models/actors/punk/shotgun.mdx", &self->s.model_parts[PART_GUN] ); + } + else if (self->spawnflags & PUNK_HMG) + { + // NOTE TO SELF: tell Jason to make a gun.mdx for this weapon + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/punk/hmg.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0;// self->s.skinnum; + gi.GetObjectBounds( "models/actors/punk/hmg.mdx", &self->s.model_parts[PART_GUN] ); + } + else if (self->spawnflags & PUNK_BAZOOKA) + { + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/punk/rocket_lnch.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0;// self->s.skinnum; + gi.GetObjectBounds( "models/actors/punk/rocket_lnch.mdx", &self->s.model_parts[PART_GUN] ); + } + else if (self->spawnflags & PUNK_FLAMEGUN) + { + // NOTE TO SELF: tell Jason to make a gun.mdx for this weapon + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/punk/flamethrower.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0;// self->s.skinnum; + gi.GetObjectBounds( "models/actors/punk/flamethrower.mdx", &self->s.model_parts[PART_GUN] ); + } + else if (self->spawnflags & PUNK_GRENADE) + { + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/punk/grenade_lnch.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0;// self->s.skinnum; + gi.GetObjectBounds( "models/actors/punk/grenade_lnch.mdx", &self->s.model_parts[PART_GUN] ); + + self->cast_info.aiflags |= AI_GRENADE_GUY; + } + else + { + gi.dprintf ("error no weapon spawnflag\n"); + + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/punk/shotgun.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0;// self->s.skinnum; + gi.GetObjectBounds( "models/actors/punk/shotgun.mdx", &self->s.model_parts[PART_GUN] ); + } + + if (self->count & 1) // cigar + { + self->s.num_parts++; + self->s.model_parts[PART_CIGAR].modelindex = gi.modelindex("models/actors/punk/cigar.mdx"); + for (i=0; is.model_parts[PART_CIGAR].baseskin = self->s.model_parts[PART_CIGAR].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/punk/cigar.mdx", &self->s.model_parts[PART_CIGAR] ); + } + + if (self->count & 2) // fedora hat + { + self->s.num_parts++; + self->s.model_parts[PART_HAT].modelindex = gi.modelindex("models/actors/punk/fedora.mdx"); + for (i=0; is.model_parts[PART_HAT].baseskin = self->s.model_parts[PART_HAT].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/punk/fedora.mdx", &self->s.model_parts[PART_HAT] ); + } + else if (self->count & 4) // stetson hat + { + self->s.num_parts++; + self->s.model_parts[PART_HAT].modelindex = gi.modelindex("models/actors/punk/stetson.mdx"); + for (i=0; is.model_parts[PART_HAT].baseskin = self->s.model_parts[PART_HAT].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/punk/stetson.mdx", &self->s.model_parts[PART_HAT] ); + } + else if (self->count & 8) // cap (hat) + { + self->s.num_parts++; + self->s.model_parts[PART_HAT].modelindex = gi.modelindex("models/actors/punk/cap.mdx"); + for (i=0; is.model_parts[PART_HAT].baseskin = self->s.model_parts[PART_HAT].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/punk/cap.mdx", &self->s.model_parts[PART_HAT] ); + } + + // remove NULL's + if (self->art_skins) + self->art_skins[3] = self->art_skins[7] = ' '; + + // ------------------------------------------------------------------------ + + if (!self->health) + self->health = 100; + + self->gib_health = -200; + self->mass = 200; + + self->gender = GENDER_MALE; + + self->pain = punk_pain; + self->die = punk_die; + + self->cast_info.checkattack = AI_CheckAttack; + + self->cast_info.attack = punk_attack; + self->cast_info.long_attack = punk_long_attack; + self->cast_info.talk = punk_talk; + self->cast_info.avoid = punk_avoid; + + self->cast_info.catch_fire = punk_catch_fire; + +// Ridah, new AI system stuff! + self->cast_info.max_attack_distance = 2000; + + // Ridah, so they don't shoot the flamegun from too far away + if (self->spawnflags & PUNK_FLAMEGUN) + self->cast_info.max_attack_distance = 384; + + if (self->spawnflags & PUNK_SHOTGUN) + self->cast_info.move_stand = &punk_move_sg_stand; + else + self->cast_info.move_stand = &punk_move_stand; + +// self->cast_info.move_crstand = &punk_move_crouch_stand; + self->cast_info.move_crstand = &punk_move_crch_astand; + + self->cast_info.move_run = &punk_move_run_gun_down; + + // RAFAEL + if (self->spawnflags & 1) + self->cast_info.move_runwalk = &punk_move_walk_gdownFLASHLIGHT; + else + self->cast_info.move_runwalk = &punk_move_walk_gdown; + + self->cast_info.move_crwalk = &punk_move_crh_shuf; + + self->cast_info.move_jump = &punk_move_jump; + + self->cast_info.move_avoid_walk = &punk_move_avoid_walk; + self->cast_info.move_avoid_run = &punk_move_avoid_run; + self->cast_info.move_avoid_reverse_walk = &punk_move_avoid_reverse_walk; + self->cast_info.move_avoid_reverse_run = &punk_move_avoid_reverse_run; + self->cast_info.move_avoid_crwalk = &punk_move_avoid_crouch_walk; + + self->cast_info.move_crouch_down = &punk_move_crouch_stand_down; + self->cast_info.move_stand_up = &punk_move_crouch_stand_up; + + self->cast_info.move_lside_step = &punk_move_lside_step; + self->cast_info.move_rside_step = &punk_move_rside_step; + + self->cast_info.move_start_climb = &punk_move_clmb_loop; + self->cast_info.move_end_climb = &punk_move_clmb_over; + +// Ridah, done. + + gi.linkentity (self); + + self->cast_info.currentmove = self->cast_info.move_stand; + + if (!self->cast_info.scale) + self->cast_info.scale = MODEL_SCALE; + + self->s.scale = self->cast_info.scale - 1.0; + + // talk by default + self->cast_info.aiflags |= AI_TALK; + + if (!self->acc) + self->acc = 2; + + walking_cast_start (self); +} diff --git a/gamesrc/AI_PUNK.H b/gamesrc/AI_PUNK.H new file mode 100644 index 0000000..7c69383 --- /dev/null +++ b/gamesrc/AI_PUNK.H @@ -0,0 +1,912 @@ +#define FRAME_stand_01 0 +#define FRAME_stand_02 1 +#define FRAME_stand_03 2 +#define FRAME_stand_04 3 +#define FRAME_stand_05 4 +#define FRAME_stand_06 5 +#define FRAME_stand_07 6 +#define FRAME_stand_08 7 +#define FRAME_stand_09 8 +#define FRAME_stand_10 9 +#define FRAME_stand_11 10 +#define FRAME_stand_12 11 +#define FRAME_stand_13 12 +#define FRAME_stand_14 13 +#define FRAME_stand_15 14 +#define FRAME_stand_16 15 +#define FRAME_stand_17 16 +#define FRAME_stand_18 17 +#define FRAME_stand_19 18 +#define FRAME_stand_20 19 +#define FRAME_stand_21 20 +#define FRAME_stand_22 21 +#define FRAME_stand_23 22 +#define FRAME_stand_24 23 +#define FRAME_stand_25 24 +#define FRAME_stand_26 25 +#define FRAME_stand_27 26 +#define FRAME_stand_28 27 +#define FRAME_stand_29 28 +#define FRAME_stand_30 29 +#define FRAME_stand_31 30 +#define FRAME_tg_shoot_01 31 +#define FRAME_tg_shoot_02 32 +#define FRAME_tg_shoot_03 33 +#define FRAME_tg_shoot_04 34 +#define FRAME_tg_shoot_05 35 +#define FRAME_shg_shoot_01 36 +#define FRAME_shg_shoot_02 37 +#define FRAME_shg_shoot_03 38 +#define FRAME_shg_shoot_04 39 +#define FRAME_shg_shoot_05 40 +#define FRAME_shg_shoot_06 41 +#define FRAME_shg_shoot_07 42 +#define FRAME_shg_shoot_08 43 +#define FRAME_shg_shoot_09 44 +#define FRAME_shg_shoot_10 45 +#define FRAME_shg_shoot_11 46 +#define FRAME_shg_shoot_12 47 +#define FRAME_shg_shoot_13 48 +#define FRAME_tg_reload_01 49 +#define FRAME_tg_reload_02 50 +#define FRAME_tg_reload_03 51 +#define FRAME_tg_reload_04 52 +#define FRAME_tg_reload_05 53 +#define FRAME_tg_reload_06 54 +#define FRAME_tg_reload_07 55 +#define FRAME_tg_reload_08 56 +#define FRAME_tg_reload_09 57 +#define FRAME_tg_reload_10 58 +#define FRAME_tg_reload_11 59 +#define FRAME_tg_reload_12 60 +#define FRAME_tg_reload_13 61 +#define FRAME_tg_reload_14 62 +#define FRAME_tg_reload_15 63 +#define FRAME_tg_reload_16 64 +#define FRAME_talk1_01 65 +#define FRAME_talk1_02 66 +#define FRAME_talk1_03 67 +#define FRAME_talk1_04 68 +#define FRAME_talk1_05 69 +#define FRAME_talk1_06 70 +#define FRAME_talk1_07 71 +#define FRAME_talk1_08 72 +#define FRAME_talk1_09 73 +#define FRAME_talk1_10 74 +#define FRAME_talk1_11 75 +#define FRAME_talk1_12 76 +#define FRAME_talk1_13 77 +#define FRAME_talk1_14 78 +#define FRAME_talk1_15 79 +#define FRAME_talk1_16 80 +#define FRAME_talk1_17 81 +#define FRAME_talk1_18 82 +#define FRAME_talk1_19 83 +#define FRAME_talk1_20 84 +#define FRAME_talk1_21 85 +#define FRAME_talk1_22 86 +#define FRAME_talk1_23 87 +#define FRAME_talk1_24 88 +#define FRAME_talk1_25 89 +#define FRAME_talk1_26 90 +#define FRAME_talk2_01 91 +#define FRAME_talk2_02 92 +#define FRAME_talk2_03 93 +#define FRAME_talk2_04 94 +#define FRAME_talk2_05 95 +#define FRAME_talk2_06 96 +#define FRAME_talk2_07 97 +#define FRAME_talk2_08 98 +#define FRAME_talk2_09 99 +#define FRAME_talk2_10 100 +#define FRAME_talk2_11 101 +#define FRAME_talk2_12 102 +#define FRAME_talk2_13 103 +#define FRAME_talk2_14 104 +#define FRAME_talk2_15 105 +#define FRAME_talk2_16 106 +#define FRAME_talk2_17 107 +#define FRAME_talk2_18 108 +#define FRAME_talk2_19 109 +#define FRAME_talk2_20 110 +#define FRAME_talk3_01 111 +#define FRAME_talk3_02 112 +#define FRAME_talk3_03 113 +#define FRAME_talk3_04 114 +#define FRAME_talk3_05 115 +#define FRAME_talk3_06 116 +#define FRAME_talk3_07 117 +#define FRAME_talk3_08 118 +#define FRAME_talk3_09 119 +#define FRAME_talk3_10 120 +#define FRAME_talk3_11 121 +#define FRAME_talk3_12 122 +#define FRAME_talk3_13 123 +#define FRAME_talk3_14 124 +#define FRAME_talk3_15 125 +#define FRAME_talk3_16 126 +#define FRAME_talk3_17 127 +#define FRAME_talk3_18 128 +#define FRAME_talk3_19 129 +#define FRAME_talk3_20 130 +#define FRAME_talk3_21 131 +#define FRAME_talk4_01 132 +#define FRAME_talk4_02 133 +#define FRAME_talk4_03 134 +#define FRAME_talk4_04 135 +#define FRAME_talk4_05 136 +#define FRAME_talk4_06 137 +#define FRAME_talk4_07 138 +#define FRAME_talk4_08 139 +#define FRAME_talk4_09 140 +#define FRAME_talk4_10 141 +#define FRAME_talk4_11 142 +#define FRAME_talk4_12 143 +#define FRAME_talk4_13 144 +#define FRAME_talk4_14 145 +#define FRAME_talk4_15 146 +#define FRAME_talk4_16 147 +#define FRAME_talk4_17 148 +#define FRAME_talk4_18 149 +#define FRAME_talk4_19 150 +#define FRAME_talk4_20 151 +#define FRAME_talk4_21 152 +#define FRAME_talk4_22 153 +#define FRAME_talk4_23 154 +#define FRAME_talk4_24 155 +#define FRAME_talk4_25 156 +#define FRAME_talk4_26 157 +#define FRAME_talk4_27 158 +#define FRAME_talk4_28 159 +#define FRAME_talk4_29 160 +#define FRAME_talk4_30 161 +#define FRAME_talk4_31 162 +#define FRAME_talk4_32 163 +#define FRAME_talk4_33 164 +#define FRAME_talk5_01 165 +#define FRAME_talk5_02 166 +#define FRAME_talk5_03 167 +#define FRAME_talk5_04 168 +#define FRAME_talk5_05 169 +#define FRAME_talk5_06 170 +#define FRAME_talk5_07 171 +#define FRAME_talk5_08 172 +#define FRAME_talk5_09 173 +#define FRAME_talk5_10 174 +#define FRAME_talk5_11 175 +#define FRAME_talk5_12 176 +#define FRAME_talk5_13 177 +#define FRAME_talk5_14 178 +#define FRAME_talk5_15 179 +#define FRAME_talk5_16 180 +#define FRAME_talk5_17 181 +#define FRAME_talk5_18 182 +#define FRAME_talk5_19 183 +#define FRAME_talk5_20 184 +#define FRAME_talk5_21 185 +#define FRAME_talk5_22 186 +#define FRAME_talk5_23 187 +#define FRAME_talk5_24 188 +#define FRAME_talk5_25 189 +#define FRAME_talk5_26 190 +#define FRAME_talk5_27 191 +#define FRAME_talk5_28 192 +#define FRAME_talk5_29 193 +#define FRAME_talk6_01 194 +#define FRAME_talk6_02 195 +#define FRAME_talk6_03 196 +#define FRAME_talk6_04 197 +#define FRAME_talk6_05 198 +#define FRAME_talk6_06 199 +#define FRAME_talk6_07 200 +#define FRAME_talk6_08 201 +#define FRAME_talk6_09 202 +#define FRAME_talk6_10 203 +#define FRAME_talk6_11 204 +#define FRAME_talk6_12 205 +#define FRAME_talk6_13 206 +#define FRAME_talk6_14 207 +#define FRAME_talk6_15 208 +#define FRAME_talk6_16 209 +#define FRAME_talk6_17 210 +#define FRAME_talk6_18 211 +#define FRAME_talk6_19 212 +#define FRAME_talk6_20 213 +#define FRAME_talk6_21 214 +#define FRAME_talk6_22 215 +#define FRAME_talk6_23 216 +#define FRAME_talk6_24 217 +#define FRAME_talk6_25 218 +#define FRAME_talk6_26 219 +#define FRAME_talk6_27 220 +#define FRAME_talk6_28 221 +#define FRAME_talk6_29 222 +#define FRAME_talk6_30 223 +#define FRAME_talk6_31 224 +#define FRAME_talk6_32 225 +#define FRAME_talk6_33 226 +#define FRAME_talk6_34 227 +#define FRAME_talk6_35 228 +#define FRAME_talk6_36 229 +#define FRAME_talk6_37 230 +#define FRAME_talk6_38 231 +#define FRAME_talk6_39 232 +#define FRAME_talk6_40 233 +#define FRAME_talk6_41 234 +#define FRAME_talk6_42 235 +#define FRAME_talk6_43 236 +#define FRAME_talk6_44 237 +#define FRAME_talk6_45 238 +#define FRAME_talk6_46 239 +#define FRAME_talk6_47 240 +#define FRAME_head_wipe_01 241 +#define FRAME_head_wipe_02 242 +#define FRAME_head_wipe_03 243 +#define FRAME_head_wipe_04 244 +#define FRAME_head_wipe_05 245 +#define FRAME_head_wipe_06 246 +#define FRAME_head_wipe_07 247 +#define FRAME_head_wipe_08 248 +#define FRAME_head_wipe_09 249 +#define FRAME_head_wipe_10 250 +#define FRAME_head_wipe_11 251 +#define FRAME_head_wipe_12 252 +#define FRAME_head_wipe_13 253 +#define FRAME_head_wipe_14 254 +#define FRAME_head_wipe_15 255 +#define FRAME_head_wipe_16 256 +#define FRAME_head_wipe_17 257 +#define FRAME_head_wipe_18 258 +#define FRAME_head_wipe_19 259 +#define FRAME_head_wipe_20 260 +#define FRAME_head_wipe_21 261 +#define FRAME_head_wipe_22 262 +#define FRAME_head_wipe_23 263 +#define FRAME_head_wipe_24 264 +#define FRAME_head_wipe_25 265 +#define FRAME_head_wipe_26 266 +#define FRAME_head_wipe_27 267 +#define FRAME_head_wipe_28 268 +#define FRAME_pain_Rarm_01 269 +#define FRAME_pain_Rarm_02 270 +#define FRAME_pain_Rarm_03 271 +#define FRAME_pain_Rarm_04 272 +#define FRAME_pain_Rarm_05 273 +#define FRAME_pain_Rarm_06 274 +#define FRAME_pain_Rarm_07 275 +#define FRAME_pain_Rarm_08 276 +#define FRAME_pain_Rarm_09 277 +#define FRAME_pain_Larm_01 278 +#define FRAME_pain_Larm_02 279 +#define FRAME_pain_Larm_03 280 +#define FRAME_pain_Larm_04 281 +#define FRAME_pain_Larm_05 282 +#define FRAME_pain_Larm_06 283 +#define FRAME_pain_Larm_07 284 +#define FRAME_pain_Larm_08 285 +#define FRAME_pain_chest_01 286 +#define FRAME_pain_chest_02 287 +#define FRAME_pain_chest_03 288 +#define FRAME_pain_chest_04 289 +#define FRAME_pain_chest_05 290 +#define FRAME_pain_chest_06 291 +#define FRAME_pain_chest_07 292 +#define FRAME_pain_chest_08 293 +#define FRAME_pain_chest_09 294 +#define FRAME_pain_chest_10 295 +#define FRAME_pain_head_01 296 +#define FRAME_pain_head_02 297 +#define FRAME_pain_head_03 298 +#define FRAME_pain_head_04 299 +#define FRAME_pain_head_05 300 +#define FRAME_pain_head_06 301 +#define FRAME_pain_head_07 302 +#define FRAME_pain_head_08 303 +#define FRAME_pain_Rleg_01 304 +#define FRAME_pain_Rleg_02 305 +#define FRAME_pain_Rleg_03 306 +#define FRAME_pain_Rleg_04 307 +#define FRAME_pain_Rleg_05 308 +#define FRAME_pain_Rleg_06 309 +#define FRAME_pain_Rleg_07 310 +#define FRAME_pain_Rleg_08 311 +#define FRAME_pain_Rleg_09 312 +#define FRAME_pain_Rleg_10 313 +#define FRAME_pain_Rleg_11 314 +#define FRAME_pain_Lleg_01 315 +#define FRAME_pain_Lleg_02 316 +#define FRAME_pain_Lleg_03 317 +#define FRAME_pain_Lleg_04 318 +#define FRAME_pain_Lleg_05 319 +#define FRAME_pain_Lleg_06 320 +#define FRAME_pain_Lleg_07 321 +#define FRAME_pain_Lleg_08 322 +#define FRAME_pain_Lleg_09 323 +#define FRAME_pain_crch_01 324 +#define FRAME_pain_crch_02 325 +#define FRAME_pain_crch_03 326 +#define FRAME_pain_crch_04 327 +#define FRAME_pain_crch_05 328 +#define FRAME_pain_crch_06 329 +#define FRAME_pain_crch_07 330 +#define FRAME_pain_crch_08 331 +#define FRAME_pain_crch_09 332 +#define FRAME_pain_crch_10 333 +#define FRAME_pain_crch_11 334 +#define FRAME_pain_crch_12 335 +#define FRAME_pain_crch_13 336 +#define FRAME_pain_butt_01 337 +#define FRAME_pain_butt_02 338 +#define FRAME_pain_butt_03 339 +#define FRAME_pain_butt_04 340 +#define FRAME_pain_butt_05 341 +#define FRAME_pain_butt_06 342 +#define FRAME_pain_butt_07 343 +#define FRAME_pain_butt_08 344 +#define FRAME_pain_butt_09 345 +#define FRAME_pain_butt_10 346 +#define FRAME_pain_butt_11 347 +#define FRAME_pain_butt_12 348 +#define FRAME_pain_butt_13 349 +#define FRAME_pain_butt_14 350 +#define FRAME_jump_01 351 +#define FRAME_jump_02 352 +#define FRAME_jump_03 353 +#define FRAME_jump_04 354 +#define FRAME_jump_05 355 +#define FRAME_jump_06 356 +#define FRAME_jump_07 357 +#define FRAME_jump_08 358 +#define FRAME_jump_09 359 +#define FRAME_jump_10 360 +#define FRAME_jump_11 361 +#define FRAME_jump_12 362 +#define FRAME_death1_01 363 +#define FRAME_death1_02 364 +#define FRAME_death1_03 365 +#define FRAME_death1_04 366 +#define FRAME_death1_05 367 +#define FRAME_death1_06 368 +#define FRAME_death1_07 369 +#define FRAME_death1_08 370 +#define FRAME_death1_09 371 +#define FRAME_death1_10 372 +#define FRAME_death1_11 373 +#define FRAME_death1_12 374 +#define FRAME_death1_13 375 +#define FRAME_death1_14 376 +#define FRAME_death1_15 377 +#define FRAME_death1_16 378 +#define FRAME_death1_17 379 +#define FRAME_death1_18 380 +#define FRAME_death1_19 381 +#define FRAME_death2_01 382 +#define FRAME_death2_02 383 +#define FRAME_death2_03 384 +#define FRAME_death2_04 385 +#define FRAME_death2_05 386 +#define FRAME_death2_06 387 +#define FRAME_death2_07 388 +#define FRAME_death2_08 389 +#define FRAME_death2_09 390 +#define FRAME_death2_10 391 +#define FRAME_death2_11 392 +#define FRAME_death2_12 393 +#define FRAME_death2_13 394 +#define FRAME_death2_14 395 +#define FRAME_death2_15 396 +#define FRAME_death2_16 397 +#define FRAME_death3_01 398 +#define FRAME_death3_02 399 +#define FRAME_death3_03 400 +#define FRAME_death3_04 401 +#define FRAME_death3_05 402 +#define FRAME_death3_06 403 +#define FRAME_death3_07 404 +#define FRAME_death3_08 405 +#define FRAME_death3_09 406 +#define FRAME_death3_10 407 +#define FRAME_death3_11 408 +#define FRAME_death3_12 409 +#define FRAME_death3_13 410 +#define FRAME_death3_14 411 +#define FRAME_death3_15 412 +#define FRAME_death3_16 413 +#define FRAME_death3_17 414 +#define FRAME_death3_18 415 +#define FRAME_death3_19 416 +#define FRAME_death3_20 417 +#define FRAME_death3_21 418 +#define FRAME_death3_22 419 +#define FRAME_death3_23 420 +#define FRAME_death3_24 421 +#define FRAME_death3_25 422 +#define FRAME_death3_26 423 +#define FRAME_death3_27 424 +#define FRAME_death3_28 425 +#define FRAME_death4_01 426 +#define FRAME_death4_02 427 +#define FRAME_death4_03 428 +#define FRAME_death4_04 429 +#define FRAME_death4_05 430 +#define FRAME_death4_06 431 +#define FRAME_death4_07 432 +#define FRAME_death4_08 433 +#define FRAME_death4_09 434 +#define FRAME_death4_10 435 +#define FRAME_death4_11 436 +#define FRAME_death4_12 437 +#define FRAME_death4_13 438 +#define FRAME_crh_shuf_01 439 +#define FRAME_crh_shuf_02 440 +#define FRAME_crh_shuf_03 441 +#define FRAME_crh_shuf_04 442 +#define FRAME_crh_shuf_05 443 +#define FRAME_crouch_walk_01 444 +#define FRAME_crouch_walk_02 445 +#define FRAME_crouch_walk_03 446 +#define FRAME_crouch_walk_04 447 +#define FRAME_crouch_walk_05 448 +#define FRAME_crouch_walk_06 449 +#define FRAME_crouch_walk_07 450 +#define FRAME_crouch_painC_01 451 +#define FRAME_crouch_painC_02 452 +#define FRAME_crouch_painC_03 453 +#define FRAME_crouch_painC_04 454 +#define FRAME_crouch_painC_05 455 +#define FRAME_crouch_painC_06 456 +#define FRAME_crouch_painC_07 457 +#define FRAME_crouch_painL_01 458 +#define FRAME_crouch_painL_02 459 +#define FRAME_crouch_painL_03 460 +#define FRAME_crouch_painL_04 461 +#define FRAME_crouch_painL_05 462 +#define FRAME_crouch_painL_06 463 +#define FRAME_crouch_painL_07 464 +#define FRAME_crouch_painL_08 465 +#define FRAME_crouch_painR_01 466 +#define FRAME_crouch_painR_02 467 +#define FRAME_crouch_painR_03 468 +#define FRAME_crouch_painR_04 469 +#define FRAME_crouch_painR_05 470 +#define FRAME_crouch_painR_06 471 +#define FRAME_crouch_painR_07 472 +#define FRAME_crouch_shoot_01 473 +#define FRAME_crouch_shoot_02 474 +#define FRAME_crouch_shoot_03 475 +#define FRAME_crouch_shoot_04 476 +#define FRAME_crouch_shoot_05 477 +#define FRAME_crouch_shoot_06 478 +#define FRAME_crch_shg_sht_01 479 +#define FRAME_crch_shg_sht_02 480 +#define FRAME_crch_shg_sht_03 481 +#define FRAME_crch_shg_sht_04 482 +#define FRAME_crch_shg_sht_05 483 +#define FRAME_crch_shg_sht_06 484 +#define FRAME_crch_shg_sht_07 485 +#define FRAME_crch_shg_sht_08 486 +#define FRAME_crch_shg_sht_09 487 +#define FRAME_crch_shg_sht_10 488 +#define FRAME_crch_shg_sht_11 489 +#define FRAME_crch_shg_sht_12 490 +#define FRAME_crch_shg_sht_13 491 +#define FRAME_stand_crouch_01 492 +#define FRAME_stand_crouch_02 493 +#define FRAME_stand_crouch_03 494 +#define FRAME_stand_crouch_04 495 +#define FRAME_stand_crouch_05 496 +#define FRAME_crch_astand_01 497 +#define FRAME_crch_astand_02 498 +#define FRAME_crch_astand_03 499 +#define FRAME_crch_astand_04 500 +#define FRAME_crch_astand_05 501 +#define FRAME_crch_astand_06 502 +#define FRAME_crch_astand_07 503 +#define FRAME_crch_astand_08 504 +#define FRAME_crch_astand_09 505 +#define FRAME_crch_astand_10 506 +#define FRAME_crch_astand_11 507 +#define FRAME_crch_astand_12 508 +#define FRAME_crch_astand_13 509 +#define FRAME_crch_astand_14 510 +#define FRAME_crch_astand_15 511 +#define FRAME_crch_astand_16 512 +#define FRAME_crch_astand_17 513 +#define FRAME_crch_astand_18 514 +#define FRAME_crch_astand_19 515 +#define FRAME_crch_astand_20 516 +#define FRAME_crouch_death_01 517 +#define FRAME_crouch_death_02 518 +#define FRAME_crouch_death_03 519 +#define FRAME_crouch_death_04 520 +#define FRAME_crouch_death_05 521 +#define FRAME_crouch_death_06 522 +#define FRAME_crouch_death_07 523 +#define FRAME_crouch_death_08 524 +#define FRAME_crouch_death_09 525 +#define FRAME_crouch_death_10 526 +#define FRAME_crouch_death_11 527 +#define FRAME_crouch_death_12 528 +#define FRAME_st_clmb_01 529 +#define FRAME_st_clmb_02 530 +#define FRAME_clmb_loop_01 531 +#define FRAME_clmb_loop_02 532 +#define FRAME_clmb_loop_03 533 +#define FRAME_clmb_loop_04 534 +#define FRAME_clmb_loop_05 535 +#define FRAME_clmb_loop_06 536 +#define FRAME_clmb_loop_07 537 +#define FRAME_clmb_loop_08 538 +#define FRAME_clmb_loop_09 539 +#define FRAME_clmb_over_01 540 +#define FRAME_clmb_over_02 541 +#define FRAME_clmb_over_03 542 +#define FRAME_clmb_over_04 543 +#define FRAME_clmb_over_05 544 +#define FRAME_clmb_over_06 545 +#define FRAME_clmb_over_07 546 +#define FRAME_clmb_over_08 547 +#define FRAME_clmb_over_09 548 +#define FRAME_clmb_over_10 549 +#define FRAME_clmb_over_11 550 +#define FRAME_clmb_over_12 551 +#define FRAME_clmb_over_13 552 +#define FRAME_clmb_over_14 553 +#define FRAME_clmb_over_15 554 +#define FRAME_lside_step_01 555 +#define FRAME_lside_step_02 556 +#define FRAME_lside_step_03 557 +#define FRAME_lside_step_04 558 +#define FRAME_lside_step_05 559 +#define FRAME_lside_step_06 560 +#define FRAME_lside_step_07 561 +#define FRAME_rside_step_01 562 +#define FRAME_rside_step_02 563 +#define FRAME_rside_step_03 564 +#define FRAME_rside_step_04 565 +#define FRAME_rside_step_05 566 +#define FRAME_rside_step_06 567 +#define FRAME_rside_step_07 568 +#define FRAME_walk_nw_01 569 +#define FRAME_walk_nw_02 570 +#define FRAME_walk_nw_03 571 +#define FRAME_walk_nw_04 572 +#define FRAME_walk_nw_05 573 +#define FRAME_walk_nw_06 574 +#define FRAME_walk_nw_07 575 +#define FRAME_walk_nw_08 576 +#define FRAME_walk_nw_09 577 +#define FRAME_walk_nw_10 578 +#define FRAME_walk_tg_sht_01 579 +#define FRAME_walk_tg_sht_02 580 +#define FRAME_walk_tg_sht_03 581 +#define FRAME_walk_tg_sht_04 582 +#define FRAME_walk_tg_sht_05 583 +#define FRAME_walk_tg_sht_06 584 +#define FRAME_walk_tg_sht_07 585 +#define FRAME_walk_tg_sht_08 586 +#define FRAME_walk_tg_sht_09 587 +#define FRAME_walk_tg_sht_10 588 +#define FRAME_walk_shg_sht_01 589 +#define FRAME_walk_shg_sht_02 590 +#define FRAME_walk_shg_sht_03 591 +#define FRAME_walk_shg_sht_04 592 +#define FRAME_walk_shg_sht_05 593 +#define FRAME_walk_shg_sht_06 594 +#define FRAME_walk_shg_sht_07 595 +#define FRAME_walk_shg_sht_08 596 +#define FRAME_walk_shg_sht_09 597 +#define FRAME_walk_shg_sht_10 598 +#define FRAME_walk_gdown_01 599 +#define FRAME_walk_gdown_02 600 +#define FRAME_walk_gdown_03 601 +#define FRAME_walk_gdown_04 602 +#define FRAME_walk_gdown_05 603 +#define FRAME_walk_gdown_06 604 +#define FRAME_walk_gdown_07 605 +#define FRAME_walk_gdown_08 606 +#define FRAME_walk_gdown_09 607 +#define FRAME_walk_gdown_10 608 +#define FRAME_run_nw_01 609 +#define FRAME_run_nw_02 610 +#define FRAME_run_nw_03 611 +#define FRAME_run_nw_04 612 +#define FRAME_run_nw_05 613 +#define FRAME_run_nw_06 614 +#define FRAME_run_tg_sht_01 615 +#define FRAME_run_tg_sht_02 616 +#define FRAME_run_tg_sht_03 617 +#define FRAME_run_tg_sht_04 618 +#define FRAME_run_tg_sht_05 619 +#define FRAME_run_tg_sht_06 620 +#define FRAME_run_shg_sht_01 621 +#define FRAME_run_shg_sht_02 622 +#define FRAME_run_shg_sht_03 623 +#define FRAME_run_shg_sht_04 624 +#define FRAME_run_shg_sht_05 625 +#define FRAME_run_shg_sht_06 626 +#define FRAME_run_gun_down_01 627 +#define FRAME_run_gun_down_02 628 +#define FRAME_run_gun_down_03 629 +#define FRAME_run_gun_down_04 630 +#define FRAME_run_gun_down_05 631 +#define FRAME_run_gun_down_06 632 +#define FRAME_run_on_fire_01 633 +#define FRAME_run_on_fire_02 634 +#define FRAME_run_on_fire_03 635 +#define FRAME_run_on_fire_04 636 +#define FRAME_run_on_fire_05 637 +#define FRAME_run_on_fire_06 638 +#define FRAME_rsd_tg_run_01 639 +#define FRAME_rsd_tg_run_02 640 +#define FRAME_rsd_tg_run_03 641 +#define FRAME_rsd_tg_run_04 642 +#define FRAME_rsd_tg_run_05 643 +#define FRAME_rsd_tg_run_06 644 +#define FRAME_lsd_tg_run_01 645 +#define FRAME_lsd_tg_run_02 646 +#define FRAME_lsd_tg_run_03 647 +#define FRAME_lsd_tg_run_04 648 +#define FRAME_lsd_tg_run_05 649 +#define FRAME_lsd_tg_run_06 650 +#define FRAME_rsd_shg_run_01 651 +#define FRAME_rsd_shg_run_02 652 +#define FRAME_rsd_shg_run_03 653 +#define FRAME_rsd_shg_run_04 654 +#define FRAME_rsd_shg_run_05 655 +#define FRAME_rsd_shg_run_06 656 +#define FRAME_lsd_shg_run_01 657 +#define FRAME_lsd_shg_run_02 658 +#define FRAME_lsd_shg_run_03 659 +#define FRAME_lsd_shg_run_04 660 +#define FRAME_lsd_shg_run_05 661 +#define FRAME_lsd_shg_run_06 662 +#define FRAME_sg_stand_01 663 +#define FRAME_sg_stand_02 664 +#define FRAME_sg_stand_03 665 +#define FRAME_sg_stand_04 666 +#define FRAME_sg_stand_05 667 +#define FRAME_sg_stand_06 668 +#define FRAME_sg_stand_07 669 +#define FRAME_sg_stand_08 670 +#define FRAME_sg_stand_09 671 +#define FRAME_sg_stand_10 672 +#define FRAME_sg_stand_11 673 +#define FRAME_sg_stand_12 674 +#define FRAME_sg_stand_13 675 +#define FRAME_sg_stand_14 676 +#define FRAME_sg_stand_15 677 +#define FRAME_sg_stand_16 678 +#define FRAME_sg_stand_17 679 +#define FRAME_sg_stand_18 680 +#define FRAME_sg_stand_19 681 +#define FRAME_sg_stand_20 682 +#define FRAME_sg_stand_21 683 +#define FRAME_sg_stand_22 684 +#define FRAME_sg_stand_23 685 +#define FRAME_sg_stand_24 686 +#define FRAME_sg_stand_25 687 +#define FRAME_sg_stand_26 688 +#define FRAME_sg_stand_27 689 +#define FRAME_sg_stand_28 690 +#define FRAME_sg_stand_29 691 +#define FRAME_sg_stand_30 692 +#define FRAME_sg_stand_31 693 +#define FRAME_sg_talk1_01 694 +#define FRAME_sg_talk1_02 695 +#define FRAME_sg_talk1_03 696 +#define FRAME_sg_talk1_04 697 +#define FRAME_sg_talk1_05 698 +#define FRAME_sg_talk1_06 699 +#define FRAME_sg_talk1_07 700 +#define FRAME_sg_talk1_08 701 +#define FRAME_sg_talk1_09 702 +#define FRAME_sg_talk1_10 703 +#define FRAME_sg_talk1_11 704 +#define FRAME_sg_talk1_12 705 +#define FRAME_sg_talk1_13 706 +#define FRAME_sg_talk1_14 707 +#define FRAME_sg_talk1_15 708 +#define FRAME_sg_talk1_16 709 +#define FRAME_sg_talk1_17 710 +#define FRAME_sg_talk1_18 711 +#define FRAME_sg_talk1_19 712 +#define FRAME_sg_talk1_20 713 +#define FRAME_sg_talk1_21 714 +#define FRAME_sg_talk1_22 715 +#define FRAME_sg_talk1_23 716 +#define FRAME_sg_talk1_24 717 +#define FRAME_sg_talk1_25 718 +#define FRAME_sg_talk1_26 719 +#define FRAME_sg_talk2_01 720 +#define FRAME_sg_talk2_02 721 +#define FRAME_sg_talk2_03 722 +#define FRAME_sg_talk2_04 723 +#define FRAME_sg_talk2_05 724 +#define FRAME_sg_talk2_06 725 +#define FRAME_sg_talk2_07 726 +#define FRAME_sg_talk2_08 727 +#define FRAME_sg_talk2_09 728 +#define FRAME_sg_talk2_10 729 +#define FRAME_sg_talk2_11 730 +#define FRAME_sg_talk2_12 731 +#define FRAME_sg_talk2_13 732 +#define FRAME_sg_talk2_14 733 +#define FRAME_sg_talk2_15 734 +#define FRAME_sg_talk2_16 735 +#define FRAME_sg_talk2_17 736 +#define FRAME_sg_talk2_18 737 +#define FRAME_sg_talk2_19 738 +#define FRAME_sg_talk2_20 739 +#define FRAME_sg_talk3_01 740 +#define FRAME_sg_talk3_02 741 +#define FRAME_sg_talk3_03 742 +#define FRAME_sg_talk3_04 743 +#define FRAME_sg_talk3_05 744 +#define FRAME_sg_talk3_06 745 +#define FRAME_sg_talk3_07 746 +#define FRAME_sg_talk3_08 747 +#define FRAME_sg_talk3_09 748 +#define FRAME_sg_talk3_10 749 +#define FRAME_sg_talk3_11 750 +#define FRAME_sg_talk3_12 751 +#define FRAME_sg_talk3_13 752 +#define FRAME_sg_talk3_14 753 +#define FRAME_sg_talk3_15 754 +#define FRAME_sg_talk3_16 755 +#define FRAME_sg_talk3_17 756 +#define FRAME_sg_talk3_18 757 +#define FRAME_sg_talk3_19 758 +#define FRAME_sg_talk3_20 759 +#define FRAME_sg_talk3_21 760 +#define FRAME_sg_talk4_01 761 +#define FRAME_sg_talk4_02 762 +#define FRAME_sg_talk4_03 763 +#define FRAME_sg_talk4_04 764 +#define FRAME_sg_talk4_05 765 +#define FRAME_sg_talk4_06 766 +#define FRAME_sg_talk4_07 767 +#define FRAME_sg_talk4_08 768 +#define FRAME_sg_talk4_09 769 +#define FRAME_sg_talk4_10 770 +#define FRAME_sg_talk4_11 771 +#define FRAME_sg_talk4_12 772 +#define FRAME_sg_talk4_13 773 +#define FRAME_sg_talk4_14 774 +#define FRAME_sg_talk4_15 775 +#define FRAME_sg_talk4_16 776 +#define FRAME_sg_talk4_17 777 +#define FRAME_sg_talk4_18 778 +#define FRAME_sg_talk4_19 779 +#define FRAME_sg_talk4_20 780 +#define FRAME_sg_talk4_21 781 +#define FRAME_sg_talk4_22 782 +#define FRAME_sg_talk4_23 783 +#define FRAME_sg_talk4_24 784 +#define FRAME_sg_talk4_25 785 +#define FRAME_sg_talk4_26 786 +#define FRAME_sg_talk4_27 787 +#define FRAME_sg_talk4_28 788 +#define FRAME_sg_talk4_29 789 +#define FRAME_sg_talk4_30 790 +#define FRAME_sg_talk4_31 791 +#define FRAME_sg_talk4_32 792 +#define FRAME_sg_talk4_33 793 +#define FRAME_sg_talk5_01 794 +#define FRAME_sg_talk5_02 795 +#define FRAME_sg_talk5_03 796 +#define FRAME_sg_talk5_04 797 +#define FRAME_sg_talk5_05 798 +#define FRAME_sg_talk5_06 799 +#define FRAME_sg_talk5_07 800 +#define FRAME_sg_talk5_08 801 +#define FRAME_sg_talk5_09 802 +#define FRAME_sg_talk5_10 803 +#define FRAME_sg_talk5_11 804 +#define FRAME_sg_talk5_12 805 +#define FRAME_sg_talk5_13 806 +#define FRAME_sg_talk5_14 807 +#define FRAME_sg_talk5_15 808 +#define FRAME_sg_talk5_16 809 +#define FRAME_sg_talk5_17 810 +#define FRAME_sg_talk5_18 811 +#define FRAME_sg_talk5_19 812 +#define FRAME_sg_talk5_20 813 +#define FRAME_sg_talk5_21 814 +#define FRAME_sg_talk5_22 815 +#define FRAME_sg_talk5_23 816 +#define FRAME_sg_talk5_24 817 +#define FRAME_sg_talk5_25 818 +#define FRAME_sg_talk5_26 819 +#define FRAME_sg_talk5_27 820 +#define FRAME_sg_talk5_28 821 +#define FRAME_sg_talk5_29 822 +#define FRAME_sg_talk6_01 823 +#define FRAME_sg_talk6_02 824 +#define FRAME_sg_talk6_03 825 +#define FRAME_sg_talk6_04 826 +#define FRAME_sg_talk6_05 827 +#define FRAME_sg_talk6_06 828 +#define FRAME_sg_talk6_07 829 +#define FRAME_sg_talk6_08 830 +#define FRAME_sg_talk6_09 831 +#define FRAME_sg_talk6_10 832 +#define FRAME_sg_talk6_11 833 +#define FRAME_sg_talk6_12 834 +#define FRAME_sg_talk6_13 835 +#define FRAME_sg_talk6_14 836 +#define FRAME_sg_talk6_15 837 +#define FRAME_sg_talk6_16 838 +#define FRAME_sg_talk6_17 839 +#define FRAME_sg_talk6_18 840 +#define FRAME_sg_talk6_19 841 +#define FRAME_sg_talk6_20 842 +#define FRAME_sg_talk6_21 843 +#define FRAME_sg_talk6_22 844 +#define FRAME_sg_talk6_23 845 +#define FRAME_sg_talk6_24 846 +#define FRAME_sg_talk6_25 847 +#define FRAME_sg_talk6_26 848 +#define FRAME_sg_talk6_27 849 +#define FRAME_sg_talk6_28 850 +#define FRAME_sg_talk6_29 851 +#define FRAME_sg_talk6_30 852 +#define FRAME_sg_talk6_31 853 +#define FRAME_sg_talk6_32 854 +#define FRAME_sg_talk6_33 855 +#define FRAME_sg_talk6_34 856 +#define FRAME_sg_talk6_35 857 +#define FRAME_sg_talk6_36 858 +#define FRAME_sg_talk6_37 859 +#define FRAME_sg_talk6_38 860 +#define FRAME_sg_talk6_39 861 +#define FRAME_sg_talk6_40 862 +#define FRAME_sg_talk6_41 863 +#define FRAME_sg_talk6_42 864 +#define FRAME_sg_talk6_43 865 +#define FRAME_sg_talk6_44 866 +#define FRAME_sg_talk6_45 867 +#define FRAME_sg_talk6_46 868 +#define FRAME_sg_talk6_47 869 +#define FRAME_hmg_std_01 870 +#define FRAME_hmg_std_02 871 +#define FRAME_hmg_std_03 872 +#define FRAME_hmg_std_04 873 +#define FRAME_hmg_std_05 874 +#define FRAME_hmg_std_06 875 +#define FRAME_hmg_std_07 876 +#define FRAME_hmg_std_08 877 +#define FRAME_hmg_std_09 878 +#define FRAME_hmg_std_10 879 +#define FRAME_hmg_std_11 880 +#define FRAME_hmg_std_12 881 +#define FRAME_hmg_sht_01 882 +#define FRAME_hmg_sht_02 883 +#define FRAME_hmg_sht_03 884 +#define FRAME_hmg_sht_04 885 +#define FRAME_hmg_sht_05 886 +#define FRAME_hmg_sht_06 887 +#define FRAME_hmg_sht_07 888 +#define FRAME_hmg_sht_08 889 +#define FRAME_hmg_sht_09 890 +#define FRAME_hmg_sht_10 891 +#define FRAME_hmg_sht_11 892 +#define FRAME_hmg_sht_12 893 +#define FRAME_hmg_wlk_01 894 +#define FRAME_hmg_wlk_02 895 +#define FRAME_hmg_wlk_03 896 +#define FRAME_hmg_wlk_04 897 +#define FRAME_hmg_wlk_05 898 +#define FRAME_hmg_wlk_06 899 +#define FRAME_hmg_wlk_07 900 +#define FRAME_hmg_wlk_08 901 +#define FRAME_hmg_wlk_09 902 +#define FRAME_hmg_wlk_10 903 +#define FRAME_hmg_run_01 904 +#define FRAME_hmg_run_02 905 +#define FRAME_hmg_run_03 906 +#define FRAME_hmg_run_04 907 +#define FRAME_hmg_run_05 908 +#define FRAME_hmg_run_06 909 + +#define MODEL_SCALE 1.000000 diff --git a/gamesrc/AI_RUNT.C b/gamesrc/AI_RUNT.C new file mode 100644 index 0000000..26e02d9 --- /dev/null +++ b/gamesrc/AI_RUNT.C @@ -0,0 +1,1501 @@ +#include "g_local.h" +#include "ai_runt.h" + +#include "voice_punk.h" + +void runt_end_kneel_attack( edict_t *self ); +void runt_talk( edict_t *self ); +void runt_end_stand( edict_t *self ); +void runt_kneel_shoot( edict_t *self ); +void runt_talk_think( edict_t *self ); + +void runt_firegun( edict_t *self, vec3_t ofs ); +void runt_right_fire( edict_t *self ); +void runt_left_fire( edict_t *self ); +void runt_firegun_right( edict_t *self ); +void runt_firegun_left( edict_t *self ); + +void runt_show_guns( edict_t *self ); +void runt_climb_loop( edict_t *self ); +void runt_melee( edict_t *self ); + +void runt_evade_amb( edict_t *self ); +void runt_evade_adjust( edict_t *self ); +void runt_evade_checkadjust( edict_t *self ); + +void runt_catch_fire( edict_t *self, edict_t *other ); + +// function that will bail out of the melee attack +// if runt doesnt stand a chance of hitting his enemy +void runt_melee_bail (edict_t *self); + +#define RUNT_MELEE 64 // spawnflag + +// ========================================================================= + +#include "ai_runt_tables.h" + +// ========================================================================= + +void runt_backoff( edict_t *self, edict_t *other ) +{ + if (self->name_index == NAME_JESUS) + { + Voice_Random (self, self->enemy, &sr_jesus[6], 10); + } + else if (self->name_index == NAME_KINGPIN) + Voice_Random (self, self->enemy, &kingpin[6], 10); + else + Voice_Random( self, other, m_backoff, NUM_BACKOFF ); +} + +void runt_catch_fire( edict_t *self, edict_t *other ) +{ + self->enemy = NULL; // stop attacking + self->cast_info.currentmove = &runt_move_run_on_fire; +} + +void runt_evade_amb( edict_t *self ) +{ + if (self->enemy && self->moral > 2) + self->cast_info.currentmove = &runt_move_melee_amb1; + else + self->cast_info.currentmove = &runt_move_evade_amb; +} + +void runt_evade_checkadjust( edict_t *self ) +{ + if (self->enemy && !directly_infront(self, self->enemy )) + self->cast_info.currentmove = &runt_move_evade_adjust; + else if (self->cast_info.avoid_ent && !directly_infront(self, self->cast_info.avoid_ent )) + self->cast_info.currentmove = &runt_move_evade_adjust; +} + +void runt_evade_adjust (edict_t *self ) +{ + vec3_t vec; + edict_t *other; + + if (self->enemy) + other = self->enemy; + else if (self->cast_info.avoid_ent) + other = self->cast_info.avoid_ent; + else + return; + + VectorSubtract( other->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + self->ideal_yaw = vectoyaw( vec ); +} + +void runt_end_kneel_attack( edict_t *self ) +{ + AI_EndAttack(self); + + if (self->cast_info.currentmove == self->cast_info.move_stand) + self->cast_info.currentmove = &runt_move_kneel_up; +} + +void runt_talk_think( edict_t *self ) +{ + AI_TalkThink( self, true ); +} + +void runt_talk( edict_t *self ) +{ + int rnd; + + // only make talking gesture if we've recently said something + if (!(self->cast_info.aiflags & AI_REPEAT_TALK_JESTURE) && self->last_talk_time < (level.time - 1.0)) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + if (self->cast_info.currentmove != self->cast_info.move_stand) + return; + + rnd = rand() % 9; + + if (rnd < 1) + self->cast_info.currentmove = &runt_move_talk1; + else if (rnd < 2) + self->cast_info.currentmove = &runt_move_talk2; + else if (rnd < 3) + self->cast_info.currentmove = &runt_move_talk3; + else if (rnd < 4) + self->cast_info.currentmove = &runt_move_talk4; + else if (rnd < 5) + self->cast_info.currentmove = &runt_move_talk5; + else if (rnd < 6) + self->cast_info.currentmove = &runt_move_talk6; + else if (rnd < 7) + self->cast_info.currentmove = &runt_move_talk7; + else + self->cast_info.currentmove = &runt_move_talk8; +} + +void runt_avoid ( edict_t *self, edict_t *other, qboolean face ) +{ + vec3_t vec; + + if (self->health <= 0) + return; + + if (!self->groundentity) + return; + + self->cast_info.last_avoid = level.time; + + if (face) + { // turn to face them + VectorSubtract( other->s.origin, self->s.origin, vec ); + self->cast_info.avoid_ent = other; + } + else + { // turn to face away from them + VectorSubtract( self->s.origin, other->s.origin, vec ); + self->cast_info.avoid_ent = NULL; + } + VectorNormalize( vec ); + + self->ideal_yaw = vectoyaw( vec ); + + if (self->maxs[2] > DUCKING_MAX_Z) + { + +//#if 0 // Ridah, these don't look right, and translations are incorrect + if (self->cast_info.aiflags & AI_NOWALK_FACE) + { + if (face) + { + int side_result; + + side_result = AI_SideTrace( self, 48, 90, SIDE_RANDOM ); + + if (side_result == AI_SideTrace( self, 48, 90 + (self->ideal_yaw - self->s.angles[YAW]), side_result )) + { + if (side_result < 0) + self->cast_info.currentmove = &runt_move_lside_step; + else + self->cast_info.currentmove = &runt_move_rside_step; + + return; + } + + // if no move set, just turn to face + M_ChangeYaw( self ); + + return; + } + } +//#endif + + if ((VectorDistance( self->s.origin, other->s.origin ) > 72) || !face) + self->cast_info.currentmove = &runt_move_avoid_walk; + else + self->cast_info.currentmove = &runt_move_avoid_reverse_walk; + + } + else + { + self->cast_info.currentmove = &runt_move_crouch_avoid_walk; + } + +} + +void runt_end_stand( edict_t *self ) +{ + if (self->cast_info.move_stand_evade && (self->last_stand_evade > (level.time - 3))) + return; + + if (self->cast_info.currentmove == self->cast_info.move_crstand) + return; + + +// if ( ((!self->cast_group) && (random() < 0.8)) +// || ((self->cast_group) && (random() < 0.3))) + { // stand normally + + self->cast_info.currentmove = self->cast_info.move_stand; + +// return; + } + + AI_CheckTalk(self); +} + +void runt_show_guns( edict_t *self ) +{ + self->s.model_parts[PART_GUN].invisible_objects = 0; + self->s.model_parts[PART_GUN2].invisible_objects = 0; +} + +void runt_kneel_shoot( edict_t *self ) +{ + self->cast_info.currentmove = &runt_move_knl_shoot; +} + +void runt_long_attack( edict_t *self ) +{ + // keep running, and try to fire if possible + + if (self->maxs[2] < self->cast_info.standing_max_z) + return; + + if (self->s.model_parts[PART_GUN].invisible_objects) + { // pull guns out + self->cast_info.currentmove = &runt_move_pull_guns; + return; + } + + self->cast_info.currentmove = &runt_move_run_shoot; +} + +// runt_attack: +// returns TRUE if starting an attack +qboolean runt_attack( edict_t *self ) +{ + vec3_t vec; + float dist; + + // this is where we would start some of the fancy side-ways or rolling attacks + + if (self->maxs[2] < self->cast_info.standing_max_z) + { + if ((self->cast_info.aiflags & AI_DUCKATTACK) && (rand()%20 < 1)) + { // stop duck attacking + self->cast_info.aiflags &= ~AI_DUCKATTACK; + self->maxs[2] = self->cast_info.standing_max_z; + if (ValidBoxAtLoc( self->s.origin, self->mins, self->maxs, self, MASK_PLAYERSOLID )) + { + self->cast_info.currentmove = self->cast_info.move_stand_up; + self->s.frame = self->cast_info.move_stand_up->firstframe; + return true; + } + else + { + self->maxs[2] = DUCKING_MAX_Z; + } + } + + if (self->cast_info.aiflags & AI_MELEE) + { // try to stand at all costs + self->maxs[2] = self->cast_info.standing_max_z; + + if (ValidBoxAtLoc( self->s.origin, self->mins, self->maxs, self, MASK_PLAYERSOLID )) + goto standing; + + self->maxs[2] = DUCKING_MAX_Z; + // gi.dprintf( "ANIM TODO: crouch melee attack\n" ); + { + int rval; + + rval = rand()%5; + + if (rval == 1) + self->cast_info.currentmove = &runt_move_low_melee1; + else if (rval == 2) + self->cast_info.currentmove = &runt_move_low_melee2; + else if (rval == 3) + self->cast_info.currentmove = &runt_move_low_melee3; + else if (rval == 4) + self->cast_info.currentmove = &runt_move_low_melee4; + else + self->cast_info.currentmove = &runt_move_low_melee5; + } + + return true; // can't attack + } + + // HACK TO SHOW THE GUNS + self->s.model_parts[PART_GUN].invisible_objects = 0; + self->s.model_parts[PART_GUN2].invisible_objects = 0; + + self->cast_info.currentmove = &runt_move_crch_shoot; + return true; + } + else if (!(self->cast_info.aiflags & AI_MELEE) && (rand()%20 < 1)) // duck attack + { + + self->viewheight = -4; + + if (AI_ClearSight( self, self->enemy, false )) + { +//gi.dprintf("5\n"); + self->cast_info.aiflags |= AI_DUCKATTACK; + self->maxs[2] = DUCKING_MAX_Z; + self->cast_info.currentmove = self->cast_info.move_crouch_down; + + return true; + } + } + +standing: + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + dist = VectorNormalize( vec ); + + if (self->cast_info.aiflags & AI_MELEE) + { + qboolean attack=false; + + if (dist < 64) + { + attack = true; + } + else // are they running towards us? + { + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + + if ((VectorLength(vec) < 200) && (DotProduct(vec, self->enemy->velocity) < 0)) + { + attack = true; + } + } + + if (attack) + { + int rnd; + + self->ideal_yaw = vectoyaw(vec); + + M_ChangeYaw( self ); + + // JOSEPH 12-MAR-99 + Voice_Random( self, self->enemy, grunting, 5); + // END JOSEPH + + if (self->maxs[2] > self->enemy->maxs[2]) + { + self->cast_info.currentmove = &runt_move_low_melee1; + } + else + { + rnd = rand()%5; + + switch (rnd) + { + case 0 : + self->cast_info.currentmove = &runt_move_melee1; + break; + case 1 : + self->cast_info.currentmove = &runt_move_melee2; + break; + case 2 : + self->cast_info.currentmove = &runt_move_melee3; + break; + case 3 : + self->cast_info.currentmove = &runt_move_melee4; + break; + case 4 : + self->cast_info.currentmove = &runt_move_melee5; + break; + } + } + + if (self->maxs[2] > self->enemy->maxs[2] || self->s.origin[2] > self->enemy->s.origin[2]) + self->cast_info.currentmove = &runt_move_low_melee1; + + self->cast_info.aiflags &=~ AI_RUSH_THE_PLAYER; + return true; + } + else if (dist < 128) + { + self->ideal_yaw = vectoyaw(vec); + M_ChangeYaw( self ); + + self->cast_info.currentmove = &runt_move_run_melee; + return true; + } + else if (dist < 400) + self->cast_info.aiflags |= AI_RUSH_THE_PLAYER; + + return false; + } + + if (self->s.model_parts[PART_GUN].invisible_objects) + { // pull guns out + self->cast_info.currentmove = &runt_move_pull_guns; + return true; + } + + if (self->cast_info.currentmove == &runt_move_knl_shoot) + { + // HACK TO SHOW GUN + self->s.model_parts[PART_GUN].invisible_objects = 0; + self->s.model_parts[PART_GUN2].invisible_objects = 0; + self->cast_info.currentmove = &runt_move_knl_shoot; + + return true; + } + + + // Special case: enemy has flamethrower, run backwards, keep firing + if ( (dist < 384) // they're close + && (self->enemy->client) + && (self->enemy->client->pers.weapon) + && (stricmp(self->enemy->client->pers.weapon->classname, "weapon_flamethrower") == 0)) + { + int side_result; + + // see if we can go backwards + if (side_result = AI_SideTrace( self, -64, 0, 1 )) + { + self->cast_info.currentmove = &runt_move_reverse_run_shoot; + return true; + } + + } + + // if just popped out from a corner, just stand here + if (self->dont_takecover_time > (level.time - 2)) + { + goto stand_shoot; + } + + if ((skill->value > random()*2) && (self->cast_info.last_side_attack_time < (level.time - 1)) && (dist > 128)) + { + int side_result, side_result2; + + side_result = AI_SideTrace( self, 64, 90, -self->cast_info.last_side_attack ); + + if (side_result) + { + side_result2 = AI_SideTrace( self, 96, 90, side_result ); + + if (side_result2 == side_result) + { + if (side_result < 0) + self->cast_info.currentmove = &runt_move_lside_run; + else + self->cast_info.currentmove = &runt_move_rside_run; + + self->ideal_yaw = vectoyaw(vec) + side_result * 90; + + M_ChangeYaw( self ); + + self->cast_info.last_side_attack = side_result; + self->cast_info.last_side_attack_time = level.time; + + return true; + } + } + + } + + if ( (self->cast_info.currentmove != &runt_move_shoot) + && (dist > 512) + && (random() < 0.5) + && (directly_infront(self, self->enemy)) + && (self->s.model_parts[PART_GUN].invisible_objects)) // only kneel if we haven't drawn our guns yet + { + self->cast_info.currentmove = &runt_move_kneel; + + return true; + } + + + // walk shooting? +// Ridah, I don't like this animation +// if ((dist > 512) && directly_infront( self, self->enemy ) && AI_SideTrace(self, 32, 0, 1 ) ) +// { +// self->cast_info.currentmove = &runt_move_walk_shoot; +// return true; +// } +// else + if ((dist < 128) && AI_SideTrace(self, -32, 0, 1 ) ) + { + self->cast_info.currentmove = &runt_move_reverse_walk_shoot; + return true; + } + +stand_shoot: + + // normal attack + + self->ideal_yaw = vectoyaw(vec); + + M_ChangeYaw( self ); + + self->cast_info.currentmove = &runt_move_shoot; + + return true; +} + +void runt_climb_loop(edict_t *self) +{ + self->cast_info.currentmove = &runt_move_clmb_loop; +} + + +void runt_melee_bail (edict_t *self) +{ + vec3_t vec; + float dist; + + if (self->enemy) + { + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + dist = VectorNormalize( vec ); + + if (dist > 48) + { +// AI_EndAttack(self); + self->cast_info.currentmove = &runt_move_run_melee; + return; + } + } + +} + +void runt_melee( edict_t *self ) +{ + vec3_t start, offset; + vec3_t forward, right; + + float damage = 8; + + if (self->cast_info.currentmove == &runt_move_melee5) + damage *= 2; // double handed attack + + if (self->cast_info.currentmove == &runt_move_low_melee1) + damage *= 3; + + // yell at them? + if (self->last_talk_time < (level.time - TALK_FIGHTING_DELAY)) + { + // we can't play any "eat lead" type sounds, because we're not firing lead.. + + if (self->cast_group != 1) + Voice_Random( self, self->enemy, grunting, 5); + else + Voice_Random(self, self->enemy, friendlycombat, NUM_FRIENDLYCOMBAT ); + } + + // VectorSet(offset, 0, 8, self->viewheight - 4); + VectorSet (offset, 0, 8, 16); + + AngleVectors (self->s.angles, forward, right, NULL); + if (self->cast_info.currentmove == &runt_move_low_melee1) + forward[2] -= 0.5; + G_ProjectSource (self->s.origin, offset, forward, right, start); + if (self->cast_info.currentmove == &runt_move_low_melee1) + start[2] -= 8; + + // HACK, higher Moral does more damage + if (self->moral > 4) + damage *= 1.0 + (self->moral - 4)*0.25; + + fire_blackjack( self, start, forward, damage, 10, MOD_BLACKJACK ); + +} + +void runt_firegun( edict_t *self, vec3_t ofs ) +{ + vec3_t start; + vec3_t forward, right; + vec3_t target; + vec3_t aim; + vec3_t offset; + int flash_number; + float dist; + + if (self->cast_info.currentmove == &runt_move_knl_shoot) + { + if (!directly_infront( self, self->enemy )) + { + self->cast_info.currentmove = &runt_move_kneel_up; + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + + self->cast_info.aiflags |= AI_FACE_ATTACK; + } + else + { + if (self->noise_time < (level.time - 1)) + { // haven't fired for a while, prevent we reloaded + self->duration = 0; + } + + // check for reload + if ( (self->maxs[2] == self->cast_info.standing_max_z) + && !(self->cast_info.aiflags & AI_SIDE_ATTACK) + && (self->duration++ > 20)) + { + self->duration = 0; + self->cast_info.currentmove = &runt_move_reload; + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + } + + if (!AI_BeginAttack( self )) + { + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + + self->cast_info.aiflags &= ~AI_FACE_ATTACK; + + // yell at them? + if (self->last_talk_time < (level.time - TALK_FIGHTING_DELAY)) + { + if (self->name_index == NAME_JESUS) + { + Voice_Random (self, self->enemy, &sr_jesus[6], 10); + } + else if (self->name_index == NAME_KINGPIN) + Voice_Random (self, self->enemy, &kingpin[6], 10); + else if (self->cast_group != 1) + Voice_Random(self, self->enemy, fightsounds, NUM_FIGHTING); + else + Voice_Random(self, self->enemy, friendlycombat, NUM_FRIENDLYCOMBAT ); + } + + // fire the gun + + VectorSet(offset, 0 + ofs[0], 8 + ofs[1], self->viewheight-8 + ofs[2]); + + AngleVectors (self->s.angles, forward, right, NULL); + G_ProjectSource (self->s.origin, offset, forward, right, start); + + // project enemy back a bit and target there + VectorCopy (self->enemy->s.origin, target); + VectorMA (target, (-0.5 * (random()*0.8 + 0.2)) * (1.0 - (skill->value/4.0)), self->enemy->velocity, target); + target[2] += self->enemy->viewheight; + + flash_number = MZ2_GUNNER_MACHINEGUN_1; + + VectorSubtract (target, start, aim); + dist = VectorNormalize (aim); + + self->ideal_yaw = vectoyaw( aim ); + + if ( (dist < self->cast_info.max_attack_distance) + && ( ((random() < 0.1) && (self->cast_info.last_side_attack_time < (level.time - 2))) + || ( (!(self->cast_info.aiflags & AI_SIDE_ATTACK) || (self->cast_info.last_side_attack_time < (level.time - 2))) + && (directly_infront( self->enemy, self)) + && (self->enemy->client) + && (self->enemy->client->pers.weapon) + && (self->enemy->client->pers.weapon->ammo)))) // if we are directly infront of them, try to strafe + { + if (self->cast_info.aiflags & AI_SIDE_ATTACK) + self->cast_info.currentmove = &runt_move_shoot; + else + self->cast_info.attack( self ); + } + + if (self->acc) + { +// Ridah, 17-may-99, this was around the wrong way, which caused guys with "cal" set in the map to not do any damage +// if (self->cal) + if (!self->cal) + cast_fire_bullet (self, start, aim, 6, 0, DEFAULT_BULLET_HSPREAD>>self->acc, DEFAULT_BULLET_VSPREAD>>self->acc, flash_number); + else + cast_fire_bullet (self, start, aim, self->cal, 0, DEFAULT_BULLET_HSPREAD>>self->acc, DEFAULT_BULLET_VSPREAD>>self->acc, flash_number); + } + else + cast_fire_bullet (self, start, aim, 6, 0, DEFAULT_BULLET_HSPREAD, DEFAULT_BULLET_VSPREAD, flash_number); + + gi.sound(self, CHAN_WEAPON, gi.soundindex("weapons/machinegun/machgf1b.wav"), 1, ATTN_NORM, 0); + +} + +void runt_right_fire( edict_t *self ) +{ + static vec3_t ofs = {4, 0, 0}; + runt_firegun( self, ofs ); +} + +void runt_left_fire( edict_t *self ) +{ + static vec3_t ofs = {-4, 0, 0}; + runt_firegun( self, ofs ); +} + +void runt_firegun_right( edict_t *self ) +{ +// vec3_t vec; +// float oldyaw; + static vec3_t ofs = {0,0,0}; + + if (!self->enemy) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + if (self->cast_info.aiflags & AI_TURN_BLOCKED) + { // abort the side run + self->cast_info.aiflags &= ~AI_TURN_BLOCKED; + AI_EndAttack(self); + return; + } + + // if the path ahead is not clear, abort + if (!AI_SideTrace( self, 128, 90, 1 )) + { + AI_EndAttack(self); + return; + } + +/* + oldyaw = self->s.angles[YAW]; + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + + self->s.angles[YAW] = vectoyaw( vec ); +*/ + self->cast_info.aiflags |= AI_SIDE_ATTACK; + runt_firegun(self, ofs); + self->cast_info.aiflags &= ~AI_SIDE_ATTACK; +/* + // keep running to the side + self->ideal_yaw = self->s.angles[YAW] + 90; + + self->s.angles[YAW] = oldyaw; +*/ +} + +void runt_firegun_left( edict_t *self ) +{ +// vec3_t vec; +// float oldyaw; + static vec3_t ofs = {0,0,0}; + + if (!self->enemy) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + if (self->cast_info.aiflags & AI_TURN_BLOCKED) + { // abort the side run + self->cast_info.aiflags &= ~AI_TURN_BLOCKED; + AI_EndAttack(self); + return; + } + + // if the path ahead is not clear, abort + if (!AI_SideTrace( self, 128, -90, 1 )) + { + AI_EndAttack(self); + return; + } + +/* + oldyaw = self->s.angles[YAW]; + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + + self->s.angles[YAW] = vectoyaw( vec ); +*/ + self->cast_info.aiflags |= AI_SIDE_ATTACK; + runt_firegun(self, ofs); + self->cast_info.aiflags &= ~AI_SIDE_ATTACK; +/* + // keep running to the side + self->ideal_yaw = self->s.angles[YAW] - 90; + + self->s.angles[YAW] = oldyaw; +*/ +} + +void think_playthud_runt( edict_t *self ) +{ + char Temp[128]; + +#ifdef __linux__ +return; // linux can't handle this for some reason +#endif + + strcpy ((char*)Temp, "actors/player/bodyfalls/"); + + if (self->thudsurf & SURF_FABRIC) + { + strcat((char*)&Temp[0], (char*)"rug"); + } + else if (self->thudsurf & SURF_GRAVEL) + { + strcat((char*)&Temp[0], (char*)"gravel"); + } + else if (self->thudsurf & SURF_METAL) + { + strcat((char*)&Temp[0], (char*)"metalh"); + } + else if (self->thudsurf & SURF_METAL_L) + { + strcat((char*)&Temp[0], (char*)"metall"); + } + else if (self->thudsurf & SURF_SNOW) + { + strcat((char*)&Temp[0], (char*)"tin"); + } + else if (self->thudsurf & SURF_TILE) + { + strcat((char*)&Temp[0], (char*)"marble"); + } + else if (self->thudsurf & SURF_WOOD) + { + strcat((char*)&Temp[0], (char*)"wood"); + } + else + { + strcat((char*)&Temp[0], (char*)"pavement"); + } + + if (self->thudsnd == 1) + { + strcat((char*)&Temp[0], (char*)"d1.wav"); + gi.positioned_sound (self->s.origin, self, CHAN_VOICE|CHAN_RELIABLE, gi.soundindex((char*)&Temp[0]), + 1.0, ATTN_NORM, 0); + } + else + { + strcat((char*)&Temp[0], (char*)"d2.wav"); + gi.positioned_sound (self->s.origin, self, CHAN_VOICE|CHAN_RELIABLE, gi.soundindex((char*)&Temp[0]), + 1.0, ATTN_NORM, 0); + } + + self->nextthink = level.time + (0.1*20.0); + self->think = G_FreeEdict; +} + +// JOSEPH 19-MAR-99 +void runt_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + trace_t tr; + vec3_t end; + edict_t *playthud1, *playthud2; + + self->takedamage = DAMAGE_YES; + + if (DeathByGib(self, inflictor, attacker, damage)) + { // gib + self->deadflag = DEAD_DEAD; + GibEntity( self, inflictor, damage ); + return; + } + + if (self->deadflag == DEAD_DEAD) + return; + + if (!(self->cast_info.aiflags & AI_MELEE)) + SpawnTheWeapon (self, "weapon_pistol_e"); + + // EP_SpecialEventDeath (self); + + if (!self->onfiretime) + { + if (self->name_index == NAME_JESUS) + Voice_Random (self, self->enemy, &sr_jesus[0], 2); + else if (self->name_index == NAME_KINGPIN) + Voice_Random (self, self->enemy, &kingpin[0], 2); + else if (self->name_index == NAME_POPEYE) + Voice_Random (self, self->enemy, &sy_popeye[19], 3); + else + gi.sound (self, CHAN_VOICE, gi.soundindex(va("*death%i.wav", (rand()%4)+1)), 1, ATTN_NORM, 0); + } + + // regular death + self->deadflag = DEAD_DEAD; + + VectorCopy (self->s.origin, end); + end[2] -= 64; + tr = gi.trace (self->s.origin, self->mins, self->maxs, end, self, MASK_SHOT); + + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + self->s.model_parts[PART_GUN2].invisible_objects = (1<<0 | 1<<1); + + if (!strcmp(inflictor->classname, "rocket")) + { + self->cast_info.currentmove = &runt_move_crch_death1; + + // throw backwards + VectorNormalize2(inflictor->velocity, self->velocity); + + VectorNegate( self->velocity, self->velocity ); + self->ideal_yaw = vectoyaw( self->velocity ); + VectorNegate( self->velocity, self->velocity ); + + VectorMA( self->velocity, 500, self->velocity, self->velocity ); + self->gravity = 0.7; + self->velocity[2] = 220; + + self->groundentity = NULL; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*6.0); + playthud1->think = think_playthud_runt; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*13.0); + playthud2->think = think_playthud_runt; + gi.linkentity (playthud2); + } + else if (mdx_part == PART_HEAD) + { + self->cast_info.currentmove = &runt_move_death5; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*7.0); + playthud1->think = think_playthud_runt; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*11.0); + playthud2->think = think_playthud_runt; + gi.linkentity (playthud2); + } + else if (self->maxs[2] < self->cast_info.standing_max_z) + { + self->cast_info.currentmove = &runt_move_crch_death2; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*6.0); + playthud1->think = think_playthud_runt; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*9.0); + playthud2->think = think_playthud_runt; + gi.linkentity (playthud2); + } + else + { + int n; + + n = rand() % 5; + if (n == 0) + { + self->cast_info.currentmove = &runt_move_death1; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*7.0); + playthud1->think = think_playthud_runt; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*14.0); + playthud2->think = think_playthud_runt; + gi.linkentity (playthud2); + } + else if (n == 1) + { + self->cast_info.currentmove = &runt_move_death2; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*6.0); + playthud1->think = think_playthud_runt; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*8.0); + playthud2->think = think_playthud_runt; + gi.linkentity (playthud2); + } + else if (n == 2) + { + self->cast_info.currentmove = &runt_move_death3; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*8.0); + playthud1->think = think_playthud_runt; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*12.0); + playthud2->think = think_playthud_runt; + gi.linkentity (playthud2); + } + else if (n == 3) + { + self->cast_info.currentmove = &runt_move_death4; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*7.0); + playthud1->think = think_playthud_runt; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*10.0); + playthud2->think = think_playthud_runt; + gi.linkentity (playthud2); + } + else + { + self->cast_info.currentmove = &runt_move_death5; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*7.0); + playthud1->think = think_playthud_runt; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*11.0); + playthud2->think = think_playthud_runt; + gi.linkentity (playthud2); + } + } +} +// END JOSEPH + +void runt_pain (edict_t *self, edict_t *other, float kick, int damage, int mdx_part, int mdx_subobject) +{ + int orientation; + + AI_CheckMakeEnemy( self, other ); + + if (level.time < self->pain_debounce_time) + return; + + self->pain_debounce_time = level.time + 3 + random(); + + if (skill->value >= 3) + return; // no pain anims in nightmare + + // faked client pain sound + if (self->name_index == NAME_JESUS) + { + Voice_Random (self, self->enemy, &sr_jesus[2], 4); + } + else if (self->name_index == NAME_KINGPIN) + Voice_Random (self, self->enemy, &kingpin[2], 4); + else if (self->name_index == NAME_POPEYE) + Voice_Random (self, self->enemy, &sy_popeye[19], 3); + else + { + int r,l; + + r = 1 + (rand()&1); + if (self->health < 25) + l = 25; + else if (self->health < 50) + l = 50; + else if (self->health < 75) + l = 75; + else + l = 100; + gi.sound (self, CHAN_BODY, gi.soundindex(va("*pain%i_%i.wav", l, r)), 1, ATTN_NORM, 0); + } + + if (self->cast_info.currentmove == &runt_move_knl_shoot) + return; // no pain anim for crouch shoot + + + + // Ridah, randomly don't play an animation, since it' leaves them WAY open to be killed + if (skill->value > 0 && rand()%2) + return; + + + if (other->client || (other->svflags & SVF_MONSTER)) + { + orientation = AI_GetOrientation( self, other ); + } + else + { + orientation = ORIENTATION_CENTER; + } + + if ((self->maxs[2] < self->cast_info.standing_max_z)) + { // crouching + + if ( mdx_part == PART_HEAD) + self->cast_info.currentmove = &runt_move_c_pain_head; + else + + switch (orientation) + { + case ORIENTATION_CENTER : + { + self->cast_info.currentmove = &runt_move_c_pain_chst; + break; + } + case ORIENTATION_LEFT : + { + self->cast_info.currentmove = &runt_move_c_pain_Larm; + break; + } + case ORIENTATION_RIGHT : + { + self->cast_info.currentmove = &runt_move_c_pain_Rarm; + break; + } + } + + } + else // standing + { + + if ( (mdx_part == PART_BODY) + || (other->client && other->client->pers.weapon && !(other->client->pers.weapon->ammo) && (orientation = rand()%2+1))) + { + switch (orientation) + { + case ORIENTATION_CENTER : + { + self->cast_info.currentmove = &runt_move_pain_chst; + break; + } + case ORIENTATION_LEFT : + { + self->cast_info.currentmove = &runt_move_pain_Larm; + break; + } + case ORIENTATION_RIGHT : + { + self->cast_info.currentmove = &runt_move_pain_Rarm; + break; + } + } + } + else if (mdx_part == PART_LEGS) + { + switch (orientation) + { + case ORIENTATION_CENTER : + { + if (infront(self, other)) + { + self->cast_info.currentmove = &runt_move_pain_crch; + } + else + { + self->cast_info.currentmove = &runt_move_pain_butt; + } + break; + } + case ORIENTATION_LEFT : + { + self->cast_info.currentmove = &runt_move_pain_Lleg; + break; + } + case ORIENTATION_RIGHT : + { + self->cast_info.currentmove = &runt_move_pain_Rleg; + break; + } + } + } + else if (mdx_part == PART_HEAD) + { + self->cast_info.currentmove = &runt_move_pain_head; + } + + } + +} + +// ========================================================================= + +/*QUAKED cast_runt (1 .5 0) (-16 -16 -24) (16 16 48) x TRIGGERED_START x x x IMMEDIATE_FOLLOW_PATH MELEE NOSHADOW +cast_group 0 neutral +cast_group 1 friendly +cast_group 2 or greater enemy +guy with the pistol + +model="models\actors\runt\" +*/ +void SP_cast_runt (edict_t *self) +{ + int i; + char *head_skin, *body_skin, *legs_skin; + int skin; + + if (deathmatch->value) + { + G_FreeEdict (self); + return; + } + + self->movetype = MOVETYPE_STEP; + self->solid = SOLID_BBOX; + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 48); + + self->s.skinnum = (self->skin-1) * 3; + + if (!self->art_skins) + { // use default skins + self->art_skins = "001 001 001"; + } + + if (self->art_skins) + { + // convert spaces to NULL's + for (i=0; i<11; i++) + if (self->art_skins[i] == ' ') + self->art_skins[i] = '\0'; + + head_skin = &self->art_skins[0]; + body_skin = &self->art_skins[4]; + legs_skin = &self->art_skins[8]; + } + else + { + head_skin = body_skin = legs_skin = NULL; + } + + // ------------------------------------------------------------------------ + // initialize all model_part data + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/runt/head.mdx"); + if (head_skin) + { + skin = gi.skinindex( self->s.model_parts[PART_HEAD].modelindex, head_skin ); + } + else + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_HEAD].baseskin = self->s.model_parts[PART_HEAD].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/runt/head.mdx", &self->s.model_parts[PART_HEAD] ); + + self->s.num_parts++; + self->s.model_parts[PART_LEGS].modelindex = gi.modelindex("models/actors/runt/legs.mdx"); + if (head_skin) + skin = gi.skinindex( self->s.model_parts[PART_LEGS].modelindex, legs_skin ); + else + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_LEGS].baseskin = self->s.model_parts[PART_LEGS].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/runt/legs.mdx", &self->s.model_parts[PART_LEGS] ); + + self->s.num_parts++; + self->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/actors/runt/body.mdx"); + if (head_skin) + skin = gi.skinindex( self->s.model_parts[PART_BODY].modelindex, body_skin ); + else + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_BODY].baseskin = self->s.model_parts[PART_BODY].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/runt/body.mdx", &self->s.model_parts[PART_BODY] ); + + if (self->spawnflags & RUNT_MELEE) + { + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/runt/pipe.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/runt/pipe.mdx", &self->s.model_parts[PART_GUN] ); + + self->cast_info.aiflags |= AI_MELEE; + } + else + { + + if (self->name_index == NAME_KINGPIN) + { + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/runt/R_king_Pstl.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/runt/R_pstl.mdx", &self->s.model_parts[PART_GUN] ); + + // the guns should not be visible until we go to use them + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + + self->s.num_parts++; + self->s.model_parts[PART_GUN2].modelindex = gi.modelindex("models/actors/runt/L_king_Pstl.mdx"); + for (i=0; is.model_parts[PART_GUN2].baseskin = self->s.model_parts[PART_GUN2].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/runt/L_pstl.mdx", &self->s.model_parts[PART_GUN2] ); + + // the guns should not be visible until we go to use them + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + self->s.model_parts[PART_GUN2].invisible_objects = (1<<0 | 1<<1); + } + else + { + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/runt/R_pstl.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/runt/R_pstl.mdx", &self->s.model_parts[PART_GUN] ); + + // the guns should not be visible until we go to use them + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + + self->s.num_parts++; + self->s.model_parts[PART_GUN2].modelindex = gi.modelindex("models/actors/runt/L_pstl.mdx"); + for (i=0; is.model_parts[PART_GUN2].baseskin = self->s.model_parts[PART_GUN2].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/runt/L_pstl.mdx", &self->s.model_parts[PART_GUN2] ); + + // the guns should not be visible until we go to use them + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + self->s.model_parts[PART_GUN2].invisible_objects = (1<<0 | 1<<1); + } + } + + if (self->count & 1) // cigar + { + self->s.num_parts++; + self->s.model_parts[PART_CIGAR].modelindex = gi.modelindex("models/actors/runt/cigar.mdx"); + for (i=0; is.model_parts[PART_CIGAR].baseskin = self->s.model_parts[PART_CIGAR].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/runt/cigar.mdx", &self->s.model_parts[PART_CIGAR] ); + } + + if (self->count & 2) // fedora hat + { + self->s.num_parts++; + self->s.model_parts[PART_HAT].modelindex = gi.modelindex("models/actors/runt/fedora.mdx"); + for (i=0; is.model_parts[PART_HAT].baseskin = self->s.model_parts[PART_HAT].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/runt/fedora.mdx", &self->s.model_parts[PART_HAT] ); + } + else if (self->count & 4) // stetson hat + { + self->s.num_parts++; + self->s.model_parts[PART_HAT].modelindex = gi.modelindex("models/actors/runt/stetson.mdx"); + for (i=0; is.model_parts[PART_HAT].baseskin = self->s.model_parts[PART_HAT].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/runt/stetson.mdx", &self->s.model_parts[PART_HAT] ); + } + else if (self->count & 8) // cap (hat) + { + self->s.num_parts++; + self->s.model_parts[PART_HAT].modelindex = gi.modelindex("models/actors/runt/cap.mdx"); + for (i=0; is.model_parts[PART_HAT].baseskin = self->s.model_parts[PART_HAT].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/runt/cap.mdx", &self->s.model_parts[PART_HAT] ); + } + + // remove NULL's + if (self->art_skins) + self->art_skins[3] = self->art_skins[7] = ' '; + + // ------------------------------------------------------------------------ + + if (!self->health) + self->health = 100; + + self->gib_health = -200; + self->mass = 200; + + self->gender = GENDER_MALE; + + self->pain = runt_pain; + self->die = runt_die; + + self->cast_info.checkattack = AI_CheckAttack; + + self->cast_info.attack = runt_attack; + self->cast_info.long_attack = runt_long_attack; + self->cast_info.talk = runt_talk; + self->cast_info.avoid = runt_avoid; + self->cast_info.backoff = runt_backoff; + + self->cast_info.catch_fire = runt_catch_fire; + + self->cast_info.max_attack_distance = 2000; + + self->cast_info.move_stand = &runt_move_amb_stand; + self->cast_info.move_crstand = &runt_move_crch_amb_sdt; + + self->cast_info.move_run = &runt_move_run_guns_dn; + self->cast_info.move_runwalk = &runt_move_walk_guns_dn; + self->cast_info.move_crwalk = &runt_move_crouch_walk; + + self->cast_info.move_jump = &runt_move_jump; + + self->cast_info.move_avoid_walk = &runt_move_avoid_walk; + self->cast_info.move_avoid_run = &runt_move_avoid_run; + self->cast_info.move_avoid_reverse_walk = &runt_move_avoid_reverse_walk; + self->cast_info.move_avoid_reverse_run = &runt_move_avoid_reverse_run; + self->cast_info.move_avoid_crwalk = &runt_move_crouch_avoid_walk; + + self->cast_info.move_crouch_down = &runt_move_crouch_dn; + self->cast_info.move_stand_up = &runt_move_stand_up; + + self->cast_info.move_lside_step = &runt_move_lside_step; + self->cast_info.move_rside_step = &runt_move_rside_step; + +// self->cast_info.move_start_climb = &runt_move_st_clmb; + self->cast_info.move_start_climb = &runt_move_clmb_loop; + self->cast_info.move_end_climb = &runt_move_clmb_jmp; + + self->cast_info.move_evade = &runt_move_evade; + + if (self->moral > 2) + self->cast_info.move_stand_evade = &runt_move_evade_stand2; + else + self->cast_info.move_stand_evade = &runt_move_evade_stand; + + gi.linkentity (self); + + self->cast_info.currentmove = self->cast_info.move_stand; + + if (!self->cast_info.scale) + self->cast_info.scale = MODEL_SCALE; + + self->s.scale = self->cast_info.scale - 1.0; + + // talk by default + self->cast_info.aiflags |= AI_TALK; + + walking_cast_start (self); + + if (!self->acc) + self->acc = 2; + + if (self->spawnflags & 128) + self->s.renderfx2 |= RF2_NOSHADOW; + +} diff --git a/gamesrc/AI_RUNT.H b/gamesrc/AI_RUNT.H new file mode 100644 index 0000000..456b614 --- /dev/null +++ b/gamesrc/AI_RUNT.H @@ -0,0 +1,973 @@ +#define FRAME_amb_stand_01 0 +#define FRAME_amb_stand_02 1 +#define FRAME_amb_stand_03 2 +#define FRAME_amb_stand_04 3 +#define FRAME_amb_stand_05 4 +#define FRAME_amb_stand_06 5 +#define FRAME_amb_stand_07 6 +#define FRAME_amb_stand_08 7 +#define FRAME_amb_stand_09 8 +#define FRAME_amb_stand_10 9 +#define FRAME_amb_stand_11 10 +#define FRAME_amb_stand_12 11 +#define FRAME_amb_stand_13 12 +#define FRAME_amb_stand_14 13 +#define FRAME_amb_stand_15 14 +#define FRAME_amb_stand_16 15 +#define FRAME_amb_stand_17 16 +#define FRAME_amb_stand_18 17 +#define FRAME_amb_stand_19 18 +#define FRAME_amb_stand_20 19 +#define FRAME_talk1_01 20 +#define FRAME_talk1_02 21 +#define FRAME_talk1_03 22 +#define FRAME_talk1_04 23 +#define FRAME_talk1_05 24 +#define FRAME_talk1_06 25 +#define FRAME_talk1_07 26 +#define FRAME_talk1_08 27 +#define FRAME_talk1_09 28 +#define FRAME_talk1_10 29 +#define FRAME_talk1_11 30 +#define FRAME_talk1_12 31 +#define FRAME_talk1_13 32 +#define FRAME_talk1_14 33 +#define FRAME_talk2_01 34 +#define FRAME_talk2_02 35 +#define FRAME_talk2_03 36 +#define FRAME_talk2_04 37 +#define FRAME_talk2_05 38 +#define FRAME_talk2_06 39 +#define FRAME_talk2_07 40 +#define FRAME_talk2_08 41 +#define FRAME_talk2_09 42 +#define FRAME_talk2_10 43 +#define FRAME_talk2_11 44 +#define FRAME_talk2_12 45 +#define FRAME_talk2_13 46 +#define FRAME_talk2_14 47 +#define FRAME_talk2_15 48 +#define FRAME_talk2_16 49 +#define FRAME_talk2_17 50 +#define FRAME_talk2_18 51 +#define FRAME_talk2_19 52 +#define FRAME_talk2_20 53 +#define FRAME_talk2_21 54 +#define FRAME_talk2_22 55 +#define FRAME_talk3_01 56 +#define FRAME_talk3_02 57 +#define FRAME_talk3_03 58 +#define FRAME_talk3_04 59 +#define FRAME_talk3_05 60 +#define FRAME_talk3_06 61 +#define FRAME_talk3_07 62 +#define FRAME_talk3_08 63 +#define FRAME_talk3_09 64 +#define FRAME_talk3_10 65 +#define FRAME_talk3_11 66 +#define FRAME_talk3_12 67 +#define FRAME_talk3_13 68 +#define FRAME_talk3_14 69 +#define FRAME_talk4_01 70 +#define FRAME_talk4_02 71 +#define FRAME_talk4_03 72 +#define FRAME_talk4_04 73 +#define FRAME_talk4_05 74 +#define FRAME_talk4_06 75 +#define FRAME_talk4_07 76 +#define FRAME_talk4_08 77 +#define FRAME_talk4_09 78 +#define FRAME_talk4_10 79 +#define FRAME_talk4_11 80 +#define FRAME_talk4_12 81 +#define FRAME_talk4_13 82 +#define FRAME_talk4_14 83 +#define FRAME_talk4_15 84 +#define FRAME_talk4_16 85 +#define FRAME_talk4_17 86 +#define FRAME_talk4_18 87 +#define FRAME_talk4_19 88 +#define FRAME_talk4_20 89 +#define FRAME_talk4_21 90 +#define FRAME_talk4_22 91 +#define FRAME_talk4_23 92 +#define FRAME_talk5_01 93 +#define FRAME_talk5_02 94 +#define FRAME_talk5_03 95 +#define FRAME_talk5_04 96 +#define FRAME_talk5_05 97 +#define FRAME_talk5_06 98 +#define FRAME_talk5_07 99 +#define FRAME_talk5_08 100 +#define FRAME_talk5_09 101 +#define FRAME_talk5_10 102 +#define FRAME_talk5_11 103 +#define FRAME_talk5_12 104 +#define FRAME_talk5_13 105 +#define FRAME_talk5_14 106 +#define FRAME_talk5_15 107 +#define FRAME_talk5_16 108 +#define FRAME_talk5_17 109 +#define FRAME_talk5_18 110 +#define FRAME_talk5_19 111 +#define FRAME_talk5_20 112 +#define FRAME_talk5_21 113 +#define FRAME_talk5_22 114 +#define FRAME_talk5_23 115 +#define FRAME_talk6_01 116 +#define FRAME_talk6_02 117 +#define FRAME_talk6_03 118 +#define FRAME_talk6_04 119 +#define FRAME_talk6_05 120 +#define FRAME_talk6_06 121 +#define FRAME_talk6_07 122 +#define FRAME_talk6_08 123 +#define FRAME_talk6_09 124 +#define FRAME_talk6_10 125 +#define FRAME_talk6_11 126 +#define FRAME_talk6_12 127 +#define FRAME_talk6_13 128 +#define FRAME_talk6_14 129 +#define FRAME_talk6_15 130 +#define FRAME_talk6_16 131 +#define FRAME_talk6_17 132 +#define FRAME_talk6_18 133 +#define FRAME_talk6_19 134 +#define FRAME_talk6_20 135 +#define FRAME_talk6_21 136 +#define FRAME_talk6_22 137 +#define FRAME_talk7_01 138 +#define FRAME_talk7_02 139 +#define FRAME_talk7_03 140 +#define FRAME_talk7_04 141 +#define FRAME_talk7_05 142 +#define FRAME_talk7_06 143 +#define FRAME_talk7_07 144 +#define FRAME_talk7_08 145 +#define FRAME_talk7_09 146 +#define FRAME_talk7_10 147 +#define FRAME_talk7_11 148 +#define FRAME_talk7_12 149 +#define FRAME_talk7_13 150 +#define FRAME_talk7_14 151 +#define FRAME_talk7_15 152 +#define FRAME_talk7_16 153 +#define FRAME_talk7_17 154 +#define FRAME_talk7_18 155 +#define FRAME_talk7_19 156 +#define FRAME_talk7_20 157 +#define FRAME_talk7_21 158 +#define FRAME_talk7_22 159 +#define FRAME_talk7_23 160 +#define FRAME_talk7_24 161 +#define FRAME_talk7_25 162 +#define FRAME_talk7_26 163 +#define FRAME_talk7_27 164 +#define FRAME_talk7_28 165 +#define FRAME_talk7_29 166 +#define FRAME_talk7_30 167 +#define FRAME_talk7_31 168 +#define FRAME_talk7_32 169 +#define FRAME_talk7_33 170 +#define FRAME_talk7_34 171 +#define FRAME_talk7_35 172 +#define FRAME_talk7_36 173 +#define FRAME_talk8_01 174 +#define FRAME_talk8_02 175 +#define FRAME_talk8_03 176 +#define FRAME_talk8_04 177 +#define FRAME_talk8_05 178 +#define FRAME_talk8_06 179 +#define FRAME_talk8_07 180 +#define FRAME_talk8_08 181 +#define FRAME_talk8_09 182 +#define FRAME_talk8_10 183 +#define FRAME_talk8_11 184 +#define FRAME_talk8_12 185 +#define FRAME_talk8_13 186 +#define FRAME_talk8_14 187 +#define FRAME_talk8_15 188 +#define FRAME_talk8_16 189 +#define FRAME_talk8_17 190 +#define FRAME_talk8_18 191 +#define FRAME_talk8_19 192 +#define FRAME_talk8_20 193 +#define FRAME_talk8_21 194 +#define FRAME_talk8_22 195 +#define FRAME_talk8_23 196 +#define FRAME_talk8_24 197 +#define FRAME_talk8_25 198 +#define FRAME_talk8_26 199 +#define FRAME_talk8_27 200 +#define FRAME_talk8_28 201 +#define FRAME_talk8_29 202 +#define FRAME_talk8_30 203 +#define FRAME_talk8_31 204 +#define FRAME_talk8_32 205 +#define FRAME_talk8_33 206 +#define FRAME_talk8_34 207 +#define FRAME_pull_guns_01 208 +#define FRAME_pull_guns_02 209 +#define FRAME_pull_guns_03 210 +#define FRAME_pull_guns_04 211 +#define FRAME_pull_guns_05 212 +#define FRAME_pull_guns_06 213 +#define FRAME_pull_guns_07 214 +#define FRAME_pull_guns_08 215 +#define FRAME_shoot_01 216 +#define FRAME_shoot_02 217 +#define FRAME_shoot_03 218 +#define FRAME_shoot_04 219 +#define FRAME_shoot_05 220 +#define FRAME_shoot_06 221 +#define FRAME_shoot_07 222 +#define FRAME_shoot_08 223 +#define FRAME_reload_01 224 +#define FRAME_reload_02 225 +#define FRAME_reload_03 226 +#define FRAME_reload_04 227 +#define FRAME_reload_05 228 +#define FRAME_reload_06 229 +#define FRAME_reload_07 230 +#define FRAME_reload_08 231 +#define FRAME_reload_09 232 +#define FRAME_reload_10 233 +#define FRAME_reload_11 234 +#define FRAME_reload_12 235 +#define FRAME_reload_13 236 +#define FRAME_reload_14 237 +#define FRAME_reload_15 238 +#define FRAME_reload_16 239 +#define FRAME_reload_17 240 +#define FRAME_kneel_01 241 +#define FRAME_kneel_02 242 +#define FRAME_kneel_03 243 +#define FRAME_kneel_04 244 +#define FRAME_kneel_05 245 +#define FRAME_kneel_06 246 +#define FRAME_kneel_07 247 +#define FRAME_kneel_08 248 +#define FRAME_knl_shoot_01 249 +#define FRAME_knl_shoot_02 250 +#define FRAME_knl_shoot_03 251 +#define FRAME_knl_shoot_04 252 +#define FRAME_knl_shoot_05 253 +#define FRAME_knl_shoot_06 254 +#define FRAME_knl_shoot_07 255 +#define FRAME_knl_shoot_08 256 +#define FRAME_knl_shoot_09 257 +#define FRAME_knl_shoot_10 258 +#define FRAME_melee1_01 259 +#define FRAME_melee1_02 260 +#define FRAME_melee1_03 261 +#define FRAME_melee1_04 262 +#define FRAME_melee1_05 263 +#define FRAME_melee1_06 264 +#define FRAME_melee1_07 265 +#define FRAME_melee1_08 266 +#define FRAME_melee1_09 267 +#define FRAME_melee1_10 268 +#define FRAME_melee1_11 269 +#define FRAME_melee1_12 270 +#define FRAME_melee1_13 271 +#define FRAME_melee2_01 272 +#define FRAME_melee2_02 273 +#define FRAME_melee2_03 274 +#define FRAME_melee2_04 275 +#define FRAME_melee2_05 276 +#define FRAME_melee2_06 277 +#define FRAME_melee2_07 278 +#define FRAME_melee2_08 279 +#define FRAME_melee2_09 280 +#define FRAME_melee2_10 281 +#define FRAME_melee2_11 282 +#define FRAME_melee2_12 283 +#define FRAME_melee2_13 284 +#define FRAME_melee2_14 285 +#define FRAME_melee2_15 286 +#define FRAME_melee2_16 287 +#define FRAME_melee2_17 288 +#define FRAME_melee2_18 289 +#define FRAME_melee3_01 290 +#define FRAME_melee3_02 291 +#define FRAME_melee3_03 292 +#define FRAME_melee3_04 293 +#define FRAME_melee3_05 294 +#define FRAME_melee3_06 295 +#define FRAME_melee3_07 296 +#define FRAME_melee3_08 297 +#define FRAME_melee3_09 298 +#define FRAME_melee3_10 299 +#define FRAME_melee3_11 300 +#define FRAME_melee3_12 301 +#define FRAME_melee3_13 302 +#define FRAME_melee3_14 303 +#define FRAME_melee3_15 304 +#define FRAME_melee3_16 305 +#define FRAME_melee3_17 306 +#define FRAME_melee3_18 307 +#define FRAME_melee3_19 308 +#define FRAME_melee4_01 309 +#define FRAME_melee4_02 310 +#define FRAME_melee4_03 311 +#define FRAME_melee4_04 312 +#define FRAME_melee4_05 313 +#define FRAME_melee4_06 314 +#define FRAME_melee4_07 315 +#define FRAME_melee4_08 316 +#define FRAME_melee5_01 317 +#define FRAME_melee5_02 318 +#define FRAME_melee5_03 319 +#define FRAME_melee5_04 320 +#define FRAME_melee5_05 321 +#define FRAME_melee5_06 322 +#define FRAME_melee5_07 323 +#define FRAME_melee5_08 324 +#define FRAME_melee5_09 325 +#define FRAME_melee5_10 326 +#define FRAME_melee5_11 327 +#define FRAME_melee5_12 328 +#define FRAME_melee5_13 329 +#define FRAME_melee6_01 330 +#define FRAME_melee6_02 331 +#define FRAME_melee6_03 332 +#define FRAME_melee6_04 333 +#define FRAME_melee6_05 334 +#define FRAME_melee6_06 335 +#define FRAME_melee6_07 336 +#define FRAME_melee6_08 337 +#define FRAME_melee6_09 338 +#define FRAME_melee_amb1_01 339 +#define FRAME_melee_amb1_02 340 +#define FRAME_melee_amb1_03 341 +#define FRAME_melee_amb1_04 342 +#define FRAME_melee_amb1_05 343 +#define FRAME_melee_amb1_06 344 +#define FRAME_melee_amb1_07 345 +#define FRAME_melee_amb1_08 346 +#define FRAME_melee_amb1_09 347 +#define FRAME_melee_amb1_10 348 +#define FRAME_melee_amb1_11 349 +#define FRAME_melee_amb1_12 350 +#define FRAME_melee_amb1_13 351 +#define FRAME_melee_amb1_14 352 +#define FRAME_melee_amb1_15 353 +#define FRAME_melee_amb1_16 354 +#define FRAME_melee_amb1_17 355 +#define FRAME_low_melee1_01 356 +#define FRAME_low_melee1_02 357 +#define FRAME_low_melee1_03 358 +#define FRAME_low_melee1_04 359 +#define FRAME_low_melee1_05 360 +#define FRAME_low_melee1_06 361 +#define FRAME_low_melee1_07 362 +#define FRAME_low_melee1_08 363 +#define FRAME_low_melee1_09 364 +#define FRAME_low_melee2_01 365 +#define FRAME_low_melee2_02 366 +#define FRAME_low_melee2_03 367 +#define FRAME_low_melee2_04 368 +#define FRAME_low_melee2_05 369 +#define FRAME_low_melee2_06 370 +#define FRAME_low_melee3_01 371 +#define FRAME_low_melee3_02 372 +#define FRAME_low_melee3_03 373 +#define FRAME_low_melee3_04 374 +#define FRAME_low_melee3_05 375 +#define FRAME_low_melee3_06 376 +#define FRAME_low_melee4_01 377 +#define FRAME_low_melee4_02 378 +#define FRAME_low_melee4_03 379 +#define FRAME_low_melee4_04 380 +#define FRAME_low_melee4_05 381 +#define FRAME_low_melee4_06 382 +#define FRAME_low_melee4_07 383 +#define FRAME_low_melee4_08 384 +#define FRAME_low_melee5_01 385 +#define FRAME_low_melee5_02 386 +#define FRAME_low_melee5_03 387 +#define FRAME_low_melee5_04 388 +#define FRAME_low_melee5_05 389 +#define FRAME_low_melee5_06 390 +#define FRAME_low_melee5_07 391 +#define FRAME_low_melee5_08 392 +#define FRAME_low_melee5_09 393 +#define FRAME_low_melee5_10 394 +#define FRAME_low_melee5_11 395 +#define FRAME_low_melee5_12 396 +#define FRAME_low_melee5_13 397 +#define FRAME_low_melee5_14 398 +#define FRAME_low_melee5_15 399 +#define FRAME_lw_melee_a_01 400 +#define FRAME_lw_melee_a_02 401 +#define FRAME_lw_melee_a_03 402 +#define FRAME_lw_melee_a_04 403 +#define FRAME_lw_melee_a_05 404 +#define FRAME_lw_melee_a_06 405 +#define FRAME_lw_melee_a_07 406 +#define FRAME_lw_melee_a_08 407 +#define FRAME_lw_melee_a_09 408 +#define FRAME_lw_melee_a_10 409 +#define FRAME_lw_melee_a_11 410 +#define FRAME_lw_melee_a_12 411 +#define FRAME_lw_melee_a_13 412 +#define FRAME_lw_melee_a_14 413 +#define FRAME_jump_01 414 +#define FRAME_jump_02 415 +#define FRAME_jump_03 416 +#define FRAME_jump_04 417 +#define FRAME_jump_05 418 +#define FRAME_jump_06 419 +#define FRAME_jump_07 420 +#define FRAME_jump_08 421 +#define FRAME_jump_09 422 +#define FRAME_jump_10 423 +#define FRAME_jump_11 424 +#define FRAME_jump_12 425 +#define FRAME_jump_13 426 +#define FRAME_jump_14 427 +#define FRAME_jump_15 428 +#define FRAME_jump_16 429 +#define FRAME_jump_17 430 +#define FRAME_pstl_jump_01 431 +#define FRAME_pstl_jump_02 432 +#define FRAME_pstl_jump_03 433 +#define FRAME_pstl_jump_04 434 +#define FRAME_pstl_jump_05 435 +#define FRAME_pstl_jump_06 436 +#define FRAME_pstl_jump_07 437 +#define FRAME_pstl_jump_08 438 +#define FRAME_pstl_jump_09 439 +#define FRAME_pstl_jump_10 440 +#define FRAME_pstl_jump_11 441 +#define FRAME_pstl_jump_12 442 +#define FRAME_pstl_jump_13 443 +#define FRAME_pstl_jump_14 444 +#define FRAME_pstl_jump_15 445 +#define FRAME_pain_Rarm_01 446 +#define FRAME_pain_Rarm_02 447 +#define FRAME_pain_Rarm_03 448 +#define FRAME_pain_Rarm_04 449 +#define FRAME_pain_Rarm_05 450 +#define FRAME_pain_Rarm_06 451 +#define FRAME_pain_Larm_01 452 +#define FRAME_pain_Larm_02 453 +#define FRAME_pain_Larm_03 454 +#define FRAME_pain_Larm_04 455 +#define FRAME_pain_Larm_05 456 +#define FRAME_pain_Larm_06 457 +#define FRAME_pain_Larm_07 458 +#define FRAME_pain_Larm_08 459 +#define FRAME_pain_Larm_09 460 +#define FRAME_pain_chst_01 461 +#define FRAME_pain_chst_02 462 +#define FRAME_pain_chst_03 463 +#define FRAME_pain_chst_04 464 +#define FRAME_pain_chst_05 465 +#define FRAME_pain_chst_06 466 +#define FRAME_pain_chst_07 467 +#define FRAME_pain_chst_08 468 +#define FRAME_pain_chst_09 469 +#define FRAME_pain_head_01 470 +#define FRAME_pain_head_02 471 +#define FRAME_pain_head_03 472 +#define FRAME_pain_head_04 473 +#define FRAME_pain_head_05 474 +#define FRAME_pain_head_06 475 +#define FRAME_pain_head_07 476 +#define FRAME_pain_head_08 477 +#define FRAME_pain_head_09 478 +#define FRAME_pain_Rleg_01 479 +#define FRAME_pain_Rleg_02 480 +#define FRAME_pain_Rleg_03 481 +#define FRAME_pain_Rleg_04 482 +#define FRAME_pain_Rleg_05 483 +#define FRAME_pain_Rleg_06 484 +#define FRAME_pain_Rleg_07 485 +#define FRAME_pain_Rleg_08 486 +#define FRAME_pain_Rleg_09 487 +#define FRAME_pain_Rleg_10 488 +#define FRAME_pain_Rleg_11 489 +#define FRAME_pain_Lleg_01 490 +#define FRAME_pain_Lleg_02 491 +#define FRAME_pain_Lleg_03 492 +#define FRAME_pain_Lleg_04 493 +#define FRAME_pain_Lleg_05 494 +#define FRAME_pain_Lleg_06 495 +#define FRAME_pain_Lleg_07 496 +#define FRAME_pain_Lleg_08 497 +#define FRAME_pain_Lleg_09 498 +#define FRAME_pain_crch_01 499 +#define FRAME_pain_crch_02 500 +#define FRAME_pain_crch_03 501 +#define FRAME_pain_crch_04 502 +#define FRAME_pain_crch_05 503 +#define FRAME_pain_crch_06 504 +#define FRAME_pain_crch_07 505 +#define FRAME_pain_crch_08 506 +#define FRAME_pain_crch_09 507 +#define FRAME_pain_butt_01 508 +#define FRAME_pain_butt_02 509 +#define FRAME_pain_butt_03 510 +#define FRAME_pain_butt_04 511 +#define FRAME_pain_butt_05 512 +#define FRAME_pain_butt_06 513 +#define FRAME_pain_butt_07 514 +#define FRAME_pain_butt_08 515 +#define FRAME_nw_pain_Rarm_01 516 +#define FRAME_nw_pain_Rarm_02 517 +#define FRAME_nw_pain_Rarm_03 518 +#define FRAME_nw_pain_Rarm_04 519 +#define FRAME_nw_pain_Rarm_05 520 +#define FRAME_nw_pain_Rarm_06 521 +#define FRAME_nw_pain_Rarm_07 522 +#define FRAME_nw_pain_Rarm_08 523 +#define FRAME_nw_pain_Rarm_09 524 +#define FRAME_nw_pain_Larm_01 525 +#define FRAME_nw_pain_Larm_02 526 +#define FRAME_nw_pain_Larm_03 527 +#define FRAME_nw_pain_Larm_04 528 +#define FRAME_nw_pain_Larm_05 529 +#define FRAME_nw_pain_Larm_06 530 +#define FRAME_nw_pain_Larm_07 531 +#define FRAME_nw_pain_Larm_08 532 +#define FRAME_nw_pain_Larm_09 533 +#define FRAME_nw_pain_Larm_10 534 +#define FRAME_nw_pain_chst_01 535 +#define FRAME_nw_pain_chst_02 536 +#define FRAME_nw_pain_chst_03 537 +#define FRAME_nw_pain_chst_04 538 +#define FRAME_nw_pain_chst_05 539 +#define FRAME_nw_pain_chst_06 540 +#define FRAME_nw_pain_chst_07 541 +#define FRAME_nw_pain_chst_08 542 +#define FRAME_nw_pain_chst_09 543 +#define FRAME_nw_pain_crch_01 544 +#define FRAME_nw_pain_crch_02 545 +#define FRAME_nw_pain_crch_03 546 +#define FRAME_nw_pain_crch_04 547 +#define FRAME_nw_pain_crch_05 548 +#define FRAME_nw_pain_crch_06 549 +#define FRAME_nw_pain_crch_07 550 +#define FRAME_nw_pain_crch_08 551 +#define FRAME_nw_pain_crch_09 552 +#define FRAME_nw_pain_butt_01 553 +#define FRAME_nw_pain_butt_02 554 +#define FRAME_nw_pain_butt_03 555 +#define FRAME_nw_pain_butt_04 556 +#define FRAME_nw_pain_butt_05 557 +#define FRAME_nw_pain_butt_06 558 +#define FRAME_nw_pain_butt_07 559 +#define FRAME_nw_pain_butt_08 560 +#define FRAME_nw_pain_butt_09 561 +#define FRAME_nw_pain_head_01 562 +#define FRAME_nw_pain_head_02 563 +#define FRAME_nw_pain_head_03 564 +#define FRAME_nw_pain_head_04 565 +#define FRAME_nw_pain_head_05 566 +#define FRAME_nw_pain_head_06 567 +#define FRAME_nw_pain_head_07 568 +#define FRAME_nw_pain_head_08 569 +#define FRAME_nw_pain_Rleg_01 570 +#define FRAME_nw_pain_Rleg_02 571 +#define FRAME_nw_pain_Rleg_03 572 +#define FRAME_nw_pain_Rleg_04 573 +#define FRAME_nw_pain_Rleg_05 574 +#define FRAME_nw_pain_Rleg_06 575 +#define FRAME_nw_pain_Rleg_07 576 +#define FRAME_nw_pain_Rleg_08 577 +#define FRAME_nw_pain_Rleg_09 578 +#define FRAME_nw_pain_Lleg_01 579 +#define FRAME_nw_pain_Lleg_02 580 +#define FRAME_nw_pain_Lleg_03 581 +#define FRAME_nw_pain_Lleg_04 582 +#define FRAME_nw_pain_Lleg_05 583 +#define FRAME_nw_pain_Lleg_06 584 +#define FRAME_nw_pain_Lleg_07 585 +#define FRAME_nw_pain_Lleg_08 586 +#define FRAME_nw_pain_Lleg_09 587 +#define FRAME_nw_pain_Lleg_10 588 +#define FRAME_nw_pain_Lleg_11 589 +#define FRAME_death1_01 590 +#define FRAME_death1_02 591 +#define FRAME_death1_03 592 +#define FRAME_death1_04 593 +#define FRAME_death1_05 594 +#define FRAME_death1_06 595 +#define FRAME_death1_07 596 +#define FRAME_death1_08 597 +#define FRAME_death1_09 598 +#define FRAME_death1_10 599 +#define FRAME_death1_11 600 +#define FRAME_death1_12 601 +#define FRAME_death1_13 602 +#define FRAME_death1_14 603 +#define FRAME_death1_15 604 +#define FRAME_death1_16 605 +#define FRAME_death1_17 606 +#define FRAME_death1_18 607 +#define FRAME_death1_19 608 +#define FRAME_death1_20 609 +#define FRAME_death1_21 610 +#define FRAME_death1_22 611 +#define FRAME_death2_01 612 +#define FRAME_death2_02 613 +#define FRAME_death2_03 614 +#define FRAME_death2_04 615 +#define FRAME_death2_05 616 +#define FRAME_death2_06 617 +#define FRAME_death2_07 618 +#define FRAME_death2_08 619 +#define FRAME_death2_09 620 +#define FRAME_death2_10 621 +#define FRAME_death2_11 622 +#define FRAME_death2_12 623 +#define FRAME_death2_13 624 +#define FRAME_death2_14 625 +#define FRAME_death3_01 626 +#define FRAME_death3_02 627 +#define FRAME_death3_03 628 +#define FRAME_death3_04 629 +#define FRAME_death3_05 630 +#define FRAME_death3_06 631 +#define FRAME_death3_07 632 +#define FRAME_death3_08 633 +#define FRAME_death3_09 634 +#define FRAME_death3_10 635 +#define FRAME_death3_11 636 +#define FRAME_death3_12 637 +#define FRAME_death3_13 638 +#define FRAME_death3_14 639 +#define FRAME_death3_15 640 +#define FRAME_death3_16 641 +#define FRAME_death3_17 642 +#define FRAME_death3_18 643 +#define FRAME_death3_19 644 +#define FRAME_death4_01 645 +#define FRAME_death4_02 646 +#define FRAME_death4_03 647 +#define FRAME_death4_04 648 +#define FRAME_death4_05 649 +#define FRAME_death4_06 650 +#define FRAME_death4_07 651 +#define FRAME_death4_08 652 +#define FRAME_death4_09 653 +#define FRAME_death4_10 654 +#define FRAME_death4_11 655 +#define FRAME_death4_12 656 +#define FRAME_death4_13 657 +#define FRAME_death4_14 658 +#define FRAME_death4_15 659 +#define FRAME_death4_16 660 +#define FRAME_death4_17 661 +#define FRAME_death5_01 662 +#define FRAME_death5_02 663 +#define FRAME_death5_03 664 +#define FRAME_death5_04 665 +#define FRAME_death5_05 666 +#define FRAME_death5_06 667 +#define FRAME_death5_07 668 +#define FRAME_death5_08 669 +#define FRAME_death5_09 670 +#define FRAME_death5_10 671 +#define FRAME_death5_11 672 +#define FRAME_death5_12 673 +#define FRAME_death5_13 674 +#define FRAME_death5_14 675 +#define FRAME_death5_15 676 +#define FRAME_death5_16 677 +#define FRAME_death5_17 678 +#define FRAME_death5_18 679 +#define FRAME_death5_19 680 +#define FRAME_death6_01 681 +#define FRAME_death6_02 682 +#define FRAME_death6_03 683 +#define FRAME_death6_04 684 +#define FRAME_death6_05 685 +#define FRAME_death6_06 686 +#define FRAME_death6_07 687 +#define FRAME_death6_08 688 +#define FRAME_death6_09 689 +#define FRAME_death6_10 690 +#define FRAME_death6_11 691 +#define FRAME_death6_12 692 +#define FRAME_death6_13 693 +#define FRAME_death6_14 694 +#define FRAME_death6_15 695 +#define FRAME_death6_16 696 +#define FRAME_death6_17 697 +#define FRAME_death6_18 698 +#define FRAME_crch_knl_dn_01 699 +#define FRAME_crch_knl_dn_02 700 +#define FRAME_crch_knl_dn_03 701 +#define FRAME_crch_knl_dn_04 702 +#define FRAME_crch_knl_dn_05 703 +#define FRAME_crch_knl_dn_06 704 +#define FRAME_crch_knl_dn_07 705 +#define FRAME_crch_knl_dn_08 706 +#define FRAME_crch_knl_dn_09 707 +#define FRAME_crch_amb_sdt_01 708 +#define FRAME_crch_amb_sdt_02 709 +#define FRAME_crch_amb_sdt_03 710 +#define FRAME_crch_amb_sdt_04 711 +#define FRAME_crch_amb_sdt_05 712 +#define FRAME_crch_amb_sdt_06 713 +#define FRAME_crch_amb_sdt_07 714 +#define FRAME_crch_amb_sdt_08 715 +#define FRAME_crch_amb_sdt_09 716 +#define FRAME_crch_amb_sdt_10 717 +#define FRAME_crch_amb_sdt_11 718 +#define FRAME_crch_amb_sdt_12 719 +#define FRAME_crch_amb_sdt_13 720 +#define FRAME_crch_amb_sdt_14 721 +#define FRAME_crch_amb_sdt_15 722 +#define FRAME_crch_amb_sdt_16 723 +#define FRAME_crch_amb_sdt_17 724 +#define FRAME_crch_amb_sdt_18 725 +#define FRAME_crch_amb_sdt_19 726 +#define FRAME_crch_amb_sdt_20 727 +#define FRAME_crch_amb_sdt_21 728 +#define FRAME_crch_amb_sdt_22 729 +#define FRAME_crch_amb_sdt_23 730 +#define FRAME_crch_amb_sdt_24 731 +#define FRAME_crch_amb_sdt_25 732 +#define FRAME_crch_amb_sdt_26 733 +#define FRAME_crch_amb_sdt_27 734 +#define FRAME_crch_shoot_01 735 +#define FRAME_crch_shoot_02 736 +#define FRAME_crch_shoot_03 737 +#define FRAME_crch_shoot_04 738 +#define FRAME_crch_shoot_05 739 +#define FRAME_crch_shoot_06 740 +#define FRAME_crch_shoot_07 741 +#define FRAME_crch_shoot_08 742 +#define FRAME_crch_shoot_09 743 +#define FRAME_crouch_walk_01 744 +#define FRAME_crouch_walk_02 745 +#define FRAME_crouch_walk_03 746 +#define FRAME_crouch_walk_04 747 +#define FRAME_crouch_walk_05 748 +#define FRAME_crouch_walk_06 749 +#define FRAME_crouch_walk_07 750 +#define FRAME_crouch_walk_08 751 +#define FRAME_c_pain_Rarm_01 752 +#define FRAME_c_pain_Rarm_02 753 +#define FRAME_c_pain_Rarm_03 754 +#define FRAME_c_pain_Rarm_04 755 +#define FRAME_c_pain_Rarm_05 756 +#define FRAME_c_pain_Rarm_06 757 +#define FRAME_c_pain_Rarm_07 758 +#define FRAME_c_pain_Rarm_08 759 +#define FRAME_c_pain_Rarm_09 760 +#define FRAME_c_pain_Rarm_10 761 +#define FRAME_c_pain_Rarm_11 762 +#define FRAME_c_pain_Rarm_12 763 +#define FRAME_c_pain_Larm_01 764 +#define FRAME_c_pain_Larm_02 765 +#define FRAME_c_pain_Larm_03 766 +#define FRAME_c_pain_Larm_04 767 +#define FRAME_c_pain_Larm_05 768 +#define FRAME_c_pain_Larm_06 769 +#define FRAME_c_pain_Larm_07 770 +#define FRAME_c_pain_Larm_08 771 +#define FRAME_c_pain_Larm_09 772 +#define FRAME_c_pain_Larm_10 773 +#define FRAME_c_pain_Larm_11 774 +#define FRAME_c_pain_Larm_12 775 +#define FRAME_c_pain_Larm_13 776 +#define FRAME_c_pain_chst_01 777 +#define FRAME_c_pain_chst_02 778 +#define FRAME_c_pain_chst_03 779 +#define FRAME_c_pain_chst_04 780 +#define FRAME_c_pain_chst_05 781 +#define FRAME_c_pain_chst_06 782 +#define FRAME_c_pain_chst_07 783 +#define FRAME_c_pain_chst_08 784 +#define FRAME_c_pain_chst_09 785 +#define FRAME_c_pain_chst_10 786 +#define FRAME_c_pain_chst_11 787 +#define FRAME_c_pain_head_01 788 +#define FRAME_c_pain_head_02 789 +#define FRAME_c_pain_head_03 790 +#define FRAME_c_pain_head_04 791 +#define FRAME_c_pain_head_05 792 +#define FRAME_c_pain_head_06 793 +#define FRAME_c_pain_head_07 794 +#define FRAME_c_pain_head_08 795 +#define FRAME_c_pain_head_09 796 +#define FRAME_c_pain_head_10 797 +#define FRAME_c_pain_head_11 798 +#define FRAME_c_pain_head_12 799 +#define FRAME_c_pain_head_13 800 +#define FRAME_c_pain_head_14 801 +#define FRAME_c_pain_head_15 802 +#define FRAME_c_pain_head_16 803 +#define FRAME_evade_01 804 +#define FRAME_evade_02 805 +#define FRAME_evade_03 806 +#define FRAME_evade_04 807 +#define FRAME_evade_05 808 +#define FRAME_evade_06 809 +#define FRAME_evade_07 810 +#define FRAME_evade_08 811 +#define FRAME_evade_09 812 +#define FRAME_evade_10 813 +#define FRAME_evade_amb_01 814 +#define FRAME_evade_amb_02 815 +#define FRAME_evade_amb_03 816 +#define FRAME_evade_amb_04 817 +#define FRAME_evade_amb_05 818 +#define FRAME_evade_amb_06 819 +#define FRAME_evade_amb_07 820 +#define FRAME_evade_amb_08 821 +#define FRAME_evade_amb_09 822 +#define FRAME_evade_amb_10 823 +#define FRAME_evade_amb_11 824 +#define FRAME_evade_amb_12 825 +#define FRAME_lside_step_01 826 +#define FRAME_lside_step_02 827 +#define FRAME_lside_step_03 828 +#define FRAME_lside_step_04 829 +#define FRAME_lside_step_05 830 +#define FRAME_lside_step_06 831 +#define FRAME_lside_step_07 832 +#define FRAME_lside_step_08 833 +#define FRAME_lside_step_09 834 +#define FRAME_lside_step_10 835 +#define FRAME_rside_step_01 836 +#define FRAME_rside_step_02 837 +#define FRAME_rside_step_03 838 +#define FRAME_rside_step_04 839 +#define FRAME_rside_step_05 840 +#define FRAME_rside_step_06 841 +#define FRAME_rside_step_07 842 +#define FRAME_rside_step_08 843 +#define FRAME_rside_step_09 844 +#define FRAME_walk_guns_dn_01 845 +#define FRAME_walk_guns_dn_02 846 +#define FRAME_walk_guns_dn_03 847 +#define FRAME_walk_guns_dn_04 848 +#define FRAME_walk_guns_dn_05 849 +#define FRAME_walk_guns_dn_06 850 +#define FRAME_walk_guns_dn_07 851 +#define FRAME_walk_guns_dn_08 852 +#define FRAME_walk_guns_dn_09 853 +#define FRAME_walk_guns_dn_10 854 +#define FRAME_walk_shoot_01 855 +#define FRAME_walk_shoot_02 856 +#define FRAME_walk_shoot_03 857 +#define FRAME_walk_shoot_04 858 +#define FRAME_walk_shoot_05 859 +#define FRAME_walk_shoot_06 860 +#define FRAME_walk_shoot_07 861 +#define FRAME_walk_shoot_08 862 +#define FRAME_walk_shoot_09 863 +#define FRAME_walk_shoot_10 864 +#define FRAME_run_guns_dn_01 865 +#define FRAME_run_guns_dn_02 866 +#define FRAME_run_guns_dn_03 867 +#define FRAME_run_guns_dn_04 868 +#define FRAME_run_guns_dn_05 869 +#define FRAME_run_guns_dn_06 870 +#define FRAME_run_shoot_01 871 +#define FRAME_run_shoot_02 872 +#define FRAME_run_shoot_03 873 +#define FRAME_run_shoot_04 874 +#define FRAME_run_shoot_05 875 +#define FRAME_run_shoot_06 876 +#define FRAME_run_on_fire_01 877 +#define FRAME_run_on_fire_02 878 +#define FRAME_run_on_fire_03 879 +#define FRAME_run_on_fire_04 880 +#define FRAME_run_on_fire_05 881 +#define FRAME_run_on_fire_06 882 +#define FRAME_run_melee_01 883 +#define FRAME_run_melee_02 884 +#define FRAME_run_melee_03 885 +#define FRAME_run_melee_04 886 +#define FRAME_run_melee_05 887 +#define FRAME_run_melee_06 888 +#define FRAME_lside_run_01 889 +#define FRAME_lside_run_02 890 +#define FRAME_lside_run_03 891 +#define FRAME_lside_run_04 892 +#define FRAME_lside_run_05 893 +#define FRAME_lside_run_06 894 +#define FRAME_rside_run_01 895 +#define FRAME_rside_run_02 896 +#define FRAME_rside_run_03 897 +#define FRAME_rside_run_04 898 +#define FRAME_rside_run_05 899 +#define FRAME_rside_run_06 900 +#define FRAME_crch_death1_01 901 +#define FRAME_crch_death1_02 902 +#define FRAME_crch_death1_03 903 +#define FRAME_crch_death1_04 904 +#define FRAME_crch_death1_05 905 +#define FRAME_crch_death1_06 906 +#define FRAME_crch_death1_07 907 +#define FRAME_crch_death1_08 908 +#define FRAME_crch_death1_09 909 +#define FRAME_crch_death1_10 910 +#define FRAME_crch_death1_11 911 +#define FRAME_crch_death1_12 912 +#define FRAME_crch_death1_13 913 +#define FRAME_crch_death1_14 914 +#define FRAME_crch_death1_15 915 +#define FRAME_crch_death1_16 916 +#define FRAME_crch_death1_17 917 +#define FRAME_crch_death1_18 918 +#define FRAME_crch_death1_19 919 +#define FRAME_crch_death2_01 920 +#define FRAME_crch_death2_02 921 +#define FRAME_crch_death2_03 922 +#define FRAME_crch_death2_04 923 +#define FRAME_crch_death2_05 924 +#define FRAME_crch_death2_06 925 +#define FRAME_crch_death2_07 926 +#define FRAME_crch_death2_08 927 +#define FRAME_crch_death2_09 928 +#define FRAME_crch_death2_10 929 +#define FRAME_crch_death2_11 930 +#define FRAME_crch_death3_01 931 +#define FRAME_crch_death3_02 932 +#define FRAME_crch_death3_03 933 +#define FRAME_crch_death3_04 934 +#define FRAME_crch_death3_05 935 +#define FRAME_crch_death3_06 936 +#define FRAME_crch_death3_07 937 +#define FRAME_crch_death3_08 938 +#define FRAME_crch_death3_09 939 +#define FRAME_crch_death3_10 940 +#define FRAME_crch_death3_11 941 +#define FRAME_crch_death3_12 942 +#define FRAME_crch_death3_13 943 +#define FRAME_crch_death3_14 944 +#define FRAME_crch_death3_15 945 +#define FRAME_crch_death3_16 946 +#define FRAME_crch_death3_17 947 +#define FRAME_crch_death3_18 948 +#define FRAME_clmb_loop_01 949 +#define FRAME_clmb_loop_02 950 +#define FRAME_clmb_loop_03 951 +#define FRAME_clmb_loop_04 952 +#define FRAME_clmb_loop_05 953 +#define FRAME_clmb_loop_06 954 +#define FRAME_clmb_loop_07 955 +#define FRAME_clmb_loop_08 956 +#define FRAME_clmb_loop_09 957 +#define FRAME_clmb_loop_10 958 +#define FRAME_clmb_over_01 959 +#define FRAME_clmb_over_02 960 +#define FRAME_clmb_over_03 961 +#define FRAME_clmb_over_04 962 +#define FRAME_clmb_over_05 963 +#define FRAME_clmb_over_06 964 +#define FRAME_clmb_over_07 965 +#define FRAME_clmb_over_08 966 +#define FRAME_clmb_over_09 967 +#define FRAME_clmb_over_10 968 +#define FRAME_clmb_over_11 969 +#define FRAME_clmb_over_12 970 + +#define MODEL_SCALE 1.000000 diff --git a/gamesrc/AI_THUG.C b/gamesrc/AI_THUG.C new file mode 100644 index 0000000..368e84d --- /dev/null +++ b/gamesrc/AI_THUG.C @@ -0,0 +1,1414 @@ + +#include "g_local.h" +#include "ai_thug.h" + +#include "voice_punk.h" + +void thug_end_kneel_attack( edict_t *self ); +void thug_talk( edict_t *self ); +void thug_end_stand( edict_t *self ); +void thug_kneel_shoot( edict_t *self ); +void thug_talk_think( edict_t *self ); + +void thug_firegun( edict_t *self, vec3_t ofs ); +void thug_right_fire( edict_t *self ); +void thug_left_fire( edict_t *self ); +void thug_firegun_right( edict_t *self ); +void thug_firegun_left( edict_t *self ); + +void thug_show_guns( edict_t *self ); +void thug_climb_loop( edict_t *self ); +void thug_melee( edict_t *self ); + +void thug_evade_amb( edict_t *self ); +void thug_evade_adjust( edict_t *self ); +void thug_evade_checkadjust( edict_t *self ); + +void thug_catch_fire( edict_t *self, edict_t *other ); + +// function that will bail out of the melee attack +// if thug doesnt stand a chance of hitting his enemy +void thug_melee_bail (edict_t *self); + +#define THUG_MELEE 64 // spawnflag + +// ========================================================================= + +#include "ai_thug_tables.h" + +// ========================================================================= + +void thug_backoff( edict_t *self, edict_t *other ) +{ + Voice_Random( self, other, m_backoff, NUM_BACKOFF ); +} + +void thug_catch_fire( edict_t *self, edict_t *other ) +{ + self->enemy = NULL; // stop attacking + self->cast_info.currentmove = &thug_move_run_on_fire; +} + +void thug_evade_amb( edict_t *self ) +{ + self->cast_info.currentmove = &thug_move_evade_amb; +} + +void thug_evade_checkadjust( edict_t *self ) +{ + if (self->enemy && !directly_infront(self, self->enemy )) + self->cast_info.currentmove = &thug_move_evade_adjust; + else if (self->cast_info.avoid_ent && !directly_infront(self, self->cast_info.avoid_ent )) + self->cast_info.currentmove = &thug_move_evade_adjust; +} + +void thug_evade_adjust (edict_t *self ) +{ + vec3_t vec; + edict_t *other; + + if (self->enemy) + other = self->enemy; + else if (self->cast_info.avoid_ent) + other = self->cast_info.avoid_ent; + else + return; + + VectorSubtract( other->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + self->ideal_yaw = vectoyaw( vec ); +} + +void thug_end_kneel_attack( edict_t *self ) +{ + AI_EndAttack(self); + + if (self->cast_info.currentmove == self->cast_info.move_stand) + self->cast_info.currentmove = &thug_move_kneel_up; +} + +void thug_talk_think( edict_t *self ) +{ + AI_TalkThink( self, true ); +} + +void thug_talk( edict_t *self ) +{ + int rnd; + + // only make talking gesture if we've recently said something + if (!(self->cast_info.aiflags & AI_REPEAT_TALK_JESTURE) && self->last_talk_time < (level.time - 1.0)) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + if (self->cast_info.currentmove != self->cast_info.move_stand) + return; + + rnd = rand() % 5; + + if (rnd < 1) + self->cast_info.currentmove = &thug_move_talk1; + else if (rnd < 2) + self->cast_info.currentmove = &thug_move_handwave; + else if (rnd < 3) + self->cast_info.currentmove = &thug_move_whoa; + else //if (rnd < 4) + self->cast_info.currentmove = &thug_move_crch_grab; +// else if (rnd < 5) +// self->cast_info.currentmove = &thug_move_nod_yes; +// else if (rnd < 6) +// self->cast_info.currentmove = &thug_move_up_yours; +// else //if (rnd < 6) +// self->cast_info.currentmove = &thug_move_nod_no; +// else +// self->cast_info.currentmove = &thug_move_cigar; +} + +void thug_avoid ( edict_t *self, edict_t *other, qboolean face ) +{ + vec3_t vec; + + if (self->health <= 0) + return; + + if (!self->groundentity) + return; + + self->cast_info.last_avoid = level.time; + + if (face) + { // turn to face them + VectorSubtract( other->s.origin, self->s.origin, vec ); + self->cast_info.avoid_ent = other; + } + else + { // turn to face away from them + VectorSubtract( self->s.origin, other->s.origin, vec ); + self->cast_info.avoid_ent = NULL; + } + VectorNormalize( vec ); + + self->ideal_yaw = vectoyaw( vec ); + + if (self->maxs[2] > DUCKING_MAX_Z) + { + +//#if 0 // Ridah, these don't look right, and translations are incorrect + if (self->cast_info.aiflags & AI_NOWALK_FACE) + { +// if (face) + { + int side_result; + + side_result = AI_SideTrace( self, 48, 90, SIDE_RANDOM ); + + if (side_result == AI_SideTrace( self, 48, 90 + (self->ideal_yaw - self->s.angles[YAW]), side_result )) + { + if (side_result < 0) + self->cast_info.currentmove = &thug_move_lside_step; + else + self->cast_info.currentmove = &thug_move_rside_step; + + return; + } + + // if no move set, just turn to face + M_ChangeYaw( self ); + + return; + } + } +//#endif + + if ((VectorDistance( self->s.origin, other->s.origin ) > 72) || !face) + self->cast_info.currentmove = &thug_move_avoid_walk; + else + self->cast_info.currentmove = &thug_move_avoid_reverse_walk; + + } + else + { + self->cast_info.currentmove = &thug_move_crouch_avoid_walk; + } + +} + +void thug_end_stand( edict_t *self ) +{ + if (self->cast_info.move_stand_evade && (self->last_stand_evade > (level.time - 3))) + return; + + if (self->cast_info.currentmove == self->cast_info.move_crstand) + return; + + +// if ( ((!self->cast_group) && (random() < 0.8)) +// || ((self->cast_group) && (random() < 0.3))) + { // stand normally + + self->cast_info.currentmove = self->cast_info.move_stand; + +// return; + } + + AI_CheckTalk(self); +} + +void thug_show_guns( edict_t *self ) +{ + self->s.model_parts[PART_GUN].invisible_objects = 0; + self->s.model_parts[PART_GUN2].invisible_objects = 0; +} + +void thug_kneel_shoot( edict_t *self ) +{ + self->cast_info.currentmove = &thug_move_knl_shoot; +} + +void thug_long_attack( edict_t *self ) +{ + // keep running, and try to fire if possible + + if (self->maxs[2] < self->cast_info.standing_max_z) + return; + + if (self->s.model_parts[PART_GUN].invisible_objects) + { // pull guns out + self->cast_info.currentmove = &thug_move_pull_guns; + return; + } + + self->cast_info.currentmove = &thug_move_run_shoot; +} + +// thug_attack: +// returns TRUE if starting an attack +qboolean thug_attack( edict_t *self ) +{ + vec3_t vec; + float dist; + + // this is where we would start some of the fancy side-ways or rolling attacks + + if (self->maxs[2] < self->cast_info.standing_max_z) + { + if ((self->cast_info.aiflags & AI_DUCKATTACK) && (rand()%20 < 1)) + { // stop duck attacking + self->cast_info.aiflags &= ~AI_DUCKATTACK; + self->maxs[2] = self->cast_info.standing_max_z; + if (ValidBoxAtLoc( self->s.origin, self->mins, self->maxs, self, MASK_PLAYERSOLID )) + { + self->cast_info.currentmove = self->cast_info.move_stand_up; + self->s.frame = self->cast_info.move_stand_up->firstframe; + return true; + } + else + { + self->maxs[2] = DUCKING_MAX_Z; + } + } + + if (self->cast_info.aiflags & AI_MELEE) + { // try to stand at all costs + self->maxs[2] = self->cast_info.standing_max_z; + + if (ValidBoxAtLoc( self->s.origin, self->mins, self->maxs, self, MASK_PLAYERSOLID )) + goto standing; + + self->maxs[2] = DUCKING_MAX_Z; + // gi.dprintf( "ANIM TODO: crouch melee attack\n" ); + self->cast_info.currentmove = &thug_move_low_melee1; + return true; + } + + // HACK TO SHOW THE GUNS + self->s.model_parts[PART_GUN].invisible_objects = 0; + self->s.model_parts[PART_GUN2].invisible_objects = 0; + + self->cast_info.currentmove = &thug_move_crch_shoot; + return true; + } + else if (!(self->cast_info.aiflags & AI_MELEE) && (rand()%20 < 1)) // duck attack + { + + self->viewheight = -4; + + if (AI_ClearSight( self, self->enemy, false )) + { +//gi.dprintf("5\n"); + self->cast_info.aiflags |= AI_DUCKATTACK; + self->maxs[2] = DUCKING_MAX_Z; + self->cast_info.currentmove = self->cast_info.move_crouch_down; + + return true; + } + } + +standing: + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + dist = VectorNormalize( vec ); + + if (self->cast_info.aiflags & AI_MELEE) + { + qboolean attack=false; + + if (dist < 64) + { + attack = true; + } + else // are they running towards us? + { + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + + if ((VectorLength(vec) < 200) && (DotProduct(vec, self->enemy->velocity) < 0)) + { + attack = true; + } + } + + if (attack) + { + int rnd; + + self->ideal_yaw = vectoyaw(vec); + + M_ChangeYaw( self ); + + // JOSEPH 12-MAR-99 + Voice_Random( self, self->enemy, grunting, 5); + // END JOSEPH + + if (self->maxs[2] > self->enemy->maxs[2]) + { + self->cast_info.currentmove = &thug_move_low_melee1; + } + else + { + rnd = rand()%7; + + switch (rnd) + { + case 0 : + self->cast_info.currentmove = &thug_move_melee1; + break; + case 1 : + self->cast_info.currentmove = &thug_move_melee2; + break; + case 2 : + self->cast_info.currentmove = &thug_move_melee3; + break; + case 3 : + self->cast_info.currentmove = &thug_move_melee4; + break; + default : + self->cast_info.currentmove = &thug_move_melee5; + break; + } + } + + if (self->maxs[2] > self->enemy->maxs[2] || self->s.origin[2] > self->enemy->s.origin[2]) + self->cast_info.currentmove = &thug_move_low_melee1; + + self->cast_info.aiflags &=~ AI_RUSH_THE_PLAYER; + return true; + } + else if (dist < 128) + { + self->ideal_yaw = vectoyaw(vec); + M_ChangeYaw( self ); + + self->cast_info.currentmove = &thug_move_run_melee; + return true; + } + else if (dist < 400) + self->cast_info.aiflags |= AI_RUSH_THE_PLAYER; + + return false; + } + + if (self->s.model_parts[PART_GUN].invisible_objects) + { // pull guns out + self->cast_info.currentmove = &thug_move_pull_guns; + return true; + } + + if (self->cast_info.currentmove == &thug_move_knl_shoot) + { + // HACK TO SHOW GUN + self->s.model_parts[PART_GUN].invisible_objects = 0; + self->s.model_parts[PART_GUN2].invisible_objects = 0; + self->cast_info.currentmove = &thug_move_knl_shoot; + + return true; + } + + + // Special case: enemy has flamethrower, run backwards, keep firing + if ( (dist < 384) // they're close + && (self->enemy->client) + && (self->enemy->client->pers.weapon) + && (stricmp(self->enemy->client->pers.weapon->classname, "weapon_flamethrower") == 0)) + { + int side_result; + + // see if we can go backwards + if (side_result = AI_SideTrace( self, -64, 0, 1 )) + { + self->cast_info.currentmove = &thug_move_reverse_run_shoot; + return true; + } + + } + + // if just popped out from a corner, just stand here + if (self->dont_takecover_time > (level.time - 2)) + { + goto stand_shoot; + } + + if ((skill->value > random()*2) && (self->cast_info.last_side_attack_time < (level.time - 1)) && (dist > 128)) + { + int side_result, side_result2; + + side_result = AI_SideTrace( self, 64, 90, -self->cast_info.last_side_attack ); + + if (side_result) + { + side_result2 = AI_SideTrace( self, 96, 90, side_result ); + + if (side_result2 == side_result) + { + if (side_result < 0) + self->cast_info.currentmove = &thug_move_lside_run; + else + self->cast_info.currentmove = &thug_move_rside_run; + + self->ideal_yaw = vectoyaw(vec) + side_result * 90; + + M_ChangeYaw( self ); + + self->cast_info.last_side_attack = side_result; + self->cast_info.last_side_attack_time = level.time; + + return true; + } + } + + } + + if ( (self->cast_info.currentmove != &thug_move_shoot) + && (dist > 512) + && (random() < 0.5) + && (directly_infront(self, self->enemy)) + && (self->s.model_parts[PART_GUN].invisible_objects)) // only kneel if we haven't drawn our guns yet + { + self->cast_info.currentmove = &thug_move_kneel; + + return true; + } + + + // walk shooting? +// Ridah, I don't like this animation +// if ((dist > 512) && directly_infront( self, self->enemy ) && AI_SideTrace(self, 32, 0, 1 ) ) +// { +// self->cast_info.currentmove = &thug_move_walk_shoot; +// return true; +// } +// else + if ((dist < 128) && AI_SideTrace(self, -32, 0, 1 ) ) + { + self->cast_info.currentmove = &thug_move_reverse_walk_shoot; + return true; + } + +stand_shoot: + + // normal attack + + self->ideal_yaw = vectoyaw(vec); + + M_ChangeYaw( self ); + + self->cast_info.currentmove = &thug_move_shoot; + + return true; +} + +void thug_climb_loop(edict_t *self) +{ + self->cast_info.currentmove = &thug_move_clmb_loop; +} + + +void thug_melee_bail (edict_t *self) +{ + vec3_t vec; + float dist; + + if (self->enemy) + { + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + dist = VectorNormalize( vec ); + + if (dist > 48) + { +// AI_EndAttack(self); + self->cast_info.currentmove = &thug_move_run_melee; + return; + } + } + +} + +void thug_melee( edict_t *self ) +{ + vec3_t start, offset; + vec3_t forward, right; + + float damage = 8; + + if (self->cast_info.currentmove == &thug_move_melee5) + damage *= 2; // double handed attack + + if (self->cast_info.currentmove == &thug_move_low_melee1) + damage *= 3; + + // yell at them? + if (self->last_talk_time < (level.time - TALK_FIGHTING_DELAY)) + { + // we can't play any "eat lead" type sounds, because we're not firing lead.. + + if (self->cast_group != 1) + Voice_Random( self, self->enemy, grunting, 5); + else + Voice_Random(self, self->enemy, friendlycombat, NUM_FRIENDLYCOMBAT ); + } + + // VectorSet(offset, 0, 8, self->viewheight - 4); + VectorSet (offset, 0, 8, 16); + + AngleVectors (self->s.angles, forward, right, NULL); + if (self->cast_info.currentmove == &thug_move_low_melee1) + forward[2] -= 0.5; + G_ProjectSource (self->s.origin, offset, forward, right, start); + if (self->cast_info.currentmove == &thug_move_low_melee1) + start[2] -= 8; + + // HACK, higher Moral does more damage + if (self->moral > 4) + damage *= 1.0 + (self->moral - 4)*0.25; + +// if (skill->value > 1.0) +// damage *= 1.0 + 0.5*(float)(skill->value - 1.0); + + fire_blackjack( self, start, forward, damage, 10, MOD_BLACKJACK ); + +} + +void thug_firegun( edict_t *self, vec3_t ofs ) +{ + vec3_t start; + vec3_t forward, right; + vec3_t target; + vec3_t aim; + vec3_t offset; + int flash_number; + float dist; + + if (self->cast_info.currentmove == &thug_move_knl_shoot) + { + if (!directly_infront( self, self->enemy )) + { + self->cast_info.currentmove = &thug_move_kneel_up; + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + + self->cast_info.aiflags |= AI_FACE_ATTACK; + } + else + { + if (self->noise_time < (level.time - 1)) + { // haven't fired for a while, prevent we reloaded + self->duration = 0; + } + + // check for reload + if ( (self->maxs[2] == self->cast_info.standing_max_z) + && !(self->cast_info.aiflags & AI_SIDE_ATTACK) + && (self->duration++ > 12)) + { + self->duration = 0; + self->cast_info.currentmove = &thug_move_reload; + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + } + + if (!AI_BeginAttack( self )) + { + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + + self->cast_info.aiflags &= ~AI_FACE_ATTACK; + + // yell at them? + if (self->last_talk_time < (level.time - TALK_FIGHTING_DELAY)) + { + if (self->cast_group != 1) + Voice_Random(self, self->enemy, fightsounds, NUM_FIGHTING); + else + Voice_Random(self, self->enemy, friendlycombat, NUM_FRIENDLYCOMBAT ); + } + + // fire the gun + + VectorSet(offset, 0 + ofs[0], 8 + ofs[1], self->viewheight-8 + ofs[2]); + + AngleVectors (self->s.angles, forward, right, NULL); + G_ProjectSource (self->s.origin, offset, forward, right, start); + + // project enemy back a bit and target there + VectorCopy (self->enemy->s.origin, target); + VectorMA (target, (-0.5 * (random()*0.8 + 0.2)) * (1.0 - (skill->value/4.0)), self->enemy->velocity, target); + target[2] += self->enemy->viewheight; + + flash_number = MZ2_GUNNER_MACHINEGUN_1; + + VectorSubtract (target, start, aim); + dist = VectorNormalize (aim); + + self->ideal_yaw = vectoyaw( aim ); + + if ( (dist < self->cast_info.max_attack_distance) + && ( ((random() < 0.1) && (self->cast_info.last_side_attack_time < (level.time - 2))) + || ( (!(self->cast_info.aiflags & AI_SIDE_ATTACK) || (self->cast_info.last_side_attack_time < (level.time - 2))) + && (directly_infront( self->enemy, self)) + && (self->enemy->client) + && (self->enemy->client->pers.weapon) + && (self->enemy->client->pers.weapon->ammo)))) // if we are directly infront of them, try to strafe + { + if (self->cast_info.aiflags & AI_SIDE_ATTACK) + self->cast_info.currentmove = &thug_move_shoot; + else + self->cast_info.attack( self ); + } + + cast_fire_bullet (self, start, aim, 3, 0, DEFAULT_BULLET_HSPREAD>>self->acc, DEFAULT_BULLET_VSPREAD>>self->acc, flash_number); + + gi.sound(self, CHAN_WEAPON, gi.soundindex("weapons/machinegun/machgf1b.wav"), 1, ATTN_NORM, 0); + +} + +void thug_right_fire( edict_t *self ) +{ + static vec3_t ofs = {4, 0, 0}; + thug_firegun( self, ofs ); +} + +void thug_left_fire( edict_t *self ) +{ + static vec3_t ofs = {-4, 0, 0}; + thug_firegun( self, ofs ); +} + +void thug_firegun_right( edict_t *self ) +{ +// vec3_t vec; +// float oldyaw; + static vec3_t ofs = {0,0,0}; + + if (!self->enemy) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + if (self->cast_info.aiflags & AI_TURN_BLOCKED) + { // abort the side run + self->cast_info.aiflags &= ~AI_TURN_BLOCKED; + AI_EndAttack(self); + return; + } + + // if the path ahead is not clear, abort + if (!AI_SideTrace( self, 128, 90, 1 )) + { + AI_EndAttack(self); + return; + } + +/* + oldyaw = self->s.angles[YAW]; + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + + self->s.angles[YAW] = vectoyaw( vec ); +*/ + self->cast_info.aiflags |= AI_SIDE_ATTACK; + thug_firegun(self, ofs); + self->cast_info.aiflags &= ~AI_SIDE_ATTACK; +/* + // keep running to the side + self->ideal_yaw = self->s.angles[YAW] + 90; + + self->s.angles[YAW] = oldyaw; +*/ +} + +void thug_firegun_left( edict_t *self ) +{ +// vec3_t vec; +// float oldyaw; + static vec3_t ofs = {0,0,0}; + + if (!self->enemy) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + if (self->cast_info.aiflags & AI_TURN_BLOCKED) + { // abort the side run + self->cast_info.aiflags &= ~AI_TURN_BLOCKED; + AI_EndAttack(self); + return; + } + + // if the path ahead is not clear, abort + if (!AI_SideTrace( self, 128, -90, 1 )) + { + AI_EndAttack(self); + return; + } + +/* + oldyaw = self->s.angles[YAW]; + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + + self->s.angles[YAW] = vectoyaw( vec ); +*/ + self->cast_info.aiflags |= AI_SIDE_ATTACK; + thug_firegun(self, ofs); + self->cast_info.aiflags &= ~AI_SIDE_ATTACK; +/* + // keep running to the side + self->ideal_yaw = self->s.angles[YAW] - 90; + + self->s.angles[YAW] = oldyaw; +*/ +} + +// JOSEPH 17-NOV-98 + +void think_playthud( edict_t *self ) +{ + char Temp[128]; + + strcpy ((char*)Temp, "actors/player/bodyfalls/"); + + if (self->thudsurf & SURF_FABRIC) + { + strcat((char*)&Temp[0], (char*)"rug"); + } + else if (self->thudsurf & SURF_GRAVEL) + { + strcat((char*)&Temp[0], (char*)"gravel"); + } + else if (self->thudsurf & SURF_METAL) + { + strcat((char*)&Temp[0], (char*)"metalh"); + } + else if (self->thudsurf & SURF_METAL_L) + { + strcat((char*)&Temp[0], (char*)"metall"); + } + else if (self->thudsurf & SURF_SNOW) + { + strcat((char*)&Temp[0], (char*)"tin"); + } + else if (self->thudsurf & SURF_TILE) + { + strcat((char*)&Temp[0], (char*)"marble"); + } + else if (self->thudsurf & SURF_WOOD) + { + strcat((char*)&Temp[0], (char*)"wood"); + } + else + { + strcat((char*)&Temp[0], (char*)"pavement"); + } + + if (self->thudsnd == 1) + { + strcat((char*)&Temp[0], (char*)"d1.wav"); + gi.positioned_sound (self->s.origin, self, CHAN_VOICE|CHAN_RELIABLE, gi.soundindex((char*)&Temp[0]), + 1.0, ATTN_NORM, 0); + } + else + { + strcat((char*)&Temp[0], (char*)"d2.wav"); + gi.positioned_sound (self->s.origin, self, CHAN_VOICE|CHAN_RELIABLE, gi.soundindex((char*)&Temp[0]), + 1.0, ATTN_NORM, 0); + } + + self->nextthink = level.time + (0.1*20.0); + self->think = G_FreeEdict; +} +// END JOSEPH + +// JOSEPH 26-FEB-99 +void thug_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + trace_t tr; + vec3_t end; + edict_t *playthud1, *playthud2; + + // regular death + self->takedamage = DAMAGE_YES; + + if (DeathByGib(self, inflictor, attacker, damage)) + { // gib + GibEntity( self, inflictor, damage ); + return; + } + + if (self->deadflag == DEAD_DEAD) + return; + + self->deadflag = DEAD_DEAD; + + if (!(self->cast_info.aiflags & AI_MELEE)) + SpawnTheWeapon (self, "weapon_pistol_e"); + + // EP_SpecialEventDeath (self); + + if (!self->onfiretime) + gi.sound (self, CHAN_VOICE, gi.soundindex(va("*death%i.wav", (rand()%4)+1)), 1, ATTN_NORM, 0); + + VectorCopy (self->s.origin, end); + end[2] -= 64; + tr = gi.trace (self->s.origin, self->mins, self->maxs, end, self, MASK_SHOT); + + // RAFAEL 01-25-99 + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + self->s.model_parts[PART_GUN2].invisible_objects = (1<<0 | 1<<1); + + + if (!strcmp(inflictor->classname, "rocket")) + { + self->cast_info.currentmove = &thug_move_crch_dth; + + // throw backwards + VectorNormalize2(inflictor->velocity, self->velocity); + + VectorNegate( self->velocity, self->velocity ); + self->ideal_yaw = vectoyaw( self->velocity ); + VectorNegate( self->velocity, self->velocity ); + + VectorMA( self->velocity, 500, self->velocity, self->velocity ); + self->gravity = 0.7; + self->velocity[2] = 220; + + self->groundentity = NULL; + } + else if (mdx_part == PART_HEAD) + { + self->cast_info.currentmove = &thug_move_death5; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*6.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*11.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + else if (self->maxs[2] < self->cast_info.standing_max_z) + { + self->cast_info.currentmove = &thug_move_crch_dth; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*6.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*9.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + else + { + int n; + + n = rand() % 5; + if (n == 0) + { + self->cast_info.currentmove = &thug_move_death1; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*5.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*8.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + else if (n == 1) + { + self->cast_info.currentmove = &thug_move_death2; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*7.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*10.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + else if (n == 2) + { + self->cast_info.currentmove = &thug_move_death3; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*7.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*11.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + else if (n == 3) + { + self->cast_info.currentmove = &thug_move_death4; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*5.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*7.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + else + { + self->cast_info.currentmove = &thug_move_death5; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*6.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*11.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + } + +} +// END JOSEPH + +void thug_pain (edict_t *self, edict_t *other, float kick, int damage, int mdx_part, int mdx_subobject) +{ + int orientation; + + AI_CheckMakeEnemy( self, other ); + + if (level.time < self->pain_debounce_time) + return; + + self->pain_debounce_time = level.time + 3 + random(); + + if (skill->value >= 3) + return; // no pain anims in nightmare + + // faked client pain sound + { + int r,l; + + r = 1 + (rand()&1); + if (self->health < 25) + l = 25; + else if (self->health < 50) + l = 50; + else if (self->health < 75) + l = 75; + else + l = 100; + + gi.sound (self, CHAN_BODY, gi.soundindex(va("*pain%i_%i.wav", l, r)), 1, ATTN_NORM, 0); + } + + if (self->cast_info.currentmove == &thug_move_knl_shoot) + return; // no pain anim for crouch shoot + + + // Ridah, randomly don't play an animation, since it' leaves them WAY open to be killed + if (skill->value > 0 && rand()%2) + return; + + + if (other->client || (other->svflags & SVF_MONSTER)) + { + orientation = AI_GetOrientation( self, other ); + } + else + { + orientation = ORIENTATION_CENTER; + } + + if ((self->maxs[2] < self->cast_info.standing_max_z)) + { // crouching + + switch (orientation) + { + case ORIENTATION_CENTER : + { + self->cast_info.currentmove = &thug_move_crouch_pain1; + break; + } + case ORIENTATION_LEFT : + { + self->cast_info.currentmove = &thug_move_crouch_pain2; + break; + } + case ORIENTATION_RIGHT : + { + self->cast_info.currentmove = &thug_move_crouch_pain3; + break; + } + } + + } + else // standing + { + + if ( (mdx_part == PART_BODY) + || (other->client && other->client->pers.weapon && !(other->client->pers.weapon->ammo) && (orientation = rand()%2+1))) + { + switch (orientation) + { + case ORIENTATION_CENTER : + { + self->cast_info.currentmove = &thug_move_pain_chest; + break; + } + case ORIENTATION_LEFT : + { + self->cast_info.currentmove = &thug_move_pain_Larm; + break; + } + case ORIENTATION_RIGHT : + { + self->cast_info.currentmove = &thug_move_pain_Rarm; + break; + } + } + } + else if (mdx_part == PART_LEGS) + { + switch (orientation) + { + case ORIENTATION_CENTER : + { + if (infront(self, other)) + { + self->cast_info.currentmove = &thug_move_pain_crch; + } + else + { + self->cast_info.currentmove = &thug_move_pain_butt; + } + break; + } + case ORIENTATION_LEFT : + { + self->cast_info.currentmove = &thug_move_pain_Lleg; + break; + } + case ORIENTATION_RIGHT : + { + self->cast_info.currentmove = &thug_move_pain_Rleg; + break; + } + } + } + else if (mdx_part == PART_HEAD) + { + self->cast_info.currentmove = &thug_move_pain_head; + } + + } + +} + +// ========================================================================= + +/*QUAKED cast_thug (1 .5 0) (-16 -16 -24) (16 16 48) x TRIGGERED_START x x x IMMEDIATE_FOLLOW_PATH MELEE NOSHADOW +cast_group 0 neutral +cast_group 1 friendly +cast_group 2 or greater enemy +guy with the pistol + +model="models\actors\thug\" +*/ +void SP_cast_thug(edict_t *self) +{ + int i; + char *head_skin, *body_skin, *legs_skin; + int skin; + + if (deathmatch->value) + { + G_FreeEdict (self); + return; + } + + self->movetype = MOVETYPE_STEP; + self->solid = SOLID_BBOX; + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 48); + + self->s.skinnum = (self->skin-1) * 3; + + if (!self->art_skins) + { // use default skins + self->art_skins = "001 001 001"; + } + + if (self->art_skins) + { + // convert spaces to NULL's + for (i=0; i<11; i++) + if (self->art_skins[i] == ' ') + self->art_skins[i] = '\0'; + + head_skin = &self->art_skins[0]; + body_skin = &self->art_skins[4]; + legs_skin = &self->art_skins[8]; + } + else + { + head_skin = body_skin = legs_skin = NULL; + } + + // ------------------------------------------------------------------------ + // initialize all model_part data + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + switch (self->head) + { + case 1: + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/thug/bald_head.mdx"); + break; + case 2: + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/thug/ski_head.mdx"); + break; + case 3: + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/thug/weld_head.mdx"); + break; + default: + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/thug/head.mdx"); + break; + } + if (head_skin) + { + // Com_sprintf(skinname, sizeof(skinname), "models/actors/thug/head_%s.tga", head_skin); + skin = gi.skinindex( self->s.model_parts[PART_HEAD].modelindex, head_skin ); + // skin = gi.skinindex( self->s.model_parts[PART_HEAD].modelindex, skinname ); + } + else + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_HEAD].baseskin = self->s.model_parts[PART_HEAD].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/thug/head.mdx", &self->s.model_parts[PART_HEAD] ); + + self->s.num_parts++; + self->s.model_parts[PART_LEGS].modelindex = gi.modelindex("models/actors/thug/legs.mdx"); + if (head_skin) + skin = gi.skinindex( self->s.model_parts[PART_LEGS].modelindex, legs_skin ); + else + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_LEGS].baseskin = self->s.model_parts[PART_LEGS].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/thug/legs.mdx", &self->s.model_parts[PART_LEGS] ); + + self->s.num_parts++; + self->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/actors/thug/body.mdx"); + if (head_skin) + skin = gi.skinindex( self->s.model_parts[PART_BODY].modelindex, body_skin ); + else + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_BODY].baseskin = self->s.model_parts[PART_BODY].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/thug/body.mdx", &self->s.model_parts[PART_BODY] ); + + if (self->spawnflags & THUG_MELEE) + { + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/thug/pipe.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/thug/pipe.mdx", &self->s.model_parts[PART_GUN] ); + + self->cast_info.aiflags |= AI_MELEE; + } + else + { + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/thug/R_pstl.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/thug/R_pstl.mdx", &self->s.model_parts[PART_GUN] ); + + // the guns should not be visible until we go to use them + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + + self->s.num_parts++; + self->s.model_parts[PART_GUN2].modelindex = gi.modelindex("models/actors/thug/L_pstl.mdx"); + for (i=0; is.model_parts[PART_GUN2].baseskin = self->s.model_parts[PART_GUN2].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/thug/L_pstl.mdx", &self->s.model_parts[PART_GUN2] ); + + // the guns should not be visible until we go to use them + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + self->s.model_parts[PART_GUN2].invisible_objects = (1<<0 | 1<<1); + } + + if (self->count & 1) // cigar + { + self->s.num_parts++; + self->s.model_parts[PART_CIGAR].modelindex = gi.modelindex("models/actors/thug/cigar.mdx"); + for (i=0; is.model_parts[PART_CIGAR].baseskin = self->s.model_parts[PART_CIGAR].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/thug/cigar.mdx", &self->s.model_parts[PART_CIGAR] ); + } + + if (self->count & 2) // fedora hat + { + self->s.num_parts++; + self->s.model_parts[PART_HAT].modelindex = gi.modelindex("models/actors/thug/fedora.mdx"); + for (i=0; is.model_parts[PART_HAT].baseskin = self->s.model_parts[PART_HAT].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/thug/fedora.mdx", &self->s.model_parts[PART_HAT] ); + } + else if (self->count & 4) // stetson hat + { + self->s.num_parts++; + self->s.model_parts[PART_HAT].modelindex = gi.modelindex("models/actors/thug/stetson.mdx"); + for (i=0; is.model_parts[PART_HAT].baseskin = self->s.model_parts[PART_HAT].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/thug/stetson.mdx", &self->s.model_parts[PART_HAT] ); + } + else if (self->count & 8) // cap (hat) + { + self->s.num_parts++; + self->s.model_parts[PART_HAT].modelindex = gi.modelindex("models/actors/thug/cap.mdx"); + for (i=0; is.model_parts[PART_HAT].baseskin = self->s.model_parts[PART_HAT].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/thug/cap.mdx", &self->s.model_parts[PART_HAT] ); + } + + // remove NULL's + if (self->art_skins) + self->art_skins[3] = self->art_skins[7] = ' '; + + // ------------------------------------------------------------------------ + + if (!self->health) + self->health = 100; + + self->gib_health = -200; + self->mass = 200; + + self->gender = GENDER_MALE; + + self->pain = thug_pain; + self->die = thug_die; + + self->cast_info.checkattack = AI_CheckAttack; + + self->cast_info.attack = thug_attack; + self->cast_info.long_attack = thug_long_attack; + self->cast_info.talk = thug_talk; + self->cast_info.avoid = thug_avoid; + self->cast_info.backoff = thug_backoff; + + self->cast_info.catch_fire = thug_catch_fire; + + self->cast_info.max_attack_distance = 2000; + + self->cast_info.move_stand = &thug_move_amb_stand; + self->cast_info.move_crstand = &thug_move_crch_amb_sdt; + + self->cast_info.move_run = &thug_move_run_guns_dn; + self->cast_info.move_runwalk = &thug_move_walk_guns_dn; + self->cast_info.move_crwalk = &thug_move_crouch_walk; + + self->cast_info.move_jump = &thug_move_jump; + + self->cast_info.move_avoid_walk = &thug_move_avoid_walk; + self->cast_info.move_avoid_run = &thug_move_avoid_run; + self->cast_info.move_avoid_reverse_walk = &thug_move_avoid_reverse_walk; + self->cast_info.move_avoid_reverse_run = &thug_move_avoid_reverse_run; + self->cast_info.move_avoid_crwalk = &thug_move_crouch_avoid_walk; + + self->cast_info.move_crouch_down = &thug_move_crch_knl_dn; + self->cast_info.move_stand_up = &thug_move_stand_up; + + self->cast_info.move_lside_step = &thug_move_lside_step; + self->cast_info.move_rside_step = &thug_move_rside_step; + +// self->cast_info.move_start_climb = &thug_move_st_clmb; + self->cast_info.move_start_climb = &thug_move_clmb_loop; + self->cast_info.move_end_climb = &thug_move_clmb_jmp; + + self->cast_info.move_evade = &thug_move_evade; + self->cast_info.move_stand_evade = &thug_move_evade_stand; + + gi.linkentity (self); + + self->cast_info.currentmove = self->cast_info.move_stand; + + + if (!self->cast_info.scale) + self->cast_info.scale = MODEL_SCALE; + + self->s.scale = self->cast_info.scale - 1.0; + + // talk by default + self->cast_info.aiflags |= AI_TALK; + + walking_cast_start (self); + + if (!(self->acc)) + self->acc = 2; + + if (self->spawnflags & 128) + self->s.renderfx2 |= RF2_NOSHADOW; + +} diff --git a/gamesrc/AI_THUG.H b/gamesrc/AI_THUG.H new file mode 100644 index 0000000..f8680c9 --- /dev/null +++ b/gamesrc/AI_THUG.H @@ -0,0 +1,758 @@ +#define FRAME_amb_stand_01 0 +#define FRAME_amb_stand_02 1 +#define FRAME_amb_stand_03 2 +#define FRAME_amb_stand_04 3 +#define FRAME_amb_stand_05 4 +#define FRAME_amb_stand_06 5 +#define FRAME_amb_stand_07 6 +#define FRAME_amb_stand_08 7 +#define FRAME_amb_stand_09 8 +#define FRAME_amb_stand_10 9 +#define FRAME_amb_stand_11 10 +#define FRAME_amb_stand_12 11 +#define FRAME_amb_stand_13 12 +#define FRAME_amb_stand_14 13 +#define FRAME_amb_stand_15 14 +#define FRAME_amb_stand_16 15 +#define FRAME_amb_stand_17 16 +#define FRAME_amb_stand_18 17 +#define FRAME_amb_stand_19 18 +#define FRAME_amb_stand_20 19 +#define FRAME_amb_stand_21 20 +#define FRAME_amb_stand_22 21 +#define FRAME_amb_stand_23 22 +#define FRAME_amb_stand_24 23 +#define FRAME_amb_stand_25 24 +#define FRAME_amb_stand_26 25 +#define FRAME_amb_stand_27 26 +#define FRAME_amb_stand_28 27 +#define FRAME_amb_stand_29 28 +#define FRAME_amb_stand_30 29 +#define FRAME_amb_stand_31 30 +#define FRAME_amb_stand_32 31 +#define FRAME_amb_stand_33 32 +#define FRAME_amb_stand_34 33 +#define FRAME_amb_stand_35 34 +#define FRAME_amb_stand_36 35 +#define FRAME_amb_stand_37 36 +#define FRAME_amb_stand_38 37 +#define FRAME_amb_stand_39 38 +#define FRAME_amb_stand_40 39 +#define FRAME_amb_stand_41 40 +#define FRAME_amb_stand_42 41 +#define FRAME_talk1_01 42 +#define FRAME_talk1_02 43 +#define FRAME_talk1_03 44 +#define FRAME_talk1_04 45 +#define FRAME_talk1_05 46 +#define FRAME_talk1_06 47 +#define FRAME_talk1_07 48 +#define FRAME_talk1_08 49 +#define FRAME_talk1_09 50 +#define FRAME_talk1_10 51 +#define FRAME_talk1_11 52 +#define FRAME_talk1_12 53 +#define FRAME_talk1_13 54 +#define FRAME_talk1_14 55 +#define FRAME_talk1_15 56 +#define FRAME_talk1_16 57 +#define FRAME_talk1_17 58 +#define FRAME_handwave_01 59 +#define FRAME_handwave_02 60 +#define FRAME_handwave_03 61 +#define FRAME_handwave_04 62 +#define FRAME_handwave_05 63 +#define FRAME_handwave_06 64 +#define FRAME_handwave_07 65 +#define FRAME_handwave_08 66 +#define FRAME_handwave_09 67 +#define FRAME_handwave_10 68 +#define FRAME_handwave_11 69 +#define FRAME_handwave_12 70 +#define FRAME_handwave_13 71 +#define FRAME_handwave_14 72 +#define FRAME_nod_yes_01 73 +#define FRAME_nod_yes_02 74 +#define FRAME_nod_yes_03 75 +#define FRAME_nod_yes_04 76 +#define FRAME_nod_yes_05 77 +#define FRAME_nod_yes_06 78 +#define FRAME_nod_yes_07 79 +#define FRAME_nod_yes_08 80 +#define FRAME_nod_yes_09 81 +#define FRAME_nod_yes_10 82 +#define FRAME_nod_yes_11 83 +#define FRAME_nod_yes_12 84 +#define FRAME_nod_yes_13 85 +#define FRAME_nod_yes_14 86 +#define FRAME_nod_yes_15 87 +#define FRAME_nod_yes_16 88 +#define FRAME_nod_yes_17 89 +#define FRAME_nod_yes_18 90 +#define FRAME_nod_yes_19 91 +#define FRAME_whoa_01 92 +#define FRAME_whoa_02 93 +#define FRAME_whoa_03 94 +#define FRAME_whoa_04 95 +#define FRAME_whoa_05 96 +#define FRAME_whoa_06 97 +#define FRAME_whoa_07 98 +#define FRAME_whoa_08 99 +#define FRAME_whoa_09 100 +#define FRAME_whoa_10 101 +#define FRAME_crch_grab_01 102 +#define FRAME_crch_grab_02 103 +#define FRAME_crch_grab_03 104 +#define FRAME_crch_grab_04 105 +#define FRAME_crch_grab_05 106 +#define FRAME_crch_grab_06 107 +#define FRAME_crch_grab_07 108 +#define FRAME_crch_grab_08 109 +#define FRAME_crch_grab_09 110 +#define FRAME_crch_grab_10 111 +#define FRAME_crch_grab_11 112 +#define FRAME_crch_grab_12 113 +#define FRAME_crch_grab_13 114 +#define FRAME_crch_grab_14 115 +#define FRAME_crch_grab_15 116 +#define FRAME_crch_grab_16 117 +#define FRAME_crch_grab_17 118 +#define FRAME_crch_grab_18 119 +#define FRAME_crch_grab_19 120 +#define FRAME_crch_grab_20 121 +#define FRAME_crch_grab_21 122 +#define FRAME_crch_grab_22 123 +#define FRAME_crch_grab_23 124 +#define FRAME_crch_grab_24 125 +#define FRAME_up_yours_01 126 +#define FRAME_up_yours_02 127 +#define FRAME_up_yours_03 128 +#define FRAME_up_yours_04 129 +#define FRAME_up_yours_05 130 +#define FRAME_up_yours_06 131 +#define FRAME_up_yours_07 132 +#define FRAME_up_yours_08 133 +#define FRAME_up_yours_09 134 +#define FRAME_up_yours_10 135 +#define FRAME_up_yours_11 136 +#define FRAME_up_yours_12 137 +#define FRAME_up_yours_13 138 +#define FRAME_up_yours_14 139 +#define FRAME_up_yours_15 140 +#define FRAME_up_yours_16 141 +#define FRAME_up_yours_17 142 +#define FRAME_up_yours_18 143 +#define FRAME_up_yours_19 144 +#define FRAME_up_yours_20 145 +#define FRAME_up_yours_21 146 +#define FRAME_up_yours_22 147 +#define FRAME_up_yours_23 148 +#define FRAME_up_yours_24 149 +#define FRAME_nod_no_01 150 +#define FRAME_nod_no_02 151 +#define FRAME_nod_no_03 152 +#define FRAME_nod_no_04 153 +#define FRAME_nod_no_05 154 +#define FRAME_nod_no_06 155 +#define FRAME_nod_no_07 156 +#define FRAME_nod_no_08 157 +#define FRAME_nod_no_09 158 +#define FRAME_nod_no_10 159 +#define FRAME_nod_no_11 160 +#define FRAME_nod_no_12 161 +#define FRAME_nod_no_13 162 +#define FRAME_nod_no_14 163 +#define FRAME_nod_no_15 164 +#define FRAME_nod_no_16 165 +#define FRAME_nod_no_17 166 +#define FRAME_nod_no_18 167 +#define FRAME_nod_no_19 168 +#define FRAME_nod_no_20 169 +#define FRAME_nod_no_21 170 +#define FRAME_pull_guns_01 171 +#define FRAME_pull_guns_02 172 +#define FRAME_pull_guns_03 173 +#define FRAME_pull_guns_04 174 +#define FRAME_pull_guns_05 175 +#define FRAME_pull_guns_06 176 +#define FRAME_pull_guns_07 177 +#define FRAME_pull_guns_08 178 +#define FRAME_shoot_01 179 +#define FRAME_shoot_02 180 +#define FRAME_shoot_03 181 +#define FRAME_shoot_04 182 +#define FRAME_reload_01 183 +#define FRAME_reload_02 184 +#define FRAME_reload_03 185 +#define FRAME_reload_04 186 +#define FRAME_reload_05 187 +#define FRAME_reload_06 188 +#define FRAME_reload_07 189 +#define FRAME_reload_08 190 +#define FRAME_reload_09 191 +#define FRAME_reload_10 192 +#define FRAME_reload_11 193 +#define FRAME_reload_12 194 +#define FRAME_reload_13 195 +#define FRAME_kneel_01 196 +#define FRAME_kneel_02 197 +#define FRAME_kneel_03 198 +#define FRAME_kneel_04 199 +#define FRAME_kneel_05 200 +#define FRAME_kneel_06 201 +#define FRAME_kneel_07 202 +#define FRAME_knl_shoot_01 203 +#define FRAME_knl_shoot_02 204 +#define FRAME_knl_shoot_03 205 +#define FRAME_knl_shoot_04 206 +#define FRAME_knl_shoot_05 207 +#define FRAME_knl_shoot_06 208 +#define FRAME_melee1_01 209 +#define FRAME_melee1_02 210 +#define FRAME_melee1_03 211 +#define FRAME_melee1_04 212 +#define FRAME_melee1_05 213 +#define FRAME_melee1_06 214 +#define FRAME_melee1_07 215 +#define FRAME_melee1_08 216 +#define FRAME_melee2_01 217 +#define FRAME_melee2_02 218 +#define FRAME_melee2_03 219 +#define FRAME_melee2_04 220 +#define FRAME_melee2_05 221 +#define FRAME_melee2_06 222 +#define FRAME_melee2_07 223 +#define FRAME_melee2_08 224 +#define FRAME_melee2_09 225 +#define FRAME_melee3_01 226 +#define FRAME_melee3_02 227 +#define FRAME_melee3_03 228 +#define FRAME_melee3_04 229 +#define FRAME_melee3_05 230 +#define FRAME_melee3_06 231 +#define FRAME_melee3_07 232 +#define FRAME_melee4_01 233 +#define FRAME_melee4_02 234 +#define FRAME_melee4_03 235 +#define FRAME_melee4_04 236 +#define FRAME_melee4_05 237 +#define FRAME_melee4_06 238 +#define FRAME_melee5_01 239 +#define FRAME_melee5_02 240 +#define FRAME_melee5_03 241 +#define FRAME_melee5_04 242 +#define FRAME_melee5_05 243 +#define FRAME_melee5_06 244 +#define FRAME_melee5_07 245 +#define FRAME_low_melee1_01 246 +#define FRAME_low_melee1_02 247 +#define FRAME_low_melee1_03 248 +#define FRAME_low_melee1_04 249 +#define FRAME_low_melee1_05 250 +#define FRAME_low_melee1_06 251 +#define FRAME_low_melee1_07 252 +#define FRAME_low_melee1_08 253 +#define FRAME_low_melee1_09 254 +#define FRAME_low_melee1_10 255 +#define FRAME_jump_01 256 +#define FRAME_jump_02 257 +#define FRAME_jump_03 258 +#define FRAME_jump_04 259 +#define FRAME_jump_05 260 +#define FRAME_jump_06 261 +#define FRAME_jump_07 262 +#define FRAME_jump_08 263 +#define FRAME_jump_09 264 +#define FRAME_jump_10 265 +#define FRAME_jump_11 266 +#define FRAME_jump_12 267 +#define FRAME_jump_13 268 +#define FRAME_jump_14 269 +#define FRAME_jump_15 270 +#define FRAME_jump_16 271 +#define FRAME_jump_17 272 +#define FRAME_st_clmb_01 273 +#define FRAME_st_clmb_02 274 +#define FRAME_clmb_loop_01 275 +#define FRAME_clmb_loop_02 276 +#define FRAME_clmb_loop_03 277 +#define FRAME_clmb_loop_04 278 +#define FRAME_clmb_loop_05 279 +#define FRAME_clmb_loop_06 280 +#define FRAME_clmb_loop_07 281 +#define FRAME_clmb_loop_08 282 +#define FRAME_clmb_loop_09 283 +#define FRAME_clmb_over_01 284 +#define FRAME_clmb_over_02 285 +#define FRAME_clmb_over_03 286 +#define FRAME_clmb_over_04 287 +#define FRAME_clmb_over_05 288 +#define FRAME_clmb_over_06 289 +#define FRAME_clmb_over_07 290 +#define FRAME_clmb_over_08 291 +#define FRAME_clmb_over_09 292 +#define FRAME_clmb_over_10 293 +#define FRAME_clmb_over_11 294 +#define FRAME_clmb_over_12 295 +#define FRAME_clmb_over_13 296 +#define FRAME_clmb_over_14 297 +#define FRAME_clmb_over_15 298 +#define FRAME_pain_Rarm_01 299 +#define FRAME_pain_Rarm_02 300 +#define FRAME_pain_Rarm_03 301 +#define FRAME_pain_Rarm_04 302 +#define FRAME_pain_Rarm_05 303 +#define FRAME_pain_Rarm_06 304 +#define FRAME_pain_Rarm_07 305 +#define FRAME_pain_Rarm_08 306 +#define FRAME_pain_Rarm_09 307 +#define FRAME_pain_Rarm_10 308 +#define FRAME_pain_Larm_01 309 +#define FRAME_pain_Larm_02 310 +#define FRAME_pain_Larm_03 311 +#define FRAME_pain_Larm_04 312 +#define FRAME_pain_Larm_05 313 +#define FRAME_pain_Larm_06 314 +#define FRAME_pain_Larm_07 315 +#define FRAME_pain_Larm_08 316 +#define FRAME_pain_Larm_09 317 +#define FRAME_pain_chest_01 318 +#define FRAME_pain_chest_02 319 +#define FRAME_pain_chest_03 320 +#define FRAME_pain_chest_04 321 +#define FRAME_pain_chest_05 322 +#define FRAME_pain_chest_06 323 +#define FRAME_pain_chest_07 324 +#define FRAME_pain_chest_08 325 +#define FRAME_pain_chest_09 326 +#define FRAME_pain_head_01 327 +#define FRAME_pain_head_02 328 +#define FRAME_pain_head_03 329 +#define FRAME_pain_head_04 330 +#define FRAME_pain_head_05 331 +#define FRAME_pain_head_06 332 +#define FRAME_pain_head_07 333 +#define FRAME_pain_head_08 334 +#define FRAME_pain_head_09 335 +#define FRAME_pain_head_10 336 +#define FRAME_pain_Rleg_01 337 +#define FRAME_pain_Rleg_02 338 +#define FRAME_pain_Rleg_03 339 +#define FRAME_pain_Rleg_04 340 +#define FRAME_pain_Rleg_05 341 +#define FRAME_pain_Rleg_06 342 +#define FRAME_pain_Rleg_07 343 +#define FRAME_pain_Rleg_08 344 +#define FRAME_pain_Rleg_09 345 +#define FRAME_pain_Rleg_10 346 +#define FRAME_pain_Lleg_01 347 +#define FRAME_pain_Lleg_02 348 +#define FRAME_pain_Lleg_03 349 +#define FRAME_pain_Lleg_04 350 +#define FRAME_pain_Lleg_05 351 +#define FRAME_pain_Lleg_06 352 +#define FRAME_pain_Lleg_07 353 +#define FRAME_pain_Lleg_08 354 +#define FRAME_pain_crch_01 355 +#define FRAME_pain_crch_02 356 +#define FRAME_pain_crch_03 357 +#define FRAME_pain_crch_04 358 +#define FRAME_pain_crch_05 359 +#define FRAME_pain_crch_06 360 +#define FRAME_pain_crch_07 361 +#define FRAME_pain_crch_08 362 +#define FRAME_pain_crch_09 363 +#define FRAME_pain_crch_10 364 +#define FRAME_pain_crch_11 365 +#define FRAME_pain_butt_01 366 +#define FRAME_pain_butt_02 367 +#define FRAME_pain_butt_03 368 +#define FRAME_pain_butt_04 369 +#define FRAME_pain_butt_05 370 +#define FRAME_pain_butt_06 371 +#define FRAME_pain_butt_07 372 +#define FRAME_pain_butt_08 373 +#define FRAME_pain_butt_09 374 +#define FRAME_nw_pain_Rarm_01 375 +#define FRAME_nw_pain_Rarm_02 376 +#define FRAME_nw_pain_Rarm_03 377 +#define FRAME_nw_pain_Rarm_04 378 +#define FRAME_nw_pain_Rarm_05 379 +#define FRAME_nw_pain_Rarm_06 380 +#define FRAME_nw_pain_Rarm_07 381 +#define FRAME_nw_pain_Rarm_08 382 +#define FRAME_nw_pain_Rarm_09 383 +#define FRAME_nw_pain_Rarm_10 384 +#define FRAME_nw_pain_Rarm_11 385 +#define FRAME_nw_pain_Larm_01 386 +#define FRAME_nw_pain_Larm_02 387 +#define FRAME_nw_pain_Larm_03 388 +#define FRAME_nw_pain_Larm_04 389 +#define FRAME_nw_pain_Larm_05 390 +#define FRAME_nw_pain_Larm_06 391 +#define FRAME_nw_pain_Larm_07 392 +#define FRAME_nw_pain_Larm_08 393 +#define FRAME_nw_pain_Larm_09 394 +#define FRAME_nw_pain_Larm_10 395 +#define FRAME_nw_pain_Larm_11 396 +#define FRAME_nw_pain_chst_01 397 +#define FRAME_nw_pain_chst_02 398 +#define FRAME_nw_pain_chst_03 399 +#define FRAME_nw_pain_chst_04 400 +#define FRAME_nw_pain_chst_05 401 +#define FRAME_nw_pain_chst_06 402 +#define FRAME_nw_pain_chst_07 403 +#define FRAME_nw_pain_chst_08 404 +#define FRAME_nw_pain_chst_09 405 +#define FRAME_nw_pain_chst_10 406 +#define FRAME_nw_pain_chst_11 407 +#define FRAME_nw_pain_head_01 408 +#define FRAME_nw_pain_head_02 409 +#define FRAME_nw_pain_head_03 410 +#define FRAME_nw_pain_head_04 411 +#define FRAME_nw_pain_head_05 412 +#define FRAME_nw_pain_head_06 413 +#define FRAME_nw_pain_head_07 414 +#define FRAME_nw_pain_head_08 415 +#define FRAME_nw_pain_Rleg_01 416 +#define FRAME_nw_pain_Rleg_02 417 +#define FRAME_nw_pain_Rleg_03 418 +#define FRAME_nw_pain_Rleg_04 419 +#define FRAME_nw_pain_Rleg_05 420 +#define FRAME_nw_pain_Rleg_06 421 +#define FRAME_nw_pain_Rleg_07 422 +#define FRAME_nw_pain_Rleg_08 423 +#define FRAME_nw_pain_Rleg_09 424 +#define FRAME_nw_pain_Rleg_10 425 +#define FRAME_nw_pain_Lleg_01 426 +#define FRAME_nw_pain_Lleg_02 427 +#define FRAME_nw_pain_Lleg_03 428 +#define FRAME_nw_pain_Lleg_04 429 +#define FRAME_nw_pain_Lleg_05 430 +#define FRAME_nw_pain_Lleg_06 431 +#define FRAME_nw_pain_Lleg_07 432 +#define FRAME_nw_pain_Lleg_08 433 +#define FRAME_nw_pain_Lleg_09 434 +#define FRAME_nw_pain_Lleg_10 435 +#define FRAME_nw_pain_Lleg_11 436 +#define FRAME_nw_pain_Lleg_12 437 +#define FRAME_nw_pain_Lleg_13 438 +#define FRAME_nw_pain_crch_01 439 +#define FRAME_nw_pain_crch_02 440 +#define FRAME_nw_pain_crch_03 441 +#define FRAME_nw_pain_crch_04 442 +#define FRAME_nw_pain_crch_05 443 +#define FRAME_nw_pain_crch_06 444 +#define FRAME_nw_pain_crch_07 445 +#define FRAME_nw_pain_crch_08 446 +#define FRAME_nw_pain_crch_09 447 +#define FRAME_nw_pain_crch_10 448 +#define FRAME_nw_pain_crch_11 449 +#define FRAME_nw_pain_crch_12 450 +#define FRAME_nw_pain_crch_13 451 +#define FRAME_nw_pain_crch_14 452 +#define FRAME_nw_pain_crch_15 453 +#define FRAME_nw_pain_crch_16 454 +#define FRAME_nw_pain_butt_01 455 +#define FRAME_nw_pain_butt_02 456 +#define FRAME_nw_pain_butt_03 457 +#define FRAME_nw_pain_butt_04 458 +#define FRAME_nw_pain_butt_05 459 +#define FRAME_nw_pain_butt_06 460 +#define FRAME_nw_pain_butt_07 461 +#define FRAME_nw_pain_butt_08 462 +#define FRAME_nw_pain_butt_09 463 +#define FRAME_nw_pain_butt_10 464 +#define FRAME_nw_pain_butt_11 465 +#define FRAME_nw_pain_butt_12 466 +#define FRAME_nw_pain_butt_13 467 +#define FRAME_nw_pain_butt_14 468 +#define FRAME_death1_01 469 +#define FRAME_death1_02 470 +#define FRAME_death1_03 471 +#define FRAME_death1_04 472 +#define FRAME_death1_05 473 +#define FRAME_death1_06 474 +#define FRAME_death1_07 475 +#define FRAME_death1_08 476 +#define FRAME_death1_09 477 +#define FRAME_death1_10 478 +#define FRAME_death1_11 479 +#define FRAME_death1_12 480 +#define FRAME_death1_13 481 +#define FRAME_death1_14 482 +#define FRAME_death1_15 483 +#define FRAME_death1_16 484 +#define FRAME_death2_01 485 +#define FRAME_death2_02 486 +#define FRAME_death2_03 487 +#define FRAME_death2_04 488 +#define FRAME_death2_05 489 +#define FRAME_death2_06 490 +#define FRAME_death2_07 491 +#define FRAME_death2_08 492 +#define FRAME_death2_09 493 +#define FRAME_death2_10 494 +#define FRAME_death2_11 495 +#define FRAME_death2_12 496 +#define FRAME_death2_13 497 +#define FRAME_death2_14 498 +#define FRAME_death2_15 499 +#define FRAME_death2_16 500 +#define FRAME_death2_17 501 +#define FRAME_death2_18 502 +#define FRAME_death2_19 503 +#define FRAME_death3_01 504 +#define FRAME_death3_02 505 +#define FRAME_death3_03 506 +#define FRAME_death3_04 507 +#define FRAME_death3_05 508 +#define FRAME_death3_06 509 +#define FRAME_death3_07 510 +#define FRAME_death3_08 511 +#define FRAME_death3_09 512 +#define FRAME_death3_10 513 +#define FRAME_death3_11 514 +#define FRAME_death3_12 515 +#define FRAME_death3_13 516 +#define FRAME_death3_14 517 +#define FRAME_death4_01 518 +#define FRAME_death4_02 519 +#define FRAME_death4_03 520 +#define FRAME_death4_04 521 +#define FRAME_death4_05 522 +#define FRAME_death4_06 523 +#define FRAME_death4_07 524 +#define FRAME_death4_08 525 +#define FRAME_death4_09 526 +#define FRAME_death4_10 527 +#define FRAME_death4_11 528 +#define FRAME_death4_12 529 +#define FRAME_death4_13 530 +#define FRAME_death4_14 531 +#define FRAME_death4_15 532 +#define FRAME_death5_01 533 +#define FRAME_death5_02 534 +#define FRAME_death5_03 535 +#define FRAME_death5_04 536 +#define FRAME_death5_05 537 +#define FRAME_death5_06 538 +#define FRAME_death5_07 539 +#define FRAME_death5_08 540 +#define FRAME_death5_09 541 +#define FRAME_death5_10 542 +#define FRAME_death5_11 543 +#define FRAME_death5_12 544 +#define FRAME_death5_13 545 +#define FRAME_death5_14 546 +#define FRAME_death5_15 547 +#define FRAME_death5_16 548 +#define FRAME_death5_17 549 +#define FRAME_death5_18 550 +#define FRAME_crch_dth_01 551 +#define FRAME_crch_dth_02 552 +#define FRAME_crch_dth_03 553 +#define FRAME_crch_dth_04 554 +#define FRAME_crch_dth_05 555 +#define FRAME_crch_dth_06 556 +#define FRAME_crch_dth_07 557 +#define FRAME_crch_dth_08 558 +#define FRAME_crch_dth_09 559 +#define FRAME_crch_dth_10 560 +#define FRAME_crch_dth_11 561 +#define FRAME_crch_dth_12 562 +#define FRAME_crch_dth_13 563 +#define FRAME_crch_dth_14 564 +#define FRAME_crch_dth_15 565 +#define FRAME_crch_dth_16 566 +#define FRAME_crch_dth_17 567 +#define FRAME_crch_dth_18 568 +#define FRAME_crch_dth_19 569 +#define FRAME_crch_knl_dn_01 570 +#define FRAME_crch_knl_dn_02 571 +#define FRAME_crch_knl_dn_03 572 +#define FRAME_crch_knl_dn_04 573 +#define FRAME_crch_amb_sdt_01 574 +#define FRAME_crch_amb_sdt_02 575 +#define FRAME_crch_amb_sdt_03 576 +#define FRAME_crch_amb_sdt_04 577 +#define FRAME_crch_amb_sdt_05 578 +#define FRAME_crch_amb_sdt_06 579 +#define FRAME_crch_amb_sdt_07 580 +#define FRAME_crch_amb_sdt_08 581 +#define FRAME_crch_amb_sdt_09 582 +#define FRAME_crch_amb_sdt_10 583 +#define FRAME_crch_amb_sdt_11 584 +#define FRAME_crch_amb_sdt_12 585 +#define FRAME_crch_amb_sdt_13 586 +#define FRAME_crch_amb_sdt_14 587 +#define FRAME_crch_amb_sdt_15 588 +#define FRAME_crch_amb_sdt_16 589 +#define FRAME_crch_amb_sdt_17 590 +#define FRAME_crch_amb_sdt_18 591 +#define FRAME_crch_amb_sdt_19 592 +#define FRAME_crch_amb_sdt_20 593 +#define FRAME_crch_amb_sdt_21 594 +#define FRAME_crch_amb_sdt_22 595 +#define FRAME_crch_amb_sdt_23 596 +#define FRAME_crch_amb_sdt_24 597 +#define FRAME_crch_shoot_01 598 +#define FRAME_crch_shoot_02 599 +#define FRAME_crch_shoot_03 600 +#define FRAME_crch_shoot_04 601 +#define FRAME_crch_shoot_05 602 +#define FRAME_crouch_shfl_01 603 +#define FRAME_crouch_shfl_02 604 +#define FRAME_crouch_shfl_03 605 +#define FRAME_crouch_shfl_04 606 +#define FRAME_crouch_shfl_05 607 +#define FRAME_crouch_shfl_06 608 +#define FRAME_crouch_walk_01 609 +#define FRAME_crouch_walk_02 610 +#define FRAME_crouch_walk_03 611 +#define FRAME_crouch_walk_04 612 +#define FRAME_crouch_walk_05 613 +#define FRAME_crouch_walk_06 614 +#define FRAME_crouch_pain1_01 615 +#define FRAME_crouch_pain1_02 616 +#define FRAME_crouch_pain1_03 617 +#define FRAME_crouch_pain1_04 618 +#define FRAME_crouch_pain1_05 619 +#define FRAME_crouch_pain1_06 620 +#define FRAME_crouch_pain1_07 621 +#define FRAME_crouch_pain1_08 622 +#define FRAME_crouch_pain2_01 623 +#define FRAME_crouch_pain2_02 624 +#define FRAME_crouch_pain2_03 625 +#define FRAME_crouch_pain2_04 626 +#define FRAME_crouch_pain2_05 627 +#define FRAME_crouch_pain2_06 628 +#define FRAME_crouch_pain3_01 629 +#define FRAME_crouch_pain3_02 630 +#define FRAME_crouch_pain3_03 631 +#define FRAME_crouch_pain3_04 632 +#define FRAME_crouch_pain3_05 633 +#define FRAME_crouch_pain3_06 634 +#define FRAME_evade_01 635 +#define FRAME_evade_02 636 +#define FRAME_evade_03 637 +#define FRAME_evade_04 638 +#define FRAME_evade_05 639 +#define FRAME_evade_06 640 +#define FRAME_evade_07 641 +#define FRAME_evade_08 642 +#define FRAME_evade_09 643 +#define FRAME_evade_10 644 +#define FRAME_evade_11 645 +#define FRAME_evade_12 646 +#define FRAME_evade_13 647 +#define FRAME_evade_amb_01 648 +#define FRAME_evade_amb_02 649 +#define FRAME_evade_amb_03 650 +#define FRAME_evade_amb_04 651 +#define FRAME_evade_amb_05 652 +#define FRAME_evade_amb_06 653 +#define FRAME_evade_amb_07 654 +#define FRAME_lside_step_01 655 +#define FRAME_lside_step_02 656 +#define FRAME_lside_step_03 657 +#define FRAME_lside_step_04 658 +#define FRAME_lside_step_05 659 +#define FRAME_lside_step_06 660 +#define FRAME_lside_step_07 661 +#define FRAME_rside_step_01 662 +#define FRAME_rside_step_02 663 +#define FRAME_rside_step_03 664 +#define FRAME_rside_step_04 665 +#define FRAME_rside_step_05 666 +#define FRAME_rside_step_06 667 +#define FRAME_rside_step_07 668 +#define FRAME_walk_shoot_01 669 +#define FRAME_walk_shoot_02 670 +#define FRAME_walk_shoot_03 671 +#define FRAME_walk_shoot_04 672 +#define FRAME_walk_shoot_05 673 +#define FRAME_walk_shoot_06 674 +#define FRAME_walk_shoot_07 675 +#define FRAME_walk_shoot_08 676 +#define FRAME_walk_shoot_09 677 +#define FRAME_walk_shoot_10 678 +#define FRAME_walk_guns_dn_01 679 +#define FRAME_walk_guns_dn_02 680 +#define FRAME_walk_guns_dn_03 681 +#define FRAME_walk_guns_dn_04 682 +#define FRAME_walk_guns_dn_05 683 +#define FRAME_walk_guns_dn_06 684 +#define FRAME_walk_guns_dn_07 685 +#define FRAME_walk_guns_dn_08 686 +#define FRAME_walk_guns_dn_09 687 +#define FRAME_walk_guns_dn_10 688 +#define FRAME_run_shoot_01 689 +#define FRAME_run_shoot_02 690 +#define FRAME_run_shoot_03 691 +#define FRAME_run_shoot_04 692 +#define FRAME_run_shoot_05 693 +#define FRAME_run_shoot_06 694 +#define FRAME_run_guns_dn_01 695 +#define FRAME_run_guns_dn_02 696 +#define FRAME_run_guns_dn_03 697 +#define FRAME_run_guns_dn_04 698 +#define FRAME_run_guns_dn_05 699 +#define FRAME_run_guns_dn_06 700 +#define FRAME_run_on_fire_01 701 +#define FRAME_run_on_fire_02 702 +#define FRAME_run_on_fire_03 703 +#define FRAME_run_on_fire_04 704 +#define FRAME_run_on_fire_05 705 +#define FRAME_run_on_fire_06 706 +#define FRAME_run_melee_01 707 +#define FRAME_run_melee_02 708 +#define FRAME_run_melee_03 709 +#define FRAME_run_melee_04 710 +#define FRAME_run_melee_05 711 +#define FRAME_run_melee_06 712 +#define FRAME_rside_run_01 713 +#define FRAME_rside_run_02 714 +#define FRAME_rside_run_03 715 +#define FRAME_rside_run_04 716 +#define FRAME_rside_run_05 717 +#define FRAME_rside_run_06 718 +#define FRAME_lside_run_01 719 +#define FRAME_lside_run_02 720 +#define FRAME_lside_run_03 721 +#define FRAME_lside_run_04 722 +#define FRAME_lside_run_05 723 +#define FRAME_lside_run_06 724 +#define FRAME_cold_cock_01 725 +#define FRAME_cold_cock_02 726 +#define FRAME_cold_cock_03 727 +#define FRAME_cold_cock_04 728 +#define FRAME_cold_cock_05 729 +#define FRAME_cold_cock_06 730 +#define FRAME_cold_cock_07 731 +#define FRAME_cold_cock_08 732 +#define FRAME_cold_cock_09 733 +#define FRAME_cold_cock_10 734 +#define FRAME_cold_cock_11 735 +#define FRAME_cold_cock_12 736 +#define FRAME_cold_cock_13 737 +#define FRAME_cold_cock_14 738 +#define FRAME_cold_cock_15 739 +#define FRAME_cold_cock_16 740 +#define FRAME_cold_cock_17 741 +#define FRAME_cold_cock_18 742 +#define FRAME_cold_cock_19 743 +#define FRAME_cold_cock_20 744 +#define FRAME_cold_cock_21 745 +#define FRAME_cold_cock_22 746 +#define FRAME_cold_cock_23 747 +#define FRAME_cold_cock_24 748 +#define FRAME_cold_cock_25 749 +#define FRAME_cold_cock_26 750 +#define FRAME_cold_cock_27 751 +#define FRAME_cold_cock_28 752 +#define FRAME_cold_cock_29 753 +#define FRAME_cold_cock_30 754 +#define FRAME_cold_cock_31 755 + +#define MODEL_SCALE 1.000000 diff --git a/gamesrc/AI_THUG2.H b/gamesrc/AI_THUG2.H new file mode 100644 index 0000000..c1d340a --- /dev/null +++ b/gamesrc/AI_THUG2.H @@ -0,0 +1,1003 @@ +#define FRAME_sitdn1_01 0 +#define FRAME_sitdn1_02 1 +#define FRAME_sitdn1_03 2 +#define FRAME_sitdn1_04 3 +#define FRAME_sitdn1_05 4 +#define FRAME_sitdn1_06 5 +#define FRAME_sitdn1_07 6 +#define FRAME_sitdn1_08 7 +#define FRAME_sitdn1_09 8 +#define FRAME_sitdn1_10 9 +#define FRAME_sitdn1_11 10 +#define FRAME_sitdn1_12 11 +#define FRAME_sitdn2_01 12 +#define FRAME_sitdn2_02 13 +#define FRAME_sitdn2_03 14 +#define FRAME_sitdn2_04 15 +#define FRAME_sitdn2_05 16 +#define FRAME_sitdn2_06 17 +#define FRAME_sitdn2_07 18 +#define FRAME_sitdn2_08 19 +#define FRAME_sitdn2_09 20 +#define FRAME_sitdn2_10 21 +#define FRAME_sitdn2_11 22 +#define FRAME_sitdn2_12 23 +#define FRAME_sitdn2_13 24 +#define FRAME_sitdn2_14 25 +#define FRAME_sitdn2_15 26 +#define FRAME_sitdn2_16 27 +#define FRAME_sitdn2_17 28 +#define FRAME_sitdn2_18 29 +#define FRAME_sitdn2_19 30 +#define FRAME_sitdn2_20 31 +#define FRAME_sitdn2_21 32 +#define FRAME_sitdn2_22 33 +#define FRAME_sitdn2_23 34 +#define FRAME_sitdn2_24 35 +#define FRAME_sitdn2_25 36 +#define FRAME_sitdn2_26 37 +#define FRAME_sitdn2_27 38 +#define FRAME_sitdn2_28 39 +#define FRAME_sitdn2_29 40 +#define FRAME_sitdn2_30 41 +#define FRAME_sitdn2_31 42 +#define FRAME_sitdn2_32 43 +#define FRAME_sitdn2_33 44 +#define FRAME_sitdn2_34 45 +#define FRAME_sitdn2_35 46 +#define FRAME_ambsit1_01 47 +#define FRAME_ambsit1_02 48 +#define FRAME_ambsit1_03 49 +#define FRAME_ambsit1_04 50 +#define FRAME_ambsit1_05 51 +#define FRAME_ambsit1_06 52 +#define FRAME_ambsit1_07 53 +#define FRAME_ambsit1_08 54 +#define FRAME_ambsit1_09 55 +#define FRAME_ambsit1_10 56 +#define FRAME_ambsit1_11 57 +#define FRAME_ambsit1_12 58 +#define FRAME_ambsit1_13 59 +#define FRAME_ambsit1_14 60 +#define FRAME_ambsit1_15 61 +#define FRAME_ambsit1_16 62 +#define FRAME_ambsit1_17 63 +#define FRAME_ambsit1_18 64 +#define FRAME_ambsit1_19 65 +#define FRAME_ambsit1_20 66 +#define FRAME_ambsit1_21 67 +#define FRAME_ambsit1_22 68 +#define FRAME_ambsit1_23 69 +#define FRAME_ambsit1_24 70 +#define FRAME_ambsit2_01 71 +#define FRAME_ambsit2_02 72 +#define FRAME_ambsit2_03 73 +#define FRAME_ambsit2_04 74 +#define FRAME_ambsit2_05 75 +#define FRAME_ambsit2_06 76 +#define FRAME_ambsit2_07 77 +#define FRAME_ambsit2_08 78 +#define FRAME_ambsit2_09 79 +#define FRAME_ambsit2_10 80 +#define FRAME_ambsit3_01 81 +#define FRAME_ambsit3_02 82 +#define FRAME_ambsit3_03 83 +#define FRAME_ambsit3_04 84 +#define FRAME_ambsit3_05 85 +#define FRAME_ambsit3_06 86 +#define FRAME_ambsit3_07 87 +#define FRAME_ambsit3_08 88 +#define FRAME_ambsit3_09 89 +#define FRAME_ambsit3_10 90 +#define FRAME_ambsit3_11 91 +#define FRAME_ambsit3_12 92 +#define FRAME_ambsit4_01 93 +#define FRAME_ambsit4_02 94 +#define FRAME_ambsit4_03 95 +#define FRAME_ambsit4_04 96 +#define FRAME_ambsit4_05 97 +#define FRAME_ambsit4_06 98 +#define FRAME_ambsit4_07 99 +#define FRAME_ambsit4_08 100 +#define FRAME_ambsit4_09 101 +#define FRAME_ambsit4_10 102 +#define FRAME_ambsit4_11 103 +#define FRAME_ambsit4_12 104 +#define FRAME_ambsit4_13 105 +#define FRAME_ambsit5_01 106 +#define FRAME_ambsit5_02 107 +#define FRAME_ambsit5_03 108 +#define FRAME_ambsit5_04 109 +#define FRAME_ambsit5_05 110 +#define FRAME_ambsit5_06 111 +#define FRAME_ambsit5_07 112 +#define FRAME_ambsit5_08 113 +#define FRAME_ambsit5_09 114 +#define FRAME_ambsit5_10 115 +#define FRAME_ambsit5_11 116 +#define FRAME_ambsit5_12 117 +#define FRAME_ambsit5_13 118 +#define FRAME_ambsit5_14 119 +#define FRAME_ambsit5_15 120 +#define FRAME_ambsit5_16 121 +#define FRAME_ambsit5_17 122 +#define FRAME_ambsit5_18 123 +#define FRAME_ambsit5_19 124 +#define FRAME_ambsit5_20 125 +#define FRAME_ambsit5_21 126 +#define FRAME_ambsit5_22 127 +#define FRAME_ambsit5_23 128 +#define FRAME_ambsit5_24 129 +#define FRAME_ambsit5_25 130 +#define FRAME_ambsit5_26 131 +#define FRAME_ambsit5_27 132 +#define FRAME_ambsit5_28 133 +#define FRAME_ambsit5_29 134 +#define FRAME_ambsit5_30 135 +#define FRAME_ambsit6_01 136 +#define FRAME_ambsit6_02 137 +#define FRAME_ambsit6_03 138 +#define FRAME_ambsit6_04 139 +#define FRAME_ambsit6_05 140 +#define FRAME_ambsit6_06 141 +#define FRAME_ambsit6_07 142 +#define FRAME_ambsit6_08 143 +#define FRAME_ambsit6_09 144 +#define FRAME_ambsit6_10 145 +#define FRAME_ambsit6_11 146 +#define FRAME_ambsit6_12 147 +#define FRAME_ambsit6_13 148 +#define FRAME_ambsit6_14 149 +#define FRAME_ambsit6_15 150 +#define FRAME_ambsit6_16 151 +#define FRAME_ambsit6_17 152 +#define FRAME_ambsit6_18 153 +#define FRAME_ambsit6_19 154 +#define FRAME_ambsit6_20 155 +#define FRAME_ambsit6_21 156 +#define FRAME_ambsit6_22 157 +#define FRAME_ambsit6_23 158 +#define FRAME_ambsit7_01 159 +#define FRAME_ambsit7_02 160 +#define FRAME_ambsit7_03 161 +#define FRAME_ambsit7_04 162 +#define FRAME_ambsit7_05 163 +#define FRAME_ambsit7_06 164 +#define FRAME_ambsit7_07 165 +#define FRAME_ambsit7_08 166 +#define FRAME_ambsit7_09 167 +#define FRAME_ambsit7_10 168 +#define FRAME_ambsit7_11 169 +#define FRAME_ambsit7_12 170 +#define FRAME_ambsit7_13 171 +#define FRAME_ambsit7_14 172 +#define FRAME_ambsit7_15 173 +#define FRAME_ambsit7_16 174 +#define FRAME_ambsit7_17 175 +#define FRAME_ambsit7_18 176 +#define FRAME_ambsit7_19 177 +#define FRAME_ambsit7_20 178 +#define FRAME_ambsit7_21 179 +#define FRAME_ambsit7_22 180 +#define FRAME_ambsit7_23 181 +#define FRAME_ambsit7_24 182 +#define FRAME_ambsit7_25 183 +#define FRAME_ambsit7_26 184 +#define FRAME_ambsit7_27 185 +#define FRAME_ambsit7_28 186 +#define FRAME_ambsit7_29 187 +#define FRAME_ambsit7_30 188 +#define FRAME_ambsit7_31 189 +#define FRAME_ambsit7_32 190 +#define FRAME_ambsit7_33 191 +#define FRAME_ambsit7_34 192 +#define FRAME_ambsit8_01 193 +#define FRAME_ambsit8_02 194 +#define FRAME_ambsit8_03 195 +#define FRAME_ambsit8_04 196 +#define FRAME_ambsit8_05 197 +#define FRAME_ambsit8_06 198 +#define FRAME_ambsit8_07 199 +#define FRAME_ambsit8_08 200 +#define FRAME_ambsit8_09 201 +#define FRAME_ambsit8_10 202 +#define FRAME_ambsit8_11 203 +#define FRAME_ambsit8_12 204 +#define FRAME_ambsit8_13 205 +#define FRAME_ambsit8_14 206 +#define FRAME_ambsit8_15 207 +#define FRAME_ambsit8_16 208 +#define FRAME_ambsit9_01 209 +#define FRAME_ambsit9_02 210 +#define FRAME_ambsit9_03 211 +#define FRAME_ambsit9_04 212 +#define FRAME_ambsit9_05 213 +#define FRAME_ambsit9_06 214 +#define FRAME_ambsit9_07 215 +#define FRAME_ambsit9_08 216 +#define FRAME_ambsit9_09 217 +#define FRAME_ambsit9_10 218 +#define FRAME_ambsit9_11 219 +#define FRAME_ambsit9_12 220 +#define FRAME_ambsit9_13 221 +#define FRAME_ambsit9_14 222 +#define FRAME_ambsit9_15 223 +#define FRAME_ambsit9_16 224 +#define FRAME_ambsit9_17 225 +#define FRAME_ambsit9_18 226 +#define FRAME_ambsit9_19 227 +#define FRAME_ambsit9_20 228 +#define FRAME_ambsit9_21 229 +#define FRAME_ambsit9_22 230 +#define FRAME_ambsit9_23 231 +#define FRAME_ambsit9_24 232 +#define FRAME_ambsit9_25 233 +#define FRAME_cards1_01 234 +#define FRAME_cards1_02 235 +#define FRAME_cards1_03 236 +#define FRAME_cards1_04 237 +#define FRAME_cards1_05 238 +#define FRAME_cards1_06 239 +#define FRAME_cards1_07 240 +#define FRAME_cards1_08 241 +#define FRAME_cards1_09 242 +#define FRAME_cards1_10 243 +#define FRAME_cards1_11 244 +#define FRAME_cards1_12 245 +#define FRAME_cards1_13 246 +#define FRAME_cards1_14 247 +#define FRAME_cards1_15 248 +#define FRAME_cards1_16 249 +#define FRAME_cards1_17 250 +#define FRAME_cards1_18 251 +#define FRAME_cards1_19 252 +#define FRAME_cards1_20 253 +#define FRAME_cards1_21 254 +#define FRAME_cards1_22 255 +#define FRAME_cards2_01 256 +#define FRAME_cards2_02 257 +#define FRAME_cards2_03 258 +#define FRAME_cards2_04 259 +#define FRAME_cards2_05 260 +#define FRAME_cards2_06 261 +#define FRAME_cards2_07 262 +#define FRAME_cards2_08 263 +#define FRAME_cards2_09 264 +#define FRAME_cards2_10 265 +#define FRAME_cards2_11 266 +#define FRAME_cards2_12 267 +#define FRAME_cards2_13 268 +#define FRAME_cards2_14 269 +#define FRAME_cards2_15 270 +#define FRAME_cards2_16 271 +#define FRAME_cards3_01 272 +#define FRAME_cards3_02 273 +#define FRAME_cards3_03 274 +#define FRAME_cards3_04 275 +#define FRAME_cards3_05 276 +#define FRAME_cards3_06 277 +#define FRAME_cards3_07 278 +#define FRAME_cards3_08 279 +#define FRAME_cards3_09 280 +#define FRAME_cards3_10 281 +#define FRAME_cards3_11 282 +#define FRAME_cards3_12 283 +#define FRAME_cards3_13 284 +#define FRAME_cards3_14 285 +#define FRAME_cards3_15 286 +#define FRAME_cards3_16 287 +#define FRAME_cards3_17 288 +#define FRAME_cards3_18 289 +#define FRAME_cards3_19 290 +#define FRAME_cards3_20 291 +#define FRAME_cards3_21 292 +#define FRAME_cards3_22 293 +#define FRAME_cards3_23 294 +#define FRAME_cards3_24 295 +#define FRAME_cards3_25 296 +#define FRAME_cards3_26 297 +#define FRAME_cards3_27 298 +#define FRAME_cards3_28 299 +#define FRAME_cards3_29 300 +#define FRAME_cards3_30 301 +#define FRAME_cards3_31 302 +#define FRAME_cards3_32 303 +#define FRAME_cards3_33 304 +#define FRAME_cards3_34 305 +#define FRAME_cards3_35 306 +#define FRAME_cards3_36 307 +#define FRAME_cards4_01 308 +#define FRAME_cards4_02 309 +#define FRAME_cards4_03 310 +#define FRAME_cards4_04 311 +#define FRAME_cards4_05 312 +#define FRAME_cards4_06 313 +#define FRAME_cards4_07 314 +#define FRAME_cards4_08 315 +#define FRAME_cards4_09 316 +#define FRAME_cards4_10 317 +#define FRAME_cards4_11 318 +#define FRAME_cards4_12 319 +#define FRAME_cards4_13 320 +#define FRAME_cards4_14 321 +#define FRAME_cards4_15 322 +#define FRAME_cards4_16 323 +#define FRAME_cards4_17 324 +#define FRAME_cards4_18 325 +#define FRAME_cards4_19 326 +#define FRAME_cards4_20 327 +#define FRAME_cards4_21 328 +#define FRAME_cards4_22 329 +#define FRAME_cards4_23 330 +#define FRAME_cards4_24 331 +#define FRAME_cards4_25 332 +#define FRAME_cards4_26 333 +#define FRAME_cards4_27 334 +#define FRAME_cards4_28 335 +#define FRAME_cards4_29 336 +#define FRAME_cards4_30 337 +#define FRAME_cards4_31 338 +#define FRAME_cards4_32 339 +#define FRAME_cards4_33 340 +#define FRAME_cards4_34 341 +#define FRAME_cards4_35 342 +#define FRAME_cards4_36 343 +#define FRAME_cards4_37 344 +#define FRAME_cards5_01 345 +#define FRAME_cards5_02 346 +#define FRAME_cards5_03 347 +#define FRAME_cards5_04 348 +#define FRAME_cards5_05 349 +#define FRAME_cards5_06 350 +#define FRAME_cards5_07 351 +#define FRAME_cards5_08 352 +#define FRAME_cards5_09 353 +#define FRAME_cards5_10 354 +#define FRAME_cards5_11 355 +#define FRAME_cards5_12 356 +#define FRAME_cards5_13 357 +#define FRAME_cards5_14 358 +#define FRAME_cards6_01 359 +#define FRAME_cards6_02 360 +#define FRAME_cards6_03 361 +#define FRAME_cards6_04 362 +#define FRAME_cards6_05 363 +#define FRAME_cards6_06 364 +#define FRAME_cards6_07 365 +#define FRAME_cards6_08 366 +#define FRAME_cards6_09 367 +#define FRAME_cards6_10 368 +#define FRAME_cards6_11 369 +#define FRAME_cards6_12 370 +#define FRAME_cards6_13 371 +#define FRAME_cards6_14 372 +#define FRAME_cards6_15 373 +#define FRAME_cards6_16 374 +#define FRAME_cards6_17 375 +#define FRAME_cards6_18 376 +#define FRAME_cards6_19 377 +#define FRAME_cards6_20 378 +#define FRAME_cards7_01 379 +#define FRAME_cards7_02 380 +#define FRAME_cards7_03 381 +#define FRAME_cards7_04 382 +#define FRAME_cards7_05 383 +#define FRAME_cards7_06 384 +#define FRAME_cards7_07 385 +#define FRAME_cards7_08 386 +#define FRAME_cards7_09 387 +#define FRAME_cards7_10 388 +#define FRAME_cards7_11 389 +#define FRAME_cards7_12 390 +#define FRAME_cards7_13 391 +#define FRAME_cards7_14 392 +#define FRAME_cards7_15 393 +#define FRAME_cards7_16 394 +#define FRAME_cards7_17 395 +#define FRAME_cards7_18 396 +#define FRAME_jumpup_nw_01 397 +#define FRAME_jumpup_nw_02 398 +#define FRAME_jumpup_nw_03 399 +#define FRAME_jumpup_nw_04 400 +#define FRAME_jumpup_nw_05 401 +#define FRAME_jumpup_nw_06 402 +#define FRAME_jumpup_nw_07 403 +#define FRAME_jumpup_nw_08 404 +#define FRAME_jumpup_nw_09 405 +#define FRAME_jumpup_nw_10 406 +#define FRAME_jumpup_nw_11 407 +#define FRAME_jumpup_g_01 408 +#define FRAME_jumpup_g_02 409 +#define FRAME_jumpup_g_03 410 +#define FRAME_jumpup_g_04 411 +#define FRAME_jumpup_g_05 412 +#define FRAME_jumpup_g_06 413 +#define FRAME_jumpup_g_07 414 +#define FRAME_jumpup_g_08 415 +#define FRAME_jumpup_g_09 416 +#define FRAME_ambstand1_01 417 +#define FRAME_ambstand1_02 418 +#define FRAME_ambstand1_03 419 +#define FRAME_ambstand1_04 420 +#define FRAME_ambstand1_05 421 +#define FRAME_ambstand1_06 422 +#define FRAME_ambstand1_07 423 +#define FRAME_ambstand1_08 424 +#define FRAME_ambstand1_09 425 +#define FRAME_ambstand1_10 426 +#define FRAME_ambstand1_11 427 +#define FRAME_ambstand1_12 428 +#define FRAME_ambstand1_13 429 +#define FRAME_ambstand2_01 430 +#define FRAME_ambstand2_02 431 +#define FRAME_ambstand2_03 432 +#define FRAME_surrender_01 433 +#define FRAME_surrender_02 434 +#define FRAME_surrender_03 435 +#define FRAME_surrender_04 436 +#define FRAME_surrender_05 437 +#define FRAME_surrender_06 438 +#define FRAME_surrender_07 439 +#define FRAME_surrender_08 440 +#define FRAME_surr2std_01 441 +#define FRAME_surr2std_02 442 +#define FRAME_surr2std_03 443 +#define FRAME_surr2std_04 444 +#define FRAME_surr2std_05 445 +#define FRAME_surr2std_06 446 +#define FRAME_pull_guns_01 447 +#define FRAME_pull_guns_02 448 +#define FRAME_pull_guns_03 449 +#define FRAME_pull_guns_04 450 +#define FRAME_pull_guns_05 451 +#define FRAME_pull_guns_06 452 +#define FRAME_pull_guns_07 453 +#define FRAME_pull_guns_08 454 +#define FRAME_shoot_01 455 +#define FRAME_shoot_02 456 +#define FRAME_shoot_03 457 +#define FRAME_shoot_04 458 +#define FRAME_reload_01 459 +#define FRAME_reload_02 460 +#define FRAME_reload_03 461 +#define FRAME_reload_04 462 +#define FRAME_reload_05 463 +#define FRAME_reload_06 464 +#define FRAME_reload_07 465 +#define FRAME_reload_08 466 +#define FRAME_reload_09 467 +#define FRAME_reload_10 468 +#define FRAME_reload_11 469 +#define FRAME_reload_12 470 +#define FRAME_reload_13 471 +#define FRAME_kneel_01 472 +#define FRAME_kneel_02 473 +#define FRAME_kneel_03 474 +#define FRAME_kneel_04 475 +#define FRAME_kneel_05 476 +#define FRAME_kneel_06 477 +#define FRAME_kneel_07 478 +#define FRAME_knl_shoot_01 479 +#define FRAME_knl_shoot_02 480 +#define FRAME_knl_shoot_03 481 +#define FRAME_knl_shoot_04 482 +#define FRAME_knl_shoot_05 483 +#define FRAME_knl_shoot_06 484 +#define FRAME_melee1_01 485 +#define FRAME_melee1_02 486 +#define FRAME_melee1_03 487 +#define FRAME_melee1_04 488 +#define FRAME_melee1_05 489 +#define FRAME_melee1_06 490 +#define FRAME_melee1_07 491 +#define FRAME_melee1_08 492 +#define FRAME_melee2_01 493 +#define FRAME_melee2_02 494 +#define FRAME_melee2_03 495 +#define FRAME_melee2_04 496 +#define FRAME_melee2_05 497 +#define FRAME_melee2_06 498 +#define FRAME_melee2_07 499 +#define FRAME_melee2_08 500 +#define FRAME_melee2_09 501 +#define FRAME_melee3_01 502 +#define FRAME_melee3_02 503 +#define FRAME_melee3_03 504 +#define FRAME_melee3_04 505 +#define FRAME_melee3_05 506 +#define FRAME_melee3_06 507 +#define FRAME_melee3_07 508 +#define FRAME_melee4_01 509 +#define FRAME_melee4_02 510 +#define FRAME_melee4_03 511 +#define FRAME_melee4_04 512 +#define FRAME_melee4_05 513 +#define FRAME_melee4_06 514 +#define FRAME_melee5_01 515 +#define FRAME_melee5_02 516 +#define FRAME_melee5_03 517 +#define FRAME_melee5_04 518 +#define FRAME_melee5_05 519 +#define FRAME_melee5_06 520 +#define FRAME_melee5_07 521 +#define FRAME_low_melee1_01 522 +#define FRAME_low_melee1_02 523 +#define FRAME_low_melee1_03 524 +#define FRAME_low_melee1_04 525 +#define FRAME_low_melee1_05 526 +#define FRAME_low_melee1_06 527 +#define FRAME_low_melee1_07 528 +#define FRAME_low_melee1_08 529 +#define FRAME_low_melee1_09 530 +#define FRAME_low_melee1_10 531 +#define FRAME_jump_01 532 +#define FRAME_jump_02 533 +#define FRAME_jump_03 534 +#define FRAME_jump_04 535 +#define FRAME_jump_05 536 +#define FRAME_jump_06 537 +#define FRAME_jump_07 538 +#define FRAME_jump_08 539 +#define FRAME_jump_09 540 +#define FRAME_jump_10 541 +#define FRAME_jump_11 542 +#define FRAME_jump_12 543 +#define FRAME_jump_13 544 +#define FRAME_jump_14 545 +#define FRAME_jump_15 546 +#define FRAME_jump_16 547 +#define FRAME_jump_17 548 +#define FRAME_st_clmb_01 549 +#define FRAME_st_clmb_02 550 +#define FRAME_clmb_loop_01 551 +#define FRAME_clmb_loop_02 552 +#define FRAME_clmb_loop_03 553 +#define FRAME_clmb_loop_04 554 +#define FRAME_clmb_loop_05 555 +#define FRAME_clmb_loop_06 556 +#define FRAME_clmb_loop_07 557 +#define FRAME_clmb_loop_08 558 +#define FRAME_clmb_loop_09 559 +#define FRAME_clmb_over_01 560 +#define FRAME_clmb_over_02 561 +#define FRAME_clmb_over_03 562 +#define FRAME_clmb_over_04 563 +#define FRAME_clmb_over_05 564 +#define FRAME_clmb_over_06 565 +#define FRAME_clmb_over_07 566 +#define FRAME_clmb_over_08 567 +#define FRAME_clmb_over_09 568 +#define FRAME_clmb_over_10 569 +#define FRAME_clmb_over_11 570 +#define FRAME_clmb_over_12 571 +#define FRAME_clmb_over_13 572 +#define FRAME_clmb_over_14 573 +#define FRAME_clmb_over_15 574 +#define FRAME_pain_Rarm_01 575 +#define FRAME_pain_Rarm_02 576 +#define FRAME_pain_Rarm_03 577 +#define FRAME_pain_Rarm_04 578 +#define FRAME_pain_Rarm_05 579 +#define FRAME_pain_Rarm_06 580 +#define FRAME_pain_Rarm_07 581 +#define FRAME_pain_Rarm_08 582 +#define FRAME_pain_Rarm_09 583 +#define FRAME_pain_Rarm_10 584 +#define FRAME_pain_Larm_01 585 +#define FRAME_pain_Larm_02 586 +#define FRAME_pain_Larm_03 587 +#define FRAME_pain_Larm_04 588 +#define FRAME_pain_Larm_05 589 +#define FRAME_pain_Larm_06 590 +#define FRAME_pain_Larm_07 591 +#define FRAME_pain_Larm_08 592 +#define FRAME_pain_Larm_09 593 +#define FRAME_pain_chest_01 594 +#define FRAME_pain_chest_02 595 +#define FRAME_pain_chest_03 596 +#define FRAME_pain_chest_04 597 +#define FRAME_pain_chest_05 598 +#define FRAME_pain_chest_06 599 +#define FRAME_pain_chest_07 600 +#define FRAME_pain_chest_08 601 +#define FRAME_pain_chest_09 602 +#define FRAME_pain_head_01 603 +#define FRAME_pain_head_02 604 +#define FRAME_pain_head_03 605 +#define FRAME_pain_head_04 606 +#define FRAME_pain_head_05 607 +#define FRAME_pain_head_06 608 +#define FRAME_pain_head_07 609 +#define FRAME_pain_head_08 610 +#define FRAME_pain_head_09 611 +#define FRAME_pain_head_10 612 +#define FRAME_pain_Rleg_01 613 +#define FRAME_pain_Rleg_02 614 +#define FRAME_pain_Rleg_03 615 +#define FRAME_pain_Rleg_04 616 +#define FRAME_pain_Rleg_05 617 +#define FRAME_pain_Rleg_06 618 +#define FRAME_pain_Rleg_07 619 +#define FRAME_pain_Rleg_08 620 +#define FRAME_pain_Rleg_09 621 +#define FRAME_pain_Rleg_10 622 +#define FRAME_pain_Lleg_01 623 +#define FRAME_pain_Lleg_02 624 +#define FRAME_pain_Lleg_03 625 +#define FRAME_pain_Lleg_04 626 +#define FRAME_pain_Lleg_05 627 +#define FRAME_pain_Lleg_06 628 +#define FRAME_pain_Lleg_07 629 +#define FRAME_pain_Lleg_08 630 +#define FRAME_pain_crch_01 631 +#define FRAME_pain_crch_02 632 +#define FRAME_pain_crch_03 633 +#define FRAME_pain_crch_04 634 +#define FRAME_pain_crch_05 635 +#define FRAME_pain_crch_06 636 +#define FRAME_pain_crch_07 637 +#define FRAME_pain_crch_08 638 +#define FRAME_pain_crch_09 639 +#define FRAME_pain_crch_10 640 +#define FRAME_pain_crch_11 641 +#define FRAME_pain_butt_01 642 +#define FRAME_pain_butt_02 643 +#define FRAME_pain_butt_03 644 +#define FRAME_pain_butt_04 645 +#define FRAME_pain_butt_05 646 +#define FRAME_pain_butt_06 647 +#define FRAME_pain_butt_07 648 +#define FRAME_pain_butt_08 649 +#define FRAME_pain_butt_09 650 +#define FRAME_nw_pain_Rarm_01 651 +#define FRAME_nw_pain_Rarm_02 652 +#define FRAME_nw_pain_Rarm_03 653 +#define FRAME_nw_pain_Rarm_04 654 +#define FRAME_nw_pain_Rarm_05 655 +#define FRAME_nw_pain_Rarm_06 656 +#define FRAME_nw_pain_Rarm_07 657 +#define FRAME_nw_pain_Rarm_08 658 +#define FRAME_nw_pain_Rarm_09 659 +#define FRAME_nw_pain_Rarm_10 660 +#define FRAME_nw_pain_Rarm_11 661 +#define FRAME_nw_pain_Larm_01 662 +#define FRAME_nw_pain_Larm_02 663 +#define FRAME_nw_pain_Larm_03 664 +#define FRAME_nw_pain_Larm_04 665 +#define FRAME_nw_pain_Larm_05 666 +#define FRAME_nw_pain_Larm_06 667 +#define FRAME_nw_pain_Larm_07 668 +#define FRAME_nw_pain_Larm_08 669 +#define FRAME_nw_pain_Larm_09 670 +#define FRAME_nw_pain_Larm_10 671 +#define FRAME_nw_pain_Larm_11 672 +#define FRAME_nw_pain_chst_01 673 +#define FRAME_nw_pain_chst_02 674 +#define FRAME_nw_pain_chst_03 675 +#define FRAME_nw_pain_chst_04 676 +#define FRAME_nw_pain_chst_05 677 +#define FRAME_nw_pain_chst_06 678 +#define FRAME_nw_pain_chst_07 679 +#define FRAME_nw_pain_chst_08 680 +#define FRAME_nw_pain_chst_09 681 +#define FRAME_nw_pain_chst_10 682 +#define FRAME_nw_pain_chst_11 683 +#define FRAME_nw_pain_head_01 684 +#define FRAME_nw_pain_head_02 685 +#define FRAME_nw_pain_head_03 686 +#define FRAME_nw_pain_head_04 687 +#define FRAME_nw_pain_head_05 688 +#define FRAME_nw_pain_head_06 689 +#define FRAME_nw_pain_head_07 690 +#define FRAME_nw_pain_head_08 691 +#define FRAME_nw_pain_Rleg_01 692 +#define FRAME_nw_pain_Rleg_02 693 +#define FRAME_nw_pain_Rleg_03 694 +#define FRAME_nw_pain_Rleg_04 695 +#define FRAME_nw_pain_Rleg_05 696 +#define FRAME_nw_pain_Rleg_06 697 +#define FRAME_nw_pain_Rleg_07 698 +#define FRAME_nw_pain_Rleg_08 699 +#define FRAME_nw_pain_Rleg_09 700 +#define FRAME_nw_pain_Rleg_10 701 +#define FRAME_nw_pain_Lleg_01 702 +#define FRAME_nw_pain_Lleg_02 703 +#define FRAME_nw_pain_Lleg_03 704 +#define FRAME_nw_pain_Lleg_04 705 +#define FRAME_nw_pain_Lleg_05 706 +#define FRAME_nw_pain_Lleg_06 707 +#define FRAME_nw_pain_Lleg_07 708 +#define FRAME_nw_pain_Lleg_08 709 +#define FRAME_nw_pain_Lleg_09 710 +#define FRAME_nw_pain_Lleg_10 711 +#define FRAME_nw_pain_Lleg_11 712 +#define FRAME_nw_pain_Lleg_12 713 +#define FRAME_nw_pain_Lleg_13 714 +#define FRAME_nw_pain_crch_01 715 +#define FRAME_nw_pain_crch_02 716 +#define FRAME_nw_pain_crch_03 717 +#define FRAME_nw_pain_crch_04 718 +#define FRAME_nw_pain_crch_05 719 +#define FRAME_nw_pain_crch_06 720 +#define FRAME_nw_pain_crch_07 721 +#define FRAME_nw_pain_crch_08 722 +#define FRAME_nw_pain_crch_09 723 +#define FRAME_nw_pain_crch_10 724 +#define FRAME_nw_pain_crch_11 725 +#define FRAME_nw_pain_crch_12 726 +#define FRAME_nw_pain_crch_13 727 +#define FRAME_nw_pain_crch_14 728 +#define FRAME_nw_pain_crch_15 729 +#define FRAME_nw_pain_crch_16 730 +#define FRAME_nw_pain_butt_01 731 +#define FRAME_nw_pain_butt_02 732 +#define FRAME_nw_pain_butt_03 733 +#define FRAME_nw_pain_butt_04 734 +#define FRAME_nw_pain_butt_05 735 +#define FRAME_nw_pain_butt_06 736 +#define FRAME_nw_pain_butt_07 737 +#define FRAME_nw_pain_butt_08 738 +#define FRAME_nw_pain_butt_09 739 +#define FRAME_nw_pain_butt_10 740 +#define FRAME_nw_pain_butt_11 741 +#define FRAME_nw_pain_butt_12 742 +#define FRAME_nw_pain_butt_13 743 +#define FRAME_nw_pain_butt_14 744 +#define FRAME_death1_01 745 +#define FRAME_death1_02 746 +#define FRAME_death1_03 747 +#define FRAME_death1_04 748 +#define FRAME_death1_05 749 +#define FRAME_death1_06 750 +#define FRAME_death1_07 751 +#define FRAME_death1_08 752 +#define FRAME_death1_09 753 +#define FRAME_death1_10 754 +#define FRAME_death1_11 755 +#define FRAME_death1_12 756 +#define FRAME_death1_13 757 +#define FRAME_death1_14 758 +#define FRAME_death1_15 759 +#define FRAME_death1_16 760 +#define FRAME_death2_01 761 +#define FRAME_death2_02 762 +#define FRAME_death2_03 763 +#define FRAME_death2_04 764 +#define FRAME_death2_05 765 +#define FRAME_death2_06 766 +#define FRAME_death2_07 767 +#define FRAME_death2_08 768 +#define FRAME_death2_09 769 +#define FRAME_death2_10 770 +#define FRAME_death2_11 771 +#define FRAME_death2_12 772 +#define FRAME_death2_13 773 +#define FRAME_death2_14 774 +#define FRAME_death2_15 775 +#define FRAME_death2_16 776 +#define FRAME_death2_17 777 +#define FRAME_death2_18 778 +#define FRAME_death2_19 779 +#define FRAME_death3_01 780 +#define FRAME_death3_02 781 +#define FRAME_death3_03 782 +#define FRAME_death3_04 783 +#define FRAME_death3_05 784 +#define FRAME_death3_06 785 +#define FRAME_death3_07 786 +#define FRAME_death3_08 787 +#define FRAME_death3_09 788 +#define FRAME_death3_10 789 +#define FRAME_death3_11 790 +#define FRAME_death3_12 791 +#define FRAME_death3_13 792 +#define FRAME_death3_14 793 +#define FRAME_death4_01 794 +#define FRAME_death4_02 795 +#define FRAME_death4_03 796 +#define FRAME_death4_04 797 +#define FRAME_death4_05 798 +#define FRAME_death4_06 799 +#define FRAME_death4_07 800 +#define FRAME_death4_08 801 +#define FRAME_death4_09 802 +#define FRAME_death4_10 803 +#define FRAME_death4_11 804 +#define FRAME_death4_12 805 +#define FRAME_death4_13 806 +#define FRAME_death4_14 807 +#define FRAME_death4_15 808 +#define FRAME_death5_01 809 +#define FRAME_death5_02 810 +#define FRAME_death5_03 811 +#define FRAME_death5_04 812 +#define FRAME_death5_05 813 +#define FRAME_death5_06 814 +#define FRAME_death5_07 815 +#define FRAME_death5_08 816 +#define FRAME_death5_09 817 +#define FRAME_death5_10 818 +#define FRAME_death5_11 819 +#define FRAME_death5_12 820 +#define FRAME_death5_13 821 +#define FRAME_death5_14 822 +#define FRAME_death5_15 823 +#define FRAME_death5_16 824 +#define FRAME_death5_17 825 +#define FRAME_death5_18 826 +#define FRAME_crch_dth_01 827 +#define FRAME_crch_dth_02 828 +#define FRAME_crch_dth_03 829 +#define FRAME_crch_dth_04 830 +#define FRAME_crch_dth_05 831 +#define FRAME_crch_dth_06 832 +#define FRAME_crch_dth_07 833 +#define FRAME_crch_dth_08 834 +#define FRAME_crch_dth_09 835 +#define FRAME_crch_dth_10 836 +#define FRAME_crch_dth_11 837 +#define FRAME_crch_dth_12 838 +#define FRAME_crch_dth_13 839 +#define FRAME_crch_dth_14 840 +#define FRAME_crch_dth_15 841 +#define FRAME_crch_dth_16 842 +#define FRAME_crch_dth_17 843 +#define FRAME_crch_dth_18 844 +#define FRAME_crch_dth_19 845 +#define FRAME_crch_knl_dn_01 846 +#define FRAME_crch_knl_dn_02 847 +#define FRAME_crch_knl_dn_03 848 +#define FRAME_crch_knl_dn_04 849 +#define FRAME_crch_amb_sdt_01 850 +#define FRAME_crch_amb_sdt_02 851 +#define FRAME_crch_amb_sdt_03 852 +#define FRAME_crch_amb_sdt_04 853 +#define FRAME_crch_amb_sdt_05 854 +#define FRAME_crch_amb_sdt_06 855 +#define FRAME_crch_amb_sdt_07 856 +#define FRAME_crch_amb_sdt_08 857 +#define FRAME_crch_amb_sdt_09 858 +#define FRAME_crch_amb_sdt_10 859 +#define FRAME_crch_amb_sdt_11 860 +#define FRAME_crch_amb_sdt_12 861 +#define FRAME_crch_amb_sdt_13 862 +#define FRAME_crch_amb_sdt_14 863 +#define FRAME_crch_amb_sdt_15 864 +#define FRAME_crch_amb_sdt_16 865 +#define FRAME_crch_amb_sdt_17 866 +#define FRAME_crch_amb_sdt_18 867 +#define FRAME_crch_amb_sdt_19 868 +#define FRAME_crch_amb_sdt_20 869 +#define FRAME_crch_amb_sdt_21 870 +#define FRAME_crch_amb_sdt_22 871 +#define FRAME_crch_amb_sdt_23 872 +#define FRAME_crch_amb_sdt_24 873 +#define FRAME_crch_shoot_01 874 +#define FRAME_crch_shoot_02 875 +#define FRAME_crch_shoot_03 876 +#define FRAME_crch_shoot_04 877 +#define FRAME_crch_shoot_05 878 +#define FRAME_crouch_shfl_01 879 +#define FRAME_crouch_shfl_02 880 +#define FRAME_crouch_shfl_03 881 +#define FRAME_crouch_shfl_04 882 +#define FRAME_crouch_shfl_05 883 +#define FRAME_crouch_shfl_06 884 +#define FRAME_crouch_walk_01 885 +#define FRAME_crouch_walk_02 886 +#define FRAME_crouch_walk_03 887 +#define FRAME_crouch_walk_04 888 +#define FRAME_crouch_walk_05 889 +#define FRAME_crouch_walk_06 890 +#define FRAME_crouch_pain1_01 891 +#define FRAME_crouch_pain1_02 892 +#define FRAME_crouch_pain1_03 893 +#define FRAME_crouch_pain1_04 894 +#define FRAME_crouch_pain1_05 895 +#define FRAME_crouch_pain1_06 896 +#define FRAME_crouch_pain1_07 897 +#define FRAME_crouch_pain1_08 898 +#define FRAME_crouch_pain2_01 899 +#define FRAME_crouch_pain2_02 900 +#define FRAME_crouch_pain2_03 901 +#define FRAME_crouch_pain2_04 902 +#define FRAME_crouch_pain2_05 903 +#define FRAME_crouch_pain2_06 904 +#define FRAME_crouch_pain3_01 905 +#define FRAME_crouch_pain3_02 906 +#define FRAME_crouch_pain3_03 907 +#define FRAME_crouch_pain3_04 908 +#define FRAME_crouch_pain3_05 909 +#define FRAME_crouch_pain3_06 910 +#define FRAME_evade_01 911 +#define FRAME_evade_02 912 +#define FRAME_evade_03 913 +#define FRAME_evade_04 914 +#define FRAME_evade_05 915 +#define FRAME_evade_06 916 +#define FRAME_evade_07 917 +#define FRAME_evade_08 918 +#define FRAME_evade_09 919 +#define FRAME_evade_10 920 +#define FRAME_evade_11 921 +#define FRAME_evade_12 922 +#define FRAME_evade_13 923 +#define FRAME_evade_amb_01 924 +#define FRAME_evade_amb_02 925 +#define FRAME_evade_amb_03 926 +#define FRAME_evade_amb_04 927 +#define FRAME_evade_amb_05 928 +#define FRAME_evade_amb_06 929 +#define FRAME_evade_amb_07 930 +#define FRAME_lside_step_01 931 +#define FRAME_lside_step_02 932 +#define FRAME_lside_step_03 933 +#define FRAME_lside_step_04 934 +#define FRAME_lside_step_05 935 +#define FRAME_lside_step_06 936 +#define FRAME_lside_step_07 937 +#define FRAME_rside_step_01 938 +#define FRAME_rside_step_02 939 +#define FRAME_rside_step_03 940 +#define FRAME_rside_step_04 941 +#define FRAME_rside_step_05 942 +#define FRAME_rside_step_06 943 +#define FRAME_rside_step_07 944 +#define FRAME_walk_shoot_01 945 +#define FRAME_walk_shoot_02 946 +#define FRAME_walk_shoot_03 947 +#define FRAME_walk_shoot_04 948 +#define FRAME_walk_shoot_05 949 +#define FRAME_walk_shoot_06 950 +#define FRAME_walk_shoot_07 951 +#define FRAME_walk_shoot_08 952 +#define FRAME_walk_shoot_09 953 +#define FRAME_walk_shoot_10 954 +#define FRAME_walk_guns_dn_01 955 +#define FRAME_walk_guns_dn_02 956 +#define FRAME_walk_guns_dn_03 957 +#define FRAME_walk_guns_dn_04 958 +#define FRAME_walk_guns_dn_05 959 +#define FRAME_walk_guns_dn_06 960 +#define FRAME_walk_guns_dn_07 961 +#define FRAME_walk_guns_dn_08 962 +#define FRAME_walk_guns_dn_09 963 +#define FRAME_walk_guns_dn_10 964 +#define FRAME_run_shoot_01 965 +#define FRAME_run_shoot_02 966 +#define FRAME_run_shoot_03 967 +#define FRAME_run_shoot_04 968 +#define FRAME_run_shoot_05 969 +#define FRAME_run_shoot_06 970 +#define FRAME_run_guns_dn_01 971 +#define FRAME_run_guns_dn_02 972 +#define FRAME_run_guns_dn_03 973 +#define FRAME_run_guns_dn_04 974 +#define FRAME_run_guns_dn_05 975 +#define FRAME_run_guns_dn_06 976 +#define FRAME_run_on_fire_01 977 +#define FRAME_run_on_fire_02 978 +#define FRAME_run_on_fire_03 979 +#define FRAME_run_on_fire_04 980 +#define FRAME_run_on_fire_05 981 +#define FRAME_run_on_fire_06 982 +#define FRAME_run_melee_01 983 +#define FRAME_run_melee_02 984 +#define FRAME_run_melee_03 985 +#define FRAME_run_melee_04 986 +#define FRAME_run_melee_05 987 +#define FRAME_run_melee_06 988 +#define FRAME_lside_run_01 989 +#define FRAME_lside_run_02 990 +#define FRAME_lside_run_03 991 +#define FRAME_lside_run_04 992 +#define FRAME_lside_run_05 993 +#define FRAME_lside_run_06 994 +#define FRAME_rside_run_01 995 +#define FRAME_rside_run_02 996 +#define FRAME_rside_run_03 997 +#define FRAME_rside_run_04 998 +#define FRAME_rside_run_05 999 +#define FRAME_rside_run_06 1000 + +#define MODEL_SCALE 1.000000 diff --git a/gamesrc/AI_WHORE.C b/gamesrc/AI_WHORE.C new file mode 100644 index 0000000..888f631 --- /dev/null +++ b/gamesrc/AI_WHORE.C @@ -0,0 +1,1558 @@ +// ai_whore.c +#include "g_local.h" +#include "ai_whore.h" + +#include "voice_bitch.h" + +void whore_end_stand( edict_t *self ); +void whore_firegun( edict_t *self ); +void whore_firegun_left( edict_t *self ); +void whore_firegun_right( edict_t *self ); +void whore_talk_think( edict_t *self ); +// Joseph 20-NOV-98 +void think_killedict( edict_t *self ); +void think_playthud( edict_t *self ); +// END JOSEPH + +void whore_firegun_cr (edict_t *self); +void whore_shotgun_reload( edict_t *self ); + +void whore_reload_snd (edict_t *self); + +void whore_firehmg( edict_t *self ); +void whore_firehmg_delay (edict_t *self); +void whore_hmg_avoid (edict_t *self); + +void whore_bazooka_delay (edict_t *self); + +// ========================================================================= + +#include "ai_whore_tables.h" + +// ========================================================================= + +#define WHORE_FLAMEGUN 4 +#define WHORE_BAZOOKA 8 +#define WHORE_HMG 16 + +#define WHORE_TOMMYGUN 64 // spawnflag + +#define WHORE_GRENADE 128 +#define WHORE_SHOTGUN 8192 + + +int tommy_soundindex; +int shotgun_soundindex; +int shotgun_reload_soundindex; +int heavymachinegun_soundindex; +int rocketgun_soundindex; + +void whore_reload_snd (edict_t *self) +{ + if (self->spawnflags & WHORE_TOMMYGUN) + gi.sound(self, CHAN_VOICE, gi.soundindex("weapons/machinegun/machgcock.wav"), 1, ATTN_NORM, 0); + else if (self->spawnflags & WHORE_HMG) + gi.sound(self, CHAN_VOICE, gi.soundindex("weapons/machinegun/machgcock.wav"), 1, ATTN_NORM, 0); + else if (self->spawnflags & WHORE_BAZOOKA) + gi.sound(self, CHAN_VOICE, gi.soundindex("weapons/rocket_launcher/reload.wav"), 1, ATTN_NORM, 0); + else if (self->spawnflags & WHORE_GRENADE) + gi.sound(self, CHAN_VOICE, gi.soundindex("weapons/grenade_launcher/reload.wav"), 1, ATTN_NORM, 0); +} + +void whore_catch_fire( edict_t *self, edict_t *other ) +{ + self->enemy = NULL; // stop attacking + self->cast_info.currentmove = &whore_move_run_on_fire; +} + +void whore_talk_think( edict_t *self ) +{ + AI_TalkThink( self, false ); +} + +void whore_talk( edict_t *self ) +{ + float rnd; + + // only make talking jester if we've recently said something + if (!(self->cast_info.aiflags & AI_REPEAT_TALK_JESTURE) && self->last_talk_time < (level.time - 1.0)) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + if (self->cast_info.currentmove != self->cast_info.move_stand) + return; + + if (self->spawnflags & WHORE_SHOTGUN) + { + rnd = random() * 10; + + if (rnd < 1) + self->cast_info.currentmove = &whore_move_sg_stand; + else if (rnd < 2) + self->cast_info.currentmove = &whore_move_sg_talk1; + else if (rnd < 3) + self->cast_info.currentmove = &whore_move_sg_talk2; + else if (rnd < 4) + self->cast_info.currentmove = &whore_move_sg_talk3; + //else if (rnd < 5) + // self->cast_info.currentmove = &whore_move_sg_talk4; + else if (rnd < 6) + self->cast_info.currentmove = &whore_move_sg_talk5; + //else if (rnd < 7) + // self->cast_info.currentmove = &whore_move_sg_talk6; + else if (rnd < 8) + self->cast_info.currentmove = &whore_move_sg_talk7; + else + self->cast_info.currentmove = &whore_move_sg_talk8; + } + else + { + rnd = random() * 6; + + if (rnd < 1) + self->cast_info.currentmove = &whore_move_talk1; + else if (rnd < 2) + self->cast_info.currentmove = &whore_move_talk2; + else if (rnd < 3) + self->cast_info.currentmove = &whore_move_talk3; + else if (rnd < 4) + self->cast_info.currentmove = &whore_move_talk4; + else/* if (rnd < 5)*/ + self->cast_info.currentmove = &whore_move_talk5; + //else + // self->cast_info.currentmove = &whore_move_talk6; + } +} + +void whore_avoid ( edict_t *self, edict_t *other, qboolean face ) +{ + vec3_t vec; + + if (self->health <= 0) + return; + + if (!self->groundentity) + return; + + if (!other) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + self->cast_info.last_avoid = level.time; + self->cast_info.avoid_ent = NULL; + + if (face) + { // turn to face them + VectorSubtract( other->s.origin, self->s.origin, vec ); + self->cast_info.avoid_ent = other; + } + else + { // turn to face away from them + VectorSubtract( self->s.origin, other->s.origin, vec ); + } + VectorNormalize( vec ); + + self->ideal_yaw = vectoyaw( vec ); + + if (self->maxs[2] > DUCKING_MAX_Z) + { + if (self->cast_info.aiflags & AI_NOWALK_FACE) + { +// if (face) + { + int side_result; + + side_result = AI_SideTrace( self, 48, 90, SIDE_RANDOM ); + + if (side_result == AI_SideTrace( self, 48, 90 + (self->ideal_yaw - self->s.angles[YAW]), side_result )) + { + if (side_result < 0) + self->cast_info.currentmove = &whore_move_lside_step; + //else + // self->cast_info.currentmove = &whore_move_rside_step; + // hack + // note to self: they forgot to make an rside anim + else + self->cast_info.currentmove = &whore_move_avoid_walk; + + return; + } + + // if no move set, just turn to face + M_ChangeYaw( self ); + + return; + } + } + + if ((VectorDistance( self->s.origin, other->s.origin ) > 72) || !face) + self->cast_info.currentmove = &whore_move_avoid_walk; + else + self->cast_info.currentmove = &whore_move_avoid_reverse_walk; + } + else + { + self->cast_info.currentmove = &whore_move_avoid_crouch_walk; + } + +} + +void whore_end_stand( edict_t *self ) +{ + if (self->cast_info.move_stand_evade && (self->last_stand_evade > (level.time - 3))) + return; + + if (self->cast_info.currentmove == self->cast_info.move_crstand) + return; + +// if ( ((!self->cast_group) && (random() < 0.8)) +// || ((self->cast_group) && (random() < 0.3))) + { // stand normally + + if ( (self->cast_info.currentmove != &whore_move_talk5) + && (random() < 0.3) && self->spawnflags & WHORE_TOMMYGUN) + { // randomly wipe our face + self->cast_info.currentmove = &whore_move_talk5; + } + else + { + self->cast_info.currentmove = self->cast_info.move_stand; + } + +// return; + } + + AI_CheckTalk(self); +} + +void whore_long_attack( edict_t *self ) +{ + // keep running, and try to fire if possible + + if (self->maxs[2] < self->cast_info.standing_max_z) + return; + + // self->cast_info.currentmove = &whore_move_run_shoot; + + if (self->spawnflags & WHORE_TOMMYGUN) + self->cast_info.currentmove = &whore_move_run_tg_sht; + else if (self->spawnflags & WHORE_SHOTGUN) + self->cast_info.currentmove = &whore_move_run_shg_sht; + else if (self->spawnflags & WHORE_HMG) + self->cast_info.currentmove = &whore_move_run_hmg_sht; + else if (self->spawnflags & WHORE_BAZOOKA) + self->cast_info.currentmove = &whore_move_run_bazooka_sht; + else if (self->spawnflags & WHORE_FLAMEGUN) + self->cast_info.currentmove = &whore_move_run_flamegun_sht; + else if (self->spawnflags & WHORE_GRENADE) + self->cast_info.currentmove = &whore_move_run_grenade_sht; + else + { + gi.dprintf ("actor is missing weapon spawnflag\n"); + self->cast_info.currentmove = &whore_move_run_shg_sht; + } +} + +qboolean whore_attack( edict_t *self ) +{ + + if (self->maxs[2] < self->cast_info.standing_max_z) + { + self->cast_info.currentmove = &whore_move_crouch_shoot; + return true; + } + else + { + vec3_t vec; + float dist; + + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + dist = VectorNormalize( vec ); + + // Special case: enemy has flamethrower, run backwards, keep firing + if ( (dist < 384) // they're close + && (self->spawnflags & WHORE_TOMMYGUN) + && (self->enemy->client) + && (self->enemy->client->pers.weapon) + && (stricmp(self->enemy->client->pers.weapon->classname, "weapon_flamethrower") == 0)) + { + int side_result; + + // see if we can go backwards + if (side_result = AI_SideTrace( self, -64, 0, 1 )) + { + self->cast_info.currentmove = &whore_move_run_reverse_tg_sht; + return true; + } + + } + + // if just popped out from a corner, just stand here + if (self->dont_takecover_time > (level.time - 2)) + { + goto stand_shoot; + } + + + if ((skill->value > random()*2) && (self->cast_info.last_side_attack_time < (level.time - 1)) && (dist > 128)) + { + // attempt a side-ways attack + + int side_result, side_result2; + + side_result = AI_SideTrace( self, 64, 90, -self->cast_info.last_side_attack ); + + if (side_result) + { + side_result2 = AI_SideTrace( self, 128, 90, side_result ); + + if (side_result2 == side_result) + { + /* + if (side_result < 0) + self->cast_info.currentmove = &whore_move_lside_run; + else + self->cast_info.currentmove = &whore_move_rside_run; + */ + if (side_result < 0) + { + if (self->spawnflags & WHORE_TOMMYGUN) + self->cast_info.currentmove = &whore_move_lsd_tg_run; + else if (self->spawnflags & WHORE_SHOTGUN) + self->cast_info.currentmove = &whore_move_lsd_shg_run; + else if (self->spawnflags & WHORE_HMG) + // self->cast_info.currentmove = &whore_move_lsd_hmg_run; + self->cast_info.currentmove = &whore_move_walk_hmg_sht; + else if (self->spawnflags & WHORE_BAZOOKA) + self->cast_info.currentmove = &whore_move_lsd_bazooka_run; + else if (self->spawnflags & WHORE_FLAMEGUN) + self->cast_info.currentmove = &whore_move_lsd_flamegun_run; + else if (self->spawnflags & WHORE_GRENADE) + self->cast_info.currentmove = &whore_move_lsd_grenade_run; + else + { + gi.dprintf ("missing weapon spawnflag\n"); + self->cast_info.currentmove = &whore_move_lsd_shg_run; + } + } + else + { + if (self->spawnflags & WHORE_TOMMYGUN) + self->cast_info.currentmove = &whore_move_rsd_tg_run; + else if (self->spawnflags & WHORE_SHOTGUN) + self->cast_info.currentmove = &whore_move_rsd_shg_run; + else if (self->spawnflags & WHORE_HMG) + // self->cast_info.currentmove = &whore_move_rsd_hmg_run; + self->cast_info.currentmove = &whore_move_walk_hmg_sht; + else if (self->spawnflags & WHORE_BAZOOKA) + self->cast_info.currentmove = &whore_move_rsd_bazooka_run; + else if (self->spawnflags & WHORE_FLAMEGUN) + self->cast_info.currentmove = &whore_move_rsd_flamegun_run; + else if (self->spawnflags & WHORE_GRENADE) + self->cast_info.currentmove = &whore_move_rsd_grenade_run; + else + { + gi.dprintf ("missing weapon spawnflag\n"); + } + } + + + self->ideal_yaw = vectoyaw(vec) + side_result * 90; + + M_ChangeYaw( self ); + + self->cast_info.last_side_attack = side_result; + self->cast_info.last_side_attack_time = level.time; + + return true; + } + } + + } + + self->ideal_yaw = vectoyaw(vec); + + M_ChangeYaw( self ); + + // just shoot like normal + + // walk shooting? + if ((dist > 256) && directly_infront( self, self->enemy ) && AI_SideTrace(self, 32, 0, 1 ) ) + { + if (self->spawnflags & WHORE_TOMMYGUN) + self->cast_info.currentmove = &whore_move_walk_tg_sht; + else if (self->spawnflags & WHORE_HMG) + self->cast_info.currentmove = &whore_move_walk_hmg_sht; + else if (self->spawnflags & WHORE_BAZOOKA) + self->cast_info.currentmove = &whore_move_walk_bazooka_sht; + else if (self->spawnflags & WHORE_FLAMEGUN) + self->cast_info.currentmove = &whore_move_walk_flamegun_sht; + else if (self->spawnflags & WHORE_GRENADE) + self->cast_info.currentmove = &whore_move_walk_grenade_sht; + else if (self->spawnflags & WHORE_SHOTGUN) + { + if (dist > 800) // shotgun dude should get closer + self->cast_info.currentmove = &whore_move_walk_shg_sht; + else + self->cast_info.currentmove = &whore_move_run_shg_sht; + } + + return true; + } +/* TODO: Reverse walking anim table + else if ((dist < 128) && AI_SideTrace(self, -32, 0, 1 ) ) + { + self->cast_info.currentmove = &thug_move_reverse_walk_shoot; + return true; + } +*/ + // normal attack + +stand_shoot: + + self->ideal_yaw = vectoyaw(vec); + + M_ChangeYaw( self ); + + if (self->spawnflags & WHORE_TOMMYGUN) + self->cast_info.currentmove = &whore_move_tg_shoot; + else if (self->spawnflags & WHORE_SHOTGUN) + self->cast_info.currentmove = &whore_move_shg_shoot; + else if (self->spawnflags & WHORE_HMG) + self->cast_info.currentmove = &whore_move_hmg_shoot; + else if (self->spawnflags & WHORE_BAZOOKA) + self->cast_info.currentmove = &whore_move_bazooka_shoot; + else if (self->spawnflags & WHORE_FLAMEGUN) + self->cast_info.currentmove = &whore_move_flamegun_shoot; + else if (self->spawnflags & WHORE_GRENADE) + self->cast_info.currentmove = &whore_move_grenade_shoot; + else + { + gi.dprintf ("missing weapon spawnflag\n"); + self->cast_info.currentmove = &whore_move_shg_shoot; + } + + return true; + } + + return false; +} + +void whore_firegun_cr ( edict_t *self ) +{ + if (self->spawnflags & WHORE_SHOTGUN) + return; + else if (self->spawnflags & WHORE_HMG) + return; + else if (self->spawnflags & WHORE_BAZOOKA) + return; + else if (self->spawnflags & WHORE_FLAMEGUN) + return; + else if (self->spawnflags & WHORE_GRENADE) + return; + else if (self->spawnflags & WHORE_TOMMYGUN) + whore_firegun (self); + else + gi.dprintf ("error : not tagged right!\n"); +} + +void whore_hmg_avoid (edict_t *self) +{ + if (self->s.frame == FRAME_tg_shoot_14) + self->cast_info.avoid(self, self->enemy, true); + else + self->cast_info.avoid(self, self->enemy, false); +} + +void whore_firehmg_delay (edict_t *self) +{ + + if (self->s.frame == FRAME_tg_shoot_14) + self->cast_info.currentmove = &whore_move_hmg_shoot2; + else if (self->s.frame == FRAME_walk_tg_sht_10) + self->cast_info.currentmove = &whore_move_walk_hmg_sht2; + else + self->cast_info.currentmove = &whore_move_run_hmg_sht2; +} + +void whore_bazooka_delay (edict_t *self) +{ + if (self->s.frame == FRAME_tg_shoot_14) + self->cast_info.currentmove = &whore_move_bazooka_shoot2; + else if (self->s.frame == FRAME_walk_tg_sht_10) + self->cast_info.currentmove = &whore_move_walk_bazooka_shoot2; + else + self->cast_info.currentmove = &whore_move_run_bazooka_shoot2; +} + +void whore_firehmg( edict_t *self ) +{ + + vec3_t start; + vec3_t forward, right; + vec3_t target; + vec3_t aim; + vec3_t offset; + int flash_number; + float dist; + + if (!AI_BeginAttack( self )) + { + // self->s.frame++; // skip the firing frame since it might have a muzzle flash + self->cast_info.currentmove = self->cast_info.move_stand; + + // may need to hack this + // self->s.frame == standframe; + return; + } + + if (self->duration++ > 30) + { + self->duration = 0; + self->cast_info.currentmove = &whore_move_tg_reload; + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + + // yell at them? + if (self->last_talk_time < (level.time - TALK_FIGHTING_DELAY)) + { + + if (self->name_index == NAME_BLUNT) + { + Voice_Random (self, self->enemy, &blunt[6], 10); + } + else + Voice_Random(self, self->enemy, f_fightsounds, F_NUM_FIGHTING); + } + + { + VectorSet(offset, 0, 8, self->viewheight-8); + + AngleVectors (self->s.angles, forward, right, NULL); + G_ProjectSource (self->s.origin, offset, forward, right, start); + + // project enemy back a bit and target there + VectorCopy (self->enemy->s.origin, target); + VectorMA (target, (-0.5 * (crandom())) * (1.0 - (skill->value/4.0)), self->enemy->velocity, target); + + if (self->enemy->maxs[2] < self->cast_info.standing_max_z) + target[2] += - ( 8 * random()); + else + target[2] += self->enemy->viewheight - 4 - (16 * random()); + + flash_number = MZ2_GUNNER_MACHINEGUN_1; + + VectorSubtract (target, start, aim); + dist = VectorNormalize (aim); + } + + self->ideal_yaw = vectoyaw( aim ); + + { + fire_bullet (self, start, aim, 15, 50, DEFAULT_BULLET_HSPREAD>>self->acc, DEFAULT_BULLET_VSPREAD>>self->acc, MOD_BARMACHINEGUN); + { + if (self->s.frame == FRAME_tg_shoot_01 + || self->s.frame == FRAME_walk_tg_sht_01 + || self->s.frame == FRAME_run_tg_sht_01) + { + gi.sound(self, CHAN_WEAPON, gi.soundindex("weapons/hmg/hmg.wav"), 1, ATTN_NORM, 0); + } + } + } + +}; + + +void whore_firegun( edict_t *self ) +{ + vec3_t start; + vec3_t forward, right; + vec3_t target; + vec3_t aim; + vec3_t offset; + int flash_number; + float dist; + + if (self->cast_info.aiflags & AI_RELOAD) + { // we need to reload first, just do it now (since it's a similar motion) + whore_shotgun_reload( self ); + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + + if (self->spawnflags & WHORE_TOMMYGUN) + { + if ( (self->maxs[2] == self->cast_info.standing_max_z) + && !(self->cast_info.aiflags & AI_SIDE_ATTACK) + && (self->duration++ > 40)) + { + + self->duration = 0; + self->cast_info.currentmove = &whore_move_tg_reload; + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + } + else if (self->spawnflags & WHORE_HMG) + { + + if (self->durationflag) + { + self->durationflag++; + if (self->durationflag > 6) + self->durationflag = 0; + return; + } + + if (self->lastduration++ > 2) + self->lastduration = 0; + + if ( (self->maxs[2] == self->cast_info.standing_max_z) + /*&& !(self->cast_info.aiflags & AI_SIDE_ATTACK)*/ + && (self->duration++ > 30)) + { + self->duration = 0; + self->cast_info.currentmove = &whore_move_tg_reload; + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + + } + else if (self->spawnflags & WHORE_BAZOOKA) + { + if ( (self->maxs[2] == self->cast_info.standing_max_z) + && !(self->cast_info.aiflags & AI_SIDE_ATTACK) + && (self->duration++ > 3)) + { + + self->duration = 0; + self->cast_info.currentmove = &whore_move_tg_reload; + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + } + else if (self->spawnflags & WHORE_GRENADE) + { + if ( (self->maxs[2] == self->cast_info.standing_max_z) + && !(self->cast_info.aiflags & AI_SIDE_ATTACK) + && (self->duration++ > 2)) + { + + self->duration = 0; + self->cast_info.currentmove = &whore_move_tg_reload; + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + } + + + if (!AI_BeginAttack( self )) + { + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + + // yell at them? + if (self->last_talk_time < (level.time - TALK_FIGHTING_DELAY)) + { + //if (self->cast_group != 1) + Voice_Random(self, self->enemy, f_fightsounds, F_NUM_FIGHTING); + //else + // Voice_Random(self, self->enemy, f_friendlycombat, F_NUM_FRIENDLYCOMBAT ); + } + + // fire the gun + if (self->spawnflags & WHORE_BAZOOKA) + { + VectorSet(offset, 0, 8, self->viewheight-8); + + AngleVectors (self->s.angles, forward, right, NULL); + G_ProjectSource (self->s.origin, offset, forward, right, start); + + // project enemy back a bit and target there + VectorCopy (self->enemy->s.origin, target); + + target[2] -= 24; // this will help create more splash damage + + VectorMA (target, (-0.5 * (crandom())) * (1.0 - (skill->value/4.0)), self->enemy->velocity, target); + + if (self->enemy->maxs[2] < self->cast_info.standing_max_z) + target[2] += - ( 8 * random()); + else + target[2] += self->enemy->viewheight - 4 - (16 * random()); + + flash_number = MZ2_GUNNER_MACHINEGUN_1; + + VectorSubtract (target, start, aim); + dist = VectorNormalize (aim); + + // idiot check + { + // clean shot??? + trace_t tr; + vec3_t mins; + vec3_t maxs; + vec3_t origin; + vec3_t destination; + + VectorCopy (self->s.origin, origin); + origin[2] += self->viewheight; + + VectorCopy (self->enemy->s.origin, destination); + destination[2] += self->enemy->viewheight; + + VectorSet (mins, -8, -8, -8); + VectorSet (maxs, 8, 8, 8); + + tr = gi.trace (origin, mins, maxs, destination, self, MASK_SHOT); + + if (tr.ent != self->enemy) + { + if (!(AI_ForceTakeCover( self, self->enemy, false ))) + { + self->cast_info.avoid(self, self->enemy, false); + } + + if (self->duration) + self->duration--; + return; + } +goto skipbail; // causes bazooka dude to shoot twice + } + } + else + { + VectorSet(offset, 0, 8, self->viewheight-8); + + AngleVectors (self->s.angles, forward, right, NULL); + G_ProjectSource (self->s.origin, offset, forward, right, start); + + // project enemy back a bit and target there + VectorCopy (self->enemy->s.origin, target); + VectorMA (target, (-0.5 * (crandom())) * (1.0 - (skill->value/4.0)), self->enemy->velocity, target); + + if (self->enemy->maxs[2] < self->cast_info.standing_max_z) + target[2] += - ( 8 * random()); + else + target[2] += self->enemy->viewheight - 4 - (16 * random()); + + flash_number = MZ2_GUNNER_MACHINEGUN_1; + + VectorSubtract (target, start, aim); + dist = VectorNormalize (aim); + } + + // look for a new attack? + if ( (dist < self->cast_info.max_attack_distance) + && ( ((random() < 0.1) && (self->cast_info.last_side_attack_time < (level.time - 2))) + || ( (!(self->cast_info.aiflags & AI_SIDE_ATTACK) || (self->cast_info.last_side_attack_time < (level.time - 2))) + && (directly_infront( self->enemy, self)) + && (self->enemy->client) + && (self->enemy->client->pers.weapon) + && (self->enemy->client->pers.weapon->ammo)))) // if we are directly infront of them, try to strafe + { + if (self->cast_info.aiflags & AI_SIDE_ATTACK) + { + // self->cast_info.currentmove = &whore_move_shoot; + if (self->spawnflags & WHORE_TOMMYGUN) + self->cast_info.currentmove = &whore_move_run_tg_sht; + else if (self->spawnflags & WHORE_SHOTGUN) + self->cast_info.currentmove = &whore_move_run_shg_sht; + else if (self->spawnflags & WHORE_HMG) + self->cast_info.currentmove = &whore_move_run_hmg_sht; + else if (self->spawnflags & WHORE_BAZOOKA) + self->cast_info.currentmove = &whore_move_run_bazooka_sht; + else if (self->spawnflags & WHORE_FLAMEGUN) + self->cast_info.currentmove = &whore_move_run_flamegun_sht; + else if (self->spawnflags & WHORE_GRENADE) + self->cast_info.currentmove = &whore_move_run_grenade_sht; + else + { + gi.dprintf ("missing weapon spawnflag\n"); + self->cast_info.currentmove = &whore_move_run_shg_sht; + } + } + else + self->cast_info.attack( self ); + } + +skipbail: + + self->ideal_yaw = vectoyaw( aim ); + + if (self->spawnflags & WHORE_TOMMYGUN) + { + if (self->acc) + cast_fire_bullet (self, start, aim, 4, 0, DEFAULT_BULLET_HSPREAD>>self->acc, DEFAULT_BULLET_VSPREAD>>self->acc, flash_number); + else + cast_fire_bullet (self, start, aim, 4, 0, DEFAULT_BULLET_HSPREAD, DEFAULT_BULLET_VSPREAD, flash_number); + gi.sound(self, CHAN_WEAPON, tommy_soundindex, 1, ATTN_NORM, 0); + } + else if (self->spawnflags & WHORE_SHOTGUN) + { + // tweeking the damage + cast_fire_shotgun (self, start, aim, 6, 0, DEFAULT_SHOTGUN_HSPREAD, DEFAULT_SHOTGUN_VSPREAD, DEFAULT_SHOTGUN_COUNT, flash_number); + gi.sound(self, CHAN_WEAPON, shotgun_soundindex, 1, ATTN_NORM, 0); + self->cast_info.aiflags |= AI_RELOAD; + } + else if (self->spawnflags & WHORE_HMG) + { + fire_bullet (self, start, aim, 15, 50, DEFAULT_BULLET_HSPREAD>>self->acc, DEFAULT_BULLET_VSPREAD>>self->acc, MOD_BARMACHINEGUN); + { + if (self->lastduration == 1) + { + gi.sound(self, CHAN_WEAPON, gi.soundindex("weapons/hmg/hmg.wav"), 1, ATTN_NORM, 0); + } + + if (self->lastduration == 0) + self->durationflag = 1; + } + } + else if (self->spawnflags & WHORE_BAZOOKA) + { + { + int damage = 100; + int speed = 900; + + cast_fire_rocket (self, start, aim, damage, speed, MOD_ROCKET); + gi.sound (self, CHAN_WEAPON, rocketgun_soundindex, 1, ATTN_NORM, 0); + } + } + else if (self->spawnflags & WHORE_FLAMEGUN) + { + int damage = 1; + int kick = 4; + static int flamesnd = 0; + + extern void fire_target_flamethrower (edict_t *self, vec3_t start, vec3_t forward, int damage, int kick, int mod); + + fire_flamethrower(self, start, aim, damage, 0, MOD_FLAMETHROWER); + self->s.renderfx2 |= RF2_FLAMETHROWER; +// fire_target_flamethrower(self, start, aim, damage, 0, MOD_FLAMETHROWER); +// self->s.renderfx2 = RF2_FLAMESHOOTER; + + flamesnd++; + + if (flamesnd > 2) + flamesnd = 0; + + if (flamesnd == 1) + gi.sound(self, CHAN_AUTO, gi.soundindex("weapons/flame_thrower/flame2.wav"), 1, ATTN_NORM, 0); + else if (flamesnd == 2) + gi.sound(self, CHAN_AUTO, gi.soundindex("weapons/flame_thrower/flame3.wav"), 1, ATTN_NORM, 0); + else + gi.sound(self, CHAN_AUTO, gi.soundindex("weapons/flame_thrower/flame1.wav"), 1, ATTN_NORM, 0); + + } + else if (self->spawnflags & WHORE_GRENADE) + { + fire_grenade (self, start, aim, 150, 450, 2.0, 256); + gi.sound(self, CHAN_AUTO, gi.soundindex("weapons/grenade_launcher/gl_fire.wav"), 1, ATTN_NORM, 0); + } + else + { + gi.dprintf ("Error: Bang Bang not tagged right\n"); + } + +} + +void whore_shotgun_reload( edict_t *self ) +{ + if (self->cast_info.aiflags & AI_TURN_BLOCKED) + { // abort the side run + self->cast_info.aiflags &= ~AI_TURN_BLOCKED; + AI_EndAttack(self); + } + + if (!(self->spawnflags & WHORE_SHOTGUN)) + { // no need to reload + return; + } + + gi.sound(self, CHAN_AUTO, shotgun_reload_soundindex, 1, ATTN_NORM, 0); + self->cast_info.aiflags &= ~AI_RELOAD; +} + +void whore_firegun_right( edict_t *self ) +{ +// vec3_t vec; +// float oldyaw; + + if (!self->enemy || (self->enemy->health <= 0)) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + if (self->cast_info.aiflags & AI_TURN_BLOCKED) + { // abort the side run + self->cast_info.aiflags &= ~AI_TURN_BLOCKED; + AI_EndAttack(self); + return; + } + + // if the path ahead is not clear, abort + if (!AI_SideTrace( self, 96, 0, 1 )) + { + AI_EndAttack(self); + return; + } + +/* + oldyaw = self->s.angles[YAW]; + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + + self->s.angles[YAW] = vectoyaw( vec ); +*/ + self->cast_info.aiflags |= AI_SIDE_ATTACK; + whore_firegun(self); + self->cast_info.aiflags &= ~AI_SIDE_ATTACK; +/* + // keep running to the side + self->ideal_yaw = self->s.angles[YAW] + 90; + + self->s.angles[YAW] = oldyaw; +*/ +} + +void whore_firegun_left( edict_t *self ) +{ +// vec3_t vec; +// float oldyaw; + + if (!self->enemy) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + if (self->cast_info.aiflags & AI_TURN_BLOCKED) + { // abort the side run + self->cast_info.aiflags &= ~AI_TURN_BLOCKED; + AI_EndAttack(self); + return; + } + + // if the path ahead is not clear, abort + if (!AI_SideTrace( self, 96, 0, 1 )) + { + AI_EndAttack(self); + return; + } + +/* + oldyaw = self->s.angles[YAW]; + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + + self->s.angles[YAW] = vectoyaw( vec ); +*/ + self->cast_info.aiflags |= AI_SIDE_ATTACK; + whore_firegun(self); + self->cast_info.aiflags &= ~AI_SIDE_ATTACK; +/* + // keep running to the side + self->ideal_yaw = self->s.angles[YAW] - 90; + + self->s.angles[YAW] = oldyaw; +*/ +} + +void whore_pain (edict_t *self, edict_t *other, float kick, int damage, int mdx_part, int mdx_subobject) +{ + int orientation; + + if (self->s.renderfx2 & RF2_FLAMETHROWER) + self->s.renderfx2 &= ~RF2_FLAMETHROWER; + + AI_CheckMakeEnemy( self, other ); + + if (level.time < self->pain_debounce_time) + return; + + self->pain_debounce_time = level.time + 3 + random(); + + + if (self->name_index == NAME_BLUNT) + Voice_Random (self, other, &blunt[2], 4); + + + if (skill->value >= 3) + return; // no pain anims in nightmare + + // faked client pain sound + + + // gi.sound (self, CHAN_VOICE, gi.soundindex(va("*pain%i_%i.wav", l, r)), 1, ATTN_NORM, 0); + + + // Ridah, randomly don't play an animation, since it' leaves them WAY open to be killed + if (skill->value > 0 && rand()%2) + return; + + + if (other->client || (other->svflags & SVF_MONSTER)) + { + orientation = AI_GetOrientation( self, other ); + } + else + { + orientation = ORIENTATION_CENTER; + } + + if (self->maxs[2] < self->cast_info.standing_max_z) + { // crouching + + switch (orientation) + { + case ORIENTATION_CENTER : + { + self->cast_info.currentmove = &whore_move_crouch_painC; + break; + } + case ORIENTATION_LEFT : + { + self->cast_info.currentmove = &whore_move_crouch_painL; + break; + } + case ORIENTATION_RIGHT : + { + self->cast_info.currentmove = &whore_move_crouch_painR; + break; + } + } + + } + else // standing + { + if ( (mdx_part == PART_BODY) + || (other->client && other->client->pers.weapon && !(other->client->pers.weapon->ammo) && (orientation = rand()%2+1))) + { + switch (orientation) + { + case ORIENTATION_CENTER : + { + self->cast_info.currentmove = &whore_move_pain_chest; + break; + } + case ORIENTATION_LEFT : + { + self->cast_info.currentmove = &whore_move_pain_Larm; + break; + } + case ORIENTATION_RIGHT : + { + self->cast_info.currentmove = &whore_move_pain_Rarm; + break; + } + } + } + else if (mdx_part == PART_LEGS) + { + switch (orientation) + { + case ORIENTATION_CENTER : + { + if (infront(self, other)) + { + self->cast_info.currentmove = &whore_move_pain_crch; + } + else + { + self->cast_info.currentmove = &whore_move_pain_butt; + } + break; + } + case ORIENTATION_LEFT : + { + self->cast_info.currentmove = &whore_move_pain_Lleg; + break; + } + case ORIENTATION_RIGHT : + { + self->cast_info.currentmove = &whore_move_pain_Rleg; + break; + } + } + } + else if (mdx_part == PART_HEAD) + { + self->cast_info.currentmove = &whore_move_pain_head; + } + + } + +} + +// JOSEPH 26-FEB-99 +void whore_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + trace_t tr; + vec3_t end; + edict_t *playthud1, *playthud2; + + if (self->s.renderfx2 & RF2_FLAMETHROWER) + self->s.renderfx2 &= ~RF2_FLAMETHROWER; + + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + self->s.model_parts[PART_GUN2].invisible_objects = (1<<0 | 1<<1); + +// regular death + self->takedamage = DAMAGE_YES; + + if (DeathByGib(self, inflictor, attacker, damage)) + { // gib + self->deadflag = DEAD_DEAD; + GibEntity( self, inflictor, damage ); + return; + } + + if (self->deadflag == DEAD_DEAD) + return; + + self->deadflag = DEAD_DEAD; + + // JOSEPH 7-MAY-99 + if (!(self->cast_info.aiflags & AI_MELEE)) + { + if (self->spawnflags & WHORE_SHOTGUN) + SpawnTheWeapon (self, "weapon_shotgun_e"); + else if (self->spawnflags & WHORE_HMG) + SpawnTheWeapon (self, "weapon_heavymachinegun_e"); + else if (self->spawnflags & WHORE_BAZOOKA) + SpawnTheWeapon (self, "weapon_bazooka_e"); + else if (self->spawnflags & WHORE_FLAMEGUN) + SpawnTheWeapon (self, "weapon_flamethrower_e"); + else if (self->spawnflags & WHORE_GRENADE) + SpawnTheWeapon (self, "weapon_grenadelauncher_e"); + else + SpawnTheWeapon (self, "weapon_tommygun_e"); + } + // END JOSEPH + + // EP_SpecialEventDeath (self); + + VectorCopy (self->s.origin, end); + end[2] -= 64; + tr = gi.trace (self->s.origin, self->mins, self->maxs, end, self, MASK_SHOT); + + // JOSEPH 5-JUN-99 + if (mdx_part == PART_HEAD) + { // probably head impact, we should really be passing in the model_part here + self->cast_info.currentmove = &whore_move_death3; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*4.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*9.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + else if (self->maxs[2] < self->cast_info.standing_max_z) + { + if (rand()%100 > 50) + { + self->cast_info.currentmove = &whore_move_crouch_death1; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*7.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + } + else + { + self->cast_info.currentmove = &whore_move_crouch_death2; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*14.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + } + } + else + { + int n; + + n = rand() % 4; + if (n == 0) + { + self->cast_info.currentmove = &whore_move_death1; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*7.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*11.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + else if (n == 1) + { + self->cast_info.currentmove = &whore_move_death2; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*5.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*7.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + else if (n == 2) + { + self->cast_info.currentmove = &whore_move_death3; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*4.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*9.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + else + { + self->cast_info.currentmove = &whore_move_death4; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*7.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*15.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + } + // END JOSEPH + + if (!self->onfiretime) + Voice_Random (self, attacker, &female_specific[4], 2); + +} +// END JOSEPH + + +// ========================================================================= + +/*QUAKED cast_whore (1 .5 0) (-16 -16 -24) (16 16 48) FLASH_LIGHT TRIGGERED_START FLAM_BE BAZOOKA HMG IMMEDIATE_FOLLOW_PATH TOMMYGUN GRENADE +Fidel Character +cast_group defines which group the character is a member of +default cast_group is 0, which is neutral (won't help others out) +player's cast_group is 1 (friendly characters) + +The default weapon for a whore is the shotgun + +model="models\actors\whore\" + + +*/ +void SP_cast_whore(edict_t *self) +{ + int i; + char *head_skin, *body_skin, *legs_skin; + int skin; + + if (deathmatch->value) + { + G_FreeEdict (self); + return; + } + + if (!(self->spawnflags & (WHORE_FLAMEGUN|WHORE_BAZOOKA|WHORE_HMG|WHORE_TOMMYGUN|WHORE_GRENADE))) + { + self->spawnflags |= WHORE_SHOTGUN; + } + + self->movetype = MOVETYPE_STEP; + self->solid = SOLID_BBOX; + self->s.skinnum = (self->skin-1) * 3; + + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 48); + + if (!self->art_skins) + { // use default skins + self->art_skins = "001 001 001"; + } + + if (self->art_skins) + { + // convert spaces to NULL's + for (i=0; i<11; i++) + if (self->art_skins[i] == ' ') + self->art_skins[i] = '\0'; + + head_skin = &self->art_skins[0]; + body_skin = &self->art_skins[4]; + legs_skin = &self->art_skins[8]; + } + else + { + head_skin = body_skin = legs_skin = NULL; + } + + tommy_soundindex = gi.soundindex("weapons/machinegun/machgf1b.wav"); + shotgun_soundindex = gi.soundindex("weapons/shotgun/shotgf1b.wav"); + shotgun_reload_soundindex = gi.soundindex("weapons/shotgun/shotgr1b.wav"); + heavymachinegun_soundindex = gi.soundindex ("weapons/hmg/single.wav"); + rocketgun_soundindex = gi.soundindex ("weapons/rocket_launcher/rl_fire.wav"); + + // ------------------------------------------------------------------------ + // initialize all model_part data + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + switch (self->head) + { + case 1: + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/whore/bald_head.mdx"); + break; + case 2: + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/whore/pony_head.mdx"); + break; + default: + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/whore/head.mdx"); + break; + } + if (head_skin) + { + skin = gi.skinindex( self->s.model_parts[PART_HEAD].modelindex, head_skin ); + } + else + skin = self->s.skinnum; + + for (i=0; is.model_parts[PART_HEAD].baseskin = self->s.model_parts[PART_HEAD].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/whore/head.mdx", &self->s.model_parts[PART_HEAD] ); + + self->s.num_parts++; + self->s.model_parts[PART_LEGS].modelindex = gi.modelindex("models/actors/whore/legs.mdx"); + if (head_skin) + skin = gi.skinindex( self->s.model_parts[PART_LEGS].modelindex, legs_skin ); + else + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_LEGS].baseskin = self->s.model_parts[PART_LEGS].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/whore/legs.mdx", &self->s.model_parts[PART_LEGS] ); + + self->s.num_parts++; + self->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/actors/whore/body.mdx"); + if (head_skin) + skin = gi.skinindex( self->s.model_parts[PART_BODY].modelindex, body_skin ); + else + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_BODY].baseskin = self->s.model_parts[PART_BODY].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/whore/body.mdx", &self->s.model_parts[PART_BODY] ); + +// Ridah, temp only for testing, hard to test with all grenade guys +//if (self->spawnflags & WHORE_GRENADE) +//self->spawnflags |= WHORE_SHOTGUN; + + if (self->spawnflags & WHORE_TOMMYGUN) + { + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/whore/tommygun.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0;// self->s.skinnum; + gi.GetObjectBounds( "models/actors/whore/tommygun.mdx", &self->s.model_parts[PART_GUN] ); + } + else if (self->spawnflags & WHORE_SHOTGUN) + { + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/whore/shotgun.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0;// self->s.skinnum; + gi.GetObjectBounds( "models/actors/whore/shotgun.mdx", &self->s.model_parts[PART_GUN] ); + } + else if (self->spawnflags & WHORE_HMG) + { + // NOTE TO SELF: tell Jason to make a gun.mdx for this weapon + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/whore/hmg.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0;// self->s.skinnum; + gi.GetObjectBounds( "models/actors/whore/hmg.mdx", &self->s.model_parts[PART_GUN] ); + } + else if (self->spawnflags & WHORE_BAZOOKA) + { + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/whore/rocket_lnch.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0;// self->s.skinnum; + gi.GetObjectBounds( "models/actors/whore/rocket_lnch.mdx", &self->s.model_parts[PART_GUN] ); + } + else if (self->spawnflags & WHORE_FLAMEGUN) + { + // NOTE TO SELF: tell Jason to make a gun.mdx for this weapon + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/whore/rocket_lnch.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0;// self->s.skinnum; + gi.GetObjectBounds( "models/actors/whore/rocket_lnch.mdx", &self->s.model_parts[PART_GUN] ); + } + else if (self->spawnflags & WHORE_GRENADE) + { + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/whore/grenade_lnch.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0;// self->s.skinnum; + gi.GetObjectBounds( "models/actors/whore/grenade_lnch.mdx", &self->s.model_parts[PART_GUN] ); + } + else + { + gi.dprintf ("error no weapon spawnflag\n"); + + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/whore/shotgun.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0;// self->s.skinnum; + gi.GetObjectBounds( "models/actors/whore/shotgun.mdx", &self->s.model_parts[PART_GUN] ); + } + + // remove NULL's + if (self->art_skins) + self->art_skins[3] = self->art_skins[7] = ' '; + + // ------------------------------------------------------------------------ + + if (!self->health) + self->health = 100; + + self->gib_health = -200; + self->mass = 200; + + self->gender = GENDER_FEMALE; + + self->pain = whore_pain; + self->die = whore_die; + + self->cast_info.checkattack = AI_CheckAttack; + + self->cast_info.attack = whore_attack; + self->cast_info.long_attack = whore_long_attack; + self->cast_info.talk = whore_talk; + self->cast_info.avoid = whore_avoid; + + self->cast_info.catch_fire = whore_catch_fire; + +// Ridah, new AI system stuff! + self->cast_info.max_attack_distance = 2000; + + // Ridah, so they don't shoot the flamegun from too far away + if (self->spawnflags & WHORE_FLAMEGUN) + self->cast_info.max_attack_distance = 384; + + if (self->spawnflags & WHORE_SHOTGUN) + self->cast_info.move_stand = &whore_move_sg_stand; + else + self->cast_info.move_stand = &whore_move_stand; + +// self->cast_info.move_crstand = &whore_move_crouch_stand; + self->cast_info.move_crstand = &whore_move_crch_astand; + + self->cast_info.move_run = &whore_move_run_gun_down; + + // RAFAEL + if (self->spawnflags & 1) + self->cast_info.move_runwalk = &whore_move_walk_gdownFLASHLIGHT; + else + self->cast_info.move_runwalk = &whore_move_walk_gdown; + + self->cast_info.move_crwalk = &whore_move_crh_shuf; + + self->cast_info.move_jump = &whore_move_jump; + + self->cast_info.move_avoid_walk = &whore_move_avoid_walk; + self->cast_info.move_avoid_run = &whore_move_avoid_run; + self->cast_info.move_avoid_reverse_walk = &whore_move_avoid_reverse_walk; + self->cast_info.move_avoid_reverse_run = &whore_move_avoid_reverse_run; + self->cast_info.move_avoid_crwalk = &whore_move_avoid_crouch_walk; + + self->cast_info.move_crouch_down = &whore_move_crouch_stand_down; + self->cast_info.move_stand_up = &whore_move_crouch_stand_up; + + self->cast_info.move_lside_step = &whore_move_lside_step; + + // self->cast_info.move_rside_step = &whore_move_rside_step; + // hack rside step is missing + self->cast_info.move_rside_step = &whore_move_avoid_walk; + + self->cast_info.move_start_climb = &whore_move_clmb_loop; + self->cast_info.move_end_climb = &whore_move_clmb_over; + +// Ridah, done. + + gi.linkentity (self); + + self->cast_info.currentmove = self->cast_info.move_stand; + + if (!self->cast_info.scale) + self->cast_info.scale = MODEL_SCALE; + + self->s.scale = self->cast_info.scale - 1.0; + + // talk by default + self->cast_info.aiflags |= AI_TALK; + + if (!self->acc) + self->acc = 2; + + walking_cast_start (self); +} diff --git a/gamesrc/AI_WHORE.H b/gamesrc/AI_WHORE.H new file mode 100644 index 0000000..8caa1cd --- /dev/null +++ b/gamesrc/AI_WHORE.H @@ -0,0 +1,1026 @@ +#define FRAME_stand_01 0 +#define FRAME_stand_02 1 +#define FRAME_stand_03 2 +#define FRAME_stand_04 3 +#define FRAME_stand_05 4 +#define FRAME_stand_06 5 +#define FRAME_stand_07 6 +#define FRAME_stand_08 7 +#define FRAME_stand_09 8 +#define FRAME_stand_10 9 +#define FRAME_stand_11 10 +#define FRAME_stand_12 11 +#define FRAME_stand_13 12 +#define FRAME_stand_14 13 +#define FRAME_stand_15 14 +#define FRAME_stand_16 15 +#define FRAME_stand_17 16 +#define FRAME_stand_18 17 +#define FRAME_stand_19 18 +#define FRAME_stand_20 19 +#define FRAME_stand_21 20 +#define FRAME_stand_22 21 +#define FRAME_stand_23 22 +#define FRAME_stand_24 23 +#define FRAME_stand_25 24 +#define FRAME_stand_26 25 +#define FRAME_stand_27 26 +#define FRAME_stand_28 27 +#define FRAME_tg_shoot_01 28 +#define FRAME_tg_shoot_02 29 +#define FRAME_tg_shoot_03 30 +#define FRAME_tg_shoot_04 31 +#define FRAME_tg_shoot_05 32 +#define FRAME_tg_shoot_06 33 +#define FRAME_tg_shoot_07 34 +#define FRAME_tg_shoot_08 35 +#define FRAME_tg_shoot_09 36 +#define FRAME_tg_shoot_10 37 +#define FRAME_tg_shoot_11 38 +#define FRAME_tg_shoot_12 39 +#define FRAME_tg_shoot_13 40 +#define FRAME_tg_shoot_14 41 +#define FRAME_shg_shoot_01 42 +#define FRAME_shg_shoot_02 43 +#define FRAME_shg_shoot_03 44 +#define FRAME_shg_shoot_04 45 +#define FRAME_shg_shoot_05 46 +#define FRAME_shg_shoot_06 47 +#define FRAME_shg_shoot_07 48 +#define FRAME_shg_shoot_08 49 +#define FRAME_shg_shoot_09 50 +#define FRAME_tg_reload_01 51 +#define FRAME_tg_reload_02 52 +#define FRAME_tg_reload_03 53 +#define FRAME_tg_reload_04 54 +#define FRAME_tg_reload_05 55 +#define FRAME_tg_reload_06 56 +#define FRAME_tg_reload_07 57 +#define FRAME_tg_reload_08 58 +#define FRAME_tg_reload_09 59 +#define FRAME_tg_reload_10 60 +#define FRAME_tg_reload_11 61 +#define FRAME_tg_reload_12 62 +#define FRAME_tg_reload_13 63 +#define FRAME_tg_reload_14 64 +#define FRAME_tg_reload_15 65 +#define FRAME_tg_reload_16 66 +#define FRAME_tg_reload_17 67 +#define FRAME_shg_reload_01 68 +#define FRAME_shg_reload_02 69 +#define FRAME_shg_reload_03 70 +#define FRAME_shg_reload_04 71 +#define FRAME_shg_reload_05 72 +#define FRAME_shg_reload_06 73 +#define FRAME_shg_reload_07 74 +#define FRAME_shg_reload_08 75 +#define FRAME_shg_reload_09 76 +#define FRAME_shg_reload_10 77 +#define FRAME_shg_reload_11 78 +#define FRAME_shg_reload_12 79 +#define FRAME_shg_reload_13 80 +#define FRAME_shg_reload_14 81 +#define FRAME_shg_reload_15 82 +#define FRAME_shg_reload_16 83 +#define FRAME_shg_reload_17 84 +#define FRAME_shg_reload_18 85 +#define FRAME_shg_reload_19 86 +#define FRAME_shg_reload_20 87 +#define FRAME_step_back_01 88 +#define FRAME_step_back_02 89 +#define FRAME_step_back_03 90 +#define FRAME_step_back_04 91 +#define FRAME_step_back_05 92 +#define FRAME_step_back_06 93 +#define FRAME_step_back_07 94 +#define FRAME_step_back_08 95 +#define FRAME_tg_ready_01 96 +#define FRAME_tg_ready_02 97 +#define FRAME_tg_ready_03 98 +#define FRAME_tg_ready_04 99 +#define FRAME_tg_ready_05 100 +#define FRAME_tg_ready_06 101 +#define FRAME_tg_ready_07 102 +#define FRAME_tg_ready_08 103 +#define FRAME_tg_ready_09 104 +#define FRAME_tg_ready_10 105 +#define FRAME_tg_ready_11 106 +#define FRAME_tg_ready_12 107 +#define FRAME_tg_ready_13 108 +#define FRAME_tg_ready_14 109 +#define FRAME_tg_ready_15 110 +#define FRAME_tg_ready_16 111 +#define FRAME_tg_ready_17 112 +#define FRAME_tg_ready_18 113 +#define FRAME_tg_ready_19 114 +#define FRAME_talk1_01 115 +#define FRAME_talk1_02 116 +#define FRAME_talk1_03 117 +#define FRAME_talk1_04 118 +#define FRAME_talk1_05 119 +#define FRAME_talk1_06 120 +#define FRAME_talk1_07 121 +#define FRAME_talk1_08 122 +#define FRAME_talk1_09 123 +#define FRAME_talk1_10 124 +#define FRAME_talk1_11 125 +#define FRAME_talk1_12 126 +#define FRAME_talk1_13 127 +#define FRAME_talk1_14 128 +#define FRAME_talk1_15 129 +#define FRAME_talk1_16 130 +#define FRAME_talk1_17 131 +#define FRAME_talk2_01 132 +#define FRAME_talk2_02 133 +#define FRAME_talk2_03 134 +#define FRAME_talk2_04 135 +#define FRAME_talk2_05 136 +#define FRAME_talk2_06 137 +#define FRAME_talk2_07 138 +#define FRAME_talk2_08 139 +#define FRAME_talk2_09 140 +#define FRAME_talk2_10 141 +#define FRAME_talk2_11 142 +#define FRAME_talk2_12 143 +#define FRAME_talk2_13 144 +#define FRAME_talk2_14 145 +#define FRAME_talk2_15 146 +#define FRAME_talk2_16 147 +#define FRAME_talk2_17 148 +#define FRAME_talk2_18 149 +#define FRAME_talk2_19 150 +#define FRAME_talk2_20 151 +#define FRAME_talk2_21 152 +#define FRAME_talk2_22 153 +#define FRAME_talk2_23 154 +#define FRAME_talk2_24 155 +#define FRAME_talk2_25 156 +#define FRAME_talk2_26 157 +#define FRAME_talk2_27 158 +#define FRAME_talk3_01 159 +#define FRAME_talk3_02 160 +#define FRAME_talk3_03 161 +#define FRAME_talk3_04 162 +#define FRAME_talk3_05 163 +#define FRAME_talk3_06 164 +#define FRAME_talk3_07 165 +#define FRAME_talk3_08 166 +#define FRAME_talk4_01 167 +#define FRAME_talk4_02 168 +#define FRAME_talk4_03 169 +#define FRAME_talk4_04 170 +#define FRAME_talk4_05 171 +#define FRAME_talk4_06 172 +#define FRAME_talk4_07 173 +#define FRAME_talk4_08 174 +#define FRAME_talk4_09 175 +#define FRAME_talk4_10 176 +#define FRAME_talk4_11 177 +#define FRAME_talk4_12 178 +#define FRAME_talk4_13 179 +#define FRAME_talk4_14 180 +#define FRAME_talk4_15 181 +#define FRAME_talk4_16 182 +#define FRAME_talk4_17 183 +#define FRAME_talk4_18 184 +#define FRAME_talk4_19 185 +#define FRAME_talk4_20 186 +#define FRAME_talk4_21 187 +#define FRAME_talk4_22 188 +#define FRAME_talk4_23 189 +#define FRAME_talk4_24 190 +#define FRAME_talk5_01 191 +#define FRAME_talk5_02 192 +#define FRAME_talk5_03 193 +#define FRAME_talk5_04 194 +#define FRAME_talk5_05 195 +#define FRAME_talk5_06 196 +#define FRAME_talk5_07 197 +#define FRAME_talk5_08 198 +#define FRAME_talk5_09 199 +#define FRAME_talk5_10 200 +#define FRAME_talk5_11 201 +#define FRAME_talk5_12 202 +#define FRAME_talk5_13 203 +#define FRAME_talk5_14 204 +#define FRAME_talk5_15 205 +#define FRAME_talk5_16 206 +#define FRAME_talk5_17 207 +#define FRAME_talk5_18 208 +#define FRAME_talk5_19 209 +#define FRAME_talk5_20 210 +#define FRAME_talk5_21 211 +#define FRAME_pain_Rarm_01 212 +#define FRAME_pain_Rarm_02 213 +#define FRAME_pain_Rarm_03 214 +#define FRAME_pain_Rarm_04 215 +#define FRAME_pain_Rarm_05 216 +#define FRAME_pain_Rarm_06 217 +#define FRAME_pain_Rarm_07 218 +#define FRAME_pain_Larm_01 219 +#define FRAME_pain_Larm_02 220 +#define FRAME_pain_Larm_03 221 +#define FRAME_pain_Larm_04 222 +#define FRAME_pain_Larm_05 223 +#define FRAME_pain_Larm_06 224 +#define FRAME_pain_chest_01 225 +#define FRAME_pain_chest_02 226 +#define FRAME_pain_chest_03 227 +#define FRAME_pain_chest_04 228 +#define FRAME_pain_chest_05 229 +#define FRAME_pain_chest_06 230 +#define FRAME_pain_head_01 231 +#define FRAME_pain_head_02 232 +#define FRAME_pain_head_03 233 +#define FRAME_pain_head_04 234 +#define FRAME_pain_head_05 235 +#define FRAME_pain_head_06 236 +#define FRAME_pain_Rleg_01 237 +#define FRAME_pain_Rleg_02 238 +#define FRAME_pain_Rleg_03 239 +#define FRAME_pain_Rleg_04 240 +#define FRAME_pain_Rleg_05 241 +#define FRAME_pain_Rleg_06 242 +#define FRAME_pain_Rleg_07 243 +#define FRAME_pain_Rleg_08 244 +#define FRAME_pain_Rleg_09 245 +#define FRAME_pain_Lleg_01 246 +#define FRAME_pain_Lleg_02 247 +#define FRAME_pain_Lleg_03 248 +#define FRAME_pain_Lleg_04 249 +#define FRAME_pain_Lleg_05 250 +#define FRAME_pain_Lleg_06 251 +#define FRAME_pain_Lleg_07 252 +#define FRAME_pain_Lleg_08 253 +#define FRAME_pain_Lleg_09 254 +#define FRAME_pain_crch_01 255 +#define FRAME_pain_crch_02 256 +#define FRAME_pain_crch_03 257 +#define FRAME_pain_crch_04 258 +#define FRAME_pain_crch_05 259 +#define FRAME_pain_crch_06 260 +#define FRAME_pain_crch_07 261 +#define FRAME_pain_crch_08 262 +#define FRAME_pain_butt_01 263 +#define FRAME_pain_butt_02 264 +#define FRAME_pain_butt_03 265 +#define FRAME_pain_butt_04 266 +#define FRAME_pain_butt_05 267 +#define FRAME_pain_butt_06 268 +#define FRAME_pain_butt_07 269 +#define FRAME_pain_butt_08 270 +#define FRAME_pain_butt_09 271 +#define FRAME_pain_butt_10 272 +#define FRAME_jump_01 273 +#define FRAME_jump_02 274 +#define FRAME_jump_03 275 +#define FRAME_jump_04 276 +#define FRAME_jump_05 277 +#define FRAME_jump_06 278 +#define FRAME_jump_07 279 +#define FRAME_jump_08 280 +#define FRAME_jump_09 281 +#define FRAME_jump_10 282 +#define FRAME_jump_11 283 +#define FRAME_death1_01 284 +#define FRAME_death1_02 285 +#define FRAME_death1_03 286 +#define FRAME_death1_04 287 +#define FRAME_death1_05 288 +#define FRAME_death1_06 289 +#define FRAME_death1_07 290 +#define FRAME_death1_08 291 +#define FRAME_death1_09 292 +#define FRAME_death1_10 293 +#define FRAME_death1_11 294 +#define FRAME_death1_12 295 +#define FRAME_death1_13 296 +#define FRAME_death1_14 297 +#define FRAME_death1_15 298 +#define FRAME_death2_01 299 +#define FRAME_death2_02 300 +#define FRAME_death2_03 301 +#define FRAME_death2_04 302 +#define FRAME_death2_05 303 +#define FRAME_death2_06 304 +#define FRAME_death2_07 305 +#define FRAME_death2_08 306 +#define FRAME_death2_09 307 +#define FRAME_death2_10 308 +#define FRAME_death2_11 309 +#define FRAME_death2_12 310 +#define FRAME_death2_13 311 +#define FRAME_death2_14 312 +#define FRAME_death2_15 313 +#define FRAME_death2_16 314 +#define FRAME_death3_01 315 +#define FRAME_death3_02 316 +#define FRAME_death3_03 317 +#define FRAME_death3_04 318 +#define FRAME_death3_05 319 +#define FRAME_death3_06 320 +#define FRAME_death3_07 321 +#define FRAME_death3_08 322 +#define FRAME_death3_09 323 +#define FRAME_death3_10 324 +#define FRAME_death3_11 325 +#define FRAME_death3_12 326 +#define FRAME_death3_13 327 +#define FRAME_death3_14 328 +#define FRAME_death3_15 329 +#define FRAME_death3_16 330 +#define FRAME_death4_01 331 +#define FRAME_death4_02 332 +#define FRAME_death4_03 333 +#define FRAME_death4_04 334 +#define FRAME_death4_05 335 +#define FRAME_death4_06 336 +#define FRAME_death4_07 337 +#define FRAME_death4_08 338 +#define FRAME_death4_09 339 +#define FRAME_death4_10 340 +#define FRAME_death4_11 341 +#define FRAME_death4_12 342 +#define FRAME_death4_13 343 +#define FRAME_death4_14 344 +#define FRAME_death4_15 345 +#define FRAME_death4_16 346 +#define FRAME_death4_17 347 +#define FRAME_death4_18 348 +#define FRAME_death4_19 349 +#define FRAME_death4_20 350 +#define FRAME_death4_21 351 +#define FRAME_death4_22 352 +#define FRAME_death5_01 353 +#define FRAME_death5_02 354 +#define FRAME_death5_03 355 +#define FRAME_death5_04 356 +#define FRAME_death5_05 357 +#define FRAME_death5_06 358 +#define FRAME_death5_07 359 +#define FRAME_death5_08 360 +#define FRAME_death5_09 361 +#define FRAME_death5_10 362 +#define FRAME_death5_11 363 +#define FRAME_death5_12 364 +#define FRAME_death5_13 365 +#define FRAME_death5_14 366 +#define FRAME_death5_15 367 +#define FRAME_death5_16 368 +#define FRAME_death5_17 369 +#define FRAME_death5_18 370 +#define FRAME_death5_19 371 +#define FRAME_death5_20 372 +#define FRAME_death5_21 373 +#define FRAME_death5_22 374 +#define FRAME_death5_23 375 +#define FRAME_death5_24 376 +#define FRAME_death5_25 377 +#define FRAME_death5_26 378 +#define FRAME_death5_27 379 +#define FRAME_death5_28 380 +#define FRAME_death5_29 381 +#define FRAME_death5_30 382 +#define FRAME_death5_31 383 +#define FRAME_death5_32 384 +#define FRAME_death5_33 385 +#define FRAME_crouch_walk_01 386 +#define FRAME_crouch_walk_02 387 +#define FRAME_crouch_walk_03 388 +#define FRAME_crouch_walk_04 389 +#define FRAME_crouch_walk_05 390 +#define FRAME_crouch_walk_06 391 +#define FRAME_crouch_walk_07 392 +#define FRAME_crouch_walk_08 393 +#define FRAME_crouch_walk_09 394 +#define FRAME_crouch_walk_10 395 +#define FRAME_crouch_walk_11 396 +#define FRAME_crouch_walk_12 397 +#define FRAME_crouch_walk_13 398 +#define FRAME_crouch_walk_14 399 +#define FRAME_crouch_painC_01 400 +#define FRAME_crouch_painC_02 401 +#define FRAME_crouch_painC_03 402 +#define FRAME_crouch_painC_04 403 +#define FRAME_crouch_painC_05 404 +#define FRAME_crouch_painC_06 405 +#define FRAME_crouch_painC_07 406 +#define FRAME_crouch_painC_08 407 +#define FRAME_crouch_painC_09 408 +#define FRAME_crouch_painC_10 409 +#define FRAME_crouch_painL_01 410 +#define FRAME_crouch_painL_02 411 +#define FRAME_crouch_painL_03 412 +#define FRAME_crouch_painL_04 413 +#define FRAME_crouch_painL_05 414 +#define FRAME_crouch_painL_06 415 +#define FRAME_crouch_painL_07 416 +#define FRAME_crouch_painL_08 417 +#define FRAME_crouch_painL_09 418 +#define FRAME_crouch_painL_10 419 +#define FRAME_crouch_painL_11 420 +#define FRAME_crouch_painR_01 421 +#define FRAME_crouch_painR_02 422 +#define FRAME_crouch_painR_03 423 +#define FRAME_crouch_painR_04 424 +#define FRAME_crouch_painR_05 425 +#define FRAME_crouch_painR_06 426 +#define FRAME_crouch_painR_07 427 +#define FRAME_crouch_painR_08 428 +#define FRAME_crouch_painR_09 429 +#define FRAME_crouch_painR_10 430 +#define FRAME_crouch_painR_11 431 +#define FRAME_crouch_shoot_01 432 +#define FRAME_crouch_shoot_02 433 +#define FRAME_crouch_shoot_03 434 +#define FRAME_crouch_shoot_04 435 +#define FRAME_crouch_shoot_05 436 +#define FRAME_crouch_shoot_06 437 +#define FRAME_crouch_shoot_07 438 +#define FRAME_crouch_shoot_08 439 +#define FRAME_crouch_shoot_09 440 +#define FRAME_crouch_shoot_10 441 +#define FRAME_crouch_shoot_11 442 +#define FRAME_crouch_shoot_12 443 +#define FRAME_crouch_shoot_13 444 +#define FRAME_crouch_shoot_14 445 +#define FRAME_crouch_shoot_15 446 +#define FRAME_crouch_shoot_16 447 +#define FRAME_crouch_shoot_17 448 +#define FRAME_crch_shg_sht_01 449 +#define FRAME_crch_shg_sht_02 450 +#define FRAME_crch_shg_sht_03 451 +#define FRAME_crch_shg_sht_04 452 +#define FRAME_crch_shg_sht_05 453 +#define FRAME_crch_shg_sht_06 454 +#define FRAME_crch_shg_sht_07 455 +#define FRAME_crch_shg_sht_08 456 +#define FRAME_crch_shg_sht_09 457 +#define FRAME_crch_shg_sht_10 458 +#define FRAME_crch_shg_sht_11 459 +#define FRAME_stand_crouch_01 460 +#define FRAME_stand_crouch_02 461 +#define FRAME_stand_crouch_03 462 +#define FRAME_stand_crouch_04 463 +#define FRAME_stand_crouch_05 464 +#define FRAME_stand_crouch_06 465 +#define FRAME_stand_crouch_07 466 +#define FRAME_stand_crouch_08 467 +#define FRAME_stand_crouch_09 468 +#define FRAME_stand_crouch_10 469 +#define FRAME_stand_crouch_11 470 +#define FRAME_crch_astand_01 471 +#define FRAME_crch_astand_02 472 +#define FRAME_crch_astand_03 473 +#define FRAME_crch_astand_04 474 +#define FRAME_crch_astand_05 475 +#define FRAME_crch_astand_06 476 +#define FRAME_crch_astand_07 477 +#define FRAME_crch_astand_08 478 +#define FRAME_crch_astand_09 479 +#define FRAME_crch_astand_10 480 +#define FRAME_crch_astand_11 481 +#define FRAME_crch_astand_12 482 +#define FRAME_crch_astand_13 483 +#define FRAME_crch_astand_14 484 +#define FRAME_crch_astand_15 485 +#define FRAME_crch_astand_16 486 +#define FRAME_crch_astand_17 487 +#define FRAME_crch_astand_18 488 +#define FRAME_crch_astand_19 489 +#define FRAME_crch_astand_20 490 +#define FRAME_crch_astand_21 491 +#define FRAME_crch_astand_22 492 +#define FRAME_crch_astand_23 493 +#define FRAME_crch_astand_24 494 +#define FRAME_crch_astand_25 495 +#define FRAME_crch_astand_26 496 +#define FRAME_crch_astand_27 497 +#define FRAME_crch_astand_28 498 +#define FRAME_crch_astand_29 499 +#define FRAME_crch_astand_30 500 +#define FRAME_crch_death1_01 501 +#define FRAME_crch_death1_02 502 +#define FRAME_crch_death1_03 503 +#define FRAME_crch_death1_04 504 +#define FRAME_crch_death1_05 505 +#define FRAME_crch_death1_06 506 +#define FRAME_crch_death1_07 507 +#define FRAME_crch_death1_08 508 +#define FRAME_crch_death1_09 509 +#define FRAME_crch_death1_10 510 +#define FRAME_crch_death1_11 511 +#define FRAME_crch_death1_12 512 +#define FRAME_crch_death1_13 513 +#define FRAME_crch_death1_14 514 +#define FRAME_crch_death1_15 515 +#define FRAME_crch_death1_16 516 +#define FRAME_crch_death2_01 517 +#define FRAME_crch_death2_02 518 +#define FRAME_crch_death2_03 519 +#define FRAME_crch_death2_04 520 +#define FRAME_crch_death2_05 521 +#define FRAME_crch_death2_06 522 +#define FRAME_crch_death2_07 523 +#define FRAME_crch_death2_08 524 +#define FRAME_crch_death2_09 525 +#define FRAME_crch_death2_10 526 +#define FRAME_crch_death2_11 527 +#define FRAME_crch_death2_12 528 +#define FRAME_crch_death2_13 529 +#define FRAME_crch_death2_14 530 +#define FRAME_crch_death2_15 531 +#define FRAME_crch_death2_16 532 +#define FRAME_crch_death2_17 533 +#define FRAME_crch_death2_18 534 +#define FRAME_crch_death2_19 535 +#define FRAME_crch_death2_20 536 +#define FRAME_crch_death2_21 537 +#define FRAME_crch_death2_22 538 +#define FRAME_crch_death2_23 539 +#define FRAME_crch_tg_rld_01 540 +#define FRAME_crch_tg_rld_02 541 +#define FRAME_crch_tg_rld_03 542 +#define FRAME_crch_tg_rld_04 543 +#define FRAME_crch_tg_rld_05 544 +#define FRAME_crch_tg_rld_06 545 +#define FRAME_crch_tg_rld_07 546 +#define FRAME_crch_tg_rld_08 547 +#define FRAME_crch_tg_rld_09 548 +#define FRAME_crch_tg_rld_10 549 +#define FRAME_crch_tg_rld_11 550 +#define FRAME_crch_tg_rld_12 551 +#define FRAME_crch_tg_rld_13 552 +#define FRAME_crch_tg_rld_14 553 +#define FRAME_crch_tg_rld_15 554 +#define FRAME_crch_tg_rld_16 555 +#define FRAME_crch_tg_rld_17 556 +#define FRAME_crch_tg_rld_18 557 +#define FRAME_crch_tg_rld_19 558 +#define FRAME_crch_tg_rld_20 559 +#define FRAME_crch_sg_rld_01 560 +#define FRAME_crch_sg_rld_02 561 +#define FRAME_crch_sg_rld_03 562 +#define FRAME_crch_sg_rld_04 563 +#define FRAME_crch_sg_rld_05 564 +#define FRAME_crch_sg_rld_06 565 +#define FRAME_crch_sg_rld_07 566 +#define FRAME_crch_sg_rld_08 567 +#define FRAME_crch_sg_rld_09 568 +#define FRAME_crch_sg_rld_10 569 +#define FRAME_crch_sg_rld_11 570 +#define FRAME_crch_sg_rld_12 571 +#define FRAME_crch_sg_rld_13 572 +#define FRAME_crch_sg_rld_14 573 +#define FRAME_crch_sg_rld_15 574 +#define FRAME_crch_sg_rld_16 575 +#define FRAME_crch_sg_rld_17 576 +#define FRAME_crch_sg_rld_18 577 +#define FRAME_crch_sg_rld_19 578 +#define FRAME_crch_sg_rld_20 579 +#define FRAME_crch_sg_rld_21 580 +#define FRAME_crch_sg_rld_22 581 +#define FRAME_crch_sg_rld_23 582 +#define FRAME_crch_sg_rld_24 583 +#define FRAME_crch_sg_rld_25 584 +#define FRAME_crch_sg_rld_26 585 +#define FRAME_crch_sg_rld_27 586 +#define FRAME_crch_sg_rld_28 587 +#define FRAME_crch_sg_rld_29 588 +#define FRAME_crch_tg_rdy_01 589 +#define FRAME_crch_tg_rdy_02 590 +#define FRAME_crch_tg_rdy_03 591 +#define FRAME_crch_tg_rdy_04 592 +#define FRAME_crch_tg_rdy_05 593 +#define FRAME_crch_tg_rdy_06 594 +#define FRAME_crch_tg_rdy_07 595 +#define FRAME_crch_tg_rdy_08 596 +#define FRAME_crch_tg_rdy_09 597 +#define FRAME_crch_tg_rdy_10 598 +#define FRAME_crch_tg_rdy_11 599 +#define FRAME_crch_tg_rdy_12 600 +#define FRAME_crch_tg_rdy_13 601 +#define FRAME_crch_tg_rdy_14 602 +#define FRAME_crch_tg_rdy_15 603 +#define FRAME_crch_tg_rdy_16 604 +#define FRAME_crch_tg_rdy_17 605 +#define FRAME_crch_tg_rdy_18 606 +#define FRAME_crch_tg_rdy_19 607 +#define FRAME_crch_tg_rdy_20 608 +#define FRAME_crch_tg_rdy_21 609 +#define FRAME_crch_tg_rdy_22 610 +#define FRAME_crch_tg_rdy_23 611 +#define FRAME_crch_tg_rdy_24 612 +#define FRAME_crch_tg_rdy_25 613 +#define FRAME_crch_tg_rdy_26 614 +#define FRAME_crch_tg_rdy_27 615 +#define FRAME_crch_tg_rdy_28 616 +#define FRAME_crch_tg_rdy_29 617 +#define FRAME_crch_tg_rdy_30 618 +#define FRAME_crch_tg_rdy_31 619 +#define FRAME_crch_tg_rdy_32 620 +#define FRAME_crch_tg_rdy_33 621 +#define FRAME_crch_tg_rdy_34 622 +#define FRAME_crch_tg_rdy_35 623 +#define FRAME_crch_tg_rdy_36 624 +#define FRAME_st_climb_01 625 +#define FRAME_st_climb_02 626 +#define FRAME_st_climb_03 627 +#define FRAME_st_climb_04 628 +#define FRAME_st_climb_05 629 +#define FRAME_st_climb_06 630 +#define FRAME_st_climb_07 631 +#define FRAME_st_climb_08 632 +#define FRAME_clmb_loop_01 633 +#define FRAME_clmb_loop_02 634 +#define FRAME_clmb_loop_03 635 +#define FRAME_clmb_loop_04 636 +#define FRAME_clmb_loop_05 637 +#define FRAME_clmb_loop_06 638 +#define FRAME_clmb_loop_07 639 +#define FRAME_clmb_loop_08 640 +#define FRAME_clmb_loop_09 641 +#define FRAME_clmb_loop_10 642 +#define FRAME_clmb_loop_11 643 +#define FRAME_clmb_over_01 644 +#define FRAME_clmb_over_02 645 +#define FRAME_clmb_over_03 646 +#define FRAME_clmb_over_04 647 +#define FRAME_clmb_over_05 648 +#define FRAME_clmb_over_06 649 +#define FRAME_clmb_over_07 650 +#define FRAME_clmb_over_08 651 +#define FRAME_clmb_over_09 652 +#define FRAME_clmb_over_10 653 +#define FRAME_clmb_over_11 654 +#define FRAME_clmb_over_12 655 +#define FRAME_clmb_over_13 656 +#define FRAME_clmb_over_14 657 +#define FRAME_clmb_over_15 658 +#define FRAME_lside_step_01 659 +#define FRAME_lside_step_02 660 +#define FRAME_lside_step_03 661 +#define FRAME_lside_step_04 662 +#define FRAME_lside_step_05 663 +#define FRAME_lside_step_06 664 +#define FRAME_lside_step_07 665 +#define FRAME_lside_step_08 666 +#define FRAME_lside_step_09 667 +#define FRAME_rside_step_01 668 +#define FRAME_rside_step_02 669 +#define FRAME_rside_step_03 670 +#define FRAME_rside_step_04 671 +#define FRAME_rside_step_05 672 +#define FRAME_rside_step_06 673 +#define FRAME_walk_nw_01 674 +#define FRAME_walk_nw_02 675 +#define FRAME_walk_nw_03 676 +#define FRAME_walk_nw_04 677 +#define FRAME_walk_nw_05 678 +#define FRAME_walk_nw_06 679 +#define FRAME_walk_nw_07 680 +#define FRAME_walk_nw_08 681 +#define FRAME_walk_nw_09 682 +#define FRAME_walk_nw_10 683 +#define FRAME_walk_nw_11 684 +#define FRAME_walk_tg_sht_01 685 +#define FRAME_walk_tg_sht_02 686 +#define FRAME_walk_tg_sht_03 687 +#define FRAME_walk_tg_sht_04 688 +#define FRAME_walk_tg_sht_05 689 +#define FRAME_walk_tg_sht_06 690 +#define FRAME_walk_tg_sht_07 691 +#define FRAME_walk_tg_sht_08 692 +#define FRAME_walk_tg_sht_09 693 +#define FRAME_walk_tg_sht_10 694 +#define FRAME_walk_tg_sht_11 695 +#define FRAME_walk_shg_sht_01 696 +#define FRAME_walk_shg_sht_02 697 +#define FRAME_walk_shg_sht_03 698 +#define FRAME_walk_shg_sht_04 699 +#define FRAME_walk_shg_sht_05 700 +#define FRAME_walk_shg_sht_06 701 +#define FRAME_walk_shg_sht_07 702 +#define FRAME_walk_shg_sht_08 703 +#define FRAME_walk_shg_sht_09 704 +#define FRAME_walk_shg_sht_10 705 +#define FRAME_walk_shg_sht_11 706 +#define FRAME_walk_gdown_01 707 +#define FRAME_walk_gdown_02 708 +#define FRAME_walk_gdown_03 709 +#define FRAME_walk_gdown_04 710 +#define FRAME_walk_gdown_05 711 +#define FRAME_walk_gdown_06 712 +#define FRAME_walk_gdown_07 713 +#define FRAME_walk_gdown_08 714 +#define FRAME_walk_gdown_09 715 +#define FRAME_walk_gdown_10 716 +#define FRAME_walk_gdown_11 717 +#define FRAME_walk_gdown_12 718 +#define FRAME_walk_gdown_13 719 +#define FRAME_walk_gdown_14 720 +#define FRAME_walk_gdown_15 721 +#define FRAME_walk_gdown_16 722 +#define FRAME_run_nw_01 723 +#define FRAME_run_nw_02 724 +#define FRAME_run_nw_03 725 +#define FRAME_run_nw_04 726 +#define FRAME_run_nw_05 727 +#define FRAME_run_nw_06 728 +#define FRAME_run_nw_07 729 +#define FRAME_run_tg_sht_01 730 +#define FRAME_run_tg_sht_02 731 +#define FRAME_run_tg_sht_03 732 +#define FRAME_run_tg_sht_04 733 +#define FRAME_run_tg_sht_05 734 +#define FRAME_run_tg_sht_06 735 +#define FRAME_run_tg_sht_07 736 +#define FRAME_run_shg_sht_01 737 +#define FRAME_run_shg_sht_02 738 +#define FRAME_run_shg_sht_03 739 +#define FRAME_run_shg_sht_04 740 +#define FRAME_run_shg_sht_05 741 +#define FRAME_run_shg_sht_06 742 +#define FRAME_run_shg_sht_07 743 +#define FRAME_run_gun_down_01 744 +#define FRAME_run_gun_down_02 745 +#define FRAME_run_gun_down_03 746 +#define FRAME_run_gun_down_04 747 +#define FRAME_run_gun_down_05 748 +#define FRAME_run_gun_down_06 749 +#define FRAME_run_gun_down_07 750 +#define FRAME_run_on_fire_01 751 +#define FRAME_run_on_fire_02 752 +#define FRAME_run_on_fire_03 753 +#define FRAME_run_on_fire_04 754 +#define FRAME_run_on_fire_05 755 +#define FRAME_run_on_fire_06 756 +#define FRAME_run_on_fire_07 757 +#define FRAME_run_on_fire_08 758 +#define FRAME_run_on_fire_09 759 +#define FRAME_run_on_fire_10 760 +#define FRAME_run_on_fire_11 761 +#define FRAME_run_on_fire_12 762 +#define FRAME_run_on_fire_13 763 +#define FRAME_rsd_tg_run_01 764 +#define FRAME_rsd_tg_run_02 765 +#define FRAME_rsd_tg_run_03 766 +#define FRAME_rsd_tg_run_04 767 +#define FRAME_rsd_tg_run_05 768 +#define FRAME_rsd_tg_run_06 769 +#define FRAME_rsd_tg_run_07 770 +#define FRAME_lsd_tg_run_01 771 +#define FRAME_lsd_tg_run_02 772 +#define FRAME_lsd_tg_run_03 773 +#define FRAME_lsd_tg_run_04 774 +#define FRAME_lsd_tg_run_05 775 +#define FRAME_lsd_tg_run_06 776 +#define FRAME_lsd_tg_run_07 777 +#define FRAME_rsd_shg_run_01 778 +#define FRAME_rsd_shg_run_02 779 +#define FRAME_rsd_shg_run_03 780 +#define FRAME_rsd_shg_run_04 781 +#define FRAME_rsd_shg_run_05 782 +#define FRAME_rsd_shg_run_06 783 +#define FRAME_rsd_shg_run_07 784 +#define FRAME_lsd_shg_run_01 785 +#define FRAME_lsd_shg_run_02 786 +#define FRAME_lsd_shg_run_03 787 +#define FRAME_lsd_shg_run_04 788 +#define FRAME_lsd_shg_run_05 789 +#define FRAME_lsd_shg_run_06 790 +#define FRAME_lsd_shg_run_07 791 +#define FRAME_sg_stand_01 792 +#define FRAME_sg_stand_02 793 +#define FRAME_sg_stand_03 794 +#define FRAME_sg_stand_04 795 +#define FRAME_sg_stand_05 796 +#define FRAME_sg_stand_06 797 +#define FRAME_sg_stand_07 798 +#define FRAME_sg_stand_08 799 +#define FRAME_sg_stand_09 800 +#define FRAME_sg_stand_10 801 +#define FRAME_sg_stand_11 802 +#define FRAME_sg_stand_12 803 +#define FRAME_sg_stand_13 804 +#define FRAME_sg_stand_14 805 +#define FRAME_sg_stand_15 806 +#define FRAME_sg_stand_16 807 +#define FRAME_sg_stand_17 808 +#define FRAME_sg_talk1_01 809 +#define FRAME_sg_talk1_02 810 +#define FRAME_sg_talk1_03 811 +#define FRAME_sg_talk1_04 812 +#define FRAME_sg_talk1_05 813 +#define FRAME_sg_talk1_06 814 +#define FRAME_sg_talk1_07 815 +#define FRAME_sg_talk1_08 816 +#define FRAME_sg_talk1_09 817 +#define FRAME_sg_talk1_10 818 +#define FRAME_sg_talk1_11 819 +#define FRAME_sg_talk1_12 820 +#define FRAME_sg_talk1_13 821 +#define FRAME_sg_talk1_14 822 +#define FRAME_sg_talk1_15 823 +#define FRAME_sg_talk1_16 824 +#define FRAME_sg_talk1_17 825 +#define FRAME_sg_talk1_18 826 +#define FRAME_sg_talk1_19 827 +#define FRAME_sg_talk1_20 828 +#define FRAME_sg_talk1_21 829 +#define FRAME_sg_talk1_22 830 +#define FRAME_sg_talk1_23 831 +#define FRAME_sg_talk1_24 832 +#define FRAME_sg_talk1_25 833 +#define FRAME_sg_talk1_26 834 +#define FRAME_sg_talk1_27 835 +#define FRAME_sg_talk1_28 836 +#define FRAME_sg_talk1_29 837 +#define FRAME_sg_talk1_30 838 +#define FRAME_sg_talk1_31 839 +#define FRAME_sg_talk1_32 840 +#define FRAME_sg_talk1_33 841 +#define FRAME_sg_talk1_34 842 +#define FRAME_sg_talk1_35 843 +#define FRAME_sg_talk1_36 844 +#define FRAME_sg_talk1_37 845 +#define FRAME_sg_talk1_38 846 +#define FRAME_sg_talk2_01 847 +#define FRAME_sg_talk2_02 848 +#define FRAME_sg_talk2_03 849 +#define FRAME_sg_talk2_04 850 +#define FRAME_sg_talk2_05 851 +#define FRAME_sg_talk2_06 852 +#define FRAME_sg_talk2_07 853 +#define FRAME_sg_talk2_08 854 +#define FRAME_sg_talk2_09 855 +#define FRAME_sg_talk2_10 856 +#define FRAME_sg_talk2_11 857 +#define FRAME_sg_talk2_12 858 +#define FRAME_sg_talk2_13 859 +#define FRAME_sg_talk2_14 860 +#define FRAME_sg_talk2_15 861 +#define FRAME_sg_talk2_16 862 +#define FRAME_sg_talk2_17 863 +#define FRAME_sg_talk2_18 864 +#define FRAME_sg_talk2_19 865 +#define FRAME_sg_talk2_20 866 +#define FRAME_sg_talk2_21 867 +#define FRAME_sg_talk2_22 868 +#define FRAME_sg_talk2_23 869 +#define FRAME_sg_talk2_24 870 +#define FRAME_sg_talk2_25 871 +#define FRAME_sg_talk2_26 872 +#define FRAME_sg_talk2_27 873 +#define FRAME_sg_talk2_28 874 +#define FRAME_sg_talk2_29 875 +#define FRAME_sg_talk2_30 876 +#define FRAME_sg_talk2_31 877 +#define FRAME_sg_talk2_32 878 +#define FRAME_sg_talk2_33 879 +#define FRAME_sg_talk2_34 880 +#define FRAME_sg_talk2_35 881 +#define FRAME_sg_talk2_36 882 +#define FRAME_sg_talk2_37 883 +#define FRAME_sg_talk2_38 884 +#define FRAME_sg_talk3_01 885 +#define FRAME_sg_talk3_02 886 +#define FRAME_sg_talk3_03 887 +#define FRAME_sg_talk3_04 888 +#define FRAME_sg_talk3_05 889 +#define FRAME_sg_talk3_06 890 +#define FRAME_sg_talk3_07 891 +#define FRAME_sg_talk3_08 892 +#define FRAME_sg_talk3_09 893 +#define FRAME_sg_talk3_10 894 +#define FRAME_sg_talk3_11 895 +#define FRAME_sg_talk3_12 896 +#define FRAME_sg_talk3_13 897 +#define FRAME_sg_talk3_14 898 +#define FRAME_sg_talk3_15 899 +#define FRAME_sg_talk3_16 900 +#define FRAME_sg_talk3_17 901 +#define FRAME_sg_talk3_18 902 +#define FRAME_sg_talk3_19 903 +#define FRAME_sg_talk3_20 904 +#define FRAME_sg_talk3_21 905 +#define FRAME_sg_talk3_22 906 +#define FRAME_sg_talk3_23 907 +#define FRAME_sg_talk5_01 908 +#define FRAME_sg_talk5_02 909 +#define FRAME_sg_talk5_03 910 +#define FRAME_sg_talk5_04 911 +#define FRAME_sg_talk5_05 912 +#define FRAME_sg_talk5_06 913 +#define FRAME_sg_talk5_07 914 +#define FRAME_sg_talk5_08 915 +#define FRAME_sg_talk5_09 916 +#define FRAME_sg_talk5_10 917 +#define FRAME_sg_talk5_11 918 +#define FRAME_sg_talk5_12 919 +#define FRAME_sg_talk5_13 920 +#define FRAME_sg_talk5_14 921 +#define FRAME_sg_talk5_15 922 +#define FRAME_sg_talk5_16 923 +#define FRAME_sg_talk6_01 924 +#define FRAME_sg_talk6_02 925 +#define FRAME_sg_talk6_03 926 +#define FRAME_sg_talk6_04 927 +#define FRAME_sg_talk6_05 928 +#define FRAME_sg_talk6_06 929 +#define FRAME_sg_talk6_07 930 +#define FRAME_sg_talk6_08 931 +#define FRAME_sg_talk6_09 932 +#define FRAME_sg_talk6_10 933 +#define FRAME_sg_talk6_11 934 +#define FRAME_sg_talk6_12 935 +#define FRAME_sg_talk6_13 936 +#define FRAME_sg_talk6_14 937 +#define FRAME_sg_talk6_15 938 +#define FRAME_sg_talk6_16 939 +#define FRAME_sg_talk6_17 940 +#define FRAME_sg_talk6_18 941 +#define FRAME_sg_talk6_19 942 +#define FRAME_sg_talk6_20 943 +#define FRAME_sg_talk7_01 944 +#define FRAME_sg_talk7_02 945 +#define FRAME_sg_talk7_03 946 +#define FRAME_sg_talk7_04 947 +#define FRAME_sg_talk7_05 948 +#define FRAME_sg_talk7_06 949 +#define FRAME_sg_talk7_07 950 +#define FRAME_sg_talk7_08 951 +#define FRAME_sg_talk7_09 952 +#define FRAME_sg_talk7_10 953 +#define FRAME_sg_talk7_11 954 +#define FRAME_sg_talk7_12 955 +#define FRAME_sg_talk7_13 956 +#define FRAME_sg_talk7_14 957 +#define FRAME_sg_talk7_15 958 +#define FRAME_sg_talk7_16 959 +#define FRAME_sg_talk7_17 960 +#define FRAME_sg_talk7_18 961 +#define FRAME_sg_talk7_19 962 +#define FRAME_sg_talk7_20 963 +#define FRAME_sg_talk7_21 964 +#define FRAME_sg_talk8_01 965 +#define FRAME_sg_talk8_02 966 +#define FRAME_sg_talk8_03 967 +#define FRAME_sg_talk8_04 968 +#define FRAME_sg_talk8_05 969 +#define FRAME_sg_talk8_06 970 +#define FRAME_sg_talk8_07 971 +#define FRAME_sg_talk8_08 972 +#define FRAME_sg_talk8_09 973 +#define FRAME_sg_talk8_10 974 +#define FRAME_sg_talk8_11 975 +#define FRAME_sg_talk8_12 976 +#define FRAME_sg_talk8_13 977 +#define FRAME_sg_talk8_14 978 +#define FRAME_sg_talk8_15 979 +#define FRAME_sg_talk8_16 980 +#define FRAME_sg_talk8_17 981 +#define FRAME_sg_talk8_18 982 +#define FRAME_sg_talk8_19 983 +#define FRAME_hmg_std_01 984 +#define FRAME_hmg_std_02 985 +#define FRAME_hmg_std_03 986 +#define FRAME_hmg_std_04 987 +#define FRAME_hmg_std_05 988 +#define FRAME_hmg_std_06 989 +#define FRAME_hmg_std_07 990 +#define FRAME_hmg_std_08 991 +#define FRAME_hmg_std_09 992 +#define FRAME_hmg_std_10 993 +#define FRAME_hmg_std_11 994 +#define FRAME_hmg_sht_01 995 +#define FRAME_hmg_sht_02 996 +#define FRAME_hmg_sht_03 997 +#define FRAME_hmg_sht_04 998 +#define FRAME_hmg_sht_05 999 +#define FRAME_hmg_sht_06 1000 +#define FRAME_hmg_sht_07 1001 +#define FRAME_hmg_sht_08 1002 +#define FRAME_hmg_sht_09 1003 +#define FRAME_hmg_sht_10 1004 +#define FRAME_hmg_sht_11 1005 +#define FRAME_hmg_wlk_01 1006 +#define FRAME_hmg_wlk_02 1007 +#define FRAME_hmg_wlk_03 1008 +#define FRAME_hmg_wlk_04 1009 +#define FRAME_hmg_wlk_05 1010 +#define FRAME_hmg_wlk_06 1011 +#define FRAME_hmg_wlk_07 1012 +#define FRAME_hmg_wlk_08 1013 +#define FRAME_hmg_wlk_09 1014 +#define FRAME_hmg_wlk_10 1015 +#define FRAME_hmg_wlk_11 1016 +#define FRAME_hmg_run_01 1017 +#define FRAME_hmg_run_02 1018 +#define FRAME_hmg_run_03 1019 +#define FRAME_hmg_run_04 1020 +#define FRAME_hmg_run_05 1021 +#define FRAME_hmg_run_06 1022 +#define FRAME_hmg_run_07 1023 + +#define MODEL_SCALE 1.000000 diff --git a/gamesrc/EP_ALL.C b/gamesrc/EP_ALL.C new file mode 100644 index 0000000..f349c2e --- /dev/null +++ b/gamesrc/EP_ALL.C @@ -0,0 +1,711 @@ +/****************************************************************************** + + GENERIC EPISODE CODE + +******************************************************************************/ + +#include "g_local.h" + +/* + case EP_SKIDROW : + case EP_POISONVILLE : + case EP_STEELTOWN: + case EP_TRAINYARD: + case EP_RADIOCITY: + case EP_SHIPYARDS: + case EP_CRYSTALPALACE: +*/ +//............................................................................ +// Character Names +// + +// ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! +// +// Note, these must be in the same order as the defines in ep_all.h! +// +// ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! + +char *ep_names[] = +{ + "--THIS SLOT MUST BE VACANT--", + "Al", + "Beth", + "Magicj", + "Lisa", + "Louie", + "Frank", + "Buttmunch", + "Arnold", + "Brewster", + "Punky", + "Igmo", + "Johnny", + "Betty", + "Leroy", + "Jed", + "Buster", + "Bubba", + "Momo", + "Muttski", + "Spike", + "ToughGuy1", + "ToughGuy2", + "IntroGuy", + "Bernie", + "Lamont", + "Mona", + "Lenny", + "Chick", + "Sluggo", + "Rocko", + "Rover", + "Joseph", + "Rummy", // sr1 bum + "Nick", // sr2 bum + "Jesus", // sr boss + "Yolanda", + "Carlton", + "Tina", + "Hardey", + "Laurel", + "Harold", + "Dick", + "Burt", + "Fingers", + "Dan", + "Clarence", + "Adolf", + "Candy", + "Sharky", + "Kingpin", + "Blunt", + "NikkiBlanco", + "Moe", + "Larry", + "Curly", + "Ed", + "Popeye", + "Dogg", + "Selma", + "Jane", + "Barney", + "BigWillie", + "Sal", + "Lefty", + "Bwillie", + "Mung", + "Tyrone", + "Luke", + "Hann", + "Kroker", + "kid_1", + "kid_2", + "kid_3", + "kid_4", + "kid_5", + "kid_6", + "kid_7", + "kid_8", + "Oscar", + "David", + "Bambi", + "Brittany", + "Mathew", + "Pete", + "Moker", + "Heilman", + "Butch", + "Patrick", + "Groucho", + "Harpo", + "Chico", + "Blefty", + "Scalper", + "Dubs", + "Rochelle", + "Lola", + "Dude", + "Walter", + "Donny", + NULL +}; + +//............................................................................ + +// This sets the self->name_index according to the list above +void EP_SetNameIndex ( edict_t *self ) +{ + int i; + + if (!self->name) + { + self->name_index = -1; + return; + } + + for (i=0; ep_names[i]; i++) + { + if (self->name) + if (!Q_stricmp(self->name, ep_names[i])) + { // found a match + self->name_index = i; + return; + } + } + + // no match found! + gi.dprintf( "EP_SetNameIndex: Un-matched \"name\" (%s)\n", self->name ); + self->name_index = -1; +} + +// Given a NAME_*, returns the entity with the matching name +edict_t *EP_GetCharacter ( int nameIndex ) +{ + int i; + + for (i=0; iname_index == nameIndex) + { + if ((level.characters[i]->inuse) && (level.characters[i]->svflags & SVF_MONSTER) && (level.characters[i]->health > 0)) + return level.characters[i]; + else + return NULL; // character has died + } + } + + // This is causing problems be cause the guy could get refrenced yet be on another map + // gi.dprintf( "EP_GetCharacter: couldn't find %s\n", ep_names[nameIndex] ); + + return NULL; // couldn't find them +} + +// Given a "name", returns the entity with the matching name +edict_t *EP_GetCharacterByName ( char *name ) +{ + int i; + + for (i=0; iname, name )) + { + if ((level.characters[i]->inuse) && (level.characters[i]->svflags & SVF_MONSTER) && (level.characters[i]->health > 0)) + return level.characters[i]; + else + return NULL; // character has died + } + } + + gi.dprintf( "EP_GetCharacter: couldn't find %s\n", name ); + + return NULL; // couldn't find them +} + +//............................................................................ +// Gang Names +// +// These will match the "cast_group" value for characters in the game +// Also must match the defines in ep_all.h !! + +char *ep_gang_names[] = +{ + "(neutral)", + "Our Gang(?)", + "Main Gang(?)", + "Rat-Gang", + NULL +}; + +char *EP_GetGangName ( int cast_group ) +{ + static char unknown_str[] = "**UNKNOWN**"; + + if (cast_group >= NUM_GANGS) + return unknown_str; + + return ep_gang_names[cast_group]; +} + +//======================================================================================================= + + +void EP_PlayerLog (edict_t *self, int page) +{ + switch (level.episode) + { + case EP_SKIDROW: + EP_Skidrow_Player_Log (self, page); + break; + case EP_POISONVILLE: + EP_PV_Player_Log (self, page); + break; + case EP_SHIPYARDS: + EP_SY_Player_Log (self, page); + break; + case EP_STEELTOWN: + EP_Steeltown_Player_Log (self, page); + break; + case EP_TRAINYARD: + EP_Trainyard_Player_Log (self, page); + break; + case EP_RADIOCITY: + EP_RC_Player_Log (self, page); + break; + } +} + + +//............................................................................ +// This gets called whenever an AI character has sighted another character +// (which will happen every frame while they are in view). + +qboolean EP_CastSight ( edict_t *self, edict_t *other, cast_memory_t *cast_memory ) +{ + switch (level.episode) + { + case EP_SKIDROW : + return EP_Skidrow_CastSight ( self, other, cast_memory ); + case EP_POISONVILLE : + return EP_Poisonville_CastSight ( self, other, cast_memory ); + + case EP_STEELTOWN: + return EP_Steeltown_CastSight ( self, other, cast_memory ); + break; + case EP_TRAINYARD: + break; + case EP_RADIOCITY: + return EP_RC_CastSight ( self, other, cast_memory ); + break; + case EP_SHIPYARDS: + return EP_SY_CastSight ( self, other, cast_memory ); + } + + return false; +} + +//............................................................................ +// This gets called whenever an AI character dies is "used" (like when they die and have a ->deathtarget) + +qboolean EP_CastUse ( edict_t *self, edict_t *other, edict_t *activator ) +{ + switch (level.episode) + { + case EP_SKIDROW : + return EP_Skidrow_CastUse ( self, other, activator ); + break; + case EP_POISONVILLE : + return EP_Poisonville_CastUse ( self, other, activator ); + break; + case EP_STEELTOWN: + return EP_Steeltown_CastUse ( self, other, activator ); + break; + case EP_TRAINYARD: + break; + case EP_RADIOCITY: + return EP_RC_CastUse ( self, other, activator ); + break; + case EP_SHIPYARDS: + return EP_SY_CastUse ( self, other, activator ); + } + + return false; +} + + +//............................................................................ +// Generic event based speech for episodes + +qboolean EP_EventSpeech (edict_t *self, edict_t *other, int saywhat) +{ + + switch (level.episode) + { + case EP_SKIDROW: + return EP_Skidrow_EventSpeech (self, other, saywhat); + break; + case EP_POISONVILLE: + return EP_Poisonville_EventSpeech (self, other, saywhat); + break; + case EP_TRAINYARD: + return EP_Trainyard_EventSpeech (self, other, saywhat); + break; + case EP_SHIPYARDS: + return EP_SY_EventSpeech (self, other, saywhat); + break; + case EP_STEELTOWN: + return EP_Steeltown_EventSpeech (self, other, saywhat); + break; + case EP_RADIOCITY: + return EP_RC_EventSpeech (self, other, saywhat); + break; + } + + return false; +} + +//............................................................................ +// Called whenever an item is picked up + +void EP_ItemPickup ( edict_t *self, edict_t *other ) +{ + + switch (level.episode) + { + case EP_SKIDROW: + EP_Skidrow_ItemPickup( self, other ); + break; + case EP_POISONVILLE: + EP_Poisonville_ItemPickup( self, other ); + break; + case EP_TRAINYARD: + EP_Trainyard_ItemPickup( self, other ); + break; + case EP_SHIPYARDS: + EP_SY_ItemPickup( self, other ); + break; + case EP_STEELTOWN: + EP_Steeltown_ItemPickup (self, other); + break; + + } + +} + + +//............................................................................ +// Called whenever a character reaches a path_corner_cast that has a "scriptname" set + +void EP_EventScript ( edict_t *self, char *scriptname ) +{ + + switch (level.episode) + { + case EP_SKIDROW: + EP_Skidrow_Script( self, scriptname ); + break; + case EP_POISONVILLE: + EP_Poisonville_Script( self, scriptname ); + break; + case EP_TRAINYARD: + EP_Trainyard_Script( self, scriptname ); + break; + case EP_SHIPYARDS: + EP_SY_Script( self, scriptname ); + break; + case EP_STEELTOWN: + EP_Steeltown_Script (self, scriptname); + break; + } + +} + + +void EP_Reset (edict_t *self, edict_t *other) +{ + + switch (level.episode) + { + case EP_SKIDROW: + EP_Skidrow_Reset( self, other ); + break; + case EP_POISONVILLE: + // EP_Poisonville_Reset( self, other ); + break; + } + +} + + +void EP_SpawnFlags (edict_t *self) +{ + switch (level.episode) + { + case EP_SKIDROW: + EP_SkidrowFlags (self); + break; + case EP_POISONVILLE: + EP_PVFlags (self); + break; + case EP_SHIPYARDS: + EP_SYFlags (self); + break; + case EP_STEELTOWN: + EP_SteeltownFlags (self); + break; + case EP_RADIOCITY: + EP_RCFlags (self); + break; + } +} + +int EP_HiredGuys (edict_t *self, edict_t *other) +{ + switch (level.episode) + { + case EP_SKIDROW: + return (1); + case EP_POISONVILLE: + return (EP_PV_HiredGuysFlags (self, other)); + case EP_STEELTOWN: + return (EP_Steeltown_HiredGuysFlags (self, other)); + case EP_TRAINYARD: + return (EP_Trainyard_HiredGuysFlags (self, other)); + case EP_RADIOCITY: + return (EP_RC_HiredGuysFlags (self, other)); + case EP_SHIPYARDS: + return (EP_SY_HiredGuysFlags (self, other)); + default: + return (1); + } + + // just to shut up the compiler + return (0); +} + +void EP_CheckMomo (edict_t *ent, cast_memory_t *mem) +{ + switch (level.episode) + { + case EP_SKIDROW: + EP_Skidrow_CheckMomo (ent, mem); + break; + case EP_POISONVILLE: + EP_PV_CheckMomo (ent, mem); + break; + case EP_SHIPYARDS: + EP_SY_CheckMomo (ent, mem); + break; + case EP_STEELTOWN: + EP_Steeltown_CheckMomo (ent, mem); + break; + case EP_RADIOCITY: + EP_RC_CheckMomo (ent, mem); + break; + } +} + +qboolean EP_DoKey (edict_t *ent, edict_t *other) +{ + switch (level.episode) + { + case EP_SKIDROW: + return false; + break; + case EP_POISONVILLE: + return (EP_PV_DoKey (ent, other)); + break; + case EP_STEELTOWN: + return (EP_Steeltown_DoKey (ent, other)); + break; + } + + return false; +} + +void EP_Check_DoKey (edict_t *self, edict_t *ent) +{ + + switch (level.episode) + { + case EP_SKIDROW: + break; + case EP_POISONVILLE: + EP_PV_Check_DoKey (self, ent); + break; + case EP_STEELTOWN: + EP_Steeltown_Check_DoKey (self, ent); + break; + } + +} + +void EP_ReachedDoKey (edict_t *self) +{ + switch (level.episode) + { + case EP_SKIDROW: + break; + case EP_POISONVILLE: + EP_PV_ReachedDoKey (self); + break; + case EP_STEELTOWN: + EP_Steeltown_ReachedDoKey (self); + break; + } +} + +void EP_EndDoKey (edict_t *self) +{ + switch (level.episode) + { + case EP_SKIDROW: + break; + case EP_POISONVILLE: + EP_PV_EndDoKey (self); + break; + case EP_STEELTOWN: + EP_Steeltown_EndDoKey (self); + break; + } +} + + +qboolean EP_UnlockDoorFlag (edict_t *ent) +{ + switch (level.episode) + { + case EP_SKIDROW: + break; + case EP_POISONVILLE: + return (EP_PV_UnlockDoorFlag (ent)); + break; + case EP_STEELTOWN: + return (EP_Steeltown_UnlockDoorFlag (ent)); + break; + } + + return false; +} + +void EP_HiredGuysRegisterFlags (edict_t *ent, edict_t *other) +{ + switch (level.episode) + { + case EP_SKIDROW: + break; + case EP_POISONVILLE: + EP_PV_HiredGuysRegisterFlags (ent, other); + break; + case EP_STEELTOWN: + EP_Steeltown_HiredGuysRegisterFlags (ent, other); + break; + case EP_RADIOCITY: + EP_RC_HiredGuysRegisterFlags (ent, other); + break; + } + +} + +void EP_SpecialEventDeath (edict_t *self) +{ + switch (level.episode) + { + case EP_SKIDROW: + break; + case EP_POISONVILLE: + EP_PV_SpecialEventDeath (self); + break; + case EP_STEELTOWN: + EP_Steeltown_SpecialEventDeath (self); + break; + case EP_TRAINYARD: + // EP_Trainyard_SpecialEventDeath (self); + break; + case EP_RADIOCITY: + EP_RC_SpecialEventDeath (self); + break; + case EP_SHIPYARDS: + EP_SY_SpecialEventDeath (self); + break; + } + +} + +qboolean EP_Steeltown_UnlockDoorFlag (edict_t *ent) +{ + return false; +} + +// JOSEPH 14-JUN-99 +void Think_Help (edict_t *ent) +{ + if (!(level.helpchange)) + { + level.helpchange = 0; + G_FreeEdict(ent); + return; + } + + if (!ent->misstime ) + { + level.helpchange = 0; + G_FreeEdict(ent); + return; + } + + if (ent->misstime <= 15 && level.helpchange) + { + level.helpchange = ent->misstime*(255/15); + } + + ent->misstime--; + + ent->nextthink = level.time + 0.1; +} + +void Show_Help (void) +{ + edict_t *help = NULL; + edict_t *ent = NULL; + + ent = G_Find (NULL, FOFS(classname), "showhelp"); + if (ent) + { + G_FreeEdict(ent); + } + + help = G_Spawn(); + + if (!help) + return; + + help->classname = "showhelp"; + help->think = Think_Help; + help->misstime = 315; + help->nextthink = level.time + 0.1; + + gi.linkentity (help); + + level.helpchange = 255; + + return; +} +// END JOSEPH + +void EP_Flash_Newflag (edict_t *self, int ep_flag) +{ + + qboolean rval = false; + + switch (level.episode) + { + case EP_SKIDROW: + rval = EP_Skidrow_Flash_Newflag (self, ep_flag); + break; + case EP_POISONVILLE: + rval = EP_PV_Flash_Newflag (self, ep_flag); + break; + case EP_STEELTOWN: + rval = EP_Steeltown_Flash_Newflag (self, ep_flag); + break; + case EP_TRAINYARD: + rval = EP_TY_Flash_Newflag (self, ep_flag); + break; + case EP_RADIOCITY: + rval = EP_RC_Flash_Newflag (self, ep_flag); + break; + case EP_SHIPYARDS: + rval = EP_SY_Flash_Newflag (self, ep_flag); + break; + } + + // joe flash the notepad help icon here + if (rval) + Show_Help (); +} diff --git a/gamesrc/EP_ALL.H b/gamesrc/EP_ALL.H new file mode 100644 index 0000000..2b9d063 --- /dev/null +++ b/gamesrc/EP_ALL.H @@ -0,0 +1,533 @@ +/****************************************************************************** + + GENERIC EPISODE DEFINES + +******************************************************************************/ + +//............................................................................. +// Episode indexes +#define EP_SKIDROW 1 +#define EP_POISONVILLE 2 +#define EP_SHIPYARDS 3 +#define EP_STEELTOWN 4 +#define EP_TRAINYARD 5 +#define EP_RADIOCITY 6 + +//............................................................................. +// Special flags that AI will look at + +// Skidrow flags +#define EP_SKIDROW_MAGICJ_ASKED_DOLLAR 0x00000001 // 1 +#define EP_SKIDROW_BETH_GIVES_HINT 0x00000002 // 2 +#define EP_SKIDROW_AL_SAW_DEAD_LOUIE 0x00000004 // 3 +#define EP_PAWNOMATIC_FIRST_TIME 0x00000008 // 4 +#define EP_SKIDROW_GOT_COIL 0x00000010 // 5 + +#define EP_SKIDROW_MAGICJ_GAVE_DOLLAR 0x00000020 // 6 +#define EP_SKIDROW_MOMO_ASKED_MONEY 0x00000040 // 7 +#define EP_SKIDROW_MOMO_TOOK_MONEY 0x00000080 // 8 +#define EP_SKIDROW_MOMO_FIRST_TIME 0x00000100 // 9 + +#define EP_TALKED_TO_LENNY 0x00000200 // 10 + +#define EP_SKIDROW_MOMO_GAVE_MONEY 0x00000800 // 11 +#define EP_BAR_FIRST_TIME 0x00001000 // 12 +#define EP_SKIDROW_LENNY_TOOK_WATCH 0x00002000 // 13 + +#define EP_SKIDROW_NICK_WARNING_1 0x00004000 // 14 +#define EP_SKIDROW_NICK_WARNING_2 0x00080000 // 15 +#define EP_SKIDROW_NICK_WARNING_3 0x00100000 // 16 + +#define EP_SKIDROW_RUMMY_GAVE_WINE 0x00200000 // 17 +#define EP_SKIDROW_RUMMY_ASKED_WINE 0x00400000 // 18 + +#define EP_SKIDROW_RATS_PISSED 0x00800000 // 19 +#define EP_SKIDROW_CUT_SCENE_TWO 0x01000000 // 20 +#define EP_SKIDROW_MONA_FIRST_TIME 0x02000000 // 21 +#define EP_SKIDROW_NICK_TOLD_BIKE 0x04000000 // 22 +#define EP_SKIDROW_FOUND_BIKE 0x08000000 // 23 +#define EP_SKIDROW_RATS_FIND 0x10000000 // 24 +#define EP_SKIDROW_TALKED_TO_RUMMY 0x20000000 // 25 + +// Poisonville flags +#define EP_PV_TALKED_LOUIE 0x00000001 // 1 +#define EP_PV_OPEN_DOOR_LOUIE 0x00000002 // 2 +#define EP_PV_SAFE_DOCS 0x00000004 // 3 +#define EP_PV_SAFE_DOCS_DELIVERED 0x00000008 // 4 + +#define EP_PV_HIRED_SAFE_BOY 0x00000010 // 5 +#define EP_PV_YOLANDA_DISTRACT 0x00000020 // 6 +#define EP_PV_MOMO_ASKED_MONEY 0x00000040 // 7 +#define EP_PV_MOMO_TOOK_MONEY 0x00000080 // 8 + +#define EP_PV_MOMO_FIRST_TIME 0x00000100 // 9 +#define EP_PV_MOMO_GAVE_MONEY 0x00000200 // 10 +#define EP_PV_YOLANDA_TOOK_MONEY 0x00000400 // 11 +#define EP_PV_YOLANDA_ASKED_MONEY 0x00000800 // 12 + +#define EP_PV_PAWNOMATIC_FIRST_TIME 0x00001000 // 13 +#define EP_PV_BAR_FIRST_TIME 0x00002000 // 14 +#define EP_PV_OFFICE_FIRST_TIME 0x00004000 // 15 +#define EP_PV_SENT_TO_GET_SAFEDOCS 0x00008000 // 16 + +#define EP_PV_LOUIE_SPEACH_1 0x00010000 // 17 +#define EP_PV_LOUIE_SPEACH_2 0x00020000 // 18 +#define EP_PV_TALKED_LOUIE_2 0x00040000 // 19 + +#define EP_PV_TALKED_LOUIE2 0x00080000 // 20 +#define EP_PV_TALKED_LOUIE3 0x00100000 // 21 +#define EP_PV_TALKED_LOUIE4 0x00200000 // 22 +#define EP_PV_TALKED_LOUIE5 0x00400000 // 23 +#define EP_PV_LOUIE_KEY 0x00800000 // 24 +#define EP_PV_FIND_LOUIE 0x01000000 // 25 + +#define EP_PV_BUSTERISDEAD 0x02000000 +#define EP_PV_FINGERSISDEAD 0x04000000 +#define EP_PV_SAFEDOORISOPEN 0x08000000 + +#define EP_PV_LOUIEPVB 0x10000000 +#define EP_PV_FUSEISBLOWN1 0x20000000 +#define EP_PV_ONEFUSE 0x40000000 +#define EP_PV_FUSEISBLOWN2 0x80000000 + +// Crystal Palace flags +#define EP_CP_KINGPIN_FIRSTSIGHT 0x00000001 // 01 + +// Train Yard flags +#define EP_TY_LUKE_CLUE1 0x00000001 +#define EP_TY_LUKE_CLUE2 0x00000002 + +#define EP_TY_HANN_CLUE1 0x00000004 +#define EP_TY_HANN_CLUE2 0x00000008 +#define EP_TY_PAWNOMATIC_FIRST_TIME 0x00000010 +#define EP_TY_TAKETHESEWER 0x00000020 + +#define EP_TY_FUSEBLOWN 0x00000040 + + +// Shipyard flags +#define EP_SY_GOTO_SALTYDOG 0x00000001 +#define EP_SY_SCREAMING_BITCH 0x00000002 +#define EP_SY_FOUND_BITCH 0x00000004 +#define EP_SY_BEEN_BAITSHOP 0x00000008 + +#define EP_SY_GETME_LURE 0x00000010 +#define EP_SY_GOT_LURE 0x00000020 +#define EP_SY_GOT_TOBEDETERMINED 0x00000040 +#define EP_SY_GOFIND_BITCH 0x00000080 + +#define EP_SY_MOMO_ASKED_MONEY 0x00000100 +#define EP_SY_MOMO_TOOK_MONEY 0x00000200 +#define EP_SY_MOMO_FIRST_TIME 0x00000400 +#define EP_SY_GOFIND_BITCH_SAL 0x00000800 + +#define EP_SY_TACKLE 0x00001000 +#define EP_SY_HIRED_SAL 0x00002000 +#define EP_SY_SAL_SECONDLINE 0x00004000 + +#define EP_SY_MOE_FIRST_SIGHT 0x00008000 +#define EP_SY_MOE_ESCALATE1 0x00010000 +#define EP_SY_MOE_ESCALATE2 0x00020000 +#define EP_SY_MOE_ESCALATE3 0x00040000 + +#define EP_SY_MOE_FEAR1 0x00080000 +#define EP_SY_MOE_FEAR2 0x00100000 +#define EP_SY_MOE_FEAR3 0x00200000 +#define EP_SY_BW_HIRED 0x00400000 + +#define EP_SY_BIGWILLIE_DEAD 0x00800000 +#define EP_SY_SAL_DEAD 0x01000000 +#define EP_SY_BIGWILLIE_REVENGE 0x02000000 +#define EP_SY_LEFTY_HIRED 0x04000000 +#define EP_SY_MOE_RUNAWAY 0x08000000 +#define EP_SY_PAWNOMATIC_FIRST_TIME 0x10000000 +#define EP_SY_POPEYE_LASTLINE 0x20000000 +#define EP_SY_MOE_LASTLINE 0x40000000 +#define EP_SY_GOTO_DOORSHUT 0x80000000 + +// Steeltown flags +#define EP_Steeltown_MOMO_TOOK_MONEY 0x00000001 +#define EP_Steeltown_MOMO_FIRST_TIME 0x00000002 +#define EP_Steeltown_MOMO_ASKED_MONEY 0x00000004 + +#define EP_Steeltown_KIDS_CLUE 0x00000008 + +#define EP_Steeltown_MATHEW_CLUE1 0x00000010 +#define EP_Steeltown_MATHEW_CLUE2 0x00000020 +#define EP_Steeltown_KROKER_SAY 0x00000040 +#define EP_Steeltown_PAWNOMATIC_FIRST_TIME 0x00000080 + +#define EP_Steeltown_DAVID_DEAD 0x00000100 +#define EP_Steeltown_DAVID_SAY1 0x00000200 +#define EP_Steeltown_DAVID_SAY2 0x00000400 +#define EP_Steeltown_DAVID_SAY3 0x00000800 + +#define EP_Steeltown_BAMBI_DONE 0x00001000 +#define EP_Steeltown_BAMBI_LINE1 0x00002000 +#define EP_Steeltown_MOKER_NOTINOFFICE 0x00004000 + +#define EP_Steeltown_MATHEW_LINE1 0x00008000 +#define EP_Steeltown_BRITTANY_LINE1 0x00010000 +#define EP_Steeltown_BRITTANY_CLUE1 0x00020000 + +#define EP_Steeltown_KIDS_CLUE1 0x00040000 +#define EP_Steeltown_KIDS_CLUE2 0x00080000 +#define EP_Steeltown_KROKER_BOLT 0x00100000 + +#define EP_Steeltown_DAVID_DEAD_A 0x00200000 +#define EP_Steeltown_DAVID_DEAD_B 0x00400000 + +#define EP_Steeltown_DAVID_HIRED 0x00800000 + +// Radio City flags +#define EP_RC_MOMO_TOOK_MONEY 0x00000001 +#define EP_RC_MOMO_FIRST_TIME 0x00000002 +#define EP_RC_MOMO_ASKED_MONEY 0x00000004 +#define EP_RC_OUTOFBRUSH 0x00000008 +#define EP_RC_INTOBRUSH 0x00000010 +#define EP_RC_FAILED_TEST 0x00000020 +#define EP_RC_PAWNOMATIC_FIRST_TIME 0x00000040 + +#define EP_RC_BUTCH_FIRST 0x00000080 +#define EP_RC_BUTCH_TALK1 0x00000100 +#define EP_RC_BUTCH_TALK2 0x00000200 + +#define EP_RC_GROUCHO_DEAD 0x00000400 +#define EP_RC_HARPO_DEAD 0x00000800 +#define EP_RC_CHICO_DEAD 0x00001000 + +#define EP_RC_JOKERS_HIRED 0x00002000 +#define EP_RC_PAY_500 0x00004000 +#define EP_RC_BUTCH_500 0x00008000 + +#define EP_RC_SCALPER_ASKED_MONEY 0x00010000 +#define EP_RC_TALKED_TO_SCALPER 0x00020000 +#define EP_RC_SCALPER_GAVE_MONEY 0x00040000 +#define EP_RC_SCALPER_LINE1 0x00080000 + +#define EP_RC_LOLA_CLUE1 0x00100000 +#define EP_RC_SCALPER_NOTEPAD 0x00200000 +#define EP_RC_LOLA_NOTEBOOK 0x00400000 +#define EP_RC_JOKERS_NOTEPAD 0x00800000 + +#define EP_RC_SCALPER_RANDOM 0x01000000 +#define EP_RC_THE_WARNING 0x02000000 +//............................................................................. +// Names (might not be episode-specific) + +//#define NAME_BERNIE 0 // not allowed to have a 0 NAME_* (move Bernie down list) +#define NAME_AL 1 +#define NAME_BETH 2 +#define NAME_MAGICJ 3 +#define NAME_LISA 4 +#define NAME_LOUIE 5 +#define NAME_FRANK 6 +#define NAME_BUTTMUNCH 7 +#define NAME_ARNOLD 8 +#define NAME_BREWSTER 9 +#define NAME_PUNKY 10 +#define NAME_IGMO 11 +#define NAME_JOHNNY 12 +#define NAME_BETTY 13 +#define NAME_LEROY 14 +#define NAME_JED 15 // Ridah, testing only (doors.bsp) +#define NAME_BUSTER 16 // Ridah, testing only (doors.bsp) +#define NAME_BUBBA 17 +#define NAME_MOMO 18 +#define NAME_MUTTSKI 19 +#define NAME_SPIKE 20 +#define NAME_TOUGHGUY1 21 +#define NAME_TOUGHGUY2 22 +#define NAME_INTROGUY1 23 +#define NAME_BERNIE 24 + +#define NAME_LAMONT 25 +#define NAME_MONA 26 +#define NAME_LENNY 27 +#define NAME_CHICK 28 + +#define NAME_SLUGGO 29 +#define NAME_ROCKO 30 + +#define NAME_ROVER 31 // Lamont's mutt + +#define NAME_JOSEPH 32 +#define NAME_RUMMY 33 +#define NAME_NICK 34 +#define NAME_JESUS 35 + +#define NAME_YOLANDA 36 + +#define NAME_CARLTON 37 +#define NAME_TINA 38 +#define NAME_HARDEY 39 +#define NAME_LAUREL 40 + +#define NAME_HAROLD 41 +#define NAME_DICK 42 +#define NAME_BURT 43 + +#define NAME_FINGERS 44 +#define NAME_DAN 45 + +#define NAME_CLARENCE 46 +#define NAME_ADOLF 47 +#define NAME_CANDY 48 + +#define NAME_SHARKY 49 // the pawn dude + +#define NAME_KINGPIN 50 +#define NAME_BLUNT 51 +#define NAME_NICKIBLANCO 52 + +#define NAME_MOE 53 +#define NAME_LARRY 54 +#define NAME_CURLY 55 + +#define NAME_ED 56 + +#define NAME_POPEYE 57 +#define NAME_DOGG 58 // this is the bartenders name... ?? (its what Rich wants) +#define NAME_SELMA 59 +#define NAME_JANE 60 +#define NAME_BARNEY 61 +#define NAME_BIGWILLIE 62 +#define NAME_SAL 63 +#define NAME_LEFTY 64 +#define NAME_BWILLIE 65 // DO NOT CONFUSE THIS WITH BIGWILLIE + +#define NAME_MUNG 66 +#define NAME_TYRONE 67 + +#define NAME_LUKE 68 +#define NAME_HANN 69 + +// STEELTOWN +#define NAME_KROKER 70 + +#define NAME_KID_1 71 +#define NAME_KID_2 72 +#define NAME_KID_3 73 +#define NAME_KID_4 74 +#define NAME_KID_5 75 +#define NAME_KID_6 76 +#define NAME_KID_7 77 +#define NAME_KID_8 78 + +#define NAME_OSCAR 79 +#define NAME_DAVID 80 +#define NAME_BAMBI 81 +#define NAME_BRITTANY 82 +#define NAME_MATHEW 83 +#define NAME_PETE 84 + +#define NAME_MOKER 85 // BOSS (STEELTOWN) + +#define NAME_HEILMAN 86 +// RC +#define NAME_BUTCH 87 +#define NAME_PATRICK 88 +#define NAME_GROUCHO 89 +#define NAME_HARPO 90 +#define NAME_CHICO 91 + +#define NAME_BLEFTY 92 +#define NAME_SCALPER 93 +#define NAME_DUBS 94 + +#define NAME_ROCHELLE 95 +#define NAME_LOLA 96 + +#define NAME_DUDE 97 +#define NAME_WALTER 98 +#define NAME_DONNY 99 + +//............................................................................. +// These must match the gang strings in ep_all.c !! + +#define GANG_NUETRAL 0 +#define GANG_PLAYER 1 +#define GANG_MAIN 2 +#define GANG_RATGANG 3 + +#define NUM_GANGS 3 + +//............................................................................. +// General procedural defines + +void EP_SpawnFlags ( edict_t *self ); + +void EP_SetNameIndex ( edict_t *self ); +edict_t *EP_GetCharacter ( int nameIndex ); +edict_t *EP_GetCharacterByName ( char *name ); +char *EP_GetGangName ( int cast_group ); + +qboolean EP_CastSight ( edict_t *self, edict_t *other, cast_memory_t *cast_memory ); +qboolean EP_CastUse ( edict_t *self, edict_t *other, edict_t *activator ); + +qboolean EP_EventSpeech ( edict_t *self, edict_t *other, int saywhat ); +void EP_ItemPickup ( edict_t *self, edict_t *other ); +void EP_EventScript ( edict_t *self, char *scriptname ); + +void EP_Reset ( edict_t *self, edict_t *other ); +void EP_PlayerLog ( edict_t *self, int page ); + +int EP_HiredGuys ( edict_t *player, edict_t *self ); +void EP_CheckMomo ( edict_t *ent, cast_memory_t *mem ); +qboolean EP_DoKey ( edict_t *ent, edict_t *other ); +void EP_Check_DoKey ( edict_t *self, edict_t *ent ); +void EP_ReachedDoKey ( edict_t *self ); +void EP_EndDoKey ( edict_t *self ); +qboolean EP_UnlockDoorFlag ( edict_t *ent ); +void EP_HiredGuysRegisterFlags ( edict_t *ent, edict_t *other ); +void EP_SpecialEventDeath ( edict_t *self ); + + +void EP_Flash_Newflag (edict_t *self, int ep_flag); +//............................................................................. +// Skidrow procedural defines + +qboolean EP_Skidrow_CastSight ( edict_t *self, edict_t *other, cast_memory_t *mem ); +qboolean EP_Skidrow_CastUse ( edict_t *self, edict_t *other, edict_t *activator ); +qboolean EP_Skidrow_EventSpeech ( edict_t *self, edict_t *other, int saywhat ); +void EP_Skidrow_ItemPickup ( edict_t *self, edict_t *other ); +void EP_Skidrow_Script ( edict_t *ent, char *scriptname ); + +void EP_Skidrow_Reset ( edict_t *self, edict_t *other ); + +void Resp_MagicJ_GotDollar ( edict_t *self, edict_t *other, response_t response ); +void Resp_Momo_GotMoney ( edict_t *self, edict_t *other, response_t response ); +void Resp_Betty_GetsPissed ( edict_t *self, edict_t *other, response_t response ); +void Resp_Lenny_Help ( edict_t *self, edict_t *other, response_t response ); +void Resp_Lenny_Killed_Target ( edict_t *self, edict_t *other, response_t response ); +void Resp_Rummy_GotWine ( edict_t *self, edict_t *other, response_t response ); + +void EP_SkidrowFlags ( edict_t *self ); +void EP_Skidrow_Player_Log ( edict_t *self, int page ); +void EP_Skidrow_Register_EPFLAG ( edict_t *self, int ep_flag ); +void EP_Skidrow_CheckMomo ( edict_t *ent, cast_memory_t *mem ); +qboolean EP_Skidrow_Flash_Newflag (edict_t *self, int ep_flag); +//............................................................................. + +// PoisonVille procedural defines + +qboolean EP_Poisonville_CastSight ( edict_t *self, edict_t *other, cast_memory_t *mem ); +qboolean EP_Poisonville_CastUse ( edict_t *self, edict_t *other, edict_t *activator ); +qboolean EP_Poisonville_EventSpeech ( edict_t *self, edict_t *other, int saywhat ); +void EP_Poisonville_ItemPickup ( edict_t *self, edict_t *other ); +void EP_Poisonville_Script ( edict_t *ent, char *scriptname ); +//............................................................................. + +// +// PoisonVille procedural defines + +int EP_PV_HiredGuysFlags ( edict_t *player, edict_t *self ); +void EP_PVFlags ( edict_t *self ); +void Resp_PVMomo_GotMoney ( edict_t *self, edict_t *other, response_t response ); +void EP_PV_CheckMomo ( edict_t *ent, cast_memory_t *mem ); +qboolean EP_PV_DoKey ( edict_t *ent, edict_t *other ); +void EP_PV_Check_DoKey ( edict_t *self, edict_t *ent ); +void EP_PV_ReachedDoKey ( edict_t *self ); +void EP_PV_EndDoKey ( edict_t *self ); + +qboolean EP_PV_UnlockDoorFlag ( edict_t *ent ); +void EP_PV_HiredGuysRegisterFlags( edict_t *ent, edict_t *other ); +void EP_PV_Player_Log ( edict_t *self, int page ); +void EP_PV_SpecialEventDeath ( edict_t *self); +qboolean EP_PV_Flash_Newflag (edict_t *self, int ep_flag); + +// Trainyard procedural defines +qboolean EP_Trainyard_EventSpeech ( edict_t *self, edict_t *other, int saywhat ); +void EP_Trainyard_ItemPickup ( edict_t *self, edict_t *other ); +void EP_Trainyard_Script ( edict_t *self, char *scriptname ); +int EP_Trainyard_HiredGuysFlags ( edict_t *player, edict_t *self ); +// void EP_Trainyard_SpecialEventDeath (edict_t *self ); +qboolean EP_Trainyard_CastSight ( edict_t *self, edict_t *other, cast_memory_t *mem ); +qboolean EP_Trainyard_CastUse ( edict_t *self, edict_t *other, edict_t *activator ); +void EP_Trainyard_Script ( edict_t *ent, char *scriptname ); +void EP_TrainyardFlags ( edict_t *self ); + +void EP_Trainyard_Player_Log ( edict_t *self, int page ); +qboolean EP_TY_Flash_Newflag (edict_t *self, int ep_flag); + +// Shipyard procedural defines +qboolean EP_SY_EventSpeech ( edict_t *self, edict_t *other, int saywhat ); +void EP_SY_ItemPickup ( edict_t *self, edict_t *other ); +void EP_SY_Script ( edict_t *self, char *scriptname ); +int EP_SY_HiredGuysFlags ( edict_t *player, edict_t *self ); +void EP_SY_SpecialEventDeath ( edict_t *self ); +qboolean EP_SY_CastSight ( edict_t *self, edict_t *other, cast_memory_t *mem ); +qboolean EP_SY_CastUse ( edict_t *self, edict_t *other, edict_t *activator ); +void EP_SY_Script ( edict_t *ent, char *scriptname ); +void EP_SYFlags ( edict_t *self ); +void EP_SY_CheckMomo ( edict_t *ent, cast_memory_t *mem ); +void EP_SY_SpecialEventDeath ( edict_t *self ); +void EP_SY_Player_Log ( edict_t *self, int page ); +qboolean EP_SY_Flash_Newflag (edict_t *self, int ep_flag); + + +// Steeltown procedural defines +qboolean EP_Steeltown_EventSpeech (edict_t *self, edict_t *other, int saywhat ); +void EP_Steeltown_ItemPickup (edict_t *self, edict_t *other ); +void EP_Steeltown_Script (edict_t *self, char *scriptname ); +int EP_Steeltown_HiredGuysFlags (edict_t *player, edict_t *self ); +void EP_Steeltown_SpecialEventDeath (edict_t *self ); +qboolean EP_Steeltown_CastSight (edict_t *self, edict_t *other, cast_memory_t *mem ); +qboolean EP_Steeltown_CastUse (edict_t *self, edict_t *other, edict_t *activator ); +void EP_Steeltown_Script (edict_t *ent, char *scriptname ); +void EP_SteeltownFlags (edict_t *self ); +void EP_Steeltown_CheckMomo (edict_t *ent, cast_memory_t *mem ); +void EP_Steeltown_SpecialEventDeath (edict_t *self ); +qboolean EP_Steeltown_DoKey (edict_t *ent, edict_t *other ); +void EP_Steeltown_Check_DoKey (edict_t *self, edict_t *ent ); +void EP_Steeltown_ReachedDoKey (edict_t *self ); +void EP_Steeltown_EndDoKey (edict_t *self ); +qboolean EP_Steeltown_UnlockDoorFlag (edict_t *ent ); +void EP_Steeltown_HiredGuysRegisterFlags (edict_t *ent, edict_t *other ); +void EP_Steeltown_Player_Log ( edict_t *self, int page ); +qboolean EP_Steeltown_Flash_Newflag (edict_t *self, int ep_flag); + +// RadioCity procedural defines +qboolean EP_RC_EventSpeech (edict_t *self, edict_t *other, int saywhat ); +void EP_RC_ItemPickup (edict_t *self, edict_t *other ); +void EP_RC_Script (edict_t *self, char *scriptname ); +int EP_RC_HiredGuysFlags (edict_t *player, edict_t *self ); +void EP_RC_SpecialEventDeath (edict_t *self ); +qboolean EP_RC_CastSight (edict_t *self, edict_t *other, cast_memory_t *mem ); +qboolean EP_RC_CastUse (edict_t *self, edict_t *other, edict_t *activator ); +void EP_RC_Script (edict_t *ent, char *scriptname ); +void EP_RCFlags (edict_t *self ); +void EP_RC_CheckMomo (edict_t *ent, cast_memory_t *mem ); +void EP_RC_SpecialEventDeath (edict_t *self ); +qboolean EP_RC_DoKey (edict_t *ent, edict_t *other ); +void EP_RC_Check_DoKey (edict_t *self, edict_t *ent ); +void EP_RC_ReachedDoKey (edict_t *self ); +void EP_RC_EndDoKey (edict_t *self ); +qboolean EP_RC_UnlockDoorFlag (edict_t *ent ); +void EP_RC_HiredGuysRegisterFlags (edict_t *ent, edict_t *other ); +void EP_RC_Player_Log ( edict_t *self, int page ); +void Resp_Scalper_GotTicket ( edict_t *self, edict_t *other, response_t response ); +qboolean EP_RC_Flash_Newflag (edict_t *self, int ep_flag); + +typedef enum +{ + say_neutral, + say_asshole, + say_hostile, + say_flashlight, + say_alisthatyou, + say_behindthebarrel, + say_forabuck, + say_talktobetty +} saywhat_say; + +typedef struct player_log_s player_log_t; + +struct player_log_s +{ + char *ep_text; + int ep_flag; + int clue_number; + qboolean new_clue; +}; + diff --git a/gamesrc/EP_LOG.C b/gamesrc/EP_LOG.C new file mode 100644 index 0000000..348057f --- /dev/null +++ b/gamesrc/EP_LOG.C @@ -0,0 +1,180 @@ +// ep_log.c +#include "g_local.h" + +player_log_t ep_skidrow_player_log[] = +{ + // 0 + // {"Nicki's boys roughed me\nup good left me in this\nshitty little alley in\nSkidrow. Gotta find a way\nback to Poisonville to pay\nthat little bastard back\nneed some wheels...\n",0}, + {"Nicki's boys roughed me\nup good left me in this\ndirty little alley in\nSkidrow. Gotta find a way\nback to Poisonville\n",0,0,true}, + // 1 + {"Fat guy will sell me a\ncrowbar for a buck...\n", EP_SKIDROW_MAGICJ_ASKED_DOLLAR,1,false}, + // 2 + {"Pawn dude will trade me a\npistol for a Heilman Coil\nCondenser says its in\nstoreroom B at warehouse\naround the corner...\n", EP_PAWNOMATIC_FIRST_TIME,2,false}, + // 3 + {"Looks like I stumbled into\nthe Sewer Rat gang's turf.\nGotta find a way into\ntheir HQ...\n",EP_SKIDROW_RATS_PISSED,3,false}, + // 4 + {"Overheard conversation\nbetween some Sewer Rats\nlooks like the Scorp gang\nswiped their moto battery.\nGuess I'll have to venture\ninto their turf to find it\nif I'm ever getting the\nhell out of here...\n", EP_SKIDROW_RATS_FIND,4,false}, + // 5 + // {"Chick by bar says I need\nto steer clear of\ncrazy mofo named Lamont\nguy named Lenny evicted\nhim. Says I should go into\nbar and talk to Lenny...\n", EP_SKIDROW_MONA_FIRST_TIME}, + {"Chick by bar says I need\nto steer clear of\ncrazy dude named Lamont\nSays I should go into\nbar and talk to Lenny...\n", EP_SKIDROW_MONA_FIRST_TIME,5,false}, + // 6 + {"Bum told me about a bike.\nmight be a way out...\n", EP_SKIDROW_NICK_TOLD_BIKE,6,false}, + // 7 + {"Lenny says he evicted\nLamont for not paying his\nrent. Looks like this guy\nmight be able to help me\nout if I can get his Zolex\nwatch back from Lamont...\n", EP_TALKED_TO_LENNY,7,false}, + // 8 + {"Found the bike... Broken\ndown piece of junk doesn't\nhave a battery...\n", EP_SKIDROW_FOUND_BIKE,8,false}, + // 9 + {"Gotta find a way into\nSewer Rat HQ...\n", EP_SKIDROW_CUT_SCENE_TWO,9,false}, + // 10 + //{"Found Lenny in bar bathroom\nsays he'll help me get into\nSewer Rat hq if I'll take\ndust Lamont for him...\n", 0}, + {"Bum said he would tell\nme something good if I\nget him some booze", EP_SKIDROW_TALKED_TO_RUMMY,10,false}, + + // Key to Storeroom + {"Lenny gave me the key to\nthe storeroom. From there\nI can reach the Sewer Rat\nHeadquarters...\n",EP_SKIDROW_LENNY_TOOK_WATCH,11,false}, + + //Combo to Safe + {"Bum gave me the combo to\nthe safe...\n", EP_SKIDROW_RUMMY_GAVE_WINE,12,false} + +}; + +player_log_t ep_pv_player_log[] = +{ + //Poisonville Intro + {"Back in Poisonville. As\nusual the stench of toxic\nwaste fills the air. Nicki\nwarned me never to show my\nface here again. For the\nrest of his short life\nhe's gonna regret the day\nhe left me still breathing\n",0,0,true}, + //Talked to Hireling + {"The local muscle here all\nseem to be working for a\nguy named Louie. I guess\nI better look him up.\n", EP_PV_FIND_LOUIE,1,false}, + //Talked to Louie + {"Nicki's boys stole some of\nLouie's important things\nand stashed them in a safe\nin Nicki's warehouse. If\nI can get them back, Louie\nwill let me hire some of\nhis local muscle.\n",EP_PV_TALKED_LOUIE2,2,false}, + //Hire Safe Dude + {"I can hire either the\nsafecracker or the demo\nguy to open Nicki's safe.\n",EP_PV_LOUIE_SPEACH_1,3,false}, + //Give Key + {"Louie gave me the key to\nNicki's chemical plant\n",EP_PV_LOUIE_KEY,4,false}, + //Yolanda Distraction + {"For ten bucks Yolanda will\ndistract the two guards.\nShe works cheap...\n",EP_PV_YOLANDA_ASKED_MONEY,5,false}, + + //Louie has key - Start of PV_B + {"The two goons were yelling\nabout forgetting to swipe\na key. I wonder if Louie\nstill has it on him?\n",EP_PV_LOUIEPVB,6,false}, + + // Blown Fuse Pump + {"I need some fuses to get\nthis pump started...\n",EP_PV_ONEFUSE,7,false}, + + +// Nicky escapes - Voiceover +//{"Nicky got away... Time\nenough for him later.\n",}, + +}; + + + +player_log_t ep_sy_player_log[] = +{ + // Intro to Shipyard + {"The Shipyards. The final\nresting place for rusty\nold hulks and a home to\nthe diseased rats and scum\neating wharf shrimp...\n",0,0,true}, + // Moe after first negative response + {"This Moe guy really backed\ndown when I threw a scare\ninto him. I should keep it\nup...\n",EP_SY_MOE_LASTLINE,1,false}, + // Talked to Popeye + {"The old man said to get\nhelp at a bar called the\nSalty Dog\n",EP_SY_GOTO_SALTYDOG,2,false}, + // Key to shipyard + {"Heilman and his crew are\nat the shipyard. Before I\ncan take them on I need\nthe key to the gate.\n",EP_SY_POPEYE_LASTLINE,3,false}, + + {"The ship's door was rusted\nshut...\n", EP_SY_GOTO_DOORSHUT,4,false}, + +//Heilman kidnapped Lizzy +{"Heilman's crew just beat\nup Big Willy, kidnapped\nhis girl, and totally\ntrashed the place...\n", EP_SY_GOFIND_BITCH_SAL,5,false}, + +//Key to warehouse +{"Sal just gave me the key\nto the warehouse...\n",EP_SY_HIRED_SAL,6,false}, + +// Found Lizzy - Voiceover if no Sal +{"I gotta tell Big Willy we\nwere too late to save\nLizzy. I should probably\nbring him back some proof.\nHmm, I wonder...\n",EP_SY_FOUND_BITCH,7,false}, + +//Big Willy gives key +{"Big Willy gave me the key\nto the shipyard gate. He's\nlooking to get payback for\nLizzy...\n",EP_SY_BW_HIRED,8,false}, +// Found Barney - Voiceover +// {"I just found Barney. I\nwonder if anyone picked\nhis pockets...\n",} + +}; + + +// Trainyard help +player_log_t ep_ty_player_log[] = +{ +//Intro +{"The Trainyards. An artery\nthrough which homeless\ndrifters, fugitive outlaws\nand illegal goods flow in\nand out of Radio City. It\n is now blocked...\n",0,0,true}, + +// Get to Radio City via sewers +{"I'm gonna have to take the\nstinking sewers to get to\nRadio City... Yuchh!\n",EP_TY_TAKETHESEWER,1,false}, + +//Missing valve handle +{"Gotta find a valve handle\nfor the access panel...\n",EP_TY_HANN_CLUE2,2,false}, + +//Blown fuse +{"The fuse for the ladder is\nblown. They gotta keep a\nspare one somewhere around\nhere...\n",EP_TY_FUSEBLOWN ,3,false}, + + +}; + + + +player_log_t ep_st_player_log[] = +{ +// Intro +{"Steeltown. The furnaces\nof Moker's steel mill burn\naround the clock. Fueled\nwith the sweat of forced\nchild labor...\n",0,0,true}, + +//Moker not in office *** First person voice over clue*** +{"Moker's not in his office.\n",EP_Steeltown_MOKER_NOTINOFFICE,1,false}, + +// HMG clue +{"I gotta get my hands on\none of those new guns...\n",EP_Steeltown_KIDS_CLUE1,2,false}, + +// David a prisoner +{"Bambi's kid brother David\nis a prisoner in the steel\nmill...\n",EP_Steeltown_BAMBI_LINE1,3,false}, + +// Bambi the barmaid at the Boiler Room +{"A babe named Bambi waits\ntables down at the Boiler\nRoom. I hear she's in some\nkind of trouble...\n",EP_Steeltown_MATHEW_LINE1,4,false}, + +//Armor in the basement +{"Moker's got armor in the\nthe Pawnomatic basement.\n",EP_Steeltown_BRITTANY_LINE1,5,false}, + +//David good with lockpick +{"David's supposed to be\ngood with a lockpick...\n",EP_Steeltown_KIDS_CLUE2,6,false}, + +//HMG locked up +{"The new guns are locked\nup. But that doesn't seem\nto bother David much...\n",EP_Steeltown_DAVID_SAY3,7,false}, + +//David Dead - Bambi talk +{"David's Dead. I better\ntell Bambi...\n", EP_Steeltown_DAVID_DEAD_A,8,false}, + +//David Dead - No Bambi talk +{"Some guy named David just\ngot clipped. I guess I\nbetter tell someone...\n", EP_Steeltown_DAVID_DEAD_B,9,false}, + +//Bambi gives key +{"Bambi gave me the key to\nMoker's office building.\n", EP_Steeltown_DAVID_DEAD,10,false}, +//Bambi gives key +{"Bambi gave me the key to\nMoker's office building.\n", EP_Steeltown_BAMBI_DONE,11,false} + +}; + + +player_log_t ep_rc_player_log[] = +{ +//Intro +{"Radio City at last. The\nKingpin's stronghold. The\ncapital city of a criminal\nempire. Mine for taking\nif I've got the guts. Once\nI go forward, there's no\nturning back...\n",0,0,true}, + +//Butch and Patrick - clear out Tunnel freaks +{"To join their gang I gotta\nwaste three Tunnel Freaks\nwith nothing but a crowbar\nThese Jokers are hardcore.\n",EP_RC_BUTCH_FIRST,1,false}, + +//Scalper - Take Skytram to Central Tower +{"Just found out that I can\nonly get to Central Tower\nby Skytram...\n",EP_RC_SCALPER_NOTEPAD,2,false}, + +//Lola - Weapons stashed +{"There are supposed to be\nsome weapons hidden around\nhere somewhere. I'll keep\nmy eyes open...\n",EP_RC_LOLA_NOTEBOOK,3,false}, + +// Talk to Butch and Patrick +{"I gotta go see Butch and\nPatrick if I want to join\nthe Jokers...\n", EP_RC_JOKERS_NOTEPAD,4,false}, + + +//Hey I heard that +{"Ooops, had to use a gun. I\nwonder if they'll still\nlet me join?\n", EP_RC_FAILED_TEST,5,false} + +}; diff --git a/gamesrc/EP_LOG.H b/gamesrc/EP_LOG.H new file mode 100644 index 0000000..641140b --- /dev/null +++ b/gamesrc/EP_LOG.H @@ -0,0 +1,19 @@ +// ep_log.h + +#define NUM_SKIDROW_PLAYER_LOG 13 +extern player_log_t ep_skidrow_player_log[]; + +#define NUM_PV_PLAYER_LOG 8 +extern player_log_t ep_pv_player_log[]; + +#define NUM_SY_PLAYER_LOG 9 +extern player_log_t ep_sy_player_log[]; + +#define NUM_TY_PLAYER_LOG 4 +extern player_log_t ep_ty_player_log[]; + +#define NUM_ST_PLAYER_LOG 12 +extern player_log_t ep_st_player_log[]; + +#define NUM_RC_PLAYER_LOG 6 +extern player_log_t ep_rc_player_log[]; diff --git a/gamesrc/GAME.DEF b/gamesrc/GAME.DEF new file mode 100644 index 0000000..df4958f --- /dev/null +++ b/gamesrc/GAME.DEF @@ -0,0 +1,2 @@ +EXPORTS + GetGameAPI diff --git a/gamesrc/GAME.DSW b/gamesrc/GAME.DSW new file mode 100644 index 0000000..330b7b6 --- /dev/null +++ b/gamesrc/GAME.DSW @@ -0,0 +1,29 @@ +Microsoft Developer Studio Workspace File, Format Version 6.00 +# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! + +############################################################################### + +Project: "game"=.\game.dsp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Global: + +Package=<5> +{{{ +}}} + +Package=<3> +{{{ +}}} + +############################################################################### + diff --git a/gamesrc/GAME.H b/gamesrc/GAME.H new file mode 100644 index 0000000..d673207 --- /dev/null +++ b/gamesrc/GAME.H @@ -0,0 +1,238 @@ +// game.h -- game dll information visible to server + +#define GAME_API_VERSION 3 + +// edict->svflags + +#define SVF_NOCLIENT 0x00000001 // don't send entity to clients, even if it has effects +#define SVF_DEADMONSTER 0x00000002 // treat as CONTENTS_DEADMONSTER for collision +#define SVF_MONSTER 0x00000004 // treat as CONTENTS_MONSTER for collision +// JOSEPH 27-OCT-98 +#define SVF_PROP 0x00000008 // treat as CONTENTS_PROP for collision + +// edict->solid values + +typedef enum +{ +SOLID_NOT, // no interaction with other objects +SOLID_TRIGGER, // only touch when inside, after moving +SOLID_BBOX, // touch on edge +SOLID_BSP // bsp clip, touch on edge +} solid_t; + +//=============================================================== + +// link_t is only used for entity area links now +typedef struct link_s +{ + struct link_s *prev, *next; +} link_t; + +#define MAX_ENT_CLUSTERS 16 + + +typedef struct edict_s edict_t; +typedef struct gclient_s gclient_t; + + +#ifndef GAME_INCLUDE + +struct gclient_s +{ + player_state_t ps; // communicated by server to clients + int ping; + // the game dll can add anything it wants after + // this point in the structure +}; + + +struct edict_s +{ + entity_state_t s; + struct gclient_s *client; + qboolean inuse; + int linkcount; + + // FIXME: move these fields to a server private sv_entity_t + link_t area; // linked to a division node or leaf + + int num_clusters; // if -1, use headnode instead + int clusternums[MAX_ENT_CLUSTERS]; + int headnode; // unused if num_clusters != -1 + int areanum, areanum2; + + //================================ + + int svflags; // SVF_NOCLIENT, SVF_DEADMONSTER, SVF_MONSTER, etc + vec3_t mins, maxs; + vec3_t absmin, absmax, size; + solid_t solid; + int clipmask; + edict_t *owner; + + float voice_pitch; // used to pitch voices up/down, 1.0 = same, 2.0 = chipmunk (double speed) + + // the game dll can add anything it wants after + // this point in the structure +}; + +#endif // GAME_INCLUDE + +//=============================================================== + +// +// functions provided by the main engine +// +typedef struct +{ + // special messages + void (*bprintf) (int printlevel, char *fmt, ...); + void (*dprintf) (char *fmt, ...); + void (*cprintf) (edict_t *ent, int printlevel, char *fmt, ...); + void (*centerprintf) (edict_t *ent, char *fmt, ...); + void (*sound) (edict_t *ent, int channel, int soundindex, float volume, float attenuation, float timeofs); + void (*positioned_sound) (vec3_t origin, edict_t *ent, int channel, int soundinedex, float volume, float attenuation, float timeofs); + + // config strings hold all the index strings, the lightstyles, + // and misc data like the sky definition and cdtrack. + // All of the current configstrings are sent to clients when + // they connect, and changes are sent to all connected clients. + void (*configstring) (int num, char *string); + + void (*error) (char *fmt, ...); + + // the *index functions create configstrings and some internal server state + int (*modelindex) (char *name); + int (*soundindex) (char *name); + int (*imageindex) (char *name); + + int (*skinindex) (int modelindex, char *name); + + void (*setmodel) (edict_t *ent, char *name); + + // collision detection + trace_t (*trace) (vec3_t start, vec3_t mins, vec3_t maxs, vec3_t end, edict_t *passent, int contentmask); + int (*pointcontents) (vec3_t point); + qboolean (*inPVS) (vec3_t p1, vec3_t p2); + qboolean (*inPHS) (vec3_t p1, vec3_t p2); + void (*SetAreaPortalState) (int portalnum, qboolean open); + qboolean (*AreasConnected) (int area1, int area2); + + // an entity will never be sent to a client or used for collision + // if it is not passed to linkentity. If the size, position, or + // solidity changes, it must be relinked. + void (*linkentity) (edict_t *ent); + void (*unlinkentity) (edict_t *ent); // call before removing an interactive edict + int (*BoxEdicts) (vec3_t mins, vec3_t maxs, edict_t **list, int maxcount, int areatype); + void (*Pmove) (pmove_t *pmove); // player movement code common with client prediction + + // network messaging + void (*multicast) (vec3_t origin, multicast_t to); + void (*unicast) (edict_t *ent, qboolean reliable); + void (*WriteChar) (int c); + void (*WriteByte) (int c); + void (*WriteShort) (int c); + void (*WriteLong) (int c); + void (*WriteFloat) (float f); + void (*WriteString) (char *s); + void (*WritePosition) (vec3_t pos); // some fractional bits + void (*WriteDir) (vec3_t pos); // single byte encoded, very coarse + void (*WriteAngle) (float f); + + // managed memory allocation + void *(*TagMalloc) (int size, int tag); + void (*TagFree) (void *block); + void (*FreeTags) (int tag); + + // Ridah + void (*ClearObjectBoundsCached) (void); + void (*StopRender) (void); + + // console variable interaction + cvar_t *(*cvar) (char *var_name, char *value, int flags); + cvar_t *(*cvar_set) (char *var_name, char *value); + cvar_t *(*cvar_forceset) (char *var_name, char *value); + + // ClientCommand and ServerCommand parameter access + int (*argc) (void); + char *(*argv) (int n); + char *(*args) (void); // concatenation of all argv >= 1 + + // add commands to the server console as if they were typed in + // for map changing, etc + void (*AddCommandString) (char *text); + + void (*DebugGraph) (float value, int color); + + // Ridah, MDX + void (*GetObjectBounds) ( char *mdx_filename, model_part_t *model_part ); + // done. + + // Ridah, so we can save the game when traversing to a new level (so hiredguy's get restored when restarting a map) + void (*SaveCurrentGame) (void); + +} game_import_t; + +// +// functions exported by the game subsystem +// +typedef struct +{ + int apiversion; + + // the init function will only be called when a game starts, + // not each time a level is loaded. Persistant data for clients + // and the server can be allocated in init + void (*Init) (void); + void (*Shutdown) (void); + + // each new level entered will cause a call to SpawnEntities + void (*SpawnEntities) (char *mapname, char *entstring, char *spawnpoint); + + // Read/Write Game is for storing persistant cross level information + // about the world state and the clients. + // WriteGame is called every time a level is exited. + // ReadGame is called on a loadgame. + void (*WriteGame) (char *filename, qboolean autosave); + void (*ReadGame) (char *filename); + + // ReadLevel is called after the default map information has been + // loaded with SpawnEntities + void (*WriteLevel) (char *filename); + void (*ReadLevel) (char *filename); + + qboolean (*ClientConnect) (edict_t *ent, char *userinfo); + void (*ClientBegin) (edict_t *ent); + void (*ClientUserinfoChanged) (edict_t *ent, char *userinfo); + void (*ClientDisconnect) (edict_t *ent); + void (*ClientCommand) (edict_t *ent); + void (*ClientThink) (edict_t *ent, usercmd_t *cmd); + + void (*RunFrame) (void); + + // ServerCommand will be called when an "sv " command is issued on the + // server console. + // The game can issue gi.argc() / gi.argv() commands to get the rest + // of the parameters + void (*ServerCommand) (void); + + int *(*GetNumObjectBounds) (void); + void *(*GetObjectBoundsPointer) (void); + + int (*GetNumJuniors) (void); + + // + // global variables shared between game and server + // + + // The edict array is allocated in the game dll so it + // can vary in size from one game to another. + // + // The size will be fixed when ge->Init() is called + struct edict_s *edicts; + int edict_size; + int num_edicts; // current number, <= max_edicts + int max_edicts; +} game_export_t; + +game_export_t *GetGameApi (game_import_t *import); diff --git a/gamesrc/G_AI.C b/gamesrc/G_AI.C new file mode 100644 index 0000000..8b0428a --- /dev/null +++ b/gamesrc/G_AI.C @@ -0,0 +1,4788 @@ +// g_ai.c + +#include "g_local.h" +#include "g_func.h" + +qboolean AI_FindTarget (edict_t *self); + +// RAFAEL 28-dec-98 +qboolean AI_HearPlayer (edict_t *self); + +extern cvar_t *maxclients; + +qboolean enemy_vis; +qboolean enemy_infront; +int enemy_range; +float enemy_yaw; + +void AI_GetAvoidDirection( edict_t *self, edict_t *other ); + +//============================================================================ + + + +//============================================================================ + +/* +============= +ai_onfire_run + + Called while a character is running around on fire +============== +*/ +void ai_onfire_run( edict_t *self, float dist ) +{ + int side_result; + + if (self->onfiretime <= 0) + { // stopping running around + self->cast_info.currentmove = self->cast_info.move_stand; + + return; + } + + if (!self->groundentity) + return; + +// M_ChangeYaw( self ); + self->s.angles[YAW] = self->ideal_yaw; + + if (M_walkmove (self, self->s.angles[YAW], dist*0.5) && AI_SideTrace( self, 64, 0, 1 )) + return; + + // look for a new direction + + side_result = AI_SideTrace( self, 128, 30, SIDE_RANDOM ); + + if (side_result) + { + self->ideal_yaw = anglemod(self->s.angles[YAW] + (30.0 * side_result)); + return; + } + + side_result = AI_SideTrace( self, 32, 45, SIDE_RANDOM ); + + if (side_result) + { + self->ideal_yaw = anglemod(self->s.angles[YAW] + (30.0 * side_result)); + return; + } + + // try a sharper angle + side_result = AI_SideTrace( self, 64, 100, SIDE_RANDOM ); + + if (side_result) + { + self->ideal_yaw = anglemod(self->s.angles[YAW] + (100.0 * side_result)); + return; + } + + side_result = AI_SideTrace( self, 8, 150, SIDE_RANDOM ); + + if (side_result) + { + self->ideal_yaw = anglemod(self->s.angles[YAW] + (150.0 * side_result)); + return; + } + + // last ditch, try running to our attacker + +// ai_run( self, dist ); + +// self->cast_info.currentmove = self->cast_info.move_stand; + +}; + +/* +============= +ai_move + +Move the specified distance at current facing. +This replaces the QC functions: ai_forward, ai_back, ai_pain, and ai_painforward +============== +*/ +void ai_move (edict_t *self, float dist) +{ + M_walkmove (self, self->s.angles[YAW], dist); + + // Ridah, added this so we turn to face our attacker after killed + if (self->health <= 0) + { + M_ChangeYaw( self ); + + if (self->velocity[2] < -50 && fabs(self->velocity[0]) < 50 && fabs(self->velocity[1]) < 50 && !self->groundentity && self->gravity < 1.0) + { + self->gravity = 0.1; // sliding down wall? + } + } +} + + +/* +============ +AI_CheckEvade +============ +*/ +void AI_CheckEvade( edict_t *self ) +{ + vec3_t vec; + cast_memory_t *mem=NULL; + edict_t **enemy; + + if (self->enemy) + enemy = &self->enemy; + else + enemy = &self->cast_info.avoid_ent; + + if (!(*enemy)) + { + self->cast_info.currentmove = self->cast_info.move_stand; + + return; + } + + if (self->combat_goalent) + { + if ( (*enemy)->client + && (!(*enemy)->client->pers.holsteredweapon) + && ((*enemy)->client->pers.weapon)) + { // get the fuck outta here + self->cast_info.currentmove = self->cast_info.move_run; + return; + } + else if ( !(*enemy)->client + && ((*enemy)->noise_time > (level.time - 2) && (*enemy)->noise_type == PNOISE_WEAPON)) + { // get the fuck outta here + self->cast_info.currentmove = self->cast_info.move_run; + return; + } + } + else if ((enemy == &self->cast_info.avoid_ent) || self->pain_debounce_time < (level.time - 3)) + { + if ((*enemy) && (*enemy)->health > 0) + { + mem = level.global_cast_memory[self->character_index][(*enemy)->character_index]; + + if (mem && (mem->timestamp > (level.time - 4))) + { + if ((*enemy)->client) + { + if ( (!(*enemy)->client->pers.holsteredweapon) + && ((*enemy)->client->pers.weapon)) + { + float dist; + + VectorSubtract( (*enemy)->s.origin, self->s.origin, vec ); + dist = VectorNormalize( vec ); + + self->ideal_yaw = vectoyaw( vec ); + + if (dist < AI_NOT_HOLSTERED_RANGE_1) + { + if (self->moral > MORAL_HAPPY || directly_infront((*enemy), self)) + { + AI_StartAttack( self, (*enemy) ); + + if (self->cast_info.sight) + self->cast_info.sight ( self, (*enemy) ); + } + else if (AI_SideTrace( self, -64, 0, 1) && dist < 64) + { // go back again + self->cast_info.currentmove = self->cast_info.move_evade; + } + } + else if (directly_infront((*enemy), self) + && (*enemy)->client + && (*enemy)->client->pers.weapon + && (*enemy)->client->pers.weapon->ammo) + { + if (AI_CheckTakeCover( self )) + { // get outta here + self->cast_info.currentmove = self->cast_info.move_run; + } + else if (AI_SideTrace( self, -64, 0, 1)) + { // go back again + self->cast_info.currentmove = self->cast_info.move_evade; + } + else if (dist < 400) + { + AI_StartAttack( self, (*enemy) ); + } + } + + return; + } + } + else // AI character + { + // FIXME: do more thorough AI here? + + if (enemy == &self->enemy) + { + self->cast_info.currentmove = self->cast_info.move_run; + } + + return; + } + } + + if (mem) + { // they're not hostile anymore + mem->flags &= ~MEMORY_HOSTILE_ENEMY; + } + } + + } + + // noone to evade, resume standing + + (*enemy) = NULL; + self->cast_info.currentmove = self->cast_info.move_stand; + +} + +/* +============= +AI_ClearSight + + Checks that we can draw a line to other, without hitting something else in the process +============= +*/ +qboolean AI_ClearSight ( edict_t *self, edict_t *other, qboolean boxtrace ) +{ + static vec3_t mins = { -8, -8, -4 }; + static vec3_t maxs = { 8, 8, 4 }; + // Ridah, used for Flamethrower AI + static vec3_t mins2 = { -12, -12, -12 }; + static vec3_t maxs2 = { 12, 12, 12 }; + vec3_t start, end, vec; + float *tmins, *tmaxs; + int mask; + trace_t tr; + qboolean rval; + float dist, progdist, distleft; + + if (!self || !other) + return false; + + if (boxtrace) + { + if (self->cast_info.max_attack_distance == 384) + { + tmins = mins2; + tmaxs = maxs2; + } + else + { + tmins = mins; + tmaxs = maxs; + } + mask = MASK_PLAYERSOLID; + } + else + { + tmins = NULL; + tmaxs = NULL; + mask = MASK_SOLID; + } + +again: + + VectorCopy( self->s.origin, start ); + start[2] += self->viewheight-8*boxtrace; // adjust for gun position + VectorCopy( other->s.origin, end ); + end[2] += other->viewheight-8*boxtrace; + + VectorSubtract( end, start, vec ); + dist = VectorNormalize( vec ); + progdist = 0; + distleft = dist; + + if (fabs(vec[2]) > 0.8) // too steep + return false; + + tr = gi.trace( start, tmins, tmaxs, end, self, mask ); + + while ( (tr.fraction < 1) + && ( ((tr.ent) && (tr.ent->s.renderfx2 & RF2_SURF_ALPHA)) + || (tr.contents & MASK_ALPHA) + || (tr.surface->flags & SURF_ALPHA) +// Rafael : this will allow immortals to see through non breaking glass + || (tr.contents & CONTENTS_TRANSLUCENT && tr.contents & CONTENTS_WINDOW && self->cast_info.aiflags & AI_IMMORTAL) + )) + { + progdist += tr.fraction * dist; + distleft -= tr.fraction * dist; + + if (distleft < 14) + { // gone passed the point, return true + return true; + } + + VectorMA( tr.endpos, 12, vec, start ); + tr = gi.trace( start, tmins, tmaxs, end, self, mask ); + } + + rval = ((tr.ent == other) || (tr.fraction == 1)); + + if (!rval && self->deadflag && self->viewheight < 32) + { + self->viewheight = 32; + goto again; + } + + return rval; +} + + +/* +============= +AI_MoveToPlatCenter + + moves the character towards the center position of the platform +============= +*/ +void AI_MoveToPlatCenter( edict_t *self, edict_t *plat) +{ + vec3_t center, vec; + node_t *plat_node; + + if (plat->deadflag) + { + plat_node = level.node_data->nodes[plat->nav_data.cache_node]; + VectorCopy(plat_node->origin, center); + center[2] = self->s.origin[2]; + + VectorSubtract(center, self->s.origin, vec); + VectorNormalize2(vec, vec); + self->ideal_yaw = vectoyaw(vec); + M_ChangeYaw(self); + + M_walkmove(self, self->ideal_yaw, 15); + } +} + +/* +============= +AI_CheckTalk + + look for a friend in close vicinity, to make a talking jesture at +============= +*/ +qboolean AI_CheckTalk( edict_t *self ) +{ + cast_memory_t *cast=NULL; + float best_dist=500, this_dist; + edict_t *best_cast=NULL; + int count=1, total; + int i; + + if (!self->cast_info.talk) // can't speak + return false; + + if (self->goal_ent || self->enemy) + return false; + + // check our current talk_ent + if (self->cast_info.talk_ent) + { + if (!(cast = level.global_cast_memory[self->character_index][self->cast_info.talk_ent->character_index])) + { + self->cast_info.talk_ent = NULL; + return false; + } + + if ( ((cast->timestamp > (level.time - 1)) && (++count)) + && (/*!best_cast ||*/ infront(&g_edicts[cast->cast_ent], self)) // ignore them if they aren't facing us + && ((this_dist = VectorDistance(g_edicts[cast->cast_ent].s.origin, self->s.origin)) < best_dist)) + { + best_cast = &g_edicts[cast->cast_ent]; + best_dist = this_dist; + } + } + + // check clients + for (i=1; i<=maxclients->value; i++) + { + if (g_edicts[i].client && g_edicts[i].health > 0) + { + + cast = level.global_cast_memory[self->character_index][g_edicts[i].character_index]; + + if (cast) + { + if ((cast->timestamp_dist < 300) && (cast->timestamp > (level.time - 3)) + && (((&g_edicts[i] == self->leader) && (g_edicts[i].last_talk_time < (level.time - 4))) + || (directly_infront(&g_edicts[i], self)))) + { + // pick the client that spoke most recently + if (!best_cast || !best_cast->client || (best_cast->last_talk_time < g_edicts[i].last_talk_time)) + { + best_cast = &g_edicts[i]; + } + } + } + } + } + + if (best_cast) + goto done; + + if (self->cast_info.last_talk_turn > (level.time - 2)) + { // ignore other AI characters for this time + goto done; + } + + + if (!best_cast) // only check for other ents if our current talk_ent isn't valid anymore + for (i=0; i<3; i++) + { + switch (i) + { + case 0: + cast = self->cast_info.friend_memory; + break; + case 1: + cast = self->cast_info.neutral_memory; + break; + case 2: + cast = self->cast_info.enemy_memory; + break; + } + + + total = (int) (random() * 10); + + while (cast) + { + + if ( ((cast->timestamp > (level.time - 1)) && (++count)) + && (/*!best_cast ||*/ infront(&g_edicts[cast->cast_ent], self)) // ignore them if they aren't facing us + && (g_edicts[cast->cast_ent].cast_info.aiflags & AI_TALK) + && !(g_edicts[cast->cast_ent].cast_info.aiflags & AI_NO_TALK) + && ((this_dist = VectorDistance(g_edicts[cast->cast_ent].s.origin, self->s.origin)) < best_dist)) + { + best_cast = &g_edicts[cast->cast_ent]; + best_dist = this_dist; + } + +// if (count > 6) // only check 5 visible friends at once +// break; + + cast = cast->next; + } + + if (i==0 && best_cast) + break; + } + + self->cast_info.last_talk_turn = level.time; + +done: + + if (best_cast) + { + if (directly_infront(self, best_cast) || !self->cast_info.move_avoid_walk) + { + self->cast_info.talk(self); + } + // else // turn to face them + else + { + vec3_t vec; + + if (self->cast_info.aiflags & AI_SIT_TALK) + { + self->cast_info.aiflags &= ~AI_SIT_TALK; + } + else + { + VectorSubtract(best_cast->s.origin, self->s.origin, vec); + VectorNormalize(vec); + self->ideal_yaw = vectoyaw(vec); + self->cast_info.currentmove = self->cast_info.move_avoid_walk; + } + + self->cast_info.aiflags |= AI_TALK; + + // talk straight away + //self->last_talk_time = 0; + } + + self->cast_info.talk_ent = best_cast; + + return true; + } + + return false; +} + +/* +============= +AI_TalkThink + + Generic talking for all characters (currently only supports males) +============= +*/ +void AI_TalkThink( edict_t *self, qboolean ismale ) +{ +#include "voice_punk.h" +#include "voice_bitch.h" + + edict_t *talk_ent; + cast_memory_t *mem; + + if (level.cut_scene_time) + return; + + if (!(self->cast_info.aiflags & AI_TALK)) + return; + + if (self->enemy) // don't talk normally if we're mad + return; + + if (!(talk_ent = self->cast_info.talk_ent)) + return; + + if (VectorDistance( talk_ent->s.origin, self->s.origin ) > 600 || !directly_infront(talk_ent, self)) + { + self->cast_info.talk_ent = NULL; + return; + } + + if ( (self->cast_info.talk_ent == &g_edicts[1]) + && (self->cast_info.talk_ent->last_talk_time < (level.time - TALK_OTHER_DELAY*2)) + && (self->last_talk_time > (level.time - TALK_SELF_DELAY))) + { + return; + } + +// if (last_client_talk && last_client_talk > (level.time - TALK_OTHER_DELAY)) +// return; // don't talk too much around the client + + if (self->leader && VectorDistance( self->s.origin, self->leader->s.origin ) < 384 ) + { + if ((self->last_talk_time < (level.time - TALK_SELF_DELAY)) && (self->health < self->max_health/2)) + // if (self->last_talk_time < level.time - (TALK_SELF_DELAY * 4) && (self->health < 50)) + { // we've been hired, only speak when we're hurt + if (self->gender == GENDER_MALE) + { + Voice_Random( self, self->leader, friendlyhurt, NUM_FRIENDLYHURT ); + return; + } + } + + return; + } + + + if ((talk_ent->health <= 0) || !visible(self, talk_ent) || !infront(talk_ent, self)) + { + self->cast_info.talk_ent = NULL; + return; + } + + mem = level.global_cast_memory[self->character_index][talk_ent->character_index]; + if (!mem || (mem->flags & MEMORY_NO_TALK)) + return; + + // say something! + if ( ( (self->last_talk_time < (level.time - TALK_SELF_DELAY)) // we haven't spoken for a while + || ( (talk_ent->client || talk_ent->last_talk_time) // if they haven't spoken yet, don't bother + && (talk_ent->last_talk_time > (level.time - TALK_OTHER_DELAY*1.5)) // or they've just said something, and we've allowed some time for them to finish saying it + && (talk_ent->cast_info.talk_ent == self) + && (self->last_talk_time < talk_ent->last_talk_time) + && (self->last_talk_time < (level.time - TALK_OTHER_DELAY)))) + && (talk_ent->last_talk_time < (level.time - TALK_OTHER_DELAY))) + { + if (talk_ent->client) + { + if (!self->cast_group) + { // we're neutral + cast_memory_t *mem; + + mem = level.global_cast_memory[self->character_index][talk_ent->character_index]; + + if (!mem || !(mem->flags & MEMORY_ASSHOLE)) + { + if (!EP_EventSpeech( self, talk_ent, say_neutral )) + { + if (ismale) + Voice_Random(self, self->cast_info.talk_ent, neutral_talk, NUM_NEUTRAL_TALK); + else + Voice_Random(self, self->cast_info.talk_ent, f_neutral_talk, F_NUM_NEUTRAL_TALK); + } + } + else // he's a jerk + { + if (!EP_EventSpeech( self, talk_ent, say_hostile )) + { + if (ismale) + Voice_Random(self, self->cast_info.talk_ent, neutral_asshole_talk, NUM_NEUTRAL_ASSHOLE_TALK); + else + Voice_Random(self, self->cast_info.talk_ent, f_profanity_level1, F_NUM_PROFANITY_LEVEL1); + } + } + } + else if (self->cast_group != talk_ent->cast_group) + { // profanity time + + if (!EP_EventSpeech( self, talk_ent, say_hostile )) + { + // JOSEPH 26-MAY-99 + // if first sighting, play specific sound + if (self->name_index == NAME_NICKIBLANCO) + { + Voice_Specific(self, self->cast_info.talk_ent, nickiblanco, 10); + } + else if (self->name_index == NAME_TYRONE) + { + Voice_Specific(self, self->cast_info.talk_ent, ty_tyrone, 10); + } + else if (self->name_index == NAME_MOKER) + { + Voice_Specific(self, self->cast_info.talk_ent, steeltown_moker, 10); + } + else if (self->name_index == NAME_JESUS) + { + Voice_Specific(self, self->cast_info.talk_ent, sr_jesus, 10); + } + else if (self->name_index == NAME_HEILMAN) + { + Voice_Specific(self, self->cast_info.talk_ent, heilman, 10); + } + else if (self->name_index == NAME_BLUNT) + { + Voice_Specific(self, self->cast_info.talk_ent, blunt, 10); + } + else if (self->name_index == NAME_KINGPIN) + { + Voice_Specific(self, self->cast_info.talk_ent, kingpin, 10); + } + else if (ismale && specific[0].last_played < 0.1) + { + Voice_Specific(self, self->cast_info.talk_ent, specific, 0); // What are you doing on my street + } + // END JOSEPH + else if (!ismale && f_specific[0].last_played < 0.1) + { + Voice_Random (self, self->cast_info.talk_ent, f_specific, 4); // What are you doing on my street + } + + // check profanity level + else if (talk_ent->profanity_level <= 1) + { + if (ismale) + Voice_Random(self, self->cast_info.talk_ent, profanity_level1, NUM_PROFANITY_LEVEL1); + else + Voice_Random(self, self->cast_info.talk_ent, f_profanity_level1, F_NUM_PROFANITY_LEVEL1); + } + else if (talk_ent->profanity_level <= 2) + { + if (ismale) + Voice_Random(self, self->cast_info.talk_ent, profanity_level2, NUM_PROFANITY_LEVEL2); + else + Voice_Random(self, self->cast_info.talk_ent, f_profanity_level2, F_NUM_PROFANITY_LEVEL2); + } + else if (talk_ent->profanity_level == 3) + { + // Ridah, 31-may-99, fixed the game crashing everytime you cussed a character 3 times + if (ismale) + Voice_Random(self, self->cast_info.talk_ent, profanity_level3, NUM_PROFANITY_LEVEL3); // kill that mofo + else + Voice_Random(self, self->cast_info.talk_ent, f_profanity_level3, F_NUM_PROFANITY_LEVEL3); // kill that mofo + + // go for them! + AI_MakeEnemy(self, self->cast_info.talk_ent, 0); + + } + + // allow more of a delay than usual + last_client_talk = level.time + 3; + + } + } + } + else // AI -> AI chat + { + if (!EP_EventSpeech( self, talk_ent, say_neutral)) + { + if (ismale) + Voice_Random(self, self->cast_info.talk_ent, neutral_converse, NUM_NEUTRAL_CONVERSE); + else + Voice_Random(self, self->cast_info.talk_ent, f_neutral_converse, F_NUM_NEUTRAL_CONVERSE); + } + } + + if (self->last_talk_time == level.time) + { + if (!directly_infront( self, self->cast_info.talk_ent )) + { + self->cast_info.avoid( self, self->cast_info.talk_ent, true ); + } + else if (self->cast_info.currentmove == self->cast_info.move_stand) + { // make talking gesture if we're just standing around + self->cast_info.talk(self); + + } + } + } + +} + + +#define TAKECOVER_BEHIND 8 +#define TAKECOVER_INFRONT 13 +#define TAKECOVER_DIRECTLY_INFRONT 18 + +#define SIGHT_ENEMY_ATTACKTIME 2.0 // attack for at least this duration before fleeing again + +void CheckStillHiding( edict_t *self ) +{ + if (self->owner->health <= 0) + { + G_FreeEdict( self ); + return; + } + + if (!(self->owner->cast_info.aiflags & AI_TAKE_COVER) || (self->owner->cover_ent && !self->owner->cover_ent->inuse)) + { // they're not hiding anymore, stop checking + self->owner->combat_goalent = NULL; + self->owner->cast_info.aiflags &= ~AI_TAKE_COVER; + G_FreeEdict( self ); + return; + } + + if ((self->owner->cover_ent != self->owner->enemy) && (self->owner->cover_ent->noise_time < (level.time - 5))) + { // stop hiding + self->owner->combat_goalent = NULL; + self->owner->cast_info.aiflags &= ~AI_TAKE_COVER; + G_FreeEdict( self ); + return; + } + + if (self->owner->cast_info.currentmove == self->owner->cast_info.move_evade) + { + // start running + self->owner->cast_info.currentmove = self->owner->cast_info.move_run; + self->nextthink = level.time + 1.0; + return; + } + + + if (self->owner->combat_goalent == self && self->owner->cover_ent && ((VectorDistance(self->owner->s.origin, self->s.origin) > 256) || ValidBoxAtLoc( self->s.origin, self->owner->mins, tv(16, 16, 4), self->owner, MASK_PLAYERSOLID ))) + { + float dist; + vec3_t vec; + + // turn to face them + VectorSubtract( self->owner->cover_ent->s.origin, self->owner->s.origin, vec ); + vec[2] = 0; + dist = VectorNormalize(vec); + + // should they keep hiding? + if ((self->owner->cast_info.currentmove->frame->aifunc == ai_stand) && (VectorDistance( self->s.origin, self->owner->s.origin ) < 128)) + { + self->owner->ideal_yaw = vectoyaw(vec); + M_ChangeYaw( self->owner ); + + // make sure we're still aware of them + AI_RecordSighting(self->owner, self->owner->cover_ent, dist); + + if (AI_ClearSight( self->owner->cover_ent, self->owner, false )) + { // they can see us, we gotta do something or we're dead meat + self->owner->combat_goalent = NULL; + self->owner->cast_info.aiflags &= ~AI_TAKE_COVER; + + if (!(self->owner->cast_info.aiflags & AI_MELEE)) + self->owner->dont_takecover_time = 99999;//level.time + SIGHT_ENEMY_ATTACKTIME; // allow some time to get some shots off + + self->owner->cast_info.aiflags &= ~AI_TAKECOVER_IGNOREHEALTH; + + G_FreeEdict( self ); + + return; + } + + if (self->owner->cast_info.aiflags & AI_TAKECOVER_IGNOREHEALTH) + { // stay here until they see us + goto skiptest; + } + + if (self->owner->cast_info.aiflags & AI_MELEE) + { + route_t route; + + // Ridah, modified this so hiding Melee guys don't foolishly keep running out into the line of fire for no reason + if ( infront(self->owner->cover_ent, self->owner) // we're infront of them + && self->owner->cover_ent->client && self->owner->cover_ent->client->pers.weapon && self->owner->cover_ent->client->pers.weapon->ammo) + { // they have a weapon, keep hiding + goto skiptest; + } + else if (VectorDistance( self->owner->cover_ent->s.origin, self->owner->s.origin ) > 256) + { // if too far away, keep hiding + + if (NAV_Route_EntityToEntity( self->owner, NULL, self->owner->cover_ent, VIS_PARTIAL, false, &route )) + { + if (route.dist > 256) + goto skiptest; + } + else // no route, keep hiding + { + goto skiptest; + } + + } + } + + if (!infront( self->owner->cover_ent, self->owner )) + { // they're not looking at us + if (self->owner->health > ((MORAL_MAX - self->owner->moral) * TAKECOVER_BEHIND)) + { + self->owner->combat_goalent = NULL; + self->owner->cast_info.aiflags &= ~AI_TAKE_COVER; + self->owner->dont_takecover_time = 99999;//level.time + SIGHT_ENEMY_ATTACKTIME * (random()+1); + G_FreeEdict( self ); + return; + } + } + + else if (self->owner->cast_group && !directly_infront( self->owner->cover_ent, self->owner )) + { // not looking directly at us, but in our general direction + if (self->owner->health > ((MORAL_MAX - self->owner->moral) * TAKECOVER_INFRONT)) + { + self->owner->combat_goalent = NULL; + self->owner->cast_info.aiflags &= ~AI_TAKE_COVER; + self->owner->dont_takecover_time = 99999;//level.time + SIGHT_ENEMY_ATTACKTIME; + + G_FreeEdict( self ); + + return; + } + } + + else if (self->owner->cast_group) + { // looking directly at us + if (self->owner->health > ((MORAL_MAX - self->owner->moral) * TAKECOVER_DIRECTLY_INFRONT)) + { + self->owner->combat_goalent = NULL; + self->owner->cast_info.aiflags &= ~AI_TAKE_COVER; + self->owner->dont_takecover_time = 99999;//level.time + SIGHT_ENEMY_ATTACKTIME; + + G_FreeEdict( self ); + + return; + } + } + + } + +skiptest: + + if ((dist < 2000) && (VectorDistance( self->s.origin, self->owner->s.origin ) < 384) && (self->owner->last_getcombatpos < (level.time - 2.0))) + { // look for somewhere else to go to + float *pos; + + if ( (self->owner->cast_info.aiflags & AI_MELEE) + || (self->owner->health < ((MORAL_MAX - self->owner->moral) * TAKECOVER_INFRONT))) + { // look for somewhere further away + + if (pos = NAV_GetHidePos( self->owner, self->owner->cover_ent, HIDEPOS_FURTHER )) + { + edict_t *combatent; + + if (VectorDistance( pos, self->s.origin ) > 96) + { + combatent = self; + VectorCopy( pos, combatent->s.origin ); + + self->owner->combat_goalent = combatent; + combatent->cast_info.aiflags |= AI_GOAL_RUN; + self->owner->cast_info.aiflags |= AI_TAKE_COVER; + self->owner->cast_info.aiflags |= AI_RUN_LIKE_HELL; + + self->owner->cast_info.currentmove = self->owner->cast_info.move_run; + self->owner->wait = -1; + + combatent->owner = self->owner; + combatent->think = CheckStillHiding; + combatent->nextthink = level.time + 1; // give us some time to get there + } + + return; + } + } + + else if ( (self->owner->moral > MORAL_HAPPY) + && (self->owner->health > ((MORAL_MAX - self->owner->moral) * TAKECOVER_INFRONT))) + { // sneak up on them + + if (pos = NAV_GetHidePos( self->owner, self->owner->cover_ent, HIDEPOS_CLOSER )) + { + edict_t *combatent; + + if (VectorDistance( pos, self->s.origin ) > 96) + { + combatent = self; + VectorCopy( pos, combatent->s.origin ); + + self->owner->combat_goalent = combatent; + combatent->cast_info.aiflags |= AI_GOAL_RUN; + self->owner->cast_info.aiflags |= AI_TAKE_COVER; + self->owner->cast_info.aiflags |= AI_RUN_LIKE_HELL; + + self->owner->cast_info.currentmove = self->owner->cast_info.move_run; + self->owner->wait = -1; + + combatent->owner = self->owner; + combatent->think = CheckStillHiding; + combatent->nextthink = level.time + 1; // give us some time to get there + } + + return; + } + } + + } + + self->nextthink = level.time + 0.2; + + return; + } + + if (self->owner->combat_goalent == self) + { + self->owner->combat_goalent = NULL; + self->owner->cast_info.aiflags &= ~AI_TAKE_COVER; + } + + // not hiding anymore + + G_FreeEdict( self ); +} + +/* +============= +AI_CheckTakeCover + + Returns true if we should go hide, and we've found a good hiding position +============= +*/ +void Weapon_Blackjack (edict_t *ent); + +qboolean AI_CheckTakeCover( edict_t *self ) +{ + float *pos=NULL; + qboolean evade=true; // make evade action before fleeing + + if (self->cast_info.aiflags & AI_NO_TAKE_COVER) + return false; + + if (self->dont_takecover_time > level.time) + return false; + + if (self->leader && !(self->cast_info.aiflags & AI_HOLD_POSITION)) + return false; // no hiding when we're following + + if (self->combat_goalent) // probably heading for a combat pos, let them continue + return false; + + if (self->last_getcombatpos > (level.time - 1)) + return false; + + if (!self->enemy) + return false; + + // Ridah 16-may-99, hired guys don't hide + if (self->cast_group == 1 && self->leader) + return false; + // done. + + // should we hide? + + // Ridah, always hide every now and then if we're a firing enemy, since that's what any sane human + // being would do + if ( !(self->cast_info.aiflags & AI_MELEE) +// && ((rand()%MORAL_MAX) < (MORAL_MAX+2 - self->moral)) + && !(self->enemy->cast_info.aiflags & AI_MELEE) + && (!self->enemy->client || (self->enemy->client->pers.weapon && self->enemy->client->pers.weapon->ammo)) + && /*directly_*/infront(self->enemy, self) + && AI_ClearSight( self->enemy, self, false )) +// && (self->last_gethidepos < (level.time - (1.0 + self->moral/MORAL_MAX)))) + { +// cast_memory_t *mem; +// edict_t *trav; + qboolean nohide=false; +/* + // TEAM AI: if we have a friend around, only take cover if they're happily firing + mem = self->cast_info.friend_memory; + while (mem) + { + trav = &g_edicts[mem->cast_ent]; + + if ( (mem->timestamp > (level.time - 10)) + && (trav->health > 0) + && (trav->enemy) + && (!(trav->cast_info.aiflags & AI_MELEE)) + && ( (trav->noise_time < (level.time - 2)) + || (trav->cast_info.aiflags & AI_TAKE_COVER))) + { + nohide = true; + break; + } + + mem = mem->next; + } +*/ + if (!nohide && (pos = NAV_GetHidePos( self, self->enemy, HIDEPOS_ANY ))) + { + evade = false; + goto done; + } + } + + if ( (self->cast_info.aiflags & AI_MELEE) + && ( (self->enemy->client) + && (self->enemy->client->pers.weapon) + && (self->enemy->client->pers.weapon->ammo)) + && (random() < 0.3 || VectorDistance( self->enemy->s.origin, self->s.origin ) > 128)) + { // don't do any other tests, we REALLY want to hide from this enemy! + + if (pos = NAV_GetHidePos( self, self->enemy, HIDEPOS_FURTHER )) + { + goto done; + } + + } + else if (infront( self->enemy, self )) + { + if (directly_infront( self->enemy, self )) + { + if (self->health > ((MORAL_MAX - self->moral) * TAKECOVER_DIRECTLY_INFRONT)) + return false; + } + else + { + if (self->health > ((MORAL_MAX - self->moral) * TAKECOVER_INFRONT)) + return false; + } + } + else if (self->health > ((MORAL_MAX - self->moral) * TAKECOVER_BEHIND)) + return false; + + + // find somewhere to go + if (!pos) + { + + if (self->cast_group) + { // look for a friend with a gun (assume we know where all our friends are) + int i; + edict_t *other, *best=NULL; + float best_dist=2048, this_dist; + route_t route; + + for (i=0; ihealth <= 0 || !other->inuse) + continue; + + if (self->cast_group != other->cast_group) + continue; + + if (self == other) + continue; + + this_dist = VectorDistance( self->s.origin, other->s.origin ); + + if ((this_dist < 384) && other->enemy) + continue; + + if (other->client) + goto accepted; + + if (best) + { + if (best->cast_info.aiflags & AI_MELEE) + { + if (!(other->cast_info.aiflags & AI_MELEE)) + { + goto accepted; + } + } + else + { + if (other->cast_info.aiflags & AI_MELEE) + { // no good + continue; + } + } + } + else if (!(self->cast_info.aiflags & AI_MELEE)) + { + if (other->cast_info.aiflags & AI_MELEE) + { // no good, we have weapon and this friend doesn't + continue; + } + else // is it worth going to get them? + { + if (!NAV_Route_EntityToEntity( self, NULL, other, VIS_PARTIAL, false, &route )) + continue; + + if (route.dist > 1000) // too far away + continue; + } + } + + if (this_dist > best_dist) + continue; + +accepted: + + best = other; + best_dist = this_dist; + + if (other->client) + break; + + } + + if (best) + { +//gi.dprintf( "%s fleeing to %s\n", self->name, best->name ); + pos = best->s.origin; + self->cover_ent = self->enemy; + self->last_getcombatpos = level.time; + self->last_gethidepos = level.time; + goto done; + } + } + + pos = NAV_GetHidePos( self, self->enemy, HIDEPOS_FURTHER ); + } + +done: + + if (pos) + { + edict_t *combatent; + + combatent = G_Spawn(); + VectorCopy( pos, combatent->s.origin ); + + self->combat_goalent = combatent; + combatent->cast_info.aiflags |= AI_GOAL_RUN; + self->cast_info.aiflags |= AI_TAKE_COVER; + self->cast_info.aiflags |= AI_RUN_LIKE_HELL; + self->wait = -1; + + combatent->owner = self; + combatent->think = CheckStillHiding; + combatent->nextthink = level.time + 1; // give us some time to get there +/* + // make sure we run AWAY from our enemy + { + node_t *node; + + if (node = NAV_GetClosestNode( self, VIS_PARTIAL, true, true )) + self->nav_data.goal_index = node->index + 1; + } +*/ + } + + if ( evade + && (self->last_stand_evade < (level.time - 4)) + && (pos || ((rand()%10) < 3)) + && (self->moral < 3) + && self->cast_info.move_evade + && self->maxs[2] == self->cast_info.standing_max_z + && directly_infront( self->enemy, self ) + && AI_ClearSight(self, self->enemy, false) + && self->health > self->max_health/2) + { + self->last_stand_evade = level.time; + self->cast_info.currentmove = self->cast_info.move_evade; + if (self->cast_info.backoff) + self->cast_info.backoff( self, self->enemy ); + } + + return (pos != NULL); +} + +/* +============= +AI_ForceTakeCover +============= +*/ +qboolean AI_ForceTakeCover( edict_t *self, edict_t *enemy, qboolean ignorehealth ) +{ + float *pos; + int hidepos_type; + + if (self->cast_info.aiflags & AI_NO_TAKE_COVER) + return false; + + // Note to Ryan: take a look at this. nasty hack because of crash bug + if (!(enemy)) + return false; + + if (enemy->svflags & SVF_MONSTER) + hidepos_type = HIDEPOS_FURTHER; + else + hidepos_type = HIDEPOS_ANY; + + if (pos = NAV_GetHidePos( self, enemy, hidepos_type )) + { + edict_t *combatent; + + combatent = G_Spawn(); + VectorCopy( pos, combatent->s.origin ); + + self->combat_goalent = combatent; + combatent->cast_info.aiflags |= AI_GOAL_RUN; + combatent->cast_info.aiflags |= AI_RUN_LIKE_HELL; + self->cast_info.aiflags |= AI_TAKE_COVER; + self->cast_info.aiflags |= AI_RUN_LIKE_HELL; + + combatent->owner = self; + combatent->think = CheckStillHiding; + combatent->nextthink = level.time + 1; // give us some time to get there + + if (ignorehealth) + self->cast_info.aiflags |= AI_TAKECOVER_IGNOREHEALTH; + + if (self->maxs[2] == self->cast_info.standing_max_z) + self->cast_info.currentmove = self->cast_info.move_run; +/* + // make sure we run AWAY from our enemy + { + node_t *node; + + if (node = NAV_GetClosestNode( self, VIS_PARTIAL, true, true )) + self->nav_data.goal_index = node->index + 1; + } +*/ + return true; + } + + return false; +} + +/* +============= +AI_TooClose + + returns true if "goal" is within the AI_TOO_CLOSE_DIST range from "self" + mostly used to make sure followers don't obstruct their leader +============= +*/ +qboolean AI_TooClose(edict_t *self, edict_t *goal) +{ + float scale; + + if (VectorCompare(goal->velocity, vec3_origin)) + return false; + + // allow to walk real close if they're standing on a plat and not moving + if (goal->groundentity && goal->groundentity->use && VectorCompare(goal->groundentity->velocity, vec3_origin)) + return false; + + scale = 1.0; + if (VectorLength(goal->velocity)) + scale = 1.5; + + return (VectorDistance(self->s.origin, goal->s.origin) < AI_TOO_CLOSE_DIST*scale); +} + +/* +============= +AI_FollowLeader + + modification of AI_TooClose(), returns true if we need to move away from, or towards the goal +============= +*/ +qboolean AI_FollowLeader(edict_t *self, edict_t *goal) +{ + float dist; + float scale; + + dist = VectorDistance(self->s.origin, goal->s.origin); + + // allow to walk real close if they're standing on a plat and not moving + if ( goal->groundentity + && goal->groundentity->use) + { + if (goal->groundentity != self->groundentity) + return true; + else if (dist < 64 && !VectorCompare(goal->velocity, vec3_origin)) + return true; + else + return false; + } + + scale = 1.0; + if (VectorLength(goal->velocity)) + scale = 1.5; + + return ((dist < AI_TOO_CLOSE_DIST*scale) || (dist > scale*(AI_GUARDING_DIST * (infront(goal, self) ? 1 : 0.5)))); +} + +/* +============== +AI_End_CrouchStand_Down + + Goes to the standing animation according to what we're currently doing +============== +*/ +void AI_End_CrouchStand_Down(edict_t *self) +{ + self->cast_info.currentmove = self->cast_info.move_crwalk; +} + +/* +============== +AI_End_CrouchStand_Up + + Goes to the standing animation according to what we're currently doing +============== +*/ +void AI_End_CrouchStand_Up(edict_t *self) +{ + self->cast_info.currentmove = self->cast_info.move_run; +} + +/* +============== +AI_EndAttack + + resume attacking if they so desire, otherwise "stand" + + usually called at the end of pain, or attacking animations +============== +*/ +void AI_EndAttack(edict_t *self) +{ + mmove_t *oldmove; + + // hack to turn off the flamethrow effect + if (self->s.renderfx2 & RF2_FLAMETHROWER) + self->s.renderfx2 &= ~RF2_FLAMETHROWER; + + if (self->enemy && AI_CheckTakeCover(self)) + { + if (self->cast_info.currentmove != self->cast_info.move_evade) + self->cast_info.currentmove = self->cast_info.move_run; + return; + } + + oldmove = self->cast_info.currentmove; + if (!self->enemy || !self->cast_info.checkattack(self)) + { + self->cast_info.currentmove = self->cast_info.move_stand; + self->cast_info.talk(self); + + if (self->enemy) + self->cast_info.currentmove = self->cast_info.move_run; + + } +} + +/* +============== +AI_GetOrientation + + returns one of ORIENTATION_* depending on which side of "self", "other" is on +============== +*/ +int AI_GetOrientation( edict_t *self, edict_t *other ) +{ + vec3_t right, rorg, lorg, rvec, lvec; + float diff; + + // determine right or left side impact + AngleVectors(self->s.angles, NULL, right, NULL); + VectorMA(self->s.origin, 16, right, rorg); + VectorMA(self->s.origin, -16, right, lorg); + + VectorSubtract(other->s.origin, rorg, rvec); + VectorSubtract(other->s.origin, lorg, lvec); + + diff = VectorLength(rvec) - VectorLength(lvec); + + if (diff < -8) // right + { + return ORIENTATION_RIGHT; + } + else if (diff > 8) // left + { + return ORIENTATION_LEFT; + } + + // center + return ORIENTATION_CENTER; +} + +/* +============== +AI_CheckStillInair + + called while jumping, so we stay on a single jumping frame while in the air +============== +*/ +void AI_CheckStillInair(edict_t *self) +{ + if (!self->groundentity) + self->s.frame--; // stay on the current frame + else + { + float dist; + + dist = self->fall_height - self->s.origin[2]; + + if ( dist < 48) + { // get out of this anim + self->cast_info.currentmove->endfunc(self); + } + else if ( dist > 256 ) + { + T_Damage( self, world, world, vec3_origin, self->s.origin, vec3_origin, 2 + (int)((0.01*dist)*(0.01*dist)), 0, 0, MOD_FALLING ); + } + } +} + +/* +============== +AI_EndJump + + called at the end of a jump, so we return to running, or crouch walking frames +============== +*/ +void AI_EndJump(edict_t *self) +{ + if (!self->cast_info.move_run) + return; + + // clear cached nodes +// self->nav_data.cache_node = -1; +// self->nav_data.goal_index = 0; + + // resume walking + if (self->maxs[2] < self->cast_info.standing_max_z) + self->cast_info.currentmove = self->cast_info.move_crwalk; + else + self->cast_info.currentmove = self->cast_info.move_run; +} + + +// JOSEPH 20-NOV-98 +/* +============== +AI_AfterLife + + Generic character elimination routine. +============== +*/ +void AI_AfterLife(edict_t *self) +{ + // Seconds dead + self->deadticks++; + + // Set body on floor angle + if (self->deadticks <= 1) + { + /*vec3_t avec, stop; + trace_t trace; + + VectorCopy(self->s.origin, stop); + stop[2] -= 16*2; + + trace = gi.trace (self->s.origin, self->mins, self->maxs, stop, self, MASK_DEADSOLID); + if (trace.fraction < 1) + { + VectorCopy (trace.plane.normal, avec); + avec[0] = acos(trace.plane.normal[2])/M_PI*180; + avec[2] = atan2(trace.plane.normal[1], trace.plane.normal[0])/M_PI*180; + avec[1] = self->s.angles[1]; + + if (avec[2] == 180) + { + avec[0] = -avec[0]; + avec[2] = 0; + } + else if (avec[2] == 90) + { + avec[2] = avec[0]; + avec[0] = 0; + } + else if (avec[2] == -90) + { + avec[2] = -avec[0]; + avec[0] = 0; + } + + VectorCopy (avec, self->s.angles); + + // Ridah, the angles seem to be opposite? + VectorScale( self->s.angles, -1, self->s.angles ); + self->s.angles[YAW] = -self->s.angles[YAW]; // return YAW to normal + }*/ + + /*vec3_t avec1, avec2, avect, angles, start, stop, headorg, legsorg; + trace_t trace; + + // Use object_bounds to get head position + { + vec3_t org, ang, mins, maxs; + vec3_t forward, right, up; + vec3_t rmins, rmaxs, pmins, pmaxs; + + VectorCopy (self->s.origin, org); + VectorCopy (self->s.angles, ang); + + VectorCopy (self->s.model_parts[PART_HEAD].object_bounds[0][self->s.frame].mins, mins); + VectorCopy (self->s.model_parts[PART_HEAD].object_bounds[0][self->s.frame].maxs, maxs); + + AngleVectors (ang, forward, right, up); + + VectorMA (org, ((mins[0] + maxs[0]) * 0.5), forward, org); + VectorMA (org, -((mins[1] + maxs[1]) * 0.5), right, org); + VectorMA (org, (mins[2] + maxs[2]) * 0.5, up, org); + + // find rotated positions of mins/maxs, and then build the new min/max + VectorScale ( forward, mins[0], rmins); + VectorMA (rmins, -mins[1], right, rmins); + VectorMA (rmins, mins[2], up, rmins); + + VectorScale ( forward, maxs[0], rmaxs); + VectorMA (rmaxs, -maxs[1], right, rmaxs); + VectorMA (rmaxs, maxs[2], up, rmaxs); + + pmins[0] = (rmins[0] < rmaxs[0] ? rmins[0] : rmaxs[0]); + pmins[1] = (rmins[1] < rmaxs[1] ? rmins[1] : rmaxs[1]); + pmins[2] = (rmins[2] < rmaxs[2] ? rmins[2] : rmaxs[2]); + + pmaxs[0] = (rmins[0] > rmaxs[0] ? rmins[0] : rmaxs[0]); + pmaxs[1] = (rmins[1] > rmaxs[1] ? rmins[1] : rmaxs[1]); + pmaxs[2] = (rmins[2] > rmaxs[2] ? rmins[2] : rmaxs[2]); + + // now align the mins/maxs with the origin + mins[0] = pmins[0] - (0.5*(pmaxs[0] + pmins[0])); + mins[1] = pmins[1] - (0.5*(pmaxs[1] + pmins[1])); + mins[2] = pmins[2] - (0.5*(pmaxs[2] + pmins[2])); + maxs[0] = pmaxs[0] - (0.5*(pmaxs[0] + pmins[0])); + maxs[1] = pmaxs[1] - (0.5*(pmaxs[1] + pmins[1])); + maxs[2] = pmaxs[2] - (0.5*(pmaxs[2] + pmins[2])); + + headorg[0] = org[0] + (mins[0] + maxs[0]) / 2; + headorg[1] = org[1] + (mins[1] + maxs[1]) / 2; + headorg[2] = org[2] + (mins[2] + maxs[2]) / 2; + } + + // Use object_bounds to get legs position + { + vec3_t org, ang, mins, maxs; + vec3_t forward, right, up; + vec3_t rmins, rmaxs, pmins, pmaxs; + + VectorCopy (self->s.origin, org); + VectorCopy (self->s.angles, ang); + + VectorCopy (self->s.model_parts[PART_LEGS].object_bounds[0][self->s.frame].mins, mins); + VectorCopy (self->s.model_parts[PART_LEGS].object_bounds[0][self->s.frame].maxs, maxs); + + AngleVectors (ang, forward, right, up); + + VectorMA (org, ((mins[0] + maxs[0]) * 0.5), forward, org); + VectorMA (org, -((mins[1] + maxs[1]) * 0.5), right, org); + VectorMA (org, (mins[2] + maxs[2]) * 0.5, up, org); + + // find rotated positions of mins/maxs, and then build the new min/max + VectorScale ( forward, mins[0], rmins); + VectorMA (rmins, -mins[1], right, rmins); + VectorMA (rmins, mins[2], up, rmins); + + VectorScale ( forward, maxs[0], rmaxs); + VectorMA (rmaxs, -maxs[1], right, rmaxs); + VectorMA (rmaxs, maxs[2], up, rmaxs); + + pmins[0] = (rmins[0] < rmaxs[0] ? rmins[0] : rmaxs[0]); + pmins[1] = (rmins[1] < rmaxs[1] ? rmins[1] : rmaxs[1]); + pmins[2] = (rmins[2] < rmaxs[2] ? rmins[2] : rmaxs[2]); + + pmaxs[0] = (rmins[0] > rmaxs[0] ? rmins[0] : rmaxs[0]); + pmaxs[1] = (rmins[1] > rmaxs[1] ? rmins[1] : rmaxs[1]); + pmaxs[2] = (rmins[2] > rmaxs[2] ? rmins[2] : rmaxs[2]); + + // now align the mins/maxs with the origin + mins[0] = pmins[0] - (0.5*(pmaxs[0] + pmins[0])); + mins[1] = pmins[1] - (0.5*(pmaxs[1] + pmins[1])); + mins[2] = pmins[2] - (0.5*(pmaxs[2] + pmins[2])); + maxs[0] = pmaxs[0] - (0.5*(pmaxs[0] + pmins[0])); + maxs[1] = pmaxs[1] - (0.5*(pmaxs[1] + pmins[1])); + maxs[2] = pmaxs[2] - (0.5*(pmaxs[2] + pmins[2])); + + legsorg[0] = org[0] + (mins[0] + maxs[0]) / 2; + legsorg[1] = org[1] + (mins[1] + maxs[1]) / 2; + legsorg[2] = org[2] + (mins[2] + maxs[2]) / 2; + } + + VectorCopy(headorg, start); + VectorCopy(headorg, stop); + stop[2] = start[2] - 16*4; + trace = gi.trace (start, NULL, NULL, stop, self, MASK_DEADSOLID); + + if (trace.fraction < 1) + { + VectorCopy(trace.endpos, avec1); + } + else + { + VectorCopy(start, avec1); + } + + VectorCopy(legsorg, start); + VectorCopy(legsorg, stop); + stop[2] = start[2] - 16*4; + trace = gi.trace (start, NULL, NULL, stop, self, MASK_DEADSOLID); + + if (trace.fraction < 1) + { + VectorCopy(trace.endpos, avec2); + } + else + { + VectorCopy(start, avec2); + } + + if ((avec1[2] != avec2[2])) + { + if ((headorg[0] > self->s.origin[0]) || (headorg[1] > self->s.origin[1])) + { + VectorSubtract(avec2, avec1, avect); + } + else + { + VectorSubtract(avec1, avec2, avect); + } + + VectorNormalize(avect); + vectoangles(avect, angles); + angles[1] = self->s.angles[1]; + VectorCopy (angles, self->s.angles); + }*/ + } + + // If the body is not to be moved + if (!self->deadticks) + { + self->think = NULL; + self->nextthink = -1; + self->solid = 0; + return; + } + + if (self->deadticks > (60*1)) + { + edict_t *other=NULL; + trace_t tr; + vec3_t end, travelvec; + byte i; + long len; + float dir; + int dir2; + byte BW = SFX_BLOOD_WIDTH; + byte BH = SFX_BLOOD_HEIGHT; + long rnd1, rnd2; + + // Ridah, 11/22/98 added distance check and optimization + + // If no player can see the body +// while (other = G_Find(other, FOFS(classname), "player")) + for (i=0; i<(int)maxclients->value; i++) + { + other = &g_edicts[1 + i]; // clients start at g_edicts[1] + + if (!other->inuse) + continue; + + if (infront(other, self) || (VectorDistance(other->s.origin, self->s.origin) < 1024)) + { + self->nextthink = level.time + FRAMETIME * 20; + return; + } + } + + // Determine drag direction + dir = -10; + dir2 = 0; + VectorCopy (self->s.origin, end); + end[dir2] += dir * 20; + tr = gi.trace (self->s.origin, NULL, NULL, end, self, MASK_SHOT); + VectorSubtract(self->s.origin, tr.endpos, travelvec); + len = VectorNormalize(travelvec); + if (len > 100) goto dragit; + + dir = 10; + dir2 = 0; + VectorCopy (self->s.origin, end); + end[dir2] += dir * 20; + tr = gi.trace (self->s.origin, NULL, NULL, end, self, MASK_SHOT); + VectorSubtract(self->s.origin, tr.endpos, travelvec); + len = VectorNormalize(travelvec); + if (len > 100) goto dragit; + + dir = -10; + dir2 = 1; + VectorCopy (self->s.origin, end); + end[dir2] += dir * 20; + tr = gi.trace (self->s.origin, NULL, NULL, end, self, MASK_SHOT); + VectorSubtract(self->s.origin, tr.endpos, travelvec); + len = VectorNormalize(travelvec); + if (len > 100) goto dragit; + + dir = 10; + dir2 = 1; + VectorCopy (self->s.origin, end); + end[dir2] += dir * 20; + tr = gi.trace (self->s.origin, NULL, NULL, end, self, MASK_SHOT); + VectorSubtract(self->s.origin, tr.endpos, travelvec); + len = VectorNormalize(travelvec); + if (len > 100) goto dragit; else goto forgetit; + + dragit: + + rnd1 = ((rand()&7)-4); + + // Drag the body + for (i=0; i <= 10; i++) + { + VectorCopy (self->s.origin, end); + end[2] -= 32+8; + + tr = gi.trace (self->s.origin, NULL, NULL, end, self, MASK_SHOT); + + SurfaceSpriteEffect(SFX_SPRITE_SURF_BLOOD1, BW--, BH--, + tr.ent, tr.endpos, tr.plane.normal); + + self->s.origin[dir2] += dir; + + rnd2 = ((rand()&3)-2); + + if (dir == 1) + self->s.origin[2] += (rnd1 + rnd2); + else + self->s.origin[1] += (rnd2 + rnd2); + } + + forgetit: + + // Unload this cast's memory, since we won't be needing it anymore + //AI_UnloadCastMemory( self ); + + // Remove the body + self->think = NULL; + self->nextthink = -1; + self->solid = 0; + self->svflags |= SVF_NOCLIENT; + return; + } + + self->nextthink = level.time + FRAMETIME * 10; +} +// END JOSEPH + + +/* trace_t tr; + vec3_t end; + + VectorCopy (self->s.origin, end); + end[2] -= 32+8; + + tr = gi.trace (self->s.origin, NULL, NULL, end, self, MASK_SHOT); + + SurfaceSpriteEffect(SFX_SPRITE_SURF_BLOOD1, SFX_BLOOD_WIDTH, SFX_BLOOD_HEIGHT, + tr.ent, tr.endpos, tr.plane.normal); +*/ + +/* +============== +AI_EndDeath + + Generic end of death routine. Should call this for all characters that die, then do any + special stuff for that character. +============== +*/ +void AI_EndDeath(edict_t *self) +{ + // Ridah 16-may-99, stop dead bodies from sinking through floor + if (!self->groundentity) + { + return; + } + // done. + + // Ridah, 7-5-99, fixes shooting dead bodies +// if (!(self->svflags & SVF_DEADMONSTER)) + if (self->mins[0] != -64) + { + // Ridah, had to expand this even further to accomodate the punk death frames + VectorSet (self->mins, -64, -64, -24); + VectorSet (self->maxs, 64, 64, -4); + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_DEADMONSTER; + gi.linkentity (self); +/* + // if this position isn't valid, use the old, smaller box + { + trace_t tr; + + tr = gi.trace( self->s.origin, self->mins, self->maxs, self->s.origin, self, MASK_SHOT ); + + if (tr.startsolid) + { + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 0); + gi.linkentity (self); + } + } +*/ + } + + // Ridah, modified this so we only spawn blood once + if (!(self->flags & FL_SPAWNED_BLOODPOOL) && VectorCompare( self->velocity, vec3_origin )) + { + SpawnBloodPool (self); + self->flags |= FL_SPAWNED_BLOODPOOL; + } + + AI_AfterLife(self); + // END JOSEPH +} + +/* +=============== +AI_SideTrace + + Returns a 1 if a RIGHT rotation will point in a direction that is free of obstacles + + Returns -1 if LEFT, 0 otherwise +=============== +*/ +int AI_SideTrace( edict_t *self, float dist, float inyaw, int side ) +{ + trace_t tr; + vec3_t angle, vec, end, end2, mins; + float yaw; + int count=0; + + VectorCopy( self->mins, mins ); + mins[2] += 16; + + // pick a random direction + if ((side == 1) || (!side && (random() <= 0.5))) + yaw = inyaw; + else + yaw = -inyaw; + + while (1) + { + VectorCopy(self->s.angles, angle); + angle[YAW] += yaw; + + AngleVectors( angle, vec, NULL, NULL ); + + // trace in this direction + VectorMA( self->s.origin, dist, vec, end ); + + tr = gi.trace( self->s.origin, mins, self->maxs, end, self, MASK_PLAYERSOLID ); + + if (tr.fraction == 1) + { + + // make sure we can see our enemy from here + if (self->enemy) + { + vec3_t oldorg; + int result; + + VectorCopy( self->s.origin, oldorg ); + VectorCopy( tr.endpos, self->s.origin ); + + result = AI_ClearSight(self, self->enemy, true); + + VectorCopy( oldorg, self->s.origin ); + + if (!result) + { + goto blocked; + } + + } + + // check this is on ground + VectorCopy( end, end2 ); + end2[2] -= 64; + + tr = gi.trace( end, mins, self->maxs, end2, self, MASK_PLAYERSOLID ); + + if (tr.fraction < 1) + { + // go ahead! + + if (yaw < 0) + return -1; // left side + else + return 1; // right side + } + + } + +blocked: + + if (count++ || !inyaw || side) + break; + + yaw *= -1; + } + + return 0; +} + +void AI_CheckStillClimbingLadder( edict_t *self ) +{ + if (self->groundentity) + { // we're on ground, so resume moving + self->cast_info.currentmove = self->cast_info.move_stand; + } +} + +/* +=============== +AI_EndRun + + checks to see if we should walk or run +=============== +*/ +void AI_EndRun( edict_t *self ) +{ + if (!self->last_goal) + return; + + if (!self->cast_info.move_run) + return; + + if ( (self->enemy != self->last_goal) + && (VectorDistance( self->s.origin, self->last_goal->s.origin ) < AI_GUARDING_DIST * 2 ) + && (VectorLength( self->last_goal->velocity) < 200)) + { // close enough to walk + self->cast_info.currentmove = self->cast_info.move_runwalk; + } + else if ((self->last_goal != self->goal_ent) && (!self->last_goal || self->last_goal != self->guard_ent)) + { + self->cast_info.currentmove = self->cast_info.move_run; + } +} + +/* +=============== +AI_YawTrace + + Returns a 1 if a YAW rotation from self's angles will point in a direction that is free of obstacles + + Returns 0 otherwise +=============== +*/ +int AI_YawTrace( edict_t *self, float dist, float inyaw ) +{ + trace_t tr; + vec3_t angle, vec, end, end2, mins; + int count=0; + + VectorCopy( self->mins, mins ); + mins[2] += 16; + + VectorCopy(self->s.angles, angle); + angle[YAW] = anglemod(angle[YAW] + inyaw); + + AngleVectors( angle, vec, NULL, NULL ); + + // trace in this direction + VectorMA( self->s.origin, dist, vec, end ); + + tr = gi.trace( self->s.origin, mins, self->maxs, end, self, MASK_PLAYERSOLID ); + + if (tr.fraction == 1) + { + // check this is on ground + VectorCopy( end, end2 ); + end2[2] -= 64; + + tr = gi.trace( end, mins, self->maxs, end2, self, MASK_PLAYERSOLID ); + + if (tr.fraction < 1) + { + // go ahead! + return true; + } + + } + + return false; +} + +/* +============= +AI_StartRun + + Start us moving +============= +*/ +void AI_StartRun( edict_t *self ) +{ + // start running to them + if ( self->maxs[2] > DUCKING_MAX_Z ) + self->cast_info.currentmove = self->cast_info.move_run; + else + self->cast_info.currentmove = self->cast_info.move_crwalk; +} + + +void AI_FreeAndClearGoalEnt( edict_t *self ) +{ + if (self->owner->goal_ent == self) + self->owner->goal_ent = NULL; + + G_FreeEdict( self ); +} + +/* +============= +ai_stand + +Used for standing around and looking for TARGETS +Distance is for slight position adjustments needed by the animations +============== +*/ +void ai_stand (edict_t *self, float dist) +{ + + if (dist) + M_walkmove (self, self->s.angles[YAW], dist); + + if (self->leader && !self->leader->active_node_data) // we're loading up a new map + { + return; + } + + if (self->cast_info.aiflags & AI_DUCKATTACK) + { // return to standing + + self->cast_info.aiflags &= ~AI_DUCKATTACK; + + if (self->maxs[2] < self->cast_info.standing_max_z) + { + self->maxs[2] = self->cast_info.standing_max_z; + + self->cast_info.currentmove = self->cast_info.move_stand_up; + self->s.frame = self->cast_info.currentmove->firstframe; + return; + } + } + + // Ridah, Check DUCKING/STANDING status + if (self->maxs[2] < self->cast_info.standing_max_z) + { + if (self->cast_info.move_crstand && self->cast_info.currentmove != self->cast_info.move_crstand) + { // we should be ducking + self->cast_info.currentmove = self->cast_info.move_crstand; + self->s.frame = self->cast_info.currentmove->firstframe; + } + else if (self->leader && !(self->cast_info.aiflags & AI_TAKE_COVER) && (self->leader->maxs[2] > DUCKING_MAX_Z)) // can we stand now? + { + trace_t tr; + + self->maxs[2] = self->cast_info.standing_max_z; + tr = gi.trace(self->s.origin, self->mins, self->maxs, self->s.origin, self, MASK_PLAYERSOLID); + if (tr.startsolid) // can't safely stand + { + self->maxs[2] = DUCKING_MAX_Z; + } + else + { + self->cast_info.currentmove = self->cast_info.move_stand; + self->s.frame = self->cast_info.currentmove->firstframe; + } + } + } + else // not physically ducking, so make sure our animation frame reflects this + { + if ( (self->cast_info.currentmove == self->cast_info.move_crstand) + && (self->cast_info.move_crstand != self->cast_info.move_stand)) + { // we should be standing + self->cast_info.currentmove = self->cast_info.move_stand; + self->s.frame = self->cast_info.currentmove->firstframe; + + } + } + // Ridah, done. + + // Ridah, Do pausetime stuff, making sure we stay paused if we have to, or resume moving otherwise + if (!self->groundentity) + { + if (self->cast_info.move_jump && self->cast_info.currentmove != self->cast_info.move_jump) + self->cast_info.currentmove = self->cast_info.move_jump; + + return; + } + else if (self->groundentity->use && !VectorCompare(self->groundentity->velocity, vec3_origin)) + { + self->cast_info.pausetime = level.time + 1; + } + + // make sure we don't abort our goal waypoint next time we try to move + self->moveinfo.wait = level.time + 3; + self->wait = level.time + 3; + + if (self->cast_info.pausetime > level.time) + { + // see if we should wait for a lift or door + if (self->target_ent) + { + if (VectorCompare(self->target_ent->velocity, vec3_origin) && VectorCompare(self->target_ent->avelocity, vec3_origin)) + { // it's not moving, are we at our destination? + + if (self->target_ent->use != Use_Plat) + { + if (self->groundentity != self->target_ent) + { // stopped, and we're not standing on it, so proceed + self->target_ent = NULL; + self->cast_info.pausetime = 0; + + return; + } + else if (self->target_ent->nextthink > (level.time + 0.1)) + { + if (!self->nav_data.goal_index || (VectorDistance(level.node_data->nodes[self->nav_data.goal_index-1]->origin, self->s.origin) < 128)) + { + self->target_ent = NULL; + self->cast_info.pausetime = 0; + + return; + } + } + else // it's stopped, and not about to go anywhere + { + self->target_ent = NULL; + self->cast_info.pausetime = 0; + + return; + } + } + else if (self->groundentity == self->target_ent) + { + if (self->target_ent->moveinfo.state == STATE_TOP) + { + self->target_ent = NULL; + self->cast_info.pausetime = 0; + + return; + } + } + else if (self->target_ent->moveinfo.state == STATE_BOTTOM) + { + self->target_ent = NULL; + self->cast_info.pausetime = 0; + + return; + } + } + + // keep waiting + self->cast_info.pausetime = level.time + 0.2; + + } + + if (self->groundentity && self->groundentity->use) + { // make sure all corners are on the platform + trace_t tr; + vec3_t org, orgdest; + float x, y; + + for (x=-16; x<24; x+=32) + { + for (y=-16; y<24; y+=32) + { + VectorSet(org, self->s.origin[0]+x, self->s.origin[1]+y, self->s.origin[2]-23); + VectorSet(orgdest, self->s.origin[0]+x, self->s.origin[1]+y, self->s.origin[2]-30); + tr = gi.trace(org, NULL, NULL, orgdest, self, MASK_SOLID); + + if ((tr.fraction == 1) || (tr.ent != self->groundentity)) + { + // set a running frame + if (self->cast_info.move_run) + self->s.frame = self->cast_info.move_run->firstframe + + ( ((int)(level.time * 10)) + % (self->cast_info.move_run->lastframe - self->cast_info.move_run->firstframe)); + + AI_MoveToPlatCenter(self, self->groundentity); + return; + } + } + } + } + // should we attack someonw while waiting? + else if (self->enemy || AI_FindTarget(self)) + { + if (AI_BeginAttack(self)) + { + self->cast_info.attack( self ); + } + } + // should we get out of the way? + else if (self->target_ent && self->target_ent->velocity[2]) + { + // are we within the XY axis bounds? + if ( ( (self->s.origin[0] > (self->target_ent->absmin[0] - 20)) + && (self->s.origin[0] < (self->target_ent->absmax[0] + 20))) + && ( (self->s.origin[1] > (self->target_ent->absmin[1] - 20)) + && (self->s.origin[1] < (self->target_ent->absmax[1] + 20)))) + { + float *pos; + vec3_t mins, maxs; + + // move out of it's way + + // set a running frame + if (self->cast_info.move_run) + self->s.frame = self->cast_info.move_run->firstframe + + ( ((int)(level.time * 10)) + % (self->cast_info.move_run->lastframe - self->cast_info.move_run->firstframe)); + + VectorSet( mins, + self->target_ent->absmin[0] - 20, + self->target_ent->absmin[1] - 20, + -9999 ); + + VectorSet( maxs, + self->target_ent->absmax[0] + 20, + self->target_ent->absmax[1] + 20, + 9999 ); + + // look for a safe position + if (pos = NAV_GetReachableNodeOutsideBounds ( self, mins, maxs )) + { + vec3_t vec; + + // face this direction + VectorSubtract( pos, self->s.origin, vec ); + VectorNormalize( vec ); + self->ideal_yaw = vectoyaw( vec ); + + M_ChangeYaw( self ); + + // move towards it + M_walkmove( self, self->ideal_yaw, 10 ); + } + } + } + + return; + } + // Ridah, done. + + // Ridah, check for a reason to do something (if we're too close to our leader, or there is an enemy we should seek) + if ((!(self->cast_info.aiflags & AI_HOLD_POSITION) || self->enemy) && self->leader && !(self->cast_info.aiflags & AI_TAKE_COVER)) + { + if ( !(self->leader->waterlevel) // don't follow a swimming leader + && AI_FollowLeader(self, self->leader)) + { + self->last_goal = self->leader; + + AI_EndRun(self); // does distance checking, will start us moving + + if (self->cast_info.currentmove->frame->aifunc != ai_stand && VectorDistance(self->s.origin, self->leader->s.origin) <= AI_TOO_CLOSE_DIST) + { // look for a node we can reach + + AI_GetAvoidDirection( self, self->leader ); + self->cast_info.currentmove = self->cast_info.move_avoid_walk; + + } + + } + + } + + if (self->cover_ent && (self->cast_info.aiflags & AI_TAKE_COVER)) + { + float goaldist; + + if ( self->combat_goalent + && ( ((goaldist = VectorDistance( self->s.origin, self->combat_goalent->s.origin )) > 64) + || ( !ValidBoxAtLoc( self->combat_goalent->s.origin, self->mins, self->maxs, self, MASK_PLAYERSOLID ) + && goaldist < 128 ))) + { // we should be running to it + self->cast_info.currentmove = self->cast_info.move_run; + return; + } + + // pretend we're ducking for vis test + self->viewheight = DUCKING_MAX_Z - 4; + + // if they can see us, and we're standing around, abort taking cover + if (AI_ClearSight( self->cover_ent, self, false)) + { + self->cast_info.aiflags &= ~AI_TAKE_COVER; + self->combat_goalent = NULL; + self->cast_info.currentmove = self->cast_info.move_run; + + return; + } + +// Ridah, 5-7-99, had to modify this to prevent Betty crouching bug + self->viewheight = self->maxs[2] - 4; + if (self->maxs[2] > DUCKING_MAX_Z && AI_ClearSight( self->cover_ent, self, false)) + { + self->maxs[2] = DUCKING_MAX_Z; + if (self->cast_info.move_crouch_down) + self->cast_info.currentmove = self->cast_info.move_crouch_down; + } + + return; + } + + /* + if ( self->goal_ent + && !self->leader + && !(self->cast_info.aiflags & AI_TAKE_COVER) + && ( !self->enemy + || (self->cast_info.aiflags & AI_GOAL_IGNOREENEMY))) + */ + if (self->goal_ent && !self->leader && !(self->cast_info.aiflags & AI_TAKE_COVER)) + { + float goaldist; + + if ( (self->cast_info.move_run) + && ( (self->cast_info.goal_ent_pausetime < level.time))) +// || (self->goal_ent->solid == SOLID_TRIGGER))) + { + goaldist = VectorDistance(self->s.origin, self->goal_ent->s.origin); + + if ( (self->goal_ent->touch == path_corner_cast_touch) + || (goaldist > 256 )) + { + // Ridah, fixes jerky movement in SR1 intro + if (level.cut_scene_time) + { + if ((self->goal_ent->touch == path_corner_cast_touch) && (self->name_index == NAME_INTROGUY1) && (goaldist < 32)) + { // simulate touching it + self->goal_ent->touch( self->goal_ent, self, NULL, NULL ); + return; + } + } + + self->nav_data.cache_node = -1; + self->nav_data.goal_index = 0; + self->cast_info.currentmove = self->cast_info.move_runwalk; + return; + } + + if (self->goal_ent->target) + { // face the target (eg. the Radio in Skidrow points into the room) + edict_t *targ; + + if (targ = G_Find( NULL, FOFS( targetname ), self->goal_ent->target )) + { + if (!directly_infront( self, targ )) // straighten up + { + if (self->cast_info.avoid) + { + self->cast_info.avoid( self, targ, true ); + return; + } + } + } + else + { +// gi.dprintf( "ai_stand: Unable to locate 'target' to face\n" ); + } + + } + else if (!directly_infront( self, self->goal_ent )) // straighten up + { + if (self->cast_info.avoid) + { + self->cast_info.avoid( self, self->goal_ent, true ); + return; + } + } + + if (!(self->goal_ent->cast_info.aiflags & AI_GOALENT_MANUAL_CLEAR)) + { + self->goal_ent = NULL; // we made it there + } + } + } + + // If guarding something, and we've moved out of range, abort the pursuit + if (self->guard_ent && !(self->cast_info.aiflags & AI_TAKE_COVER)) + { + if ( (VectorDistance( self->s.origin, self->guard_ent->s.origin ) > self->guard_ent->guard_radius) + || (!AI_ClearSight(self, self->guard_ent, false))) + { + AI_StartRun ( self ); + return; + } + } + + // RAFAEL 28-dec-98 + if (AI_HearPlayer (self)) + { + return; + } + + // look for things to be hostile at + + if (self->enemy) + { + AI_StartAttack( self, self->enemy ); + return; + } + else if (AI_FindTarget (self)) + { + return; + } + + if (!(self->cast_info.aiflags & AI_TAKE_COVER) && !(self->spawnflags & 1) && (self->cast_info.idle) && (level.time > self->cast_info.idle_time)) + { + if (self->cast_info.idle_time) + { + self->cast_info.idle (self); + self->cast_info.idle_time = level.time + 15 + random() * 15; + } + else + { + self->cast_info.idle_time = level.time + random() * 15; + } + } + + if ( !(self->cast_info.aiflags & AI_TAKE_COVER) + && !(self->goal_ent) + && (self->target)) +// Ridah, removed this optimization, since we are always using trigger spawned characters anyway +// && ( (self->spawnflags & SPAWNFLAG_IMMEDIATE_FOLLOW_PATH) +// || ( (VectorDistance(self->s.origin, g_edicts[1].s.origin) < 800) +// && (gi.inPVS(g_edicts[1].s.origin, self->s.origin))))) // Optimization, so we only walk if the player is close + { // resume following our path_corner + + self->goal_ent = G_PickTarget(self->target); + if (!self->goal_ent) + { + gi.dprintf ("%s can't find target %s at %s\n", self->classname, self->target, vtos(self->s.origin)); + self->target = NULL; + } + + } + + // if we're crouched, and we can stand, then go for it + if (self->maxs[2] < self->cast_info.standing_max_z) + { + if (self->stand_if_idle_time < level.time) + { + if (self->stand_if_idle_time > (level.time - 0.5)) + { + self->maxs[2] = self->cast_info.standing_max_z; + + if (!ValidBoxAtLoc( self->s.origin, self->mins, self->maxs, self, MASK_PLAYERSOLID )) + self->maxs[2] = DUCKING_MAX_Z; + else if (self->cast_info.move_stand_up) + self->cast_info.currentmove = self->cast_info.move_stand_up; + } + else + { + self->stand_if_idle_time = level.time + 3; + } + } + } + + if ((self->cast_info.aiflags & AI_HOLD_POSITION) && !self->enemy) + { + // Ridah, 6-jun-99, Friendly's should avoid grenades when staying put, then come back + if (!(self->cast_info.aiflags & AI_TAKE_COVER) || !(self->cover_ent) || (self->cover_ent->svflags & SVF_MONSTER)) + { // we aren't avoiding anything + + if (VectorDistance( self->s.origin, self->holdpos_ent->s.origin ) >= AI_GUARDING_DIST) + { + self->cast_info.currentmove = self->cast_info.move_run; + } + } + } + +} + + +/* +============= +ai_walk + +The monster is walking it's beat +============= +*/ +void ai_walk (edict_t *self, float dist) +{ + M_MoveToGoal (self, dist); + + // check for noticing an enemy + if (AI_FindTarget (self)) + return; + + if ((self->cast_info.search) && (level.time > self->cast_info.idle_time)) + { + if (self->cast_info.idle_time) + { + self->cast_info.search (self); + self->cast_info.idle_time = level.time + 15 + random() * 15; + } + else + { + self->cast_info.idle_time = level.time + random() * 15; + } + } +} + + +/* +============= +ai_charge + +Turns towards target and advances +Use this call with a distnace of 0 to replace ai_face +============== +*/ +void ai_charge (edict_t *self, float dist) +{ + vec3_t v; + + if (self->enemy) + { + VectorSubtract (self->enemy->s.origin, self->s.origin, v); + self->ideal_yaw = vectoyaw(v); + M_ChangeYaw (self); + } + + if (dist) + if (!M_walkmove (self, self->s.angles[YAW], dist )) + M_walkmove (self, self->s.angles[YAW] + 60*(rand()%3 - 1), 0.5 * dist); +} + + +qboolean ai_checksafeground( edict_t *self, vec3_t oldpos ) +{ + vec3_t end, start; + trace_t tr; + float x, y; + + for (x=-14; x<=14; x+=28) + { + + for (y=-14; y<=14; y+=28) + { + + VectorCopy( self->s.origin, start ); + start[0] += x; + start[1] += y; + + VectorCopy( start, end ); + end[2] += self->mins[2] - 16; + + tr = gi.trace( start, vec3_origin, vec3_origin, end, self, MASK_PLAYERSOLID ); + + if (tr.fraction == 1) + { + VectorCopy( oldpos, self->s.origin ); + gi.linkentity( self ); + + return false; + } + + } + + } + + return true; +} + + +/* +============= +ai_turn + +don't move, but turn towards ideal_yaw +Distance is for slight position adjustments needed by the animations +============= +*/ +void ai_turn (edict_t *self, float dist) +{ + vec3_t oldpos; +// qboolean wassafeground; + + // wassafeground = ai_checksafeground( self, oldpos ); + + VectorCopy( self->s.origin, oldpos ); + + self->cast_info.aiflags &= ~AI_TURN_BLOCKED; + + if (dist > 32) + dist = 32; + + if (self->groundentity && dist + && (!(self->cast_info.aiflags & AI_NOWALK_FACE))) // Ridah 5-8-99, fixes "aiflags 1" not working + { + if (!M_walkmove (self, self->s.angles[YAW], dist) && !self->leader) + { + self->cast_info.aiflags |= AI_TURN_BLOCKED; + + if (self->cast_info.currentmove->endfunc == AI_EndAttack) + { // call it now, since we can't move + AI_EndAttack( self ); + } + } + } + + if (self->cast_info.avoid_ent) + { + // if not above safe ground, go back + // if (wassafeground && dist && !ai_checksafeground( self, oldpos )) + if (dist && !ai_checksafeground( self, oldpos )) + { + mmove_t *oldmove; + + if (self->cast_info.currentmove->endfunc == AI_EndAttack) + { // call it now, since we can't move + oldmove = self->cast_info.currentmove; + + AI_EndAttack( self ); + + if (self->cast_info.currentmove == oldmove) + { + self->cast_info.currentmove = self->cast_info.move_stand; + + } + + goto done; + } + } + + if (self->cast_info.last_avoid > (level.time - 1.5)) + { + vec3_t vec; + + VectorSubtract( self->cast_info.avoid_ent->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + self->ideal_yaw = vectoyaw( vec ); + + if ( (self->cast_info.currentmove->endfunc == AI_EndAttack) + && (directly_infront( self, self->cast_info.avoid_ent ))) + { // call it now, since we're facing them + AI_EndAttack( self ); + } + } + else if (dist) // been too long + { + self->cast_info.avoid_ent = NULL; + } + else // just straighten up + { + vec3_t vec; + + VectorSubtract( self->cast_info.avoid_ent->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + self->ideal_yaw = vectoyaw(vec); + } + } + else if (self->enemy) + { + vec3_t vec; + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + self->ideal_yaw = vectoyaw(vec); + } + +done: + + M_ChangeYaw (self); +} + + +void ai_turn2 (edict_t *self, float dist) +{ +/* Ridah, ai_turn does this now + // quick fix to face the player + if (self->enemy) + { + vec3_t vec; + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + + self->ideal_yaw = vectoyaw( vec ); + + M_ChangeYaw( self ); + } +*/ + self->cast_info.avoid_ent = self->enemy; + + ai_turn (self, dist); +} + +/* +============== +ai_sidestep + + move "dist" to the right +============== +*/ +void ai_sidestep( edict_t *self, float dist) +{ + vec3_t oldpos; + + VectorCopy( self->s.origin, oldpos ); + + self->cast_info.aiflags &= ~AI_TURN_BLOCKED; + + if (dist > 32) + dist = 32; + + if (dist) + { + if (!M_walkmove (self, self->s.angles[YAW] + 90, dist)) + { + self->cast_info.aiflags |= AI_TURN_BLOCKED; + + if (self->cast_info.currentmove->endfunc == AI_EndAttack) + { // call it now, since we can't move + mmove_t *om; + + om = self->cast_info.currentmove; + + AI_EndAttack( self ); + + if (self->cast_info.currentmove == om) + { + self->cast_info.currentmove = self->cast_info.move_run; + } + } + } + } + + if (self->cast_info.avoid_ent) + { + // if not above safe ground, go back + if (dist && !ai_checksafeground( self, oldpos )) + { + if (self->cast_info.currentmove->endfunc == AI_EndAttack) + { // call it now, since we can't move + AI_EndAttack( self ); + } + } + + if (self->cast_info.last_avoid > (level.time - 1.5)) + { + vec3_t vec; + + VectorSubtract( self->cast_info.avoid_ent->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + self->ideal_yaw = vectoyaw( vec ); + } + else // been too long + { + self->cast_info.avoid_ent = NULL; + } + } + else if (self->enemy) + { + vec3_t vec; + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + self->ideal_yaw = vectoyaw(vec); + } + + + M_ChangeYaw (self); + +} + +/* +============= +range + +returns the range catagorization of an entity reletive to self +0 melee range, will become hostile even if back is turned +1 visibility and infront, or visibility and show hostile +2 infront and show hostile +3 only triggered by damage +============= +*/ +int range (edict_t *self, edict_t *other) +{ + vec3_t v; + float len; + + VectorSubtract (self->s.origin, other->s.origin, v); + len = VectorLength (v); + if (len < MELEE_DISTANCE) + return RANGE_MELEE; + if (len < 500) + return RANGE_NEAR; + if (len < 1000) + return RANGE_MID; + return RANGE_FAR; +} + +/* +============= +visible + +returns 1 if the entity is visible to self, even if not infront () +============= +*/ +qboolean visible (edict_t *self, edict_t *other) +{ + vec3_t spot1; + vec3_t spot2; + trace_t trace; + + VectorCopy (self->s.origin, spot1); + spot1[2] += self->viewheight; + VectorCopy (other->s.origin, spot2); + spot2[2] += other->viewheight; + trace = gi.trace (spot1, vec3_origin, vec3_origin, spot2, self, MASK_OPAQUE); + + if (trace.fraction == 1.0) + return true; + return false; +} + + +/* +============= +infront + +returns 1 if other is in front (in sight) of self +============= +*/ +qboolean infront (edict_t *self, edict_t *other) +{ + vec3_t vec; + float dot; + vec3_t forward; + + AngleVectors (self->s.angles, forward, NULL, NULL); + VectorSubtract (other->s.origin, self->s.origin, vec); + VectorNormalize (vec); + dot = DotProduct (vec, forward); + + if (dot > 0.2) + return true; + return false; +} + +/* +============= +directly_infront + +returns 1 if other is directly in front of self (pointing at) +============= +*/ +qboolean directly_infront (edict_t *self, edict_t *other) +{ + vec3_t vec; + float dot; + vec3_t forward, ang; + float len; + + VectorCopy( self->s.angles, ang ); + ang[PITCH] = 0; + + AngleVectors (ang, forward, NULL, NULL); + VectorSubtract (other->s.origin, self->s.origin, vec); + vec[2] = 0; + len = VectorNormalize (vec); + dot = DotProduct (vec, forward); + + if (dot > (0.98 - (len < 1024 ? 0.1 * (1.0 - (len/1024.0)) : 0))) + return true; + return false; +} + +/* +============= +directly_infront_angles + +returns 1 if other is directly in front of self (pointing at) +============= +*/ +qboolean directly_infront_angle (vec3_t ang1, edict_t *self, edict_t *other) +{ + vec3_t vec; + float dot; + vec3_t forward;//, ang; + +// VectorCopy( self->s.angles, ang ); +// ang[PITCH] = 0; + + AngleVectors (ang1, forward, NULL, NULL); + VectorSubtract (other->s.origin, self->s.origin, vec); +// vec[2] = 0; + VectorNormalize (vec); + dot = DotProduct (vec, forward); + + if (dot > 0.98) + return true; + return false; +} + + +//============================================================================= + +/* +============ +FacingIdeal + +============ +*/ +qboolean FacingIdeal(edict_t *self) +{ + float delta; + + delta = anglemod(self->s.angles[YAW] - self->ideal_yaw); + if (delta > 45 && delta < 315) + return false; + return true; +} + +//============================================================================= + + +//============================================================================= + +extern void button_use (edict_t *self, edict_t *other, edict_t *activator); +extern void func_explosive_use(edict_t *self, edict_t *other, edict_t *activator); +extern void func_explosive_explode (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject); + +// Ridah, new AI system movements functions +/* +================ +AI_canmove + + tries a (CPU friendly) move to the destination point, making sure we don't move inside + another solid, into water, or fall off an edge +================ +*/ +qboolean AI_canmove( edict_t *self, vec3_t dest ) +{ // returns true if the dest box is valid + trace_t tr; + vec3_t dropdest; + float lift = 0; + vec3_t dir; + + VectorSubtract( dest, self->s.origin, dir ); + VectorNormalize( dir ); + + tr = gi.trace(dest, self->mins, self->maxs, dest, self, MASK_PLAYERSOLID|CONTENTS_MONSTERCLIP); + + if (tr.startsolid || tr.allsolid) + { // try lifting up slightly + dest[2] += (lift = 24); + tr = gi.trace(dest, self->mins, self->maxs, dest, self, MASK_PLAYERSOLID | CONTENTS_MONSTERCLIP); + + if (tr.startsolid || tr.allsolid) + dest[2] -= lift; + + } + + if (tr.startsolid || tr.allsolid) + { + edict_t *activator; + + if (tr.ent == world || !(tr.ent->svflags & SVF_MONSTER)) + { // try a line trace to find a blocking character + tr = gi.trace(self->s.origin, NULL, NULL, dest, self, MASK_PLAYERSOLID|CONTENTS_MONSTERCLIP); + } + + // get this character to get out of our way + if ( (tr.fraction < 1) + && (tr.ent != world) /* && [tr.ent is not an enemy (neutral or friend)]*/ + && (tr.ent->cast_info.avoid)) + { + + if (tr.ent->cast_info.last_avoid < (level.time - 2)) + if ( (tr.ent->cast_info.currentmove->frame[0].aifunc == ai_stand) + || (tr.ent->enemy && (VectorDistance(tr.ent->enemy->s.origin, tr.ent->s.origin) > 64))) + { + // tell them to move out the way, since they're not doing much + tr.ent->cast_info.avoid(tr.ent, self, false); + } + + // stop going for our current node + self->nav_data.cache_node = -1; + self->nav_data.goal_index = 0; + + // pause for a bit? + if (!self->enemy) + { + self->cast_info.currentmove = self->cast_info.move_stand; + self->cast_info.pausetime = level.time + 1; + + + } + + return false; + } + else if ( (tr.ent->use) + && (tr.ent->use == button_use) + && (tr.ent->targetname) + && (!self->activator) + && (activator = G_Find( NULL, FOFS(target), tr.ent->targetname ))) + { // go for this button + self->activator = activator; + + // stop going for our current node + self->nav_data.cache_node = -1; + self->nav_data.goal_index = 0; + } + else if ((tr.ent->die == func_explosive_explode) && (tr.ent->takedamage == DAMAGE_YES)) + { // blow it up + T_Damage( tr.ent, self, self, dir, tr.endpos, vec3_origin, 50, 0, 0, MOD_UNKNOWN ); + } + else //if (tr.ent->client || tr.ent->svflags & SVF_MONSTER) + { // go around it + int res; + + res = AI_SideTrace( self, 32, 90, 0 ); + + if (res < 0) + self->ideal_yaw = self->s.angles[YAW] - 90; + else if (res > 0) + self->ideal_yaw = self->s.angles[YAW] - 90; + + M_ChangeYaw( self ); + } + + return false; + } + +// if (self->waterlevel) // swimming grunt doesn't need to check for onground +// return true; + + VectorCopy(dest, dropdest); + dropdest[2] -= (16 + lift); + + dest[2] += 0.1; + tr = gi.trace(dest, self->mins, self->maxs, dropdest, self, MASK_PLAYERSOLID|CONTENTS_MONSTERCLIP); + dest[2] -= 0.1; + + if (!tr.startsolid && !tr.allsolid && (tr.fraction < 1)) + { + dest[2] = tr.endpos[2]; + return true; + } + else + { + dest[2] -= lift; + return false; + } +} + +/* +================= +AI_movetogoal + + More robust movement code, which tries a CPU friendly move first, and then + several walkmove()'s allowing for obstructions +================= +*/ +qboolean AI_movetogoal (edict_t *self, edict_t *goal, float dist) +{ + vec3_t dir, oldorg, dest; + int yaw, rnd; + int aborted=false; + float diff, goal_dist; + float slide_scale = 1.0; + qboolean moved=false; + qboolean changezval = false; + +/* + if ( (self->cast_info.currentmove == self->cast_info.move_run) + && (self->last_goal && self->last_goal->client) + && ( (VectorLength( self->last_goal->velocity ) > dist*10) + || (VectorDistance(self->s.origin, self->last_goal->s.origin) > 256))) + { + dist *= 2; // keep up with the player + if (dist > 32) + dist = 32; // Ridah, they can run through walls if more than this + } +*/ + self->flags &= ~FL_FLY; + + VectorSubtract(goal->s.origin, self->s.origin, dir); + goal_dist = VectorNormalize(dir); + self->ideal_yaw = vectoyaw(dir); + + // if we're walking up a steep slope, make sure we don't try and move too far + if ((fabs(dir[2]) > 0.4) && (dist*fabs(dir[2]) > 20.0)) + { + dist = 20.0 / fabs(dir[2]); + } + + M_ChangeYaw(self); + + yaw = self->s.angles[YAW]; + + if (dist > 4 && (diff = fabs(AngleDiff(self->s.angles[YAW], self->ideal_yaw))) > 30) + { +// dist *= 0.5; // turning, don't go so far + +// if (dist < 4) +// dist = 4; + + if (diff < 90) + dist *= (1 - 0.8*(diff / 90)); + else + dist *= (1 - 0.8*(90 / 90)); + + // walk forwards + AngleVectors( self->s.angles, dir, NULL, NULL ); + VectorMA( self->s.origin, dist, dir, dest ); + } + // can we simply move towards this position? + else if ((dist > 4) || (goal_dist < 32)) + { + VectorMA(self->s.origin, dist, dir, dest); + } + else // go forward if walking + { + vec3_t fwd; + + AngleVectors( self->s.angles, fwd, NULL, NULL ); + VectorMA(self->s.origin, dist, fwd, dest); + } + + yaw = self->s.angles[YAW]; + + if (self->maxs[2] == DUCKING_MAX_Z) + { + self->maxs[2] = 8; //4; // Ridah, modified as per requested + changezval = true; + } + + moved = AI_canmove(self, dest); + + if (changezval) + { + self->maxs[2] = DUCKING_MAX_Z; + } + + if (moved) + { + VectorCopy(dest, self->s.origin); + gi.linkentity(self); + G_TouchTriggers (self); + return true; + } + + // nope, try walkmove() + + if ((((int) level.time) % 6) < 3) + rnd = -1; + else + rnd = 1; + + VectorCopy(self->s.origin, oldorg); + self->goalentity = goal; // used by SV_movestep() for falling from air + + while (dist > 0) + { + if (M_walkmove(self, yaw, dist)) + { + moved=true; + break; + } + + if (dist > 16) + { + dist -= 8; + continue; + } + + if (!M_walkmove(self, yaw+(60*rnd), dist*0.7)) + if (!M_walkmove(self, yaw+(100*rnd), dist*0.5)) + if (!M_walkmove(self, yaw+(140*rnd), dist*0.3)) +/* + if (!M_walkmove(self, yaw-(60*rnd), dist*0.7)) + if (!M_walkmove(self, yaw-(100*rnd), dist*0.5)) + if (!M_walkmove(self, yaw-(140*rnd), dist*0.3)) +*/ + { + dist -= 3; + continue; + } + + break; + } +/* + if ((dist <= 0) && (self->maxs[2] > DUCKING_MAX_Z)) + { // try ducking + self->maxs[2] = DUCKING_MAX_Z; + if (!M_walkmove(self, yaw, dist*0.5)) + { + self->maxs[2] = self->cast_info.standing_max_z; + } + else + { + if (self->cast_info.move_crouch_down) + self->cast_info.currentmove = self->cast_info.move_crouch_down; + } + } +*/ + if (aborted) + { + self->goalentity = NULL; + return false; + } + + if (dist <= 0) + { + return false; + } + + // always face the direction we just went + VectorSubtract(self->s.origin, oldorg, dir); + VectorNormalize2(dir, dir); + self->ideal_yaw = vectoyaw(dir); + + self->yaw_speed *= 0.25; + + M_ChangeYaw(self); + + self->yaw_speed *= 4; + + return moved; +} + +/* +================= +AI_jump + + Called whenever a character needs to jump somewhere +================= +*/ +void AI_jump (edict_t *self, float dist) +{ + vec3_t forward; + + if (dist < 0) + dist = -dist; + + // VectorCopy (self->goalentity->s.angles, self->s.angles); + AngleVectors (self->s.angles, forward, NULL, NULL); + VectorScale (forward, dist, self->velocity); + self->velocity[2] = dist; + + if (self->groundentity) + self->groundentity = NULL; +} + +/* +================= +AI_climb + + Called whenever a character is climbing a ladder +================= +*/ +void AI_climb (edict_t *self) +{ + static edict_t *goal = NULL; + edict_t *save; + + if (!goal) + goal = G_Spawn(); + + save = self->goalentity; + self->goalentity = goal; + + VectorCopy (self->s.origin, goal->s.origin); + VectorCopy (self->s.angles, goal->s.angles); + goal->s.origin[2] += 20; + +// self->enemy = goal; + + self->velocity[2] = 200; +// ai_move (self, 0); + + self->wait = level.time + 1; + self->moveinfo.wait = level.time + 1; + + if (self->nav_data.goal_index && (level.node_data->nodes[self->nav_data.goal_index-1]->origin[2] > self->s.origin[2])) + { + self->flags |= FL_FLY; + } + else // done climbing + { + self->flags &= ~FL_FLY; + AI_jump (self, 150); + self->velocity[2] += 100; + self->groundentity = NULL; + self->cast_info.aiflags &= ~AI_SKILL_LADDER; + self->cast_info.currentmove = self->cast_info.move_stand; + + self->wait = level.time + 4; + self->moveinfo.wait = level.time + 1; + level.node_data->nodes[self->nav_data.goal_index-1]->ignore_time = level.time + 3; // don't go back to the landing node, or we may fall down + self->nav_data.goal_index = 0; // re-scan for a new path when we land + self->nav_data.cache_node = -1; + } + +// self->enemy = NULL; + self->goalentity = save; + + self->s.frame = self->cast_info.move_stand->firstframe; +} + +qboolean ValidBoxAtLoc(vec3_t org, vec3_t mins, vec3_t maxs, edict_t *ignore, int mask) +{ + trace_t tr; + + tr = gi.trace(org, mins, maxs, org, ignore, mask); + + return (!tr.allsolid); +} + +void AI_GetAvoidDirection( edict_t *self, edict_t *other ) +{ + vec3_t dir; +/* + if (AI_SideTrace( self, 64, 0, 1 )) + { + self->ideal_yaw = entyaw( other, self ); + } + else +*/ + if (NAV_GetAvoidDirection( self, other, dir )) + { + self->ideal_yaw = vectoyaw( dir ); + } + else + { + self->ideal_yaw = anglemod( entyaw( other, self ) + 1.0*(rand()%90 - 45) ); + } +} + +// Ridah, done. + +//------------------------------------------------------------------------------ +// New AI system +// +// This is used whenever the cast member is doing something that involves moving +// - will weigh up all current objectives, and carry out the desired action + +extern void path_corner_cast_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf); +extern void path_corner_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf); + +void ai_runFLASHLIGHT ( edict_t *self, float dist ) +{ + trace_t tr; + vec3_t forward; + vec3_t end; + vec3_t mins, maxs; + edict_t *light; + vec3_t angles, origin; + + ai_run (self, dist); + + VectorCopy (self->s.angles, angles); + angles[0] += crandom() * 1.5; + angles[1] += crandom() * 1.5; + angles[2] += crandom() * 1.5; + VectorCopy (self->s.origin, origin); + AngleVectors (angles, forward, NULL, NULL); + VectorCopy (origin, end); + VectorMA (end, 8194, forward, end); + + VectorSet (mins, -8, -8, -8 ); + VectorSet (maxs, 8, 8, 8); + + tr = gi.trace (self->s.origin, mins, maxs, end, self, MASK_SHOT); + + if (tr.ent->client || tr.ent->svflags & SVF_MONSTER) + if (!(tr.ent->flags & FL_NOTARGET)) + EP_EventSpeech (self, tr.ent, say_flashlight); + + /* + if (tr.ent->client || tr.ent->svflags & SVF_MONSTER) + { + // If this is a friend, go easy on them + if (!(tr.ent->cast_group) && (tr.ent->cast_group != self->cast_group)) + // they aren't on our side, are they a friend? + if (!(cast_memory = level.global_cast_memory[self->character_index][tr.ent->character_index])) + { // record this sighting, so we can start to attack them + + AI_RecordSighting(self, tr.ent, VectorDistance(self->s.origin, tr.ent->s.origin) ); + cast_memory = level.global_cast_memory[self->character_index][tr.ent->character_index]; + + } + } + */ + + light = G_Spawn(); + VectorCopy (tr.endpos, light->s.origin); + light->s.renderfx |= RF_BEAM; + light->s.effects |= EF_FLASHLIGHT; + light->nextthink = level.time + 0.1; + light->think = G_FreeEdict; + gi.linkentity (light); + +} + + +void ai_run ( edict_t *self, float dist ) +{ + static edict_t tempgoal; + edict_t **goal=NULL; + int len; + edict_t tempent, *ptempent; + + route_t route; + node_t *goal_node; + vec3_t vec, oldorg; + int rval, reached_goal=false; + float goaldist, ideal_dist; + qboolean moved, avoiding=false; + + if (self->cast_info.aiflags & AI_RUN_LIKE_HELL) + { + dist *= 1.5; + if (dist > 32) + dist = 32; + } + + if (self->cast_info.move_crwalk && (self->maxs[2] < self->cast_info.standing_max_z) && (self->cast_info.currentmove != self->cast_info.move_crwalk)) + { // we should be ducking + self->cast_info.currentmove = self->cast_info.move_crwalk; + self->s.frame = self->cast_info.currentmove->firstframe; + } + + // if ducking, don't stand for at least 5 seconds after we stop + if (self->maxs[2] < self->cast_info.standing_max_z) + { + self->stand_if_idle_time = level.time + 5; + } + + tempgoal.active_node_data = level.node_data; + + if (fabs(self->s.angles[2]) > 1) + self->s.angles[2] *= 0.8; + else + self->s.angles[2] = 0; + + if (self->enemy && (self->enemy->health <= 0)) + { + self->enemy = NULL; + + if ( !(self->cast_info.aiflags & AI_TAKE_COVER) + && !(self->goal_ent) + && (self->cast_info.currentmove->frame->aifunc == ai_stand) + && (self->start_ent) + && (VectorDistance( self->s.origin, self->start_ent->s.origin) > 256)) + { // go back to the start pos if we're not doing anything + self->goal_ent = self->start_ent; + } + } + + if (self->leader && (self->leader->health <= 0)) + self->leader = NULL; + + if (!self->groundentity) + { + if (self->cast_info.move_jump && self->cast_info.currentmove != self->cast_info.move_jump) + self->cast_info.currentmove = self->cast_info.move_jump; + + return; + } + + if (self->leader && (!self->leader->active_node_data || (self->leader->waterlevel > 1))) + { // don't move + self->cast_info.currentmove = self->cast_info.move_stand; + + return; + } + + // if we've been told to stand put, only attack under special conditions + if ( (self->leader) + && (self->cast_info.aiflags & AI_HOLD_POSITION) + && (!(self->cast_info.aiflags & AI_MELEE) || !self->enemy || (VectorDistance(self->s.origin, self->enemy->s.origin) > 96))) + { + // if running away, let us go + if ( !(self->cast_info.aiflags & AI_TAKE_COVER) + && (VectorDistance( self->s.origin, self->holdpos_ent->s.origin ) < AI_GUARDING_DIST) + && (self->pain_debounce_time < (level.time - 2))) // Ridah, 20-may-99, added this so hired guy's don't stand around while being shot at + { + self->cast_info.currentmove = self->cast_info.move_stand; + self->s.frame = self->cast_info.currentmove->firstframe; + self->cast_info.pausetime = level.time + 1.0; + + return; + } + } + + if (self->cast_info.aiflags & AI_SKILL_LADDER) + { + + if (self->groundentity) + self->cast_info.aiflags &= ~AI_SKILL_LADDER; + else + return; + } + else + { + self->flags &= ~FL_FLY; + } + + if ((self->cast_info.aiflags & AI_HOLD_POSITION) && !self->enemy) + { + // Ridah, 6-jun-99, Friendly's should avoid grenades when staying put, then come back + if (!(self->cast_info.aiflags & AI_TAKE_COVER) || !(self->cover_ent) || (self->cover_ent->svflags & SVF_MONSTER)) + { // we aren't avoiding anything + + if (VectorDistance( self->s.origin, self->holdpos_ent->s.origin ) < AI_GUARDING_DIST) + { + // make sure they stop taking cover + self->cast_info.aiflags &= ~AI_TAKE_COVER; + self->cover_ent = NULL; + + self->cast_info.currentmove = self->cast_info.move_stand; + self->s.frame = self->cast_info.currentmove->firstframe; + + return; + } + else // run to our hold position + { + goal = &self->holdpos_ent; + ideal_dist = AI_GUARDING_DIST; + goto got_goal; + } + } + else // we are running away from something dangerous, we should return afterwards + { + } + } + + if (self->cast_info.pausetime > level.time) + { + + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + if (self->groundentity && self->groundentity->use && !VectorCompare(self->groundentity->velocity, vec3_origin)) + { // standing on a plat that's moving + self->cast_info.pausetime = level.time + 0.5; + self->cast_info.currentmove = self->cast_info.move_stand; + + } + + // see if we should wait for a lift or door + if (self->target_ent) + { + if ( !VectorCompare(self->target_ent->velocity, vec3_origin) ) + { // it's moving, hang around + self->cast_info.currentmove = self->cast_info.move_stand; + self->cast_info.pausetime = level.time + 0.2; + return; + } + else if (self->target_ent->nextthink > level.time + 0.1) + { // it's not moving, and isn't about to start moving, so stop checking it + self->target_ent = NULL; + } + } + + //=================================================================================== + // + // Select a "goal" + goal = &self->leader; + ideal_dist = AI_GUARDING_DIST; + + if ( (*goal) + && (AI_TooClose(self, self->leader))) + { // always get out of leader's way + avoiding = true; + goto got_goal; + } + + if (*goal && VectorDistance( self->s.origin, (*goal)->s.origin ) > 384) + { + self->cast_info.aiflags |= AI_RUN_LIKE_HELL; + } + + if (*goal && (*goal)->groundentity && (*goal)->groundentity->use) + { + if (!(*goal)->velocity[0] && !(*goal)->velocity[1]) + { // standing still + ideal_dist = AI_TOO_CLOSE_DIST; + + goto got_goal; + } + else // it's moving, so we should wait + { + self->cast_info.pausetime = level.time + 0.2; + self->target_ent = (*goal)->groundentity; + + self->cast_info.currentmove = self->cast_info.move_stand; + + + return; + } + } + // if our leader has recently issued a followme, and is far away, go to them + else if (*goal && ((*goal)->order == ORDER_FOLLOWME) && ((*goal)->order_timestamp > (level.time - 20)) + && (((*goal)->order_timestamp > (level.time - 5)) || (VectorDistance((*goal)->s.origin, self->s.origin) > 256))) + { // abort attack + goto got_goal; + } + +enemy_again: + + if (self->enemy || (self->combat_goalent && self->cover_ent)) + { + cast_memory_t *mem; + edict_t **enemy; + + // find out what we're going for + if (self->enemy) + { + enemy = &self->enemy; + + if (!AI_HasLeaderButGoForEnemy(self, self->enemy)) + { + self->enemy = NULL; + goto enemy_again; + } + } + else + { + enemy = &self->cover_ent; + } + + // make sure we run + if (self->maxs[2] == self->cast_info.standing_max_z) + self->cast_info.currentmove = self->cast_info.move_run; + + // make sure we can see them, or have recently seen them + if ((*enemy)->svflags & SVF_MONSTER || (*enemy)->client) + { + // if no memory, stop them being our enemy + if (!(mem = level.global_cast_memory[self->character_index][(*enemy)->character_index])) + { + (*enemy) = NULL; + goto enemy_again; + } + + if ( ((!self->combat_goalent) || (self->combat_goalent->think != CheckStillHiding)) + && ((*enemy)->client && ((*enemy)->light_level <= 30)) + && (mem->timestamp < (level.time - 5))) + { // go for the last sighted position + + // DEMO HACK: send Bernie to Louie if he's alive (drastic times call for drastic measures) + if ( (level.episode == EP_SKIDROW) + && (self->name_index == NAME_ARNOLD)) + { + edict_t *louie; + route_t route; + + louie = EP_GetCharacter( NAME_LOUIE ); + + // if they're near Louie, better go protect him + if ( (louie) + && (louie->health > 0) + && ( !NAV_Route_EntityToEntity((*enemy), NULL, louie, VIS_PARTIAL, false, &route) + || (route.dist < 3000))) + { + self->goal_ent = louie; + (*enemy) = NULL; + louie->cast_info.aiflags |= AI_GOALENT_MANUAL_CLEAR; + + goto gonetolouie; + } + } + // done DEMO HACK + + + memset( &tempent, 0, sizeof(edict_t) ); + tempent.active_node_data = level.node_data; + + VectorCopy( mem->last_known_origin, tempent.s.origin ); + ptempent = &tempent; + goal = &ptempent; + VectorCopy( (*enemy)->maxs, tempent.maxs ); + VectorCopy( (*enemy)->mins, tempent.mins ); + + if ((VectorDistance(self->s.origin, (*goal)->s.origin) < 128) && AI_ClearSight( self, (*goal), false )) + { + (*enemy) = NULL; + goto enemy_again; + } + +gonetolouie: + + goto got_goal; + } + } + + goal = &(*enemy); + ideal_dist = AI_GUARDING_DIST; + + if ( self->combat_goalent + && (self->combat_goalent->inuse || (self->combat_goalent = NULL))) // clear it if it's been freed + { + goal = &self->combat_goalent; + + ideal_dist = 16; // get really close + + // if we're right infront of our enemy, abort + if ( (self->enemy) + && !(self->cast_info.aiflags & AI_GOAL_IGNOREENEMY) // Ridah, 17-mar-99, fixes Jesus not going to threshold_target + && (VectorDistance( self->s.origin, self->enemy->s.origin ) < 128) + && (infront( self, self->enemy )) + && (self->last_getcombatpos < (level.time - 3)) + && (AI_ClearSight( self->enemy, self, false ))) + { // abort + self->combat_goalent = NULL; + self->cast_info.aiflags &= ~AI_TAKE_COVER; + goto enemy_again; + } + + if ( !(self->cast_info.aiflags & AI_MELEE) + && !(self->cast_info.aiflags & AI_GOAL_IGNOREENEMY) // Ridah, 17-mar-99, fixes Jesus not going to threshold_target + && !(self->cast_info.aiflags & AI_TAKE_COVER) + && ((*goal)->think == G_FreeEdict) + && AI_ClearSight(self, (*enemy), true)) + { + if (self->cast_info.checkattack(self)) + { + self->combat_goalent = NULL; + return; // this character has started an attack, and doesn't want to move any further + } + } + + if ( (self->cast_info.aiflags & AI_TAKE_COVER) + && (AI_ClearSight((*enemy), *goal, false))) + { // abort it + self->cast_info.aiflags &= ~AI_TAKE_COVER; + self->combat_goalent = NULL; + self->dont_takecover_time = level.time + 10; + goto enemy_again; + } + + } + else if (self->cast_info.checkattack) + { // do a character specific check for beginning an attack + + if (AI_CheckTakeCover(self)) + { + // taking cover +// goto (*enemy)_again; + self->goalentity = NULL; + self->wait = -1; + return; + } + else if (AI_ClearSight(self, (*goal), true)) + { + if (self->cast_info.checkattack(self)) + { + self->dont_takecover_time = level.time + 5; // attack for at least a few seconds + return; // this character has started an attack, and doesn't want to move any further + } + } + else if (self->last_getcombatpos < (level.time - 2)) + { // look for a good combat position + float *pos; + + if (pos = NAV_GetCombatPos( self, (*goal), self->cast_info.aiflags & AI_MELEE )) + { + edict_t *combatent; + + combatent = G_Spawn(); + VectorCopy( pos, combatent->s.origin ); + + self->cast_info.aiflags &= ~AI_GOAL_IGNOREENEMY; + self->cast_info.aiflags &= ~AI_TAKE_COVER; + + self->combat_goalent = combatent; + combatent->cast_info.aiflags |= AI_GOAL_RUN; + + combatent->think = G_FreeEdict; + combatent->nextthink = level.time + 5; // give us some time to get there + + // go for it this frame + goto enemy_again; + } + } + + } + } + else + { // look for things to be hostile at + if ((self->s.frame == self->cast_info.currentmove->firstframe) && AI_FindTarget (self)) + goto enemy_again; + } + + + // If guarding something, and we've moved out of range, abort the pursuit + if (self->guard_ent) + { + if (!(*goal)) + { // if not doing anything else, return to the guard_ent + if ( (VectorDistance( self->s.origin, self->guard_ent->s.origin ) > self->guard_ent->guard_radius) + || (!AI_ClearSight(self, self->guard_ent, false))) +// if (VectorDistance( self->s.origin, self->guard_ent->s.origin ) > AI_GUARDING_DIST) + { + goal = &self->guard_ent; + ideal_dist = AI_GUARDING_DIST; + } + } + else if ( (VectorDistance( self->s.origin, self->guard_ent->s.origin ) > self->guard_ent->guard_radius) + && (!gi.inPVS(self->s.origin, self->guard_ent->s.origin)) + && (!self->enemy || !AI_ClearSight(self, self->enemy, false))) // don't go back if we can see our enemy + { + cast_memory_t *mem; + + // always abort an enemy if it exists + if (self->enemy) + { + mem = level.global_cast_memory[self->character_index][self->enemy->character_index]; + + if (mem) + { + mem->ignore_time = level.time + ENEMY_SIGHT_DURATION + 0.2; // ignore them for a bit + } + + self->enemy = NULL; + } + + goal = &self->guard_ent; + ideal_dist = AI_GUARDING_DIST; + } + } + +got_goal: + + // Ridah, 17-may-99, fixes Jesus not going to threshold_target + if ((!(*goal) || (self->cast_info.aiflags & AI_GOAL_IGNOREENEMY)) && self->goal_ent) + { + goal = &self->goal_ent; + + if ((*goal)->solid == SOLID_TRIGGER) + ideal_dist = 0; + else if ((*goal)->dmg_radius) + ideal_dist = (*goal)->dmg_radius; + else + ideal_dist = 128; + } + + // should we press a button? + if (self->activator) + { + if (self->activator->moveinfo.state != STATE_BOTTOM) + { // button has been pressed (probably by someone else) + self->activator = NULL; + } + else // go for the button + { + goal = &self->activator; + ideal_dist = 0; + } + } + + + //=================================================================================== + // + // move towards this "goal" + + // always run to our attacker if on fire + if ((self->onfiretime > 0) && (self->onfireent)) + { + goal = &self->onfireent; + ideal_dist = 64; + } + + self->last_goal = *goal; + + if (!(*goal)) + { // we don't have a goal, time for a beer + + self->cast_info.currentmove = self->cast_info.move_stand; + + return; + + } + else // we have a "goal" + { + + // if it's our leader, make sure they are still reachable (not on a platform) + + if ( ((*goal) == self->leader) + && ((*goal)->groundentity) + && ((*goal)->groundentity->use) + && (!VectorCompare((*goal)->groundentity->velocity, vec3_origin))) + { + // They're on a lift, so hang around for a bit + self->cast_info.pausetime = level.time + 2; + self->cast_info.currentmove = self->cast_info.move_stand; + self->s.frame = self->cast_info.currentmove->firstframe; + + + return; + } + + // handle ->goal_ent specially + else if ((goal == &self->goal_ent) || (goal == &self->combat_goalent) || ((goal == &self->leader) && !avoiding)) + { + float goal_dist; + + goal_dist = VectorDistance( self->s.origin, (*goal)->s.origin ); + + // Make sure we are running if we should be + if (self->maxs[2] == self->cast_info.standing_max_z) + { + if (self->cast_info.move_runwalk && (goal == &self->leader) && (goal_dist < 256)) + { + if (self->cast_info.currentmove != self->cast_info.move_runwalk) + { + self->cast_info.currentmove = self->cast_info.move_runwalk; + self->s.frame = self->cast_info.currentmove->firstframe; + self->cast_info.aiflags &= ~AI_RUN_LIKE_HELL; + } + } + else if (((*goal) == self->enemy) || ((*goal)->cast_info.aiflags & AI_GOAL_RUN) /*&& (goal_dist > ideal_dist*2)*/) + { + self->cast_info.currentmove = self->cast_info.move_run; + } + else if (self->cast_info.move_runwalk) + { + self->cast_info.currentmove = self->cast_info.move_runwalk; + self->cast_info.aiflags &= ~AI_RUN_LIKE_HELL; + } + } + + // should we stop moving? + + if ((*goal)->solid != SOLID_TRIGGER) + { // we can't touch it, so just get close to it + + if (goal_dist < ideal_dist) // FIXME: make this configurable? + { + + if ( (goal != &self->leader) + || ( ((*goal)->client == NULL && (*goal)->cast_info.currentmove->frame->aifunc == ai_stand) + || ((*goal)->client != NULL && VectorLength((*goal)->velocity) < 50))) + { + self->cast_info.currentmove = self->cast_info.move_stand; + + + if ((goal == &self->goal_ent) && !(self->goal_ent->cast_info.aiflags & AI_GOALENT_MANUAL_CLEAR)) + { + self->goal_ent = NULL; // we made it there + } + + if (goal == &self->combat_goalent) // we've reached it, so clear it out + { + + if (!(self->cast_info.aiflags & AI_TAKE_COVER)) + { + self->combat_goalent = NULL; + } + + } + else if ((*goal) == self->start_ent && (*goal) == self->goal_ent) + { + self->goal_ent->cast_info.aiflags &= ~AI_GOAL_RUN; + self->goal_ent = NULL; + } + + return; + } + + } + else + { + if ( ((*goal)->solid != SOLID_BBOX) + && (VectorDistance( self->s.origin, (*goal)->s.origin ) < 64) + && (!ValidBoxAtLoc( (*goal)->s.origin, self->mins, self->maxs, self, MASK_PLAYERSOLID ))) + { // we can't get there + self->cast_info.aiflags &= ~AI_TAKE_COVER; + *goal = NULL; + return; + } + } + + } + + // is it dangerous to go for it? + else if ( (self->enemy) + && !(self->cast_info.aiflags & AI_GOAL_IGNOREENEMY) // Ridah, 17-mar-99, fixes Jesus not going to threshold_target + && ((*goal)->touch == path_corner_cast_touch) + && ( (VectorDistance( self->enemy->s.origin, (*goal)->s.origin ) < 256) + || ( (VectorDistance( self->enemy->s.origin, self->s.origin ) < 512) + && (infront(self->enemy, self))))) + { // simulate touching the path_corner + (*goal)->touch( (*goal), self, NULL, NULL ); + return; + } + + // can we walk straight towards it? + else if ( (goal_dist < ideal_dist*2) + && (NAV_Visible( self->s.origin, (*goal)->s.origin, VIS_PARTIAL, self->maxs[2] < self->cast_info.standing_max_z )) + && (NAV_Reachable( self->s.origin, (*goal)->s.origin, (byte)self->waterlevel, (byte)(*goal)->waterlevel, (self->maxs[2] < self->cast_info.standing_max_z), REACHABLE_POOR ))) + { + self->nav_data.cache_node = -1; + self->nav_data.goal_index = 0; + + if (goal_dist < ideal_dist/2) + { + if ((*goal)->target && ((*goal)->touch == path_corner_cast_touch)) + { // simulate touching the path_corner + (*goal)->touch( (*goal), self, NULL, NULL ); + } + else + { + if (!strcmp( (*goal)->classname, "cast_origin" )) + { + goal = NULL; + } + + self->cast_info.currentmove = self->cast_info.move_stand; + + return; + } + } + } + +// NAV_DrawLine( self->s.origin, (*goal)->s.origin ); + } + + else if (goal == &self->guard_ent) + { + // just walk back there + if ( (self->maxs[2] == self->cast_info.standing_max_z) + && (self->cast_info.currentmove == self->cast_info.move_run)) + { + self->cast_info.currentmove = self->cast_info.move_runwalk; + } + } + } + + // are we within the ideal range of our goal? + + if ( ((*goal) != self->enemy) + && !((*goal)->touch) + && (ideal_dist > 0.1) + && ((goaldist = VectorDistance (self->s.origin, (*goal)->s.origin)) < ideal_dist) + && NAV_Visible( self->s.origin, (*goal)->s.origin, VIS_LINE, self->maxs[2] < self->cast_info.standing_max_z )) +// && AI_ClearSight(self, (*goal))) + { + self->cast_info.aiflags &= ~AI_IGNORE_ENEMY; + + if ( (!self->leader || ((*goal) != self->leader->moveout_ent)) + + && ( ((*goal) != self->leader) + || (!(*goal)->groundentity) + || (!(*goal)->groundentity->use) + || (!VectorCompare((*goal)->velocity, vec3_origin))) + + && ( (AI_FollowLeader(self, (*goal)) // if they are on a lift, and trying to move, we should avoid them, otherwise stay real close + && ( !((*goal)->groundentity) + || !((*goal)->groundentity->use) + || !VectorCompare((*goal)->velocity, vec3_origin))))) + { // move back, away from goal + + VectorSubtract(self->s.origin, (*goal)->s.origin, vec); + + VectorNormalize2(vec, vec); + VectorScale(vec, 64, vec); + VectorAdd(self->s.origin, vec, tempgoal.s.origin); + + AI_movetogoal(self, &tempgoal, dist); + + return; + } + + self->cast_info.currentmove = self->cast_info.move_stand; + + return; + } + + + // Check for fast running (same as player) + + // Ridah, if the guy is a friendly, and he's hurt, don't run as fast + if (self->cast_group != 1 || self->health > self->max_health/2) + { + if (((*goal)->client || ((*goal)->svflags & SVF_MONSTER)) || ((*goal)->cast_info.aiflags & AI_RUN_LIKE_HELL)) + { + + if (self->cast_info.aiflags & AI_RUN_LIKE_HELL) + { + dist*=2.5; + if (dist > 32) + dist = 32; // Ridah, they can run through walls if more than this + } + + // RAFAEL 30-DEC-98 + if (self->cast_info.aiflags & AI_RUSH_THE_PLAYER) + { + dist*=2.5; + if (dist > 32) + dist = 32; + } + + } + } + + // need to put this here because the dist for new models are > 32 + if (dist > 32) + dist = 32; + + + //=================================================================================== + // + // We need to move somewhere + + tempgoal.nav_data.goal_index = self->nav_data.goal_index; + + goal_node = NULL; + + // find a path to the player + if (self->nav_data.goal_index > 0) + { + goal_node = level.node_data->nodes[self->nav_data.goal_index-1]; + rval = ROUTE_INDIRECT; + } + else + { + + rval = NAV_Route_EntityToEntity(self, goal_node, (*goal), VIS_PARTIAL, false, &route); + + // update current node + self->nav_data.goal_index = tempgoal.nav_data.goal_index = route.path+1; + + if (rval == ROUTE_INDIRECT) + { + goal_node = level.node_data->nodes[self->nav_data.goal_index-1]; + + // is it a crouching node? + if (goal_node->node_type & NODE_DUCKING) + { + if (self->maxs[2] > DUCKING_MAX_Z) + { + if (self->cast_info.move_crouch_down) + self->cast_info.currentmove = self->cast_info.move_crouch_down; + self->maxs[2] = DUCKING_MAX_Z; + + return; + } + } + + // allow 5 seconds to reach the new target + self->wait = level.time + 5; + } + else if (rval == ROUTE_DIRECT) + { +// Disabled this, if we have a direct route, then we don't need to change this +/* + if (((*goal)->solid == SOLID_BBOX) && ((*goal)->maxs[2] < (*goal)->cast_info.standing_max_z) && (self->maxs[2] > DUCKING_MAX_Z)) + { + if (self->cast_info.move_crouch_down) + self->cast_info.currentmove = self->cast_info.move_crouch_down; + self->maxs[2] = DUCKING_MAX_Z; + + return; + } +*/ + self->wait = level.time + 3.5; + } + } + + + self->last_rval = rval; + + + if (!rval) + { // no route + int max_cnt=50; + + if ((goal != &self->enemy) || !(self->cast_info.aiflags & AI_MELEE) || (self->cast_info.aiflags & AI_NO_TAKE_COVER)) + { // resort to id's movement code (YUCK!) + self->goalentity = (*goal); + M_MoveToGoal (self, dist); + } + else // hide until we can reach them again + { + AI_ForceTakeCover( self, self->enemy, true ); + self->cast_info.aiflags &= ~AI_TAKECOVER_IGNOREHEALTH; + } + + if (nav_aipath->value && (*goal)) + { + gi.dprintf( "%s", self->classname ); + if (self->name) + gi.dprintf( " (%s)", self->name ); + gi.dprintf( " has no route to %s\n", self->classname, (*goal)->classname ); + } + + if (gi.inPVS( g_edicts[1].s.origin, self->s.origin )) + { + max_cnt = 5; + } + + if (self->noroute_count++ > max_cnt) // keep trying for some time + { + if (/*(*goal) ==*/ self->enemy) // don't bother going for them if there isn't a route + { + self->combat_goalent = NULL; + AI_ForceTakeCover( self, self->enemy, false ); + +// if (self->cast_info.aiflags & AI_TAKE_COVER) + return; + } + else if (self->combat_goalent && (*goal) == self->combat_goalent) + { + self->combat_goalent = NULL; + return; + } + + // stop going for whatever we were going for + self->cast_info.pausetime = level.time + 2; + self->cast_info.currentmove = self->cast_info.move_stand; + self->s.frame = self->cast_info.currentmove->firstframe; + + return; + } + + goto done; + + } + else + { + self->noroute_count = 0; + } + + // successfully found a route + + if (rval == ROUTE_DIRECT) + { // we can reach the "goal" directly + float goal_dist; + + goal_dist = VectorDistance( self->s.origin, (*goal)->s.origin ); + + if (goal_dist < dist) + dist = goal_dist; + + self->goalentity = (*goal); + AI_movetogoal(self, (*goal), dist); + + if (!(*goal)) // it's been cleared somewhere + return; + + if (nav_aipath->value) + { + NAV_DrawLine( self->s.origin, (*goal)->s.origin ); + } + + goto done; + } + + // indirect route + +// ============================================================================================= + +// FIXME: if goal is a character, and we are not within gi.PHS() or gi.PVS(), then we can't +// follow them, since we can't see or hear them. Therefore, we should either go to their last +// sighted position, or give up on them. + +// ============================================================================================= + + VectorCopy(goal_node->origin, tempgoal.s.origin); + tempgoal.s.origin[2] = self->s.origin[2]; + len = VectorDistance(self->s.origin, tempgoal.s.origin); + tempgoal.s.origin[2] = goal_node->origin[2]; + + if (len <= dist*1.2) + { // reached the waypoint + reached_goal = true; + dist = len; + } + + if (nav_aipath->value) + { + NAV_DrawLine( self->s.origin, tempgoal.s.origin ); + NAV_Debug_DrawPath( &tempgoal, (*goal) ); + } + + //=================================================================================== + // + // are we about to reach the "goal"? + + if (reached_goal) + { + + // should we JUMP? + + if (goal_node->node_type & NODE_JUMP) + { + + // do we really want to jump here? + if ( (NAV_Route_NodeToEntity(goal_node, (*goal), VIS_PARTIAL, &route) == ROUTE_INDIRECT) + && (route.path == goal_node->goal_index)) + { + + if ((level.node_data->nodes[goal_node->goal_index]->origin[2] - 54) > goal_node->origin[2]) + { // must be a ladder + + + // note to Ryan jun-07-99 + // The dogs can go up and down ladders. Can this be stopped? + + // move us to the ladder if possible, if not abort climbing + /* + if (ValidBoxAtLoc( tempgoal.s.origin, self->mins, self->maxs, self, MASK_PLAYERSOLID )) + { + VectorCopy( tempgoal.s.origin, self->s.origin ); + + self->s.angles[YAW] = self->ideal_yaw = (float) goal_node->yaw; + self->cast_info.aiflags |= AI_SKILL_LADDER; + self->nav_data.goal_index = route.path+1; + AI_climb (self); + + if (self->cast_info.move_start_climb) + self->cast_info.currentmove = self->cast_info.move_start_climb; + } + else // abort running for a bit + { + self->cast_info.currentmove = self->cast_info.move_stand; + self->cast_info.pausetime = level.time + 1.0; + self->nav_data.goal_index = 0; + + return; + } + */ + + if ((self->gender) && ValidBoxAtLoc( tempgoal.s.origin, self->mins, self->maxs, self, MASK_PLAYERSOLID )) + { + VectorCopy( tempgoal.s.origin, self->s.origin ); + + self->s.angles[YAW] = self->ideal_yaw = (float) goal_node->yaw; + self->cast_info.aiflags |= AI_SKILL_LADDER; + self->nav_data.goal_index = route.path+1; + AI_climb (self); + + if (self->cast_info.move_start_climb) + self->cast_info.currentmove = self->cast_info.move_start_climb; + } + else // abort running for a bit + { + self->cast_info.currentmove = self->cast_info.move_stand; + self->cast_info.pausetime = level.time + 1.0; + self->nav_data.goal_index = 0; + + return; + } + + } + else // normal jump + { + vec3_t neworg; + float speed; + + self->flags &= ~FL_FLY; + + VectorSubtract(level.node_data->nodes[goal_node->goal_index]->origin, goal_node->origin, vec); + VectorNormalize2(vec, vec); + self->s.angles[YAW] = vectoyaw(vec); + + if ((speed = VectorLength(goal_node->jump_vel)) > 250) + { + vec3_t vec; + float length; + + AI_jump (self, 200); + + VectorCopy(goal_node->jump_vel, vec); + + self->velocity[2] = 0; + vec[2] = 0; + + length = VectorLength( vec ); + + if (length < 20) + { + VectorNormalize( vec ); + VectorScale( vec, 20, vec ); + + goal_node->jump_vel[0] = vec[0]; + goal_node->jump_vel[1] = vec[1]; + + level.node_data->modified = true; + } + else + { + VectorNormalize( self->velocity ); + VectorScale( self->velocity, length, self->velocity ); + } + + self->velocity[2] = goal_node->jump_vel[2]; + + if (goal_node->jump_vel[2] > 200) + self->velocity[2] = 300; + else if (goal_node->jump_vel[2] < 180) + self->velocity[2] = 180; + } + else + { + AI_jump (self, 200); + self->velocity[2] = 200; + } + + VectorCopy(self->s.origin, neworg); + neworg[2] += 1; + if (ValidBoxAtLoc(neworg, self->mins, self->maxs, self, MASK_PLAYERSOLID)) + self->s.origin[2] += 1; + + self->groundentity = NULL; + + if (self->cast_info.move_jump) + self->cast_info.currentmove = self->cast_info.move_jump; + + // we need a way of playing character specific jump sounds + //gi.sound(self, CHAN_VOICE, gi.soundindex("*jump1.wav"), 0.8, ATTN_NORM, 0); + + gi.linkentity(self); + } + + self->nav_data.goal_index = goal_node->goal_index + 1; + reached_goal = false; + + goto done; + } + + } + + } + + //=================================================================================== + // + // Perform the move towards the goal node + + VectorCopy(self->s.origin, oldorg); + + // move towards the node + moved = AI_movetogoal(self, &tempgoal, dist); + + //................................................................................... + // Evaluate the move + + // did we get closer? + if (moved) + { + self->moveinfo.wait = level.time + 0.4; + } + else if ( (self->moveinfo.wait < level.time) + || (self->wait < level.time) + || (!ValidBoxAtLoc( tempgoal.s.origin, self->mins, self->maxs, self, MASK_PLAYERSOLID))) + { // abort this node, we've been trying to get to it for long enough + + goal_node->ignore_time = level.time + 3; + self->nav_data.cache_node = -1; + self->moveinfo.wait = level.time + 0.7; // give some time on the next node + self->wait = level.time + 3; + self->nav_data.goal_index = 0; + reached_goal = false; + + } + else // will a jump be useful here? + { + if ((self->s.origin[2] + 16 < (&tempgoal)->s.origin[2])) + { + vec3_t start, mins, dir, org; + trace_t trace; + + VectorCopy(self->s.origin, start); + + AngleVectors(self->s.angles, dir, NULL, NULL); + VectorScale(dir, 32, dir); + VectorAdd(start, dir, org); + + VectorCopy(self->mins, mins); + mins[2] += 8; + + trace = gi.trace(start, mins, self->maxs, org, self, MASK_PLAYERSOLID); + + if ((trace.fraction < 1) && !(trace.ent->svflags & SVF_MONSTER) && (fabs(trace.plane.normal[2]) < 0.1)) + { + // set ideal velocity + dir[2] = 310; + + // see if clear at head + start[2] += 32; + org[2] += 32; + + trace = gi.trace(start, NULL, NULL, org, self, MASK_SOLID); + + if (trace.fraction == 1) + { // safe to jump + AI_jump (self, 150); + self->velocity[2] += 100; + + if (self->cast_info.move_jump) + self->cast_info.currentmove = self->cast_info.move_jump; + } + } + } + } + +done: + + if ( (self->maxs[2] < self->cast_info.standing_max_z) + && ( (goal_node && !(goal_node->node_type & NODE_DUCKING)) + || (rval == ROUTE_DIRECT))) + { // we should return to standing, if possible + trace_t tr; + + self->maxs[2] = self->cast_info.standing_max_z; + tr = gi.trace(self->s.origin, self->mins, self->maxs, self->s.origin, self, MASK_PLAYERSOLID); + if ( tr.startsolid + || (goal_node && !NAV_Visible( self->s.origin, goal_node->origin, VIS_PARTIAL, false )) + || ((rval == ROUTE_DIRECT) && (*goal) && !NAV_Visible( self->s.origin, (*goal)->s.origin, VIS_PARTIAL, false ))) + { // can't safely stand + self->maxs[2] = DUCKING_MAX_Z; + } + else if (self->cast_info.move_stand_up) // ok to stand + { +//gi.dprintf("2\n"); + self->cast_info.currentmove = self->cast_info.move_stand_up; + self->s.frame = self->cast_info.currentmove->firstframe; + return; + } + else + { + self->cast_info.currentmove = self->cast_info.move_run; + } + } + + if (reached_goal) + { + + // press a button? + if ( (goal_node->node_type & NODE_BUTTON) + && (goal_node->goal_ent) + && ((goal_node->goal_ent->timestamp < (level.time - 4)) || (goal_node->goal_ent->activator != self)) + && (goal_node->goal_ent->use)) + { // simulate touching it + goal_node->goal_ent->use( goal_node->goal_ent, self, self ); + + self->cast_info.pausetime = level.time + 2; // wait for it to do something + + // walk backwards + self->cast_info.currentmove = self->cast_info.move_avoid_reverse_walk; + self->ideal_yaw = (float)goal_node->yaw; // don't turn + + self->activator = NULL; // stop going for a button + + return; + } + + if ( (goal_node->node_type & NODE_PLAT) + && (self->groundentity == goal_node->goal_ent) + && (VectorCompare( self->groundentity->velocity, vec3_origin ))) + { + // we're standing on it, so trigger it + if (self->groundentity->targetname) + { + edict_t *btn=NULL, *btn2=NULL; + char *targetname; + + targetname = self->groundentity->targetname; + + while (btn = G_Find( btn, FOFS( target ), targetname )) + { + if (!strcmp(btn->classname, "trigger_relay") && btn->targetname) + { // check this target + + btn2 = NULL; + while (btn2 = G_Find( btn2, FOFS( target ), btn->targetname )) + { + if (fabs( btn2->absmin[2] - self->s.origin[2] ) < 64) + { + btn2->use( btn2, self, self ); + break; + } + } + } + else if (btn->solid == SOLID_BSP) + { + if (fabs( btn->absmin[2] - self->s.origin[2] ) < 64) + { + btn->use( btn, self, self ); + break; + } + } + } + } + else + { + self->groundentity->use( self->groundentity, self, self ); + } + + return; + } + + if (!(*goal)) + { // it's been cleared + return; + } + + // find the next waypoint + rval = NAV_Route_EntityToEntity( self, goal_node, (*goal), VIS_PARTIAL, false, &route); + + self->nav_data.goal_index = tempgoal.nav_data.goal_index = route.path+1; + + if (rval == ROUTE_INDIRECT) + { + int i, temp_rval, rval2; + node_t *temp_node; + + // check for a plat along the route that's not ready + temp_node = goal_node; + i = 0; + while ((temp_rval = NAV_Route_NodeToEntity( temp_node, (*goal), VIS_PARTIAL, &route)) && (i++ < 3)) + { + if (temp_rval == ROUTE_DIRECT) + break; + + temp_node = level.node_data->nodes[route.path]; + if (temp_node->node_type & NODE_PLAT) + { + if ( temp_node->goal_ent + && VectorCompare(temp_node->goal_ent->velocity, vec3_origin)) + { // platform is stationary + trace_t tr; + vec3_t src, dest; + + // make sure this lift will take us to the goal + if ( !(rval2 = NAV_Route_NodeToEntity( temp_node, (*goal), VIS_PARTIAL, &route)) + || (rval2 == ROUTE_DIRECT) + || (route.path != temp_node->goal_index)) + { + break; // we don't want to go on the lift + } + + // make sure it is waiting for us + + VectorCopy(temp_node->origin, dest); + dest[2] -= 1; + VectorCopy(temp_node->origin, src); + src[2] += 1; + + tr = gi.trace(src, self->mins, self->maxs, dest, self, MASK_SOLID); + + if (!tr.startsolid && (tr.ent == temp_node->goal_ent) && (tr.fraction < 1)) + break; // cool, it's there waiting for us + + // hmm, it's not waiting, should we press a button for it to come back down? + if (temp_node->goal_ent->targetname) + { + edict_t *btn=NULL, *btn2=NULL; + char *targetname; + + targetname = temp_node->goal_ent->targetname; + + while (btn = G_Find( btn, FOFS( target ), targetname )) + { + if (!strcmp(btn->classname, "trigger_relay") && btn->targetname) + { // check this target + + btn2 = NULL; + while (btn2 = G_Find( btn2, FOFS( target ), btn->targetname )) + { + if (fabs( btn2->absmin[2] - self->s.origin[2] ) < 64) + { + btn2->use( btn2, self, self ); + break; + } + } + } + else if (btn->solid == SOLID_BSP) + { + if (fabs( btn->absmin[2] - self->s.origin[2] ) < 64) + { + btn->use( btn, self, self ); + break; + } + } + } + } + } + + // damn, route is broken, so hang around for a bit + self->cast_info.pausetime = level.time + 2; + + self->target_ent = temp_node->goal_ent; + self->cast_info.currentmove = self->cast_info.move_stand; + self->nav_data.goal_index = tempgoal.nav_data.goal_index = goal_node->index+1; // check again when done waiting + + return; + } + } + + self->wait = level.time + 3; + goal_node = level.node_data->nodes[self->nav_data.goal_index-1]; + + // is it a crouching node? + if (goal_node->node_type & NODE_DUCKING) + { + if (self->maxs[2] == self->cast_info.standing_max_z) + { + if (self->cast_info.move_crouch_down) + self->cast_info.currentmove = self->cast_info.move_crouch_down; + self->maxs[2] = DUCKING_MAX_Z; + } + } + + } + } + else if (goal_node && !(goal_node->node_type & NODE_DUCKING) && (self->maxs[2] < self->cast_info.standing_max_z)) + { // can we stand? + if (NAV_Visible( self->s.origin, goal_node->origin, VIS_PARTIAL, false )) + { + self->maxs[2] = self->cast_info.standing_max_z; + if (self->cast_info.move_stand_up) + { + self->cast_info.currentmove = self->cast_info.move_stand_up; + self->s.frame = self->cast_info.currentmove->firstframe; + return; + } + } + } + + self->goalentity = (*goal); +} + +void ai_runDOKEY (edict_t *self, float dist) +{ + AI_movetogoal(self, self->goal_ent, dist); +} diff --git a/gamesrc/G_AI.H b/gamesrc/G_AI.H new file mode 100644 index 0000000..a2076dc --- /dev/null +++ b/gamesrc/G_AI.H @@ -0,0 +1,221 @@ +// ************************************* +// New AI system defines + +#define MAX_CAST_GROUPS 16 +#define MAX_CHARACTERS 64 // this includes players +#define DEFAULT_MAX_ATTACK_DISTANCE 1024 // stand and attack enemies within this range +#define DEFAULT_MAX_SIGHTING_DISTANCE 2048 // can't see things outside this range + +#define FACE_ANIM_DIST 2048 // AI will play an animation to straighten while attacking if beyind this distance + +#define AI_NOT_HOLSTERED_RANGE_1 200 +#define AI_NOT_HOLSTERED_RANGE_2 384 +#define AI_NOT_HOLSTERED_RANGE_3 800 + +#define ENEMY_SIGHT_DURATION 3 // enemies sighted "less than this time" ago will be attacked + +#define SPAWNFLAG_IMMEDIATE_FOLLOW_PATH 32 + +// Cast Memory defines +#define NUM_MEMORY_TYPES 3 + +#define MEMORY_TYPE_FRIEND 0 +#define MEMORY_TYPE_NEUTRAL 1 +#define MEMORY_TYPE_ENEMY 2 + +// Pain orientation checks +#define ORIENTATION_CENTER 0 +#define ORIENTATION_LEFT 1 +#define ORIENTATION_RIGHT 2 + +// Player order commands +#define ORDER_MOVE 1 +#define ORDER_HOLD 2 +#define ORDER_FOLLOWME 3 + +// Side Trace +#define SIDE_RANDOM 0 +#define SIDE_RIGHT 1 +#define SIDE_LEFT -1 + +// General movement stuff +#define AI_TOO_CLOSE_DIST 48.0 +#define AI_GUARDING_DIST 140.0 + +// ai flags +#define AI_NOWALK_FACE 0x00000001 // don't walk when turning to face +#define AI_TEMP_STAND_GROUND 0x00000002 +#define AI_NO_TALK 0x00000004 // prevent this character from talking (good for waiting in ambush) +#define AI_GOAL_RUN 0x00000008 // set this for entities that the AI should run towards +#define AI_FACE_ATTACK 0x00000010 // always face the enemy when attacking +#define AI_MOVEOUT 0x00000020 +#define AI_MELEE 0x00000040 // this character can only do melee attacks +#define AI_GRENADE_GUY 0x00000080 +#define AI_DUCKATTACK 0x00000100 // only ducking for attack +#define AI_GOAL_IGNOREENEMY 0x00000200 +#define AI_NOSTEP 0x00000400 +#define AI_RELOAD 0x00000800 // need to reload before we can fire again +#define AI_TAKECOVER_IGNOREHEALTH 0x00001000 // don't do health checks to see if we should resume attacking +#define AI_GOALENT_MANUAL_CLEAR 0x00002000 // set this on the goal_ent if we should NOT set our ->goal_ent = NULL when we get there +#define AI_DOKEY 0x00004000 +#define AI_IMMORTAL 0x00008000 +#define AI_REPEAT_TALK_JESTURE 0x00010000 // keep making talking jesture +#define AI_SKILL_LADDER 0x00020000 +#define AI_HOLD_POSITION 0x00040000 +#define AI_TAKE_COVER 0x00080000 +#define AI_IGNORE_ENEMY 0x00100000 +#define AI_FASTWALK 0x00200000 // characters will WALK at twice the speed (including faster animation) +#define AI_PLAYERCLIP 0x00400000 // uses PLAYERCLIP bounding instead of MONSTERCLIP +#define AI_NO_TAKE_COVER 0x00800000 // don't take cover from anything +#define AI_ADJUSTPITCH 0x01000000 // used for dogs so they angle up for stairs, ramps, etc +#define AI_TALK 0x02000000 // stop "avoid walking" when we're facing the character +#define AI_SIDE_ATTACK 0x04000000 +#define AI_TURN_BLOCKED 0x08000000 +#define AI_RUN_LIKE_HELL 0x10000000 +#define AI_RUSH_THE_PLAYER 0x20000000 +#define AI_HEARD_GUN_SHOT 0x40000000 +#define AI_SIT_TALK 0x80000000 + + +typedef enum +{ + resp_yes, + resp_no +} response_t; + + +#define STATE_NORMAL 0 // each character does their own thing +#define STATE_FLEE 1 // abort attack, everyone flee +#define STATE_CHARGE 2 // berzerk at charge_ent + +// cast_group_t holds information relating to each team in the game, including fighting formations, etc + +typedef struct +{ + int state; + int charge_ent; // index into g_edicts[] +} cast_group_t; + +// Memory flags +#define MEMORY_PERSONAL_OPINION 0x00000001 // set this if we have a personal vendetta on the character, which is not necessarily that of the group +#define MEMORY_CONFIDENTIAL 0x00000002 // only share this information to a fellow group member, or under extreme conditions (like we are neutral and are bribed, or we are tortured) +#define MEMORY_HOSTILE_ENEMY 0x00000004 // attack upon sighting this character +#define MEMORY_ASSHOLE 0x00000008 // we don't like this person, but they're not an enemy (just effects speech) +#define MEMORY_LASTWARNING 0x00000010 // we want to give a final warning to the player before we become hostile +#define MEMORY_UPSET 0x00000020 // will use specific upset speech + +#define MEMORY_AFRAID 0x00000040 +#define MEMORY_TAUNT 0x00000080 +#define MEMORY_WARNED_BACKOFF 0x00000100 // we've warned this person to backoff already + +#define MEMORY_HIRE_FIRST_TIME 0x00000200 +#define MEMORY_HIRE_ASK 0x00000400 +#define MEMORY_HIRED 0x00000800 +#define MEMORY_NO_TALK 0x00001000 // don't talk to this person +#define MEMORY_STARTED_ATTACK 0x00002000 // so AI friends only attack enemies that are attacking (and not evading) + +// cast_memory_t stores a particular character's memory and opinion of another cast member, +// for which it is aware of (has either seen, or is associated with) +typedef struct cast_memory_s +{ + int cast_ent; // "other" character index in the g_edicts[] + + vec3_t last_known_origin; + int flags; // deafult to 0, set various flags under certain conditions + int memory_type; // one of MEMORY_TYPE_* constants, defines which cast_memory type this is in, for fast references + + float timestamp; // time that this information was updated + // (when gaining information from another character, + // this information is simply copied across, so we + // don't share information infinitely) + float timestamp_dist; // distance at last sighting + + float not_holstered_attack_time; + float ignore_time; // pretend we can't see them until this time + + byte inc; // this can be used for anything, like counting the times we've warned this person, etc + + void (*response)(edict_t *self, edict_t *other, response_t response); // when a player talks to us, call this response routine + + short last_known_closest_node; // so we can speed things up + + struct cast_memory_s + *next, *prev; +} cast_memory_t; + +// ************************************* + +// New Procedure defines + +// g_ai.c + +void ai_onfire_run( edict_t *self, float dist ); + +void ai_sidestep( edict_t *self, float dist); + +void AI_CheckEvade( edict_t *self ); + +qboolean AI_ClearSight ( edict_t *self, edict_t *other, qboolean boxtrace ); + +int AI_SideTrace( edict_t *self, float dist, float inyaw, int side ); +int AI_YawTrace( edict_t *self, float dist, float inyaw ); + +void AI_MoveToPlatCenter( edict_t *self, edict_t *plat); +qboolean AI_TooClose(edict_t *self, edict_t *goal); +void AI_CheckStillInair(edict_t *self); +qboolean AI_CheckAttack(edict_t *self); +void AI_StartAttack(edict_t *self, edict_t *enemy); + +void AI_StartRun( edict_t *self ); + +void AI_CheckStillClimbingLadder( edict_t *self ); + +void AI_EndAttack(edict_t *self); +void AI_EndJump(edict_t *self); +void AI_EndDeath(edict_t *self); +void AI_EndRun(edict_t *self); + +void AI_End_CrouchStand_Down(edict_t *self); +void AI_End_CrouchStand_Up(edict_t *self); + +int AI_GetOrientation( edict_t *self, edict_t *other ); +qboolean AI_CheckTalk( edict_t *self ); +void AI_TalkThink( edict_t *self, qboolean ismale ); + +qboolean ValidBoxAtLoc(vec3_t org, vec3_t mins, vec3_t maxs, edict_t *ignore, int mask); + +qboolean AI_CheckTakeCover( edict_t *self ); +qboolean AI_ForceTakeCover( edict_t *self, edict_t *enemy, qboolean ignorehealth ); + +// g_ai_fight.c + +qboolean AI_Goto_CombatTarget( edict_t *self ); +qboolean AI_BeginAttack( edict_t *self ); +qboolean AI_HasLeaderButGoForEnemy( edict_t *self, edict_t *enemy ); +void AI_CheckMakeEnemy( edict_t *self, edict_t *other ); +void AI_AvoidDangerousEntity( edict_t *ent ); + +// g_ai_memory.c + +qboolean AddCharacterToGame(edict_t *self); +void AI_RemoveFromMemory ( edict_t *self, cast_memory_t *memory ); +void AI_AddToMemory ( edict_t *self, cast_memory_t *memory, int memory_type ); +void AI_InitMemory( edict_t *self ); +void AI_UnloadCastMemory (edict_t *self); + +void AI_ShareEnemies ( edict_t *self, edict_t *other ); +void AI_RecordSighting(edict_t *src, edict_t *dest, float dist); +void AI_UpdateCharacterMemories( int max_iterations ); +void AI_MakeEnemy ( edict_t *self, edict_t *other, int memory_flags ); + +// g_ai_ents.c + +void AI_Ent_droptofloor ( edict_t *self ); +void ai_button_think (edict_t *self); +void ai_button_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf); + + + +qboolean directly_infront_angle (vec3_t ang1, edict_t *self, edict_t *other); + + diff --git a/gamesrc/G_CAST.C b/gamesrc/G_CAST.C new file mode 100644 index 0000000..bb0e22b --- /dev/null +++ b/gamesrc/G_CAST.C @@ -0,0 +1,1288 @@ +#include "g_local.h" + + +// +// cast weapons +// + +//FIXME cast members should call these with a totally accurate direction +// and we can mess it up based on skill. Spread should be for normal +// and we can tighten or loosen based on skill. We could muck with +// the damages too, but I'm not sure that's such a good idea. +void cast_fire_bullet (edict_t *self, vec3_t start, vec3_t dir, int damage, int kick, int hspread, int vspread, int flashtype) +{ + fire_bullet (self, start, dir, damage, kick, hspread, vspread, MOD_UNKNOWN); + + gi.WriteByte (svc_muzzleflash2); + gi.WriteShort (self - g_edicts); + gi.WriteByte (flashtype); + gi.multicast (start, MULTICAST_PVS); + +} + +void cast_fire_shotgun (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int kick, int hspread, int vspread, int count, int flashtype) +{ + fire_shotgun (self, start, aimdir, damage, kick, hspread, vspread, count, MOD_UNKNOWN); + + gi.WriteByte (svc_muzzleflash2); + gi.WriteShort (self - g_edicts); + gi.WriteByte (flashtype); + gi.multicast (start, MULTICAST_PVS); +} + +void cast_fire_blaster (edict_t *self, vec3_t start, vec3_t dir, int damage, int speed, int flashtype, int effect) +{ + fire_blaster (self, start, dir, damage, speed, effect, false); + + gi.WriteByte (svc_muzzleflash2); + gi.WriteShort (self - g_edicts); + gi.WriteByte (flashtype); + gi.multicast (start, MULTICAST_PVS); +} + +void cast_fire_grenade (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int speed, int flashtype) +{ + fire_grenade (self, start, aimdir, damage, speed, 2.5, damage+40); + + gi.WriteByte (svc_muzzleflash2); + gi.WriteShort (self - g_edicts); + gi.WriteByte (flashtype); + gi.multicast (start, MULTICAST_PVS); +} + +void cast_fire_rocket (edict_t *self, vec3_t start, vec3_t dir, int damage, int speed, int flashtype) +{ + fire_rocket (self, start, dir, damage, speed, damage+20, damage); + + gi.WriteByte (svc_muzzleflash2); + gi.WriteShort (self - g_edicts); + gi.WriteByte (flashtype); + gi.multicast (start, MULTICAST_PVS); +} + +void cast_fire_railgun (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int kick, int flashtype) +{ + fire_rail (self, start, aimdir, damage, kick); + + gi.WriteByte (svc_muzzleflash2); + gi.WriteShort (self - g_edicts); + gi.WriteByte (flashtype); + gi.multicast (start, MULTICAST_PVS); +} + +void cast_fire_bfg (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int speed, int kick, float damage_radius, int flashtype) +{ + fire_bfg (self, start, aimdir, damage, speed, damage_radius); + + gi.WriteByte (svc_muzzleflash2); + gi.WriteShort (self - g_edicts); + gi.WriteByte (flashtype); + gi.multicast (start, MULTICAST_PVS); +} + + + +// +// Cast utility functions +// + +static void M_FliesOff (edict_t *self) +{ + self->s.effects &= ~EF_FLIES; + self->s.sound = 0; +} + +static void M_FliesOn (edict_t *self) +{ + if (self->waterlevel) + return; + self->s.effects |= EF_FLIES; + self->s.sound = gi.soundindex ("infantry/inflies1.wav"); + self->think = M_FliesOff; + self->nextthink = level.time + 60; +} + +void M_FlyCheck (edict_t *self) +{ + if (self->waterlevel) + return; + + if (random() > 0.5) + return; + + self->think = M_FliesOn; + self->nextthink = level.time + 5 + 10 * random(); +} +/* +void AttackFinished (edict_t *self, float time) +{ + self->cast_info.attack_finished = level.time + time; +} +*/ + +void M_CheckGround (edict_t *ent) +{ + vec3_t point; + trace_t trace; + + if (ent->flags & (FL_SWIM|FL_FLY)) + return; + + if (ent->velocity[2] > 100) + { + ent->groundentity = NULL; + return; + } + +// if the hull point one-quarter unit down is solid the entity is on ground + point[0] = ent->s.origin[0]; + point[1] = ent->s.origin[1]; + point[2] = ent->s.origin[2] - 0.25; + + trace = gi.trace (ent->s.origin, ent->mins, ent->maxs, point, ent, MASK_PLAYERSOLID | MASK_MONSTERSOLID); + + // check steepness +// Xatrix/Ridah, make sure we hit something +if ( trace.fraction < 1 && !trace.allsolid ) +// Xatrix/Ridah, make sure we hit something + + if ( trace.plane.normal[2] < 0.5 && !trace.startsolid) + { + ent->groundentity = NULL; + +// Xatrix/Ridah, added this to help monsters slide off steep walls + VectorScale (trace.plane.normal, 200 * (trace.plane.normal[2] + 0.1), ent->velocity); + +// if (ent->velocity[2] < 120) +// ent->velocity[2] = 120; +// Xatrix/Ridah, added this to fix ladder climbing problem + + return; + } + +// Xatrix/Ridah, added this to fix ladder climbing problems + if ( trace.fraction == 1 ) + { + // if we're stuck in a solid, try and move out of it + if (trace.allsolid && ent->health > 0) + { + float x, y, z; + float dist; + vec3_t vec, dest; + + for (dist = 4; dist < 64; dist+= 24) + { + for (x=-1; x<2; x++) + for (y=-1; y<2; y++) + for (z=-1; z<2; z++) + { + VectorSet( vec, x, y, z ); + VectorNormalize( vec ); + VectorMA( ent->s.origin, dist, vec, dest ); + + trace = gi.trace (dest, ent->mins, ent->maxs, dest, ent, MASK_PLAYERSOLID | MASK_MONSTERSOLID); + + if (!trace.allsolid) + { + VectorCopy( dest, ent->s.origin ); + goto foundspot; + } + } + } + + } + +foundspot: + + ent->groundentity = NULL; + return; + } +// Xatrix/Ridah, end. + + // Ridah + if (trace.ent->svflags & SVF_MONSTER) + { + ent->groundentity = NULL; + return; + } + +// ent->groundentity = trace.ent; +// ent->groundentity_linkcount = trace.ent->linkcount; +// if (!trace.startsolid && !trace.allsolid) +// VectorCopy (trace.endpos, ent->s.origin); + + // JOSEPH 2-MAY-99 + // Xatrix/Ridah, make sure we hit something + if ( trace.fraction < 1 ) + { + // Xatrix/Ridah, make sure we hit something + if (!trace.startsolid && !trace.allsolid) + { + vec3_t move; + + VectorCopy (trace.endpos, ent->s.origin); + ent->groundentity = trace.ent; + ent->groundentity_linkcount = trace.ent->linkcount; + ent->velocity[2] = 0; + + VectorSubtract( ent->last_step_pos, ent->s.origin, move ); + move[2] = 0; + + if (ent->last_step_time < (level.time-0.2) && VectorLength(move) > 40) + { + trace_t trace2; + + // JOSEPH 5-JUN-99 + if (ent->classname && strcmp(ent->classname, "cast_dog")) + { + ent->s.event = EV_FOOTSTEP0 + ent->footsteptype; + } + // END JOSEPH + + VectorCopy( ent->s.origin, ent->last_step_pos ); + ent->last_step_time = level.time; + + trace2 = gi.trace (ent->s.origin, ent->mins, ent->maxs, point, ent, MASK_PLAYERSOLID | MASK_MONSTERSOLID | MASK_WATER); + + + if (trace2.contents & MASK_WATER) + { + ent->footsteptype = 8; + } + else if (trace2.surface->flags & SURF_CONCRETE) + { + ent->footsteptype = 0; + } + else if (trace2.surface->flags & SURF_FABRIC) + { + ent->footsteptype = 1; + } + else if (trace2.surface->flags & SURF_GRAVEL) + { + ent->footsteptype = 2; + } + else if (trace2.surface->flags & SURF_METAL) + { + ent->footsteptype = 3; + } + else if (trace2.surface->flags & SURF_METAL_L) + { + ent->footsteptype = 4; + } + else if (trace2.surface->flags & SURF_SNOW) + { + ent->footsteptype = 5; + } + else if (trace2.surface->flags & SURF_TILE) + { + ent->footsteptype = 6; + } + else if (trace2.surface->flags & SURF_WOOD) + { + ent->footsteptype = 7; + } + else if (trace2.surface->flags & SURF_WATER) + { + ent->footsteptype = 8; + } + else + { + ent->footsteptype = 0; + } + } + + // if standing on an AI, get off + if (ent->groundentity->svflags & SVF_MONSTER) + { + ent->nav_data.goal_index = 0; + + VectorSet( ent->velocity, rand()%400 - 200, rand()%400 - 200, 200 ); + + if (ent->groundentity->maxs[2] == ent->groundentity->cast_info.standing_max_z) + { // duck + if (ent->groundentity->cast_info.move_crouch_down) + ent->groundentity->cast_info.currentmove = ent->groundentity->cast_info.move_crouch_down; + ent->groundentity->maxs[2] = DUCKING_MAX_Z; + } + + // avoid + ent->groundentity->cast_info.avoid( ent->groundentity, ent, false ); + + } + + } + // Xatrix/Ridah, didn't hit anything, so clear ->groundentity + } + else + { + ent->groundentity = NULL; + } + // Xatrix/Ridah, didn't hit anything, so clear ->groundentity + // END JOSEPH + + // Ridah, do pitch adjustments + if (ent->cast_info.aiflags & AI_ADJUSTPITCH && ent->health > 0) + { + static vec3_t mins = {-4, -4, 0}; + static vec3_t maxs = { 4, 4, 4}; + vec3_t p1, p2; + vec3_t start, end; + vec3_t fwd, angles; + float pitch_diff; + trace_t tr; + + AngleVectors( ent->s.angles, fwd, NULL, NULL ); + + VectorMA( ent->s.origin, ent->maxs[0]-maxs[0], fwd, start ); + VectorCopy( start, end ); + end[2] += ent->mins[2] - 32; + + tr = gi.trace( start, mins, maxs, end, ent, MASK_PLAYERSOLID | MASK_MONSTERSOLID ); + + VectorCopy( tr.endpos, p1 ); + + VectorMA( ent->s.origin, -(ent->maxs[0]-maxs[0]), fwd, start ); + VectorCopy( start, end ); + end[2] += ent->mins[2] - 32; + + tr = gi.trace( start, mins, maxs, end, ent, MASK_PLAYERSOLID | MASK_MONSTERSOLID ); + + VectorCopy( tr.endpos, p2 ); + + + VectorSubtract( p1, p2, fwd ); + VectorNormalize( fwd ); + fwd[2] *= 0.5; + vectoangles( fwd, angles ); + + pitch_diff = AngleDiff( ent->s.angles[PITCH], angles[PITCH] ); + + if (fabs(pitch_diff) > 120*FRAMETIME) + { + if (pitch_diff > 0) + pitch_diff = 120*FRAMETIME; + else + pitch_diff = -120*FRAMETIME; + } + +// if (pitch_diff) +// gi.dprintf("PITCH: %f -> ", ent->s.angles[PITCH]); + + ent->s.angles[PITCH] += pitch_diff; + +// if (pitch_diff) +// gi.dprintf("%f\n", ent->s.angles[PITCH]); + } +} + + +void M_CatagorizePosition (edict_t *ent) +{ + vec3_t point; + int cont; + +// +// get waterlevel +// + point[0] = ent->s.origin[0]; + point[1] = ent->s.origin[1]; + point[2] = ent->s.origin[2] + ent->mins[2] + 1; + cont = gi.pointcontents (point); + + if (!(cont & MASK_WATER)) + { + ent->waterlevel = 0; + ent->watertype = 0; + return; + } + + ent->watertype = cont; + ent->waterlevel = 1; + point[2] += 26; + cont = gi.pointcontents (point); + if (!(cont & MASK_WATER)) + return; + + ent->waterlevel = 2; + point[2] += 22; + cont = gi.pointcontents (point); + if (cont & MASK_WATER) + ent->waterlevel = 3; +} + + +void M_WorldEffects (edict_t *ent) +{ + int dmg; + + if (ent->health > 0) + { + if (!(ent->flags & FL_SWIM)) + { + if (ent->waterlevel < 3) + { + ent->air_finished = level.time + 12; + } + else if (ent->air_finished < level.time) + { // drown! + if (ent->pain_debounce_time < level.time) + { + dmg = 2 + 2 * floor(level.time - ent->air_finished); + if (dmg > 15) + dmg = 15; + T_Damage (ent, world, world, vec3_origin, ent->s.origin, vec3_origin, dmg, 0, DAMAGE_NO_ARMOR, MOD_WATER); + ent->pain_debounce_time = level.time + 1; + } + } + } + else + { + if (ent->waterlevel > 0) + { + ent->air_finished = level.time + 9; + } + else if (ent->air_finished < level.time) + { // suffocate! + if (ent->pain_debounce_time < level.time) + { + dmg = 2 + 2 * floor(level.time - ent->air_finished); + if (dmg > 15) + dmg = 15; + T_Damage (ent, world, world, vec3_origin, ent->s.origin, vec3_origin, dmg, 0, DAMAGE_NO_ARMOR, MOD_WATER); + ent->pain_debounce_time = level.time + 1; + } + } + } + } + + if (ent->waterlevel == 0) + { + if (ent->flags & FL_INWATER) + { + // JOSEPH 13-MAY-99 + gi.sound (ent, CHAN_BODY, gi.soundindex("actors/player/male/watr_out.wav"), 1, ATTN_NORM, 0); + // END JOSEPH + ent->flags &= ~FL_INWATER; + } + return; + } + + if ((ent->watertype & CONTENTS_LAVA) && !(ent->flags & FL_IMMUNE_LAVA)) + { + if (ent->damage_debounce_time < level.time) + { + ent->damage_debounce_time = level.time + 0.2; + T_Damage (ent, world, world, vec3_origin, ent->s.origin, vec3_origin, 10*ent->waterlevel, 0, 0, MOD_LAVA); + } + } + if ((ent->watertype & CONTENTS_SLIME) && !(ent->flags & FL_IMMUNE_SLIME)) + { + if (ent->damage_debounce_time < level.time) + { + ent->damage_debounce_time = level.time + 1; + T_Damage (ent, world, world, vec3_origin, ent->s.origin, vec3_origin, 4*ent->waterlevel, 0, 0, MOD_SLIME); + } + } + + if ( !(ent->flags & FL_INWATER) ) + { + if (!(ent->svflags & SVF_DEADMONSTER)) + { + // JOSEPH 29-MAR-99 + if (ent->watertype & CONTENTS_LAVA) + { + //if (random() <= 0.5) + // gi.sound (ent, CHAN_BODY, gi.soundindex("actors/player/lava1.wav"), 1, ATTN_NORM, 0); + //else + // gi.sound (ent, CHAN_BODY, gi.soundindex("actors/player/lava2.wav"), 1, ATTN_NORM, 0); + } + // END JOSEPH + // JOSEPH 13-MAY-99 + else if (ent->watertype & CONTENTS_SLIME) + gi.sound (ent, CHAN_BODY, gi.soundindex("actors/player/male/watr_in.wav"), 1, ATTN_NORM, 0); + else if (ent->watertype & CONTENTS_WATER) + gi.sound (ent, CHAN_BODY, gi.soundindex("actors/player/male/watr_in.wav"), 1, ATTN_NORM, 0); + // END JOSEPH + } + + ent->flags |= FL_INWATER; + ent->damage_debounce_time = 0; + } +} + + +void M_droptofloor (edict_t *ent) +{ + vec3_t end; + trace_t trace; + + ent->s.origin[2] += 1; + VectorCopy (ent->s.origin, end); + end[2] -= 256; + + trace = gi.trace (ent->s.origin, ent->mins, ent->maxs, end, ent, MASK_MONSTERSOLID); + + if (trace.fraction == 1 || trace.allsolid) + return; + + VectorCopy (trace.endpos, ent->s.origin); + + if (ent->solid != SOLID_TRIGGER) + { + gi.linkentity (ent); + M_CheckGround (ent); + M_CatagorizePosition (ent); + } +} + + +void M_SetEffects (edict_t *ent) +{ + ent->s.effects &= ~(EF_COLOR_SHELL|EF_POWERSCREEN); + ent->s.renderfx &= ~(RF_SHELL_RED|RF_SHELL_GREEN|RF_SHELL_BLUE); + + if (ent->health <= 0) + return; + +} + + +void M_MoveFrame (edict_t *self) +{ + mmove_t *move; + int index; + + // Ridah, allow for reverse animations + qboolean reverse_anim; + int lowest_frame, highest_frame; + + move = self->cast_info.currentmove; + + if (move->lastframe < move->firstframe) + { + reverse_anim = true; + lowest_frame = move->lastframe; + highest_frame = move->firstframe; + } + else + { + reverse_anim = false; + lowest_frame = move->firstframe; + highest_frame = move->lastframe; + } + + self->nextthink = level.time + FRAMETIME; + + if ((self->cast_info.nextframe) && (self->cast_info.nextframe >= lowest_frame) && (self->cast_info.nextframe <= highest_frame)) + { + self->s.frame = self->cast_info.nextframe; + self->cast_info.nextframe = 0; + } + else + { + if (self->s.frame == move->lastframe) + { + if (move->endfunc) + { + move->endfunc (self); + + // regrab move, endfunc is very likely to change it + move = self->cast_info.currentmove; + + if (move->lastframe < move->firstframe) + { + reverse_anim = true; + lowest_frame = move->lastframe; + highest_frame = move->firstframe; + } + else + { + reverse_anim = false; + lowest_frame = move->firstframe; + highest_frame = move->lastframe; + } + + // check for death + if (self->svflags & SVF_DEADMONSTER) + return; + } + } + + if ((self->s.frame < lowest_frame) || (self->s.frame > highest_frame)) + { + self->s.frame = move->firstframe; + } + else + { + if (reverse_anim) + { + self->s.frame--; + + if (self->s.frame < move->lastframe) + self->s.frame = move->firstframe; + } + else + { + self->s.frame++; + + if (self->s.frame > move->lastframe) + self->s.frame = move->firstframe; + } + } + } + + if (!reverse_anim) + index = self->s.frame - move->firstframe; + else + index = move->firstframe - self->s.frame; + + if (move->frame[index].aifunc) + { + move->frame[index].aifunc (self, move->frame[index].dist * self->cast_info.scale); + + // debugging + if (!self->cast_info.currentmove) + { // we really shouldn't do this, but it's better than crashing + // nasty fix to get the bum not to print this message + if (strcmp (self->classname, "cast_bum_sit")) + gi.dprintf( "M_MoveFrame: NULL currentmove\n" ); + self->cast_info.currentmove = move; + } + } + + if (move->frame[index].thinkfunc) + move->frame[index].thinkfunc (self); +} + +// thug2 HACK +extern mmove_t thug2_move_ambstand1; +extern void thug2_stand_up( edict_t *self ); +extern void thug2_end_stand( edict_t *self ); +extern void thug2_avoid ( edict_t *self, edict_t *other, qboolean face ); + +void cast_think (edict_t *self) +{ +#include "ai_thug2.h" + + + // Ridah, turn it off before each frame, so it's only on when being fired + self->s.renderfx2 &= ~RF2_FLAMETHROWER; + + + // Ridah, if in cutscene, only let those in the scene actually think + if (level.cut_scene_time) + { +// if (!gi.inPVS(self->s.origin, level.cut_scene_origin)) + if (self->cast_group == 1) + { + self->nextthink = level.time + 0.3; + return; + } + } + + if (self->enemy && (self->enemy->health <= 0)) + { + self->enemy = NULL; + + // go back to the start pos if we're not doing anything + if ( !(self->cast_info.aiflags & AI_TAKE_COVER) + && !(self->goal_ent) + && (self->cast_info.currentmove->frame->aifunc == ai_stand) + && (self->start_ent) + && (VectorDistance( self->s.origin, self->start_ent->s.origin) > 256)) + { + self->goal_ent = self->start_ent; + } + } + + + // HACK, make sure this gets cleared + if ((self->cast_info.aiflags & AI_TAKECOVER_IGNOREHEALTH) && !(self->cast_info.aiflags & AI_TAKE_COVER)) + self->cast_info.aiflags &= ~AI_TAKECOVER_IGNOREHEALTH; + + // Another HACK, so thug_sit's do the proper sit -> stand animation when they need to + if ( self->health > 0 + && self->cast_info.avoid == thug2_avoid + && self->cast_info.move_stand != &thug2_move_ambstand1 + && ( (self->cast_info.currentmove->firstframe < FRAME_ambsit1_01) + || (self->cast_info.currentmove->firstframe > FRAME_cards7_18))) + { // they're doing something other than sitting, so clear the flag and prevent them from sitting again + thug2_stand_up( self ); + } + + // so we know how far we've fallen from + if (!self->groundentity) + { + if (self->last_offground < (level.time - 0.1)) + self->fall_height = self->s.origin[2]; + else if (self->fall_height < self->s.origin[2]) + self->fall_height = self->s.origin[2]; + + self->last_offground = level.time; + } + else + { + self->last_onground = level.time; + } + + if (self->cast_info.currentmove) + M_MoveFrame (self); + else + { + if (!strcmp (self->classname, "cast_bum_sit")) + { + self->health = 0; + self->die (self, world, world, 10, self->s.origin, PART_BODY, 0); + return; + } + else + // todo find out how the bum is getting here and causing the crash + gi.dprintf ("classname:%s\n", self->classname); + } + + if (self->linkcount != self->cast_info.linkcount) + { + self->cast_info.linkcount = self->linkcount; + M_CheckGround (self); + + if (self->groundentity) + VectorClear( self->velocity ); + } + + // make sure viewheight is correct + self->viewheight = self->maxs[2] - 4; + + M_CatagorizePosition (self); + + M_WorldEffects (self); + M_SetEffects (self); + + if (self->enemy && (self->enemy->health <= 0)) + self->enemy = NULL; + + // JOSEPH 30-NOV-98 + if (self->misstime && self->missent) + { + if (self->onarampage) + { + self->goal_ent = self->enemy; + } + else if (visible(self, self->missent) && (self->timemissing <= self->misstime)) + { + self->timemissing = 0; + } + else + { + self->timemissing += 1.0; + + if (self->timemissing > self->misstime) + { + if (visible(self, self->missent)) + { + self->onarampage = 1; + } + else + { + self->goal_ent = self->missent; + } + } + } + } + // END JOSEPH +/* + // Ridah, HACK: character's that don't die after flamedeath, force them to die now + if ( (self->health <= 0) + && (self->cast_info.currentmove->endfunc != AI_EndDeath)) + { + extern void Killed (edict_t *targ, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject); + + self->deadflag = 0; + // self->die( self, world, world, 10, self->s.origin, PART_BODY, 0); + Killed (self, self, self, 10, self->s.origin, PART_BODY, 0); + } +*/ +} + + +/* +================ +cast_use + +Using a cast member makes it: + + if it has a combattarget, will run to it, + ELSE get angry at the current activator +================ +*/ +void cast_use (edict_t *self, edict_t *other, edict_t *activator) +{ + cast_memory_t *mem; + + if (self->next_combattarget) + { + self->combattarget = self->next_combattarget; + self->next_combattarget = NULL; + } + + if (self->combattarget) + AI_Goto_CombatTarget( self ); + + if (self->health <= 0) + return; + + if (self->enemy) + return; + if (self->health <= 0) + return; + + // check for special Episode script handling + if (EP_CastUse( self, other, activator )) + return; + + mem = level.global_cast_memory[self->character_index][activator->character_index]; + + if (!mem || (mem->memory_type == MEMORY_TYPE_FRIEND)) + return; + + AI_MakeEnemy ( self, activator, 0 ); + +} + + +void cast_start_go (edict_t *self); + + +void cast_triggered_spawn (edict_t *self) +{ + self->s.origin[2] += 1; + KillBox (self); + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_STEP; + self->svflags &= ~SVF_NOCLIENT; + self->air_finished = level.time + 12; + gi.linkentity (self); + + cast_start_go (self); + + // Ridah, changed this, must set (spawnflags & 1) to make the AI hostile at the activator + +/* + if (self->enemy && !(self->spawnflags & 1) && !(self->enemy->flags & FL_NOTARGET)) + { + AI_StartAttack (self, self->enemy); + } + else + { + self->enemy = NULL; + } +*/ +} + +void cast_triggered_spawn_use (edict_t *self, edict_t *other, edict_t *activator) +{ + // we have a one frame delay here so we don't telefrag the guy who activated us + self->think = cast_triggered_spawn; + self->nextthink = level.time + FRAMETIME; + +// Ridah, try to add them to the character list + if (!AddCharacterToGame(self)) + { + G_FreeEdict (self); + return; + } +// Ridah, done. + + if (activator->client && (self->spawnflags & 1)) + AI_MakeEnemy (self, activator, 0); + + self->use = cast_use; +} + +void cast_triggered_start (edict_t *self) +{ + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_NOCLIENT; + self->nextthink = 0; + self->use = cast_triggered_spawn_use; +} + + +/* +================ +cast_death_use + +When a cast member dies, they fire all of their targets with the current +enemy as activator. +================ +*/ +void cast_death_use (edict_t *self) +{ + self->flags &= ~(FL_FLY|FL_SWIM); + + if (self->item) + { + Drop_Item (self, self->item); + self->item = NULL; + } + + if (self->deathtarget) + { + self->target = self->deathtarget; + } + else + { + // So we can process a death even if they don't have a ->deathtarget + EP_CastUse( self, self, self->enemy ); + + return; // Ridah, added this since we don't clear the ->target at startup anymore, and we don't went to fire a path_corner when we die + } + +// if (!self->target) +// return; + + G_UseTargets (self, self->enemy); +} + + +//============================================================================ + +qboolean cast_start (edict_t *self) +{ + if (deathmatch->value) + { + G_FreeEdict (self); + return false; + } + +// Ridah, try to add them to the character list + if (!(self->spawnflags & 2) && !AddCharacterToGame(self)) + { + G_FreeEdict (self); + return false; + } +// Ridah, done. + + AI_InitMemory( self ); + EP_SetNameIndex( self ); + + EP_SpawnFlags (self); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; +//self->s.renderfx2 |= RF2_FLAMETHROWER; + +//self->flags |= FL_GODMODE; + + level.total_monsters++; + + self->cast_info.standing_max_z = self->maxs[2]; + + if (!self->moral) + self->moral = ((int)self->s.origin[0]) % MORAL_MAX; + + self->nextthink = level.time + FRAMETIME; + self->svflags |= SVF_MONSTER; + self->s.renderfx |= RF_FRAMELERP; + self->takedamage = DAMAGE_AIM; + self->air_finished = level.time + 12; + self->use = cast_use; + + // Ridah, hired guys default to 200 health, so they don't die so quick + if (self->cast_group == 1 && self->health == 100) + self->health = 200; + + self->max_health = self->health; + + self->clipmask = MASK_MONSTERSOLID; + + self->s.skinnum = self->skin; + self->deadflag = DEAD_NO; + self->svflags &= ~SVF_DEADMONSTER; + + // talk by default + self->cast_info.aiflags |= AI_TALK; + + if (!self->cast_info.checkattack) + self->cast_info.checkattack = AI_CheckAttack; + VectorCopy (self->s.origin, self->s.old_origin); + +// Ridah, new AI system + if (!self->cast_info.max_attack_distance) + self->cast_info.max_attack_distance = DEFAULT_MAX_ATTACK_DISTANCE; + + if (!self->cast_info.max_sighting_distance) + self->cast_info.max_sighting_distance = DEFAULT_MAX_SIGHTING_DISTANCE; +// Ridah, done. + + if (st.item) + { + self->item = FindItemByClassname (st.item); + if (!self->item) + gi.dprintf("%s at %s has bad item: %s\n", self->classname, vtos(self->s.origin), st.item); + } + + // randomize what frame they start on + if (self->cast_info.currentmove) + self->s.frame = self->cast_info.currentmove->firstframe + (rand() % (self->cast_info.currentmove->lastframe - self->cast_info.currentmove->firstframe + 1)); + +//Xatrix/Ridah/Navigator: init nav data + self->active_node_data = level.node_data; + self->nav_data.cache_node = -1; +// END: Xatrix/Ridah/Navigator: init current node + + return true; +} + +void cast_start_go (edict_t *self) +{ + vec3_t v; + +// Ridah, debugging ladders +//self->cast_group = 1; + + if (self->health <= 0) + return; + +/* + // check for target to combat_point and change to combattarget + if (self->target) + { + qboolean notcombat; + qboolean fixup; + edict_t *target; + + target = NULL; + notcombat = false; + fixup = false; + while ((target = G_Find (target, FOFS(targetname), self->target)) != NULL) + { + if (strcmp(target->classname, "point_combat") == 0) + { + self->combattarget = self->target; + fixup = true; + } + else + { + notcombat = true; + } + } + if (notcombat && self->combattarget) + gi.dprintf("%s at %s has target with mixed types\n", self->classname, vtos(self->s.origin)); + if (fixup) + self->target = NULL; + } +*/ + // validate combattarget + if (self->combattarget) + { + edict_t *target; + + target = NULL; + while ((target = G_Find (target, FOFS(targetname), self->combattarget)) != NULL) + { + if (strcmp(target->classname, "path_corner") != 0) + { + gi.dprintf("%s at (%i %i %i) has a bad combattarget %s : %s at (%i %i %i)\n", + self->classname, (int)self->s.origin[0], (int)self->s.origin[1], (int)self->s.origin[2], + self->combattarget, target->classname, (int)target->s.origin[0], (int)target->s.origin[1], + (int)target->s.origin[2]); + } + } + } + + // check for a guard_ent + if (self->guard_target) + { + edict_t *target; + + target = NULL; + if ((target = G_Find (target, FOFS(targetname), self->guard_target)) != NULL) + { + self->guard_ent = target; + } + else + { + gi.dprintf("%s at (%i %i %i) has an un-matched guard_target (%s)\n", + self->classname, + (int)self->s.origin[0], (int)self->s.origin[1], (int)self->s.origin[2], + self->guard_target ); + } + } + + if (self->target) + { + self->goal_ent = G_PickTarget(self->target); + if (!self->goal_ent) + { + gi.dprintf ("%s can't find target %s at %s\n", self->classname, self->target, vtos(self->s.origin)); + self->target = NULL; + } + else if (strcmp (self->goal_ent->classname, "path_corner") == 0) + { + VectorSubtract (self->goal_ent->s.origin, self->s.origin, v); + self->ideal_yaw = self->s.angles[YAW] = vectoyaw(v); + +// Ridah, 5-7-99, prevent guy at intro appearing upright after reloading SR1 + if (!(self->spawnflags & 2) && (!self->name || (strcmp(self->name, "IntroGuy") != 0))) + self->cast_info.pausetime = level.time + 3; + self->cast_info.currentmove = self->cast_info.move_stand; + } +// else +// { +// self->goal_ent = NULL; +// } + + // so we actually start walking in ai_stand() + self->goal_ent = NULL; + } + + if (self->leader_target) + { + if (!(self->leader = G_Find( NULL, FOFS(name), self->leader_target ))) + { + gi.dprintf( "%s has un-matched leader_target at: %s\n", self->classname, vtos( self->s.origin )); + } + } + +// if (!self->goal_ent) + { // make them return to this position in the future + edict_t *ent; + + ent = G_Spawn(); + VectorCopy( self->s.origin, ent->s.origin ); + VectorCopy( self->mins, ent->mins ); + VectorCopy( self->maxs, ent->maxs ); + ent->classname = "cast_origin"; + + ent->owner = self; + + self->start_ent = ent; + } + + // Health triggered events + if (self->health_target) + { + if (!self->health_threshold) + gi.dprintf( "Warning: %s has health_target without a health_threshold at %s\n", self->classname, vtos(self->s.origin) ); + } + if (self->health_target2) + { + if (!self->health_threshold2) + gi.dprintf( "Warning: %s has health_target2 without a health_threshold2 at %s\n", self->classname, vtos(self->s.origin) ); + } + if (self->health_target3) + { + if (!self->health_threshold3) + gi.dprintf( "Warning: %s has health_target3 without a health_threshold3 at %s\n", self->classname, vtos(self->s.origin) ); + } + + self->think = cast_think; + self->nextthink = level.time + FRAMETIME; +} + +void walking_cast_start_go (edict_t *self) +{ + if (!(self->spawnflags & 2) && level.time < 1) + { + M_droptofloor (self); + + if (self->groundentity) + if (!M_walkmove (self, 0, 0)) + gi.dprintf ("%s in solid at %s\n", self->classname, vtos(self->s.origin)); + } + + if (!self->yaw_speed) + self->yaw_speed = 40; + self->viewheight = self->cast_info.standing_max_z - 4; + + cast_start_go (self); + + + if (self->cast_group == 1 && !self->name) + { + gi.dprintf( "\n** WARNING: friendly %s without a NAME.\n All friendly characters MUST have a name.\n\n", self->classname ); + } + + if (self->spawnflags & 2) + cast_triggered_start (self); +} + +void walking_cast_start (edict_t *self) +{ + + if (!self->cast_info.scale) + self->cast_info.scale = MODEL_SCALE; + + self->current_territory = self->cast_group; // assume we start in our territory + if (self->current_territory == 1) // player's group doesn't have a territory as such + self->current_territory = 0; + + self->s.scale = self->cast_info.scale - 1.0; + + self->think = walking_cast_start_go; + cast_start (self); +} + + +void flying_cast_start_go (edict_t *self) +{ + if (!M_walkmove (self, 0, 0)) + gi.dprintf ("%s in solid at %s\n", self->classname, vtos(self->s.origin)); + + if (!self->yaw_speed) + self->yaw_speed = 10; + self->viewheight = self->cast_info.standing_max_z - 4; + + cast_start_go (self); + + if (self->spawnflags & 2) + cast_triggered_start (self); +} + + +void flying_cast_start (edict_t *self) +{ + self->flags |= FL_FLY; + self->think = flying_cast_start_go; + cast_start (self); +} + + +void swimming_cast_start_go (edict_t *self) +{ + if (!self->yaw_speed) + self->yaw_speed = 10; + self->viewheight = 10; + + cast_start_go (self); + + if (self->spawnflags & 2) + cast_triggered_start (self); +} + +void swimming_cast_start (edict_t *self) +{ + self->flags |= FL_SWIM; + self->think = swimming_cast_start_go; + cast_start (self); +} + +qboolean DeathByGib( edict_t *self, edict_t *inflictor, edict_t *attacker, float damage ) +{ + // Ridah, never show gibs if parental lock is on + if (cl_parental_lock->value) + return false; + + if (inflictor->client) + return false; + + if (inflictor == attacker) + { + return (damage > 80); // so pistol doesn't gib + } + else // rocket or grenade + { + return (damage >= 50); + } +} diff --git a/gamesrc/G_CHASE.C b/gamesrc/G_CHASE.C new file mode 100644 index 0000000..2a5bfc1 --- /dev/null +++ b/gamesrc/G_CHASE.C @@ -0,0 +1,152 @@ +#include "g_local.h" + +extern void DeathmatchScoreboard (edict_t *ent); + +void UpdateChaseCam(edict_t *ent) +{ + static vec3_t mins = {-10, -10, -10}, maxs = {10, 10, 10}; + vec3_t o, ownerv, goal; + edict_t *targ; + vec3_t forward, right, up; + trace_t trace; + int i; + vec3_t oldgoal; + vec3_t angles; + + // is our chase target gone? + if (!ent->client->chase_target->inuse) { + ent->client->chase_target = NULL; + return; + } + + targ = ent->client->chase_target; + + VectorCopy(targ->s.origin, ownerv); + VectorCopy(ent->s.origin, oldgoal); + + ownerv[2] += targ->viewheight; + + VectorCopy(targ->client->v_angle, angles); + if (angles[PITCH] > 56) + angles[PITCH] = 56; + AngleVectors (angles, forward, right, up); + VectorNormalize(forward); + VectorMA(ownerv, -64, forward, o); + VectorMA(o, 24, up, o); + + if (o[2] < targ->s.origin[2] + 20) + o[2] = targ->s.origin[2] + 20; + + // jump animation lifts + if (!targ->groundentity) + o[2] += 16; + + trace = gi.trace(ownerv, mins, maxs, o, targ, MASK_SOLID); + + VectorCopy(trace.endpos, goal); +/* + VectorMA(goal, 2, forward, goal); + + // pad for floors and ceilings + VectorCopy(goal, o); + o[2] += 6; + trace = gi.trace(goal, vec3_origin, vec3_origin, o, targ, MASK_SOLID); + if (trace.fraction < 1) { + VectorCopy(trace.endpos, goal); + goal[2] -= 6; + } + + VectorCopy(goal, o); + o[2] -= 6; + trace = gi.trace(goal, vec3_origin, vec3_origin, o, targ, MASK_SOLID); + if (trace.fraction < 1) { + VectorCopy(trace.endpos, goal); + goal[2] += 6; + } +*/ + ent->client->ps.pmove.pm_type = PM_FREEZE; + + VectorCopy(goal, ent->s.origin); + for (i=0 ; i<3 ; i++) + ent->client->ps.pmove.delta_angles[i] = ANGLE2SHORT(targ->client->v_angle[i] - ent->client->resp.cmd_angles[i]); + + VectorCopy(targ->client->v_angle, ent->client->ps.viewangles); + VectorCopy(targ->client->v_angle, ent->client->v_angle); + + // Ridah, angle down a bit since we moved it up + ent->client->v_angle[2] += 35; + + ent->viewheight = 0; + ent->client->ps.pmove.pm_flags |= PMF_NO_PREDICTION; + gi.linkentity(ent); +} + +void ChaseNext(edict_t *ent) +{ + int i; + edict_t *e; + + if (!ent->client->chase_target) + { + // select the first entity, then go from there + ent->client->chase_target = &g_edicts[1]; + } + + i = ent->client->chase_target - g_edicts; + do { + i++; + if (i > maxclients->value) + i = 1; + e = g_edicts + i; + if (!e->inuse) + continue; + if (e->solid != SOLID_NOT) + break; + } while (e != ent->client->chase_target); + + if (e == ent) + { + ent->client->chase_target = NULL; + return; + } + + ent->client->chase_target = e; + ent->client->update_chase = true; + + DeathmatchScoreboard(ent); +} + +void ChasePrev(edict_t *ent) +{ + int i; + edict_t *e; + + if (!ent->client->chase_target) + { + // select the first entity, then go from there + ent->client->chase_target = &g_edicts[1]; + } + + i = ent->client->chase_target - g_edicts; + do { + i--; + if (i < 1) + i = maxclients->value; + e = g_edicts + i; + if (!e->inuse) + continue; + if (e->solid != SOLID_NOT) + break; + } while (e != ent->client->chase_target); + + if (e == ent) + { + ent->client->chase_target = NULL; + return; + } + + ent->client->chase_target = e; + ent->client->update_chase = true; + + DeathmatchScoreboard(ent); +} diff --git a/gamesrc/G_FOG.C b/gamesrc/G_FOG.C new file mode 100644 index 0000000..c6b8f8b --- /dev/null +++ b/gamesrc/G_FOG.C @@ -0,0 +1,76 @@ +#if 0 + +/* + fog.c +*/ + +/*QUAKED fog_brush (.5 .5 0) ? + "angles" points into the fog brush +*/ +#include "g_local.h" + +void fog_brush_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + vec3_t vec; + vec3_t vars1, vars2; + + if (!(other->client)) + return; + + VectorSubtract( other->s.origin, self->pos1, vec ); + vec[2] = 0; + VectorNormalize( vec ); + + if (DotProduct( vec, self->movedir ) > 0) + { + gi.dprintf ("going into fog brush\n"); + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_FOG_BRUSH); + + gi.WritePosition (vars1); + gi.WritePosition (vars2); + + gi.multicast (other->s.origin, MULTICAST_PVS); + } + else + { + gi.dprintf ("going out of fog brush\n"); + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_FOG_BRUSH); + + gi.WritePosition (vars1); + gi.WritePosition (vars2); + + gi.multicast (other->s.origin, MULTICAST_PVS); + } + +} + + +void SP_fog_brush (edict_t *ent) +{ + if (deathmatch->value) + { + G_FreeEdict(ent); + return; + } + + ent->solid = SOLID_TRIGGER; + ent->touch = fog_brush_touch; + + ent->svflags |= SVF_NOCLIENT; + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); + + // set the center pos + VectorAdd( ent->absmin, ent->absmax, ent->pos1 ); + VectorScale( ent->pos1, 0.5, ent->pos1 ); + + AngleVectors( ent->s.angles, ent->movedir, NULL, NULL ); +} + + +#endif \ No newline at end of file diff --git a/gamesrc/G_FUNC.C b/gamesrc/G_FUNC.C new file mode 100644 index 0000000..7c3df54 --- /dev/null +++ b/gamesrc/G_FUNC.C @@ -0,0 +1,4483 @@ + +#include "g_local.h" +#include "g_func.h" + +/* +========================================================= + + PLATS + + movement options: + + linear + smooth start, hard stop + smooth start, smooth stop + + start + end + acceleration + speed + deceleration + begin sound + end sound + target fired when reaching end + wait at end + + object characteristics that use move segments + --------------------------------------------- + movetype_push, or movetype_stop + action when touched + action when blocked + action when used + disabled? + auto trigger spawning + + +========================================================= +*/ + +// +// Support routines for movement (changes in origin using velocity) +// + +void Move_Done (edict_t *self) +{ + edict_t *ent; + +// BEGIN: Xatrix/Ridah/Navigator/08-apr-1998 + ent = self->goalentity; + + //VectorCopy (self->moveinfo.end_origin, self->s.origin); + + // spawn some nodes, if this entity hasn't been routed + if ((!ent || (!ent->nav_data.goal_index && (ent->wait < 0 || ent->wait > 0.1))) && nav_dynamic->value && (level.node_data->node_count < (MAX_NODES-2))) + { + edict_t *trav=NULL; + node_t *top_node; + vec3_t move_vec, start_org; + int rval; + route_t route; + + // record the ending position + VectorCopy(self->s.origin, self->cast_info.saved_goal); + + // is there a human standing on this plat? + while (trav = G_Find(trav, FOFS(classname), "player")) + { + if (trav->groundentity == self) + { // this player is standing on us, so drop a node + + // find the players position at the plat's previous position + VectorSubtract(self->cast_info.saved_goal, self->cast_info.last_sighting, move_vec); + + // see if we can get to here from the start position + + // find a node close to us to use for destination checking + top_node = NAV_GetClosestNode( trav, VIS_PARTIAL, true, false ); + + if (!top_node) + goto drop_node; + + // temporarily move the platform to the bottom position + VectorCopy(self->cast_info.last_sighting, self->s.origin); + gi.linkentity(self); + + VectorSubtract( trav->s.origin, move_vec, trav->s.origin ); + gi.linkentity(trav); + + rval = NAV_Route_EntityToNode( trav, NULL, top_node, VIS_PARTIAL, true, false, &route ); + + VectorAdd( trav->s.origin, move_vec, trav->s.origin ); + gi.linkentity(trav); + + // move the platform back + VectorCopy(self->cast_info.saved_goal, self->s.origin); + gi.linkentity(self); + + if (rval) + break; // already a route here + +drop_node: + + VectorSubtract(trav->s.origin, move_vec, start_org); + + // drop the end position (LANDING so other nodes don't see us, but we can see them) + NAV_CreateNode( trav, trav->s.origin, vec3_origin, NODE_LANDING, -1, trav->waterlevel); + top_node = trav->active_node_data->nodes[trav->active_node_data->node_count - 1]; + + // temporarily move the platform to the bottom position + VectorCopy(self->cast_info.last_sighting, self->s.origin); + gi.linkentity(self); + + NAV_CreateNode( trav, start_org, vec3_origin, NODE_PLAT, top_node->index, trav->waterlevel); + + // move the platform back + VectorCopy(self->cast_info.saved_goal, self->s.origin); + gi.linkentity(self); + + if (ent) + ent->nav_data.goal_index = true; // tell this path_corner to ignore future NAV tests for new nodes + trav->nav_build_data->current_node->goal_ent = self; + self->nav_data.cache_node = (int)(top_node->index); + + // resume checking from the player's current position + trav->nav_build_data->current_node = top_node; + + break; + } + } + } +// END: Xatrix/Ridah/Navigator/08-apr-1998 + + VectorClear (self->velocity); + self->moveinfo.endfunc (self); +} + +void Move_Final (edict_t *ent) +{ + if (ent->moveinfo.remaining_distance == 0) + { + Move_Done (ent); + return; + } + + VectorScale (ent->moveinfo.dir, ent->moveinfo.remaining_distance / FRAMETIME, ent->velocity); + + ent->think = Move_Done; + ent->nextthink = level.time + FRAMETIME; +} + +void Move_Begin (edict_t *ent) +{ + float frames; + + if ((ent->moveinfo.speed * FRAMETIME) >= ent->moveinfo.remaining_distance) + { + Move_Final (ent); + return; + } + VectorScale (ent->moveinfo.dir, ent->moveinfo.speed, ent->velocity); + frames = floor((ent->moveinfo.remaining_distance / ent->moveinfo.speed) / FRAMETIME); + ent->moveinfo.remaining_distance -= frames * ent->moveinfo.speed * FRAMETIME; + ent->nextthink = level.time + (frames * FRAMETIME); + ent->think = Move_Final; +} + +void Think_AccelMove (edict_t *ent); + +void Move_Calc (edict_t *ent, vec3_t dest, void(*func)(edict_t*)) +{ + VectorClear (ent->velocity); + VectorSubtract (dest, ent->s.origin, ent->moveinfo.dir); + ent->moveinfo.remaining_distance = VectorNormalize (ent->moveinfo.dir); + ent->moveinfo.endfunc = func; + + if (ent->moveinfo.speed == ent->moveinfo.accel && ent->moveinfo.speed == ent->moveinfo.decel) + { + if (level.current_entity == ((ent->flags & FL_TEAMSLAVE) ? ent->teammaster : ent)) + { + Move_Begin (ent); + } + else + { + ent->nextthink = level.time + FRAMETIME; + ent->think = Move_Begin; + } + } + else + { + // accelerative + ent->moveinfo.current_speed = 0; + ent->think = Think_AccelMove; + ent->nextthink = level.time + FRAMETIME; + } +} + +// +// Support routines for angular movement (changes in angle using avelocity) +// + +void AngleMove_Done (edict_t *ent) +{ + VectorClear (ent->avelocity); + ent->moveinfo.endfunc (ent); +} + +void AngleMove_Final (edict_t *ent) +{ + vec3_t move; + + if (ent->moveinfo.state == STATE_UP) + VectorSubtract (ent->moveinfo.end_angles, ent->s.angles, move); + else + VectorSubtract (ent->moveinfo.start_angles, ent->s.angles, move); + + if (VectorCompare (move, vec3_origin)) + { + AngleMove_Done (ent); + return; + } + + VectorScale (move, 1.0/FRAMETIME, ent->avelocity); + + ent->think = AngleMove_Done; + ent->nextthink = level.time + FRAMETIME; +} + +void AngleMove_Begin (edict_t *ent) +{ + vec3_t destdelta; + float len; + float traveltime; + float frames; + + // set destdelta to the vector needed to move + if (ent->moveinfo.state == STATE_UP) + VectorSubtract (ent->moveinfo.end_angles, ent->s.angles, destdelta); + else + VectorSubtract (ent->moveinfo.start_angles, ent->s.angles, destdelta); + + // calculate length of vector + len = VectorLength (destdelta); + + // divide by speed to get time to reach dest + traveltime = len / ent->moveinfo.speed; + + if (traveltime < FRAMETIME) + { + AngleMove_Final (ent); + return; + } + + frames = floor(traveltime / FRAMETIME); + + // scale the destdelta vector by the time spent traveling to get velocity + VectorScale (destdelta, 1.0 / traveltime, ent->avelocity); + + // set nextthink to trigger a think when dest is reached + ent->nextthink = level.time + frames * FRAMETIME; + ent->think = AngleMove_Final; +} + +void AngleMove_Calc (edict_t *ent, void(*func)(edict_t*)) +{ + VectorClear (ent->avelocity); + ent->moveinfo.endfunc = func; + if (level.current_entity == ((ent->flags & FL_TEAMSLAVE) ? ent->teammaster : ent)) + { + AngleMove_Begin (ent); + } + else + { + ent->nextthink = level.time + FRAMETIME; + ent->think = AngleMove_Begin; + } +} + + +/* +============== +Think_AccelMove + +The team has completed a frame of movement, so +change the speed for the next frame +============== +*/ +#define AccelerationDistance(target, rate) (target * ((target / rate) + 1) / 2) + +void plat_CalcAcceleratedMove(moveinfo_t *moveinfo) +{ + float accel_dist; + float decel_dist; + + moveinfo->move_speed = moveinfo->speed; + + if (moveinfo->remaining_distance < moveinfo->accel) + { + moveinfo->current_speed = moveinfo->remaining_distance; + return; + } + + accel_dist = AccelerationDistance (moveinfo->speed, moveinfo->accel); + decel_dist = AccelerationDistance (moveinfo->speed, moveinfo->decel); + + if ((moveinfo->remaining_distance - accel_dist - decel_dist) < 0) + { + float f; + + f = (moveinfo->accel + moveinfo->decel) / (moveinfo->accel * moveinfo->decel); + moveinfo->move_speed = (-2 + sqrt(4 - 4 * f * (-2 * moveinfo->remaining_distance))) / (2 * f); + decel_dist = AccelerationDistance (moveinfo->move_speed, moveinfo->decel); + } + + moveinfo->decel_distance = decel_dist; +}; + +void plat_Accelerate (moveinfo_t *moveinfo) +{ + // are we decelerating? + if (moveinfo->remaining_distance <= moveinfo->decel_distance) + { + if (moveinfo->remaining_distance < moveinfo->decel_distance) + { + if (moveinfo->next_speed) + { + moveinfo->current_speed = moveinfo->next_speed; + moveinfo->next_speed = 0; + return; + } + if (moveinfo->current_speed > moveinfo->decel) + moveinfo->current_speed -= moveinfo->decel; + } + return; + } + + // are we at full speed and need to start decelerating during this move? + if (moveinfo->current_speed == moveinfo->move_speed) + if ((moveinfo->remaining_distance - moveinfo->current_speed) < moveinfo->decel_distance) + { + float p1_distance; + float p2_distance; + float distance; + + p1_distance = moveinfo->remaining_distance - moveinfo->decel_distance; + p2_distance = moveinfo->move_speed * (1.0 - (p1_distance / moveinfo->move_speed)); + distance = p1_distance + p2_distance; + moveinfo->current_speed = moveinfo->move_speed; + moveinfo->next_speed = moveinfo->move_speed - moveinfo->decel * (p2_distance / distance); + return; + } + + // are we accelerating? + if (moveinfo->current_speed < moveinfo->speed) + { + float old_speed; + float p1_distance; + float p1_speed; + float p2_distance; + float distance; + + old_speed = moveinfo->current_speed; + + // figure simple acceleration up to move_speed + moveinfo->current_speed += moveinfo->accel; + if (moveinfo->current_speed > moveinfo->speed) + moveinfo->current_speed = moveinfo->speed; + + // are we accelerating throughout this entire move? + if ((moveinfo->remaining_distance - moveinfo->current_speed) >= moveinfo->decel_distance) + return; + + // during this move we will accelrate from current_speed to move_speed + // and cross over the decel_distance; figure the average speed for the + // entire move + p1_distance = moveinfo->remaining_distance - moveinfo->decel_distance; + p1_speed = (old_speed + moveinfo->move_speed) / 2.0; + p2_distance = moveinfo->move_speed * (1.0 - (p1_distance / p1_speed)); + distance = p1_distance + p2_distance; + moveinfo->current_speed = (p1_speed * (p1_distance / distance)) + (moveinfo->move_speed * (p2_distance / distance)); + moveinfo->next_speed = moveinfo->move_speed - moveinfo->decel * (p2_distance / distance); + return; + } + + // we are at constant velocity (move_speed) + return; +}; + +void Think_AccelMove (edict_t *ent) +{ + ent->moveinfo.remaining_distance -= ent->moveinfo.current_speed; + + if (ent->moveinfo.current_speed == 0) // starting or blocked + plat_CalcAcceleratedMove(&ent->moveinfo); + + plat_Accelerate (&ent->moveinfo); + + // will the entire move complete on next frame? + if (ent->moveinfo.remaining_distance <= ent->moveinfo.current_speed) + { + Move_Final (ent); + return; + } + + VectorScale (ent->moveinfo.dir, ent->moveinfo.current_speed*10, ent->velocity); + ent->nextthink = level.time + FRAMETIME; + ent->think = Think_AccelMove; +} + + +void plat_go_down (edict_t *ent); + +void plat_hit_top (edict_t *ent) +{ + if (!(ent->flags & FL_TEAMSLAVE)) + { + if (ent->moveinfo.sound_end) + gi.sound (ent, CHAN_NO_PHS_ADD+CHAN_VOICE, ent->moveinfo.sound_end, 1, ATTN_STATIC, 0); + ent->s.sound = 0; + } + ent->moveinfo.state = STATE_TOP; + + ent->think = plat_go_down; + ent->nextthink = level.time + 3; +} + +void plat_hit_bottom (edict_t *ent) +{ + if (!(ent->flags & FL_TEAMSLAVE)) + { + if (ent->moveinfo.sound_end) + gi.sound (ent, CHAN_NO_PHS_ADD+CHAN_VOICE, ent->moveinfo.sound_end, 1, ATTN_STATIC, 0); + ent->s.sound = 0; + } + ent->moveinfo.state = STATE_BOTTOM; +} + +void plat_go_down (edict_t *ent) +{ + if (!(ent->flags & FL_TEAMSLAVE)) + { + if (ent->moveinfo.sound_start) + gi.sound (ent, CHAN_NO_PHS_ADD+CHAN_VOICE, ent->moveinfo.sound_start, 1, ATTN_STATIC, 0); + ent->s.sound = ent->moveinfo.sound_middle; + } + ent->moveinfo.state = STATE_DOWN; + Move_Calc (ent, ent->moveinfo.end_origin, plat_hit_bottom); +} + +void plat_go_up (edict_t *ent) +{ + if (!(ent->flags & FL_TEAMSLAVE)) + { + if (ent->moveinfo.sound_start) + gi.sound (ent, CHAN_NO_PHS_ADD+CHAN_VOICE, ent->moveinfo.sound_start, 1, ATTN_STATIC, 0); + ent->s.sound = ent->moveinfo.sound_middle; + } + ent->moveinfo.state = STATE_UP; + Move_Calc (ent, ent->moveinfo.start_origin, plat_hit_top); +} + +void plat_blocked (edict_t *self, edict_t *other) +{ + if (!(other->svflags & SVF_MONSTER) && !(other->client) ) + { + // give it a chance to go away on it's own terms (like gibs) + T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, 100000, 1, 0, MOD_CRUSH); + // if it's still there, nuke it + if (other) + BecomeExplosion1 (other); + return; + } + + // Ridah, small objects shouldn't hurt + if (VectorDistance( self->absmin, self->absmax) > 200) + T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, self->dmg, 1, 0, MOD_CRUSH); + + if (self->moveinfo.state == STATE_UP) + plat_go_down (self); + else if (self->moveinfo.state == STATE_DOWN) + plat_go_up (self); +} + + +void Use_Plat (edict_t *ent, edict_t *other, edict_t *activator) +{ + if (ent->think) + return; // already down + plat_go_down (ent); +} + + +void Touch_Plat_Center (edict_t *ent, edict_t *other, cplane_t *plane, csurface_t *surf) +{ +/* +// BEGIN: Xatrix/Ridah/Navigator/07-apr-1998 +if (!(other->cast_info.aiflags & AI_GRUNT)) +// END: Xatrix/Ridah/Navigator/07-apr-1998 + + if (!other->client) + return; +*/ + if (other->health <= 0) + return; + + ent = ent->enemy; // now point at the plat, not the trigger + + if (ent->moveinfo.state == STATE_BOTTOM) +// BEGIN: Xatrix/Ridah/Navigator/08-apr-1998 + { + edict_t *character=NULL; + int i=0; + + // inform characters of the trigger + while (character = level.characters[i++]) + { + if ((!character->client) && ((other == character) || (VectorDistance(character->s.origin, other->s.origin) < 512))) + character->target_ent = ent; + } + + plat_go_up (ent); + } +// END: Xatrix/Ridah/Navigator/08-apr-1998 + + else if (ent->moveinfo.state == STATE_TOP) + ent->nextthink = level.time + 1; // the player is still on the plat, so delay going down +} + +void plat_spawn_inside_trigger (edict_t *ent) +{ + edict_t *trigger; + vec3_t tmin, tmax; + +// +// middle trigger +// + trigger = G_Spawn(); + trigger->touch = Touch_Plat_Center; + trigger->movetype = MOVETYPE_NONE; + trigger->solid = SOLID_TRIGGER; + trigger->enemy = ent; + + tmin[0] = ent->mins[0] + 25; + tmin[1] = ent->mins[1] + 25; + tmin[2] = ent->mins[2]; + + tmax[0] = ent->maxs[0] - 25; + tmax[1] = ent->maxs[1] - 25; + tmax[2] = ent->maxs[2] + 8; + + tmin[2] = tmax[2] - (ent->pos1[2] - ent->pos2[2] + st.lip); + + if (ent->spawnflags & PLAT_LOW_TRIGGER) + tmax[2] = tmin[2] + 8; + + if (tmax[0] - tmin[0] <= 0) + { + tmin[0] = (ent->mins[0] + ent->maxs[0]) *0.5; + tmax[0] = tmin[0] + 1; + } + if (tmax[1] - tmin[1] <= 0) + { + tmin[1] = (ent->mins[1] + ent->maxs[1]) *0.5; + tmax[1] = tmin[1] + 1; + } + + VectorCopy (tmin, trigger->mins); + VectorCopy (tmax, trigger->maxs); + + gi.linkentity (trigger); +} + + +/*QUAKED func_plat (0 .5 .8) ? PLAT_LOW_TRIGGER +speed default 150 + +Plats are always drawn in the extended position, so they will light correctly. + +If the plat is the target of another trigger or button, it will start out disabled in the extended position until it is trigger, when it will lower and become a normal plat. + +"speed" overrides default 200. +"accel" overrides default 500 +"lip" overrides default 8 pixel lip + +If the "height" key is set, that will determine the amount the plat moves, instead of being implicitly determoveinfoned by the model's height. + +Set "sounds" to one of the following: +1) base fast +2) chain slow +*/ +void SP_func_plat (edict_t *ent) +{ + VectorClear (ent->s.angles); + ent->solid = SOLID_BSP; + ent->movetype = MOVETYPE_PUSH; + + gi.setmodel (ent, ent->model); + + ent->blocked = plat_blocked; + + if (!ent->speed) + ent->speed = 20; + else + ent->speed *= 0.1; + + if (!ent->accel) + ent->accel = 5; + else + ent->accel *= 0.1; + + if (!ent->decel) + ent->decel = 5; + else + ent->decel *= 0.1; + + if (!ent->dmg) + ent->dmg = 2; + + if (!st.lip) + st.lip = 8; + + // pos1 is the top position, pos2 is the bottom + VectorCopy (ent->s.origin, ent->pos1); + VectorCopy (ent->s.origin, ent->pos2); + if (st.height) + ent->pos2[2] -= st.height; + else + ent->pos2[2] -= (ent->maxs[2] - ent->mins[2]) - st.lip; + + ent->use = Use_Plat; + + plat_spawn_inside_trigger (ent); // the "start moving" trigger + + if (ent->targetname) + { + ent->moveinfo.state = STATE_UP; + } + else + { + VectorCopy (ent->pos2, ent->s.origin); + gi.linkentity (ent); + ent->moveinfo.state = STATE_BOTTOM; + } + + ent->moveinfo.speed = ent->speed; + ent->moveinfo.accel = ent->accel; + ent->moveinfo.decel = ent->decel; + ent->moveinfo.wait = ent->wait; + VectorCopy (ent->pos1, ent->moveinfo.start_origin); + VectorCopy (ent->s.angles, ent->moveinfo.start_angles); + VectorCopy (ent->pos2, ent->moveinfo.end_origin); + VectorCopy (ent->s.angles, ent->moveinfo.end_angles); + + // JOSEPH 13-MAY-99 + ent->moveinfo.sound_start = gi.soundindex ("world/plats/pt1_strt.wav"); + ent->moveinfo.sound_middle = gi.soundindex ("world/plats/pt1_mid.wav"); + ent->moveinfo.sound_end = gi.soundindex ("world/plats/pt1_end.wav"); + // END JOSEPH +} + +//==================================================================== + +/*QUAKED func_rotating (0 .5 .8) ? START_ON REVERSE X_AXIS Y_AXIS TOUCH_PAIN STOP ANIMATED ANIMATED_FAST +You need to have an origin brush as part of this entity. The center of that brush will be +the point around which it is rotated. It will rotate around the Z axis by default. You can +check either the X_AXIS or Y_AXIS box to change that. + +"speed" determines how fast it moves; default value is 100. +"dmg" damage to inflict when blocked (2 default) + +REVERSE will cause the it to rotate in the opposite direction. +STOP mean it will stop moving instead of pushing entities +*/ + +void rotating_blocked (edict_t *self, edict_t *other) +{ + // Ridah, rotating doors shouldn't hurt + //T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, self->dmg, 1, 0, MOD_CRUSH); + + // tell them to back up + if (other->svflags & SVF_MONSTER) + { + if (other->cast_info.move_avoid_reverse_walk) + other->cast_info.currentmove = other->cast_info.move_avoid_reverse_walk; + } +} + +void rotating_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + if (self->avelocity[0] || self->avelocity[1] || self->avelocity[2]) + { +// T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, self->dmg, 1, 0, MOD_CRUSH); + + // tell them to back up + if (other->svflags & SVF_MONSTER) + { + if (other->cast_info.move_avoid_reverse_walk) + other->cast_info.currentmove = other->cast_info.move_avoid_reverse_walk; + } + } +} + +void rotating_use (edict_t *self, edict_t *other, edict_t *activator) +{ + if (!VectorCompare (self->avelocity, vec3_origin)) + { + self->s.sound = 0; + VectorClear (self->avelocity); + self->touch = NULL; + } + else + { + self->s.sound = self->moveinfo.sound_middle; + VectorScale (self->movedir, self->speed, self->avelocity); + if (self->spawnflags & 16) + self->touch = rotating_touch; + } +} + +void SP_func_rotating (edict_t *ent) +{ + ent->solid = SOLID_BSP; + if (ent->spawnflags & 32) + ent->movetype = MOVETYPE_STOP; + else + ent->movetype = MOVETYPE_PUSH; + + // set the axis of rotation + VectorClear(ent->movedir); + if (ent->spawnflags & 4) + ent->movedir[2] = 1.0; + else if (ent->spawnflags & 8) + ent->movedir[0] = 1.0; + else // Z_AXIS + ent->movedir[1] = 1.0; + + // check for reverse rotation + if (ent->spawnflags & 2) + VectorNegate (ent->movedir, ent->movedir); + + if (!ent->speed) + ent->speed = 100; + if (!ent->dmg) + ent->dmg = 2; + +// ent->moveinfo.sound_middle = "world/doors/hydro1.wav"; + + ent->use = rotating_use; + if (ent->dmg) + ent->blocked = rotating_blocked; + + if (ent->spawnflags & 1) + ent->use (ent, NULL, NULL); + + if (ent->spawnflags & 64) + ent->s.effects |= EF_ANIM_ALL; + if (ent->spawnflags & 128) + ent->s.effects |= EF_ANIM_ALLFAST; + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); +} + +/* +====================================================================== + +BUTTONS + +====================================================================== +*/ + +// JOSEPH 27-MAY-99 +/*QUAKED func_button (0 .5 .8) ? AUTO_OPEN ONOFF NOMONSTER +When a button is touched, it moves some distance in the direction of it's angle, triggers all of it's targets, waits some time, then returns to it's original position where it can be triggered again. + +NOMONSTER monsters will not trigger this door + +"angle" determines the opening direction +"target" all entities with a matching targetname will be used +"speed" override the default 40 speed +"wait" override the default 1 second wait (-1 = never return) +"lip" override the default 4 pixel lip remaining at end of move +"health" if set, the button must be killed instead of touched +"sounds" +1) silent +2) normal +3) valve +4) wheel +5) console switch +6) push button +7) thunk switch +8) wall +*/ +// END JOSEPH + +void button_done (edict_t *self) +{ + self->moveinfo.state = STATE_BOTTOM; + self->s.effects &= ~EF_ANIM23; + self->s.effects |= EF_ANIM01; +} + +// JOSEPH 21-MAY-99 +void button_return (edict_t *self) +{ + int setbutton = 0; + + self->moveinfo.state = STATE_DOWN; + + { + int i; + edict_t *e = NULL; + + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->classname) && (!strcmp(e->classname, "func_lift")) && + (e->target2) && (self->target2) && (!strcmp(e->target2, self->target2))) + { + self->moveinfo.start_origin[2] = e->s.origin[2] + self->handleflag; + Move_Calc (self, self->moveinfo.start_origin, button_done); + setbutton = 1; + } + } + } + + if (!setbutton) + Move_Calc (self, self->moveinfo.start_origin, button_done); + + self->s.frame = 0; + + if (self->health) + self->takedamage = DAMAGE_YES; +} + + +void button_return2 (edict_t *self) +{ + int setbutton = 0; + + self->moveinfo.state = STATE_DOWN; + + { + int i; + edict_t *e = NULL; + + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->classname) && (!strcmp(e->classname, "func_lift")) && + (e->target2) && (self->target2) && (!strcmp(e->target2, self->target2))) + { + self->moveinfo.start_origin[2] = e->s.origin[2] + self->handleflag; + Move_Calc (self, self->moveinfo.start_origin, button_done); + setbutton = 1; + } + } + } + + if (!setbutton) + Move_Calc (self, self->moveinfo.start_origin, button_done); + + self->s.frame = 0; + + if (self->health) + self->takedamage = DAMAGE_YES; +} +// END JOSEPH + +void button_wait (edict_t *self) +{ + self->moveinfo.state = STATE_TOP; + self->s.effects &= ~EF_ANIM01; + self->s.effects |= EF_ANIM23; + + G_UseTargets (self, self->activator); + + // RAFAEL + if (self->activate_flags & ACTIVATE_AND_OPEN) + self->activate_flags &= ~ACTIVATE_AND_OPEN; + + self->s.frame = 1; + + if (self->moveinfo.wait >= 0) + { + self->nextthink = level.time + self->moveinfo.wait; + self->think = button_return; + } +} + +void button_fire (edict_t *self) +{ + if (self->moveinfo.state == STATE_UP || self->moveinfo.state == STATE_TOP) + return; + +// BEGIN: Xatrix/Ridah/Navigator/07-apr-1998 + // if this button hasn't been pressed yet, spawn a node here + if (!self->deadflag && nav_dynamic->value && self->activator->client) + { + NAV_CreateNode( self->activator, self->activator->s.origin, vec3_origin, (short) (NODE_BUTTON + (NODE_DUCKING*(self->activator->maxs[2] == 4))), -1, self->activator->waterlevel); + + self->deadflag = true; + self->nav_data.cache_node = (int)(self->activator->nav_build_data->current_node->index); + + self->activator->nav_build_data->current_node->goal_ent = self; + } + + self->timestamp = level.time; +// END: Xatrix/Ridah/Navigator/07-apr-1998 + + self->moveinfo.state = STATE_UP; + if (self->moveinfo.sound_start && !(self->flags & FL_TEAMSLAVE)) + gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_start, 1, ATTN_STATIC, 0); + + // JOSEPH 21-MAY-99 + { + int i; + edict_t *e = NULL; + + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->classname) && (!strcmp(e->classname, "func_lift")) && + (e->target2) && (self->target2) && (!strcmp(e->target2, self->target2))) + { + self->moveinfo.end_origin[2] = e->s.origin[2] + self->handleflag; + Move_Calc (self, self->moveinfo.end_origin, button_wait); + return; + } + } + } + Move_Calc (self, self->moveinfo.end_origin, button_wait); + // END JOSEPH +} + +void button_use (edict_t *self, edict_t *other, edict_t *activator) +{ + // JOSEPH 21-MAY-99 + if (self->owner && (self->owner->spawnflags & DOOR_NOMONSTER) && (other->svflags & SVF_MONSTER)) + return; + // END JOSEPH + + // RAFAEL + if (self->activate_flags & ACTIVATE_GENERAL && activator->client) + { + if (!(self->activate_flags & ACTIVATE_AND_OPEN)) + { + //gi.dprintf ("activator: %s next to button\n", activator->classname); + return; + } + else + { + //gi.dprintf ("activator: %s used the button\n", activator->classname); + } + } + + self->activator = activator; + button_fire (self); +} + +void button_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + // JOSEPH 15-MAY-99 + if (self->owner && (self->owner->spawnflags & DOOR_NOMONSTER) && (other->svflags & SVF_MONSTER)) + return; + // END JOSEPH + + // RAFAEL + if (self->activate_flags & ACTIVATE_GENERAL && other->client) + { + if (!(self->activate_flags & ACTIVATE_AND_OPEN)) + { + // gi.dprintf ("other: %s next to button\n", other->classname); + return; + } + else + { + // gi.dprintf ("other: %s used the button\n", other->classname); + } + } + + if (other->health <= 0) + return; + + self->activator = other; + button_fire (self); +} + +void button_killed (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + self->activator = attacker; + self->health = self->max_health; + self->takedamage = DAMAGE_NO; + button_fire (self); +} + +// JOSEPH 27-MAY-99 +void func_button_sound (edict_t *ent, int buttonsound) +{ + switch (buttonsound) + { + default: + case 0: + case 2: + ent->moveinfo.sound_start = gi.soundindex ("world/switches/butn2.wav"); + break; + case 3: + ent->moveinfo.sound_start = gi.soundindex ("world/switches/valve.wav"); + break; + case 4: + ent->moveinfo.sound_start = gi.soundindex ("world/switches/wheel.wav"); + break; + case 5: + ent->moveinfo.sound_start = gi.soundindex ("world/switches/console switch.wav"); + break; + case 6: + ent->moveinfo.sound_start = gi.soundindex ("world/switches/pushbutton.wav"); + break; + case 7: + ent->moveinfo.sound_start = gi.soundindex ("world/switches/thunk switch.wav"); + break; + case 8: + ent->moveinfo.sound_start = gi.soundindex ("world/switches/wall.wav"); + break; + } +} + +void SP_func_button (edict_t *ent) +{ + vec3_t abs_movedir; + float dist; + + G_SetMovedir (ent->s.angles, ent->movedir); + ent->movetype = MOVETYPE_STOP; + ent->solid = SOLID_BSP; + gi.setmodel (ent, ent->model); + + if (ent->sounds != 1) + { + func_button_sound (ent, ent->sounds); + } + + //if (ent->sounds != 1) + // ent->moveinfo.sound_start = gi.soundindex ("world/switches/butn2.wav"); + + if (!ent->speed) + ent->speed = 40; + if (!ent->accel) + ent->accel = ent->speed; + if (!ent->decel) + ent->decel = ent->speed; + + if (!ent->wait) + ent->wait = 3; + if (!st.lip) + st.lip = 4; + + VectorCopy (ent->s.origin, ent->pos1); + abs_movedir[0] = fabs(ent->movedir[0]); + abs_movedir[1] = fabs(ent->movedir[1]); + abs_movedir[2] = fabs(ent->movedir[2]); + dist = abs_movedir[0] * ent->size[0] + abs_movedir[1] * ent->size[1] + abs_movedir[2] * ent->size[2] - st.lip; + VectorMA (ent->pos1, dist, ent->movedir, ent->pos2); + + ent->use = button_use; + ent->s.effects |= EF_ANIM01; + + if (ent->health) + { + ent->max_health = ent->health; + ent->die = button_killed; + ent->takedamage = DAMAGE_YES; + } + else if (! ent->targetname) + ent->touch = button_touch; + + ent->moveinfo.state = STATE_BOTTOM; + + ent->moveinfo.speed = ent->speed; + ent->moveinfo.accel = ent->accel; + ent->moveinfo.decel = ent->decel; + ent->moveinfo.wait = ent->wait; + VectorCopy (ent->pos1, ent->moveinfo.start_origin); + VectorCopy (ent->s.angles, ent->moveinfo.start_angles); + VectorCopy (ent->pos2, ent->moveinfo.end_origin); + VectorCopy (ent->s.angles, ent->moveinfo.end_angles); + + gi.linkentity (ent); + + // RAFAEL + if (!(ent->spawnflags & 1)) + ent->activate_flags |= ACTIVATE_GENERAL; +} +// END JOSEPH + +// JOSEPH 20-MAY-99 +void func_door_sound (edict_t *ent, int doorsound) +{ + switch (doorsound) + { + default: + case 0: + case 2: + ent->moveinfo.sound_start = gi.soundindex ("world/doors/dr1_strt.wav"); + ent->moveinfo.sound_middle = gi.soundindex ("world/doors/dr1_mid.wav"); + ent->moveinfo.sound_end = gi.soundindex ("world/doors/dr1_end.wav"); + break; + case 3: + ent->moveinfo.sound_start = gi.soundindex ("world/doors/dr2_strt.wav"); + ent->moveinfo.sound_middle = gi.soundindex ("world/doors/dr2_mid.wav"); + ent->moveinfo.sound_end2 = gi.soundindex ("world/doors/dr2_endb.wav"); + break; + case 4: + ent->moveinfo.sound_start = gi.soundindex ("world/doors/dr3_strt.wav"); + ent->moveinfo.sound_middle = gi.soundindex ("world/doors/dr3_mid.wav"); + ent->moveinfo.sound_end2 = gi.soundindex ("world/doors/dr3_endb.wav"); + break; + break; + case 5: + ent->moveinfo.sound_start = gi.soundindex ("world/doors/dr4_strt.wav"); + ent->moveinfo.sound_middle = gi.soundindex ("world/doors/dr4_mid.wav"); + ent->moveinfo.sound_end = gi.soundindex ("world/doors/dr4_end.wav"); + break; + case 6: + ent->moveinfo.sound_start = gi.soundindex ("world/doors/dr5_strt.wav"); + ent->moveinfo.sound_middle = gi.soundindex ("world/doors/dr5_mid.wav"); + ent->moveinfo.sound_end = gi.soundindex ("world/doors/dr5_end.wav"); + break; + case 7: + ent->moveinfo.sound_start = gi.soundindex ("world/doors/dr6_strt.wav"); + ent->moveinfo.sound_middle = gi.soundindex ("world/doors/dr6_mid.wav"); + ent->moveinfo.sound_end = gi.soundindex ("world/doors/dr6_end.wav"); + break; + case 8: + ent->moveinfo.sound_start = gi.soundindex ("world/doors/dr7_strt.wav"); + ent->moveinfo.sound_middle = gi.soundindex ("world/doors/dr7_mid.wav"); + ent->moveinfo.sound_end = gi.soundindex ("world/doors/dr7_end.wav"); + break; + case 9: + ent->moveinfo.sound_start = gi.soundindex ("world/doors/drawer_w1.wav"); + ent->moveinfo.sound_end = gi.soundindex ("world/doors/drawer_w2.wav"); + break; + case 10: + ent->moveinfo.sound_start = gi.soundindex ("world/doors/drawer_m1.wav"); + ent->moveinfo.sound_end = gi.soundindex ("world/doors/drawer_m2.wav"); + break; + } +} +// END JOSEPH + + +// JOSEPH 20-MAY-99 +/* +====================================================================== + +DOORS + + spawn a trigger surrounding the entire team unless it is + already targeted by another + +====================================================================== +*/ + +/*QUAKED func_door (0 .5 .8) ? START_OPEN AUTO_OPEN CRUSHER NOMONSTER ANIMATED TOGGLE ANIMATED_FAST SURF2_ALPHA +TOGGLE wait in both the start and end states for a trigger event. +START_OPEN the door to moves to its destination when spawned, and operate in reverse. It is used to temporarily or permanently close off an area when triggered (not useful for touch or takedamage doors). +NOMONSTER monsters will not trigger this door + +"message" is printed when the door is touched if it is a trigger door and it hasn't been fired yet +"angle" determines the opening direction +"targetname" if set, no touch field will be spawned and a remote button or trigger field activates the door. +"health" if set, door must be shot open +"speed" movement speed (100 default) +"wait" wait before returning (3 default, -1 = never return) +"lip" lip remaining at end of move (8 default) +"dmg" damage to inflict when blocked (2 default) +"sounds" default = 2; +1) silent +2) Medium metal sliding rollup door +3) Wooden swinging door +4) Metal swinging door +5) Metal light sliding TRAIN door +6) Very large rolling metal door +7) Metal swing-up garage door +8) Wooden swinging door two +9) Wooden drawer +10) Metal drawer +*/ + +// END JOSEPH + +void door_use_areaportals (edict_t *self, qboolean open) +{ + edict_t *t = NULL; + + if (!self->target) + return; + + while ((t = G_Find (t, FOFS(targetname), self->target))) + { + if (Q_stricmp(t->classname, "func_areaportal") == 0) + { + gi.SetAreaPortalState (t->style, open); + } + } +} + +void door_go_down (edict_t *self); + +// JOSEPH 7-OCT-98 +void door_hit_top (edict_t *self) +{ + if (!(self->flags & FL_TEAMSLAVE)) + { + if (self->moveinfo.sound_end) + // Open end + gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_end, 1, ATTN_STATIC, 0); + self->s.sound = 0; + } + self->moveinfo.state = STATE_TOP; + if (self->spawnflags & DOOR_TOGGLE) + return; + if (self->moveinfo.wait >= 0) + { + self->think = door_go_down; + self->nextthink = level.time + self->moveinfo.wait; + } +} + +void door_hit_bottom (edict_t *self) +{ + if (!(self->flags & FL_TEAMSLAVE)) + { + if (self->moveinfo.sound_end2) + // Close end + gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_end2, 1, ATTN_STATIC, 0); + else if (self->moveinfo.sound_end) + gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_end, 1, ATTN_STATIC, 0); + self->s.sound = 0; + } + self->moveinfo.state = STATE_BOTTOM; + door_use_areaportals (self, false); +} + +void door_go_down (edict_t *self) +{ + if (!(self->flags & FL_TEAMSLAVE)) + { + if (self->moveinfo.sound_start2) + // Close start + gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_start2, 1, ATTN_STATIC, 0); + else if (self->moveinfo.sound_start) + gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_start, 1, ATTN_STATIC, 0); + if (self->moveinfo.sound_middle2) + self->s.sound = self->moveinfo.sound_middle2; + else + self->s.sound = self->moveinfo.sound_middle; + } + if (self->max_health) + { + self->takedamage = DAMAGE_YES; + self->health = self->max_health; + } + + self->moveinfo.state = STATE_DOWN; + if (strcmp(self->classname, "func_door") == 0) + Move_Calc (self, self->moveinfo.start_origin, door_hit_bottom); + else if (strcmp(self->classname, "func_door_rotating") == 0) + AngleMove_Calc (self, door_hit_bottom); +// Joseph + else if (strcmp(self->classname, "func_subdoor_base") == 0) + AngleMove_Calc (self, door_hit_bottom); + else if (strcmp(self->classname, "func_subdoor_handle2") == 0) + AngleMove_Calc (self, door_hit_bottom); +} + +void door_go_up (edict_t *self, edict_t *activator) +{ + if (self->moveinfo.state == STATE_UP) + return; // already going up + + if (self->moveinfo.state == STATE_TOP) + { // reset top wait time + if (self->moveinfo.wait >= 0) + self->nextthink = level.time + self->moveinfo.wait; + return; + } + + if (!(self->flags & FL_TEAMSLAVE)) + { + if (self->moveinfo.sound_start) + // Open start + gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_start, 1, ATTN_STATIC, 0); + self->s.sound = self->moveinfo.sound_middle; + } + self->moveinfo.state = STATE_UP; + if (strcmp(self->classname, "func_door") == 0) + Move_Calc (self, self->moveinfo.end_origin, door_hit_top); + else if (strcmp(self->classname, "func_door_rotating") == 0) + { + + if (!self->avelocity[0] && !self->avelocity[1] && !self->avelocity[2]) + { + // Ridah, rotate away from the player + if (self->target_ent && !self->style) + { + static vec3_t mins = {-12, -12, -4}; + static vec3_t maxs = { 12, 12, 4}; + float yaw; + vec3_t pos; +// vec3_t vec; + trace_t tr; +// float fraction; + +//gi.dprintf("yo\n"); + + // first, trace the self->target_ent towards the door + VectorAdd( self->absmin, self->absmax, pos ); + VectorScale( pos, 0.5, pos ); + +// AngleVectors( self->target_ent->s.angles, vec, NULL, NULL ); +// VectorMA( self->target_ent->s.origin, 128, vec, pos ); + + tr = gi.trace( self->target_ent->s.origin, mins, maxs, pos, self->target_ent, CONTENTS_SOLID ); + +// fraction = tr.fraction; + +//NAV_DrawLine( self->target_ent->s.origin, tr.endpos ); + + for (yaw=0.02; yaw<0.1; yaw += 0.02) + { + // try rotating it, see if we hit the activator + VectorScale (self->moveinfo.end_angles, yaw, self->s.angles); + gi.linkentity(self); + +// tr = gi.trace( self->target_ent->s.origin, mins, maxs, pos, self->target_ent, CONTENTS_SOLID ); + + if ( !ValidBoxAtLoc(tr.endpos, mins, maxs, self->target_ent, CONTENTS_SOLID) ) +// if ( tr.fraction < fraction ) + { + VectorNegate (self->moveinfo.end_angles, self->moveinfo.end_angles); + break; + } + } + + // move it back + VectorClear (self->s.angles); + gi.linkentity(self); + } + } + + AngleMove_Calc (self, door_hit_top); + } + else if (strcmp(self->classname, "func_subdoor_base") == 0) + AngleMove_Calc (self, door_hit_top); + else if (strcmp(self->classname, "func_subdoor_handle2") == 0) + AngleMove_Calc (self, door_hit_top); + + G_UseTargets (self, activator); + door_use_areaportals (self, true); +} + +#if 0 +void door_use (edict_t *self, edict_t *other, edict_t *activator) +{ + edict_t *ent; + + + // RAFAEL + if (activator) + { + if (self->activate_flags & ACTIVATE_GENERAL && (activator->client)) + { + if (!(self->activate_flags & ACTIVATE_AND_OPEN)) + { + //gi.dprintf ("activator: %s next to door\n", activator->classname); + return; + } + else + { + self->activate_flags &= ~ACTIVATE_AND_OPEN; + //gi.dprintf ("activator: %s used the door\n", activator->classname); + } + } + else if (!activator->client /*&& activator->cast_group == 1*/ && self->key) + { + return; + } + + // HACK to stop rockets from opening doors + else if (activator->movetype == MOVETYPE_FLYMISSILE) + return; + } + + + // hack this may cause us problems test first + if (self->flags & FL_TEAMSLAVE) + return; + + if (self->spawnflags & DOOR_TOGGLE) + { + if (self->moveinfo.state == STATE_UP || self->moveinfo.state == STATE_TOP) + { + // trigger all paired doors + for (ent = self ; ent ; ent = ent->teamchain) + { + ent->message = NULL; + ent->touch = NULL; + door_go_down (ent); + } + return; + } + } + + // trigger all paired doors + for (ent = self ; ent ; ent = ent->teamchain) + { +// BEGIN: Xatrix/Ridah/Navigator/08-apr-1998 + // inform others of the trigger + if (activator) + { + ent->target_ent = activator; + activator->target_ent = ent; + } + else + ent->target_ent = NULL; +// END: Xatrix/Ridah/Navigator/08-apr-1998 + + ent->message = NULL; + ent->touch = NULL; + door_go_up (ent, activator); + + } +}; +#endif + +void door_use (edict_t *self, edict_t *other, edict_t *activator) +{ + edict_t *ent; + + + // RAFAEL + if (activator) + { + if (self->activate_flags & ACTIVATE_GENERAL && (activator->client)) + { + if (!(self->activate_flags & ACTIVATE_AND_OPEN)) + { + //gi.dprintf ("activator: %s next to door\n", activator->classname); + return; + } + else + { + self->activate_flags &= ~ACTIVATE_AND_OPEN; + //gi.dprintf ("activator: %s used the door\n", activator->classname); + } + } + else if (!activator->client /*&& activator->cast_group == 1*/ && self->key) + { + return; + } + + // HACK to stop rockets from opening doors + else if (activator->movetype == MOVETYPE_FLYMISSILE) + return; + } + + + if (self->flags & FL_TEAMSLAVE) + { + // this will help the teamed door to open if the activated door is FL_TEAMSLAVE + if (!(strcmp (self->classname, "func_door"))) + { + if (self->teammaster) + { + edict_t *teammaster; + + teammaster = self->teammaster; + + if (teammaster->spawnflags & DOOR_TOGGLE) + { + if (teammaster->moveinfo.state == STATE_UP || teammaster->moveinfo.state == STATE_TOP) + { + // trigger all paired doors + for (ent = teammaster ; ent ; ent = ent->teamchain) + { + ent->message = NULL; + ent->touch = NULL; + door_go_down (ent); + } + return; + } + } + + // trigger all paired doors + for (ent = teammaster ; ent ; ent = ent->teamchain) + { + // inform others of the trigger + if (activator) + { + ent->target_ent = activator; + activator->target_ent = ent; + } + else + ent->target_ent = NULL; + + ent->message = NULL; + ent->touch = NULL; + door_go_up (ent, activator); + + } + + } + else + return; + + } + else + return; + } + else + { + if (self->spawnflags & DOOR_TOGGLE) + { + if (self->moveinfo.state == STATE_UP || self->moveinfo.state == STATE_TOP) + { + // trigger all paired doors + for (ent = self ; ent ; ent = ent->teamchain) + { + ent->message = NULL; + ent->touch = NULL; + door_go_down (ent); + } + return; + } + } + + // trigger all paired doors + for (ent = self ; ent ; ent = ent->teamchain) + { + // inform others of the trigger + if (activator) + { + ent->target_ent = activator; + activator->target_ent = ent; + } + else + ent->target_ent = NULL; + + ent->message = NULL; + ent->touch = NULL; + door_go_up (ent, activator); + + } + } +}; + + +void Touch_DoorTrigger (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + if (other->health <= 0) + return; +/* + if (!(other->svflags & SVF_MONSTER) && (!other->client)) + return; +*/ + if (self->key) + return; + + if (other->cast_group == 1) + ; + else if ( (self->owner->spawnflags & DOOR_NOMONSTER) && (other->svflags & SVF_MONSTER) + && ((self->owner->cast_group != 1) || (other->cast_group != 1) || (!other->leader))) // Ridah 25-May-99, new flag for use on Bar doors so friendly guys don't get so stuck + return; + + if (level.time < self->touch_debounce_time) + return; + self->touch_debounce_time = level.time + 1.0; + + door_use (self->owner, other, other); +} + +void Think_CalcMoveSpeed (edict_t *self) +{ + edict_t *ent; + float min; + float time; + float newspeed; + float ratio; + float dist; + + if (self->flags & FL_TEAMSLAVE) + return; // only the team master does this + + // find the smallest distance any member of the team will be moving + min = fabs(self->moveinfo.distance); + for (ent = self->teamchain; ent; ent = ent->teamchain) + { + dist = fabs(ent->moveinfo.distance); + if (dist < min) + min = dist; + } + + time = min / self->moveinfo.speed; + + // adjust speeds so they will all complete at the same time + for (ent = self; ent; ent = ent->teamchain) + { + newspeed = fabs(ent->moveinfo.distance) / time; + ratio = newspeed / ent->moveinfo.speed; + if (ent->moveinfo.accel == ent->moveinfo.speed) + ent->moveinfo.accel = newspeed; + else + ent->moveinfo.accel *= ratio; + if (ent->moveinfo.decel == ent->moveinfo.speed) + ent->moveinfo.decel = newspeed; + else + ent->moveinfo.decel *= ratio; + ent->moveinfo.speed = newspeed; + } +} + +void Think_SpawnDoorTrigger (edict_t *ent) +{ + edict_t *other; + vec3_t mins, maxs; + + if (ent->flags & FL_TEAMSLAVE) + return; // only the team leader spawns a trigger + + VectorCopy (ent->absmin, mins); + VectorCopy (ent->absmax, maxs); + + for (other = ent->teamchain ; other ; other=other->teamchain) + { + AddPointToBounds (other->absmin, mins, maxs); + AddPointToBounds (other->absmax, mins, maxs); + } + + // expand + mins[0] -= 60; + mins[1] -= 60; + maxs[0] += 60; + maxs[1] += 60; + + other = G_Spawn (); + VectorCopy (mins, other->mins); + VectorCopy (maxs, other->maxs); + other->owner = ent; + other->solid = SOLID_TRIGGER; + other->movetype = MOVETYPE_NONE; + other->touch = Touch_DoorTrigger; + gi.linkentity (other); + + if (ent->spawnflags & DOOR_START_OPEN) + door_use_areaportals (ent, true); + + Think_CalcMoveSpeed (ent); +} + +void door_blocked (edict_t *self, edict_t *other) +{ + edict_t *ent; + + if (!(other->svflags & SVF_MONSTER) && !(other->client) ) + { + + // give it a chance to go away on it's own terms (like gibs) + T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, 100000, 1, 0, MOD_CRUSH); + // if it's still there, nuke it + if (other) + BecomeExplosion1 (other); + return; + + } + + if (!strcmp (self->classname, "func_door_rotating")) + { + // don't do any damage + + // tell them to back up +// if (other->svflags & SVF_MONSTER) +// { +// if (other->cast_info.move_avoid_reverse_walk) +// other->cast_info.currentmove = other->cast_info.move_avoid_reverse_walk; +// } + + } + else + { + if (other->groundentity == self) + if (developer->value) + gi.dprintf ("%s inflicting damage on %s\n", self->classname, other->classname); + + // Ridah, small objects shouldn't hurt + if (VectorDistance( self->absmin, self->absmax) > 200) + T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, self->dmg, 1, 0, MOD_CRUSH); + } + +//if (!ValidBoxAtLoc( other->s.origin, other->mins, other->maxs, other, MASK_PLAYERSOLID)) +// gi.dprintf( "door stuck in entity\n" ); +/* +// BEGIN: Xatrix/Ridah/Navigator/16-apr-1998 + // Hack, Cast's that get stuck in doors should duck at all costs + if ((other->svflags & SVF_MONSTER) && (other->cast_info.move_crstand)) + { + other->maxs[2] = DUCKING_MAX_Z; + if (other->cast_info.move_crouch_down) + { + other->cast_info.currentmove = other->cast_info.move_crouch_down; + return; + } + } +// END: Xatrix/Ridah/Navigator/16-apr-1998 +*/ + if (self->spawnflags & DOOR_CRUSHER) + return; + + +// if a door has a negative wait, it would never come back if blocked, +// so let it just squash the object to death real fast + if (self->moveinfo.wait >= 0) + { + if (self->moveinfo.state == STATE_DOWN) + { + for (ent = self->teammaster ; ent ; ent = ent->teamchain) + door_go_up (ent, ent->activator); + } + else + { + for (ent = self->teammaster ; ent ; ent = ent->teamchain) + door_go_down (ent); + } + } +} + +void door_killed (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + edict_t *ent; + + for (ent = self->teammaster ; ent ; ent = ent->teamchain) + { + ent->health = ent->max_health; + ent->takedamage = DAMAGE_NO; + } + door_use (self->teammaster, attacker, attacker); +} + +void door_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + if (!(other->client) && !(other->svflags & SVF_MONSTER)) + return; + + if (level.time < self->touch_debounce_time) + return; + self->touch_debounce_time = level.time + 5.0; + + gi.centerprintf (other, "%s", self->message); + // JOSEPH 29-MAR-99 + //gi.sound (other, CHAN_AUTO, gi.soundindex ("misc/talk1.wav"), 1, ATTN_NORM, 0); + // END JOSEPH +} + +void SP_func_door (edict_t *ent) +{ + vec3_t abs_movedir; + + // JOSEPH 1-OCT-98 + if (ent->sounds != 1) + { + func_door_sound (ent, ent->sounds); + } + // END JOSEPH + + G_SetMovedir (ent->s.angles, ent->movedir); + ent->movetype = MOVETYPE_PUSH; + ent->solid = SOLID_BSP; + gi.setmodel (ent, ent->model); + + ent->blocked = door_blocked; + ent->use = door_use; + + if (!ent->speed) + ent->speed = 100; + + if (!ent->accel) + ent->accel = ent->speed; + if (!ent->decel) + ent->decel = ent->speed; + + if (!ent->wait) + ent->wait = 3; + if (!st.lip) + st.lip = 8; + if (!ent->dmg) + ent->dmg = 2; + + // calculate second position + VectorCopy (ent->s.origin, ent->pos1); + abs_movedir[0] = fabs(ent->movedir[0]); + abs_movedir[1] = fabs(ent->movedir[1]); + abs_movedir[2] = fabs(ent->movedir[2]); + ent->moveinfo.distance = abs_movedir[0] * ent->size[0] + abs_movedir[1] * ent->size[1] + abs_movedir[2] * ent->size[2] - st.lip; + VectorMA (ent->pos1, ent->moveinfo.distance, ent->movedir, ent->pos2); + + // if it starts open, switch the positions + if (ent->spawnflags & DOOR_START_OPEN) + { + VectorCopy (ent->pos2, ent->s.origin); + VectorCopy (ent->pos1, ent->pos2); + VectorCopy (ent->s.origin, ent->pos1); + } + + ent->moveinfo.state = STATE_BOTTOM; + + if (ent->health) + { + ent->takedamage = DAMAGE_YES; + ent->die = door_killed; + ent->max_health = ent->health; + } + else if (ent->targetname && ent->message) + { + gi.soundindex ("misc/talk.wav"); + ent->touch = door_touch; + } + + ent->moveinfo.speed = ent->speed; + ent->moveinfo.accel = ent->accel; + ent->moveinfo.decel = ent->decel; + ent->moveinfo.wait = ent->wait; + VectorCopy (ent->pos1, ent->moveinfo.start_origin); + VectorCopy (ent->s.angles, ent->moveinfo.start_angles); + VectorCopy (ent->pos2, ent->moveinfo.end_origin); + VectorCopy (ent->s.angles, ent->moveinfo.end_angles); + + if (ent->spawnflags & 16) + ent->s.effects |= EF_ANIM_ALL; + if (ent->spawnflags & 64) + ent->s.effects |= EF_ANIM_ALLFAST; + + // to simplify logic elsewhere, make non-teamed doors into a team of one + if (!ent->team) + ent->teammaster = ent; + + gi.linkentity (ent); + + ent->nextthink = level.time + FRAMETIME; + if (ent->health || ent->targetname) + ent->think = Think_CalcMoveSpeed; + else + ent->think = Think_SpawnDoorTrigger; + + if (ent->spawnflags & 128) + ent->s.renderfx2 |= RF2_SURF_ALPHA; + + // RAFAEL + if (!(ent->spawnflags & 2)) + ent->activate_flags |= ACTIVATE_GENERAL; + +} + +// JOSEPH 20-MAY-99 +/*QUAKED func_door_rotating (0 .5 .8) ? START_OPEN REVERSE SURF_ALPHA NOMONSTER ANIMATED TOGGLE X_AXIS Y_AXIS +TOGGLE causes the door to wait in both the start and end states for a trigger event. + +START_OPEN the door to moves to its destination when spawned, and operate in reverse. It is used to temporarily or permanently close off an area when triggered (not useful for touch or takedamage doors). +NOMONSTER monsters will not trigger this door + +You need to have an origin brush as part of this entity. The center of that brush will be +the point around which it is rotated. It will rotate around the Z axis by default. You can +check either the X_AXIS or Y_AXIS box to change that. + +"distance" is how many degrees the door will be rotated. +"speed" determines how fast the door moves; default value is 100. + +REVERSE will cause the door to rotate in the opposite direction. + +"style" 0 = rotate away from it's activator, 1 = fixed rotation (default 0) +"message" is printed when the door is touched if it is a trigger door and it hasn't been fired yet +"angle" determines the opening direction +"targetname" if set, no touch field will be spawned and a remote button or trigger field activates the door. +"health" if set, door must be shot open +"speed" movement speed (100 default) +"wait" wait before returning (3 default, -1 = never return) +"dmg" damage to inflict when blocked (2 default) +"sounds" default = 2; +1) silent +2) Medium metal sliding rollup door +3) Wooden swinging door +4) Metal swinging door +5) Metal light sliding TRAIN door +6) Very large rolling metal door +7) Metal swing-up garage door +8) Wooden swinging door two +9) Wooden drawer +10) Metal drawer +*/ +// END JOSEPH + +void SP_func_door_rotating (edict_t *ent) +{ + VectorClear (ent->s.angles); + + // set the axis of rotation + VectorClear(ent->movedir); + if (ent->spawnflags & DOOR_X_AXIS) + ent->movedir[2] = 1.0; + else if (ent->spawnflags & DOOR_Y_AXIS) + ent->movedir[0] = 1.0; + else // Z_AXIS + ent->movedir[1] = 1.0; + + // check for reverse rotation + if (ent->spawnflags & DOOR_REVERSE) + VectorNegate (ent->movedir, ent->movedir); + + if (!st.distance) + { + gi.dprintf("%s at %s with no distance set\n", ent->classname, vtos(ent->s.origin)); + st.distance = 90; + } + + VectorCopy (ent->s.angles, ent->pos1); + VectorMA (ent->s.angles, st.distance, ent->movedir, ent->pos2); + ent->moveinfo.distance = st.distance; + + ent->movetype = MOVETYPE_PUSH; + ent->solid = SOLID_BSP; + gi.setmodel (ent, ent->model); + + ent->blocked = door_blocked; + ent->use = door_use; + + if (!ent->speed) + ent->speed = 100; + + if (!ent->accel) + ent->accel = ent->speed; + if (!ent->decel) + ent->decel = ent->speed; + + if (!ent->wait) + ent->wait = 3; + if (!ent->dmg) + ent->dmg = 2; + + // JOSEPH 1-OCT-98 + if (ent->sounds != 1) + { + func_door_sound (ent, ent->sounds); + } + // END JOSEPH + + // if it starts open, switch the positions + if (ent->spawnflags & DOOR_START_OPEN) + { + VectorCopy (ent->pos2, ent->s.angles); + VectorCopy (ent->pos1, ent->pos2); + VectorCopy (ent->s.angles, ent->pos1); + VectorNegate (ent->movedir, ent->movedir); + } + + if (ent->health) + { + ent->takedamage = DAMAGE_YES; + ent->die = door_killed; + ent->max_health = ent->health; + } + + if (ent->targetname && ent->message) + { + gi.soundindex ("misc/talk.wav"); + ent->touch = door_touch; + } + + ent->moveinfo.state = STATE_BOTTOM; + ent->moveinfo.speed = ent->speed; + ent->moveinfo.accel = ent->accel; + ent->moveinfo.decel = ent->decel; + ent->moveinfo.wait = ent->wait; + VectorCopy (ent->s.origin, ent->moveinfo.start_origin); + VectorCopy (ent->pos1, ent->moveinfo.start_angles); + VectorCopy (ent->s.origin, ent->moveinfo.end_origin); + VectorCopy (ent->pos2, ent->moveinfo.end_angles); + + if (ent->spawnflags & 16) + ent->s.effects |= EF_ANIM_ALL; + + // to simplify logic elsewhere, make non-teamed doors into a team of one + if (!ent->team) + ent->teammaster = ent; + + gi.linkentity (ent); + + ent->nextthink = level.time + FRAMETIME; + + //if (ent->health || ent->targetname) + // ent->think = Think_CalcMoveSpeed; + //else + if (ent->key == -1 && ent->targetname) + ent->think = Think_SpawnDoorTrigger; + else if (ent->targetname) + ent->think = Think_CalcMoveSpeed; + else + ent->think = Think_SpawnDoorTrigger; + + // RAFAEL + //if (!(ent->spawnflags & 256)) + ent->activate_flags |= ACTIVATE_GENERAL; + + if ((ent->spawnflags & 4)) + ent->s.renderfx2 |= RF2_SURF_ALPHA; + +} + +// Joseph + +/*QUAKED func_subdoor_base (0 .5 .8) ? X REVERSE CRUSHER NOMONSTER ANIMATED TOGGLE X_AXIS Y_AXIS AUTO_OPEN + +The func_subdoor_handle1 will rotate 90 deg then the door will open with func_subdoor_handle2. + +TOGGLE causes the door to wait in both the start and end states for a trigger event. + +NOMONSTER monsters will not trigger this door + +You need to have an origin brush as part of this entity. The center of that brush will be +the point around which it is rotated. It will rotate around the Z axis by default. You can +check either the X_AXIS or Y_AXIS box to change that. + +You also need a: + + func_subdoor_handle1 - Handle with origin in the center + + func_subdoor_handle2 - Handle with origin at the door origin + + Both handles are in the same area in level space + +"distance" is how many degrees the door will be rotated. +"speed" determines how fast the door moves; default value is 100. + +REVERSE will cause the door to rotate in the opposite direction. + +"message" is printed when the door is touched if it is a trigger door and it hasn't been fired yet +"angle" determines the opening direction +"targetname" if set, no touch field will be spawned and a remote button or trigger field activates the door. +"health" if set, door must be shot open +"speed" movement speed (100 default) +"wait" wait before returning (3 default, -1 = never return) +"dmg" damage to inflict when blocked (2 default) +"sounds" +1) silent +2) light +3) medium +4) heavy +*/ + +/*QUAKED func_subdoor_handle1 (0 .5 .8) ? X REVERSE X X X X X_AXIS Y_AXIS + +Will rotate 90 deg with the func_subdoor_base. + +You need to have an origin brush in the center of this entity. The center of that brush will be +the point around which it is rotated. It will rotate around the Z axis by default. You can +check either the X_AXIS or Y_AXIS box to change that. + +"duration" is how long the rotation will take place. + +REVERSE will cause the handle to rotate in the opposite direction. +*/ + +// JOSEPH 26-AUG-98 + +/*QUAKED func_subdoor_handle2 (0 .5 .8) + +Will rotate with door +It's origin should be the door's origin +*/ + +// END JOSEPH + +void door_use_subdoor (edict_t *self, edict_t *other, edict_t *activator) +{ + edict_t *ent; + + // trigger subdoor and handle + ent = self; + ent->message = NULL; + ent->touch = NULL; + door_go_up(ent, activator); + activator->target_ent = ent; + if (ent->handle2) + { + ent = ent->handle2; + ent->message = NULL; + ent->touch = NULL; + door_go_up(ent, activator); + activator->target_ent = ent; + } +}; + +void Think_stop_handle (edict_t *self) +{ + if ((self->handle) && (self->handle2)) + { + VectorClear(self->handle->avelocity); + self->handle->solid = 0; + self->handle->svflags |= SVF_NOCLIENT; + self->handle2->svflags &= ~SVF_NOCLIENT; + } + + door_use_subdoor (self->save_self->owner, self->save_other, self->save_other); +} + +void Touch_DoorTrigger_subdoor (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + int Taxis; + float deg; + float traveltime; + float frames; + + if (other->health <= 0) + return; + + if ((self->owner->spawnflags & DOOR_NOMONSTER) && (other->svflags & SVF_MONSTER)) + return; + + if (level.time < self->touch_debounce_time) + return; + + self->touch_debounce_time = level.time + 1.0; + + if ((self->owner->doorflag) && (!self->owner->firstnode)) + { + if (self->owner->handle->duration) + traveltime = self->owner->handle->duration; + else traveltime = 0.5; + + deg = 90; + + self->owner->firstnode = 1; + + self->owner->save_self = self; + self->owner->save_other = other; + + if (self->owner->handle) + { + if (self->owner->handle->spawnflags & DOOR_X_AXIS) + Taxis = ROLL; + else if (self->owner->handle->spawnflags & DOOR_Y_AXIS) + Taxis = PITCH; + else // Z_AXIS + Taxis = YAW; + + self->owner->handle->avelocity[Taxis] = (deg / traveltime); + + if (self->owner->handle->spawnflags & DOOR_REVERSE) + self->owner->handle->avelocity[Taxis] = -(self->owner->handle->avelocity[Taxis]); + } + if (traveltime < FRAMETIME) + { + Think_stop_handle (self->owner); + return; + } + + frames = floor(traveltime / FRAMETIME); + + self->owner->nextthink = level.time + (FRAMETIME * (frames+1)); + self->owner->think = Think_stop_handle; + } +} + +void door_touch_subdoor (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + if (!(other->client)) + return; + + if (level.time < self->touch_debounce_time) + return; + self->touch_debounce_time = level.time + 5.0; + + gi.centerprintf (other, "%s", self->message); + // JOSEPH 29-MAR-99 + //gi.sound (other, CHAN_AUTO, gi.soundindex ("misc/talk1.wav"), 1, ATTN_NORM, 0); + // END JOSEPH +} + +void Think_SpawnDoorTrigger_subdoor (edict_t *ent) +{ + edict_t *other, *handle, *chainent; + vec3_t mins, maxs; + + // Kill trigger if door is a slave + if (ent->flags & FL_TEAMSLAVE) + { + return; + } + + // Set pointers to all slaves from master + for (chainent = ent->teammaster; chainent; chainent = chainent->teamchain) + { + if (chainent->handleflag) + { + ent->handle = chainent; + } + else if (chainent->handle2flag) + { + ent->handle2 = chainent; + } + } + + // JOSEPH 1-OCT-98 + // Pre-rotate handle1 to match handle2 + if (ent->handle) + { + handle = ent->handle; + + if (ent->spawnflags & DOOR_X_AXIS) + { + if(ent->spawnflags & DOOR_REVERSE) + { + handle->s.angles[0] += 90; + } + else + { + handle->s.angles[0] -= 90; + } + } + else if (ent->spawnflags & DOOR_Y_AXIS) + { + if(ent->spawnflags & DOOR_REVERSE) + { + handle->s.angles[1] += 90; + } + else + { + handle->s.angles[1] -= 90; + } + } + else // Z_AXIS + { + if(ent->spawnflags & DOOR_REVERSE) + { + handle->s.angles[2] += 90; + } + else + { + handle->s.angles[2] -= 90; + } + } + } + // END JOSEPH + + // Set handle2 to move like door + if (ent->handle2) + { + handle = ent->handle2; + + VectorClear (handle->s.angles); + + VectorCopy (ent->movedir, handle->movedir); + + VectorCopy (handle->s.angles, handle->pos1); + + VectorMA (handle->s.angles, ent->moveinfo.distance, handle->movedir, handle->pos2); + + handle->moveinfo.distance = ent->moveinfo.distance; + + handle->speed = ent->speed; + handle->accel = ent->accel; + handle->decel = ent->decel; + + handle->wait = ent->wait; + handle->dmg = ent->dmg; + + // if it starts open, switch the positions + if (ent->spawnflags & DOOR_START_OPEN) + { + VectorCopy (handle->pos2, handle->s.angles); + VectorCopy (handle->pos1, handle->pos2); + VectorCopy (handle->s.angles, handle->pos1); + VectorNegate (handle->movedir, handle->movedir); + } + + handle->moveinfo.state = STATE_BOTTOM; + handle->moveinfo.speed = handle->speed; + handle->moveinfo.accel = handle->accel; + handle->moveinfo.decel = handle->decel; + handle->moveinfo.wait = handle->wait = -1; + + VectorCopy (handle->s.origin, handle->moveinfo.start_origin); + VectorCopy (handle->pos1, handle->moveinfo.start_angles); + VectorCopy (handle->s.origin, handle->moveinfo.end_origin); + VectorCopy (handle->pos2, handle->moveinfo.end_angles); + + gi.linkentity (handle); + + } + + if (ent->flags & FL_TEAMSLAVE) + return; // only the team leader spawns a trigger + + VectorCopy (ent->absmin, mins); + VectorCopy (ent->absmax, maxs); + + for (other = ent->teamchain ; other ; other=other->teamchain) + { + AddPointToBounds (other->absmin, mins, maxs); + AddPointToBounds (other->absmax, mins, maxs); + } + + // expand + mins[0] -= 60; + mins[1] -= 60; + maxs[0] += 60; + maxs[1] += 60; + + other = G_Spawn (); + VectorCopy (mins, other->mins); + VectorCopy (maxs, other->maxs); + other->owner = ent; + other->solid = SOLID_TRIGGER; + other->movetype = MOVETYPE_NONE; + other->touch = Touch_DoorTrigger_subdoor; + gi.linkentity (other); + + if (ent->spawnflags & DOOR_START_OPEN) + door_use_areaportals (ent, true); +} + +void SP_func_subdoor_base (edict_t *ent) +{ + VectorClear (ent->s.angles); + + // set the axis of rotation + VectorClear(ent->movedir); + + if (ent->spawnflags & DOOR_X_AXIS) + ent->movedir[2] = 1.0; + else if (ent->spawnflags & DOOR_Y_AXIS) + ent->movedir[0] = 1.0; + else // Z_AXIS + ent->movedir[1] = 1.0; + + // check for reverse rotation + if (ent->spawnflags & DOOR_REVERSE) + VectorNegate (ent->movedir, ent->movedir); + + if (!st.distance) + { + gi.dprintf("%s at %s with no distance set\n", ent->classname, vtos(ent->s.origin)); + st.distance = 90; + } + + VectorCopy (ent->s.angles, ent->pos1); + VectorMA (ent->s.angles, st.distance, ent->movedir, ent->pos2); + ent->moveinfo.distance = st.distance; + + ent->movetype = MOVETYPE_PUSH; + ent->solid = SOLID_BSP; + ent->doorflag = 1; + gi.setmodel (ent, ent->model); + + ent->blocked = door_blocked; + ent->use = door_use_subdoor; + + if (!ent->speed) + ent->speed = 100; + if (!ent->accel) + ent->accel = ent->speed; + if (!ent->decel) + ent->decel = ent->speed; + + //if (!ent->wait) + // ent->wait = 3; + + // Only opens once + ent->wait = -1; + + if (!ent->dmg) + ent->dmg = 2; + + if (ent->sounds != 1) + { + ent->moveinfo.sound_start = gi.soundindex ("doors/dr1_strt.wav"); + ent->moveinfo.sound_middle = gi.soundindex ("doors/dr1_mid.wav"); + ent->moveinfo.sound_end = gi.soundindex ("doors/dr1_end.wav"); + } + + // if it starts open, switch the positions + if (ent->spawnflags & DOOR_START_OPEN) + { + VectorCopy (ent->pos2, ent->s.angles); + VectorCopy (ent->pos1, ent->pos2); + VectorCopy (ent->s.angles, ent->pos1); + VectorNegate (ent->movedir, ent->movedir); + } + + if (ent->health) + { + ent->takedamage = DAMAGE_YES; + ent->die = door_killed; + ent->max_health = ent->health; + } + + if (ent->targetname && ent->message) + { + gi.soundindex ("misc/talk.wav"); + ent->touch = door_touch_subdoor; + } + + ent->moveinfo.state = STATE_BOTTOM; + ent->moveinfo.speed = ent->speed; + ent->moveinfo.accel = ent->accel; + ent->moveinfo.decel = ent->decel; + ent->moveinfo.wait = ent->wait; + VectorCopy (ent->s.origin, ent->moveinfo.start_origin); + VectorCopy (ent->pos1, ent->moveinfo.start_angles); + VectorCopy (ent->s.origin, ent->moveinfo.end_origin); + VectorCopy (ent->pos2, ent->moveinfo.end_angles); + + if (ent->spawnflags & 16) + ent->s.effects |= EF_ANIM_ALL; + + // to simplify logic elsewhere, make non-teamed doors into a team of one + if (!ent->team) + ent->teammaster = ent; + + gi.linkentity (ent); + + ent->nextthink = level.time + FRAMETIME; + ent->think = Think_SpawnDoorTrigger_subdoor; + + // RAFAEL + if (!(ent->spawnflags & 256)) + ent->activate_flags |= ACTIVATE_GENERAL; + + +} + +void think_none (edict_t *self) +{ +// Need for some reason??? +} + +void SP_func_subdoor_handle1 (edict_t *ent) +{ + VectorClear (ent->s.angles); + ent->movetype = MOVETYPE_PUSH; + ent->solid = SOLID_BSP; + ent->handleflag = 1; + gi.setmodel (ent, ent->model); + gi.linkentity (ent); + ent->think = think_none; +} + +void SP_func_subdoor_handle2 (edict_t *ent) +{ + VectorClear (ent->s.angles); + ent->movetype = MOVETYPE_PUSH; + ent->solid = SOLID_BSP; + ent->handle2flag = 1; + gi.setmodel (ent, ent->model); + gi.linkentity (ent); + ent->think = think_none; + ent->svflags |= SVF_NOCLIENT; +} + +// END JOSEPH + +/*QUAKED func_water (0 .5 .8) ? START_OPEN TRANSLUCENT +func_water is a moveable water brush. It must be targeted to operate. Use a non-water texture at your own risk. + +START_OPEN causes the water to move to its destination when spawned and operate in reverse. + +"angle" determines the opening direction (up or down only) +"speed" movement speed (25 default) +"wait" wait before returning (-1 default, -1 = TOGGLE) +"lip" lip remaining at end of move (0 default) +"sounds" (yes, these need to be changed) +0) no sound +1) water +2) lava +*/ + +void SP_func_water (edict_t *self) +{ + vec3_t abs_movedir; + + G_SetMovedir (self->s.angles, self->movedir); + self->movetype = MOVETYPE_PUSH; + self->solid = SOLID_BSP; + gi.setmodel (self, self->model); + + switch (self->sounds) + { + default: + break; + + case 1: // water + self->moveinfo.sound_start = gi.soundindex ("world/mov_watr.wav"); + self->moveinfo.sound_end = gi.soundindex ("world/stp_watr.wav"); + break; + + case 2: // lava + self->moveinfo.sound_start = gi.soundindex ("world/mov_watr.wav"); + self->moveinfo.sound_end = gi.soundindex ("world/stp_watr.wav"); + break; + } + + // calculate second position + VectorCopy (self->s.origin, self->pos1); + abs_movedir[0] = fabs(self->movedir[0]); + abs_movedir[1] = fabs(self->movedir[1]); + abs_movedir[2] = fabs(self->movedir[2]); + self->moveinfo.distance = abs_movedir[0] * self->size[0] + abs_movedir[1] * self->size[1] + abs_movedir[2] * self->size[2] - st.lip; + VectorMA (self->pos1, self->moveinfo.distance, self->movedir, self->pos2); + + // if it starts open, switch the positions + if (self->spawnflags & DOOR_START_OPEN) + { + VectorCopy (self->pos2, self->s.origin); + VectorCopy (self->pos1, self->pos2); + VectorCopy (self->s.origin, self->pos1); + } + + VectorCopy (self->pos1, self->moveinfo.start_origin); + VectorCopy (self->s.angles, self->moveinfo.start_angles); + VectorCopy (self->pos2, self->moveinfo.end_origin); + VectorCopy (self->s.angles, self->moveinfo.end_angles); + + self->moveinfo.state = STATE_BOTTOM; + + if (!self->speed) + self->speed = 25; + self->moveinfo.accel = self->moveinfo.decel = self->moveinfo.speed = self->speed; + + if (!self->wait) + self->wait = -1; + self->moveinfo.wait = self->wait; + + self->use = door_use; + + if (self->wait == -1) + self->spawnflags |= DOOR_TOGGLE; + + self->classname = "func_door"; + + if (self->spawnflags & 2) + { + self->s.renderfx |= RF_TRANSLUCENT; + } + + gi.linkentity (self); +} + + +#define TRAIN_START_ON 1 +#define TRAIN_TOGGLE 2 +#define TRAIN_BLOCK_STOPS 4 + +// JOSEPH 25_APR-99 +/*QUAKED func_train (0 .5 .8) ? START_ON TOGGLE BLOCK_STOPS SURF2_ALPHA +Trains are moving platforms that players can ride. +The targets origin specifies the min point of the train at each corner. +The train spawns at the first target it is pointing at. +If the train is the target of a button or trigger, it will not begin moving until activated. +speed default 100 +dmg default 2 +noise looping sound to play when the train is in motion +*/ +// END JOSEPH + +void train_next (edict_t *self); + +void train_blocked (edict_t *self, edict_t *other) +{ + if (!(other->svflags & SVF_MONSTER) && !(other->client) ) + { + // give it a chance to go away on it's own terms (like gibs) + T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, 100000, 1, 0, MOD_CRUSH); + // if it's still there, nuke it + if (other) + BecomeExplosion1 (other); + return; + } + + if (level.time < self->touch_debounce_time) + return; + + if (!self->dmg) + return; + self->touch_debounce_time = level.time + 0.5; + + // Ridah, small objects shouldn't hurt + if (VectorDistance( self->absmin, self->absmax) > 200) + T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, self->dmg, 1, 0, MOD_CRUSH); +} + +void train_wait (edict_t *self) +{ + if (self->target_ent->pathtarget) + { + char *savetarget; + edict_t *ent; + + ent = self->target_ent; + savetarget = ent->target; + ent->target = ent->pathtarget; + G_UseTargets (ent, self->activator); + ent->target = savetarget; + + // make sure we didn't get killed by a killtarget + if (!self->inuse) + return; + } + + if (self->moveinfo.wait) + { + if (self->moveinfo.wait > 0) + { + self->nextthink = level.time + self->moveinfo.wait; + self->think = train_next; + } + else if (self->spawnflags & TRAIN_TOGGLE) // && wait < 0 + { + train_next (self); + self->spawnflags &= ~TRAIN_START_ON; + VectorClear (self->velocity); + self->nextthink = 0; + } + + if (!(self->flags & FL_TEAMSLAVE)) + { + if (self->moveinfo.sound_end) + gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_end, 1, ATTN_STATIC, 0); + self->s.sound = 0; + } + } + else + { + train_next (self); + } + +} + +void train_next (edict_t *self) +{ + edict_t *ent; + vec3_t dest; + qboolean first; + + first = true; +again: + if (!self->target) + { +// gi.dprintf ("train_next: no next target\n"); + return; + } + + ent = G_PickTarget (self->target); + if (!ent) + { + gi.dprintf ("train_next: bad target %s\n", self->target); + return; + } + + // JOSEPH 16-OCT-98 + self->moveinfo.accel = self->accel; + self->moveinfo.decel = self->decel; + + if (ent->accel) + { + self->accel = 1; + self->decel = ent->accel; //15; + } + else if (ent->decel) + { + self->accel = ent->decel; //15; + self->decel = 1; + } + else + { + self->accel = self->decel = self->moveinfo.speed; + } + // END JOSEPH + + self->target = ent->target; + + // check for a teleport path_corner + if (ent->spawnflags & 1) + { + if (!first) + { + gi.dprintf ("connected teleport path_corners, see %s at %s\n", ent->classname, vtos(ent->s.origin)); + return; + } + first = false; + VectorSubtract (ent->s.origin, self->mins, self->s.origin); + VectorCopy (self->s.origin, self->s.old_origin); + // JOSEPH 23-APR-99 + self->s.event = EV_OTHER_TELEPORT; + // END JOSEPH + gi.linkentity (self); + goto again; + } + + self->moveinfo.wait = ent->wait; + self->target_ent = ent; + + if (!(self->flags & FL_TEAMSLAVE)) + { + if (self->moveinfo.sound_start) + gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_start, 1, ATTN_STATIC, 0); + self->s.sound = self->moveinfo.sound_middle; + } + + VectorSubtract (ent->s.origin, self->mins, dest); + self->moveinfo.state = STATE_TOP; + VectorCopy (self->s.origin, self->moveinfo.start_origin); + VectorCopy (dest, self->moveinfo.end_origin); + Move_Calc (self, dest, train_wait); + self->spawnflags |= TRAIN_START_ON; + +// BEGIN: Xatrix/Ridah/Navigator/12-apr-1999 + self->goalentity = ent; +// END: Xatrix/Ridah/Navigator/12-apr-1999 +} + +void train_resume (edict_t *self) +{ + edict_t *ent; + vec3_t dest; + + ent = self->target_ent; + + VectorSubtract (ent->s.origin, self->mins, dest); + self->moveinfo.state = STATE_TOP; + VectorCopy (self->s.origin, self->moveinfo.start_origin); + VectorCopy (dest, self->moveinfo.end_origin); + Move_Calc (self, dest, train_wait); + self->spawnflags |= TRAIN_START_ON; +} + +void func_train_find (edict_t *self) +{ + edict_t *ent; + + if (!self->target) + { + gi.dprintf ("train_find: no target\n"); + return; + } + ent = G_PickTarget (self->target); + if (!ent) + { + gi.dprintf ("train_find: target %s not found\n", self->target); + return; + } + + // JOSEPH 16-OCT-98 + if (ent->accel) + { + self->accel = 1; + self->decel = ent->accel; //15; + } + else if (ent->decel) + { + self->accel = ent->decel; //15; + self->decel = 1; + } + else + { + self->accel = self->decel = self->moveinfo.speed; + } + // END JOSEPH + + self->target = ent->target; + + VectorSubtract (ent->s.origin, self->mins, self->s.origin); + gi.linkentity (self); + + // if not triggered, start immediately + if (!self->targetname) + self->spawnflags |= TRAIN_START_ON; + + if (self->spawnflags & TRAIN_START_ON) + { + self->nextthink = level.time + FRAMETIME; + self->think = train_next; + self->activator = self; + } + +// BEGIN: Xatrix/Ridah/Navigator/12-apr-1999 + self->goalentity = ent; +// END: Xatrix/Ridah/Navigator/12-apr-1999 +} + +void train_use (edict_t *self, edict_t *other, edict_t *activator) +{ +// BEGIN: Xatrix/Ridah/Navigator/09-apr-1998 + // record the start position of this moving entity + VectorCopy(self->s.origin, self->cast_info.last_sighting); + self->last_goal = self->goalentity; +// END: Xatrix/Ridah/Navigator/09-apr-1998 + + self->activator = activator; + + if (self->spawnflags & TRAIN_START_ON) + { + if (!(self->spawnflags & TRAIN_TOGGLE)) + return; + self->spawnflags &= ~TRAIN_START_ON; + VectorClear (self->velocity); + self->nextthink = 0; + } + else + { + if (self->target_ent) + train_resume(self); + else + train_next(self); + } +} + +// JOSEPH 12-MAY-99 +void Think_train_sound_B (edict_t *ent) +{ + if ((ent->handle) && (ent->handle->moveinfo.sound_middle)) + { + if (ent->handle->velocity[0] || ent->handle->velocity[1] || ent->handle->velocity[2] || + ent->handle->avelocity[0] || ent->handle->avelocity[1] || ent->handle->avelocity[2]) + { + vec3_t origin; + + VectorAdd (ent->handle->absmin, ent->handle->absmax, origin); + VectorScale (origin, 0.5, origin); + + VectorCopy (origin, ent->s.origin); + + gi.positioned_sound(ent->s.origin, ent, CHAN_AUTO, ent->handle->moveinfo.sound_middle, 1, 1, 0); + + ent->nextthink = level.time + ent->handle->reactdelay; + } + else + { + ent->nextthink = level.time + 0.1; + } + } +} + +void Think_train_sound2_B (edict_t *ent) +{ + if ((ent->handle) && (ent->handle->handle)) + { + vec3_t origin; + + VectorAdd (ent->handle->handle->absmin, ent->handle->handle->absmax, origin); + VectorScale (origin, 0.5, origin); + + VectorCopy (origin, ent->handle->s.origin); + } + + ent->nextthink = level.time + 0.1; +} + +void Start_train_sound_B (edict_t *ent) +{ + edict_t *sound = NULL; + edict_t *sound2 = NULL; + + sound = G_Spawn(); + + if (!sound) + return; + + sound2 = G_Spawn(); + + if (!sound2) + return; + + gi.linkentity (sound); + gi.linkentity (sound2); + + sound->handle = ent; + sound2->handle = sound; + + sound->think = Think_train_sound_B; + Think_train_sound_B(sound); + + sound2->think = Think_train_sound2_B; + sound2->nextthink = level.time + 0.1; + + return; +} + +void SP_func_train (edict_t *self) +{ + self->movetype = MOVETYPE_PUSH; + + VectorClear (self->s.angles); + self->blocked = train_blocked; + if (self->spawnflags & TRAIN_BLOCK_STOPS) + self->dmg = 0; + else + { + if (!self->dmg) + self->dmg = 100; + } + self->solid = SOLID_BSP; + gi.setmodel (self, self->model); + + //if (st.noise) + // self->moveinfo.sound_middle = gi.soundindex (st.noise); + + if (!self->speed) + self->speed = 100; + + self->moveinfo.speed = self->speed; + self->moveinfo.accel = self->moveinfo.decel = self->moveinfo.speed; + + self->use = train_use; + + // JOSEPH 25-APR-99 + if (self->spawnflags & 8) + self->s.renderfx2 |= RF2_SURF_ALPHA; + // END JOSEPH + + gi.linkentity (self); + + if (self->target) + { + // start trains on the second frame, to make sure their targets have had + // a chance to spawn + self->nextthink = level.time + FRAMETIME; + self->think = func_train_find; + } + else + { + gi.dprintf ("func_train without a target at %s\n", vtos(self->absmin)); + } + + if (st.noise) + { + char string[256]; + + sprintf(string, "%s%s", st.noise, ".wav"); + + self->moveinfo.sound_middle = gi.soundindex(string); + if (!self->reactdelay) + self->reactdelay = 1.0; + Start_train_sound_B (self); + } +} +// END JOSEPH + + +// JOSEPH 25-APR-99 +/*QUAKED func_train_rotating (0 .5 .8) ? START_ON TOGGLE BLOCK_STOPS SURF2_ALPHA +Trains are moving platforms that players can ride. +The targets origin specifies the min point of the train at each corner. +The train spawns at the first target it is pointing at. +If the train is the target of a button or trigger, it will not begin moving until activated. +dmg default 2 +noise looping sound to play when the train is in motion +reactdelay length of the sound in seconds + + On the path corner: +speed departure speed from that corner +rotate angle change for X Y Z to next corner +duration duration for angle change (overrides speed) +*/ +// END JOSEPH + +float AngleAdd (float a2, float a1) +{ + return (a1 + a2); +} + +void Move_Begin_rotating (edict_t *ent) +{ + float frames; + + // Stand still rotation + if (ent->durationflag) + { + ent->nextthink = level.time + (ent->lastduration); + ent->think = Move_Final; + return; + } + + if (((ent->moveinfo.speed * FRAMETIME) >= ent->moveinfo.remaining_distance)) + { + Move_Final(ent); + return; + } + + VectorScale (ent->moveinfo.dir, ent->moveinfo.speed, ent->velocity); + frames = floor((ent->moveinfo.remaining_distance / ent->moveinfo.speed) / FRAMETIME); + ent->moveinfo.remaining_distance -= frames * ent->moveinfo.speed * FRAMETIME; + ent->nextthink = level.time + (frames * FRAMETIME); + ent->think = Move_Final; +} + +void Move_Calc_rotating (edict_t *ent, vec3_t dest, void(*func)(edict_t*)) +{ +// BEGIN: Xatrix/Ridah/Navigator/09-apr-1998 + // record the start and ending positions of this moving entity + VectorCopy(ent->s.origin, ent->cast_info.last_sighting); + VectorCopy(dest, ent->cast_info.saved_goal); +// END: Xatrix/Ridah/Navigator/09-apr-1998 + + //gi.dprintf ("MIN%s MAX%s", vtos(ent->mins), vtos(ent->maxs)); + + VectorClear (ent->velocity); + VectorSubtract (dest, ent->s.origin, ent->moveinfo.dir); + ent->moveinfo.remaining_distance = VectorNormalize (ent->moveinfo.dir); + ent->moveinfo.endfunc = func; + + if (ent->moveinfo.speed == ent->moveinfo.accel && ent->moveinfo.speed == ent->moveinfo.decel) + { + if (level.current_entity == ((ent->flags & FL_TEAMSLAVE) ? ent->teammaster : ent)) + { + Move_Begin_rotating (ent); + } + else + { + ent->nextthink = level.time + FRAMETIME; + ent->think = Move_Begin_rotating; + } + } + else + { + // accelerative + ent->moveinfo.current_speed = 0; + ent->think = Think_AccelMove; + ent->nextthink = level.time + FRAMETIME; + } +} + +void train_next_rotating (edict_t *self); + +void train_blocked_rotating (edict_t *self, edict_t *other) +{ + + //gi.dprintf ("train_blocked_rotating %s\n", vtos(self->s.angles)); + if (!(other->svflags & SVF_MONSTER) && !(other->client) ) + { + // give it a chance to go away on it's own terms (like gibs) + T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, 100000, 1, 0, MOD_CRUSH); + // if it's still there, nuke it + if (other) + BecomeExplosion1 (other); + return; + } + + if (level.time < self->touch_debounce_time) + return; + + if (!self->dmg) + return; + self->touch_debounce_time = level.time + 0.5; + + // Ridah, small objects shouldn't hurt + if (VectorDistance( self->absmin, self->absmax) > 200) + T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, self->dmg, 1, 0, MOD_CRUSH); +} + +void train_wait_rotating (edict_t *self) +{ + if (self->target_ent->pathtarget) + { + char *savetarget; + edict_t *ent; + + ent = self->target_ent; + savetarget = ent->target; + ent->target = ent->pathtarget; + G_UseTargets (ent, self->activator); + ent->target = savetarget; + + // make sure we didn't get killed by a killtarget + if (!self->inuse) + return; + } + + if (self->moveinfo.wait) + { + VectorClear(self->avelocity); + + // JOSEPH 1-OCT-98 + // Force proper angle + VectorCopy(self->angletarget, self->s.angles); + + if (self->moveinfo.wait > 0) + { + self->nextthink = level.time + self->moveinfo.wait; + self->think = train_next_rotating; + } + else if (self->spawnflags & TRAIN_TOGGLE) // && wait < 0 + { + train_next_rotating (self); + self->avelflag = 1; + VectorCopy(self->avelocity, self->save_avel); + VectorClear(self->avelocity); + self->spawnflags &= ~TRAIN_START_ON; + VectorClear (self->velocity); + self->nextthink = 0; + } + + if (!(self->flags & FL_TEAMSLAVE)) + { + // JOSEPH 5-APR-99 + //if (self->moveinfo.sound_end) + // gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_end, 1, ATTN_STATIC, 0); + //self->s.sound = 0; + // END JOSEPH + } + } + else + { + train_next_rotating (self); + } + +} + +// JOSEPH 6-NOV-98 +void train_next_rotating (edict_t *self) +{ + edict_t *ent; + vec3_t dest; + vec3_t dir; + float remain; + qboolean first; + int frames; + + first = true; +again: + if (!self->target) + { +// gi.dprintf ("train_next: no next target\n"); + return; + } + + ent = G_PickTarget (self->target); + + if (!ent) + { + gi.dprintf ("train_next: bad target %s\n", self->target); + return; + } + + // JOSEPH 20-APR-99 + self->moveinfo.accel = self->accel; + self->moveinfo.decel = self->decel; + + if (ent->accel) + { + self->accel = 1; + self->decel = ent->accel; //15; + } + else if (ent->decel) + { + self->accel = ent->decel; //15; + self->decel = 1; + } + else + { + self->accel = self->decel = self->moveinfo.speed; + } + // END JOSEPH + + // Clear stand still duration flag + self->durationflag = 0; + + // JOSEPH 6-JAN-99 + /*if ((self->name) && (!strcmp(self->name, "Joe9000"))) + { + gi.dprintf ("TARGET ANGLE %s\n", vtos(self->angletarget)); + }*/ + //gi.dprintf ("SPEED %f\n", self->speed); + //gi.dprintf ("DURATION %f\n", self->duration); + // END JOSEPH + + // Set speed + if (self->firstnode) + { + // Set rotation from saved first node + VectorSubtract(ent->s.origin, self->nodeorigin, dir); + remain = VectorNormalize (dir); + + if (!self->duration) + { + // Set speed from saved first node + self->moveinfo.speed = self->moveinfo.accel = self->moveinfo.decel = self->speed; + + frames = floor((remain / self->moveinfo.speed) / FRAMETIME); + if (frames) frames++; + + if (self->rotate[0]) self->avelocity[0] = (self->rotate[0] / frames)*10; + else self->avelocity[0] = 0; + if (self->rotate[1]) self->avelocity[1] = (self->rotate[1] / frames)*10; + else self->avelocity[1] = 0; + if (self->rotate[2]) self->avelocity[2] = (self->rotate[2] / frames)*10; + else self->avelocity[2] = 0; + } + else if (remain) + { + // Set speed from duration saved from current node + self->moveinfo.speed = self->moveinfo.accel = self->moveinfo.decel = (remain / (self->duration)); + + frames = floor((remain / self->moveinfo.speed) / FRAMETIME); + if (frames) frames++; + + if (self->rotate[0]) self->avelocity[0] = (self->rotate[0] / frames)*10; + else self->avelocity[0] = 0; + if (self->rotate[1]) self->avelocity[1] = (self->rotate[1] / frames)*10; + else self->avelocity[1] = 0; + if (self->rotate[2]) self->avelocity[2] = (self->rotate[2] / frames)*10; + else self->avelocity[2] = 0; + } + else + { + // Set stand still duration flag + self->durationflag = 1; + + if (self->rotate[0]) self->avelocity[0] = (self->rotate[0] / (self->duration/*+0.1*/)); + else self->avelocity[0] = 0; + if (self->rotate[1]) self->avelocity[1] = (self->rotate[1] / (self->duration/*+0.1*/)); + else self->avelocity[1] = 0; + if (self->rotate[2]) self->avelocity[2] = (self->rotate[2] / (self->duration/*+0.1*/)); + else self->avelocity[2] = 0; + } + + self->firstnode = 0; + } + else + { + // Force proper angle + VectorCopy(self->angletarget, self->s.angles); + + //gi.dprintf ("CURRENT ANGLE %s\n", vtos(self->s.angles)); + //gi.dprintf ("TARGET ANGLE %s\n", vtos(self->angletarget)); + //gi.dprintf ("SPEED %f\n", self->speed); + //gi.dprintf ("DURATION %f\n", self->duration); + + // Set rotation from saved current node + VectorSubtract(ent->s.origin, self->nodeorigin, dir); + remain = VectorNormalize (dir); + + if (!self->duration) + { + // Set speed from saved current node + self->moveinfo.speed = self->moveinfo.accel = self->moveinfo.decel = self->speed; + + frames = floor((remain / self->moveinfo.speed) / FRAMETIME); + if (frames) frames++; + + if (self->rotate[0]) self->avelocity[0] = (self->rotate[0] / frames)*10; + else self->avelocity[0] = 0; + if (self->rotate[1]) self->avelocity[1] = (self->rotate[1] / frames)*10; + else self->avelocity[1] = 0; + if (self->rotate[2]) self->avelocity[2] = (self->rotate[2] / frames)*10; + else self->avelocity[2] = 0; + } + else if (remain) + { + // Set speed from duration saved from current node + self->moveinfo.speed = self->moveinfo.accel = self->moveinfo.decel = ((remain / self->duration)); + + frames = floor((remain / self->moveinfo.speed) / FRAMETIME); + if (frames) frames++; + + if (self->rotate[0]) self->avelocity[0] = (self->rotate[0] / frames)*10; + else self->avelocity[0] = 0; + if (self->rotate[1]) self->avelocity[1] = (self->rotate[1] / frames)*10; + else self->avelocity[1] = 0; + if (self->rotate[2]) self->avelocity[2] = (self->rotate[2] / frames)*10; + else self->avelocity[2] = 0; + } + else + { + // Set stand still duration flag + self->durationflag = 1; + + self->moveinfo.speed = self->moveinfo.accel = self->moveinfo.decel = 0; + + if (self->rotate[0]) self->avelocity[0] = (self->rotate[0] / (self->duration)); + else self->avelocity[0] = 0; + if (self->rotate[1]) self->avelocity[1] = (self->rotate[1] / (self->duration)); + else self->avelocity[1] = 0; + if (self->rotate[2]) self->avelocity[2] = (self->rotate[2] / (self->duration)); + else self->avelocity[2] = 0; + } + } + + // Save speed for next node or continue at current speed if node speed = 0 + if (ent->speed) self->speed = ent->speed; + + // Save duration for calc + self->lastduration = self->duration; + + // Save duration for next node + self->duration = ent->duration; + + // Save node origin for next node + VectorCopy(ent->s.origin, self->nodeorigin); + + // Save target angle for next node + self->angletarget[0] = AngleAdd(self->s.angles[0], self->rotate[0]); + self->angletarget[1] = AngleAdd(self->s.angles[1], self->rotate[1]); + self->angletarget[2] = AngleAdd(self->s.angles[2], self->rotate[2]); + + // Save rotation info from next node + VectorCopy(ent->rotate, self->rotate); + + self->target = ent->target; + + // check for a teleport path_corner + if (ent->spawnflags & 1) + { + if (!first) + { + gi.dprintf ("connected teleport path_corners, see %s at %s\n", ent->classname, vtos(ent->s.origin)); + return; + } + first = false; + // JOSEPH 2-APR_99 + VectorSubtract (ent->s.origin, /*self->mins*/vec3_origin, self->s.origin); + // END JOSEPH + VectorCopy (self->s.origin, self->s.old_origin); + gi.linkentity (self); + goto again; + } + + self->moveinfo.wait = ent->wait; + self->target_ent = ent; + + if (!(self->flags & FL_TEAMSLAVE)) + { + if (self->moveinfo.sound_start) + gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_start, 1, ATTN_STATIC, 0); + // JOSEPH 5-APR-99 + //self->s.sound = self->moveinfo.sound_middle; + // END JOSEPH + } + + // JOSEPH 2-APR-99 + VectorSubtract (ent->s.origin, vec3_origin, dest); + // END JOSEPH + self->moveinfo.state = STATE_TOP; + VectorCopy (self->s.origin, self->moveinfo.start_origin); + VectorCopy (dest, self->moveinfo.end_origin); + Move_Calc_rotating (self, dest, train_wait_rotating); + self->spawnflags |= TRAIN_START_ON; +} +// END JOSEPH + +void train_resume_rotating (edict_t *self) +{ + edict_t *ent; + vec3_t dest; + + ent = self->target_ent; + + // JOSEPH 2-APR-99 + VectorSubtract (ent->s.origin, /*self->mins*/vec3_origin, dest); + // END JOSEPH + self->moveinfo.state = STATE_TOP; + VectorCopy (self->s.origin, self->moveinfo.start_origin); + VectorCopy (dest, self->moveinfo.end_origin); + Move_Calc_rotating (self, dest, train_wait_rotating); + if (self->avelflag) + { + VectorCopy(self->save_avel, self->avelocity); + self->avelflag = 0; + } + self->spawnflags |= TRAIN_START_ON; +} + +void func_train_find_rotating (edict_t *self) +{ + edict_t *ent; + + if (!self->target) + { + gi.dprintf ("train_find: no target\n"); + return; + } + ent = G_PickTarget (self->target); + if (!ent) + { + gi.dprintf ("train_find: target %s not found\n", self->target); + return; + } + self->target = ent->target; + + // JOSEPH 20-APR-99 + if (ent->accel) + { + self->accel = 1; + self->decel = ent->accel; //15; + } + else if (ent->decel) + { + self->accel = ent->decel; //15; + self->decel = 1; + } + else + { + self->accel = self->decel = self->moveinfo.speed; + } + // END JOSEPH + + // Save info from first node + self->speed = ent->speed; + self->duration = ent->duration; + VectorCopy(ent->rotate, self->rotate); + VectorCopy(ent->s.origin, self->nodeorigin); + + // JOSEPH 21-APR-99 + VectorCopy(ent->s.origin, self->s.origin); + // END JOSEPH + + // Set first node flag + self->firstnode = 1; + + //VectorSubtract (ent->s.origin, self->mins, self->s.origin); + //gi.linkentity (self); + + // if not triggered, start immediately + if (!self->targetname) + self->spawnflags |= TRAIN_START_ON; + + if (self->spawnflags & TRAIN_START_ON) + { + self->nextthink = level.time + FRAMETIME; + self->think = train_next_rotating; + self->activator = self; + } +} + +void train_use_rotating (edict_t *self, edict_t *other, edict_t *activator) +{ + self->activator = activator; + + if (self->spawnflags & TRAIN_START_ON) + { + if (!(self->spawnflags & TRAIN_TOGGLE)) + return; + self->spawnflags &= ~TRAIN_START_ON; + VectorClear (self->velocity); + self->nextthink = 0; + } + else + { + if (self->target_ent) + train_resume_rotating(self); + else + train_next_rotating(self); + } +} + +// JOSEPH 6-APR-99 +void Think_train_sound (edict_t *ent) +{ + if ((ent->handle) && (ent->handle->moveinfo.sound_middle)) + { + if (ent->handle->velocity[0] || ent->handle->velocity[1] || ent->handle->velocity[2] || + ent->handle->avelocity[0] || ent->handle->avelocity[1] || ent->handle->avelocity[2]) + { + VectorCopy (ent->handle->s.origin, ent->s.origin); + gi.positioned_sound(ent->s.origin, ent, CHAN_AUTO, ent->handle->moveinfo.sound_middle, 1, 1, 0); + + ent->nextthink = level.time + ent->handle->reactdelay; + } + else + { + ent->nextthink = level.time + 0.1; + } + } +} + +void Think_train_sound2 (edict_t *ent) +{ + if ((ent->handle) && (ent->handle->handle)) + { + VectorCopy (ent->handle->handle->s.origin, ent->handle->s.origin); + } + + ent->nextthink = level.time + 0.1; +} + +void Start_train_sound (edict_t *ent) +{ + edict_t *sound = NULL; + edict_t *sound2 = NULL; + + sound = G_Spawn(); + + if (!sound) + return; + + sound2 = G_Spawn(); + + if (!sound2) + return; + + gi.linkentity (sound); + gi.linkentity (sound2); + + sound->handle = ent; + sound2->handle = sound; + + sound->think = Think_train_sound; + Think_train_sound(sound); + + sound2->think = Think_train_sound2; + sound2->nextthink = level.time + 0.1; + + return; +} +// END JOSEPH + +// JOSEPH 5-APR-99 +void touch_train_die (edict_t *ent, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + if (other->health <= 0) + return; + + T_Damage (other, ent, ent, vec3_origin, other->s.origin, vec3_origin, 666, 1, 0, MOD_CRUSH); +} +// END JOSEPH + +// JOSEPH 6-APR-99 +void SP_func_train_rotating (edict_t *self) +{ + // hack for now + //return; + + self->movetype = MOVETYPE_PUSH; + self->solid = SOLID_BSP; + + VectorClear (self->s.angles); + self->blocked = train_blocked_rotating; + if (self->spawnflags & TRAIN_BLOCK_STOPS) + self->dmg = 0; + else + { + if (!self->dmg) + self->dmg = 100; + } + + // JOSEPH 20-APR-99 + self->moveinfo.speed = self->speed; + self->moveinfo.accel = self->moveinfo.decel = self->moveinfo.speed; + // END JOSEPH + + gi.setmodel (self, self->model); + + //if (st.noise) + // self->moveinfo.sound_middle = gi.soundindex (st.noise); + + self->use = train_use_rotating; + + // JOSEPH 2-APR-99 + //VectorClear(self->mins); + // END JOSEPH + + self->maxs[0] *= 2; + self->maxs[1] *= 2; + self->maxs[2] *= 2; + + // JOSEPH 25-APR-99 + if (self->spawnflags & 8) + self->s.renderfx2 |= RF2_SURF_ALPHA; + // END JOSEPH + + gi.linkentity (self); + + // set the abs box - expand for rotation + { + float max, v; + int i; + + max = 0; + for (i=0 ; i<3 ; i++) + { + v =fabs(self->mins[i]); + if (v > max) + max = v; + v =fabs(self->maxs[i]); + if (v > max) + max = v; + } + for (i=0 ; i<3 ; i++) + { + self->absmin[i] = self->s.origin[i] - max; + self->absmax[i] = self->s.origin[i] + max; + } + } + + if (self->dmg == 666) + { + self->touch = touch_train_die; + } + + if (self->target) + { + // start trains on the second frame, to make sure their targets have had + // a chance to spawn + self->nextthink = level.time + FRAMETIME; + self->think = func_train_find_rotating; + } + // JOSEPH 8-APR-99 + else + { + gi.dprintf ("func_train_rotating without a target at %s\n", vtos(self->absmin)); + } + + if (st.noise) + { + char string[256]; + + //self->moveinfo.sound_middle = gi.soundindex("world/trainout.wav"); + //self->reactdelay = 1.0; + + sprintf(string, "%s%s", st.noise, ".wav"); + + self->moveinfo.sound_middle = gi.soundindex(string); + if (!self->reactdelay) + self->reactdelay = 1.0; + Start_train_sound (self); + } + // END JOSEPH +} +// END JOSEPH + + +/*QUAKED trigger_elevator (0.3 0.1 0.6) (-8 -8 -8) (8 8 8) +*/ +void trigger_elevator_use (edict_t *self, edict_t *other, edict_t *activator) +{ + edict_t *target; + + + // RAFAEL +/* + if (activator) + if (self->activate_flags & ACTIVATE_GENERAL && activator->client) + { + if (!(self->activate_flags & ACTIVATE_AND_OPEN)) + { + //gi.dprintf ("activator: %s next to door\n", activator->classname); + return; + } + else + { + self->activate_flags &= ~ACTIVATE_AND_OPEN; + //gi.dprintf ("activator: %s used the door\n", activator->classname); + } + } +*/ + + if (self->movetarget->nextthink) + { +// gi.dprintf("elevator busy\n"); + return; + } + + if (!other->pathtarget) + { + gi.dprintf("elevator used with no pathtarget\n"); + return; + } + + target = G_PickTarget (other->pathtarget); + if (!target) + { + gi.dprintf("elevator used with bad pathtarget: %s\n", other->pathtarget); + return; + } + + self->movetarget->target_ent = target; + train_resume (self->movetarget); +} + +void trigger_elevator_init (edict_t *self) +{ + if (!self->target) + { + gi.dprintf("trigger_elevator has no target\n"); + return; + } + self->movetarget = G_PickTarget (self->target); + if (!self->movetarget) + { + gi.dprintf("trigger_elevator unable to find target %s\n", self->target); + return; + } + if (strcmp(self->movetarget->classname, "func_train") != 0) + { + gi.dprintf("trigger_elevator target %s is not a train\n", self->target); + return; + } + + self->use = trigger_elevator_use; + self->svflags = SVF_NOCLIENT; + +} + +void SP_trigger_elevator (edict_t *self) +{ + // RAFAEL +// if (!(self->spawnflags & 2)) +// self->activate_flags |= ACTIVATE_GENERAL; + + self->think = trigger_elevator_init; + self->nextthink = level.time + FRAMETIME; +} + + +/*QUAKED func_timer (0.3 0.1 0.6) (-8 -8 -8) (8 8 8) START_ON +"wait" base time between triggering all targets, default is 1 +"random" wait variance, default is 0 + +so, the basic time between firing is a random time between +(wait - random) and (wait + random) + +"delay" delay before first firing when turned on, default is 0 + +"pausetime" additional delay used only the very first time + and only if spawned with START_ON + +These can used but not touched. +*/ +void func_timer_think (edict_t *self) +{ + G_UseTargets (self, self->activator); + self->nextthink = level.time + self->wait + crandom() * self->random; +} + +void func_timer_use (edict_t *self, edict_t *other, edict_t *activator) +{ + self->activator = activator; + + // if on, turn it off + if (self->nextthink) + { + self->nextthink = 0; + return; + } + + // turn it on + if (self->delay) + self->nextthink = level.time + self->delay; + else + func_timer_think (self); +} + +void SP_func_timer (edict_t *self) +{ + if (!self->wait) + self->wait = 1.0; + + self->use = func_timer_use; + self->think = func_timer_think; + + if (self->random >= self->wait) + { + self->random = self->wait - FRAMETIME; + gi.dprintf("func_timer at %s has random >= wait\n", vtos(self->s.origin)); + } + + if (self->spawnflags & 1) + { + self->nextthink = level.time + 1.0 + st.pausetime + self->delay + self->wait + crandom() * self->random; + self->activator = self; + } + + self->svflags = SVF_NOCLIENT; +} + + +/*QUAKED func_conveyor (0 .5 .8) ? START_ON TOGGLE +Conveyors are stationary brushes that move what's on them. +The brush should be have a surface with at least one current content enabled. +speed default 100 +*/ + +void func_conveyor_use (edict_t *self, edict_t *other, edict_t *activator) +{ + if (self->spawnflags & 1) + { + self->speed = 0; + self->spawnflags &= ~1; + } + else + { + self->speed = self->count; + self->spawnflags |= 1; + } + + if (!(self->spawnflags & 2)) + self->count = 0; +} + +void SP_func_conveyor (edict_t *self) +{ + if (!self->speed) + self->speed = 100; + + if (!(self->spawnflags & 1)) + { + self->count = self->speed; + self->speed = 0; + } + + self->use = func_conveyor_use; + + gi.setmodel (self, self->model); + self->solid = SOLID_BSP; + gi.linkentity (self); +} + + +/*QUAKED func_door_secret (0 .5 .8) ? always_shoot 1st_left 1st_down +A secret door. Slide back and then to the side. + +open_once doors never closes +1st_left 1st move is left of arrow +1st_down 1st move is down from arrow +always_shoot door is shootebale even if targeted + +"angle" determines the direction +"dmg" damage to inflic when blocked (default 2) +"wait" how long to hold in the open position (default 5, -1 means hold) +*/ + +#define SECRET_ALWAYS_SHOOT 1 +#define SECRET_1ST_LEFT 2 +#define SECRET_1ST_DOWN 4 + +void door_secret_move1 (edict_t *self); +void door_secret_move2 (edict_t *self); +void door_secret_move3 (edict_t *self); +void door_secret_move4 (edict_t *self); +void door_secret_move5 (edict_t *self); +void door_secret_move6 (edict_t *self); +void door_secret_done (edict_t *self); + +void door_secret_use (edict_t *self, edict_t *other, edict_t *activator) +{ + // make sure we're not already moving + if (!VectorCompare(self->s.origin, vec3_origin)) + return; + + Move_Calc (self, self->pos1, door_secret_move1); + door_use_areaportals (self, true); +} + +void door_secret_move1 (edict_t *self) +{ + self->nextthink = level.time + 1.0; + self->think = door_secret_move2; +} + +void door_secret_move2 (edict_t *self) +{ + Move_Calc (self, self->pos2, door_secret_move3); +} + +void door_secret_move3 (edict_t *self) +{ + if (self->wait == -1) + return; + self->nextthink = level.time + self->wait; + self->think = door_secret_move4; +} + +void door_secret_move4 (edict_t *self) +{ + Move_Calc (self, self->pos1, door_secret_move5); +} + +void door_secret_move5 (edict_t *self) +{ + self->nextthink = level.time + 1.0; + self->think = door_secret_move6; +} + +void door_secret_move6 (edict_t *self) +{ + Move_Calc (self, vec3_origin, door_secret_done); +} + +void door_secret_done (edict_t *self) +{ + if (!(self->targetname) || (self->spawnflags & SECRET_ALWAYS_SHOOT)) + { + self->health = 0; + self->takedamage = DAMAGE_YES; + } + door_use_areaportals (self, false); +} + +void door_secret_blocked (edict_t *self, edict_t *other) +{ + if (!(other->svflags & SVF_MONSTER) && !(other->client) ) + { + // give it a chance to go away on it's own terms (like gibs) + T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, 100000, 1, 0, MOD_CRUSH); + // if it's still there, nuke it + if (other) + BecomeExplosion1 (other); + return; + } + + if (level.time < self->touch_debounce_time) + return; + self->touch_debounce_time = level.time + 0.5; + + // Ridah, small objects shouldn't hurt + if (VectorDistance( self->absmin, self->absmax) > 200) + T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, self->dmg, 1, 0, MOD_CRUSH); +} + +void door_secret_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + self->takedamage = DAMAGE_NO; + door_secret_use (self, attacker, attacker); +} + +void SP_func_door_secret (edict_t *ent) +{ + vec3_t forward, right, up; + float side; + float width; + float length; + + ent->moveinfo.sound_start = gi.soundindex ("doors/dr1_strt.wav"); + ent->moveinfo.sound_middle = gi.soundindex ("doors/dr1_mid.wav"); + ent->moveinfo.sound_end = gi.soundindex ("doors/dr1_end.wav"); + + ent->movetype = MOVETYPE_PUSH; + ent->solid = SOLID_BSP; + gi.setmodel (ent, ent->model); + + ent->blocked = door_secret_blocked; + ent->use = door_secret_use; + + if (!(ent->targetname) || (ent->spawnflags & SECRET_ALWAYS_SHOOT)) + { + ent->health = 0; + ent->takedamage = DAMAGE_YES; + ent->die = door_secret_die; + } + + if (!ent->dmg) + ent->dmg = 2; + + if (!ent->wait) + ent->wait = 5; + + ent->moveinfo.accel = + ent->moveinfo.decel = + ent->moveinfo.speed = 50; + + // calculate positions + AngleVectors (ent->s.angles, forward, right, up); + VectorClear (ent->s.angles); + side = 1.0 - (ent->spawnflags & SECRET_1ST_LEFT); + if (ent->spawnflags & SECRET_1ST_DOWN) + width = fabs(DotProduct(up, ent->size)); + else + width = fabs(DotProduct(right, ent->size)); + length = fabs(DotProduct(forward, ent->size)); + if (ent->spawnflags & SECRET_1ST_DOWN) + VectorMA (ent->s.origin, -1 * width, up, ent->pos1); + else + VectorMA (ent->s.origin, side * width, right, ent->pos1); + VectorMA (ent->pos1, length, forward, ent->pos2); + + if (ent->health) + { + ent->takedamage = DAMAGE_YES; + ent->die = door_killed; + ent->max_health = ent->health; + } + else if (ent->targetname && ent->message) + { + gi.soundindex ("misc/talk.wav"); + ent->touch = door_touch; + } + + ent->classname = "func_door"; + + gi.linkentity (ent); +} + + +/*QUAKED func_killbox (1 0 0) ? +Kills everything inside when fired, irrespective of protection. +*/ +void use_killbox (edict_t *self, edict_t *other, edict_t *activator) +{ + KillBox (self); +} + +void SP_func_killbox (edict_t *ent) +{ + gi.setmodel (ent, ent->model); + ent->use = use_killbox; + ent->svflags = SVF_NOCLIENT; +} + +// JOSEPH 8-FEB-99 +/*UAKED rotating_light (0 .5 .8) (-8 -8 -8) (8 8 8) START_OFF ALARM +"health" if set, the light may be killed. +*/ + +// RAFAEL +// note to self +// the lights will take damage from explosions +// this could leave a player in total darkness very bad + +#define START_OFF 1 + +void rotating_light_alarm (edict_t *self) +{ + if (self->spawnflags & START_OFF) + { + self->think = NULL; + self->nextthink = 0; + } + else + { + gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_start, 1, ATTN_STATIC, 0); + self->nextthink = level.time + 1; + } +} + +void rotating_light_killed (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_WELDING_SPARKS); + gi.WriteByte (30); + gi.WritePosition (self->s.origin); + gi.WriteDir (vec3_origin); + gi.WriteByte (0xe0 + (rand()&7)); + gi.multicast (self->s.origin, MULTICAST_PVS); + + self->s.effects &= ~EF_SPINNINGLIGHTS; + self->use = NULL; + + self->think = G_FreeEdict; + self->nextthink = level.time + 0.1; + +} + +static void rotating_light_use (edict_t *self, edict_t *other, edict_t *activator) +{ + if (self->spawnflags & START_OFF) + { + self->spawnflags &= ~START_OFF; + self->s.effects |= EF_SPINNINGLIGHTS; + + if (self->spawnflags & 2) + { + self->think = rotating_light_alarm; + self->nextthink = level.time + 0.1; + } + } + else + { + self->spawnflags |= START_OFF; + self->s.effects &= ~EF_SPINNINGLIGHTS; + } +} + + +void SP_rotating_light (edict_t *self) +{ + + self->movetype = MOVETYPE_STOP; + self->solid = SOLID_BBOX; + + self->s.modelindex = gi.modelindex ("models/objects/light/tris.md2"); + + self->s.frame = 0; + + self->use = rotating_light_use; + + if (self->spawnflags & START_OFF) + self->s.effects &= ~EF_SPINNINGLIGHTS; + else + { + self->s.effects |= EF_SPINNINGLIGHTS; + } + + if (!self->speed) + self->speed = 32; + // this is a real cheap way + // to set the radius of the light + // self->s.frame = self->speed; + + if (!self->health) + { + self->health = 10; + self->max_health = self->health; + self->die = rotating_light_killed; + self->takedamage = DAMAGE_YES; + } + else + { + self->max_health = self->health; + self->die = rotating_light_killed; + self->takedamage = DAMAGE_YES; + } + + if (self->spawnflags & 2) + { + self->moveinfo.sound_start = gi.soundindex ("misc/alarm.wav"); + } + + gi.linkentity (self); + +} + + +/*UAKED func_object_repair (1 .5 0) (-8 -8 -8) (8 8 8) +object to be repaired. +The default delay is 1 second +"delay" the delay in seconds for spark to occur +*/ + +void object_repair_fx (edict_t *ent) +{ + + + ent->nextthink = level.time + ent->delay; + + if (ent->health <= 100) + ent->health++; + else + { + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_WELDING_SPARKS); + gi.WriteByte (10); + gi.WritePosition (ent->s.origin); + gi.WriteDir (vec3_origin); + gi.WriteByte (0xe0 + (rand()&7)); + gi.multicast (ent->s.origin, MULTICAST_PVS); + } + +} + + +void object_repair_dead (edict_t *ent) +{ + G_UseTargets (ent, ent); + ent->nextthink = level.time + 0.1; + ent->think = object_repair_fx; +} + +void object_repair_sparks (edict_t *ent) +{ + + if (ent->health < 0) + { + ent->nextthink = level.time + 0.1; + ent->think = object_repair_dead; + return; + } + + ent->nextthink = level.time + ent->delay; + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_WELDING_SPARKS); + gi.WriteByte (10); + gi.WritePosition (ent->s.origin); + gi.WriteDir (vec3_origin); + gi.WriteByte (0xe0 + (rand()&7)); + gi.multicast (ent->s.origin, MULTICAST_PVS); + +} + +void SP_object_repair (edict_t *ent) +{ + ent->movetype = MOVETYPE_NONE; + ent->solid = SOLID_BBOX; + ent->classname = "object_repair"; + VectorSet (ent->mins, -8, -8, 8); + VectorSet (ent->maxs, 8, 8, 8); + ent->think = object_repair_sparks; + ent->nextthink = level.time + 1.0; + ent->health = 100; + if (!ent->delay) + ent->delay = 1.0; + +} +// END JOSEPH + +// JOSEPH 26-APR-99 +/*QUAKED func_lift (0 .5 .8) ? START_ON TOGGLE BLOCK_STOPS +Lifts are moving platforms that players can ride. +The targets origin specifies the min point of the lift at each corner. +The lift spawns at the first target it is pointing at. +If the lift is the target of a button or trigger, it will not begin moving until activated. +speed default 100 +dmg default 2 +noise looping sound to play when the lift is in motion +target2 string ID for attached button +*/ +// END JOSEPH + +void lift_next (edict_t *self); + +void lift_blocked (edict_t *self, edict_t *other) +{ + if (!(other->svflags & SVF_MONSTER) && !(other->client) ) + { + // give it a chance to go away on it's own terms (like gibs) + T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, 100000, 1, 0, MOD_CRUSH); + // if it's still there, nuke it + if (other) + BecomeExplosion1 (other); + return; + } + + if (level.time < self->touch_debounce_time) + return; + + if (!self->dmg) + return; + self->touch_debounce_time = level.time + 0.5; + + // Ridah, small objects shouldn't hurt + if (VectorDistance( self->absmin, self->absmax) > 200) + T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, self->dmg, 1, 0, MOD_CRUSH); +} + +void lift_wait (edict_t *self) +{ + if (self->target_ent->pathtarget) + { + char *savetarget; + edict_t *ent; + + ent = self->target_ent; + savetarget = ent->target; + ent->target = ent->pathtarget; + G_UseTargets (ent, self->activator); + ent->target = savetarget; + + // make sure we didn't get killed by a killtarget + if (!self->inuse) + return; + } + + if (self->moveinfo.wait) + { + if (self->moveinfo.wait > 0) + { + self->nextthink = level.time + self->moveinfo.wait; + self->think = lift_next; + } + else if (self->spawnflags & TRAIN_TOGGLE) // && wait < 0 + { + lift_next (self); + self->spawnflags &= ~TRAIN_START_ON; + VectorClear (self->velocity); + self->nextthink = 0; + } + + if (!(self->flags & FL_TEAMSLAVE)) + { + if (self->moveinfo.sound_end) + gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_end, 1, ATTN_STATIC, 0); + self->s.sound = 0; + } + } + else + { + lift_next (self); + } + +} + +void lift_next (edict_t *self) +{ + edict_t *ent; + vec3_t dest; + qboolean first; + + first = true; +again: + if (!self->target) + { +// gi.dprintf ("lift_next: no next target\n"); + return; + } + + ent = G_PickTarget (self->target); + if (!ent) + { + gi.dprintf ("lift_next: bad target %s\n", self->target); + return; + } + + self->target = ent->target; + + // check for a teleport path_corner + if (ent->spawnflags & 1) + { + if (!first) + { + gi.dprintf ("connected teleport path_corners, see %s at %s\n", ent->classname, vtos(ent->s.origin)); + return; + } + first = false; + VectorSubtract (ent->s.origin, self->mins, self->s.origin); + VectorCopy (self->s.origin, self->s.old_origin); + gi.linkentity (self); + goto again; + } + + self->moveinfo.wait = ent->wait; + self->target_ent = ent; + + if (!(self->flags & FL_TEAMSLAVE)) + { + if (self->moveinfo.sound_start) + gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_start, 1, ATTN_STATIC, 0); + self->s.sound = self->moveinfo.sound_middle; + } + + VectorSubtract (ent->s.origin, self->mins, dest); + self->moveinfo.state = STATE_TOP; + VectorCopy (self->s.origin, self->moveinfo.start_origin); + VectorCopy (dest, self->moveinfo.end_origin); + Move_Calc (self, dest, lift_wait); + self->spawnflags |= TRAIN_START_ON; + +// BEGIN: Xatrix/Ridah/Navigator/12-apr-1999 + self->goalentity = ent; +// END: Xatrix/Ridah/Navigator/12-apr-1999 +} + +void lift_resume (edict_t *self) +{ + edict_t *ent; + vec3_t dest; + + ent = self->target_ent; + + VectorSubtract (ent->s.origin, self->mins, dest); + self->moveinfo.state = STATE_TOP; + VectorCopy (self->s.origin, self->moveinfo.start_origin); + VectorCopy (dest, self->moveinfo.end_origin); + Move_Calc (self, dest, lift_wait); + self->spawnflags |= TRAIN_START_ON; +} + +void func_lift_find (edict_t *self) +{ + edict_t *ent; + + if (!self->target) + { + gi.dprintf ("lift_find: no target\n"); + return; + } + ent = G_PickTarget (self->target); + if (!ent) + { + gi.dprintf ("lift_find: target %s not found\n", self->target); + return; + } + + self->target = ent->target; + + VectorSubtract (ent->s.origin, self->mins, self->s.origin); + gi.linkentity (self); + + // JOSEPH 28-APR-99 + if (self->target2) + { + int i; + edict_t *e = NULL; + + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->classname) && (!strcmp(e->classname, "func_button")) && + (e->target2) &&(!strcmp(e->target2, self->target2))) + { + e->handleflag = self->s.origin[2] - e->s.origin[2]; + } + } + } + // END JOSEPH + + // if not triggered, start immediately + if (!self->targetname) + self->spawnflags |= TRAIN_START_ON; + + if (self->spawnflags & TRAIN_START_ON) + { + self->nextthink = level.time + FRAMETIME; + self->think = lift_next; + self->activator = self; + } + +// BEGIN: Xatrix/Ridah/Navigator/12-apr-1999 + self->goalentity = ent; +// END: Xatrix/Ridah/Navigator/12-apr-1999 +} + +void lift_use (edict_t *self, edict_t *other, edict_t *activator) +{ +// BEGIN: Xatrix/Ridah/Navigator/09-apr-1998 + // record the start position of this moving entity + VectorCopy(self->s.origin, self->cast_info.last_sighting); + self->last_goal = self->goalentity; +// END: Xatrix/Ridah/Navigator/09-apr-1998 + + self->activator = activator; + + if (self->spawnflags & TRAIN_START_ON) + { + if (!(self->spawnflags & TRAIN_TOGGLE)) + return; + self->spawnflags &= ~TRAIN_START_ON; + VectorClear (self->velocity); + self->nextthink = 0; + } + else + { + if (self->target_ent) + lift_resume(self); + else + lift_next(self); + } +} + +// JOSEPH 22-APR-99 +void SP_func_lift (edict_t *self) +{ + self->movetype = MOVETYPE_PUSH; + + VectorClear (self->s.angles); + self->blocked = lift_blocked; + if (self->spawnflags & TRAIN_BLOCK_STOPS) + self->dmg = 0; + else + { + if (!self->dmg) + self->dmg = 100; + } + self->solid = SOLID_BSP; + gi.setmodel (self, self->model); + + if (st.noise) + self->moveinfo.sound_middle = gi.soundindex (st.noise); + + if (!self->speed) + self->speed = 100; + + self->moveinfo.speed = self->speed; + self->moveinfo.accel = self->moveinfo.decel = self->moveinfo.speed; + + self->use = lift_use; + + gi.linkentity (self); + + if (self->target) + { + // start lifts on the second frame, to make sure their targets have had + // a chance to spawn + self->nextthink = level.time + FRAMETIME; + self->think = func_lift_find; + } + else + { + gi.dprintf ("func_lift without a target at %s\n", vtos(self->absmin)); + } +} +// END JOSEPH diff --git a/gamesrc/G_FUNC.H b/gamesrc/G_FUNC.H new file mode 100644 index 0000000..0be39c0 --- /dev/null +++ b/gamesrc/G_FUNC.H @@ -0,0 +1,23 @@ +// g_func.h + +// defines + +#define PLAT_LOW_TRIGGER 1 + +#define STATE_TOP 0 +#define STATE_BOTTOM 1 +#define STATE_UP 2 +#define STATE_DOWN 3 + +#define DOOR_START_OPEN 1 +#define DOOR_REVERSE 2 +#define DOOR_CRUSHER 4 +#define DOOR_NOMONSTER 8 +#define DOOR_TOGGLE 32 +#define DOOR_X_AXIS 64 +#define DOOR_Y_AXIS 128 +#define DOOR_ROTATE_AWAY 256 + +// procedures + +void Use_Plat (edict_t *ent, edict_t *other, edict_t *activator); \ No newline at end of file diff --git a/gamesrc/G_LOCAL.H b/gamesrc/G_LOCAL.H new file mode 100644 index 0000000..864202d --- /dev/null +++ b/gamesrc/G_LOCAL.H @@ -0,0 +1,1746 @@ + +// g_local.h -- local definitions for game module + +#include "q_shared.h" + +// define GAME_INCLUDE so that game.h does not define the +// short, server-visible gclient_t and edict_t structures, +// because we define the full size ones in this file +#define GAME_INCLUDE +#include "game.h" + +#include "g_nav.h" + +#include "vehicles.h" + +#include "g_teamplay.h" + +// Ridah, new AI system defines +#include "g_ai.h" +#include "voice.h" + +// Episode specific defines +#include "ep_all.h" + +// the "gameversion" client command will print this plus compile date +#define GAMEVERSION "main" + +// protocol bytes that can be directly added to messages +#define svc_muzzleflash 1 +#define svc_muzzleflash2 2 +#define svc_muzzleflash3 3 +#define svc_temp_entity 4 +#define svc_layout 5 +#define svc_inventory 6 +// JOSEPH 29-DEC-98 +#define svc_hud 7 + +#define svc_stufftext 13 + +//================================================================== + +// view pitching times +#define DAMAGE_TIME 0.5 +#define FALL_TIME 0.3 + + +// edict->spawnflags +// these are set with checkboxes on each entity in the map editor +#define SPAWNFLAG_NOT_EASY 0x00000100 +#define SPAWNFLAG_NOT_MEDIUM 0x00000200 +#define SPAWNFLAG_NOT_HARD 0x00000400 +#define SPAWNFLAG_NOT_DEATHMATCH 0x00000800 +#define SPAWNFLAG_NOT_COOP 0x00001000 + +// edict->flags +#define FL_FLY 0x00000001 +#define FL_SWIM 0x00000002 // implied immunity to drowining +#define FL_IMMUNE_LASER 0x00000004 +#define FL_INWATER 0x00000008 +#define FL_GODMODE 0x00000010 +#define FL_NOTARGET 0x00000020 +#define FL_IMMUNE_SLIME 0x00000040 +#define FL_IMMUNE_LAVA 0x00000080 +#define FL_PARTIALGROUND 0x00000100 // not all corners are valid +#define FL_WATERJUMP 0x00000200 // player jumping out of water +#define FL_TEAMSLAVE 0x00000400 // not the first on the team +#define FL_NO_KNOCKBACK 0x00000800 +#define FL_POWER_ARMOR 0x00001000 // power armor (if any) is active + +// Ridah, Vehicles +#define FL_HOVERCAR 0x00002000 // this entity is currently using a Hovercar +#define FL_HOVERCAR_GROUND 0x00004000 // this entity is currently using a Grounded Hovercar +#define FL_BIKE 0x00008000 +#define FL_CAR 0x00010000 +// done. + +#define FL_SPAWNED_BLOODPOOL 0x00020000 +#define FL_FOLLOWING 0x00040000 // this character has followed us to the next level. so if we're + // loading in a game as a result of changing levels, delete any + // characters that have this flag set, since they've moved onto + // the next level. + // + // If we're manually loading a level (not changing levels), leave + // these characters in place, and clear the flag. + +#define FL_CHASECAM 0x00100000 // entity is using chasecam +#define FL_MDXBBOX 0x00200000 +#define FL_JETPACK 0x00400000 // Jet Pack enabled + +#define FL_RESPAWN 0x80000000 // used for item respawning + + +#define FRAMETIME 0.1 + +// memory tags to allow dynamic memory to be cleaned up +#define TAG_GAME 765 // clear when unloading the dll +// *** RIDAH: do not change this, 766 is hardcoded into MDX_GetObjectBounds() *** +#define TAG_LEVEL 766 // clear when loading a new level + + +#define MELEE_DISTANCE 80 + +#define BODY_QUEUE_SIZE 8 + +typedef enum +{ + DAMAGE_NO, + DAMAGE_YES, // will take damage if hit + DAMAGE_AIM // auto targeting recognizes this +} damage_t; + +typedef enum +{ + WEAPON_READY, + WEAPON_ACTIVATING, + WEAPON_DROPPING, + WEAPON_FIRING, +// RAFAEL 01-11-99 + WEAPON_RELOADING, + WEAPON_RELOAD_CYCLE, + WEAPON_RELOADING_SPISTOL +} weaponstate_t; + +typedef enum +{ + AMMO_BULLETS, + AMMO_SHELLS, + AMMO_ROCKETS, + AMMO_GRENADES, + AMMO_CELLS, + AMMO_SLUGS, + AMMO_MAGSLUG, + AMMO_TRAP +} ammo_t; + +// RAFAEL +typedef enum +{ + CLIP_NONE, + CLIP_PISTOL, + CLIP_SHOTGUN, + CLIP_TOMMYGUN, + CLIP_SLUGS, + CLIP_GRENADES, + CLIP_ROCKETS, + CLIP_FLAMEGUN +} clip_t; + +//deadflag +#define DEAD_NO 0 +#define DEAD_DYING 1 +#define DEAD_DEAD 2 +#define DEAD_RESPAWNABLE 3 + +//range +#define RANGE_MELEE 0 +#define RANGE_NEAR 1 +#define RANGE_MID 2 +#define RANGE_FAR 3 + +//gib types +#define GIB_ORGANIC 0 +#define GIB_METALLIC 1 + + +// Ridah, MDX, simplify assigning model parts, this isn't needed by the engine +#define PART_HEAD 0 // HEAD must ALWAYS use this index! +#define PART_LEGS 1 +#define PART_BODY 2 +#define PART_GUN 3 +// done. +#define PART_GUN2 4 +#define PART_CIGAR 5 +#define PART_HAT 6 + +//monster attack state +#define AS_STRAIGHT 1 +#define AS_SLIDING 2 +#define AS_MELEE 3 +#define AS_MISSILE 4 + +// armor types +#define ARMOR_NONE 0 +#define ARMOR_JACKET 1 +#define ARMOR_COMBAT 2 +#define ARMOR_BODY 3 +#define ARMOR_SHARD 4 + +// power armor types +#define POWER_ARMOR_NONE 0 +#define POWER_ARMOR_SCREEN 1 +#define POWER_ARMOR_SHIELD 2 + +// handedness values +#define RIGHT_HANDED 0 +#define LEFT_HANDED 1 +#define CENTER_HANDED 2 + + +// game.serverflags values +#define SFL_CROSS_TRIGGER_1 0x00000001 +#define SFL_CROSS_TRIGGER_2 0x00000002 +#define SFL_CROSS_TRIGGER_3 0x00000004 +#define SFL_CROSS_TRIGGER_4 0x00000008 +#define SFL_CROSS_TRIGGER_5 0x00000010 +#define SFL_CROSS_TRIGGER_6 0x00000020 +#define SFL_CROSS_TRIGGER_7 0x00000040 +#define SFL_CROSS_TRIGGER_8 0x00000080 +#define SFL_CROSS_TRIGGER_MASK 0x000000ff + + +// noise types for PlayerNoise +#define PNOISE_SELF 0 +#define PNOISE_WEAPON 1 +#define PNOISE_IMPACT 2 + + +// edict->movetype values +typedef enum +{ +MOVETYPE_NONE, // never moves +MOVETYPE_NOCLIP, // origin and angles change with no interaction +MOVETYPE_PUSH, // no clip to world, push on box contact +MOVETYPE_STOP, // no clip to world, stops on box contact + +MOVETYPE_WALK, // gravity +MOVETYPE_STEP, // gravity, special edge handling +MOVETYPE_FLY, +MOVETYPE_TOSS, // gravity +MOVETYPE_FLYMISSILE, // extra size to monsters +MOVETYPE_BOUNCE, // added this (the comma at the end of line) +MOVETYPE_WALLBOUNCE, +MOVETYPE_TOSS_SLIDE // Ridah, testing +} movetype_t; + + + +typedef struct +{ + int base_count; + int max_count; + float normal_protection; + float energy_protection; + int armor; +} gitem_armor_t; + + +// gitem_t->flags +#define IT_WEAPON 1 // use makes active weapon +#define IT_AMMO 2 +#define IT_ARMOR 4 +#define IT_STAY_COOP 8 +#define IT_KEY 16 +#define IT_POWERUP 32 + +#define IT_FLASHLIGHT 64 + +#define IT_SILENCER 128 + +#define IT_NOCHEATS 256 + +typedef struct gitem_s +{ + char *classname; // spawning name + qboolean (*pickup)(struct edict_s *ent, struct edict_s *other); + void (*use)(struct edict_s *ent, struct gitem_s *item); + void (*drop)(struct edict_s *ent, struct gitem_s *item); + void (*weaponthink)(struct edict_s *ent); + char *pickup_sound; + char *world_model; + int world_model_flags; + char *view_model; + + // client side info + char *icon; + char *pickup_name; // for printing on pickup + int count_width; // number of digits to display by icon + + int quantity; // for ammo how much, for weapons how much is used per shot + char *ammo; // for weapons + int flags; // IT_* flags + + void *info; + int tag; + + char *precaches; // string of all models, sounds, and images this item will use + + +} gitem_t; + + + +// +// this structure is left intact through an entire game +// it should be initialized at dll load time, and read/written to +// the server.ssv file for savegames +// +typedef struct +{ + char helpmessage1[512]; + char helpmessage2[512]; + int helpchanged; // flash F1 icon if non 0, play sound + // and increment only if 1, 2, or 3 + + gclient_t *clients; // [maxclients] + + // can't store spawnpoint in level, because + // it would get overwritten by the savegame restore + char spawnpoint[512]; // needed for coop respawns + + // store latched cvars here that we want to get at often + int maxclients; + int maxentities; + + // cross level triggers + int serverflags; + + // items + int num_items; + + qboolean autosaved; +} game_locals_t; + + +// +// this structure is cleared as each map is entered +// it is read/written to the level.sav file for savegames +// + +#define MAX_LIGHT_SOURCES 512 + +typedef struct +{ + int framenum; + float time; + + char level_name[MAX_QPATH]; // the descriptive name (Outer Base, etc) + char mapname[MAX_QPATH]; // the server name (base1, etc) + char nextmap[MAX_QPATH]; // go here when fraglimit is hit + + // intermission state + float intermissiontime; // time the intermission was started + char *changemap; + int exitintermission; + vec3_t intermission_origin; + vec3_t intermission_angle; + + edict_t *sight_client; // changed once each frame for coop games + + edict_t *sight_entity; + int sight_entity_framenum; + edict_t *sound_entity; + int sound_entity_framenum; + edict_t *sound2_entity; + int sound2_entity_framenum; + + int pic_health; + + int total_secrets; + int found_secrets; + + int total_goals; + int found_goals; + + int total_monsters; + int killed_monsters; + + edict_t *current_entity; // entity running from G_RunFrame + int body_que; // dead bodies + + int power_cubes; // ugly necessity for coop + + // BEGIN: Xatrix/Ridah/Navigator/19-mar-1998 + // this stores all the node data for the current level + active_node_data_t *node_data; + // END: Xatrix/Ridah/Navigator/19-mar-1998 + + // Ridah + int num_characters; // progressive total, updated each time a character enters or leaves the game + // NOTE: includes players! + + edict_t *characters[MAX_CHARACTERS]; // indexes in g_edicts to all characters in the game + + // Global Cast Memory - stores a lookup table pointing to character-character memories + // + // This allows us to easily indentify whether a particular character can see another character + // + // [ SOURCE ][ DEST ] + cast_memory_t *global_cast_memory[MAX_CHARACTERS][MAX_CHARACTERS]; + + int episode; // current episode being played + int unit; // current unit within the episode + // Ridah, done. + + // RAFAEL 11-05-98 + vec3_t light_orgs[MAX_LIGHT_SOURCES]; + vec3_t light_colors[MAX_LIGHT_SOURCES]; + float light_values[MAX_LIGHT_SOURCES]; + //float light_radius[MAX_LIGHT_SOURCES]; + byte light_styles[MAX_LIGHT_SOURCES]; + int num_light_sources; + // END 11-05-98 + + // RAFAEL + float cut_scene_time; + // int exit_cut_scene; + vec3_t cut_scene_origin; + vec3_t cut_scene_angle; + vec3_t player_oldpos; + vec3_t player_oldang; + + float pawn_time; + vec3_t pawn_origin; + qboolean pawn_exit; + + qboolean bar_lvl; + float speaktime; + // JOSEPH 24-FEB-99 + int cut_scene_camera_switch; + int cut_scene_end_count; + // END JOSEPH + // JOSEPH 19-MAR-99-B + float fadeendtime; + float totalfade; + int inversefade; + // END JOSEPH + + // JOSEPH 13-JUN-99 + int helpchange; + // END JOSEPH +} level_locals_t; + + +// spawn_temp_t is only used to hold entity field values that +// can be set from the editor, but aren't actualy present +// in edict_t during gameplay +typedef struct +{ + // world vars + char *sky; + char *nextmap; + + int lip; + int distance; + int height; + char *noise; + float pausetime; + char *item; + char *gravity; + + float minyaw; + float maxyaw; + float minpitch; + float maxpitch; + + float fogdensity; + vec3_t fogval; + float fogdensity2; + vec3_t fogval2; + +} spawn_temp_t; + +// JOSEPH 7-OCT-98 +typedef struct +{ + // fixed data + vec3_t start_origin; + vec3_t start_angles; + vec3_t end_origin; + vec3_t end_angles; + + int sound_start; + int sound_middle; + int sound_end; + int sound_start2; + int sound_middle2; + int sound_end2; + + float accel; + float speed; + float decel; + float distance; + + float wait; + + // state data + int state; + vec3_t dir; + float current_speed; + float move_speed; + float next_speed; + float remaining_distance; + float decel_distance; + void (*endfunc)(edict_t *); +} moveinfo_t; +// END JOSEPH + +typedef struct +{ + void (*aifunc)(edict_t *self, float dist); + float dist; + void (*thinkfunc)(edict_t *self); +} mframe_t; + +typedef struct +{ + int firstframe; + int lastframe; + mframe_t *frame; +// float *lateral_array; + void (*endfunc)(edict_t *self); +} mmove_t; + +typedef struct +{ + mmove_t *currentmove; + int aiflags; + int nextframe; + float scale; + + void (*idle)(edict_t *self); + void (*search)(edict_t *self); + void (*dodge)(edict_t *self, edict_t *other, float eta); + + qboolean (*attack)(edict_t *self); // standing attack + void (*long_attack)(edict_t *self); // running attack (run, and attack if facing enemy and path is clear) + + void (*sight)(edict_t *self, edict_t *other); + qboolean (*checkattack)(edict_t *self); + +// Ridah, new AI system + mmove_t *oldcurrentmove; // used for thug_sit + + void (*duck)(edict_t *self); // called when beginning to duck (may be part of normal movement) + void (*talk)(edict_t *self); // will start a random talking animation, and play a sound + + void (*avoid)(edict_t *self, edict_t *other, qboolean face); // will start a random talking animation, and play a sound + + void (*catch_fire)(edict_t *self, edict_t *other); + + float last_talk_turn; + edict_t *talk_ent; // person we are talking to + + float max_attack_distance; // try and move closer to enemy if outside this range + float max_sighting_distance; // can't see things out of this range + + float standing_max_z; // set to self->maxs[2] upon spawning + float last_avoid, last_reverse; + edict_t *avoid_ent; + + float goal_ent_pausetime; // avoid goal_ent if > level.time + + int last_side_attack; + float last_side_attack_time; + + cast_memory_t *friend_memory; + cast_memory_t *enemy_memory; + cast_memory_t *neutral_memory; + + // these allow a generic AI system for all characters to interact with the animations + mmove_t *move_stand; + mmove_t *move_crstand; + + mmove_t *move_run; + mmove_t *move_runwalk; + mmove_t *move_crwalk; + + mmove_t *move_jump; + + mmove_t *move_crouch_down; + mmove_t *move_stand_up; + + mmove_t *move_avoid_walk; + mmove_t *move_avoid_run; + mmove_t *move_avoid_reverse_walk; + mmove_t *move_avoid_reverse_run; + mmove_t *move_avoid_crwalk; + + mmove_t *move_lside_step; + mmove_t *move_rside_step; + + mmove_t *move_start_climb; + mmove_t *move_end_climb; + + mmove_t *move_evade; + mmove_t *move_stand_evade; // not quite a hostile enemy yet, but they may have their weapon out + void (*backoff)(edict_t *self, edict_t *other); +// done. + + float pausetime; + + vec3_t saved_goal; + vec3_t last_sighting; + float idle_time; + int linkcount; + +// Rafael + // was missing this variable + float trail_time; + +} cast_info_t; + + + +extern game_locals_t game; +extern level_locals_t level; +extern game_import_t gi; +extern game_export_t globals; +extern spawn_temp_t st; + +extern int sm_meat_index; +extern int snd_fry; + + + + + + +extern int jacket_armor_index; +extern int combat_armor_index; +extern int body_armor_index; + + +// Ridah, in-game effects +//extern int sp_blood1; + + +// means of death +#define MOD_UNKNOWN 0 +#define MOD_BLASTER 1 +#define MOD_SHOTGUN 2 +#define MOD_SSHOTGUN 3 +#define MOD_MACHINEGUN 4 +#define MOD_CHAINGUN 5 +#define MOD_GRENADE 6 +#define MOD_G_SPLASH 7 +#define MOD_ROCKET 8 +#define MOD_R_SPLASH 9 +#define MOD_HYPERBLASTER 10 +#define MOD_RAILGUN 11 +#define MOD_BFG_LASER 12 +#define MOD_BFG_BLAST 13 +#define MOD_BFG_EFFECT 14 +#define MOD_HANDGRENADE 15 +#define MOD_HG_SPLASH 16 +#define MOD_WATER 17 +#define MOD_SLIME 18 +#define MOD_LAVA 19 +#define MOD_CRUSH 20 +#define MOD_TELEFRAG 21 +#define MOD_FALLING 22 +#define MOD_SUICIDE 23 +#define MOD_HELD_GRENADE 24 +#define MOD_EXPLOSIVE 25 +#define MOD_BARREL 26 +#define MOD_BOMB 27 +#define MOD_EXIT 28 +#define MOD_SPLASH 29 +#define MOD_TARGET_LASER 30 +#define MOD_TRIGGER_HURT 31 +#define MOD_HIT 32 +#define MOD_TARGET_BLASTER 33 +#define MOD_RIPPER 34 +#define MOD_PHALANX 35 +#define MOD_BRAINTENTACLE 36 +#define MOD_BLASTOFF 37 +#define MOD_GEKK 38 +#define MOD_TRAP 39 +#define MOD_FLAMETHROWER 40 +#define MOD_BLACKJACK 41 +#define MOD_SILENCER 42 +#define MOD_CROWBAR 43 +#define MOD_DOGBITE 44 +#define MOD_BLOWBACK 45 +#define MOD_PISTOL 46 +#define MOD_BARMACHINEGUN 47 +#define MOD_SAFECAMPER 48 + + +#define MOD_FRIENDLY_FIRE 0x8000000 + +extern int meansOfDeath; + + +extern edict_t *g_edicts; + +extern cast_memory_t *g_cast_memory; +extern cast_group_t *g_cast_groups; + +#define FOFS(x) (int)&(((edict_t *)0)->x) +#define STOFS(x) (int)&(((spawn_temp_t *)0)->x) +#define LLOFS(x) (int)&(((level_locals_t *)0)->x) +#define CLOFS(x) (int)&(((gclient_t *)0)->x) +#define CMOFS(x) (int)&(((cast_memory_t *)0)->x) + +#define random() ((rand () & 0x7fff) / ((float)0x7fff)) +#define crandom() (2.0 * (random() - 0.5)) + +extern cvar_t *maxentities; +extern cvar_t *deathmatch; + +extern cvar_t *maxrate; + +extern cvar_t *coop; +extern cvar_t *dmflags; +extern cvar_t *skill; +extern cvar_t *fraglimit; +extern cvar_t *timelimit; +extern cvar_t *cashlimit; +extern cvar_t *password; +extern cvar_t *g_select_empty; +extern cvar_t *dedicated; + +extern cvar_t *filterban; + +extern cvar_t *sv_gravity; +extern cvar_t *sv_maxvelocity; + +extern cvar_t *gun_x, *gun_y, *gun_z; +extern cvar_t *sv_rollspeed; +extern cvar_t *sv_rollangle; + +extern cvar_t *run_pitch; +extern cvar_t *run_roll; +extern cvar_t *bob_up; +extern cvar_t *bob_pitch; +extern cvar_t *bob_roll; + +extern cvar_t *sv_cheats; +extern cvar_t *maxclients; + +extern cvar_t *flood_msgs; +extern cvar_t *flood_persecond; +extern cvar_t *flood_waitdelay; + +// Ridah, new cvar's +extern cvar_t *developer; + +extern cvar_t *ai_debug_memory; + +extern cvar_t *g_vehicle_test; + +extern cvar_t *dm_locational_damage; + +extern cvar_t *showlights; + +extern cvar_t *r_directional_lighting; + +extern cvar_t *sv_runscale; + +extern cvar_t *burn_enabled; +extern cvar_t *burn_size; +extern cvar_t *burn_intensity; +extern cvar_t *burn_r; +extern cvar_t *burn_g; +extern cvar_t *burn_b; + +extern cvar_t *timescale; + +extern cvar_t *teamplay; +extern cvar_t *g_cashspawndelay; + +extern cvar_t *cl_parental_lock; +extern cvar_t *cl_parental_override; + +extern cvar_t *dm_realmode; + +extern cvar_t *g_mapcycle_file; +// Ridah, done. + +extern cvar_t *cl_captions; + +#define world (&g_edicts[0]) + +// item spawnflags +#define ITEM_TRIGGER_SPAWN 0x00000001 +#define ITEM_NO_TOUCH 0x00000002 +// 6 bits reserved for editor flags +// 8 bits used as power cube id bits for coop games +#define DROPPED_ITEM 0x00010000 +#define DROPPED_PLAYER_ITEM 0x00020000 +#define ITEM_TARGETS_USED 0x00040000 + +// +// fields are needed for spawning from the entity string +// and saving / loading games +// +#define FFL_SPAWNTEMP 1 +#define FFL_NOSPAWN 2 + +typedef enum { + F_INT, + F_FLOAT, + F_LSTRING, // string on disk, pointer in memory, TAG_LEVEL + F_GSTRING, // string on disk, pointer in memory, TAG_GAME + F_VECTOR, + F_ANGLEHACK, + F_EDICT, // index on disk, pointer in memory + F_ITEM, // index on disk, pointer in memory + F_CLIENT, // index on disk, pointer in memory + F_FUNCTION, + F_MMOVE, + F_CAST_MEMORY, + F_IGNORE +} fieldtype_t; + +typedef struct +{ + char *name; + int ofs; + fieldtype_t type; + int flags; +} field_t; + + +extern field_t fields[]; +extern gitem_t itemlist[]; + + +// +// g_cmds.c +// +void Cmd_Help_f (edict_t *ent, int page); +void Cmd_Score_f (edict_t *ent); + +// +// g_items.c +// +void PrecacheItem (gitem_t *it); +void InitItems (void); +void SetItemNames (void); +gitem_t *FindItem (char *pickup_name); +gitem_t *FindItemByClassname (char *classname); +#define ITEM_INDEX(x) ((x)-itemlist) +edict_t *Drop_Item (edict_t *ent, gitem_t *item); +void SetRespawn (edict_t *ent, float delay); +void ChangeWeapon (edict_t *ent); +void SpawnItem (edict_t *ent, gitem_t *item); +void Think_Weapon (edict_t *ent); +int ArmorIndex (edict_t *ent); +int PowerArmorType (edict_t *ent); +gitem_t *GetItemByIndex (int index); +qboolean Add_Ammo (edict_t *ent, gitem_t *item, int count); +void Touch_Item (edict_t *ent, edict_t *other, cplane_t *plane, csurface_t *surf); +// JOSEPH 6-JAN-99 +edict_t *Shot_Drop_Item (edict_t *ent, gitem_t *item, char* modeloverride); +void Think_FlashLight (edict_t *ent); +// +// g_utils.c +// + +qboolean KillBox (edict_t *ent); +void G_ProjectSource (vec3_t point, vec3_t distance, vec3_t forward, vec3_t right, vec3_t result); +edict_t *G_Find (edict_t *from, int fieldofs, char *match); +edict_t *findradius (edict_t *from, vec3_t org, float rad); +edict_t *G_PickTarget (char *targetname); +void G_UseTargets (edict_t *ent, edict_t *activator); +void G_SetMovedir (vec3_t angles, vec3_t movedir); + +void G_InitEdict (edict_t *e); +edict_t *G_Spawn (void); +void G_FreeEdict (edict_t *e); + +void G_TouchTriggers (edict_t *ent); +void G_TouchSolids (edict_t *ent); + +char *G_CopyString (char *in); + +float *tv (float x, float y, float z); +char *vtos (vec3_t v); + +float vectoyaw (vec3_t vec); +float entyaw( edict_t *self, edict_t *other ); + +// Ridah, Surface Sprites +qboolean SurfaceSpriteEffect( byte surf_sfx, byte width, byte height, + edict_t *impact_ent, vec3_t pos, vec3_t normal ); + +qboolean SurfaceSpriteEffectRipple( byte surf_sfx, byte width, byte height, + edict_t *impact_ent, vec3_t pos, vec3_t normal ); + + +// done. + +// Ridah, moved vectoangles() to q_shared.c + +// +// g_combat.c +// +qboolean OnSameTeam (edict_t *ent1, edict_t *ent2); +qboolean CanDamage (edict_t *targ, edict_t *inflictor); +void T_Damage (edict_t *targ, edict_t *inflictor, edict_t *attacker, vec3_t dir, vec3_t point, vec3_t normal, int damage, int knockback, int dflags, int mod); +void T_RadiusDamage (edict_t *inflictor, edict_t *attacker, float damage, edict_t *ignore, float radius, int mod); +// JOSEPH 21-APR-99 +void T_RadiusDamage_Fire (edict_t *inflictor, edict_t *attacker, float damage, edict_t *ignore, float radius); +// END JOSEPH +// RAFAEL +void T_DamageMDX (edict_t *targ, edict_t *inflictor, edict_t *attacker, vec3_t dir, vec3_t +point, vec3_t normal, int damage, int knockback, int dflags, int mod, int mdx_part, int mdx_subobject); + +edict_t *SpawnTheWeapon (edict_t *self, char *itemname); + +// damage flags +#define DAMAGE_RADIUS 0x00000001 // damage was indirect +#define DAMAGE_NO_ARMOR 0x00000002 // armour does not protect from this damage +#define DAMAGE_ENERGY 0x00000004 // damage is from an energy based weapon +#define DAMAGE_NO_KNOCKBACK 0x00000008 // do not affect velocity, just view angles +#define DAMAGE_BULLET 0x00000010 // damage is from a bullet (used for ricochets) +#define DAMAGE_NO_PROTECTION 0x00000020 // armor, shields, invulnerability, and godmode have no effect + +#define DEFAULT_BULLET_HSPREAD 300 +#define DEFAULT_BULLET_VSPREAD 500 +#define DEFAULT_SHOTGUN_HSPREAD 1000 +#define DEFAULT_SHOTGUN_VSPREAD 500 +#define DEFAULT_DEATHMATCH_SHOTGUN_COUNT 12 +#define DEFAULT_SHOTGUN_COUNT 6 +#define DEFAULT_SSHOTGUN_COUNT 20 + +#define DEFAULT_SAWED_SHOTGUN_COUNT 6 + +// +// g_cast.c +// +void cast_fire_bullet (edict_t *self, vec3_t start, vec3_t dir, int damage, int kick, int hspread, int vspread, int flashtype); +void cast_fire_shotgun (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int kick, int hspread, int vspread, int count, int flashtype); +void cast_fire_blaster (edict_t *self, vec3_t start, vec3_t dir, int damage, int speed, int flashtype, int effect); +void cast_fire_grenade (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int speed, int flashtype); +void cast_fire_rocket (edict_t *self, vec3_t start, vec3_t dir, int damage, int speed, int flashtype); +void cast_fire_railgun (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int kick, int flashtype); +void cast_fire_bfg (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int speed, int kick, float damage_radius, int flashtype); +void think_checkedges (edict_t *ent); +void think_slide (edict_t *ent); +void fire_fire (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int speed, int effect, qboolean hyper); +qboolean DeathByGib( edict_t *self, edict_t *inflictor, edict_t *attacker, float damage ); + +// RAFAEL +void cast_fire_ionripper (edict_t *self, vec3_t start, vec3_t dir, int damage, int speed, int flashtype, int effect); +void cast_fire_heat (edict_t *self, vec3_t start, vec3_t dir, int damage, int speed, int flashtype); +void cast_dabeam (edict_t *self); +void cast_fire_blueblaster (edict_t *self, vec3_t start, vec3_t dir, int damage, int speed, int flashtype, int effect); + + +void M_droptofloor (edict_t *ent); +void cast_think (edict_t *self); +void walking_cast_start (edict_t *self); +void swimming_cast_start (edict_t *self); +void flying_cast_start (edict_t *self); +void AttackFinished (edict_t *self, float time); +void cast_death_use (edict_t *self); +void M_CatagorizePosition (edict_t *ent); +void M_FlyCheck (edict_t *self); +void M_CheckGround (edict_t *ent); + +// +// g_misc.c +// +void ThrowHead (edict_t *self, char *gibname, int damage, int type); +void ThrowClientHead (edict_t *self, int damage); +edict_t *ThrowGib (edict_t *self, char *gibname, int damage, int type); +// Ridah +void GibEntity( edict_t *self, edict_t *inflictor, float damage ); +void BecomeExplosion1(edict_t *self); +// RAFAEL +void ThrowHeadACID (edict_t *self, char *gibname, int damage, int type); +void ThrowGibACID (edict_t *self, char *gibname, int damage, int type); + +extern void path_corner_cast_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf); + +void AddLightSource(edict_t *self); +void UpdateDirLights( edict_t *self ); +void UpdateLightVecs( edict_t *self ); + +// +// g_ai.c +// +void AI_SetSightClient (void); + +void ai_stand (edict_t *self, float dist); +void ai_move (edict_t *self, float dist); +void ai_walk (edict_t *self, float dist); +void ai_turn (edict_t *self, float dist); +void ai_run (edict_t *self, float dist); +void ai_charge (edict_t *self, float dist); +int range (edict_t *self, edict_t *other); + +void ai_runFLASHLIGHT (edict_t *self, float dist); +void ai_runDOKEY (edict_t *self, float dist); + +// RAFAEL +void ai_turn2 (edict_t *self, float dist); + +void FoundTarget (edict_t *self); +qboolean infront (edict_t *self, edict_t *other); +// Ridah, for more precise infront check +qboolean directly_infront (edict_t *self, edict_t *other); +// Ridah, done. +qboolean visible (edict_t *self, edict_t *other); +qboolean FacingIdeal(edict_t *self); +// RAFAEL +void SpawnBloodPool (edict_t *self); + +// +// g_weapon.c +// +void ThrowDebris (edict_t *self, char *modelname, float speed, vec3_t origin); +// JOSEPH 1-JUN-99 +void ThrowDebris_stuff (edict_t *self, char *modelname, float speed, vec3_t origin); +// END JOSEPH +qboolean fire_hit (edict_t *self, vec3_t aim, int damage, int kick); +void fire_bullet (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int kick, int hspread, int vspread, int mod); +void fire_shotgun (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int kick, int hspread, int vspread, int count, int mod); +void fire_blaster (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int speed, int effect, qboolean hyper); +void fire_grenade (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int speed, float timer, float damage_radius); +// JOSEPH 19-MAY-99 +void fire_dynamite (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int speed, float timer, float damage_radius); +// END JOSEPH +void fire_grenade2 (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int speed, float timer, float damage_radius, qboolean held); +void fire_rocket (edict_t *self, vec3_t start, vec3_t dir, int damage, int speed, float damage_radius, int radius_damage); +void fire_rail (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int kick); +void fire_bfg (edict_t *self, vec3_t start, vec3_t dir, int damage, int speed, float damage_radius); + +void fire_barmachinegun (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int kick); +// RAFAEL +/* +void fire_ionripper (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int speed, int effect); +void fire_heat (edict_t *self, vec3_t start, vec3_t dir, int damage, int speed, float damage_radius, int radius_damage); +void fire_blueblaster (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int speed, int effect); +void fire_plasma (edict_t *self, vec3_t start, vec3_t dir, int damage, int speed, float damage_radius, int radius_damage); +void fire_trap (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int speed, float timer, float damage_radius, qboolean held); +*/ +void fire_flamethrower (edict_t *self, vec3_t start, vec3_t forward, int damage, int kick, int mod); +qboolean fire_blackjack (edict_t *self, vec3_t start, vec3_t forward, int damage, int kick, int mod); +// JOSEPH 19-JAN-99 +qboolean fire_crowbar (edict_t *self, vec3_t start, vec3_t forward, int damage, int kick, int mod); +qboolean fire_dogbite (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int kick, int mod); +// JOSEPH 30-APR-99 +void fire_rat (edict_t *self, vec3_t start, vec3_t forward, int damage); +// END JOSEPH + +// +// g_client.c +// +void respawn (edict_t *ent); +void BeginIntermission (edict_t *targ); +void PutClientInServer (edict_t *ent); +void InitClientPersistant (gclient_t *client); +void InitClientResp (gclient_t *client); +void InitBodyQue (void); +void ClientBeginServerFrame (edict_t *ent); + +// RAFAEL +void BeginCutScene (edict_t *ent); +void EndCutScene (edict_t *ent); +// JOSEPH 16-DEC-98 +void AdjustCutSceneCamera(edict_t *ent); +void NewCutSceneCamera (edict_t *ent); +// END JOSEPH + +// +// g_player.c +// +void player_pain (edict_t *self, edict_t *other, float kick, int damage, int mdx_part, int mdx_subobject); +void player_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject); + +// +// g_svcmds.c +// +void ServerCommand (void); +qboolean SV_FilterPacket (char *from); + +// +// p_view.c +// +void ClientEndServerFrame (edict_t *ent); + +// +// p_hud.c +// +void MoveClientToIntermission (edict_t *client); +void G_SetStats (edict_t *ent); +void ValidateSelectedItem (edict_t *ent); +void DeathmatchScoreboardMessage (edict_t *client, edict_t *killer); + +void MoveClientToCutScene (edict_t *camera); +// JOSEPH 22-FEB-99 +void MoveClientToCutSceneCamera (edict_t *camera, int fov); +// END JOSEPH +// +// g_pweapon.c +// +void PlayerNoise(edict_t *who, vec3_t where, int type); + +// +// m_move.c +// +qboolean M_CheckBottom (edict_t *ent); +qboolean M_walkmove (edict_t *ent, float yaw, float dist); +void M_MoveToGoal (edict_t *ent, float dist); +void M_ChangeYaw (edict_t *ent); +void M_ChangeYawOld (edict_t *ent); + +// +// m_bbox.c +// +// RAFAEL +void MDX_Bbox_Init (void); +trace_t MDX_HitCheck (edict_t *targ, edict_t *inflictor, edict_t *attacker, vec3_t dir, vec3_t point, vec3_t normal, int damage, int knockback, int dflags, int mod, vec3_t end); +void MDX_Cleanup (void); + +// +// g_phys.c +// +void G_RunEntity (edict_t *ent); + +// +// g_main.c +// +void SaveClientData (void); +void FetchClientEntData (edict_t *ent); + +// +// g_pawn.c +// +void PawnNext (edict_t *ent); +void PawnPrev (edict_t *ent); +void PawnBuy (edict_t *ent); +void PawnAgree (edict_t *ent); +void PawnDisagree (edict_t *ent); +void PawnLevelPrevious (edict_t *ent); +void PawnLeft (edict_t *ent); +void PawnRight (edict_t *ent); + +// +// g_chase.c +// +void UpdateChaseCam(edict_t *ent); +void ChaseNext(edict_t *ent); +void ChasePrev(edict_t *ent); + +//============================================================================ + +// client_t->anim_priority +#define ANIM_ATTACK 0 +#define ANIM_BASIC 1 // stand / run +#define ANIM_WAVE 2 +#define ANIM_JUMP 3 +#define ANIM_PAIN 4 +#define ANIM_REVERSE 5 +#define ANIM_DEATH 6 + +#define MAX_WEAPONS 10 + + +// client data that stays across multiple level loads +typedef struct +{ + char userinfo[MAX_INFO_STRING]; + char netname[16]; + int hand; + int version; // collected from Userinfo, used to determine + + qboolean connected; // a loadgame will leave valid entities that + // just don't have a connection yet + + // values saved and restored from edicts when changing levels + int health; + int max_health; + int savedFlags; + + int selected_item; + int inventory[MAX_ITEMS]; + + // ammo capacities + int max_bullets; + int max_shells; + int max_rockets; + int max_grenades; + int max_cells; + int max_slugs; + // RAFAEL + int max_magslug; + int max_trap; + + gitem_t *weapon; + gitem_t *lastweapon; + + // JOSEPH 25-SEP-98 + gitem_t *holsteredweapon; + + // JOSEPH 3-FEB-99 + int currentcash; + // END JOSEPH + + int power_cubes; // used for tracking the cubes in coop games + int score; // for calculating total unit score in coop games + + int game_helpchanged; + int helpchanged; + int weapon_clip[MAX_WEAPONS]; + int pistol_mods; + + // shared flags for episode + int episode_flags; + int silencer_shots; + + // number of hired guys + int friends; + + // teamplay + int team; + int bagcash; // cash being held in bag + + int hmg_shots; + + // bagman stuff + float timeatsafe; // record how long we've been standing at the safe + int friendly_vulnerable; + +} client_persistant_t; + +// client data that stays across deathmatch respawns +typedef struct +{ + client_persistant_t coop_respawn; // what to set client->pers to on a respawn + int enterframe; // level.framenum the client entered the game + int score; // frags, etc + vec3_t cmd_angles; // angles sent over in the last command + int game_helpchanged; + int helpchanged; + + // teamplay + int deposited; // amount this player has deposited + + // voting system + char ban_id; // so we only let them vote once + float last_ban; + +} client_respawn_t; + +// this structure is cleared on each PutClientInServer(), +// except for 'client->pers' +struct gclient_s +{ + // known to server + player_state_t ps; // communicated by server to clients + int ping; + + // private to game + client_persistant_t pers; + client_respawn_t resp; + pmove_state_t old_pmove; // for detecting out-of-pmove changes + + qboolean showscores; // set layout stat + qboolean showinventory; // set layout stat + qboolean showhelp; + qboolean showhelpicon; + + int ammo_index; + + int buttons; + int oldbuttons; + int latched_buttons; + + qboolean weapon_thunk; + + gitem_t *newweapon; + + // sum up damage over an entire frame, so + // shotgun blasts give a single big kick + int damage_armor; // damage absorbed by armor + int damage_parmor; // damage absorbed by power armor + int damage_blood; // damage taken out of health + int damage_flame; // Ridah, damage from flamethrower + int damage_knockback; // impact damage + vec3_t damage_from; // origin for vector calculation + + float killer_yaw; // when dead, look at killer + + weaponstate_t weaponstate; + vec3_t kick_angles; // weapon kicks + vec3_t kick_origin; + float v_dmg_roll, v_dmg_pitch, v_dmg_time; // damage kicks + float fall_time, fall_value; // for view drop on fall + float damage_alpha; + float bonus_alpha; + // JOSEPH 6-JAN-99 + int bonus_alpha_color; + vec3_t damage_blend; + vec3_t v_angle; // aiming direction + float bobtime; // so off-ground doesn't change it + vec3_t oldviewangles; + vec3_t oldvelocity; + + float next_drown_time; + int old_waterlevel; + int breather_sound; + + int machinegun_shots; // not used anymore + + // animation vars + int anim_end; + int anim_priority; + qboolean anim_duck; + qboolean anim_run; + qboolean anim_reverse; // Ridah, for running backwards + qboolean anim_slide; // Ridah, strafing + float last_climb_anim_z; // Z value at last climbing animation change + int last_weapontype; // Ridah, so we change animations when they change weapons + + // powerup timers + float quad_framenum; + float invincible_framenum; + float breather_framenum; + float enviro_framenum; + + qboolean grenade_blew_up; + float grenade_time; + // RAFAEL + float quadfire_framenum; + qboolean trap_blew_up; + float trap_time; + + int weapon_sound; + + float pickup_msg_time; + + // JOSEPH 2-FEB-99 + float hud_enemy_talk_time; + float hud_self_talk_time; + // END JOSEPH + + float flood_locktill; // locked from talking + float flood_when[10]; // when messages were said + int flood_whenhead; // head pointer for when said + char flood_lastmsg[160]; // so we don't repeat ourselves (annoying) + + float respawn_time; // can respawn when time > this + + qboolean flashlight; + + // RAFAEL 28-dec-98 + qboolean gun_noise; + + // Ridah + float jetpack_power; // recharges at 0.5 per second (while not in use), uses at 1.0 per second, maxes at 5.0 seconds of power + qboolean jetpack_warned; + +// RAFAEL 01-11-99 + qboolean reload_weapon; + int clip_index; + + float last_wave; + + // chase + edict_t *chase_target; + qboolean update_chase; +}; + + +// MORAL values +// these effect willingness to fight until death, attack unprovoked, etc +#define MORAL_RANDOM 0 // engine will assign a random value upon spawning (using formula, so it's the same each time the level loads) +#define MORAL_COWARD 1 +#define MORAL_HAPPY 2 +#define MORAL_NORMAL 3 +#define MORAL_AGGRESSIVE 4 +#define MORAL_BESERK 5 +#define MORAL_HEROIC 6 +#define MORAL_PSYCOTIC 7 + +#define MORAL_MAX 7 + + +#define ACC_GREEN 0 +#define ACC_POOR 1 +#define ACC_NORMAL 2 +#define ACC_SEASONED 3 +#define ACC_VETERAN 4 +#define ACC_ELITE 5 + +#define GENDER_NONE 0 +#define GENDER_MALE 1 +#define GENDER_FEMALE 2 + + +struct edict_s +{ + entity_state_t s; + struct gclient_s *client; // NULL if not a player + // the server expects the first part + // of gclient_s to be a player_state_t + // but the rest of it is opaque + + qboolean inuse; + int linkcount; + + // FIXME: move these fields to a server private sv_entity_t + link_t area; // linked to a division node or leaf + + int num_clusters; // if -1, use headnode instead + int clusternums[MAX_ENT_CLUSTERS]; + int headnode; // unused if num_clusters != -1 + int areanum, areanum2; + + //================================ + + int svflags; + vec3_t mins, maxs; + vec3_t absmin, absmax, size; + solid_t solid; + int clipmask; + edict_t *owner; + + float voice_pitch; // used to pitch voices up/down, 1.0 = same, 2.0 = chipmunk (double speed) + + // DO NOT MODIFY ANYTHING ABOVE THIS, THE SERVER + // EXPECTS THE FIELDS IN THAT ORDER! + + //================================ + int movetype; + int flags; + + char *model; + float freetime; // sv.time when the object was freed + + // + // only used locally in game, not by server + // + char *message; + char *classname; + int spawnflags; + + float timestamp; + + float angle; // set in qe3, -1 = up, -2 = down + char *target; + char *targetname; + char *killtarget; + char *team; + char *pathtarget; + char *deathtarget; + char *combattarget; + edict_t *target_ent; + + float speed, accel, decel; + vec3_t movedir; + vec3_t pos1, pos2; + + vec3_t velocity; + vec3_t avelocity; + int mass; + float air_finished; + float gravity; // per entity gravity multiplier (1.0 is normal) + // use for lowgrav artifact, flares + + edict_t *goalentity; + edict_t *movetarget; + float yaw_speed; + float ideal_yaw; + + float nextthink; + void (*prethink) (edict_t *ent); + void (*think)(edict_t *self); + void (*blocked)(edict_t *self, edict_t *other); //move to moveinfo? + void (*touch)(edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf); + void (*use)(edict_t *self, edict_t *other, edict_t *activator); + void (*pain)(edict_t *self, edict_t *other, float kick, int damage, int mdx_part, int mdx_subobject); + void (*die)(edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject); + + float touch_debounce_time; // are all these legit? do we need more/less of them? + float pain_debounce_time; + float damage_debounce_time; + float fly_sound_debounce_time; //move to clientinfo + float last_move_time; + + int health; + int max_health; + int gib_health; + int deadflag; + qboolean show_hostile; + + float powerarmor_time; + + char *map; // target_changelevel + + int viewheight; // height above origin where eyesight is determined + int takedamage; + int dmg; + int radius_dmg; + float dmg_radius; + int sounds; //make this a spawntemp var? + int count; + + edict_t *chain; + edict_t *enemy; + edict_t *oldenemy; + edict_t *activator; + edict_t *groundentity; + int groundentity_linkcount; + edict_t *teamchain; + edict_t *teammaster; + + edict_t *mynoise; // can go in client only + edict_t *mynoise2; + + int noise_index; + int noise_index2; + float volume; + float attenuation; + + // timing variables + float wait; + float delay; // before firing targets + float random; + + float teleport_time; + + int watertype; + int waterlevel; + + vec3_t move_origin; + vec3_t move_angles; + + // move this to clientinfo? + int light_level; + + int style; // also used as areaportal number + + gitem_t *item; // for bonus items + + // common data blocks + moveinfo_t moveinfo; + cast_info_t cast_info; + +// BEGIN: Xatrix/Ridah/Navigator/17-mar-1998 + nav_data_t nav_data; // CNS-specific data, present for all entities + nav_build_data_t *nav_build_data; // used only by entities that create nodes (clients) + active_node_data_t *active_node_data; // points to the active node data of the current unit +// END: Xatrix/Ridah/Navigator/17-mar-1998 + +// JOSEPH 19-MAR-99 + vec3_t rotate; + vec3_t nodeorigin; + vec3_t angletarget; + vec3_t save_avel; + vec3_t savecameraorigin; + vec3_t cameraangle; + vec3_t cameraorigin; + vec3_t cameravel; + vec3_t cameravelrel; + float duration; // Ridah, used this for Bike thruster + float lastduration; + float alphalevel; + int avelflag; + int durationflag; // Ridah, used this for Thug reload checking + int firstnode; + int handleflag; + int handle2flag; + int doorflag; + int firetype; + int fallerflag; + int fallingflag; + int footsteptype; + int fxdensity; + int currentcash; + int pullable; + int deadticks; + int healspeed; + int healtimer; + int nokickbackflag; + int thudsurf; + int thudsnd; + int misstime; + int missteam; + int debugprint; + int onarampage; + float timemissing; + char *target2; + edict_t *target2_ent; + edict_t *missent; + edict_t *handle; + edict_t *handle2; + edict_t *save_self; + edict_t *save_other; + char *type; + char *localteam; + float reactdelay; + char head; + int key; // Door key [-1 = trigger unlocked][0 = unlocked][1+ = key to unlock] + int lightit; + int option; + int noshadow; +// JOSEPH 17-MAY-99 + int monsterprop; + solid_t savesolid; + int surfacetype; + int pullingflag; +// END JOSEPH + + // Flamethrower stuff + char onfiretime; + edict_t *onfireent; // Ridah, added this so we can record the entity that set us on fire + +// Ridah, new AI system + edict_t *leader; + char *leader_target; // for setting up AI's to follow other AI's from in the .map + edict_t *last_goal; // set each time we AI_Run(), was the last goal entity (eg. leader or enemy) + + int order; // last order issued + float order_timestamp; // time of last order, so only followers that can see us will respond to the order + // updated when the player issues an order, and when the AI character follows it + + edict_t *moveout_ent; // set to the target position when we have issued a "moveout" command + + int cast_group; // index of group in which this cast member belongs (set by .map) + int character_index; // our position in the global character array + + float last_talk_time; + int profanity_level; // each time the profanity button is pressed, this is incremented + voice_table_t *last_voice; // voice_table_t structure of last speech + + int skin; // set self->s.skinnum to this upon spawning + + int moral; // one of MORAL_* values, set in editor + + char *guard_target; // point this to the targetname of the guard_ent this character should guard + int guard_radius; // deeemed to be guarding if inside this radius + edict_t *guard_ent; // guard this if set + + char *sight_target; // will head for this entity upon sighting an enemy + + edict_t *goal_ent; // if this is set, we should ignore everything apart from an enemy, and head for it + edict_t *combat_goalent; // we should go here instead of going straight to our enemy + edict_t *cover_ent; // entity we are taking cover from + char *next_combattarget; + float last_getcombatpos; + float last_gethidepos; + float dont_takecover_time; + + // Ridah, this gets copied to the client.pers->episode_flags for client when they change maps + int episode_flags; // up to 32 bit flags, that represent various things according to the episode being played + + char *name; // Special character name eg. "Bernie" + int name_index; // Each name has a name_index (unique for each episode), for fast lookups + char *scriptname; // used to identify hard-coded scripting events + + edict_t *last_territory_touched; // set when we touch an "ai_territory" brush, so gangs react when we're in there territory + float time_territory_touched; + int current_territory; + + edict_t *response_ent; + float last_response_time; + response_t last_response; + + edict_t *start_ent; // entity marking our starting position + + vec3_t last_step_pos; // for AI footsteps + float last_step_time; + float last_stand_evade; + + int noroute_count; + int last_rval; + + float fall_height; // max Z value of last jump + float last_offground, last_onground; + + // Ridah, 6-jun-99, so they know where to return to when done hiding + edict_t *holdpos_ent; + + // RAFAEL + int activate_flags; + float biketime; + int bikestate; + + // Ridah, Vehicles + int vehicle_index; // references a vehicle_t structure in the global array + + int acc; // accuracy variable - troop quality variable + int cal; // damage caused by weapon - calibur + + char *art_skins; // holds 3-digit skins for head, torso and legs + + float gun_noise_delay; + + float noise_time; + vec3_t noise_pos; + int noise_type; + vec3_t noise_angles; + + int gender; // so we know what sorts of sounds to play, uses GENDER_* + + // combat AI stuff + float combat_last_visible; + vec3_t combat_last_visible_pos; + int combat_flags; + + float take_cover_time; + + // so we can trigger an event when a character gets below a certain health value + int health_threshold; + char *health_target; + int health_threshold2; + char *health_target2; + int health_threshold3; + char *health_target3; + + float stand_if_idle_time; // stand if crouching and not doing much +}; + +// RAFAEL +#define ACTIVATE_GENERAL 1 +#define ACTIVATE_AND_OPEN 2 + +// Ridah, used for lightpainting +#define LP_SIZE (12+2+1+1+1+1) +unsigned char *lpbuf[0xFFFF]; +int num_lpbuf; + + +#define WEAPON_MOD_ROF 1 +#define WEAPON_MOD_RELOAD 2 +#define WEAPON_MOD_DAMAGE 4 +#define WEAPON_MOD_COOLING_JACKET 8 + +// Ridah, level -> level followers +typedef struct +{ + char classname[64]; + char name[64]; + char art_skins[64]; + int health, max_health; + int skinofs[MAX_MODEL_PARTS][MAX_MODELPART_OBJECTS]; // add to baseskin to get current skin + int head; + float scale; + int spawnflags; + int count; // for the Runt +} follower_t; + +#define MAX_FOLLOWERS 2 +follower_t followers[MAX_FOLLOWERS]; +extern int num_followers; + +// Ridah, object bounds data is now stored in a global array for indexing, to accomodate the save/loadgame system +#define MAX_OBJECT_BOUNDS 2048 +extern int num_object_bounds; +extern object_bounds_t *g_objbnds[MAX_OBJECT_BOUNDS]; diff --git a/gamesrc/G_MISC.C b/gamesrc/G_MISC.C new file mode 100644 index 0000000..3e8f1f8 --- /dev/null +++ b/gamesrc/G_MISC.C @@ -0,0 +1,3679 @@ +// g_misc.c + +#include "g_local.h" + + +/*QUAKED func_group (0 0 0) ? +Used to group brushes together just for editor convenience. +*/ + +//===================================================== + +void Use_Areaportal (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->count ^= 1; // toggle state +// gi.dprintf ("portalstate: %i = %i\n", ent->style, ent->count); + gi.SetAreaPortalState (ent->style, ent->count); +} + +/*QUAKED func_areaportal (0 0 0) ? + +This is a non-visible object that divides the world into +areas that are seperated when this portal is not activated. +Usually enclosed in the middle of a door. +*/ +void SP_func_areaportal (edict_t *ent) +{ + ent->use = Use_Areaportal; + ent->count = 0; // always start closed; +} + +//===================================================== + + +/* +================= +Misc functions +================= +*/ +void VelocityForDamage (int damage, vec3_t v) +{ + v[0] = 300.0 * crandom(); + v[1] = 300.0 * crandom(); + v[2] = 200.0 + 400.0 * random(); + + if (damage < 50) + VectorScale (v, 0.7, v); + else + VectorScale (v, 1.2, v); +} + +void ClipGibVelocity (edict_t *ent) +{ + if (ent->velocity[0] < -400) + ent->velocity[0] = -400; + else if (ent->velocity[0] > 400) + ent->velocity[0] = 400; + if (ent->velocity[1] < -400) + ent->velocity[1] = -400; + else if (ent->velocity[1] > 400) + ent->velocity[1] = 400; + if (ent->velocity[2] < 200) + ent->velocity[2] = 200; // always some upwards + else if (ent->velocity[2] > 500) + ent->velocity[2] = 500; +} + + +/* +================= +gibs +================= +*/ +void gib_think (edict_t *self) +{ + self->s.frame++; + self->nextthink = level.time + FRAMETIME; + + if (self->s.frame == 10) + { + self->think = G_FreeEdict; + self->nextthink = level.time + 8 + random()*10; + } +} + +void gib_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + vec3_t normal_angles, right; + + if (!self->groundentity) + return; + + self->touch = NULL; + + if (plane) + { + // JOSEPH 29-MAR-99 + //gi.sound (self, CHAN_VOICE, gi.soundindex ("misc/fhit3.wav"), 1, ATTN_NORM, 0); + // END JOSEPH + + vectoangles (plane->normal, normal_angles); + AngleVectors (normal_angles, NULL, right, NULL); + vectoangles (right, self->s.angles); + + if (self->s.modelindex == sm_meat_index) + { + self->s.frame++; + self->think = gib_think; + self->nextthink = level.time + FRAMETIME; + } + } +} + +// RAFAEL +/* Ridah, this has been diasabled in the latest code +void gib_touchacid (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + vec3_t normal_angles, right; + + if (other->takedamage) + { + // T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, self->dmg, 1, 0); + T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, self->dmg, 1, 0, MOD_CRUSH); + G_FreeEdict (self); + } + + if (!self->groundentity) + return; + + if (plane) + { + // JOSEPH 29-MAR-99 + gi.sound (self, CHAN_VOICE, gi.soundindex ("misc/fhit3.wav"), 1, ATTN_NORM, 0); + // END JOSEPH + + vectoangles (plane->normal, normal_angles); + AngleVectors (normal_angles, NULL, right, NULL); + vectoangles (right, self->s.angles); + + if (self->s.modelindex == sm_meat_index) + { + self->s.frame++; + self->think = gib_think; + self->nextthink = level.time + FRAMETIME; + } + } +} +*/ + +void gib_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + G_FreeEdict (self); +} + +edict_t *ThrowGib (edict_t *self, char *gibname, int damage, int type) +{ + edict_t *gib; + vec3_t vd; + vec3_t origin; + vec3_t size; + float vscale; + + gib = G_Spawn(); + + VectorScale (self->size, 0.5, size); + VectorAdd (self->absmin, size, origin); + gib->s.origin[0] = origin[0] + crandom() * size[0]; + gib->s.origin[1] = origin[1] + crandom() * size[1]; + gib->s.origin[2] = origin[2] + crandom() * size[2]; + + gi.setmodel (gib, gibname); + gib->solid = SOLID_NOT; + gib->s.effects |= EF_GIB; + gib->flags |= FL_NO_KNOCKBACK; + gib->takedamage = DAMAGE_YES; + gib->s.renderfx2 |= RF2_NOSHADOW; + gib->die = gib_die; + + if (type == GIB_ORGANIC) + { + gib->movetype = MOVETYPE_TOSS; + gib->touch = gib_touch; + vscale = 0.5; + } + else + { + gib->movetype = MOVETYPE_BOUNCE; + vscale = 1.0; + } + + VelocityForDamage (damage, vd); + VectorMA (self->velocity, vscale, vd, gib->velocity); + ClipGibVelocity (gib); + gib->avelocity[0] = random()*600; + gib->avelocity[1] = random()*600; + gib->avelocity[2] = random()*600; + + gib->think = G_FreeEdict; + gib->nextthink = level.time + 10 + random()*10; + + gi.linkentity (gib); + + return gib; +} + + + +void ThrowHead (edict_t *self, char *gibname, int damage, int type) +{ + vec3_t vd; + float vscale; + + self->s.skinnum = 0; + self->s.frame = 0; + VectorClear (self->mins); + VectorClear (self->maxs); + +// self->s.modelindex2 = 0; + gi.setmodel (self, gibname); + self->solid = SOLID_NOT; + self->s.effects |= EF_GIB; + self->s.effects &= ~EF_FLIES; + self->s.sound = 0; + self->flags |= FL_NO_KNOCKBACK; + self->svflags &= ~SVF_MONSTER; + self->takedamage = DAMAGE_YES; + self->die = gib_die; + + if (type == GIB_ORGANIC) + { + self->movetype = MOVETYPE_TOSS; + self->touch = gib_touch; + vscale = 0.5; + } + else + { + self->movetype = MOVETYPE_BOUNCE; + vscale = 1.0; + } + + VelocityForDamage (damage, vd); + VectorMA (self->velocity, vscale, vd, self->velocity); + ClipGibVelocity (self); + + self->avelocity[YAW] = crandom()*600; + + self->think = G_FreeEdict; + self->nextthink = level.time + 10 + random()*10; + + gi.linkentity (self); +} + + + + + +void ThrowClientHead (edict_t *self, int damage) +{ + vec3_t vd; + char *gibname; +/* + if (rand()&1) + { + gibname = "models/objects/gibs/head2/tris.md2"; + self->s.skinnum = 1; // second skin is player + } + else + { + gibname = "models/objects/gibs/skull/tris.md2"; + self->s.skinnum = 0; + } +*/ + gibname = "models/props/gibs/gib3.mdx"; + self->s.skinnum = 0; + + self->s.origin[2] += 32; + self->s.frame = 0; + +// gi.setmodel (self, gibname); + self->s.num_parts = 0; + self->s.modelindex = gi.modelindex( gibname ); + + VectorSet (self->mins, -16, -16, 0); + VectorSet (self->maxs, 16, 16, 16); + + self->takedamage = DAMAGE_NO; + self->solid = SOLID_NOT; +// self->s.effects |= EF_GIB; + self->s.sound = 0; + self->flags |= FL_NO_KNOCKBACK; + + self->movetype = MOVETYPE_BOUNCE; + VelocityForDamage (damage, vd); + VectorAdd (self->velocity, vd, self->velocity); + + if (self->client) // bodies in the queue don't have a client anymore + { + self->client->anim_priority = ANIM_DEATH; + self->client->anim_end = self->s.frame; + } + else + { + self->think = NULL; + self->nextthink = 0; + } + + gi.linkentity (self); +} + +/* +============= +GibEntity + + Gibs an entity.. can be used for client's or AI +============= +*/ +void GibEntity( edict_t *self, edict_t *inflictor, float damage ) +{ + vec3_t dir, vel; + int m, n; + + // turn off flames + if (self->onfiretime) + self->onfiretime = 0; + + if (inflictor->client || VectorCompare( inflictor->velocity, vec3_origin) ) + VectorSubtract( self->s.origin, inflictor->s.origin, dir ); + else + VectorCopy( inflictor->velocity, dir ); + + VectorNormalize( dir ); + + // JOSEPH 12-MAY-99-B + // send the client-side gib message + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_GIBS); + gi.WritePosition (self->s.origin); + gi.WriteDir (dir); + gi.WriteByte ( 16 ); // number of gibs + gi.WriteByte ( (damage*2 > 128 ? 128 : (int)(damage*2)) ); // scale of direction to add to velocity + gi.WriteByte ( 16 ); // random origin offset scale + gi.WriteByte ( 100 ); // random velocity scale + gi.multicast (self->s.origin, MULTICAST_PVS); + // END JOSEPH + + for (n= 0; n < 6; n++) + { + + VelocityForDamage (damage, vel); + + // spawn a decal in this direction + for (m=0; m<4; m++) // try 4 times with a different Z value + { + vec3_t bdir; + vec3_t dorg; + trace_t tr; + + VectorCopy( vel, bdir ); + bdir[2] -= random()*bdir[2]*(1+4*random()); + + VectorAdd( self->s.origin, bdir, dorg ); + + tr = gi.trace( self->s.origin, NULL, NULL, dorg, self, MASK_SOLID ); + + if (tr.fraction < 1 && tr.ent == &g_edicts[0] && !(tr.surface->flags & SURF_SKY)) + { + float rnd; + + rnd = (1.5 + 5.0*random()); + if (SurfaceSpriteEffect(SFX_SPRITE_SURF_BLOOD1, (unsigned char)(SFX_BLOOD_WIDTH*rnd), (unsigned char)(SFX_BLOOD_HEIGHT*rnd), + tr.ent, tr.endpos, tr.plane.normal)) + { + break; + } + } + + } + } + + if (!self->client) // Ridah, added this check, since in deathmatch, the body is left there, just only clients with parental lock ENABLEd will see them, since they don't see the gibs + ThrowClientHead (self, damage); + + self->takedamage = DAMAGE_NO; +} + +/* +================= +debris +================= +*/ +void debris_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + G_FreeEdict (self); +} + +// JOSEPH 22-FEB-99 +void Think_Debris (edict_t *ent) +{ + if (!ent->misstime--) + { + ent->nextthink = 0; + G_FreeEdict(ent); + } + else + { + if (ent->misstime <= 15) + { + if (ent->misstime == 15) + { + ent->s.renderfx2 |= RF2_PASSALPHA; + ent->s.effects = 1; // this is full alpha now + } + + ent->s.effects += (255/15); + + if (ent->s.effects > 255) + ent->s.effects = 255; + } + + //ent->s.angles[1] += ent->avelocity[1]; + ent->nextthink = level.time + 0.1; + } +} + +void ThrowDebris (edict_t *self, char *modelname, float speed, vec3_t origin) +{ + edict_t *chunk; + vec3_t v; + + chunk = G_Spawn(); + VectorCopy (origin, chunk->s.origin); + gi.setmodel (chunk, modelname); + v[0] = 50 * crandom(); + v[1] = 50 * crandom(); + v[2] = 50 + 50 * crandom(); + VectorMA (self->velocity, speed, v, chunk->velocity); + chunk->movetype = MOVETYPE_BOUNCE; + chunk->solid = SOLID_NOT; + chunk->avelocity[0] = random()*600; + chunk->avelocity[1] = random()*600; + chunk->avelocity[2] = random()*600; + chunk->think = G_FreeEdict; + chunk->nextthink = level.time + 5 + random()*5; + chunk->s.frame = 0; + chunk->flags = 0; + chunk->classname = "debris"; + chunk->takedamage = DAMAGE_YES; + chunk->die = debris_die; + + chunk->think = Think_Debris; + chunk->misstime = 20; + chunk->nextthink = level.time + 0.1; + chunk->s.renderfx2 |= RF2_NOSHADOW; + chunk->avelocity[1] = ((rand()&15)-8); + //chunk->s.angles[0] = 90; + gi.linkentity (chunk); +} +// END JOSEPH + +// JOSEPH 5-JUN-99-B +void ThrowDebris_stuff (edict_t *self, char *modelname, float speed, vec3_t origin) +{ + edict_t *chunk; + vec3_t v; + + chunk = G_Spawn(); + VectorCopy (origin, chunk->s.origin); + gi.setmodel (chunk, modelname); + v[0] = 150 * crandom(); + v[1] = 150 * crandom(); + v[2] = 150 + 50 * crandom(); + VectorMA (self->velocity, speed, v, chunk->velocity); + chunk->movetype = MOVETYPE_BOUNCE; + chunk->solid = SOLID_NOT; + chunk->avelocity[0] = random()*600; + chunk->avelocity[1] = random()*600; + chunk->avelocity[2] = random()*600; + chunk->think = G_FreeEdict; + chunk->nextthink = level.time + 5 + random()*5; + chunk->s.frame = 0; + chunk->flags = 0; + chunk->classname = "debris"; + chunk->takedamage = DAMAGE_YES; + chunk->die = debris_die; + + chunk->think = Think_Debris; + chunk->misstime = 40; + chunk->nextthink = level.time + 0.1; + chunk->s.renderfx2 |= RF2_NOSHADOW; + chunk->avelocity[1] = ((rand()&15)-8); + chunk->lightit = 30; + gi.linkentity (chunk); +} +// END JOSEPH + +// JOSEPH 1-JUN-99 +extern void rat_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject); + +void BecomeExplosion1 (edict_t *self) +{ + if ((self->classname) && (!strcmp(self->classname, "props_rat"))) + { + rat_die (self, NULL, NULL, 0, NULL, 0, 0); + } + else + { + vec3_t vec; + + VectorClear(vec); + vec[2] = 1; + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_EXPLOSION1); + gi.WritePosition (self->s.origin); + gi.WriteDir( vec ); + gi.WriteByte( (int)(self->dmg / 2) ); + gi.WriteByte (self->fxdensity); + gi.multicast (self->s.origin, MULTICAST_PVS); + + { + edict_t *breakit; + + breakit = G_Spawn(); + + if (breakit) + { + VectorCopy (self->s.origin, breakit->s.origin); + gi.linkentity(breakit); + gi.sound (breakit, CHAN_VOICE, gi.soundindex("world/explosion1.wav"), 1, ATTN_NORM, 0); + breakit->think = G_FreeEdict; + breakit->nextthink = level.time + 5.0; + } + } + + G_FreeEdict (self); + } +} +// END JOSEPH + +void BecomeExplosion2 (edict_t *self) +{ + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_EXPLOSION2); + gi.WritePosition (self->s.origin); + gi.multicast (self->s.origin, MULTICAST_PVS); + + G_FreeEdict (self); +} + + + + +/*QUAKED path_corner_cast (.5 .3 0) (-16 -16 -24) (16 16 42) TELEPORT +Target: next path corner +Scriptname: hard-coded script to call when reaching this marker +Pathtarget: gets used when an entity that has + this path_corner targeted touches it + Could be used to trigger a button, or a character +Combattarget: when the cast reaches this marker, + they'll take on this combattarget +*/ + +void path_corner_cast_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + vec3_t v; + edict_t *next; + + if ((other->goal_ent != self) && (other->combat_goalent != self)) + return; + + if (other->health < 0) + return; + + if (self->pathtarget) + { + char *savetarget; + + savetarget = self->target; + self->target = self->pathtarget; + G_UseTargets (self, other); + self->target = savetarget; + } + + // play a sound if there is one + if (self->name) + gi.sound( other, CHAN_VOICE, gi.soundindex( self->name ), 1.0, 1, 0 ); + + + if (self->combattarget) + other->next_combattarget = self->combattarget; + + if (self->target) + next = G_PickTarget(self->target); + else + next = NULL; + + if ((next) && (next->spawnflags & 1)) + { + VectorCopy (next->s.origin, v); + v[2] += next->mins[2]; + v[2] -= other->mins[2]; + VectorCopy (v, other->s.origin); + next = G_PickTarget(next->target); + } + + if (other->goal_ent == self) + other->goal_ent = next; + else + other->combat_goalent = next; + + if (self->wait) + { + other->cast_info.goal_ent_pausetime = level.time + self->wait; + other->cast_info.currentmove = other->cast_info.move_stand; + goto done; + } + + if (!other->goal_ent && !other->combat_goalent) + { + // end of the line + other->target = NULL; + other->cast_info.currentmove = other->cast_info.move_stand; + } + else // remember this marker + { + if (other->goal_ent == self) + { + other->target = other->goal_ent->target; + VectorSubtract (other->goal_ent->s.origin, other->s.origin, v); + } + else // combattarget + { + + if (!(other->combat_goalent)) + { + other->target = other->goal_ent->target; + VectorSubtract (other->goal_ent->s.origin, other->s.origin, v); + } + else + { + VectorSubtract (other->combat_goalent->s.origin, other->s.origin, v); + other->combat_goalent->cast_info.aiflags |= AI_GOAL_RUN; + } + + } + other->ideal_yaw = vectoyaw (v); + } + +done: + + // Ridah, hard-coded scripting + if (self->scriptname) + EP_EventScript( other, self->scriptname ); + +} + +void SP_path_corner_cast (edict_t *self) +{ + if (!self->targetname) + { + gi.dprintf ("path_corner_cast with no targetname at %s\n", vtos(self->s.origin)); + G_FreeEdict (self); + return; + } + + strcpy(self->classname, "path_corner"); // so the existing code still works + + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 42); + + self->solid = SOLID_TRIGGER; + self->touch = path_corner_cast_touch; + self->svflags |= SVF_NOCLIENT; + + M_droptofloor(self); + self->s.origin[2] += 4; + + gi.linkentity (self); +} + +/*QUAKED path_corner (.5 .3 0) (-8 -8 -8) (8 8 8) TELEPORT +NOTE: Use path_corner_cast for character path's +Target: next path corner +Pathtarget: gets used when an entity that has + this path_corner targeted touches it +*/ + +void path_corner_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + vec3_t v; + edict_t *next; + + if (other->movetarget != self) + return; + + if (other->enemy) + return; + + if (self->pathtarget) + { + char *savetarget; + + savetarget = self->target; + self->target = self->pathtarget; + G_UseTargets (self, other); + self->target = savetarget; + } + + if (self->target) + next = G_PickTarget(self->target); + else + next = NULL; + + if ((next) && (next->spawnflags & 1)) + { + VectorCopy (next->s.origin, v); + v[2] += next->mins[2]; + v[2] -= other->mins[2]; + VectorCopy (v, other->s.origin); + next = G_PickTarget(next->target); + } + + other->goalentity = other->movetarget = next; + + if (self->wait) + { + other->cast_info.pausetime = level.time + self->wait; +// other->cast_info.stand (other); + return; + } + + if (!other->movetarget) + { + other->cast_info.pausetime = level.time + 100000000; +// other->cast_info.stand (other); + } + else + { + VectorSubtract (other->goalentity->s.origin, other->s.origin, v); + other->ideal_yaw = vectoyaw (v); + } + +} + +void SP_path_corner (edict_t *self) +{ + if (!self->targetname) + { + gi.dprintf ("path_corner with no targetname at %s\n", vtos(self->s.origin)); + G_FreeEdict (self); + return; + } + + self->solid = SOLID_TRIGGER; + self->touch = path_corner_touch; + VectorSet (self->mins, -8, -8, -8); + VectorSet (self->maxs, 8, 8, 8); + self->svflags |= SVF_NOCLIENT; + gi.linkentity (self); +} + +// JOSEPH 8-FEB-99 +/*UAKED viewthing (0 .5 .8) (-8 -8 -8) (8 8 8) +Just for the debugging level. Don't use +*/ +// END JOSEPH +void TH_viewthing(edict_t *ent) +{ + ent->s.frame = (ent->s.frame + 1) % 7; + ent->nextthink = level.time + FRAMETIME; +} + +void SP_viewthing(edict_t *ent) +{ + gi.dprintf ("viewthing spawned\n"); + + ent->movetype = MOVETYPE_NONE; + ent->solid = SOLID_BBOX; + ent->s.renderfx = RF_FRAMELERP; + VectorSet (ent->mins, -16, -16, -24); + VectorSet (ent->maxs, 16, 16, 32); + ent->s.modelindex = gi.modelindex ("models/objects/banner/tris.md2"); + gi.linkentity (ent); + ent->nextthink = level.time + 0.5; + ent->think = TH_viewthing; + return; +} + + +/*QUAKED info_null (0 0.5 0) (-4 -4 -4) (4 4 4) +Used as a positional target for spotlights, etc. +*/ +void SP_info_null (edict_t *self) +{ + if (!self->targetname) // Ridah, 5-7-99, had to add this or the info_null behind the radio gets deleted + G_FreeEdict (self); +}; + + +/*QUAKED info_notnull (0 0.5 0) (-4 -4 -4) (4 4 4) +Used as a positional target for lightning. +*/ +void SP_info_notnull (edict_t *self) +{ + VectorCopy (self->s.origin, self->absmin); + VectorCopy (self->s.origin, self->absmax); +}; + + +#define MIN_LIGHT_VALUE 128 +#define MIN_LIGHT_INTENSITY 0.2 + +#define START_OFF 1 +#define FLARE 2 +#define DYNAMIC 8 + + +void AddLightSource(edict_t *self) +{ + if (!(self->spawnflags & DYNAMIC)) + return; + + if (level.num_light_sources >= MAX_LIGHT_SOURCES) + { + gi.dprintf("Warning: MAX_LIGHT_SOURCES exceeded\n"); + return; + } + + if (self->dmg_radius <= 0.0) + self->dmg_radius = 1.0; + + if (self->light_level < MIN_LIGHT_VALUE) + self->light_level = MIN_LIGHT_VALUE; + + VectorCopy( self->s.origin, level.light_orgs[level.num_light_sources] ); + VectorCopy( self->rotate, level.light_colors[level.num_light_sources] ); + // light_values[num_light_sources] = ((float) self->light_level) * 3.0; + level.light_values[level.num_light_sources] = ((float) self->light_level * 1.5); + // level.light_radius[level.num_light_sources] = self->dmg_radius; + level.light_styles[level.num_light_sources] = self->style; + + level.num_light_sources++; + + self->svflags |= SVF_NOCLIENT; +} + +void LightConfigstrings () +{ + char str[256]; + char fullstr[256]; + int i, inc, j; + + fullstr[0] = str[0] = '\0'; + inc = 0; + j = 0; + + for (i=0; is.origin, vec ); + +// trivia reject + + // lights less that 100 are rejected by default done in sp_light + + { + float length; + + length = VectorLength (vec); + + if (((level.light_values[i]) - length) < 0) + continue; + } + + if (!gi.inPVS(self->s.origin, level.light_orgs[i])) + continue; + + { + vec3_t spot1; + vec3_t spot2; + trace_t trace; + + VectorCopy (self->s.origin, spot1); + spot1[2] += self->viewheight; + VectorCopy (level.light_orgs[i], spot2); + trace = gi.trace (spot1, vec3_origin, vec3_origin, spot2, self, MASK_OPAQUE); + + if (trace.fraction != 1.0) + continue; + } + +// passed normal tests. if we've used all lights, look for one to replace + + if (ent_lights >= MAX_MODEL_DIR_LIGHTS) + { + for (j=0; js.model_lighting.light_intensities[j] - VectorDistance( self->s.origin, self->s.model_lighting.light_orgs[j] )) + < (level.light_values[i] - VectorDistance( self->s.origin, level.light_orgs[i] ))) + { + break; // replace this light + } + } + + if (j == MAX_MODEL_DIR_LIGHTS) + continue; // no light to replace + } + else + { + j = ent_lights; + } + +// end reject test + + self->s.model_lighting.light_indexes[j] = i; + + self->s.model_lighting.light_intensities[j] = level.light_values[i]; + VectorCopy( level.light_colors[i], self->s.model_lighting.light_colors[j] ); + VectorCopy( level.light_orgs[i], self->s.model_lighting.light_orgs[j] ); + VectorNormalize( vec ); + VectorCopy( vec, self->s.model_lighting.light_vecs[j] ); + self->s.model_lighting.light_styles[j] = level.light_styles[i]; + + if (showlights->value) + NAV_DrawLine( self->s.origin, level.light_orgs[i] ); + + if (ent_lights < MAX_MODEL_DIR_LIGHTS) + ent_lights++; + + } + + if (showlights->value) + gi.dprintf ("num lights %d\n", ent_lights); + + self->s.model_lighting.num_dir_lights = ent_lights; +} + +/*QUAKED junior (0 1 0) (-8 -8 -8) (8 8 8) START_OFF +*/ + +static void junior_use (edict_t *self, edict_t *other, edict_t *activator) +{ + if (self->spawnflags & START_OFF) + { + gi.configstring (CS_LIGHTS+self->style, "m"); + self->spawnflags &= ~START_OFF; + } + else + { + gi.configstring (CS_LIGHTS+self->style, "a"); + self->spawnflags |= START_OFF; + } +} + +void SP_junior (edict_t *self ) +{ + if (self->style >= 32) + { + self->use = junior_use; + if (self->spawnflags & START_OFF) + gi.configstring (CS_LIGHTS+self->style, "a"); + else + gi.configstring (CS_LIGHTS+self->style, "m"); + } + + self->spawnflags |= DYNAMIC; + + if (!(self->light_level)) + self->light_level = 300; + + AddLightSource(self); + +} + + +// ----------------------------------------------------------------------------- + +/*QUAKED lightflare (0 1 0) (-2 -2 -2) (2 2 2) START_OFF FLARE NORESIZE DYNAMIC +Non-displayed light. +Default light value is 300. +Default style is 0. +If targeted, will toggle between on and off. +Default _cone value is 10 (used to set size of light for spotlights) +movedir will be the color of the flare +health is size for lightflare +dmg will specify the flare type +FLARE_NORMAL 0 +FLARE_SUN 1 +FLARE_AMBER 2 +FLARE_RED 3 +FLARE_BLUE 4 +FLARE_GREEN 5 +*/ + +/*QUAKED light (0 1 0) (-8 -8 -8) (8 8 8) START_OFF FLARE NORESIZE DYNAMIC +Non-displayed light. +Default light value is 300. +Default style is 0. +If targeted, will toggle between on and off. +Default _cone value is 10 (used to set size of light for spotlights) +movedir will be the color of the flare +health is size for lightflare +dmg will specify the flare type +FLARE_NORMAL 0 +FLARE_SUN 1 +FLARE_AMBER 2 +FLARE_RED 3 +FLARE_BLUE 4 +FLARE_GREEN 5 +*/ + +void SP_Flare (edict_t *self); + +static void light_use (edict_t *self, edict_t *other, edict_t *activator) +{ + if (self->spawnflags & START_OFF) + { + gi.configstring (CS_LIGHTS+self->style, "m"); + self->spawnflags &= ~START_OFF; + } + else + { + gi.configstring (CS_LIGHTS+self->style, "a"); + self->spawnflags |= START_OFF; + } +} + +void SP_light (edict_t *self) +{ + if (self->style >= 32) + { + self->use = light_use; + if (self->spawnflags & START_OFF) + gi.configstring (CS_LIGHTS+self->style, "a"); + else + gi.configstring (CS_LIGHTS+self->style, "m"); + } + + // RAFAEL + if (self->spawnflags & FLARE) + { + SP_Flare (self); + } + // flares will never be a level.light_source + else + { + if (!(self->light_level)) + self->light_level = 300; + + if (self->light_level > 100) + AddLightSource(self); + } +} + +#define RESIZE 2 + +void SP_Flare (edict_t *self) +{ + lightflare_t lf; +// char lf_str[256], temp_str[256], zero_str[256];//, numstr[2]; +// int i,j; + + if (num_flares == MAX_LIGHTFLARES-1) + { + gi.dprintf("Too many light flares, num_flares == MAX_LIGHTFLARES\n"); + return; + } + + if (!self->health) // size + self->health = 24; + + if (!self->dmg) // type + self->dmg = FLARE_NORMAL; + + if (self->dmg > 5) + { + gi.dprintf("Not a valid flare color 0,1,2,3,4,5 only\n"); + return; + } + + lf.lightstyle = (char)self->style; + + if (self->spawnflags & 4) + lf.lightstyle |= RESIZE; + + lf.type = (char) self->dmg; + + lf.size = (float) self->health; + + VectorCopy( self->s.origin, lf.pos ); + +// NOTE to Rafael this just shows what sort of values are required to define a Sun-Flare +/* +{ + static int done_sun=0; + + if (!done_sun) + { + lf.type = FLARE_SUN; // use self->dmg in editor + lf.size = 24; + + VectorSet( lf.pos, 1000, 1000, 3000 ); // if the mappers place the sunflare out near the extremes of the map, in the position of the sun, these values will be set accordingly (no need to specify manually) + done_sun = true; + } +} +*/ + + if (lf.type == FLARE_SUN) + VectorNormalize( lf.pos ); + + // just send it as a formatted string + { + char str[256]; + + sprintf( str, + "%3i %1i %4.1f %4.1f %4.1f %3.0f", // "999 9 9999.9 9999.9 9999.9 999" length = 30 + (int)lf.lightstyle, + (int)lf.type, + lf.pos[0], lf.pos[1], lf.pos[2], + lf.size ); + + gi.configstring (CS_LIGHTFLARES + num_flares, str ); + + num_flares++; + +//gi.dprintf( "game flares: %i\n", num_flares ); + } + +} + +// JOSEPH 12-MAY-99-B +#define LIGHTB 16 +#define LIGHTG 32 +#define LIGHTR 64 +#define LIGHTY 128 + +/*QUAKED light_sconce (1 1 1) (-4 -4 -8) (4 4 8) START_OFF FLARE NORESIZE DYNAMIC LIGHTB LIGHTG LIGHTR LIGHTY + +A sconce?? + +Non-displayed light. +Default light value is 300. +Default style is 0. +If targeted, will toggle between on and off. +Default _cone value is 10 (used to set size of light for spotlights) +movedir will be the color of the flare +health is size for lightflare +dmg will specify the flare type +FLARE_NORMAL 0 +FLARE_SUN 1 +FLARE_AMBER 2 +FLARE_RED 3 +FLARE_BLUE 4 +FLARE_GREEN 5 + +model="models\props\sconce\light.md2" +*/ + +void SP_light_sconce (edict_t *self) +{ + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + if (self->style >= 32) + { + self->use = light_use; + if (self->spawnflags & START_OFF) + gi.configstring (CS_LIGHTS+self->style, "a"); + else + gi.configstring (CS_LIGHTS+self->style, "m"); + } + + if (self->spawnflags & FLARE) + { + SP_Flare (self); + } + // flares will never be a level.light_source + else + { + if (!(self->light_level)) + self->light_level = 300; + + if (self->light_level > 100) + AddLightSource(self); + } + + if (self->spawnflags & LIGHTB) + { + self->model = "models/props/sconce/lightb.md2"; + } + else if (self->spawnflags & LIGHTG) + { + self->model = "models/props/sconce/lightg.md2"; + } + else if (self->spawnflags & LIGHTR) + { + self->model = "models/props/sconce/lightr.md2"; + } + else if (self->spawnflags & LIGHTY) + { + self->model = "models/props/sconce/lighty.md2"; + } + else + { + self->model = "models/props/sconce/light.md2"; + } + + self->s.modelindex = gi.modelindex (self->model); + + self->s.renderfx2 |= RF2_NOSHADOW; + + if ((self->light_level) && (!(self->spawnflags & LIGHTB))) + { + self->s.renderfx |= RF_FULLBRIGHT; + self->flags |= RF_FULLBRIGHT; + } + + gi.linkentity (self); +} +// END JOSEPH + +// JOSEPH 1-MAR-99 +/*QUAKED light_bulb (1 1 1) (-2 -2 -5) (2 2 5) START_OFF FLARE NORESIZE DYNAMIC + +A bulb that outputs light + +Non-displayed light. +Default light value is 300. +Default style is 0. +If targeted, will toggle between on and off. +Default _cone value is 10 (used to set size of light for spotlights) +movedir will be the color of the flare +health is size for lightflare +dmg will specify the flare type +FLARE_NORMAL 0 +FLARE_SUN 1 +FLARE_AMBER 2 +FLARE_RED 3 +FLARE_BLUE 4 +FLARE_GREEN 5 +*/ +// END JOSEPH +void SP_light_bulb (edict_t *self) +{ + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + if (self->style >= 32) + { + self->use = light_use; + if (self->spawnflags & START_OFF) + gi.configstring (CS_LIGHTS+self->style, "a"); + else + gi.configstring (CS_LIGHTS+self->style, "m"); + } + + if (self->spawnflags & FLARE) + { + SP_Flare (self); + } + // flares will never be a level.light_source + else + { + if (!(self->light_level)) + self->light_level = 300; + + if (self->light_level > 100) + AddLightSource(self); + } + + self->model = "models/props/light/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + + self->s.renderfx2 |= RF2_NOSHADOW; + + if (self->light_level) + { + self->s.renderfx |= RF_FULLBRIGHT; + self->flags |= RF_FULLBRIGHT; + } + + gi.linkentity (self); +} +// END JOSEPH + +// JOSEPH 16-APR-99 +/*QUAKED light_deco_sconce (1 1 1) (-8 -8 -12) (8 8 12) START_OFF FLARE NORESIZE DYNAMIC + +A deco sconce + +Non-displayed light. +Default light value is 300. +Default style is 0. +If targeted, will toggle between on and off. +Default _cone value is 10 (used to set size of light for spotlights) +movedir will be the color of the flare +health is size for lightflare +dmg will specify the flare type +FLARE_NORMAL 0 +FLARE_SUN 1 +FLARE_AMBER 2 +FLARE_RED 3 +FLARE_BLUE 4 +FLARE_GREEN 5 + +model="models\props\decosconce\tris.md2" +*/ + +void SP_light_deco_sconce (edict_t *self) +{ + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + if (self->style >= 32) + { + self->use = light_use; + if (self->spawnflags & START_OFF) + gi.configstring (CS_LIGHTS+self->style, "a"); + else + gi.configstring (CS_LIGHTS+self->style, "m"); + } + + if (self->spawnflags & FLARE) + { + SP_Flare (self); + } + // flares will never be a level.light_source + else + { + if (!(self->light_level)) + self->light_level = 300; + + if (self->light_level > 100) + AddLightSource(self); + } + + self->model = "models/props/decosconce/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + + self->s.renderfx2 |= RF2_NOSHADOW; + + if (self->light_level) + { + self->s.renderfx |= RF_FULLBRIGHT; + self->flags |= RF_FULLBRIGHT; + } + + gi.linkentity (self); +} + +// JOSEPH 3-JUN-99 +/*QUAKED light_chandelier (1 1 1) (-36 -34 -32) (36 34 32) START_OFF FLARE NORESIZE DYNAMIC + +A deco sconce + +Non-displayed light. +Default light value is 300. +Default style is 0. +If targeted, will toggle between on and off. +Default _cone value is 10 (used to set size of light for spotlights) +movedir will be the color of the flare +health is size for lightflare +dmg will specify the flare type +FLARE_NORMAL 0 +FLARE_SUN 1 +FLARE_AMBER 2 +FLARE_RED 3 +FLARE_BLUE 4 +FLARE_GREEN 5 + +model="models\props\chandelier\tris.md2" +*/ + +void SP_light_chandelier (edict_t *self) +{ + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + if (self->style >= 32) + { + self->use = light_use; + if (self->spawnflags & START_OFF) + gi.configstring (CS_LIGHTS+self->style, "a"); + else + gi.configstring (CS_LIGHTS+self->style, "m"); + } + + if (self->spawnflags & FLARE) + { + SP_Flare (self); + } + // flares will never be a level.light_source + else + { + if (!(self->light_level)) + self->light_level = 300; + + if (self->light_level > 100) + AddLightSource(self); + } + + self->model = "models/props/chandelier/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + + self->s.renderfx2 |= RF2_NOSHADOW; + + if (self->light_level) + { + self->s.renderfx |= RF_FULLBRIGHT; + self->flags |= RF_FULLBRIGHT; + } + + gi.linkentity (self); +} +// END JOSEPH + +/*QUAKED light_pendant (1 1 1) (-16 -16 -4) (16 16 4) START_OFF FLARE NORESIZE DYNAMIC + +A pendant light + +Non-displayed light. +Default light value is 300. +Default style is 0. +If targeted, will toggle between on and off. +Default _cone value is 10 (used to set size of light for spotlights) +movedir will be the color of the flare +health is size for lightflare +dmg will specify the flare type +FLARE_NORMAL 0 +FLARE_SUN 1 +FLARE_AMBER 2 +FLARE_RED 3 +FLARE_BLUE 4 +FLARE_GREEN 5 + +model="models\props\pendant\tris.md2" +*/ + +void SP_light_pendant (edict_t *self) +{ + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + if (self->style >= 32) + { + self->use = light_use; + if (self->spawnflags & START_OFF) + gi.configstring (CS_LIGHTS+self->style, "a"); + else + gi.configstring (CS_LIGHTS+self->style, "m"); + } + + if (self->spawnflags & FLARE) + { + SP_Flare (self); + } + // flares will never be a level.light_source + else + { + if (!(self->light_level)) + self->light_level = 300; + + if (self->light_level > 100) + AddLightSource(self); + } + + self->model = "models/props/pendant/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + + self->s.renderfx2 |= RF2_NOSHADOW; + + if (self->light_level) + { + self->s.renderfx |= RF_FULLBRIGHT; + self->flags |= RF_FULLBRIGHT; + } + + gi.linkentity (self); +} +// END JOSEPH + +/*QUAKED func_wall (0 .5 .8) ? TRIGGER_SPAWN TOGGLE START_ON ANIMATED ANIMATED_FAST SURF2_ALPHA +This is just a solid wall if not inhibited + +TRIGGER_SPAWN the wall will not be present until triggered + it will then blink in to existance; it will + kill anything that was in it's way + +TOGGLE only valid for TRIGGER_SPAWN walls + this allows the wall to be turned on and off + +START_ON only valid for TRIGGER_SPAWN walls + the wall will initially be present +*/ + +void func_wall_use (edict_t *self, edict_t *other, edict_t *activator) +{ + if (self->solid == SOLID_NOT) + { + self->solid = SOLID_BSP; + self->svflags &= ~SVF_NOCLIENT; + KillBox (self); + } + else + { + self->solid = SOLID_NOT; + self->svflags |= SVF_NOCLIENT; + } + gi.linkentity (self); + + if (!(self->spawnflags & 2)) + self->use = NULL; +} + +void SP_func_wall (edict_t *self) +{ + self->movetype = MOVETYPE_PUSH; + gi.setmodel (self, self->model); + + if (self->spawnflags & 8) + self->s.effects |= EF_ANIM_ALL; + if (self->spawnflags & 16) + self->s.effects |= EF_ANIM_ALLFAST; + + // RAFAEL + if (self->spawnflags & 32) + self->s.renderfx2 |= RF2_SURF_ALPHA; + + // just a wall + if ((self->spawnflags & 7) == 0) + { + self->solid = SOLID_BSP; + gi.linkentity (self); + return; + } + + // it must be TRIGGER_SPAWN + if (!(self->spawnflags & 1)) + { +// gi.dprintf("func_wall missing TRIGGER_SPAWN\n"); + self->spawnflags |= 1; + } + + // yell if the spawnflags are odd + if (self->spawnflags & 4) + { + if (!(self->spawnflags & 2)) + { + gi.dprintf("func_wall START_ON without TOGGLE\n"); + self->spawnflags |= 2; + } + } + + self->use = func_wall_use; + if (self->spawnflags & 4) + { + self->solid = SOLID_BSP; + } + else + { + self->solid = SOLID_NOT; + self->svflags |= SVF_NOCLIENT; + } + + gi.linkentity (self); +} + + +/*QUAKED func_object (0 .5 .8) ? TRIGGER_SPAWN ANIMATED ANIMATED_FAST +This is solid bmodel that will fall if it's support it removed. +*/ + +void func_object_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + // only squash thing we fall on top of + if (!plane) + return; + if (plane->normal[2] < 1.0) + return; + if (other->takedamage == DAMAGE_NO) + return; + T_Damage (other, self, self, vec3_origin, self->s.origin, vec3_origin, self->dmg, 1, 0, MOD_CRUSH); +} + +void func_object_release (edict_t *self) +{ + self->movetype = MOVETYPE_TOSS; + self->touch = func_object_touch; +} + +void func_object_use (edict_t *self, edict_t *other, edict_t *activator) +{ + self->solid = SOLID_BSP; + self->svflags &= ~SVF_NOCLIENT; + self->use = NULL; + KillBox (self); + func_object_release (self); +} + +void SP_func_object (edict_t *self) +{ + gi.setmodel (self, self->model); + + self->mins[0] += 1; + self->mins[1] += 1; + self->mins[2] += 1; + self->maxs[0] -= 1; + self->maxs[1] -= 1; + self->maxs[2] -= 1; + + if (!self->dmg) + self->dmg = 100; + + if (self->spawnflags == 0) + { + self->solid = SOLID_BSP; + self->movetype = MOVETYPE_PUSH; + self->think = func_object_release; + self->nextthink = level.time + 2 * FRAMETIME; + } + else + { + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_PUSH; + self->use = func_object_use; + self->svflags |= SVF_NOCLIENT; + } + + if (self->spawnflags & 2) + self->s.effects |= EF_ANIM_ALL; + if (self->spawnflags & 4) + self->s.effects |= EF_ANIM_ALLFAST; + + self->clipmask = MASK_MONSTERSOLID; + + gi.linkentity (self); +} + +// JOSEPH 18-FEB-99 +/*QUAKED func_explosive (0 .5 .8) ? Trigger_Spawn ANIMATED ANIMATED_FAST SURF2_ALPHA +Any brush that you want to explode or break apart. If you want an +explosion, set dmg and it will do a radius explosion of that amount +at the center of the bursh. + +If targeted it will not be shootable. + +health defaults to 100. + +type - type of debris ("glass", "wood" or "metal") + type default is "glass" + +mass defaults to 75. This determines how much debris is emitted when +it explodes. You get one large chunk per 100 of mass (up to 8) and +one small chunk per 25 of mass (up to 16). So 800 gives the most. + +"dmg" how much radius damage should be done, defaults to 0 + +"fxdensity" size of explosion 1 - 100 (default is 10) +*/ +// END JOSEPH +void func_explosive_explode (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + vec3_t origin; + vec3_t chunkorigin; + vec3_t size; + int count; + int mass; + + PlayerNoise( attacker, attacker->s.origin, PNOISE_WEAPON ); + + // bmodel origins are (0 0 0), we need to adjust that here + VectorScale (self->size, 0.5, size); + VectorAdd (self->absmin, size, origin); + VectorCopy (origin, self->s.origin); + + self->takedamage = DAMAGE_NO; + + if (self->dmg) + T_RadiusDamage (self, attacker, self->dmg, NULL, self->dmg+40, MOD_EXPLOSIVE); + + VectorSubtract (self->s.origin, inflictor->s.origin, self->velocity); + VectorNormalize (self->velocity); + VectorScale (self->velocity, 250, self->velocity); + + // start chunks towards the center + VectorScale (size, 0.5, size); + + mass = self->mass; + if (!mass) + mass = 75; + + // big chunks + if (mass >= 100) + { + count = mass / 100; + if (count > 8) + count = 8; + if ((!self->type) || ((self->type) && (!strcmp(self->type, "glass")))) + { + while(count--) + { + chunkorigin[0] = origin[0] + crandom() * size[0]; + chunkorigin[1] = origin[1] + crandom() * size[1]; + chunkorigin[2] = origin[2] + crandom() * size[2]; + ThrowDebris (self, "models/props/glass/glass1.md2", 1, chunkorigin); + } + } + else if (((self->type) && (!strcmp(self->type, "wood")))) + { + while(count--) + { + chunkorigin[0] = origin[0] + crandom() * size[0]; + chunkorigin[1] = origin[1] + crandom() * size[1]; + chunkorigin[2] = origin[2] + crandom() * size[2]; + ThrowDebris (self, "models/props/wood/wood1.md2", 1, chunkorigin); + } + } + else if (((self->type) && (!strcmp(self->type, "metal")))) + { + while(count--) + { + chunkorigin[0] = origin[0] + crandom() * size[0]; + chunkorigin[1] = origin[1] + crandom() * size[1]; + chunkorigin[2] = origin[2] + crandom() * size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", 1, chunkorigin); + } + } + } + + // small chunks + count = mass / 25; + if (count > 16) + count = 16; + if ((!self->type) || ((self->type) && (!strcmp(self->type, "glass")))) + { + while(count--) + { + chunkorigin[0] = origin[0] + crandom() * size[0]; + chunkorigin[1] = origin[1] + crandom() * size[1]; + chunkorigin[2] = origin[2] + crandom() * size[2]; + ThrowDebris (self, "models/props/glass/glass2.md2", 2, chunkorigin); + } + } + else if (((self->type) && (!strcmp(self->type, "wood")))) + { + while(count--) + { + chunkorigin[0] = origin[0] + crandom() * size[0]; + chunkorigin[1] = origin[1] + crandom() * size[1]; + chunkorigin[2] = origin[2] + crandom() * size[2]; + ThrowDebris (self, "models/props/wood/wood2.md2", 2, chunkorigin); + } + } + else if (((self->type) && (!strcmp(self->type, "metal")))) + { + while(count--) + { + chunkorigin[0] = origin[0] + crandom() * size[0]; + chunkorigin[1] = origin[1] + crandom() * size[1]; + chunkorigin[2] = origin[2] + crandom() * size[2]; + ThrowDebris (self, "models/props/metal/metal2.md2", 2, chunkorigin); + } + } + + + G_UseTargets (self, attacker); + + if (self->dmg) + BecomeExplosion1 (self); + else + G_FreeEdict (self); +} +// END JOSEPH + +void func_explosive_use(edict_t *self, edict_t *other, edict_t *activator) +{ + func_explosive_explode (self, self, other, self->health, vec3_origin, 0, 0); +} + +// JOSEPH 7-MAR-99 +void func_explosive_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + if (!(other->svflags & SVF_MONSTER)) + return; + + if (!(other->onfiretime > 0)) + return; + + func_explosive_explode (self, self, other, self->health, vec3_origin, 0, 0); +} +// END JOSEPH + +void func_explosive_spawn (edict_t *self, edict_t *other, edict_t *activator) +{ + self->solid = SOLID_BSP; + self->svflags &= ~SVF_NOCLIENT; + self->use = NULL; + KillBox (self); + gi.linkentity (self); +} + +void SP_func_explosive (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->movetype = MOVETYPE_PUSH; + + // JOSEPH 10-FEB-99 + if (self->spawnflags & 8) + self->s.renderfx2 |= RF2_SURF_ALPHA; + // END JOSEPH + + gi.modelindex ("models/props/glass/glass1.md2"); + gi.modelindex ("models/props/glass/glass2.md2"); + + gi.setmodel (self, self->model); + + if (self->spawnflags & 1) + { + self->svflags |= SVF_NOCLIENT; + self->solid = SOLID_NOT; + self->use = func_explosive_spawn; + } + else + { + self->solid = SOLID_BSP; + if (self->targetname) + self->use = func_explosive_use; + } + + if (self->spawnflags & 2) + self->s.effects |= EF_ANIM_ALL; + if (self->spawnflags & 4) + self->s.effects |= EF_ANIM_ALLFAST; + + if (self->use != func_explosive_use) + { + if (!self->health) + self->health = 100; + self->die = func_explosive_explode; + self->takedamage = DAMAGE_YES; + } + + // JOSEPH 7-MARCH-99 + self->touch = func_explosive_touch; + // END JOSEPH + + gi.linkentity (self); +} + +// JOSEPH 8-FEB-99 +/*UAKED misc_explobox (0 .5 .8) (-16 -16 0) (16 16 40) +Large exploding box. You can override its mass (100), +health (80), and dmg (150). +*/ +// END JOSEPH +void barrel_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) + +{ + float ratio; + vec3_t v; + + if ((!other->groundentity) || (other->groundentity == self)) + return; + + ratio = (float)other->mass / (float)self->mass; + VectorSubtract (self->s.origin, other->s.origin, v); + M_walkmove (self, vectoyaw(v), 20 * ratio * FRAMETIME); +} + +void barrel_explode (edict_t *self) +{ + vec3_t org; + float spd; + vec3_t save; + + T_RadiusDamage (self, self->activator, self->dmg, NULL, self->dmg+40, MOD_BARREL); + + VectorCopy (self->s.origin, save); + VectorMA (self->absmin, 0.5, self->size, self->s.origin); + + // a few big chunks + spd = 1.5 * (float)self->dmg / 200.0; + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/glass/glass1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/glass/glass1.md2", spd, org); + + // bottom corners + spd = 1.75 * (float)self->dmg / 200.0; + VectorCopy (self->absmin, org); + ThrowDebris (self, "models/props/glass/glass3.md2", spd, org); + VectorCopy (self->absmin, org); + org[0] += self->size[0]; + ThrowDebris (self, "models/props/glass/glass3.md2", spd, org); + VectorCopy (self->absmin, org); + org[1] += self->size[1]; + ThrowDebris (self, "models/props/glass/glass3.md2", spd, org); + VectorCopy (self->absmin, org); + org[0] += self->size[0]; + org[1] += self->size[1]; + ThrowDebris (self, "models/props/glass/glass3.md2", spd, org); + + // a bunch of little chunks + spd = 2 * self->dmg / 200; + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/glass/glass2.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/glass/glass2.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/glass/glass2.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/glass/glass2.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/glass/glass2.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/glass/glass2.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/glass/glass2.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/glass/glass2.md2", spd, org); + + VectorCopy (save, self->s.origin); + if (self->groundentity) + BecomeExplosion2 (self); + else + BecomeExplosion1 (self); +} + +void barrel_delay (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + self->takedamage = DAMAGE_NO; + self->nextthink = level.time + 2 * FRAMETIME; + self->think = barrel_explode; + self->activator = attacker; +} + +// JOSEPH 26-AUG-98 +// JOSEPH TEMP +void SP_props_trashcanA (edict_t *self); + +void SP_misc_explobox (edict_t *self) +{ + // JOSEPH TEMP + SP_props_trashcanA (self); + return; + +// END JOSEPH + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + gi.modelindex ("models/props/glass/glass1.md2"); + gi.modelindex ("models/props/glass/glass2.md2"); + gi.modelindex ("models/props/glass/glass3.md2"); + + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_STEP; + + self->model = "models/objects/barrels/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -16, -16, 0); + VectorSet (self->maxs, 16, 16, 40); + + if (!self->mass) + self->mass = 400; + if (!self->health) + self->health = 10; + if (!self->dmg) + self->dmg = 150; + + self->die = barrel_delay; + self->takedamage = DAMAGE_YES; + self->cast_info.aiflags = AI_NOSTEP; + + self->touch = barrel_touch; + + self->think = M_droptofloor; + self->nextthink = level.time + 2 * FRAMETIME; + + gi.linkentity (self); +} + +// JOSEPH 8-FEB-99 +/*UAKED light_mine1 (0 1 0) (-2 -2 -12) (2 2 12) +*/ +// END JOSEPH +void SP_light_mine1 (edict_t *ent) +{ + ent->movetype = MOVETYPE_NONE; + ent->solid = SOLID_BBOX; + ent->s.modelindex = gi.modelindex ("models/objects/minelite/light1/tris.md2"); + gi.linkentity (ent); +} + +// JOSEPH 8-FEB-99 +/*UAKED light_mine2 (0 1 0) (-2 -2 -12) (2 2 12) +*/ +// END JOSEPH +void SP_light_mine2 (edict_t *ent) +{ + ent->movetype = MOVETYPE_NONE; + ent->solid = SOLID_BBOX; + ent->s.modelindex = gi.modelindex ("models/objects/minelite/light2/tris.md2"); + gi.linkentity (ent); +} + +// JOSEPH 8-FEB-99 +/*UAKED misc_gib_arm (1 0 0) (-8 -8 -8) (8 8 8) +Intended for use with the target_spawner +*/ +// END JOSEPH +void SP_misc_gib_arm (edict_t *ent) +{ + gi.setmodel (ent, "models/objects/gibs/arm/tris.md2"); + ent->solid = SOLID_NOT; + ent->s.effects |= EF_GIB; + ent->takedamage = DAMAGE_YES; + ent->die = gib_die; + ent->movetype = MOVETYPE_TOSS; + ent->svflags |= SVF_MONSTER; + ent->deadflag = DEAD_DEAD; + ent->avelocity[0] = random()*200; + ent->avelocity[1] = random()*200; + ent->avelocity[2] = random()*200; + ent->think = G_FreeEdict; + ent->nextthink = level.time + 30; + gi.linkentity (ent); +} + +// JOSEPH 8-FEB-99 +/*UAKED misc_gib_leg (1 0 0) (-8 -8 -8) (8 8 8) +Intended for use with the target_spawner +*/ +// END JOSEPH +void SP_misc_gib_leg (edict_t *ent) +{ + gi.setmodel (ent, "models/objects/gibs/leg/tris.md2"); + ent->solid = SOLID_NOT; + ent->s.effects |= EF_GIB; + ent->takedamage = DAMAGE_YES; + ent->die = gib_die; + ent->movetype = MOVETYPE_TOSS; + ent->svflags |= SVF_MONSTER; + ent->deadflag = DEAD_DEAD; + ent->avelocity[0] = random()*200; + ent->avelocity[1] = random()*200; + ent->avelocity[2] = random()*200; + ent->think = G_FreeEdict; + ent->nextthink = level.time + 30; + gi.linkentity (ent); +} + +// JOSEPH 8-FEB-99 +/*UAKED misc_gib_head (1 0 0) (-8 -8 -8) (8 8 8) +Intended for use with the target_spawner +*/ +// END JOSEPH +void SP_misc_gib_head (edict_t *ent) +{ + gi.setmodel (ent, "models/objects/gibs/head/tris.md2"); + ent->solid = SOLID_NOT; + ent->s.effects |= EF_GIB; + ent->takedamage = DAMAGE_YES; + ent->die = gib_die; + ent->movetype = MOVETYPE_TOSS; + ent->svflags |= SVF_MONSTER; + ent->deadflag = DEAD_DEAD; + ent->avelocity[0] = random()*200; + ent->avelocity[1] = random()*200; + ent->avelocity[2] = random()*200; + ent->think = G_FreeEdict; + ent->nextthink = level.time + 30; + gi.linkentity (ent); +} + +//===================================================== + +/*QUAKED target_character (0 0 1) ? +used with target_string (must be on same "team") +"count" is position in the string (starts at 1) +*/ + +void SP_target_character (edict_t *self) +{ + self->movetype = MOVETYPE_PUSH; + gi.setmodel (self, self->model); + self->solid = SOLID_BSP; + self->s.frame = 12; + gi.linkentity (self); + return; +} + + +/*QUAKED target_string (0 0 1) (-8 -8 -8) (8 8 8) +*/ + +void target_string_use (edict_t *self, edict_t *other, edict_t *activator) +{ + edict_t *e; + int n, l; + char c; + + l = strlen(self->message); + for (e = self->teammaster; e; e = e->teamchain) + { + if (!e->count) + continue; + n = e->count - 1; + if (n > l) + { + e->s.frame = 12; + continue; + } + + c = self->message[n]; + if (c >= '0' && c <= '9') + e->s.frame = c - '0'; + else if (c == '-') + e->s.frame = 10; + else if (c == ':') + e->s.frame = 11; + else + e->s.frame = 12; + } +} + +void SP_target_string (edict_t *self) +{ + if (!self->message) + self->message = ""; + self->use = target_string_use; +} + + +/*QUAKED func_clock (0 0 1) (-8 -8 -8) (8 8 8) TIMER_UP TIMER_DOWN START_OFF MULTI_USE +target a target_string with this + +The default is to be a time of day clock + +TIMER_UP and TIMER_DOWN run for "count" seconds and the fire "pathtarget" +If START_OFF, this entity must be used before it starts + +"style" 0 "xx" + 1 "xx:xx" + 2 "xx:xx:xx" +*/ + +#define CLOCK_MESSAGE_SIZE 16 + +// don't let field width of any clock messages change, or it +// could cause an overwrite after a game load + +static void func_clock_reset (edict_t *self) +{ + self->activator = NULL; + if (self->spawnflags & 1) + { + self->health = 0; + self->wait = self->count; + } + else if (self->spawnflags & 2) + { + self->health = self->count; + self->wait = 0; + } +} + +static void func_clock_format_countdown (edict_t *self) +{ + if (self->style == 0) + { + Com_sprintf (self->message, CLOCK_MESSAGE_SIZE, "%2i", self->health); + return; + } + + if (self->style == 1) + { + Com_sprintf(self->message, CLOCK_MESSAGE_SIZE, "%2i:%2i", self->health / 60, self->health % 60); + if (self->message[3] == ' ') + self->message[3] = '0'; + return; + } + + if (self->style == 2) + { + Com_sprintf(self->message, CLOCK_MESSAGE_SIZE, "%2i:%2i:%2i", self->health / 3600, (self->health - (self->health / 3600) * 3600) / 60, self->health % 60); + if (self->message[3] == ' ') + self->message[3] = '0'; + if (self->message[6] == ' ') + self->message[6] = '0'; + return; + } +} + +void func_clock_think (edict_t *self) +{ + if (!self->enemy) + { + self->enemy = G_Find (NULL, FOFS(targetname), self->target); + if (!self->enemy) + return; + } + + if (self->spawnflags & 1) + { + func_clock_format_countdown (self); + self->health++; + } + else if (self->spawnflags & 2) + { + func_clock_format_countdown (self); + self->health--; + } + else + { + struct tm *ltime; + time_t gmtime; + + time(&gmtime); + ltime = localtime(&gmtime); + Com_sprintf (self->message, CLOCK_MESSAGE_SIZE, "%2i:%2i:%2i", ltime->tm_hour, ltime->tm_min, ltime->tm_sec); + if (self->message[3] == ' ') + self->message[3] = '0'; + if (self->message[6] == ' ') + self->message[6] = '0'; + } + + self->enemy->message = self->message; + self->enemy->use (self->enemy, self, self); + + if (((self->spawnflags & 1) && (self->health > self->wait)) || + ((self->spawnflags & 2) && (self->health < self->wait))) + { + if (self->pathtarget) + { + char *savetarget; + char *savemessage; + + savetarget = self->target; + savemessage = self->message; + self->target = self->pathtarget; + self->message = NULL; + G_UseTargets (self, self->activator); + self->target = savetarget; + self->message = savemessage; + } + + if (!(self->spawnflags & 8)) + return; + + func_clock_reset (self); + + if (self->spawnflags & 4) + return; + } + + self->nextthink = level.time + 1; +} + +void func_clock_use (edict_t *self, edict_t *other, edict_t *activator) +{ + if (!(self->spawnflags & 8)) + self->use = NULL; + if (self->activator) + return; + self->activator = activator; + self->think (self); +} + +void SP_func_clock (edict_t *self) +{ + if (!self->target) + { + gi.dprintf("%s with no target at %s\n", self->classname, vtos(self->s.origin)); + G_FreeEdict (self); + return; + } + + if ((self->spawnflags & 2) && (!self->count)) + { + gi.dprintf("%s with no count at %s\n", self->classname, vtos(self->s.origin)); + G_FreeEdict (self); + return; + } + + if ((self->spawnflags & 1) && (!self->count)) + self->count = 60*60;; + + func_clock_reset (self); + + self->message = gi.TagMalloc (CLOCK_MESSAGE_SIZE, TAG_LEVEL); + + self->think = func_clock_think; + + if (self->spawnflags & 4) + self->use = func_clock_use; + else + self->nextthink = level.time + 1; +} + +//================================================================================= + +void teleporter_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + edict_t *dest; + int i; + + if (!(other->client)) + return; + dest = G_Find (NULL, FOFS(targetname), self->target); + if (!dest) + { + gi.dprintf ("Couldn't find destination\n"); + return; + } + + // unlink to make sure it can't possibly interfere with KillBox + gi.unlinkentity (other); + + VectorCopy (dest->s.origin, other->s.origin); + VectorCopy (dest->s.origin, other->s.old_origin); + other->s.origin[2] += 10; + + // clear the velocity and hold them in place briefly + VectorClear (other->velocity); + other->client->ps.pmove.pm_time = 160>>3; // hold time + other->client->ps.pmove.pm_flags |= PMF_TIME_TELEPORT; + + // draw the teleport splash at source and on the player + self->owner->s.event = EV_PLAYER_TELEPORT; + other->s.event = EV_PLAYER_TELEPORT; + + // set angles + for (i=0 ; i<3 ; i++) + other->client->ps.pmove.delta_angles[i] = ANGLE2SHORT(dest->s.angles[i] - other->client->resp.cmd_angles[i]); + + VectorClear (other->s.angles); + VectorClear (other->client->ps.viewangles); + VectorClear (other->client->v_angle); + + // kill anything at the destination + KillBox (other); + + gi.linkentity (other); +} + +/*QUAKED misc_teleporter (1 0 0) (-32 -32 -24) (32 32 -16) +Stepping onto this disc will teleport players to the targeted misc_teleporter_dest object. +*/ +void SP_misc_teleporter (edict_t *ent) +{ + edict_t *trig; + + if (!ent->target) + { + gi.dprintf ("teleporter without a target.\n"); + G_FreeEdict (ent); + return; + } + + gi.setmodel (ent, "models/objects/dmspot/tris.md2"); + ent->s.skinnum = 1; + ent->s.effects = EF_TELEPORTER; + ent->s.sound = gi.soundindex ("world/amb10.wav"); + ent->solid = SOLID_BBOX; + + VectorSet (ent->mins, -32, -32, -24); + VectorSet (ent->maxs, 32, 32, -16); + gi.linkentity (ent); + + trig = G_Spawn (); + trig->touch = teleporter_touch; + trig->solid = SOLID_TRIGGER; + trig->target = ent->target; + trig->owner = ent; + VectorCopy (ent->s.origin, trig->s.origin); + VectorSet (trig->mins, -8, -8, 8); + VectorSet (trig->maxs, 8, 8, 24); + gi.linkentity (trig); + +} + +/*QUAKED misc_teleporter_dest (1 0 0) (-32 -32 -24) (32 32 -16) +Point teleporters at these. +*/ +void SP_misc_teleporter_dest (edict_t *ent) +{ + gi.setmodel (ent, "models/objects/dmspot/tris.md2"); + ent->s.skinnum = 0; + ent->solid = SOLID_BBOX; +// ent->s.effects |= EF_FLIES; + VectorSet (ent->mins, -32, -32, -24); + VectorSet (ent->maxs, 32, 32, -16); + gi.linkentity (ent); +} + +// JOSEPH 8-FEB-99 +/*UAKED misc_amb4 (1 0 0) (-16 -16 -16) (16 16 16) +Mal's amb4 loop entity +*/ +// END JOSEPH +static int amb4sound; + +void amb4_think (edict_t *ent) +{ + ent->nextthink = level.time + 2.7; + gi.sound(ent, CHAN_VOICE, amb4sound, 1, ATTN_NONE, 0); +} + +void SP_misc_amb4 (edict_t *ent) +{ + ent->think = amb4_think; + ent->nextthink = level.time + 1; + amb4sound = gi.soundindex ("world/amb4.wav"); + gi.linkentity (ent); +} + +// JOSEPH 8-FEB-99 +/*UAKED misc_smoke (1 0 0) (-16 -16 -64) (16 16 64) ALPHA1 ALPHA2 ALPHA4 ALPHA6 ALPHA8 SCALE50 +ALPHA1 = 0.1 +ALPHA8 = 0.8 +SCALE 50 will scale it down 50 percent +*/ +// END JOSEPH +void SP_misc_smoke (edict_t *ent) +{ + ent->s.modelindex = gi.modelindex ("sprites/s_smoke4.sp2"); + + ent->s.effects |= EF_ANIM_ALLFAST; + + ent->s.renderfx |= RF_FACINGUP|RF_TRANSLUCENT; + ent->s.renderfx2 |= ent->spawnflags; + + ent->movetype = MOVETYPE_NONE; + //ent->solid = SOLID_BBOX; + + gi.linkentity (ent); + +} + + +// Test vehicle models + +void dodgeviper_think( edict_t *self) +{ +if ((self->s.angles[1] += 8) > 360) +self->s.angles[1] -= 360; + + self->nextthink = level.time + 0.1; +} + +void SP_misc_car (edict_t *self) +{ + self->movetype = MOVETYPE_STEP; + self->solid = SOLID_BBOX; + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 32); + +// temp for E3 demo, KP2 has characters in the ground +while (!ValidBoxAtLoc(self->s.origin, self->mins, self->maxs, self, MASK_PLAYERSOLID)) +{ +self->s.origin[2] += 16; +gi.linkentity (self); +} + + self->s.modelindex = gi.modelindex("models/vehicles/cars/viper/tris.md2"); + + self->s.renderfx |= RF_REFL_MAP; + + self->think = dodgeviper_think; + self->nextthink = level.time + 0.1; +} + +// JOSEPH 8-FEB-99 +/*UAKED cast_punk_window (1 0 0) (-16 -16 -16) (16 16 16) +*/ +// END JOSEPH +static int windowsound; + +void usewindow (edict_t *ent, edict_t *other, edict_t *activator) +{ +// ent->use = NULL; + gi.sound(ent, CHAN_VOICE, windowsound , 1, ATTN_NONE, 0); +} + +void thinkdeadwindow (edict_t *ent) +{ + ent->s.frame++; + if (ent->s.frame < 336) + ent->nextthink = level.time + 0.1; +} + +void window_die (edict_t *ent, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + ent->takedamage = DAMAGE_NO; + ent->nextthink = level.time + FRAMETIME; + ent->think = thinkdeadwindow; + ent->activator = attacker; + ent->s.frame = 322; +} + +void thinkwindow (edict_t *ent) +{ + ent->nextthink = level.time + 0.1; + ent->s.frame++; + if (ent->s.frame > 211) + ent->s.frame = 0; +} + +void SP_cast_punk_window (edict_t *ent) +{ + ent->s.modelindex = gi.modelindex ("models/actors/fidelC/tris.md2"); + ent->movetype = MOVETYPE_STEP; + ent->solid = SOLID_BBOX; + gi.linkentity (ent); + + ent->takedamage = DAMAGE_YES; + // ent->cast_info.aiflags = AI_NOSTEP; + + ent->health = 1; + ent->use = usewindow; + ent->think = thinkwindow; + ent->nextthink = level.time + 0.1; + + windowsound = gi.soundindex ("actors/specific/spec3.wav"); + + VectorSet (ent->mins, -16, -16, 0); + VectorSet (ent->maxs, 16, 16, 40); + + ent->die = window_die; + +} + +/*QUAKED refl (1 0 0) (-16 -16 -16) (16 16 16) +*/ + +void SP_refl (edict_t *ent) +{ + ent->s.modelindex = gi.modelindex ("models/vehicles/cars/viper/tris.md2"); + + ent->s.renderfx |= RF_REFL_MAP; + + ent->movetype = MOVETYPE_NONE; + + gi.linkentity (ent); +} + + +/*QUAKED elps (1 0 0) (-32 -32 -32) (32 32 32) +test entity for mdx bbox hit test +*/ + +void elpsthink (edict_t *self) +{ + self->nextthink = level.time + 0.1; + self->s.angles[YAW] += 3.0; + self->health = 1000; +} + +void SP_elps (edict_t *self) +{ + int i; + + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/elps_seg/up.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/elps_seg/up.mdx", &self->s.model_parts[PART_HEAD] ); + + self->s.num_parts++; + self->s.model_parts[PART_LEGS].modelindex = gi.modelindex("models/actors/elps_seg/rt.mdx"); + for (i=0; is.model_parts[PART_LEGS].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/elps_seg/rt.mdx", &self->s.model_parts[PART_LEGS] ); + + self->s.num_parts++; + self->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/actors/elps_seg/fwd.mdx"); + for (i=0; is.model_parts[PART_BODY].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/elps_seg/fwd.mdx", &self->s.model_parts[PART_BODY] ); + + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/elps_seg/diag.mdx"); + for (i=0; is.model_parts[PART_GUN].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/elps_seg/diag.mdx", &self->s.model_parts[PART_GUN] ); + + self->movetype = MOVETYPE_STEP; + self->solid = SOLID_BBOX; + gi.linkentity (self); + + self->takedamage = DAMAGE_YES; + + self->health = 1000; + self->think = elpsthink; + self->nextthink = level.time + 0.1; + + VectorSet (self->mins, -64, -64, -64); + VectorSet (self->maxs, 64, 64, 64); + +} + + +/*QUAKED misc_caustic (1 0 0) (-16 -16 -64) (16 16 64) ALPHA1 ALPHA2 ALPHA4 ALPHA6 ALPHA8 +ALPHA1 = 0.1 +ALPHA8 = 0.8 +*/ +// Ridah, not used, removed RF2_CAUSTIC flag +/* +void SP_misc_caustic (edict_t *ent) +{ + ent->s.modelindex = gi.modelindex ("sprites/s_smoke4.sp2"); + + ent->s.renderfx |= RF_TRANSLUCENT; + ent->s.renderfx2 |= ent->spawnflags; + ent->s.renderfx2 |= RF2_CAUSTIC; + + ent->movetype = MOVETYPE_NONE; + + gi.linkentity (ent); + +} +*/ +/*QUAKED misc_rosie (1 .5 0) (-16 -16 -24) (16 16 32) +*/ + +void rosie_think (edict_t *self) +{ + + self->nextthink = level.time + 0.1; + self->s.frame ++; + + if (self->s.frame > 390) + self->s.frame = 0; +} + +void SP_misc_rosie (edict_t *self) +{ + int i; + +//self->s.origin[2] += 1; + + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/rosie_seg/head.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/rosie_seg/head.mdx", &self->s.model_parts[PART_HEAD] ); + + self->s.num_parts++; + self->s.model_parts[PART_LEGS].modelindex = gi.modelindex("models/actors/rosie_seg/legs.mdx"); + for (i=0; is.model_parts[PART_LEGS].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/rosie_seg/legs.mdx", &self->s.model_parts[PART_LEGS] ); + + self->s.num_parts++; + self->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/actors/rosie_seg/body.mdx"); + for (i=0; is.model_parts[PART_BODY].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/rosie_seg/body.mdx", &self->s.model_parts[PART_BODY] ); + + self->movetype = MOVETYPE_NONE; + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + gi.linkentity (self); + + self->think = rosie_think; + self->nextthink = level.time + 0.1; + +} + + +/*QUAKED misc_fidelA (1 .5 0) (-16 -16 -24) (16 16 32) +*/ + +void fidelA_think (edict_t *self) +{ +//return; + self->nextthink = level.time + 0.1; + self->s.frame ++; + + if (self->s.frame > 54) + self->s.frame = 0; + + + gi.dprintf ("frame: %d\n", self->s.frame); +} + +void SP_misc_fidelA (edict_t *self) +{ + int i; +//return; +//self->s.origin[2] += 1; + + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/fidel_mdx/head.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/fidel_mdx/head.mdx", &self->s.model_parts[PART_HEAD] ); + + self->s.num_parts++; + self->s.model_parts[PART_LEGS].modelindex = gi.modelindex("models/actors/fidel_mdx/lower_body.mdx"); + for (i=0; is.model_parts[PART_LEGS].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/fidel_mdx/lower_body.mdx", &self->s.model_parts[PART_LEGS] ); + + self->s.num_parts++; + self->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/actors/fidel_mdx/upper_body.mdx"); + for (i=0; is.model_parts[PART_BODY].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/fidel_mdx/upper_body.mdx", &self->s.model_parts[PART_BODY] ); + + self->movetype = MOVETYPE_NONE; + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + gi.linkentity (self); + + self->think = fidelA_think; + self->nextthink = level.time + 0.1; + +} + + +#define ALARM_ON 1 +#define ALARM_OFF 2 + +void Think_Alarm (edict_t *ent) +{ + if (ent->wait < 0) + { + // just ring once + /* + if (ent->delay) + { + ent->delay --; + ent->wait = ent->count; + } + else + */ + return; + } + + gi.sound (ent, CHAN_VOICE, gi.soundindex ("world/alarm.wav"), 1, ATTN_NORM, 0); + ent->nextthink = level.time + 4.8; + ent->wait -= 4.8; +} + +void Use_Alarm (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->nextthink = level.time + 3; + ent->think = Think_Alarm; + + if (ent->moveinfo.state == ALARM_OFF) + { +// gi.dprintf ("turning alarm on\n"); + ent->moveinfo.state = ALARM_ON; + ent->wait = ent->count; + ent->delay = ent->speed; + + // Ridah, do some special handling here + EP_EventScript( activator, "alarm" ); + } + else + { +// gi.dprintf ("turning alarm off\n"); + ent->moveinfo.state = ALARM_OFF; + ent->wait = -1; + ent->delay = ent->speed; + } +} + +/*QUAKED misc_alarm (1 .5 0) (-8 -8 -8) (8 8 8) +must be triggered to work +count is the duration of the alarm ringing default is 60 sec +*/ +void SP_misc_alarm (edict_t *ent) +{ + ent->use = Use_Alarm; + + if (!(ent->count)) + ent->count = 60; + + if (!ent->speed || ent->speed < 0) + ent->delay = ent->speed = 3; + + ent->moveinfo.state = ALARM_OFF; + + // Ridah, NAV code only understands func_button's + ent->classname = "func_button"; + ent->name = "misc_alarm"; +} + + + + + + +/*QUAKED misc_corky_rosie_mdx (0 0 1) (-16 -16 -24) (16 16 34) +*/ + +void SP_misc_corky_rosie_mdx (edict_t *self) +{ + + int i; + + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/bitch/head.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/bitch/head.mdx", &self->s.model_parts[PART_HEAD] ); + + self->s.num_parts++; + self->s.model_parts[PART_LEGS].modelindex = gi.modelindex("models/actors/bitch/legs.mdx"); + for (i=0; is.model_parts[PART_LEGS].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/bitch/legs.mdx", &self->s.model_parts[PART_LEGS] ); + + self->s.num_parts++; + self->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/actors/bitch/body.mdx"); + for (i=0; is.model_parts[PART_BODY].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/bitch/body.mdx", &self->s.model_parts[PART_BODY] ); + + self->movetype = MOVETYPE_NONE; + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + gi.linkentity (self); + +} + + +/*QUAKED misc_corky_fatguy_mdx (0 0 1) (-16 -16 -24) (16 16 34) +*/ + +void SP_misc_corky_fatguy_mdx (edict_t *self) +{ + + int i; + + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/fatguy_mdx/head.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/fatguy_mdx/head.mdx", &self->s.model_parts[PART_HEAD] ); + + self->s.num_parts++; + self->s.model_parts[PART_LEGS].modelindex = gi.modelindex("models/actors/fatguy_mdx/lower_body.mdx"); + for (i=0; is.model_parts[PART_LEGS].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/fatguy_mdx/lower_body.mdx", &self->s.model_parts[PART_LEGS] ); + + self->s.num_parts++; + self->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/actors/fatguy_mdx/upper_body.mdx"); + for (i=0; is.model_parts[PART_BODY].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/fatguy_mdx/upper_body.mdx", &self->s.model_parts[PART_BODY] ); + + self->movetype = MOVETYPE_NONE; + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + gi.linkentity (self); + +} + + +/*QUAKED misc_corky_fidel_mdx_pcx (0 0 1) (-16 -16 -24) (16 16 34) +*/ +/*QUAKED misc_corky_fidel_mdx_tga (0 0 1) (-16 -16 -24) (16 16 34) +*/ + +void SP_misc_corky_fidel_mdx_tga (edict_t *self) +{ + int i; + + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/fidel_tga/head.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/fidel_tga/head.mdx", &self->s.model_parts[PART_HEAD] ); + + self->s.num_parts++; + self->s.model_parts[PART_LEGS].modelindex = gi.modelindex("models/actors/fidel_tga/lower_body.mdx"); + for (i=0; is.model_parts[PART_LEGS].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/fidel_tga/lower_body.mdx", &self->s.model_parts[PART_LEGS] ); + + self->s.num_parts++; + self->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/actors/fidel_tga/upper_body.mdx"); + for (i=0; is.model_parts[PART_BODY].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/fidel_tga/upper_body.mdx", &self->s.model_parts[PART_BODY] ); + + self->movetype = MOVETYPE_NONE; + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + gi.linkentity (self); + +} + +void SP_misc_corky_fidel_mdx_pcx (edict_t *self) +{ + int i; + + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/thug/head.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/thug/head.mdx", &self->s.model_parts[PART_HEAD] ); + + self->s.num_parts++; + self->s.model_parts[PART_LEGS].modelindex = gi.modelindex("models/actors/thug/legs.mdx"); + for (i=0; is.model_parts[PART_LEGS].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/thug/legs.mdx", &self->s.model_parts[PART_LEGS] ); + + self->s.num_parts++; + self->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/actors/thug/body.mdx"); + for (i=0; is.model_parts[PART_BODY].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/thug/body.mdx", &self->s.model_parts[PART_BODY] ); + + self->movetype = MOVETYPE_NONE; + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + gi.linkentity (self); + + +} + +/*QUAKED misc_barry_fidelc_maya (0 0 1) (-16 -16 -24) (16 16 34) +*/ +/*QUAKED misc_barry_bitch (0 0 1) (-16 -16 -24) (16 16 34) +*/ + +void misc_barry_fidelc_maya_think (edict_t *self) +{ + self->s.frame++; + self->nextthink = level.time + 0.1; + + if (self->s.frame >= 761) + self->s.frame = 0; + + gi.dprintf ("frame: %d\n", self->s.frame); +} + +void SP_misc_barry_fidelc_maya (edict_t *self) +{ + int i; + + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/bitch/head.mdx"); + for (i=0; is.model_parts[PART_HEAD].baseskin = self->s.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/bitch/head.mdx", &self->s.model_parts[PART_HEAD] ); + + self->s.num_parts++; + self->s.model_parts[PART_LEGS].modelindex = gi.modelindex("models/actors/bitch/legs.mdx"); + for (i=0; is.model_parts[PART_LEGS].baseskin = self->s.model_parts[PART_LEGS].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/bitch/legs.mdx", &self->s.model_parts[PART_LEGS] ); + + self->s.num_parts++; + self->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/actors/bitch/body.mdx"); + for (i=0; is.model_parts[PART_BODY].baseskin = self->s.model_parts[PART_BODY].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/bitch/body.mdx", &self->s.model_parts[PART_BODY] ); + +/* + int i; + + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/bitch/head.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/bitch/head.mdx", &self->s.model_parts[PART_HEAD] ); + + self->s.num_parts++; + self->s.model_parts[PART_LEGS].modelindex = gi.modelindex("models/actors/bitch/legs.mdx"); + for (i=0; is.model_parts[PART_LEGS].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/bitch/legs.mdx", &self->s.model_parts[PART_LEGS] ); + + self->s.num_parts++; + self->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/actors/bitch/body.mdx"); + for (i=0; is.model_parts[PART_BODY].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/bitch/body.mdx", &self->s.model_parts[PART_BODY] ); + + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/bitch/gun.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/bitch/gun.mdx", &self->s.model_parts[PART_GUN] ); +*/ +/* + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/fidel_seg/head.mdx"); + for (i=0; is.model_parts[PART_HEAD].baseskin = self->s.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/fidel_seg/head.mdx", &self->s.model_parts[PART_HEAD] ); + + self->s.num_parts++; + self->s.model_parts[PART_LEGS].modelindex = gi.modelindex("models/actors/fidel_seg/legs.mdx"); + for (i=0; is.model_parts[PART_LEGS].baseskin = self->s.model_parts[PART_LEGS].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/fidel_seg/legs.mdx", &self->s.model_parts[PART_LEGS] ); + + self->s.num_parts++; + self->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/actors/fidel_seg/body.mdx"); + for (i=0; is.model_parts[PART_BODY].baseskin = self->s.model_parts[PART_BODY].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/fidel_seg/body.mdx", &self->s.model_parts[PART_BODY] ); + + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/fidel_seg/gun.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/fidel_seg/gun.mdx", &self->s.model_parts[PART_GUN] ); +*/ + self->movetype = MOVETYPE_NONE; + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + self->think = misc_barry_fidelc_maya_think; + self->nextthink = level.time + 0.1; + gi.linkentity (self); + +} + +/*QUAKED misc_barry_cube_mdx (0 0 1) (-16 -16 -24) (16 16 34) +*/ + +void misc_barry_cube_mdx_think (edict_t *self) +{ + self->s.frame++; + self->nextthink = level.time + 0.1; + if (self->s.frame >= 20) + self->s.frame = 0; +} + +void SP_misc_barry_cube_mdx (edict_t *self) +{ + + int i; + + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/cube_mdx/cube.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/cube_mdx/cube.mdx", &self->s.model_parts[PART_HEAD] ); + + self->movetype = MOVETYPE_NONE; + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + self->think = misc_barry_cube_mdx_think; + self->nextthink = level.time + 0.1; + gi.linkentity (self); + +} + + +/*QUAKED path_attractor (.4 .3 .8) (-16 -16 -24) (16 16 48) +When this is placed on the map it will attract actors by name +from the episodic ai routines + +default delay is 10 sec. +*/ + +void SP_path_attractor (edict_t *self) +{ + self->movetype = MOVETYPE_NONE; + self->solid = SOLID_NOT; + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 48); + + if (!self->delay) + self->delay = 10; + + AI_Ent_droptofloor( self ); +} + + +// JOSEPH 16-DEC-98 + +/*QUAKED misc_cut_scene (0 0 1) (-16 -16 -16) (16 16 16) +*/ + +/*void CutSceneThink (edict_t *ent) +{ + ent->nextthink = level.time + 0.1; + + //if (level.time > (ent->nextthink + ent->wait)) + // JOSEPH 7-DEC-98 + if (!ent->wait--) + EndCutScene (ent); +} + +void CutSceneThinkEnd (edict_t *ent) +{ + EndCutScene (ent); +} + +void CutSceneThinkStart (edict_t *ent) +{ + if (!ent->count) + return; + + ent->count--; + + BeginCutScene (ent); + + // JOSEPH 7-DEC-98 + ent->think = CutSceneThink; + ent->nextthink = level.time + 0.1; +} + +void Touch_CutScene (edict_t *ent, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + ent->think = CutSceneThinkStart; + ent->nextthink = level.time + 0.1; +} + +void SP_misc_cut_scene (edict_t *self) +{ + + VectorSet (self->mins, -16, -16, -16); + VectorSet (self->maxs, 16, 16, 16); + + self->solid = SOLID_TRIGGER; + self->touch = Touch_CutScene; + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); + + if (!self->wait) + self->wait = 60; + + self->wait=10; // just for now + + self->count = 1; + +}*/ + +// JOSEPH 25-FEB-99 +/*QUAKED misc_cutscene_trigger (0 0 1) ? + +Targets a misc_cutscene_camera + + target - camera to target + debugprint - set to 1 to print out camera end position and angles + duration - fade in time. +*/ +// END JOSEPH + +// JOSEPH 19-MAR-99-B +/*QUAKED misc_cutscene_camera (0 0 1) (-16 -16 -16) (16 16 16) + +Camera to be targeted from a misc_cutscene_trigger + + targetname - camera target ID + + cameraorigin - X Y Z camera start position + + cameraangle - X Y Z start angles + + rotate - X Y Z rotational velocity during cut scene + + cameravel - [forward] [right] [up] speed to move from initial angle. + + cameravelrel - [forward] [right] [up] speed to move relative to current frame angle. + + wait - cut scene length in seconds (default 5) + + target - next camera to target. + + target2 - [NOT WORKING!!] camera angle points to this entity (overides other angle commands) + + deadticks - fov for this camera; + + duration - fade out time. + + reactdelay - time into camera to start fading out +*/ +// END JOSEPH +void CutSceneThink (edict_t *ent) +{ + if (!ent->wait--) + { + { + edict_t *e; + int i; + int found = 0; + + // Print end position if required + if (ent->debugprint) + { + // JOSEPH 24-FEB-99 + vec3_t neworigin; + + VectorCopy(ent->target_ent->s.origin, neworigin); + neworigin[2] += 40; + gi.dprintf("Camera \"%s\" end position %s\n", ent->target_ent->targetname, vtos(neworigin)); + gi.dprintf("Camera \"%s\" end angles %s\n", ent->target_ent->targetname, vtos(ent->target_ent->s.angles)); + // END JOSEPH + } + + // Restore camera start position and angle + VectorCopy(ent->target_ent->save_avel, ent->target_ent->s.angles); + VectorCopy(ent->target_ent->savecameraorigin, ent->target_ent->s.origin); + + // No more cameras + if (!ent->target_ent->target) + EndCutScene (ent->target_ent); + + // Find next target entity camera + if (ent->target_ent->target) + { + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->targetname) && (!strcmp(e->targetname, ent->target_ent->target))) + { + ent->target_ent = e; + found = 1; + break; + } + } + } + + // Next camera + if (found) + { + // See if a target2 can be found + if (ent->target_ent->target2) + { + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->targetname) && (!strcmp(e->targetname, ent->target_ent->target2))) + { + ent->target_ent->target2_ent = e; + break; + } + } + } + + ent->wait = ent->target_ent->wait*10.0; + if (!ent->wait) + ent->wait = 5.0*10.0; + NewCutSceneCamera (ent->target_ent); + ent->nextthink = level.time + 0.1; + + // Ridah, Camera accel/decel + ent->target_ent->timestamp = level.time; + ent->target_ent->speed = 0; + + // Ridah, play a sound if there is one + if (ent->target_ent->name) + { + edict_t *talkent; + + if (!ent->target_ent->sight_target) + { + //gi.dprintf( "Warning: cutsecene camera has voice sound without a \"sight_target\" (speaking charecter's name)\n" ); + gi.positioned_sound( ent->target_ent->s.origin, ent->target_ent, CHAN_AUTO, gi.soundindex( ent->target_ent->name ), 1.0, ATTN_NONE, 0); + } + else + { + talkent = EP_GetCharacterByName( ent->target_ent->sight_target ); + gi.sound( talkent, CHAN_VOICE, gi.soundindex( ent->target_ent->name ), 1.0, 1, 0); + } + + } + + // Ridah, scripting + if (ent->target_ent->scriptname) + { + EP_EventScript( &g_edicts[1], ent->target_ent->scriptname ); + } + + return; + } + } + + + // Ridah, scripting + if (ent->scriptname) + { + EP_EventScript( &g_edicts[1], ent->scriptname ); + } + + // No more cameras or target camera not found + ent->think = 0; + EndCutScene (ent->target_ent); + } + else + { + // Process camera frame + AdjustCutSceneCamera(ent->target_ent); + ent->nextthink = level.time + 0.1; + } +} + + +void CutSceneThinkStart (edict_t *ent) +{ + edict_t *e; + int i; + + if (!ent->count) + return; + + // JOSEPH 19-MAR-99-B + if (ent->duration) + { + level.inversefade = 0; + level.totalfade = ent->duration; + level.fadeendtime = level.time + level.totalfade; + } + // END JOSEPH + + ent->count--; + + // Find target entity + ent->target_ent = 0; + + if (ent->target) + { + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->targetname) && (!strcmp(e->targetname, ent->target))) + { + ent->target_ent = e; + break; + } + } + } + + if (!ent->target_ent) + return; + + // See if a target2 can be found + if (ent->target_ent->target2) + { + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->targetname) && (!strcmp(e->targetname, ent->target_ent->target2))) + { + ent->target_ent->target2_ent = e; + break; + } + } + } + + // Ridah, Camera accel/decel + ent->target_ent->timestamp = level.time; + ent->target_ent->speed = 0; + + // Ridah, play a sound if there is one + if (ent->target_ent->name) + { + edict_t *talkent; + + if (!ent->target_ent->sight_target) + { + //gi.dprintf( "Warning: cutsecene camera has voice sound without a \"sight_target\" (speaking charecter's name)\n" ); + gi.positioned_sound( ent->target_ent->s.origin, ent->target_ent, CHAN_AUTO, gi.soundindex( ent->target_ent->name ), 1.0, ATTN_NONE, 0); + } + else + { + talkent = EP_GetCharacterByName( ent->target_ent->sight_target ); + gi.sound( talkent, CHAN_VOICE, gi.soundindex( ent->target_ent->name ), 1.0, 1, 0); + } + + } + + // Ridah, scripting + if (ent->target_ent->scriptname) + { + EP_EventScript( &g_edicts[1], ent->target_ent->scriptname ); + } + + ent->wait = ent->target_ent->wait*10.0; + + if (!ent->wait) + ent->wait = 5.0*5.0; + + BeginCutScene (ent->target_ent); + + ent->think = CutSceneThink; + ent->nextthink = level.time + 0.1; +} + +void Touch_CutScene (edict_t *ent, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + CutSceneThinkStart(ent); +} + +// JOSEPH 17-MAR-99-B +void Use_CutScene (edict_t *self, edict_t *other, edict_t *activator) +{ + CutSceneThinkStart(self); +} +// END JOSEPH + +// OLD +void SP_misc_cut_scene (edict_t *self) +{ + +} + +// JOSEPH 2-MAR-99 +void PrecacheCutStuff (char* s) +{ + char *start; + char data[MAX_QPATH]; + int len; + + if (!s || !s[0]) + return; + + // parse the space seperated precache string + while (*s) + { + start = s; + while (*s && *s != ' ') + s++; + + len = s-start; + if (len >= MAX_QPATH || len < 5) + gi.error ("Bad precache string"); + memcpy (data, start, len); + data[len] = 0; + if (*s) + s++; + + // determine type based on extension + if (!strcmp(data+len-3, "md2")) + gi.modelindex (data); + else if (!strcmp (data+len-3, "mdx")) + gi.modelindex (data); + else if (!strcmp(data+len-3, "wav")) + gi.soundindex (data); + if (!strcmp(data+len-3, "pcx")) + gi.imageindex (data); + } +} + +// JOSEPH 19-MAR-99-B +void SP_misc_cutscene_trigger (edict_t *self) +{ + self->solid = SOLID_TRIGGER; + gi.setmodel (self, self->model); + self->svflags |= SVF_NOCLIENT; + + if (self->targetname) + { + self->use = Use_CutScene; + } + else + { + self->touch = Touch_CutScene; + } + + if (self->duration) + { + level.inversefade = 0; + level.totalfade = 60.0; + level.fadeendtime = level.time + level.totalfade; + } + + gi.linkentity (self); + self->count = 1; + + PrecacheCutStuff (self->name); +} +// END JOSEPH + +// JOSEPH 19-MAR-99-B +/*QUAKED misc_use_cutscene (.5 .5 .5) (-8 -8 -8) (8 8 8) +This fixed size trigger targets a misc_cutscene_camera + + target - camera to target + debugprint - set to 1 to print out camera end position and angles + duration - fade in time. +*/ +void SP_misc_use_cutscene (edict_t *self) +{ + self->use = Use_CutScene; + + if (self->duration) + { + level.inversefade = 0; + level.totalfade = 60.0; + level.fadeendtime = level.time + level.totalfade; + } + + self->count = 1; + + PrecacheCutStuff (self->name); +} +// END JOSEPH + +void SP_misc_cutscene_camera (edict_t *self) +{ + VectorSet (self->mins, -16, -16, -16); + VectorSet (self->maxs, 16, 16, 16); + + VectorClear(self->s.angles); + + if ((self->cameraorigin[0] != 0) || (self->cameraorigin[1] != 0) || (self->cameraorigin[2] != 0)) + { + VectorCopy(self->cameraorigin, self->s.origin); + self->s.origin[2] -= 40; + } + else + { + self->s.origin[0] += 8; + self->s.origin[1] += 8; + self->s.origin[2] += 8; + } + + self->solid = SOLID_NOT; + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); + + if (!self->deadticks) + self->deadticks = 90; + + PrecacheCutStuff (self->name); +} +// END JOSEPH + +/*QUAKED sfx_beacon (0 0 1) (-16 -16 -16) (16 16 16) +*/ + +void beacon_think (edict_t *ent) +{ + edict_t *ignore; + vec3_t start; + vec3_t end; + trace_t tr; + vec3_t forward; + + ignore = ent; + + ent->s.angles[YAW] += anglemod(level.time * 0.1); + + AngleVectors (ent->s.angles, forward, NULL, NULL ); + + VectorCopy (ent->s.origin, start); + VectorMA (start, 2048, forward, end); + + VectorCopy (forward, ent->movedir); + + tr = gi.trace (start, NULL, NULL, end, ignore, CONTENTS_SOLID|CONTENTS_MONSTER|CONTENTS_DEADMONSTER); + + VectorCopy (tr.endpos, ent->s.old_origin); + + ent->nextthink = level.time + FRAMETIME; + +} + +void SP_sfx_beacon (edict_t *ent) +{ + + ent->movetype = MOVETYPE_NONE; + ent->solid = SOLID_NOT; + ent->s.modelindex = 1; + + ent->s.renderfx |= RF_BEAM; + ent->s.renderfx2 |= RF2_BEAM2; + ent->s.frame = 64; + ent->s.effects |= EF_ROTATE; + ent->nextthink = level.time + 0.1; + ent->think = beacon_think; + ent->s.skinnum = 0xf2f2f0f0; + + gi.linkentity (ent); + +} diff --git a/gamesrc/G_NAV.H b/gamesrc/G_NAV.H new file mode 100644 index 0000000..715e0bd --- /dev/null +++ b/gamesrc/G_NAV.H @@ -0,0 +1,329 @@ +// ================================================================== +// +// Character Navigation System (CNS) +// +// ================================================================== + +// ================================================================== +// Defines + +#define MAX_NODES 700 +#define MAX_PARENT_NODES 128 +#define MAX_VIS_NODES 15 // bound by file IO methods +#define MAX_CELLS_PER_NODE 4 + +#define MAX_MAP_AXIS 5000 +#define CELL_AXIS_SUBDIVISION 32 // each axis is divided into segments, to form the cell grid +#define OPTIMIZE_NODES 2000 // check this many nodes per frame + +// each node can ONLY be ONE of the following types +#define NODE_NORMAL 0 +#define NODE_JUMP 1 // jump from this node +#define NODE_LANDING 2 // landing from a jump node +#define NODE_PLAT 4 // start riding a platform +#define NODE_TELEPORT 8 // move into a teleporter +#define NODE_BUTTON 16 +// the following can exist in conjunction with others +#define NODE_DUCKING 32 + +// Visibility Tests +#define VIS_LINE 0 +#define VIS_PARTIAL 1 +#define VIS_FULL 2 + +// Route types (returned by NAV_Route_*()) +#define ROUTE_NONE 0 +#define ROUTE_INDIRECT 1 +#define ROUTE_DIRECT 2 + +// Reachable tests +#define REACHABLE_THOROUGH 4 +#define REACHABLE_AVERAGE 16 +#define REACHABLE_POOR 32 + +// File I/O +#ifdef _WIN32 +#define DIR_SLASH "\\" +#else +#define DIR_SLASH "/" +#endif + +#define ROUTE_VERSION 4 // incremented each time file structure is changed, to allow automatic updating, if possible +#define ROUTE_SUBDIR "navdata" +#define ROUTE_EXT "nav" + +// #define DUCKING_MAX_Z 4 +#define DUCKING_MAX_Z 24 // as requested + +// Not used anymore, characters have individual max_z values +//#define STANDING_MAX_Z 32 + +//ent->nav_data->flags +#define ND_STATIC 1 // this entity NEVER moves (items) + +//ent->nav_build_data->flags +#define NBD_DUCK_NEWPATH 1 // set this whenever starting to duck while dropping nodes +#define NBD_JUMPING 2 +#define NBD_SHOWPATH 4 + +//NAV_GetHidePos parameters +#define HIDEPOS_FURTHER -1 +#define HIDEPOS_ANY 0 +#define HIDEPOS_CLOSER 1 + +// ================================================================== +//#include "q_shared.h" + +typedef struct node_s node_t; +typedef struct parent_node_s parent_node_t; +typedef struct cell_node_s cell_node_t; + +// ================================================================== +// Node structures +// +// .................................................................. +// Routes +// +// This is where the actual route between 2 nodes is stored. +// This is the base of an array, where each item represents +// a path between the source node, and the destination +// (referenced by each array item). + +typedef struct +{ + short path; // Node to head for, to get to another node, -1 if no route + unsigned short dist; // route distance from this node, to the other node +} route_t; + +// .................................................................. +// Parent (low-detail) nodes +// +// These are created, by merging a series of close-by (child) nodes +// into one parent node. These are only used for navigation +// of units that are not currently loaded into memory. + +struct parent_node_s +{ + vec3_t origin; + + route_t routes[MAX_PARENT_NODES]; // Route data between this and all other parent nodes +}; + +// .................................................................. +// Child (high-detail) nodes +// +// The "normal" state of a node, used when traversing the active +// geometry. + +struct node_s +{ + short index; // index of this node in the "nodes" array + + // SAVED DATA + float timestamp; // time node was created (used for node-creation code) + vec3_t origin; // position of node in active geometry + vec3_t jump_vel; // used for jump velocity + short node_type; // one of NODE_* constants (not flags) + short goal_index; // used for jump nodes, so we know which node to land on + byte waterlevel; + short yaw; // direction facing when node was dropped + byte cast_group; // set this when the node is dropped inside the territory of a specific gang + + short visible_nodes[MAX_VIS_NODES]; // nodes that are visible and reachable from this node + short num_visible; // number of nodes visible from this node + + route_t routes[MAX_NODES]; // Route data between this node and all other nodes + + // Calculated/used at run-time + csurface_t *surface; // surface immediately below the node (used for visibility checking) + float ignore_time; // don't go for this node if level.time < ignore_time + edict_t *goal_ent; // used for trigger/platform/etc relationships + + // used by NAV_GetHidePos() to speed things up + float last_sight_check; + qboolean last_sight_result; + +}; + +// .................................................................. +// Cell nodes +// +// These are used, to keep track of which cells a node belongs to. + +struct cell_node_s +{ + node_t *node; // node that this cell_node is representing + cell_node_t *next; // next cell_node in the cell's list, NULL if end +}; + +// .................................................................. +// Active Unit-specific structure +// +// Stores all information relative to an ACTIVE unit (the unit currently +// being played. +// +// It is assumed that the eventual structures for inactive and active +// units will simply contain pointers to an active_node_data_t or an +// inactive_node_data_t, with one of them being NULL. + +typedef struct +{ + short node_count; // number of nodes currently in the unit + qboolean modified; // set if the node data has been modified, so saving will be required + + // Main Node Array + // + // Used for references between nodes. Allows use + // of 16bit array indexes, instead of 32-pointers, which saves LOTS + // of memory. + // + // Nodes are allocated as they are added, since the actual nodes are + // the main source of memory useage. + + node_t *nodes[MAX_NODES]; + + // Node Cells + // + // Contains a list of "cell_nodes", which represent a node being in a cell. + // Each node can have up to 4 "cell_nodes", which represent each cell that + // the node is within. + // + // "cell_nodes" are created dynamically, as each node is created, and assigned + // to a cell. These "cell_nodes" are then linked to their cell via a linked + // list, which starts with the array below. + + cell_node_t *cells[CELL_AXIS_SUBDIVISION][CELL_AXIS_SUBDIVISION]; + +} active_node_data_t; + +// .................................................................. +// Inactive Unit-specific structure +// +// Stores only the navigation data required for an inactive unit, which +// is MUCH less than an active unit. +// +// Note that area cell's aren't required here, since searches will be +// fast enough not to require them, considering the low number of +// parent nodes in an inactive unit (hence, low-detail nodes). + +typedef struct +{ + + short node_count; + + // Parent Node array + // + // Stores a pointer to all parent nodes in the inactive unit. + + parent_node_t *parent_nodes[MAX_PARENT_NODES]; + +} inactive_unit_t; + +// .................................................................. +// Navigational System data, used for entities + +typedef struct +{ + int flags; // changes the way the CNS handles the entity + + short cache_node; // last successful closest node + float cache_node_time; // time of last cached node + float cache_valid_time; // time a cached node is deemed valid + + short goal_index; // 1 + (index of the node to head for) + + csurface_t *surface; // current surface standing on +} nav_data_t; + +// .................................................................. +// Node Creation + +typedef struct +{ + int flags; + node_t *current_node; // last node dropped, or closest node + vec3_t old_org; + edict_t *old_groundentity; + float last_max_z; // used for ducking/standing + + vec3_t ducking_org; + + edict_t *jump_ent; + + // debugging only + edict_t *debug_dest; +} nav_build_data_t; + +// ================================================================== +// Navigation Specific variables + +cvar_t *nav_dynamic; +cvar_t *nav_debug; +cvar_t *nav_optimize; + +cvar_t *nav_aipath; + +// ================================================================== +// Procedure Defines + +// g_nav.c +void NAV_InitActiveNodes( active_node_data_t *active_node_data); +void NAV_PurgeActiveNodes( active_node_data_t *active_node_data); + +node_t *NAV_CreateNode( edict_t *ent, + vec3_t origin, + vec3_t jump_vel, + short node_type, + short goal_index, + int waterlevel ); + +int NAV_OptimizeRoutes( active_node_data_t *active_node_data ); + +void NAV_CalculateVisible( active_node_data_t *active_node_data, node_t *node ); +int NAV_CalculateRoutes ( active_node_data_t *active_node_data, node_t *node ); + +qboolean NAV_Visible( vec3_t src, vec3_t dest, int vis_type, int ducking ); +qboolean NAV_Reachable( vec3_t src, vec3_t dest, + byte src_waterlevel, byte dest_waterlevel, + int ducking, int reachable_type ); +qboolean NAV_ClearSight ( edict_t *self, vec3_t dest, edict_t *dest_ent ); + +void NAV_CalcNodeSurface( node_t *node ); + +node_t *NAV_GetClosestNode( edict_t *ent, int vis_type, int ignore_cached, qboolean away_from_enemy ); + +int NAV_Route_EntityToEntity( edict_t *src, node_t *current_node, + edict_t *dest, int vis_type, int check_all_nodes, route_t *route_out ); +int NAV_Route_NodeToEntity( node_t *node, + edict_t *dest, int vis_type, route_t *route_out ); +int NAV_Route_EntityToNode( edict_t *src, node_t *current_node, + node_t *dest_node, int vis_type, int check_all_nodes, int check_direct, route_t *route_out ); + +void NAV_EvaluateMove( edict_t *ent ); + +// g_nav_io.c +void NAV_WriteActiveNodes( active_node_data_t *active_node_data, char *unitname); +void NAV_WriteNode(FILE *f, active_node_data_t *active_node_data, node_t *node); +void NAV_ReadActiveNodes( active_node_data_t *active_node_data, char *unitname); +void NAV_ReadNode( FILE *f, active_node_data_t *active_node_data, node_t *node); + +void NAV_FindGoalEnt( node_t *node ); + +void NAV_CalculateDistances(active_node_data_t *active_node_data); +int NAV_CalculateRouteDistance( active_node_data_t *active_node_data, node_t *src, node_t *dest ); + +// g_nav_cells.c +int NAV_GetCellIndexForAxis(float pos); +void NAV_AddNodeToCells(active_node_data_t *active_node_data, node_t *node); + +// g_nav_misc.c +void NAV_DrawLine(vec3_t sorg, vec3_t dorg); +float NAV_Debug_DrawPath(edict_t *src, edict_t *dest); +void NAV_dprintf(char *fmt, ...); + +void NAV_RebuildRoutes(active_node_data_t *node_data); // UNDER DEVELOPMENT!! + +float *NAV_GetCombatPos( edict_t *ent, edict_t *enemy, qboolean melee ); +float *NAV_GetHidePos( edict_t *ent, edict_t *enemy, int hidepos_type ); +qboolean NAV_GetAvoidDirection( edict_t *ent, edict_t *avoid, vec3_t dir ); +float *NAV_GetReachableNodeOutsideBounds( edict_t *ent, vec3_t bmins, vec3_t bmaxs ); diff --git a/gamesrc/G_PAWN.C b/gamesrc/G_PAWN.C new file mode 100644 index 0000000..22b5fb1 --- /dev/null +++ b/gamesrc/G_PAWN.C @@ -0,0 +1,2222 @@ +#include "g_local.h" + + +voice_table_t pawnomatic_sold[] = +{ + {NULL, "It's all yours", "It's all yours", "world/pawnomatic/sold1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Here ya go", "Here ya go", "world/pawnomatic/sold2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Sold", "Sold", "world/pawnomatic/sold3.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + + {NULL, "Nah? How bout somethin else?", "Nah? How bout somethin else?", "world/pawnomatic/nothanks1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Okay, find somethin else you like", "Okay, find somethin else you like", "world/pawnomatic/nothanks2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Nah?", "Nah?", "world/pawnomatic/nothanks3.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, +}; + +// 17 +voice_table_t pawnomatic_ammo_specific[] = +{ + {NULL, "a box of acid shells", "a box of acid shells", "world/pawnomatic/ammo_acid1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "acid shells, nasty... You want a box?", "acid shells, nasty... You want a box?", "world/pawnomatic/ammo_acid2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "alright, you wanna buy one box of bullets", "alright, you wanna buy one box of bullets", "world/pawnomatic/ammo_bullets1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "you wanna purchase one box of bullets... that it?", "you wanna purchase one box of bullets... that it?", "world/pawnomatic/ammo_bullets2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "concussion grenades, very nasty, sold 5 to a group", "concussion grenades, very nasty, sold 5 to a group", "world/pawnomatic/ammo_concus1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "oooh concussion grenades, sold in nice groups of 5", "oooh concussion grenades, sold in nice groups of 5", "world/pawnomatic/ammo_concus2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "fragmentation grenades. very nasty and sold in groups of 5. you wanna buy em?", "fragmentation grenades. very nasty and sold in groups of 5. you wanna buy em?", "world/pawnomatic/ammo_frag1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "group of 5 fragmentation grenades... you want em?", "group of 5 fragmentation grenades... you want em?", "world/pawnomatic/ammo_frag2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "high velocity ammo for sniper rifles. very nasty... you want some?", "high velocity ammo for sniper rifles. very nasty... you want some?", "world/pawnomatic/ammo_hv1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "you wanna buy some hv ammo for a sniper rifle...", "you wanna buy some hv ammo for a sniper rifle...", "world/pawnomatic/ammo_hv2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "napalm grenades, very nasty. 5 to a lot... you want some?", "napalm grenades, very nasty. 5 to a lot... you want some?", "world/pawnomatic/ammo_napalm1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "napalm grenades... very firey if you know what I mean. 5 to a lot... you want some?", "napalm grenades... very firey if you know what I mean. 5 to a lot... you want some?", "world/pawnomatic/ammo_napalm2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "you wanna buy a box of shells eh?", "you wanna buy a box of shells eh?", "world/pawnomatic/ammo_shotgun1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "shotgun shells... one box", "shotgun shells... one box", "world/pawnomatic/ammo_shotgun2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "tracer bullets... you wanna buy em?", "tracer bullets... you wanna buy em?", "world/pawnomatic/ammo_tracer1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "so you wanna buy tracer bullets...", "so you wanna buy tracer bullets...", "world/pawnomatic/ammo_tracer2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "rockets, 5 to a clip... what you expected an army?", "rockets, 5 to a clip... what you expected an army?", "world/pawnomatic/ammo_rockets1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, // 16 + {NULL, "oooh rockets... very nasty", "oooh rockets... very nasty", "world/pawnomatic/ammo_rockets2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, // 16 + {NULL, "heh, you need gas? I got gas", "heh, you need gas? I got gas", "world/pawnomatic/ammo_gas1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, // 17 + {NULL, "gonna do a little touch up work eh? gas canisters", "gonna do a little touch up work eh? gas canisters", "world/pawnomatic/ammo_gas2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, // 17 + {NULL, "308 ammo for that heavy machine gun... very deadly", "308 ammo for that heavy machine gun... very deadly", "world/pawnomatic/ammo_3081.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, // 18 + {NULL, "with that 308 ammo you could stop an elephant", "with that 308 ammo you could stop an elephant", "world/pawnomatic/ammo_3082.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, // 18 + +}; + +// 19 +voice_table_t pawnomatic_specific[] = +{ + {NULL, "welcome to pawn-o-matic. I see you ain't got any heat. there's a condenser coil in the wearhouse around the corner... bring it to me and I'll give ya a pistol.", "welcome to pawn-o-matic. I see you ain't got any heat. there's a condenser coil in the wearhouse around the corner... bring it to me and I'll give ya a pistol.", "world/pawnomatic/coil1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "welcome to pawn-o-matic. I see you ain't got any heat. there's a condenser coil in the wearhouse around the corner... bring it to me and I'll give ya a pistol.", "welcome to pawn-o-matic. I see you ain't got any heat. there's a condenser coil in the wearhouse around the corner... bring it to me and I'll give ya a pistol.", "world/pawnomatic/coil2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "what, you didn't bring me the coil?", "what, you didn't bring me the coil?", "world/pawnomatic/coilno1.wav", 0, {0,0,0,0,0},0, 0, TT_QUESTION}, + {NULL, "Hey, you come back with no coil...", "Hey, you come back with no coil...", "world/pawnomatic/coilno2.wav", 0, {0,0,0,0,0},0, 0, TT_QUESTION}, + {NULL, "Alright, you brought me the coil! here ya go, one pistol and a clip... have fun killer", "Alright, you brought me the coil! here ya go, one pistol and a clip... have fun killer", "world/pawnomatic/coilyes1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Hey hey hey, da coil! one pistol and one clip... thank you very much", "Hey hey hey, da coil! one pistol and one clip... thank you very much", "world/pawnomatic/coilyes2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "come back anytime... thanks for shopping pawn-o-matic", "come back anytime... thanks for shopping pawn-o-matic", "world/pawnomatic/leave1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "hey, Very nice to do business with you", "hey, Very nice to do business with you", "world/pawnomatic/leave2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + +//8 + {NULL, "you can't use that kinda ammo...", "you can't use that kinda ammo...", "world/pawnomatic/stock_cantuse1.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {NULL, "that kinda ammo ain't gonna work for you right now", "that kinda ammo ain't gonna work for you right now", "world/pawnomatic/stock_cantuse2.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {NULL, "hey, you don't have enough cash...", "hey, you don't have enough cash...", "world/pawnomatic/stock_cash1.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {NULL, "you ain't got enough money", "you ain't got enough money", "world/pawnomatic/stock_cash2.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {NULL, "I'm outta that", "I'm outta that", "world/pawnomatic/stock_out1.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {NULL, "sorry, we ain't got any", "sorry, we ain't got any", "world/pawnomatic/stock_out2.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {NULL, "you already got that", "you already got that", "world/pawnomatic/alreadyhave1.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {NULL, "hey, you don't need two... you already got one", "hey, you don't need two... you already got one", "world/pawnomatic/alreadyhave2.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + +//16 + {NULL, "you're all full up... you can't hold any more", "you're all full up... you can't hold any more", "world/pawnomatic/fullup1.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, // 16 + {NULL, "you don't need any more health... you're full up", "you don't need any more health... you're full up", "world/pawnomatic/fullup2.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, // 17 + + {NULL, "whoa! a coil. tell you what... I'll trade you a pistol for it", "whoa! a coil. tell you what... I'll trade you a pistol for it", "world/pawnomatic/coil3.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, // 18 + + // sound todo pv specific + {NULL, "welcome to pawn-o-matic... Louie the warehouse boss is waitin to talk to ya", "welcome to pawn-o-matic... Louie the warehouse boss is waitin to talk to ya", "world/pawnomatic/louie1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, // 19 + {NULL, "so... you get the job from Louie in the warehouse?", "so... you get the job from Louie in the warehouse?", "world/pawnomatic/louie2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, // 19 + + {NULL, "Welcome to pawn-o-matic", "", "world/pawnomatic/welcome.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, // 19 +}; + +// 2 +voice_table_t pawnomatic_health_specific[] = +{ + {NULL, "those medkits'll get you through some scrapes...", "those medkits'll get you through some scrapes...", "world/pawnomatic/medkit1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "if you're really hurtin, that thing'll do you some good...", "if you're really hurtin, that thing'll do you some good...", "world/pawnomatic/medkit2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, +}; + +// 16 +voice_table_t pawnomatic_mods_specific[] = +{ + {NULL, "Whoo, the mini launcher mod... 4 rockets at a crack", "Whoo, the mini launcher mod... 4 rockets at a crack", "world/pawnomatic/mod_launcher1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "the mini launcher mod. Very nice. 4 rockets all comin out at once... Boom!", "the mini launcher mod. Very nice. 4 rockets all comin out at once... Boom!", "world/pawnomatic/mod_launcher2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "magnum mod, one of my favorites", "magnum mod, one of my favorites", "world/pawnomatic/mod_magnum1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "magnum mod, very good choice... great stoppin power", "magnum mod, very good choice... great stoppin power", "world/pawnomatic/mod_magnum2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "that mod ain't gonna do you any good unless you've got the gun to go with it", "that mod ain't gonna do you any good unless you've got the gun to go with it", "world/pawnomatic/mod_nowork1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "you gotta have the right piece for that thing... otherwise it's worthless", "you gotta have the right piece for that thing... otherwise it's worthless", "world/pawnomatic/mod_nowork2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "pistol reload mod, very good choice... none of that fumblin around with a clip", "pistol reload mod, very good choice... none of that fumblin around with a clip", "world/pawnomatic/mod_reload1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "the pistol reload mod... that would decrease your reloading time", "the pistol reload mod... that would decrease your reloading time", "world/pawnomatic/mod_reload2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "the ROF, very nice mod... increase your rate of fire", "the ROF, very nice mod... increase your rate of fire", "world/pawnomatic/mod_rof1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "that that ROF, you can Spit bullets out", "that that ROF, you can Spit bullets out", "world/pawnomatic/mod_rof2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "oh very good mod, that'll let your shotgun accept the acid rounds", "oh very good mod, that'll let your shotgun accept the acid rounds", "world/pawnomatic/mod_shotgun1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "this mod'll let you fire the acid rounds from your shotgun", "this mod'll let you fire the acid rounds from your shotgun", "world/pawnomatic/mod_shotgun2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "ahh silencer... very good when you're sneaking up on somebody", "ahh silencer... very good when you're sneaking up on somebody", "world/pawnomatic/mod_silence1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "that'll quiet your pistol down a little bit", "that'll quiet your pistol down a little bit", "world/pawnomatic/mod_silence2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "the tommy gun tracer mod... very nice, very nice", "the tommy gun tracer mod... very nice, very nice", "world/pawnomatic/mod_tracer1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "the tommy gun tracer mod... very nice. increases your firepower and lets you see where those bullets are goin", "the tommy gun tracer mod... very nice. increases your firepower and lets you see where those bullets are goin", "world/pawnomatic/mod_tracer2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + + {NULL, "Ooo hmg cooling mod very good option Boom Boom Boom", "Ooo hmg cooling mod very good option Boom Boom Boom", "world/pawnomatic/mod_hmg1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Ooo hmg cooling mod now thats a very nice number turn that baby nearly automatic for ya", "Ooo hmg cooling mod now thats a very nice number turn that baby nearly automatic for ya", "world/pawnomatic/mod_hmg2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, +}; + +voice_table_t pawnomatic_weapons_random [] = +{ + {NULL, "very good choice", "very good choice", "world/pawnomatic/weapon1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "heh, my personal favorite", "heh, my personal favorite", "world/pawnomatic/weapon2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "oh I like that one a lot", "oh I like that one a lot", "world/pawnomatic/weapon3.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "very good choice", "very good choice", "world/pawnomatic/weapon4.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "nice selection", "nice selection", "world/pawnomatic/weapon5.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "that'll work", "that'll work", "world/pawnomatic/weapon6.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Boom! heh heh heh", "Boom! heh heh heh", "world/pawnomatic/weapon7.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "so you're gonna take this one...", "so you're gonna take this one...", "world/pawnomatic/weapon8.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "awright", "awright", "world/pawnomatic/weapon9.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, +}; + +voice_table_t pawnomatic_funny [] = +{ + {NULL, "hey you're bleedin all over my floor", "hey you're bleedin all over my floor", "world/pawnomatic/funny1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "hey we sell weapons, not body bags", "hey we sell weapons, not body bags", "world/pawnomatic/funny2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "man, who beat the shit outta you?", "man, who beat the (blip) outta you?", "world/pawnomatic/funny3.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "hey sorry we don't sell coffins", "hey sorry we don't sell coffins", "world/pawnomatic/funny4.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "hey, welcome to pawn-o-matic", "hey, welcome to pawn-o-matic", "world/pawnomatic/funny5.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE} + +}; + +voice_table_t pawnomatic_armor_specific[] = +{ + {NULL, "head armor. very good idea... protect the old noggin eh?", "head armor. very good idea... protect the old noggin eh?", "world/pawnomatic/armor_head1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "head armor. very good for keeping your brain Inside your skull", "head armor. very good for keeping your brain Inside your skull", "world/pawnomatic/armor_head2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "oooh, heavy head armor... expensive, but worth the price", "oooh, heavy head armor... expensive, but worth the price", "world/pawnomatic/armor_headh1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "heavy head armor... expensive, but worth every penny", "heavy head armor... expensive, but worth every penny", "world/pawnomatic/armor_headh2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + + {NULL, "body armor. form fitting... very stylish", "body armor. form fitting... very stylish", "world/pawnomatic/armor_body1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "body armor... very stylish", "body armor... very stylish", "world/pawnomatic/armor_body2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "hey, heavy body armor. maximum stopping power", "hey, heavy body armor. maximum stopping power", "world/pawnomatic/armor_bodyh1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "heavy body armor... that'll offer you maximum protection", "heavy body armor... that'll offer you maximum protection", "world/pawnomatic/armor_bodyh2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + + {NULL, "lower body armor. very good for protecting the legs eh?", "lower body armor. very good for protecting the legs eh?", "world/pawnomatic/armor_leg1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "hey you wanna keep your kneecaps from gettin wacked... leg armor'll do the trick", "hey you wanna keep your kneecaps from gettin wacked... leg armor'll do the trick", "world/pawnomatic/armor_leg2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "oh, heavy lower body armor. very tight fitting, but it'll protect those schnuts", "oh, heavy lower body armor. very tight fitting, but it'll protect those schnuts", "world/pawnomatic/armor_legh1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "heavy lower body armor... very stylish", "heavy lower body armor... very stylish", "world/pawnomatic/armor_legh2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, +}; + + +/*QUAKED pawn_o_matic (1 .5 0) (-16 -64 -32) (16 64 32) +*/ +void PawnGiveItem (edict_t *ent); +void PawnSetTimeDelay (float delay); +qboolean PawnGetTime (void); +void PawnSay (voice_table_t *voice_table, int entry); +void PawnDisplayOnHud (gitem_t *item, int index); + +int Check_Buy_Armor (edict_t *player, qboolean check); + + +qboolean left_side; +qboolean right_side; +int left_light_cnt; +int right_light_cnt; +qboolean animate_right; +qboolean animate_numbers; + +qboolean animate_hundreds; +qboolean animate_tens; +qboolean animate_ones; + +qboolean transaction; +qboolean exit_the_level; + +qboolean coil_think; + +int item_price; +int current_pawn_item; + +float generic_time; +int store_id; + + +#define MAX_MENU_ITEMS 17 + +#define LEFT_LIGHT 2 +#define RIGHT_LIGHT 5 +#define SLOTS 9 +#define NUM_START 6 +#define NUM_END 8 + +#define LOGO 4 + + +#define PAWN_WEAPONS 0 +#define PAWN_MODS 1 +#define PAWN_AMMO1 2 +#define PAWN_AMMO2 3 +#define PAWN_HEALTH 4 +#define PAWN_ARMOR 5 +#define PAWN_UNUSED1 6 +#define PAWN_UNUSED2 7 + + + +struct PAWN_O_MATIC +{ + edict_t *item; + char *name; + int num_frames; + int frame; + qboolean active; + int inv; + int price; +} pawn_menu[MAX_MENU_ITEMS] = + + { + // left piece + { NULL, "models/props/menu_mdx/select.mdx", 0, 0, false, 0, 0 }, + { NULL, "models/props/menu_mdx/selections.mdx", 0, 0, false, 0, 0 }, + { NULL, "models/props/menu_mdx/light2.mdx", 8, 0, true, 0, 0 }, + + // right piece + { NULL, "models/props/menu_mdx/frame.mdx", 0, 0, false, 0, 0 }, + { NULL, "models/props/menu_mdx/menu.mdx", 32, 0, true, 0, 0 }, + { NULL, "models/props/menu_mdx/light.mdx", 8, 0, true, 0, 0 }, + + { NULL, "models/props/menu_mdx/number1.mdx", 39, 0, true, 0, 0 }, + { NULL, "models/props/menu_mdx/number2.mdx", 39, 0, true, 0, 0 }, + { NULL, "models/props/menu_mdx/number3.mdx", 39, 0, true, 0, 0 }, + + { NULL, "models/props/menu_mdx/slot1.mdx", 32, 0, true, 0, 0 }, + { NULL, "models/props/menu_mdx/slot2.mdx", 32, 0, true, 0, 0 }, + { NULL, "models/props/menu_mdx/slot3.mdx", 32, 0, true, 0, 0 }, + { NULL, "models/props/menu_mdx/slot4.mdx", 32, 0, true, 0, 0 }, + { NULL, "models/props/menu_mdx/slot5.mdx", 32, 0, true, 0, 0 }, + { NULL, "models/props/menu_mdx/slot6.mdx", 32, 0, true, 0, 0 }, + { NULL, "models/props/menu_mdx/slot7.mdx", 32, 0, true, 0, 0 }, + { NULL, "models/props/menu_mdx/slot8.mdx", 32, 0, true, 0, 0 } + }; + +void Generic_Pawn_Think (edict_t *self) +{ + int i; + + for (i=0; is.frame = left_light_cnt; + else + pawn_menu[i].item->s.frame = 0; + } + else if (i == RIGHT_LIGHT) + { + if (right_side) + pawn_menu[i].item->s.frame = right_light_cnt; + else + pawn_menu[i].item->s.frame = 0; + } + else if (i == LOGO) + { + if (right_side) + pawn_menu[i].item->s.frame = (left_light_cnt * 4); + else + pawn_menu[i].item->s.frame = 0; + } + else if (i >= SLOTS) + { + if (left_side) + { + pawn_menu[i].item->s.frame = 0; + continue; + } + else if (!animate_right) + continue; + + if (pawn_menu[i].item->s.frame == (left_light_cnt * 4)) + { + animate_right = false; + } + else + { + pawn_menu[i].item->s.frame++; + if (pawn_menu[i].item->s.frame > pawn_menu[i].num_frames) + pawn_menu[i].item->s.frame = 0; + + gi.sound(pawn_menu[i].item, CHAN_VOICE, gi.soundindex("world/pawnomatic/counter.wav"), 1, ATTN_NORM, 0); + } + } + else if (i >= NUM_START && i <= NUM_END && animate_numbers) + { + + if (animate_hundreds || animate_tens || animate_ones) + { + animate_numbers = true; + } + else + { + animate_numbers = false; + continue; + } + + { + + int hundred, tens, ones; + qboolean num_delay; + + hundred = item_price / 100; + tens = ( item_price - ( hundred * 100 ) ) / 10; + ones = item_price - ( ( hundred * 100 ) + ( tens * 10) ); + + num_delay = false; + + if (i == NUM_START) + { + if ( pawn_menu[i].item->s.frame == hundred * 4) + { + animate_hundreds = false; + continue; + } + else + { + animate_hundreds = true; + // pawn_menu[i].item->s.frame++; + pawn_menu[i].item->s.frame = hundred * 4; + if (pawn_menu[i].item->s.frame > pawn_menu[i].num_frames) + pawn_menu[i].item->s.frame = 0; + + gi.sound(pawn_menu[i].item, CHAN_VOICE, gi.soundindex("world/pawnomatic/counter.wav"), 1, ATTN_NORM, 0); + num_delay = true; + + } + } + else if (i == NUM_END) + { + if ( pawn_menu[i].item->s.frame == ones * 4) + { + qboolean animate_ones = false; + continue; + } + else + { + animate_tens = true; + // pawn_menu[i].item->s.frame++; + pawn_menu[i].item->s.frame = ones * 4; + if (pawn_menu[i].item->s.frame > pawn_menu[i].num_frames) + pawn_menu[i].item->s.frame = 0; + + gi.sound(pawn_menu[i].item, CHAN_VOICE, gi.soundindex("world/pawnomatic/counter.wav"), 1, ATTN_NORM, 0); + num_delay = true; + } + } + else + { + if ( pawn_menu[i].item->s.frame == tens * 4) + { + animate_tens = false; + continue; + } + else + { + animate_tens = true; + // pawn_menu[i].item->s.frame++; + pawn_menu[i].item->s.frame = tens * 4; + if (pawn_menu[i].item->s.frame > pawn_menu[i].num_frames) + pawn_menu[i].item->s.frame = 0; + + gi.sound(pawn_menu[i].item, CHAN_VOICE, gi.soundindex("world/pawnomatic/counter.wav"), 1, ATTN_NORM, 0); + num_delay = true; + } + } + + if (num_delay) + PawnSetTimeDelay (0.2); + } + } + pawn_menu[0].item->nextthink = level.time + 0.1; + + } + +} + +extern int client_connected; + +void PawnFunny (edict_t *ent) +{ + edict_t *player; + + player = &g_edicts[1]; + + if (player->health < 5) PawnSay (pawnomatic_funny, 3); + else if (player->health < 25) PawnSay (pawnomatic_funny, 1); + else if (player->health < 50) PawnSay (pawnomatic_funny, 0); + else if (player->health < 75) PawnSay (pawnomatic_funny, 2); + else PawnSay (pawnomatic_funny, 4); + + PawnSetTimeDelay (2); +} + +void Think_Showgun (edict_t *ent) +{ + int index; + gitem_t *item; + edict_t *player; + + player = &g_edicts[1]; + item = FindItem ("Pistol"); + index = ITEM_INDEX (item); + // show icon and name on status bar + player->client->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(item->icon); + player->client->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS+index; + player->client->pickup_msg_time = level.time + 5.5; +} + + +void generic_coil_think_pv (edict_t *ent) +{ + edict_t *player; + + ent->nextthink = level.time + 0.1; + + if (coil_think) + return; + + if (!client_connected) + return; + + player = &g_edicts[1]; + + // first time in pawnomatic and didn't complete mission + /* + if (!(player->client->pers.episode_flags & EP_PV_PAWNOMATIC_FIRST_TIME) + || !(player->client->pers.episode_flags & EP_PV_TALKED_LOUIE) ) + { + // need voice file + PawnSay (pawnomatic_specific, 21); + PawnSetTimeDelay (2); + + EP_Skidrow_Register_EPFLAG (player, EP_PV_PAWNOMATIC_FIRST_TIME); + EP_Skidrow_Register_EPFLAG (player, EP_PV_OPEN_DOOR_LOUIE); + + coil_think = true; + } + else if (!(player->client->pers.episode_flags & EP_PV_TALKED_LOUIE_2) && player->client->pers.episode_flags & EP_PV_TALKED_LOUIE) + { + PawnSay (pawnomatic_specific, 21); + PawnSetTimeDelay (2); + EP_Skidrow_Register_EPFLAG (player, EP_PV_TALKED_LOUIE_2); + + coil_think = true; + } + */ + if (!(player->client->pers.episode_flags & EP_PV_PAWNOMATIC_FIRST_TIME)) + { + PawnSay (pawnomatic_specific, 21); + PawnSetTimeDelay (2); + + EP_Skidrow_Register_EPFLAG (player, EP_PV_PAWNOMATIC_FIRST_TIME); + //EP_Skidrow_Register_EPFLAG (player, EP_PV_OPEN_DOOR_LOUIE); + + coil_think = true; + } + else if (!(player->client->pers.episode_flags & EP_PV_SAFE_DOCS_DELIVERED)) + { + PawnSay (pawnomatic_funny, 4); + coil_think = true; + } + else + { + coil_think = true; + PawnFunny (ent); + } + +} + + +void generic_coil_think_skidrow (edict_t *ent) +{ + int index; + int rval; + edict_t *player; + gitem_t *item; + + ent->nextthink = level.time + 0.1; + + if (coil_think) + return; + + if (!client_connected) + return; + + player = &g_edicts[1]; + + index = ITEM_INDEX (FindItem ("Pistol")); + + // player has a gun so bail on everything else + if (player->client->pers.inventory [index] || store_id != 1) + { + coil_think = true; + // if the player got the coil anyway + // we should do something here + + if (player->client->pers.inventory[ITEM_INDEX(FindItem ("Coil"))]) + { + player->client->pers.inventory[ITEM_INDEX(FindItem ("Coil"))] = 0; + PawnSay (pawnomatic_specific, 18); + PawnSetTimeDelay (6); + + { + edict_t *showgun; + + showgun = G_Spawn(); + + if (showgun) + { + VectorCopy (player->s.origin, showgun->s.origin); + gi.linkentity(showgun); + showgun->think = Think_Showgun; + showgun->nextthink = level.time + 5.0; + } + } + + item = FindItem("Bullets"); + if (item) + { + index = ITEM_INDEX(item); + player->client->pers.inventory[index] += 10; + if (player->client->pers.inventory[index] > player->client->pers.max_bullets) + player->client->pers.inventory[index] = player->client->pers.max_bullets; + } + } + else + PawnFunny (ent); + + return; + } + + // first time in pawnomatic + if (!(player->client->pers.episode_flags & EP_PAWNOMATIC_FIRST_TIME) + && !(player->client->pers.inventory[ITEM_INDEX(FindItem ("Coil"))])) + { + if (player->client->pers.currentcash > 50) + { + PawnSay (pawnomatic_specific, 1); + PawnSetTimeDelay (9); + } + else + { + PawnSay (pawnomatic_specific, 0); + PawnSetTimeDelay (9); + } + + // player->episode_flags |= EP_PAWNOMATIC_FIRST_TIME; + // player->client->pers.episode_flags |= EP_PAWNOMATIC_FIRST_TIME; + + EP_Skidrow_Register_EPFLAG (player, EP_PAWNOMATIC_FIRST_TIME); + + coil_think = true; + } + else if (!(player->client->pers.episode_flags & EP_PAWNOMATIC_FIRST_TIME) + && (player->client->pers.inventory[ITEM_INDEX(FindItem ("Coil"))])) + { + PawnSay (pawnomatic_specific, 18); + PawnSetTimeDelay (6); + + // player->episode_flags |= EP_PAWNOMATIC_FIRST_TIME; + // player->client->pers.episode_flags |= EP_PAWNOMATIC_FIRST_TIME; + + EP_Skidrow_Register_EPFLAG (player, EP_PAWNOMATIC_FIRST_TIME); + + // take away the coil + player->client->pers.inventory[ITEM_INDEX(FindItem ("Coil"))] = 0; + + // give a gun and 10 bullets to the player + index = ITEM_INDEX (item = FindItem ("Pistol")); + player->client->pers.inventory [ index ] = 1; + player->client->newweapon = FindItem ("Pistol"); + + // JOSEPH 12-MAR-99 + { + edict_t *showgun; + + showgun = G_Spawn(); + + if (showgun) + { + VectorCopy (player->s.origin, showgun->s.origin); + gi.linkentity(showgun); + showgun->think = Think_Showgun; + showgun->nextthink = level.time + 5.0; + } + } + //PawnDisplayOnHud (item, index); + // END JOSEPH + + item = FindItem("Bullets"); + if (item) + { + index = ITEM_INDEX(item); + player->client->pers.inventory[index] += 10; + if (player->client->pers.inventory[index] > player->client->pers.max_bullets) + player->client->pers.inventory[index] = player->client->pers.max_bullets; + } + + coil_think = true; + } + // been here before + else + { + // does player have the coil + if (player->client->pers.inventory[ITEM_INDEX(FindItem ("Coil"))]) + { + PawnSay (pawnomatic_specific, 4); + PawnSetTimeDelay (4); + + // take away the coil + player->client->pers.inventory[ITEM_INDEX(FindItem ("Coil"))] = 0; + + // give a gun and 10 bullets to the player + index = ITEM_INDEX (item = FindItem ("Pistol")); + player->client->pers.inventory [ index ] = 1; + player->client->newweapon = FindItem ("Pistol"); + + // JOSEPH 12-MAR-99 + { + edict_t *showgun; + + showgun = G_Spawn(); + + if (showgun) + { + VectorCopy (player->s.origin, showgun->s.origin); + gi.linkentity(showgun); + showgun->think = Think_Showgun; + showgun->nextthink = level.time + 5.0; + } + } + //PawnDisplayOnHud (item, index); + // END JOSEPH + + item = FindItem("Bullets"); + if (item) + { + index = ITEM_INDEX(item); + player->client->pers.inventory[index] += 10; + if (player->client->pers.inventory[index] > player->client->pers.max_bullets) + player->client->pers.inventory[index] = player->client->pers.max_bullets; + } + } + // no coil on return visit + else + { + rval = rand()%2; + + if (rval) + { + PawnSetTimeDelay (2.0); + PawnSay (pawnomatic_specific, rval + 2); + } + else + { + PawnSetTimeDelay (1.3); + PawnSay (pawnomatic_specific, rval + 2); + } + + } + + coil_think = true; + } + + +} + +void generic_coil_think (edict_t *self) +{ + edict_t *player; + + player = &g_edicts[1]; + + self->nextthink = level.time + 0.1; + + if (coil_think) + return; + + if (!client_connected) + return; + + + if (!(player->client->pers.episode_flags & EP_SY_PAWNOMATIC_FIRST_TIME) && level.episode == EP_SHIPYARDS) + { + PawnSay (pawnomatic_specific, 21); + PawnSetTimeDelay (2); + + EP_Skidrow_Register_EPFLAG (player, EP_SY_PAWNOMATIC_FIRST_TIME); + coil_think = true; + } + else if (!(player->client->pers.episode_flags & EP_Steeltown_PAWNOMATIC_FIRST_TIME) && level.episode == EP_STEELTOWN) + { + PawnSay (pawnomatic_specific, 21); + PawnSetTimeDelay (2); + + EP_Skidrow_Register_EPFLAG (player, EP_Steeltown_PAWNOMATIC_FIRST_TIME); + coil_think = true; + } + else if (!(player->client->pers.episode_flags & EP_TY_PAWNOMATIC_FIRST_TIME) && level.episode == EP_TRAINYARD) + { + PawnSay (pawnomatic_specific, 21); + PawnSetTimeDelay (2); + + EP_Skidrow_Register_EPFLAG (player, EP_TY_PAWNOMATIC_FIRST_TIME); + coil_think = true; + } + else if (!(player->client->pers.episode_flags & EP_RC_PAWNOMATIC_FIRST_TIME) && level.episode == EP_RADIOCITY) + { + PawnSay (pawnomatic_specific, 21); + PawnSetTimeDelay (2); + + EP_Skidrow_Register_EPFLAG (player, EP_RC_PAWNOMATIC_FIRST_TIME); + coil_think = true; + } + else + { + PawnSay (pawnomatic_specific, 21); + PawnSetTimeDelay (2); + coil_think = true; + } +} + +void SP_coil_Skidrow (void) +{ + edict_t *ent; + + ent = G_Spawn (); + + switch (level.episode) + { + case EP_SKIDROW: + ent->think = generic_coil_think_skidrow; + break; + case EP_POISONVILLE: + ent->think = generic_coil_think_pv; + break; + case EP_SHIPYARDS: + ent->think = generic_coil_think; + break; + case EP_STEELTOWN: + ent->think = generic_coil_think; + break; + case EP_TRAINYARD: + ent->think = generic_coil_think; + break; + case EP_RADIOCITY: + ent->think = generic_coil_think; + break; + default: + ent->think = generic_coil_think; + break; + } + + ent->nextthink = level.time + 2.0; + gi.linkentity (ent); + +} + +void SP_pawn_o_matic (edict_t *self) +{ + int i, j; + + for (i=0; iclassname = "pawn_o_matic"; + + memset(&(pawn_menu[i].item->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + pawn_menu[i].item->s.num_parts++; + pawn_menu[i].item->s.model_parts[PART_HEAD].modelindex = gi.modelindex(pawn_menu[i].name); + + for (j=0; js.model_parts[PART_HEAD].skinnum[j] = pawn_menu[i].item->s.skinnum; + + gi.GetObjectBounds( pawn_menu[i].name, &pawn_menu[i].item->s.model_parts[PART_HEAD] ); + + pawn_menu[i].item->movetype = MOVETYPE_NONE; + + VectorCopy (self->s.origin, pawn_menu[i].item->s.origin); + VectorCopy (self->s.angles, pawn_menu[i].item->s.angles); + + if (!i) + { + pawn_menu[i].item->nextthink = level.time + 0.1; + pawn_menu[i].item->think = Generic_Pawn_Think; + } + + pawn_menu[i].item->s.renderfx2 |= RF2_NOSHADOW; + + pawn_menu[i].item->s.renderfx |= RF_FULLBRIGHT; + + gi.linkentity (pawn_menu[i].item); + } + + + + + // + // reset global pawn vars + // + + left_side = true; + right_side = false; + left_light_cnt = 1; + right_light_cnt = 0; + animate_right = false; + animate_numbers = false; + level.pawn_time = 1; + VectorCopy (pawn_menu[0].item->s.origin, level.pawn_origin); + animate_hundreds = false; + animate_tens = false; + animate_ones = false; + + transaction = false; + current_pawn_item = PAWN_WEAPONS; + + PawnSetTimeDelay (0.5); + + exit_the_level = false; + + coil_think = false; + + if (!self->count) + self->count = 1; + +// if (level.episode == 1) + SP_coil_Skidrow (); + + store_id = self->count; +} + + +#define MAX_PAWN_ITEMS 8 + +struct PAWN_ITEMS +{ + int price[8]; +} pawn_price[MAX_PAWN_ITEMS] = + { + // weapons + { 50, 150, 250, 750, 200, 350, 500, 0 }, + // mods + { 10, 25, 50, 25, 50, 100, 200, 0 }, + // ammo1 + { 5, 25, 20, 100, 50, 25, 50, 100 }, + // ammo2 + { 100, 25, 25, 0, 0, 0, 0, 0 }, + // health + { 25, 50, 0, 0, 0, 0, 0, 0 }, + // armor + { 100, 200, 150, 300, 100, 200, 0, 0 }, + // + { 0, 0, 0, 0, 0, 0, 0, 0 }, + // + { 0, 0, 0, 0, 0, 0, 0, 0 } + }; + +struct PAWN_ITEMS_NAME +{ + char *name[8]; +} pawn_item_names[MAX_PAWN_ITEMS] = +{ +// 0 1 2 3 4 5 6 7 + {"Pistol", "Shotgun", "Tommygun", "Heavy machinegun", "Grenade Launcher", "Bazooka", "FlameThrower", ""}, + {"SPistol", "WEAPON_MOD_ROF", "WEAPON_MOD_DAMAGE", "WEAPON_MOD_RELOAD", "WEAPON_MOD_COOLING_JACKET","", "", ""}, + {"Bullets", "Shells", "308cal", "Grenades", "", "", "", ""}, + {"Rockets", "Gas", "", "", "", "", "", ""}, + {"Med Kit", "Class 2", "", "", "", "", "", ""}, + {"Helmet Armor","Helmet Armor Heavy", "Jacket Armor", "Jacket Armor Heavy", "Legs Armor", "Legs Armor Heavy", "", ""}, + {"","","","","","","",""}, + {"","","","","","","",""} +}; + +void PawnDisplayOnHud (gitem_t *item, int index) +{ + edict_t *player; + + player = &g_edicts[1]; + + item = FindItem (item->pickup_name); + index = ITEM_INDEX (item); + + player->client->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(item->icon); + player->client->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS+index; + player->client->pickup_msg_time = level.time + 2.0; +} + +void PawnGiveItem (edict_t *ent) +{ + int index; + int pawn_item_index; + gitem_t *item; + + pawn_item_index = right_light_cnt - 1; + + switch (current_pawn_item) + { + case PAWN_WEAPONS: // gun item + index = ITEM_INDEX (item = FindItem (pawn_item_names[current_pawn_item].name[pawn_item_index])); + ent->client->pers.inventory [ index ] = 1; + ent->client->newweapon = FindItem (pawn_item_names[current_pawn_item].name[pawn_item_index]); + + PawnDisplayOnHud (item, index); + + if (pawn_item_index == 0 || pawn_item_index == 2) + { + item = FindItem("Bullets"); + if (item) + { + index = ITEM_INDEX(item); + if (pawn_item_index == 2) + ent->client->pers.inventory[index] += 50; + else + ent->client->pers.inventory[index] += 10; + + if (ent->client->pers.inventory[index] > ent->client->pers.max_bullets) + ent->client->pers.inventory[index] = ent->client->pers.max_bullets; + + } + } + else if (pawn_item_index == 1) + { + item = FindItem("Shells"); + if (item) + { + index = ITEM_INDEX(item); + ent->client->pers.inventory[index] += 10; + + if (ent->client->pers.inventory[index] > ent->client->pers.max_shells) + ent->client->pers.inventory[index] = ent->client->pers.max_shells; + + } + } + else if (pawn_item_index == 3) + { + item = FindItem("308cal"); + if (item) + { + index = ITEM_INDEX(item); + ent->client->pers.inventory[index] += 30; + + if (ent->client->pers.inventory[index] > ent->client->pers.max_slugs) + ent->client->pers.inventory[index] = ent->client->pers.max_slugs; + + } + } + else if (pawn_item_index == 4) + { + item = FindItem("Grenades"); + if (item) + { + index = ITEM_INDEX(item); + ent->client->pers.inventory[index] += 3; + + if (ent->client->pers.inventory[index] > ent->client->pers.max_grenades) + ent->client->pers.inventory[index] = ent->client->pers.max_grenades; + + } + } + else if (pawn_item_index == 5) + { + item = FindItem ("Rockets"); + if (item) + { + index = ITEM_INDEX (item); + ent->client->pers.inventory [index] += 5; + + if (ent->client->pers.inventory [index] > ent->client->pers.max_rockets) + ent->client->pers.inventory [index] = ent->client->pers.max_rockets; + } + } + else if (pawn_item_index == 6) + { + item = FindItem("Gas"); + if (item) + { + index = ITEM_INDEX(item); + ent->client->pers.inventory[index] += 100; + + if (ent->client->pers.inventory[index] > ent->client->pers.max_cells) + ent->client->pers.inventory[index] = ent->client->pers.max_cells; + + } + } + break; + case PAWN_MODS: // special handling + if (!pawn_item_index) // SPistol weapon + { + index = ITEM_INDEX (item = FindItem (pawn_item_names[current_pawn_item].name[pawn_item_index])); + ent->client->pers.inventory [ index ] = 1; + ent->client->newweapon = FindItem (pawn_item_names[current_pawn_item].name[pawn_item_index]); + ent->client->pers.silencer_shots = 20; + PawnDisplayOnHud (item, index); + } + else if (pawn_item_index >= 1 && pawn_item_index <= 3) // for pistol mods + { + + index = ITEM_INDEX (item = FindItem ("Pistol_Mods")); + + if (pawn_item_index == 1) + { + ent->client->pers.pistol_mods |= WEAPON_MOD_ROF; + item->icon = "/pics/h_pistol_rof.tga"; + } + else if (pawn_item_index == 2) + { + ent->client->pers.pistol_mods |= WEAPON_MOD_DAMAGE; + item->icon = "/pics/h_pistol_mag.tga"; + } + else if (pawn_item_index == 3) + { + ent->client->pers.pistol_mods |= WEAPON_MOD_RELOAD; + item->icon = "/pics/h_pistol_rl.tga"; + } + + ent->client->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(item->icon); + ent->client->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS+index; + ent->client->pickup_msg_time = level.time + 2.0; + } + // cooling jacket for heavy machinegun +// TBD: need the following items for this pickup and hud icons, need to make modifications to Pistol_Mods + else if (pawn_item_index == 4) + { + index = ITEM_INDEX (item = FindItem ("Pistol_Mods")); + + ent->client->pers.pistol_mods |= WEAPON_MOD_COOLING_JACKET; + item->icon = "/pics/h_heavymachinegun_cooling.tga"; + + ent->client->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(item->icon); + ent->client->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS+index; + ent->client->pickup_msg_time = level.time + 2.0; + + } + + break; + case PAWN_AMMO1: // ammo + if (pawn_item_index == 0) + { + item = FindItem("Bullets"); + if (item) + { + index = ITEM_INDEX(item); + ent->client->pers.inventory[index] += 10; + + if (ent->client->pers.inventory[index] > ent->client->pers.max_bullets) + ent->client->pers.inventory[index] = ent->client->pers.max_bullets; + + PawnDisplayOnHud (item, index); + } + } + else if (pawn_item_index == 1) + { + item = FindItem("Shells"); + if (item) + { + index = ITEM_INDEX(item); + ent->client->pers.inventory[index] += 5; + + if (ent->client->pers.inventory[index] > ent->client->pers.max_shells) + ent->client->pers.inventory[index] = ent->client->pers.max_shells; + + PawnDisplayOnHud (item, index); + } + } + else if (pawn_item_index == 2) + { + item = FindItem("308cal"); + if (item) + { + index = ITEM_INDEX(item); + ent->client->pers.inventory[index] += 30; + + if (ent->client->pers.inventory[index] > ent->client->pers.max_slugs) + ent->client->pers.inventory[index] = ent->client->pers.max_slugs; + + PawnDisplayOnHud (item, index); + } + } + else if (pawn_item_index == 3) + { + item = FindItem("Grenades"); + if (item) + { + index = ITEM_INDEX(item); + ent->client->pers.inventory[index] += 3; + + if (ent->client->pers.inventory[index] > ent->client->pers.max_grenades) + ent->client->pers.inventory[index] = ent->client->pers.max_grenades; + + PawnDisplayOnHud (item, index); + } + } + break; + case PAWN_AMMO2: // ammo + if (pawn_item_index == 0) + { + item = FindItem("Rockets"); + if (item) + { + index = ITEM_INDEX(item); + ent->client->pers.inventory[index] += 5; + + if (ent->client->pers.inventory[index] > ent->client->pers.max_rockets) + ent->client->pers.inventory[index] = ent->client->pers.max_rockets; + + PawnDisplayOnHud (item, index); + } + } + else if (pawn_item_index == 1) + { + item = FindItem("Gas"); + if (item) + { + index = ITEM_INDEX(item); + ent->client->pers.inventory[index] += 100; + + if (ent->client->pers.inventory[index] > ent->client->pers.max_cells) + ent->client->pers.inventory[index] = ent->client->pers.max_cells; + + PawnDisplayOnHud (item, index); + } + } + break; + // JOSEPH 12-MAR-99-B + case PAWN_HEALTH: // health + if (pawn_item_index) + { + int index; + gitem_t *item; + + item = FindItem ("Large Health"); + index = ITEM_INDEX (item); + ent->client->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(item->icon); + ent->client->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS+index; + ent->client->pickup_msg_time = level.time + 5.5; + + ent->health += 25; + } + else + { + int index; + gitem_t *item; + + item = FindItem ("Small Health"); + index = ITEM_INDEX (item); + ent->client->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(item->icon); + ent->client->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS+index; + ent->client->pickup_msg_time = level.time + 5.5; + + ent->health += 10; + } + + if (ent->health > ent->max_health) + ent->health = ent->max_health; + + // PawnDisplayOnHud (item, index); + + break; + case PAWN_ARMOR: + { + int rval; + int index; + gitem_t *item; + + rval = Check_Buy_Armor (ent, false); + + index = ITEM_INDEX (item = FindItem (pawn_item_names[current_pawn_item].name[pawn_item_index])); + + PawnDisplayOnHud (item, index); + } + + break; + } + // END JOSEPH +} + +void PawnItemPrice (int item) +{ + current_pawn_item = item - 1; + item_price = pawn_price[current_pawn_item].price[right_light_cnt - 1]; +} + + + +qboolean ValidateItemFor_Skidrow_Shop (int item, int index) +{ + if (store_id == 1) + { + switch (item) + { + case PAWN_WEAPONS: + if (index == 0) // pistol + return true; + break; + case PAWN_MODS: + if (index == 1 // mod rate of fire + || index == 2) // magnum mod + return true; + break; + case PAWN_AMMO1: + if (index == 0) // bullets + return true; + break; + case PAWN_AMMO2: + if (index == 1) // gas + return true; + break; + case PAWN_HEALTH: + if (index == 0 // small med kit + || index == 1) // large med kit + return true; + break; + case PAWN_ARMOR: + if (index == 0) // Helmet + return true; + break; + case PAWN_UNUSED1: + // not used yet implants etc + break; + case PAWN_UNUSED2: + // to sell stuff + break; + } + } + else if (store_id == 2) + { + switch (item) + { + case PAWN_WEAPONS: + if (index == 0 // pistol + || index == 1) // shotgun + return true; + break; + case PAWN_MODS: + if (index == 0 // mod silencer + || index == 1 // mod rate of fire + || index == 2 // magnum mode + || index == 3) // mod reload + return true; + break; + case PAWN_AMMO1: + if (index == 0 // bullets + || index == 1) // shells + return true; + break; + case PAWN_AMMO2: + break; + case PAWN_HEALTH: + if (index == 0 // small med kit + || index == 1) // large med kit + return true; + break; + case PAWN_ARMOR: + if (index == 0 // Helmet + || index == 2) // Jacket + return true; + break; + case PAWN_UNUSED1: + // not used yet implants etc + break; + case PAWN_UNUSED2: + // to sell stuff + break; + } + + } + + return false; +} + + +qboolean ValidateItemFor_PoisonVille_Shop (int item, int index) +{ + switch (item) + { + case PAWN_WEAPONS: + if (index == 0 // pistol + || index == 1) // shotgun + return true; + break; + case PAWN_MODS: + if (index == 0 // mod silencer + || index == 1 // mod rate of fire + || index == 2 // mod damage + || index == 3) // mod reload + return true; + break; + case PAWN_AMMO1: + if (index == 0 // bullets + || index == 1) // shells + return true; + break; + case PAWN_AMMO2: + if (index == 0) // rockets + return true; + break; + case PAWN_HEALTH: + if (index == 0 // small med kit + || index == 1) // large med kit + return true; + break; + case PAWN_ARMOR: + if (index == 0 // Helmet Armor + || index == 2 // Jacket Armor + || index == 4) // Legs Armor + return true; + break; + case PAWN_UNUSED1: + // not used yet implants etc + break; + case PAWN_UNUSED2: + // to sell stuff + break; + } + + return false; +} + + +qboolean ValidateItemFor_Shipyard_Shop (int item, int index) +{ + switch (item) + { + case PAWN_WEAPONS: + if (index == 0 // pistol + || index == 1 // shotgun + || index == 2 // tommygun + || index == 6) // flamethrower + return true; + break; + case PAWN_MODS: + if (index == 0 // silencer + || index == 1 // ROF + || index == 2 // magnum + || index == 3 // reload + || index == 4) // cooling jacket + return true; + break; + case PAWN_AMMO1: + if (index == 0 // bullets + || index == 1 // shells + || index == 2) // 308 + return true; + break; + case PAWN_AMMO2: + break; + case PAWN_HEALTH: + if (index == 0 // small health + || index == 1) // large health + return true; + break; + case PAWN_ARMOR: + if (index == 0 // helmet + || index == 2 // jacket + || index == 4) // pants + return true; + break; + case PAWN_UNUSED1: + // not used yet implants etc + break; + case PAWN_UNUSED2: + // to sell stuff + break; + } + + return false; +} + + +qboolean ValidateItemFor_Steeltown_Shop (int item, int index) +{ + switch (item) + { + case PAWN_WEAPONS: + if (index == 0 // pistol + || index == 1 // shotgun + || index == 2 // tommygun + || index == 4 // grenade launcher + || index == 6) // flamethrower + return true; + break; + case PAWN_MODS: + if (index == 0 // silencer + || index == 1 // ROF + || index == 2 // magnum + || index == 3) // reload + return true; + break; + case PAWN_AMMO1: + if (index == 0 // bullets + || index == 1 // shells + || index == 2) // 308 + return true; + break; + case PAWN_AMMO2: + if (index == 0) // rockets + return true; + break; + case PAWN_HEALTH: + if (index == 0 // small health + || index == 1) // large health + return true; + break; + case PAWN_ARMOR: + if (index == 0 // helmet + || index == 1 // heavy helmet + || index == 2 // jacket + || index == 4) // pants + return true; + break; + case PAWN_UNUSED1: + // not used yet implants etc + break; + case PAWN_UNUSED2: + // to sell stuff + break; + } + + return false; +} + + +qboolean ValidateItemFor_Radiocity_Shop (int item, int index) +{ + switch (item) + { + case PAWN_WEAPONS: + if (index == 0 // pistol + || index == 1 // shotgun + || index == 2 // tommygun + || index == 3 // HMG + || index == 4 // grenade launcher + || index == 5 // rocket launcher + || index == 6) // flamethrower + return true; + break; + case PAWN_MODS: + if (index == 0 // silencer + || index == 1 // ROF + || index == 2 // magnum + || index == 3 // reload + || index == 4) // cooling jacket + return true; + break; + case PAWN_AMMO1: + if (index == 0 // bullets + || index == 1 // shells + || index == 2 // 308 + || index == 3) // grenades + return true; + break; + case PAWN_AMMO2: + if (index == 0 // rockets + || index == 1) // gas + return true; + break; + case PAWN_HEALTH: + if (index == 0 // small health + || index == 1) // large health + return true; + break; + case PAWN_ARMOR: + if (index == 0 // helmet + || index == 1 // heavy helmet + || index == 2 // jacket + || index == 3 // heavy jacket + || index == 4 // pants + || index == 5) // heavy pants + return true; + break; + case PAWN_UNUSED1: + // not used yet implants etc + break; + case PAWN_UNUSED2: + // to sell stuff + break; + } + + return false; +} + + + + +// all pawnomatics will have a selective inventory +qboolean PawnItemHack (int item, int index) +{ + switch (level.episode) + { + case EP_SKIDROW: + return ValidateItemFor_Skidrow_Shop (item, index); + break; + case EP_POISONVILLE : + return ValidateItemFor_PoisonVille_Shop (item, index); + break; + case EP_SHIPYARDS: + return ValidateItemFor_Shipyard_Shop (item, index); + break; + case EP_STEELTOWN: + return ValidateItemFor_Steeltown_Shop (item, index); + break; + case EP_RADIOCITY: + return ValidateItemFor_Radiocity_Shop (item, index); + break; + } + return false; +} + +void PawnSay (voice_table_t *voice_table, int entry) +{ + edict_t *dude = NULL; + edict_t *player; + + player = &g_edicts[1]; + + dude = G_Find (NULL, FOFS (classname), "cast_runt"); + + if (!dude) + gi.dprintf ("this pawnomatic does not have a correct vendor\n"); + + gi.sound( dude, CHAN_VOICE, gi.soundindex ( voice_table[ entry ].filename ), 1, ATTN_NORM, 0 ); + + + if (cl_captions->value) + gi.dprintf ("Sharky : %s\n", voice_table[entry].text); + + player->client->ps.stats[STAT_HUD_ENEMY_TALK] = voice_table[ entry ].type; + player->client->hud_enemy_talk_time = level.time + 2.0; + + voice_table[ entry ].last_played = level.time; + + +} + +// TBD: Need to do voice tables and change return val to int to index what sound to play +qboolean PawnItemPriceSay (int item) +{ + edict_t *player; + int pawn_item_index; + qboolean demo_hack; + qboolean special_handle = false; + + pawn_item_index = right_light_cnt - 1; + + player = &g_edicts[1]; + + demo_hack = PawnItemHack (current_pawn_item, pawn_item_index); + if (!demo_hack) + { + PawnSay (pawnomatic_specific, (pawnomatic_specific[13].last_played < pawnomatic_specific[12].last_played) + 12); // out of stock + return false; + } + + // need to special handle mods + + if (current_pawn_item == PAWN_MODS) + { + if (pawn_item_index <= 3) // player wants a mod for pistol + { + if (!player->client->pers.inventory[ITEM_INDEX(FindItem("Pistol"))]) // no pistol + { + PawnSay (pawnomatic_mods_specific, (pawnomatic_mods_specific[5].last_played < pawnomatic_mods_specific[4].last_played) + 4); + demo_hack = false; + } + else if (player->client->pers.inventory[ITEM_INDEX(FindItem("SPistol"))] && pawn_item_index == 0) + { + PawnSay (pawnomatic_specific, (pawnomatic_specific[15].last_played < pawnomatic_specific[14].last_played) + 14); + demo_hack = false; + } + else if (player->client->pers.inventory[ITEM_INDEX(FindItem("SPistol"))] && pawn_item_index == 0) + { + PawnSay (pawnomatic_specific, (pawnomatic_specific[15].last_played < pawnomatic_specific[14].last_played) + 14); + demo_hack = false; + } + else if (pawn_item_index == 1 && player->client->pers.pistol_mods & WEAPON_MOD_ROF) + { + PawnSay (pawnomatic_specific, (pawnomatic_specific[15].last_played < pawnomatic_specific[14].last_played) + 14); + demo_hack = false; + } + else if (pawn_item_index == 2 && player->client->pers.pistol_mods & WEAPON_MOD_DAMAGE) + { + PawnSay (pawnomatic_specific, (pawnomatic_specific[15].last_played < pawnomatic_specific[14].last_played) + 14); + demo_hack = false; + } + else if (pawn_item_index == 3 && player->client->pers.pistol_mods & WEAPON_MOD_RELOAD) + { + PawnSay (pawnomatic_specific, (pawnomatic_specific[15].last_played < pawnomatic_specific[14].last_played) + 14); + demo_hack = false; + } + } + else if (pawn_item_index == 4) // player wants to buy the cooling jacket for hmg + { + if (!player->client->pers.inventory[ITEM_INDEX(FindItem("Heavy machinegun"))]) // no hmg + { + PawnSay (pawnomatic_mods_specific, (pawnomatic_mods_specific[5].last_played < pawnomatic_mods_specific[4].last_played) + 4); + demo_hack = false; + } + else if (player->client->pers.pistol_mods & WEAPON_MOD_COOLING_JACKET) + { + PawnSay (pawnomatic_specific, (pawnomatic_specific[15].last_played < pawnomatic_mods_specific[14].last_played) + 14); + demo_hack = false; + } + } + special_handle = true; + } + + +if (!demo_hack) + return false; + + + if (!special_handle) // not a mod + { + gitem_t *foundit = FindItem (pawn_item_names[current_pawn_item].name[pawn_item_index]); // for "player already has" below (SA) + + if (current_pawn_item == PAWN_AMMO1 || current_pawn_item == PAWN_AMMO2) + { + int idx; + gitem_t *it; + + + switch (pawn_item_index) + { + case 0: + if (current_pawn_item == PAWN_AMMO1) + { + it = FindItem("Bullets"); + if (it) + { + idx = ITEM_INDEX(it); + if (player->client->pers.inventory[idx] >= player->client->pers.max_bullets) + { + PawnSay (pawnomatic_specific, 16); + return false; + } + } + PawnSay (pawnomatic_ammo_specific, (pawnomatic_ammo_specific[3].last_played < pawnomatic_ammo_specific[2].last_played) + 2); + } + else + { + it = FindItem ("Rockets"); + if (it) + { + idx = ITEM_INDEX (it); + if (player->client->pers.inventory [idx] >= player->client->pers.max_rockets) + { + PawnSay (pawnomatic_specific, 16); + return false; + } + } + PawnSay (pawnomatic_ammo_specific, (pawnomatic_ammo_specific[17].last_played < pawnomatic_ammo_specific[16].last_played) + 16); + } + break; + case 1: + if (current_pawn_item == PAWN_AMMO1) + { + it = FindItem("Shells"); + if (it) + { + idx = ITEM_INDEX(it); + if (player->client->pers.inventory[idx] >= player->client->pers.max_shells) + { + PawnSay (pawnomatic_specific, 16); + return false; + } + } + PawnSay (pawnomatic_ammo_specific, (pawnomatic_ammo_specific[13].last_played < pawnomatic_ammo_specific[12].last_played) + 12); + } + else + { + it = FindItem("Gas"); + if (it) + { + idx = ITEM_INDEX(it); + if (player->client->pers.inventory[idx] >= player->client->pers.max_cells) + { + PawnSay (pawnomatic_specific, 16); + return false; + } + } + PawnSay (pawnomatic_ammo_specific, (pawnomatic_ammo_specific[19].last_played < pawnomatic_ammo_specific[18].last_played) + 18); + } + break; + case 2: + it = FindItem("308cal"); + if (it) + { + idx = ITEM_INDEX(it); + if (player->client->pers.inventory[idx] >= player->client->pers.max_slugs) + { + PawnSay (pawnomatic_specific, 16); + return false; + } + } + PawnSay (pawnomatic_ammo_specific, (pawnomatic_ammo_specific[21].last_played < pawnomatic_ammo_specific[20].last_played) + 20); + break; + case 3: + it = FindItem("Grenades"); + if (it) + { + idx = ITEM_INDEX(it); + if (player->client->pers.inventory[idx] >= player->client->pers.max_grenades) + { + PawnSay (pawnomatic_specific, 16); + return false; + } + } + PawnSay (pawnomatic_ammo_specific, (pawnomatic_ammo_specific[7].last_played < pawnomatic_ammo_specific[6].last_played) + 6); + break; + } + } + else if (current_pawn_item == PAWN_HEALTH) + { + if (player->health == player->max_health) + { + PawnSay (pawnomatic_specific, 17); + return false; + } + + if (pawn_item_index) PawnSay ( pawnomatic_health_specific, 1); + else PawnSay ( pawnomatic_health_specific, 0); + } + else if (current_pawn_item == PAWN_ARMOR) + { + int rval = Check_Buy_Armor (player, true); + + if (rval != -1) + PawnSay (pawnomatic_armor_specific, (pawnomatic_armor_specific[rval+1].last_played < pawnomatic_armor_specific[rval].last_played) + rval); + else + { + PawnSay (pawnomatic_specific, 14); // I only play the first "don't have it" because the second implies you don't need two. with armor, you might + return false; + } + } + else if (foundit && player->client->pers.inventory [ITEM_INDEX(foundit)] && current_pawn_item != 1) // player already has + { + PawnSay (pawnomatic_specific, (pawnomatic_specific[15].last_played < pawnomatic_specific[14].last_played) + 14); + return false; + } + else + { + if (current_pawn_item == PAWN_WEAPONS) + { + PawnSay (pawnomatic_weapons_random, rand()%9); + } + } + } + + else + { + if (current_pawn_item == PAWN_MODS) + { + int rval = 0; + + switch (pawn_item_index) + { + case 0: // Silencer + if (player->client->pers.inventory [ITEM_INDEX (FindItem ("Pistol"))]) + rval = 12; + else + { + PawnSay (pawnomatic_mods_specific, 3); + return false; + } + break; + case 1: // ROF + rval = 8; + break; + case 2: // Magnum + rval = 2; + break; + case 3: // Reload + rval = 6; + break; + + case 4: // HMG cooling mod + rval = 16; + break; + } + PawnSay (pawnomatic_mods_specific, (pawnomatic_mods_specific[rval+1].last_played < pawnomatic_mods_specific[rval].last_played) + rval); + } + else + gi.dprintf ("missed %d\n", current_pawn_item); + } + + + + return true; +} + +void PawnNext (edict_t *ent) +{ + int old_right_light_cnt; + + if (!PawnGetTime()) + return; + + PawnSetTimeDelay (0.2); + + gi.sound(ent, CHAN_VOICE, gi.soundindex("world/pawnomatic/menu.wav"), 1, ATTN_NORM, 0); + + old_right_light_cnt = right_light_cnt; + + if (left_side) + { + left_light_cnt++; + if (left_light_cnt > pawn_menu[LEFT_LIGHT].num_frames) + left_light_cnt = 1; + } + else + { + right_light_cnt++; + if (right_light_cnt > pawn_menu[RIGHT_LIGHT].num_frames) + right_light_cnt = 1; + } + + if (old_right_light_cnt != right_light_cnt) + { + animate_hundreds = animate_tens = animate_ones = animate_numbers = true; + PawnItemPrice (left_light_cnt); + } + + if (transaction) + { + transaction = false; + PawnSay (pawnomatic_sold, (rand()%3) + 3); + } +} + +void PawnPrev (edict_t *ent) +{ + int old_right_light_cnt; + + if (!PawnGetTime()) + return; + + PawnSetTimeDelay (0.2); + + gi.sound(ent, CHAN_VOICE, gi.soundindex("world/pawnomatic/menu.wav"), 1, ATTN_NORM, 0); + + old_right_light_cnt = right_light_cnt; + + if (left_side) + { + left_light_cnt--; + if (left_light_cnt < 1) + left_light_cnt = pawn_menu[LEFT_LIGHT].num_frames; + } + else + { + right_light_cnt--; + if (right_light_cnt < 1) + right_light_cnt = pawn_menu[RIGHT_LIGHT].num_frames; + } + + if (old_right_light_cnt != right_light_cnt) + { + animate_hundreds = animate_tens = animate_ones = animate_numbers = true; + PawnItemPrice (left_light_cnt); + } + + if (transaction) + { + transaction = false; + PawnSay (pawnomatic_sold, (rand()%3) + 3); + } +} + + +void ThinkerPawnLevelPrevious (edict_t *ent) +{ + edict_t *owner; + + if (left_light_cnt == pawn_menu[LEFT_LIGHT].num_frames) + { + owner = ent->owner; + G_FreeEdict( ent ); + + PawnLevelPrevious (owner); + return; + } + + G_FreeEdict( ent ); +} + +void PawnBuy (edict_t *ent) +{ + + if (!PawnGetTime()) + return; + + if (!exit_the_level) + PawnSetTimeDelay (0.2); + + gi.sound(ent, CHAN_VOICE, gi.soundindex("world/pawnomatic/menu.wav"), 1, ATTN_NORM, 0); + + + if (left_light_cnt == pawn_menu[LEFT_LIGHT].num_frames) + { + if (exit_the_level) + { + PawnLevelPrevious (ent); + } + else + { + edict_t *thinker; + + PawnSetTimeDelay (2.0); + PawnSay (pawnomatic_specific, 6); + exit_the_level = true; + + thinker = G_Spawn(); + thinker->owner = ent; + thinker->nextthink = level.time + 3.5; + thinker->think = ThinkerPawnLevelPrevious; + } + return; + } + + if (right_side && !transaction) + { + PawnItemPrice (left_light_cnt); + transaction = PawnItemPriceSay (left_light_cnt); + if (transaction) + gi.dprintf ("so do we have a deal?\n"); + } + // note to self + // added this for blank item + else if (left_side && left_light_cnt == pawn_menu[LEFT_LIGHT].num_frames - 1) + { + return; + } + else if (left_side && !exit_the_level) + { + right_side = true; + left_side = false; + right_light_cnt = 1; + animate_right = true; + animate_hundreds = animate_tens = animate_ones = animate_numbers = true; + PawnItemPrice (left_light_cnt); + } + else if (transaction) // the player can purchase here as well + { + PawnAgree (ent); + } + + +} + +void PawnLeft (edict_t *ent) +{ + if (!PawnGetTime()) + return; + + PawnSetTimeDelay (0.2); + + gi.sound(ent, CHAN_VOICE, gi.soundindex("world/pawnomatic/menu.wav"), 1, ATTN_NORM, 0); + + right_side = false; + left_side = true; + + if (transaction) + { + transaction = false; + PawnSay (pawnomatic_sold, (rand()%3) + 3); + } +} + +void PawnRight (edict_t *ent) +{ + if (!PawnGetTime()) + return; + + PawnSetTimeDelay (0.2); + + // note to self + // added this for blank space + if (left_side && left_light_cnt >= pawn_menu[LEFT_LIGHT].num_frames - 1) + { + return; + } + + gi.sound(ent, CHAN_VOICE, gi.soundindex("world/pawnomatic/menu.wav"), 1, ATTN_NORM, 0); + + right_side = true; + left_side = false; + + right_light_cnt = 1; + + animate_right = true; + animate_hundreds = animate_tens = animate_ones = animate_numbers = true; + PawnItemPrice (left_light_cnt); + + if (transaction) + { + transaction = false; + PawnSay (pawnomatic_sold, (rand()%3) + 3); + } +} + +void PawnAgree (edict_t *ent) +{ + if (!PawnGetTime() && !transaction) + return; + + PawnSetTimeDelay (0.2); + + if (transaction) + transaction = false; + else + { + gi.dprintf ("yo select something first\n"); + return; + } + + if (ent->client->pers.currentcash >= item_price) + { +// gi.dprintf ("agree!\n"); + + PawnSay (pawnomatic_sold, rand()%3 ); + + ent->client->pers.currentcash -= item_price; + + PawnGiveItem (ent); + + } + else + { +// gi.dprintf ("you don't have enough cash\n"); + PawnSay ( pawnomatic_specific, 11); + } +} + +void PawnDisagree (edict_t *ent) +{ + + if (!PawnGetTime()) + return; + + PawnSetTimeDelay (0.2); + + transaction = false; + // gi.dprintf ("disagree!\n"); + PawnSay (pawnomatic_sold, (rand()%3) + 3); +} + + +void PawnSetTimeDelay (float delay) +{ + generic_time = level.time + delay; + exit_the_level = false; +} + +qboolean PawnGetTime (void) +{ + if (generic_time < level.time) + return true; + + return false; +} + +void PawnLevelPrevious (edict_t *ent) +{ + edict_t *lvl; + edict_t *player; + + player = &g_edicts[1]; + + lvl = G_Find (ent, FOFS (classname), "trigger_multiple"); + + if (lvl) + lvl->touch( lvl, player, NULL, NULL ); + else + gi.dprintf ("error\n"); + + level.pawn_time = 0; + + +} + + +int Check_Buy_Armor (edict_t *player, qboolean check) +{ + int pawn_item_index; + + pawn_item_index = right_light_cnt - 1; + + if (pawn_item_index == 0) + { + gitem_t *itemh = FindItem("Helmet Armor"); + gitem_t *itemhh = FindItem("Helmet Armor Heavy"); + + if ((player->client->pers.inventory[ITEM_INDEX(itemh)] == 100) || + (player->client->pers.inventory[ITEM_INDEX(itemhh)] == 100)) + return (-1); + else if (check) + return (0); + + if (player->client->pers.inventory[ITEM_INDEX(itemhh)]) + { + player->client->pers.inventory[ITEM_INDEX(itemhh)] += 25; + if (player->client->pers.inventory[ITEM_INDEX(itemhh)] > 100) + player->client->pers.inventory[ITEM_INDEX(itemhh)] = 100; + } + else + { + player->client->pers.inventory[ITEM_INDEX(itemh)] += 50; + if (player->client->pers.inventory[ITEM_INDEX(itemh)] > 100) + player->client->pers.inventory[ITEM_INDEX(itemh)] = 100; + } + } + else if (pawn_item_index == 2) + { + + gitem_t *itemj = FindItem("Jacket Armor"); + gitem_t *itemjh = FindItem("Jacket Armor Heavy"); + + if ((player->client->pers.inventory[ITEM_INDEX(itemj)] == 100) || + (player->client->pers.inventory[ITEM_INDEX(itemjh)] == 100)) + return (-1); + else if (check) + return (4); + + if (player->client->pers.inventory[ITEM_INDEX(itemjh)]) + { + player->client->pers.inventory[ITEM_INDEX(itemjh)] += 25; + if (player->client->pers.inventory[ITEM_INDEX(itemjh)] > 100) + player->client->pers.inventory[ITEM_INDEX(itemjh)] = 100; + } + else + { + player->client->pers.inventory[ITEM_INDEX(itemj)] += 50; + if (player->client->pers.inventory[ITEM_INDEX(itemj)] > 100) + player->client->pers.inventory[ITEM_INDEX(itemj)] = 100; + } + } + else if (pawn_item_index == 4) + { + gitem_t *iteml = FindItem("Legs Armor"); + gitem_t *itemlh = FindItem("Legs Armor Heavy"); + + if ((player->client->pers.inventory[ITEM_INDEX(iteml)] == 100) || + (player->client->pers.inventory[ITEM_INDEX(itemlh)] == 100)) + return (-1); + else if (check) + return (8); + + if (player->client->pers.inventory[ITEM_INDEX(itemlh)]) + { + player->client->pers.inventory[ITEM_INDEX(itemlh)] += 25; + if (player->client->pers.inventory[ITEM_INDEX(itemlh)] > 100) + player->client->pers.inventory[ITEM_INDEX(itemlh)] = 100; + } + else + { + player->client->pers.inventory[ITEM_INDEX(iteml)] += 50; + if (player->client->pers.inventory[ITEM_INDEX(iteml)] > 100) + player->client->pers.inventory[ITEM_INDEX(iteml)] = 100; + } + } + else if (pawn_item_index == 1) + { + gitem_t *itemh = FindItem("Helmet Armor"); + gitem_t *itemhh = FindItem("Helmet Armor Heavy"); + + if (player->client->pers.inventory[ITEM_INDEX(itemhh)] == 100) + return (-1); + else if (check) + return (2); + + if (player->client->pers.inventory[ITEM_INDEX(itemh)]) + player->client->pers.inventory[ITEM_INDEX(itemh)] = 0; + + player->client->pers.inventory[ITEM_INDEX(itemhh)] = 100; + } + else if (pawn_item_index == 3) + { + gitem_t *itemj = FindItem("Jacket Armor"); + gitem_t *itemjh = FindItem("Jacket Armor Heavy"); + + if (player->client->pers.inventory[ITEM_INDEX(itemjh)] == 100) + return (-1); + else if (check) + return (6); + + if (player->client->pers.inventory[ITEM_INDEX(itemj)]) + player->client->pers.inventory[ITEM_INDEX(itemj)] = 0; + + player->client->pers.inventory[ITEM_INDEX(itemjh)] = 100; + } + else if (pawn_item_index == 5) + { + gitem_t *iteml = FindItem("Legs Armor"); + gitem_t *itemlh = FindItem("Legs Armor Heavy"); + + if (player->client->pers.inventory[ITEM_INDEX(itemlh)] == 100) + return (-1); + else if (check) + return (10); + + if (player->client->pers.inventory[ITEM_INDEX(iteml)]) + player->client->pers.inventory[ITEM_INDEX(iteml)] = 0; + + player->client->pers.inventory[ITEM_INDEX(itemlh)] = 100; + } + + return (-1); +} + diff --git a/gamesrc/G_PHYS.C b/gamesrc/G_PHYS.C new file mode 100644 index 0000000..c95fc83 --- /dev/null +++ b/gamesrc/G_PHYS.C @@ -0,0 +1,1376 @@ +// g_phys.c + +#include "g_local.h" + +/* + + +pushmove objects do not obey gravity, and do not interact with each other or trigger fields, but block normal movement and push normal objects when they move. + +onground is set for toss objects when they come to a complete rest. it is set for steping or walking objects + +doors, plats, etc are SOLID_BSP, and MOVETYPE_PUSH +bonus items are SOLID_TRIGGER touch, and MOVETYPE_TOSS +corpses are SOLID_NOT and MOVETYPE_TOSS +crates are SOLID_BBOX and MOVETYPE_TOSS +walking monsters are SOLID_SLIDEBOX and MOVETYPE_STEP +flying/floating monsters are SOLID_SLIDEBOX and MOVETYPE_FLY + +solid_edge items only clip against bsp models. + +*/ + + +/* +============ +SV_TestEntityPosition + +============ +*/ +edict_t *SV_TestEntityPosition (edict_t *ent) +{ + trace_t trace; + int mask; + + if (ent->clipmask) + mask = ent->clipmask; + else + mask = MASK_SOLID; + trace = gi.trace (ent->s.origin, ent->mins, ent->maxs, ent->s.origin, ent, mask); + + if (trace.startsolid) + return g_edicts; + + return NULL; +} + + +/* +================ +SV_CheckVelocity +================ +*/ +void SV_CheckVelocity (edict_t *ent) +{ + int i; + +// +// bound velocity +// + for (i=0 ; i<3 ; i++) + { + if (ent->velocity[i] > sv_maxvelocity->value) + ent->velocity[i] = sv_maxvelocity->value; + else if (ent->velocity[i] < -sv_maxvelocity->value) + ent->velocity[i] = -sv_maxvelocity->value; + } +} + +/* +============= +SV_RunThink + +Runs thinking code for this frame if necessary +============= +*/ +qboolean SV_RunThink (edict_t *ent) +{ + float thinktime; + + thinktime = ent->nextthink; + if (thinktime <= 0) + return true; + if (thinktime > level.time+0.001) + return true; + + ent->nextthink = 0; + + if (!ent->think) + { + ent->nextthink = 0; + return true; + + // hack to stop crash bug + // gi.error ("NULL ent->think"); + } + ent->think (ent); + + return false; +} + +/* +================== +SV_Impact + +Two entities have touched, so run their touch functions +================== +*/ +void SV_Impact (edict_t *e1, trace_t *trace) +{ + edict_t *e2; +// cplane_t backplane; + + e2 = trace->ent; + + if (e1->touch && e1->solid != SOLID_NOT) + e1->touch (e1, e2, &trace->plane, trace->surface); + + if (e2->touch && e2->solid != SOLID_NOT) + e2->touch (e2, e1, NULL, NULL); +} + + +/* +================== +ClipVelocity + +Slide off of the impacting object +returns the blocked flags (1 = floor, 2 = step / wall) +================== +*/ +#define STOP_EPSILON 0.1 + +int ClipVelocity (vec3_t in, vec3_t normal, vec3_t out, float overbounce) +{ + float backoff; + float change; + int i, blocked; + + blocked = 0; + if (normal[2] > 0) + blocked |= 1; // floor + if (!normal[2]) + blocked |= 2; // step + + backoff = DotProduct (in, normal) * overbounce; + + for (i=0 ; i<3 ; i++) + { + change = normal[i]*backoff; + out[i] = in[i] - change; + if (out[i] > -STOP_EPSILON && out[i] < STOP_EPSILON) + out[i] = 0; + } + + return blocked; +} + + +/* +============ +SV_FlyMove + +The basic solid body movement clip that slides along multiple planes +Returns the clipflags if the velocity was modified (hit something solid) +1 = floor +2 = wall / step +4 = dead stop +============ +*/ +#define MAX_CLIP_PLANES 5 +int SV_FlyMove (edict_t *ent, float time, int mask) +{ + edict_t *hit; + int bumpcount, numbumps; + vec3_t dir; + float d; + int numplanes; + vec3_t planes[MAX_CLIP_PLANES]; + vec3_t primal_velocity, original_velocity, new_velocity; + int i, j; + trace_t trace; + vec3_t end; + float time_left; + int blocked; + + numbumps = 4; + + blocked = 0; + VectorCopy (ent->velocity, original_velocity); + VectorCopy (ent->velocity, primal_velocity); + numplanes = 0; + + time_left = time; + + ent->groundentity = NULL; + for (bumpcount=0 ; bumpcounts.origin[i] + time_left * ent->velocity[i]; + + trace = gi.trace (ent->s.origin, ent->mins, ent->maxs, end, ent, mask); + + if (trace.allsolid) + { // entity is trapped in another solid +// if (bumpcount == 0) +// gi.dprintf( "WARNING: %s is stuck inside %s at (%s)\n", ent->classname, trace.ent->classname, vtos(ent->s.origin) ); + VectorCopy (vec3_origin, ent->velocity); + return 3; + } + + if ((trace.fraction > 0) && !(trace.ent->svflags & SVF_MONSTER) && !trace.ent->client) + { // covered some distance + VectorCopy (trace.endpos, ent->s.origin); + VectorCopy (ent->velocity, original_velocity); + numplanes = 0; + } + else if ((trace.ent->svflags & SVF_MONSTER) || trace.ent->client) // stay well clear of other characters + { + // Ridah, don't climb beneath another character + if (ent->flags & FL_FLY) + { // abort climbing + AngleVectors( ent->s.angles, ent->velocity, NULL, NULL ); + VectorScale( ent->velocity, -32, ent->velocity ); + + ent->velocity[2] = 0; + + ent->flags &= ~FL_FLY; + + if (ent->cast_info.move_end_climb) + ent->cast_info.currentmove = ent->cast_info.move_end_climb; + } + else if (ent->s.origin[2] > (trace.ent->s.origin[2] + trace.ent->maxs[2])) + { // they're below us, jump randomly to get off + VectorSet (ent->velocity, random()*128, random()*128, 220); + + return 20; + } + else + { + VectorCopy (vec3_origin, ent->velocity); + } + + return 3; + } + + if (trace.fraction == 1) + { + blocked = -1; + break; // moved the entire distance + } + + hit = trace.ent; + + if (trace.plane.normal[2] > 0.7) + { + blocked |= 1; // floor + if ( hit->solid == SOLID_BSP) + { + ent->groundentity = hit; + ent->groundentity_linkcount = hit->linkcount; + } + } + if (!trace.plane.normal[2]) + { + blocked |= 2; // step + } + +// +// run the impact function +// + SV_Impact (ent, &trace); + if (!ent->inuse) + break; // removed by the impact function + + + time_left -= time_left * trace.fraction; + + // cliped to another plane + if (numplanes >= MAX_CLIP_PLANES) + { // this shouldn't really happen + VectorCopy (vec3_origin, ent->velocity); + return 3; + } + + VectorCopy (trace.plane.normal, planes[numplanes]); + numplanes++; + +// +// modify original_velocity so it parallels all of the clip planes +// + for (i=0 ; iclassname ); + VectorCopy (new_velocity, ent->velocity); + +// Xatrix/Ridah, help Cast members's jump up to ledges + if ( ent->velocity[2] > 60 && !(ent->flags & FL_FLY) ) + ent->velocity[2] += (sv_gravity->value*FRAMETIME*0.5); +// Xatrix/Ridah, help grunt's jump up to ledges + } + else + { // go along the crease + if (numplanes != 2) + { +// gi.dprintf ("clip velocity, numplanes == %i\n",numplanes); + VectorCopy (vec3_origin, ent->velocity); + return 7; + } + CrossProduct (planes[0], planes[1], dir); + d = DotProduct (dir, ent->velocity); + VectorScale (dir, d, ent->velocity); + } + +// +// if original velocity is against the original velocity, stop dead +// to avoid tiny occilations in sloping corners +// + if (DotProduct (ent->velocity, primal_velocity) <= 0) + { +//gi.dprintf( "Clearing velocity for occilations for %s\n", ent->classname ); + VectorCopy (vec3_origin, ent->velocity); + return blocked; + } + } + +// Ridah, trying to fix jumping onto ledges problem in SR1 (for example) +// ent->velocity[0] = primal_velocity[0]; +// ent->velocity[1] = primal_velocity[1]; + + return blocked; +} + + +/* +============ +SV_AddGravity + +============ +*/ +void SV_AddGravity (edict_t *ent) +{ + ent->velocity[2] -= ent->gravity * sv_gravity->value * FRAMETIME; +} + +/* +=============================================================================== + +PUSHMOVE + +=============================================================================== +*/ + +/* +============ +SV_PushEntity + +Does not change the entities velocity at all +============ +*/ +trace_t SV_PushEntity (edict_t *ent, vec3_t push) +{ + trace_t trace; + vec3_t start; + vec3_t end; + int mask; + + VectorCopy (ent->s.origin, start); + VectorAdd (start, push, end); + +retry: + if (ent->clipmask) + mask = ent->clipmask; + else + mask = MASK_SOLID; + + trace = gi.trace (start, ent->mins, ent->maxs, end, ent, mask); + + VectorCopy (trace.endpos, ent->s.origin); + gi.linkentity (ent); + + if (trace.fraction != 1.0) + { + SV_Impact (ent, &trace); + + // if the pushed entity went away and the pusher is still there + if (!trace.ent->inuse && ent->inuse) + { + // move the pusher back and try again + VectorCopy (start, ent->s.origin); + gi.linkentity (ent); + goto retry; + } + } + + if (ent->inuse) + G_TouchTriggers (ent); + + return trace; +} + + +typedef struct +{ + edict_t *ent; + vec3_t origin; + vec3_t angles; + float deltayaw; +} pushed_t; +pushed_t pushed[MAX_EDICTS], *pushed_p; + +edict_t *obstacle; + +/* +============ +SV_Push + +Objects need to be moved back on a failed push, +otherwise riders would continue to slide. +============ +*/ +extern void door_blocked (edict_t *self, edict_t *other); + +qboolean SV_Push (edict_t *pusher, vec3_t move, vec3_t amove) +{ + int i, e; + edict_t *check, *block; + vec3_t mins, maxs; + pushed_t *p; + vec3_t org, org2, move2, forward, right, up; + + // clamp the move to 1/8 units, so the position will + // be accurate for client side prediction + for (i=0 ; i<3 ; i++) + { + float temp; + temp = move[i]*8.0; + if (temp > 0.0) + temp += 0.5; + else + temp -= 0.5; + move[i] = 0.125 * (int)temp; + } + + // find the bounding box + for (i=0 ; i<3 ; i++) + { + mins[i] = pusher->absmin[i] + move[i]; + maxs[i] = pusher->absmax[i] + move[i]; + } + +// we need this for pushing things later + VectorSubtract (vec3_origin, amove, org); + AngleVectors (org, forward, right, up); + +// save the pusher's original position + pushed_p->ent = pusher; + VectorCopy (pusher->s.origin, pushed_p->origin); + VectorCopy (pusher->s.angles, pushed_p->angles); + if (pusher->client) + pushed_p->deltayaw = pusher->client->ps.pmove.delta_angles[YAW]; + pushed_p++; + +// move the pusher to it's final position + VectorAdd (pusher->s.origin, move, pusher->s.origin); + VectorAdd (pusher->s.angles, amove, pusher->s.angles); + gi.linkentity (pusher); + +// see if any solid entities are inside the final position + check = g_edicts+1; + for (e = 1; e < globals.num_edicts; e++, check++) + { + if (!check->inuse) + continue; + if (check->movetype == MOVETYPE_PUSH + || check->movetype == MOVETYPE_STOP + || check->movetype == MOVETYPE_NONE + || check->movetype == MOVETYPE_NOCLIP) + continue; + + if (!check->area.prev) + continue; // not linked in anywhere + + // Ridah, dead monsters don't block door + if (check->svflags & SVF_MONSTER && check->health <= 0) + { + //gi.dprintf( "SV_Push todo: Gib blocking characters\n"); + continue; + } + + // Ridah, dead clients shouldn't block doors + if (check->client && (check->health <= 0 || !check->solid)) + continue; + + // if the entity is standing on the pusher, it will definitely be moved + if (check->groundentity != pusher) + { + // see if the ent needs to be tested + if ( check->absmin[0] >= maxs[0] + || check->absmin[1] >= maxs[1] + || check->absmin[2] >= maxs[2] + || check->absmax[0] <= mins[0] + || check->absmax[1] <= mins[1] + || check->absmax[2] <= mins[2] ) + continue; + + // see if the ent's bbox is inside the pusher's final position + if (!SV_TestEntityPosition (check)) + continue; + } + + // Ridah, doors don't push + if ((pusher->blocked == door_blocked) && !pusher->style && !(check->svflags & SVF_MONSTER)) + { + // move it back + VectorSubtract (pusher->s.origin, move, pusher->s.origin); + VectorSubtract (pusher->s.angles, amove, pusher->s.angles); + gi.linkentity (pusher); + + obstacle = check; + return false; + } + + if ((pusher->movetype == MOVETYPE_PUSH) || (check->groundentity == pusher)) + { + // move to a visible node + if ((check->svflags & SVF_MONSTER) && !check->goal_ent) + { + extern void AI_FreeAndClearGoalEnt( edict_t *self ); + node_t *node; + + if (node = NAV_GetClosestNode( check, VIS_PARTIAL, false, false )) + { + check->goal_ent = G_Spawn(); + check->goal_ent->owner = check; + + VectorCopy( node->origin, check->goal_ent->s.origin ); + + check->goal_ent->think = AI_FreeAndClearGoalEnt; + check->goal_ent->nextthink = level.time + 3; + check->goal_ent->dmg_radius = 0; // get real close to it + + if (check->cast_info.move_runwalk) + check->cast_info.currentmove = check->cast_info.move_runwalk; + else + check->cast_info.currentmove = check->cast_info.move_run; + + } + } + + // move this entity + pushed_p->ent = check; + VectorCopy (check->s.origin, pushed_p->origin); + VectorCopy (check->s.angles, pushed_p->angles); + pushed_p++; + + // try moving the contacted entity + VectorAdd (check->s.origin, move, check->s.origin); + if (check->client) + { // FIXME: doesn't rotate monsters? + check->client->ps.pmove.delta_angles[YAW] += amove[YAW]; + // JOSEPH 5-APR-99 + if (pusher->touch) + pusher->touch(pusher, check, 0, 0); + // END JOSEPH + } + + // figure movement due to the pusher's amove + VectorSubtract (check->s.origin, pusher->s.origin, org); + org2[0] = DotProduct (org, forward); + org2[1] = -DotProduct (org, right); + org2[2] = DotProduct (org, up); + VectorSubtract (org2, org, move2); + VectorAdd (check->s.origin, move2, check->s.origin); + + // may have pushed them off an edge + if (check->groundentity != pusher) + check->groundentity = NULL; + + block = SV_TestEntityPosition (check); + if (!block) + { // pushed ok + gi.linkentity (check); + // impact? + continue; + } + + // if it is ok to leave in the old position, do it + // this is only relevent for riding entities, not pushed + // FIXME: this doesn't acount for rotation + VectorSubtract (check->s.origin, move, check->s.origin); + block = SV_TestEntityPosition (check); + if (!block) + { + pushed_p--; + continue; + } + } + + // save off the obstacle so we can call the block function + obstacle = check; + + // move back any entities we already moved + // go backwards, so if the same entity was pushed + // twice, it goes back to the original position + for (p=pushed_p-1 ; p>=pushed ; p--) + { + VectorCopy (p->origin, p->ent->s.origin); + VectorCopy (p->angles, p->ent->s.angles); + if (p->ent->client) + { + p->ent->client->ps.pmove.delta_angles[YAW] = p->deltayaw; + } + gi.linkentity (p->ent); + } + return false; + } + +//FIXME: is there a better way to handle this? + // see if anything we moved has touched a trigger + for (p=pushed_p-1 ; p>=pushed ; p--) + G_TouchTriggers (p->ent); + + return true; +} + +/* +================ +SV_Physics_Pusher + +Bmodel objects don't interact with each other, but +push all box objects +================ +*/ +void SV_Physics_Pusher (edict_t *ent) +{ + vec3_t move, amove; + edict_t *part, *mv; + + // if not a team captain, so movement will be handled elsewhere + if ( ent->flags & FL_TEAMSLAVE) + return; + + // make sure all team slaves can move before commiting + // any moves or calling any think functions + // if the move is blocked, all moved objects will be backed out +//retry: + pushed_p = pushed; + for (part = ent ; part ; part=part->teamchain) + { + if (part->velocity[0] || part->velocity[1] || part->velocity[2] || + part->avelocity[0] || part->avelocity[1] || part->avelocity[2] + ) + { // object is moving + VectorScale (part->velocity, FRAMETIME, move); + VectorScale (part->avelocity, FRAMETIME, amove); + + // JOSEPH 5-APR-99 + if (!SV_Push (part, move, amove)) + break; // move was blocked + // END JOSEPH + } + } + if (pushed_p > &pushed[MAX_EDICTS]) + gi.error (ERR_FATAL, "pushed_p > &pushed[MAX_EDICTS], memory corrupted"); + + if (part) + { + // the move failed, bump all nextthink times and back out moves + for (mv = ent ; mv ; mv=mv->teamchain) + { + if (mv->nextthink > 0) + mv->nextthink += FRAMETIME; + } + + // if the pusher has a "blocked" function, call it + // otherwise, just stay in place until the obstacle is gone + if (part->blocked) + part->blocked (part, obstacle); +#if 0 + // if the pushed entity went away and the pusher is still there + if (!obstacle->inuse && part->inuse) + goto retry; +#endif + } + else + { + // the move succeeded, so call all think functions + for (part = ent ; part ; part=part->teamchain) + { + SV_RunThink (part); + } + } + + // JOSEPH 28-APR-99 + if (ent->classname) + { + if (!strcmp(ent->classname, "func_button")) + { + int i; + edict_t *e = NULL; + + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->classname) && (!strcmp(e->classname, "func_lift")) && + (e->target2) && (ent->target2) && (!strcmp(e->target2, ent->target2))) + { + ent->s.origin[2] = e->s.origin[2] + ent->handleflag; + } + } + } + else if (!strcmp(ent->classname, "func_lift")) + { + int i; + edict_t *e = NULL; + + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->classname) && (!strcmp(e->classname, "func_button")) && + (e->target2) && (ent->target2) && (!strcmp(e->target2, ent->target2))) + { + e->s.origin[2] = ent->s.origin[2] + e->handleflag; + } + } + } + } + // END JOSEPH +} + +//================================================================== + +/* +============= +SV_Physics_None + +Non moving objects can only think +============= +*/ +void SV_Physics_None (edict_t *ent) +{ +// regular thinking + SV_RunThink (ent); +} + +/* +============= +SV_Physics_Noclip + +A moving object that doesn't obey physics +============= +*/ +void SV_Physics_Noclip (edict_t *ent) +{ +// regular thinking + if (!SV_RunThink (ent)) + return; + + VectorMA (ent->s.angles, FRAMETIME, ent->avelocity, ent->s.angles); + VectorMA (ent->s.origin, FRAMETIME, ent->velocity, ent->s.origin); + + gi.linkentity (ent); +} + +/* +============================================================================== + +TOSS / BOUNCE + +============================================================================== +*/ + +// JOSEPH 24-AUG-98 +/* +============= +SV_Physics_Toss + +Toss, bounce, and fly movement. When onground, do nothing. +============= +*/ +void SV_Physics_Toss (edict_t *ent) +{ + trace_t trace; + vec3_t move; + float backoff; + edict_t *slave; + qboolean wasinwater; + qboolean isinwater; + vec3_t old_origin; + +// regular thinking + SV_RunThink (ent); + + // if not a team captain, so movement will be handled elsewhere + if ( ent->flags & FL_TEAMSLAVE) + return; + + if (ent->velocity[2] > 0) + ent->groundentity = NULL; + +// check for the groundentity going away + if (ent->groundentity) + if (!ent->groundentity->inuse) + ent->groundentity = NULL; +// if onground, return without moving + if ( ent->groundentity && ent->movetype != MOVETYPE_TOSS_SLIDE ) + { + // JOSEPH 7-OCT-98 + if (ent->fallerflag) + { + + // JOSEPH 22-JAN-99 + // If the object just hit the floor + if (ent->fallingflag) + { + ent->fallingflag = 0; + if (!strcmp(ent->classname, "props_trashcanA")) + { + gi.sound (ent, CHAN_AUTO, gi.soundindex ("world/trash2.wav"), 1, ATTN_NORM, 0); + } + else if (!strcmp(ent->classname, "props_crate")) + { + gi.sound (ent, CHAN_AUTO, gi.soundindex ("world/crate2.wav"), 1, ATTN_NORM, 0); + } + } + // END JOSEPH + + // Fix if sitting off center + ent->movetype = MOVETYPE_STEP; + think_checkedges(ent); + } + // END JOSEPH + return; + } + + VectorCopy (ent->s.origin, old_origin); + + SV_CheckVelocity (ent); + +// add gravity + if (ent->movetype != MOVETYPE_FLY + && ent->movetype != MOVETYPE_FLYMISSILE) + SV_AddGravity (ent); + +// move angles + VectorMA (ent->s.angles, FRAMETIME, ent->avelocity, ent->s.angles); + +// move origin + VectorScale (ent->velocity, FRAMETIME, move); + trace = SV_PushEntity (ent, move); + if (!ent->inuse) + return; + + if (trace.fraction < 1) + { + // RAFAEL + if (ent->movetype == MOVETYPE_WALLBOUNCE) + backoff = 2.0; + // RAFAEL ( else ) + else if (ent->movetype == MOVETYPE_BOUNCE) + backoff = 1.5; + // Ridah, testing + else if (ent->velocity[2] > -120) + backoff = 1; + else + backoff = 1.3; + + ClipVelocity (ent->velocity, trace.plane.normal, ent->velocity, backoff); + + // RAFAEL + if (ent->movetype == MOVETYPE_WALLBOUNCE) + vectoangles (ent->velocity, ent->s.angles); + + // stop if on ground + // RAFAEL + if (trace.plane.normal[2] > 0.7 && ent->movetype != MOVETYPE_WALLBOUNCE && ent->movetype != MOVETYPE_TOSS_SLIDE) // Ridah, testing + { + if (ent->velocity[2] < 60 || ent->movetype != MOVETYPE_BOUNCE ) + { + ent->groundentity = trace.ent; + ent->groundentity_linkcount = trace.ent->linkcount; + VectorCopy (vec3_origin, ent->velocity); + VectorCopy (vec3_origin, ent->avelocity); + } + } + + // Ridah, testing + if (trace.plane.normal[2] > 0.0 && ent->movetype == MOVETYPE_TOSS_SLIDE) // Ridah, testing + { + VectorMA( ent->velocity, -0.07, ent->velocity, ent->velocity ); // add some friction + ent->velocity[2] += ent->gravity * sv_gravity->value * FRAMETIME * trace.plane.normal[2]; + if (trace.fraction <= 0.1) + { + float oldpitch; + + oldpitch = ent->s.angles[PITCH]; + vectoangles (ent->velocity, ent->s.angles); + ent->s.angles[PITCH] = oldpitch; + + VectorCopy (vec3_origin, ent->avelocity); + ent->avelocity[PITCH] = -300 * VectorLength(ent->velocity)/800; // roll in direction we're going + + SV_Physics_Toss(ent); + return; + } + } + +// if (ent->touch) +// ent->touch (ent, trace.ent, &trace.plane, trace.surface); + } + + +// check for water transition + wasinwater = (ent->watertype & MASK_WATER); + ent->watertype = gi.pointcontents (ent->s.origin); + isinwater = ent->watertype & MASK_WATER; + + if (isinwater) + ent->waterlevel = 1; + else + ent->waterlevel = 0; + + // JOSEPH 13-MAY-99 + /*if (!wasinwater && isinwater) + gi.positioned_sound (old_origin, g_edicts, CHAN_AUTO, gi.soundindex("misc/h2ohit1.wav"), 1, 1, 0); + else if (wasinwater && !isinwater) + gi.positioned_sound (ent->s.origin, g_edicts, CHAN_AUTO, gi.soundindex("misc/h2ohit1.wav"), 1, 1, 0);*/ + // END JOSEPH + +// move teamslaves + for (slave = ent->teamchain; slave; slave = slave->teamchain) + { + VectorCopy (ent->s.origin, slave->s.origin); + gi.linkentity (slave); + } +} +// END JOSEPH + +/* +=============================================================================== + +STEPPING MOVEMENT + +=============================================================================== +*/ + +/* +============= +SV_Physics_Step + +Monsters freefall when they don't have a ground entity, otherwise +all movement is done with discrete steps. + +This is also used for objects that have become still on the ground, but +will fall if the floor is pulled out from under them. +FIXME: is this true? +============= +*/ + +//FIXME: hacked in for E3 demo +#define sv_stopspeed 100 +#define sv_friction 6 +#define sv_waterfriction 1 + +void SV_AddRotationalFriction (edict_t *ent) +{ + int n; + float adjustment; + + VectorMA (ent->s.angles, FRAMETIME, ent->avelocity, ent->s.angles); + adjustment = FRAMETIME * sv_stopspeed * sv_friction; + for (n = 0; n < 3; n++) + { + if (ent->avelocity[n] > 0) + { + ent->avelocity[n] -= adjustment; + if (ent->avelocity[n] < 0) + ent->avelocity[n] = 0; + } + else + { + ent->avelocity[n] += adjustment; + if (ent->avelocity[n] > 0) + ent->avelocity[n] = 0; + } + } +} + +// JOSEPH 24-AUG-98 + +void SV_Physics_Step (edict_t *ent) +{ + qboolean wasonground; + qboolean hitsound = false; + float *vel; + float speed, newspeed, control; + float friction; + edict_t *groundentity; + int mask; + int retval; + vec3_t oldpos; + + // BEGIN: Xatrix/Ridah + vec3_t old_vel; + // END: Xatrix/Ridah + + // Joseph + if (ent->fallerflag) + { + // Fix if sitting off center + think_checkedges(ent); + } + + // airborn monsters should always check for ground + if (!ent->groundentity) + M_CheckGround (ent); + + groundentity = ent->groundentity; + + SV_CheckVelocity (ent); + + if (groundentity) + wasonground = true; + else + wasonground = false; + + if (ent->avelocity[0] || ent->avelocity[1] || ent->avelocity[2]) + SV_AddRotationalFriction (ent); + + // add gravity except: + // flying monsters + // swimming monsters who are in the water + if (! wasonground) + if (!(ent->flags & FL_FLY)) + if (!((ent->flags & FL_SWIM) && (ent->waterlevel > 2))) + { + if (ent->velocity[2] < sv_gravity->value*-0.1) + hitsound = true; +// Ridah, 1-may-99, disabled this to prevent guys getting stuck in water +// if (ent->waterlevel == 0) + SV_AddGravity (ent); + } +/* + // friction for flying monsters that have been given vertical velocity + if ((ent->flags & FL_FLY) && (ent->velocity[2] != 0)) + { + speed = fabs(ent->velocity[2]); + control = speed < sv_stopspeed ? sv_stopspeed : speed; + friction = sv_friction/3; + newspeed = speed - (FRAMETIME * control * friction); + if (newspeed < 0) + newspeed = 0; + newspeed /= speed; + ent->velocity[2] *= newspeed; + } +*/ + // friction for flying monsters that have been given vertical velocity + if ((ent->flags & FL_SWIM) && (ent->velocity[2] != 0)) + { + speed = fabs(ent->velocity[2]); + control = speed < sv_stopspeed ? sv_stopspeed : speed; + newspeed = speed - (FRAMETIME * control * sv_waterfriction * ent->waterlevel); + if (newspeed < 0) + newspeed = 0; + newspeed /= speed; + ent->velocity[2] *= newspeed; + } + + if (ent->velocity[2] || ent->velocity[1] || ent->velocity[0]) + { + // apply friction + // let dead monsters who aren't completely onground slide + if ((wasonground) || (ent->flags & (FL_SWIM|FL_FLY))) + if (!(ent->health <= 0.0 && !M_CheckBottom(ent))) + { + vel = ent->velocity; + speed = sqrt(vel[0]*vel[0] +vel[1]*vel[1]); + if (speed) + { + friction = sv_friction; + + control = speed < sv_stopspeed ? sv_stopspeed : speed; + newspeed = speed - FRAMETIME*control*friction; + + if (newspeed < 0) + newspeed = 0; + newspeed /= speed; + + vel[0] *= newspeed; + vel[1] *= newspeed; + } + } + + // BEGIN: Xatrix/Ridah + // JOSEPH 26-APR-99 + if ((ent->svflags & SVF_MONSTER) || (ent->monsterprop)) + // END JOSEPH + { +// if (ent->cast_info.aiflags & AI_PLAYERCLIP) + mask = MASK_PLAYERSOLID | CONTENTS_MONSTERCLIP; +// else +// mask = MASK_MONSTERSOLID; + } + else + mask = MASK_SOLID; + + VectorCopy (ent->velocity, old_vel); + // END: Xatrix/Ridah + + VectorCopy (ent->s.origin, oldpos ); + + retval = SV_FlyMove (ent, FRAMETIME, mask); + +#if 0 // leave this here for now. + + // Ridah, HACK... sometimes they get stuck, we should debug this properly when we get the time + if (!ValidBoxAtLoc( ent->s.origin, ent->mins, ent->maxs, ent, MASK_SOLID )) + { // move back to old position and clear velocity + int iter=0; + + VectorCopy (oldpos, ent->s.origin); + VectorClear (ent->velocity); + + // find a good position + while (!ValidBoxAtLoc( ent->s.origin, ent->mins, ent->maxs, ent, MASK_SOLID )) + { + VectorAdd( ent->s.origin, tv((random()-0.5) * 64, (random()-0.5) * 64, (random()-0.5) * 64), ent->s.origin ); + + if (++iter > 10) + break; + } + +// if (iter <= 4) +// { // make sure they're on the ground +// M_droptofloor( ent ); +// } + + goto exit_vel_check; // get out of here? + } +#endif + + // BEGIN: Xatrix/Ridah + if (!ent->groundentity || (ent->flags & FL_FLY)) + { + node_t *land_node; + + // Ridah, prevent guys getting stuck trying to jump + if (VectorDistance( ent->s.origin, oldpos ) < 1 && !ent->groundentity && (ent->last_onground < (level.time - 2))) + { + ent->velocity[0] = crandom() * 300; + ent->velocity[1] = crandom() * 300; + + if (ent->velocity[2] < -200) + ent->velocity[2] = -200; + + ent->velocity[2] += random() * 350; + + ent->nav_data.goal_index = 0; + ent->last_onground = level.time; + } + + if (ent->velocity[2] > 80 && retval != 20) + { // while rising, maintain XY velocity + ent->velocity[0] = old_vel[0]; + ent->velocity[1] = old_vel[1]; + } + + // see if we've gone passed the landing position + if ( !(ent->flags & FL_FLY) + && (retval == -1) && (ent->nav_data.goal_index) + && (land_node = level.node_data->nodes[ent->nav_data.goal_index-1])) +// && (land_node->node_type & NODE_LANDING)) + { + vec3_t unit_vel, goal_dir, goal_vec; + float vel_scale, dist; + + VectorSubtract( land_node->origin, ent->s.origin, goal_vec ); + goal_vec[2] = 0; + dist = VectorNormalize2( goal_vec, goal_dir ); + + if (dist > 16) + { + + VectorCopy( ent->velocity, unit_vel ); + unit_vel[2] = 0; + vel_scale = VectorNormalize( unit_vel ); + + if (DotProduct( unit_vel, goal_dir ) < 0.8) + { // we've either gone passed, or need some correction + vec3_t new_pos; + float old_z; + + if (VectorLength( goal_vec ) < 40) + { + new_pos[0] = land_node->origin[0]; + new_pos[1] = land_node->origin[1]; + new_pos[2] = ent->s.origin[2]; + + if (ValidBoxAtLoc( new_pos, ent->mins, ent->maxs, ent, MASK_PLAYERSOLID | MASK_MONSTERSOLID )) + { // move there, it's safe, and clear velocity + VectorCopy( new_pos, ent->s.origin ); + ent->velocity[0] = ent->velocity[1] = 0; + + goto exit_vel_check; + } + } + + // we need to adjust our velocity + if (land_node->origin[2] < (ent->s.origin[2] - 64)) + { + old_z = ent->velocity[2]; + VectorScale( goal_dir, vel_scale, ent->velocity ); + ent->velocity[2] = old_z; + } + + } + + } + } + + if ( (ent->flags & FL_FLY) + && ((land_node = level.node_data->nodes[ent->nav_data.goal_index-1]) || ((ent->flags &= ~FL_FLY) && false)) + /*&& (land_node->node_type & NODE_LANDING)*/) + { // if climbing ladder, and we're reached the landing position, stop + + // Ridah, 8-jun-99, make sure dog's don't climb ladders + if (!ent->gender) + { + goto abort_climb; + } + + if (ent->s.origin[2] > land_node->origin[2]) + { +//gi.dprintf( "-> end of climb\n" ); +// VectorSubtract( land_node->origin, ent->s.origin, ent->velocity ); + AngleVectors( ent->s.angles, ent->velocity, NULL, NULL ); + ent->velocity[2] = 0; + VectorNormalize( ent->velocity ); + VectorScale( ent->velocity, 96, ent->velocity ); + + ent->velocity[2] = 200; + + ent->flags &= ~FL_FLY; + ent->nav_data.goal_index = 0; // look for a new node + ent->nav_data.cache_node = -1; + + if (ent->cast_info.move_end_climb) + ent->cast_info.currentmove = ent->cast_info.move_end_climb; + } + else + { + trace_t tr; + vec3_t end, goal_vec; + + VectorSubtract( land_node->origin, ent->s.origin, goal_vec ); + + ent->velocity[0] = goal_vec[0]; + ent->velocity[1] = goal_vec[1]; + ent->velocity[2] = 120; + + // if another character is above us, abort + VectorCopy( ent->s.origin, end ); + end[2] += 128; + tr = gi.trace( ent->s.origin, ent->mins, ent->maxs, end, ent, MASK_PLAYERSOLID | MASK_MONSTERSOLID ); + + if ((tr.fraction < 1) && (tr.ent->svflags & SVF_MONSTER)) + { + +abort_climb: + + AngleVectors( ent->s.angles, goal_vec, NULL, NULL ); + VectorScale( goal_vec, -64, ent->velocity ); + ent->flags &= ~FL_FLY; + ent->nav_data.goal_index = 0; + + if (ent->cast_info.move_end_climb) + { + ent->cast_info.currentmove = ent->cast_info.move_end_climb; + } + else if (ent->cast_info.move_jump) + { + ent->cast_info.currentmove = ent->cast_info.move_jump; + } + } + else if (ent->s.origin[2] > (land_node->origin[2] - 48)) + { // we're near the top, stopping climbing anim +//gi.dprintf( "near end of climb\n" ); + if (ent->cast_info.move_end_climb) + ent->cast_info.currentmove = ent->cast_info.move_end_climb; + + // add some forward momentum + AngleVectors( ent->s.angles, goal_vec, NULL, NULL ); + VectorMA( ent->velocity, 64, goal_vec, ent->velocity ); + } + + } + + } + } + +exit_vel_check: + + // END: Xatrix/Ridah + + gi.linkentity (ent); + G_TouchTriggers (ent); + +// Note to Ryan: we can't use this because we are playing specific sounds elsewhere +/* + if (ent->groundentity) + if (!wasonground) + if (hitsound) + // BEGIN: Xatrix/Ridah/Navigator/03-apr-1998 + if (!(ent->cast_info.move_run)) + // END: Xatrix/Ridah/Navigator/03-apr-1998 + gi.sound (ent, 0, gi.soundindex("world/land.wav"), 1, 1, 0); +*/ + } + +// regular thinking + SV_RunThink (ent); +} + +// END JOSEPH + +//============================================================================ +/* +================ +G_RunEntity + +================ +*/ +void G_RunEntity (edict_t *ent) +{ + if (ent->prethink) + ent->prethink (ent); + + switch ( (int)ent->movetype) + { + case MOVETYPE_PUSH: + case MOVETYPE_STOP: + SV_Physics_Pusher (ent); + break; + case MOVETYPE_NONE: + SV_Physics_None (ent); + break; + case MOVETYPE_NOCLIP: + SV_Physics_Noclip (ent); + break; + case MOVETYPE_STEP: + SV_Physics_Step (ent); + break; + case MOVETYPE_TOSS: + case MOVETYPE_BOUNCE: + case MOVETYPE_FLY: + case MOVETYPE_FLYMISSILE: + case MOVETYPE_WALLBOUNCE: + case MOVETYPE_TOSS_SLIDE: + SV_Physics_Toss (ent); + break; + default: + gi.error ("SV_Physics: bad movetype %i", (int)ent->movetype); + } +} diff --git a/gamesrc/G_SVCMDS.C b/gamesrc/G_SVCMDS.C new file mode 100644 index 0000000..8c26924 --- /dev/null +++ b/gamesrc/G_SVCMDS.C @@ -0,0 +1,281 @@ + +#include "g_local.h" + + +void Svcmd_Test_f (void) +{ + gi.cprintf (NULL, PRINT_HIGH, "Svcmd_Test_f()\n"); +} + +/* +============================================================================== + +PACKET FILTERING + + +You can add or remove addresses from the filter list with: + +addip +removeip + +The ip address is specified in dot format, and any unspecified digits will match any value, so you can specify an entire class C network with "addip 192.246.40". + +Removeip will only remove an address specified exactly the same way. You cannot addip a subnet, then removeip a single host. + +listip +Prints the current list of filters. + +writeip +Dumps "addip " commands to listip.cfg so it can be execed at a later date. The filter lists are not saved and restored by default, because I beleive it would cause too much confusion. + +filterban <0 or 1> + +If 1 (the default), then ip addresses matching the current list will be prohibited from entering the game. This is the default setting. + +If 0, then only addresses matching the list will be allowed. This lets you easily set up a private game, or a game that only allows players from your local network. + + +============================================================================== +*/ + +typedef struct +{ + unsigned mask; + unsigned compare; +} ipfilter_t; + +#define MAX_IPFILTERS 1024 + +ipfilter_t ipfilters[MAX_IPFILTERS]; +int numipfilters; + +/* +================= +StringToFilter +================= +*/ +static qboolean StringToFilter (char *s, ipfilter_t *f) +{ + char num[128]; + int i, j; + byte b[4]; + byte m[4]; + + for (i=0 ; i<4 ; i++) + { + b[i] = 0; + m[i] = 0; + } + + for (i=0 ; i<4 ; i++) + { + if (*s < '0' || *s > '9') + { + gi.cprintf(NULL, PRINT_HIGH, "Bad filter address: %s\n", s); + return false; + } + + j = 0; + while (*s >= '0' && *s <= '9') + { + num[j++] = *s++; + } + num[j] = 0; + b[i] = atoi(num); + if (b[i] != 0) + m[i] = 255; + + if (!*s) + break; + s++; + } + + f->mask = *(unsigned *)m; + f->compare = *(unsigned *)b; + + return true; +} + +/* +================= +SV_FilterPacket +================= +*/ +qboolean SV_FilterPacket (char *from) +{ + int i; + unsigned in; + byte m[4]; + char *p; + + i = 0; + p = from; + while (*p && i < 4) { + m[i] = 0; + while (*p >= '0' && *p <= '9') { + m[i] = m[i]*10 + (*p - '0'); + p++; + } + if (!*p || *p == ':') + break; + i++, p++; + } + + in = *(unsigned *)m; + + for (i=0 ; ivalue; + + return (int)!filterban->value; +} + + +/* +================= +SV_AddIP_f +================= +*/ +void SVCmd_AddIP_f (void) +{ + int i; + + if (gi.argc() < 3) { + gi.cprintf(NULL, PRINT_HIGH, "Usage: addip \n"); + return; + } + + for (i=0 ; i\n"); + return; + } + + if (!StringToFilter (gi.argv(2), &f)) + return; + + for (i=0 ; istring) + sprintf (name, "%s/listip.cfg", GAMEVERSION); + else + sprintf (name, "%s/listip.cfg", game->string); + + gi.cprintf (NULL, PRINT_HIGH, "Writing %s.\n", name); + + f = fopen (name, "wb"); + if (!f) + { + gi.cprintf (NULL, PRINT_HIGH, "Couldn't open %s\n", name); + return; + } + + fprintf(f, "set filterban %d\n", (int)filterban->value); + + for (i=0 ; istyle); + gi.WritePosition (ent->s.origin); + gi.multicast (ent->s.origin, MULTICAST_PVS); +} + +void SP_target_temp_entity (edict_t *ent) +{ + ent->use = Use_Target_Tent; +} + + +//========================================================== + +//========================================================== + +/*QUAKED target_speaker (1 0 0) (-8 -8 -8) (8 8 8) looped-on looped-off reliable +"noise" wav file to play +"attenuation" +-1 = none, send to whole level +1 = normal fighting sounds +2 = idle sound level +3 = ambient sound level +"volume" 0.0 to 1.0 + +Normal sounds play each time the target is used. The reliable flag can be set for crucial voiceovers. + +Looped sounds are always atten 3 / vol 1, and the use function toggles it on/off. +Multiple identical looping sounds will just increase volume without any speed cost. +*/ +void Use_Target_Speaker (edict_t *ent, edict_t *other, edict_t *activator) +{ + int chan; + + if (ent->spawnflags & 3) + { // looping sound toggles + if (ent->s.sound) + ent->s.sound = 0; // turn it off + else + ent->s.sound = ent->noise_index; // start it + } + else + { // normal sound + if (ent->spawnflags & 4) + chan = CHAN_VOICE|CHAN_RELIABLE; + else + chan = CHAN_VOICE; + // use a positioned_sound, because this entity won't normally be + // sent to any clients because it is invisible + gi.positioned_sound (ent->s.origin, ent, chan, ent->noise_index, ent->volume, ent->attenuation, 0); + } +} + +void SP_target_speaker (edict_t *ent) +{ + char buffer[MAX_QPATH]; + + if(!st.noise) + { + gi.dprintf("target_speaker with no noise set at %s\n", vtos(ent->s.origin)); + return; + } + if (!strstr (st.noise, ".wav")) + Com_sprintf (buffer, sizeof(buffer), "%s.wav", st.noise); + else + strncpy (buffer, st.noise, sizeof(buffer)); + ent->noise_index = gi.soundindex (buffer); + + if (!ent->volume) + ent->volume = 1.0; + + if (!ent->attenuation) + ent->attenuation = 1.0; + else if (ent->attenuation == -1) // use -1 so 0 defaults to 1 + ent->attenuation = 0; + + // check for prestarted looping sound + if (ent->spawnflags & 1) + ent->s.sound = ent->noise_index; + + ent->use = Use_Target_Speaker; + + // must link the entity so we get areas and clusters so + // the server can determine who to send updates to + gi.linkentity (ent); +} + + +//========================================================== + +#if 0 +void Use_Target_Help (edict_t *ent, edict_t *other, edict_t *activator) +{ + if (ent->spawnflags & 1) + strncpy (game.helpmessage1, ent->message, sizeof(game.helpmessage2)-1); + else + strncpy (game.helpmessage2, ent->message, sizeof(game.helpmessage1)-1); + + game.helpchanged++; +} + +/*QUAKED target_help (1 0 1) (-16 -16 -24) (16 16 24) help1 +When fired, the "message" key becomes the current personal computer string, and the message light will be set on all clients status bars. +*/ +void SP_target_help(edict_t *ent) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (ent); + return; + } + + if (!ent->message) + { + gi.dprintf ("%s with no message at %s\n", ent->classname, vtos(ent->s.origin)); + G_FreeEdict (ent); + return; + } + ent->use = Use_Target_Help; +} +#endif + +//========================================================== + +/*QUAKED target_secret (1 0 1) (-8 -8 -8) (8 8 8) +Counts a secret found. +These are single use targets. +*/ +void use_target_secret (edict_t *ent, edict_t *other, edict_t *activator) +{ + gi.sound (ent, CHAN_VOICE, ent->noise_index, 1, ATTN_NORM, 0); + + level.found_secrets++; + + G_UseTargets (ent, activator); + G_FreeEdict (ent); +} + +void SP_target_secret (edict_t *ent) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (ent); + return; + } + + ent->use = use_target_secret; + if (!st.noise) + st.noise = "misc/secret.wav"; + ent->noise_index = gi.soundindex (st.noise); + ent->svflags = SVF_NOCLIENT; + level.total_secrets++; + // map bug hack + if (!stricmp(level.mapname, "mine3") && ent->s.origin[0] == 280 && ent->s.origin[1] == -2048 && ent->s.origin[2] == -624) + ent->message = "You have found a secret area."; +} + +//========================================================== + +/*QUAKED target_goal (1 0 1) (-8 -8 -8) (8 8 8) +Counts a goal completed. +These are single use targets. +*/ +void use_target_goal (edict_t *ent, edict_t *other, edict_t *activator) +{ + gi.sound (ent, CHAN_VOICE, ent->noise_index, 1, ATTN_NORM, 0); + + level.found_goals++; + + if (level.found_goals == level.total_goals) + gi.configstring (CS_CDTRACK, "0"); + + G_UseTargets (ent, activator); + G_FreeEdict (ent); +} + +void SP_target_goal (edict_t *ent) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (ent); + return; + } + + ent->use = use_target_goal; + if (!st.noise) + st.noise = "misc/secret.wav"; + ent->noise_index = gi.soundindex (st.noise); + ent->svflags = SVF_NOCLIENT; + level.total_goals++; +} + +//========================================================== + +// JOSEPH 23-FEB-99 +/*QUAKED target_explosion (1 0 0) (-8 -8 -8) (8 8 8) +Spawns an explosion temporary entity when used. + +"delay" wait this long before going off +"dmg" how much radius damage should be done, defaults to 0 +"fxdensity" size of explosion 1 - 100 (default is 10) +*/ +void target_explosion_explode (edict_t *self) +{ + float save; + vec3_t vec; + + VectorClear(vec); + vec[2] = 1; + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_EXPLOSION1B); + gi.WritePosition (self->s.origin); + gi.WriteDir( vec ); + gi.WriteByte( (int)(self->dmg / 2) ); + gi.WriteByte (self->fxdensity); + gi.multicast (self->s.origin, MULTICAST_PVS); + + { + edict_t *breakit; + + breakit = G_Spawn(); + + if (breakit) + { + VectorCopy (self->s.origin, breakit->s.origin); + gi.linkentity(breakit); + gi.sound (breakit, CHAN_VOICE, gi.soundindex("world/explosion1.wav"), 1, ATTN_NORM, 0); + breakit->think = G_FreeEdict; + breakit->nextthink = level.time + 5.0; + } + } + + T_RadiusDamage (self, self->activator, self->dmg, NULL, self->dmg+40, MOD_EXPLOSIVE); + + save = self->delay; + self->delay = 0; + G_UseTargets (self, self->activator); + self->delay = save; +} +// END JOSEPH + +void use_target_explosion (edict_t *self, edict_t *other, edict_t *activator) +{ + self->activator = activator; + + if (!self->delay) + { + target_explosion_explode (self); + return; + } + + self->think = target_explosion_explode; + self->nextthink = level.time + self->delay; +} + +void SP_target_explosion (edict_t *ent) +{ + ent->use = use_target_explosion; + ent->svflags = SVF_NOCLIENT; +} + +// JOSEPH 22-APR-99 +/*QUAKED target_flamethrower (1 0 0) (-8 -8 -8) (8 8 8) +Shoots flame when triggered on, does not when triggered off. + +"dmg" damage the flame does per frame (default 2) +"fxdensity 1" starts flame on +"deadticks" angle adjustment up and down -90 to +90 (deafult 0) +*/ +// END JOSEPH + +// copied from CL_FlameEffects() +#define FLAME_SPEED 100.0 // increase to make it longer +#define FLAME_LIFETIME 0.3 + +static vec3_t jmins = {-16, -16, 0}; +static vec3_t jmaxs = { 16, 16, 24}; + +void FlameJunc_think__target_flamethrower( edict_t *self ) +{ + vec3_t oldorg; + trace_t tr; + + VectorCopy( self->s.origin, oldorg ); + + // move it + VectorMA( self->s.origin, FRAMETIME, self->velocity, self->s.origin ); + + tr = gi.trace( oldorg, jmins, jmaxs, self->s.origin, NULL, MASK_SOLID ); + + if (tr.fraction < 1) + { // copied from ClipVelocity() + #define STOP_EPSILON 0.1 + + float backoff; + float change; + int i; + + // go through alpha surfaces + if (tr.contents & MASK_ALPHA) + { + vec3_t start, unitvel; + float maxdist, dist; + + if (tr.startsolid) + maxdist = VectorLength( self->velocity ) * FRAMETIME; + else + maxdist = VectorLength( self->velocity ) * (1 - tr.fraction) * FRAMETIME; + + VectorNormalize2( self->velocity, unitvel ); + + VectorCopy( tr.endpos, start ); + dist = 4; + VectorMA( start, dist, unitvel, start ); + tr.startsolid = 1; // to get us started + + while ((dist < maxdist) && tr.startsolid && (tr.contents & MASK_ALPHA)) + { + tr = gi.trace ( start, jmins, jmaxs, self->s.origin, NULL, MASK_SOLID ); + + dist += 4; + VectorMA( start, 4, unitvel, start ); + } + + if (dist >= maxdist || tr.fraction == 1) + { + tr.fraction = 1; + goto skip_clip; + } + } + + backoff = DotProduct (self->velocity, tr.plane.normal) * 1.5; //slide + + for (i=0 ; i<3 ; i++) + { + change = tr.plane.normal[i]*backoff; + self->velocity[i] = self->velocity[i] - change; + if (self->velocity[i] > -STOP_EPSILON && self->velocity[i] < STOP_EPSILON) + self->velocity[i] = 0; + } + + VectorCopy( tr.endpos, self->s.origin ); + VectorMA( self->s.origin, 4, tr.plane.normal, self->s.origin ); + VectorNormalize2( self->velocity, self->last_step_pos ); + + if (!self->acc) + { + // slow it down + VectorScale( self->velocity, 0.5, self->velocity ); + } + + self->acc = true; + + if (strstr(tr.surface->name, "wood")) // spawn some smoke + { + static vec3_t last_pos; + static float last_time; + vec3_t sm_pos; + + // so we don't spawn too many sprites over each other + if (last_time > (level.time - 0.5)) + { + if (VectorDistance( last_pos, tr.endpos ) < 32) + goto skip_smoke; + } + + last_time = level.time; + VectorCopy( tr.endpos, last_pos ); + + VectorMA( tr.endpos, 16, tr.plane.normal, sm_pos ); + sm_pos[2] -= 12; + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SFXSMOKE); + gi.WritePosition (sm_pos); + gi.WriteByte (48); + gi.WriteByte (0); + gi.multicast (tr.endpos, MULTICAST_PVS); + } + +skip_smoke:; + + } + +skip_clip: + + //NAV_DrawLine( self->s.old_origin, self->s.origin ); + + // Now do the damage + T_RadiusDamage_Fire( self, self->owner, self->dmg, NULL, 128); + self->biketime = level.time; + + if (self->timestamp <= level.time) + { + G_FreeEdict( self ); + return; + } + + self->nextthink = level.time + 0.1; +} + +// JOSEPH 22-MAY-99 +void fire_target_flamethrower (edict_t *self, vec3_t start, vec3_t forward, int damage, int kick, int mod) +{ + trace_t tr; + vec3_t end, xforward, xright, xup, dir; + vec3_t oldorg; + edict_t *junc; + + static vec3_t mins = {-2, -2, -4}; + static vec3_t maxs = { 2, 2, 4}; + + vectoangles (forward, dir); + AngleVectors (dir, xforward, xright, xup); + VectorMA ( start, (FLAME_SPEED*FLAME_LIFETIME), xforward, end ); + + tr = gi.trace (start, mins, maxs, end, self, MASK_SOLID); + + // Spawn a junction + junc = G_Spawn(); + + if (self->svflags & SVF_MONSTER) + VectorCopy(start, junc->s.origin); + else + VectorCopy(self->s.origin, junc->s.origin); + + VectorScale( forward, FLAME_SPEED, junc->velocity ); + VectorCopy( forward, junc->last_step_pos ); // last_step_pos is unit vel + + // move it to the fadein position + VectorCopy( junc->s.origin, oldorg ); + VectorMA( junc->s.origin, 1, junc->velocity, junc->s.origin ); + + // trace the spawning location + tr = gi.trace ( oldorg, jmins, jmaxs, junc->s.origin, self, MASK_SOLID ); + + VectorCopy( tr.endpos, junc->s.origin ); + + junc->acc = 0; // hit wall flag + junc->biketime = 0; + junc->owner = self; + VectorCopy( junc->s.origin, junc->s.old_origin ); + + junc->timestamp = level.time + FLAME_LIFETIME; + + junc->think = FlameJunc_think__target_flamethrower; + junc->dmg = damage; + junc->nextthink = level.time + 0.1; +} + +void target_flamethrower (edict_t *self) +{ + if (self->fxdensity) + { + vec3_t forward; + + AngleVectors (self->s.angles, forward, NULL, NULL); + fire_target_flamethrower(self, self->s.origin, forward, self->dmg, 0, MOD_FLAMETHROWER); + + self->s.renderfx2 = RF2_FLAMESHOOTER; + self->s.renderfx2 |= RF2_FLAMESHOOTER_MOD; + + self->healspeed++; + + if (self->healspeed > 2) + self->healspeed = 0; + + if (self->healspeed == 1) + gi.sound(self, CHAN_AUTO, gi.soundindex("weapons/flame_thrower/flame2.wav"), 1, ATTN_NORM, 0); + else if (self->healspeed == 2) + gi.sound(self, CHAN_AUTO, gi.soundindex("weapons/flame_thrower/flame3.wav"), 1, ATTN_NORM, 0); + else + gi.sound(self, CHAN_AUTO, gi.soundindex("weapons/flame_thrower/flame1.wav"), 1, ATTN_NORM, 0); + + self->think = target_flamethrower; + self->nextthink = level.time + FRAMETIME; + } +} + +void use_target_flamethrower (edict_t *self, edict_t *other, edict_t *activator) +{ + self->activator = activator; + + if (!self->fxdensity) + { + self->fxdensity = 1; + target_flamethrower(self); + } + else + { + self->s.renderfx2 = 0; + self->fxdensity = 0; + } +} +// END JOSEPH + +// JOSEPH 11-MAY-99 +void SP_target_flamethrower (edict_t *ent) +{ + ent->use = use_target_flamethrower; + + ent->s.modelindex = gi.modelindex("models/weapons/sshell_md2/tris.md2"); + + ent->s.renderfx |= RF_BEAM; + + gi.linkentity (ent); + + if (!ent->dmg) + ent->dmg = 2; + + ent->s.angles[0] = ent->deadticks; + + if (ent->fxdensity) + { + ent->think = target_flamethrower; + ent->nextthink = level.time + (FRAMETIME*2); + } +} +// END JOSEPH + +// JOSEPH 19-APR-99 +/*QUAKED target_fire (1 0 0) (-8 -8 -8) (8 8 8) + +Spawns a fire. + +"fxdensity" size of fire 1 - 100 (default is 10) +"deadticks" random fire sections per frame (deafult 3) +"duration " seconds fire lasts (default 5.0) (-1 keeps on going and going) +"dmg" damage per second (default = fxdensity) +"reactdelay" fire spread factor 0.0 - 10.0 (default 1.0) +*/ +// END JOSEPH + +// JOSEPH 21-APR-99 +void t_hurt_fire (edict_t *self) +{ + if (self->timestamp > level.time) + return; + + self->timestamp = level.time + 1; + + T_RadiusDamage_Fire (self, self, self->dmg, NULL, self->firetype); + //T_RadiusDamage (self, self, self->dmg, NULL, self->firetype, MOD_LAVA); +} +// END JOSEPH + +void t_fire_think( edict_t *ent) +{ + int i; + + ent->nextthink = level.time + 0.1; + ent->lastduration += 0.1; + + for (i = 0; i < ent->deadticks; i++) + { + vec3_t neworigin; + + VectorCopy(ent->s.origin, neworigin); + neworigin[0] += ent->reactdelay * ((rand()&3) * ((0.20*ent->firetype)-(0.10*ent->firetype))); + neworigin[1] += ent->reactdelay * ((rand()&3) * ((0.20*ent->firetype)-(0.10*ent->firetype))); + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SFXFIRET); + gi.WritePosition (neworigin); + gi.WriteByte (ent->firetype); + gi.WriteByte (ent->alphalevel); + gi.multicast (neworigin, MULTICAST_PVS); + } + + // JOSEPH 16-APR-99 + if (ent->dmg) + t_hurt_fire(ent); + // END JOSEPH + + // JOSEPH 19-APR-99 + if ((ent->duration != -1.0) && (ent->lastduration >= ent->duration)) + G_FreeEdict(ent); + // END JOSEPH +} + +// JOSEPH 4-MAY-99 +void t_start_fire (edict_t *ent, edict_t *other, edict_t *activator) +{ + if (ent->nextthink) + { + ent->think = NULL; + ent->nextthink = 0; + } + else + { + if (!ent->fxdensity) + ent->fxdensity = 10; + if (!ent->deadticks) + ent->deadticks = 3; + ent->alphalevel = 5; + VectorSet (ent->movedir, 0.0, 1, 0.0); + ent->firetype = ent->fxdensity; + ent->lastduration = 0; + if (!ent->duration) + ent->duration = 5.0; + if (!ent->dmg) + ent->dmg = ent->fxdensity; + if (!ent->reactdelay) + ent->reactdelay = 1.0; + ent->s.origin[2] += ((float)ent->fxdensity) * 0.6; + gi.linkentity (ent); + ent->think = t_fire_think; + ent->nextthink = level.time + 0.1; + AddLightSource(ent); + G_UseTargets (ent, ent->activator); + } +} + +void SP_target_fire (edict_t *self) +{ + if (self->targetname) + { + self->use = t_start_fire; + } + + t_start_fire(self, NULL, NULL); +} +// END JOSEPH + +//========================================================== + +/*QUAKED target_changelevel (1 0 0) (-8 -8 -8) (8 8 8) +Changes level to "map" when fired +*/ + +extern qboolean changing_levels; + +// Ridah 5-8-99 +extern char last_changelevel[]; + +void use_target_changelevel (edict_t *self, edict_t *other, edict_t *activator) +{ + int i, j, k; + edict_t *e; + + if (level.intermissiontime) + return; // already activated + + if (!deathmatch->value && !coop->value) + { + if (g_edicts[1].health <= 0) + return; + } + + // if noexit, do a ton of damage to other + if (deathmatch->value && !( (int)dmflags->value & DF_ALLOW_EXIT) && other != world) + { + T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, 10 * other->max_health, 1000, 0, MOD_EXIT); + return; + } + + // if multiplayer, let everyone know who hit the exit + if (deathmatch->value) + { + if (activator && activator->client) + gi.bprintf (PRINT_HIGH, "%s exited the level.\n", activator->client->pers.netname); + } + + // if going to a new unit, clear cross triggers + if (strstr(self->map, "*")) + game.serverflags &= ~(SFL_CROSS_TRIGGER_MASK); + + // Ridah, 5-8-99, save this mapname for "pawn_" checking + strcpy( last_changelevel, level.mapname ); + + // Ridah, copy the episode_flags over + if (activator->client) + { + activator->client->pers.episode_flags |= activator->episode_flags; + } + else // something has gone very wrong + { + { + edict_t *player; + + player = &g_edicts[1]; + + activator = player; + activator->client->pers.episode_flags |= activator->episode_flags; + } + } + +if (!deathmatch->value) +{ + + // Ridah, save any followers temporarily so we can carry them through to the next level + changing_levels = true; + + // Ridah, 7-5-99, prevent friendly's following into pawn-o-matic + if (strstr( self->map, "pawn" ) != self->map) + { + for (i=0; iclient || e->health <= 0) + continue; + + if (!e->leader) + continue; + + if (e->leader != activator) + continue; + + if (VectorDistance( e->s.origin, activator->s.origin ) > 512) + continue; + + // mark them as followers + e->flags |= FL_FOLLOWING; + + // save this dude + strcpy( followers[num_followers].classname, e->classname ); + if (e->name) + strcpy( followers[num_followers].name, e->name ); + else + memset( followers[num_followers].name, 0, sizeof(followers[num_followers].name) ); + + if (e->art_skins) + strcpy( followers[num_followers].art_skins, e->art_skins ); + else + memset( followers[num_followers].art_skins, 0, sizeof(followers[num_followers].art_skins) ); + + followers[num_followers].health = e->health; + followers[num_followers].max_health = e->max_health; + followers[num_followers].head = e->head; + followers[num_followers].scale = e->cast_info.scale; + followers[num_followers].spawnflags = e->spawnflags; + followers[num_followers].count = e->count; // for the Runt + + for (j=0; js.num_parts; j++) + { + for (k=0; ks.model_parts[j].skinnum[k]) - e->s.model_parts[j].baseskin; + } + } + + num_followers++; + + if (num_followers > MAX_FOLLOWERS) + break; + } + } + +} + + BeginIntermission (self); +} + +void SP_target_changelevel (edict_t *ent) +{ + if (!ent->map) + { + gi.dprintf("target_changelevel with no map at %s\n", vtos(ent->s.origin)); + G_FreeEdict (ent); + return; + } + + // ugly hack because *SOMEBODY* screwed up their map +// if((stricmp(level.mapname, "fact1") == 0) && (stricmp(ent->map, "fact3") == 0)) +// ent->map = "fact3$secret1"; + + ent->use = use_target_changelevel; + ent->svflags = SVF_NOCLIENT; +} + + +//========================================================== + +// JOSEPH 7-MAR-99 +/*QUAKED target_splash (1 0 0) (-8 -8 -8) (8 8 8) +Creates a particle splash effect when used. + +Set "sounds" to one of the following: + 1) sparks + 2) blue water + 3) brown water + 4) slime + 5) lava + 6) blood + 7) fireworks + 8) smoke + +FOR SMOKE + "alphalevel" 1 - 10 (default 4) + "firetype" smoke size (5 - 32) 5 = extra small + 10 = small 24 = med 32 = large (default 24) + "deadticks" life in seconds 1 - 60 (default 6) + "fxdensity" speed of rising smoke 1 - 100 (default 24) + "count" puffs of smoke 1 - 10; (default 3) + "rotate" X Y Z velocity to project smoke (up is default) +END SMOKE +"count" how many pixels in the splash +"dmg" if set, does a radius damage at this location when it splashes + useful for lava/sparks +*/ + +void use_target_splash (edict_t *self, edict_t *other, edict_t *activator) +{ + if (self->sounds == 8) + { + int i; + vec3_t vec; + vec3_t origin; + + VectorClear(vec); + vec[2] = 1; + + if (!self->firetype) + self->firetype = 24; + else + { + if (self->firetype < 5) + self->firetype = 5; + + if (self->firetype > 32) + self->firetype = 32; + } + + if (!self->deadticks) + self->deadticks = 6; + else + { + if (self->deadticks < 1) + self->deadticks = 1; + + if (self->deadticks > 60) + self->deadticks = 60; + } + + if (!self->fxdensity) + self->fxdensity = 24; + else + { + if (self->fxdensity < 1) + self->fxdensity = 1; + + if (self->fxdensity > 100) + self->fxdensity = 100; + } + + if (!self->count) + self->count = 3; + else + { + if (self->count < 1) + self->count = 1; + + if (self->count > 10) + self->count = 10; + } + + for (i=0; i < self->count; i++) + { + VectorCopy(self->s.origin, origin); + + if ((!self->rotate[0]) && (!self->rotate[1]) && (!self->rotate[2])) + { + origin[0] += (rand()&15)-8; + origin[1] += (rand()&15)-8; + origin[2] += (rand()&7)-4; + } + else + { + origin[0] += (rand()&7)-4; + origin[1] += (rand()&7)-4; + origin[2] += (rand()&7)-4; + } + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SFXSMOKE2); + gi.WritePosition (origin); + gi.WritePosition (self->rotate); + gi.WriteByte (self->firetype); + gi.WriteByte (self->deadticks); + gi.WriteByte (self->fxdensity); + if (self->alphalevel) + { + gi.WriteByte (self->alphalevel); + } + else + { + gi.WriteByte (0); + } + gi.multicast (self->s.origin, MULTICAST_PVS); + } + } + else if (self->sounds == 7) + { + vec3_t vec; + + VectorClear(vec); + vec[2] = 1; + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_EXPLOSION1C); + gi.WritePosition (self->s.origin); + gi.WriteDir( vec ); + gi.WriteByte( (int)(self->count) ); + gi.WriteByte (self->fxdensity); + gi.multicast (self->s.origin, MULTICAST_PVS); + } + else + { + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SPLASH); + gi.WriteByte (self->count); + gi.WritePosition (self->s.origin); + gi.WriteDir (self->movedir); + gi.WriteByte (self->sounds); + gi.multicast (self->s.origin, MULTICAST_PVS); + } + + if (self->dmg) + T_RadiusDamage (self, activator, self->dmg, NULL, self->dmg+40, MOD_SPLASH); +} +// END JOSEPH + +void SP_target_splash (edict_t *self) +{ + self->use = use_target_splash; + G_SetMovedir (self->s.angles, self->movedir); + + if (!self->count) + self->count = 32; + + self->svflags = SVF_NOCLIENT; +} + + +//========================================================== + +/*QUAKED target_spawner (1 0 0) (-8 -8 -8) (8 8 8) 1 2 3 4 5 6 +Set target to the type of entity you want spawned. +Useful for spawning monsters and gibs in the factory levels. + +For monsters: + Set direction to the facing you want it to have. + +For gibs: + Set direction if you want it moving and + speed how fast it should be moving otherwise it + will just be dropped +*/ +void ED_CallSpawn (edict_t *ent); + +void use_target_spawner (edict_t *self, edict_t *other, edict_t *activator) +{ + edict_t *ent; + + ent = G_Spawn(); + ent->classname = self->target; + ent->flags = self->flags; + VectorCopy (self->s.origin, ent->s.origin); + VectorCopy (self->s.angles, ent->s.angles); + ED_CallSpawn (ent); + gi.unlinkentity (ent); + KillBox (ent); + gi.linkentity (ent); + if (self->speed) + VectorCopy (self->movedir, ent->velocity); +} + +void SP_target_spawner (edict_t *self) +{ + self->use = use_target_spawner; + self->svflags = SVF_NOCLIENT; + if (self->speed) + { + G_SetMovedir (self->s.angles, self->movedir); + VectorScale (self->movedir, self->speed, self->movedir); + } +} + +//========================================================== + +// JOSEPH 8-FEB-99 +/*UAKED target_blaster (1 0 0) (-8 -8 -8) (8 8 8) NOTRAIL NOEFFECTS +Fires a blaster bolt in the set direction when triggered. + +dmg default is 15 +speed default is 1000 +*/ + +void use_target_blaster (edict_t *self, edict_t *other, edict_t *activator) +{ + int effect; + + if (self->spawnflags & 2) + effect = 0; + else if (self->spawnflags & 1) + effect = EF_HYPERBLASTER; + else + effect = EF_BLASTER; + + fire_blaster (self, self->s.origin, self->movedir, self->dmg, self->speed, EF_BLASTER, MOD_TARGET_BLASTER); + gi.sound (self, CHAN_VOICE, self->noise_index, 1, ATTN_NORM, 0); +} + +void SP_target_blaster (edict_t *self) +{ + self->use = use_target_blaster; + G_SetMovedir (self->s.angles, self->movedir); + self->noise_index = gi.soundindex ("weapons/laser2.wav"); + + if (!self->dmg) + self->dmg = 15; + if (!self->speed) + self->speed = 1000; + + self->svflags = SVF_NOCLIENT; +} + + +//========================================================== + +/*QUAKED target_crosslevel_trigger (.5 .5 .5) (-8 -8 -8) (8 8 8) trigger1 trigger2 trigger3 trigger4 trigger5 trigger6 trigger7 trigger8 +Once this trigger is touched/used, any trigger_crosslevel_target with the same trigger number is automatically used when a level is started within the same unit. It is OK to check multiple triggers. Message, delay, target, and killtarget also work. +*/ +void trigger_crosslevel_trigger_use (edict_t *self, edict_t *other, edict_t *activator) +{ + game.serverflags |= self->spawnflags; + G_FreeEdict (self); +} + +void SP_target_crosslevel_trigger (edict_t *self) +{ + self->svflags = SVF_NOCLIENT; + self->use = trigger_crosslevel_trigger_use; +} + +/*QUAKED target_crosslevel_target (.5 .5 .5) (-8 -8 -8) (8 8 8) trigger1 trigger2 trigger3 trigger4 trigger5 trigger6 trigger7 trigger8 +Triggered by a trigger_crosslevel elsewhere within a unit. If multiple triggers are checked, all must be true. Delay, target and +killtarget also work. + +"delay" delay before using targets if the trigger has been activated (default 1) +*/ +void target_crosslevel_target_think (edict_t *self) +{ + if (self->spawnflags == (game.serverflags & SFL_CROSS_TRIGGER_MASK & self->spawnflags)) + { + G_UseTargets (self, self); + G_FreeEdict (self); + } +} + +void SP_target_crosslevel_target (edict_t *self) +{ + if (! self->delay) + self->delay = 1; + self->svflags = SVF_NOCLIENT; + + self->think = target_crosslevel_target_think; + self->nextthink = level.time + self->delay; +} + +//========================================================== + +// JOSEPH 8-FEB-99 +/*UAKED target_laser (0 .5 .8) (-8 -8 -8) (8 8 8) START_ON RED GREEN BLUE YELLOW ORANGE FAT +When triggered, fires a laser. You can either set a target +or a direction. +*/ + +void target_laser_think (edict_t *self) +{ + edict_t *ignore; + vec3_t start; + vec3_t end; + trace_t tr; + vec3_t point; + vec3_t last_movedir; + int count; + + if (self->spawnflags & 0x80000000) + count = 8; + else + count = 4; + + if (self->enemy) + { + VectorCopy (self->movedir, last_movedir); + VectorMA (self->enemy->absmin, 0.5, self->enemy->size, point); + VectorSubtract (point, self->s.origin, self->movedir); + VectorNormalize (self->movedir); + if (!VectorCompare(self->movedir, last_movedir)) + self->spawnflags |= 0x80000000; + } + + ignore = self; + VectorCopy (self->s.origin, start); + VectorMA (start, 2048, self->movedir, end); + while(1) + { + tr = gi.trace (start, NULL, NULL, end, ignore, CONTENTS_SOLID|CONTENTS_MONSTER|CONTENTS_DEADMONSTER); + + if (!tr.ent) + break; + + // hurt it if we can + if ((tr.ent->takedamage) && !(tr.ent->flags & FL_IMMUNE_LASER)) + T_Damage (tr.ent, self, self->activator, self->movedir, tr.endpos, vec3_origin, self->dmg, 1, DAMAGE_ENERGY, MOD_TARGET_LASER); + + // if we hit something that's not a monster or player or is immune to lasers, we're done + if (!(tr.ent->svflags & SVF_MONSTER) && (!tr.ent->client)) + { + if (self->spawnflags & 0x80000000) + { + self->spawnflags &= ~0x80000000; + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_LASER_SPARKS); + gi.WriteByte (count); + gi.WritePosition (tr.endpos); + gi.WriteDir (tr.plane.normal); + gi.WriteByte (self->s.skinnum); + gi.multicast (tr.endpos, MULTICAST_PVS); + } + break; + } + + ignore = tr.ent; + VectorCopy (tr.endpos, start); + } + + VectorCopy (tr.endpos, self->s.old_origin); + + self->nextthink = level.time + FRAMETIME; +} + +void target_laser_on (edict_t *self) +{ + if (!self->activator) + self->activator = self; + self->spawnflags |= 0x80000001; + self->svflags &= ~SVF_NOCLIENT; + target_laser_think (self); +} + +void target_laser_off (edict_t *self) +{ + self->spawnflags &= ~1; + self->svflags |= SVF_NOCLIENT; + self->nextthink = 0; +} + +void target_laser_use (edict_t *self, edict_t *other, edict_t *activator) +{ + self->activator = activator; + if (self->spawnflags & 1) + target_laser_off (self); + else + target_laser_on (self); +} + +void target_laser_start (edict_t *self) +{ + edict_t *ent; + + self->movetype = MOVETYPE_NONE; + self->solid = SOLID_NOT; + self->s.renderfx |= RF_BEAM|RF_TRANSLUCENT; + self->s.modelindex = 1; // must be non-zero + + // set the beam diameter + if (self->spawnflags & 64) + self->s.frame = 16; + else + self->s.frame = 4; + + // set the color + if (self->spawnflags & 2) + self->s.skinnum = 0xf2f2f0f0; + else if (self->spawnflags & 4) + self->s.skinnum = 0xd0d1d2d3; + else if (self->spawnflags & 8) + self->s.skinnum = 0xf3f3f1f1; + else if (self->spawnflags & 16) + self->s.skinnum = 0xdcdddedf; + else if (self->spawnflags & 32) + self->s.skinnum = 0xe0e1e2e3; + + if (!self->enemy) + { + if (self->target) + { + ent = G_Find (NULL, FOFS(targetname), self->target); + if (!ent) + gi.dprintf ("%s at %s: %s is a bad target\n", self->classname, vtos(self->s.origin), self->target); + self->enemy = ent; + } + else + { + G_SetMovedir (self->s.angles, self->movedir); + } + } + self->use = target_laser_use; + self->think = target_laser_think; + + if (!self->dmg) + self->dmg = 1; + + VectorSet (self->mins, -8, -8, -8); + VectorSet (self->maxs, 8, 8, 8); + gi.linkentity (self); + + if (self->spawnflags & 1) + target_laser_on (self); + else + target_laser_off (self); +} + +void SP_target_laser (edict_t *self) +{ + // let everything else get spawned before we start firing + self->think = target_laser_start; + self->nextthink = level.time + 1; +} + + +// JOSEPH 8-FEB-99 +/*UAKED target_mal_laser (1 0 0) (-4 -4 -4) (4 4 4) START_ON RED GREEN BLUE YELLOW ORANGE FAT +Mal's laser +*/ +void target_mal_laser_on (edict_t *self) +{ + if (!self->activator) + self->activator = self; + self->spawnflags |= 0x80000001; + self->svflags &= ~SVF_NOCLIENT; + // target_laser_think (self); + self->nextthink = level.time + self->wait + self->delay; +} + +void target_mal_laser_off (edict_t *self) +{ + self->spawnflags &= ~1; + self->svflags |= SVF_NOCLIENT; + self->nextthink = 0; +} + +void target_mal_laser_use (edict_t *self, edict_t *other, edict_t *activator) +{ + self->activator = activator; + if (self->spawnflags & 1) + target_mal_laser_off (self); + else + target_mal_laser_on (self); +} + +void mal_laser_think (edict_t *self) +{ + target_laser_think (self); + self->nextthink = level.time + self->wait + 0.1; + self->spawnflags |= 0x80000000; +} + +void SP_target_mal_laser (edict_t *self) +{ + self->movetype = MOVETYPE_NONE; + self->solid = SOLID_NOT; + self->s.renderfx |= RF_BEAM|RF_TRANSLUCENT; + self->s.modelindex = 1; // must be non-zero + + // set the beam diameter + if (self->spawnflags & 64) + self->s.frame = 16; + else + self->s.frame = 4; + + // set the color + if (self->spawnflags & 2) + self->s.skinnum = 0xf2f2f0f0; + else if (self->spawnflags & 4) + self->s.skinnum = 0xd0d1d2d3; + else if (self->spawnflags & 8) + self->s.skinnum = 0xf3f3f1f1; + else if (self->spawnflags & 16) + self->s.skinnum = 0xdcdddedf; + else if (self->spawnflags & 32) + self->s.skinnum = 0xe0e1e2e3; + + G_SetMovedir (self->s.angles, self->movedir); + + if (!self->delay) + self->delay = 0.1; + + if (!self->wait) + self->wait = 0.1; + + if (!self->dmg) + self->dmg = 5; + + VectorSet (self->mins, -8, -8, -8); + VectorSet (self->maxs, 8, 8, 8); + + self->nextthink = level.time + self->delay; + self->think = mal_laser_think; + + self->use = target_mal_laser_use; + + gi.linkentity (self); + + if (self->spawnflags & 1) + target_mal_laser_on (self); + else + target_mal_laser_off (self); +} +// END 15-APR-98 + +//========================================================== + +/*QUAKED target_lightramp (0 .5 .8) (-8 -8 -8) (8 8 8) TOGGLE +speed How many seconds the ramping will take +message two letters; starting lightlevel and ending lightlevel +*/ + +void target_lightramp_think (edict_t *self) +{ + char style[2]; + + style[0] = 'a' + self->movedir[0] + (level.time - self->timestamp) / FRAMETIME * self->movedir[2]; + style[1] = 0; + gi.configstring (CS_LIGHTS+self->enemy->style, style); + + if ((level.time - self->timestamp) < self->speed) + { + self->nextthink = level.time + FRAMETIME; + } + else if (self->spawnflags & 1) + { + char temp; + + temp = self->movedir[0]; + self->movedir[0] = self->movedir[1]; + self->movedir[1] = temp; + self->movedir[2] *= -1; + } + // JOSEPH 16-OCT-98 + else + { + self->movedir[2] *= -1; + } + // END JOSEPH +} + +void target_lightramp_use (edict_t *self, edict_t *other, edict_t *activator) +{ + if (!self->enemy) + { + edict_t *e; + + // check all the targets + e = NULL; + while (1) + { + e = G_Find (e, FOFS(targetname), self->target); + if (!e) + break; + if (strcmp(e->classname, "light") != 0) + { + gi.dprintf("%s at %s ", self->classname, vtos(self->s.origin)); + gi.dprintf("target %s (%s at %s) is not a light\n", self->target, e->classname, vtos(e->s.origin)); + } + else + { + self->enemy = e; + } + } + + if (!self->enemy) + { + gi.dprintf("%s target %s not found at %s\n", self->classname, self->target, vtos(self->s.origin)); + G_FreeEdict (self); + return; + } + } + + self->timestamp = level.time; + target_lightramp_think (self); +} + +void SP_target_lightramp (edict_t *self) +{ + if (!self->message || strlen(self->message) != 2 || self->message[0] < 'a' || self->message[0] > 'z' || self->message[1] < 'a' || self->message[1] > 'z' || self->message[0] == self->message[1]) + { + gi.dprintf("target_lightramp has bad ramp (%s) at %s\n", self->message, vtos(self->s.origin)); + G_FreeEdict (self); + return; + } + + if (deathmatch->value) + { + G_FreeEdict (self); + return; + } + + if (!self->target) + { + gi.dprintf("%s with no target at %s\n", self->classname, vtos(self->s.origin)); + G_FreeEdict (self); + return; + } + + self->svflags |= SVF_NOCLIENT; + self->use = target_lightramp_use; + self->think = target_lightramp_think; + + self->movedir[0] = self->message[0] - 'a'; + self->movedir[1] = self->message[1] - 'a'; + self->movedir[2] = (self->movedir[1] - self->movedir[0]) / (self->speed / FRAMETIME); +} + +//========================================================== + +/*QUAKED target_earthquake (1 0 0) (-8 -8 -8) (8 8 8) +When triggered, this initiates a level-wide earthquake. +All players and monsters are affected. +"speed" severity of the quake (default:200) +"count" duration of the quake (default:5) +*/ + +void target_earthquake_think (edict_t *self) +{ + int i; + edict_t *e; + + if (self->last_move_time < level.time) + { + gi.positioned_sound (self->s.origin, self, CHAN_AUTO, self->noise_index, 1.0, ATTN_NONE, 0); + self->last_move_time = level.time + 0.5; + } + + for (i=1, e=g_edicts+i; i < globals.num_edicts; i++,e++) + { + if (!e->inuse) + continue; + if (!e->client) + continue; + if (!e->groundentity) + continue; + + e->groundentity = NULL; + e->velocity[0] += crandom()* 150; + e->velocity[1] += crandom()* 150; + e->velocity[2] = self->speed * (100.0 / e->mass); + } + + if (level.time < self->timestamp) + self->nextthink = level.time + FRAMETIME; +} + +void target_earthquake_use (edict_t *self, edict_t *other, edict_t *activator) +{ + self->timestamp = level.time + self->count; + self->nextthink = level.time + FRAMETIME; + self->activator = activator; + self->last_move_time = 0; +} + +void SP_target_earthquake (edict_t *self) +{ + if (!self->targetname) + gi.dprintf("untargeted %s at %s\n", self->classname, vtos(self->s.origin)); + + if (!self->count) + self->count = 5; + + if (!self->speed) + self->speed = 200; + + self->svflags |= SVF_NOCLIENT; + self->think = target_earthquake_think; + self->use = target_earthquake_use; + + self->noise_index = gi.soundindex ("world/quake.wav"); +} diff --git a/gamesrc/G_UTILS.C b/gamesrc/G_UTILS.C new file mode 100644 index 0000000..2a0c198 --- /dev/null +++ b/gamesrc/G_UTILS.C @@ -0,0 +1,717 @@ + +// g_utils.c -- misc utility functions for game module + +#include "g_local.h" + + +void G_ProjectSource (vec3_t point, vec3_t distance, vec3_t forward, vec3_t right, vec3_t result) +{ + result[0] = point[0] + forward[0] * distance[0] + right[0] * distance[1]; + result[1] = point[1] + forward[1] * distance[0] + right[1] * distance[1]; + result[2] = point[2] + forward[2] * distance[0] + right[2] * distance[1] + distance[2]; +} + + +/* +============= +G_Find + +Searches all active entities for the next one that holds +the matching string at fieldofs (use the FOFS() macro) in the structure. + +Searches beginning at the edict after from, or the beginning if NULL +NULL will be returned if the end of the list is reached. + +============= +*/ +edict_t *G_Find (edict_t *from, int fieldofs, char *match) +{ + char *s; + + if (!from) + from = g_edicts; + else + from++; + + for ( ; from < &g_edicts[globals.num_edicts] ; from++) + { + if (!from->inuse) + continue; + s = *(char **) ((byte *)from + fieldofs); + if (!s) + continue; + if (!Q_stricmp (s, match)) + return from; + } + + return NULL; +} + + +/* +================= +findradius + +Returns entities that have origins within a spherical area + +findradius (origin, radius) +================= +*/ +edict_t *findradius (edict_t *from, vec3_t org, float rad) +{ + vec3_t eorg; + int j; + + if (!from) + from = g_edicts; + else + from++; + for ( ; from < &g_edicts[globals.num_edicts]; from++) + { + if (!from->inuse) + continue; + if (from->solid == SOLID_NOT) + continue; + for (j=0 ; j<3 ; j++) + eorg[j] = org[j] - (from->s.origin[j] + (from->mins[j] + from->maxs[j])*0.5); + if (VectorLength(eorg) > rad) + continue; + return from; + } + + return NULL; +} + + +/* +============= +G_PickTarget + +Searches all active entities for the next one that holds +the matching string at fieldofs (use the FOFS() macro) in the structure. + +Searches beginning at the edict after from, or the beginning if NULL +NULL will be returned if the end of the list is reached. + +============= +*/ +#define MAXCHOICES 8 + +edict_t *G_PickTarget (char *targetname) +{ + edict_t *ent = NULL; + int num_choices = 0; + edict_t *choice[MAXCHOICES]; + + if (!targetname) + { + gi.dprintf("G_PickTarget called with NULL targetname\n"); + return NULL; + } + + while(1) + { + ent = G_Find (ent, FOFS(targetname), targetname); + if (!ent) + break; + choice[num_choices++] = ent; + if (num_choices == MAXCHOICES) + break; + } + + if (!num_choices) + { + gi.dprintf("G_PickTarget: target %s not found\n", targetname); + return NULL; + } + + return choice[rand() % num_choices]; +} + + + +void Think_Delay (edict_t *ent) +{ + G_UseTargets (ent, ent->activator); + G_FreeEdict (ent); +} + +/* +============================== +G_UseTargets + +the global "activator" should be set to the entity that initiated the firing. + +If self.delay is set, a DelayedUse entity will be created that will actually +do the SUB_UseTargets after that many seconds have passed. + +Centerprints any self.message to the activator. + +Search for (string)targetname in all entities that +match (string)self.target and call their .use function + +============================== +*/ +void G_UseTargets (edict_t *ent, edict_t *activator) +{ + edict_t *t; + +// +// check for a delay +// + if (ent->delay && ent->think != Think_Delay) + { + // create a temp object to fire at a later time + t = G_Spawn(); + t->classname = "DelayedUse"; + t->nextthink = level.time + ent->delay; + t->think = Think_Delay; + t->activator = activator; + if (!activator) + gi.dprintf ("Think_Delay with no activator\n"); + t->message = ent->message; + t->target = ent->target; + t->killtarget = ent->killtarget; + // RAFAEL + t->activate_flags = ent->activate_flags; + return; + } + + +// +// print the message +// + if ((ent->message) && !(activator->svflags & SVF_MONSTER)) + { + gi.centerprintf (activator, "%s", ent->message); + if (ent->noise_index) + gi.sound (activator, CHAN_AUTO, ent->noise_index, 1, ATTN_NORM, 0); + // JOSEPH 29-MAR-99 + //else + // gi.sound (activator, CHAN_AUTO, gi.soundindex ("misc/talk1.wav"), 1, ATTN_NORM, 0); + // END JOSEPH + } + +// +// kill killtargets +// + // JOSEPH 4-MAY-99 + if (ent->killtarget) + { + t = NULL; + while ((t = G_Find (t, FOFS(targetname), ent->killtarget))) + { + G_FreeEdict (t); + if (!ent->inuse) + { + gi.dprintf("entity was removed while using killtargets\n"); + return; + } + } + + t = NULL; + while ((t = G_Find (t, FOFS(target2), ent->killtarget))) + { + G_FreeEdict (t); + if (!ent->inuse) + { + gi.dprintf("entity was removed (target2 type) while using killtargets\n"); + return; + } + } + } + // END JOSEPH +// +// fire targets +// + if (ent->target) + { + t = NULL; + while ((t = G_Find (t, FOFS(targetname), ent->target))) + { + // Rafael: hack to fix Entity used itself message + // this was showing up when you leave a pawnomatic + // exit button is probably tagged wrong + if (t == ent) + continue; + + // RAFAEL + if (ent->activate_flags & ACTIVATE_AND_OPEN) + t->activate_flags |= ACTIVATE_AND_OPEN; + // JOSEPH 16-MAR-99 + //else if (!Q_stricmp (ent->classname, "trigger_once") && !Q_stricmp (t->classname, "func_door_rotating")) + // t->activate_flags |= ACTIVATE_AND_OPEN; + //else if (!Q_stricmp (ent->classname, "func_door_rotating") && !Q_stricmp (t->classname, "func_door_rotating")) + // t->activate_flags |= ACTIVATE_AND_OPEN; + else if (!Q_stricmp (t->classname, "func_door_rotating")) + t->activate_flags |= ACTIVATE_AND_OPEN; + // JOSEPH 23-APR-99 + else if (!Q_stricmp (t->classname, "func_door")) + t->activate_flags |= ACTIVATE_AND_OPEN; + // END JOSEPH + // END JOSEPH + // doors fire area portals in a specific way + if (!Q_stricmp(t->classname, "func_areaportal") && + (!Q_stricmp(ent->classname, "func_door") || !Q_stricmp(ent->classname, "func_door_rotating"))) + continue; + + if (t == ent) + { + gi.dprintf ("WARNING: Entity used itself.\n"); + } + else + { + if (t->use) + t->use (t, ent, activator); + } + if (!ent->inuse) + { + // note to self: why is is happening + // it may be possible that actors are getting removed + // before they use thier targets + + // gi.dprintf("entity was removed while using targets\n"); + return; + } + } + } +} + + +/* +============= +TempVector + +This is just a convenience function +for making temporary vectors for function calls +============= +*/ +float *tv (float x, float y, float z) +{ + static int index; + static vec3_t vecs[8]; + float *v; + + // use an array so that multiple tempvectors won't collide + // for a while + v = vecs[index]; + index = (index + 1)&7; + + v[0] = x; + v[1] = y; + v[2] = z; + + return v; +} + + +/* +============= +VectorToString + +This is just a convenience function +for printing vectors +============= +*/ +char *vtos (vec3_t v) +{ + static int index; + static char str[8][32]; + char *s; + + // use an array so that multiple vtos won't collide + s = str[index]; + index = (index + 1)&7; + + Com_sprintf (s, 32, "(%i %i %i)", (int)v[0], (int)v[1], (int)v[2]); + + return s; +} + + +vec3_t VEC_UP = {0, -1, 0}; +vec3_t MOVEDIR_UP = {0, 0, 1}; +vec3_t VEC_DOWN = {0, -2, 0}; +vec3_t MOVEDIR_DOWN = {0, 0, -1}; + +void G_SetMovedir (vec3_t angles, vec3_t movedir) +{ + if (VectorCompare (angles, VEC_UP)) + { + VectorCopy (MOVEDIR_UP, movedir); + } + else if (VectorCompare (angles, VEC_DOWN)) + { + VectorCopy (MOVEDIR_DOWN, movedir); + } + else + { + AngleVectors (angles, movedir, NULL, NULL); + } + + VectorClear (angles); +} + + +float vectoyaw (vec3_t vec) +{ + float yaw; + + if (vec[YAW] == 0 && vec[PITCH] == 0) + yaw = 0; + else + { + yaw = (int) (atan2(vec[YAW], vec[PITCH]) * 180 / M_PI); + if (yaw < 0) + yaw += 360; + } + + return yaw; +} + +float entyaw( edict_t *self, edict_t *other ) +{ + vec3_t vec; + + VectorSubtract( other->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + + return vectoyaw( vec ); +} + +// Ridah, deleted vectoangles, moved to q_shared.c + +char *G_CopyString (char *in) +{ + char *out; + + out = gi.TagMalloc (strlen(in)+1, TAG_LEVEL); + strcpy (out, in); + return out; +} + + +void G_InitEdict (edict_t *e) +{ + e->inuse = true; + e->classname = "noclass"; + e->gravity = 1.0; + e->s.number = e - g_edicts; + +// BEGIN: Xatrix/Ridah/Navigator/19-mar-1998 + e->nav_data.cache_node = -1; + e->active_node_data = level.node_data; +// END: Xatrix/Ridah/Navigator/19-mar-1998 + +} + +/* +================= +G_Spawn + +Either finds a free edict, or allocates a new one. +Try to avoid reusing an entity that was recently freed, because it +can cause the client to think the entity morphed into something else +instead of being removed and recreated, which can cause interpolated +angles and bad trails. +================= +*/ +edict_t *G_Spawn (void) +{ + int i; + edict_t *e; + + e = &g_edicts[(int)maxclients->value+1]; + for ( i=maxclients->value+1 ; iinuse && ( e->freetime < 2 || level.time - e->freetime > 0.5 ) ) + { + G_InitEdict (e); + return e; + } + } + + if (i == game.maxentities) + gi.error ("ED_Alloc: no free edicts"); + + globals.num_edicts++; + G_InitEdict (e); + return e; +} + +/* +================= +G_FreeEdict + +Marks the edict as free +================= +*/ +void G_FreeEdict (edict_t *ed) +{ + // Ridah, fixes Rockets crashing SR1 + if (ed->character_index) + level.characters[ed->character_index] = NULL; + + + gi.unlinkentity (ed); // unlink from world + + if ((ed - g_edicts) <= (maxclients->value + BODY_QUEUE_SIZE)) + { +// gi.dprintf("tried to free special edict\n"); + return; + } + + memset (ed, 0, sizeof(*ed)); + ed->classname = "freed"; + ed->freetime = level.time; + ed->inuse = false; +} + + +/* +============ +G_TouchTriggers + +============ +*/ +void G_TouchTriggers (edict_t *ent) +{ + int i, num; + edict_t *touch[MAX_EDICTS], *hit; + + // dead things don't activate triggers! + if ((ent->client || (ent->svflags & SVF_MONSTER)) && (ent->health <= 0)) + return; + + // JOSEPH 25-APR-99 + // props don't activate triggers! + if (ent->svflags & SVF_PROP) + return; + // END JOSEPH + + num = gi.BoxEdicts (ent->absmin, ent->absmax, touch , MAX_EDICTS, AREA_TRIGGERS); + + // be careful, it is possible to have an entity in this + // list removed before we get to it (killtriggered) + for (i=0 ; iinuse) + continue; + if (!hit->touch) + continue; + hit->touch (hit, ent, NULL, NULL); + } +} + +/* +============ +G_TouchSolids + +Call after linking a new trigger in during gameplay +to force all entities it covers to immediately touch it +============ +*/ +void G_TouchSolids (edict_t *ent) +{ + int i, num; + edict_t *touch[MAX_EDICTS], *hit; + + num = gi.BoxEdicts (ent->absmin, ent->absmax, touch + , MAX_EDICTS, AREA_SOLID); + + // be careful, it is possible to have an entity in this + // list removed before we get to it (killtriggered) + for (i=0 ; iinuse) + continue; + if (ent->touch) + ent->touch (hit, ent, NULL, NULL); + if (!ent->inuse) + break; + } +} + + + + +/* +============================================================================== + +Kill box + +============================================================================== +*/ + +/* +================= +KillBox + +Kills all entities that would touch the proposed new positioning +of ent. Ent should be unlinked before calling this! +================= +*/ +qboolean KillBox (edict_t *ent) +{ + trace_t tr; + + while (1) + { + tr = gi.trace (ent->s.origin, ent->mins, ent->maxs, ent->s.origin, NULL, MASK_PLAYERSOLID); + if (!tr.ent) + break; + + // nail it + T_Damage (tr.ent, ent, ent, vec3_origin, ent->s.origin, vec3_origin, 100000, 0, DAMAGE_NO_PROTECTION, MOD_TELEFRAG); + + // if we didn't kill it, fail + if (tr.ent->solid) + return false; + } + + return true; // all clear +} + + +/* +SurfaceSpriteEffect + + Determines whether or not a surface sprite effect can be placed in this location, and + if so, spawns the requested sprite. + + RETURNS true if a sprite was spawned +*/ +qboolean SurfaceSpriteEffect( byte surf_sfx, byte width, byte height, + edict_t *impact_ent, vec3_t pos, vec3_t normal ) +{ + #define EXTRUDE_DIST 0.5 // come this far out from wall for trace test + + vec3_t angles; + vec3_t right, up; + vec3_t this_pos, x_pos, center_pos, end_pos; + float x, y; + float fwidth, fheight; + trace_t tr; + + if (impact_ent != world) + return false; + + fwidth = (float) width; + fheight = (float) height; + + vectoangles( normal, angles ); + AngleVectors( angles, NULL, right, up ); + + VectorMA( pos, EXTRUDE_DIST, normal, center_pos ); + + if (!(surf_sfx == SFX_SPRITE_SURF_RIPPLE) && (width > 2 && height > 2)) + { + // check all corners of sprite on wall + for (x= -fwidth/2; x<=fwidth/2; x+= fwidth) + { + VectorMA( center_pos, x, right, x_pos ); + + for (y= -fheight/2; y<= fheight/2; y+= fheight) + { + VectorMA( x_pos, y, up, this_pos ); + + VectorMA( this_pos, -EXTRUDE_DIST*2, normal, end_pos ); + + // do a trace + tr = gi.trace( this_pos, NULL, NULL, end_pos, NULL, CONTENTS_SOLID ); + + if ( ! (!tr.startsolid && tr.fraction < 1 && tr.ent == impact_ent)) + { // no good + return false; + } + } + } + } + + // succesful, so spawn the sprite + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SURFACE_SPRITE_ENTITY); + gi.WriteByte (surf_sfx); + gi.WriteByte (width); + gi.WriteByte (height); + gi.WritePosition (center_pos); + gi.WriteAngle (angles[0]); + gi.WriteAngle (angles[1]); // don't need ROLL + + if (deathmatch->value) + gi.multicast (center_pos, MULTICAST_PVS); + else + gi.multicast (center_pos, MULTICAST_ALL); + + return true; +} + + +qboolean SurfaceSpriteEffectRipple( byte surf_sfx, byte width, byte height, + edict_t *impact_ent, vec3_t pos, vec3_t normal ) +{ + #define EXTRUDE_DIST 0.5 // come this far out from wall for trace test + + vec3_t angles; + vec3_t right, up; + vec3_t this_pos, x_pos, center_pos, end_pos; + float x, y; + float fwidth, fheight; + trace_t tr; + + //if (impact_ent != world) + // return false; + + fwidth = (float) width; + fheight = (float) height; + + vectoangles( normal, angles ); + AngleVectors( angles, NULL, right, up ); + + VectorMA( pos, EXTRUDE_DIST, normal, center_pos ); + + if (!(surf_sfx == SFX_SPRITE_SURF_RIPPLE) && (width > 2 && height > 2)) + { + // check all corners of sprite on wall + for (x= -fwidth/2; xvalue) + gi.multicast (center_pos, MULTICAST_PVS); + else + gi.multicast (center_pos, MULTICAST_ALL); + + return true; +} diff --git a/gamesrc/G_WEAPON.C b/gamesrc/G_WEAPON.C new file mode 100644 index 0000000..8feb93d --- /dev/null +++ b/gamesrc/G_WEAPON.C @@ -0,0 +1,3035 @@ + +#include "g_local.h" + + +/* +================= +check_dodge + +This is a support routine used when a client is firing +a non-instant attack weapon. It checks to see if a +monster's dodge function should be called. +================= +*/ +static void check_dodge (edict_t *self, vec3_t start, vec3_t dir, int speed) +{ + vec3_t end; + vec3_t v; + trace_t tr; + float eta; + + // easy mode only ducks one quarter the time + if (skill->value == 0) + { + if (random() > 0.25) + return; + } + VectorMA (start, 8192, dir, end); + tr = gi.trace (start, NULL, NULL, end, self, MASK_SHOT); + if ((tr.ent) && (tr.ent->svflags & SVF_MONSTER) && (tr.ent->health > 0) && (tr.ent->cast_info.dodge) && infront(tr.ent, self)) + { + VectorSubtract (tr.endpos, start, v); + eta = (VectorLength(v) - tr.ent->maxs[0]) / speed; + tr.ent->cast_info.dodge (tr.ent, self, eta); + } +} + + +/* +================= +fire_hit + +Used for all impact (hit/punch/slash) attacks +================= +*/ +qboolean fire_hit (edict_t *self, vec3_t aim, int damage, int kick) +{ + trace_t tr; + vec3_t forward, right, up; + vec3_t v; + vec3_t point; + float range; + vec3_t dir; + + //see if enemy is in range + VectorSubtract (self->enemy->s.origin, self->s.origin, dir); + range = VectorLength(dir); + if (range > aim[0]) + return false; + + if (aim[1] > self->mins[0] && aim[1] < self->maxs[0]) + { + // the hit is straight on so back the range up to the edge of their bbox + range -= self->enemy->maxs[0]; + } + else + { + // this is a side hit so adjust the "right" value out to the edge of their bbox + if (aim[1] < 0) + aim[1] = self->enemy->mins[0]; + else + aim[1] = self->enemy->maxs[0]; + } + + VectorMA (self->s.origin, range, dir, point); + + tr = gi.trace (self->s.origin, NULL, NULL, point, self, MASK_SHOT); + if (tr.fraction < 1) + { + if (!tr.ent->takedamage) + return false; + // if it will hit any client/monster then hit the one we wanted to hit + if ((tr.ent->svflags & SVF_MONSTER) || (tr.ent->client)) + tr.ent = self->enemy; + } + + AngleVectors(self->s.angles, forward, right, up); + VectorMA (self->s.origin, range, forward, point); + VectorMA (point, aim[1], right, point); + VectorMA (point, aim[2], up, point); + VectorSubtract (point, self->enemy->s.origin, dir); + + // do the damage + T_Damage (tr.ent, self, self, dir, point, vec3_origin, damage, kick/2, DAMAGE_NO_KNOCKBACK, MOD_HIT); + + if (!(tr.ent->svflags & SVF_MONSTER) && (!tr.ent->client)) + return false; + + // do our special form of knockback here + VectorMA (self->enemy->absmin, 0.5, self->enemy->size, v); + VectorSubtract (v, point, v); + VectorNormalize (v); + VectorMA (self->enemy->velocity, kick, v, self->enemy->velocity); + if (self->enemy->velocity[2] > 0) + self->enemy->groundentity = NULL; + return true; +} + + +void ActorDamageSimpleSkinChangeCheck (edict_t *self, vec3_t hit) +{ + int baseskin, part, subobject; + int rval; + + if (cl_parental_lock->value && !cl_parental_override->value) + return; + + rval = rand()%100; + + if (rval > 75) + { + part = PART_HEAD; + subobject = 0; + } + else if (rval > 50) + { + part = PART_LEGS; + subobject = rand()%7; + } + else + { + part = PART_BODY; + subobject = rand()%7; + } + + + if (!self->s.model_parts[part].object_bounds[subobject] && !(self->s.model_parts[part].invisible_objects & (1<art_skins) + { + baseskin = self->s.model_parts[part].baseskin; + + if (self->health < (self->max_health * 0.5)) + { + self->s.model_parts[part].skinnum[subobject] = baseskin + 2; + } + else if (self->health < (self->max_health * 0.75)) + { + self->s.model_parts[part].skinnum[subobject] = baseskin + 1; + } + } +} + +// JOSEPH 14-JAN-99 +/* +================= +fire_lead + +This is an internal support routine used for bullet/pellet based weapons. +================= +*/ +void M_ReactToDamage (edict_t *targ, edict_t *attacker, float damage); +// JOSEPH +static void fire_lead (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int kick, int te_impact, int hspread, int vspread, int mod) +{ + trace_t tr, mdx_tr; + vec3_t dir; + vec3_t forward, right, up; + vec3_t end; + float r; + float u; + vec3_t water_start, alpha_start; + qboolean water = false; + int content_mask = MASK_SHOT | MASK_WATER | MASK_ALPHA; + int len; + //int NoBulletHole; + int pointblank = 0; + int nosmoke = 0; + static float lastshotgun = 0; + vec3_t tempvec; + int conweap = 0; + + PlayerNoise(self, start, PNOISE_WEAPON); + + tr = gi.trace (self->s.origin, NULL, NULL, start, self, MASK_SHOT ); + if (!(tr.fraction < 1.0)) + { + vectoangles (aimdir, dir); + AngleVectors (dir, forward, right, up); + + if (deathmatch->value && (mod == MOD_PISTOL || mod == MOD_SILENCER)) + { + r = 0.0; + u = 0.0; + } + else + { + r = crandom()*hspread; + u = crandom()*vspread; + } + + VectorMA (start, 8192, forward, end); + VectorMA (end, r, right, end); + VectorMA (end, u, up, end); + + if (gi.pointcontents (start) & MASK_WATER) + { + water = true; + VectorCopy (start, water_start); + content_mask &= ~MASK_WATER; + } + + tr = gi.trace (start, NULL, NULL, end, self, content_mask); + + if (mod == MOD_BLACKJACK) + { + vec3_t newvec; + + VectorSubtract(start, tr.endpos, newvec); + if (VectorLength(newvec) > 32) return; + conweap = 1; + } + + // JOSEPH 19-JAN-99 + if ((mod == MOD_BLACKJACK) || (mod == MOD_CROWBAR)) + { + vec3_t newvec; + + VectorSubtract(start, tr.endpos, newvec); + if (VectorLength(newvec) > 32) return; + conweap = 1; + } + // END JOSEPH + + // JOSEPH 9-APR-99 + if ((tr.surface->flags & SURF_METAL) || (tr.surface->flags & SURF_METAL_L)) + { + gi.WriteByte (svc_muzzleflash3); + gi.WriteShort (self - g_edicts); + gi.WriteByte (MZ3_LEADHIT_METAL); + gi.multicast (start, MULTICAST_PVS); + } + else if (tr.surface->flags & SURF_WOOD) + { + switch (rand()%3) + { + case 0: + gi.sound (self, CHAN_VOICE, gi.soundindex ("weapons/bullethit_wood1.wav"), 1, ATTN_NORM, 0); + break; + case 1: + gi.sound (self, CHAN_VOICE, gi.soundindex ("weapons/bullethit_wood2.wav"), 1, ATTN_NORM, 0); + break; + case 2: + gi.sound (self, CHAN_VOICE, gi.soundindex ("weapons/bullethit_wood3.wav"), 1, ATTN_NORM, 0); + break; + } + } + // END JOSEPH + + // JOSEPH + // see if we hit an alpha surface + if (((tr.ent) && (tr.ent->s.renderfx2 & RF2_SURF_ALPHA)) + || ((tr.contents & MASK_ALPHA))) + { + if (crandom() < .93) + { + VectorCopy (tr.endpos, alpha_start); + + // Skip alpha surface +// Ridah, don't need these +// VectorSubtract (end, start, dir); +// vectoangles (dir, dir); +// AngleVectors (dir, forward, right, up); +// VectorMA (alpha_start, 8192, forward, end); + if (tr.ent->s.renderfx2 & RF2_SURF_ALPHA) + { + VectorMA (alpha_start, 4*3, aimdir, alpha_start); + } + else + { + VectorMA (alpha_start, 4, aimdir, alpha_start); + } + // re-trace after alpha surface + tr = gi.trace (alpha_start, NULL, NULL, end, self, MASK_SHOT); + } + } + + // see if we hit water + if (tr.contents & MASK_WATER) + { + int color; + + water = true; + VectorCopy (tr.endpos, water_start); + + if (!VectorCompare (start, tr.endpos)) + { + if (tr.contents & CONTENTS_WATER) + { + if (strcmp(tr.surface->name, "*brwater") == 0) + color = SPLASH_BROWN_WATER; + else + color = SPLASH_BLUE_WATER; + } + else if (tr.contents & CONTENTS_SLIME) + color = SPLASH_SLIME; + // JOSEPH 6-JUN-99 + else if (tr.contents & CONTENTS_LAVA) + color = /*SPLASH_LAVA*/SPLASH_UNKNOWN; + // END JOSEPH + else + color = SPLASH_UNKNOWN; + + if (color != SPLASH_UNKNOWN) + { + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SPLASH); + gi.WriteByte (8); + gi.WritePosition (tr.endpos); + gi.WriteDir (tr.plane.normal); + gi.WriteByte (color); + gi.multicast (tr.endpos, MULTICAST_PVS); + + } + + // if (color == SPLASH_BLUE_WATER) + if (water) + { + static float last_ripple; + + if (last_ripple > level.time) + last_ripple = 0; + + if (last_ripple < (level.time - 0.75)) + { + // Ripple effect + SurfaceSpriteEffectRipple( SFX_SPRITE_SURF_RIPPLE, SFX_RIPPLE_WIDTH, SFX_RIPPLE_HEIGHT, + tr.ent, tr.endpos, tr.plane.normal ); + + if (!deathmatch->value) + { + SurfaceSpriteEffectRipple( SFX_SPRITE_SURF_RIPPLE, SFX_RIPPLE_WIDTH<<1, SFX_RIPPLE_HEIGHT<<1, + tr.ent, tr.endpos, tr.plane.normal ); + SurfaceSpriteEffectRipple( SFX_SPRITE_SURF_RIPPLE, SFX_RIPPLE_WIDTH>>1, SFX_RIPPLE_HEIGHT>>1, + tr.ent, tr.endpos, tr.plane.normal ); + } + } + + } + + // change bullet's course when it enters water + VectorSubtract (end, start, dir); + vectoangles (dir, dir); + AngleVectors (dir, forward, right, up); + r = crandom()*hspread*2; + u = crandom()*vspread*2; + VectorMA (water_start, 8192, forward, end); + VectorMA (end, r, right, end); + VectorMA (end, u, up, end); + } + + // re-trace ignoring water this time + tr = gi.trace (water_start, NULL, NULL, end, self, MASK_SHOT); + } + } + + // send gun puff / flash + if (!((tr.surface) && (tr.surface->flags & SURF_SKY))) + { + if (tr.fraction < 1.0) + { + + // gi.dprintf ("hit: %s\n", tr.ent->classname); + + // Calculate shot distance + VectorSubtract (tr.endpos, self->s.origin, tempvec); + len = VectorNormalize (tempvec); + + // On smoke up close + if ((te_impact == TE_GUNSHOT) && (len < 96) && (lastshotgun) && (lastshotgun > level.time)) + { + nosmoke = 1; + } + else if (te_impact == TE_GUNSHOT) + { + lastshotgun = level.time + 0.10; + } + + if (tr.ent->takedamage) + { + // Point blank range shot gives more damage + if (len < 64) + { + damage *= 2; + pointblank = 1; + } + + // JOSEPH 18-FEB-99 + if ((tr.ent->svflags & SVF_PROP) || (!strcmp(tr.ent->classname,"func_explosive"))) + { + if (!conweap) + { + extern int ClipVelocity (vec3_t in, vec3_t normal, vec3_t out, float overbounce); + vec3_t dir; + + // Ridah, spawn metallic sparks on metal surfaces + // JOSEPH 11-JUN-99-B + if ((tr.ent->svflags & SVF_PROP) && (tr.ent->surfacetype & (SURF_METAL | SURF_METAL_L))) + { + te_impact = TE_METAL_SPARKS; + ClipVelocity( aimdir, tr.plane.normal, dir, 1.5 ); + } + else if (tr.surface->flags & (SURF_METAL | SURF_METAL_L)) + // END JOSEPH + { + te_impact = TE_METAL_SPARKS; + ClipVelocity( aimdir, tr.plane.normal, dir, 1.5 ); + } + else + { + VectorCopy( tr.plane.normal, dir ); + } + + if (!nosmoke) + { + gi.WriteByte (svc_temp_entity); + gi.WriteByte (te_impact); + gi.WritePosition (tr.endpos); + gi.WriteDir (dir); + gi.multicast (tr.endpos, MULTICAST_PVS); + } + } + + if (self->client) + PlayerNoise(self, tr.endpos, PNOISE_IMPACT); + } + // END JOSEPH + + // Ridah, only do MDX bbox check if it's a client firing + if (self->client && tr.ent->s.num_parts && (!deathmatch->value || dm_locational_damage->value)) + { + // either way, react to this attempted hostility + // JOSEPH 9-FEB-99 + if (!(tr.ent->svflags & SVF_PROP) && tr.ent->svflags & SVF_MONSTER) + // either way, react to this attempted hostility + M_ReactToDamage (tr.ent, self, damage ); + // END JOSEPH + + { + #define MAX_ITERATIONS 10 + trace_t ignore; + qboolean is_mdx = false; + int iterations=10; // FIXME: this is a hack + edict_t *ignored[MAX_ITERATIONS]; + int num_ignored; + + ignore = tr; + num_ignored = 0; + + while (iterations--) + { + mdx_tr = MDX_HitCheck (ignore.ent, self, self, aimdir, ignore.endpos, ignore.plane.normal, damage, kick, DAMAGE_BULLET, mod, end); + + if (mdx_tr.ent->flags & FL_MDXBBOX) // we hit an mdx_bbox + { + is_mdx = true; + VectorCopy (mdx_tr.endpos, tr.endpos); + break; + } + else if (mdx_tr.ent->takedamage && mdx_tr.ent->s.num_parts) // we missed the mdx_bbox but hit another mdx + { + is_mdx = true; + ignore = mdx_tr; + + // ignore this entity from now on + ignored[num_ignored++] = mdx_tr.ent; + gi.unlinkentity( mdx_tr.ent ); + } + else if (mdx_tr.ent->takedamage) // we hit an md2 + { + is_mdx = false; + VectorCopy (mdx_tr.endpos, tr.endpos); + VectorCopy (mdx_tr.plane.normal, tr.plane.normal); + tr.ent = mdx_tr.ent; + break; + } + // JOSEPH 5-FEB-99-B + else if (tr.ent->svflags & SVF_PROP) + { +// Ridah, 25-may-99, Fixes Episode 5/6 invulnerable rats & crates bug. Old code commented out. +/* + is_mdx = true; + VectorCopy (mdx_tr.endpos, tr.endpos); + break; +*/ + is_mdx = false; + break; + } + // END JOSEPH + else + { + // we missed + VectorCopy (mdx_tr.endpos, tr.endpos); + VectorCopy (mdx_tr.plane.normal, tr.plane.normal); + + // set all the ignored entities back + for (iterations = 0; iterations < num_ignored; iterations++) + gi.linkentity( ignored[iterations] ); + + goto bolt; + } + } + + // set all the ignored entities back + for (iterations = 0; iterations < num_ignored; iterations++) + gi.linkentity( ignored[iterations] ); + + if (is_mdx) + { + // Ridah, 18-mar-99, changed this, was causing damage to the wrong entity when dead bodies are close (gibs were spawning on wrong body) + T_DamageMDX (ignore.ent, self, self, aimdir, tr.endpos, tr.plane.normal, damage, kick, DAMAGE_BULLET, mod, mdx_tr.ent->count, mdx_tr.ent->dmg); + + // Head shot blood on close wall + // JOSEPH 25-JAN-99 + if ((mdx_tr.ent->count == PART_HEAD) && (!(tr.ent->svflags & SVF_PROP))) + // END JOSEPH + { + trace_t tr2; + vec3_t newstart, newdir, newend, travelvec; + + VectorCopy (tr.endpos, newstart); + VectorSubtract (end, start, newdir); + vectoangles (newdir, newdir); + AngleVectors (newdir, forward, NULL, NULL); + + do + { + VectorMA (newstart, 8192, forward, newend); + VectorMA (newstart, 4, forward, newstart); + + tr2 = gi.trace (newstart, NULL, NULL, newend, self, MASK_SHOT); + } + while (tr2.ent == tr.ent); + + VectorSubtract(newstart, tr2.endpos, travelvec); + len = VectorNormalize(travelvec); + + // JOSEPH 8-JUN-99 + if ((len < 100.0) && (!tr2.ent->takedamage) && + (!((((int)(dmflags->value)) & DF_NO_FRIENDLY_FIRE))) && + ((strncmp (tr2.surface->name, "sky", 3) != 0))) + // END JOSEPH + { + if (pointblank) + { + SurfaceSpriteEffect(SFX_SPRITE_SURF_BLOOD1, SFX_BLOOD_WIDTH*4, + SFX_BLOOD_HEIGHT*4, + tr2.ent, tr2.endpos, tr2.plane.normal ); + } + else + { + char rnd; + + rnd = (char)(1 + rand()%4); + + SurfaceSpriteEffect(SFX_SPRITE_SURF_BLOOD1, (unsigned char)(SFX_BLOOD_WIDTH*rnd), + (unsigned char)(SFX_BLOOD_HEIGHT*rnd), + tr2.ent, tr2.endpos, tr2.plane.normal ); + } + } + } + } + else + T_Damage (tr.ent, self, self, aimdir, tr.endpos, tr.plane.normal, damage, kick, DAMAGE_BULLET, mod); + } + } + else + { + + qboolean check_skin_change = false; + + if (self->svflags & SVF_MONSTER && tr.ent->svflags & SVF_MONSTER && self->cast_group != tr.ent->cast_group && tr.ent->cast_group != 1) + { // Tweak: do more damage when AI shooting AI, more realistic + damage *= 2; + + if (tr.ent->gender && !tr.ent->client) + { + check_skin_change = true; + } + } + + T_Damage (tr.ent, self, self, aimdir, tr.endpos, tr.plane.normal, damage, kick, DAMAGE_BULLET, mod); + + if (check_skin_change) + { + ActorDamageSimpleSkinChangeCheck (tr.ent, tr.endpos); + } + } + +// if (tr.ent->svflags & SVF_MONSTER) +// { // add some momentum +// tr.ent->velocity[2] += kick*3; +// } + } + else + { +bolt: + // JOSEPH + if ((strncmp (tr.surface->name, "sky", 3) != 0) /*|| NoBulletHole*/) + { + if (!conweap) + { + extern int ClipVelocity (vec3_t in, vec3_t normal, vec3_t out, float overbounce); + vec3_t dir; + + // Ridah, spawn metallic sparks on metal surfaces + if (tr.surface->flags & (SURF_METAL | SURF_METAL_L)) + { + te_impact = TE_METAL_SPARKS; + ClipVelocity( aimdir, tr.plane.normal, dir, 1.5 ); + } + else + { + VectorCopy( tr.plane.normal, dir ); + } + + if (deathmatch->value && te_impact == TE_GUNSHOT) + { + te_impact = TE_GUNSHOT_VISIBLE; + ClipVelocity( aimdir, tr.plane.normal, dir, 1.5 ); + } + + if (!nosmoke) + { + gi.WriteByte (svc_temp_entity); + gi.WriteByte (te_impact); + gi.WritePosition (tr.endpos); + gi.WriteDir (dir); + gi.multicast (tr.endpos, MULTICAST_PVS); + } + } + + if (self->client) + PlayerNoise(self, tr.endpos, PNOISE_IMPACT); + + // Ridah, surface sprites + if (!(self->svflags & SVF_PROP) && !deathmatch->value && !water) // Ridah, had to remove this in deathmatch, since it's bandwidth hungry + { + SurfaceSpriteEffect( SFX_SPRITE_SURF_BULLET1, SFX_BULLET_WIDTH * 5, SFX_BULLET_HEIGHT * 5, + tr.ent, tr.endpos, tr.plane.normal ); + } + +// SurfaceSpriteEffect( SFX_SPRITE_SURF_BLOOD1, SFX_BLOOD_WIDTH, SFX_BLOOD_HEIGHT, +// tr.ent, tr.endpos, tr.plane.normal ); + + // done. + } + } + } + } + + // if went through water, determine where the end and make a bubble trail + if (water) + { + vec3_t pos; + + VectorSubtract (tr.endpos, water_start, dir); + + VectorNormalize (dir); + VectorMA (tr.endpos, -2, dir, pos); + if (gi.pointcontents (pos) & MASK_WATER) + VectorCopy (pos, tr.endpos); + else + tr = gi.trace (pos, NULL, NULL, water_start, tr.ent, MASK_WATER); + + VectorAdd (water_start, tr.endpos, pos); + VectorScale (pos, 0.5, pos); + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_BUBBLETRAIL); + gi.WritePosition (water_start); + gi.WritePosition (tr.endpos); + gi.multicast (pos, MULTICAST_PVS); + } +} +// END JOSEPH + +/* +================= +fire_bullet + +Fires a single round. Used for machinegun and chaingun. Would be fine for +pistols, rifles, etc.... +================= +*/ +void fire_bullet (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int kick, int hspread, int vspread, int mod) +{ + fire_lead (self, start, aimdir, damage, kick, TE_GUNSHOT, hspread, vspread, mod); +} + + +/* +================= +fire_shotgun + +Shoots shotgun pellets. Used by shotgun and super shotgun. +================= +*/ +void fire_shotgun (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int kick, int hspread, int vspread, int count, int mod) +{ + int i; + + for (i = 0; i < count; i++) + // fire_lead (self, start, aimdir, damage, kick, TE_SHOTGUN, hspread, vspread, mod); + fire_lead (self, start, aimdir, damage, kick, TE_GUNSHOT, hspread, vspread, mod); +} + + +/* +================= +fire_blaster + +Fires a single blaster bolt. Used by the blaster and hyper blaster. +================= +*/ +void blaster_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + int mod; + + if (other == self->owner) + return; + + if (surf && (surf->flags & SURF_SKY)) + { + G_FreeEdict (self); + return; + } + + if (self->owner->client) + PlayerNoise(self->owner, self->s.origin, PNOISE_IMPACT); + + if (other->takedamage) + { + if (self->spawnflags & 1) + mod = MOD_HYPERBLASTER; + else + mod = MOD_BLASTER; + T_Damage (other, self, self->owner, self->velocity, self->s.origin, plane->normal, self->dmg, 1, DAMAGE_ENERGY, mod); + } + else + { + gi.WriteByte (svc_temp_entity); + // RAFAEL + //if (self->s.effects & TE_BLUEHYPERBLASTER) + // gi.WriteByte (TE_BLUEHYPERBLASTER); + //else + gi.WriteByte (TE_BLASTER); + gi.WritePosition (self->s.origin); + if (!plane) + gi.WriteDir (vec3_origin); + else + gi.WriteDir (plane->normal); + gi.multicast (self->s.origin, MULTICAST_PVS); + } + + G_FreeEdict (self); +} + +void fire_blaster (edict_t *self, vec3_t start, vec3_t dir, int damage, int speed, int effect, qboolean hyper) +{ + edict_t *bolt; + trace_t tr; + + VectorNormalize (dir); + + bolt = G_Spawn(); + bolt->svflags = SVF_DEADMONSTER; + // yes, I know it looks weird that projectiles are deadmonsters + // what this means is that when prediction is used against the object + // (blaster/hyperblaster shots), the player won't be solid clipped against + // the object. Right now trying to run into a firing hyperblaster + // is very jerky since you are predicted 'against' the shots. + VectorCopy (start, bolt->s.origin); + VectorCopy (start, bolt->s.old_origin); + vectoangles (dir, bolt->s.angles); + VectorScale (dir, speed, bolt->velocity); + bolt->movetype = MOVETYPE_FLYMISSILE; + bolt->clipmask = MASK_SHOT; + bolt->solid = SOLID_BBOX; + bolt->s.effects |= effect; + VectorClear (bolt->mins); + VectorClear (bolt->maxs); + bolt->s.modelindex = gi.modelindex ("models/objects/laser/tris.md2"); + bolt->s.sound = gi.soundindex ("misc/lasfly.wav"); + bolt->owner = self; + bolt->touch = blaster_touch; + bolt->nextthink = level.time + 2; + bolt->think = G_FreeEdict; + bolt->dmg = damage; + bolt->classname = "bolt"; + if (hyper) + bolt->spawnflags = 1; + gi.linkentity (bolt); + + if (self->client) + check_dodge (self, bolt->s.origin, dir, speed); + + tr = gi.trace (self->s.origin, NULL, NULL, bolt->s.origin, bolt, MASK_SHOT); + if (tr.fraction < 1.0) + { + VectorMA (bolt->s.origin, -10, dir, bolt->s.origin); + bolt->touch (bolt, tr.ent, NULL, NULL); + } +} + +// RAFAEL +void fire_blueblaster (edict_t *self, vec3_t start, vec3_t dir, int damage, int speed, int effect) +{ + edict_t *bolt; + trace_t tr; + + VectorNormalize (dir); + + bolt = G_Spawn (); + VectorCopy (start, bolt->s.origin); + VectorCopy (start, bolt->s.old_origin); + vectoangles (dir, bolt->s.angles); + VectorScale (dir, speed, bolt->velocity); + bolt->movetype = MOVETYPE_FLYMISSILE; + bolt->clipmask = MASK_SHOT; + bolt->solid = SOLID_BBOX; + bolt->s.effects |= effect; + VectorClear (bolt->mins); + VectorClear (bolt->maxs); + + bolt->s.modelindex = gi.modelindex ("models/objects/blaser/tris.md2"); + bolt->s.sound = gi.soundindex ("misc/lasfly.wav"); + bolt->owner = self; + bolt->touch = blaster_touch; + bolt->nextthink = level.time + 2; + bolt->think = G_FreeEdict; + bolt->dmg = damage; + bolt->classname = "bolt"; + gi.linkentity (bolt); + + if (self->client) + check_dodge (self, bolt->s.origin, dir, speed); + + tr = gi.trace (self->s.origin, NULL, NULL, bolt->s.origin, bolt, MASK_SHOT); + + if (tr.fraction < 1.0) + { + VectorMA (bolt->s.origin, -10, dir, bolt->s.origin); + bolt->touch (bolt, tr.ent, NULL, NULL); + } + +} +/* +// JOSEPH +void fire_fire (edict_t *self, vec3_t start, vec3_t dir, int damage, int speed, int effect, qboolean hyper) +{ + //fire_fire (ent, start, forward, damage, 50, EF_BLASTER, false); + + VectorNormalize (dir); + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SFXFIREGO); + gi.WritePosition (start); +// gi.WriteDir (dir); + gi.multicast (start, MULTICAST_PVS); +} +//END JOSEPH +*/ + + + + + +// JOSEPH 20-JAN-99 +/* +================= +Grenade_Explode +================= +*/ +/*static void Grenade_Explode (edict_t *ent) +{ + vec3_t origin; + int mod; + + if (ent->owner->client) + PlayerNoise(ent->owner, ent->s.origin, PNOISE_IMPACT); + + //FIXME: if we are onground then raise our Z just a bit since we are a point? + if (ent->enemy) + { + float points; + vec3_t v; + vec3_t dir; + + VectorAdd (ent->enemy->mins, ent->enemy->maxs, v); + VectorMA (ent->enemy->s.origin, 0.5, v, v); + VectorSubtract (ent->s.origin, v, v); + points = ent->dmg - 0.5 * VectorLength (v); + VectorSubtract (ent->enemy->s.origin, ent->s.origin, dir); + if (ent->spawnflags & 1) + mod = MOD_HANDGRENADE; + else + mod = MOD_GRENADE; + T_Damage (ent->enemy, ent, ent->owner, dir, ent->s.origin, vec3_origin, (int)points, (int)points, DAMAGE_RADIUS, mod); + } + + if (ent->spawnflags & 2) + mod = MOD_HELD_GRENADE; + else if (ent->spawnflags & 1) + mod = MOD_HG_SPLASH; + else + mod = MOD_G_SPLASH; + T_RadiusDamage(ent, ent->owner, ent->dmg, ent->enemy, ent->dmg_radius, mod); + + VectorMA (ent->s.origin, -0.02, ent->velocity, origin); + gi.WriteByte (svc_temp_entity); + if (ent->waterlevel) + { + if (ent->groundentity) + gi.WriteByte (TE_GRENADE_EXPLOSION_WATER); + else + gi.WriteByte (TE_ROCKET_EXPLOSION_WATER); + } + else + { + if (ent->groundentity) + gi.WriteByte (TE_GRENADE_EXPLOSION); + else + gi.WriteByte (TE_ROCKET_EXPLOSION); + } + gi.WritePosition (origin); + gi.multicast (ent->s.origin, MULTICAST_PHS); + + G_FreeEdict (ent); +}*/ + +static void Grenade_Explode (edict_t *ent) +{ + vec3_t origin, vec; + int mod; + trace_t tr; + + if (ent->owner->client) + PlayerNoise(ent->owner, ent->s.origin, PNOISE_IMPACT); + + if (ent->enemy == ent->owner) + ent->enemy = NULL; + + //FIXME: if we are onground then raise our Z just a bit since we are a point? + /* + if (ent->enemy) + { + float points; + vec3_t v; + vec3_t dir; + + VectorAdd (ent->enemy->mins, ent->enemy->maxs, v); + VectorMA (ent->enemy->s.origin, 0.5, v, v); + VectorSubtract (ent->s.origin, v, v); + points = ent->dmg - 0.5 * VectorLength (v); + VectorSubtract (ent->enemy->s.origin, ent->s.origin, dir); + if (ent->spawnflags & 1) + mod = MOD_HANDGRENADE; + else + mod = MOD_GRENADE; + T_Damage (ent->enemy, ent, ent->owner, dir, ent->s.origin, vec3_origin, (int)points, (int)points, DAMAGE_RADIUS, mod); + } + */ + + if (ent->spawnflags & 2) + mod = MOD_HELD_GRENADE; + else if (ent->spawnflags & 1) + mod = MOD_HG_SPLASH; + else + mod = MOD_G_SPLASH; + + T_RadiusDamage(ent, ent->owner, ent->dmg, ent->enemy, ent->dmg_radius, mod); + + VectorMA (ent->s.origin, -0.02, ent->velocity, origin); + + // Ridah, trace a line to this "origin" to make sure it isn't in a solid (in which case the explosion won't show) + if (!VectorCompare( ent->velocity, vec3_origin)) + { + tr = gi.trace( ent->s.origin, NULL, NULL, origin, ent, MASK_SOLID ); + if (tr.fraction < 1) + VectorCopy(ent->s.origin, origin); + } + + gi.WriteByte (svc_temp_entity); + + if (!ent->enemy) + { + VectorClear( vec ); + vec[2] = 1; + } + else + { + VectorSubtract( ent->s.origin, ent->enemy->s.origin, vec ); + VectorNormalize( vec ); + } + + if (ent->waterlevel) + { + gi.WriteByte (TE_CONCUSSION_EXPLOSION_WATER); + } + else + { + gi.WriteByte (TE_CONCUSSION_EXPLOSION_BIG); + } + gi.WritePosition (origin); + gi.WriteDir( vec ); + gi.WriteByte( (int)(ent->dmg) ); + gi.multicast (ent->s.origin, MULTICAST_PHS); + + G_FreeEdict (ent); +} +// END JOSEPH + + +// JOSEPH +static void Grenade_Touch (edict_t *ent, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + + if (other == ent->owner) + return; + + if (other->takedamage) + return; + + if (surf && (surf->flags & SURF_SKY)) + { + G_FreeEdict (ent); + return; + } + + if (surf && (surf->flags & SURF_ALPHA)) + { + // Grenade gets stuck in alpha surface + if (!(crandom() < .85)) + { + ent->gravity = 0; + VectorClear (ent->velocity); + VectorClear (ent->avelocity); + return; + } + } + + if (!other->takedamage) + { + VectorSet (ent->avelocity, crandom()*1000, crandom()*1000, crandom()*1000); + + if ((rand()%100) > 66) + gi.sound (ent, CHAN_VOICE, gi.soundindex ("weapons/grenade_launcher/grenade bounce1.wav"), 1, ATTN_NORM, 0); + else if ((rand()%100) > 50) + gi.sound (ent, CHAN_VOICE, gi.soundindex ("weapons/grenade_launcher/grenade bounce2.wav"), 1, ATTN_NORM, 0); + else + gi.sound (ent, CHAN_VOICE, gi.soundindex ("weapons/grenade_launcher/grenade bounce3.wav"), 1, ATTN_NORM, 0); + + // Ridah, Grenade Avoidance: notify AI of our existance + AI_AvoidDangerousEntity( ent ); + // done. + + return; + } + + + ent->enemy = other; + Grenade_Explode (ent); +} +// END JOSEPH + + +void fire_grenade (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int speed, float timer, float damage_radius) +{ + edict_t *grenade; + vec3_t dir; + vec3_t forward, right, up; + + vectoangles (aimdir, dir); + AngleVectors (dir, forward, right, up); + + grenade = G_Spawn(); + VectorCopy (start, grenade->s.origin); + VectorScale (aimdir, speed, grenade->velocity); + VectorMA (grenade->velocity, 200 + crandom() * 10.0, up, grenade->velocity); + VectorMA (grenade->velocity, crandom() * 10.0, right, grenade->velocity); + VectorSet (grenade->avelocity, 150*(-1 + 2*(rand()%2)), 150*crandom(), 800); + VectorCopy( dir, grenade->s.angles ); + + // grenade->movetype = MOVETYPE_TOSS_SLIDE;//MOVETYPE_BOUNCE; + + // the movetype_toss_slide is crashing the game + grenade->movetype = MOVETYPE_BOUNCE; + + grenade->clipmask = MASK_SHOT; + grenade->solid = SOLID_BBOX; + grenade->s.effects |= EF_GRENADE; + VectorClear (grenade->mins); + VectorClear (grenade->maxs); + + // JOSEPH 30-APR-99 + grenade->s.modelindex = gi.modelindex ("models/weapons/grenade/tris.md2"); + // END JOSEPH + + grenade->owner = self; + grenade->touch = Grenade_Touch; + grenade->nextthink = level.time + timer; + grenade->think = Grenade_Explode; + grenade->dmg = damage; + grenade->dmg_radius = damage_radius; + grenade->classname = "grenade"; + + grenade->s.renderfx2 |= RF2_NOSHADOW; + grenade->s.renderfx |= RF_REFL_MAP; + // END JOSEPH + + // Ridah, Grenade Avoidance: notify AI of our existance +/* + { + trace_t tr; + + VectorMA( grenade->s.origin, 800, forward, dir ); + + tr = gi.trace( grenade->s.origin, NULL, NULL, dir, self, MASK_SHOT ); + + VectorCopy( grenade->s.origin, dir ); + VectorCopy( tr.endpos, grenade->s.origin ); + VectorMA( grenade->s.origin, -16, forward, grenade->s.origin ); +*/ + AI_AvoidDangerousEntity( self/*grenade*/ ); +/* + VectorCopy( dir, grenade->s.origin ); + } +*/ + // done. + + gi.linkentity (grenade); +} + + +// JOSEPH 19-MAY-99 +void fire_dynamite (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int speed, float timer, float damage_radius) +{ + edict_t *grenade; + vec3_t dir; + vec3_t forward, right, up; + + vectoangles (aimdir, dir); + AngleVectors (dir, forward, right, up); + + grenade = G_Spawn(); + VectorCopy (start, grenade->s.origin); + VectorScale (aimdir, speed, grenade->velocity); + VectorMA (grenade->velocity, 200 + crandom() * 10.0, up, grenade->velocity); + VectorMA (grenade->velocity, crandom() * 10.0, right, grenade->velocity); + + // the movetype_toss_slide is crashing the game + grenade->movetype = MOVETYPE_BOUNCE; + + grenade->clipmask = MASK_SHOT; + grenade->solid = SOLID_BBOX; + grenade->s.effects |= EF_GRENADE; + VectorClear (grenade->mins); + VectorClear (grenade->maxs); + + grenade->s.modelindex = gi.modelindex ("models/props/dynomite/tris.md2"); + + grenade->owner = self; + grenade->touch = Grenade_Touch; + grenade->nextthink = level.time + timer; + grenade->think = Grenade_Explode; + grenade->dmg = damage; + grenade->dmg_radius = damage_radius; + grenade->classname = "grenade"; + + grenade->s.renderfx2 |= RF2_NOSHADOW; + grenade->s.renderfx |= RF_REFL_MAP; + + AI_AvoidDangerousEntity( self); + + gi.linkentity (grenade); +} +// END JOSEPH + +void fire_grenade2 (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int speed, float timer, float damage_radius, qboolean held) +{ + edict_t *grenade; + vec3_t dir; + vec3_t forward, right, up; + + vectoangles (aimdir, dir); + AngleVectors (dir, forward, right, up); + + grenade = G_Spawn(); + VectorCopy (start, grenade->s.origin); + VectorScale (aimdir, speed, grenade->velocity); + VectorMA (grenade->velocity, 200 + crandom() * 10.0, up, grenade->velocity); + VectorMA (grenade->velocity, crandom() * 10.0, right, grenade->velocity); + VectorSet (grenade->avelocity, 300, 300, 300); + grenade->movetype = MOVETYPE_BOUNCE; + grenade->clipmask = MASK_SHOT; + grenade->solid = SOLID_BBOX; + grenade->s.effects |= EF_GRENADE; + VectorClear (grenade->mins); + VectorClear (grenade->maxs); + grenade->s.modelindex = gi.modelindex ("models/objects/grenade2/tris.md2"); + grenade->owner = self; + grenade->touch = Grenade_Touch; + grenade->nextthink = level.time + timer; + grenade->think = Grenade_Explode; + grenade->dmg = damage; + grenade->dmg_radius = damage_radius; + grenade->classname = "hgrenade"; + if (held) + grenade->spawnflags = 3; + else + grenade->spawnflags = 1; + grenade->s.sound = gi.soundindex("weapons/grenade_launcher/hgrenc1b.wav"); + + if (timer <= 0.0) + Grenade_Explode (grenade); + else + { + gi.sound (self, CHAN_WEAPON, gi.soundindex ("weapons/grenade_launcher/hgrent1a.wav"), 1, ATTN_NORM, 0); + gi.linkentity (grenade); + } +} + + + +/* +================= +fire_rocket +================= +*/ +void rocket_touch (edict_t *ent, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + vec3_t origin, vec; + + if (other == ent->owner) + return; + + if (surf && (surf->flags & SURF_SKY)) + { + G_FreeEdict (ent); + return; + } + + if (ent->owner->client) + PlayerNoise(ent->owner, ent->s.origin, PNOISE_IMPACT); + + // calculate position for the explosion entity + VectorMA (ent->s.origin, -0.02, ent->velocity, origin); + + if (other->takedamage) + { + T_Damage (other, ent, ent->owner, ent->velocity, ent->s.origin, plane->normal, ent->dmg, ent->dmg, 0, MOD_ROCKET); + } + else + { +/* + // don't throw any debris in net games + if (!deathmatch->value && !coop->value) + { + if ((surf) && !(surf->flags & (SURF_WARP|SURF_TRANS33|SURF_TRANS66|SURF_FLOWING))) + { + n = rand() % 5; + while(n--) + ThrowDebris (ent, "models/props/glass/glass2.md2", 2, ent->s.origin); + } + } +*/ + } + + T_RadiusDamage(ent, ent->owner, ent->radius_dmg, other, ent->dmg_radius, MOD_R_SPLASH); + + gi.WriteByte (svc_temp_entity); + + if (other->takedamage || !plane) + { + VectorSubtract( ent->s.origin, other->s.origin, vec ); + VectorNormalize( vec ); + } + else + { + VectorCopy( plane->normal, vec ); + } + + if (ent->waterlevel) + { + gi.WriteByte (TE_CONCUSSION_EXPLOSION_WATER); + } + else + { + gi.WriteByte (TE_CONCUSSION_EXPLOSION); + } + gi.WritePosition (origin); + gi.WriteDir( vec ); + gi.WriteByte( (int)(ent->dmg / 2) ); + gi.multicast (ent->s.origin, MULTICAST_PHS); +/* + gi.WriteByte (svc_temp_entity); + if (ent->waterlevel) + gi.WriteByte (TE_ROCKET_EXPLOSION_WATER); + else + gi.WriteByte (TE_ROCKET_EXPLOSION); + gi.WritePosition (origin); + gi.multicast (ent->s.origin, MULTICAST_PHS); +*/ + G_FreeEdict (ent); +} + +void rocket_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + self->takedamage = DAMAGE_NO; + rocket_touch( self, self, NULL, NULL ); +} + + +void fire_rocket (edict_t *self, vec3_t start, vec3_t dir, int damage, int speed, float damage_radius, int radius_damage) +{ + edict_t *rocket; + + rocket = G_Spawn(); + VectorCopy (start, rocket->s.origin); + VectorCopy (dir, rocket->movedir); + vectoangles (dir, rocket->s.angles); + VectorScale (dir, speed, rocket->velocity); + rocket->movetype = MOVETYPE_FLYMISSILE; + rocket->clipmask = MASK_SHOT; + rocket->solid = SOLID_BBOX; + rocket->s.effects |= EF_ROCKET; + VectorClear (rocket->mins); + VectorClear (rocket->maxs); + // JOSEPH 24-FEB-99 + rocket->s.modelindex = gi.modelindex ("models/weapons/shella/tris.md2"); + rocket->s.renderfx2 |= RF2_NOSHADOW; + // END JOSEPH + rocket->owner = self; + rocket->touch = rocket_touch; + rocket->nextthink = level.time + 8000/speed; + rocket->think = G_FreeEdict; + rocket->dmg = damage; + rocket->radius_dmg = radius_damage; + rocket->dmg_radius = damage_radius; + // JOSEPH 29-MAR-99 + //rocket->s.sound = gi.soundindex ("weapons/bazooka/rockfly.wav"); + // END JOSEPH + rocket->classname = "rocket"; + + rocket->health = 10; + rocket->takedamage = DAMAGE_YES; + rocket->die = rocket_die; + + PlayerNoise(self, start, PNOISE_WEAPON); + + // gi.sound (self, CHAN_WEAPON, gi.soundindex ("weapons/bazooka/baz_fire.wav"), 1, ATTN_NORM, 0); + + if (self->client) + check_dodge (self, rocket->s.origin, dir, speed); + + gi.linkentity (rocket); +} + + +/* +================= +fire_rail +================= +*/ +void fire_rail (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int kick) +{ + vec3_t from; + vec3_t end; + trace_t tr; + edict_t *ignore; + int mask; + qboolean water; + + VectorMA (start, 8192, aimdir, end); + VectorCopy (start, from); + ignore = self; + water = false; + mask = MASK_SHOT|CONTENTS_SLIME|CONTENTS_LAVA; + while (ignore) + { + tr = gi.trace (from, NULL, NULL, end, ignore, mask); + + if (tr.contents & (CONTENTS_SLIME|CONTENTS_LAVA)) + { + mask &= ~(CONTENTS_SLIME|CONTENTS_LAVA); + water = true; + } + else + { + if ((tr.ent->svflags & SVF_MONSTER) || (tr.ent->client)) + ignore = tr.ent; + else + ignore = NULL; + + if ((tr.ent != self) && (tr.ent->takedamage)) + T_Damage (tr.ent, self, self, aimdir, tr.endpos, tr.plane.normal, damage, kick, 0, MOD_RAILGUN); + } + + VectorCopy (tr.endpos, from); + } + + // send gun puff / flash + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_RAILTRAIL); + gi.WritePosition (start); + gi.WritePosition (tr.endpos); + gi.WriteDir (tr.plane.normal); + gi.multicast (self->s.origin, MULTICAST_PHS); + + if (self->client) + PlayerNoise(self, tr.endpos, PNOISE_IMPACT); +} + + +/* +================= +fire_bfg +================= +*/ +void bfg_explode (edict_t *self) +{ + edict_t *ent; + float points; + vec3_t v; + float dist; + + if (self->s.frame == 0) + { + // the BFG effect + ent = NULL; + while ((ent = findradius(ent, self->s.origin, self->dmg_radius)) != NULL) + { + if (!ent->takedamage) + continue; + if (ent == self->owner) + continue; + if (!CanDamage (ent, self)) + continue; + if (!CanDamage (ent, self->owner)) + continue; + + VectorAdd (ent->mins, ent->maxs, v); + VectorMA (ent->s.origin, 0.5, v, v); + VectorSubtract (self->s.origin, v, v); + dist = VectorLength(v); + points = self->radius_dmg * (1.0 - sqrt(dist/self->dmg_radius)); + if (ent == self->owner) + points = points * 0.5; + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_BFG_EXPLOSION); + gi.WritePosition (ent->s.origin); + gi.multicast (ent->s.origin, MULTICAST_PHS); + T_Damage (ent, self, self->owner, self->velocity, ent->s.origin, vec3_origin, (int)points, 0, DAMAGE_ENERGY, MOD_BFG_EFFECT); + } + } + + self->nextthink = level.time + FRAMETIME; + self->s.frame++; + if (self->s.frame == 5) + self->think = G_FreeEdict; +} + +void bfg_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + if (other == self->owner) + return; + + if (surf && (surf->flags & SURF_SKY)) + { + G_FreeEdict (self); + return; + } + + if (self->owner->client) + PlayerNoise(self->owner, self->s.origin, PNOISE_IMPACT); + + // core explosion - prevents firing it into the wall/floor + if (other->takedamage) + T_Damage (other, self, self->owner, self->velocity, self->s.origin, plane->normal, 200, 0, 0, MOD_BFG_BLAST); + T_RadiusDamage(self, self->owner, 200, other, 100, MOD_BFG_BLAST); + + gi.sound (self, CHAN_VOICE, gi.soundindex ("weapons/bfg__x1b.wav"), 1, ATTN_NORM, 0); + self->solid = SOLID_NOT; + self->touch = NULL; + VectorMA (self->s.origin, -1 * FRAMETIME, self->velocity, self->s.origin); + VectorClear (self->velocity); + self->s.modelindex = gi.modelindex ("sprites/s_bfg3.sp2"); + self->s.frame = 0; + self->s.sound = 0; + self->s.effects &= ~EF_ANIM_ALLFAST; + self->think = bfg_explode; + self->nextthink = level.time + FRAMETIME; + self->enemy = other; + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_BFG_BIGEXPLOSION); + gi.WritePosition (self->s.origin); + gi.multicast (self->s.origin, MULTICAST_PVS); +} + + +void bfg_think (edict_t *self) +{ + edict_t *ent; + edict_t *ignore; + vec3_t point; + vec3_t dir; + vec3_t start; + vec3_t end; + int dmg; + trace_t tr; + + if (deathmatch->value) + dmg = 5; + else + dmg = 10; + + ent = NULL; + while ((ent = findradius(ent, self->s.origin, 256)) != NULL) + { + if (ent == self) + continue; + + if (ent == self->owner) + continue; + + if (!ent->takedamage) + continue; + + if (!(ent->svflags & SVF_MONSTER) && (!ent->client) && (strcmp(ent->classname, "misc_explobox") != 0)) + continue; + + VectorMA (ent->absmin, 0.5, ent->size, point); + + VectorSubtract (point, self->s.origin, dir); + VectorNormalize (dir); + + ignore = self; + VectorCopy (self->s.origin, start); + VectorMA (start, 2048, dir, end); + while(1) + { + tr = gi.trace (start, NULL, NULL, end, ignore, CONTENTS_SOLID|CONTENTS_MONSTER|CONTENTS_DEADMONSTER); + + if (!tr.ent) + break; + + // hurt it if we can + if ((tr.ent->takedamage) && !(tr.ent->flags & FL_IMMUNE_LASER) && (tr.ent != self->owner)) + T_Damage (tr.ent, self, self->owner, dir, tr.endpos, vec3_origin, dmg, 1, DAMAGE_ENERGY, MOD_BFG_LASER); + + // if we hit something that's not a monster or player we're done + if (!(tr.ent->svflags & SVF_MONSTER) && (!tr.ent->client)) + { + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_LASER_SPARKS); + gi.WriteByte (4); + gi.WritePosition (tr.endpos); + gi.WriteDir (tr.plane.normal); + gi.WriteByte (self->s.skinnum); + gi.multicast (tr.endpos, MULTICAST_PVS); + break; + } + + ignore = tr.ent; + VectorCopy (tr.endpos, start); + } + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_BFG_LASER); + gi.WritePosition (self->s.origin); + gi.WritePosition (tr.endpos); + gi.multicast (self->s.origin, MULTICAST_PHS); + } + + self->nextthink = level.time + FRAMETIME; +} + + +void fire_bfg (edict_t *self, vec3_t start, vec3_t dir, int damage, int speed, float damage_radius) +{ + edict_t *bfg; + + bfg = G_Spawn(); + VectorCopy (start, bfg->s.origin); + VectorCopy (dir, bfg->movedir); + vectoangles (dir, bfg->s.angles); + VectorScale (dir, speed, bfg->velocity); + bfg->movetype = MOVETYPE_FLYMISSILE; + bfg->clipmask = MASK_SHOT; + bfg->solid = SOLID_BBOX; + bfg->s.effects |= EF_BFG | EF_ANIM_ALLFAST; + VectorClear (bfg->mins); + VectorClear (bfg->maxs); + bfg->s.modelindex = gi.modelindex ("sprites/s_bfg1.sp2"); + bfg->owner = self; + bfg->touch = bfg_touch; + bfg->nextthink = level.time + 8000/speed; + bfg->think = G_FreeEdict; + bfg->radius_dmg = damage; + bfg->dmg_radius = damage_radius; + bfg->classname = "bfg blast"; + bfg->s.sound = gi.soundindex ("weapons/bfg__l1a.wav"); + + bfg->think = bfg_think; + bfg->nextthink = level.time + FRAMETIME; + bfg->teammaster = bfg; + bfg->teamchain = NULL; + + if (self->client) + check_dodge (self, bfg->s.origin, dir, speed); + + gi.linkentity (bfg); +} + + +// RAFAEL + +/* + fire_ionripper +*/ + +void ionripper_sparks (edict_t *self) +{ + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_WELDING_SPARKS); + gi.WriteByte (0); + gi.WritePosition (self->s.origin); + gi.WriteDir (vec3_origin); + gi.WriteByte (0xe4 + (rand()&3)); + gi.multicast (self->s.origin, MULTICAST_PVS); + + G_FreeEdict (self); +} + +// RAFAEL +void ionripper_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + if (other == self->owner) + return; + + if (surf && (surf->flags & SURF_SKY)) + { + G_FreeEdict (self); + return; + } + + if (self->owner->client) + PlayerNoise (self->owner, self->s.origin, PNOISE_IMPACT); + + if (other->takedamage) + { + T_Damage (other, self, self->owner, self->velocity, self->s.origin, plane->normal, self->dmg, 1, DAMAGE_ENERGY, MOD_RIPPER); + + } + else + { + return; + } + + G_FreeEdict (self); +} + +/* +// RAFAEL +void fire_ionripper (edict_t *self, vec3_t start, vec3_t dir, int damage, int speed, int effect) +{ + edict_t *ion; + trace_t tr; + + VectorNormalize (dir); + + ion = G_Spawn (); + VectorCopy (start, ion->s.origin); + VectorCopy (start, ion->s.old_origin); + vectoangles (dir, ion->s.angles); + VectorScale (dir, speed, ion->velocity); + + ion->movetype = MOVETYPE_WALLBOUNCE; + ion->clipmask = MASK_SHOT; + ion->solid = SOLID_BBOX; + ion->s.effects |= effect; + + ion->s.renderfx |= RF_FULLBRIGHT; + + VectorClear (ion->mins); + VectorClear (ion->maxs); + ion->s.modelindex = gi.modelindex ("models/objects/boomrang/tris.md2"); + ion->s.sound = gi.soundindex ("misc/lasfly.wav"); + ion->owner = self; + ion->touch = ionripper_touch; + ion->nextthink = level.time + 3; + ion->think = ionripper_sparks; + ion->dmg = damage; + ion->dmg_radius = 100; + gi.linkentity (ion); + + if (self->client) + check_dodge (self, ion->s.origin, dir, speed); + + tr = gi.trace (self->s.origin, NULL, NULL, ion->s.origin, ion, MASK_SHOT); + if (tr.fraction < 1.0) + { + VectorMA (ion->s.origin, -10, dir, ion->s.origin); + ion->touch (ion, tr.ent, NULL, NULL); + } + +} +*/ + +// RAFAEL +/* +fire_heat +*/ + + +void heat_think (edict_t *self) +{ + edict_t *target = NULL; + edict_t *aquire = NULL; + vec3_t vec; + vec3_t oldang; + int len; + int oldlen = 0; + + VectorClear (vec); + + // aquire new target + while (( target = findradius (target, self->s.origin, 1024)) != NULL) + { + + if (self->owner == target) + continue; + // JOSEPH 14-MAY-99 + if (!(target->svflags & SVF_MONSTER)) + continue; + // END JOSEPH + if (!target->client) + continue; + if (target->health <= 0) + continue; + if (!visible (self, target)) + continue; + + // if we need to reduce the tracking cone + /* + { + vec3_t vec; + float dot; + vec3_t forward; + + AngleVectors (self->s.angles, forward, NULL, NULL); + VectorSubtract (target->s.origin, self->s.origin, vec); + VectorNormalize (vec); + dot = DotProduct (vec, forward); + + if (dot > 0.6) + continue; + } + */ + + if (!infront (self, target)) + continue; + + VectorSubtract (self->s.origin, target->s.origin, vec); + len = VectorLength (vec); + + if (aquire == NULL || len < oldlen) + { + aquire = target; + self->target_ent = aquire; + oldlen = len; + } + } + + if (aquire != NULL) + { + VectorCopy (self->s.angles, oldang); + VectorSubtract (aquire->s.origin, self->s.origin, vec); + + vectoangles (vec, self->s.angles); + + VectorNormalize (vec); + VectorCopy (vec, self->movedir); + VectorScale (vec, 500, self->velocity); + } + + self->nextthink = level.time + 0.1; +} + +// RAFAEL +void fire_heat (edict_t *self, vec3_t start, vec3_t dir, int damage, int speed, float damage_radius, int radius_damage) +{ + edict_t *heat; + + heat = G_Spawn(); + VectorCopy (start, heat->s.origin); + VectorCopy (dir, heat->movedir); + vectoangles (dir, heat->s.angles); + VectorScale (dir, speed, heat->velocity); + heat->movetype = MOVETYPE_FLYMISSILE; + heat->clipmask = MASK_SHOT; + heat->solid = SOLID_BBOX; + heat->s.effects |= EF_ROCKET; + VectorClear (heat->mins); + VectorClear (heat->maxs); + heat->s.modelindex = gi.modelindex ("models/objects/rocket/tris.md2"); + heat->owner = self; + heat->touch = rocket_touch; + + heat->nextthink = level.time + 0.1; + heat->think = heat_think; + + heat->dmg = damage; + heat->radius_dmg = radius_damage; + heat->dmg_radius = damage_radius; + // JOSEPH 29-MAR-99 + //heat->s.sound = gi.soundindex ("weapons/rocket_launcher/rockfly.wav"); + // END JOSEPH + + if (self->client) + check_dodge (self, heat->s.origin, dir, speed); + + gi.linkentity (heat); +} + + + +// RAFAEL + +/* + fire_plasma +*/ + +void plasma_touch (edict_t *ent, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + vec3_t origin; + + if (other == ent->owner) + return; + + if (surf && (surf->flags & SURF_SKY)) + { + G_FreeEdict (ent); + return; + } + + if (ent->owner->client) + PlayerNoise(ent->owner, ent->s.origin, PNOISE_IMPACT); + + // calculate position for the explosion entity + VectorMA (ent->s.origin, -0.02, ent->velocity, origin); + + if (other->takedamage) + { + T_Damage (other, ent, ent->owner, ent->velocity, ent->s.origin, plane->normal, ent->dmg, 0, 0, MOD_PHALANX); + } + + T_RadiusDamage(ent, ent->owner, ent->radius_dmg, other, ent->dmg_radius, MOD_PHALANX); + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_PLASMA_EXPLOSION); + gi.WritePosition (origin); + gi.multicast (ent->s.origin, MULTICAST_PVS); + + G_FreeEdict (ent); +} + + +// RAFAEL +void fire_plasma (edict_t *self, vec3_t start, vec3_t dir, int damage, int speed, float damage_radius, int radius_damage) +{ + edict_t *plasma; + + plasma = G_Spawn(); + VectorCopy (start, plasma->s.origin); + VectorCopy (dir, plasma->movedir); + vectoangles (dir, plasma->s.angles); + VectorScale (dir, speed, plasma->velocity); + plasma->movetype = MOVETYPE_FLYMISSILE; + plasma->clipmask = MASK_SHOT; + plasma->solid = SOLID_BBOX; + + VectorClear (plasma->mins); + VectorClear (plasma->maxs); + + plasma->owner = self; + plasma->touch = plasma_touch; + plasma->nextthink = level.time + 8000/speed; + plasma->think = G_FreeEdict; + plasma->dmg = damage; + plasma->radius_dmg = radius_damage; + plasma->dmg_radius = damage_radius; + // JOSEPH 29-MAR-99 + //plasma->s.sound = gi.soundindex ("weapons/rocket_launcher/rockfly.wav"); + // END JOSEPH + + plasma->s.modelindex = gi.modelindex ("sprites/s_photon.sp2"); + plasma->s.effects |= EF_PLASMA | EF_ANIM_ALLFAST; + + if (self->client) + check_dodge (self, plasma->s.origin, dir, speed); + + gi.linkentity (plasma); + + +} + +// RAFAEL +extern void SP_item_foodcube (edict_t *best); +// RAFAEL +static void Trap_Think (edict_t *ent) +{ + edict_t *target = NULL; + edict_t *best = NULL; + vec3_t vec; + int len, i; + int oldlen = 8000; + vec3_t forward, right, up; + + if (ent->timestamp < level.time) + { + BecomeExplosion1(ent); + // note to self + // cause explosion damage??? + return; + } + + ent->nextthink = level.time + 0.1; + + if (!ent->groundentity) + return; + + // ok lets do the blood effect + if (ent->s.frame > 4) + { + if (ent->s.frame == 5) + { + if (ent->wait == 64) + gi.sound(ent, CHAN_VOICE, gi.soundindex ("weapons/trapdown.wav"), 1, ATTN_IDLE, 0); + + ent->wait -= 2; + ent->delay += level.time; + + for (i=0; i<3; i++) + { + + best = G_Spawn(); + + if (strcmp (ent->enemy->classname, "monster_gekk") == 0) + { + best->s.modelindex = gi.modelindex ("models/objects/gekkgib/torso/tris.md2"); + best->s.effects |= TE_GREENBLOOD; + } + else if (ent->mass > 200) + { + best->s.modelindex = gi.modelindex ("models/objects/gibs/chest/tris.md2"); + best->s.effects |= TE_BLOOD; + } + else + { + best->s.modelindex = gi.modelindex ("models/objects/gibs/sm_meat/tris.md2"); + best->s.effects |= TE_BLOOD; + } + + AngleVectors (ent->s.angles, forward, right, up); + + RotatePointAroundVector( vec, up, right, ((360.0/3)* i)+ent->delay); + VectorMA (vec, ent->wait/2, vec, vec); + VectorAdd(vec, ent->s.origin, vec); + VectorAdd(vec, forward, best->s.origin); + + best->s.origin[2] = ent->s.origin[2] + ent->wait; + + VectorCopy (ent->s.angles, best->s.angles); + + best->solid = SOLID_NOT; + best->s.effects |= EF_GIB; + best->takedamage = DAMAGE_YES; + + best->movetype = MOVETYPE_TOSS; + best->svflags |= SVF_MONSTER; + best->deadflag = DEAD_DEAD; + + VectorClear (best->mins); + VectorClear (best->maxs); + + best->watertype = gi.pointcontents(best->s.origin); + if (best->watertype & MASK_WATER) + best->waterlevel = 1; + + best->nextthink = level.time + 0.1; + best->think = G_FreeEdict; + gi.linkentity (best); + } + + if (ent->wait < 19) + ent->s.frame ++; + + return; + } + ent->s.frame ++; + if (ent->s.frame == 8) + { + ent->nextthink = level.time + 1.0; + ent->think = G_FreeEdict; + + best = G_Spawn (); + SP_item_foodcube (best); + VectorCopy (ent->s.origin, best->s.origin); + best->s.origin[2]+= 16; + best->velocity[2] = 400; + best->count = ent->mass; + gi.linkentity (best); + return; + } + return; + } + + ent->s.effects &= ~EF_TRAP; + if (ent->s.frame >= 4) + { + ent->s.effects |= EF_TRAP; + VectorClear (ent->mins); + VectorClear (ent->maxs); + + } + + if (ent->s.frame < 4) + ent->s.frame++; + + while ((target = findradius(target, ent->s.origin, 256)) != NULL) + { + if (target == ent) + continue; + if (!(target->svflags & SVF_MONSTER) && !target->client) + continue; + if (target == ent->owner) + continue; + if (target->health <= 0) + continue; + if (!visible (ent, target)) + continue; + if (!best) + { + best = target; + continue; + } + VectorSubtract (ent->s.origin, target->s.origin, vec); + len = VectorLength (vec); + if (len < oldlen) + { + oldlen = len; + best = target; + } + } + + // pull the enemy in + if (best) + { + vec3_t forward; + + if (best->groundentity) + { + best->s.origin[2] += 1; + best->groundentity = NULL; + } + VectorSubtract (ent->s.origin, best->s.origin, vec); + len = VectorLength (vec); + if (best->client) + { + VectorNormalize (vec); + VectorMA (best->velocity, 250, vec, best->velocity); + } + else + { + best->ideal_yaw = vectoyaw(vec); + M_ChangeYaw (best); + AngleVectors (best->s.angles, forward, NULL, NULL); + VectorScale (forward, 256, best->velocity); + } + + gi.sound(ent, CHAN_VOICE, gi.soundindex ("weapons/trapsuck.wav"), 1, ATTN_IDLE, 0); + + if (len < 32) + { + if (best->mass < 400) + { + T_Damage (best, ent, ent, vec3_origin, best->s.origin, vec3_origin, 100000, 1, 0, MOD_TRAP); + ent->enemy = best; + ent->wait = 64; + VectorCopy (ent->s.origin, ent->s.old_origin); + ent->timestamp = level.time + 30; + ent->mass = best->mass/4; + // ok spawn the food cube + ent->s.frame = 5; + } + else + { + BecomeExplosion1(ent); + // note to self + // cause explosion damage??? + return; + } + + } + } + + +} + + +// RAFAEL +void fire_trap (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int speed, float timer, float damage_radius, qboolean held) +{ + edict_t *trap; + vec3_t dir; + vec3_t forward, right, up; + + vectoangles (aimdir, dir); + AngleVectors (dir, forward, right, up); + + trap = G_Spawn(); + VectorCopy (start, trap->s.origin); + VectorScale (aimdir, speed, trap->velocity); + VectorMA (trap->velocity, 200 + crandom() * 10.0, up, trap->velocity); + VectorMA (trap->velocity, crandom() * 10.0, right, trap->velocity); + VectorSet (trap->avelocity, 0, 300, 0); + trap->movetype = MOVETYPE_BOUNCE; + trap->clipmask = MASK_SHOT; + trap->solid = SOLID_BBOX; +// VectorClear (trap->mins); +// VectorClear (trap->maxs); + VectorSet (trap->mins, -4, -4, 0); + VectorSet (trap->maxs, 4, 4, 8); + trap->s.modelindex = gi.modelindex ("models/weapons/z_trap/tris.md2"); + trap->owner = self; + trap->nextthink = level.time + 1.0; + trap->think = Trap_Think; + trap->dmg = damage; + trap->dmg_radius = damage_radius; + trap->classname = "htrap"; + // RAFAEL 16-APR-98 + trap->s.sound = gi.soundindex ("weapons/traploop.wav"); + // END 16-APR-98 + if (held) + trap->spawnflags = 3; + else + trap->spawnflags = 1; + + if (timer <= 0.0) + Grenade_Explode (trap); + else + { + // gi.sound (self, CHAN_WEAPON, gi.soundindex ("weapons/trapdown.wav"), 1, ATTN_NORM, 0); + gi.linkentity (trap); + } + + trap->timestamp = level.time + 30; + +} + +//---------------------------------------------------------------------------------------------------- +// Flame-Thrower + +// copied from CL_FlameEffects() +#define FLAME_SPEED 750.0 // increase to make it longer +#define FLAME_INC 0.6 // decrease to spawn more flame sprites (more overlapping) +#define FLAME_RAND_SIZE 0.3 // range from 0.0 -> 2.0 +#define FLAME_RAND_ALPHA 0.3 // range from 0.0 -> 2.0 +#define FLAME_START_OFFSET 24.0 +#define FLAME_LIFETIME 0.8 +#define FLAME_BLUE_LENGTH 42.0 + +static vec3_t jmins = {-16, -16, 0}; +static vec3_t jmaxs = { 16, 16, 24}; + +void FlameJunc_Think( edict_t *self ) +{ + vec3_t oldorg; + trace_t tr; + + VectorCopy( self->s.origin, oldorg ); + + // move it + VectorMA( self->s.origin, FRAMETIME, self->velocity, self->s.origin ); + + tr = gi.trace( oldorg, jmins, jmaxs, self->s.origin, NULL, MASK_SOLID ); + + if (tr.fraction < 1) + { // copied from ClipVelocity() + #define STOP_EPSILON 0.1 + + float backoff; + float change; + int i; + + // go through alpha surfaces + if (tr.contents & MASK_ALPHA) + { + vec3_t start, unitvel; + float maxdist, dist; + + if (tr.startsolid) + maxdist = VectorLength( self->velocity ) * FRAMETIME; + else + maxdist = VectorLength( self->velocity ) * (1 - tr.fraction) * FRAMETIME; + + VectorNormalize2( self->velocity, unitvel ); + + VectorCopy( tr.endpos, start ); + dist = 4; + VectorMA( start, dist, unitvel, start ); + tr.startsolid = 1; // to get us started + + while ((dist < maxdist) && tr.startsolid && (tr.contents & MASK_ALPHA)) + { + tr = gi.trace ( start, jmins, jmaxs, self->s.origin, NULL, MASK_SOLID ); + + dist += 4; + VectorMA( start, 4, unitvel, start ); + } + + if (dist >= maxdist || tr.fraction == 1) + { + tr.fraction = 1; + goto skip_clip; + } + } + + backoff = DotProduct (self->velocity, tr.plane.normal) * 1.5; //slide + + for (i=0 ; i<3 ; i++) + { + change = tr.plane.normal[i]*backoff; + self->velocity[i] = self->velocity[i] - change; + if (self->velocity[i] > -STOP_EPSILON && self->velocity[i] < STOP_EPSILON) + self->velocity[i] = 0; + } + + VectorCopy( tr.endpos, self->s.origin ); + VectorMA( self->s.origin, 4, tr.plane.normal, self->s.origin ); + VectorNormalize2( self->velocity, self->last_step_pos ); + + if (!self->acc) + { + // slow it down + VectorScale( self->velocity, 0.5, self->velocity ); + } + + self->acc = true; + + if (strstr(tr.surface->name, "wood")) // spawn some smoke + { + static vec3_t last_pos; + static float last_time; + vec3_t sm_pos; + + // so we don't spawn too many sprites over each other + if (last_time > (level.time - 0.5)) + { + if (VectorDistance( last_pos, tr.endpos ) < (32 * (deathmatch->value+1))) + goto skip_smoke; + } + + last_time = level.time; + VectorCopy( tr.endpos, last_pos ); + + VectorMA( tr.endpos, 16, tr.plane.normal, sm_pos ); + sm_pos[2] -= 12; + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SFXSMOKE); + gi.WritePosition (sm_pos); + gi.WriteByte (48); + gi.WriteByte (0); + gi.multicast (tr.endpos, MULTICAST_PVS); + } + +skip_smoke:; + + } + +skip_clip: + +//NAV_DrawLine( self->s.old_origin, self->s.origin ); + + + // Now do the damage + +// if (self->biketime < level.time) + { + T_RadiusDamage( self, self->owner, self->dmg * (deathmatch->value ? 3 : 1), NULL, 128, MOD_FLAMETHROWER ); + self->biketime = level.time; + } + + if (self->timestamp <= level.time) + { + G_FreeEdict( self ); + return; + } + + self->nextthink = level.time + 0.1; +} + +// JOSEPH 23-OCT-98 +void fire_flamethrower (edict_t *self, vec3_t start, vec3_t forward, int damage, int kick, int mod) +{ + + trace_t tr; + vec3_t end, xforward, xright, xup, dir; + vec3_t org, oldorg; +// float r, u; + edict_t *junc; + + static vec3_t mins = {-2, -2, -4}; + static vec3_t maxs = { 2, 2, 4}; + + + if (self->waterlevel > 1) + { +// gi.dprintf( "SOUND TODO: Flamethrower under water\n" ); + return; + } + + + vectoangles (forward, dir); + AngleVectors (dir, xforward, xright, xup); + + // find the start position (using same as CL_FlameEffects() ) + VectorCopy( self->s.origin, org ); + org[2] -= 32; + VectorMA ( org, FLAME_START_OFFSET, forward, org ); + VectorMA ( org, 7, xright, org ); + org[2] += 64.5; + VectorMA ( org, -5.5, xup, org ); + + VectorCopy( org, start ); + VectorMA( start, 8, xup, start ); + VectorMA ( start, (FLAME_SPEED*FLAME_LIFETIME), xforward, end ); + + + tr = gi.trace (start, mins, maxs, end, self, MASK_SOLID); + + PlayerNoise(self, start, PNOISE_WEAPON); + + if (!(self->svflags & SVF_MONSTER)) + { + if (tr.startsolid || tr.fraction * FLAME_SPEED * FLAME_LIFETIME < 32) // hurt self + { + if (tr.ent->takedamage) + T_Damage (tr.ent, self, self, forward, self->s.origin, vec3_origin, damage, kick, 10, mod); + + T_Damage (self, self, self, forward, self->s.origin, vec3_origin, damage, kick, 10, mod); + gi.sound (self, CHAN_BODY, gi.soundindex ("world/fire.wav"), 1, ATTN_NORM, 0); + return; + } + } + + // Spawn a junction + junc = G_Spawn(); + VectorMA( org, 0, forward, junc->s.origin ); + VectorMA( junc->s.origin, -4, xup, junc->s.origin ); + VectorMA( junc->s.origin, 3, xright, junc->s.origin ); + VectorScale( forward, FLAME_SPEED, junc->velocity ); + VectorCopy( forward, junc->last_step_pos ); // last_step_pos is unit vel + + // move it to the fadein position + VectorCopy( junc->s.origin, oldorg ); + VectorMA( junc->s.origin, (FLAME_BLUE_LENGTH/FLAME_SPEED) * 2.5, junc->velocity, junc->s.origin ); + + // trace the spawning location + tr = gi.trace ( oldorg, jmins, jmaxs, junc->s.origin, self, MASK_SOLID ); + + VectorCopy( tr.endpos, junc->s.origin ); + + junc->dmg = damage; + junc->acc = 0; // hit wall flag + junc->biketime = 0; + junc->owner = self; + VectorCopy( junc->s.origin, junc->s.old_origin ); + + junc->timestamp = level.time + FLAME_LIFETIME; + + junc->think = FlameJunc_Think; + junc->nextthink = level.time + 0.1; + + + if (self->svflags & SVF_MONSTER) + { + if (self->enemy) + { + { + float dist; + vec3_t vec; + + VectorSubtract (self->s.origin, self->enemy->s.origin, vec); + dist = VectorLength (vec); + + if (dist < 64) + T_Damage (self->enemy, self, self, forward, self->s.origin, vec3_origin, 2, kick, 10, mod); + } + } + } +/* + if (!tr.ent->takedamage && (tr.fraction > 0.1)) + { + trace_t tr; + vec3_t mins, maxs; + vec3_t temp; + + VectorSet (mins, -16,-16,-16); + VectorSet (maxs, 16,16,16); + VectorCopy (self->s.origin, temp); + temp[2] += 36; + + tr = gi.trace (temp, mins, maxs, end, self, MASK_SHOT); + + if (strstr(tr.surface->name, "wood")) // spawn some smoke + { + static vec3_t last_pos; + static float last_time; + + // so we don't spawn too many sprites over each other + if (last_time > (level.time - 0.5)) + { + if (VectorDistance( last_pos, tr.endpos ) < 32) + goto skip_smoke; + } + + last_time = level.time; + VectorCopy( tr.endpos, last_pos ); + + VectorMA( tr.endpos, 16, tr.plane.normal, sm_pos ); + sm_pos[2] -= 12; + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SFXSMOKE); + gi.WritePosition (sm_pos); +// gi.WriteDir (tr.ent->s.angles); + gi.WriteByte (48); + gi.WriteByte (0); + gi.multicast (tr.endpos, MULTICAST_PVS); + } + +skip_smoke: + + return; + } + else + { + gi.sound (self, CHAN_VOICE, gi.soundindex ("weapons/flame_thrower/flame_thr.wav"), 1, ATTN_NORM, 0); + } + + if (tr.ent->health <= 0) + return; + + // Ridah, no need to do area-based damage with Flamethrower (uses CPU and isn't as precise as a bullet is anyway) + + T_Damage (tr.ent, self, self, forward, tr.endpos, tr.plane.normal, damage, kick, 10, mod); + + if (tr.ent->svflags & SVF_MONSTER) + { + if (tr.ent->cast_info.catch_fire) + tr.ent->cast_info.catch_fire( tr.ent, self ); + + if (tr.ent->onfiretime < -20) + { + tr.ent->onfiretime = 1; + + if (!(strcmp (tr.ent->classname, "cast_bitch"))) + gi.sound(tr.ent, CHAN_VOICE, gi.soundindex("actors/bitch/death.wav"), 1, ATTN_NORM, 0); + else + gi.sound(tr.ent, CHAN_VOICE, gi.soundindex("actors/flamedeath2.wav"), 1, ATTN_NORM, 0); + } + + if (tr.ent->onfiretime > 0) + { + if (self->client || self->svflags & SVF_MONSTER) + tr.ent->onfireent = self; + else + tr.ent->onfireent = NULL; + + tr.ent->onfiretime = 100; + } + else + { + tr.ent->onfiretime -= 5; + } + } +*/ +} +// END JOSEPH + +static qboolean fire_concussion (edict_t *self, vec3_t start, vec3_t aimdir, float dist, int damage, int kick, int te_impact, int hspread, int vspread, int mod) +{ + trace_t tr, mdx_tr; + vec3_t dir; + vec3_t forward, right, up; + vec3_t end; + float r; + float u; + vec3_t water_start/*, alpha_start*/; + qboolean water = false; + // JOSEPH 10-JUN-99 + qboolean water2 = false; + // END JOSEPH + int content_mask = MASK_SHOT | MASK_WATER | MASK_ALPHA; + int len; + //int NoBulletHole; + int pointblank = 0; +// vec3_t tempvec; + int conweap = 0; + qboolean is_mdx = false; + + tr = gi.trace (self->s.origin, NULL, NULL, start, self, MASK_SHOT ); + if (!(tr.fraction < 1.0)) + { + vectoangles (aimdir, dir); + AngleVectors (dir, forward, right, up); + + r = crandom()*hspread; + u = fabs(crandom()*vspread); + + VectorMA (start, dist, forward, end); + VectorMA (end, r, right, end); + VectorMA (end, u, up, end); + + if (gi.pointcontents (start) & MASK_WATER) + { + water = true; + VectorCopy (start, water_start); + content_mask &= ~MASK_WATER; + } + + tr = gi.trace (start, NULL, NULL, end, self, content_mask); + + if (mod == MOD_BLACKJACK) + { + conweap = 1; + + if (tr.ent->client) + { + if (infront( tr.ent, self )) + tr.ent->client->kick_angles[0] = -damage; + else /// hit from behind + tr.ent->client->kick_angles[0] = damage; + } + } + + // JOSEPH 19-JAN-99 + if ((mod == MOD_BLACKJACK) || (mod == MOD_CROWBAR)) + { + conweap = 1; + + if (tr.ent->client) + { + if (infront( tr.ent, self )) + tr.ent->client->kick_angles[0] = -damage; + else /// hit from behind + tr.ent->client->kick_angles[0] = damage; + } + } + // END JOSEPH + + // see if we hit water + if (tr.contents & MASK_WATER) + { + int color; + + water = true; + + VectorCopy (tr.endpos, water_start); + + if (!VectorCompare (start, tr.endpos)) + { + // JOSEPH 10-JUN-99 + water2 = true; + // END JOSEPH + + if (tr.contents & CONTENTS_WATER) + { + if (strcmp(tr.surface->name, "*brwater") == 0) + color = SPLASH_BROWN_WATER; + else + color = SPLASH_BLUE_WATER; + } + else if (tr.contents & CONTENTS_SLIME) + color = SPLASH_SLIME; + else if (tr.contents & CONTENTS_LAVA) + color = SPLASH_LAVA; + else + color = SPLASH_UNKNOWN; + + if (color != SPLASH_UNKNOWN) + { + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SPLASH); + gi.WriteByte (8); + gi.WritePosition (tr.endpos); + gi.WriteDir (tr.plane.normal); + gi.WriteByte (color); + gi.multicast (tr.endpos, MULTICAST_PVS); + + } + + if (color == SPLASH_BLUE_WATER) + { + // Ripple effect + SurfaceSpriteEffect( SFX_SPRITE_SURF_RIPPLE, SFX_RIPPLE_WIDTH, SFX_RIPPLE_HEIGHT, + tr.ent, tr.endpos, tr.plane.normal ); + SurfaceSpriteEffect( SFX_SPRITE_SURF_RIPPLE, SFX_RIPPLE_WIDTH<<1, SFX_RIPPLE_HEIGHT<<1, + tr.ent, tr.endpos, tr.plane.normal ); + SurfaceSpriteEffect( SFX_SPRITE_SURF_RIPPLE, SFX_RIPPLE_WIDTH>>1, SFX_RIPPLE_HEIGHT>>1, + tr.ent, tr.endpos, tr.plane.normal ); + } + } + } + } + + // send gun puff / flash + if (!((tr.surface) && (tr.surface->flags & SURF_SKY))) + { + if (tr.fraction < 1.0) + { + + // JOSEPH 4-DEC-98 + if (tr.ent->svflags & SVF_MONSTER || tr.ent->client) + { + + } + else if (mod != MOD_DOGBITE) + { + // JOSEPH 6-MAY-99 + if (tr.ent->svflags & SVF_PROP) + { + tr.surface->flags = tr.ent->surfacetype; + } + // END JOSEPH + // JOSEPH 10-JUN-99 + if (water2) + { + gi.sound (self, CHAN_AUTO, gi.soundindex ("actors/player/male/watr_in.wav"), 1, ATTN_NORM, 0); + } + else if (tr.surface->flags & SURF_CONCRETE) + // END JOSEPH + { + gi.sound (self, CHAN_AUTO, gi.soundindex ("weapons/melee/pipehitcement.wav"), 1, ATTN_NORM, 0); + } + else if (tr.surface->flags & SURF_FABRIC) + { + gi.sound (self, CHAN_AUTO, gi.soundindex ("weapons/melee/pipehitbody.wav"), 1, ATTN_NORM, 0); + } + else if (tr.surface->flags & SURF_GRAVEL) + { + gi.sound (self, CHAN_AUTO, gi.soundindex ("weapons/melee/pipehitgravel.wav"), 1, ATTN_NORM, 0); + } + else if (tr.surface->flags & SURF_METAL) + { + gi.sound (self, CHAN_AUTO, gi.soundindex ("weapons/melee/pipehittin.wav"), 1, ATTN_NORM, 0); + } + else if (tr.surface->flags & SURF_METAL_L) + { + gi.sound (self, CHAN_AUTO, gi.soundindex ("weapons/melee/pipehittin.wav"), 1, ATTN_NORM, 0); + } + else if (tr.surface->flags & SURF_SNOW) + { + gi.sound (self, CHAN_AUTO, gi.soundindex ("weapons/melee/pipehittin.wav"), 1, ATTN_NORM, 0); + } + else if (tr.surface->flags & SURF_TILE) + { + gi.sound (self, CHAN_AUTO, gi.soundindex ("weapons/melee/pipehittile.wav"), 1, ATTN_NORM, 0); + } + else if (tr.surface->flags & SURF_WOOD) + { + gi.sound (self, CHAN_AUTO, gi.soundindex ("weapons/melee/pipehitwood.wav"), 1, ATTN_NORM, 0); + } + else + { + gi.sound (self, CHAN_VOICE, gi.soundindex ("weapons/melee/pipehitcement.wav"), 1, ATTN_NORM, 0); + } + + PlayerNoise(self, start, PNOISE_WEAPON); + + } + // END JOSEPH + + + // NAV_DrawLine(start, tr.endpos); + // gi.dprintf ("hit: %s\n", tr.ent->classname); + + if (tr.ent->takedamage) + { + // Point blank range shot gives more damage + /* + VectorSubtract (tr.endpos, self->s.origin, tempvec); + len = VectorNormalize (tempvec); + if (len < 64) + { + damage *= 2; + pointblank = 1; + } + */ + + // JOSEPH 11-APR-99 + if ((tr.ent->svflags & SVF_PROP) || (!strcmp(tr.ent->classname,"func_explosive"))) + { + extern int ClipVelocity (vec3_t in, vec3_t normal, vec3_t out, float overbounce); + vec3_t dir; + + VectorCopy( tr.plane.normal, dir ); + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_IMPACT_CONCUSSION); + gi.WritePosition (tr.endpos); + gi.WriteDir (dir); + gi.multicast (tr.endpos, MULTICAST_PVS); + + if (self->client) + PlayerNoise(self, tr.endpos, PNOISE_IMPACT); + } + // END JOSEPH + + // RAFAEL 7-30-98 + if (tr.ent->s.num_parts && !(tr.ent->client) && !(self->svflags & SVF_MONSTER)) + { + // either way, react to this attempted hostility + // JOSEPH 9-FEB-99 + if (!(tr.ent->svflags & SVF_PROP)) + M_ReactToDamage (tr.ent, self, damage ); + // END JOSEPH + + { + trace_t ignore; + int max_iterations=1; + + ignore = tr; + + while (max_iterations--) + { + + mdx_tr = MDX_HitCheck (ignore.ent, self, self, aimdir, ignore.endpos, ignore.plane.normal, damage, kick, DAMAGE_BULLET, mod, end); + + if (mdx_tr.ent->flags & FL_MDXBBOX) // we hit an mdx_bbox + { + is_mdx = true; + break; + } + else if (mdx_tr.ent->takedamage && mdx_tr.ent->s.num_parts) // we missed the mdx_bbox but hit another mdx + { + is_mdx = true; + ignore = mdx_tr; + } + else if (mdx_tr.ent->takedamage) // we hit an md2 + { + is_mdx = false; + VectorCopy (mdx_tr.endpos, tr.endpos); + VectorCopy (mdx_tr.plane.normal, tr.plane.normal); + tr.ent = mdx_tr.ent; + break; + } + // JOSEPH 5-FEB-99-B + else if (tr.ent->svflags & SVF_PROP) + { + // this should fix the box episode 5/6 bug + is_mdx = false; + break; + } + // END JOSEPH + else + { + // we missed + VectorCopy (mdx_tr.endpos, tr.endpos); + VectorCopy (mdx_tr.plane.normal, tr.plane.normal); + goto bolt; + } + } + if (is_mdx) + { + T_DamageMDX (tr.ent, self, self, aimdir, tr.endpos, tr.plane.normal, damage, kick, DAMAGE_BULLET, mod, mdx_tr.ent->count, mdx_tr.ent->dmg); + + gi.WriteByte (svc_muzzleflash); + gi.WriteShort (self-g_edicts); + gi.WriteByte (MZ_BLACKJACK_HIT); + gi.multicast (self->s.origin, MULTICAST_PVS); + + // Head shot blood on close wall + // JOSEPH 25-JAN-99 + if ((mdx_tr.ent->count == PART_HEAD) && (!(tr.ent->svflags & SVF_PROP))) + // END JOSEPH + { + trace_t tr2; + vec3_t newstart, newdir, newend, travelvec; + + VectorCopy (tr.endpos, newstart); + VectorSubtract (end, start, newdir); + vectoangles (newdir, newdir); + AngleVectors (newdir, forward, NULL, NULL); + + do + { + VectorMA (newstart, 8192, forward, newend); + VectorMA (newstart, 4, forward, newstart); + + tr2 = gi.trace (newstart, NULL, NULL, newend, self, MASK_SHOT); + } + while (tr2.ent == tr.ent); + + VectorSubtract(newstart, tr2.endpos, travelvec); + len = VectorNormalize(travelvec); + + // this should be flaged not all concussion weapons will do this + + if ((len < 100.0) && (!tr2.ent->takedamage) && + ((strncmp (tr2.surface->name, "sky", 3) != 0))) + { + if (pointblank) + { + SurfaceSpriteEffect(SFX_SPRITE_SURF_BLOOD1, SFX_BLOOD_WIDTH*4, + SFX_BLOOD_HEIGHT*4, + tr2.ent, tr2.endpos, tr2.plane.normal ); + } + else + { + SurfaceSpriteEffect(SFX_SPRITE_SURF_BLOOD1, SFX_BLOOD_WIDTH, + SFX_BLOOD_HEIGHT, + tr2.ent, tr2.endpos, tr2.plane.normal ); + } + } + // JOSEPH 4-DEC-98 + gi.sound (self, CHAN_AUTO, gi.soundindex ("weapons/melee/pipehithead.wav"), 1, ATTN_NORM, 0); + } + else + { + gi.sound (self, CHAN_AUTO, gi.soundindex ("weapons/melee/pipehitbody.wav"), 1, ATTN_NORM, 0); + } + // END JOSEPH + } + else + T_Damage (tr.ent, self, self, aimdir, tr.endpos, tr.plane.normal, damage, kick, DAMAGE_BULLET, mod); + } + + + } + else + { + + qboolean check_skin_change = false; + + if (self->svflags & SVF_MONSTER && tr.ent->svflags & SVF_MONSTER && self->cast_group != tr.ent->cast_group) + { // Tweak: do more damage when AI shooting AI, more realistic + damage *= 2; + + if (tr.ent->gender && !tr.ent->client) + { + check_skin_change = true; + } + } + + T_Damage (tr.ent, self, self, aimdir, tr.endpos, tr.plane.normal, damage, kick, DAMAGE_BULLET, mod); + + if (check_skin_change) + { + ActorDamageSimpleSkinChangeCheck (tr.ent, tr.endpos); + } + + if ((tr.ent->svflags & SVF_MONSTER || tr.ent->client)) + { + if (mod != MOD_DOGBITE) + gi.sound (self, CHAN_AUTO, gi.soundindex ("weapons/melee/pipehitbody.wav"), 1, ATTN_NORM, 0); +// Ridah, 7-5-99, commented out for demo +// else +// gi.dprintf( "SOUND TODO: dog bite (flesh sound, not voice)\n" ); + } + } + } + else + { +bolt: + // JOSEPH + if ((strncmp (tr.surface->name, "sky", 3) != 0) /*|| NoBulletHole*/) + { + + // JOSEPH 2-APR-99 + if (!is_mdx) + { + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_IMPACT_CONCUSSION); + gi.WritePosition (tr.endpos); + gi.WriteDir (tr.plane.normal); + gi.multicast (tr.endpos, MULTICAST_PVS); + } + // END JOSEPH + + if (self->client) + PlayerNoise(self, tr.endpos, PNOISE_IMPACT); + + // Ridah, surface sprites + + // SurfaceSpriteEffect( SFX_SPRITE_SURF_BULLET1, SFX_BULLET_WIDTH * 5, SFX_BULLET_HEIGHT * 5, + // tr.ent, tr.endpos, tr.plane.normal ); + +// SurfaceSpriteEffect( SFX_SPRITE_SURF_BLOOD1, SFX_BLOOD_WIDTH, SFX_BLOOD_HEIGHT, +// tr.ent, tr.endpos, tr.plane.normal ); + + // we should leave a mark if it was the tire iron + + // done. + } + } + } + } + + + // concussion can't possibly go through water rem out for now + + + // if went through water, determine where the end and make a bubble trail + +/* + if (water) + { + vec3_t pos; + + VectorSubtract (tr.endpos, water_start, dir); + + VectorNormalize (dir); + VectorMA (tr.endpos, -2, dir, pos); + if (gi.pointcontents (pos) & MASK_WATER) + VectorCopy (pos, tr.endpos); + else + tr = gi.trace (pos, NULL, NULL, water_start, tr.ent, MASK_WATER); + + VectorAdd (water_start, tr.endpos, pos); + VectorScale (pos, 0.5, pos); + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_BUBBLETRAIL); + gi.WritePosition (water_start); + gi.WritePosition (tr.endpos); + gi.multicast (pos, MULTICAST_PVS); + } +*/ + + if (is_mdx) + return true; + else + return false; + +} + +/* +================= +fire_dogbite +================ +*/ +qboolean fire_dogbite (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int kick, int mod) +{ + qboolean rval; + + if (self->client) + rval = fire_concussion (self, start, aimdir, 40, damage, kick, TE_GUNSHOT, 0, 0, mod); + else + rval = fire_concussion (self, start, aimdir, 40, damage, kick, TE_GUNSHOT, 0, 0, mod); + + return (rval); +} + +// JOSEPH 30-APR-99 +/* +================= +fire_rat +================ +*/ +void fire_rat (edict_t *self, vec3_t start, vec3_t aimdir, int damage) +{ + fire_concussion (self, start, aimdir, 40, damage, 1, TE_GUNSHOT, 0, 0, MOD_DOGBITE); +} +// END JOSEPH + +/* +================= +fire_blackjack +================ +*/ +qboolean fire_blackjack (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int kick, int mod) +{ + qboolean rval; + + if (self->client) + rval = fire_concussion (self, start, aimdir, 48, damage, kick, TE_GUNSHOT, 0, 0, mod); + else + rval = fire_concussion (self, start, aimdir, 48, damage, kick, TE_GUNSHOT, 0, 0, mod); + + return (rval); +} + +// JOSEPH 19-JAN-99 +/* +================= +fire_crowbar +================ +*/ +qboolean fire_crowbar (edict_t *self, vec3_t start, vec3_t aimdir, int damage, int kick, int mod) +{ + qboolean rval; + float dist=48; + + if (deathmatch->value) // Ridah, give it more range in deathmatch + dist *= 1.5; + + if (self->client) + rval = fire_concussion (self, start, aimdir, dist, damage, kick, TE_GUNSHOT, 0, 0, mod); + else + rval = fire_concussion (self, start, aimdir, dist, damage, kick, TE_GUNSHOT, 0, 0, mod); + + return (rval); +} +// END JOSEPH diff --git a/gamesrc/G_cmds.c b/gamesrc/G_cmds.c new file mode 100644 index 0000000..917909e --- /dev/null +++ b/gamesrc/G_cmds.c @@ -0,0 +1,3794 @@ + +#include "g_local.h" +#include "m_player.h" + +#include "voice_punk.h" +#include "voice_bitch.h" + +//------------------------------------------------------------------------------------ + +edict_t *ban_target, *ban_source, *ban_thinker; +int ban_count; +char ban_ip[MAX_QPATH]; // make sure we don't kick a different user +float last_ban_time; +char ban_id; // so we only allow each person to vote once per ban +char last_kick_ip[MAX_QPATH]; +int ban_player_count=0; + +void Cmd_Players_f (edict_t *ent); + +qboolean BanEnoughVotes(void) +{ + edict_t *trav; + int need; + + trav = &g_edicts[1]; + + while (trav <= &g_edicts[(int)maxclients->value]) + { + if (trav->inuse && trav->client /*&& (trav != ban_target)*/ + && (!teamplay->value || !ban_target->client || !ban_target->client->pers.team || (ban_target->client->pers.team == trav->client->pers.team))) + { + ban_player_count++; + } + + trav++; + } + +// if (teamplay->value) +// need = (int)floor(ban_player_count / 2); +// else + need = (int)ceil(ban_player_count / 2); + + if (need < 3) + need = 3; + + return (ban_count >= need); +} + +void BanThink(edict_t *ent) +{ + char *ip; + + if (!ban_target || !ban_target->inuse || !ban_target->client) + { + ban_target = NULL; + G_FreeEdict(ent); + return; + } + + if (ban_id != ent->count) + { + // another ban has formed + G_FreeEdict(ent); + return; + } + + // check the IP is the same + ip = Info_ValueForKey( ban_target->client->pers.userinfo, "ip" ); + if (ip && ip[0]) + { + if (strcmp(ip, ban_ip)) + { + ban_target = NULL; + G_FreeEdict(ent); + return; + } + } + + // if we have enough, cancel the kick request + if (!BanEnoughVotes()) + { + if (ban_source->inuse) + gi.cprintf( ban_source, PRINT_HIGH, "Vote did not succeed.\n" ); + ban_target = NULL; + G_FreeEdict(ent); + return; + } + + // kick them + gi.bprintf( PRINT_HIGH, "%s was kicked by unanimous vote (next time they will be banned).\n", ban_target->client->pers.netname ); + + if (!strcmp(ban_ip, last_kick_ip)) + { // ban them + gi.bprintf( PRINT_HIGH, "Blocking %s from returning to game.\n", ban_target->client->pers.netname ); + gi.AddCommandString(va("sv addip %s\n", ban_ip)); + } + + gi.AddCommandString(va("kick %i\n", (int)(ban_target - g_edicts - 1))); + + strcpy( last_kick_ip, ban_ip ); + + ban_target = NULL; + G_FreeEdict(ent); +} + +void Cmd_Response_f (edict_t *ent) +{ + char *ip; + + if (!ban_target) + { + gi.cprintf( ent, PRINT_HIGH, "Nothing to \"%s\" with.\n", gi.argv(0) ); + return; + } + + if (ent == ban_target) + return; + + if (ent->client->resp.ban_id == ban_id) + { + gi.cprintf( ent, PRINT_HIGH, "You've already voted once.\n" ); + return; + } + + if (!ban_target->inuse || !ban_target->client) + { + gi.cprintf( ent, PRINT_HIGH, "The player has already left.\n" ); + ban_target = NULL; + return; + } + + if (teamplay->value && ban_target->client->pers.team && (ban_target->client->pers.team != ent->client->pers.team)) + { + gi.cprintf( ent, PRINT_HIGH, "You cannot vote, %s is not on your team.\n", ban_target->client->pers.netname ); + return; + } + + // don't let us vote if we were just kicked + ip = Info_ValueForKey( ent->client->pers.userinfo, "ip" ); + if (ip && ip[0]) + { + if (!strcmp(ip, last_kick_ip)) + { + gi.cprintf( ent, PRINT_HIGH, "You cannot vote.\n" ); + return; + } + } + + + ip = Info_ValueForKey( ban_target->client->pers.userinfo, "ip" ); + if (!ip) + { + gi.cprintf( ent, PRINT_HIGH, "%s has an unknown IP address\n", ban_target->client->pers.netname ); + ban_target = NULL; + return; + } + if (strcmp(ip, ban_ip)) + { + gi.cprintf( ent, PRINT_HIGH, "The player has left or been replaced with another player\n" ); + ban_target = NULL; + return; + } + + if (!strcmp(gi.argv(0), "no")) + { + if (ban_source->inuse) + gi.cprintf( ban_source, PRINT_HIGH, "The vote did not succeed.\n" ); + + gi.cprintf(ent, PRINT_HIGH, "Objection noted.\n" ); + + ent->client->resp.ban_id = ban_id; + ban_count--; + return; + } + + ent->client->resp.ban_id = ban_id; + ban_count++; + + if (BanEnoughVotes()) + { + ban_thinker->think(ban_thinker); + } + else + { + gi.cprintf(ent, PRINT_HIGH, "Vote recorded, awaiting votes from other players.\n" ); + } + +} + +void Vote_Ban( edict_t *ent, char *name ) +{ + edict_t *target; + int i; + char *ip; + + if (ent->client->resp.last_ban && (ent->client->resp.last_ban > (level.time - 60))) + { + gi.cprintf( ent, PRINT_HIGH, "You can only VOTE once per 60 seconds\n" ); + return; + } + + if (last_ban_time) + { + if (last_ban_time > level.time) + { + last_ban_time = 0; + } + + if (last_ban_time > (level.time - 20)) + { + gi.cprintf( ent, PRINT_HIGH, "Only one VOTE per 20 seconds allowed\n" ); + return; + } + } + + // find the player + if (((i = atoi(name)) > 0) && i <= maxclients->value) + { + if (!g_edicts[i].inuse || !g_edicts[i].client) + { // fail + gi.cprintf( ent, PRINT_HIGH, "\nUnable to match id '%i' with a current player.\n\nValid player id's are:\n\n", i ); + Cmd_Players_f(ent); + return; + } + + target = &g_edicts[i]; + } + else // scan for the name + { + for (i=1; i<=maxclients->value; i++) + { + target = &g_edicts[i]; + + if (!target->inuse) + continue; + if (!target->client) + continue; + + if (!Q_strcasecmp( target->client->pers.netname, name )) + break; + } + + if (i>maxclients->value) + { + gi.cprintf( ent, PRINT_HIGH, "\nUnable to match '%s' with a current player.\n\nTry using a player id from the following list (eg. 'vote ban 4'):\n\n", name ); + Cmd_Players_f(ent); + return; + } + } + + // can't kick someone on the other team + if (teamplay->value && target->client->pers.team && (target->client->pers.team != ent->client->pers.team)) + { + gi.cprintf( ent, PRINT_HIGH, "You cannot kick a member of the other team.\n" ); + return; + } + + + // vote for them + ip = Info_ValueForKey( target->client->pers.userinfo, "ip" ); + if (!ip || !ip[0]) + { + gi.cprintf( ent, PRINT_HIGH, "%s has an unknown IP address\n", name ); + return; + } + if (!strcmp(ip, "loopback")) + { + gi.cprintf( ent, PRINT_HIGH, "%s is running the server, cannot BAN host\n", name ); + return; + } + + strcpy( ban_ip, ip ); + + ent->client->resp.ban_id = ++ban_id; + ent->client->resp.last_ban = level.time; + last_ban_time = level.time; + ban_count = 1; + + ban_source = ent; + ban_target = target; + + gi.cprintf( ent, PRINT_HIGH, "You have voted to kick/ban %s.\nAwaiting responses from other players.\n", ban_target->client->pers.netname ); + + gi.dprintf( "%s formed a vote to kick/ban %s.\n", ent->client->pers.netname, ban_target->client->pers.netname ); + + // start the thinker + target = G_Spawn(); + target->owner = ban_target; + target->think = BanThink; + target->nextthink = level.time + 15; + target->count = ban_id; + + ban_thinker = target; + + BanEnoughVotes(); + + // now tell everyone except this player + for (i=1; i<=(int)maxclients->value; i++) + { + if (!g_edicts[i].client) + continue; + if (!g_edicts[i].inuse) + continue; + if (&g_edicts[i] == ent) + continue; + if (&g_edicts[i] == ban_target) + continue; + if (teamplay->value && ban_target->client->pers.team && (ban_target->client->pers.team != g_edicts[i].client->pers.team)) + continue; + + gi.cprintf( &g_edicts[i], PRINT_CHAT, ">> %s has voted to BAN %s. Type 'yes' in the consol if you agree, 'no' if you disagree. %i votes required.", ent->client->pers.netname, ban_target->client->pers.netname, ban_player_count ); + } +} + +void Cmd_Vote_f (edict_t *ent) +{ + char *cmd, *name; + + cmd = gi.argv(1); + + if (!strcmp( cmd, "ban" )) + { + name = gi.argv(2); + + if (!name[0]) + { + gi.cprintf( ent, PRINT_HIGH, "You must supply a name\n" ); + return; + } + + Vote_Ban( ent, name ); + } + else + { + gi.cprintf( ent, PRINT_HIGH, "Unknown voting command.\n" ); + } + +} + +//------------------------------------------------------------------------------------ + +// BEGIN: Xatrix/Ridah/Navigator/23-mar-1998 +int showpath_on=false; +edict_t *showpath_ent; + +void Cmd_NavDebugDest_f (edict_t *ent) +{ + if (deathmatch->value) + { + gi.cprintf(ent, PRINT_HIGH, "This command only available when deathmatch = 0\n"); + return; + } + + if (!showpath_ent) + { // spawn it + showpath_ent = G_Spawn(); + showpath_ent->s.modelindex = 255; + } + + VectorCopy( ent->s.origin, showpath_ent->s.origin ); + gi.linkentity(showpath_ent); +} + +void Cmd_NavDebugShowPath_f (edict_t *ent) +{ + if (deathmatch->value) + { + gi.cprintf(ent, PRINT_HIGH, "This command only available when deathmatch = 0\n"); + return; + } +/* + if (!ent->nav_build_data) + { + gi.cprintf(ent, PRINT_HIGH, "nav_dynamic 1 must be set to use this command\n"); + return; + } +*/ + if (!(showpath_on)) + { // enable path + +// if (!ent->nav_build_data->debug_dest) + { // create it + Cmd_NavDebugDest_f (ent); + } + + showpath_on = true; +// ent->nav_build_data->flags |= NBD_SHOWPATH; + } + else // disable path + { + showpath_on = false; +// ent->nav_build_data->flags &= ~NBD_SHOWPATH; + + // kill the destination entity + G_FreeEdict(showpath_ent); + showpath_ent = NULL; + } +} + +// Clears the nav_data for the current level +void Cmd_NavClear_f ( edict_t *self ) +{ + if (deathmatch->value) + { + gi.cprintf(self, PRINT_HIGH, "This command only available when deathmatch = 0\n"); + return; + } + + // clear the current nodes + level.node_data->modified = false; + NAV_PurgeActiveNodes ( level.node_data ); + + // create the node data structure + level.node_data = gi.TagMalloc (sizeof (active_node_data_t), TAG_GAME); + NAV_InitActiveNodes ( level.node_data ); + NAV_WriteActiveNodes ( level.node_data, level.mapname ); + + gi.AddCommandString( "echo \necho Cleared Navigational Data, closing down server.\necho \ndisconnect\n" ); +} + +// END: Xatrix/Ridah/Navigator/23-mar-1998 + +//-------------------------------------------------------- +// TEAMPLAY commands +extern void ClientBeginDeathmatch (edict_t *ent); + +void Cmd_Spec_f (edict_t *self) +{ + if (!teamplay->value) + { + gi.cprintf(self, PRINT_HIGH, "This command only available when teamplay is enabled\n"); + return; + } + + if (!self->client->pers.team) + return; + + self->client->pers.team = 0; + + self->flags &= ~FL_GODMODE; + self->health = 0; + meansOfDeath = MOD_SUICIDE; + player_die (self, self, self, 1, vec3_origin, 0, 0); + + ClientBeginDeathmatch( self ); +} + +void Cmd_Join_f (edict_t *self, char *teamcmd) +{ + int i; + char str1[MAX_QPATH], varteam[MAX_QPATH]; + + if (!teamplay->value) + { + gi.cprintf(self, PRINT_HIGH, "This command only available when teamplay is enabled\n"); + return; + } + + strcpy( varteam, teamcmd ); + + // search for the team-name + + if (varteam && varteam[0]) + { + for (i=1; team_names[i]; i++) + { + strcpy(str1, team_names[i]); + kp_strlwr(str1); + kp_strlwr(varteam); + + if (strstr( str1, varteam ) == str1) + { // found a match + + if (self->client->pers.team == i) + { + gi.cprintf( self, PRINT_HIGH, "Already a member of %s\n", team_names[i] ); + } + else + { + // kill us if currently in game + if (self->client->pers.team) + { + self->flags &= ~FL_GODMODE; + self->health = 0; + meansOfDeath = MOD_SUICIDE; + player_die (self, self, self, 1, vec3_origin, 0, 0); + } + + if (!Teamplay_ValidateJoinTeam( self, i )) + { + gi.cprintf( self, PRINT_HIGH, "Unable to join %s\n", team_names[i] ); + } + } + + return; + } + } + + gi.cprintf( self, PRINT_HIGH, "Un-matched team: %s\n", varteam ); + } +} + +//-------------------------------------------------------- + +void Cmd_GetTexture_f (edict_t *self) +{ + vec3_t start, end; + vec3_t fwd; + trace_t tr; + + if (deathmatch->value) + { + gi.cprintf(self, PRINT_HIGH, "This command only available when deathmatch = 0\n"); + return; + } + + // trace a line and print the texture we hit + AngleVectors( self->client->v_angle, fwd, NULL, NULL ); + VectorCopy( self->s.origin, start ); + start[2] += self->viewheight; + + VectorMA( start, 2048, fwd, end ); + + tr = gi.trace( start, NULL, NULL, end, self, MASK_SOLID - CONTENTS_MONSTER ); + + if (tr.fraction < 1 && tr.surface && tr.surface->name) + { + if (tr.surface->value > ((int)(level.time*10) - 3)) + { + gi.cprintf( self, PRINT_HIGH, "Saving texture: %s\n", tr.surface->name ); + + { + cvar_t *game_dir, *base_dir; + char filename[MAX_QPATH], dir[MAX_QPATH]; + FILE *f; + + game_dir = gi.cvar("game", "", 0); + base_dir = gi.cvar("basedir", "", 0); + + // dir, eg: .\main\maps + strcpy( dir, base_dir->string); + strcat( dir, DIR_SLASH); + + strcat( dir, "source"); + strcat( dir, DIR_SLASH); + strcat( dir, "ref_gl"); + + // filename, eg: .\main\maps\skidrow.pnt + strcpy( filename, dir); + strcat( filename, DIR_SLASH); + strcat( filename, "specular_textures.h"); + + // try and open the file for writing + f = fopen ( filename, "a+b"); + if (!f) + { + gi.cprintf ( self, PRINT_HIGH, "Couldn't open %s for writing.\n", filename); + return; + } + + fprintf( f, "\"%s\",\n", tr.surface->name ); + + fclose( f ); + + gi.cprintf ( self, PRINT_HIGH, "Saved.\n" ); + } + } + else + { + gi.cprintf( self, PRINT_HIGH, "Hit texture: %s\n", tr.surface->name ); + } + + tr.surface->value = (int)(level.time*10); + } +} + +void Cmd_GearUp_f (edict_t *self) +{ + vehicle_t *vehicle; + + if (!self->vehicle_index) + { + gi.cprintf( self, PRINT_HIGH, "You aren't in a vehicle, can't change gears.\n"); + return; + } + + vehicle = &global_vehicles[self->vehicle_index - 1]; + + vehicle->gear++; + if (vehicle->gear == vehicle->def->gearbox->num_gears) + vehicle->gear--; + +} + +void Cmd_GearDown_f (edict_t *self) +{ + vehicle_t *vehicle; + + if (!self->vehicle_index) + { + gi.cprintf( self, PRINT_HIGH, "You aren't in a vehicle, can't change gears.\n"); + return; + } + + vehicle = &global_vehicles[self->vehicle_index - 1]; + + vehicle->gear--; + if (vehicle->gear < 0) + vehicle->gear = vehicle->def->gearbox->num_gears - 1; +} + +// Saves the current LightPaint data +void Cmd_BurnSave_f (edict_t *self) +{ + cvar_t *game_dir, *base_dir; + char filename[MAX_QPATH], dir[MAX_QPATH]; + int i; + FILE *f; + + if (deathmatch->value) + { + gi.cprintf(self, PRINT_HIGH, "This command only available when deathmatch = 0\n"); + return; + } + + game_dir = gi.cvar("game", "", 0); + base_dir = gi.cvar("basedir", "", 0); + + // dir, eg: .\main\maps + strcpy( dir, base_dir->string); + strcat( dir, DIR_SLASH); + + if (strlen(game_dir->string) == 0) + strcat( dir, "main"); + else + strcat( dir, game_dir->string); + + strcat( dir, DIR_SLASH); + strcat( dir, "maps"); + + // filename, eg: .\main\maps\skidrow.pnt + strcpy( filename, dir); + strcat( filename, DIR_SLASH); + strcat( filename, level.mapname); + strcat( filename, ".pnt"); + + // try and open the file for writing + f = fopen ( filename, "a+b"); + if (!f) + { + gi.cprintf ( self, PRINT_HIGH, "Couldn't open %s for writing.\n", filename); + return; + } + + for (i=0; ivalue > 1) + return; + + VectorClear( angles ); + + // do the positive pitch step + for (step=0; step < NUM_PITCH_STEPS; step++) + { + + angles[PITCH] = ((90.0 / NUM_PITCH_STEPS) * (float)step); + + // go around the Z axis + + for (yawstep=0; yawstep < step_sections[step]; yawstep++) + { + + angles[YAW] = ((360.0 / step_sections[step]) * (float)yawstep); + + AngleVectors( angles, out_normals[count++], NULL, NULL ); + + } + + } + + // do the negative pitch step + for (step=1; step < NUM_PITCH_STEPS; step++) + { + + angles[PITCH] = ((90.0 / NUM_PITCH_STEPS) * (float)(-step)); + + // go around the Z axis + + for (yawstep=0; yawstep < step_sections[step]; yawstep++) + { + + angles[YAW] = ((360.0 / step_sections[step]) * (float)yawstep); + + AngleVectors( angles, out_normals[count++], NULL, NULL ); + + } + + } + + gi.dprintf( "Anorm calculation completed, %i normals produced\n", count ); + + { + char filename[MAX_QPATH]; + int i; + char str[256]; + FILE *f; + + // filename, eg: .\gamedir\routes\map01.nav + strcpy( filename, "\\kingpin\\source\\ref_gl\\x_anorms.h"); + + // try and open the file for writing + f = fopen ( filename, "wb"); + if (!f) gi.error ("Couldn't open %s for writing.", filename); + + for (i=0; i 0) + { + sprintf( str, ", " ); + fwrite( str, strlen(str), 1, f ); + } + + sprintf( str, "%f", adots[i][j] ); + fwrite( str, strlen(str), 1, f ); + } + + sprintf( str, "},\n" ); + fwrite( str, strlen(str), 1, f ); + + } + + sprintf( str, "}\n" ); + fwrite( str, strlen(str), 1, f ); + + fclose(f); + + gi.dprintf( "%s saved\n", filename ); + + } + +} + +//------------------------------------------------------------- +#endif + +// Ridah +extern void ED_CallSpawn (edict_t *ent); + +// Caution: if using this to spawn an entity that hasn't been precached, this will cause problems +void Cmd_Spawn_f (edict_t *ent) +{ + edict_t *spawn; + char *name; + vec3_t forward; + + spawn = G_Spawn(); + + name = gi.args (); + spawn->classname = gi.TagMalloc(sizeof(name)+1, TAG_LEVEL); + strcpy( spawn->classname, name ); + + AngleVectors( ent->s.angles, forward, NULL, NULL); + VectorScale( forward, 64, forward ); + forward[2] += 16; + + VectorAdd( ent->s.origin, forward, spawn->s.origin ); + VectorCopy( ent->s.angles, spawn->s.angles ); + + ED_CallSpawn (spawn); +} + +//------------------------------------------------------------- + +void P_ClearProfanity ( edict_t *ent ) +{ + ent->owner->profanity_level = 0; + + G_FreeEdict( ent ); +} + +void Cmd_Speech_f (edict_t *ent, edict_t *other, char *cmd) +{ + static float speechtime=0; + edict_t *best=NULL; + cast_memory_t *mem; + + if (deathmatch->value) + { + gi.cprintf (ent, PRINT_HIGH, "No speech in deathmatch\n"); + return; + } + + if (speechtime > (level.time - TALK_OTHER_DELAY) && speechtime < level.time) + return; + + if (Q_stricmp (cmd, "key1") == 0) // NEUTRAL + { + // JOSEPH 4-FEB-99 + ent->client->ps.stats[STAT_HUD_SELF_TALK] = TT_POSITIVE; + ent->client->hud_self_talk_time = level.time + 2.0; + // END JOSEPH + + if ((other->svflags & SVF_MONSTER) && (other->cast_info.talk)) + best = other; + + if (best) + { + mem = level.global_cast_memory[best->character_index][ent->character_index]; + + if (!mem) + { + AI_RecordSighting( best, ent, VectorDistance( best->s.origin, ent->s.origin ) ); + } + +// if (strcmp (best->classname, "cast_bitch") == 0) +// Voice_Random( ent, best, f_neutral_talk_player, F_NUM_NEUTRAL_TALK_PLAYER ); +// else + // Voice_Random( ent, best, neutral_talk_player, NUM_NEUTRAL_TALK_PLAYER ); + Voice_Random( ent, best, neutral_talk_player, 5 ); + + + // character should turn to us + best->cast_info.last_talk_turn = level.time; + best->cast_info.talk_ent = ent; + + AI_CheckTalk( best ); + } + else + { + gi.cprintf(ent, PRINT_HIGH, "No-one to talk to.\n"); + } + } + else if (Q_stricmp (cmd, "key3") == 0) // AGGRESSIVE + { + // JOSEPH 4-FEB-99 + ent->client->ps.stats[STAT_HUD_SELF_TALK] = TT_NEGATIVE; + ent->client->hud_self_talk_time = level.time + 2.0; + // END JOSEPH + + if ( (other->svflags & SVF_MONSTER) + && (other->cast_info.talk) + && (other->cast_group != ent->cast_group)) + { + best = other; + } + + if (best) + { + + mem = level.global_cast_memory[best->character_index][ent->character_index]; + + if (!mem) + { + AI_RecordSighting( best, ent, VectorDistance( best->s.origin, ent->s.origin ) ); + } + + mem->flags |= MEMORY_ASSHOLE; + + // Ridah, hack so Momo knows if we swear at him twice + if (best->name_index == NAME_MOMO) + { + if (mem->inc < 3) + { + mem->flags &= ~MEMORY_UPSET; // clear it so we charge them 30 bucks + } + + // if (ent->episode_flags & EP_SKIDROW_MOMO_ASKED_MONEY) + // mem->inc++; + EP_CheckMomo (ent, mem); + + } + + if (best->cast_group) + { + if (ent->profanity_level == 0) + Voice_Random( ent, best, player_profanity_level1, NUM_PLAYER_PROFANITY_LEVEL1 ); + else if (ent->profanity_level == 1) + Voice_Random( ent, best, player_profanity_level2, NUM_PLAYER_PROFANITY_LEVEL2 ); + else + Voice_Random( ent, best, player_profanity_level3, NUM_PLAYER_PROFANITY_LEVEL3 ); + + if (ent->profanity_level < 3) + ent->profanity_level++; + + if (ent->profanity_level == 3) + { // spawn an entity, that will return us to normal profanity in a second + edict_t *thinkent; + + thinkent = G_Spawn(); + thinkent->think = P_ClearProfanity; + thinkent->nextthink = level.time + 4.0; + thinkent->owner = ent; + } + } + else + { + Voice_Random( ent, best, player_profanity_level1, NUM_PLAYER_PROFANITY_LEVEL1 ); + } + + // character should turn to us + best->cast_info.last_talk_turn = level.time; // so they don't look for AI characters + best->cast_info.talk_ent = ent; + + AI_CheckTalk( best ); + } + else + { + gi.cprintf(ent, PRINT_HIGH, "No-one to abuse.\n"); + } + } + else + { +// gi.cprintf( ent, PRINT_HIGH, "Unknown Speech command\n" ); + return; + } + + speechtime = level.time; + +} + +/* +================== +Cmd_Order_f + +1. hold = Hold Position +2. move = Move Out +3. converge = Converge on my position +=================== +*/ +edict_t *Order_MoveOut (edict_t *ent); + +qboolean FullGang (edict_t *player) +{ + edict_t *ent; + cast_memory_t *mem; + int i; + int cnt = 0; + + for (i=1, ent=g_edicts+i ; i < globals.num_edicts ; i++,ent++) + { + if (ent->client) + continue; + if (!(ent->inuse)) + continue; + if (ent->deadflag == DEAD_DEAD) + continue; + if (ent->cast_group != 1) + continue; + + mem = level.global_cast_memory [ent->character_index][player->character_index]; + + if (mem && mem->flags & MEMORY_HIRED) + cnt++; + + if (cnt == 2) + return true; + + } + + return false; +} + + +void Cmd_Order_f (edict_t *ent, edict_t *other, char *cmd) +{ + int flags = 0; + static float ordertime=0; + static int last_voice; + qboolean firstime = false; + + if (deathmatch->value) + { + gi.cprintf (ent, PRINT_HIGH, "No orders in deathmatch\n"); + return; + } + + if (Q_stricmp (cmd, "key1") == 0) // Stay Here + flags = ORDER_FOLLOWME; + else if (Q_stricmp (cmd, "key2") == 0) // Attack + flags = ORDER_MOVE; + else if (Q_stricmp (cmd, "key3") == 0) // Follow + flags = ORDER_HOLD; + + ent->order = flags; + ent->order_timestamp = level.time; + +// if (other->cast_info.aiflags & AI_TAKE_COVER) +// return; // can't order a hiding dude + + if (ent->client) + { + cast_memory_t *cast_memory; + + cast_memory = level.global_cast_memory[other->character_index][ent->character_index]; + + if (!EP_HiredGuys (ent, other)) + { + // Ridah, 21-may-99, so they make a talking jesture if they just said something + if (other->last_talk_time == level.time) + other->cast_info.talk( other ); + + return; + } + + if (other->gender == GENDER_MALE) + { + + // RAFAEL 02-18-99 + if (!(cast_memory->flags & MEMORY_HIRED)) // if the dude is not hired + { + if (flags == ORDER_MOVE) // not a valid command + return; + + // if (FullGang (ent)) // if the gang is full + if (ent->client->pers.friends >= 2) + { + if (other->last_talk_time < (level.time - 2) || last_voice != 6) + Voice_Random (other, ent, &hiredguy_specific[6], 2); + + other->cast_info.talk( other ); + last_voice = 6; + return; + } + } + + + if (!(cast_memory->flags & MEMORY_HIRE_FIRST_TIME)) + { + cast_memory->flags |= MEMORY_HIRE_FIRST_TIME; + { + int rval; + rval = abs (other->currentcash); + + // JOSEPH 19-FEB-99 + if (flags == ORDER_FOLLOWME) + { + ent->client->ps.stats[STAT_HUD_SELF_TALK] = TT_YES; + ent->client->hud_self_talk_time = level.time + 2.0; + } + else if (flags == ORDER_HOLD) + { + ent->client->ps.stats[STAT_HUD_SELF_TALK] = TT_NO; + ent->client->hud_self_talk_time = level.time + 2.0; + } + // END JOSEPH + + // gi.dprintf ("yo man I'll follow ya fer %d bucks\n", rval); + + if (other->last_talk_time < (level.time - 2) || last_voice != 1) + // this line chooses the correct sound to play.. (even switches between the first and second for consecutive calls) + Voice_Specific( other, ent, hiredguy_ask, ((rval / 25) * 2) + (hiredguy_ask[((rval / 25) * 2)].last_played > hiredguy_ask[((rval / 25) * 2) + 1].last_played) ); + + + other->cast_info.talk( other ); + + last_voice = 1; + + return; + } + } + + else if (!(cast_memory->flags & MEMORY_HIRE_ASK)) + { + // JOSEPH 19-FEB-99 + if (flags == ORDER_FOLLOWME) + { + ent->client->ps.stats[STAT_HUD_SELF_TALK] = TT_YES; + ent->client->hud_self_talk_time = level.time + 2.0; + } + else if (flags == ORDER_HOLD) + { + ent->client->ps.stats[STAT_HUD_SELF_TALK] = TT_NO; + ent->client->hud_self_talk_time = level.time + 2.0; + } + // END JOSEPH + + if (ent->client->pers.currentcash >= abs (other->currentcash)) + { + if (flags == ORDER_FOLLOWME) + { + cast_memory->flags |= MEMORY_HIRE_ASK; + + // gi.dprintf ("so ya got the money?\n", abs (other->currentcash)); + + if (other->last_talk_time < (level.time - 2) || last_voice != 2) + // Voice_Specific( other, ent, hiredguy_specific, 0 + (hiredguy_specific[0].last_played > hiredguy_specific[1].last_played) ); + Voice_Random (other, ent, hiredguy_specific, 2); + + + other->cast_info.talk( other ); + last_voice = 2; + + return; + } + else if (flags == ORDER_HOLD) + { + // gi.dprintf ("yo man I'll be waiting for ya\n"); + if (other->last_talk_time < (level.time - 2) || last_voice != 3) + // Voice_Specific( other, ent, hiredguy_specific, 4 + (hiredguy_specific[4].last_played > hiredguy_specific[5].last_played) ); + Voice_Random (other, ent, &hiredguy_specific[4], 2); + + other->cast_info.talk( other ); + last_voice = 3; + return; + } + else // invalid response + { + gi.dprintf( "\nInvalid response.\nkey1 = YES\nkey3 = NO\n" ); + return; + } + } + else + { + // gi.dprintf ("yo man come to me when you got %d bucks\n", abs (other->currentcash)); + if (other->last_talk_time < (level.time - 2) || last_voice != 4) + Voice_Random( other, ent, &hiredguy_specific[11], 3 ); + + other->cast_info.talk( other ); + last_voice = 4; + return; + } + } + + else if (!(cast_memory->flags & MEMORY_HIRED)) + { + // JOSEPH 19-FEB-99 + if (flags == ORDER_HOLD) + { + ent->client->ps.stats[STAT_HUD_SELF_TALK] = TT_NO; + ent->client->hud_self_talk_time = level.time + 2.0; + } + else if (flags == ORDER_FOLLOWME) + { + ent->client->ps.stats[STAT_HUD_SELF_TALK] = TT_YES; + ent->client->hud_self_talk_time = level.time + 2.0; + } + // END JOSEPH + + // JOSEPH 3-FEB-99 + if (ent->client->pers.currentcash >= abs (other->currentcash)) + { + if (flags == ORDER_FOLLOWME) + { // give them the money + extern mmove_t thug_move_crch_grab; + + cast_memory->flags |= MEMORY_HIRED; + ent->client->pers.currentcash -= abs (other->currentcash); + + // other->currentcash = abs(other->currentcash); + other->currentcash = 0; + + ent->client->pers.friends++; + + if (!strcmp(other->classname, "cast_thug")) + { + other->cast_info.currentmove = &thug_move_crch_grab; + } + + other->cast_info.aiflags |= AI_NOWALK_FACE; + + // we just hired them, by default they should follow us + flags = ORDER_FOLLOWME; + firstime = true; + + EP_HiredGuysRegisterFlags (ent, other); + } + else if (flags == ORDER_HOLD) + { + // gi.dprintf ("yo man I'll be here if you change your mind\n"); + + cast_memory->flags &= ~MEMORY_HIRE_ASK; + + if (other->last_talk_time < (level.time - 2) || last_voice != 5) + Voice_Specific( other, ent, hiredguy_specific, 2 ); + other->cast_info.talk( other ); + last_voice = 5; + return; + } + } + // END JOSEPH + else + { + // gi.dprintf ("yo man come to me when you got %d bucks\n", abs (other->currentcash)); + if (other->last_talk_time < (level.time - 2) || last_voice != 6) + Voice_Specific( other, ent, hiredguy_specific, 3 ); + other->cast_info.talk( other ); + last_voice = 6; + return; + } + } + } + else // GENDER_FEMALE + { + // RAFAEL 02-18-99 + if (!(cast_memory->flags & MEMORY_HIRED)) // if the dude is not hired + { + if (flags == ORDER_MOVE) // not a valid command + return; + + // if (FullGang (ent)) // if the gang is full + if (ent->client->pers.friends >= 2) + { + if (other->last_talk_time < (level.time - 2) || last_voice != 6) + Voice_Random (other, ent, &hiredgal_specific[6], 2); + + other->cast_info.talk( other ); + last_voice = 6; + return; + } + } + + + if (!(cast_memory->flags & MEMORY_HIRE_FIRST_TIME)) + { + cast_memory->flags |= MEMORY_HIRE_FIRST_TIME; + { + int rval; + rval = abs (other->currentcash); + + // JOSEPH 19-FEB-99 + if (flags == ORDER_FOLLOWME) + { + ent->client->ps.stats[STAT_HUD_SELF_TALK] = TT_YES; + ent->client->hud_self_talk_time = level.time + 2.0; + } + else if (flags == ORDER_HOLD) + { + ent->client->ps.stats[STAT_HUD_SELF_TALK] = TT_NO; + ent->client->hud_self_talk_time = level.time + 2.0; + } + // END JOSEPH + + // gi.dprintf ("yo man I'll follow ya fer %d bucks\n", rval); + + if (other->last_talk_time < (level.time - 2) || last_voice != 1) + // this line chooses the correct sound to play.. (even switches between the first and second for consecutive calls) + Voice_Specific( other, ent, hiredgal_ask, ((rval / 25) * 2) + (hiredgal_ask[((rval / 25) * 2)].last_played > hiredgal_ask[((rval / 25) * 2) + 1].last_played) ); + + + other->cast_info.talk( other ); + + last_voice = 1; + + return; + } + } + + else if (!(cast_memory->flags & MEMORY_HIRE_ASK)) + { + // JOSEPH 19-FEB-99 + if (flags == ORDER_FOLLOWME) + { + ent->client->ps.stats[STAT_HUD_SELF_TALK] = TT_YES; + ent->client->hud_self_talk_time = level.time + 2.0; + } + else if (flags == ORDER_HOLD) + { + ent->client->ps.stats[STAT_HUD_SELF_TALK] = TT_NO; + ent->client->hud_self_talk_time = level.time + 2.0; + } + // END JOSEPH + + if (ent->client->pers.currentcash >= abs (other->currentcash)) + { + if (flags == ORDER_FOLLOWME) + { + cast_memory->flags |= MEMORY_HIRE_ASK; + + // gi.dprintf ("so ya got the money?\n", abs (other->currentcash)); + + if (other->last_talk_time < (level.time - 2) || last_voice != 2) + // Voice_Specific( other, ent, hiredguy_specific, 0 + (hiredguy_specific[0].last_played > hiredguy_specific[1].last_played) ); + Voice_Random (other, ent, hiredgal_specific, 2); + + + other->cast_info.talk( other ); + last_voice = 2; + + return; + } + else if (flags == ORDER_HOLD) + { + // gi.dprintf ("yo man I'll be waiting for ya\n"); + if (other->last_talk_time < (level.time - 2) || last_voice != 3) + // Voice_Specific( other, ent, hiredguy_specific, 4 + (hiredguy_specific[4].last_played > hiredguy_specific[5].last_played) ); + Voice_Random (other, ent, &hiredgal_specific[4], 2); + + other->cast_info.talk( other ); + last_voice = 3; + return; + } + else // invalid response + { + gi.dprintf( "\nInvalid response.\nkey1 = YES\nkey3 = NO\n" ); + return; + } + } + else + { + // gi.dprintf ("yo man come to me when you got %d bucks\n", abs (other->currentcash)); + if (other->last_talk_time < (level.time - 2) || last_voice != 4) + Voice_Specific( other, ent, hiredgal_specific, 3 ); + + other->cast_info.talk( other ); + last_voice = 4; + return; + } + } + + else if (!(cast_memory->flags & MEMORY_HIRED)) + { + // JOSEPH 19-FEB-99 + if (flags == ORDER_HOLD) + { + ent->client->ps.stats[STAT_HUD_SELF_TALK] = TT_NO; + ent->client->hud_self_talk_time = level.time + 2.0; + } + else if (flags == ORDER_FOLLOWME) + { + ent->client->ps.stats[STAT_HUD_SELF_TALK] = TT_YES; + ent->client->hud_self_talk_time = level.time + 2.0; + } + // END JOSEPH + + // JOSEPH 3-FEB-99 + if (ent->client->pers.currentcash >= abs (other->currentcash)) + { + if (flags == ORDER_FOLLOWME) + { // give them the money + extern mmove_t thug_move_crch_grab; + + cast_memory->flags |= MEMORY_HIRED; + ent->client->pers.currentcash -= abs (other->currentcash); + + // other->currentcash = abs(other->currentcash); + other->currentcash = 0; + + ent->client->pers.friends++; + + /* + if (!strcmp(other->classname, "cast_thug")) + { + other->cast_info.currentmove = &thug_move_crch_grab; + } + */ + + other->cast_info.aiflags |= AI_NOWALK_FACE; + + // we just hired them, by default they should follow us + flags = ORDER_FOLLOWME; + firstime = true; + + + EP_HiredGuysRegisterFlags (ent, other); + } + else if (flags == ORDER_HOLD) + { + // gi.dprintf ("yo man I'll be here if you change your mind\n"); + + cast_memory->flags &= ~MEMORY_HIRE_ASK; + + if (other->last_talk_time < (level.time - 2) || last_voice != 5) + Voice_Specific( other, ent, hiredgal_specific, 2 ); + other->cast_info.talk( other ); + last_voice = 5; + return; + } + } + // END JOSEPH + else + { + // gi.dprintf ("yo man come to me when you got %d bucks\n", abs (other->currentcash)); + if (other->last_talk_time < (level.time - 2) || last_voice != 6) + Voice_Specific( other, ent, hiredgal_specific, 3 ); + other->cast_info.talk( other ); + last_voice = 6; + return; + } + } + } + } + + // if in bar, don't allow killing + if (flags == ORDER_MOVE && level.bar_lvl) + { + // gi.dprintf("SOUND TODO: No killing in the bar\n"); + return; + } + + // this should help with the friendly guys not showing up when you change level + other->spawnflags &= ~2; + other->currentcash = 0; + other->leader = ent; + + other->cast_info.aiflags &= ~(AI_MOVEOUT | AI_HOLD_POSITION); + other->cast_info.aiflags &= ~AI_NOWALK_FACE; + + if (other->holdpos_ent) + { + G_FreeEdict( other->holdpos_ent ); + other->holdpos_ent = NULL; + } + + if (flags == ORDER_MOVE) + { + if (EP_DoKey (ent, other)) + { + ent->cast_info.aiflags |= AI_DOKEY; + other->cast_info.aiflags |= AI_DOKEY; + } + else + { + ent->cast_info.aiflags |= AI_MOVEOUT; + other->cast_info.aiflags |= AI_MOVEOUT; + + if (ent->moveout_ent) + { // in case it was set before, kill it + ent->moveout_ent = NULL; + } + } + } + + if (ordertime > level.time) // changed levels + ordertime = 0; + + switch (flags) + { + case ORDER_MOVE : + { + if (ordertime < (level.time - 0.5)) + { + Voice_Random( ent, other, m_response, NUM_MOVEOUT ); + } + break; + } + case ORDER_HOLD : + { + if (ordertime < (level.time - 0.5)) + Voice_Random( ent, other, holdposition, NUM_HOLDPOSITION ); + other->cast_info.aiflags |= AI_HOLD_POSITION; + other->cast_info.aiflags |= AI_NOWALK_FACE; + + // remember this position + if (!other->holdpos_ent) + other->holdpos_ent = G_Spawn(); + + VectorCopy( other->s.origin, other->holdpos_ent->s.origin ); + + break; + } + case ORDER_FOLLOWME : + { + if (firstime) + { + if (other->gender == GENDER_FEMALE) + Voice_Random( other, ent, &hiredgal_specific[8], 3); + else + Voice_Specific( other, ent, hiredguy_specific, (rand()%3) + 8 ); +// gi.dprintf ("ok I'll go with ya\n"); + } + else if (ordertime < (level.time - 0.5)) + Voice_Random( ent, other, followme, NUM_FOLLOWME ); + + if (other->cast_info.aiflags & AI_TAKE_COVER) + { + other->cast_info.aiflags &= ~(AI_TAKE_COVER|AI_TAKECOVER_IGNOREHEALTH); + } + + break; + } + + // JOSEPH 19-FEB-99 + if ((flags) && (!ent->client->hud_self_talk_time == (level.time + 2.0)) && + (!((ent->client->ps.stats[STAT_HUD_SELF_TALK] == TT_YES) || + (ent->client->ps.stats[STAT_HUD_SELF_TALK] == TT_NO)))) + { + ent->client->ps.stats[STAT_HUD_SELF_TALK] = TT_COMMAND; + ent->client->hud_self_talk_time = level.time + 2.0; + } + // END JOSEPH + } + + if (ordertime < (level.time - 0.5)) + ordertime = level.time; +} + +//------------------------------------------------------------------------- +// Generic "3-key" system + +edict_t *key_ent; + +// JOSEPH 8-FEB-99 +edict_t *GetKeyEnt( edict_t *ent ) +{ + vec3_t dir; + vec3_t start, end; + trace_t tr; + + AngleVectors( ent->client->ps.viewangles, dir, NULL, NULL ); + + VectorCopy( ent->s.origin, start ); + start[2] += ent->viewheight; + + if (deathmatch->value) + VectorMA( start, 4000, dir, end ); + else + VectorMA( start, 384, dir, end ); + + tr = gi.trace( start, NULL, NULL, end, ent, CONTENTS_MONSTER ); + + if ((tr.fraction < 1) && ((deathmatch->value && tr.ent->client) || (tr.ent->svflags & SVF_MONSTER)) && (tr.ent->name_index == NAME_MOMO)) + { + return tr.ent; + } + + tr = gi.trace( start, NULL, NULL, end, ent, MASK_SHOT ); + + if ((tr.fraction < 1) && ((deathmatch->value && tr.ent->client) || (tr.ent->svflags & SVF_MONSTER))) + { + return tr.ent; + } + + return NULL; +} +// END JOSEPH + +void Cmd_Key_f (edict_t *ent) +{ + char *cmd; + + + if (level.speaktime > level.time) + return; + + cmd = gi.argv (0); + + if (key_ent = GetKeyEnt( ent )) + { + void Cmd_Wave_f (edict_t *ent, edict_t *other); + cast_memory_t *mem; + + if (deathmatch->value) + { + Cmd_Wave_f( ent, key_ent ); + return; + } + + // JOSEPH 18-FEB-99 + ent->client->ps.stats[STAT_HUD_SELF_TALK] = TT_COMMAND; + ent->client->hud_self_talk_time = level.time + 2.0; + // END JOSEPH + + mem = level.global_cast_memory[key_ent->character_index][ent->character_index]; + + if (!mem) + return; + + if (mem->memory_type == MEMORY_TYPE_FRIEND) + { // issuing an order + + Cmd_Order_f( ent, key_ent, cmd ); + + if (key_ent->targetname) + key_ent->targetname = 0; + if (key_ent->spawnflags & 2) + key_ent->spawnflags &=~ 2; + + } + else if (mem->response) // we're responding to a question + { + response_t resp; + + if (Q_stricmp (cmd, "key1") == 0) + resp = resp_yes; + else if (Q_stricmp (cmd, "key3") == 0) + resp = resp_no; + + mem->response( ent, key_ent, resp ); + + } + else // normal discussion + { + + Cmd_Speech_f ( ent, key_ent, cmd ); + + } + + } + else // noone to talk to, so make it an order in case anyone's listening + { + int flags; + + if (Q_stricmp (cmd, "key1") == 0) // Stay Here + flags = ORDER_FOLLOWME; + else if (Q_stricmp (cmd, "key2") == 0) // Attack + flags = ORDER_MOVE; + else if (Q_stricmp (cmd, "key3") == 0) // Follow + flags = ORDER_HOLD; + + + ent->order = flags; + ent->order_timestamp = level.time; + } + + + level.speaktime = level.time + 1.0; + +} + +//------------------------------------------------------------------------- + +// Ridah, Chasecam +void Cmd_ToggleCam_f ( edict_t *ent ) +{ + if (ent->flags & FL_CHASECAM) + { + ent->flags -= FL_CHASECAM; + } + else + { + ent->flags += FL_CHASECAM; + + gi.centerprintf( ent, "Chasecam is incomplete, and therefore\nunsupported at this stage\n" ); + } +} +// done. + +// JOSEPH 13-APR-99 +void Cmd_SetProps_f (int status) +{ + edict_t *e; + int i; + + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->svflags & SVF_PROP) && (e->option)) + { + if (status) + { + e->svflags |= SVF_NOCLIENT; + e->solid = SOLID_NOT; + } + else + { + e->svflags &= ~SVF_NOCLIENT; + e->solid = e->savesolid; + } + } + } +} +// END JOSEPH + +// JOSEPH 23-MAR-99 +void Cmd_FryAll_f (edict_t *ent) +{ + edict_t *e = NULL; + + if (deathmatch->value) + return; + + while (e = findradius(e, ent->s.origin, 512)) + { + if (e->svflags & SVF_MONSTER) + { + e->onfiretime = 100; + e->onfireent = e; + + if (e->gender == GENDER_FEMALE) + { + Voice_Random (e, e, &female_specific[6], 2); + } + else if (e->gender == GENDER_MALE) + { + Voice_Random (e, e, &male_specific[10], 2); + } + + e->pain_debounce_time = level.time + 5; + + if (e->cast_info.catch_fire) + { + e->cast_info.catch_fire(e, e); + } + + e->s.renderfx2 &= ~RF2_DIR_LIGHTS; + } + } +} +// END JOSEPH + +// ============================================================================== +// Quake2 code follows: + +char *ClientTeam (edict_t *ent) +{ + char *p; + static char value[512]; + + value[0] = 0; + + if (!ent->client) + return value; + + strcpy(value, Info_ValueForKey (ent->client->pers.userinfo, "skin")); + p = strchr(value, '/'); + if (!p) + return value; + + if ((int)(dmflags->value) & DF_MODELTEAMS) + { +// Ridah, disabled this, teams are determined by model and skin (since that's the only way to make sure they appear the same +// *p = 0; + return value; + } + + // if ((int)(dmflags->value) & DF_SKINTEAMS) + return ++p; +} + +qboolean OnSameTeam (edict_t *ent1, edict_t *ent2) +{ + char ent1Team [512]; + char ent2Team [512]; + + if (teamplay->value) + { + if (ent1 && ent2 && ent1->client && ent2->client && ent1->client->pers.team && (ent1->client->pers.team == ent2->client->pers.team)) + return true; + else + return false; + } + + if (!((int)(dmflags->value) & (DF_MODELTEAMS /*| DF_SKINTEAMS*/))) + return false; + + strcpy (ent1Team, ClientTeam (ent1)); + strcpy (ent2Team, ClientTeam (ent2)); + + if (strcmp(ent1Team, ent2Team) == 0) + return true; + return false; + +} + + +void SelectNextItem (edict_t *ent, int itflags) +{ + gclient_t *cl; +// int i, index; +// gitem_t *it; + + cl = ent->client; + + if (cl->chase_target) + { + ChaseNext(ent); + return; + } +/* + // scan for the next valid one + for (i=1 ; i<=MAX_ITEMS ; i++) + { + index = (cl->pers.selected_item + i)%MAX_ITEMS; + if (!cl->pers.inventory[index]) + continue; + it = &itemlist[index]; + if (!it->use) + continue; + if (!(it->flags & itflags)) + continue; + + cl->pers.selected_item = index; + return; + } + + cl->pers.selected_item = -1; +*/ +} + +void SelectPrevItem (edict_t *ent, int itflags) +{ + gclient_t *cl; +// int i, index; +// gitem_t *it; + + cl = ent->client; + + if (cl->chase_target) + { + ChasePrev(ent); + return; + } +/* + // scan for the next valid one + for (i=1 ; i<=MAX_ITEMS ; i++) + { + index = (cl->pers.selected_item + MAX_ITEMS - i)%MAX_ITEMS; + if (!cl->pers.inventory[index]) + continue; + it = &itemlist[index]; + if (!it->use) + continue; + if (!(it->flags & itflags)) + continue; + + cl->pers.selected_item = index; + return; + } + + cl->pers.selected_item = -1; +*/ +} + +void ValidateSelectedItem (edict_t *ent) +{ + gclient_t *cl; + + cl = ent->client; + + if (cl->pers.inventory[cl->pers.selected_item]) + return; // valid + + SelectNextItem (ent, -1); +} + +/* +================== +Cmd_Give_f + +Give items to a client +================== +*/ +void Cmd_Give_f (edict_t *ent) +{ + char *name; + gitem_t *it; + int index; + int i; + qboolean give_all; + edict_t *it_ent; + + if (!developer->value) + return; + + if (deathmatch->value && !sv_cheats->value) + { + gi.cprintf (ent, PRINT_HIGH, "You must run the server with '+set cheats 1' to enable this command.\n"); + return; + } + + name = gi.args(); + + if (Q_stricmp(name, "all") == 0) + give_all = true; + else + give_all = false; + + // JOSEPH 15-FEB-99 + if (Q_stricmp(gi.argv(1), "cash") == 0) + { + if (gi.argc() == 3) + ent->client->pers.currentcash += atoi(gi.argv(2)); + else + ent->client->pers.currentcash += 100; + + gi.sound (ent, CHAN_AUTO, gi.soundindex("world/pickups/cash.wav"), 1, ATTN_NORM, 0); + + if (!give_all) + return; + } + // END JOSEPH + + if (give_all || Q_stricmp(gi.argv(1), "health") == 0) + { + if (gi.argc() == 3) + ent->health = atoi(gi.argv(2)); + else + ent->health = ent->max_health; + if (!give_all) + return; + } + + if (give_all || Q_stricmp (gi.argv(1), "mods") == 0) + { + ent->client->pers.pistol_mods |= WEAPON_MOD_ROF; + + ent->client->pers.pistol_mods |= WEAPON_MOD_RELOAD; + + ent->client->pers.pistol_mods |= WEAPON_MOD_DAMAGE; + + ent->client->pers.pistol_mods |= WEAPON_MOD_COOLING_JACKET; + + ent->client->pers.hmg_shots = 30; + + if (!give_all) + return; + } + + if (give_all || Q_stricmp(name, "weapons") == 0) + { + for (i=0 ; ipickup) + continue; + if (!(it->flags & IT_WEAPON)) + continue; + + // ent->client->pers.inventory[i] += 1; + ent->client->pers.inventory[i] = 1; + if (it->flags & IT_SILENCER) + { + ent->client->pers.silencer_shots = 20; + } + } + if (!give_all) + return; + } + + if (give_all || Q_stricmp(name, "ammo") == 0) + { + for (i=0 ; ipickup) + continue; + if (!(it->flags & IT_AMMO)) + continue; + if (it->flags & IT_NOCHEATS) + continue; + Add_Ammo (ent, it, 1000); + } + if (!give_all) + return; + } + + // JOSEPH 30-APR-99 + if (Q_stricmp(name, "armor") == 0) + { + gitem_t *it; + + it = FindItem("Jacket Armor Heavy"); + ent->client->pers.inventory[ITEM_INDEX(it)] = 100; + + it = FindItem("Legs Armor Heavy"); + ent->client->pers.inventory[ITEM_INDEX(it)] = 100; + + it = FindItem("Helmet Armor Heavy"); + ent->client->pers.inventory[ITEM_INDEX(it)] = 100; + + return; + } + + /*if (give_all || Q_stricmp(name, "Power Shield") == 0) + { + it = FindItem("Power Shield"); + it_ent = G_Spawn(); + it_ent->classname = it->classname; + SpawnItem (it_ent, it); + Touch_Item (it_ent, ent, NULL, NULL); + if (it_ent->inuse) + G_FreeEdict(it_ent); + + if (!give_all) + return; + }*/ + // END JOSEPH + + if (give_all) + { + for (i=0 ; ipickup) + continue; + if (it->flags & (IT_ARMOR|IT_WEAPON|IT_AMMO)) + continue; + if (it->flags & IT_NOCHEATS) + continue; + ent->client->pers.inventory[i] = 1; + } + return; + } + + it = FindItem (name); + if (!it) + { + name = gi.argv(1); + it = FindItem (name); + if (!it) + { + gi.cprintf (ent, PRINT_HIGH, "not a valid item\n"); + return; + } + } + + if (!it->pickup) + { + gi.cprintf (ent, PRINT_HIGH, "non-pickup item\n"); + return; + } + + index = ITEM_INDEX(it); + + if (it->flags & IT_AMMO) + { + if (gi.argc() == 3) + ent->client->pers.inventory[index] = atoi(gi.argv(2)); + else + ent->client->pers.inventory[index] += it->quantity; + } + else + { + it_ent = G_Spawn(); + it_ent->classname = it->classname; + SpawnItem (it_ent, it); + Touch_Item (it_ent, ent, NULL, NULL); + if (it->flags & IT_SILENCER) + ent->client->pers.silencer_shots = 20; + if (it_ent->inuse) + G_FreeEdict(it_ent); + + } +} + + +/* +================== +Cmd_God_f + +Sets client to godmode + +argv(0) god +================== +*/ +void Cmd_God_f (edict_t *ent) +{ + char *msg; + + if (!developer->value) + return; + + if (deathmatch->value && !sv_cheats->value) + { + gi.cprintf (ent, PRINT_HIGH, "You must run the server with '+set cheats 1' to enable this command.\n"); + return; + } + + ent->flags ^= FL_GODMODE; + if (!(ent->flags & FL_GODMODE) ) + msg = "Immortal OFF\n"; + else + msg = "Immortal ON\n"; + + gi.cprintf (ent, PRINT_HIGH, msg); +} + + +/* +================== +Cmd_Notarget_f + +Sets client to notarget + +argv(0) notarget +================== +*/ +void Cmd_Notarget_f (edict_t *ent) +{ + char *msg; + + if (!developer->value) + return; + + if (deathmatch->value && !sv_cheats->value) + { + gi.cprintf (ent, PRINT_HIGH, "You must run the server with '+set cheats 1' to enable this command.\n"); + return; + } + + ent->flags ^= FL_NOTARGET; + if (!(ent->flags & FL_NOTARGET) ) + msg = "notarget OFF\n"; + else + msg = "notarget ON\n"; + + gi.cprintf (ent, PRINT_HIGH, msg); +} + + +/* +================== +Cmd_Noclip_f + +argv(0) noclip +================== +*/ +void Cmd_Noclip_f (edict_t *ent) +{ + char *msg; + + if (!developer->value) + return; + + if (deathmatch->value && !sv_cheats->value) + { + gi.cprintf (ent, PRINT_HIGH, "You must run the server with '+set cheats 1' to enable this command.\n"); + return; + } + + if (ent->movetype == MOVETYPE_NOCLIP) + { + ent->movetype = MOVETYPE_WALK; + msg = "noclip OFF\n"; + } + else + { + ent->movetype = MOVETYPE_NOCLIP; + msg = "noclip ON\n"; + } + + gi.cprintf (ent, PRINT_HIGH, msg); +} + + +/* +================== +Cmd_Use_f + +Use an inventory item +================== +*/ +void Cmd_Use_f (edict_t *ent) +{ + int index; + gitem_t *it; + char *s; + + s = gi.args(); + + // Teamplay + if (teamplay->value && !ent->client->pers.team) + { + if (s) + { + if (!strcmp(s, "pipe")) + { // Kings + Cmd_Join_f( ent, team_names[1] ); + } + else if (!strcmp(s, "pistol")) + { // Pins + Cmd_Join_f( ent, team_names[2] ); + } + } + + return; + } + + it = FindItem (s); + if (!it) + { + gi.cprintf (ent, PRINT_HIGH, "not a valid item: %s\n", s); + return; + } + if (!it->use) + { + gi.cprintf (ent, PRINT_HIGH, "Item is not usable.\n"); + return; + } + + index = ITEM_INDEX(it); + if (!ent->client->pers.inventory[index]) + { + + if (strcmp (it->pickup_name, "Pistol") == 0) + { + gi.dprintf ("silencer_shots: %d\n", ent->client->pers.silencer_shots); + if (!ent->client->pers.silencer_shots) + { + gi.cprintf (ent, PRINT_HIGH, "Out of item: %s\n", s); + return; + } + it = FindItem ("SPistol"); + index = ITEM_INDEX (it); + if (!ent->client->pers.inventory[index]) + { + gi.cprintf (ent, PRINT_HIGH, "Out of item: %s\n", s); + return; + } + } + else + { + gi.cprintf (ent, PRINT_HIGH, "Out of item: %s\n", s); + return; + } + } + + if (ent->client->pers.holsteredweapon) + { + if (level.bar_lvl) + return; + + if (ent->client->pers.holsteredweapon == it) + { + ent->client->newweapon = ent->client->pers.holsteredweapon; + ChangeWeapon (ent); + ent->client->pers.holsteredweapon = 0; + return; + } + else + { + ent->client->pers.weapon = ent->client->pers.holsteredweapon; + ent->client->pers.holsteredweapon = NULL; + } + } + + it->use (ent, it); + + if (!ent->client->pers.holsteredweapon && !ent->client->pers.weapon && ent->client->newweapon) + { + ChangeWeapon (ent); + } +} + + +/* +================== +Cmd_Drop_f + +Drop an inventory item +================== +*/ +void Cmd_Drop_f (edict_t *ent) +{ + int index; + gitem_t *it; + char *s; + + s = gi.args(); + it = FindItem (s); + if (!it) + { + gi.cprintf (ent, PRINT_HIGH, "not a valid item: %s\n", s); + return; + } + if (!it->drop) + { + gi.cprintf (ent, PRINT_HIGH, "Item is not dropable.\n"); + return; + } + + index = ITEM_INDEX(it); + if (!ent->client->pers.inventory[index]) + { + if (strcmp (it->pickup_name, "Pistol") == 0) + { + gi.dprintf ("silencer_shots: %d\n", ent->client->pers.silencer_shots); + + if (!ent->client->pers.silencer_shots) + { + gi.cprintf (ent, PRINT_HIGH, "Out of item: %s\n", s); + return; + } + + it = FindItem ("SPistol"); + index = ITEM_INDEX (it); + if (!ent->client->pers.inventory[index]) + { + gi.cprintf (ent, PRINT_HIGH, "Out of item: %s\n", s); + return; + } + } + else + { + gi.cprintf (ent, PRINT_HIGH, "Out of item: %s\n", s); + return; + } + } + + it->drop (ent, it); +} + + +/* +================= +Cmd_Inven_f +================= +*/ +void Cmd_Inven_f (edict_t *ent) +{ + int i; + gclient_t *cl; + + cl = ent->client; + + cl->showscores = false; + cl->showhelp = false; + + if (cl->showinventory) + { + cl->showinventory = false; + return; + } + + cl->showinventory = true; + + gi.WriteByte (svc_inventory); + for (i=0 ; ipers.inventory[i]); + } + gi.unicast (ent, true); +} + +/* +================= +Cmd_InvUse_f +================= +*/ +void Cmd_InvUse_f (edict_t *ent) +{ + gitem_t *it; + + ValidateSelectedItem (ent); + + if (ent->client->pers.selected_item == -1) + { + gi.cprintf (ent, PRINT_HIGH, "No item to use.\n"); + return; + } + + it = &itemlist[ent->client->pers.selected_item]; + if (!it->use) + { + gi.cprintf (ent, PRINT_HIGH, "Item is not usable.\n"); + return; + } + it->use (ent, it); +} + +/* +================= +Cmd_WeapPrev_f +================= +*/ +void Cmd_WeapPrev_f (edict_t *ent) +{ + gclient_t *cl; + int i, index; + gitem_t *it; + int selected_weapon; + + cl = ent->client; + + // JOSEPH 10-FEB-99 + if (cl->pers.holsteredweapon) + { + if (level.bar_lvl) + return; + + cl->newweapon = cl->pers.holsteredweapon; + ChangeWeapon (ent); + cl->pers.holsteredweapon = 0; + return; + } + // END JOSEPH + + if (!cl->pers.weapon) + return; + + // Ridah, if already changing weapons, start from the next weapon, for faster cycling + if (ent->client->weaponstate == WEAPON_DROPPING) + selected_weapon = ITEM_INDEX(cl->newweapon); + else + selected_weapon = ITEM_INDEX(cl->pers.weapon); + + // scan for the next valid one + for (i=1 ; i<=MAX_ITEMS ; i++) + { + index = (selected_weapon + i)%MAX_ITEMS; + if (!cl->pers.inventory[index]) + continue; + it = &itemlist[index]; + if (!it->use) + continue; + if (! (it->flags & IT_WEAPON) ) + continue; + if (selected_weapon == ITEM_INDEX(it) && cl->newweapon) + { + // Ridah, show the current weapon on the hud, for easy scrolling + if (deathmatch->value && !strstr(cl->newweapon->icon, "pipe")) + { + it = cl->newweapon; + ent->client->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(it->icon); + ent->client->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS+ITEM_INDEX(it); + ent->client->pickup_msg_time = level.time + 5.5; + } + + return; // successful + } + else + { + it->use (ent, it); + } + } +} + +#define DREWACTIVATEDISTANCE 96 + +// JOSEPH 11-MAY-99 +qboolean infront_angle_activate (vec3_t selfang, vec3_t selforg, vec3_t otherorg) +{ + vec3_t vec; + float dot; + vec3_t forward; + + AngleVectors (selfang, forward, NULL, NULL); + VectorSubtract (otherorg, selforg, vec); + VectorNormalize (vec); + dot = DotProduct (vec, forward); + + if (dot > 0.95) + return true; + return false; +} +// END JOSEPH + +// JOSEPH 21-SEP-98 +void Cmd_Activate_f (edict_t *ent) +{ + edict_t *trav, *best; + float best_dist=9999, this_dist; + + if (ent->movetype == MOVETYPE_NOCLIP) + { + if (maxclients->value > 1) + { + if (!ent->client->chase_target) + ChaseNext(ent); + else // disable it + { + ent->client->chase_target = NULL; + ent->client->ps.pmove.pm_flags &= ~PMF_NO_PREDICTION; + } + } + + return; + } + + // if we are ducking + if (ent->client->ps.pmove.pm_flags & PMF_DUCKED) + { + // find the near enemy + trav = best = NULL; + // JOSEPH 13-MAY-99 + while (trav = findradius( trav, ent->s.origin, 80 )) + // END JOSEPH + { + // JOSEPH 14-MAY-99 + if (!(trav->svflags & SVF_MONSTER)) + continue; + // END JOSEPH + // JOSEPH 6-JAN-99 + if (trav == ent) + continue; + // END JOSEPH + //if (!infront(ent, trav)) + // continue; + //if (!visible(ent, trav)) + // continue; + if (((this_dist = VectorDistance(ent->s.origin, trav->s.origin)) > best_dist) && (this_dist > 32)) + continue; + + best = trav; + best_dist = this_dist; + } + + // if the enemy has cash - then take it + // Joseph 14-MAY-99 + if ((best) && (best->currentcash > 0) && best->health <= 0) + // END JOSEPH + { + int index; + gitem_t *item; + + ent->client->pers.currentcash += best->currentcash; + //gi.cprintf (ent, PRINT_HIGH, "%i dollars found\n", best->currentcash); + ent->client->ps.stats[STAT_CASH_PICKUP] = best->currentcash; + best->currentcash = 0; + // flash the screen green + ent->client->bonus_alpha = 0.25; + ent->client->bonus_alpha_color = 2; + gi.sound (ent, CHAN_AUTO, gi.soundindex("world/pickups/cash.wav"), 1, ATTN_NORM, 0); + + item = FindItem ("Cash"); + index = ITEM_INDEX (item); + // show icon and name on status bar + ent->client->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(item->icon); + ent->client->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS+index; + ent->client->pickup_msg_time = level.time + 5.5; + } + } + + // JOSEPH 1-OCT-98 + // Work in progress + /*{ + edict_t *trav, *best; + float best_dist=9999, this_dist; + + // find the nearest pull-enabled object + trav = best = NULL; + while (trav = findradius( trav, ent->s.origin, 128 )) + { + if (!trav->pullable) + continue; + //if (!infront(ent, trav)) + // continue; + //if (!visible(ent, trav)) + // continue; + if (((this_dist = VectorDistance(ent->s.origin, trav->s.origin)) > best_dist) && (this_dist > 64)) + continue; + + best = trav; + best_dist = this_dist; + } + + // If we find something to drag + if (best) + { + vec3_t up, forward; + + AngleVectors(ent->s.angles, forward, NULL, up); + //VectorScale (forward, 50, best->velocity); + VectorMA (best->velocity, 400, up, best->velocity); + best->movetype = MOVETYPE_TOSS; + best->groundentity = NULL; + } + }*/ + // END JOSEPH + + // JOSEPH 11-MAY-99 + // find a usable brush entity and tag it as such + { + edict_t *target, *toptarget; + vec3_t dest; + trace_t trace, tr; + vec3_t dir, neworigin, endorg; + float topdistance; + int directtarget; + + target = NULL; + toptarget = NULL; + topdistance = 10000; + directtarget = 0; + + while (((target = findradius(target, ent->s.origin, DREWACTIVATEDISTANCE * (1 + (deathmatch->value != 0)))) || toptarget) && !directtarget) + { + if (!target) + goto startyourtriggers; + if (!(target->activate_flags & ACTIVATE_GENERAL)) + continue; + if (target->targetname && target->key != -1) + continue; + + VectorCopy(ent->s.origin, neworigin); + neworigin[2] += ent->viewheight; + + AngleVectors( ent->client->ps.viewangles, dir, NULL, NULL ); + VectorMA (neworigin, DREWACTIVATEDISTANCE * (1 + (deathmatch->value != 0)), dir, dest); + + trace = gi.trace (neworigin, vec3_origin, vec3_origin, dest, ent, MASK_SOLID); + + // JOSEPH 19-MAY-99 + if (trace.ent && trace.ent->classname && (!strcmp(trace.ent->classname, "func_lift"))) + { + edict_t *targetL; + + targetL = NULL; + + while (((targetL = findradius(targetL, trace.endpos, 16)))) + { + if (!(targetL->activate_flags & ACTIVATE_GENERAL)) + continue; + if (targetL->targetname && targetL->key != -1) + continue; + if (targetL->classname && (!strcmp(targetL->classname, "func_button"))) + { + toptarget = targetL; + goto startyourtriggers; + } + } + } + // END JOSEPH + + // JOSEPH 14-MAY-99 + if (trace.ent == target) + { + directtarget = 1; + + if ((strcmp (target->classname, "func_door") == 0) || + (strcmp (target->classname, "func_door_rotating") == 0)) + { + if ((target->team) && (target->teammaster)) + { + toptarget = target->teammaster; + goto startyourtriggers; + } + } + + toptarget = target; + goto startyourtriggers; + } + // END JOSEPH + + VectorAdd (target->absmin, target->absmax, endorg); + VectorScale (endorg, 0.5, endorg); + + if (!(infront_angle_activate(ent->client->v_angle, neworigin, endorg))) + continue; + + if (VectorDistance(trace.endpos, dest ) > topdistance) + continue; + + tr = gi.trace(neworigin, NULL, NULL, endorg, ent, MASK_SOLID); + + // Ridah, added this since it's frustrating hitting the switches in deathmatch + if (!deathmatch->value || (!Q_stricmp(target->classname, "func_button") && !Q_stricmp(target->target, "safe2"))) + if (tr.ent != target) + continue; + + topdistance = VectorDistance(trace.endpos, dest); + toptarget = target; + continue; + +startyourtriggers: + + target = toptarget; + toptarget = NULL; + + // END JOSEPH + + /*{ + edict_t *target; + vec3_t dest, src; + trace_t trace; + vec3_t dir; + + + target = NULL; + + while (target = findradius ( target, ent->s.origin, DREWACTIVATEDISTANCE)) + { + if (!(target->activate_flags & ACTIVATE_GENERAL)) + continue; + if (target->targetname && target->key != -1) + continue; + + if (strcmp (target->classname, "func_door") == 0) + { + AngleVectors( ent->client->ps.viewangles, dir, NULL, NULL ); + VectorMA (ent->s.origin, DREWACTIVATEDISTANCE, dir, dest); + } + else if (strcmp (target->classname, "misc_cut_scene") == 0) + { + AngleVectors( ent->client->ps.viewangles, dir, NULL, NULL ); + VectorMA (ent->s.origin, DREWACTIVATEDISTANCE, dir, dest); + } + else + { + VectorAdd (target->absmin, target->absmax, dest); + VectorScale (dest, 0.5, dest); + } + + + // Ridah, fix close to buttons not working + VectorCopy( ent->s.origin, src ); + if ( (dest[2] > (ent->s.origin[2] + ent->mins[2])) + && (dest[2] < (ent->s.origin[2] + ent->maxs[2]))) + { + src[2] = dest[2]; + } + + trace = gi.trace (ent->s.origin, vec3_origin, vec3_origin, dest, ent, MASK_SOLID); + + // Rafael + if (trace.ent != target) + { + // Ridah, fix close to buttons not working + if (VectorDistance( trace.endpos, dest ) > 32) + continue; + }*/ + + // JOSEPH 12-MAR-99-B + // If it must be trigger unlocked + if (target->key < 0) + { + gi.sound (ent, CHAN_AUTO, gi.soundindex("world/doors/dr_locked.wav"), 1, ATTN_NORM, 0); + continue; + } + // END JOSEPH + + // JOSEPH 19-MAR-99-B + // Kingpin keys must be placed here to open doors + if (target->key > 0) + { + switch(target->key) + { + case 1: + { + if (!ent->client->pers.inventory[ITEM_INDEX(FindItem("StoreRoomKey"))]) + { + gi.sound (ent, CHAN_AUTO, gi.soundindex("world/doors/dr_locked.wav"), 1, ATTN_NORM, 0); + continue; + } + } + break; + + case 2: + { + if (!ent->client->pers.inventory[ITEM_INDEX(FindItem("Electrical_Room"))]) + { + gi.sound (ent, CHAN_AUTO, gi.soundindex("world/doors/dr_locked.wav"), 1, ATTN_NORM, 0); + continue; + } + } + break; + + case 3: + { + if (!ent->client->pers.inventory[ITEM_INDEX(FindItem("Chem_Plant_Key"))]) + { + gi.sound (ent, CHAN_AUTO, gi.soundindex("world/doors/dr_locked.wav"), 1, ATTN_NORM, 0); + continue; + } + } + break; + + case 4: + { + if (!ent->client->pers.inventory[ITEM_INDEX(FindItem("Bridge_Key"))]) + { + gi.sound (ent, CHAN_AUTO, gi.soundindex("world/doors/dr_locked.wav"), 1, ATTN_NORM, 0); + continue; + } + } + break; + + case 5: + { + if (!ent->client->pers.inventory[ITEM_INDEX(FindItem("Shipyard_Key"))]) + { + gi.sound (ent, CHAN_AUTO, gi.soundindex("world/doors/dr_locked.wav"), 1, ATTN_NORM, 0); + continue; + } + } + break; + + case 6: + { + if (!ent->client->pers.inventory[ITEM_INDEX(FindItem("Warehouse_Key"))]) + { + gi.sound (ent, CHAN_AUTO, gi.soundindex("world/doors/dr_locked.wav"), 1, ATTN_NORM, 0); + continue; + } + } + break; + + case 7: + { + if (!ent->client->pers.inventory[ITEM_INDEX(FindItem("Shop_Key"))]) + { + gi.sound (ent, CHAN_AUTO, gi.soundindex("world/doors/dr_locked.wav"), 1, ATTN_NORM, 0); + continue; + } + } + break; + + case 8: + { + if (!ent->client->pers.inventory[ITEM_INDEX(FindItem("Ticket"))]) + { + gi.sound (ent, CHAN_AUTO, gi.soundindex("world/doors/dr_locked.wav"), 1, ATTN_NORM, 0); + continue; + } + else + ent->client->pers.inventory[ITEM_INDEX(FindItem("Ticket"))] = 0; + } + break; + + case 9: + { + if (!ent->client->pers.inventory[ITEM_INDEX(FindItem("Office_Key"))]) + { + gi.sound (ent, CHAN_AUTO, gi.soundindex("world/doors/dr_locked.wav"), 1, ATTN_NORM, 0); + continue; + } + } + break; + + case 10: + { + if (!ent->client->pers.inventory[ITEM_INDEX(FindItem("key10"))]) + { + gi.sound (ent, CHAN_AUTO, gi.soundindex("world/doors/dr_locked.wav"), 1, ATTN_NORM, 0); + continue; + } + } + break; + + case 11: + { + if (!(EP_UnlockDoorFlag (ent))) + { + gi.sound (ent, CHAN_AUTO, gi.soundindex("world/doors/dr_locked.wav"), 1, ATTN_NORM, 0); + continue; + } + } + } + + // Ridah, once unlocked, stay unlocked + target->key = 0; + } + // END JOSEPH + + // we have a valid one so lets flag it + target->activate_flags |= ACTIVATE_AND_OPEN; + break; + } + + if (target) + if (target->activate_flags & ACTIVATE_AND_OPEN) + if (target->use) + { +// gi.dprintf( "%s, %s\n", target->classname, target->target ); + target->use (target, ent, ent); + } + } + + // Ridah, moveout command + if ((ent->cast_info.aiflags & AI_DOKEY || ent->cast_info.aiflags & AI_MOVEOUT) && ent->client->pers.friends > 0) + { + vec3_t start, end, dir; + trace_t tr; + + AngleVectors( ent->client->ps.viewangles, dir, NULL, NULL ); + + VectorCopy( ent->s.origin, start ); + start[2] += ent->viewheight; + + VectorMA( start, 2048, dir, end ); + + tr = gi.trace( start, NULL, NULL, end, ent, MASK_SHOT ); + + if ( (tr.fraction < 1) + && (tr.ent->svflags & SVF_MONSTER) + && (tr.ent->health > 0) + && (tr.ent->cast_group != ent->cast_group)) + { + int i; + + ent->moveout_ent = tr.ent; + + // look for a friend to say this to + for (i=0; ihealth <= 0) + continue; + if (level.characters[i]->leader != ent) + continue; + + if (!(level.characters[i]->cast_info.aiflags & AI_MOVEOUT)) + continue; + + Voice_Random( ent, level.characters[i], hiredguy_combat_moveout, NUM_HIREDGUY_COMBAT_MOVEOUT ); + break; + } + } + + else if (ent->cast_info.aiflags & AI_DOKEY) + { + EP_Check_DoKey (ent, tr.ent); + // gi.dprintf ("gave a go do key order\n"); + } + } + +} +// END JOSEPH + +// RAFAEL 01-11-99 +void Cmd_Reload_f (edict_t *ent) +{ + gclient_t *cl; + + cl = ent->client; + + if (!cl->pers.weapon) + return; + + // Ridah, fixes Tommygun reloading twice, if hit "reload" as it starts to auto-reload when out of ammo + if (ent->client->weaponstate == WEAPON_RELOADING) + return; + + if (ent->client->weaponstate != WEAPON_READY) + return; + + ent->client->reload_weapon = true; +} +// END 01-11-99 + + +// JOSEPH 6-FEB-99 +void Cmd_Holster_f (edict_t *ent) +{ + gclient_t *cl; + + if (deathmatch->value) + return; + + if (level.bar_lvl) + { + gi.dprintf ("no weapons on this level\n"); + return; + } + + cl = ent->client; + + if (!cl->pers.holsteredweapon) + { + if (!cl->pers.weapon) + return; + + cl->pers.holsteredweapon = cl->pers.weapon; + cl->newweapon = NULL; + cl->weaponstate = WEAPON_DROPPING; + + if (ent->s.renderfx2 & RF2_FLAMETHROWER) + ent->s.renderfx2 &= ~RF2_FLAMETHROWER; + } + else + { + if (cl->ps.gunindex != 0) + return; + + cl->newweapon = cl->pers.holsteredweapon; + ChangeWeapon (ent); + cl->pers.holsteredweapon = 0; + } +} + +void Cmd_HolsterBar_f (edict_t *ent) +{ + gclient_t *cl; + + cl = ent->client; + + if (deathmatch->value) + return; + + if (level.bar_lvl) + { + if (!cl->pers.holsteredweapon) + { + if (!cl->pers.weapon) + return; + + cl->pers.holsteredweapon = cl->pers.weapon; + //cl->newweapon = NULL; + //cl->weaponstate = WEAPON_DROPPING; + cl->ps.gunindex = 0; + } + } + + else + { + if (cl->ps.gunindex != 0) + return; + + cl->newweapon = cl->pers.holsteredweapon; + ChangeWeapon (ent); + cl->pers.holsteredweapon = 0; + } + + +} +// END JOSEPH + +// JOSEPH 29-DEC-98 +void Cmd_Hud_f (edict_t *ent) +{ + gi.WriteByte (svc_hud); + gi.unicast (ent, true); +} +// END JOSEPH + +void Cmd_Flashlight_f (edict_t *ent) +{ + if (!ent->client->flashlight && ent->client->pers.inventory[ITEM_INDEX(FindItem("Flashlight"))]) + ent->client->flashlight = true; + else + ent->client->flashlight = false; +} + + +/* +================= +Cmd_WeapNext_f +================= +*/ +void Cmd_WeapNext_f (edict_t *ent) +{ + gclient_t *cl; + int i, index; + gitem_t *it; + int selected_weapon; + + cl = ent->client; + + // JOSEPH 10-FEB-99 + if (cl->pers.holsteredweapon) + { + if (level.bar_lvl) + return; + + cl->newweapon = cl->pers.holsteredweapon; + ChangeWeapon (ent); + cl->pers.holsteredweapon = 0; + return; + } + // END JOSEPH + + if (!cl->pers.weapon) + return; + + // Ridah, if already changing weapons, start from the next weapon, for faster cycling + if (ent->client->weaponstate == WEAPON_DROPPING) + { + selected_weapon = ITEM_INDEX(cl->newweapon); + } + else + { + selected_weapon = ITEM_INDEX(cl->pers.weapon); + } + + // scan for the next valid one + for (i=1 ; i<=MAX_ITEMS ; i++) + { + index = (selected_weapon + MAX_ITEMS - i)%MAX_ITEMS; + + if (!cl->pers.inventory[index]) + continue; + it = &itemlist[index]; + if (!it->use) + continue; + if (! (it->flags & IT_WEAPON) ) + continue; + if (selected_weapon == ITEM_INDEX(it) && cl->newweapon) + { + // Ridah, show the current weapon on the hud, for easy scrolling + if (deathmatch->value && !strstr(cl->newweapon->icon, "pipe")) + { + it = cl->newweapon; + ent->client->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(it->icon); + ent->client->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS+ITEM_INDEX(it); + ent->client->pickup_msg_time = level.time + 5.5; + } + + return; // successful + } + else + { + it->use (ent, it); + } + } +} + +/* +================= +Cmd_WeapLast_f +================= +*/ +void Cmd_WeapLast_f (edict_t *ent) +{ + gclient_t *cl; + int index; + gitem_t *it; + + cl = ent->client; + + if (!cl->pers.weapon || !cl->pers.lastweapon) + return; + + index = ITEM_INDEX(cl->pers.lastweapon); + if (!cl->pers.inventory[index]) + return; + it = &itemlist[index]; + if (!it->use) + return; + if (! (it->flags & IT_WEAPON) ) + return; + it->use (ent, it); + + // Ridah, show the current weapon on the hud, for easy scrolling + if (deathmatch && !strstr(it->icon, "pipe")) + { + ent->client->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(it->icon); + ent->client->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS+ITEM_INDEX(it); + ent->client->pickup_msg_time = level.time + 5.5; + } +} + +/* +================= +Cmd_InvDrop_f +================= +*/ +void Cmd_InvDrop_f (edict_t *ent) +{ + gitem_t *it; + int index; + char *s; + + s = gi.args(); + + ValidateSelectedItem (ent); + + if (ent->client->pers.selected_item == -1) + { + gi.cprintf (ent, PRINT_HIGH, "No item to drop.\n"); + return; + } + + it = &itemlist[ent->client->pers.selected_item]; + if (!it->drop) + { + gi.cprintf (ent, PRINT_HIGH, "Item is not dropable.\n"); + return; + } + + index = ITEM_INDEX(it); + if (!ent->client->pers.inventory[index]) + { + gi.cprintf (ent, PRINT_HIGH, "Out of item: %s\n", s); + return; + } + + it->drop (ent, it); +} + +/* +================= +Cmd_Kill_f +================= +*/ +void Cmd_Kill_f (edict_t *ent) +{ + // don't let spectators kill themselves + if (ent->solid == SOLID_NOT) + return; + + if((level.time - ent->client->respawn_time) < 5) + return; + ent->flags &= ~FL_GODMODE; + ent->health = 0; + meansOfDeath = MOD_SUICIDE; + player_die (ent, ent, ent, 1, vec3_origin, 0, 0); +} + +/* +================= +Cmd_PutAway_f +================= +*/ +void Cmd_PutAway_f (edict_t *ent) +{ + ent->client->showscores = false; + ent->client->showhelp = false; + ent->client->showinventory = false; +} + +int PlayerSort (void const *a, void const *b) +{ + int anum, bnum; + + anum = *(int *)a; + bnum = *(int *)b; + + anum = game.clients[anum].ps.stats[STAT_FRAGS]; + bnum = game.clients[bnum].ps.stats[STAT_FRAGS]; + + if (anum < bnum) + return -1; + if (anum > bnum) + return 1; + return 0; +} + +/* +================= +Cmd_Players_f +================= +*/ +void Cmd_Players_f (edict_t *ent) +{ + int i; + int count; + char small[64]; + char large[1280]; + int index[256]; + + count = 0; + for (i = 0 ; i < maxclients->value ; i++) + if (game.clients[i].pers.connected) + { + index[count] = i; + count++; + } + + // sort by frags +// Ridah, disabled, so we can use this to list players we might want to "vote ban" +// qsort (index, count, sizeof(index[0]), PlayerSort); + + // print information + large[0] = 0; + + for (i = 0 ; i < count ; i++) + { + Com_sprintf (small, sizeof(small), "%3i - %s (%i frags)\n", + index[i] + 1, + game.clients[index[i]].pers.netname, + game.clients[index[i]].ps.stats[STAT_FRAGS] ); + if (strlen (small) + strlen(large) > sizeof(large) - 100 ) + { // can't print all of them in one packet + strcat (large, "...\n"); + break; + } + strcat (large, small); + } + + gi.cprintf (ent, PRINT_HIGH, "%s\n%i players\n", large, count); +} + +/* +================= +Cmd_Wave_f +================= +*/ +void Cmd_Wave_f (edict_t *ent, edict_t *other) +{ + char *cmd; + int rnd; + + cmd = gi.argv(0); + + if (!other->client) + return; + + if (!ent->solid) + return; + + // can't wave when ducked + if (ent->client->ps.pmove.pm_flags & PMF_DUCKED) + return; + + if (ent->client->last_wave > (level.time - 2) && (ent->client->last_wave <= level.time)) + return; + + ent->client->last_wave = level.time; + + // say something + { + + if (!teamplay->value || (ent->client->pers.team != other->client->pers.team)) + { + if (strstr(cmd, "key1")) + { + if (ent->gender == GENDER_MALE) + Voice_Random(ent, other, player_profanity_level2, NUM_PLAYER_PROFANITY_LEVEL2); + else if (ent->gender == GENDER_FEMALE) + Voice_Random(ent, other, f_profanity_level2, F_NUM_PROFANITY_LEVEL2); + } + else // profanity 3 + { + if (ent->gender == GENDER_MALE) + Voice_Random(ent, other, player_profanity_level3, NUM_PLAYER_PROFANITY_LEVEL3); + else if (ent->gender == GENDER_FEMALE) + Voice_Random(ent, other, f_profanity_level3, F_NUM_PROFANITY_LEVEL3); + } + } + else // stay here/moving out + { + if (strstr(cmd, "key3")) + { // hold + if (ent->gender == GENDER_MALE) + Voice_Random(ent, other, holdposition, NUM_HOLDPOSITION); + else if (ent->gender == GENDER_FEMALE) +// Voice_Random(ent, other, f_holdposition, F_NUM_HOLDPOSITION); + Voice_Random(ent, other, rc_f_profanity_level1, 5); + } + else if (strstr(cmd, "key2")) // lets go + { + if (ent->gender == GENDER_MALE) + Voice_Random(ent, other, followme, NUM_FOLLOWME); + else if (ent->gender == GENDER_FEMALE) +// Voice_Random(ent, other, f_followme, F_NUM_FOLLOWME); + Voice_Random(ent, other, rc_lola, 7); + } + else // converse + { + if (ent->gender == GENDER_MALE) + { + if (other->gender == GENDER_FEMALE) + Voice_Random(ent, other, f_neutral_talk_player, F_NUM_NEUTRAL_TALK_PLAYER); + else + Voice_Random(ent, other, neutral_talk_player, NUM_NEUTRAL_TALK_PLAYER); + } + else if (ent->gender == GENDER_FEMALE) + { + Voice_Random(ent, other, f_neutral_talk, F_NUM_NEUTRAL_TALK); + } + } + } + } + + if (ent->client->anim_priority > ANIM_WAVE) + return; + + ent->client->anim_priority = ANIM_WAVE; + + rnd = rand() % 3; + + switch (rnd) + { + case 0: +// gi.cprintf (ent, PRINT_HIGH, "flipoff\n"); + ent->s.frame = FRAME_tg_bird_01-1; + ent->client->anim_end = FRAME_tg_bird_10; + break; + case 1: +// gi.cprintf (ent, PRINT_HIGH, "salute\n"); + ent->s.frame = FRAME_tg_crch_grab_01-1; + ent->client->anim_end = FRAME_tg_crch_grab_16; + break; + case 2: +// gi.cprintf (ent, PRINT_HIGH, "taunt\n"); + ent->s.frame = FRAME_tg_chin_flip_01-1; + ent->client->anim_end = FRAME_tg_chin_flip_15; + break; + } + +} + +/* +================== +Cmd_Say_f +================== +*/ +void Cmd_Say_f (edict_t *ent, qboolean team, qboolean arg0) +{ + int i, j; + edict_t *other; + char *p; + char text[2048]; + gclient_t *cl; + char *ip; + + if (gi.argc () < 2 && !arg0) + return; + + // don't let us talk if we were just kicked + ip = Info_ValueForKey( ent->client->pers.userinfo, "ip" ); + if (ip && ip[0]) + { + if (!strcmp(ip, last_kick_ip)) + { + gi.cprintf( ent, PRINT_HIGH, "You cannot talk.\n" ); + return; + } + } + + if (!teamplay->value && !((int)(dmflags->value) & (DF_MODELTEAMS /*| DF_SKINTEAMS*/))) + team = false; + + if (team) + Com_sprintf (text, sizeof(text), ":(%s): ", ent->client->pers.netname); + else + Com_sprintf (text, sizeof(text), ":%s: ", ent->client->pers.netname); + + if (arg0) + { + strcat (text, gi.argv(0)); + strcat (text, " "); + strcat (text, gi.args()); + } + else + { + p = gi.args(); + + if (*p == '"') + { + p++; + p[strlen(p)-1] = 0; + } + strcat(text, p); + } + + // don't let text be too long for malicious reasons + if (strlen(text) > 150) + text[150] = 0; + + strcat(text, "\n"); + + if (flood_msgs->value) { + cl = ent->client; + + if (level.time < cl->flood_locktill) { + gi.cprintf(ent, PRINT_HIGH, "You can't talk for %d more seconds\n", + (int)(cl->flood_locktill - level.time)); + return; + } + i = cl->flood_whenhead - flood_msgs->value + 1; + if (i < 0) + i = (sizeof(cl->flood_when)/sizeof(cl->flood_when[0])) + i; + if (cl->flood_when[i] && + level.time - cl->flood_when[i] < flood_persecond->value) { + cl->flood_locktill = level.time + flood_waitdelay->value; + gi.cprintf(ent, PRINT_CHAT, "Flood protection: You can't talk for %d seconds.\n", + (int)flood_waitdelay->value); + return; + } + + // if they repeat themselves really quickly, bitch-slap time + if (cl->flood_when[cl->flood_whenhead] && (cl->flood_when[cl->flood_whenhead] > level.time - 1) && + !strcmp( ent->client->flood_lastmsg, text )) + { + cl->flood_locktill = level.time + flood_waitdelay->value; + gi.cprintf(ent, PRINT_CHAT, "Flood protection: You can't talk for %d seconds.\n", + (int)flood_waitdelay->value); + return; + } + + cl->flood_whenhead = (cl->flood_whenhead + 1) % + (sizeof(cl->flood_when)/sizeof(cl->flood_when[0])); + cl->flood_when[cl->flood_whenhead] = level.time; + } + + strcpy( ent->client->flood_lastmsg, text ); + + if (dedicated->value) + gi.cprintf(NULL, PRINT_CHAT, "%s", text); + + for (j = 1; j <= game.maxclients; j++) + { + other = &g_edicts[j]; + if (!(other->inuse)) + continue; + if (!(other->client)) + continue; + if (team) + { + if (!OnSameTeam(ent, other)) + continue; + if ((ent->client->pers.team == 0) != (other->client->pers.team == 0)) + continue; + } + gi.cprintf(other, PRINT_CHAT, "%s", text); + } +} + +/* +================= +ClientCommand +================= +*/ +void ClientCommand (edict_t *ent) +{ + char *cmd; + + if (!ent->client) + return; // not fully in game yet + + if (!ent->inuse) + return; + + cmd = gi.argv(0); + + if (Q_stricmp (cmd, "players") == 0) + { + Cmd_Players_f (ent); + return; + } + if (Q_stricmp (cmd, "say") == 0) + { + Cmd_Say_f (ent, false, false); + return; + } + if (Q_stricmp (cmd, "say_team") == 0) + { + Cmd_Say_f (ent, true, false); + return; + } + if (Q_stricmp (cmd, "score") == 0) + { + Cmd_Score_f (ent); + return; + } + + if (Q_stricmp (cmd, "help") == 0) + { + Cmd_Help_f (ent, 0); + return; + } + else if (Q_stricmp (cmd, "invnext") == 0) + { + if (!ent->client->chase_target) + Cmd_Help_f (ent, 1); + else + SelectNextItem (ent, -1); + + return; + } + else if (Q_stricmp (cmd, "invprev") == 0) + { + if (!ent->client->chase_target) + Cmd_Help_f (ent, -1); + else + SelectPrevItem (ent, -1); + + return; + } + + + if (level.intermissiontime) + return; + + // RAFAEL + if (level.cut_scene_time) + return; + + else if (level.pawn_time) + { + + if (Q_stricmp (cmd, "invuse") == 0) + PawnBuy (ent); + + else if (Q_stricmp (cmd, "leftarrow") == 0) + PawnLeft (ent); + else if (Q_stricmp (cmd, "rightarrow") == 0) + PawnRight (ent); + // JOSEPH 6-FEB-99 + else if (Q_stricmp (cmd, "uparrow") == 0) + PawnPrev (ent); + else if (Q_stricmp (cmd, "downarrow") == 0) + PawnNext (ent); + // END JOSEPH + else if (Q_stricmp (cmd, "key1") == 0) + PawnAgree (ent); + else if (Q_stricmp (cmd, "key3") == 0) + PawnDisagree (ent); + + else if (Q_stricmp (cmd, "inven") == 0) + Cmd_Inven_f (ent); + // not sure if we are going to have a sell key + // else if (Q_stricmp (cmd, "invnextw") == 0) + // PawnSell (ent); + return; + } + + // JOSEPH 6-FEB-99 + if (Q_stricmp (cmd, "leftarrow") == 0) + ; + else if (Q_stricmp (cmd, "rightarrow") == 0) + ; + else if (Q_stricmp (cmd, "uparrow") == 0) + ; + else if (Q_stricmp (cmd, "downarrow") == 0) + ; + else if (Q_stricmp (cmd, "use") == 0) + Cmd_Use_f (ent); + // END JOSEPH + else if (Q_stricmp (cmd, "drop") == 0) + Cmd_Drop_f (ent); + else if (Q_stricmp (cmd, "give") == 0) + Cmd_Give_f (ent); + else if (Q_stricmp (cmd, "immortal") == 0) + Cmd_God_f (ent); + else if (Q_stricmp (cmd, "notarget") == 0) + Cmd_Notarget_f (ent); + else if (Q_stricmp (cmd, "noclip") == 0) + Cmd_Noclip_f (ent); + else if (Q_stricmp (cmd, "inven") == 0) + Cmd_Inven_f (ent); + + else if (Q_stricmp (cmd, "invnextw") == 0) + SelectNextItem (ent, IT_WEAPON); + else if (Q_stricmp (cmd, "invprevw") == 0) + SelectPrevItem (ent, IT_WEAPON); + else if (Q_stricmp (cmd, "invnextp") == 0) + SelectNextItem (ent, IT_POWERUP); + else if (Q_stricmp (cmd, "invprevp") == 0) + SelectPrevItem (ent, IT_POWERUP); + else if (Q_stricmp (cmd, "invuse") == 0) + Cmd_InvUse_f (ent); + else if (Q_stricmp (cmd, "invdrop") == 0) + Cmd_InvDrop_f (ent); + else if (Q_stricmp (cmd, "weapprev") == 0) + Cmd_WeapPrev_f (ent); + else if (Q_stricmp (cmd, "weapnext") == 0) + Cmd_WeapNext_f (ent); + // JOSEPH 29-DEC-98 + else if (Q_stricmp (cmd, "+activate") == 0) + Cmd_Activate_f (ent); + else if (Q_stricmp (cmd, "holster") == 0) + Cmd_Holster_f (ent); + else if (Q_stricmp (cmd, "hud") == 0) + Cmd_Hud_f (ent); + // END JOSEPH + + // RAFAEL + else if (Q_stricmp (cmd, "flashlight") == 0) + Cmd_Flashlight_f (ent); + // RAFAEL 01-11-99 + else if (Q_stricmp (cmd, "reload") == 0) + Cmd_Reload_f (ent); + // END 01-11-99 + else if (Q_stricmp (cmd, "weaplast") == 0) + Cmd_WeapLast_f (ent); + else if (Q_stricmp (cmd, "kill") == 0) + Cmd_Kill_f (ent); + else if (Q_stricmp (cmd, "putaway") == 0) + Cmd_PutAway_f (ent); +// else if (Q_stricmp (cmd, "wave") == 0) +// Cmd_Wave_f (ent); +// BEGIN: Xatrix/Ridah/Navigator/23-mar-1998 + else if (Q_stricmp (cmd, "nav_debug_dest") == 0) + Cmd_NavDebugDest_f (ent); + else if (Q_stricmp (cmd, "nav_debug_showpath") == 0) + Cmd_NavDebugShowPath_f (ent); + else if (Q_stricmp (cmd, "nav_showpath") == 0) + Cmd_NavDebugShowPath_f (ent); + else if (Q_stricmp (cmd, "nav_save") == 0) + NAV_WriteActiveNodes ( ent->active_node_data, level.mapname ); + else if (Q_stricmp (cmd, "nav_clear") == 0) + Cmd_NavClear_f ( ent ); + else if (Q_stricmp (cmd, "nav_rebuild") == 0) + NAV_RebuildRoutes( level.node_data ); +// END: Xatrix/Ridah/Navigator/23-mar-1998 + + else if (Q_stricmp (cmd, "spawn") == 0) + Cmd_Spawn_f (ent); + + // Ridah, new 3 key command system + else if (strstr (cmd, "key") == cmd) + Cmd_Key_f (ent); + + // Ridah, Chasecam + else if (Q_stricmp (cmd, "togglecam") == 0) + Cmd_ToggleCam_f (ent); + + // Ridah, Lightpaint + else if (Q_stricmp (cmd, "burn_save") == 0) + Cmd_BurnSave_f (ent); + + // Ridah, Vehicles + else if (Q_stricmp (cmd, "gear_up") == 0) + Cmd_GearUp_f (ent); + else if (Q_stricmp (cmd, "gear_down") == 0) + Cmd_GearDown_f (ent); + +// else if (Q_stricmp (cmd, "gettexture") == 0) +// Cmd_GetTexture_f (ent); + + // JOSEPH 23-MAR-99 + else if (Q_stricmp (cmd, "hideprops") == 0) + Cmd_SetProps_f (0); + else if (Q_stricmp (cmd, "showprops") == 0) + Cmd_SetProps_f (1); + else if (Q_stricmp (cmd, "extracrispy") == 0) + Cmd_FryAll_f (ent); + // END JOSEPH + +// else if (Q_stricmp (cmd, "gibtest") == 0) +// Cmd_GibTest_f (ent); + + // Teamplay commands + else if ((Q_stricmp (cmd, "join") == 0) || (Q_stricmp (cmd, "team") == 0)) + Cmd_Join_f (ent, gi.argv (1)); + else if ((Q_stricmp (cmd, "spec") == 0) || (Q_stricmp (cmd, "spectator") == 0)) + Cmd_Spec_f (ent); + + // voting system + else if (Q_stricmp (cmd, "vote") == 0) + Cmd_Vote_f (ent); + else if ((Q_stricmp (cmd, "yes") == 0) || (Q_stricmp (cmd, "no") == 0)) + Cmd_Response_f (ent); + +#if 0 // turn this off once we have the tables (not used by actual game code) + // Ridah, new anorm calculations + else if (Q_stricmp (cmd, "calc_anorms") == 0) + Cmd_Anorms_f (); + else if (Q_stricmp (cmd, "calc_adots") == 0) + Cmd_Adots_f (); + // done. +#endif + + else // anything that doesn't match a command will be a chat + Cmd_Say_f (ent, false, true); + +} diff --git a/gamesrc/G_combat.c b/gamesrc/G_combat.c new file mode 100644 index 0000000..837f697 --- /dev/null +++ b/gamesrc/G_combat.c @@ -0,0 +1,2330 @@ +// g_combat.c + +#include "g_local.h" + +#include "voice_bitch.h" +#include "voice_punk.h" + +/* +============ +CanDamage + +Returns true if the inflictor can directly damage the target. Used for +explosions and melee attacks. +============ +*/ + +qboolean CanDamageThroughAlpha (trace_t trace, edict_t *targ, edict_t *inflictor, vec3_t dest) +{ + + vec3_t dir; + vec3_t alpha_start; + trace_t tr; + + VectorSubtract (dest, inflictor->s.origin, dir); + VectorNormalize (dir); + VectorCopy (trace.endpos, alpha_start); + + if (trace.ent->s.renderfx2 & RF2_SURF_ALPHA) + { + VectorMA (alpha_start, 4*3, dir, alpha_start); + } + else + { + VectorMA (alpha_start, 8, dir, alpha_start); + } + + if (targ->client) + tr = gi.trace (alpha_start, NULL, NULL, dest, NULL, MASK_SHOT); + else + tr = gi.trace (alpha_start, NULL, NULL, dest, inflictor, MASK_SHOT); + + if (tr.ent == targ) + return true; + + return false; +} + +qboolean CanDamage (edict_t *targ, edict_t *inflictor) +{ + vec3_t dest; + trace_t trace; + + if (targ == inflictor) + return false; + +// bmodels need special checking because their origin is 0,0,0 + if (targ->movetype == MOVETYPE_PUSH) + { + VectorAdd (targ->absmin, targ->absmax, dest); + VectorScale (dest, 0.5, dest); + trace = gi.trace (inflictor->s.origin, vec3_origin, vec3_origin, dest, inflictor, MASK_SOLID); + if (trace.fraction == 1.0) + return true; + if (trace.ent == targ) + return true; + return false; + } + + trace = gi.trace (inflictor->s.origin, vec3_origin, vec3_origin, targ->s.origin, inflictor, MASK_SOLID); + if (trace.fraction == 1.0) + return true; + else if (((trace.ent) && (trace.ent->s.renderfx2 & RF2_SURF_ALPHA)) || ((trace.contents & MASK_ALPHA))) + { + VectorCopy (targ->s.origin, dest); + if (CanDamageThroughAlpha (trace, targ, inflictor, dest)) + return true; + } + + VectorCopy (targ->s.origin, dest); + dest[0] += 15.0; + dest[1] += 15.0; + trace = gi.trace (inflictor->s.origin, vec3_origin, vec3_origin, dest, inflictor, MASK_SOLID); + if (trace.fraction == 1.0) + return true; + else if (((trace.ent) && (trace.ent->s.renderfx2 & RF2_SURF_ALPHA)) || ((trace.contents & MASK_ALPHA))) + { + VectorCopy (targ->s.origin, dest); + if (CanDamageThroughAlpha (trace, targ, inflictor, dest)) + return true; + } + + + VectorCopy (targ->s.origin, dest); + dest[0] += 15.0; + dest[1] -= 15.0; + trace = gi.trace (inflictor->s.origin, vec3_origin, vec3_origin, dest, inflictor, MASK_SOLID); + if (trace.fraction == 1.0) + return true; + else if (((trace.ent) && (trace.ent->s.renderfx2 & RF2_SURF_ALPHA)) || ((trace.contents & MASK_ALPHA))) + { + VectorCopy (targ->s.origin, dest); + if (CanDamageThroughAlpha (trace, targ, inflictor, dest)) + return true; + } + + + VectorCopy (targ->s.origin, dest); + dest[0] -= 15.0; + dest[1] += 15.0; + trace = gi.trace (inflictor->s.origin, vec3_origin, vec3_origin, dest, inflictor, MASK_SOLID); + if (trace.fraction == 1.0) + return true; + else if (((trace.ent) && (trace.ent->s.renderfx2 & RF2_SURF_ALPHA)) || ((trace.contents & MASK_ALPHA))) + { + VectorCopy (targ->s.origin, dest); + if (CanDamageThroughAlpha (trace, targ, inflictor, dest)) + return true; + } + + + VectorCopy (targ->s.origin, dest); + dest[0] -= 15.0; + dest[1] -= 15.0; + trace = gi.trace (inflictor->s.origin, vec3_origin, vec3_origin, dest, inflictor, MASK_SOLID); + if (trace.fraction == 1.0) + return true; + else if (((trace.ent) && (trace.ent->s.renderfx2 & RF2_SURF_ALPHA)) || ((trace.contents & MASK_ALPHA))) + { + VectorCopy (targ->s.origin, dest); + if (CanDamageThroughAlpha (trace, targ, inflictor, dest)) + return true; + } + + return false; +} + + +/* +============ +Killed +============ +*/ +void Killed (edict_t *targ, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + if (targ->health < -999) + targ->health = -999; + + targ->enemy = attacker; + + // turn off Flamethrower + if (targ->client || (targ->svflags & SVF_MONSTER)) + targ->s.renderfx2 &= ~RF2_FLAMETHROWER; + + if ((targ->svflags & SVF_MONSTER) && (targ->deadflag != DEAD_DEAD)) + { + cast_memory_t *mem; + + // Ridah 5-8-99, so we can shoot through dying characters + targ->maxs[2] = 0; + gi.linkentity( targ ); + + // JOSEPH 12-MAR-99 + /* + if (targ->leader && targ->leader->client) + { + targ->leader->client->pers.friends--; + } + + targ->leader = NULL; + */ + // END JOSEPH + + { + edict_t *player; + cast_memory_t *cast_memory; + + player = &g_edicts[1]; + + cast_memory = level.global_cast_memory[targ->character_index][player->character_index]; + + if (cast_memory && cast_memory->flags & MEMORY_HIRED) + player->client->pers.friends--; + + } + + targ->leader = NULL; + + + + if (attacker->client && attacker->client->gun_noise) // a guy killed with the silencer should not wake the others up + { + // Share our list of enemies, so surrounding friends can seek revenge + mem = targ->cast_info.friend_memory; + while (mem) + { + if (mem->timestamp > (level.time - 3)) + { + AI_ShareEnemies( targ, &g_edicts[mem->cast_ent] ); + } + + mem = mem->next; + } + } + + // Simulate triggering a combattarget + if (targ->combattarget) + AI_Goto_CombatTarget( targ ); + else if (targ->combat_goalent) + { // trigger it in 2 seconds + char *savetarget; + edict_t *target; + + target = targ->combat_goalent; + + if (target->delay < 2) + target->delay = 2; + + savetarget = target->target; + target->target = target->pathtarget; + G_UseTargets (target, targ); + target->target = savetarget; + } + } + + // Remove them from the game + AI_UnloadCastMemory ( targ ); + + // if they were killed by an AI character, send them back to their start point + if (attacker->svflags & SVF_MONSTER && !attacker->goal_ent && attacker->start_ent + && (!attacker->enemy || (attacker->enemy == targ))) + { + attacker->goal_ent = attacker->start_ent; + } + + if (targ->movetype == MOVETYPE_PUSH || targ->movetype == MOVETYPE_STOP || targ->movetype == MOVETYPE_NONE) + { // doors, triggers, etc + targ->die (targ, inflictor, attacker, damage, point, mdx_part, mdx_subobject); + return; + } + + if ((targ->svflags & SVF_MONSTER) && (targ->deadflag != DEAD_DEAD)) + { + targ->touch = NULL; + cast_death_use (targ); + } + + if (targ->svflags & SVF_MONSTER) + EP_SpecialEventDeath (targ); + + targ->die (targ, inflictor, attacker, damage, point, mdx_part, mdx_subobject); + +} + + +/* +================ +SpawnDamage +================ +*/ + +//int sp_blood1; + +void SpawnDamage (edict_t *self, int type, vec3_t origin, vec3_t normal, int damage) +{ +// int i, cnt; +// vec3_t vec; +// edict_t *sprent; + + if ((cl_parental_lock->value && !cl_parental_override->value) && type == TE_BLOOD) + return; + + if (damage > 127) + damage = 127; + gi.WriteByte (svc_temp_entity); + gi.WriteByte (type); + gi.WritePosition (origin); + if (type != TE_BLOOD) + gi.WriteDir (normal); + // JOSEPH 12-MAY-99-B + else + { + // As per Maxx request + if (damage > 1) + damage <<= 1; + gi.WriteByte( damage ); + } + // END JOSEPH + gi.multicast (origin, MULTICAST_PVS); + +/* + // FIXME: move these to the client-side TE_* effects + + cnt = (int)(damage/2); + if (cnt > 4) + cnt = 4; + + // Ridah, spawn some sprite effects + switch (type) + { + case TE_BLOOD: + for (i=0; is.origin, + origin[0] + crandom()*4, + origin[1] + crandom()*4, + origin[2] + crandom()*4 ); + + VectorClear( sprent->mins ); + VectorClear( sprent->maxs ); + + VectorSubtract( origin, self->s.origin, vec ); + vec[2] = 0; + VectorNormalize( vec ); + + VectorSet( sprent->velocity, + random()*40*vec[0], + random()*40*vec[1], + 80 + 100*random() ); + + sprent->s.modelindex = sp_blood1; + sprent->s.frame = rand()%9; + sprent->movetype = MOVETYPE_BOUNCE; + sprent->clipmask = MASK_SOLID; + sprent->solid = SOLID_BBOX; +// sprent->s.effects |= EF_GIB; + sprent->owner = self; + sprent->think = G_FreeEdict; + sprent->nextthink = level.time + 1.0; + sprent->classname = "sp_blood1"; + + gi.linkentity( self ); + } + break; + } +*/ +} + + +/* +SpawnBloodPool +*/ +void SpawnBloodPool (edict_t *self) +{ + vec3_t origin; + vec3_t forward, right, up; + vec3_t end; + vec3_t vec; + trace_t tr; + int baseskin, currentskin; + + if (self->onfireent) + { + return; + } + + if (cl_parental_lock->value && !cl_parental_override->value) + return; + + VectorCopy (self->s.origin, origin); + + AngleVectors (self->s.angles, forward, right, up); + VectorMA (origin, -8192, up, end); + + tr = gi.trace (origin, NULL, NULL, end, self, MASK_SHOT ); + + if (tr.contents & CONTENTS_SOLID) + { + + baseskin = self->s.model_parts[PART_HEAD].baseskin; + currentskin = self->s.model_parts[PART_HEAD].skinnum[0]; + + if (baseskin != currentskin) + { +// VectorCopy (tr.endpos, vec); + // this will need to be computed for each mdx +// VectorMA (vec, -(32), forward, vec); +// VectorMA( vec, 0.1, tr.plane.normal, tr.endpos ); // lift it above the ground slightly + + // Ridah, use object_bounds to get head position + if (self->s.model_parts[PART_HEAD].object_bounds[0] > 0) + { + vec3_t org, ang, mins, maxs; + vec3_t forward, right, up; + vec3_t rmins, rmaxs, pmins, pmaxs; + + VectorCopy (self->s.origin, org); + VectorCopy (self->s.angles, ang); + + VectorCopy (g_objbnds[-1+self->s.model_parts[PART_HEAD].object_bounds[0]][self->s.frame].mins, mins); + VectorCopy (g_objbnds[-1+self->s.model_parts[PART_HEAD].object_bounds[0]][self->s.frame].maxs, maxs); + + AngleVectors (ang, forward, right, up); + + VectorMA (org, ((mins[0] + maxs[0]) * 0.5), forward, org); + VectorMA (org, -((mins[1] + maxs[1]) * 0.5), right, org); + VectorMA (org, (mins[2] + maxs[2]) * 0.5, up, org); + + // find rotated positions of mins/maxs, and then build the new min/max + VectorScale ( forward, mins[0], rmins); + VectorMA (rmins, -mins[1], right, rmins); + VectorMA (rmins, mins[2], up, rmins); + + VectorScale ( forward, maxs[0], rmaxs); + VectorMA (rmaxs, -maxs[1], right, rmaxs); + VectorMA (rmaxs, maxs[2], up, rmaxs); + + pmins[0] = (rmins[0] < rmaxs[0] ? rmins[0] : rmaxs[0]); + pmins[1] = (rmins[1] < rmaxs[1] ? rmins[1] : rmaxs[1]); + pmins[2] = (rmins[2] < rmaxs[2] ? rmins[2] : rmaxs[2]); + + pmaxs[0] = (rmins[0] > rmaxs[0] ? rmins[0] : rmaxs[0]); + pmaxs[1] = (rmins[1] > rmaxs[1] ? rmins[1] : rmaxs[1]); + pmaxs[2] = (rmins[2] > rmaxs[2] ? rmins[2] : rmaxs[2]); + + // now align the mins/maxs with the origin + mins[0] = pmins[0] - (0.5*(pmaxs[0] + pmins[0])); + mins[1] = pmins[1] - (0.5*(pmaxs[1] + pmins[1])); + mins[2] = pmins[2] - (0.5*(pmaxs[2] + pmins[2])); + maxs[0] = pmaxs[0] - (0.5*(pmaxs[0] + pmins[0])); + maxs[1] = pmaxs[1] - (0.5*(pmaxs[1] + pmins[1])); + maxs[2] = pmaxs[2] - (0.5*(pmaxs[2] + pmins[2])); + + vec[0] = org[0] + (mins[0] + maxs[0]) / 2; + vec[1] = org[1] + (mins[1] + maxs[1]) / 2; + vec[2] = org[2] + (mins[2] + maxs[2]) / 2; + + VectorMA( vec, -8192, up, end ); + + tr = gi.trace (vec, NULL, NULL, end, self, MASK_SHOT ); + + VectorMA( tr.endpos, 0.1, tr.plane.normal, tr.endpos ); // lift it above the ground slightly + } + } + else + VectorMA( tr.endpos, 0.1, tr.plane.normal, tr.endpos ); // lift it above the ground slightly + + // JOSEPH 18-DEC-98 + SurfaceSpriteEffect(SFX_SPRITE_SURF_BLOOD_POOL, 2, 2, tr.ent, tr.endpos, tr.plane.normal); + /*gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_BLOOD_POOL); + gi.WritePosition (tr.endpos); + gi.WriteDir (tr.plane.normal); + gi.multicast (origin, MULTICAST_PVS);*/ + // END JOSEPH + } + else + { + // TBD + // the entity steped on the dead body so now we can leave a bloody trail + ; + } +} + + +/* +============ +T_Damage + +targ entity that is being damaged +inflictor entity that is causing the damage +attacker entity that caused the inflictor to damage targ + example: targ=monster, inflictor=rocket, attacker=player + +dir direction of the attack +point point at which the damage is being inflicted +normal normal vector from that point +damage amount of damage being inflicted +knockback force to be applied against targ as a result of the damage + +dflags these flags are used to control how T_Damage works + DAMAGE_RADIUS damage was indirect (from a nearby explosion) + DAMAGE_NO_ARMOR armor does not protect from this damage + DAMAGE_ENERGY damage is from an energy based weapon + DAMAGE_NO_KNOCKBACK do not affect velocity, just view angles + DAMAGE_BULLET damage is from a bullet (used for ricochets) + DAMAGE_NO_PROTECTION kills godmode, armor, everything +============ +*/ + +static int CheckArmor (edict_t *ent, vec3_t point, vec3_t normal, int damage, int te_sparks, int dflags) +{ + gclient_t *client; + int save; + int index; + gitem_t *armor; + + if (!damage) + return 0; + + client = ent->client; + + if (!client) + return 0; +/* +{ +static int done=0; +// if (!done) +// gi.dprintf( "NOTE: Armour has been disabled (was preventing bullet damage)\n"); +done = 1; +return 0; +} +*/ + if (dflags & DAMAGE_NO_ARMOR) + return 0; + + index = ArmorIndex (ent); + if (!index) + return 0; + + armor = GetItemByIndex (index); + + if (dflags & DAMAGE_ENERGY) + save = ceil(((gitem_armor_t *)armor->info)->energy_protection*damage); + else + save = ceil(((gitem_armor_t *)armor->info)->normal_protection*damage); + if (save >= client->pers.inventory[index]) + save = client->pers.inventory[index]; + + if (!save) + return 0; + + client->pers.inventory[index] -= save; + SpawnDamage (ent, te_sparks, point, normal, save); + + return save; +} + +void M_ReactToDamage (edict_t *targ, edict_t *attacker, float damage) +{ + cast_memory_t *cast_memory; + int i; + + if (targ->health <= 0) + return; + + if (!(attacker->client) && !(attacker->svflags & SVF_MONSTER)) + return; + + if (!(targ->client) && !(targ->svflags & SVF_MONSTER)) + return; + + + // stop hiding, someone has hurt us + if ( (targ->cast_info.aiflags & AI_TAKE_COVER) + && (!targ->combat_goalent || (VectorDistance(targ->s.origin, targ->combat_goalent->s.origin) < 48))) + { + targ->cast_info.aiflags &= ~AI_TAKE_COVER; + if (targ->combat_goalent) + targ->combat_goalent = NULL; + + targ->dont_takecover_time = level.time + 2; + } + + if (attacker == targ || attacker == targ->enemy) + return; + + // friendly fire? + if ((targ->cast_group == attacker->cast_group) && (targ->cast_group == 1) && attacker->client) + { + if (damage > 40) + targ->missteam = 1; + + if (!targ->enemy && (targ->missteam++ > 0) && level.global_cast_memory[targ->character_index][attacker->character_index]) + { // make them an enemy + + // Ridah, 17-may-99, make sure other hiredguys's don't attack their leader + for (i=1; icast_group == 1) && (level.global_cast_memory[i][targ->character_index]) && (level.characters[i]->leader == attacker)) + { + AI_RemoveFromMemory( level.characters[i], level.global_cast_memory[i][targ->character_index] ); + AI_RemoveFromMemory( targ, level.global_cast_memory[targ->character_index][i] ); + AI_AddToMemory( level.characters[i], level.global_cast_memory[i][targ->character_index], MEMORY_TYPE_ENEMY ); + AI_AddToMemory( targ, level.global_cast_memory[targ->character_index][i], MEMORY_TYPE_ENEMY ); + AI_MakeEnemy( level.characters[i], targ, 0 ); + level.characters[i]->enemy = targ; + } + } + + AI_RemoveFromMemory( targ, level.global_cast_memory[targ->character_index][attacker->character_index] ); + AI_AddToMemory( targ, level.global_cast_memory[targ->character_index][attacker->character_index], MEMORY_TYPE_ENEMY ); + targ->cast_group = 0; + targ->leader = NULL; + AI_MakeEnemy( targ, attacker, 0 ); + targ->enemy = attacker; + } + else + { + if (targ->gender == GENDER_MALE) + Voice_Random( targ, attacker, friendlypain, NUM_FRIENDLYPAIN ); + else if (targ->gender == GENDER_FEMALE) +// Ridah, 17-may-99, we can't ship with a todo message, so just play a pain sound +// gi.dprintf( "FIXME: Female \"Quit shootin me!\"" ); + Voice_Random( targ, attacker, female_specific, 4 ); + } + } + + // they aren't on our side, are they a friend? + if (!(cast_memory = level.global_cast_memory[targ->character_index][attacker->character_index])) + { // record this sighting, so we can start to attack them + + AI_RecordSighting(targ, attacker, VectorDistance(targ->s.origin, attacker->s.origin) ); + cast_memory = level.global_cast_memory[targ->character_index][attacker->character_index]; + + } + + if (cast_memory->memory_type == MEMORY_TYPE_FRIEND) + { + // gi.dprintf("SOUND TODO: Are you done shooting me?\n"); + return; // let them off easy + } + + if ((cast_memory->memory_type != MEMORY_TYPE_ENEMY) || !(cast_memory->flags & MEMORY_HOSTILE_ENEMY)) + { + // make them a hostile enemy + AI_MakeEnemy( targ, attacker, 0 ); + } + + // if we're attacking someone else, and this is a client, get mad at them! + if (attacker->cast_group != targ->cast_group && targ->enemy != attacker && attacker->client) + { + AI_StartAttack( targ, attacker ); + } + +} + +// returns TRUE if attacker is on same team (can't damage) +qboolean CheckTeamDamage (edict_t *targ, edict_t *attacker) +{ + if (targ == attacker) // we can always hurt ourselves + return false; + + if (targ->client->pers.friendly_vulnerable) + return true; + + if (teamplay->value && targ && attacker && attacker->client && targ->client && (targ->client->pers.team) && (targ->client->pers.team == attacker->client->pers.team)) + return true; + else + return false; +} + +// Ridah, health_threshold targetting +void CheckHealthTarget( edict_t *targ, char *target ) +{ + edict_t *goal; + + goal = G_Find( NULL, FOFS(targetname), target ); + + if (goal) + { + if (!strcmp(goal->classname, "misc_use_cutscene") || strstr(goal->classname, "trigger_")) + { // trigger it + goal->use( goal, targ, targ ); + } + else // walk to it + { + targ->goal_ent = goal; + targ->cast_info.aiflags |= AI_GOAL_IGNOREENEMY; + targ->cast_info.aiflags &= ~AI_TAKE_COVER; + + targ->cast_info.currentmove = targ->cast_info.move_run; + targ->goal_ent->cast_info.aiflags |= AI_GOAL_RUN; + } + } +} + +void T_Damage (edict_t *targ, edict_t *inflictor, edict_t *attacker, vec3_t dir, vec3_t point, vec3_t normal, int damage, int knockback, int dflags, int mod) +{ + gclient_t *client; + int take; + int save; + int asave; + int te_sparks; + float dmg; + + dmg = (float)(damage); + + if (!targ->takedamage) + return; + + if (targ->cast_info.aiflags & AI_IMMORTAL) + { + return; + } + + // friendly fire avoidance + // if enabled you can't hurt teammates (but you can hurt yourself) + // knockback still occurs + if (!(dflags & DAMAGE_NO_PROTECTION) && (targ != attacker) && ((deathmatch->value && (teamplay->value || ((int)(dmflags->value) & (DF_MODELTEAMS/*| DF_SKINTEAMS*/))) /*|| coop->value*/))) + { + if ((OnSameTeam (targ, attacker)) && (!targ->client->pers.friendly_vulnerable)) + { + if ((int)(dmflags->value) & DF_NO_FRIENDLY_FIRE) + { + dmg = 0; + } + else + mod |= MOD_FRIENDLY_FIRE; + } + } + meansOfDeath = mod; + + // easy mode takes half damage + if (deathmatch->value == 0 && targ->client) + { + if (skill->value == 0) + dmg *= 0.2; // Ridah, bumped it up a bit, since Rockets were only doing 2% health, 4% would be a bit more reasonable + else if (skill->value == 1) + dmg *= 0.35; + else if (skill->value == 2) + dmg *= 0.60; + else if (skill->value == 3) + dmg *= 0.80; + + if (skill->value >= 2) + { + if (rand()%(2 + (int)skill->value * 2) > 4) + dmg *= 2; // randomized simulation of head shot + } + + if (dmg < 1) + dmg = 1; + + + // gi.dprintf ("dmg: %5.2f\n", dmg); + } + else if (deathmatch->value && dm_realmode->value && attacker != targ && attacker->client) + { + dmg *= 4; + } + + client = targ->client; + + // JOSEPH 11-APR-99 + if ((mod == MOD_BLACKJACK) || (mod == MOD_CROWBAR)) + te_sparks = TE_SPARKS; + else if (dflags & DAMAGE_BULLET && mod != MOD_DOGBITE) + te_sparks = TE_BULLET_SPARKS; + else if (mod != MOD_DOGBITE) + te_sparks = TE_SPARKS; + else + te_sparks = TE_SPARKS; + // END JOSEPH + + VectorNormalize(dir); + +// bonus damage for suprising a monster +// if (!(dflags & DAMAGE_RADIUS) && (targ->svflags & SVF_MONSTER) && (attacker->client) && (!targ->enemy) && (targ->health > 0)) +// dmg *= 2; + + if (((dflags & DAMAGE_NO_KNOCKBACK)) || (targ->nokickbackflag)) + knockback = 0; + + +// figure momentum add + // JOSEPH 7-MAR-99 + if ((!(dflags & DAMAGE_NO_KNOCKBACK)) && (mod == MOD_BLOWBACK)) + { + vec3_t kvel; + float mass; + + knockback *= 3; + + if (knockback < 100) + knockback = 100; + else if (knockback > 150) + knockback = 150; + + if (targ->mass < 50) + mass = 50; + else + mass = targ->mass; + + if (targ->client) + VectorScale (dir, 1600.0 * (float)knockback / mass, kvel); // the rocket jump hack... + else + VectorScale (dir, 500.0 * (float)knockback / mass, kvel); + + VectorAdd (targ->velocity, kvel, targ->velocity); + } + else if (!(dflags & DAMAGE_NO_KNOCKBACK)) + // END JOSEPH + { + if ((knockback) && (targ->movetype != MOVETYPE_NONE) && (targ->movetype != MOVETYPE_BOUNCE) && (targ->movetype != MOVETYPE_PUSH) && (targ->movetype != MOVETYPE_STOP)) + { + vec3_t kvel; + float mass; + + if (targ->mass < 50) + mass = 50; + else + mass = targ->mass; + + // JOSEPH 13-MAY-99 + if (targ->client && (attacker == targ) && deathmatch->value) + VectorScale (dir, 1600.0 * (float)knockback / mass, kvel); // the rocket jump hack... + else if (targ->client && (attacker == targ)) + VectorScale (dir, 128.0 * (float)knockback / mass, kvel); + else + VectorScale (dir, 500.0 * (float)knockback / mass, kvel); + // END JOSEPH + + VectorAdd (targ->velocity, kvel, targ->velocity); + } + } + + take = dmg; + save = 0; + + // JOSEPH 1-APR-99-B + if (targ->client && dmg && (!(dflags & DAMAGE_NO_ARMOR))) + { + int index; + gitem_t *item = NULL; + int random; + float takefactor; + + // JOSEPH 21-MAY-99 + if (mod == MOD_DOGBITE) + { + if (inflictor->s.origin[2] < targ->s.origin[2]) // legs + { + random = 2; + } + else if (inflictor->s.origin[2] > targ->s.origin[2] + targ->viewheight) // head + { + random = 1; + } + else // body + { + random = 0; + } + } + else if (dflags & DAMAGE_BULLET) + { + random = rand()%100; + + if (random < 40) // legs + { + random = 2; + } + else if (random < 60) // head + { + random = 1; + } + else // body + { + random = 0; + } + } + else + random = rand()%3; + // END JOSEPH + + + // JOSEPH 5-APR-99 + if (mod == MOD_FALLING) + { + item = FindItem ("Legs Armor"); + takefactor = 0.5; + if (!(targ->client->pers.inventory[ITEM_INDEX(item)])) + { + item = FindItem ("Legs Armor Heavy"); + takefactor = 0.25; + } + } + else if (random == 0) + // END JOSEPH + { + item = FindItem ("Jacket Armor"); + takefactor = 0.3; + if (!(targ->client->pers.inventory[ITEM_INDEX(item)])) + { + item = FindItem ("Jacket Armor Heavy"); + takefactor = 0.1; + } + } + else if (random == 1) + { + item = FindItem ("Helmet Armor"); + takefactor = 0.3; + if (!(targ->client->pers.inventory[ITEM_INDEX(item)])) + { + item = FindItem ("Helmet Armor Heavy"); + takefactor = 0.1; + } + } + else + { + item = FindItem ("Legs Armor"); + takefactor = 0.3; + if (!(targ->client->pers.inventory[ITEM_INDEX(item)])) + { + item = FindItem ("Legs Armor Heavy"); + takefactor = 0.1; + } + } + + if ((item) && (targ->client->pers.inventory[ITEM_INDEX(item)])) + { + int takehealth; + int takeshield; + + takehealth = take * takefactor; + takeshield = take - takehealth; + + // Ridah, make Flamethrower burn armor away faster than normal + if (mod == MOD_FLAMETHROWER) + { + if (takeshield < 1) + takeshield = 1; + + takeshield *= 3; + } + + index = ITEM_INDEX (item); + + // JOSEPH 5-APR-99 + if (takeshield <= targ->client->pers.inventory[ index ]) + { + targ->client->pers.inventory[ index ] -= takeshield; + take = takehealth; + if (!take) + take = 1; + } + else + { + takehealth = ((take - targ->client->pers.inventory[ index ])+ + (takefactor*targ->client->pers.inventory[ index ])); + targ->client->pers.inventory[ index ] = 0; + take = takehealth; + if (!take) + take = 1; + } + // END JOSEPH + } + } + // END JOSEPH + + // check for godmode + if ( (targ->flags & FL_GODMODE) && !(dflags & DAMAGE_NO_PROTECTION) ) + { + take = 0; + save = dmg; + SpawnDamage (targ, te_sparks, point, normal, save); + } + + // check for invincibility + if ((client && client->invincible_framenum > level.framenum ) && !(dflags & DAMAGE_NO_PROTECTION)) + { + if (targ->pain_debounce_time < level.time) + { + // JOSEPH 29-MAR-99 + //gi.sound(targ, CHAN_ITEM, gi.soundindex("items/protect4.wav"), 1, ATTN_NORM, 0); + // END JOSEPH + targ->pain_debounce_time = level.time + 2; + } + take = 0; + save = dmg; + } + + // JOSEPH 1-APR-99 + //asave = CheckArmor (targ, point, normal, take, te_sparks, dflags); + //take -= asave; + + //treat cheat/powerup savings the same as armor + asave = 0; + asave += save; + // END JOSEPH + + // team damage avoidance + //if (!(dflags & DAMAGE_NO_PROTECTION) && CheckTeamDamage (targ, attacker)) + // return; + +// do the damage + if (take) + { + if (mod == MOD_FLAMETHROWER) + { + } + else + { + if ((targ->svflags & SVF_MONSTER) || (client)) + SpawnDamage (targ, TE_BLOOD, point, normal, take); + else + SpawnDamage (targ, te_sparks, point, normal, take); + } + + targ->health = targ->health - take; + + + // Ridah, trigger health threshold events + if (targ->health_target && (targ->health < targ->health_threshold)) + { + CheckHealthTarget( targ, targ->health_target ); + targ->health_target = NULL; + } + else if (targ->health_target2 && (targ->health < targ->health_threshold2)) + { + CheckHealthTarget( targ, targ->health_target2 ); + targ->health_target2 = NULL; + } + else if (targ->health_target3 && (targ->health < targ->health_threshold3)) + { + CheckHealthTarget( targ, targ->health_target3 ); + targ->health_target3 = NULL; + } + + + if (targ->health <= 0) + { + if ((targ->svflags & SVF_MONSTER) || (client)) + { + targ->flags |= FL_NO_KNOCKBACK; + M_ReactToDamage (targ, attacker, take); // Ridah, so our friends seek vengence + } + + // JOSEPH 3-MAR-99 + if (targ->svflags & SVF_MONSTER) + { + // targ->solid = SOLID_NOT; + targ->svflags |= SVF_DEADMONSTER; + + if (mod == MOD_ROCKET) + { + targ->s.renderfx2 &= ~RF2_DIR_LIGHTS; + } + } + // END JOSEPH + +// Ridah, removed so grenades and rockets can gib bodies +// if (!targ->deadflag) + Killed (targ, inflictor, attacker, take, point, 0, 0); + + return; + } + } + + if ( (targ->svflags & SVF_MONSTER) + && (targ->health > 0)) // Ridah, 31-may-99, possibly fixes Whore crouching death bug + { + M_ReactToDamage (targ, attacker, take); + if (take) + { + targ->pain (targ, attacker, knockback, take, 0, 0); + // nightmare mode monsters don't go into pain frames often + if (skill->value >= 3) + targ->pain_debounce_time = level.time + 5; + } + } + else if (client) + { + if (!(targ->flags & FL_GODMODE) && (take)) + targ->pain (targ, attacker, knockback, take, 0, 0); + } + else if (take) + { + if (targ->pain) + targ->pain (targ, attacker, knockback, take, 0, 0); + } + + // add to the damage inflicted on a player this frame + // the total will be turned into screen blends and view angle kicks + // at the end of the frame + if (client) + { + client->damage_armor += asave; + if (mod == MOD_FLAMETHROWER) + client->damage_flame += take*4; + else + client->damage_blood += take; + client->damage_knockback += knockback; + VectorCopy (point, client->damage_from); + } +} + +void SpawnPartShotOff (edict_t *self, int mdx_part, vec3_t dir) +{ + + edict_t *dropped; + int skin, model; + vec3_t forward, angles; + int i; + + if (mdx_part == PART_CIGAR) + { + self->count &= ~1; + return; // no cigar + } + + else if (mdx_part == PART_HAT) + { + if (self->count & 2) + { + model = gi.modelindex("models/props/fedora/fedora.mdx"); + // hat bug + self->count &= ~2; + } + else if (self->count & 4) + { + model = gi.modelindex("models/props/stetson/stetson.mdx"); + // hat bug + self->count &= ~4; + } + else if (self->count & 8) + { + model = gi.modelindex("models/props/cap/cap.mdx"); + // hat bug + self->count &= ~8; + } + } + + skin = self->s.model_parts[mdx_part].baseskin; + + dropped = G_Spawn(); + + VectorSet (dropped->mins, -4, -4, -2); + VectorSet (dropped->maxs, 4, 4, 2); + + memset(&(dropped->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + dropped->s.num_parts++; + dropped->s.model_parts[PART_HEAD].modelindex = model; + for (i=0; is.model_parts[PART_HEAD].baseskin = skin; + gi.GetObjectBounds( "models/actors/runt/fedora.mdx", &self->s.model_parts[PART_HEAD] ); + + dropped->movetype = MOVETYPE_BOUNCE; + dropped->clipmask = MASK_SHOT; + dropped->solid = SOLID_NOT; + dropped->s.renderfx2 |= RF2_NOSHADOW; + + VectorCopy (self->s.origin, dropped->s.origin); + dropped->s.origin[2] += 24; + + vectoangles (dir, angles); + AngleVectors (angles, forward, NULL, NULL); + + VectorScale (forward, 100, dropped->velocity); + dropped->velocity [2] += 300; + + gi.linkentity (dropped); +} + + +void gib_a_little_blood (edict_t *self) +{ + + trace_t tr; + vec3_t end; + float rnd; + + VectorCopy (self->s.origin, end); + end[2] -= 8000; + + tr = gi.trace (self->s.origin, NULL, NULL, end, self, MASK_SOLID); + + rnd = (0.5 + 1.5*random()); + SurfaceSpriteEffect(SFX_SPRITE_SURF_BLOOD1, (unsigned char)(rnd*SFX_BLOOD_WIDTH), (unsigned char)(rnd*SFX_BLOOD_HEIGHT), + tr.ent, tr.endpos, tr.plane.normal); +} + +// JOSEPH 18-MAR-99 +void Think_gib_fade (edict_t *ent) +{ + if (!ent->misstime--) + { + ent->nextthink = 0; + G_FreeEdict(ent); + } + else + { + if (ent->misstime <= 20) + { + if (ent->misstime == 20) + { + ent->s.renderfx2 |= RF2_PASSALPHA; + ent->s.effects = 1; // this is full alpha now + } + + ent->s.effects += (255/20); + + if (ent->s.effects > 255) + ent->s.effects = 255; + } + + if (rand()%100 > 90) + gib_a_little_blood (ent); + + ent->nextthink = level.time + 0.1; +/* + // Ridah, optimized this to prevent SZ_GetSpace() overrun's + if (random() < 0.5 && ent->velocity[2]) + { + static float last_blood; + vec3_t negvel; + +// if (last_blood != level.time) + { + VectorScale( ent->velocity, -1, negvel ); + VectorNormalize( negvel ); + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SPLASH); + gi.WriteByte (5); + gi.WritePosition (ent->s.origin); + gi.WriteDir (negvel); + gi.WriteByte (6); + gi.multicast (ent->s.origin, MULTICAST_PVS); + + last_blood = level.time; + + } + } +*/ + } +} +// END JOSEPH + +void gib_end_life (edict_t *self) +{ + gib_a_little_blood (self); + + // JOSEPH 18-MAR-99 + self->think = Think_gib_fade; + self->nextthink = level.time + 0.1; + self->misstime = 80; + // END JOSEPH +} + +void SpawnGib (edict_t *self, int mdx_part, int mdx_subobject, vec3_t dir) +{ + edict_t *gib; + int i; + vec3_t forward, right, up, angles; + char gibname[1024]; + float vel; + int max_rnd; + + gi.sound(self, CHAN_VOICE, gi.soundindex("actors/player/bodyfalls/jibs.wav"), 1, ATTN_NORM, 0); + + if (mdx_part == PART_BODY && mdx_subobject == 0) // Torso is big, so allow big chunks + { // torso + max_rnd = 2; + Com_sprintf (gibname, sizeof(gibname), "models/props/gibs/gib%d.mdx", 3+(rand()%max_rnd) + 1); + } + else if (mdx_part == PART_LEGS) + { + max_rnd = 3; + Com_sprintf (gibname, sizeof(gibname), "models/props/gibs/gib%d.mdx", 1+(rand()%max_rnd) + 1); + } + else // arm/leg/head + { + max_rnd = 3; + Com_sprintf (gibname, sizeof(gibname), "models/props/gibs/gib%d.mdx", (rand()%max_rnd) + 1); + } + + gib = G_Spawn(); + + memset(&(gib->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + gib->s.num_parts++; + gib->s.model_parts[PART_HEAD].modelindex = gi.modelindex (gibname); + for (i=0; is.model_parts[PART_HEAD].baseskin = 0; + +// gib->movetype = MOVETYPE_TOSS; + gib->movetype = MOVETYPE_BOUNCE; + + gib->solid = SOLID_NOT; + gib->s.renderfx2 |= RF2_NOSHADOW; + gib->s.renderfx2 |= RF2_DIR_LIGHTS; + + gib->s.effects |= EF_GIB; + +//gi.dprintf( "SpawnGib: shot ent: %i\n", (int)(self-g_edicts) ); + + VectorCopy (self->s.origin, gib->s.origin); + VectorCopy (self->s.angles, gib->s.angles); + + gib->s.angles[YAW] += (rand()%32) - 16; + + AngleVectors (gib->s.angles, forward, right, up); + + VectorCopy (g_objbnds[-1+self->s.model_parts[mdx_part].object_bounds[mdx_subobject]][self->s.frame].mins, gib->mins); + VectorCopy (g_objbnds[-1+self->s.model_parts[mdx_part].object_bounds[mdx_subobject]][self->s.frame].maxs, gib->maxs); + + VectorMA (gib->s.origin, ((gib->mins[0] + gib->maxs[0]) * 0.5), forward, gib->s.origin); + VectorMA (gib->s.origin, -((gib->mins[1] + gib->maxs[1]) * 0.5), right, gib->s.origin); + VectorMA (gib->s.origin, (gib->mins[2] + gib->maxs[2]) * 0.5, up, gib->s.origin); + + + if (deathmatch->value) // do client-side gibs in deathmatch + { + gib->s.origin[2] += 10; + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_GIBS); + gi.WritePosition (gib->s.origin); + gi.WriteDir (vec3_origin); + gi.WriteByte ( 2 ); // number of gibs + gi.WriteByte ( 0 ); // scale of direction to add to velocity + gi.WriteByte ( 0 ); // random offset scale + gi.WriteByte ( 10 ); // random velocity scale + gi.multicast (self->s.origin, MULTICAST_PVS); + + G_FreeEdict( gib ); + + return; + } + + vel = (float) ((rand()%512) + 128); + + vectoangles (dir, angles); + AngleVectors (angles, forward, NULL, NULL); + + // Ridah, only fly off if not lying on ground + if (self->cast_info.currentmove && self->svflags & SVF_MONSTER && self->cast_info.currentmove->endfunc != AI_EndDeath) + { + VectorScale (forward, vel, gib->velocity); + gib->velocity[2] += (float)(rand()%256) + 120; + } + else + { + gib->velocity[0] = (float)(rand()%60) - 30; + gib->velocity[1] = (float)(rand()%60) - 30; + gib->velocity[2] += (float)(rand()%256) + 120; + } + + VectorSet (gib->avelocity, 300*random(), 300*random(), 300*random()); + + VectorSet (gib->mins, -4, -4, -2); + VectorSet (gib->maxs, 4, 4, 2); + + gib->think = gib_end_life; + gib->nextthink = level.time + 0.1; + + gi.linkentity (gib); + + // Ridah, optimized this to prevent SZ_GetSpace() overrun's + { + static float last_blood; + + // JOSEPH 12-MAY-99-B + if (last_blood != level.time) + { + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SPLASH); + gi.WriteByte (25); + gi.WritePosition (gib->s.origin); + gi.WriteDir (up); + gi.WriteByte (6); + gi.multicast (gib->s.origin, MULTICAST_PVS); + + last_blood = level.time; + } + // END JOSEPH + } + + // Spawn some blood on the wall close by + for (i=0; i<1; i++) + { + trace_t tr; + vec3_t end; + + VectorCopy (gib->s.origin, end); + VectorAdd( end, tv((random()-0.5)*48, (random()-0.5)*48, -16 - (random())*16), end ); + + tr = gi.trace (gib->s.origin, NULL, NULL, end, gib, MASK_SOLID); + + if ((tr.fraction < 1 && tr.ent == &g_edicts[0]) || !(tr.surface->flags & SURF_SKY)) + { + float rnd; + + rnd = (1.5 + 3.2*random()); + SurfaceSpriteEffect(SFX_SPRITE_SURF_BLOOD1, (unsigned char)(SFX_BLOOD_WIDTH*rnd), (unsigned char)(SFX_BLOOD_HEIGHT*rnd), + tr.ent, tr.endpos, tr.plane.normal); + } + } +} + +// Rafael: this routine will need special handling if the jibed part is a helmet +void SpawnGibShotOff (edict_t *self, int mdx_part, int mdx_subobject, vec3_t dir) +{ +#define GIBS_HEAD 4 +#define GIBS_BODY 8 +#define GIBS_ARMS 6 +#define GIBS_LEGS 8 + + int i; + int numgibs; + + if (self->gender != GENDER_MALE && self->gender != GENDER_FEMALE) + return; + + if (cl_parental_lock->value && !cl_parental_override->value) + return; + +//gi.dprintf( "shot ent: %i, part %i, object %i\n", (int)(self-g_edicts), mdx_part, mdx_subobject ); + + // ok the head got shot off so spawn in the standin + if (mdx_part == PART_HEAD) + { + numgibs = GIBS_HEAD; + + if (deathmatch->value) + numgibs /= 2; + + self->s.model_parts[mdx_part].invisible_objects = (1<<0 | 1<<1); + for (i=0; is.model_parts[PART_CIGAR].modelindex) + { + self->s.model_parts[PART_CIGAR].invisible_objects = (1<<0 | 1<<1); + SpawnPartShotOff (self, PART_CIGAR, dir); + } + + if (self->s.model_parts[PART_HAT].modelindex) + { + self->s.model_parts[PART_HAT].invisible_objects = (1<<0 | 1<<1); + SpawnPartShotOff (self, PART_HAT, dir); + } + + // hat and cigar bug + self->count = 0; + + } + else if (mdx_part == PART_LEGS || mdx_part == PART_BODY) + { + // sub object 0 cant be blown off + if (mdx_subobject == 0) + { + if ( self->s.model_parts[PART_BODY].invisible_objects & ((1<<1) | (1<<2) | (1<<3)) + && self->s.model_parts[PART_BODY].invisible_objects & ((1<<4) | (1<<5) | (1<<6)) + && self->s.model_parts[PART_LEGS].invisible_objects & ((1<<1) | (1<<2) | (1<<3)) + && self->s.model_parts[PART_LEGS].invisible_objects & ((1<<4) | (1<<5) | (1<<6)) ) + { + numgibs = GIBS_BODY; + + if (deathmatch->value) + numgibs /= 2; + + for (i=0; inextthink = -1; + self->svflags |= SVF_NOCLIENT; + self->solid = SOLID_NOT; + gi.linkentity( self ); + +// self->s.model_parts[PART_BODY].invisible_objects |= (1<<0 | 1<<1); +// self->s.model_parts[PART_LEGS].invisible_objects |= (1<<0 | 1<<1); +// self->s.model_parts[PART_HEAD].invisible_objects |= (1<<0 | 1<<1); + //self->s.model_parts[PART_HEAD].invisible_objects |= (1<<0 | 1<<1); + //self->s.model_parts[PART_HEAD].invisible_objects |= (1<<0 | 1<<1); + } + else + { + return; + } + } + // the left side + else if (mdx_subobject <= 3) + { + self->s.model_parts[mdx_part].invisible_objects |= ((1<<1) | (1<<2) | (1<<3)); + + if (mdx_part == PART_LEGS) + numgibs = GIBS_LEGS; + else + numgibs = GIBS_ARMS; + + + if (deathmatch->value) + numgibs /= 2; + + // Ridah, increased this, we really need lots of gibs, and since they disappear pretty quick, and + // the pody parts are harder to gib now, they shouldn't occur so often + for (i=0; ihealth = 0; + } + // the right side + else if (mdx_subobject <= 6) + { + self->s.model_parts[mdx_part].invisible_objects |= ((1<<4) | (1<<5) | (1<<6)); + + if (mdx_part == PART_LEGS) + numgibs = GIBS_LEGS; + else + numgibs = GIBS_ARMS; + + if (deathmatch->value) + numgibs /= 2; + + for (i=0; ihealth = 0; + } + } + +} + +void Think_Shard (edict_t *ent) +{ + if (!ent->misstime--) + { + ent->nextthink = 0; + G_FreeEdict(ent); + } + else + { + if (ent->misstime <= 15) + { + if (ent->misstime == 15) + { + ent->s.renderfx2 |= RF2_PASSALPHA; + ent->s.effects = 1; // this is full alpha now + } + + ent->s.effects += (255/15); + + if (ent->s.effects > 255) + ent->s.effects = 255; + } + + ent->nextthink = level.time + 0.1; + } +} + +void shard_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + G_FreeEdict (self); +} + + +void ThrowShard (edict_t *self, char *modelname, float speed, vec3_t origin) +{ + edict_t *chunk; + vec3_t v; + + chunk = G_Spawn(); + VectorCopy (origin, chunk->s.origin); + gi.setmodel (chunk, modelname); + v[0] = speed * crandom(); + v[1] = speed * crandom(); + v[2] = speed + 16 * crandom(); + VectorMA (self->velocity, speed, v, chunk->velocity); + chunk->movetype = MOVETYPE_BOUNCE; + chunk->solid = SOLID_NOT; + chunk->avelocity[0] = random()*128; + chunk->avelocity[1] = random()*128; + chunk->avelocity[2] = random()*128; + chunk->think = G_FreeEdict; + chunk->nextthink = level.time + 5 + random()*5; + chunk->s.frame = 0; + chunk->flags = 0; + chunk->classname = "debris"; + chunk->takedamage = DAMAGE_YES; + chunk->die = shard_die; + chunk->think = Think_Shard; + chunk->misstime = 20; + chunk->nextthink = level.time + 0.1; + chunk->s.renderfx2 |= RF2_NOSHADOW; + + gi.linkentity (chunk); +} + + +// RAFAEL +void T_DamageMDX (edict_t *targ, edict_t *inflictor, edict_t *attacker, vec3_t dir, vec3_t point, + vec3_t normal, int damage, int knockback, int dflags, int mod, + int mdx_part, int mdx_subobject) +{ + gclient_t *client; + int take; + int save; + int asave; + int te_sparks; + qboolean hasarmor = false; + + if (!targ->takedamage) + return; + + if (targ->cast_info.aiflags & AI_IMMORTAL) + { + return; + } + + // friendly fire avoidance + // if enabled you can't hurt teammates (but you can hurt yourself) + // knockback still occurs + if (!(dflags & DAMAGE_NO_PROTECTION) && (targ != attacker) && ((deathmatch->value && (teamplay->value || ((int)(dmflags->value) & (DF_MODELTEAMS/*| DF_SKINTEAMS*/))) /*|| coop->value*/))) + { + if ((OnSameTeam (targ, attacker)) && (!targ->client->pers.friendly_vulnerable)) + { + if ((int)(dmflags->value) & DF_NO_FRIENDLY_FIRE) + { + damage = 0; + } + else + mod |= MOD_FRIENDLY_FIRE; + } + } + meansOfDeath = mod; + + // easy mode takes half damage + if (deathmatch->value == 0 && targ->client) + { + if (skill->value == 0) + damage *= 0.1; // used to be 50%, so we have to make it 10% to be 1/5 of what it was before + else if (skill->value == 1) + damage *= 0.6; + + if (!damage) + damage = 1; + } + else if (deathmatch->value && dm_realmode->value && attacker != targ && attacker->client) + { + damage *= 4; + } + + client = targ->client; + + // JOSEPH 4-MAY-99 + if (mod == MOD_BLACKJACK) + te_sparks = TE_IMPACT_CONCUSSION; + else if (dflags & DAMAGE_BULLET) + te_sparks = TE_BULLET_SPARKS; + else + te_sparks = TE_SPARKS; + // END JOSEPH + + VectorNormalize(dir); + +// bonus damage for suprising a monster +// if (!(dflags & DAMAGE_RADIUS) && (targ->svflags & SVF_MONSTER) && (attacker->client) && (!targ->enemy) && (targ->health > 0)) +// damage *= 2; + + if ((targ->flags & FL_NO_KNOCKBACK) || (targ->nokickbackflag)) + knockback = 0; + +// figure momentum add + if (!(dflags & DAMAGE_NO_KNOCKBACK)) + { + if ((knockback) && (targ->movetype != MOVETYPE_NONE) && (targ->movetype != MOVETYPE_BOUNCE) && (targ->movetype != MOVETYPE_PUSH) && (targ->movetype != MOVETYPE_STOP)) + { + vec3_t kvel; + float mass; + + if (targ->mass < 50) + mass = 50; + else + mass = targ->mass; + + // JOSEPH 13-MAY-99 + if ((targ->client && attacker == targ) && deathmatch->value) + VectorScale (dir, 1600.0 * (float)knockback / mass, kvel); // the rocket jump hack... + else if (targ->client && attacker == targ) + VectorScale (dir, 128.0 * (float)knockback / mass, kvel); + else + VectorScale (dir, 500.0 * (float)knockback / mass, kvel); + // END JOSEPH + VectorAdd (targ->velocity, kvel, targ->velocity); + } + } + + take = damage; + save = 0; + + // check for godmode + if ( (targ->flags & FL_GODMODE) && !(dflags & DAMAGE_NO_PROTECTION) ) + { + take = 0; + save = damage; + SpawnDamage (targ, te_sparks, point, normal, save); + } + + // check for invincibility + if ((client && client->invincible_framenum > level.framenum ) && !(dflags & DAMAGE_NO_PROTECTION)) + { + if (targ->pain_debounce_time < level.time) + { + // JOSEPH 29-MAR-99 + //gi.sound(targ, CHAN_ITEM, gi.soundindex("items/protect4.wav"), 1, ATTN_NORM, 0); + // END JOSEPH + targ->pain_debounce_time = level.time + 2; + } + take = 0; + save = damage; + } + + // JOSEPH 1-APR-99 + //asave = CheckArmor (targ, point, normal, take, te_sparks, dflags); + //take -= asave; + + //treat cheat/powerup savings the same as armor + asave = 0; + asave += save; + // END JOSEPH + + // team damage avoidance + //if (!(dflags & DAMAGE_NO_PROTECTION) && CheckTeamDamage (targ, attacker)) + // return; + +// do the damage + if (take) + { + + // JOSEPH 2-APR-99 + if (!deathmatch->value || dm_locational_damage->value) + { + int index; + gitem_t *item = NULL; + float takefactor; + int takehealth = 0; + int takeshield = 0; + + if (mdx_part == PART_HEAD) + { + if (client) + { + item = FindItem ("Helmet Armor"); + takefactor = 0.3; + if (!(client->pers.inventory[ITEM_INDEX(item)])) + { + item = FindItem ("Helmet Armor Heavy"); + takefactor = 0.1; + } + + takeshield = (take * (1.0 - takefactor)); + if (deathmatch->value) + take *= 1.5; + else if (skill->value < 3) // FIXME? note to Rafael/Joeseph: why does it add more damage if lower skill level? + take *= 3; + takehealth = take * takefactor; + } + else + { + if (deathmatch->value) + take *= 1.5; // Ridah, scaled this down, since it gives people with low pings an un-fair advantage + else if (skill->value < 3) + take *= 3; + } + } + else if (mdx_part == PART_LEGS) + { + if (client) + { + item = FindItem ("Legs Armor"); + takefactor = 0.3; + if (!(client->pers.inventory[ITEM_INDEX(item)])) + { + item = FindItem ("Legs Armor Heavy"); + takefactor = 0.1; + } + + takeshield = (take * (1.0 - takefactor)); + takehealth = take * takefactor; + } + else + { + if (deathmatch->value) + take *= 1.0; + else if (skill->value < 3) + take *= 1.25; + } + } + else if (mdx_part == PART_BODY) + { + if (client) + { + item = FindItem ("Jacket Armor"); + takefactor = 0.3; + if (!(client->pers.inventory[ITEM_INDEX(item)])) + { + item = FindItem ("Jacket Armor Heavy"); + takefactor = 0.1; + } + + + takeshield = (take * (1.0 - takefactor)); + if (deathmatch->value) + take *= 1.5; + else if (skill->value < 3) + take *= 2; + takehealth = take * takefactor; + } + else + { + if (deathmatch->value) + take *= 1.5; + else if (skill->value < 3) + take *= 2; + } + } + else if (mdx_part == PART_CIGAR || mdx_part == PART_HAT) + { + // we hit a hat or something + take = 0; + targ->s.model_parts[mdx_part].modelindex = 0; + + // need to spawn the piece flying off + { + SpawnPartShotOff (targ, mdx_part, dir); + } + } + + if ((client) && (item) && (client->pers.inventory[ITEM_INDEX(item)])) + { + index = ITEM_INDEX (item); + + hasarmor = true; + + if (takeshield <= client->pers.inventory[ index ]) + { + client->pers.inventory[ index ] -= takeshield; + take = takehealth; + } + else + { + takehealth = ((take - client->pers.inventory[ index ])+ + (takefactor*client->pers.inventory[ index ])); + client->pers.inventory[ index ] = 0; + take = takehealth; + } + } + } + // END JOSEPH + + if (mod == MOD_FLAMETHROWER) + { + } + else + { + if ((targ->svflags & SVF_MONSTER) || (client)) + if (hasarmor) + { + + // Ridah, this is a major bandwidth hog, need to make client-side, like gibs + if (!deathmatch->value) + { + ThrowShard (targ, "models/props/glass/glass2.md2", 4, point); + ThrowShard (targ, "models/props/glass/glass2.md2", 4, point); + ThrowShard (targ, "models/props/glass/glass2.md2", 8, point); + ThrowShard (targ, "models/props/glass/glass2.md2", 8, point); + ThrowShard (targ, "models/props/glass/glass2.md2", 16, point); + ThrowShard (targ, "models/props/glass/glass2.md2", 16, point); + } + + { + int rval; + rval = rand(); + + if (rval > 66) + gi.sound(targ, CHAN_VOICE, gi.soundindex("weapons/bullethit_armor1.wav"), 1, ATTN_NORM, 0); + else if (rval > 33) + gi.sound(targ, CHAN_VOICE, gi.soundindex("weapons/bullethit_armor2.wav"), 1, ATTN_NORM, 0); + else + gi.sound(targ, CHAN_VOICE, gi.soundindex("weapons/bullethit_armor3.wav"), 1, ATTN_NORM, 0); + } + + } + else + SpawnDamage (targ, TE_BLOOD, point, normal, take); + else + SpawnDamage (targ, te_sparks, point, normal, take); + } + + + targ->health = targ->health - take; + + // Ridah, trigger health threshold events + if (targ->health_target && (targ->health < targ->health_threshold)) + { + CheckHealthTarget( targ, targ->health_target ); + targ->health_target = NULL; + } + else if (targ->health_target2 && (targ->health < targ->health_threshold2)) + { + CheckHealthTarget( targ, targ->health_target2 ); + targ->health_target2 = NULL; + } + else if (targ->health_target3 && (targ->health < targ->health_threshold3)) + { + CheckHealthTarget( targ, targ->health_target3 ); + targ->health_target3 = NULL; + } + + // gi.dprintf ("health %d\n", targ->health); + + if ((mod != MOD_BLACKJACK) && (mod != MOD_CROWBAR)) + { + if (targ->health <= targ->gib_health && targ->gender != GENDER_NONE && mdx_part <= PART_BODY) + { + if (!deathmatch->value) + { + SpawnGibShotOff (targ, mdx_part, mdx_subobject, dir); + } + else // in deathmatch, take some beating before a limb gibs + { + if (((int)targ->s.model_parts[mdx_part].hitpoints[mdx_subobject] + take) < 255) + targ->s.model_parts[mdx_part].hitpoints[mdx_subobject] += take; + else + targ->s.model_parts[mdx_part].hitpoints[mdx_subobject] = 255; + + if (targ->s.model_parts[mdx_part].hitpoints[mdx_subobject] > 150) + { + SpawnGibShotOff (targ, mdx_part, mdx_subobject, dir); + } + } + } + + else if (!targ->deadflag) + { + if (((int)targ->s.model_parts[mdx_part].hitpoints[mdx_subobject] + take) < 255) + targ->s.model_parts[mdx_part].hitpoints[mdx_subobject] += take; + else + targ->s.model_parts[mdx_part].hitpoints[mdx_subobject] = 255; + + // tweek to help them stay alive a bit longer + if (targ->s.model_parts[mdx_part].hitpoints[mdx_subobject] > ((rand()%150)+25) && targ->health < 50) + { + targ->health -= targ->max_health; // make sure they die + SpawnGibShotOff (targ, mdx_part, mdx_subobject, dir); + } + } + + } + + // Ridah, don't show pain skins if hit by melee weapon + //if ((mod != MOD_BLACKJACK) && (mod != MOD_CROWBAR)) + if (targ->art_skins && (!(cl_parental_lock->value) || cl_parental_override->value)) + { + int baseskin;//, currentskin; + + baseskin = targ->s.model_parts[mdx_part].baseskin; + //currentskin = targ->s.model_parts[mdx_part].skinnum[mdx_subobject]; + + if (targ->health < (targ->max_health * 0.5)) + { + targ->s.model_parts[mdx_part].skinnum[mdx_subobject] = baseskin + 2; + } + else if (targ->health < (targ->max_health * 0.75)) + { + targ->s.model_parts[mdx_part].skinnum[mdx_subobject] = baseskin + 1; + } + } + + if (targ->health <= 0) + { + if ((targ->svflags & SVF_MONSTER) || (client)) + { + targ->flags |= FL_NO_KNOCKBACK; + M_ReactToDamage (targ, attacker, take); // Ridah, so our friends seek vengence + } + + // JOSEPH 3-MAR-99 + if (targ->svflags & SVF_MONSTER) + { + // targ->solid = SOLID_NOT; + targ->svflags |= SVF_DEADMONSTER; + + if (mod == MOD_ROCKET) + { + targ->s.renderfx2 &= ~RF2_DIR_LIGHTS; + } + } + // END JOSEPH + +// Ridah, removed so grenades and rockets can gib bodies +// if (!targ->deadflag) + Killed (targ, inflictor, attacker, take, point, mdx_part, mdx_subobject); + + return; + } + } + + if ( (targ->svflags & SVF_MONSTER) + && (targ->health > 0)) // Ridah, 31-may-99, possibly fixes Whore crouching death bug + { + M_ReactToDamage (targ, attacker, take); + if (take) + { + targ->pain (targ, attacker, knockback, take, mdx_part, mdx_subobject); + // nightmare mode monsters don't go into pain frames often + if (skill->value >= 3) + targ->pain_debounce_time = level.time + 5; + } + } + else if (client) + { + if (!(targ->flags & FL_GODMODE) && (take)) + targ->pain (targ, attacker, knockback, take, mdx_part, mdx_subobject); + } + else if (take) + { + if (targ->pain) + targ->pain (targ, attacker, knockback, take, mdx_part, mdx_subobject); + } + + // add to the damage inflicted on a player this frame + // the total will be turned into screen blends and view angle kicks + // at the end of the frame + if (client) + { + client->damage_armor += asave; + if (mod == MOD_FLAMETHROWER) + client->damage_flame += take*4; + else + client->damage_blood += take; + client->damage_knockback += knockback; + VectorCopy (point, client->damage_from); + } +} + +/* +============ +T_RadiusDamage +============ +*/ +void T_RadiusDamage (edict_t *inflictor, edict_t *attacker, float damage, edict_t *ignore, float radius, int mod) +{ + float points; + edict_t *ent = NULL; + vec3_t v; + vec3_t dir; +// int mdx_part, mdx_subobject; + + while ((ent = findradius(ent, inflictor->s.origin, radius)) != NULL) + { + if (ent == ignore) + continue; + if (!ent->takedamage) + continue; + + VectorAdd (ent->mins, ent->maxs, v); + VectorMA (ent->s.origin, 0.5, v, v); + VectorSubtract (inflictor->s.origin, v, v); + +// points = damage - 0.5 * VectorLength (v); + points = damage * (1.0 - VectorLength (v)/radius); // Ridah, changed this + + if (ent == attacker) + { + if (mod == MOD_FLAMETHROWER) // don't damage self from flames, only if really close to wall, in which case we do a T_Damage() + continue; + + // points = points * 0.5; + } + + // JOSEPH 26-MAY-99 + if ((ent->svflags & SVF_MONSTER) && inflictor->classname && + (!strcmp(inflictor->classname, "grenade")) && + attacker && (attacker->svflags & SVF_MONSTER)) + { + points *= 0.5; + } + // END JOSEPH + + if (points > 0) + { + if (CanDamage (ent, inflictor)) + { + VectorSubtract (ent->s.origin, inflictor->s.origin, dir); + + if (mod == MOD_FLAMETHROWER && ent->health > 0 && (ent->svflags & SVF_MONSTER || ent->client)) + { + + // JOSEPH 29-MAY-99 + if (ent->onfiretime < -20) + { + ent->onfiretime = 1; + + if (ent->svflags & SVF_MONSTER) + ent->cast_info.aiflags &= ~AI_NO_TALK; + + if (ent->gender == GENDER_FEMALE) + { + if (ent->health > 80) + { + Voice_Specific (ent, attacker, female_specific, 8); + } + else if (ent->health > 40) + { + Voice_Specific (ent, attacker, female_specific, 7); + } + else + { + Voice_Specific (ent, attacker, female_specific, 6); + } + } + else if (ent->gender == GENDER_MALE) + { + if (ent->health > 80) + { + Voice_Specific (ent, attacker, male_specific, 12); + } + else if (ent->health > 40) + { + Voice_Specific (ent, attacker, male_specific, 11); + } + else + { + Voice_Specific (ent, attacker, male_specific, 10); + } + } + + if (ent->svflags & SVF_MONSTER) + ent->cast_info.aiflags |= AI_NO_TALK; +// if (deathmatch->value) + { // play the sound on different channels so it's less likely to get over-written + if (ent->last_talk_time == level.time && ent->last_voice->soundindex) + { + gi.sound( ent, CHAN_SPECIAL | CHAN_RELIABLE, ent->last_voice->soundindex-1, 1.0, 2, 0 ); +// gi.sound( ent, CHAN_BODY | CHAN_RELIABLE, ent->last_voice->soundindex-1, 1.0, 2, 0 ); + } + } + + ent->pain_debounce_time = level.time + 5; + + if (ent->svflags & SVF_MONSTER) + ent->cast_info.aiflags |= AI_NO_TALK; // can't talk anymore, burning + } + + if (ent->onfiretime > 0) + { + if (attacker->client || attacker->svflags & SVF_MONSTER) + ent->onfireent = attacker; + else + ent->onfireent = NULL; + + if (deathmatch->value && (ent->pain_debounce_time < (level.time+3))) + { + if (ent->gender == GENDER_FEMALE) + { + if (ent->health > 80) + { + Voice_Specific (ent, attacker, female_specific, 8); + } + else if (ent->health > 40) + { + Voice_Specific (ent, attacker, female_specific, 7); + } + else + { + Voice_Specific (ent, attacker, female_specific, 6); + } + } + else if (ent->gender == GENDER_MALE) + { + if (ent->health > 80) + { + Voice_Specific (ent, attacker, male_specific, 12); + } + else if (ent->health > 40) + { + Voice_Specific (ent, attacker, male_specific, 11); + } + else + { + Voice_Specific (ent, attacker, male_specific, 10); + } + } + + if (deathmatch->value) + { // play the sound on different channels so it's less likely to get over-written + if (ent->last_talk_time == level.time && ent->last_voice->soundindex) + { + gi.sound( ent, CHAN_SPECIAL | CHAN_RELIABLE, ent->last_voice->soundindex-1, 1.0, 2, 0 ); +// gi.sound( ent, CHAN_ITEM | CHAN_RELIABLE, ent->last_voice->soundindex-1, 1.0, 2, 0 ); +// gi.sound( ent, CHAN_BODY | CHAN_RELIABLE, ent->last_voice->soundindex-1, 1.0, 2, 0 ); + } + } + + ent->pain_debounce_time = level.time + 5; + } + // END JOSEPH + + ent->onfiretime = 50; + + if (ent->client) + { + ent->onfiretime = 25; + + // Ridah, in Deathmatch, you should be rewarded for flaming them, not so much just setting them on fire and waiting for them to burn to death + if (deathmatch->value) + { + ent->onfiretime = 10; + T_Damage (ent, inflictor, attacker, dir, inflictor->s.origin, vec3_origin, (int)points, (int)points, DAMAGE_RADIUS, mod); + } + } + + if (ent->cast_info.catch_fire) + { + ent->cast_info.catch_fire( ent, attacker ); + } + + if (!ent->client) + ent->s.renderfx2 &= ~RF2_DIR_LIGHTS; + } + else + { + ent->onfiretime -= (int) (3.0 * (1.0 - VectorLength (v)/radius) * (float)((deathmatch->value!=0)*2 + 1)); + } + } + else // do the damage as normal + { + T_Damage (ent, inflictor, attacker, dir, inflictor->s.origin, vec3_origin, (int)points, (int)points, DAMAGE_RADIUS, mod); + } + + } + } + } +} + +// JOSEPH 21-APR-99 +/* +============ +T_RadiusDamage +============ +*/ +void T_RadiusDamage_Fire (edict_t *inflictor, edict_t *attacker, float damage, edict_t *ignore, float radius) +{ + float points; + edict_t *ent = NULL; + vec3_t v; + vec3_t dir; + int mod = MOD_FLAMETHROWER; + + while ((ent = findradius(ent, inflictor->s.origin, radius)) != NULL) + { + if (ent == ignore) + continue; + if (!ent->takedamage) + continue; + + VectorAdd (ent->mins, ent->maxs, v); + VectorMA (ent->s.origin, 0.5, v, v); + VectorSubtract (inflictor->s.origin, v, v); + + points = damage * (1.0 - VectorLength (v)/radius); + //points = damage; + + if (points > 0) + { + if (CanDamage (ent, inflictor)) + { + VectorSubtract (ent->s.origin, inflictor->s.origin, dir); + + if (ent->health > 0 && (ent->svflags & SVF_MONSTER || ent->client)) + { + T_Damage (ent, inflictor, attacker, vec3_origin, ent->s.origin, vec3_origin, points, points, 0, MOD_FLAMETHROWER); + } + } + } + } +} +// END JOSEPH + +edict_t *SpawnTheWeapon (edict_t *self, char *var_itemname) +{ + edict_t *drop = NULL; + int model; + qboolean e_weapon = false; + char itemname[MAX_QPATH]; + + strcpy( itemname, var_itemname ); + + if (!(strcmp (itemname, "weapon_pistol_e"))) + { + strcpy (itemname, "weapon_pistol"); + e_weapon = true; + model = gi.modelindex("models/weapons/e_pistol/tris.md2"); + } + else if (!(strcmp (itemname, "weapon_shotgun_e"))) + { + strcpy (itemname, "weapon_shotgun"); + e_weapon = true; + model = gi.modelindex("models/weapons/e_shotgun/tris.md2"); + } + else if (!(strcmp (itemname, "weapon_heavymachinegun_e"))) + { + strcpy (itemname, "weapon_heavymachinegun"); + e_weapon = true; + model = gi.modelindex("models/weapons/e_hmg/tris.md2"); + } + else if (!(strcmp (itemname, "weapon_bazooka_e"))) + { + strcpy (itemname, "weapon_bazooka"); + e_weapon = true; + model = gi.modelindex("models/weapons/e_rocket_launcher/tris.md2"); + } + else if (!(strcmp (itemname, "weapon_flamethrower_e"))) + { + strcpy (itemname, "weapon_flamethrower"); + e_weapon = true; + model = gi.modelindex("models/weapons/e_flamegun/tris.md2"); + } + else if (!(strcmp (itemname, "weapon_grenadelauncher_e"))) + { + strcpy (itemname, "weapon_grenadelauncher"); + e_weapon = true; + model = gi.modelindex("models/weapons/e_grenade_launcher/tris.md2"); + } + else if (!(strcmp (itemname, "weapon_tommygun_e"))) + { + strcpy (itemname, "weapon_tommygun"); + e_weapon = true; + model = gi.modelindex("models/weapons/e_tomgun/tris.md2"); + } + + drop = Drop_Item (self, FindItemByClassname (itemname)); + + if (e_weapon) + drop->s.modelindex = model; + + if (drop) + drop->spawnflags &= ~DROPPED_ITEM; + + return drop; +} diff --git a/gamesrc/G_items.c b/gamesrc/G_items.c new file mode 100644 index 0000000..568e59b --- /dev/null +++ b/gamesrc/G_items.c @@ -0,0 +1,3874 @@ + +#include "g_local.h" + + +qboolean Pickup_Weapon (edict_t *ent, edict_t *other); +void Use_Weapon (edict_t *ent, gitem_t *inv); +void Use_Weapon2 (edict_t *ent, gitem_t *inv); +void Drop_Weapon (edict_t *ent, gitem_t *inv); + +// JOSEPH 12-OCT-98 +void Weapon_Blackjack (edict_t *ent); +// JOSEPH 19-JAN-99 +void Weapon_Crowbar (edict_t *ent); + +// RAFAEL +void Weapon_SPistol (edict_t *ent); +void Weapon_Pistol (edict_t *ent); +void Weapon_Tommygun (edict_t *ent); + +void Weapon_Blaster (edict_t *ent); +void Weapon_Shotgun (edict_t *ent); +void Weapon_SuperShotgun (edict_t *ent); +void Weapon_Machinegun (edict_t *ent); +void Weapon_Chaingun (edict_t *ent); +void Weapon_HyperBlaster (edict_t *ent); +void Weapon_RocketLauncher (edict_t *ent); +void Weapon_Grenade (edict_t *ent); +void Weapon_GrenadeLauncher (edict_t *ent); +void Weapon_Railgun (edict_t *ent); +void Weapon_BFG (edict_t *ent); +// RAFAEL +void Weapon_Ionripper (edict_t *ent); +void Weapon_Phalanx (edict_t *ent); +void Weapon_Trap (edict_t *ent); + +void Weapon_FlameThrower (edict_t *ent); + +void Weapon_Barmachinegun (edict_t *ent); + +gitem_armor_t jacketarmor_info = { 25, 50, .30, .00, ARMOR_JACKET}; +gitem_armor_t combatarmor_info = { 50, 100, .60, .30, ARMOR_COMBAT}; +gitem_armor_t bodyarmor_info = {100, 200, .80, .60, ARMOR_BODY}; + +static int jacket_armor_index; +static int combat_armor_index; +static int body_armor_index; +static int power_screen_index; +static int power_shield_index; + +#define HEALTH_IGNORE_MAX 1 +#define HEALTH_TIMED 2 + +void Use_Quad (edict_t *ent, gitem_t *item); +// RAFAEL +void Use_QuadFire (edict_t *ent, gitem_t *item); + +static int quad_drop_timeout_hack; +// RAFAEL +static int quad_fire_drop_timeout_hack; + +//====================================================================== + +/* +=============== +GetItemByIndex +=============== +*/ +gitem_t *GetItemByIndex (int index) +{ + if (index == 0 || index >= game.num_items) + return NULL; + + return &itemlist[index]; +} + + +/* +=============== +FindItemByClassname + +=============== +*/ +gitem_t *FindItemByClassname (char *classname) +{ + int i; + gitem_t *it; + + it = itemlist; + for (i=0 ; iclassname) + continue; + if (!Q_stricmp(it->classname, classname)) + return it; + } + + return NULL; +} + +/* +=============== +FindItem + +=============== +*/ +gitem_t *FindItem (char *pickup_name) +{ + int i; + gitem_t *it; + + it = itemlist; + for (i=0 ; ipickup_name) + continue; + if (!Q_stricmp(it->pickup_name, pickup_name)) + return it; + } + + return NULL; +} + +//====================================================================== + +void DoRespawn (edict_t *ent) +{ + if (ent->team) + { + edict_t *master; + int count; + int choice; + + master = ent->teammaster; + + for (count = 0, ent = master; ent; ent = ent->chain, count++) + ; + + choice = rand() % count; + + for (count = 0, ent = master; count < choice; ent = ent->chain, count++) + ; + } + + ent->svflags &= ~SVF_NOCLIENT; + ent->solid = SOLID_TRIGGER; + gi.linkentity (ent); + + // send an effect + ent->s.event = EV_ITEM_RESPAWN; +} + +void SetRespawn (edict_t *ent, float delay) +{ + ent->flags |= FL_RESPAWN; + ent->svflags |= SVF_NOCLIENT; + ent->solid = SOLID_NOT; + ent->nextthink = level.time + delay; + ent->think = DoRespawn; + gi.linkentity (ent); +} + + +//====================================================================== + +qboolean Pickup_Powerup (edict_t *ent, edict_t *other) +{ + int quantity; + + quantity = other->client->pers.inventory[ITEM_INDEX(ent->item)]; + if ((skill->value == 1 && quantity >= 2) || (skill->value >= 2 && quantity >= 1)) + return false; + + // Rafael no coop + if ((coop->value) && (ent->item->flags & IT_STAY_COOP) && (quantity > 0)) + return false; + + other->client->pers.inventory[ITEM_INDEX(ent->item)]++; + + if (deathmatch->value) + { + if (!(ent->spawnflags & DROPPED_ITEM) ) + SetRespawn (ent, ent->item->quantity); + +// Ridah, 27-may-99, not used +/* + if (((int)dmflags->value & DF_INSTANT_ITEMS) || ((ent->item->use == Use_Quad) && (ent->spawnflags & DROPPED_PLAYER_ITEM))) + { + if ((ent->item->use == Use_Quad) && (ent->spawnflags & DROPPED_PLAYER_ITEM)) + quad_drop_timeout_hack = (ent->nextthink - level.time) / FRAMETIME; + ent->item->use (other, ent->item); + } + // RAFAEL + else if (((int)dmflags->value & DF_INSTANT_ITEMS) || ((ent->item->use == Use_QuadFire) && (ent->spawnflags & DROPPED_PLAYER_ITEM))) + { + if ((ent->item->use == Use_QuadFire) && (ent->spawnflags & DROPPED_PLAYER_ITEM)) + quad_fire_drop_timeout_hack = (ent->nextthink - level.time) / FRAMETIME; + ent->item->use (other, ent->item); + } +*/ + } + + return true; +} + +void Drop_General (edict_t *ent, gitem_t *item) +{ + Drop_Item (ent, item); + ent->client->pers.inventory[ITEM_INDEX(item)]--; + ValidateSelectedItem (ent); +} + + +//====================================================================== + +// JOSEPH 23-APR-99 +qboolean Pickup_Adrenaline (edict_t *ent, edict_t *other) +{ + //if (!deathmatch->value) + // other->max_health += 1; + + if (other->health < other->max_health) + other->health = other->max_health; + + if (!(ent->spawnflags & DROPPED_ITEM) && (deathmatch->value)) + SetRespawn (ent, ent->item->quantity); + + return true; +} +// END JOSEPH + +qboolean Pickup_AncientHead (edict_t *ent, edict_t *other) +{ + other->max_health += 2; + + if (!(ent->spawnflags & DROPPED_ITEM) && (deathmatch->value)) + SetRespawn (ent, ent->item->quantity); + + return true; +} + +qboolean Pickup_Bandolier (edict_t *ent, edict_t *other) +{ + gitem_t *item; + int index; + + if (other->client->pers.max_bullets < 250) + other->client->pers.max_bullets = 250; + if (other->client->pers.max_shells < 150) + other->client->pers.max_shells = 150; + if (other->client->pers.max_cells < 250) + other->client->pers.max_cells = 250; + if (other->client->pers.max_slugs < 120) + other->client->pers.max_slugs = 120; + // RAFAEL + if (other->client->pers.max_magslug < 75) + other->client->pers.max_magslug = 75; + + item = FindItem("Bullets"); + if (item) + { + index = ITEM_INDEX(item); + other->client->pers.inventory[index] += item->quantity; + if (other->client->pers.inventory[index] > other->client->pers.max_bullets) + other->client->pers.inventory[index] = other->client->pers.max_bullets; + } + + item = FindItem("Shells"); + if (item) + { + index = ITEM_INDEX(item); + other->client->pers.inventory[index] += item->quantity; + if (other->client->pers.inventory[index] > other->client->pers.max_shells) + other->client->pers.inventory[index] = other->client->pers.max_shells; + } + + if (!(ent->spawnflags & DROPPED_ITEM) && (deathmatch->value)) + SetRespawn (ent, ent->item->quantity); + + return true; +} + +qboolean Pickup_Pack (edict_t *ent, edict_t *other) +{ + gitem_t *item; + int index; + + if (other->client->pers.max_bullets < 300) + other->client->pers.max_bullets = 300; + if (other->client->pers.max_shells < 200) + other->client->pers.max_shells = 200; + if (other->client->pers.max_rockets < 100) + other->client->pers.max_rockets = 100; + if (other->client->pers.max_grenades < 15) + other->client->pers.max_grenades = 15; + if (other->client->pers.max_cells < 300) + other->client->pers.max_cells = 300; + if (other->client->pers.max_slugs < 120) + other->client->pers.max_slugs = 120; + // RAFAEL + if (other->client->pers.max_magslug < 100) + other->client->pers.max_magslug = 100; + + item = FindItem("Bullets"); + if (item) + { + index = ITEM_INDEX(item); + other->client->pers.inventory[index] += item->quantity; + if (other->client->pers.inventory[index] > other->client->pers.max_bullets) + other->client->pers.inventory[index] = other->client->pers.max_bullets; + } + + item = FindItem("Shells"); + if (item) + { + index = ITEM_INDEX(item); + other->client->pers.inventory[index] += item->quantity; + if (other->client->pers.inventory[index] > other->client->pers.max_shells) + other->client->pers.inventory[index] = other->client->pers.max_shells; + } + + item = FindItem("Gas"); + if (item) + { + index = ITEM_INDEX(item); + other->client->pers.inventory[index] += item->quantity; + if (other->client->pers.inventory[index] > other->client->pers.max_cells) + other->client->pers.inventory[index] = other->client->pers.max_cells; + } + + item = FindItem("Grenades"); + if (item) + { + index = ITEM_INDEX(item); + other->client->pers.inventory[index] += item->quantity; + if (other->client->pers.inventory[index] > other->client->pers.max_grenades) + other->client->pers.inventory[index] = other->client->pers.max_grenades; + } + + item = FindItem("Rockets"); + if (item) + { + index = ITEM_INDEX(item); + other->client->pers.inventory[index] += item->quantity; + if (other->client->pers.inventory[index] > other->client->pers.max_rockets) + other->client->pers.inventory[index] = other->client->pers.max_rockets; + } + + // JOSEPH 11-APR-99 + item = FindItem("308cal"); + if (item) + { + index = ITEM_INDEX(item); + other->client->pers.inventory[index] += item->quantity; + if (other->client->pers.inventory[index] > other->client->pers.max_slugs) + other->client->pers.inventory[index] = other->client->pers.max_slugs; + } + // END JOSEPH + + // RAFAEL + item = FindItem ("Mag Slug"); + if (item) + { + index = ITEM_INDEX(item); + other->client->pers.inventory[index] += item->quantity; + if (other->client->pers.inventory[index] > other->client->pers.max_magslug) + other->client->pers.inventory[index] = other->client->pers.max_magslug; + } + + if (!(ent->spawnflags & DROPPED_ITEM) && (deathmatch->value)) + SetRespawn (ent, ent->item->quantity); + + return true; +} + +//====================================================================== + +void Use_Quad (edict_t *ent, gitem_t *item) +{ + int timeout; + + ent->client->pers.inventory[ITEM_INDEX(item)]--; + ValidateSelectedItem (ent); + + if (quad_drop_timeout_hack) + { + timeout = quad_drop_timeout_hack; + quad_drop_timeout_hack = 0; + } + else + { + timeout = 300; + } + + if (ent->client->quad_framenum > level.framenum) + ent->client->quad_framenum += timeout; + else + ent->client->quad_framenum = level.framenum + timeout; + + // JOSEPH 29-MAR-99 + //gi.sound(ent, CHAN_ITEM, gi.soundindex("items/damage.wav"), 1, ATTN_NORM, 0); + // END JOSEPH +} + + +// ===================================================================== + +// RAFAEL +void Use_QuadFire (edict_t *ent, gitem_t *item) +{ + int timeout; + + ent->client->pers.inventory[ITEM_INDEX(item)]--; + ValidateSelectedItem (ent); + + if (quad_fire_drop_timeout_hack) + { + timeout = quad_fire_drop_timeout_hack; + quad_fire_drop_timeout_hack = 0; + } + else + { + timeout = 300; + } + + if (ent->client->quadfire_framenum > level.framenum) + ent->client->quadfire_framenum += timeout; + else + ent->client->quadfire_framenum = level.framenum + timeout; + + // JOSEPH 29-MAR-99 + //gi.sound(ent, CHAN_ITEM, gi.soundindex("items/damage.wav"), 1, ATTN_NORM, 0); + // END JOSEPH +} + + +//====================================================================== + +void Use_Breather (edict_t *ent, gitem_t *item) +{ + ent->client->pers.inventory[ITEM_INDEX(item)]--; + ValidateSelectedItem (ent); + + if (ent->client->breather_framenum > level.framenum) + ent->client->breather_framenum += 300; + else + ent->client->breather_framenum = level.framenum + 300; + +// gi.sound(ent, CHAN_ITEM, gi.soundindex("items/damage.wav"), 1, ATTN_NORM, 0); +} + +//====================================================================== + +void Use_Envirosuit (edict_t *ent, gitem_t *item) +{ + ent->client->pers.inventory[ITEM_INDEX(item)]--; + ValidateSelectedItem (ent); + + if (ent->client->enviro_framenum > level.framenum) + ent->client->enviro_framenum += 300; + else + ent->client->enviro_framenum = level.framenum + 300; + +// gi.sound(ent, CHAN_ITEM, gi.soundindex("items/damage.wav"), 1, ATTN_NORM, 0); +} + +//====================================================================== + +void Use_Invulnerability (edict_t *ent, gitem_t *item) +{ + ent->client->pers.inventory[ITEM_INDEX(item)]--; + ValidateSelectedItem (ent); + + if (ent->client->invincible_framenum > level.framenum) + ent->client->invincible_framenum += 300; + else + ent->client->invincible_framenum = level.framenum + 300; + + // JOSEPH 29-MAR-99 + //gi.sound(ent, CHAN_ITEM, gi.soundindex("items/protect.wav"), 1, ATTN_NORM, 0); + // END JOSEPH +} + +//====================================================================== + +void Use_Silencer (edict_t *ent, gitem_t *item) +{ + // do not use anymore + return; + +// ent->client->pers.inventory[ITEM_INDEX(item)]--; +// ValidateSelectedItem (ent); +// ent->client->pers.silencer_shots += 30; + +// gi.sound(ent, CHAN_ITEM, gi.soundindex("items/damage.wav"), 1, ATTN_NORM, 0); +} + +//====================================================================== + +qboolean Pickup_Key (edict_t *ent, edict_t *other) +{ + // JOSEPH 26-JAN-99 + //ent->item->pickup_sound = "world/pickups/keys.wav"; + // END JOSEPH + + // Rafael no coop + if (coop->value) + { + if (strcmp(ent->classname, "key_fuse") == 0) + { + if (other->client->pers.power_cubes & ((ent->spawnflags & 0x0000ff00)>> 8)) + return false; + other->client->pers.inventory[ITEM_INDEX(ent->item)]++; + other->client->pers.power_cubes |= ((ent->spawnflags & 0x0000ff00) >> 8); + } + else + { + if (other->client->pers.inventory[ITEM_INDEX(ent->item)]) + return false; + other->client->pers.inventory[ITEM_INDEX(ent->item)] = 1; + } + return true; + } + + other->client->pers.inventory[ITEM_INDEX(ent->item)]++; + return true; +} + +//====================================================================== + +qboolean Add_Ammo (edict_t *ent, gitem_t *item, int count) +{ + int index; + int max; + + if (!ent->client) + return false; + + if (item->tag == AMMO_BULLETS) + max = ent->client->pers.max_bullets; + else if (item->tag == AMMO_SHELLS) + max = ent->client->pers.max_shells; + else if (item->tag == AMMO_ROCKETS) + max = ent->client->pers.max_rockets; + else if (item->tag == AMMO_GRENADES) + max = ent->client->pers.max_grenades; + else if (item->tag == AMMO_CELLS) + max = ent->client->pers.max_cells; + else if (item->tag == AMMO_SLUGS) + max = ent->client->pers.max_slugs; + else if (item->tag == AMMO_MAGSLUG) + max = ent->client->pers.max_magslug; + else if (item->tag == AMMO_TRAP) + max = ent->client->pers.max_trap; + else + return false; + + index = ITEM_INDEX(item); + + if (ent->client->pers.inventory[index] == max) + return false; + + ent->client->pers.inventory[index] += count; + + if (ent->client->pers.inventory[index] > max) + ent->client->pers.inventory[index] = max; + + return true; +} + +qboolean Pickup_Ammo_Cylinder (edict_t *ent, edict_t *other) +{ + gitem_t *it; + int index; + + it = FindItem("Bullets"); + if (it) + { + index = ITEM_INDEX(it); + if (other->client->pers.inventory[index] >= other->client->pers.max_bullets) + return false; + + other->client->pers.inventory[index] += ent->item->quantity; // get the cylinder quantity + if (other->client->pers.inventory[index] > other->client->pers.max_bullets) + other->client->pers.inventory[index] = other->client->pers.max_bullets; + } + + if (!(ent->spawnflags & (DROPPED_ITEM | DROPPED_PLAYER_ITEM)) && (deathmatch->value)) + SetRespawn (ent, 30); + + return true; +} + +qboolean Pickup_Ammo (edict_t *ent, edict_t *other) +{ + int oldcount; + int count; + qboolean weapon; + + weapon = (ent->item->flags & IT_WEAPON); + if ( (weapon) && deathmatch->value && ( (int)dmflags->value & DF_INFINITE_AMMO ) ) + count = 1000; + else if (ent->count) + count = ent->count; + else + count = ent->item->quantity; + + oldcount = other->client->pers.inventory[ITEM_INDEX(ent->item)]; + + if (!Add_Ammo (other, ent->item, count)) + return false; + + if (weapon && !oldcount) + { + if (other->client->pers.weapon != ent->item && ( !deathmatch->value || other->client->pers.weapon == FindItem("blaster") ) ) + other->client->newweapon = ent->item; + } + + if (!(ent->spawnflags & (DROPPED_ITEM | DROPPED_PLAYER_ITEM)) && (deathmatch->value)) + SetRespawn (ent, 30); + return true; +} + +void Drop_Ammo (edict_t *ent, gitem_t *item) +{ + edict_t *dropped; + int index; + + index = ITEM_INDEX(item); + + if (ent->client->pers.inventory[index] <= 0) + return; + + dropped = Drop_Item (ent, item); + if (ent->client->pers.inventory[index] >= item->quantity) + dropped->count = item->quantity; + else + dropped->count = ent->client->pers.inventory[index]; + + if (ent->client->pers.weapon && + ent->client->pers.weapon->tag == AMMO_GRENADES && + item->tag == AMMO_GRENADES && + ent->client->pers.inventory[index] - dropped->count <= 0) { + gi.cprintf (ent, PRINT_HIGH, "Can't drop current weapon\n"); + G_FreeEdict(dropped); + return; + } + + ent->client->pers.inventory[index] -= dropped->count; + ValidateSelectedItem (ent); +} + + +// JOSEPH 18-MAR-99 +qboolean Pickup_Cash (edict_t *ent, edict_t *other) +{ + + if (!ent->currentcash) + // gi.cprintf (other, PRINT_HIGH, "%i dollars found\n", ent->currentcash); + //else + gi.cprintf (other, PRINT_HIGH, "Counterfeit money! 0 dollars found\n", ent->currentcash); + + + if (ent->currentcash > 0) + { + if (teamplay->value && (teamplay_mode == TM_GRABDALOOT)) + { + if (other->client->pers.currentcash > MAX_CASH_PLAYER) + return false; + } + + other->client->ps.stats[STAT_CASH_PICKUP] = ent->currentcash; + other->client->pers.currentcash += ent->currentcash; + + if (teamplay->value && (teamplay_mode == TM_GRABDALOOT)) + { + if (other->client->pers.currentcash > MAX_CASH_PLAYER) + other->client->pers.currentcash = MAX_CASH_PLAYER; + } + } + else // negative money is bagged money (used in Teamplay) + { + if (teamplay->value && (teamplay_mode == TM_GRABDALOOT)) + { + if (other->client->pers.bagcash > MAX_BAGCASH_PLAYER) + other->client->pers.bagcash = MAX_BAGCASH_PLAYER; + } + + ent->currentcash = -ent->currentcash; + other->client->pers.bagcash += ent->currentcash; + + if (teamplay->value && (teamplay_mode == TM_GRABDALOOT)) + { + if (other->client->pers.bagcash > MAX_BAGCASH_PLAYER) + { + edict_t *cash; + + // leave the left-over money here in a smaller bag + if ((other->client->pers.bagcash - MAX_BAGCASH_PLAYER) > 100) + cash = SpawnTheWeapon( other, "item_cashbaglarge" ); + else + cash = SpawnTheWeapon( other, "item_cashbagsmall" ); + + cash->currentcash = -(other->client->pers.bagcash - MAX_BAGCASH_PLAYER); + + other->client->pers.bagcash = MAX_BAGCASH_PLAYER; + } + } + } + + // flash the screen green + other->client->bonus_alpha_color = 2; + + return true; +} +// END JOSEPH + +//====================================================================== + +void MegaHealth_think (edict_t *self) +{ + if (self->owner->health > self->owner->max_health) + { + self->nextthink = level.time + 1; + self->owner->health -= 1; + return; + } + + if (!(self->spawnflags & DROPPED_ITEM) && (deathmatch->value)) + SetRespawn (self, 20); + else + G_FreeEdict (self); +} + +qboolean Pickup_Pistol_Mods (edict_t *ent, edict_t *other) +{ + + if (ent->count == 1) + { + other->client->pers.pistol_mods |= WEAPON_MOD_ROF; + //gi.dprintf ("Pistol Mod: Faster ROF\n"); + } + else if (ent->count == 2) + { + other->client->pers.pistol_mods |= WEAPON_MOD_RELOAD; + //gi.dprintf ("Pistol Mod: Faster Reload\n"); + } + else if (ent->count == 3) + { + other->client->pers.pistol_mods |= WEAPON_MOD_DAMAGE; + //gi.dprintf ("Pistol Mod: Damage x 2\n"); + + } + else if (ent->count == 4) + { + other->client->pers.pistol_mods |= WEAPON_MOD_COOLING_JACKET; + other->client->pers.hmg_shots = 30; + } + else + { + gi.dprintf ("error in pickup pistol mods\n"); + return false; + } + + if (ent->count <= 3) + { + if (other->client->pers.weapon == FindItem ("SPistol") || other->client->pers.weapon == FindItem("Pistol")) + { + other->client->newweapon = other->client->pers.weapon; + ChangeWeapon (other); + } + } + else if (ent->count == 4) + { + if (other->client->pers.weapon == FindItem ("Heavy machinegun") ) + { + other->client->newweapon = other->client->pers.weapon; + ChangeWeapon (other); + } + } + + // ent->item->pickup_sound = "items/pistolmod1.wav"; + + if (!(ent->spawnflags & DROPPED_ITEM) && (deathmatch->value)) + SetRespawn (ent, 30); + + return true; +} + +qboolean Pickup_Health (edict_t *ent, edict_t *other) +{ + if (!(ent->style & HEALTH_IGNORE_MAX)) + if (other->health >= other->max_health) + return false; + + other->health += ent->count; + + if (ent->count == 2) + ent->item->pickup_sound = "items/s_health.wav"; + else if (ent->count == 10) + ent->item->pickup_sound = "items/n_health.wav"; + else if (ent->count == 25) + ent->item->pickup_sound = "items/l_health.wav"; + else // (ent->count == 100) + ent->item->pickup_sound = "items/m_health.wav"; + + if (!(ent->style & HEALTH_IGNORE_MAX)) + { + if (other->health > other->max_health) + other->health = other->max_health; + } + + if (ent->style & HEALTH_TIMED) + { + ent->think = MegaHealth_think; + ent->nextthink = level.time + 5; + ent->owner = other; + ent->flags |= FL_RESPAWN; + ent->svflags |= SVF_NOCLIENT; + ent->solid = SOLID_NOT; + } + else + { + if (!(ent->spawnflags & DROPPED_ITEM) && (deathmatch->value)) + SetRespawn (ent, 30); + } + + return true; +} + +//====================================================================== + +int ArmorIndex (edict_t *ent) +{ + // JOSEPH 1-APR-99 + /*if (!ent->client) + return 0; + + if (ent->client->pers.inventory[jacket_armor_index] > 0) + return jacket_armor_index; + + if (ent->client->pers.inventory[combat_armor_index] > 0) + return combat_armor_index; + + if (ent->client->pers.inventory[body_armor_index] > 0) + return body_armor_index;*/ + // END JOSEPH + + return 0; +} + +// JOSEPH 2-APR-99 +qboolean Pickup_Armor (edict_t *ent, edict_t *other) +{ + if (strcmp(ent->classname, "item_armor_helmet") == 0) + { + gitem_t *itemh = FindItem("Helmet Armor"); + gitem_t *itemhh = FindItem("Helmet Armor Heavy"); + + if ((other->client->pers.inventory[ITEM_INDEX(itemh)] == 100) || + (other->client->pers.inventory[ITEM_INDEX(itemhh)] == 100)) + return false; + + if (other->client->pers.inventory[ITEM_INDEX(itemhh)]) + { + other->client->pers.inventory[ITEM_INDEX(itemhh)] += 25; + if (other->client->pers.inventory[ITEM_INDEX(itemhh)] > 100) + other->client->pers.inventory[ITEM_INDEX(itemhh)] = 100; + } + else + { + other->client->pers.inventory[ITEM_INDEX(itemh)] += 50; + if (other->client->pers.inventory[ITEM_INDEX(itemh)] > 100) + other->client->pers.inventory[ITEM_INDEX(itemh)] = 100; + } + } + else if (strcmp(ent->classname, "item_armor_jacket") == 0) + { + gitem_t *itemj = FindItem("Jacket Armor"); + gitem_t *itemjh = FindItem("Jacket Armor Heavy"); + + if ((other->client->pers.inventory[ITEM_INDEX(itemj)] == 100) || + (other->client->pers.inventory[ITEM_INDEX(itemjh)] == 100)) + return false; + + if (other->client->pers.inventory[ITEM_INDEX(itemjh)]) + { + other->client->pers.inventory[ITEM_INDEX(itemjh)] += 25; + if (other->client->pers.inventory[ITEM_INDEX(itemjh)] > 100) + other->client->pers.inventory[ITEM_INDEX(itemjh)] = 100; + } + else + { + other->client->pers.inventory[ITEM_INDEX(itemj)] += 50; + if (other->client->pers.inventory[ITEM_INDEX(itemj)] > 100) + other->client->pers.inventory[ITEM_INDEX(itemj)] = 100; + } + } + else if (strcmp(ent->classname, "item_armor_legs") == 0) + { + gitem_t *iteml = FindItem("Legs Armor"); + gitem_t *itemlh = FindItem("Legs Armor Heavy"); + + if ((other->client->pers.inventory[ITEM_INDEX(iteml)] == 100) || + (other->client->pers.inventory[ITEM_INDEX(itemlh)] == 100)) + return false; + + if (other->client->pers.inventory[ITEM_INDEX(itemlh)]) + { + other->client->pers.inventory[ITEM_INDEX(itemlh)] += 25; + if (other->client->pers.inventory[ITEM_INDEX(itemlh)] > 100) + other->client->pers.inventory[ITEM_INDEX(itemlh)] = 100; + } + else + { + other->client->pers.inventory[ITEM_INDEX(iteml)] += 50; + if (other->client->pers.inventory[ITEM_INDEX(iteml)] > 100) + other->client->pers.inventory[ITEM_INDEX(iteml)] = 100; + } + } + else if (strcmp(ent->classname, "item_armor_helmet_heavy") == 0) + { + gitem_t *itemh = FindItem("Helmet Armor"); + gitem_t *itemhh = FindItem("Helmet Armor Heavy"); + + if (other->client->pers.inventory[ITEM_INDEX(itemhh)] == 100) + return false; + + if (other->client->pers.inventory[ITEM_INDEX(itemh)]) + other->client->pers.inventory[ITEM_INDEX(itemh)] = 0; + + other->client->pers.inventory[ITEM_INDEX(itemhh)] = 100; + } + else if (strcmp(ent->classname, "item_armor_jacket_heavy") == 0) + { + gitem_t *itemj = FindItem("Jacket Armor"); + gitem_t *itemjh = FindItem("Jacket Armor Heavy"); + + if (other->client->pers.inventory[ITEM_INDEX(itemjh)] == 100) + return false; + + if (other->client->pers.inventory[ITEM_INDEX(itemj)]) + other->client->pers.inventory[ITEM_INDEX(itemj)] = 0; + + other->client->pers.inventory[ITEM_INDEX(itemjh)] = 100; + } + else if (strcmp(ent->classname, "item_armor_legs_heavy") == 0) + { + gitem_t *iteml = FindItem("Legs Armor"); + gitem_t *itemlh = FindItem("Legs Armor Heavy"); + + if (other->client->pers.inventory[ITEM_INDEX(itemlh)] == 100) + return false; + + if (other->client->pers.inventory[ITEM_INDEX(iteml)]) + other->client->pers.inventory[ITEM_INDEX(iteml)] = 0; + + other->client->pers.inventory[ITEM_INDEX(itemlh)] = 100; + } + + + if (!(ent->spawnflags & DROPPED_ITEM) && (deathmatch->value)) + SetRespawn (ent, 45); // Ridah, armor shouldn't respawn so often + +/* int old_armor_index; + gitem_armor_t *oldinfo; + gitem_armor_t *newinfo; + int newcount; + float salvage; + int salvagecount; + + // get info on new armor + newinfo = (gitem_armor_t *)ent->item->info; + + old_armor_index = ArmorIndex (other); + + // handle armor shards specially + if (ent->item->tag == ARMOR_SHARD) + { + if (!old_armor_index) + other->client->pers.inventory[jacket_armor_index] = 2; + else + other->client->pers.inventory[old_armor_index] += 2; + } + + // if player has no armor, just use it + else if (!old_armor_index) + { + other->client->pers.inventory[ITEM_INDEX(ent->item)] = newinfo->base_count; + } + + // use the better armor + else + { + // get info on old armor + if (old_armor_index == jacket_armor_index) + oldinfo = &jacketarmor_info; + else if (old_armor_index == combat_armor_index) + oldinfo = &combatarmor_info; + else // (old_armor_index == body_armor_index) + oldinfo = &bodyarmor_info; + + if (newinfo->normal_protection > oldinfo->normal_protection) + { + // calc new armor values + salvage = oldinfo->normal_protection / newinfo->normal_protection; + salvagecount = salvage * other->client->pers.inventory[old_armor_index]; + newcount = newinfo->base_count + salvagecount; + if (newcount > newinfo->max_count) + newcount = newinfo->max_count; + + // zero count of old armor so it goes away + other->client->pers.inventory[old_armor_index] = 0; + + // change armor to new item with computed value + other->client->pers.inventory[ITEM_INDEX(ent->item)] = newcount; + } + else + { + // calc new armor values + salvage = newinfo->normal_protection / oldinfo->normal_protection; + salvagecount = salvage * newinfo->base_count; + newcount = other->client->pers.inventory[old_armor_index] + salvagecount; + if (newcount > oldinfo->max_count) + newcount = oldinfo->max_count; + + // if we're already maxed out then we don't need the new armor + if (other->client->pers.inventory[old_armor_index] >= newcount) + return false; + + // update current armor value + other->client->pers.inventory[old_armor_index] = newcount; + } + } + + if (!(ent->spawnflags & DROPPED_ITEM) && (deathmatch->value)) + SetRespawn (ent, 20);*/ + + return true; +} +// END JOSEPH + +//====================================================================== + +int PowerArmorType (edict_t *ent) +{ + if (!ent->client) + return POWER_ARMOR_NONE; + + if (!(ent->flags & FL_POWER_ARMOR)) + return POWER_ARMOR_NONE; + + if (ent->client->pers.inventory[power_shield_index] > 0) + return POWER_ARMOR_SHIELD; + + if (ent->client->pers.inventory[power_screen_index] > 0) + return POWER_ARMOR_SCREEN; + + return POWER_ARMOR_NONE; +} + +void Use_PowerArmor (edict_t *ent, gitem_t *item) +{ + int index; + + if (ent->flags & FL_POWER_ARMOR) + { + ent->flags &= ~FL_POWER_ARMOR; + gi.sound(ent, CHAN_AUTO, gi.soundindex("misc/power2.wav"), 1, ATTN_NORM, 0); + } + else + { + index = ITEM_INDEX(FindItem("gas")); + if (!ent->client->pers.inventory[index]) + { + gi.cprintf (ent, PRINT_HIGH, "No cells for power armor.\n"); + return; + } + ent->flags |= FL_POWER_ARMOR; + gi.sound(ent, CHAN_AUTO, gi.soundindex("misc/power1.wav"), 1, ATTN_NORM, 0); + } +} + +qboolean Pickup_PowerArmor (edict_t *ent, edict_t *other) +{ + int quantity; + + quantity = other->client->pers.inventory[ITEM_INDEX(ent->item)]; + + other->client->pers.inventory[ITEM_INDEX(ent->item)]++; + + if (deathmatch->value) + { + if (!(ent->spawnflags & DROPPED_ITEM) ) + SetRespawn (ent, ent->item->quantity); + // auto-use for DM only if we didn't already have one + if (!quantity) + ent->item->use (other, ent->item); + } + + return true; +} + +void Drop_PowerArmor (edict_t *ent, gitem_t *item) +{ + if ((ent->flags & FL_POWER_ARMOR) && (ent->client->pers.inventory[ITEM_INDEX(item)] == 1)) + Use_PowerArmor (ent, item); + Drop_General (ent, item); +} + +//====================================================================== + +void Use_JetPack (edict_t *ent, gitem_t *item) +{ + if (ent->flags & FL_JETPACK) + { + ent->flags &= ~FL_JETPACK; + + gi.dprintf( "SOUND TODO: JetPack disabled\n" ); + gi.sound(ent, CHAN_AUTO, gi.soundindex("misc/jetpack_off.wav"), 1, ATTN_NORM, 0); + } + else + { + ent->flags |= FL_JETPACK; + + gi.dprintf( "SOUND TODO: JetPack enabled\n" ); + gi.sound(ent, CHAN_AUTO, gi.soundindex("misc/jetpack_on.wav"), 1, ATTN_NORM, 0); + } +} + +qboolean Pickup_JetPack (edict_t *ent, edict_t *other) +{ + int quantity; + + quantity = other->client->pers.inventory[ITEM_INDEX(ent->item)]; + + other->client->pers.inventory[ITEM_INDEX(ent->item)]++; + + if (deathmatch->value) + { + if (!(ent->spawnflags & DROPPED_ITEM) ) + SetRespawn (ent, ent->item->quantity); + // auto-use for DM only if we didn't already have one + if (!quantity) + ent->item->use (other, ent->item); + } + + other->client->jetpack_power = 2.5; + + return true; +} + +// JOSEPH 12-MAR-99-B +qboolean Pickup_Health_Large (edict_t *ent, edict_t *other) +{ + + if (other->health >= other->max_health) + return false; + + other->health += 25; + + if (other->health > other->max_health) + other->health = other->max_health; + + if (!(ent->spawnflags & DROPPED_ITEM) && (deathmatch->value)) + SetRespawn (ent, 30); + + return true; +} + +qboolean Pickup_Health_Small (edict_t *ent, edict_t *other) +{ + if (other->health >= other->max_health) + return false; + + other->health += 15; + + if (other->health > other->max_health) + other->health = other->max_health; + + if (!(ent->spawnflags & DROPPED_ITEM) && (deathmatch->value)) + SetRespawn (ent, 30); + + return true; +} +// END JOSEPH + + +//====================================================================== + +/* +=============== +Touch_Item +=============== +*/ +void Touch_Item (edict_t *ent, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + qboolean taken; + + if (!(other->client)) + return; + if (other->health < 1) + return; // dead people can't pickup + if (!ent->item->pickup) + return; // not a grabbable item? + + taken = ent->item->pickup(ent, other); + + // Do Episode specific handling + EP_ItemPickup( ent, other ); + + + if (taken) + { + // flash the screen + other->client->bonus_alpha = 0.25; + + // JOSEPH 2-MAR-99 + if (!Q_stricmp(ent->item->pickup_name, "Pistol_Mods")) + { + if (ent->count == 1) + { + ent->item->icon = "/pics/h_pistol_rof.tga"; + } + else if (ent->count == 2) + { + ent->item->icon = "/pics/h_pistol_rl.tga"; + } + else if (ent->count == 3) + { + ent->item->icon = "/pics/h_pistol_mag.tga"; + } + } + // END JOSEPH + + // show icon and name on status bar + other->client->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(ent->item->icon); + other->client->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS+ITEM_INDEX(ent->item); + // JOSEPH 25-JAN-99 + other->client->pickup_msg_time = level.time + 5.5; + // END JOSEPH + // change selected item + if (ent->item->use) + other->client->pers.selected_item = other->client->ps.stats[STAT_SELECTED_ITEM] = ITEM_INDEX(ent->item); + + gi.sound(other, CHAN_ITEM, gi.soundindex(ent->item->pickup_sound), 1, ATTN_NORM, 0); + } + + if (!(ent->spawnflags & ITEM_TARGETS_USED)) + { + G_UseTargets (ent, other); + ent->spawnflags |= ITEM_TARGETS_USED; + } + + if (!taken) + return; + + if (!((coop->value) && (ent->item->flags & IT_STAY_COOP)) || (ent->spawnflags & (DROPPED_ITEM | DROPPED_PLAYER_ITEM))) + { + if (ent->flags & FL_RESPAWN) + ent->flags &= ~FL_RESPAWN; + else + G_FreeEdict (ent); + } + +} + +//====================================================================== + +static void drop_temp_touch (edict_t *ent, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + if (other == ent->owner) + return; + + Touch_Item (ent, other, plane, surf); +} + +static void drop_make_touchable (edict_t *ent) +{ + ent->touch = Touch_Item; + if (deathmatch->value) + { + ent->nextthink = level.time + 30; + ent->think = G_FreeEdict; + } + // Xatrix/Ridah/Navigator/17-mar-1998 + ent->nav_data.flags |= ND_STATIC; + // END: Xatrix/Ridah/Navigator/17-mar-1998 + +} + +edict_t *Drop_Item (edict_t *ent, gitem_t *item) +{ + edict_t *dropped; + vec3_t forward, right; + vec3_t offset; + + dropped = G_Spawn(); + + dropped->classname = item->classname; + dropped->item = item; + dropped->spawnflags = DROPPED_ITEM; + dropped->s.effects = item->world_model_flags; + dropped->s.renderfx = RF_GLOW; + // JOSEPH 15-MAR-99 + dropped->s.renderfx2 = RF2_NOSHADOW; + // END JOSEPH + VectorSet (dropped->mins, -15, -15, -15); + VectorSet (dropped->maxs, 15, 15, 15); + gi.setmodel (dropped, dropped->item->world_model); + dropped->solid = SOLID_TRIGGER; + dropped->movetype = MOVETYPE_TOSS; + dropped->touch = drop_temp_touch; + dropped->owner = ent; + + if (ent->client) + { + trace_t trace; + + AngleVectors (ent->client->v_angle, forward, right, NULL); + VectorSet(offset, 24, 0, -16); + G_ProjectSource (ent->s.origin, offset, forward, right, dropped->s.origin); + trace = gi.trace (ent->s.origin, dropped->mins, dropped->maxs, + dropped->s.origin, ent, CONTENTS_SOLID); + VectorCopy (trace.endpos, dropped->s.origin); + } + else + { + AngleVectors (ent->s.angles, forward, right, NULL); + VectorCopy (ent->s.origin, dropped->s.origin); + } + + // JOSEPH 28-APR-99 + if (!(ent->svflags & SVF_PROP)) + { + VectorScale (forward, 100, dropped->velocity); + dropped->velocity[2] = 300; + } + else + { + dropped->s.origin[2] += 8; + dropped->velocity[2] = 200; + } + // END JOSEPH + + dropped->think = drop_make_touchable; + dropped->nextthink = level.time + 1; + + gi.linkentity (dropped); + + return dropped; +} + +void Use_Item (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->svflags &= ~SVF_NOCLIENT; + ent->use = NULL; + + if (ent->spawnflags & ITEM_NO_TOUCH) + { + ent->solid = SOLID_BBOX; + ent->touch = NULL; + } + else + { + ent->solid = SOLID_TRIGGER; + ent->touch = Touch_Item; + } + + gi.linkentity (ent); +} + +//====================================================================== + +// JOSEPH 7-DEC-98 +edict_t *Shot_Drop_Item (edict_t *ent, gitem_t *item, char* modeloverride) +{ + edict_t *dropped; + vec3_t forward, right; + vec3_t offset; + + dropped = G_Spawn(); + + dropped->classname = item->classname; + dropped->item = item; + dropped->spawnflags = DROPPED_ITEM; + dropped->s.effects = item->world_model_flags; + dropped->s.renderfx = RF_GLOW; + VectorSet (dropped->mins, -15, -15, -15); + VectorSet (dropped->maxs, 15, 15, 15); + + if (modeloverride) + { + gi.setmodel (dropped, modeloverride); + } + else + { + gi.setmodel (dropped, dropped->item->world_model); + } + + dropped->solid = SOLID_TRIGGER; + dropped->movetype = MOVETYPE_TOSS; + dropped->touch = drop_temp_touch; + dropped->owner = ent; + + if (ent->client) + { + trace_t trace; + + AngleVectors (ent->client->v_angle, forward, right, NULL); + VectorSet(offset, 24, 0, -16); + G_ProjectSource (ent->s.origin, offset, forward, right, dropped->s.origin); + trace = gi.trace (ent->s.origin, dropped->mins, dropped->maxs, + dropped->s.origin, ent, CONTENTS_SOLID); + VectorCopy (trace.endpos, dropped->s.origin); + } + else + { + AngleVectors (ent->s.angles, forward, right, NULL); + VectorCopy (ent->s.origin, dropped->s.origin); + } + + VectorScale (forward, 250, dropped->velocity); + + if ((rand()&1) == 1) + { + VectorScale (right, 150, dropped->velocity); + } + else + { + VectorScale (right, -150, dropped->velocity); + } + + dropped->velocity[2] = 350; + + dropped->think = drop_make_touchable; + dropped->nextthink = level.time + 1; + + gi.linkentity (dropped); + + return dropped; +} +// END JOSEPH + +/* +================ +droptofloor +================ +*/ +void droptofloor (edict_t *ent) +{ + trace_t tr; + vec3_t dest; + float *v; + + v = tv(-15,-15,-15); + VectorCopy (v, ent->mins); + v = tv(15,15,15); + VectorCopy (v, ent->maxs); + + if (ent->model) + gi.setmodel (ent, ent->model); + else + gi.setmodel (ent, ent->item->world_model); + ent->solid = SOLID_TRIGGER; + ent->movetype = MOVETYPE_TOSS; + ent->touch = Touch_Item; + + v = tv(0,0,-128); + VectorAdd (ent->s.origin, v, dest); + + tr = gi.trace (ent->s.origin, ent->mins, ent->maxs, dest, ent, MASK_SOLID); + if (tr.startsolid) + { + // RAFAEL + if (strcmp (ent->classname, "foodcube") == 0) + { + VectorCopy (ent->s.origin, tr.endpos); + ent->velocity[2] = 0; + } + // JOSEPH 7-MAY-99 + else if (strcmp(ent->classname, "key_fuse") == 0) + { + v = tv(-7,-7,-16); + VectorCopy (v, ent->mins); + v = tv(7, 7, 16); + VectorCopy (v, ent->maxs); + ent->movetype = MOVETYPE_NONE; + ent->velocity[2] = 0; + ent->s.origin[2] += 1; + goto SkipFall; + } + // END JOSEPH + else + { + gi.dprintf ("droptofloor: %s startsolid at %s\n", ent->classname, vtos(ent->s.origin)); + G_FreeEdict (ent); + return; + } + } + + VectorCopy (tr.endpos, ent->s.origin); + +// JOSEPH 7-MAY-99 +SkipFall: +// END JOSEPH + + if (ent->team) + { + ent->flags &= ~FL_TEAMSLAVE; + ent->chain = ent->teamchain; + ent->teamchain = NULL; + + ent->svflags |= SVF_NOCLIENT; + ent->solid = SOLID_NOT; + if (ent == ent->teammaster) + { + ent->nextthink = level.time + FRAMETIME; + ent->think = DoRespawn; + } + } + + if (ent->spawnflags & ITEM_NO_TOUCH) + { + ent->solid = SOLID_BBOX; + ent->touch = NULL; + ent->s.effects &= ~EF_ROTATE; + ent->s.renderfx &= ~RF_GLOW; + } + + if (ent->spawnflags & ITEM_TRIGGER_SPAWN) + { + ent->svflags |= SVF_NOCLIENT; + ent->solid = SOLID_NOT; + ent->use = Use_Item; + } + + gi.linkentity (ent); +} + + +/* +=============== +PrecacheItem + +Precaches all data needed for a given item. +This will be called for each item spawned in a level, +and for each item in each client's inventory. +=============== +*/ +void PrecacheItem (gitem_t *it) +{ + char *s, *start; + char data[MAX_QPATH]; + int len; + gitem_t *ammo; + + if (!it) + return; + + if (it->pickup_sound) + gi.soundindex (it->pickup_sound); + if (it->world_model) + gi.modelindex (it->world_model); + if (it->view_model) + gi.modelindex (it->view_model); + if (it->icon) + gi.imageindex (it->icon); + + // parse everything for its ammo + if (it->ammo && it->ammo[0]) + { + ammo = FindItem (it->ammo); + if (ammo != it) + PrecacheItem (ammo); + } + + // parse the space seperated precache string for other items + s = it->precaches; + if (!s || !s[0]) + return; + + while (*s) + { + start = s; + while (*s && *s != ' ') + s++; + + len = s-start; + if (len >= MAX_QPATH || len < 5) + gi.error ("PrecacheItem: %s has bad precache string", it->classname); + memcpy (data, start, len); + data[len] = 0; + if (*s) + s++; + + // determine type based on extension + if (!strcmp(data+len-3, "md2")) + gi.modelindex (data); + + // RAFAEL + // weapon mdx + else if (!strcmp (data+len-3, "mdx")) + { + gi.modelindex (data); + } + else if (!strcmp(data+len-3, "sp2")) + gi.modelindex (data); + else if (!strcmp(data+len-3, "wav")) + gi.soundindex (data); + if (!strcmp(data+len-3, "pcx")) + gi.imageindex (data); + } +} + +/* +============ +SpawnItem + +Sets the clipping size and plants the object on the floor. + +Items can't be immediately dropped to floor, because they might +be on an entity that hasn't spawned yet. +============ +*/ +void SpawnItem (edict_t *ent, gitem_t *item) +{ + if (!item) + return; + + PrecacheItem (item); + + if (ent->spawnflags) + { + if (strcmp(ent->classname, "key_fuse") != 0) + { + ent->spawnflags = 0; + gi.dprintf("%s at %s has invalid spawnflags set\n", ent->classname, vtos(ent->s.origin)); + } + } + + // some items will be prevented in deathmatch + if (deathmatch->value) + { + if ( (int)dmflags->value & DF_NO_ARMOR ) + { + if (item->pickup == Pickup_Armor || item->pickup == Pickup_PowerArmor) + { + G_FreeEdict (ent); + return; + } + } +/* + if ( (int)dmflags->value & DF_NO_ITEMS ) + { + if (item->pickup == Pickup_Powerup) + { + G_FreeEdict (ent); + return; + } + } +*/ + if ( (int)dmflags->value & DF_NO_HEALTH ) + { + if (item->pickup == Pickup_Health || item->pickup == Pickup_Adrenaline || item->pickup == Pickup_AncientHead + || item->pickup == Pickup_Health_Large || item->pickup == Pickup_Health_Small) + { + G_FreeEdict (ent); + return; + } + } + if ( (int)dmflags->value & DF_INFINITE_AMMO && deathmatch->value ) + { + if ( (item->flags == IT_AMMO) || (strcmp(ent->classname, "ammo_cylinder") == 0) ) + { + G_FreeEdict (ent); + return; + } + } + + // Ridah, realmode only has pistol, tommy and shotgun + if (deathmatch->value && dm_realmode->value && item->classname) + { + if ( (item->pickup == Pickup_Weapon) +// && (strstr(item->classname, "weapon") == item->classname) + && (item->ammo && strcmp(item->ammo, "Bullets") && strcmp(item->ammo, "Shells"))) + { + int y; + + y = ((int)item->classname[7]) % 3; + + // select another valid weapon to use here + if (y == 0) + { + item = FindItem("Shotgun"); + } + else if (y == 1) + { + item = FindItem("Tommygun"); + } + else + { + item = FindItem("Pistol_Mods"); + ent->model = "models/pu_icon/magmod/tris.md2"; + ent->count = 3; //magnum mod + } + + } + else if ( (item->pickup == Pickup_Ammo) + && ((item->tag != AMMO_BULLETS) && (item->tag != AMMO_SHELLS))) + { + // select another valid weapon to use here + if (((int)item->classname[5]) % 2) + { + item = FindItem("Bullets"); + } + else + { + item = FindItem("Shells"); + } + } + + + // no armor + if (item->classname && strstr(item->classname, "item_armor") == item->classname) + { + G_FreeEdict (ent); + return; + } +/* + // no health + if (strstr(item->classname, "item_health") == item->classname) + { + G_FreeEdict (ent); + return; + } +*/ + } + } + +// Ridah, no coop +/* + if (coop->value && (strcmp(ent->classname, "key_power_cube") == 0)) + { + ent->spawnflags |= (1 << (8 + level.power_cubes)); + level.power_cubes++; + } + + // don't let them drop items that stay in a coop game + if ((coop->value) && (item->flags & IT_STAY_COOP)) + { + item->drop = NULL; + } +*/ + // JOSEPH 22-JAN-99 + ent->item = item; + ent->nextthink = level.time + 2 * FRAMETIME; // items start after other solids + ent->think = droptofloor; + ent->s.effects = item->world_model_flags; + ent->s.renderfx = RF_GLOW; + ent->s.renderfx2 = RF2_NOSHADOW; + // END JOSEPH + + + if (!(strcmp(ent->classname, "item_lizzyhead"))) + { + int i; + memset(&(ent->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + ent->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/pu_icon/head/head.mdx"); + ent->s.num_parts++; + for (i=0; is.model_parts[PART_HEAD].baseskin = ent->s.model_parts[PART_HEAD].skinnum[i] = 0; + gi.GetObjectBounds( "models/pu_icon/head/head.mdx", &ent->s.model_parts[PART_HEAD] ); + } + else if (ent->model) + gi.modelindex (ent->model); + + // Xatrix/Ridah/Navigator/17-mar-1998 + ent->nav_data.flags |= ND_STATIC; + // END: Xatrix/Ridah/Navigator/17-mar-1998 + +} + +// JOSEPH 13-FEB-99 +void Use_Null (edict_t *ent, gitem_t *item) +{ + +} +// END JOSEPH + +//====================================================================== + +// JOSEPH 21-APR-99 +gitem_t itemlist[] = +{ + { + NULL + }, // leave index 0 alone + + // + // ARMOR + // + + +// JOSEPH 19-APR-99 +/*QUAKED item_armor_helmet (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/pu_icon/armor_head/armor_head.md2" +*/ + { + "item_armor_helmet", + Pickup_Armor, + NULL, + NULL, + NULL, + "world/pickups/generic.wav", + "models/pu_icon/armor_head/armor_head.md2", 0, + NULL, +/* icon */ "/pics/h_helmet_lt.tga", +/* pickup */ "Helmet Armor", +/* width */ 3, + 0, + NULL, + IT_ARMOR, + &bodyarmor_info, + ARMOR_COMBAT, +/* precache */ "" + }, + +/*QUAKED item_armor_jacket (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/pu_icon/armor/tris.md2" +*/ + { + "item_armor_jacket", + Pickup_Armor, + NULL, + NULL, + NULL, + "world/pickups/generic.wav", + "models/pu_icon/armor/tris.md2", 0, + NULL, +/* icon */ "/pics/h_chest_lt.tga", +/* pickup */ "Jacket Armor", +/* width */ 3, + 0, + NULL, + IT_ARMOR, + &combatarmor_info, + ARMOR_JACKET, +/* precache */ "" + }, + +/*QUAKED item_armor_legs (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/pu_icon/armor_lo/armor_lo.md2" +*/ + { + "item_armor_legs", + Pickup_Armor, + NULL, + NULL, + NULL, + "world/pickups/generic.wav", + "models/pu_icon/armor_lo/armor_lo.md2", 0, + NULL, +/* icon */ "/pics/h_pants_lt.tga", +/* pickup */ "Legs Armor", +/* width */ 3, + 0, + NULL, + IT_ARMOR, + &jacketarmor_info, + ARMOR_BODY, +/* precache */ "" + }, + + +/*QUAKED item_armor_helmet_heavy (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/pu_icon/armor_head/armor_head_hd.md2" +*/ + { + "item_armor_helmet_heavy", + Pickup_Armor, + NULL, + NULL, + NULL, + "world/pickups/generic.wav", + "models/pu_icon/armor_head/armor_head_hd.md2", 0, + NULL, +/* icon */ "/pics/h_helmet_hvy.tga", +/* pickup */ "Helmet Armor Heavy", +/* width */ 3, + 0, + NULL, + IT_ARMOR, + &bodyarmor_info, + ARMOR_COMBAT, +/* precache */ "" + }, + +/*QUAKED item_armor_jacket_heavy (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/pu_icon/armor/armorhdtop.md2" +*/ + { + "item_armor_jacket_heavy", + Pickup_Armor, + NULL, + NULL, + NULL, + "world/pickups/generic.wav", + "models/pu_icon/armor/armorhdtop.md2", 0, + NULL, +/* icon */ "/pics/h_chest_hvy.tga", +/* pickup */ "Jacket Armor Heavy", +/* width */ 3, + 0, + NULL, + IT_ARMOR, + &combatarmor_info, + ARMOR_JACKET, +/* precache */ "" + }, + +/*QUAKED item_armor_legs_heavy (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/pu_icon/armor_lo/armor_lo_hd.md2" +*/ + { + "item_armor_legs_heavy", + Pickup_Armor, + NULL, + NULL, + NULL, + "world/pickups/generic.wav", + "models/pu_icon/armor_lo/armor_lo_hd.md2", 0, + NULL, +/* icon */ "/pics/h_pants_hvy.tga", +/* pickup */ "Legs Armor Heavy", +/* width */ 3, + 0, + NULL, + IT_ARMOR, + &jacketarmor_info, + ARMOR_BODY, +/* precache */ "" + }, + + // + // WEAPONS + // + +/* weapon_blackjack (.3 .3 1) (-16 -16 -16) (16 16 16) +always owned, never in the world +*/ + { + "weapon_blackjack", + NULL, + Use_Weapon2, + NULL, + Weapon_Blackjack, + "misc/w_pkup.wav", + NULL, 0, + "models/weapons/blakjak/blakjak.mdx", +/* icon */ "h_pipe", +/* pickup */ "Pipe", + 0, + 0, + NULL, + IT_WEAPON|IT_STAY_COOP, + NULL, + 0, +/* precache */ "weapons/melee/swing.wav" + }, + +// JOSEPH 14-APR-99 +/*QUAKED weapon_crowbar (.3 .3 1) (-16 -16 -16) (16 16 16) + +model="models/weapons/g_crowbar/tris.md2" +*/ + { + "weapon_crowbar", + Pickup_Weapon, + Use_Weapon2, + Drop_Weapon, + Weapon_Crowbar, + "misc/w_pkup.wav", + "models/weapons/g_crowbar/tris.md2", EF_REFL, + "models/weapons/crowbar/crowbar.mdx", +/* icon */ "/pics/h_cbar.tga", +/* pickup */ "Crowbar", + 0, + 0, + NULL, + IT_WEAPON|IT_STAY_COOP, + NULL, + 0, +/* precache */ "weapons/melee/swing.wav" + }, +// END JOSEPH + +/*QUAKED weapon_pistol (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/weapons/g_pistol/tris.md2" +*/ + { + "weapon_pistol", + Pickup_Weapon, + Use_Weapon2, + Drop_Weapon, + Weapon_Pistol, + "misc/w_pkup.wav", + // note to Jason + // we need a pistol pickup icon + "models/weapons/g_pistol/tris.md2", EF_REFL, + "models/weapons/v_colt/pistol.mdx", +/* icon */ "/pics/h_pistol.tga", +/* pickup */ "Pistol", + 0, + 1, + "Bullets", + IT_WEAPON|IT_STAY_COOP, + NULL, + 0, +/* precache */ "" + }, + +/* weapon_pistol_s (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/weapons/silencer_mdx/pistol.mdx" +*/ + { + "weapon_spistol", + Pickup_Weapon, + Use_Weapon2, + Drop_Weapon, + Weapon_SPistol, + "misc/w_pkup.wav", + // note to Jason + // we need a pistol pickup icon + "models/weapons/silencer_mdx/pistol.mdx", EF_REFL, + "models/weapons/silencer_mdx/pistol.mdx", +/* icon */ "/pics/h_silencer.tga", +/* pickup */ "SPistol", + 0, + 1, + "Bullets", + IT_WEAPON|IT_STAY_COOP|IT_SILENCER, + NULL, + 0, +/* precache */ "weapons/pistol/silencer.wav weapons/pistol/silencerattatch.wav" + }, + +/*QUAKED weapon_shotgun (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/weapons/g_shotgun/tris.md2" +*/ + { + "weapon_shotgun", + Pickup_Weapon, + Use_Weapon, + Drop_Weapon, + Weapon_Shotgun, + "misc/w_pkup.wav", + "models/weapons/g_shotgun/tris.md2", EF_REFL, + "models/weapons/shotgun/shotgun.mdx", +/* icon */ "/pics/h_shotgun.tga", +/* pickup */ "Shotgun", + 0, + 1, + "Shells", + IT_WEAPON|IT_STAY_COOP, + NULL, + 0, +/* precache */ "weapons/shotgun/shotgf1b.wav weapons/shotgun/shotgr1b.wav" + }, + +/*QUAKED weapon_tommygun (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/weapons/g_tomgun/tris.md2" +*/ + { + "weapon_tommygun", + Pickup_Weapon, + Use_Weapon, + Drop_Weapon, + Weapon_Tommygun, + "misc/w_pkup.wav", + "models/weapons/g_tomgun/tris.md2", EF_REFL, + "models/weapons/v_tomgun/tomgun.mdx", +/* icon */ "/pics/h_tgun.tga", +/* pickup */ "Tommygun", + 0, + 1, + "Bullets", + IT_WEAPON|IT_STAY_COOP, + NULL, + 0, +/* precache */ "weapons/machinegun/machgf1b.wav" + }, + +// JOSEPH 16-APR-99 +/*QUAKED weapon_heavymachinegun (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/weapons/g_hmg/tris.md2" +*/ +{ + "weapon_heavymachinegun", + Pickup_Weapon, + Use_Weapon, + Drop_Weapon, + Weapon_Barmachinegun, + "misc/w_pkup.wav", + "models/weapons/g_hmg/tris.md2", EF_REFL, + "models/weapons/v_hmg/hmg.mdx", +/* icon */ "/pics/h_hmg.tga", +/* pickup */ "Heavy machinegun", + 0, + 1, + "308cal", + IT_WEAPON|IT_STAY_COOP, + NULL, + 0, +/* precache */ "" + }, +// END JOSEPH + +/*QUAKED weapon_grenadelauncher (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/weapons/g_grenade_launcher/tris.md2" +*/ + { + "weapon_grenadelauncher", + Pickup_Weapon, + Use_Weapon, + Drop_Weapon, + Weapon_GrenadeLauncher, + "misc/w_pkup.wav", + "models/weapons/g_grenade_launcher/tris.md2", EF_REFL, + "models/weapons/v_grenade_launcher/grenade_launcher.mdx", +/* icon */ "/pics/h_grenade_l.tga", +/* pickup */ "Grenade Launcher", + 0, + 1, + "Grenades", + IT_WEAPON|IT_STAY_COOP, + NULL, + 0, +/* precache */ "" + }, + +// JOSEPH 28-APR-99 +/*QUAKED weapon_bazooka (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/weapons/g_rocket_launcher/tris.md2" +*/ + { + "weapon_bazooka", + Pickup_Weapon, + Use_Weapon, + Drop_Weapon, + Weapon_RocketLauncher, + "misc/w_pkup.wav", + "models/weapons/g_rocket_launcher/tris.md2", EF_REFL, + "models/weapons/v_rocket_launcher/rlaunch.mdx", +/* icon */ "/pics/h_bazooka.tga", +/* pickup */ "Bazooka", + 0, + 1, + "Rockets", + IT_WEAPON|IT_STAY_COOP, + NULL, + 0, +/* precache */ "models/props/glass/glass2.md2" + }, +// END JOSEPH + +/*QUAKED weapon_flamethrower (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/pu_icon/flame_shell/tris.md2" +*/ + { + "weapon_flamethrower", + Pickup_Weapon, + Use_Weapon, + Drop_Weapon, + Weapon_FlameThrower, + "misc/w_pkup.wav", + //"models/weapons/g_shotg2/tris.md2", EF_ROTATE, + "models/pu_icon/flame_shell/tris.md2", EF_REFL, + "models/weapons/v_flamegun/flamegun.mdx", +/* icon */ "/pics/h_flamethrower.tga", +/* pickup */ "FlameThrower", + 0, + 2, + "Gas", + IT_WEAPON|IT_STAY_COOP, + NULL, + 0, +/* precache */ "" + }, +// END JOSEPH + +#if 0 +// JOSEPH 7-MAY-99 +// ENEMY WEAPONS + { + "weapon_shotgun_e", + Pickup_Weapon, + Use_Weapon, + Drop_Weapon, + Weapon_Shotgun, + "misc/w_pkup.wav", + "models/weapons/e_shtgun/tris.md2", EF_REFL, + "models/weapons/shotgun/shotgun.mdx", +/* icon */ "/pics/h_shotgun.tga", +/* pickup */ "Shotgun", + 0, + 1, + "Shells", + IT_WEAPON|IT_STAY_COOP, + NULL, + 0, +/* precache */ "weapons/shotgun/shotgf1b.wav weapons/shotgun/shotgr1b.wav" + }, + + { + "weapon_heavymachinegun_e", + Pickup_Weapon, + Use_Weapon, + Drop_Weapon, + Weapon_Barmachinegun, + "misc/w_pkup.wav", + "models/weapons/e_hmg/tris.md2", EF_REFL, + "models/weapons/v_hmg/hmg.mdx", +/* icon */ "/pics/h_hmg.tga", +/* pickup */ "Heavy machinegun", + 0, + 1, + "308cal", + IT_WEAPON|IT_STAY_COOP, + NULL, + 0, +/* precache */ "" + }, + + { + "weapon_bazooka_e", + Pickup_Weapon, + Use_Weapon, + Drop_Weapon, + Weapon_RocketLauncher, + "misc/w_pkup.wav", + "models/weapons/e_rocket_launcher/tris.md2", EF_REFL, + "models/weapons/v_rocket_launcher/rlaunch.mdx", +/* icon */ "/pics/h_bazooka.tga", +/* pickup */ "Bazooka", + 0, + 1, + "Rockets", + IT_WEAPON|IT_STAY_COOP, + NULL, + 0, +/* precache */ "models/props/glass/glass2.md2" + }, + + { + "weapon_flamethrower_e", + Pickup_Weapon, + Use_Weapon, + Drop_Weapon, + Weapon_FlameThrower, + "misc/w_pkup.wav", + "models/weapons/e_flamegun/tris.md2", EF_REFL, + "models/weapons/v_flamegun/flamegun.mdx", +/* icon */ "/pics/h_flamethrower.tga", +/* pickup */ "FlameThrower", + 0, + 2, + "Gas", + IT_WEAPON|IT_STAY_COOP, + NULL, + 0, +/* precache */ "" + }, + + { + "weapon_grenadelauncher_e", + Pickup_Weapon, + Use_Weapon, + Drop_Weapon, + Weapon_GrenadeLauncher, + "misc/w_pkup.wav", + "models/weapons/e_grenade_launcher/tris.md2", EF_REFL, + "models/weapons/v_grenade_launcher/grenade_launcher.mdx", +/* icon */ "/pics/h_grenade_l.tga", +/* pickup */ "Grenade Launcher", + 0, + 1, + "Grenades", + IT_WEAPON|IT_STAY_COOP, + NULL, + 0, +/* precache */ "" + }, + + { + "weapon_pistol_e", + Pickup_Weapon, + Use_Weapon2, + Drop_Weapon, + Weapon_Pistol, + "misc/w_pkup.wav", + "models/weapons/e_pistol/tris.md2", EF_REFL, + "models/weapons/v_colt/pistol.mdx", +/* icon */ "/pics/h_pistol.tga", +/* pickup */ "Pistol", + 0, + 1, + "Bullets", + IT_WEAPON|IT_STAY_COOP, + NULL, + 0, +/* precache */ "" + }, + + { + "weapon_tommygun_e", + Pickup_Weapon, + Use_Weapon, + Drop_Weapon, + Weapon_Tommygun, + "misc/w_pkup.wav", + "models/weapons/e_tomgun/tris.md2", EF_REFL, + "models/weapons/v_tomgun/tomgun.mdx", +/* icon */ "/pics/h_tgun.tga", +/* pickup */ "Tommygun", + 0, + 1, + "Bullets", + IT_WEAPON|IT_STAY_COOP, + NULL, + 0, +/* precache */ "weapons/machinegun/machgf1b.wav" + }, + // END JOSEPH +#endif + + // + // AMMO ITEMS + // + +/*QUAKED ammo_grenades (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/pu_icon/grenade/tris.md2" +*/ + { + "ammo_grenades", + Pickup_Ammo, + Use_Null, + Drop_Ammo, + NULL, + "world/pickups/ammo.wav", + "models/pu_icon/grenade/tris.md2", 0, + NULL, +/* icon */ "/pics/h_grenade.tga", +/* pickup */ "Grenades", +/* width */ 3, + 3, + NULL, + IT_AMMO, + NULL, + AMMO_GRENADES, +/* precache */ "" + }, + +/*QUAKED ammo_shells (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/pu_icon/shotgun_shell/tris.md2" +*/ + { + "ammo_shells", + Pickup_Ammo, + Use_Null, + Drop_Ammo, + NULL, + "world/pickups/ammo.wav", + "models/pu_icon/shotgun_shell/tris.md2", 0, + NULL, +/* icon */ "/pics/h_shots.tga", +/* pickup */ "Shells", +/* width */ 3, + 10, + NULL, + IT_AMMO, + NULL, + AMMO_SHELLS, +/* precache */ "" + }, + +// JOSEPH 3-MAR-99 +/*QUAKED ammo_bullets (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/pu_icon/pclip/tris.md2" +*/ + { + "ammo_bullets", + Pickup_Ammo, + Use_Null, + Drop_Ammo, + NULL, + "world/pickups/ammo.wav", + "models/pu_icon/pclip/tris.md2", 0, + NULL, +/* icon */ "/pics/h_bullet.tga", +/* pickup */ "Bullets", +/* width */ 3, + 20, + NULL, + IT_AMMO, + NULL, + AMMO_BULLETS, +/* precache */ "" + }, +// END JOSEPH + + +// JOSEPH 1-APR-99 +/*QUAKED ammo_rockets (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/pu_icon/rocket/tris.md2" +*/ + { + "ammo_rockets", + Pickup_Ammo, + Use_Null, + Drop_Ammo, + NULL, + "world/pickups/ammo.wav", + "models/pu_icon/rocket/tris.md2", 0, + NULL, +/* icon */ "/pics/h_missle.tga", +/* pickup */ "Rockets", +/* width */ 3, + 5, + NULL, + IT_AMMO, + NULL, + AMMO_ROCKETS, +/* precache */ "" + }, +// END JOSEPH + +// JOSEPH 28-APR-99 +/*QUAKED ammo_308 (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/pu_icon/hmgclip/tris.md2" +*/ + { + "ammo_308", + Pickup_Ammo, + Use_Null, + Drop_Ammo, + NULL, + "misc/w_pkup.wav", + "models/pu_icon/hmgclip/tris.md2", 0, + NULL, +/* icon */ "/pics/h_hmg_clip.tga", +/* pickup */ "308cal", +/* width */ 3, + 30, + NULL, + IT_AMMO, + NULL, + AMMO_SLUGS, +/* precache */ "" + }, +// END JOSEPH + +/*QUAKED ammo_cylinder (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/pu_icon/tgclip/tris.md2" +*/ + { + "ammo_cylinder", + Pickup_Ammo_Cylinder, + Use_Null, + Drop_Ammo, + NULL, + "world/pickups/ammo.wav", + "models/pu_icon/tgclip/tris.md2", 0, + NULL, +/* icon */ "/pics/h_tclip.tga", +/* pickup */ "Cylinder", +/* width */ 3, + 50, + NULL, + IT_AMMO|IT_NOCHEATS, + NULL, + AMMO_BULLETS, +/* precache */ "" + }, + +/*QUAKED ammo_flametank (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/pu_icon/flametank/tris.md2" +*/ + { + "ammo_flametank", + Pickup_Ammo, + Use_Null, + NULL, + NULL, + "world/pickups/ammo.wav", + "models/pu_icon/flametank/tris.md2", 0, + NULL, + "/pics/h_ftank.tga", + "Gas", + 2, + 50, + NULL, + IT_AMMO, + NULL, + AMMO_CELLS, +/* precache */ "" + }, + + // + // KINGPIN items + // + + +// JOSEPH 22-FEB-99 +/*QUAKED item_coil (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/pu_icon/coil/tris.md2" +*/ + { + "item_coil", + Pickup_Key, + Use_Null, + NULL, + NULL, + "world/pickups/coil.wav", + "models/pu_icon/coil/tris.md2", 0, + NULL, + "/pics/h_coil.tga", + "Coil", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, +// END JOSEPH + +// JOSEPH 5-JUN-99 +/*QUAKED item_lizzyhead (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/pu_icon/head/tris.md2" +*/ + { + "item_lizzyhead", + Pickup_Key, + Use_Null, + NULL, + NULL, + "world/pickups/lizzyhead.wav", + "models/pu_icon/head/head.mdx", 0, + NULL, + "/pics/h_lizzyhead.tga", + "Lizzy Head", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, +// END JOSEPH + +/*QUAKED item_cashroll (.3 .3 1) (-16 -16 -16) (16 16 16) +currentcash - set amount of cash in roll +model="models/pu_icon/cash/tris.md2" +*/ + { + "item_cashroll", + Pickup_Cash, + Use_Null, + NULL, + NULL, + "world/pickups/cash.wav", + "models/pu_icon/cash/tris.md2", 0, + NULL, + // JOSEPH 26-JAN-99-C + "/pics/hh_money.tga", + "Cash", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, + +// JOSEPH 2-MAR-99 +/*QUAKED item_cashbaglarge (.3 .3 1) (-16 -16 -16) (16 16 16) +currentcash - set amount of cash in the bag +model="models/pu_icon/money/money_lg.md2" +*/ + { + "item_cashbaglarge", + Pickup_Cash, + Use_Null, + NULL, + NULL, + "world/pickups/cash.wav", + "models/pu_icon/money/money_lg.md2", 0, + NULL, + // JOSEPH 26-JAN-99-C + "/pics/hh_money.tga", + "Large Cash Bag", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, + +/*QUAKED item_cashbagsmall (.3 .3 1) (-16 -16 -16) (16 16 16) +currentcash - set amount of cash in the bag +model="models/pu_icon/money/money_sm.md2" +*/ + { + "item_cashbagsmall", + Pickup_Cash, + Use_Null, + NULL, + NULL, + "world/pickups/cash.wav", + "models/pu_icon/money/money_sm.md2", 0, + NULL, + // JOSEPH 26-JAN-99-C + "/pics/hh_money.tga", + "Small Cash Bag", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, +// END JOSEPH + + +/*QUAKED item_battery (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/pu_icon/battery/tris.md2" +*/ + { + "item_battery", + Pickup_Key, + Use_Null, + NULL, + NULL, + "world/pickups/generic.wav", + "models/pu_icon/battery/tris.md2", 0, + NULL, + "/pics/h_bat.tga", + "Battery", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, + + +// JOSEPH 2-MAR-99 +/*QUAKED item_jetpack (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/items/misc/jetpack/jetpack.mdx" +*/ + { + "item_jetpack", + Pickup_JetPack, + Use_JetPack, + NULL, + NULL, + "world/pickups/generic.wav", + "models/items/misc/jetpack/jetpack.mdx", 0, + NULL, +/* icon */ "/pics/h_jetpack.tga", + "Jet Pack", + 0, + 0, + NULL, + IT_STAY_COOP|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, +// END JOSEPH + +// JOSEPH 10-FEB-99 +/*QUAKED item_health_sm (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/pu_icon/health_s/tris.md2" +*/ + { + "item_health_sm", + Pickup_Health_Small, + Use_Null, + NULL, + NULL, + "world/pickups/health.wav", + "models/pu_icon/health_s/tris.md2", 0, + NULL, + "/pics/h_smed.tga", + "Small Health", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, + +/*QUAKED item_health_lg (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/pu_icon/health/tris.md2" +*/ + { + "item_health_lg", + Pickup_Health_Large, + Use_Null, + NULL, + NULL, + "world/pickups/health.wav", + "models/pu_icon/health/tris.md2", 0, + NULL, + "/pics/h_lmed.tga", + "Large Health", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, +// END JOSEPH + + +/*QUAKED item_flashlight (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/pu_icon/f_light/tris.md2" +*/ + { + "item_flashlight", + Pickup_Key, + Use_Null, + NULL, + NULL, + "world/pickups/generic.wav", + "models/pu_icon/f_light/tris.md2", 0, + NULL, + "/pics/h_flashl.tga", + "Flashlight", + 2, + 0, + NULL, + IT_STAY_COOP|IT_FLASHLIGHT, + NULL, + 0, +/* precache */ "" + }, + +// JOSEPH 12-MAR-99 +/*QUAKED item_watch (.3 .3 1) (-16 -16 -16) (16 16 16) + +Watch for Lenny + +model="models/pu_icon/watch/tris.md2" +*/ + { + "item_watch", + Pickup_Key, + Use_Null, + NULL, + NULL, + "world/pickups/generic.wav", + "models/pu_icon/watch/tris.md2", 0, + NULL, + "/pics/h_watch.tga", + "Watch", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, +// END JOSEPH + +// JOSEPH 24-MAR-99 +/*QUAKED item_whiskey (.3 .3 1) (-16 -16 -16) (16 16 16) + +model="models/pu_icon/whiskey/tris.md2" + +Whiskey for the bum + +*/ + { + "item_whiskey", + Pickup_Key, + Use_Null, + NULL, + NULL, + "world/pickups/generic.wav", + "models/pu_icon/whiskey/tris.md2", 0, + NULL, + "/pics/h_bottle.tga", + "Whiskey", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, +// END JOSEPH + +// JOSEPH 30-MAY-99 +/*QUAKED item_pack (.3 .3 1) (-16 -16 -16) (16 16 16) +model="models/pu_icon/backpack/tris.md2" +*/ + { + "item_pack", + Pickup_Pack, + NULL, + NULL, + NULL, + "world/pickups/generic.wav", + "models/pu_icon/backpack/tris.md2", 0, + NULL, +/* icon */ "/pics/h_backpack.tga", +/* pickup */ "Ammo Pack", +/* width */ 2, + 180, + NULL, + IT_NOCHEATS|IT_FLASHLIGHT, + NULL, + 0, +/* precache */ "" + }, +// END JOSEPH + +// JOSEPH 29-MAY-99 +/*QUAKED item_adrenaline (.3 .3 1) (-16 -16 -16) (16 16 16) +gives +1 to maximum health +model="models/pu_icon/adrenaline/tris.md2" +*/ + { + "item_adrenaline", + Pickup_Adrenaline, + NULL, + NULL, + NULL, + "world/pickups/health.wav", + "models/pu_icon/adrenaline/tris.md2", 0, + NULL, + "/pics/h_smed.tga", +/* pickup */ "Adrenaline", +/* width */ 2, + 60, + NULL, + IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, +// END JOSEPH + +// JOSEPH 7-MAY-99 +/*QUAKED key_fuse (0 .5 .8) (-8 -8 -16) (8 8 16) TRIGGER_SPAWN NO_TOUCH +*/ + { + "key_fuse", + Pickup_Key, + NULL, + NULL, + NULL, + "world/pickups/coil.wav", + "models/pu_icon/fuse/tris.md2", 0, + NULL, + "/pics/h_fuse.tga", + "Fuse", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, +// END JOSEPH + +// JOSEPH 4-MAY-99 +/*QUAKED item_safedocs (.3 .3 1) (-16 -16 -16) (16 16 16) +Safe docs for the louie in PV +model="models/pu_icon/folder/tris.md2" +*/ + { + "item_safedocs", + Pickup_Key, + Use_Null, + NULL, + NULL, + "world/pickups/generic.wav", + "models/pu_icon/folder/tris.md2", 0, + NULL, + "/pics/h_safedocs.tga", + "Safe docs", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, +// END JOSEPH + +/*QUAKED item_valve (.3 .3 1) (-16 -16 -16) (16 16 16) +A valve dial turn key +model="models/pu_icon/valve/tris.md2" +*/ + { + "item_valve", + Pickup_Key, + Use_Null, + NULL, + NULL, + "world/pickups/generic.wav", + "models/pu_icon/valve/tris.md2", 0, + NULL, + "/pics/h_valve.tga", + "Valve", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, +// END JOSEPH + +// JOSEPH 25-MAY-99 +/*QUAKED item_oilcan (.3 .3 1) (-16 -16 -16) (16 16 16) +An oil can +model="models/pu_icon/oilcan/tris.md2" +*/ + { + "item_oilcan", + Pickup_Key, + Use_Null, + NULL, + NULL, + "world/pickups/generic.wav", + "models/pu_icon/oilcan/tris.md2", 0, + NULL, + "/pics/h_oilcan.tga", + "Oil Can", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, +// END JOSEPH + + // Kingpin keys + + +// JOSEPH 16-MAR-99 + +/*QUAKED key_key1 (0 .5 .8) (-16 -16 -16) (16 16 16) +key 1 +model="models/pu_icon/key/key_a.md2" +*/ + { + "key_key1", + Pickup_Key, + Use_Null, + NULL, + NULL, + "world/pickups/keys.wav", + "models/pu_icon/key/key_a.md2", 0, + NULL, + "/pics/h_key.tga", + "StoreRoomKey", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, + +/*QUAKED key_key2 (0 .5 .8) (-16 -16 -16) (16 16 16) +key 2 +model="models/pu_icon/key/key_b.md2" +*/ + { + "key_key2", + Pickup_Key, + Use_Null, + NULL, + NULL, + "world/pickups/keys.wav", + "models/pu_icon/key/key_b.md2", 0, + NULL, + "/pics/h_key.tga", + "Electrical_Room", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, + +/*QUAKED key_key3 (0 .5 .8) (-16 -16 -16) (16 16 16) +key 3 +model="models/pu_icon/key/key_c.md2" +*/ + { + "key_key3", + Pickup_Key, + Use_Null, + NULL, + NULL, + "world/pickups/keys.wav", + "models/pu_icon/key/key_c.md2", 0, + NULL, + "/pics/h_key.tga", + "Chem_Plant_Key", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, + +/*QUAKED key_key4 (0 .5 .8) (-16 -16 -16) (16 16 16) +key 4 +model="models/pu_icon/key/key_c.md2" +*/ + { + "key_key4", + Pickup_Key, + Use_Null, + NULL, + NULL, + "world/pickups/keys.wav", + "models/pu_icon/key/key_c.md2", 0, + NULL, + "/pics/h_key.tga", + "Bridge_Key", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, + +/*QUAKED key_key5 (0 .5 .8) (-16 -16 -16) (16 16 16) +key 5 +model="models/pu_icon/key/key_c.md2" +*/ + { + "key_key5", + Pickup_Key, + Use_Null, + NULL, + NULL, + "world/pickups/keys.wav", + "models/pu_icon/key/key_c.md2", 0, + NULL, + "/pics/h_key.tga", + "Shipyard_Key", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, + +/*QUAKED key_key6 (0 .5 .8) (-16 -16 -16) (16 16 16) +key 6 +model="models/pu_icon/key/key_c.md2" +*/ + { + "key_key6", + Pickup_Key, + Use_Null, + NULL, + NULL, + "world/pickups/keys.wav", + "models/pu_icon/key/key_c.md2", 0, + NULL, + "/pics/h_key.tga", + "Warehouse_Key", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, + +/*QUAKED key_key7 (0 .5 .8) (-16 -16 -16) (16 16 16) +key 7 +model="models/pu_icon/key/key_c.md2" +*/ + { + "key_key7", + Pickup_Key, + Use_Null, + NULL, + NULL, + "world/pickups/keys.wav", + "models/pu_icon/key/key_c.md2", 0, + NULL, + "/pics/h_key.tga", + "Shop_Key", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, + +// JOSEPH 6-JUN-99 +/*QUAKED key_key8 (0 .5 .8) (-16 -16 -16) (16 16 16) +key 8 +model="models/pu_icon/key/key_c.md2" +*/ + { + "key_key8", + Pickup_Key, + Use_Null, + NULL, + NULL, + "world/pickups/keys.wav", + "models/pu_icon/key/key_c.md2", 0, + NULL, + "/pics/h_ticket.tga", + "Ticket", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, +// END JOSEPH + +/*QUAKED key_key9 (0 .5 .8) (-16 -16 -16) (16 16 16) +key 9 +model="models/pu_icon/key/key_c.md2" +*/ + { + "key_key9", + Pickup_Key, + Use_Null, + NULL, + NULL, + "world/pickups/keys.wav", + "models/pu_icon/key/key_c.md2", 0, + NULL, + "/pics/h_key.tga", + "Office_Key", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, + +/*QUAKED key_key10 (0 .5 .8) (-16 -16 -16) (16 16 16) +key 10 +model="models/pu_icon/key/key_c.md2" +*/ + { + "key_key10", + Pickup_Key, + Use_Null, + NULL, + NULL, + "world/pickups/keys.wav", + "models/pu_icon/key/key_c.md2", 0, + NULL, + "/pics/h_key.tga", + "Key10", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY|IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, +// END JOSEPH + + + //========================================================================================== + // OLD QUAKE2 ITEMS + + // + // POWERUP ITEMS + // +#if 0 +/*UAKED item_quad (.3 .3 1) (-16 -16 -16) (16 16 16) +*/ + { + "item_quad", + Pickup_Powerup, + Use_Quad, + Drop_General, + NULL, + "items/pkup.wav", + "models/items/quaddama/tris.md2", EF_ROTATE, + NULL, +/* icon */ "p_quad", +/* pickup */ "Quad Damage", +/* width */ 2, + 60, + NULL, + IT_POWERUP, + NULL, + 0, +/* precache */ "items/damage.wav items/damage2.wav items/damage3.wav" + }, + +/*UAKED item_quadfire (.3 .3 1) (-16 -16 -16) (16 16 16) +*/ + { + "item_quadfire", + Pickup_Powerup, + Use_QuadFire, + Drop_General, + NULL, + "items/pkup.wav", + "models/items/quadfire/tris.md2", EF_ROTATE, + NULL, +/* icon */ "p_quadfire", +/* pickup */ "QuadFire Damage", +/* width */ 2, + 60, + NULL, + IT_POWERUP, + NULL, + 0, +/* precache */ "items/damage.wav items/damage2.wav items/damage3.wav" + }, + + +/*UAKED item_invulnerability (.3 .3 1) (-16 -16 -16) (16 16 16) +*/ + { + "item_invulnerability", + Pickup_Powerup, + Use_Invulnerability, + Drop_General, + NULL, + "items/pkup.wav", + "models/items/invulner/tris.md2", EF_ROTATE, + NULL, +/* icon */ "p_invulnerability", +/* pickup */ "Invulnerability", +/* width */ 2, + 300, + NULL, + IT_POWERUP, + NULL, + 0, +/* precache */ "items/protect.wav items/protect2.wav items/protect4.wav" + }, + +/*UAKED item_silencer (.3 .3 1) (-16 -16 -16) (16 16 16) +*/ + { + "item_silencer", + Pickup_Powerup, + Use_Silencer, + Drop_General, + NULL, + "items/pkup.wav", + "models/pu_icon/silencer/tris.md2", 0, + NULL, +/* icon */ "p_silencer", +/* pickup */ "Silencer", +/* width */ 2, + 60, + NULL, + IT_POWERUP, + NULL, + 0, +/* precache */ "" + }, + +/*UAKED item_breather (.3 .3 1) (-16 -16 -16) (16 16 16) +*/ + { + "item_breather", + Pickup_Powerup, + Use_Breather, + Drop_General, + NULL, + "items/pkup.wav", + "models/items/breather/tris.md2", EF_ROTATE, + NULL, +/* icon */ "p_rebreather", +/* pickup */ "Rebreather", +/* width */ 2, + 60, + NULL, + IT_STAY_COOP|IT_POWERUP, + NULL, + 0, +/* precache */ "items/airout.wav" + }, + +/*UAKED item_enviro (.3 .3 1) (-16 -16 -16) (16 16 16) +*/ + { + "item_enviro", + Pickup_Powerup, + Use_Envirosuit, + Drop_General, + NULL, + "items/pkup.wav", + "models/items/enviro/tris.md2", EF_ROTATE, + NULL, +/* icon */ "p_envirosuit", +/* pickup */ "Environment Suit", +/* width */ 2, + 60, + NULL, + IT_STAY_COOP|IT_POWERUP, + NULL, + 0, +/* precache */ "items/airout.wav" + }, + +/*UAKED item_ancient_head (.3 .3 1) (-16 -16 -16) (16 16 16) +Special item that gives +2 to maximum health +*/ + { + "item_ancient_head", + Pickup_AncientHead, + NULL, + NULL, + NULL, + "items/pkup.wav", + "models/items/c_head/tris.md2", EF_ROTATE, + NULL, +/* icon */ "i_fixme", +/* pickup */ "Ancient Head", +/* width */ 2, + 60, + NULL, + 0, + NULL, + 0, +/* precache */ "" + }, + +/*UAKED item_bandolier (.3 .3 1) (-16 -16 -16) (16 16 16) +*/ + { + "item_bandolier", + Pickup_Bandolier, + NULL, + NULL, + NULL, + "items/pkup.wav", + "models/items/band/tris.md2", EF_ROTATE, + NULL, +/* icon */ "p_bandolier", +/* pickup */ "Bandolier", +/* width */ 2, + 60, + NULL, + 0, + NULL, + 0, +/* precache */ "" + }, + +/*UAKED item_pack (.3 .3 1) (-16 -16 -16) (16 16 16) +*/ + { + "item_pack", + Pickup_Pack, + NULL, + NULL, + NULL, + "items/pkup.wav", + "models/items/pack/tris.md2", EF_ROTATE, + NULL, +/* icon */ "i_pack", +/* pickup */ "Ammo Pack", +/* width */ 2, + 180, + NULL, + 0, + NULL, + 0, +/* precache */ "" + }, + + // + // KEYS + // +/*UAKED key_data_cd (0 .5 .8) (-16 -16 -16) (16 16 16) +key for computer centers +*/ + { + "key_data_cd", + Pickup_Key, + NULL, + Drop_General, + NULL, + "items/pkup.wav", + "models/items/keys/data_cd/tris.md2", EF_ROTATE, + NULL, + "k_datacd", + "Data CD", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY, + NULL, + 0, +/* precache */ "" + }, + +// JOSEPH 30-APR-99 +/*UAKED key_fuse (0 .5 .8) (-16 -16 -16) (16 16 16) TRIGGER_SPAWN NO_TOUCH +warehouse circuits +*/ +// END JOSEPH + { + "key_fuse", + Pickup_Key, + NULL, + Drop_General, + NULL, + "world/pickups/coil.wav", + "models/pu_icon/coil/tris.md2", EF_ROTATE, + NULL, + "/pics/h_coil.tga", + "Fuse", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY, + NULL, + 0, +/* precache */ "" + }, + +/*UAKED key_pyramid (0 .5 .8) (-16 -16 -16) (16 16 16) +key for the entrance of jail3 +*/ + { + "key_pyramid", + Pickup_Key, + NULL, + Drop_General, + NULL, + "items/pkup.wav", + "models/items/keys/pyramid/tris.md2", EF_ROTATE, + NULL, + "k_pyramid", + "Pyramid Key", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY, + NULL, + 0, +/* precache */ "" + }, + +/*UAKED key_data_spinner (0 .5 .8) (-16 -16 -16) (16 16 16) +key for the city computer +*/ + { + "key_data_spinner", + Pickup_Key, + NULL, + Drop_General, + NULL, + "items/pkup.wav", + "models/items/keys/spinner/tris.md2", EF_ROTATE, + NULL, + "k_dataspin", + "Data Spinner", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY, + NULL, + 0, +/* precache */ "" + }, + +/*UAKED key_pass (0 .5 .8) (-16 -16 -16) (16 16 16) +security pass for the security level +*/ + { + "key_pass", + Pickup_Key, + NULL, + Drop_General, + NULL, + "items/pkup.wav", + "models/items/keys/pass/tris.md2", EF_ROTATE, + NULL, + "k_security", + "Security Pass", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY, + NULL, + 0, +/* precache */ "" + }, + +/*UAKED key_blue_key (0 .5 .8) (-16 -16 -16) (16 16 16) +normal door key - blue +*/ + { + "key_blue_key", + Pickup_Key, + NULL, + Drop_General, + NULL, + "items/pkup.wav", + "models/items/keys/key/tris.md2", EF_ROTATE, + NULL, + "k_bluekey", + "Blue Key", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY, + NULL, + 0, +/* precache */ "" + }, + + +/*UAKED key_red_key (0 .5 .8) (-16 -16 -16) (16 16 16) +normal door key - red +*/ + { + "key_red_key", + Pickup_Key, + NULL, + Drop_General, + NULL, + "items/pkup.wav", + "models/items/keys/red_key/tris.md2", EF_ROTATE, + NULL, + "k_redkey", + "Red Key", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY, + NULL, + 0, +/* precache */ "" + }, + + +// RAFAEL +/*UAKED key_green_key (0 .5 .8) (-16 -16 -16) (16 16 16) +normal door key - blue +*/ + { + "key_green_key", + Pickup_Key, + NULL, + Drop_General, + NULL, + "items/pkup.wav", + "models/items/keys/green_key/tris.md2", EF_ROTATE, + NULL, + "k_green", + "Green Key", + 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY, + NULL, + 0, +/* precache */ "" + }, + +/*UAKED key_commander_head (0 .5 .8) (-16 -16 -16) (16 16 16) +tank commander's head +*/ + { + "key_commander_head", + Pickup_Key, + NULL, + Drop_General, + NULL, + "items/pkup.wav", + "models/monsters/commandr/head/tris.md2", EF_GIB, + NULL, +/* icon */ "k_comhead", +/* pickup */ "Commander's Head", +/* width */ 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY, + NULL, + 0, +/* precache */ "" + }, + +/*UAKED key_airstrike_target (0 .5 .8) (-16 -16 -16) (16 16 16) +tank commander's head +*/ + { + "key_airstrike_target", + Pickup_Key, + NULL, + Drop_General, + NULL, + "items/pkup.wav", + "models/items/keys/target/tris.md2", EF_ROTATE, + NULL, +/* icon */ "i_airstrike", +/* pickup */ "Airstrike Marker", +/* width */ 2, + 0, + NULL, + IT_STAY_COOP|IT_KEY, + NULL, + 0, +/* precache */ "" + }, + + { + NULL, + Pickup_Health, + NULL, + NULL, + NULL, + "items/pkup.wav", + NULL, 0, + NULL, +/* icon */ "i_health", +/* pickup */ "Health", +/* width */ 3, + 0, + NULL, + 0, + NULL, + 0, +/* precache */ "" + }, +#endif + { + NULL, + Pickup_Pistol_Mods, + NULL, + NULL, + NULL, + "misc/w_pkup.wav", + NULL, 0, + NULL, +/* icon */ NULL,//"i_pistol_mods", +/* pickup */ "Pistol_Mods", +/* width */ 3, + 0, + NULL, + IT_NOCHEATS, + NULL, + 0, +/* precache */ "" + }, + + // end of list marker + {NULL} +}; +// END JOSEPH + + +// JOSEPH 13-JUN-99 +/*QUAKED hmg_mod_cooling (.7 .3 .4) (-16 -16 -16) (16 16 16) +model="models/pu_icon/modcool/tris.md2" +*/ +void SP_hmg_mod_cooling (edict_t *self) +{ + self->model = "models/pu_icon/coolmod/tris.md2"; + self->count = 4; + SpawnItem (self, FindItem ("Pistol_Mods")); + self->item->icon = "/pics/h_heavymachinegun_cooling.tga"; + //gi.soundindex ("items/pistol_mods.wav"); +} +// END JOSEPH + +// JOSEPH 1-APR-99 +/*QUAKED pistol_mod_rof (.7 .3 .4) (-16 -16 -16) (16 16 16) +model="models/pu_icon/ro_fire_mod/tris.md2" +*/ +void SP_pistol_mod_rof (edict_t *self) +{ + self->model = "models/pu_icon/ro_fire_mod/tris.md2"; + self->count = 1; + SpawnItem (self, FindItem ("Pistol_Mods")); + //gi.soundindex ("items/pistol_mods.wav"); +} + +/*QUAKED pistol_mod_reload (.7 .3 .4) (-16 -16 -16) (16 16 16) +model="models/pu_icon/reload_mod/tris.md2" +model="models/pu_icon/reload_mod/tris.md2" +*/ +void SP_pistol_mod_reload (edict_t *self) +{ + self->model = "models/pu_icon/reload_mod/tris.md2"; + self->count = 2; + SpawnItem (self, FindItem ("Pistol_Mods")); + //gi.soundindex ("items/pistol_mods.wav"); +} + +/*QUAKED pistol_mod_damage (.7 .3 .4) (-16 -16 -16) (16 16 16) +model="models/pu_icon/magmod/tris.md2" +*/ +void SP_pistol_mod_damage (edict_t *self) +{ + self->model = "models/pu_icon/magmod/tris.md2"; + self->count = 3; + SpawnItem (self, FindItem ("Pistol_Mods")); + //gi.soundindex ("items/pistol_mods.wav"); +} +// END JOSEPH + +/*UAKED item_health (.3 .3 1) (-16 -16 -16) (16 16 16) +*/ +void SP_item_health (edict_t *self) +{ + if ( deathmatch->value && ((int)dmflags->value & DF_NO_HEALTH) ) + { + G_FreeEdict (self); + return; + } + + self->model = "models/items/healing/medium/tris.md2"; + self->count = 10; + SpawnItem (self, FindItem ("Health")); + gi.soundindex ("items/n_health.wav"); +} + +/*UAKED item_health_small (.3 .3 1) (-16 -16 -16) (16 16 16) +*/ +void SP_item_health_small (edict_t *self) +{ + if ( deathmatch->value && ((int)dmflags->value & DF_NO_HEALTH) ) + { + G_FreeEdict (self); + return; + } + + self->model = "models/items/healing/stimpack/tris.md2"; + self->count = 2; + SpawnItem (self, FindItem ("Health")); + self->style = HEALTH_IGNORE_MAX; + gi.soundindex ("items/s_health.wav"); +} + +/*UAKED item_health_large (.3 .3 1) (-16 -16 -16) (16 16 16) +*/ +void SP_item_health_large (edict_t *self) +{ + if ( deathmatch->value && ((int)dmflags->value & DF_NO_HEALTH) ) + { + G_FreeEdict (self); + return; + } + + self->model = "models/items/healing/large/tris.md2"; + self->count = 25; + SpawnItem (self, FindItem ("Health")); + gi.soundindex ("items/l_health.wav"); +} + +/*UAKED item_health_mega (.3 .3 1) (-16 -16 -16) (16 16 16) +*/ +void SP_item_health_mega (edict_t *self) +{ + if ( deathmatch->value && ((int)dmflags->value & DF_NO_HEALTH) ) + { + G_FreeEdict (self); + return; + } + + self->model = "models/items/mega_h/tris.md2"; + self->count = 100; + SpawnItem (self, FindItem ("Health")); + gi.soundindex ("items/m_health.wav"); + self->style = HEALTH_IGNORE_MAX|HEALTH_TIMED; +} + +// RAFAEL +void SP_item_foodcube (edict_t *self) +{ + if ( deathmatch->value && ((int)dmflags->value & DF_NO_HEALTH) ) + { + G_FreeEdict (self); + return; + } + + self->model = "models/objects/trapfx/tris.md2"; + SpawnItem (self, FindItem ("Health")); + self->spawnflags |= DROPPED_ITEM; + self->style = HEALTH_IGNORE_MAX; + gi.soundindex ("items/s_health.wav"); + self->classname = "foodcube"; +} + +void InitItems (void) +{ + game.num_items = sizeof(itemlist)/sizeof(itemlist[0]) - 1; +} + + + +/* +=============== +SetItemNames + +Called by worldspawn +=============== +*/ +void SetItemNames (void) +{ + int i; + gitem_t *it; + + for (i=0 ; ipickup_name); + } + + jacket_armor_index = ITEM_INDEX(FindItem("Jacket Armor")); + combat_armor_index = ITEM_INDEX(FindItem("Combat Armor")); + body_armor_index = ITEM_INDEX(FindItem("Body Armor")); + power_screen_index = ITEM_INDEX(FindItem("Power Screen")); + power_shield_index = ITEM_INDEX(FindItem("Power Shield")); +} diff --git a/gamesrc/G_main.c b/gamesrc/G_main.c new file mode 100644 index 0000000..578f6d5 --- /dev/null +++ b/gamesrc/G_main.c @@ -0,0 +1,905 @@ + +#include "g_local.h" + +#include "voice_bitch.h" +#include "voice_punk.h" + +game_locals_t game; +level_locals_t level; +game_import_t gi; +game_export_t globals; +spawn_temp_t st; + +int sm_meat_index; +int snd_fry; + + +int meansOfDeath; + +edict_t *g_edicts; + +cast_memory_t *g_cast_memory; +cast_group_t *g_cast_groups; + +int num_object_bounds=0; +object_bounds_t *g_objbnds[MAX_OBJECT_BOUNDS]; + +cvar_t *deathmatch; + +// RAFAEL +// cvar_t *marines; + +cvar_t *coop; +cvar_t *dmflags; +cvar_t *skill; +cvar_t *fraglimit; +cvar_t *timelimit; +cvar_t *cashlimit; +cvar_t *password; +cvar_t *maxclients; +cvar_t *maxentities; +cvar_t *g_select_empty; +cvar_t *dedicated; + +cvar_t *maxrate; + +cvar_t *filterban; + +cvar_t *sv_maxvelocity; +cvar_t *sv_gravity; + +cvar_t *sv_rollspeed; +cvar_t *sv_rollangle; +cvar_t *gun_x; +cvar_t *gun_y; +cvar_t *gun_z; + +cvar_t *run_pitch; +cvar_t *run_roll; +cvar_t *bob_up; +cvar_t *bob_pitch; +cvar_t *bob_roll; + +cvar_t *sv_cheats; + +cvar_t *flood_msgs; +cvar_t *flood_persecond; +cvar_t *flood_waitdelay; + +// Ridah, new cvar's +cvar_t *developer; +cvar_t *ai_debug_memory; + +cvar_t *g_vehicle_test; + +cvar_t *dm_locational_damage; + +cvar_t *showlights; + +cvar_t *r_directional_lighting; + +cvar_t *cl_captions; + +cvar_t *sv_runscale; // 2.0 = double speed, 0.0 = zero movement + +cvar_t *burn_enabled; +cvar_t *burn_size; +cvar_t *burn_intensity; +cvar_t *burn_r; +cvar_t *burn_g; +cvar_t *burn_b; + +cvar_t *timescale; + +cvar_t *teamplay; +cvar_t *g_cashspawndelay; + +cvar_t *cl_parental_lock; +cvar_t *cl_parental_override; + +cvar_t *dm_realmode; + +cvar_t *g_mapcycle_file; +// Ridah, done. + +void SpawnEntities (char *mapname, char *entities, char *spawnpoint); +void ClientThink (edict_t *ent, usercmd_t *cmd); +qboolean ClientConnect (edict_t *ent, char *userinfo); +void ClientUserinfoChanged (edict_t *ent, char *userinfo); +void ClientDisconnect (edict_t *ent); +void ClientBegin (edict_t *ent); +void ClientCommand (edict_t *ent); +void RunEntity (edict_t *ent); +void WriteGame (char *filename, qboolean autosave); +void ReadGame (char *filename); +void WriteLevel (char *filename); +void ReadLevel (char *filename); +void InitGame (void); +void G_RunFrame (void); + +// JOSEPH 23-OCT-98 +void Killed (edict_t *targ, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject); + +//=================================================================== + +int gameinc=0; + +void ShutdownGame (void) +{ + gi.dprintf ("==== ShutdownGame ====\n"); + +// BEGIN: Xatrix/Ridah/Navigator/21-mar-1998 + NAV_PurgeActiveNodes (level.node_data); +// END: Xatrix/Ridah/Navigator/21-mar-1998 + + // Ridah, clear the lightpaint buffers + if (num_lpbuf > 0) + { + int i; + + for (i=0; ivalue ; i++) + { + ent = g_edicts + 1 + i; + if (!ent->inuse || !ent->client) + continue; + ClientEndServerFrame (ent); + } + +} + +/* +================= +MapCycleNext + + Uses maps.lst and teammaps.lst to cycle the maps during deathmatch +================= +*/ +char *MapCycleNext( char *map ) +{ + char *basevars[] = {"basedir", "cddir", NULL}; // consol variables that point to possible file locations + cvar_t *game_dir, *base_dir; + char filename[MAX_QPATH], dir[MAX_QPATH]; + FILE *f; + static char nextmap[MAX_QPATH]; + char firstmap[MAX_QPATH]; + char travmap[MAX_QPATH]; + qboolean matched = false; + int i; + char ch; + qboolean eof = false; + + game_dir = gi.cvar("game", "", 0); + + // dir, eg: .\gamedir\routes + for (i=0; basevars[i]; i++) + { + base_dir = gi.cvar(basevars[i], ".", 0); + + strcpy( dir, base_dir->string); + + if (dir[strlen(dir)-1] != DIR_SLASH[0]) + strcat( dir, DIR_SLASH); + + if (strlen(game_dir->string) == 0) + strcat( dir, "main"); + else + strcat( dir, game_dir->string); + + // filename, eg: .\gamedir\maps.lst + strcpy( filename, dir); + strcat( filename, DIR_SLASH); + if (g_mapcycle_file->string && strlen(g_mapcycle_file->string) > 0) + strcat( filename, g_mapcycle_file->string); + else if (!teamplay->value) + strcat( filename, "maps.lst"); + else + strcat( filename, "teammaps.lst"); + + // try and open the file for reading + f = fopen ( filename, "rb"); + if (f) + break; // we have a valid file + } + + if (!f) // no valid file found + return NULL; + + // read in the first map + fscanf( f, "%s", firstmap ); + strcpy( travmap, firstmap ); + ch = 0; + while (ch!='\n' && !feof(f)) + fscanf(f, "%c", &ch); + + do + { + eof = feof(f); + + if (!Q_stricmp( travmap, level.mapname )) + { + matched = true; + } + + if (!eof) + { + fscanf( f, "%s", travmap ); + ch = 0; + while (ch!='\n' && !feof(f)) + fscanf(f, "%c", &ch); + } + + if (matched) + { + if (strcmp(travmap, level.mapname) != 0 && strlen(travmap) > 1) + { // take this map + strcpy( nextmap, travmap ); + } + else + { // use the firstmap + strcpy( nextmap, firstmap ); + } + + fclose(f); + return nextmap; + } + } + while (!eof); + + fclose(f); + + // no match, so return nothing + return NULL; +} + +/* +================= +EndDMLevel + +The timelimit or fraglimit has been exceeded +================= +*/ +void EndDMLevel (void) +{ + edict_t *ent; + char *nextmap; + + // stay on same level flag + if ((int)dmflags->value & DF_SAME_LEVEL) + { + ent = G_Spawn (); + ent->classname = "target_changelevel"; + ent->map = level.mapname; + + goto done; + } + + if (nextmap = MapCycleNext( level.mapname )) + { + ent = G_Spawn (); + ent->classname = "target_changelevel"; + ent->map = nextmap; + + goto done; + } + + if (level.nextmap[0]) + { // go to a specific map + ent = G_Spawn (); + ent->classname = "target_changelevel"; + ent->map = level.nextmap; + } + else + { // search for a changeleve + ent = G_Find (NULL, FOFS(classname), "target_changelevel"); + if (!ent) + { // the map designer didn't include a changelevel, + // so create a fake ent that goes back to the same level + ent = G_Spawn (); + ent->classname = "target_changelevel"; + ent->map = level.mapname; + } + } + +done: + + if (ent && ent->map) + gi.dprintf("DM changelevel: %s (time: %i secs)\n", ent->map, (int)level.time ); + + // Ridah, play a random music clip + gi.WriteByte( svc_stufftext ); + gi.WriteString( va("play world/cypress%i.wav", 2+(rand()%4)) ); + gi.multicast (vec3_origin, MULTICAST_ALL); + + BeginIntermission (ent); +} + +/* +================= +CheckDMRules +================= +*/ +void CheckDMRules (void) +{ + int i; + gclient_t *cl; + + if (level.intermissiontime) + return; + + if (!deathmatch->value) + return; + + if (timelimit->value) + { + if (level.time >= timelimit->value*60) + { + gi.bprintf (PRINT_HIGH, "Timelimit hit.\n"); + EndDMLevel (); + return; + } + } + + if (fraglimit->value) + { + for (i=0 ; ivalue ; i++) + { + cl = game.clients + i; + if (!g_edicts[i+1].inuse) + continue; + + if (cl->resp.score >= fraglimit->value) + { + gi.bprintf (PRINT_HIGH, "Fraglimit hit.\n"); + EndDMLevel (); + return; + } + } + } + + if (cashlimit->value) + { + if ((team_cash[1] >= cashlimit->value) || (team_cash[2] >= cashlimit->value)) + { + gi.bprintf (PRINT_HIGH, "Cashlimit hit.\n"); + EndDMLevel (); + return; + } + } +} + + +/* +============= +ExitLevel +============= +*/ + +void ExitLevel (void) +{ + int i; + edict_t *ent; + char command [256]; + + Com_sprintf (command, sizeof(command), "gamemap \"%s\"\n", level.changemap); + gi.AddCommandString (command); + level.changemap = NULL; + level.exitintermission = 0; + level.intermissiontime = 0; + ClientEndServerFrames (); + +// RAFAEL + level.cut_scene_time = 0; + level.speaktime = 0; + // JOSEPH 25-FEB-99 + level.cut_scene_end_count = 0; + level.fadeendtime = 0; + level.totalfade = 0; + // END JOSEPH + + // JOSEPH 13-JUN-99 + level.helpchange = 0; + // END JOSEPH + + if (level.bar_lvl) + { + extern void Cmd_HolsterBar_f (edict_t *ent); + edict_t *player; + + player = &g_edicts[1]; + level.bar_lvl = false; + + Cmd_HolsterBar_f (player); + } + + // level.pawn_time = 0; + // level.pawn_exit = false; + + // clear some things before going to next level + for (i=0 ; ivalue ; i++) + { + ent = g_edicts + 1 + i; + if (!ent->inuse) + continue; + if (ent->health > ent->client->pers.max_health) + ent->health = ent->client->pers.max_health; + + } + +// BEGIN: Xatrix/Ridah/19-apr-1998 + // make sure Nav data isn't carried over to next level + NAV_PurgeActiveNodes(level.node_data); + level.node_data = NULL; +// BEGIN: Xatrix/Ridah/19-apr-1998 + +} + +/* +================ +G_RunFrame + +Advances the world by 0.1 seconds +================ +*/ +extern int bbox_cnt; +extern edict_t *mdx_bbox[]; + +void AI_ProcessCombat (void); + +void G_RunFrame (void) +{ + int i; + edict_t *ent; + + level.framenum++; + level.time = level.framenum*FRAMETIME; + + // exit intermissions + + if (level.exitintermission) + { + ExitLevel (); + return; + } + + + // do character sighting/memory stuff + if ((maxclients->value > 1) && !(deathmatch->value)) + { // coop server, do more checking here + + if (dedicated->value) + AI_UpdateCharacterMemories( 256 ); + + } + + + // Process Generic Combat AI layer + + AI_ProcessCombat (); + + + // + // treat each object in turn + // even the world gets a chance to think + // + ent = &g_edicts[0]; + for (i=0 ; iinuse) + continue; + + level.current_entity = ent; + + VectorCopy (ent->s.origin, ent->s.old_origin); + + + if (ent->svflags & SVF_MONSTER || ent->client) + { + if (ent->waterlevel > 1) + { + ent->onfiretime = 0; + } + + // On fire + if (ent->onfiretime < 0) + { + ent->onfiretime++; + } + else if (ent->onfiretime > 0) + { + vec3_t point, org, dir; + int i,j; + float dist; + + // Deathmatch flames done on client-side + if ((!deathmatch->value /*|| ent->onfiretime == 1*/) && (deathmatch->value || !ent->client)) + { + VectorSubtract( g_edicts[1].s.origin, ent->s.origin, dir ); + dist = VectorNormalize( dir ); + + // Ridah, spawn flames at each body part + MDX_HitCheck( ent, world, world, vec3_origin, vec3_origin, vec3_origin, 0, 0, 0, 0, vec3_origin ); + + for (i = 0; i < bbox_cnt; i++) + { + + // don't draw so many if the client is up close + if (dist < 256) + { + if (random() > dist/256) + continue; + } + + VectorAdd( mdx_bbox[i]->s.origin, dir, org ); + + if (!deathmatch->value) + { + for (j=0; j<2; j++) + { + point[2] = (org[2] + ((rand()%18) - 6) + 6); + point[1] = (org[1] + ((rand()%10) - 5)); + point[0] = (org[0] + ((rand()%10) - 5)); + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SFXFIREGO); + gi.WritePosition (point); + + if (ent->onfiretime == 1) + gi.WriteByte (1.2 * 10.0); + else + gi.WriteByte (0.6 * 10.0); + + gi.multicast (point, MULTICAST_PVS); + } + } + + // just do one smoke cloud + if ((ent->onfiretime == 1) && (rand()%2)) + { + point[2] = (org[2] + 20);// + ((rand()&31) - 16) + 20); + point[1] = (org[1]);// + ((rand()%14) - 7)); + point[0] = (org[0]);// + ((rand()%14) - 7)); + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SFXSMOKE); + gi.WritePosition (point); + // gi.WriteDir (ent->s.angles); + gi.WriteByte (16 + (rand()%24)); + gi.WriteByte (0); + gi.multicast (point, MULTICAST_PVS); + } + } + } + + if (!ent->deadflag) + { + edict_t *trav=NULL; + float damage=1; + + if (!deathmatch->value) + damage;// *= 3; + else + damage;// *= 2; + + T_Damage( ent, ent->onfireent, ent->onfireent, vec3_origin, ent->s.origin, vec3_origin, damage, 0, DAMAGE_NO_KNOCKBACK, MOD_FLAMETHROWER ); + + // make sure they are in the "catch_fire" motion + if (!deathmatch->value && (ent->health > 0) && ent->cast_info.catch_fire) + { + ent->cast_info.catch_fire( ent, ent->onfireent ); + } + + } + + ent->onfiretime--; + + if (ent->onfiretime <= 0) + { + ent->onfireent = NULL; + ent->onfiretime = 0; + } + + // JOSEPH 3-JUN-99 + if (ent->health > 0 && ent->onfiretime == 0) + { + ent->s.model_parts[PART_GUN].invisible_objects = 0; + ent->s.model_parts[PART_GUN2].invisible_objects = 0; + } + else + { + ent->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + ent->s.model_parts[PART_GUN2].invisible_objects = (1<<0 | 1<<1); + } + // END JOSEPH + + if (ent->health > 0) + { + // use voice tables for this? + + // gi.dprintf( "SOUND TODO: ARRRGGGHH!!! (on fire)\n" ); + } + else // dead + { + if (ent->onfiretime > 20) + ent->onfiretime = 20; + + if (ent->onfiretime == 1) + { + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_BURN_TO_A_CRISP); + gi.WritePosition (ent->s.origin); + gi.multicast (ent->s.origin, MULTICAST_PVS); + } + + } + } + } + + if (ent->svflags & SVF_MONSTER) + { +// float alpha; + + + // Blood trail + // JOSEPH 24-JAN-99 + if ((!ent->deadflag) && (ent->health < ent->max_health) && (!(ent->svflags & SVF_PROP))/*&& ((ent->healtimer&3) == 2)*/) + // END JOSEPH + { + vec3_t stop; + vec3_t start; + trace_t trace; + + VectorCopy(ent->s.origin, start); + start[0] += ((rand()&15)-8); + start[1] += ((rand()&15)-8); + VectorCopy(start, stop); + stop[2] -= 16*16; + + trace = gi.trace (start, NULL, NULL, stop, ent, MASK_DEADSOLID); + if (trace.fraction < 1) + { + float rnd; + + rnd = (0.2 + 1.5*random()); + SurfaceSpriteEffect(SFX_SPRITE_SURF_BLOOD1, (byte)(rnd * SFX_BLOOD_WIDTH), (byte)(rnd * SFX_BLOOD_HEIGHT), + trace.ent, trace.endpos, trace.plane.normal); + } + } + + // Heal thy self (healspeed -1 = no heal, healspeed 0 = 1, healspeed >1 = value) + if ((!ent->deadflag) && (ent->health < ent->max_health) && (ent->healspeed >= 0) + && (!ent->leader || ent->cast_group != 1 || (((int)timescale->value) == 1)) // Ridah, added this or they can set timescale = 100 and followers will restore full health in second + && (ent->healtimer++ > 30)) + // END JOSEPH + { + int i, i2, baseskin; + + ent->healtimer = 0; + + if (!ent->healspeed) + ent->health += 1; + else + ent->health += ent->healspeed; + + if (ent->health > ent->max_health) + ent->health = ent->max_health; + + for (i = 0; i < MAX_MODEL_PARTS; i++) + { + for (i2 = 0; i2 < MAX_MODELPART_OBJECTS; i2++) + { + baseskin = ent->s.model_parts[i].baseskin; + + if (ent->s.model_parts[i].skinnum[i2] > baseskin) + { + if (ent->health > (ent->max_health * 0.75)) + { + ent->s.model_parts[i].skinnum[i2] = baseskin; + } + else if (ent->health > (ent->max_health * 0.5)) + { + if (cl_parental_lock->value && !cl_parental_override->value) + ent->s.model_parts[i].skinnum[i2] = baseskin; + else + ent->s.model_parts[i].skinnum[i2] = baseskin + 1; + } + } + } + } + } + } + // END JOSEPH + + // if the ground entity moved, make sure we are still on it + if ((ent->groundentity) && (ent->groundentity->linkcount != ent->groundentity_linkcount)) + { + ent->groundentity = NULL; + if ( !(ent->flags & (FL_SWIM|FL_FLY)) && (ent->svflags & SVF_MONSTER) ) + { + M_CheckGround (ent); + } + } + + if (i > 0 && i <= maxclients->value) + { + ClientBeginServerFrame (ent); + } + else + { + G_RunEntity (ent); + + // Ridah, fast walking speed + if ( (ent->cast_info.aiflags & AI_FASTWALK) + && (ent->svflags & SVF_MONSTER) + && (ent->cast_info.currentmove) +// && (ent->cast_info.currentmove->frame->aifunc == ai_run) + && (ent->cast_info.currentmove->frame->dist < 20) + && (!ent->enemy)) + { + G_RunEntity (ent); + // JOSEPH 12-MAR-99 + if (ent->think) ent->think(ent); + // END JOSEPH + } + } + + // Ridah, update lights if using directional lighting + if (!(r_directional_lighting->value) && !deathmatch->value) + { + if (ent->s.renderfx2 & RF2_DIR_LIGHTS) + { + VectorSet( ent->s.last_lighting_update_pos, -9999, -9999, -9999 ); + } + } + else if (((ent->s.renderfx2 & RF2_DIR_LIGHTS) || (ent->client) || deathmatch->value)) + { + if (!level.num_light_sources) // no lights to source from, so default back to no dir lighting + { + ent->s.renderfx2 &= ~RF2_DIR_LIGHTS; + } + else + { + + if (ent->client) + ent->s.renderfx2 |= RF2_DIR_LIGHTS; + + // if single player, only calculate if it's visible to our player + if ( (!VectorCompare(ent->s.last_lighting_update_pos, ent->s.origin)) + && ( (ent->client && !deathmatch->value) + || ( (VectorDistance( ent->s.origin, ent->s.last_lighting_update_pos ) > (deathmatch->value ? 128 : 64)) + && ( (deathmatch->value) + || (level.cut_scene_time) + || ( (gi.inPVS( g_edicts[1].s.origin, ent->s.origin)) + && (infront( &g_edicts[1], ent ) )))))) + { + UpdateDirLights( ent ); + + VectorCopy( ent->s.origin, ent->s.last_lighting_update_pos ); + } + else if (showlights->value && gi.inPVS( g_edicts[1].s.origin, ent->s.origin)) + { + UpdateDirLights( ent ); + } + + } + } + + } + + // see if it is time to end a deathmatch + CheckDMRules (); + + // build the playerstate_t structures for all players + ClientEndServerFrames (); +} + diff --git a/gamesrc/G_save.c b/gamesrc/G_save.c new file mode 100644 index 0000000..362008f --- /dev/null +++ b/gamesrc/G_save.c @@ -0,0 +1,1280 @@ + +#include "g_local.h" + +#define Function(f) {#f, f} + +mmove_t mmove_reloc; + +field_t fields[] = { + {"classname", FOFS(classname), F_LSTRING}, + {"model", FOFS(model), F_LSTRING}, + {"spawnflags", FOFS(spawnflags), F_INT}, + {"speed", FOFS(speed), F_FLOAT}, + {"accel", FOFS(accel), F_FLOAT}, + {"decel", FOFS(decel), F_FLOAT}, + {"target", FOFS(target), F_LSTRING}, + {"targetname", FOFS(targetname), F_LSTRING}, + {"pathtarget", FOFS(pathtarget), F_LSTRING}, + {"deathtarget", FOFS(deathtarget), F_LSTRING}, + {"killtarget", FOFS(killtarget), F_LSTRING}, + {"combattarget", FOFS(combattarget), F_LSTRING}, + {"message", FOFS(message), F_LSTRING}, + {"team", FOFS(team), F_LSTRING}, + {"wait", FOFS(wait), F_FLOAT}, + {"delay", FOFS(delay), F_FLOAT}, + {"random", FOFS(random), F_FLOAT}, + {"move_origin", FOFS(move_origin), F_VECTOR}, + {"move_angles", FOFS(move_angles), F_VECTOR}, + {"style", FOFS(style), F_INT}, + {"count", FOFS(count), F_INT}, + {"health", FOFS(health), F_INT}, + {"sounds", FOFS(sounds), F_INT}, + + {"light", FOFS(light_level), F_INT}, // Ridah, used by model lighting code + {"_color", FOFS(rotate), F_VECTOR}, // Ridah, used by model lighting code + {"radius", FOFS(dmg_radius), F_VECTOR}, // Ridah, used by model lighting code + + {"dmg", FOFS(dmg), F_INT}, + {"mass", FOFS(mass), F_INT}, + {"volume", FOFS(volume), F_FLOAT}, + {"attenuation", FOFS(attenuation), F_FLOAT}, + {"map", FOFS(map), F_LSTRING}, + {"origin", FOFS(s.origin), F_VECTOR}, + {"angles", FOFS(s.angles), F_VECTOR}, + {"angle", FOFS(s.angles), F_ANGLEHACK}, + + {"objectbounds_filename1", FOFS(s.model_parts[0].objectbounds_filename), F_LSTRING}, + {"objectbounds_filename2", FOFS(s.model_parts[1].objectbounds_filename), F_LSTRING}, + {"objectbounds_filename3", FOFS(s.model_parts[2].objectbounds_filename), F_LSTRING}, + {"objectbounds_filename4", FOFS(s.model_parts[3].objectbounds_filename), F_LSTRING}, + {"objectbounds_filename5", FOFS(s.model_parts[4].objectbounds_filename), F_LSTRING}, + {"objectbounds_filename6", FOFS(s.model_parts[5].objectbounds_filename), F_LSTRING}, + {"objectbounds_filename7", FOFS(s.model_parts[6].objectbounds_filename), F_LSTRING}, + {"objectbounds_filename8", FOFS(s.model_parts[7].objectbounds_filename), F_LSTRING}, + +// JOSEPH 19-MAR-99 + {"rotate", FOFS(rotate), F_VECTOR}, + {"duration", FOFS(duration), F_FLOAT}, + {"alphalevel", FOFS(alphalevel), F_INT}, + {"fxdensity", FOFS(fxdensity), F_INT}, + {"healspeed", FOFS(healspeed), F_INT}, + {"deadticks", FOFS(deadticks), F_INT}, + {"missteam", FOFS(missteam), F_INT}, + {"misstime", FOFS(misstime), F_INT}, + {"cameraangle", FOFS(cameraangle), F_VECTOR}, + {"cameraorigin", FOFS(cameraorigin), F_VECTOR}, + {"cameravel", FOFS(cameravel), F_VECTOR}, + {"cameravelrel", FOFS(cameravelrel), F_VECTOR}, + {"debugprint", FOFS(debugprint), F_INT}, + {"target2", FOFS(target2), F_LSTRING}, + {"localteam", FOFS(localteam), F_LSTRING}, + {"reactdelay", FOFS(reactdelay), F_FLOAT}, + {"currentcash", FOFS(currentcash), F_INT}, + {"type", FOFS(type), F_LSTRING}, + {"head", FOFS(head), F_INT}, + {"key", FOFS(key), F_INT}, + {"target2_ent", FOFS(target2_ent), F_EDICT}, + {"missent", FOFS(missent), F_EDICT}, + {"handle", FOFS(handle), F_EDICT}, + {"handle2", FOFS(handle2), F_EDICT}, + {"save_self", FOFS(save_self), F_EDICT}, + {"save_other", FOFS(save_other), F_EDICT}, + {"deadticks", FOFS(deadticks), F_INT}, + {"thudsnd", FOFS(thudsnd), F_INT}, + {"head", FOFS(head), F_INT}, + {"firetype", FOFS(firetype), F_INT}, + {"thudsurf", FOFS(thudsurf), F_INT}, + {"lightit", FOFS(lightit), F_INT}, + {"option", FOFS(option), F_INT}, + {"noshadow", FOFS(noshadow), F_INT}, +// END JOSEPH + + {"acc", FOFS (acc), F_INT}, + {"cal", FOFS (cal), F_INT}, + + // Ridah, new stuff + + {"cast_group", FOFS(cast_group), F_INT}, + {"skin", FOFS(skin), F_INT}, + {"moral", FOFS(moral), F_INT}, + {"guard_radius", FOFS(guard_radius), F_INT}, + {"guard_target", FOFS(guard_target), F_LSTRING}, + {"name", FOFS(name), F_LSTRING}, + {"episode", FOFS(count), F_INT}, // used by worldspawn + {"scriptname", FOFS(scriptname), F_LSTRING}, + + {"onfireent", FOFS(onfireent), F_EDICT}, + {"leader", FOFS(leader), F_EDICT}, + {"leader_target", FOFS(leader_target), F_LSTRING}, + {"last_goal", FOFS(last_goal), F_EDICT}, + + {"order", FOFS(order), F_INT}, + {"order_timestamp", FOFS(order_timestamp), F_FLOAT}, + {"moveout_ent", FOFS(moveout_ent), F_EDICT}, + {"character_index", FOFS(character_index), F_INT}, + {"last_talk_time", FOFS(last_talk_time), F_FLOAT}, + {"profanity_level", FOFS(profanity_level), F_INT}, + {"guard_ent", FOFS(guard_ent), F_EDICT}, + {"sight_target", FOFS(sight_target), F_LSTRING}, + {"goal_ent", FOFS(goal_ent), F_EDICT}, + {"combat_goalent", FOFS(combat_goalent), F_EDICT}, + {"cover_ent", FOFS(cover_ent), F_EDICT}, + + {"episode_flags", FOFS(episode_flags), F_INT}, + + {"name_index", FOFS(name_index), F_INT}, + {"last_territory_touched", FOFS(last_territory_touched), F_EDICT}, + {"response_ent", FOFS(response_ent), F_EDICT}, + {"last_response_time", FOFS(last_response_time), F_FLOAT}, + {"last_response", FOFS(last_response), F_INT}, + + {"start_ent", FOFS(start_ent), F_EDICT}, + {"holdpos_ent", FOFS(holdpos_ent), F_EDICT}, + + {"next_combattarget", FOFS(next_combattarget), F_LSTRING}, + + {"activate_flags", FOFS(activate_flags), F_INT}, + {"biketime", FOFS(biketime), F_FLOAT}, + {"bikestate", FOFS(bikestate), F_INT}, + + {"vehicle_index", FOFS(vehicle_index), F_INT}, + + {"art_skins", FOFS(art_skins), F_LSTRING}, + + {"aiflags", FOFS(cast_info.aiflags), F_INT}, + + {"gun_noise_delay", FOFS(gun_noise_delay), F_FLOAT}, + + {"scale", FOFS(cast_info.scale), F_FLOAT}, + + {"voice_pitch", FOFS(voice_pitch), F_FLOAT}, + + {"health_threshold", FOFS(health_threshold), F_INT}, + {"health_target", FOFS(health_target), F_LSTRING}, + {"health_threshold2", FOFS(health_threshold2), F_INT}, + {"health_target2", FOFS(health_target2), F_LSTRING}, + {"health_threshold3", FOFS(health_threshold3), F_INT}, + {"health_target3", FOFS(health_target3), F_LSTRING}, + // Ridah, done. + + + {"goalentity", FOFS(goalentity), F_EDICT, FFL_NOSPAWN}, + {"movetarget", FOFS(movetarget), F_EDICT, FFL_NOSPAWN}, + {"enemy", FOFS(enemy), F_EDICT, FFL_NOSPAWN}, + {"oldenemy", FOFS(oldenemy), F_EDICT, FFL_NOSPAWN}, + {"activator", FOFS(activator), F_EDICT, FFL_NOSPAWN}, + {"groundentity", FOFS(groundentity), F_EDICT, FFL_NOSPAWN}, + {"teamchain", FOFS(teamchain), F_EDICT, FFL_NOSPAWN}, + {"teammaster", FOFS(teammaster), F_EDICT, FFL_NOSPAWN}, + {"owner", FOFS(owner), F_EDICT, FFL_NOSPAWN}, + {"mynoise", FOFS(mynoise), F_EDICT, FFL_NOSPAWN}, + {"mynoise2", FOFS(mynoise2), F_EDICT, FFL_NOSPAWN}, + {"target_ent", FOFS(target_ent), F_EDICT, FFL_NOSPAWN}, + {"chain", FOFS(chain), F_EDICT, FFL_NOSPAWN}, + + {"prethink", FOFS(prethink), F_FUNCTION, FFL_NOSPAWN}, + {"think", FOFS(think), F_FUNCTION, FFL_NOSPAWN}, + {"blocked", FOFS(blocked), F_FUNCTION, FFL_NOSPAWN}, + {"touch", FOFS(touch), F_FUNCTION, FFL_NOSPAWN}, + {"use", FOFS(use), F_FUNCTION, FFL_NOSPAWN}, + {"pain", FOFS(pain), F_FUNCTION, FFL_NOSPAWN}, + {"die", FOFS(die), F_FUNCTION, FFL_NOSPAWN}, + + {"idle", FOFS(cast_info.idle), F_FUNCTION, FFL_NOSPAWN}, + {"search", FOFS(cast_info.search), F_FUNCTION, FFL_NOSPAWN}, + {"dodge", FOFS(cast_info.dodge), F_FUNCTION, FFL_NOSPAWN}, + {"attack", FOFS(cast_info.attack), F_FUNCTION, FFL_NOSPAWN}, + {"long_attack", FOFS(cast_info.long_attack), F_FUNCTION, FFL_NOSPAWN}, + {"sight", FOFS(cast_info.sight), F_FUNCTION, FFL_NOSPAWN}, + {"duck", FOFS(cast_info.duck), F_FUNCTION, FFL_NOSPAWN}, + {"talk", FOFS(cast_info.talk), F_FUNCTION, FFL_NOSPAWN}, + {"avoid", FOFS(cast_info.avoid), F_FUNCTION, FFL_NOSPAWN}, + + {"backoff", FOFS(cast_info.backoff), F_FUNCTION, FFL_NOSPAWN}, + + {"catch_fire", FOFS(cast_info.catch_fire), F_FUNCTION, FFL_NOSPAWN}, + {"checkattack", FOFS(cast_info.checkattack), F_FUNCTION, FFL_NOSPAWN}, + {"currentmove", FOFS(cast_info.currentmove), F_MMOVE, FFL_NOSPAWN}, + + {"oldcurrentmove", FOFS(cast_info.oldcurrentmove), F_MMOVE, FFL_NOSPAWN}, + + {"move_stand", FOFS(cast_info.move_stand), F_MMOVE, FFL_NOSPAWN}, + {"move_crstand", FOFS(cast_info.move_crstand), F_MMOVE, FFL_NOSPAWN}, + {"move_run", FOFS(cast_info.move_run), F_MMOVE, FFL_NOSPAWN}, + {"move_runwalk", FOFS(cast_info.move_runwalk), F_MMOVE, FFL_NOSPAWN}, + {"move_crwalk", FOFS(cast_info.move_crwalk), F_MMOVE, FFL_NOSPAWN}, + {"move_jump", FOFS(cast_info.move_jump), F_MMOVE, FFL_NOSPAWN}, + {"move_crouch_down", FOFS(cast_info.move_crouch_down), F_MMOVE, FFL_NOSPAWN}, + {"move_stand_up", FOFS(cast_info.move_stand_up), F_MMOVE, FFL_NOSPAWN}, + {"move_avoid_walk", FOFS(cast_info.move_avoid_walk), F_MMOVE, FFL_NOSPAWN}, + {"move_avoid_run", FOFS(cast_info.move_avoid_run), F_MMOVE, FFL_NOSPAWN}, + {"move_avoid_reverse_walk", FOFS(cast_info.move_avoid_reverse_walk), F_MMOVE, FFL_NOSPAWN}, + {"move_avoid_reverse_run", FOFS(cast_info.move_avoid_reverse_run), F_MMOVE, FFL_NOSPAWN}, + {"move_avoid_crwalk", FOFS(cast_info.move_avoid_crwalk), F_MMOVE, FFL_NOSPAWN}, + {"move_lside_step", FOFS(cast_info.move_lside_step), F_MMOVE, FFL_NOSPAWN}, + {"move_rside_step", FOFS(cast_info.move_rside_step), F_MMOVE, FFL_NOSPAWN}, + {"move_start_climb", FOFS(cast_info.move_start_climb), F_MMOVE, FFL_NOSPAWN}, + {"move_end_climb", FOFS(cast_info.move_end_climb), F_MMOVE, FFL_NOSPAWN}, + {"move_evade", FOFS(cast_info.move_evade), F_MMOVE, FFL_NOSPAWN}, + {"move_stand_evade", FOFS(cast_info.move_stand_evade), F_MMOVE, FFL_NOSPAWN}, + + + {"avoid_ent", FOFS(cast_info.avoid_ent), F_EDICT, FFL_NOSPAWN}, + {"talk_ent", FOFS(cast_info.talk_ent), F_EDICT, FFL_NOSPAWN}, + + {"friend_memory", FOFS(cast_info.friend_memory), F_CAST_MEMORY, FFL_NOSPAWN}, + {"neutral_memory", FOFS(cast_info.neutral_memory), F_CAST_MEMORY, FFL_NOSPAWN}, + {"enemy_memory", FOFS(cast_info.enemy_memory), F_CAST_MEMORY, FFL_NOSPAWN}, + + {"endfunc", FOFS(moveinfo.endfunc), F_FUNCTION, FFL_NOSPAWN}, + + + // temp spawn vars -- only valid when the spawn function is called + {"lip", STOFS(lip), F_INT, FFL_SPAWNTEMP}, + {"distance", STOFS(distance), F_INT, FFL_SPAWNTEMP}, + {"height", STOFS(height), F_INT, FFL_SPAWNTEMP}, + {"noise", STOFS(noise), F_LSTRING, FFL_SPAWNTEMP}, + {"pausetime", STOFS(pausetime), F_FLOAT, FFL_SPAWNTEMP}, + {"item", STOFS(item), F_LSTRING, FFL_SPAWNTEMP}, + +//need for item field in edict struct, FFL_SPAWNTEMP item will be skipped on saves + {"item", FOFS(item), F_ITEM}, + + {"gravity", STOFS(gravity), F_LSTRING, FFL_SPAWNTEMP}, + {"sky", STOFS(sky), F_LSTRING, FFL_SPAWNTEMP}, + {"minyaw", STOFS(minyaw), F_FLOAT, FFL_SPAWNTEMP}, + {"maxyaw", STOFS(maxyaw), F_FLOAT, FFL_SPAWNTEMP}, + {"minpitch", STOFS(minpitch), F_FLOAT, FFL_SPAWNTEMP}, + {"maxpitch", STOFS(maxpitch), F_FLOAT, FFL_SPAWNTEMP}, + {"nextmap", STOFS(nextmap), F_LSTRING, FFL_SPAWNTEMP}, + {"fogdensity", STOFS(fogdensity), F_FLOAT, FFL_SPAWNTEMP}, + {"fogval", STOFS(fogval), F_VECTOR, FFL_SPAWNTEMP}, + + {"fogdensity2", STOFS(fogdensity2), F_FLOAT, FFL_SPAWNTEMP}, + {"fogval2", STOFS(fogval2), F_VECTOR, FFL_SPAWNTEMP}, + + + {0, 0, 0, 0} + +}; + +field_t levelfields[] = +{ + {"changemap", LLOFS(changemap), F_LSTRING}, + + {"sight_client", LLOFS(sight_client), F_EDICT}, + {"sight_entity", LLOFS(sight_entity), F_EDICT}, + {"sound_entity", LLOFS(sound_entity), F_EDICT}, + {"sound2_entity", LLOFS(sound2_entity), F_EDICT}, + + {"characters", LLOFS(characters), F_IGNORE}, + + {NULL, 0, F_INT} +}; + +field_t clientfields[] = +{ + {"pers.weapon", CLOFS(pers.weapon), F_ITEM}, + {"pers.holsteredweapon", CLOFS(pers.holsteredweapon), F_ITEM}, + {"pers.lastweapon", CLOFS(pers.lastweapon), F_ITEM}, + {"newweapon", CLOFS(newweapon), F_ITEM}, + {NULL, 0, F_INT} +}; + +field_t castmemoryfields[] = +{ + {"response", CMOFS(response), F_FUNCTION}, + {"next", CMOFS(next), F_CAST_MEMORY}, + {"prev", CMOFS(prev), F_CAST_MEMORY}, + + {NULL, 0, F_INT} +}; + +/* +============ +InitGame + +This will be called when the dll is first loaded, which +only happens when a new game is started or a save game +is loaded. +============ +*/ +void InitGame (void) +{ + gi.dprintf ("==== InitGame ====\n"); + + gun_x = gi.cvar ("gun_x", "0", 0); + gun_y = gi.cvar ("gun_y", "0", 0); + gun_z = gi.cvar ("gun_z", "0", 0); + + //FIXME: sv_ prefix is wrong for these + sv_rollspeed = gi.cvar ("sv_rollspeed", "200", 0); + sv_rollangle = gi.cvar ("sv_rollangle", "0", 0); + sv_maxvelocity = gi.cvar ("sv_maxvelocity", "2000", 0); + sv_gravity = gi.cvar ("sv_gravity", "800", 0); + + // noset vars + dedicated = gi.cvar ("dedicated", "0", CVAR_NOSET); + + // latched vars + sv_cheats = gi.cvar ("cheats", "0", CVAR_SERVERINFO|CVAR_LATCH); + gi.cvar ("gamename", GAMEVERSION , CVAR_SERVERINFO | CVAR_LATCH); + gi.cvar ("gamedate", __DATE__ , CVAR_SERVERINFO | CVAR_LATCH); + + maxclients = gi.cvar ("maxclients", "4", CVAR_SERVERINFO | CVAR_LATCH); + deathmatch = gi.cvar ("deathmatch", "0", CVAR_LATCH); + coop = gi.cvar ("coop", "0", CVAR_LATCH); + skill = gi.cvar ("skill", "1", CVAR_LATCH); + + // JOSEPH 16-OCT-98 + maxentities = gi.cvar ("maxentities", /*"1024"*/"2048", CVAR_LATCH); + + // RAFAEL +// marines = gi.cvar ("marines", "0", CVAR_ARCHIVE); + + // change anytime vars + dmflags = gi.cvar ("dmflags", "0", CVAR_SERVERINFO|CVAR_ARCHIVE); + fraglimit = gi.cvar ("fraglimit", "0", CVAR_SERVERINFO); + timelimit = gi.cvar ("timelimit", "0", CVAR_SERVERINFO); + cashlimit = gi.cvar ("cashlimit", "0", CVAR_SERVERINFO); + password = gi.cvar ("password", "", CVAR_USERINFO); + filterban = gi.cvar ("filterban", "1", 0); + + g_select_empty = gi.cvar ("g_select_empty", "0", CVAR_ARCHIVE); + + run_pitch = gi.cvar ("run_pitch", "0.002", 0); + run_roll = gi.cvar ("run_roll", "0.005", 0); + bob_up = gi.cvar ("bob_up", "0.005", 0); + bob_pitch = gi.cvar ("bob_pitch", "0.002", 0); + bob_roll = gi.cvar ("bob_roll", "0.002", 0); + + // flood control + flood_msgs = gi.cvar ("flood_msgs", "4", 0); + flood_persecond = gi.cvar ("flood_persecond", "4", 0); + flood_waitdelay = gi.cvar ("flood_waitdelay", "10", 0); + +// Ridah, new cvar's + developer = gi.cvar ("developer", "0", 0); + + maxrate = gi.cvar ("maxrate", "25000", CVAR_SERVERINFO); + + ai_debug_memory = gi.cvar ("ai_debug_memory", "0", 0); + + g_vehicle_test = gi.cvar ("g_vehicle_test", "0", CVAR_LATCH); // Enables Hovercars for all players + + dm_locational_damage = gi.cvar ("dm_locational_damage", "0", CVAR_SERVERINFO); + + showlights = gi.cvar ("showlights", "0", 0); + + r_directional_lighting = gi.cvar ("r_directional_lighting", "1", CVAR_ARCHIVE); + + cl_captions = gi.cvar ("cl_captions", "0", CVAR_ARCHIVE); // Ridah, disabled this by default, is that cool? + + sv_runscale = gi.cvar ("sv_runscale", "1.0", 0); // only effective in Deathmatch + + burn_enabled = gi.cvar("burn_enabled", "0", 0); + burn_size = gi.cvar("burn_size", "48", 0); + burn_intensity = gi.cvar("burn_intensity", "0.03", 0); + burn_r = gi.cvar("burn_r", "1.0", 0); + burn_g = gi.cvar("burn_g", "1.0", 0); + burn_b = gi.cvar("burn_b", "1.0", 0); + + timescale = gi.cvar("timescale", "1.0", 0); + + teamplay = gi.cvar("teamplay", "0", CVAR_LATCH|CVAR_SERVERINFO); + g_cashspawndelay = gi.cvar("g_cashspawndelay", "5", CVAR_ARCHIVE|CVAR_LATCH); + + // this is only used for single player games + cl_parental_lock = gi.cvar( "cl_parental_lock", "0", CVAR_NOSET); + cl_parental_override = gi.cvar( "cl_parental_override", "0", CVAR_NOSET); + + dm_realmode = gi.cvar( "dm_realmode", "0", CVAR_LATCH|CVAR_SERVERINFO); + + g_mapcycle_file = gi.cvar( "g_mapcycle_file", "", 0); +// Ridah, done. + + // items + InitItems (); + + Com_sprintf (game.helpmessage1, sizeof(game.helpmessage1), ""); + + Com_sprintf (game.helpmessage2, sizeof(game.helpmessage2), ""); + + // initialize all entities for this game + game.maxentities = maxentities->value; + g_edicts = gi.TagMalloc (game.maxentities * sizeof(g_edicts[0]), TAG_GAME); + globals.edicts = g_edicts; + globals.max_edicts = game.maxentities; + + g_cast_memory = gi.TagMalloc (MAX_CHARACTERS * MAX_CHARACTERS * sizeof(cast_memory_t), TAG_GAME ); + memset( g_cast_memory, 0, MAX_CHARACTERS * MAX_CHARACTERS * sizeof(cast_memory_t) ); + + g_cast_groups = gi.TagMalloc (MAX_CAST_GROUPS * sizeof(cast_group_t), TAG_GAME ); + memset( g_cast_groups, 0, MAX_CAST_GROUPS * sizeof(cast_group_t) ); + + // initialize all clients for this game + game.maxclients = maxclients->value; + game.clients = gi.TagMalloc (game.maxclients * sizeof(game.clients[0]), TAG_GAME); + globals.num_edicts = game.maxclients+1; +} + +//========================================================= + +void WriteField1 (FILE *f, field_t *field, byte *base) +{ + void *p; + int len; + int index; + + if (field->flags & FFL_SPAWNTEMP) + return; + + p = (void *)(base + field->ofs); + switch (field->type) + { + case F_INT: + case F_FLOAT: + case F_ANGLEHACK: + case F_VECTOR: + case F_IGNORE: + break; + + case F_LSTRING: + case F_GSTRING: + if ( *(char **)p ) + len = strlen(*(char **)p) + 1; + else + len = 0; + *(int *)p = len; + break; + case F_EDICT: + if ( *(edict_t **)p == NULL) + index = -1; + else + index = *(edict_t **)p - g_edicts; + *(int *)p = index; + break; + case F_CLIENT: + if ( *(gclient_t **)p == NULL) + index = -1; + else + index = *(gclient_t **)p - game.clients; + *(int *)p = index; + break; + case F_ITEM: + if ( *(edict_t **)p == NULL) + index = -1; + else + index = *(gitem_t **)p - itemlist; + *(int *)p = index; + break; + + case F_CAST_MEMORY: + if ( *(cast_memory_t **)p == NULL) + index = -1; + else + index = *(cast_memory_t **)p - g_cast_memory; + *(int *)p = index; + break; + + //relative to code segment + case F_FUNCTION: + if (*(byte **)p == NULL) + index = 0; + else + index = *(byte **)p - ((byte *)InitGame); + *(int *)p = index; + break; + + //relative to data segment + case F_MMOVE: + if (*(byte **)p == NULL) + index = 0; + else + index = *(byte **)p - (byte *)&mmove_reloc; + *(int *)p = index; + break; + + default: + gi.error ("WriteEdict: unknown field type"); + } +} + + +void WriteField2 (FILE *f, field_t *field, byte *base) +{ + int len; + void *p; + + if (field->flags & FFL_SPAWNTEMP) + return; + + p = (void *)(base + field->ofs); + switch (field->type) + { + case F_LSTRING: + if ( *(char **)p ) + { + len = strlen(*(char **)p) + 1; + fwrite (*(char **)p, len, 1, f); + } + break; + } +} + +void ReadField (FILE *f, field_t *field, byte *base) +{ + void *p; + int len; + int index; + + if (field->flags & FFL_SPAWNTEMP) + return; + + p = (void *)(base + field->ofs); + switch (field->type) + { + case F_INT: + case F_FLOAT: + case F_ANGLEHACK: + case F_VECTOR: + case F_IGNORE: + break; + + case F_LSTRING: + len = *(int *)p; + if (!len) + *(char **)p = NULL; + else + { + *(char **)p = gi.TagMalloc (len, TAG_LEVEL); + fread (*(char **)p, len, 1, f); + } + break; + case F_EDICT: + index = *(int *)p; + if ( index == -1 ) + *(edict_t **)p = NULL; + else + *(edict_t **)p = &g_edicts[index]; + break; + case F_CLIENT: + index = *(int *)p; + if ( index == -1 ) + *(gclient_t **)p = NULL; + else + *(gclient_t **)p = &game.clients[index]; + break; + case F_ITEM: + index = *(int *)p; + if ( index == -1 ) + *(gitem_t **)p = NULL; + else + *(gitem_t **)p = &itemlist[index]; + break; + + case F_CAST_MEMORY: + index = *(int *)p; + if ( index == -1 ) + *(cast_memory_t **)p = NULL; + else + *(cast_memory_t **)p = &g_cast_memory[index]; + break; + + //relative to code segment + case F_FUNCTION: + index = *(int *)p; + if ( index == 0 ) + *(byte **)p = NULL; + else + *(byte **)p = ((byte *)InitGame) + index; + break; + + //relative to data segment + case F_MMOVE: + index = *(int *)p; + if (index == 0) + *(byte **)p = NULL; + else + *(byte **)p = (byte *)&mmove_reloc + index; + break; + + default: + gi.error ("ReadEdict: unknown field type"); + } +} + +//========================================================= + +/* +============== +WriteClient + +All pointer variables (except function pointers) must be handled specially. +============== +*/ +void WriteClient (FILE *f, gclient_t *client) +{ + field_t *field; + gclient_t temp; + + // all of the ints, floats, and vectors stay as they are + temp = *client; + + // change the pointers to lengths or indexes + for (field=clientfields ; field->name ; field++) + { + WriteField1 (f, field, (byte *)&temp); + } + + // write the block + fwrite (&temp, sizeof(temp), 1, f); + + // now write any allocated data following the edict + for (field=clientfields ; field->name ; field++) + { + WriteField2 (f, field, (byte *)client); + } +} + +/* +============== +ReadClient + +All pointer variables (except function pointers) must be handled specially. +============== +*/ +void ReadClient (FILE *f, gclient_t *client) +{ + field_t *field; + + fread (client, sizeof(*client), 1, f); + + for (field=clientfields ; field->name ; field++) + { + ReadField (f, field, (byte *)client); + } +} + +/* +============ +WriteGame + +This will be called whenever the game goes to a new level, +and when the user explicitly saves the game. + +Game information include cross level data, like multi level +triggers, help computer info, and all client states. + +A single player death will automatically restore from the +last save position. +============ +*/ +void WriteGame (char *filename, qboolean autosave) +{ + FILE *f; + int i; + char str[16]; + + if (!autosave) + SaveClientData (); + + f = fopen (filename, "wb"); + if (!f) + gi.error ("Couldn't open %s", filename); + + memset (str, 0, sizeof(str)); + strcpy (str, __DATE__); + fwrite (str, sizeof(str), 1, f); + + game.autosaved = autosave; + fwrite (&game, sizeof(game), 1, f); + game.autosaved = false; + + for (i=0 ; iname ; field++) + { + WriteField1 (f, field, (byte *)&temp); + } + + temp.last_voice = NULL; // this can't be saved + + // write the block + fwrite (&temp, sizeof(temp), 1, f); + + // now write any allocated data following the edict + for (field=fields ; field->name ; field++) + { + WriteField2 (f, field, (byte *)ent); + } + +} + +/* +============== +WriteLevelLocals + +All pointer variables (except function pointers) must be handled specially. +============== +*/ +void WriteLevelLocals (FILE *f) +{ + field_t *field; + level_locals_t temp; + + // all of the ints, floats, and vectors stay as they are + temp = level; + + // change the pointers to lengths or indexes + for (field=levelfields ; field->name ; field++) + { + WriteField1 (f, field, (byte *)&temp); + } + + // write the block + fwrite (&temp, sizeof(temp), 1, f); + + // now write any allocated data following the edict + for (field=levelfields ; field->name ; field++) + { + WriteField2 (f, field, (byte *)&level); + } +} + +/* +============== +WriteCastMemories +============== +*/ +void WriteCastMemories (FILE *f) +{ + field_t *field; + cast_memory_t temp; + int i, j, out; + + for (i=0; iname ; field++) + { + WriteField1 (f, field, (byte *)(&temp)); + } + + // write the block + fwrite (&temp, sizeof(cast_memory_t), 1, f); + + // now write any allocated data following the edict + for (field=castmemoryfields ; field->name ; field++) + { + WriteField2 (f, field, (byte *)(&(g_cast_memory[i * MAX_CHARACTERS + j]))); + } + + } + } + + out = -1; + fwrite (&out, sizeof(out), 1, f); +} + +/* +============== +WriteCastGroups +============== +*/ +void WriteCastGroups (FILE *f) +{ + // write the block + fwrite (g_cast_groups, sizeof(cast_group_t) * MAX_CAST_GROUPS, 1, f); +} + +/* +============== +ReadCastGroups +============== +*/ +void ReadCastGroups (FILE *f) +{ + // write the block + fread (g_cast_groups, sizeof(cast_group_t) * MAX_CAST_GROUPS, 1, f); +} + + +/* +============== +ReadEdict + +All pointer variables (except function pointers) must be handled specially. +============== +*/ +void ReadEdict (FILE *f, edict_t *ent) +{ + field_t *field; + + // Ridah, save the object_bounds + int object_bounds[MAX_MODEL_PARTS][MAX_MODELPART_OBJECTS]; + int i; + + for (i=0; is.model_parts[i].object_bounds, sizeof(int)*MAX_MODELPART_OBJECTS ); + + fread (ent, sizeof(*ent), 1, f); + + for (field=fields ; field->name ; field++) + { + ReadField (f, field, (byte *)ent); + } + + // Ridah, restore object_bounds + for (i=0; is.model_parts[i].object_bounds, object_bounds[i], sizeof(int)*MAX_MODELPART_OBJECTS ); +} + +/* +============== +ReadLevelLocals + +All pointer variables (except function pointers) must be handled specially. +============== +*/ +void ReadLevelLocals (FILE *f) +{ + field_t *field; + + int i, j; + + fread (&level, sizeof(level), 1, f); + + for (field=levelfields ; field->name ; field++) + { + ReadField (f, field, (byte *)&level); + } + + // setup the global cast memory + for (i=0; iname ; field++) + { + ReadField (f, field, (byte *)&(g_cast_memory[i]) ); + } + } +} + +/* +================= +WriteLevel + +================= +*/ +void WriteLevel (char *filename) +{ + int i; + edict_t *ent; + FILE *f; + void *base; +// BEGIN: Xatrix/Ridah/Navigator/18-apr-1998 + active_node_data_t *node_data; +// END: Xatrix/Ridah/Navigator/18-apr-1998 + + f = fopen (filename, "wb"); + if (!f) + gi.error ("Couldn't open %s", filename); + +// BEGIN: Xatrix/Ridah/Navigator/18-apr-1998 + // don't save the nav data + node_data = level.node_data; + level.node_data = NULL; +// END: Xatrix/Ridah/Navigator/18-apr-1998 + + // write out edict size for checking + i = sizeof(edict_t); + fwrite (&i, sizeof(i), 1, f); + + // write out a function pointer for checking + base = (void *)InitGame; + fwrite (&base, sizeof(base), 1, f); + + // write the team data + WriteCastGroups (f); + + // write out the cast_memory data + WriteCastMemories (f); + + // write out level_locals_t + WriteLevelLocals (f); + + // write out all the entities + for (i=0 ; iinuse) + continue; + fwrite (&i, sizeof(i), 1, f); + WriteEdict (f, ent); + } + i = -1; + fwrite (&i, sizeof(i), 1, f); + + + // write the cast_memory data + + + fclose (f); + +// BEGIN: Xatrix/Ridah/Navigator/18-apr-1998 + // restore the nav data + level.node_data = node_data; +// END: Xatrix/Ridah/Navigator/18-apr-1998 + +} + + +/* +================= +ReadLevel + +SpawnEntities will allready have been called on the +level the same way it was when the level was saved. + +That is necessary to get the baselines +set up identically. + +The server will have cleared all of the world links before +calling ReadLevel. + +No clients are connected yet. +================= +*/ + +qboolean changing_levels=false; + +void ReadLevel (char *filename) +{ + int entnum; + FILE *f; + int i; + void *base; + edict_t *ent; + +// BEGIN: Xatrix/Ridah/Navigator/18-apr-1998 + // restore nav data + active_node_data_t *node_data; +// END: Xatrix/Ridah/Navigator/18-apr-1998 + + f = fopen (filename, "rb"); + if (!f) + gi.error ("Couldn't open %s", filename); + + // free any dynamic memory allocated by loading the level + // base state + gi.FreeTags (TAG_LEVEL); + + gi.ClearObjectBoundsCached(); // make sure we wipe the cached list + + num_object_bounds = 0; + memset (g_objbnds, 0, sizeof(g_objbnds)); + + // wipe all the entities + memset (g_edicts, 0, game.maxentities*sizeof(g_edicts[0])); + globals.num_edicts = maxclients->value+1; + + memset( g_cast_memory, 0, MAX_CHARACTERS * MAX_CHARACTERS * sizeof(cast_memory_t) ); + memset( g_cast_groups, 0, MAX_CAST_GROUPS * sizeof(cast_group_t) ); + + // check edict size + fread (&i, sizeof(i), 1, f); + if (i != sizeof(edict_t)) + { + fclose (f); + gi.error ("ReadLevel: mismatched edict size"); + } + + // check function pointer base address + fread (&base, sizeof(base), 1, f); +#ifdef _WIN32 + if (base != (void *)InitGame) + { + fclose (f); + gi.error ("ReadLevel: function pointers have moved"); + } +#else + gi.dprintf("Function offsets %d\n", ((byte *)base) - ((byte *)InitGame)); +#endif + +// BEGIN: Xatrix/Ridah/Navigator/18-apr-1998 + // save nav data + node_data = level.node_data; + level.node_data = NULL; +// END: Xatrix/Ridah/Navigator/18-apr-1998 + + // read the team data + ReadCastGroups (f); + + // load the cast memories + ReadCastMemories (f); + + // load the level locals + ReadLevelLocals (f); + +// BEGIN: Xatrix/Ridah/Navigator/18-apr-1998 + // restore nav data + level.node_data = node_data; + + // upon changing levels, the nav data is cleared, but when loading or starting a new game, + // the node data is loading in SpawnEntities() + if (!node_data) + { + level.node_data = gi.TagMalloc (sizeof (active_node_data_t), TAG_GAME); + NAV_ReadActiveNodes (level.node_data, level.mapname); + } +// END: Xatrix/Ridah/Navigator/18-apr-1998 + + // load all the entities + while (1) + { + + if (fread (&entnum, sizeof(entnum), 1, f) != 1) + { + fclose (f); + gi.error ("ReadLevel: failed to read entnum"); + } + if (entnum == -1) + break; + if (entnum >= globals.num_edicts) + globals.num_edicts = entnum+1; + + ent = &g_edicts[entnum]; + + ReadEdict (f, ent); + + // Ridah, restore the object bounds data + for (i=0; is.model_parts[i].objectbounds_filename) + { + gi.GetObjectBounds( ent->s.model_parts[i].objectbounds_filename, &ent->s.model_parts[i] ); + } + } + +// BEGIN: Xatrix/Ridah/Navigator/16-apr-1998 + // Init Navigational data for this entity + ent->active_node_data = level.node_data; + ent->nav_data.cache_node = -1; + ent->nav_build_data = NULL; // make sure it's null, since it'll be set in ClientConnect() anyway +// END: Xatrix/Ridah/Navigator/16-apr-1998 + + // let the server rebuild world links for this ent + memset (&ent->area, 0, sizeof(ent->area)); + gi.linkentity (ent); + } + + fclose (f); + + // mark all clients as unconnected + for (i=0 ; ivalue ; i++) + { + ent = &g_edicts[i+1]; + ent->client = game.clients + i; + ent->client->pers.connected = false; + } + + // init the characters array (we'll set it manually + memset( level.characters, 0, 4 * MAX_CHARACTERS ); + + // always set the client first + level.characters[0] = &g_edicts[1]; + + // do any load time things at this point + for (i=0 ; iinuse) + continue; + + // set the character array + if (((ent->svflags & SVF_MONSTER) && (ent->character_index > 0)) || ent->client) + { + level.characters[ent->character_index] = ent; + } + + // fire any cross-level triggers + if (ent->classname) + if (strcmp(ent->classname, "target_crosslevel_target") == 0) + ent->nextthink = level.time + ent->delay; + + // JOSEPH 19-JAN-99 + // Restore rotating train absmax absmin + if (!strcmp(ent->classname, "func_train_rotating")) + { + float max, v; + int i; + + max = 0; + for (i=0 ; i<3 ; i++) + { + v =fabs(ent->mins[i]); + if (v > max) + max = v; + v =fabs(ent->maxs[i]); + if (v > max) + max = v; + } + for (i=0 ; i<3 ; i++) + { + ent->absmin[i] = ent->s.origin[i] - max; + ent->absmax[i] = ent->s.origin[i] + max; + } + } + // END JOSEPH + + // Ridah, restore nextthink times for rain/snow clouds so they send the message to clients (this is ugly, but should work) + if ( !strcmp( ent->classname, "elements_raincloud" ) + || !strcmp( ent->classname, "elements_snowcloud" )) + { + ent->nextthink = level.time + (10 * FRAMETIME); + } + } + + + if (changing_levels) + { + int i; + edict_t *e; + + // kill any followers + for (i=0; iflags & FL_FOLLOWING) + { + // vanish! + AI_UnloadCastMemory( e ); + G_FreeEdict( e ); + } + } + + } + else // clear any following flags + { + int i; + edict_t *e; + + // kill any followers + for (i=0; iflags &= ~FL_FOLLOWING; + } + } + +} diff --git a/gamesrc/G_spawn.c b/gamesrc/G_spawn.c new file mode 100644 index 0000000..60b2235 --- /dev/null +++ b/gamesrc/G_spawn.c @@ -0,0 +1,1861 @@ +#include "g_local.h" + +typedef struct +{ + char *name; + void (*spawn)(edict_t *ent); +} spawn_t; + + +void SP_item_health (edict_t *self); +void SP_item_health_small (edict_t *self); +void SP_item_health_large (edict_t *self); +void SP_item_health_mega (edict_t *self); + +void SP_info_player_start (edict_t *ent); +void SP_info_player_deathmatch (edict_t *ent); +void SP_info_player_coop (edict_t *ent); +void SP_info_player_intermission (edict_t *ent); + +void SP_func_plat (edict_t *ent); +void SP_func_rotating (edict_t *ent); +void SP_func_button (edict_t *ent); +void SP_func_door (edict_t *ent); +void SP_func_door_secret (edict_t *ent); +void SP_func_door_rotating (edict_t *ent); +void SP_func_water (edict_t *ent); +void SP_func_train (edict_t *ent); +void SP_func_conveyor (edict_t *self); +void SP_func_wall (edict_t *self); +void SP_func_object (edict_t *self); +void SP_func_explosive (edict_t *self); +void SP_func_timer (edict_t *self); +void SP_func_areaportal (edict_t *ent); +void SP_func_clock (edict_t *ent); +void SP_func_killbox (edict_t *ent); + +void SP_trigger_always (edict_t *ent); +void SP_trigger_once (edict_t *ent); +void SP_trigger_multiple (edict_t *ent); +void SP_trigger_relay (edict_t *ent); +void SP_trigger_push (edict_t *ent); +void SP_trigger_hurt (edict_t *ent); +void SP_trigger_key (edict_t *ent); +void SP_trigger_counter (edict_t *ent); +void SP_trigger_elevator (edict_t *ent); +void SP_trigger_gravity (edict_t *ent); +void SP_trigger_monsterjump (edict_t *ent); + +void SP_target_temp_entity (edict_t *ent); +void SP_target_speaker (edict_t *ent); +void SP_target_explosion (edict_t *ent); +// JOSEPH 9-APR-99 +void SP_target_fire (edict_t *ent); +// END JOSEPH +void SP_target_changelevel (edict_t *ent); +void SP_target_secret (edict_t *ent); +void SP_target_goal (edict_t *ent); +void SP_target_splash (edict_t *ent); +void SP_target_spawner (edict_t *ent); +void SP_target_blaster (edict_t *ent); +void SP_target_crosslevel_trigger (edict_t *ent); +void SP_target_crosslevel_target (edict_t *ent); +void SP_target_laser (edict_t *self); +// void SP_target_help (edict_t *ent); +void SP_target_lightramp (edict_t *self); +void SP_target_earthquake (edict_t *ent); +void SP_target_character (edict_t *ent); +void SP_target_string (edict_t *ent); + +void SP_worldspawn (edict_t *ent); +void SP_viewthing (edict_t *ent); + +void SP_light (edict_t *self); +void SP_light_mine1 (edict_t *ent); +void SP_light_mine2 (edict_t *ent); +void SP_info_null (edict_t *self); +void SP_info_notnull (edict_t *self); +void SP_path_corner (edict_t *self); + +void SP_misc_explobox (edict_t *self); +void SP_misc_gib_arm (edict_t *self); +void SP_misc_gib_leg (edict_t *self); +void SP_misc_gib_head (edict_t *self); +void SP_misc_teleporter (edict_t *self); +void SP_misc_teleporter_dest (edict_t *self); + +void SP_turret_breach (edict_t *self); +void SP_turret_base (edict_t *self); +void SP_turret_driver (edict_t *self); + +// RAFAEL 14-APR-98 +void SP_rotating_light (edict_t *self); +void SP_object_repair (edict_t *self); +void SP_misc_crashviper (edict_t *ent); +void SP_misc_viper_missile (edict_t *self); +void SP_misc_amb4 (edict_t *ent); +void SP_target_mal_laser (edict_t *ent); +// END 14-APR-98 + +// cast spawns +void SP_cast_punk(edict_t *self); +void SP_cast_thug(edict_t *self); +void SP_cast_runt (edict_t *self); +void SP_cast_thug2(edict_t *self); + +void SP_cast_bitch (edict_t *ent); +void SP_cast_dog (edict_t *ent); +void SP_cast_shorty (edict_t *ent); +void SP_cast_whore (edict_t *ent); + +// AI stuff +void SP_ai_boundary (edict_t *ent); +void SP_ai_event_hostile (edict_t *ent); +void SP_ai_event_follow (edict_t *ent); +void SP_ai_guard (edict_t *self); +void SP_ai_territory ( edict_t *ent ); +void SP_ai_trigger_character (edict_t *ent); +void SP_ai_locked_door (edict_t *ent); + +// Episode specific entities +void SP_misc_skidrow_radio (edict_t *self); +void SP_misc_skidrow_ambush (edict_t *self); + +// Rafael's entities +void SP_misc_smoke (edict_t *ent); +// done. + +// testing models +void SP_misc_fidelA (edict_t *ent); +//void SP_misc_fidelC (edict_t *ent); +void SP_elps (edict_t *self); +void SP_misc_car (edict_t *ent); +//void SP_misc_caustic (edict_t *ent); + +// done. +void SP_cast_punk_window (edict_t *ent); +void SP_refl (edict_t *ent); + +//void SP_misc_fidelseg (edict_t *ent); + +// JOSEPH 4-MAY-99 +void SP_light_fire_esm (edict_t *ent); +void SP_light_fire_sm (edict_t *ent); +void SP_light_fire_med (edict_t *ent); +void SP_light_fire_lg (edict_t *ent); +void SP_smoke_esm (edict_t *ent); +void SP_smoke_sm (edict_t *ent); +void SP_smoke_med (edict_t *ent); +void SP_smoke_lg (edict_t *ent); +void SP_func_train_rotating (edict_t *ent); +void SP_func_subdoor_base (edict_t *ent); +void SP_func_subdoor_handle1 (edict_t *ent); +void SP_func_subdoor_handle2 (edict_t *ent); +//void SP_light_sun (edict_t *ent); +void SP_props_trashcanA (edict_t *ent); +void SP_props_trashcan_fall (edict_t *ent); +void SP_props_hydrant (edict_t *ent); +void SP_props_antenna1a (edict_t *self); +void SP_props_antenna2a (edict_t *self); +void SP_props_antenna3a (edict_t *self); +void SP_props_antenna1b (edict_t *self); +void SP_props_antenna2b (edict_t *self); +void SP_props_antenna3b (edict_t *self); +void SP_props_antenna1c (edict_t *self); +void SP_props_antenna2c (edict_t *self); +void SP_props_antenna3c (edict_t *self); +void SP_props_phone (edict_t *self); +void SP_props_aircon (edict_t *self); +void SP_props_fan (edict_t *self); +void SP_props_tablesetA (edict_t *self); +void SP_props_radio (edict_t *self); +void SP_cast_buma (edict_t *self); +void SP_cast_bumb (edict_t *self); +void SP_elements_raincloud (edict_t *self); +void SP_elements_snowcloud (edict_t *self); +void SP_misc_cutscene_trigger (edict_t *self); +void SP_misc_cutscene_camera (edict_t *self); +//void SP_props_crate (edict_t *self); +//void SP_props_crate_32 (edict_t *self); +//void SP_props_crate_48 (edict_t *self); +void SP_props_chair (edict_t *self); +void SP_props_extinguisherA (edict_t *self); +void SP_props_extinguisherB (edict_t *self); +void SP_light_sconce (edict_t *self); +void SP_props_motorcycle (edict_t *self); +void SP_props_ammocrate_bust (edict_t *self); +void SP_props_shelf (edict_t *self); +void SP_props_mattressA (edict_t *self); +void SP_props_mattressB (edict_t *self); +void SP_props_mattressC (edict_t *self); +void SP_trigger_motorcycle (edict_t *self); +void SP_props_tv (edict_t *self); +void SP_props_steam_machine (edict_t *ent); +void SP_light_bulb (edict_t *self); +void SP_props_trash (edict_t *self); +void SP_props_wall_fall (edict_t *self); +void SP_props_trashbottle (edict_t *self); +void SP_props_trashpaper (edict_t *self); +void SP_props_trashwall (edict_t *self); +void SP_props_trashcorner (edict_t *self); +void SP_props_trashbottle_vert (edict_t *self); +void SP_props_blimp (edict_t *self); +void SP_misc_use_cutscene (edict_t *self); +void SP_props_motorcycle_runaway (edict_t *self); +void SP_trigger_hurt_fire (edict_t *self); +void SP_props_shelf_fall (edict_t *self); +void SP_target_fire (edict_t *self); +void SP_props_rat (edict_t *self); +void SP_props_rat_spawner (edict_t *self); +void SP_props_rat_spawner_node (edict_t *self); +void SP_target_flamethrower (edict_t *ent); +void SP_light_pendant (edict_t *self); +void SP_light_deco_sconce (edict_t *self); +void SP_props_shelfB_fall (edict_t *self); +//void SP_props_crate_bust_sm (edict_t *self); +void SP_func_lift (edict_t *self); +void SP_props_roof_vent (edict_t *self); +void SP_props_rat_trigger (edict_t *self); +void SP_props2_truck_die (edict_t *self); +void SP_props_cola_machine (edict_t *self); +void SP_props_cig_machine (edict_t *self); +void SP_props2_barrels_fallA (edict_t *self); +void SP_props2_barrels_fallB (edict_t *self); +void SP_props2_clubcouch (edict_t *self); +void SP_props2_clubchair (edict_t *self); +void SP_props2_vaseA (edict_t *self); +void SP_props2_vaseB (edict_t *self); +void SP_props2_chair_conf (edict_t *self); +void SP_props2_shelf_metal_A_fall (edict_t *self); +void SP_props2_shelf_metal_B_fall (edict_t *self); +void SP_props2_deadguy (edict_t *self); +void SP_props2_chair_push (edict_t *self); +void SP_props_crate_bust_32 (edict_t *self); +void SP_props_crate_bust_48 (edict_t *self); +void SP_props_crate_bust_64 (edict_t *self); +// JOSEPH 8-JUN-99 +void SP_props2_flag (edict_t *self); +void SP_props2_fish (edict_t *self); +void SP_props2_fish_trigger (edict_t *self); +void SP_props2_fish_spawner (edict_t *self); +void SP_props2_fish_spawner_node (edict_t *self); +void SP_props2_wall_fish (edict_t *self); +void SP_props2_barrels_fall_ST (edict_t *self); +void SP_props2_sign (edict_t *self); +void SP_props2_lighthouse_beam (edict_t *self); +void SP_props2_boat (edict_t *self); +void SP_props2_buoy (edict_t *self); +void SP_props2_buoy_side (edict_t *self); +void SP_props2_deadguy_underwater (edict_t *self); +void SP_props2_buoy_animate (edict_t *self); +void SP_props2_gargoyle (edict_t *self); +void SP_props2_clothesline (edict_t *self); +void SP_props2_plant_XL (edict_t *self); +void SP_props2_plant_SM (edict_t *self); +void SP_props2_boatphone (edict_t *self); +void SP_props2_ashtray (edict_t *self); +void SP_props2_lunch (edict_t *self); +void SP_props2_deadgal_headless (edict_t *self); +void SP_props2_plant_bush (edict_t *self); +void SP_props2_boat_animate (edict_t *self); +void SP_props2_helicopter_animate (edict_t *self); +void SP_props2_car_animate (edict_t *self); +void SP_props2_car_topup (edict_t *self); +void SP_props2_car_topdown (edict_t *self); +void SP_props2_plant_fern (edict_t *self); +void SP_props2_pinball_machine (edict_t *self); +void SP_props2_barrels_PV_A (edict_t *self); +void SP_props2_barrels_PV_C (edict_t *self); +void SP_props2_barrels_PV_D (edict_t *self); +void SP_props2_barrels_PV_E (edict_t *self); +void SP_props2_barrels_PV_F (edict_t *self); +void SP_light_chandelier (edict_t *self); +void SP_props2_air_train (edict_t *self); +void SP_props3_dead_louie (edict_t *self); +void SP_props3_cut_boss_player_animate (edict_t *self); +void SP_props3_deco_fixture (edict_t *self); +void SP_props3_cut_boss_chick_animate (edict_t *self); +void SP_props3_cut_train_run_animate (edict_t *self); +void SP_props3_cut_A_animate (edict_t *self); +void SP_props3_cut_B_animate (edict_t *self); +void SP_props3_cut_C_animate (edict_t *self); +void SP_props3_cut_D_animate (edict_t *self); +void SP_props3_cash_counter_animate (edict_t *self); +// JOSEPH 11-JUN-99-C +void SP_props2_barrels_PV_B (edict_t *self); +void SP_props3_decanter (edict_t *self); +void SP_props3_whiskey_glass (edict_t *self); +void SP_props3_barrels_fall_nikki_A (edict_t *self); +void SP_props3_barrels_fall_nikki_B (edict_t *self); +void SP_props3_cut_run_to_car_animate (edict_t *self); +void SP_props3_cut_final_animate (edict_t *self); +void SP_props3_cash (edict_t *self); +void SP_props3_cut_truck_driver (edict_t *self); +void SP_props3_cut_pinball_guy_animate (edict_t *self); +// END JOSEPH + +void SP_path_corner_cast (edict_t *self); +void SP_misc_alarm (edict_t *ent); + +void SP_ai_safespot (edict_t *ent); +void SP_ai_reset (edict_t *ent); +void SP_ai_combat_spot (edict_t *self); + +void SP_junior (edict_t *ent); + +void SP_misc_skidrow_afraid (edict_t *self); + +void SP_misc_steeltown_afraid (edict_t *self); + +void SP_misc_barry_fidelc_maya (edict_t *self); + +void SP_misc_corky_fidel_mdx_pcx (edict_t *self); +void SP_misc_corky_fidel_mdx_tga (edict_t *self); + +void SP_misc_cut_scene (edict_t *self); + +void SP_pawn_o_matic (edict_t *self); + +// weapon mods +void SP_pistol_mod_damage (edict_t *self); +void SP_pistol_mod_rof (edict_t *self); +void SP_pistol_mod_reload (edict_t *self); + +void SP_trigger_unlock (edict_t *self); + +void SP_sfx_beacon (edict_t *self); + +void SP_misc_skidrow_radio_repeater (edict_t *self); + +// void SP_immortal_hostility (edict_t *self); + +void SP_cast_bum_sit (edict_t *self); +void SP_trigger_hurt_electric (edict_t *self); +void SP_hmg_mod_cooling (edict_t *self); + +void SP_misc_pv_afraid (edict_t *self); + +void SP_misc_ty_afraid (edict_t *self); +void SP_ty_mo_boundry (edict_t *self); +void SP_sy_dykes_boundry (edict_t *ent); +void SP_misc_sy_afraid (edict_t *self); + +void SP_misc_kroker_afraid (edict_t *self); + +void SP_rc_initiation_observer (edict_t *self); +void SP_rc_initiation_brush ( edict_t *ent ); +void SP_ty_fuseblown ( edict_t *ent ); +void SP_moker_notinoffice ( edict_t *ent ); + +void SP_ep_skidrow_flag (edict_t *ent); +void SP_sy_oilcan ( edict_t *ent ); +void SP_ty_valvehandle ( edict_t *ent ); + +void SP_pv_fuse_blown1 (edict_t *ent); +void SP_pv_fuse_blown2 (edict_t *ent); +void SP_pv_deadlouie (edict_t *ent); +void SP_sy_blefty (edict_t *ent); + +spawn_t spawns[] = { + {"item_health", SP_item_health}, + {"item_health_small", SP_item_health_small}, + {"item_health_large", SP_item_health_large}, + {"item_health_mega", SP_item_health_mega}, + + {"info_player_start", SP_info_player_start}, + {"info_player_deathmatch", SP_info_player_deathmatch}, + {"info_player_coop", SP_info_player_coop}, + {"info_player_intermission", SP_info_player_intermission}, + + {"func_plat", SP_func_plat}, + {"func_button", SP_func_button}, + {"func_door", SP_func_door}, + {"func_door_secret", SP_func_door_secret}, + {"func_door_rotating", SP_func_door_rotating}, + {"func_rotating", SP_func_rotating}, + {"func_train", SP_func_train}, + {"func_water", SP_func_water}, + {"func_conveyor", SP_func_conveyor}, + {"func_areaportal", SP_func_areaportal}, + {"func_clock", SP_func_clock}, + {"func_wall", SP_func_wall}, + {"func_object", SP_func_object}, + {"func_timer", SP_func_timer}, + {"func_explosive", SP_func_explosive}, + {"func_killbox", SP_func_killbox}, + + // RAFAEL + {"func_object_repair", SP_object_repair}, + {"rotating_light", SP_rotating_light}, + + {"trigger_always", SP_trigger_always}, + {"trigger_once", SP_trigger_once}, + {"trigger_multiple", SP_trigger_multiple}, + {"trigger_relay", SP_trigger_relay}, + {"trigger_push", SP_trigger_push}, + {"trigger_hurt", SP_trigger_hurt}, + {"trigger_key", SP_trigger_key}, + {"trigger_counter", SP_trigger_counter}, + {"trigger_elevator", SP_trigger_elevator}, + {"trigger_gravity", SP_trigger_gravity}, + {"trigger_monsterjump", SP_trigger_monsterjump}, + + {"target_temp_entity", SP_target_temp_entity}, + {"target_speaker", SP_target_speaker}, + {"target_explosion", SP_target_explosion}, + {"target_changelevel", SP_target_changelevel}, + {"target_secret", SP_target_secret}, + {"target_goal", SP_target_goal}, + {"target_splash", SP_target_splash}, + {"target_spawner", SP_target_spawner}, + {"target_blaster", SP_target_blaster}, + {"target_crosslevel_trigger", SP_target_crosslevel_trigger}, + {"target_crosslevel_target", SP_target_crosslevel_target}, + {"target_laser", SP_target_laser}, +// {"target_help", SP_target_help}, + {"target_lightramp", SP_target_lightramp}, + {"target_earthquake", SP_target_earthquake}, + {"target_character", SP_target_character}, + {"target_string", SP_target_string}, + + // RAFAEL 15-APR-98 + {"target_mal_laser", SP_target_mal_laser}, + + + {"worldspawn", SP_worldspawn}, + {"viewthing", SP_viewthing}, + + {"light", SP_light}, + {"light_mine1", SP_light_mine1}, + {"light_mine2", SP_light_mine2}, + {"info_null", SP_info_null}, + {"func_group", SP_info_null}, + {"info_notnull", SP_info_notnull}, + {"path_corner", SP_path_corner}, + + // RAFAEL 11-05-98 + {"junior", SP_junior}, + // END 11-05-98 + + {"misc_explobox", SP_misc_explobox}, + {"misc_gib_arm", SP_misc_gib_arm}, + {"misc_gib_leg", SP_misc_gib_leg}, + {"misc_gib_head", SP_misc_gib_head}, + {"misc_teleporter", SP_misc_teleporter}, + {"misc_teleporter_dest", SP_misc_teleporter_dest}, + {"misc_amb4", SP_misc_amb4}, + +// Ridah, character spawns + {"cast_punk", SP_cast_punk}, + {"cast_thug", SP_cast_thug}, + {"cast_thug_sit", SP_cast_thug2}, + {"cast_bitch", SP_cast_bitch}, + {"cast_dog", SP_cast_dog}, +// Ridah, done. + + {"cast_runt", SP_cast_runt}, + {"cast_bum_sit", SP_cast_bum_sit}, + {"cast_shorty", SP_cast_shorty}, + {"cast_whore", SP_cast_whore}, + + {"cast_punk_window", SP_cast_punk_window}, + {"cast_punk2", SP_cast_thug}, // just for backwards compatibility + {"cast_rosie", SP_cast_bitch}, + + // AI stuff + {"ai_boundary", SP_ai_boundary}, + {"ai_event_hostile", SP_ai_event_hostile}, + {"ai_event_follow", SP_ai_event_follow}, + {"ai_guard", SP_ai_guard}, + {"ai_territory", SP_ai_territory}, + {"ai_trigger_character", SP_ai_trigger_character}, + {"ai_locked_door", SP_ai_locked_door}, + + // Episode specific entities + {"misc_skidrow_radio", SP_misc_skidrow_radio}, + {"misc_skidrow_ambush", SP_misc_skidrow_ambush}, + + {"misc_skidrow_radio_repeater", SP_misc_skidrow_radio_repeater}, + {"ai_ty_fuseblown", SP_ty_fuseblown}, + {"ai_moker_notinoffice", SP_moker_notinoffice}, +// Ridah, for testing purposes only!! + {"misc_grunt", SP_cast_thug}, + {"misc_fidelA", SP_misc_fidelA}, + {"misc_car", SP_misc_car}, +// Ridah done. + +// Rafael's entities + {"misc_smoke", SP_misc_smoke}, + {"elps", SP_elps}, +// {"misc_caustic", SP_misc_caustic}, + {"misc_alarm", SP_misc_alarm}, +// done. + + {"trigger_hurt_electric",SP_trigger_hurt_electric}, + + // {"immortal_hostility",SP_immortal_hostility}, + + {"pawn_o_matic", SP_pawn_o_matic}, + + {"ai_safespot", SP_ai_safespot}, + {"misc_skidrow_ai_reset", SP_ai_reset}, + {"ai_combat_spot",SP_ai_combat_spot}, + {"misc_skidrow_afraid", SP_misc_skidrow_afraid}, + {"misc_steeltown_afraid", SP_misc_steeltown_afraid}, + {"misc_kroker_afraid", SP_misc_kroker_afraid}, + + {"rc_initiation_observer", SP_rc_initiation_observer}, + {"rc_initiation_brush", SP_rc_initiation_brush}, + + {"misc_pv_afraid", SP_misc_pv_afraid}, + {"misc_ty_afraid", SP_misc_ty_afraid}, + {"ai_ty_mo_boundry", SP_ty_mo_boundry}, + {"ai_sy_dykes_boundry", SP_sy_dykes_boundry}, + {"misc_sy_afraid", SP_misc_sy_afraid}, + + {"ep_skidrow_flag", SP_ep_skidrow_flag}, + {"ai_sy_oilcan", SP_sy_oilcan}, + {"ai_ty_valvehandle", SP_ty_valvehandle}, + {"ai_pv_fuseblown1", SP_pv_fuse_blown1}, + {"ai_pv_fuseblown2", SP_pv_fuse_blown2}, + {"ai_pv_deadlouie", SP_pv_deadlouie}, + + {"ai_sy_blefty", SP_sy_blefty}, + + {"misc_barry_bitch", SP_misc_barry_fidelc_maya}, + + + {"misc_corky_fidel_mdx_pcx", SP_misc_corky_fidel_mdx_pcx}, + {"misc_corky_fidel_mdx_tga", SP_misc_corky_fidel_mdx_tga}, + + {"misc_cut_scene", SP_misc_cut_scene}, + +// Joseph's entities +// JOSEPH 4-MAY-99 + {"light_fire_esm",SP_light_fire_esm}, + {"light_fire_sm",SP_light_fire_sm}, + {"light_fire_med",SP_light_fire_med}, + {"light_fire_lg",SP_light_fire_lg}, + {"smoke_esm",SP_smoke_esm}, + {"smoke_sm",SP_smoke_sm}, + {"smoke_med",SP_smoke_med}, + {"smoke_lg",SP_smoke_lg}, + {"func_train_rotating", SP_func_train_rotating}, + {"func_subdoor_base", SP_func_subdoor_base}, + {"func_subdoor_handle1", SP_func_subdoor_handle1}, + {"func_subdoor_handle2", SP_func_subdoor_handle2}, + {"props_trashcanA", SP_props_trashcanA}, + {"props_trashcan_fall", SP_props_trashcan_fall}, + {"props_hydrant", SP_props_hydrant}, + {"props_antenna1a", SP_props_antenna1a}, + {"props_antenna1b", SP_props_antenna1b}, + {"props_antenna1c", SP_props_antenna1c}, + {"props_antenna2a", SP_props_antenna2a}, + {"props_antenna2b", SP_props_antenna2b}, + {"props_antenna2c", SP_props_antenna2c}, + {"props_antenna3a", SP_props_antenna3a}, + {"props_antenna3b", SP_props_antenna3b}, + {"props_antenna3c", SP_props_antenna3c}, + {"props_fan", SP_props_fan}, + {"props_phone", SP_props_phone}, + {"props_aircon", SP_props_aircon}, + {"props_tablesetA", SP_props_tablesetA}, + {"props_radio", SP_props_radio}, + {"cast_buma", SP_cast_buma}, + {"cast_bumb", SP_cast_bumb}, + {"elements_raincloud", SP_elements_raincloud}, + {"elements_snowcloud", SP_elements_snowcloud}, + {"misc_cutscene_trigger", SP_misc_cutscene_trigger}, + {"misc_cutscene_camera", SP_misc_cutscene_camera}, + //{"props_crate", SP_props_crate}, + //{"props_crate_32", SP_props_crate_32}, + //{"props_crate_48", SP_props_crate_48}, + {"trigger_unlock", SP_trigger_unlock}, + {"props_chair", SP_props_chair}, + {"props_extinguisherA", SP_props_extinguisherA}, + {"props_extinguisherB", SP_props_extinguisherB}, + {"light_sconce", SP_light_sconce}, + {"props_motorcycle", SP_props_motorcycle}, + {"props_ammocrate_bust", SP_props_ammocrate_bust}, + {"props_shelf", SP_props_shelf}, + {"props_mattressA", SP_props_mattressA}, + {"props_mattressB", SP_props_mattressB}, + {"props_mattressC", SP_props_mattressC}, + {"trigger_motorcycle", SP_trigger_motorcycle}, + {"props_tv", SP_props_tv}, + {"props_steam_machine", SP_props_steam_machine}, + {"light_bulb", SP_light_bulb}, + {"props_trash", SP_props_trash}, + {"props_wall_fall", SP_props_wall_fall}, + {"props_trashbottle", SP_props_trashbottle}, + {"props_trashwall", SP_props_trashwall}, + {"props_trashpaper", SP_props_trashpaper}, + {"props_trashcorner", SP_props_trashcorner}, + {"props_trashbottle_vert", SP_props_trashbottle_vert}, + {"props_blimp", SP_props_blimp}, + {"misc_use_cutscene", SP_misc_use_cutscene}, + {"props_motorcycle_runaway", SP_props_motorcycle_runaway}, + {"trigger_hurt_fire", SP_trigger_hurt_fire}, + {"props_shelf_fall", SP_props_shelf_fall}, + {"target_fire", SP_target_fire}, + {"props_rat", SP_props_rat}, + {"props_rat_spawner", SP_props_rat_spawner}, + {"props_rat_spawner_node", SP_props_rat_spawner_node}, + {"target_flamethrower", SP_target_flamethrower}, + {"light_deco_sconce", SP_light_deco_sconce}, + {"light_pendant", SP_light_pendant}, + {"props_shelfB_fall", SP_props_shelfB_fall}, + //{"props_crate_bust_sm", SP_props_crate_bust_sm}, + {"func_lift", SP_func_lift}, + {"props_roof_vent", SP_props_roof_vent}, + {"props_rat_trigger", SP_props_rat_trigger}, + {"props2_truck_die", SP_props2_truck_die}, + {"props_cola_machine", SP_props_cola_machine}, + {"props_cig_machine", SP_props_cig_machine}, + {"props2_barrels_fallA", SP_props2_barrels_fallA}, + {"props2_barrels_fallB", SP_props2_barrels_fallB}, + {"props2_clubcouch", SP_props2_clubcouch}, + {"props2_clubchair", SP_props2_clubchair}, + {"props2_vaseA", SP_props2_vaseA}, + {"props2_vaseB", SP_props2_vaseB}, + {"props2_chair_conf", SP_props2_chair_conf}, + {"props2_shelf_metal_A_fall", SP_props2_shelf_metal_A_fall}, + {"props2_shelf_metal_B_fall", SP_props2_shelf_metal_B_fall}, + {"props2_deadguy", SP_props2_deadguy}, + {"props2_chair_push", SP_props2_chair_push}, + {"props_crate_bust_32", SP_props_crate_bust_32}, + {"props_crate_bust_48", SP_props_crate_bust_48}, + {"props_crate_bust_64", SP_props_crate_bust_64}, + // JOSEPH 8-JUN-99 + {"props2_flag", SP_props2_flag}, + {"props2_fish", SP_props2_fish}, + {"props2_fish_trigger", SP_props2_fish_trigger}, + {"props2_fish_spawner", SP_props2_fish_spawner}, + {"props2_fish_spawner_node", SP_props2_fish_spawner_node}, + {"props2_wall_fish", SP_props2_wall_fish}, + {"props2_barrels_fall_ST", SP_props2_barrels_fall_ST}, + {"props2_sign", SP_props2_sign}, + {"props2_lighthouse_beam", SP_props2_lighthouse_beam}, + {"props2_boat", SP_props2_boat}, + {"props2_buoy", SP_props2_buoy}, + {"props2_buoy_side", SP_props2_buoy_side}, + {"props2_deadguy_underwater", SP_props2_deadguy_underwater}, + {"props2_buoy_animate", SP_props2_buoy_animate}, + {"props2_gargoyle", SP_props2_gargoyle}, + {"props2_clothesline", SP_props2_clothesline}, + {"props2_plant_XL", SP_props2_plant_XL}, + {"props2_plant_SM", SP_props2_plant_SM}, + {"props2_boatphone", SP_props2_boatphone}, + {"props2_ashtray", SP_props2_ashtray}, + {"props2_lunch", SP_props2_lunch}, + {"props2_deadgal_headless", SP_props2_deadgal_headless}, + {"props2_plant_bush", SP_props2_plant_bush}, + {"props2_boat_animate", SP_props2_boat_animate}, + {"props2_helicopter_animate", SP_props2_helicopter_animate}, + {"props2_car_animate", SP_props2_car_animate}, + {"props2_car_topdown", SP_props2_car_topdown}, + {"props2_car_topup", SP_props2_car_topup}, + {"props2_plant_fern", SP_props2_plant_fern}, + {"props2_pinball_machine", SP_props2_pinball_machine}, + {"props2_barrels_PV_A", SP_props2_barrels_PV_A}, + {"props2_barrels_PV_C", SP_props2_barrels_PV_C}, + {"props2_barrels_PV_D", SP_props2_barrels_PV_D}, + {"props2_barrels_PV_E", SP_props2_barrels_PV_E}, + {"props2_barrels_PV_F", SP_props2_barrels_PV_F}, + {"light_chandelier", SP_light_chandelier}, + {"props2_air_train", SP_props2_air_train}, + {"props3_dead_louie", SP_props3_dead_louie}, + {"props3_cut_boss_player_animate", SP_props3_cut_boss_player_animate}, + {"props3_deco_fixture", SP_props3_deco_fixture}, + {"props3_cut_boss_chick_animate", SP_props3_cut_boss_chick_animate}, + {"props3_cut_train_run_animate", SP_props3_cut_train_run_animate}, + {"props3_cut_A_animate", SP_props3_cut_A_animate}, + {"props3_cut_B_animate", SP_props3_cut_B_animate}, + {"props3_cut_C_animate", SP_props3_cut_C_animate}, + {"props3_cut_D_animate", SP_props3_cut_D_animate}, + {"props3_cash_counter_animate", SP_props3_cash_counter_animate}, + // JOSEPH 11-JUN-99-C + {"props2_barrels_PV_B", SP_props2_barrels_PV_B}, + {"props3_decanter", SP_props3_decanter}, + {"props3_whiskey_glass", SP_props3_whiskey_glass}, + {"props3_barrels_fall_nikki_A", SP_props3_barrels_fall_nikki_A}, + {"props3_barrels_fall_nikki_B", SP_props3_barrels_fall_nikki_B}, + {"props3_cut_run_to_car_animate", SP_props3_cut_run_to_car_animate}, + {"props3_cut_final_animate", SP_props3_cut_final_animate}, + {"props3_cash", SP_props3_cash}, + {"props3_cut_truck_driver", SP_props3_cut_truck_driver}, + {"props3_cut_pinball_guy_animate", SP_props3_cut_pinball_guy_animate}, + // END JOSEPH + + {"lightflare", SP_light}, + {"path_corner_cast", SP_path_corner_cast}, + +// weapon mods + {"pistol_mod_damage",SP_pistol_mod_damage}, + {"pistol_mod_rof",SP_pistol_mod_rof}, + {"pistol_mod_reload",SP_pistol_mod_reload}, + {"hmg_mod_cooling",SP_hmg_mod_cooling}, + + {"sfx_beacon", SP_sfx_beacon}, + + {"refl", SP_refl}, + + // Teamplay spawns + {"dm_cashspawn", SP_dm_cashspawn}, + {"dm_safebag", SP_dm_safebag}, + {"dm_props_banner", SP_dm_props_banner}, + + {NULL, NULL} +}; + +/* +=============== +ED_CallSpawn + +Finds the spawn function for the entity and calls it +=============== +*/ +void ED_CallSpawn (edict_t *ent) +{ + spawn_t *s; + gitem_t *item; + int i; + + if (!ent->classname) + { + gi.dprintf ("ED_CallSpawn: NULL classname\n"); + return; + } + +if (!stricmp( ent->classname, "weapon_barmachinegun" )) +{ +gi.dprintf("Hacking old BAR machine gun to grenade launcher for KPDM1-cash.bsp\n" ); +sprintf( ent->classname, "weapon_grenadelauncher" ); +} + + + // Ridah: hack, KPDM1 has "item_flametank" which are now "ammo_flametank" + if (!strcmp( ent->classname, "item_flametank" )) + strcpy( ent->classname, "ammo_flametank" ); + + + // check item spawn functions + for (i=0,item=itemlist ; iclassname) + continue; + if (!strcmp(item->classname, ent->classname)) + { // found it + SpawnItem (ent, item); + return; + } + } + + // check normal spawn functions + // JOSEPH 17-MAR-99-B + for (s=spawns ; s->name ; s++) + { + if (!strcmp(s->name, ent->classname)) + { // found it + + cvar_t *props; + + s->spawn (ent); + + // Special light + if ((ent->lightit > 0) && (ent->lightit < 32) && (!(ent->s.renderfx2&31))) + { + ent->s.renderfx2 &= ~RF2_DIR_LIGHTS; + ent->s.renderfx2 |= RF2_PASSLIGHT; + ent->s.renderfx2 |= ent->lightit; + } + + props = gi.cvar("props", "1", CVAR_ARCHIVE); + + // JOSEPH 13-APR-99 + ent->savesolid = ent->solid; + + if ((ent->option) && (!props->value)) + { + ent->svflags |= SVF_NOCLIENT; + ent->solid = SOLID_NOT; + } + // END JOSEPH + + // JOSEPH 19-MAR-99 + if (ent->noshadow) + { + ent->s.renderfx2 &= ~RF2_NOSHADOW; + } + // END JOSEPH + + return; + } + } + // END JOSEPH + + gi.dprintf ("%s doesn't have a spawn function\n", ent->classname); + + G_FreeEdict(ent); +} + +/* +============= +ED_NewString +============= +*/ +char *ED_NewString (char *string) +{ + char *newb, *new_p; + int i,l; + + l = strlen(string) + 1; + + newb = gi.TagMalloc (l, TAG_LEVEL); + + new_p = newb; + + for (i=0 ; i< l ; i++) + { + if (string[i] == '\\' && i < l-1) + { + i++; + if (string[i] == 'n') + *new_p++ = '\n'; + else + *new_p++ = '\\'; + } + else + *new_p++ = string[i]; + } + + return newb; +} + + + + +/* +=============== +ED_ParseField + +Takes a key/value pair and sets the binary values +in an edict +=============== +*/ +void ED_ParseField (char *key, char *value, edict_t *ent) +{ + field_t *f; + byte *b; + float v; + vec3_t vec; + + for (f=fields ; f->name ; f++) + { + if (!(f->flags & FFL_NOSPAWN) && !Q_stricmp(f->name, key)) + { // found it + if (f->flags & FFL_SPAWNTEMP) + b = (byte *)&st; + else + b = (byte *)ent; + + switch (f->type) + { + case F_LSTRING: + *(char **)(b+f->ofs) = ED_NewString (value); + break; + case F_VECTOR: + sscanf (value, "%f %f %f", &vec[0], &vec[1], &vec[2]); + ((float *)(b+f->ofs))[0] = vec[0]; + ((float *)(b+f->ofs))[1] = vec[1]; + ((float *)(b+f->ofs))[2] = vec[2]; + break; + case F_INT: + *(int *)(b+f->ofs) = atoi(value); + break; + case F_FLOAT: + *(float *)(b+f->ofs) = atof(value); + break; + case F_ANGLEHACK: + v = atof(value); + ((float *)(b+f->ofs))[0] = 0; + ((float *)(b+f->ofs))[1] = v; + ((float *)(b+f->ofs))[2] = 0; + break; + case F_IGNORE: + break; + } + return; + } + } + gi.dprintf ("%s is not a field\n", key); +} + +/* +==================== +ED_ParseEdict + +Parses an edict out of the given string, returning the new position +ed should be a properly initialized empty edict. +==================== +*/ +char *ED_ParseEdict (char *data, edict_t *ent) +{ + qboolean init; + char keyname[256]; + char *com_token; + + init = false; + memset (&st, 0, sizeof(st)); + +// go through all the dictionary pairs + while (1) + { + // parse key + com_token = COM_Parse (&data); + if (com_token[0] == '}') + break; + if (!data) + gi.error ("ED_ParseEntity: EOF without closing brace"); + + strncpy (keyname, com_token, sizeof(keyname)-1); + + // parse value + com_token = COM_Parse (&data); + if (!data) + gi.error ("ED_ParseEntity: EOF without closing brace"); + + if (com_token[0] == '}') + gi.error ("ED_ParseEntity: closing brace without data"); + + init = true; + + // keynames with a leading underscore are used for utility comments, + // and are immediately discarded by quake + + if (keyname[0] == '_') + if (strcmp(keyname, "_color")) // Ridah, let color through for model lighting + continue; + + ED_ParseField (keyname, com_token, ent); + } + + if (!init) + memset (ent, 0, sizeof(*ent)); + + return data; +} + + +// JOSEPH 20-NOV-98 +/* +================ +G_FindTeams + +Chain together all entities with a matching team field. + +All but the first will have the FL_TEAMSLAVE flag set. +All but the last will have the teamchain field set to the next one +================ +*/ +void G_FindTeams (void) +{ + edict_t *e, *e2, *chain; + int i, j; + int c, c2; + + c = 0; + c2 = 0; + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if (!e->inuse) + continue; + if (!e->team) + continue; + if (e->flags & FL_TEAMSLAVE) + continue; + chain = e; + e->teammaster = e; + c++; + c2++; + for (j=i+1, e2=e+1 ; j < globals.num_edicts ; j++,e2++) + { + if (!e2->inuse) + continue; + if (!e2->team) + continue; + if (e2->flags & FL_TEAMSLAVE) + continue; + if (!strcmp(e->team, e2->team)) + { + c2++; + chain->teamchain = e2; + e2->teammaster = e; + chain = e2; + e2->flags |= FL_TEAMSLAVE; + } + } + } + + gi.dprintf ("%i teams with %i entities\n", c, c2); + + c = 0; + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if (!e->inuse) + continue; + if (!e->missteam) + continue; + if (!e->misstime) + continue; + for (j=1, e2=g_edicts+j ; j < globals.num_edicts ; j++,e2++) + { + if (!e2->inuse) + continue; + if (!e2->missteam) + continue; + if (e2->misstime) + continue; + e->missent = e2; + c++; + break; + } + } + + gi.dprintf ("%i special teams\n", c); +} +// END JOSEPH + +/* +============== +SpawnEntities + +Creates a server's entity / program execution context by +parsing textual entity definitions out of an ent file. +============== +*/ + +// Ridah 5-8-99 +char last_changelevel[64]; +extern void LightConfigstrings (); + +void SpawnEntities (char *mapname, char *entities, char *spawnpoint) +{ + edict_t *ent; + int inhibit; + char *com_token; + int i; + float skill_level; + + skill_level = floor (skill->value); + if (skill_level < 0) + skill_level = 0; + if (skill_level > 4) + skill_level = 4; + if (skill->value != skill_level) + gi.cvar_forceset("skill", va("%f", skill_level)); + + SaveClientData (); + +// BEGIN: Xatrix/Ridah/Navigator/21-mar-1998 + NAV_PurgeActiveNodes (level.node_data); +// END: Xatrix/Ridah/Navigator/21-mar-1998 + + gi.FreeTags (TAG_LEVEL); + gi.ClearObjectBoundsCached(); // make sure we wipe the cached list + + memset (&level, 0, sizeof(level)); + memset (g_edicts, 0, game.maxentities * sizeof (g_edicts[0])); + + strncpy (level.mapname, mapname, sizeof(level.mapname)-1); + strncpy (game.spawnpoint, spawnpoint, sizeof(game.spawnpoint)-1); + + // Ridah 5-8-99, if the spawnpoint starts with "pawn_" only retain it if we have just come from a "pawn_" level + // ie. not if we just died + if ( (strstr(game.spawnpoint, "pawn_") == game.spawnpoint) + && (!last_changelevel || strstr(last_changelevel, "pawn_") != last_changelevel)) + { // clear it + game.spawnpoint[0] = '\0'; + } + + // now clear the changelevel string for next time + last_changelevel[0] = '\0'; + // done. + + num_object_bounds = 0; + memset (g_objbnds, 0, sizeof(g_objbnds)); + +// BEGIN: Xatrix/Ridah/Navigator/19-mar-1998 + // create the node data structure + level.node_data = gi.TagMalloc (sizeof (active_node_data_t), TAG_GAME); +// END: Xatrix/Ridah/Navigator/19-mar-1998 + + // set client fields on player ents + for (i=0 ; iclassname, "trigger_once") && !stricmp(ent->model, "*27")) + ent->spawnflags &= ~SPAWNFLAG_NOT_HARD; + + // remove things (except the world) from different skill levels or deathmatch + if (ent != g_edicts) + { + if (deathmatch->value) + { + if ( ent->spawnflags & SPAWNFLAG_NOT_DEATHMATCH ) + { + G_FreeEdict (ent); + inhibit++; + continue; + } + } + else + { + if ( /* ((coop->value) && (ent->spawnflags & SPAWNFLAG_NOT_COOP)) || */ + ((skill->value == 0) && (ent->spawnflags & SPAWNFLAG_NOT_EASY)) || + ((skill->value == 1) && (ent->spawnflags & SPAWNFLAG_NOT_MEDIUM)) || + (((skill->value == 2) || (skill->value >= 3)) && (ent->spawnflags & SPAWNFLAG_NOT_HARD)) + ) + { + G_FreeEdict (ent); + inhibit++; + continue; + } + } + + ent->spawnflags &= ~(SPAWNFLAG_NOT_EASY|SPAWNFLAG_NOT_MEDIUM|SPAWNFLAG_NOT_HARD|SPAWNFLAG_NOT_COOP|SPAWNFLAG_NOT_DEATHMATCH); + } + + ED_CallSpawn (ent); + } + + +// Ridah, HACK, fix spawn spots in team_towers + if (!strcmp( level.mapname, "team_towers" )) + { + edict_t *sp; + + sp = G_Spawn(); + sp->classname = G_CopyString( "info_player_deathmatch" ); + VectorSet( sp->s.origin, 928, -96, 32 ); + sp->s.angles[YAW] = 90; + ED_CallSpawn( sp ); + + sp = G_Spawn(); + sp->classname = G_CopyString( "info_player_deathmatch" ); + VectorSet( sp->s.origin, -944, -944, -32 ); + sp->s.angles[YAW] = 180; + ED_CallSpawn( sp ); + + sp = G_Spawn(); + sp->classname = G_CopyString( "info_player_deathmatch" ); + VectorSet( sp->s.origin, 320, 936, -32 ); + sp->s.angles[YAW] = 90; + ED_CallSpawn( sp ); + + sp = G_Spawn(); + sp->classname = G_CopyString( "info_player_deathmatch" ); + VectorSet( sp->s.origin, -1232, -944, -32 ); + sp->s.angles[YAW] = 0; + ED_CallSpawn( sp ); + + sp = G_Spawn(); + sp->classname = G_CopyString( "info_player_deathmatch" ); + VectorSet( sp->s.origin, 416, 1344, -32 ); + sp->s.angles[YAW] = 180; + ED_CallSpawn( sp ); + + sp = G_Spawn(); + sp->classname = G_CopyString( "info_player_deathmatch" ); + VectorSet( sp->s.origin, 1184, -672, 40 ); + sp->s.angles[YAW] = 180; + ED_CallSpawn( sp ); + + sp = G_Spawn(); + sp->classname = G_CopyString( "info_player_deathmatch" ); + VectorSet( sp->s.origin, -1184, -288, 256 ); + sp->s.angles[YAW] = 270; + ED_CallSpawn( sp ); + + // modifications + sp = NULL; + while (sp = G_Find( sp, FOFS(classname), "info_player_deathmatch" )) + { + if (VectorDistance( sp->s.origin, tv(552, -1704, 216) ) < 1) + { + sp->style = 2; + break; + } + } + } + if (!strcmp( level.mapname, "team_rival" )) + { + edict_t *sp; + + // modifications + sp = NULL; + while (sp = G_Find( sp, FOFS(classname), "info_player_deathmatch" )) + { + if (VectorDistance( sp->s.origin, tv(-736, 2272, 288) ) < 1) + { + sp->style = 2; + break; + } + } + } +// done. + + gi.dprintf ("%i entities inhibited\n", inhibit); + +#ifdef DEBUG + i = 1; + ent = EDICT_NUM(i); + while (i < globals.num_edicts) { + if (ent->inuse != 0 && ent->inuse != 1) + Com_DPrintf("Invalid entity %d\n", i); + i++, ent++; + } +#endif + + // Ridah, setup client-side Juniors + LightConfigstrings (); + + G_FindTeams (); + +// BEGIN: Xatrix/Ridah/Navigator/19-mar-1998 + NAV_ReadActiveNodes (level.node_data, level.mapname); +// END: Xatrix/Ridah/Navigator/19-mar-1998 + + // RAFAEL + MDX_Bbox_Init (); + +} + + +//=================================================================== + +#if 0 + // cursor positioning + xl + xr + yb + yt + xv + yv + + // drawing + statpic + pic + num + string + + // control + if + ifeq + ifbit + endif + +#endif + +// JOSEPH 15-FEB-99 +char *single_statusbar = +"yb -24 " + +// health +"xv 0 " +"hnum " +"xv 50 " +"pic 0 " + +// ammo +// JOSEPH 25-JAN-99 +"if 2 " +" xv 100 " +" anum 2 " +" xv 150 " +" pic 2 " +"endif " +// END JOSEPH + + +// RAFAEL +// weapon clip +"if 2 " +" xv 160 " +" wanum " +"endif " + +// JOSEPH 23-JAN-99-B +// cash +"xv 350 " +"cnum " +"xv 400 " +"pic 0 " +// END JOSEPH + +// JOSEPH 2-FEB-99 +"talk " +// END JOSEPH + +"hire " + +// armor +"if 4 " +" xv 200 " +" rnum " +" xv 250 " +" pic 4 " +"endif " + +// selected item +"if 6 " +" xv 296 " +" pic 6 " +"endif " + +"yb -50 " + +// JOSEPH 25-JAN-99 +// picked up item +"if 17 " +" xv 0 " +" pic 7 " +" xv 26 " +" yb -42 " +" stat_string 8 7 " +" yb -50 " +"endif " +// END JOSEPH + +// Ridah, 26-may-99, disabled this since it's listed above also (duplicated, so it's being drawn twice) +#if 0 +// JOSEPH 11-APR-99 +// cash +"xv 350 " +"cnum " +"xv 400 " +"pic 0 " +// END JOSEPH +#endif + +// timer +"if 9 " +" xv 262 " +" num 2 10 " +" xv 296 " +" pic 9 " +"endif " + +// help / weapon icon +"if 11 " +" xv 148 " +" pic 11 " +"endif " +; + +char *dm_statusbar = +"yb -24 " + +// health +"xv 0 " +"hnum " +"xv 50 " +"pic 0 " + +// ammo +// JOSEPH 25-JAN-99 +"if 2 " +" xv 100 " +" anum 2 " +" xv 150 " +" pic 2 " +"endif " +// END JOSEPH + + +// RAFAEL +// weapon clip +"if 2 " +" xv 160 " +" wanum " +"endif " + +// Ridah, 26-may-99, show frag count +"xv 350 " +"frags " + +// JOSEPH 2-FEB-99 +"talk " +// END JOSEPH + +"hire " + +"if 4 " +" xv 200 " +" rnum " +" xv 250 " +" pic 4 " +"endif " + +// selected item +"if 6 " +" xv 296 " +" pic 6 " +"endif " + +"yb -50 " + +// picked up item +"if 17 " +" xv 0 " +" pic 7 " +" xv 26 " +" yb -42 " +" stat_string 8 7 " +" yb -50 " +"endif " + +// timer +"if 9 " +" xv 262 " +" num 2 10 " +" xv 296 " +" pic 9 " +"endif " + +// help / weapon icon +"if 11 " +" xv 148 " +" pic 11 " +"endif " +; + +char *teamplay_statusbar = +"yb -24 " + +// health +"xv 0 " +"hnum " +"xv 50 " +"pic 0 " + +// ammo +"if 2 " +" xv 100 " +" anum 2 " +" xv 150 " +" pic 2 " +"endif " + +// weapon clip +"if 2 " +" xv 160 " +" wanum " +"endif " + +// cash +"xv 350 " +"cnum " +"xv 400 " +"pic 0 " + +"if 4 " +" xv 200 " +" rnum " +" xv 250 " +" pic 4 " +"endif " + +// selected item +"if 6 " +" xv 296 " +" pic 6 " +"endif " + +"yb -50 " + +// picked up item +"if 17 " +" xv 0 " +" pic 7 " +" xv 26 " +" yb -42 " +" stat_string 8 7 " +" yb -50 " +"endif " + +// timer +"if 9 " +" xv 262 " +" num 2 10 " +" xv 296 " +" pic 9 " +"endif " + +// help / weapon icon +"if 11 " +" xv 148 " +" pic 11 " +"endif " + +// Bagged cash +"bagcash " + +// Ridah, teamplay scores (NOTE: THIS MUST BE LAST!!) +"teams " +//"%s " disabled, since they get added dynamically according to the team-name strings +//"%s " + +; + + +/*QUAKED worldspawn (0 0 0) ? + +Only used for the world. +"episode" Kingpin episode number +"sky" environment map name +"sounds" music cd track number +"gravity" 800 is default gravity +"message" text to print at user logon +*/ +int client_connected; + +void SP_worldspawn (edict_t *ent) +{ + + // Ridah, don't allow deathmatching in single player maps + if (ent->count && deathmatch->value) + { + gi.error("\nCannot play this map in DEATHMATCH mode.\n"); + return; + } + + if (!deathmatch->value) + { + // stop them from screwing up single player + gi.cvar_forceset( "dmflags", "784" ); + } + + // Ridah, so we can init soundindex's for voice_table's + gameinc++; + + client_connected = 0; + + ent->movetype = MOVETYPE_PUSH; + ent->solid = SOLID_BSP; + ent->inuse = true; // since the world doesn't use G_Spawn() + ent->s.modelindex = 1; // world model is always index 1 + + //--------------- + + // clear all precached voices + if (num_precached_voices) + { + int i; + + for (i=0; isoundindex = 0; + + num_precached_voices = 0; + } + + memset( g_cast_memory, 0, MAX_CHARACTERS * MAX_CHARACTERS * sizeof(cast_memory_t) ); + memset( g_cast_groups, 0, MAX_CAST_GROUPS * sizeof(cast_group_t) ); + + num_flares = 0; + level.num_light_sources = 0; + + level.episode = ent->count; + + // Teamplay + Teamplay_InitTeamplay(); + + // Ridah, hack, since the bar doesn't have an episode value set + // if (!level.episode) + // level.episode = 1; + + // Ridah, init the lightpaint buffers + memset( lpbuf, 0, sizeof(lpbuf) ); + num_lpbuf = 0; + + // reserve some spots for dead player bodies for coop / deathmatch + InitBodyQue (); + + // set configstrings for items + SetItemNames (); + + if (st.nextmap) + strcpy (level.nextmap, st.nextmap); + + // make some data visible to the server + + if (ent->message && ent->message[0]) + { + gi.configstring (CS_NAME, ent->message); + strncpy (level.level_name, ent->message, sizeof(level.level_name)); + } + else + strncpy (level.level_name, level.mapname, sizeof(level.level_name)); + + gi.configstring (CS_DENSITY, va("%f", st.fogdensity)); + gi.configstring (CS_FOGVAL, va("%f %f %f", st.fogval[0], st.fogval[1], st.fogval[2])); + + + gi.configstring (CS_DENSITY2, va("%f", st.fogdensity2)); + gi.configstring (CS_FOGVAL2, va("%f %f %f", st.fogval2[0], st.fogval2[1], st.fogval2[2])); + + if (st.sky && st.sky[0]) + gi.configstring (CS_SKY, st.sky); + else + gi.configstring (CS_SKY, "sr"); + + gi.configstring (CS_CDTRACK, va("%i", ent->sounds) ); + + gi.configstring (CS_MAXCLIENTS, va("%i", (int)(maxclients->value) ) ); + + // status bar program + if (teamplay->value && deathmatch->value) + { + char str[1024]; + + // add the team names + strcpy( str, teamplay_statusbar ); + strcat( str, "\"" ); + strcat( str, team_names[1] ); + strcat( str, "\" \"" ); + strcat( str, team_names[2] ); + strcat( str, "\" " ); + gi.configstring (CS_STATUSBAR, str); + } + else if (deathmatch->value) + { + gi.configstring (CS_STATUSBAR, dm_statusbar); + } + else + { + gi.configstring (CS_STATUSBAR, single_statusbar); + } + + //--------------- + + // help icon for statusbar + /* + // Rafael: not in demo + + // we will be using this in the demo when Maxx makes the artwork + + gi.imageindex ("i_help"); + level.pic_health = gi.imageindex ("i_health"); + gi.imageindex ("help"); + gi.imageindex ("field_3"); + */ + + if (!st.gravity) + gi.cvar_set("sv_gravity", "800"); + else + gi.cvar_set("sv_gravity", st.gravity); + + // JOSEPH 29-MAR-99 + snd_fry = gi.soundindex ("actors/player/male/fry.wav"); // standing in lava / slime + // END JOSEPH + + // PrecacheItem (FindItem ("Blaster")); + + + // Ridah, in-game effects +// sp_blood1 = gi.modelindex("sprites/blood/blood1.sp2"); + + + // JOSEPH 29-MAR-99 + //gi.soundindex ("actors/player/lava1.wav"); + //gi.soundindex ("actors/player/lava2.wav"); + //gi.soundindex ("misc/pc_up.wav"); + //gi.soundindex ("misc/talk1.wav"); + //gi.soundindex ("misc/udeath.wav"); + + // gibs + //gi.soundindex ("items/respawn1.wav"); + // END JOSEPH + + // sexed sounds + + gi.soundindex ("*death1.wav"); + gi.soundindex ("*death2.wav"); + gi.soundindex ("*death3.wav"); + gi.soundindex ("*death4.wav"); + //gi.soundindex ("*fall1.wav"); + //gi.soundindex ("*fall2.wav"); + gi.soundindex ("*gurp1.wav"); // drowning damage + gi.soundindex ("*gurp2.wav"); + gi.soundindex ("*jump1.wav"); // player jump + gi.soundindex ("*jump2.wav"); // player jump + gi.soundindex ("*jump3.wav"); // player jump + gi.soundindex ("*pain25_1.wav"); + gi.soundindex ("*pain25_2.wav"); + gi.soundindex ("*pain50_1.wav"); + gi.soundindex ("*pain50_2.wav"); + gi.soundindex ("*pain75_1.wav"); + gi.soundindex ("*pain75_2.wav"); + gi.soundindex ("*pain100_1.wav"); + gi.soundindex ("*pain100_2.wav"); + + //------------------- + + // JOSEPH 29-MAR-99 + gi.soundindex ("actors/player/male/gasp1.wav"); // gasping for air + gi.soundindex ("actors/player/male/gasp2.wav"); // head breaking surface, not gasping + + //gi.soundindex ("actors/player/watr_in.wav"); // feet hitting water + //gi.soundindex ("actors/player/step water/step water.wav"); // feet leaving water + + //gi.soundindex ("actors/player/watr_un.wav"); // head going underwater + + //gi.soundindex ("actors/player/u_breath1.wav"); + //gi.soundindex ("actors/player/u_breath2.wav"); + //gi.soundindex ("items/pkup.wav"); // bonus item pickup + + //gi.soundindex ("world/land.wav"); // landing thud + //gi.soundindex ("misc/h2ohit1.wav"); // landing splash + + //gi.soundindex ("items/damage.wav"); + + //gi.soundindex ("items/protect.wav"); + //gi.soundindex ("items/protect4.wav"); + //gi.soundindex ("weapons/noammo.wav"); + // END JOSEPH + +// gi.soundindex ("infantry/inflies1.wav"); + +// JOSEPH 22-JAN-99 + gi.soundindex ("world/trash1.wav"); + gi.soundindex ("world/trash2.wav"); + gi.soundindex ("world/trash3.wav"); + gi.soundindex ("world/crate1.wav"); + gi.soundindex ("world/crate2.wav"); + gi.soundindex ("world/crate3.wav"); + gi.soundindex ("weapons/bullethit_tin.wav"); + gi.soundindex ("weapons/bullethit_tin2.wav"); + gi.soundindex ("weapons/bullethit_tin3.wav"); +// END JOSEPH + + gi.soundindex ("weapons/ric1.wav"); + gi.soundindex ("weapons/ric2.wav"); + gi.soundindex ("weapons/ric3.wav"); + + // ---------------------------------------------------------------------------------- + // Vweap weapon models + // + // !!!!!!!!!!!!!!! + // These must be defined in the same order as the corresponding CLIP_* in gl_locals.h, so that + // the client knows which model to use + // !!!!!!!!!!!!!!! + + gi.modelindex ("#w_pipe.mdx"); // CLIP_NONE + gi.modelindex ("#w_pistol.mdx"); // CLIP_PISTOL + gi.modelindex ("#w_shotgun.mdx"); // CLIP_SHOTGUN + gi.modelindex ("#w_tommygun.mdx"); // CLIP_TOMMGUN + gi.modelindex ("#w_heavy machinegun.mdx"); // CLIP_SLUGS + gi.modelindex ("#w_grenade launcher.mdx"); // CLIP_GRENADES + gi.modelindex ("#w_bazooka.mdx"); // CLIP_ROCKETS + gi.modelindex ("#w_flamethrower.mdx"); // CLIP_FLAMEGUN + // ---------------------------------------------------------------------------------- + + +// +// Setup light animation tables. 'a' is total darkness, 'z' is doublebright. +// + + // DAN 28-OCT-98 + // 0 normal + gi.configstring(CS_LIGHTS+0, "m"); + + // 1 FIRE FLICKER (first variety) + gi.configstring(CS_LIGHTS+1, "mmnmmommommnonmmonqnmmo"); + + // 2 SLOW STRONG PULSE + gi.configstring(CS_LIGHTS+2, "abcdefghijklmnopqrstuvwxyzyxwvutsrqponmlkjihgfedcba"); + + // 3 CANDLE (first variety) + gi.configstring(CS_LIGHTS+3, "mmmmmaaaaammmmmaaaaaabcdefgabcdefg"); + + // 4 FAST STROBE + gi.configstring(CS_LIGHTS+4, "mamamamamama"); + + // 5 GENTLE PULSE 1 + gi.configstring(CS_LIGHTS+5,"jklmnopqrstuvwxyzyxwvutsrqponmlkj"); + + // 6 FIRE FLICKER (second variety) + gi.configstring(CS_LIGHTS+6, "nmonqnmomnmomomno"); + + // 7 CANDLE (second variety) + gi.configstring(CS_LIGHTS+7, "mmmaaaabcdefgmmmmaaaammmaamm"); + + // 8 CANDLE (third variety) + gi.configstring(CS_LIGHTS+8, "mmmaaammmaaammmabcdefaaaammmmabcdefmmmaaaa"); + + // 9 SLOW STRONG STROBE + gi.configstring(CS_LIGHTS+9, "aaaaaaaazzzzzzzz"); + + // 10 FLUORESCENT FLICKER (first variety) + gi.configstring(CS_LIGHTS+10, "mmamammmmammamamaaamammma"); + + // 11 SLOW PULSE FADES TO BLACK + gi.configstring(CS_LIGHTS+11, "abcdefghijklmnopqrrqponmlkjihgfedcba"); + + // new kingpin light styles (these are still temp) + // 12 FIRE FLICKER (third variety) + gi.configstring(CS_LIGHTS+12, "mmnommomhkmmomnonmmonqnmmo"); + + // 13 FLUORESCENT FLICKER (second variety) + gi.configstring(CS_LIGHTS+13, "kmamaamakmmmaakmamakmakmmmma"); + + // 14 FLUORESCENT FLICKER (third variety) + gi.configstring(CS_LIGHTS+14, "kmmmakakmmaaamammamkmamakmmmma"); + + // 15 REALISTIC FADE (first variety) + gi.configstring(CS_LIGHTS+15, "mmnnoonnmmmmmmmmmnmmmmnonmmmmmmm"); + + // 16 REALISTIC FADE (second variety) + gi.configstring(CS_LIGHTS+16, "mmmmnonmmmmnmmmmmnonmmmmmnmmmmmmm"); + + // 17 SLOW STRONG STROBE (out of phase with 9) + gi.configstring(CS_LIGHTS+17, "zzzzzzzzaaaaaaaa"); + + // 18 THREE CYCLE STROBE (cycle 1) + gi.configstring(CS_LIGHTS+18, "zzzzzzzzaaaaaaaaaaaaaaaa"); + + // 19 THREE CYCLE STROBE (cycle 2) + gi.configstring(CS_LIGHTS+19, "aaaaaaaazzzzzzzzaaaaaaaa"); + + // 20 THREE CYCLE STROBE (cycle 3) + gi.configstring(CS_LIGHTS+20, "aaaaaaaaaaaaaaaazzzzzzzz"); + // END 28-OCT-98 + + // styles 32-62 are assigned by the light program for switchable lights + // styles 32-62 are assigned by the light program for switchable lights + + // 63 testing + gi.configstring(CS_LIGHTS+63, "a"); + +} + diff --git a/gamesrc/Game.ncb b/gamesrc/Game.ncb new file mode 100644 index 0000000000000000000000000000000000000000..d6b5ffcc4668e3c29104dd2272bd186c445dd960 GIT binary patch literal 484352 zcmeEv2Y?ktw)R)uee>MO1CyA@3_0hVa|Ve5!;lAo0R}`cV-}1U5F;WAm{D}iIUtB) z78L`cm=j{w|D3wFj=lFEWOi5g?Y?)XY3hD`LY+EYxvQ&(R7_h`Syef6aY3(Uy&5$t zSg@#a)}r!x1=GtHmrpIPno-cQY4hgcVD`X%031N!b+yL>Bz!qTy`)}NbT$4L_dwhO z|Fs@S`2Q^b@;CX5E#F`Me&JzZivNgvAnt*<2jU)xdm!$CxCi1MhPJ&n-@9SkOVQ)JTdn9y6mYt6QznCPt$qT@E9x5c&A4l9a@-X2MG zREqr_kw`}rll`4>v~`WuD`FqCn6cfES7Fdg|0!d$A ze1ot$R&RkjtyBtH;obj%U@V7!g53?}+e)TZNrq-QjKv(IuSi~VDfKt~i){Npjl znr~H!eMcgNjwmMjB)o`MaE8QJhH+SKFvV96FC9H3zG)bRF$NQT1_E@97WrA&W%=xp z#6OnK^T{p_4ZeVWZ=h>#T-|ST&4hbM<|{gbblMbG28Bg*8v36d?sD1e{{7F!)A-)z z>bBOev?G&oTO!bGe)+r^RTNB{+H7(8qFFN*SInPT8Nu@^r!Sd1<9A%OxN?yTR#eQd zT0DKm%&2sPyIKE^6OXExKWjn7{E4$z^`dDL%PY#JRxF-2yXiEy-a~ONnO9a-vA9OO z(<^7yh;PA?`A5}=anX|bHH*1wcIBeQ%W9-^@$4lvvyvHWob;t+z>LGkKVv~z`P{iR z;+wW;S=Hk5xeLnYmQSmh=D9U-KUuJ#vZ|tT{?Qe4=hjT`qVnk#mD4I};$PBUHM?TL zvhqdKt7??Ws-r5VFRENxGv38BX3Sk&xpaPwxEC)fub9t<9G-htS$RdxxXNbCUtEKP zvBI*M6|-j7AoptCc{Ao!E~-KPomDoiys8FD`;|?bO}mHHBvI4m)#O%D#Fg`=me(Na zS!FYq%%4`1m@5{~m{%ib&Z(SHHm{uE1gst$3o|iI za9!l8rfP`b5(HG1`jyfj(O-%RT#K_M{(9JeJs2anK6=nmDDn;9Q$Dpz=nXMJO;8^Q zZiL>dx9TpqF=o;6fZ!%*rkbfuf}0{+Wvh3@o@Q82N3qbG)A;;t98WlMf7;TvLSHPyF!9$AJ-;5sWX~|_?exa4#2>l; z!|7>G6Ko~^2p)k(bX+TVB-Q>6ktTQ)J^yJS_0)x==O3v9|EzlLP<7T{b^TwdM`LYb zpSe%e;O`*$KlOXgpIj~#tN>x1AAn*y-0eT}#FqbGiC=MHqVoT~^QPx(!F1PE$XX}Z zkF&4?ZwL<2)4vu71&w?nwV>?`ru>(ppTBJv{xpQGWGjk^o}u&aIFYYI`M0;zRB%2f zU<#s`_zQJ?u|nv@)SADGC?ys#^^fjOoF%Csce}c`w+pQ=jef@NQrd<3p0H5P$ ztP=h~sAmncqL}!H=;whKh&{tlhmI(w_(vekDzPpV`Elsyyyn~&!6ZLHKM#yz;-82| ztS79Sgg#mK$D)|%Q?M5wV!zO*>iRs2i9Vf1OJ`t_*fUetPf<+t*_cYt1ba*R=AfQk z{x3fdboZ@d%j3VhPTEBU(b(YrZLa;*;h$NT#oCJaU)%$65B%vKc$n(L)E~LM;2As* zb~2t3!37lP_CMPHcc>?)+y8eXbY4&MbI7#c7MgfUBmIBfzS-2`wTScwHFjwH+Y+6G z-;0B|MeXJK*u(mQm`m$}6w?*AuL;zH&o!9niL|!neKk+yQ)srYHyY6AOO)<^WMR0I zHY55#o|7)!E*P-=3ui-?I&qsw-VMj5=SE$>+P(&Z$V%`2nF~wg(Yjqx0wZy)9 zy8YEy$KL=O?HBBEqQ4Q2v#&Rp^fl4#_kf5z>1&1$)GRBCiB5eXI&O-{6K+K#nrwrK zzYUEKcB_U$Z%3oE9B8cl+X0W#c;FF;E^WF^{|d-;8{q`~NzB zjiM1!Q)$0UKlX5AfY^4z-5&qD+uvAQYKs5NcGLKc!u#%sI_-IpdCu9a<07!M-PK%BPp+2ftREg&xF7cnog{ zJxn9&Mo1N$OeLm;!IVGKba|K|^bA^S_MM7iqSw~_(cNNCKDyXm=Lz92q#o&5L^1If z>;B_6%&+^$CAxnc#bkdyJVEuv@(7)91FCO^8BFqxbop2nNe|&By1vj@`;S)(w#Ate ze+wG1cQu&!Tj}+I4~xBR(aE~ZiejR7(Ea095qZL$boq*6vZo7PvVOCci2iQ4!Fs`9 z;_spBnkg(ce$kXHiW02VkAG!8$_Z2Vozr5ZoF`FVTk}(duAn zoWk|>Fg>4fwdfl`GcI|EV&Wf#A60^NtLU46fOC$sSJFQbms?j`8teNpS=YyXgntUv zXL}IE6yH=m{#(HE+TYVL87Cl$i9S=0=Pa>jHnlK8L^0VjhgKj?l={Y$)x*^{?)v3W zzl|;v{=4g;UE~lGxBIub_E(4Omp^-r0OEgf55zt2r+Xli*8H0Gp4q>uXJ1)$dUd#kB^uh9MUJo{VKLFfrshxc$TV_lyo zQR~^!V5-kkb^BUd+1GDiiuu|_mQkNioW_Nr2bG8lfH(!zkGn@yK?*2Shs&sO!7@>Mr{N>kH{0fx$d7t zG0|Jn3jS^w&GLG@5}EIhVxqUD7Q7GUMd*Y(pp|vDrLk@wJL~bn;}QFb-W5++Us@V# zd%ElPzrEPs6Kkx;tSBaXdh7Onu+aM=Q{|{ACVGF}Kd3ME57g~(6jOYIaiMjI^_0jD zrFTObsaM4x!*%-{#l$}nDOL+>uh5Us{ii4<`WXD8lB|g#-;vV=v>VaIU z$=u`r28?z4OYi#8;hz8F@xS~1KOX;wQ%rkpA=8ubchCQMKIix6!4A##G;_@dd1%Dk z#5Et})$0X*e;(|k5q2ZA6a4|$>OMtt4P*uPC&Dy;unljLy{5nLp88ltF>QfvJM&eL=_T87=zqu$@M@QA}Ks{z6WKPPj<74^d3<)BA$fWc$mAKKj2@w?9!# z^!j)}J*$QZy`k=3Xsr7~jd7*@l)Y5wO?7)4#U$Sx3+>D81`>Zu{k$=XiQXEYs`l39 zBHvc`kD{39?eQwTFS%0a9d&yf#YFFn=ji+GU6`)z=}J%6l$smiCwd=jv->#PMZTZz zzeF+72hi+HC(IE02I>A+6cc?2rr4GCt)g!j^(an2Z}ImCT5s9cVB#9}ckQWr9?Seb zT$>tOuXEdBuKiE9qsETIg@0yyhZ_93%QwGIIXumjCkG)_sGg_FAX2{kC{j#!>XX>w}V> zu4rm?u`UtZ4J&EBZK~iNSZJMP-ADQ(>t}l6Rhs{5Np!krRK9xA?EeZ`Bg6S-67iZc z!uSp1<@{Dc;ZM=u{LU+5=Ht*^Moiv3ElOuzrr%0>4Q&k3-l8<#77ah7->(tTfh5vLzhmY+f6suOla&iAz$Z{)6gk;)*!pbSzzeQH`muHyzz`~I<<2o+gU@wg)Q}CwXAhj2@uvGZNG$NagVxcF~ijHY`l(Al~ zl8QvdALYm>7huei-m!4M* z#kWE)#bPW)dIVGZ(?E}>qnPwJrq*gLs)WBOJwJRNH#64jf12y@r^f5po|d?Vo?p82 zt0@ay_NptF?y_ijtCQ#Q$7QPxrG@!SzIT@w_isZt<(SKe(d*`O|2A|J((R7_{U7jv zyZz_>{qS0*y`i^H9Ksed_tt~zdBID|*-r|k(s4`Y>ck8`EqWVH46^HL`O zD!}olq1ZmlzK85p+Fp7ezjmGuQVzIxPKISLI$eO{s6ZR@D`KEpU}ur_K}p)|hVP*-=dW zi^%%k3ZZvIvenm$Vxo7^{fYA>eLZlidQwF((fjE6dRycNV1PBndWHFQ{X7Iu)A;Li zrfd6$p_!+rr?1#I0=qpQd&USJg+-nfp4oy&V~gie&vL;NFu=3GbFSbroawpEvsuzV z9osywc`^t){Nfh%?w+@ww?AilEXK3+^9PN!eHGZ@H1YHy`)E8v^f}m0?@ufjd=#Fs zpRuR1K24vCo%T+`AWQKzi1B;{snk})?=Ce42Rqg zs%{)~sJ<7Ebq?3>s%{)(#whMSUv+&zH{CtPGW{~P*Yx3xjc%Dk{WfW4JsaqL{Il5j zth&(H^8oq#SvuWu{LwXjf79@qF!r5J_PM#n^-}yV?t!=m{u&Rs+y5%3%5k^-N~fYWqriM7C* zGVZePu{#M)!}aziyRqO5JW1`rIKf#oI%%QyiN0Li@9cEyN&NXV|8{|Wnb3=VLd0?Oj9MZ$EC|CHzg$k>)=?6?!wgV(+#4i9IdQm)?(gO!!;l zOx4R^YOmVq`IXKRUnk5{r>f&bz8ku!IclNE_rQ_P0w-1Iy^!J*Il8^o?PG7;Zr^VI z-k$csP4-Q$_OvfwCS zOPnRn@9pgf+-cwGYHvs44*L#iZ{2NEb#0$%Q~r_mnAH%j^0h183Xk*nZKMMLpuraIx^`BJ9cc%o6^5%(CX&Z3P$MBKuOixA2$X3)=7U zYoXW2Q%=ycmF>HS)7KEE*=O2MGuHbf(E5Fqs%DFPGYoX*J6DT*3!Gv`)7e`jn~)2%3``k|Yie>_R__d+_Yr+HBL`=F82#ra9}_rtBuL(V9n z55U9J|K2Bf5KeV2az=~3;aKb3>>MZb(YVTf&~7302~@sUIClztBDy*Ko#zEl#yfTc zgUQ}0dOgtZ{qu6{ws*Vgi>Y|RdBQPe!Cj92Tj~S0nai`Wo#$WOw#VX{))(v(Q%}T( z|7^e7_&GM@x`peNL;dOUKRQyLQ$i^rcl*!p_qd<;^ZIE${!fkYbA9j>l@v-2-)+V%qMzR=J(>X;5orip5`YUr1e+r)gY$p@|}pTYM5FnI0Z98b3(^O z^wa+t7^k*7zX&}O^Fk+tvKj00mV;eRisu09*YV{cBQ!3wBf?Mi73usM#iXwkv%Gn} z=Ay3wCWNMj3dFv~$OudijFR}9(fWpBZ!N(su)uefuTcb(e%c$Djwq(9ZE%h6ZQmy0 zZ--gF`Mx7We@Dy;Tp8HLOgrmI8I(%;L!MAADF{rn64-;4e+xF&FSpatvK_DsNH|7QO+!aoro z1%C+6kn~K(ZT^S-lZ8G7b^ML|dnA2R@uM%p|B&G6_{R6W?`4ip-|v~2?3>~1Ci-S$ zh;OuSwcvSpBluzP4$)tU(cbCakA%Ju4ZNMb`-EPFuHI4JTO__E80VYl>&;lFXDQnH z2Kn^-fsX$eq=nK#vE{{JQ|7r$yURS|H==Dkm)%%eZ2!dQV>$Di`yqd%pLH5u?&Fx> zMhC}xn(Mlu$A(<)xjtD%K5)n9{>?J6b&$cPF8WvI5ZGoT@75b@>)|l#iS0KXPUes5 zJ;eXw9*BDYy8YMnBXERs#NYM*W&E$}OV{{66$R`%9{+DIGWEHI#&&1>D#2cApXQ-i zv7ra`^ZhKLhtbvUWq(*`=*bvoUu^dkdK&uJgY4#lGqBbEz-}x2S@irqSq&4Miz}#q zJ4bLnzOWkFj|ncqe)|*qEzws(>%%itZ?UgF#yM-9(}lkw*3fu%zVJ6emdaJh!cXgk zY&hRW=(_#q{!kQ?f7)TGdPQwzeIIfEsFPm*r|}aYdN;hL(yXl_-%GE5i(;bpL!nxt zu3`CgEI&}sA84%CKMX;0>l15**f)aqV{L2|i2b9G>oj(#+Y@bXN5kvXa>ffDiyqDh zM@f1nqNUT#HNP+kqwGoQLP7eF@O`I|X+zzm^Z{^?|d6KN*+cG7Mq5;`q{V0WQLo!k(*nn=*yy| z0movB@aNKc+_Q0$(DShwH{(Oby1gu-?+=}X-x#lB{UsQr&Q-NpUbn~fX!X)n$Q64U z((2mN(1PiDePUzU-*+Q=3%x1rNB9zsW4caHbG<+CD#0!3{lNnmBmAxDc|$MNTyO_^ zpZz@?V1DhtuCza*PdzQT7xGjK<(}`q3wPm!NcyNf?W^YtqnOgu9}m!eioZV(7=YX9 z(9hTP`-KB>8y$MSU%xLm2zS!)dwV^YR(IWj-`ndU7@!6y)6TfZq2?O5BeCOOGdAY- zh}#@DuW66m*Z$G9jfa}UXPxdgj^i>oHZ*Nz?0C}ME*e|i*SL)|*G=edH~IH}+nDom z%8#kbwU!hF{ zgS}Yq+vJ;G-(cPw{8rCmkq=^r{h-rAZ~}b`%45AO{K-^4hN>dbpNg@xKIJJcPrANH zM~<(*?K|D*=PGR#ebb>zm472_d@Rq+mq(GUhM0M=X~Gz-W7Tu+!)GD$P#<|;nReia3_g> zAYM+`n{bKHhoUrLM?yEj!?Bm{_BP=kiSt62hE5bb4t2tH!--qh{L8Q|cxUh~(RUm^2>cj0P54j5m{3LNI>D!4QRvi=Me>fW z-%r)^$6ZN2f=|=yv4V_s{ySaI#}*3x488uzEB-kf-9ke`BM6f`<(HLuy!WlxcP^4b zbwceV{tHkVYIDf>NmKurx->TAdTTG~HheV=jh>m54)c2-`S<{xu{t;obB%v<-Dm1n zbG-@KV6OB2@momG&7|AVO;|#HG4XNSu`-7CX*IH}*U(wky-&Tl&fz&^%Njbbqw_X8 zAEwj9@76IU=DM5bul{Z9WqE@kC{xd!^vPO>U_V{1i1J!vz zxBt3+i|qfW+y5x$^*-M;OlcKK(H(7UDi$%U3J&l~8`Uq}JZv)p- zH?n+vw!Z}~wl-QC>-xJb=2~;DhedxU`X*A?I$Pws)3-LCRC$cGJ$*2m*6V7ld3y-vyPg6kMw|Ds%r#+h#&{o^)R`*SU{ke%C1Bai+Kj;vV3! z3sR%|`^tKs5nLX*#g4A`*&o6De5-jAQ$IK~yR-{C8P{XF4xcC2CW392=^#NPot{IhwR21;&;GpC4gqss?z}Sc7 z^!{6p&;#^!tEK8y#;}MUqOWC4M2e;}4%2P{Gckzeb@@x8_v;p6Ra1jgP-2~Htr1N7 z{aQuV`+_rYrTSHk5&7Emo>^@xjp@4okcCTWJ^UpcpRSLJXhwWEikPnZ9}UUq`k2mi zT|c!V3)AtQwwKe>kyiY+L=SqW9>!SLM^kA%@+y0o z@XthZd$?UG`ex$|=N)H-(CPg;`rgL9V&7bR;T&*^n6A@5AA6n8oDD>e%tuw?0_y_n zSLWCDFT}mh)6Pzjufo;N-yBoE&3-yP$v$^oVCoZ7Cmbp?e6gXMzcs~u9qH$9%?_sD zOX&9&I>*p&j+1$rrw5&ehiTIfL1+0B=sdd`9qxEy^&1+?$I@cscH8BaGx2UB|FaI` zN5g-(kn3FcvlYXCsOyGq!s?z~fc|33``eO#EZUK2F+O6f$J_jV|D|}I@uyr~yp(T7 zRD19Fp2q*;9*BG3Ki>oH^3Uu2l3LJs;4LoS)c-Wk|8#pDnIF{8|4xq3d46y$@l(}A z{ED8~H^oV<=$Gyv*tCP)ER?l0bPqlZ?@H{_#$X@5@&S{eMI19)5I{8bPU$@UWv_Aew|5~Bf!5g7pLggI4PH#T8hF%Y4NO}sP5n)BG`IZ<@-(UWW>1E8{n!d(*j_M%vwm8jymA@bBTfp@8nB_m#zlr&WG46~^ zr_ei8{M8k&Cj62R#mS(#$rL(#lHQ)UH{qd#{(^hs>dIqljEB}?`w`wcS(BaS!4L9@H~+(!{mhJ31>0C-Y=mXwGzfAREfT6I6iPs;6~w} zf$!}Mr#`2r59^;r?;rH{rV4!yLcSv3w-Vo6Ot8!BM+8^mk%Z?HvRJ;Hga z(!T`#e6xHlnO?>8rKs>#`6`)y1moqjzN5Wzi0)|mv3h)-PyUKLk33F4pKK)fca68KR;vKLFw4-O3P@MUGCo|9^NC6u|BQ84$j3-NNs0uA?=T| z(7H_ci>bbNTwNsm4d7M7RW}_UD88n6&Y9u)R_LuT+q2K}zTkFf<1BUhi@uI{)1MU> zAo2B~@6WVyrU<6*(|SMfy)FFX@tN-ye--Q7$MKcnF8}L(kI>8Up$A@D5>G=qx%@HjD*A2od_{C~-HhQ`hUGITEOODA*NpE?UBlruq;nIUCO+23 z*Nr@ni4S*;dAMw|+*p^b#wMn_(=?L&$Z7igALKPQu{}mNr-|2poIzjN8SpLcS|6|-$96C{0ng$c9NWdsMPGXi44o1x6xU5`l4~D ze<(RZr~ZF`TK~KOQB3|Bh!wPd^Gb+Ex6WqKcOkxW26=vw^jw6eotK?ea{n&DR@xu$5}{v($Gp#aKaujX4xN*RC4DCJ zO&F0hIw?i`cOzORbu^glxfynno%EE%e=Cxb(hMg0?f50}m&C1-U+%!KiN6|5_HRW- zQfAU8B7ZlslL`zb`FrqN;%|ws3;jM6C6y#aG0`93E=5w3*!vLbB{edb=#M}psia>d z{>NY?Sq4-5PoPOs^Q6{tKexe?6i&KK^4m^4=Y7+gCimw>9PK~FKS$`V;!;nd_YR4F zH?DPVb1oBm_aMjL#Gfkq-=+OBezpswyzRr&iLWNE5=?uQJ4ZXa1b+-)N~e^iqW@D| zn0QIzkz&u6Sd+Lh@lmnoYitRA5G;`R51?syPPm)gzwfXld1dl>;*TFtm0V>o`QsXI@hWsbyet8LP?dokcNz#|9?x6916x01pS8M3_P4aIo^^n@8 z?iPKSw0h)r^{wd3rl(WatFJ|0F7-y+Tf0R*UtMF}Xmt?(6{@?E9!)x3>}{YPPkK2i ztkcK+*(U1Mq>qx`k@U7yH(U2w`$T_Rbw7Piy|>uYUabh678t^G-9C0v4~3ryUnl(C zRUnujd`0}(OT8I75c*i`@1uqX*9D`P(%(<{g1+ETxt{~n?$GW~6q9{}REva+@Gyyg zh*}@KEqJxuk6|h^+&KJ>=pUu_2UVy_(mPho4WAf(QuxQK!r;*0ne4B3xjj5m9Sk*1 z*evOvq{uz1<_o2e-bj0RagWrkTX+o1u)@^ud8oFiOwjb{P$J)!d zy898EAK9)$@fzPS-TeMX!|LpcwZWZEqyJEHi2ubs5cPn2{*TA|clI*lFNeO@*v?89 z>_sh2cmCI$@fQ0P5qJtBQS zNpNr4Z)CCBEByWNmX&IM&Gu;h1JThL>`W8;hTu9pgGGXeA&vG6eMaO*AnYCNeVggI zY~LuXNIWZX0^56#@o0RLsFJ!!{9~~t@xjEcB0nB4Ccd3`E6Z#D9f`e(UnVvZ`XoG> z_*`Nw!DYB1@#e%-@mD#nNW3=j3+Zo8!}&D6IYZ)`j+CUrq*T#Ai&mRljbgS>-~Xd9 z*>jEOHQ}F+aoz*o!Gf!3z2}!sOOZbsTh+trdB#3Y-!eR|o>L8k|2Vuz-$(m^?fH)B zC!xP*yyqv5Pp9t`jCE!?Ukg4R-+6!ZZexBue{>e=I_;gSCB3U?J?I50ij#S~-kOe$ zLcb7~s@qf)6a8ZP!fRVRCibqu`|5MGp6qk<`nk*W_wg>$7-ZjC`a(?uOecL2`sI{E z8^a;{9GxGopw(^laZtx+5&u>A+3|bs(f($<9tUVWZ8_;vI(_suyGMD?*7{ig^|YjK zdE!#he}n%1o}&BbX#S0~BYr)+&GBjbHqnfGQ*`TY@MisezoVG`9mjVgm4Nm*ndyGU zH_-~aj(Q%N+soI;E?x^|=C8TUa<}hHH`n+#&lMXv_w@@Xz9%V793DZob9gzO%)=+Q zi#+#j+UWnr-)IeFWL$FgYOR$43!8yTsV+`Gk z!S<2%HvJupA; z`bdLQvA3XE;RQnsPRH`xb8@d3YH%$q&%Y!8G{KqJn*VveU-W0=%lrlfZwft^_U4>i zFhp=3rWC9$Xe77*7Z==Lux^CWUxahg?npaJa9#S&-LGjACB3BxX1C3LN77p#?_`(e z_=MgN`*Z8pxmVKD7?TCg+@z$O^w`Wt=yaiCVa+ChnbAg<1Q zDf4d8KNuHe-ICR=5Ao~%)KL5_>xr!0qHj1p$!w5yyX3c#xV-kZ+DW4S2yD;Ule0?F zI|hC0oK|PP*gFnuvtQ2sUeY@OlXDm5wifzCoSFAQ-uvut9sgu>&K;e51LL0T|0%Rr zb*tRF#Q#&VC3k!7cEQupBX2_9kz(&myqCT@7 zVsmPC+EL<<`8YDYD*af&3vgWeMd_`?e~a*Z)~8tyi$50Q)w;jbeOvI+$S&z#a*^0~ z3_dFflx~vvm*bb>`gJEremM>ei^mrC68lfU_~O%xbHzU=;mqQ##g6!Q1@10>zj%-6 zI~CbQWknOjzSD70;fsaIQXia&+e_XrX)O8WY@AejbLjxFcNM0VoL4eb;yV{77u{0y zmfWxNY0byv((}Y$7oua~qQW~w-$k?+&%(NkBt4hl&BE^s2TA(ZV0qnp>z*R^tfl?& zdRtFQdaj`TX@~m%Ci<_U6-hT>yWndmU*xMjg0ICgb*XA7>A#Mia6E@Dg0Dvd+AnFk z;Eh;EGtys){ARq4@8AgiCX7&(sh$J zpLb$#+U&GZjCFtPE|jG8NPC6xiA?_+PNek?6;i(L#WL^P-jf91k8Zy6ef_0AdJug= z<)K``4`W*B#86wQj~}J?E3&Ly$)AtYZjLA5UM?@)Ild>cKH=Vki=_NKP3zlUOE_7| z*E4uK;b6jb;*T9z8M--?FZpjL9uKL6v*dn0k7fyF2_xiwy?~+CRO>Ub?pZK8`0HZ~3eO5BioKs=S9ouD zncVNs(IatG;x&@Lzr;BI#r~Bd|24MzfAw#a^c_G+V!OoQl79~3v+!@>46*-v1QK%+ z8%z3s#BT}d;TOceKVw7q>9EE6PT>3ZE6$|n&rgeeP}c`;3HVu`&R>?gB5+-xo!l=+ zT^Lv!P@>poZa8^Lvz zrzExH3&~&g>D$07)1H>}G*-LPUP)^u_oum(kmKUd`2D?8hteYDuy zS?#L(a@});zq?8=$t-zV?pJTMGv&pUB&O@~JXkHLbxEylQXdXg`{{k02Sk3j`riJ< zK2zu;)wy*pud`n48>6nOv%b#VLLa9-Ek00uQ10hMb+GuS;uj?Ta(W)LD|ou#Y3lph zbu#C2dDZuOhWaI`DEVh8Z}U{PXP{@b;3X=}+uK_y_;{7z>*8B2<>5s2g_G&oDfncy z-;?5fPw*+~U2o8LQ1EH$E$4lwnbhBBs3YlnY*WO)tJGl6@t&T7FHn8GOT9nH{a>w~ zEPA!*0`dQ)Dz&&)@k^5a%hc;d9~Ui``+KFzEY2;?6#rkXJ}vsCXruUVy~-;tDn3T+ z*`R(aN-i#8{^Pj3Y*KZL>lbeodu~(%N+y&9BtPG(CYDSoSt9xEcD1HtQ^|*7?^bnV z$*mpLRh9Ltz z@=nZaDfR@dlk-l`^GkYDtq-kVttd{W`9L#~HPL=puS#KooO&%%vvy=5k`a9{Z zB!6_Vo=tx}JyGa=tc0YLq^~5sL#!J!Zp%1X_=j0Y3MO4E`Ei7GRmP@_(MrSPc z;Dx|2!LzKF0`D74{;ja?4cr^(CG?}L4+1|0Hbw3a(dSwB1@1GL@_VKAOCTInrt(+A027W}Q>}vfB5{{X5n= zJ9|y`yON&ct-C{yhE|AwPqcywO%nDA|H-tQ^gugH%JV7KEconE96K!o$hO>3{AVU)-PnyZvd(+h28` zjs8Q0CSIny=Xv@1;hwp>>kXsl9}Q#U{i`wC_h+Ot)=rb|>aM%zt$BW$c}!@0csO7G zt8^2OJ7hcD*!ZTpbrZ4ISgyLX{$IQPSKOCBx(~5yM`G`R`<@=oHut@c)x$O%PX2Io zqrawnhTnwla^t?{_CZZ`ACB*EbQ8Y`Yr=2tg$Yd^@t+#H?W{@q-07(9UKw8woHyPpC?#@fS_E(xKn?*YAh(bAAUGkEijLrYrhB{T{VS#e8`P=!LZV(Qve< z^hM$?q9u^ydztO%ji~-;C+TfZJK}h;RpdL+`ncn8kHpuJa=0HwLhq#Cug?;CXT4r1UvL-t zf@B+%2<}R&h1#N%*xQYE;PN55pE%{m?)1i5De4HlhhDF9yx^XCJx^i8UdqqC(9mjV zoha$+O_@9y4~TtzD2La^rxJf(`eH^2R*SxV^hL>`SRwrV^?IMzgg$`2{@np>M1CL! z)A5wh2ceLT(*zIJ`v;sN{6qA91}_R8s`oosDR>y|&(#&riu`bTg5DgLh&?0pdZeF( zK9auB*$M-MK8kkxYKf!d{vAQ<4M*Y`(Lb8@8=QnsMScv5>9|(%(^woy2e%>S{2S@Y zAbEpLcm!RWPAB)*bBJdb>EJyMZguen=r_xneY`pRcbtEt^zmMUy!MCVd!77a;_Xbf zvd#CCT@78=ncjos3?GLLqrA-TzV80bG(KO6rqfNU?l(0-@xQ;=1Mc>p-~a79$+V9a z?JqaTo;1Z^2Vbe$)_lQUy+7ZssfO;S($pQrLJ#7_gudZ2(U*V$;cLR31t+7EIzbgp zCi$k+FwpwoA@n}vQ%rBoI1O9FuZG_$H~KTs$2rG|VyeGt(|$FX&X$RWo`v*a!{83# z&q3ed!r;4NUmdE=bFoO`&qv)rkH7}TSsY&>TKQ)BLP9S_h4)HVF8W{MQO@hYWv?|0Ln>fTuiPdR~$EJK;uWztcr<7nForhbFPV z6sNZvZVTKMxS8$I`vLVp_k__2d5rb`LcM6eqgDwmM7|Gp2R;v6$@fd|N7Iki3#_&I4T|=Lf|}0hp>JWKr8+45r{Mp20MhpT_bRVJCjTN$b4(O}-h|DxKH*)WN7f(TjE#Yf zfs2K{72AEgd_Rl)-L#+AHea#O@5g-Ka$lj)A4JQ_;)%C&C zcp>mwV1cCP8FUNw4xT9K*?|Xx+k(rqev9nii3k0!`jc6|V*EUArROs(Mg9f6?#~R& zk@#OhcAzNGhvV1zZx62bX82Z#{`b((*TQ!|?EesXzIwii!v6^}eL23}V*h8D;GOK9 zCH!AwsCS(AZpkkPF~vK}o6h_?KmQ2jP4#}xSdZ^4brG$&A1(Zj>QDWl9b!*_iv4^X zWd5<7zOdRw@54W$<7b?rvYk@r3%;Lv|F$&MKA~$ud&YV{vJCY+?U#0==*w0utaGg8 z;-7qV3q5b`uKfqnSEyD7R|nr=dkPqrsHOhZ{)Z)f4OO2&WuOhmul?6p{TxuiGqioo z-&7?8Q-iA+*JDh1oxbD<%rUch?~j<84ASrlIc2Qk~8 zZEvRdA~-}}*L(?=2u{F@bUY+DjF;&cD>#u_+~+Yza1zbu?ZWYblkox_y9B4;6*@MP zJ(PB`Ck=1;e)fGYI0JKh8-1^meA5F4CL&TQ7-o9T^_K>Mlomiy5Zn|=5B>I-g;Y=0yF*COAN_N#2}qi$_9eXY^b zH`dot_}k(E-y6O9$2SC*dtUMsivHnf z?V0B3DDtClv!guCB>#=UOwSt68-yM0|FQHn*NvDjcpSX}cRf55UxYrMzW%ToQ-nT2 z?|+me_(*J`V=To-{N#^`I8~jhHj{syb!^`x+)Bq#;h&5xbW|~2$6rP}>fDTFVsANa zu->#%CB4(If%Ze$BlH=xU(p7ugymCN|4dpDekXQ_zFD+B{dRmo_bZ}*Hoft;9$T6I z1oKy59UbS1J#$b&jJdQ2>L8&n zq4!&_!<|Aunr8p6MY^PSDeW+{72SmY7IQM&luL8kM`?LW`q8O*%ydf1Km-L=bmMA|9$Z{}y6 ze7gC~^={-lBgem)kHc8rKg8sp?sRG%*YCPbBG*jFbkml)(_!LdJN}v9EaN`eUyMz7 zsCaqb7~@;!zj_w1jqbxal>YL=oJO|^BP~_@|LQz&N(Hs=R6ZRdUQP1@R95x(fEe?9 z;0MwA$bko^Qhom`@e>R2`_SD}<|&^;cr4=peGP27x<+sa&)Xl^FSC4mribbIMo$c4 z`BscmsCFHvg3Pb=rPFHOrFcd3*TT=1*RB$ri7%{gta8R}SUwwPSnpf+h<&;E*ly#= z68=17+IQHMVowq7RL5HlnBI=%ORz*;p|-I+z0d8?(~?2-eWCp#-+)^5#<+*%9i6_0 z*htSWdkJoY>uGMLg{w7p^Z%|tZbAQI6ccs^>_3AOf&2XK%POW0BnBJV; zA6lo@3T{E)L%UX4T{Gz}WYJlR&f2<6d_y+#-kZNr=qLU^EdS9l0+;DA#QSjl2!A@+ zT|npIWDT9m;8Nm0gU;1-wj*7vvm1p>R6Y-=V!`$BoeEl0gufxKvF@=tN%|XOo9%Iq z6M9pG>_U4I(W!1E`9aJAXR0lzJgm)jcKV}q%R`hiuy&#>Q=_u zzSiVXk1mf~=KOR$HtgoQX4+`x`-V=7;$i;%8g)KcX?^f7)#TUT-g7ndnPLinG^= zj<1NG0mtijlZnpdhugz4&t}gK(#Pe8+r~sE(Ya4>CRI_BJe)r2auPj@Qs+epVQ!Bt z>Ob&$rdEP;boqNq^ygxxdfd8Ga2?#_`QF3h1*>baE@NBNkK z26LG+zfCxg_>ZOYY&yBG$~xX684lTQ4tr9#Gy3~KJS)Y``!Dps?D>)YKbQCVyq^%| zQ~n+(W9|=hBYLE~E1XT^?dFVid9&~|&ByH*x=phok6?pfhra*$6NU)((ic-!ph&O} zUR7IpG^P)I)9Rk~n1UaK9-`9e1KSrVzX@brV_ZO(`^y%MCmPXFC78Z1O2?ywBlSa) zUJtZYa58!E+S(*qF*-u@*QXhS&e+2G2Q$4f)l*?a#{t ze;eefJe5ZAIU^XirM1^}lvkZ zux=LIgZ9suYn?6j_ClUh;#?~F`rsIO%r?+eSbCCS<30r_pcHk z*$3_C7_VdfRXEl9*%~VROR2T;sWPTh`$j!8e5Afp0m=U-(rohG*dhF<(Ec$O;03m~ zKl7h~$LtsEO_H9KXlh?)b9*wDPIqYff3epMj-?xHLcY}_?a_*`;@mF6m(l6wbK874`k~~^^+U-Y>iVJNV)_3S{71e$ zT>Oat#XazE_JF(n=l6Y%TTJyCP{8f~PVB=$ss9}8RHLo^g1t1K_L#a_`29G|y4)Hh z^Z>51Zm@a^Jpog!Q>?q0uItxCjHmg)n*}G++c4u05dI7l((}Vg(N~+k=y)8S75*%G zf9DCzA^ymGS~iXFX$`R89O@Bd;w0ja&~x?s1?4Q?meZGqBh=NZwZvD9k7|{RlOl}Kg|cWv|l-z z=oMVPf>>wWWqn6^GE&|XFp~CDZozaNUm||8lI^~NlQB^(RX;N>VEI&xwWr$2tY6m` z>G+nur!!dMtA&$kJ;Mr-&!p83kKuEnXVdDT{Ww-|F1^3-gBmUTd9)tsTU^R`ILB9j z*X(!fJ#4SGuY{gg4#kZk-;my>n}3V&erG^d3}SUTxjYSg)7uOYbubcaDzS;DCLtVR_q<1dO z4NXujg?}M>*`w`#LO&X>sV~$_kzbC_Xg$ft>`%Sk{y0ph^<*y*c5EK+9FJGjE6QD; z#r7fHeML9l;jSA!vEd)dx$99A*FSqLwhzehvM#fR)8N?p{vU}iR@b3$bv~%hmRR}f zY^w>+;pF0TXNdpBJ@6mnf!O~4vSn0X>-N^diRyHv80+?s-uI(t-s`2l_v2CZvO16H zeYyP!;w<_eMw`TLiA-|xSFEQWqmrnTD0Ef9(9@UXTq^E ztwPbCjXml|b%5!qtiKMerp-{7i#_>hVs*Dh5S`LQ^a2c3L)9rnkM#cwF<1>&KS+G_ zF~~aGx<%q^M&I+;VJ#JXEoi;dnfQeD^efH;DdL^u@J7>N(+WOZyuft6mY@ zk#+|diKj(BO`59a>OP@&$27H2T_U(Ay${)6@iV{EDb2iA=3S!s>30U5+$P;hn8VAX z^x4ttwoTs%r+9d-<^&2?(#d>Xi9R^W%Q&_zV9a$ok5BlwncHC;CLK9+meSdh&c1Z= znxj9WnK+CdUh`wxI+LDrX#LR_l#cDB??pP_pmQ&s%=^_$0;QpHrx7%>?8K*K%fX8X$lrq15|1A+`_=fl|Wz2<< zdY@}Ok9%5ZI^$G)=4tP3qU9Oa#*?0pJ=badjB~NuvTf@)6JH_Ct`}h!<>yF!Q6HVW zlf3Iie>2<@dMva+a65QtJkn0|cSRd}lD$*(_rv|xLsoxHXZuHDXW-({>nxwj@sG!L zdS7jb=$nEoLf3~5i2Q7v;9T!?V!EzxDv=u49{51ym(qOqa%VT&tJ8lHHaRak3q<}* zB+>f&RMCG9_15VdwVKZMTuQ6cZ?{$n|J9i6TjARx{2MUMbD?K~;LW%tbbDxx@NYqL z&yk+TIez`T=6-Cmp0{QS{RxclpX6U9@=xJ$Z-Q@&(6?cxccIr}x=!CtEcTw`)z2^V z{eKSU`Oov~=NJ0^KaX?$=lbs#eJ`Vo3H?31>D2RZoxycPI`Ns` zrXDe2Y`@slV=U*EF?CIKebCrzJh$D0&cSpV9p)O(ck}fvH0RCr9qVP;fIo& zPQ1rcI{%37rn&W=KyjQ+C(pIV#(kIP_xQ(=zy65VZD*_=H?2B5IPLo>-*Ecf^w?(s zZkkEMp=7J0AD}qgI{1FLeZQR2Xl&0Re;T{pGDa^ypNRE|o3A?EZn|4fb=Te3{t;c~ z9&Kv=`?uy}^OM_WZl9PqP3SHMrj2D9mj^e^@E_{kuj*tF|NB4b0eAb)4rr*`TNH4s z6{J3Pd&bKcTlBWlJ?PE20pmmz(l@^J{#g4MC+Yp8^!`Gco~-vf;=INuuNQxg`i~}0 zav9=&EB7h6T#sx=aZ{bg_1*}IgXak*QW*b>dm!$Czs>{h^3Q901IKg8=kjdP_bi9l zLj^nZe((}|50`&U_fijjI(}xX`-cG(QUCu_!C`c9%A8grpF-<%vz_~do`&n}8|)0B z*Txpx>s-V15gdOGPO`7CCkZ_t&!~X?9nsDBp7$$T%UIh}NGKW4vb@H{n2pw|r^uI} zy}DP=H=F(=hupt#WA0;_YqygwH=apjRK}+L+Wt`bKC=e>;YZ=b$Q`(qma~sM&=$ae_R7txa1^LzAaj>wa$6-1XI2|sG{%pSxndR zK0NHb+c!?=0aSW#^v)D|2)~9FCR{7@MC|vM1n%bYsq2qqGz&})954Low0`(TRV27J zRt3HZ)sM(0^Y?&x{eBb|@OHRI>Gh$hX1Fz{0>Q zg4(l=0fMWwI0_$1cX8(7B-&5|*()>Ih(1ms{9EE{eKjUt+n`ILuYRvpS za5_B!eOm16MPE}s33DaB-t@lZO*lu=*Oz8E7UDL+{qXPegekD!%{QmRq?%v(IclW)0p8ooqIa5-p zRFb+|QmHDZSJKOi^kpbWrBiP}FGs)g^LZZV71=lJdoKX=$~4B?<8=hCPB~OP^%nBf zq|M@u_z}1vbx=dq|7S1Rhz^(o#y?L_)R^{}eI`B1Yf5_p4g?Hh{t?gnX0*rbF^|Eo z9fiy9WI^boD{bZT;1z6o*T1?^v!G@{UqQYebVt2c{2LeDe=f`Z_RI8tTl%Nv+3#w*HZhymRhRQ^zn$$` z>SNZMO}mcu^C^Fu*XQxKet-HuyJl`HoOlNUiN^JK7ikg6cKWu)-FD6yiU3EjGk4^QwJo+YZID2b3Bcec__;iKO``)nm z-TO2l1qWmc2(;-P|0I+npm9JhZ;RtY3yp<>~77Y;-#RK3lnkkGdWYatT;Z#=i5sQ#NK7Svlq70xX`Q0tu?QbUIbc%+#^p>8ScSHl| zHgF1u)7tzleM*PRy8OiHQ(=Ad)3t!VJ|8~C)-Tbg*#5nh`R(QVDBoZ3eVOl1(^%g2 zd(eKHtz%hyn*H9g|F?G|{=fZx^7j<%Z~OnxKmYSJ@ag>D&i6kZ|MomU)Y1O|#eMw;`;pMVkt4G9{8^oc0H>@APF^mcrvDPKE)n-zCgd$Z1Nr;s2k---<|1IP}ATKpm(J&f}RKULjLY_ zF)(^iW2P(jJ=lZKcb1_6D8CnN3ceQnm~n(Z>E7-<$7Qa61n%RW&--0|+kg6!^;y{+ z<@KkjL8pVVLY{%tDtJS%0DTCbf83}3#N2;|yZ6l&$TyOjhs+PTjr5~QhZYI7&u2UD zPsDo5#JB&ve#Lrq`(#Z2Tkng%(ygC4KkvWiw=LVw)BkEu=C424xwp^n(=y|6y;AdS z{ovYni!I;({kPKptvdMW{NJC};nTl;`rrFIoZB=D-zE62!*@5nNANw9@4uJFe>7ct zZeKsI)uFvlfAT+{=KuEh|E+#L{oAM0=bz6S_)pZpVSdI$vBr7)Q$~~#9T{8yAAS+3 zC-C#uJwFvKlbhvErbpla$|Q1%#AAFM%KkmZP}n#hN2ag6uf3wkAC<0nSG+vH(dm+R z$!m=Kv8l7zA~pfXWqDc(HQwi!fYy2Yz48-%oS6D~lf3gNFDd&g?(RhgJq69?^Eh9Q z_0y-K%4(rn26`G=qJCB{!9N|9@~U}pkUk^T^%{9OfV0p7xkOI1^1Jy_c6z7&P&c5D zJd{%x)!jiaz~@|oy!+r^h}Y9YRXUVkg#9T5s2?DIaT=|6=`-M0n(pW@69jr$I;wB$ z4&YaT8tRd{Ec980J>;hs10ioU`i9RNH3Gc``#bo`n~40i=rW&I{{#B2L$COJd=%ub zM-MoD$s*u}?EU31ZHD|!X*{q0%mu&Zq}iX@bClPTVv2Yon&t22d#!nYA-^{j{Mu0_ zomGE8`i>N$qwCtBccoZtFL(&@_2m7P85KT;jYGl;#va7+)RA3{HR_q?{2 zziY2y?tItJ$UmH7s0``>${WSsV|(Nz=zlCF;`lCykbXR+^3r=bP~Jp}FiC%k|LTR^C4^DvEOYi1N14N$;e05b|!PQmT~d$NGz)@1PQ*gvbT? zc2aRsTm;zmscoMxyQzdOuM>ga9(t?Zs>mpRKjl@$Rbt40fcYvq2l)^4d_A>$w_1B~ zfB(bITifSne+7Koccz{9`gZXdxNJ)w%WY!6O@jFM68_&RzAf&=zx(q&=5JujE1b(t z&bR&B+UTd_{Jy>ZU;lUQPn!Sx<6rXG^uEmY??qhi*Q`7H_apvo|NfotSal-)_lEg> zupHP71EW>vVzMJq})u;XW+xl0v z`K-Uy9Za{lB+E9GOb|s#8eA;oW=mX=3`Ig5vrt?MkWX6uJ zsjD0(8-pHTPwUfE;1CL9|1|r6Bhy_GQyQD!&EKNZM7dEu1U&}tSC19ZEgomf599G& zhN@WX%8N_8I6l!?;P_NQc9O%8pZEL4W|7QdWAi6ve+Ac_z0arPs58^8{yzP^j{oQH zliL4(`nR7pai}YCo|Aq!W9shRyKV%Azw>WmZ3;KbcQJJa! z_>=UN{7FuA$v;jSU7PCcKeb58h zKi@)n4!Vtila<0F_($c{PdDBR0$cx}igrb$XF8uhmL|uf&hQaoN_Xh)j?2 z;&D8Kn_?g6@#&2Sk=amQ0xBtM$OOO%skUq`1Ar5;zw|CLF6xt*&p*$Rd4ZGA2Dwj0 z2Tn>Sp_V?HsyyfF8uw`}xFEi`{q*rUIgh_|B$x&zlhTFY}sS&+zkyQaqEz%(CVE zIsPAsKST+XADIoBv&c}J-qEAbG%;K3M|n}%+vP`k0C}SE{Na{3gz}=(arWQY2K-{s zTya?R0**;{=`pRf>8IJ}MJ#@PrJ(^9b7)&)Ut;!obq(@{QA_GU4vkgO9f?V*#h#$sPRjm3zoh__my9BF{LmE<@^gKY^V4+OS!UJrTF zQwm-$`~ZF#NSYuM8}y9ygMOl~0%xKXdXqk5`MLg-nSRz}szm6Y%g@60E9F!|=r1d^ zQS($`;B2&j_xB2*KG`WY$9E1y{v1?+{apd;?^PAx+;l?)=>ouc zcs(?RJ_VeY-g}W%dz7D#s_A9=vZXtHxm!bJ;+;%<8g&}`B8ppitNSm5~03jXp_7sXP~^YbXPu+&4J5NefB3cAGkcN zmh0talwX0$bG(p-pjV_B9Di8>SE6iQ8SlU2{qsMiO#1xuf4v4WF7uzSf>x<5s{B$P zOSWHFti*C3d+eXNj$SyQakzaxE86KD@+vIy>6*5y(<%qBp|k3?3I-0KyX?REeKdONz4pEbJv!xA)l|S@U%nXh3&$^627Se( z{(OGr)DoW_i)!+D$L^rVrjcs08f^K^u=)z4)V$v{AL--JUGFC^(h5I+IBiv1)kj-j z_r8nE`;$vl66B9Zb#-0+!0JDxji*tel-tS+Pe8E6Xo6F&v{Gg3C4O}~b`ndq_i*!#`4cSc)&X5Rn&-b;%1&%)n8%izcBsEkuNkgo)<=iQ*KD6b@~=lSD&v~MYT$^O=_L!YIoo@^%TLEbVPe`}2# zhW02+59Bi$0)FM_qtsp@D^FWnetDWM7s$=%Zx!f!jtBT0{i7o9PxO_EP`^rakk2D* zMER9De&7@tZ;4;ODs)a>mHQ!2Rcgum3pcGkT>q{{1LSad3i_x{X=FCp2>EMJVOdiS zKz(b{diIan4fI-cQCt&wAWv=DEsls8kf#n^7f(fft6#TYUY8b&H6jP{*Q1=WfJ^~> z)Mx)d2dN$O)qrN}CAuH@HKa*mfjEQm8qq*8UJOS2HfHZ;E2uO2Qxjf|%_x3Edp4!( z9$%J!HDY}?BQ?N zvE&bsr!%FLDdkwJZ}&dyLcg(pxw=T-mHLbR;w|Lu#`D|gqO?sPVD-_R8uJww^7i2M zu90*e?cbAX^7=5<&9+jwj*SF)MpgW|Fg>|c6_?$ z)o7|EYsqH7Ja-g3#VgC-J#WU+cj7y7%I2SG%Nxi329JuWkas-&EPfUXpq~k}R;(2@ zP~JqIFBg<~Er0j^oy5BnhbUGYpZ{c9s+a1b$UlV^iiM&8`p;CFASQ_67!T82eCRBw z?{wbZ$RuL3u>Z{4#?bp`-TzFv|0{X_v-I=d!I%Dve@3qI$AjRKBU1)oNvT8zQPyJj zJ?Zh+LOjuYwVz&b{F>w<1F+_Fkwqx-8~!3GO$%1~=>vFw;0TQa4&>GLFDX9q2eEa1 zRhohP!Mr}!nQq|wID{j%^rsM{52cATgMLH$NHm+*n;rp2=4e0b=#eeY$sdK|{w1M? z7CZk2QRxN0k2XP`X!ILzdc;Tm=)9tpm(Bvm;Pt(qX&>Z?$=M2%LcTA1+cRi(UN^vbTV0)Cc(!@oq>L>Hz+UdH-Vot+(=2vHX(IOuiOC-lS~r zx0EgbCnFnA{d?#mIa^pHrPdZZ{ifjc(|7chAJ-oR z{he51@W# zm?^!*rw8))O`!J%^dOF}8{eA_{=xkHaZAqI~@+F}Y>b&Z{&F7btHmaTK2gsL<2D87E!^oeUzUTO?kI~*KczwK!N(_CZq}*N+ zFAeyoVt>+O#2N5Q&GVmQVjk+7hPv?gb}8_)@z!^UFvy>d;|n|#g&<#g8qfPT$IyNm z=p_52o{RJuX&%R4F9Dp1ma4TX7v#%K7u8jj!j|uzmsx0!I-(MTUsf8Yrl}0bpN;Ob zz4!>!KRb0-{nbkF%R$B2U)E*Fmy>3g1*R|BCl`4tL>&UoO<7bPbrJn555-kU)ivlN zFI8jzDM3h|kDl=QR6g|Q{M6a>HhZDp0&E|A*-M4;IhvhnsakFK+p`e+--@jwVZ0UQ z^{wJ6Cg?>d1=~Y6L4Awzde=u!V!RcjTYTQP3vh8N&G9OVTlwAdq6FLf-|#kpe@V*A z{%2nzeJQqA@2hVBm!<(6ukSQ)8D3x7ptk{+rOo<^UI<){zR_>=7~t~sPNy-~&|Vd& z9<`+>&}T)KD+T?8_Nv6Y{R`|7}Gd)CbiP`fAN9NX4lf+|C&w}2KX31HylaTAr4_pnko0J*umm3wm#g z$?JDxfcx-zQX1JCxG$BJW#u8@epH|1WyP@N53}vlpZz!0p>b%R0UWKSB5gr`8AzQ( zC(!}=9K>IQYB~DT z2pXftsQ8d~B(L}1RaKFG6m?Zy)kf%dG!^xVdil_vW7zt4tauN8V|jh?xY&&TIgSR1 z0pbSujd$w>t-)^s$7_5f4xl|I(j1Oox(@P8a`9%eVZ2P{_+=|aL(r$tI<-!{!}sb` zx~8tFnCRcr=%_lXetcP>MX#ba68(8L zEi?r~0bCN`mLX0=J&N5AC^-`j|c@ z0Q?rY^H+Oq`R;kKm|F4v^l|8S35BUJ^#b{qQVCT;)kk|Qql_w}Dh+)sw~SO7=wk)P zLwe*rfIe4J6;(xzM1Nbw`^`7KnW)cds;}$o!Dx>))KB-*9e~%;bUj_y1ztxR^+sI^ zcs+f^@nlz8?7q)7&|CdhPqR3>9UmJhtx0Q6p!`kLj;|llKAR~eUq_&yEwqTQCBR$x zgvxH(0=$jqcb91h@OC%fnF73n;)=MU0q{;2f8uBK$6Yj-uOR4Ww~J3*6Z+mm)66t8 z4(a#OIB%TS7tgnSl-J}ni;#Xlt>OLnBDQ`bY<&;VY45bxAN}bdh3PO|6ZJpD`}cFb z_|V^B>hJaU0-%p0)X{V_6774G8hQ=AWwyV#_rWpR!~Wf_qy3Ik2d{(oU%AfnxvYPA zt?{2RXZ_6c-@o=s|Cjx=Kgr|Uy$`JQe;DoE?_;+2)z|gcCw%PDGQCcx-REOPXY?gq z;*5_q&C-i?_hUXblt86d%TM_@fZuO%)w$z74x~&fzbbv$$3awx-xt}B`Z$>S>Tx zsxDp)$RCHgdt)Cq^9c`6Z)*9G@ue zX&)!&_(!$GB-B3z{UCl4Uje72r|j?ZF>oq+$AM#30;eWVMv@1B)3E=iB=QjYTUzpT zh}I}S9gSDBRUqVNdq0^&9)dg>sIF)u_>l0Q?VXX@i@{_}`}xICUP)g64H2)9zZAve_3vCLzck%c_f==KR~g#F_MZ(=zp@mCzh6#5 zALVEs$J@CKeU_)w>Z0n7{$GJ!^Zar%%B#rn;9sb@z?J9<+grZE^QbaK7IDNpBBm>)N_$9DjVbryM4SISKw9*gx^_-a^!`Bkf{;3PT}ZCwiuz=^E&Noheuat7^#K zg&MKHheg0$sjJu3YYyCv#`1bi7U1sA-XSq?58BP^Cq;pKy7TyPA%8EnPiv}PfZm&C zu>D#T$kT_{6T7SLLGMeWdA;=%w9thf!o1Sxx~S&VGE8%H3$s5fn*B(lb$? zku*omQQ_!cqu72WryPs%Hk#Usw&F7I820ZsL>vJg>*nvTfycS|`W@i$yneh}YzCgd z>%S*O9LO_~ZipKqz14>skCWK`_?eu6{yUl1Ym0mBAnz2q#rqA5(f_AXb}ze^1^lN` zxEJo7hCZh|`;06|KZEx#LcHRj&*XT>DZTi>v)F!UfP97VJ)3sPT`~sRa}N7E>?Aex zHJ8?~JyZtNXC7VV^Ec}t?|ipDH57OOoscKwc*wJm_b=windm=@oc%~Lq+iVEGeX5p z(3d!ShV77NDLqgRR1uWFj85rOx*qDY+}RUq=yL_zkFHV%?~|2uNnKLa&|g;3@9KBe z+>Qs=9;@l4dZ`*iziT)i*mac%`dQ1Xt>K~*_^+e;`o1m>{j8^Sd{qbD!22U5sX6dQ zw?5V#coX&HYdG*`n#$L7;4Qpju#xryZ{^bt-_kkYZS)6Ux$*qjPO(fZa~<>@w3GKs zo?`yIlTNCWyyE^Z&)GiH{&RKndA|DZpRfK$bw;0m{zqsa_`Lr;C8z<qv7m;O0;Bbn@_S0=P{C>}g_D@aOb$)#X^fYe&{S@?_mPUA!y%i`w9kt?k$xo0zJ=<%p75Sjw3{*!n z7bnnu8ELYZC-T_-m86M2SwF!^p_|vC*4vHRYR)}*S~X7VO?4eMf%*%-eM^FQy!Y;E%XTb z%gcUjf=nFfi_iP9J%GI7*C#&>;r+HP(0>7H%lm7w(Vhi4{>?ho3Hb}T{r-ojPhq;Q z@9LpfeSSrFzL!j`#P}-e>_0*=ev3JKf_kWbabAy^u9|^ff_m_N*DyQ}O0qw&N-7EJ zU&`4#^g#QTrrEr|_z3csp_IJ8bOG{~<LH zePAEjs|K&9{h=#^UX$m4-+Pg-`TDKJ@sC&P&Zuu~K5z7^cNpc>;q}otDmV07m)AFY z=tJn=^?3j6C+}PI&-!dXf6luE`5Mr9eNFcOKlaz>ZS+c`e>LLyageHv_HNAan-6%; zQU4}xzCH^5qbaZF&eAvWJZR?T_ixdD&1r}pq93DvEvO#bd&~m=mTrIFpgyhWxqhxk z;`z~dN#2XH4U*DtBzW`=`!fgM31M+pFujSV=2ITL~>vJ#UZ0M&4 zy=Q-V^Fi-PEBL%=TJY;dzldK%7;tZjBBMwJ+{c|qc!B!#W&hRrw)`I z6WK)00Up5iZQbQa;DOHmekb%bh#K(q4*g>=Rpu)ho|i)?7hgrt{zK`kKC2Jnc{Yr` z7vGDssNZmUqu!{?Xx|Zh{yK$DkN!E*tp_wfe;LK+n{TMv;6IxEd6(6lfycQ0^-kbF zmd{&F@opjiIO;083J=fE@f;m&otS|3oj@%_3-J#6oJjN8Us-n4cM_czr^O@GXR=#w z7>oK(;q~6VVhP6YRGP@~28y8kX(Y7JRgiwVTd&%O`p$6k;rJNeGkN{-ktzfEW>G<1 zP`88pvz z)q1x6o7q(4C4>F@LyjQ4}I$=l>D06yf_I~CF&ri0$W&-?fP z&FeG&(fRl1eE&IX9seUH@&7<2RzBe8w`b?ug6Hei=+u42?tF=)nrs8Q71*N|d;;f% z#V)<#)zlGm9dym-Nmo;D%g^OE{55`@k^u+s_xEFJYO$LS1=7!4Xa&%N*q=~BQSdI) z-F%JxeerqCNWdX{zBz%MW9L87th}L=pV#j<-uBZ+qNH9%uhtJfj?Cvr^LWvp_&5r$ z2PE=3-|}%(N+R-zlfcn<|D>Xr4;-DUh+ZN)a181zmWaf_F=@HjF6slvV*jM)MQPyJ zeBSr2xM=I=>J!HMU8F8x{uYP*asS{Idc<^RPa4kq^s!WGt526cF7MwDRJ(0@r>}VY z{;Z_(++p0();~V)ztvXTQQrhS9~`YNKpzR6{rW4L-tkMs-vc|ZbznrHiKMVUq>LuG-{;q##rM_~gtO0s9`jYpL--Ca4 zYQy#%t*ky9S$T5M5Z)hrj{cUDzrQER?ZCPC{Okg`7&x~(?|vOP51*IcE>8pJ<^7?< za=h(7PM&=152K5|jq>x;V)kE@!uB7hj{;Pk{bM{weGAeQy+FUP^{r^-E5!RZ-|FAc z{|Zxgp1-ZX$#mC0iqKYlTu(#)C`!ZiM12&v7~8l0rj9{>#VHN@S4e{PEWzs?Pt+}| zKR5nMQe5^g5&fRezZ8{Ze@@MSOY?qEpq^*byZ&E>{pT0cHyw)VB^LmT6@Oo(FZg-J^OT=wJ2dKHID31HbxIov+5g4fu3iGkTBqXvinj zyHje=8}aG%k@Pj_jcE;E4}qJw@8wOvP3Z|=M}eEU^L+DxoAdfeBC#T)U*8sdzA3iM z4*j&GgfgKtsBbGO!Tv6CpuJmDCNGn>&(dB0Z9{pzyj}?Svy%rev9}2NX-9cQUJ)DZ z*PbegNH0#Y?2`NK3_1aT>T2?cno76M#Fr^Z5OMyU;yxPZYNO$31VmavUn5 z3Sm5UVNs zfQL{V_8->`cqpYe=}kr8VN}c%GZ(>sxU)YVj`1?W#V6>7_83V!ydB`uiAuZYbFc{b8)LM@Vk#=h|Z&wU_N>8T7C5)SKgb-NXBF0u7VH z^rRvz>pPVYYs*|IeX?dZ8YT{x+Ac z>Z`ga^f`})>Y=(O^fjMO=o9)5+Ghbx(vx%p)PEtpxACoQeS6#bF5>m}?0Pi#EvBdH zsp@F?x$>7#DxFHlwDocNUP@JURUM4>T1G)SNT-E-%c;07t~;WBD<}@He=o57UH+9+ zLY9zeP~TP5nD;BHBmZjl|0cb{7!PY`5XVE`jPlmfEN_-~2KrgY@n7qC8*F{t^L0J% z$DET((H}Q({Fj#AM$~^JRrV@-`B45QXD@RO@@{tLvu^@#aqC}$EdLf(Ut68MPI}0< z&DpQavifrM(OVw}P=7f}=6~wrK%Va$kj+qD5Itu9UNztO^k6<;{zmmj`62v%{YJ)o<@Q*^#y|~^E$QPCUuNCm-14pC6UTJR_aC9oi z@xY3Le+)iKBWe@cMgk;MmktjZ?LN!)PMUr`rO@;raAdH2^rA zcCbIczR!I5<5Ce>S-yq7<54^IFK`Iu$ERw19`xO>e*F_rBiUN6dE?`RyuV+QPNRJi zQENUwnFlyAeIPBSBYhGI6wyQi@K4JAz~YPipeN(~x~AS#t4}u{P0ssQVe%C8lY;FP zvdDdqCne7h(ufPdsVKe3C5i*5=I{ApqCIdLD#`0FgMicW`b%AL810?TozL!y^3t=eT5HQxf~pq}gx_Z;};q|M%5?hywlv_`Lc}YGrYd{eCG(Ke30u z8@4@BhnW@*A7qjsK$Tud9IE40|EL*p9vt%2a{k!1g!%1J+r>M3 zkM^m<_DtW(@z7^on#b2u$Y0OdCs###*QcnwJ}?;aH{kOi@jQd_8d5>FclsK*5tU(o z$E$%GQ+2Ppw;1i!#MvuHxBOgvnmYe`9YAm9?9)pCH)s2g@oExq3pf892;7pksckAd za4Y&keW88?Zq4>fRpd>yM;muO{tMu?)Ic_nSJ2P~4z zTCo`I--F}hNKS^!*x%u!Yy5?Q;4CEV4 zli9xOCh9-N#V7m;`Wfr?!`GvJz@8+eQSbDe!dYUH2i{1KK1eZJd|{@3P1pK1T{ z-1G05<9tr@zt1QCM@)J?SK_kvQ3+WCaX=kbT? zslrdMs1u*Ruk_x3e`zYi`+GY+`q;3C?)tPW$WI?Yx6D1${x_cZ0* zD*^t&96#ihJgoilLui57X08H{eUUlFod_FI^ zw+8&9^7myM*&8?-?=SR`4S}Qcdc_!dCfJuh291}CWFB56iFjYf!I5zulsw2jovoD|kOFA=)l3JdW=h8XEVrZoW?_G7G4xjO%S!opf8!PUZ#Fu@^B0Z*@h5+d z|87LU1?VdW6;WkXDWuQI_L%+DHuU#gR97`qQK66AY+tcR%}0InaD0R;Y6Joh`) zw+Q+{i6h})ED${;F5Gn|ElK#m!c0k zmI(wd&HIZ5xrTmwmZ2i1mU#(Wmg<@=CLhw5qwZ#$83+B9=iTfnv;^%}f!ie+?L&X6 z$nmTW&}!gHbeQ84%mA)Tw|IqQC~y^yCl(+&0avA9kwoNzeyj0mgH?0^^y=(ADkp`b z{c6xd^Twowd^I^f%2BTb^j(W4nz?2!+Osy>|J?FcTYb9zT!&tQ|3Wc$d7R&`*6@EW z$kWmJ4{QY7iBj@)n-2UD)2Iue^u)cBQfG|3W|?-Pm4dv229rS9iDH z`vLOxpiAsOqa)JyJOimLUs=%pgXoAkVwNKRVCO$?0{Y(&=fAEs+Gi*wVgJ4a zJk0rjJc;o*oa3|Q(Jjy(Bj}Jiq+WvGNb2qN_U=HwQ5;XOhUkg%N7E=VN@PZV9YbYB zSuq^tjio-Kk4T8|Hjd+aFB4&So{i`Dn~g8G)MqM{&?R&r@HCERbXH9Qzv(0cWI%V|8B~tfhXbMinH(Re zznYElJd5r5nyW)7f41|lI2Pk?4rNtY)gRzDmu{FF<{k7m&-n+uX!(&H@AF-}pls03 z0;;8Isi>j;cwR`O*xyfQ;6>C~byhb}-^El=6;$!i|ChM+q6R2`sk2Avi1uE_>*aCO zC5(^dv|KOOy)nL4(3kp4T^i-Bq~G*!x<2qKifv+>X~3(gkSSyyBL5nyZEBkjz-y_i z>1whg{W=Q-kP`OG5X_9wqHEvodtat%`@}NDCm1P z-S%#KmC(QT*oIXX@%-3J9drlX3gz$Pctw}J=b-PW?Q9P@2mBAvC3DH#KzkjenQZUY z3FRGPe^xKNoaj%7X@$4qv;990rvJ`$vd?Qw|N9!#f2B_7|M8z={CtffY3GNLtLVM2A0$AStUd=Yk${x0j}=oY>x1W3a`ZB+AR_ZJy6RpEdAV z1OK=ND#v!;lRW+fk4W~}X|an}Eji+Sbh;OdaYy@n@Z1%O^vc;!X0+HnKQsmLRS0y$ zCv-yTJ?H;h_dhQAXAYk=@L2=@s0Nzw%RdUgkNMTgtM!d(GQV4+@cWBO7E$ERP zeFo@}Ia>V~3ILAc_R|vsN2Q^B73BO8^^eBdm_+k{qw{IWY7X1)7q%{BZ#va@jn;k{ z@%KwkUOFil%zqocL)g|mD#=OF`0q%32k;%px7A`0-=Ta*cDnYzcl_V!QWBjWMYLoL z(YiJf-$HR&2K#^edjrdB|F(B|##X-1Kc6-5_iA8ynBZPWiF0!XA#2O^(IRkt#zQ&Y zMT4jjxCP@A>TC5ht;10*w(BK-6H7{5iMwGNz0NfMlYceFDZTXGgg^N;V0^%wHu>uj z`}w8Btr({fMMS#75#?=Xd`*?tv5GLA<=eyfDZQq81taKZ8EcVP6sa3Q7yJM#CpLGNg!4z|@oaHyz9L)9 z`7O5JLl1d;MOP6xgva$qi~pqCcz-`w%ZPUs$v+Z53&K7r zF9yY+vaAoDdqvGG1=~mdC~Go3$nh8a^c+DJ+vibc$@{Z>rDORc(tFN7O<`a~->|)O zUGUTFfBGxAteBtPxbsv|Sbq`u1KfF)VMx#Cv)P|@Y|w*Tyqtxg2fKK)X+RHg{&1Rr z9_sw9YS1ImarPf=`&)$kk*PNKw=0b8^EK(_&Q7M$|N$Z6BI2xb-jw5@= z^)bh1l*whS1U_cnalD-QNFS5p%D9r9i2lhxmYc6`MtQN>|F|b}qr5N*mccRy(#LV} zfdNXgjVwjppLhc^Ky zW_#+?@;q=77awRI_$B4@ua)I?$eWDf%lPs<=*g+7tSUD^9*)n>_G|Z%p6#<`A{hYw zsrVxxv78v+uWxE9EDOuFz-g$EEF?<+r*-yoX@JvF0k#(o1y1k$7hQq=GEg3wN7ez( zNLkokd>L>ix4)qwe`YEvOUfj`S=|24ex%RJ`~A7(29%eLiprw$3*hWjOcs;fkUj@x z<9OX;fOEQd#6^H}QD&K0=0SP6sSL;GdjWbLK7X87J^=r`?tEJc(DU(m-VE{~`d5C^ zQp<4Yy8y-D^_2GDUyv&B`Qc%}g`9ta9PL-ct(TkxF6!1>(xUx}Ie*Nh zP+oC&9`_<}2};2J6YiosJ{`dE%6nnFmU8Fua@Y2s2c_vZ_GefbWMUfKE6J%RjH zoIfK0{#9ut?{C)vu0|8o1oar{tJ4PF?fw9MHE6%uuZn?Qll|i@Q{NzeEt;yPs$`(o zcKb6XrZ0aT=kI7Na9!u$x;1b;_GdR+bpyZpeBNWCIt_XQny==oQos#4{^Bf^3b+y5 z1I$!wfE&|XHCH_XZbA#x0(FgF9ud#WrZhs0P=!&yX0%CdQez;0bM_y4+X!D>|b!B`@RThY2Rm^=xhGI=mdV9>9V@4-f(}5sBaf%KRyAtE1goOR5hgU z#{L<;REI(D&hY_GtLUKjaQk;TfP3L7({!{a!JYIPHBeU$w=X2W0w-_(|=#V@l4)W4NGY-Re z8$kQyK6$m4&u<{dV>l&WS?s5%Tf*Z8OFiH-jc$wlGibCKZE6G0 zq)}#+d5ZM2Ts(m#pwDJ|j)|rpuwjU`E`Z9NZyf^5} zo&83i0)F``Ts*pKd3?N*8k@!@ALy%SzL{@o1FvR#yai?g+H;MIC$R$ZuB9s+zw-t7 zt>gHUP0a6keg5k?eracO5ACyo;+y!UUS^-Zkq+rY`X}H`bduwPgy!_=n<=45XnLdk zE$k0vv0e`PR!V77ny*3M=KAy3=pWnJAMrzdDU;7{2kq1QbYsZB)9q&u0p7*-OqX;u z$iJIfm=>lJ7*D*&hJ}=W$wib$$%h%@> z=g%TF@K+pfHG`>(`hD&E`IiL#hGKGjpBYI1EoC#=%nFR3tJFvL(TULCu2CYB$ZUl^ zzGMH%$MjL?>w8*mmYdhW*J-6$X;SfgHsbkqgH{{9K)*@L%rbKg_y<~HR+vzvzeTIe zDw7rE-=@SSu}O#e|473)-u6o9`wsi}*{ah){=3wL{Rs`m^X4AM(|xCxp}zMiJIBK+ zit+P+7O+2|MCh*%shMeJ@&Z4i=BBwBhUe2yRMM0*bD@vNbVMJ~AJD&_&|ovz#Du(0 z9WD#{&us74-DCuQM%_#|^A+%O8ej&PWxy|}ujy;L1HYu+93Occ@GBP&lh9vYQx#Li z9Dw|9T>Qf4hanm07S1MsjnEKG?Z}eKf)|;Wv_by&d zUaNm?-)|qBe~^x#|4vy<7LyL+;ScA3H7DBdBdyhI^-<`P#Bui5^efs^h(UUgK92D# zg^i#27DV9FRP-M$QkWEGFt8EHO>(mg`~rlv2fTy)fg%sbD{cmT1&La0 zzgY_P4;C-<3!N1>L|Fg7chR3h#R|PbPXs-Zc(320N zm}qL6nmv#wj@YiZ>lEl8;ljq}iG}eRSIjcAOfSe2Pu$kG^?2a;;z#|X{u%v0ftX=t znD2lSis@#$5#X0d%rrAi3A9gQk;Ei12hhKhi2kO(xrFvfDsq`zrYYJ#ndrs#`j^qa zl8bNIAJ}g2OCeI3RHh8{pHdVtMNAIhRHCpcY>t3`YLV0AG&4a@BTAdnW(9CsQO1-p z4bfidgtZ?Xi}!7Mu~+Zah0vcfh=cl|ZjSzuQ7qDn^c&zzVkP^}_MrdF4o63QvWPSK zj6Mf?R2|sz==nvU2{h%wuYky8GMPNU z1w}@a(KJE&LL!L$!M_8&u(0u9*PwqE5$#QT^8xxSDr~%-EvSDn(ZDn?sn8z9g`E%7 z0KJ5$VQQEhpqCWZzxNF2qm;1m!ybZOTFm755WCPmWrVc{EQI${S+><*Ynnhm=^oAm}No_tr-;Km< zJzM_){*A?My;~d3|1YK>4l22t7hCMSWX~JNk}31>8nF&<}J%v~OGSGsnja0d6O(|FLN(uf5o! zw`jXR5HX+bAky>xzzoI_-$NZmIxn5q9=MZ8?WN{;$UeQZNW<|xMgeyb*57-{_Wpdi ztFZp%dPVi;?_EV~KL2BJM0wpra>mUtpYATsaJ-LD;2z?8`Mq3WaWy-??+%iO z*L#T@@`kkg84>(?i_^THafoq*{C$MAx1J5$R~#~jOuuM8y`MN`PMIRW{l#%}+_%qhaE# zIcvt-`jxTu8!nE@qw+_rH;fSPj@*pCb>zj2Yr;-C^yPG(8p-8UaprdkbaE# zC_lklp$)-xuE`t0At?hi%imwmDGW$g1b zVm&|<=Bs@gA5RvU`KkguMP%SBlEsJZ^LMI9$5#%}r-}4@EdZX*-br$aUBEN=G=FaK z)Z#NX|4dPkugjp%;^?UP#4wBZTl#GF7S0drBECFxg!TWPv$&7v@>!(VItX~4u=eH& zfai-?I+kt(yg*ogYUO|z3LDS67w{qxuETY`Vm|-H!un_XP}IjugwjgK0DY<8*OC4m z`Im{re7@@n=*vYE9Yx26{42y`^;p#^N4U%t)4 zo>$m|{96Pszv~OYTOHm}(oerl1etu=%>XCj<>oH^fSW7gB)7e*Y_9VNA;uH1NvDJSx44s zkpG-`!v14Nfqq_uaQxqnz!yZY4%SViw<0&6fBXvctKvS#vwaAB zP1yK}`+&a__tZVL0{DAzSKU=3Q2upc{Vy&6z9CZU)VdSoVP9OjoGuN0{2&5#pdOF* zy(NSex+m~$hnE5W=w7M?ze^)$H&r}wqzbF3S(R1`hoxGNA|78`!2dT9 z#8*4e--{@Gy#oCMM@tS7`9S|&MB=M5@E;;FUopA-i1*<~k(jTf_+BCQhTKSo+x9AE z-?u_u;46{ERV|hdr$Bpp4v)3_7oMdnnVJ2W^}>FJ=F@R)Wj?&m4SVBhAg#ScMEL=7 zBimafP3`L=P%aXSL|6(R2g%N&vpAg8$HB6us43=x9wG;@KeBhpeR`7()+dZx$;98KEuV98VZ{G!W|eBSsw$P+`>;`rr@ zEk9}dV@$bHtP~3%Pb}G%&kr{PjxAe>Rw5Fa3zzG~dXXrZ zUw&L!N7NDTkw2ca@pu;j$Cvhe+&9RdK&}?6#Z{D_P<9XX#m@EPze;Trbf>a2DA>G!XrPv+~*ghTi&Y5B8 zk1eG=kA1+te=6DcM=N=e&!0cB@0Vj1x8`WnC*(Br$2RgOzJ}s`)s~}KUzS%vZzr$t zl>_gm_Us+-p*#h82llRgM2-OND4X&%4Cy<`W_($DzJNxyKAq(`w�>_UR(`iGAX9 z62Cunm8Uo!_9>SQy}5a=+LwN&)wlhr}Uq z1LgOTHon*v(EG|0;)ECh+)o}8$HZLV{_?muE;<7bkVnN)aSHqfN*n(?9_WMQ0dYWN z0v;?6ii2VY(hrfl#4d3K`WnjKxEsrHz{BKKzRp9x!#NtlSvk|Tms|fB!QQsd$@id- zWN#-IWf`>RDETE{?J$2IEuZl91^ADVzwq@0`Nzs*d@aTEX`Fn+*Jl16jOdT!WgqH8 z76&QYp5xg7Xtl6tEy2K}!DL-`>0XV);Lx z@Bb|C^XG;i=bV`{XU@#d&hAdxtpaTgihw7Oi$mLj0-!K*C1^VkVce0Cq;CUX7L)@8 zK`BrkQ~)JG3D6WYM4vTMRqDex05PBrr~w*->L41OYUo74R|R!JJ;GQQUZoa%ZO{l5 z0?k1Szaj7yKYFiZxoJq5VLAFa&upbRZZ2s2^7C zyICji=It2n$S1Ma7rqM^3F1Ky&>KtwBS2R$26P8wNz;imec;D|Zsb1=`ZSmgrjp+b zw-r z`Yvb-Ul(K|?=jGx-~+-NL61W_K;MS$1SdcQ^7GKk;A_wyc>pLx`ohpMpez^%HV{9a z@S~KiG4eq8iC}`u?Ux6?bHk?tT>;Cw-T9!ep<5ij82T^3HzTYRSc|RZ&{p6T!nbjZ zUxjW5AA{7`Tn&90d;(6Re;s-ad<0G*e+K;=oCD`c{|>YP_THl|Z^1tR6|pmzu%}$^ zO5ykr29A(65;_$027N#%_@3~qpe1|@FcM@0O~4Jpc@ZtoT5eZ0>{SLiL2Kl0 z_<^`P;1;+Iwt;=%GB^*YUh^gNZSWpA2;Kqjf00{q=>S27R+ z(u3qYxn~5a;WL5EAOm_SK`Iag(gOBQv%;G;4br*Y`_s7HktN}qf{Gv#R3)q&G!G~W zUlv*h)CKiGeb5Lr1`R+%5CfWn5}+9<4xRuNNT1K`u96$R4u}HPKweM^6ag(kWl#y- z2z0B!M}xwk5XcW|gIb^_r~#^jT%ZXk015)_c4z_0gVNZEgSH19KxfdEurAO}(2>v) zpdaXqJQO+@3aj1JqhcBUOfCL&>Qps{RtZY9SC}XC(&C<*dq96zzi@C zEarGD0rQEQi@Xp#3!VcDz)ZS}+0a>Fj=K%dZ`#8lYD0UyZ2s4%_Do1;dPbM&mC0pJ zr($mmyr8f{#MgmF^)_ZvAuqHaOtQT}5Je8mPR+xB| zMSS9NYmK?m&T@Ngi2rAp&6wovG%h3h&-CoLJE^_)ZTaU^{_OMV$Y$a6E~9-=c}jch z&h{^HI;D}U^}(VlkJkDoE>~h+$H3mtXQx$NbYXl$vJL69W=`DBOYcFj^%JL8ol3{H zYg2`({m8a>r4RMld)i0sW1uvOm!7RJ-pwa2s~GP3>@{ zvwgB{*wik+tz)Orv9Wnk>DfpeF5b4S_GPyj+pc`E*1w*KXkF7q~!Z2P9Pwq5ZGx8=k%vCYKwXP4z! zj;(mvw*8T;^ER;^@d~%oNtauAD~;{1!lGGAAX}<;+osYg+_sn4jvZ#(7gajJw)=DW z=lenPlfA&(yYU&3_B3v)FN7yZM=O7Hr!#wZjtko8oOGE}wWio!t)X zFuP6^pP0APi^}Hg8s7HN7%E+b*>Q<=?J(IA635v-i0WKa+=9q|l+8|~K38$lt46$S zLwTximTZ?ZF}1^gEnn$reBpJ*DAFamcG&rd+U-mE?ymBWw(tSt788-}cu~77(vut* z;iU@Ciq8cS9akOSxl!IUno|+vk93uG8`l9H7x``5waZ}3wx70qlQiP(I!heCvXn8s z7+V&81p9%)1YL7%8}cD>KDI5z+vl9kC#K3Paej)k-Je`)2#4GRQAqOz0N{{P0SZ9e`zu7N+Y26_x+e3$uOhKYE4ZcdX{vh_Y6x5>fZ=mE&gH|hO9 z+4-BUcuQtbmcP@A&!c#c$->`E$?YWbE+PJwAO{pckx^akmzSK>cx8X&H8s8Cz4Vss zeote`-uOV?h>^zRCqF^w-80aNY_^vTL1`cV9@oI*8u<5XzV`NkB`!?c`Gx5!Odp~L% z{Y^Fg0(|R>;~1foZ0-LvkzsN4H|6-V_kYIG>s02?-v1d#eMGI)CnP(b6VfSYT(GZ7;XR51Uve<`5xd- zlh={+Fa!05>E+0I85MuieCEjc%sc!Yl0R1Y@-y4RBeii7(A8*cy|hp`E^r_5P}wv=486mo+c(=kMfK zjv2&3X1ZgqJnyrgXR!f zZH|5fvxQSlF-MNH-tU#ck*hL8Inj)A;w{ zwNpQJ%>w?iJNE0D=lDDC#Md{^^0(JX-+>##--Z zv)ALsnK)+P3mAJnZk%b)Y<+&S&FRlNSl5e%PW$a>-A|5pGyC9|Is*>KgD2Ffx=TlgF!O*Adm^90jWVC2p}#4$OxYT zq=U~4io)js1wkQD7~};-Kt2!(vVj~R3}h!wILHrQ0OSI>K~7K{6ayuRF9EF&nt?{3 z0ca1}frj7-(Au~kbwIZ{ysntBpd)AtT7nj!3Md0wfzIfb1(o32fKDJ9R0FjLuL)|v z*9I}5I*0;QK_sX^d^r#S-xxFnO+X#O>VdlOr9pX65mYvAcUR^#yAam{xx4esop=oU z=i|@zxJTmWbB#6FV~FnQn({sO2fa{ZJO0E-g;N6^mGvE({AL#4%(*FzM zZA2qa@P*sY_C-l&^SZ}TnohLk<3Q=obKW1Jt!F3yEKr5z@x_&-4`3SJ)TXbJj<5*c zmc=VfHs#+;Y;^=n;hS>4MRATLhwjA2k3O6rPMAsDyPR`^$|<=KwiY8_CXLE`o3PpN zii;q82JzBWc{EnG2cKvAum-C7eEfS{1FC@}?Y;NsJkv9~e%`g0_tokCJ_Ygt=Cpls zh-AHQGpdtUp9g$q?Z0-V>+F>?AU9)ut^GV9S?fC+`Ro@%Zp(h{UQc-St0LF+wDyc` z>6NP^AK`sJFZ%4)ME=%w)s?D+H@-e{B~L9+U7!2}a!&T=>}cbSr%Nzd*w3N%F8{kC z&+}~cXe?QBU*x=eKdX9MuN;qD-`&Suw!62ylaOz)J~dyQH-08^6z`Ku-i-J4^)X?R z_5QyMlIwY8jaL+qjD5wY<1b9|39qc{Po(5ZUO9uwU`i*F({pXABiWZeqseH_kUwW9 z_WW3Jwc2|3C#Ny8KUbYRrV90``@5Mu|7bmHc1KQPv>r6rkpnEbup6^rckFOB(t_ScT~;LSfRD>yE>>N#>c zqxG!)963EJN-n!{BYV?lFj}v>5?SL_GpXC0uAHt0v{$daOssfn#`mw=y7D`6cBA$DeH=NI6+vxWbCA9Mgt3~aoofK?UH2<9 zO_=%GKfoi|8y{}8KkhgeaS-uKkUk@H#a1Nz*tpWk%xbn$%aq%UAbct&{AI{F38NY6;m3`Z_x z#(Tzl4m zGuV+!n)aUdp0!T?rL6qJ9ebsD-)MKw2uChsyddl2vOsc7`RiJY82-s4x1yS}_;jdOe}SU#<*zJcW0mOt-0`PZ@XU+C!9wd6HU{`E|APjk-{C%(RAZ?xh&$zB7?zZ=Nj z`f6xe`>qFGxsmn$w_Eh@UVj=}?{^EM|MtpF%rXCC{v{l_srkVF1OF6`+|1J7?(`2& z7_H|&=*Z2D_8VMu`imCks_%N^&A%nzv#jMg-P+Etm8r^p%g&D6+EnpW@jP(kHYUmw z>IHUcBIcYE6^0hbG58Bv~JD3ul5}pc< z+|d;G6!-L}y?OOJnf#voo|cZ>*=RrG0Y~m)eeWv4k-M5Ao+6$(j@->?KVU&*Z~40$ z?SCEX^q)Pf?+MLx+H+6qc~-LbeCWwjNN3ZO{+s@m-UIOcKMz(dcVXHNAAz}23LF1JMsXd_l0zH-&J-gkG_kw+Q5uOi0DFW%^V2)bYKmVdPMe$v*lcKOG!3a*$t+L6by zg0HCiR69FwTn!9eDyP@`||McJwD&?~@(u#80x`kNVJwpKQJFR`*L@ zf2No|+%L6o&abJgENtpt;OI|dMICGE9GUO4x#Qfo9Q~(__K#k4|47u%$b~Nk5O3ft}sEo%s3I_xO%G@-s&7 z7uewFFR`&N>}~%GdG<}~UPQbt2eDsY zvR8i*-&4)tiKRdE%8N}h|78A>z50vI>wd}nbwBEjU&1Qa2d$>Y&;m9wrI`_8gq9d;|_gwc} z%^Z8HS)EzK9p%VtSgBdv-PMuTvVyaw`vpf{XT7g?yCc77y-&A%`|7twdj^AQ^AJIED zla;Xv#$^~$a+`4DPNi`gjooNWM&mXb-_e+kZ>+}6SdWLXo1~2QBxjr^MJd3zO)|!U zk}!r7z!*pnV>s3ripEkHH_`YC*Ie&7ipFv@2BYy3jpb;3hp`gv4e>ArlZ0`XK*nX< zRmp?#7e9^RXv~Fi8h^%G0vKBfWQ@h7@uBvB@s&p!%V9jo8voH)kH&&D#?t{X7W9ZQ zqDmSMVm!tgA7U&>V@Z`XZltl9-sIO4+RL~r_ks2W1HfQ(`a=hTr@#;}2#f?Hh#L(Z z1>(U_FdPg6lffi>oC|#hEC92>bkfX(&HzutPlZkc^T2#C2h0Y~61NPx7_0zGz*4XX zaBgWWe5Dtm&y&YX(6wMaco}R2Yrtx-3Ty$J!3MAnyZ|d%!-h3%o)6 zLFk)cKX?ng0}gR~-i979YD-_!KEDM4-1ljG#U8T~y+gRhsKmd+bx_}JupwPRayR0{ z+v`w^agDX(wLV1SVWLyW!(KP?9K4J#Co-Z~qk9tB*1d=AgYGNlaBWt;3bXCm@pe7w`m4CJ=-P3T6@G(j zfxg2bY9Ci!55y}>*GlzQ(${!m;`AD?lMNl)b?DSbU-9zC_C-|obj{FpLDz!BW23Su zeLW*9{0I7K+ZXv|`y?t^I1=a0CklH_fzm(zJ+1+}1|HI{=zd-6f08g4(XERu>k3uX z9ChOTn7yuOGCA@7^od-d9NELwD%J!eKLsw5EH@@1CMLq?^y$pJ-p-Hez=!| z`B(VcPoRw}w=e^|O$Qf8uBKus{ zkm(QjYl^J#3htVj1A3AbcYyHymj=gl& z_ogp9a(ZT6%bNp^oWWWzrQ@UZD8(7?9?akBuC~9KxWn&j0;OL`^`F^#KH7o4w>(*x z*==H0OLi$fD^DqnOg6`UHf#K{pd)AZ%Cc|iGv3YLXO6uvX0n@^6i$3NJKmd{c8)(e zxLU-TvyPn8dOmyCk#kw{4oA*y`Cr|U^H}Q{ZaMzuwel1&k#24g=sJ9vE$c0RM{%$#PVe9!)?cLj+iqP7_Oh2dn6}8sKj&|f?tON+P&Ihl) zYCN-f$%!w)ii1q%up^hWN_)BWwefkSsuY<@v3G>lDIYhF)SGSFc zb$|8)1abXVf3*;Oz6XrHRyu{69kaaSaY5*6|G>ju-sguPo+@(imlIjnmmub=wf_He zM^0kRmk)E~0Q?9x6&*Q{-YU77@5o8%jY7;R^>18nf|#!k%V?<^i$9SCN(J)Z>3L(g=A)flU`r&Ol@95pHrRmAy)aVwPBS~Qd;$gNsRjr{b*$?{~Gx|{ynaNKf4BkW_!x12znX6@a+uPmVfABE)7sHbYu&$p zB>UABpU%|euYqK%{OPUrw5uKc4Ay$zXB|1Cwf^?5^m{3NCPwZ%nDdhJNzTk_%}%C} z^sW6^S*-ifU5c-&_^j4?<&u)CNY2KrKo^ruvXy^!M*h2+07nkB)(dA=d7`Bs#v7)3 znhKKZOAfd0e^X1YCpm|8zg?Gp%xf>FwH~^u{~eMj@R!=HUl z{Ws;ed>+T!+ONl09e)QFAY1K6ckCt1Do6IS`iH5{5O1{~f9rX5vJ>yIo~J_UMM-Gwf-i#^sVzV*lMq@JN|@N=kF!Qek$wy+2hEmt@E+F>}8a_ zG}iO#V9D1cr?vWz7ajd{*8Rmu$&D1B-nzdzsr;?-Ww4%)FDtzzXQYObn0$`EndqT{ zO*!dX=U-;)`LwfBKUu8(1+yLhvoeGAx+&q*e>SUsN$JSht?`favS;-tq0H6|H6tba z&VQ{Z>?}D<{)SuQGxa3%zCWG+h4>3_^3TaE*)Frn@jn+mRA%$4bj$Du#yiI1kQ~pBC z`fW519D9YW{YB{=e~a)2v+d?nN581G-{+8HubA1vUn8eH#hE!=WwJZfeDl0#$zbs|#&k1zWmuB{HwTXA+GUiqO@;m;N%Ipw$!o1n4}_EXK;Z_$`PXLVc)AHyywzUnSo?+MJNfZ_S^h@q zdStcVde;7;PELG%Gn2o?j@-c7Pqaz?XkdeDmG(EabK)CW`%ZdDf73Pb|C6t6t-=oM#r(_ zvZZHnji9CAE;^WtWhzF-(s0L{j=S0n%m`%S&Mym3pxJoF4&_NQTqAuv5$5KuFE1~hgSsz!QS;mIULpA>Ye2^ZO{c#QaK{fFB{QrY0_OaQ=HSk|h1CP)D|AK?` z*u}>+@CVhvXW@1BtQYr0q{gm?rlEQTfU5 zRO(G-Q807xi2+GQ7xk-X{h#UwJFjx&FVZ9q_^ooI8|gnLBz$y8Oh}Y}R7m*vNcWi0i7os(Z`apJe43q1?~~Q9 zMAjvV7-qJH6}?bi?Z^gWA(OIbFabS(XGemPlKOk`A!82?l`!gEAV4y+y>mCW|* z5k7TJ_4DHx^6PH>)TE?HkOSlbzvnk4W=iywnA&rGQD1%5y>9hi!|>@)8m-jRubR)c z-3R)_KahmficC6r`Pi|6W5=hR6_U$%>#IrA@9}AKI;~jLuY}iw$zEdr|4&=Ht@Qip zl#rykq5}hy{^Tt2`qi}MAslL$-g;jHmg&s&qwn}Lf046tIYsyS)v#83d|F9oU&L~x zpY?y3qlNgdwzS_>kkMmf=ESUeAz%JlHNxgJt(_{-jp6X3o5MY3DaBfD>N7`gER)PxG^B1(<#vtp9z=;uF`L75DG|=QXwbCk7%v z=`rtc(>l35PN>(ffkW5f)7N2kzdA(mvmB*goW)Mezsy+PjQ$n%(aoAgR;P~guWPJV zh1x%_UtPLC3ga6{Iqm+dlcN8_euV|PmwWFD?7V+LBWpFD-MGNILL4ZsUrk%K!KZE< zS9OktxmbQ_^`Cx;is23T9shHusLzxBc8Z2`YQI~cnI288pWVL3;FG?C?!EJ3L7N%v zJ3B^u75~WpKmDTZ_S+}Alphec)IKFAwt0>Ie&Eo~_>`=m_j#JPOUkc5(vzRsPSj8C z?Q!DxXE^7rug2B0;?qvRq2Cg1b$}`b_dt3Q={mLJ96rV0|bTe4dI-1LUivL2} z@M->^$;#3vQ$6p!)_DEmy&CwmpcwBLwTuto|B&CvChRxje`j>Y5%&u=-av2V{dw=<5AF8?*4O zdi`FWe$2Z6YKBj7W$p8EATfWgUzRi0e^Zy8T$j!)oO#gls~0{^i~v>~n?wIkz3D%4 zfwQ}$p9KC)xPLR@%KbA5r>~wKbbndGl|3%|I4;Jg$Y`z9)o(q5#r%2yJ$TgaYTrEx z3G9c{ugd5>R(;jQr)tgFk7#uZ+qL!XkN#atNH~Eb30D&met`Vs=j&IEX^KyW`8Hou z%NvA@F#pOC___E0*Ycc8ID0=KA!1>T-Bx{lichyX81`T2SJB$Q^YbkKaQU2FXA#D3 zUr9R}Gpd`ejDB2;xc~Zh>gxaMI7c=iVNblw*nTa+r`H&k$jo`@&sw#=#4lgDen<#* z+Sh)3YTL^mXDam<`t``FuOdUe=VKpy`mDEh#Aw|hm#IJhI7a%a%RJ=aI(mk;zrTb} z_xfn3pZwzL^XL0zyJgI|Sm!t<>B}+XHlmCbJMBN%-Tx!Ie}M~endJ!y4-;I4CT+F) ziGujFjLV|;s>svYpLpB#Q-4R(>Umxqw9E2q8$Q(>Y*aX-`#G@4d=)YFulY4|+U+4dHzed~bCNd#GtbHGy5}%@h_wJhW(blt$>woY+ zz2f9Ie)7TgYZN}UrCF)XS)(U^lwX$pfBxS!?se?z&`^BZHrgJa81#Fe(*BLxZSRxB zFOJJz?*+1Mr4Oz1aX&s~9josj=%;;rf8B5N6+g2jg?ApN2tF+v=e_OvH~jiH>g%7C z`}GLBeeJ@h%99PN-1VFMyXq^_O7oxj?^;6WqfkuQ?W-X^ZJNP%H>?A`_dk=#zhmXW zm0ed8Voim@TdekV37;~}(vDsIa{R9P`ggMbCuz>{2;|gPA$-#NO_+}1ms5WIW!ZW`5bnu^oO* zU2E9yq@VZyzo`Bm=|Ak&96!3?zbg156s8e6Z@agaLv)k8I{BoZ*X0PR( z_y0fH&%1VQX)x3FD;%HxPCwhPDt|M->~`M^ablKTtDA^zsSG!#A&zn zpV0Uo4R>14+mrBV4Pf~rKRa(r`0f9^gJ!?2_pfV2+V!;&pY%QGKD>hYxOICN@0^dv@agaLv(Lxx@k`$yJj%H^lXqwROFzv~`hID>4Zs$E2lchj zy}l$5taj#?**AW_8K3kW3GcP=&%7f3Y7tV}^)(8g^nUCr^sL2s3&mgh+nW$?`xTE* zdT*}Yysh`n{_|htuSENf$FIcv{-C=~yD!MQwe-Hn+?EmV|G&@PT}G|`V?USOPqf7+ zz4yzz;?ev6@5?3M17An``;z^-w%hjW*P|bYKCXekZw+{uM=ZpY^tPvs$qw$qm!HD> z>!Htrebc!QWqke|aW{uC4pGgRw;AH9(U$o}!hRgXd{trQkn?blUyyHfgR}YBhXM{1 zFy;%wQ^LPQcu-!(rl9YmUoD?8r3vo@9f(eG@G*QQbhZ&ci9Bkvj^!KV&L9UkNEdV; zo#F65V0$2_4mzX%1nEB{{zKx1Win<4Xb8WXaIJlO347myGN2+hULx-oxfVtv2avuP zX&yc~WvwpM$L8IS%v zO6X2z#n#itY~iw&9k`ju7|sM#*c4+v?`ljR;OWMCIA}0P%W;gG zM82f+FJ(+9Yvl@p{Uw>>E~M{|pM5A_1tS8-5yINx5U z&1IMdrA*~Pk>{DWT1j2JV9e6RtVUi&`vJ+ojivbZ9LET{;90(}2F*eEhK2Zp{sCyx zMbrZ{V7W2RW9#4w+7EOzVT<844xd2UaO6wae;uS*V$4HmchYpmUMXzlC#*jDb)C5PpjIH^C;* zm#`o4IR{8hKDT9Sr7=~>BZ~6%24lc{kPS3JXB>XqCH`B=RUX|y!nfjkLBdWGmkFQp zqql{)#rS&)o2}6uM;<|hMWC~Z_-ptdO1hVc&$5ELK<5lL4iX=WJd(5npykn-k4_ux zmPXEvjh@&VPS_#hMw6x=X{u4Sk-ivuo$zZKI%7!J z0>1_jwh_7yovg(5B26%5?+9)Zeh|4ax=XOr488*4=`vFP$d&PDJSa}uTQ0-5Y_SK` zKFX@l)8mbKVL0u-ma*QcUa+Mxk)Ty;>S!Eo4=f!^Uo)EaSdB7|ByY}>T4Gdg^zYo6;Iuw)vpMs8{9(d$OJrVx|2uJ<^dJ#l|H^4e@ z4xOCPksviX!L4Wu_?I5K6q+B}9$KynePLz#2~e~=w!kRD23FvFg6eyNKa8NS0B_TW z>?*^oH-10QdB0%*$CdRw+mY`yp%21lU&4-nG({+XQQA1P6ZAYNUySn=s`c0Hd47H& z1K&DK!96?tP4w~;H%9uz--2%dhQe!|+;Qr<_jual1nL0!Ea6%&tu=>QA2X5oUeT<8 z$G=mfXuBMbVek=oX_L^wDr*b+Bz!DA)tKg;=~Gkj4NCf3H^-?3X}UmT=^t0ZZ|9iZ z;uubEPX9rEBZ;d_`Ex+?5x=g0%Y4v*dMEz~`q7E>v!_V=Y)SU_Ar}Mdz#YQg0(s!~ zjiKDcFGNmJ! zf%>{Z{AsQs8424>T&F0~RHfhK8SoDE*e;%Pp7^~$->rPmnEM3KSM&+)1;BZ52NZ2c zyKlz%1qNd41CC`B-}BTrLK}{wY+VVbzPAydw5~CO>eE-(M70!?(8dh4_$zW0?-$=YZWDzp}Ki477>) z9GC9k)pnd`=-dPoXg4o_-o$Gia7b@_qRcn2)jtVk23H3-2pa<$kv0gq z8niyN3MdMOBKL-_M`sCmAAF9jZr~%rHJ^C^Itcj^R9t(Y%dt}(x(m7-dXRAK3#|qwg8RrN2+sz8H={8p zG8j_;oPp1kiS`OV7`_60EBGZqYt3Iv&oP46SaB-i<`AZRij$xR!#MVtDKqGi1)rc5 zp@l#T@D*}i@En*7(t~W+IZ66g;lG0hpjQ%~Zs6Z`5R{$!sZiP{7=it{;30fwaErLF zDEDFb^n@1#>p(H&FyflPH-#oc9)ithu$P?tmgb;6=HxsM=l%q~1}Fx~AU6O#z?^=D4Z1|9sa{&4=KKnsuAqN8OL+lDI1ES$?K#P#?HuT;B-3VJo z*jMn!u(>stch6fr=n^oOusG;?=p~Qd;37n0-aDsa0cwu(^3V%QkXGXZ5e$hoRDLgU8bgY@9_O$mKR;-wP!SDC)4 z1IM=w{>i=Ee7@;n5uZ)X*Z^p0s;-`QmRacF1C*o}IHX6?%LhxVeeQhjH) z7U{-T<=&wb?U(d{U?+B8BYbTc`Xb762ilCX9;O~DLDQk%x{AxBB_DnJG6#9qDTsZ1 z{A@Vqgh2gf!bT{_4We{THg)`v9U+wt7TO{5O#!xxOiS8N=nj;2Q8GjK(7Eu@{Md6K%IK8BR! zI>50wU7F)CpFRtJ^i7agvI2ZKOuqVN*?jmO18EcBY8Q?THmjpo`)SS*j&)V=K~K)( z2--vi`exczjf$kHLOnI%zKpzb0DZ%JB-fhOTrc!3pi$iS#A0Ix<-Sh2ACZ4BVcYP# z5ba&xA4x&`PfA(pgEJ#|rYg#P8DS@&sX!h0>6|AIh)Z3Tvd`n3ME(x>OK26!s_&Gn zJ{WPTxKp%X$8cRIbke0TTp8hT? z{^#TvVS6KGzvG8LoZodpL7;D+==(;)E2Bd_3_rLqlg!XVlS4aoqQ{Cr{3=`yHu! z&b2+AIMy8ZvB)pN-vuY&9})HyI4&LJ65vbF4LQ0S=K{Ea{2jLTfl=TdaWRBl#>O+C zH86x#KsOt<1|ct_4J@JlwVy5<^l(+`7&L~@OW4qAv@hiI&;Z)?9cXWG0saO$9YOaA z^y5wNsTs$A9PMHlZ7_m+JdVRbjze3HLjuQPJN#|JZXnO5PW4TgZ%1<7WPZCa&rbR# zjJ^X?Wi;(Y^$zr%mumDG`o2pr`Rt=UKZz%tV{i|uZ`JF2_WBYZY2j>*+XxKy~KUOPHbbZ!FtB8 z&`TgqWoQI?1Gm!ep|=;cE{>m)i!;Va_vPVD3*zUwRaOWD#w+mqH!*`5T^=x-$a2K;I84%iBo zf+^r6d3}e@H{|sxco{4PDarQ%bQEd3P}b+MyB>d!QRbsBVhmP6#em_9Q=FG zzUUmspNHiA1L+n*r+^_~4@g7&H1gSuPrb4EBy^VQny`7~RSx@c%SA?Fhe1TS|-HXR+~`%8W0a(VIwqS4m%pyuy(?;Zrzuv5Pzd z2-`{gTiCgd+yLfR-h(W4d#Nki9b(1`>?YDYzAY%Y|s{b zkIzZ5^8~i1!4IR}mcdsg-3WYo0-6;&0oZWsxZ%qw^3%JYKIWKI0Iz`t$klpqe+|ZU zN00M=$9(E`I_K)s^z~DCW|&GFfNufq$$378bNoB{gFVERnTEfu=;NDHCrzkR&edpe zJ0IslEsl8u`ih!76A|}S4X$129mBr9fv4}@>05XDzMZ~lr|;P5+jaV0oxV}0@6u(S zi?2Z6fYNuL^sOg--$~ze`XDoX7QDVkr*AmvyG{C5Q}zY)4?y2xvcA29p1!%H?<_R} z`ks=$p``C7HR?%QqU^h%Vc=^}0GuIgnP?b&btpd456w!?b3+FDKxidw7N?wgx5`-h zuhGPRGzvc%gZg4D?VA4m74YV8`srcxBh+dG5 zE!y5*`lB~#{|9-t-j6Q)>D?ToJ@m2gT4;L=`YCB+iO);Ar64POVRRxvGxWQGq96(s zC$Egy-Sh@+jJ$>umW;43u{B{I$L<~adD4Fbz6Gnn8(Esj>^_D52K0`RzZ?IygFD0(LuVLy)*^l-a$oFyjZOwIh;&!+;}-d}Bd!|!P2$TU z_am=%*f@aA^yaYcMOh?X&&Q0nj4L*3V{S5x( zB<>7UYm=*@-x?hcHj;4Mn&3+($`D6Bp``0ecr@vnf=*x{7!T%w*TG>>j`}$Ty+S=N zNJ_cDdT<%^r~caypnVUd45PUAa9>j)o_+&<5j0aN?x#vpKgfMRjy{ZoRHOfhQ0T@bDPtDY|#T zdh9Ghx5)|U=Um^Q<37R`I0Rk+(I7Qw3G!pF0eZzh#t!lutu z(1X}6j}N;^vy*(&lFusizay?9`Mgd3Igzgtw~er)=(fYgSopE%8u*MV<7uu{*iTQM zeUUGdX6&c5J<64w^0p>@N9Z`xhm&Ry`F@T5`{;(D^9=dF2>O7rpay6KY7@0>BAS?s$2iHk+2CN6qfr;Q% zY~975oYY}e^50F_-y_{|@-2jqZSkcA;r&2g!b_q1H9Aw#UqLy~5${JmKaC%E$)hTA zBjR?EHY???MR-r*Um@*D(njH56T(Xp)*Zid;=@>IWzsgnZeIB1q)!LG1->J8$|JWU z?ImoagnFo}4B!iF-vrNtqo6&Qf&B~EDvs_8V13AaQGpRWjTOyal=i=PQw4j{5xSnO>zB!C`+KTfO zoTy0~LNB@y-zG1>H5rW0&+!C)@OsBmdFW-Z1hfGRpO|BQj4#xo?Sl(Rxb6l}2W_}M z(|&(O2yaDL#Bu%Bd98YYdA}k5* zB@enonsGd_)fpQvG^O35Gmp3fN`u@shPFfecEZb6=U$Dl&9s$Z!l#qA54v|rTMGIr zcHaYElE)g*8r_$gFa}kNc=UT>V>l>@y}j5t3+AD}j`&tO9_XJDPkdJF`C~tX_EiX9 zYN1=7u+!u<6I)ve>ra|Gq#uXQ0d#i|{vJ333Sg%)=mf4K`$IE;9@u#e8&@bx6YvS> z4n~6*>L@EHL%Ya|pF1hTJTL~lfQ?Z6n?jzA$mxYoHGMC7oau30}w)ZT`(5@d+2b`41NI^kqdvp z6S=uJ#-Gc*=-+x{rzO{bGSq2l?x~R@;BUi!%6a=G^dMm|gz5XNxyN&ThJHwz4)hht z=u2X$JAIo~-(%G`SoPgieQQBD^|Wq5fA*V?i4(>bQ6X*cgu2YRPT9r&4G33!EL5k=T`c&&TiOJ5Yr{KY-`tAZIh{v4BKw8QkY z%g832Ur*3pKsB(g8Rt7~by|7qk$PBslzeZcXFu0oz554cU5 zrkGLpdFEO;KxpUC{I2sK?e9Q!8G{cU@iPD z==acO(B9xJP!4(ZCED*ruASgII0ecPmJ@UU^+1&`xsHP8PSY;GVD9!T=lFNr=bWSe z0*gT@5C+KM8VScN}3^&eLYT;o1oXg1Vp_ z$b@dnZ|M`zYjT-;Lip+MsYo+{G*^i4MR+sleZsq9Q~StX0n5QD@D8|+?vMDe{tVB9 z=uF4IFVN48f7eu=uc%9~2wQcb`_XxmG~xJgj<8$k^(K#Iq-lx`KjK+H>VLLrO_=6kp?|`Sla1e=)5tMrjK0gC~AYFd>4c`-b3ZLEr>%kV{ zUZY%l$bSQv00w~i;27cKDc=C{_zWLz!jB`(V0_3$x>|&NMZG=?{RX=^DQ5!oQ*Zz* z1d|1PiNeMcq`iRMF{D{coqdL{x_kTwFjKj}tO@9jVUmXwV$=03*S$tDNuH-b1|hA+Ed4aVDSgU>_LC2Y=9p4Hiz(uvX8CXl;=Cba!_}d zK~u1e`dkL>MZ6#Ji}7O(X|9pJAO1YLLO(!$4@tK<1Lq0+bi%Hn-zSv@|FHKaKou;Adgbi}df4cVqHd4u*sMU^7@k z{MYFF;m1kRyoTc+XnbFfUIj21tRgNq zXpa7?_;>^4L1z}ed<~rH}pHM=_{LaFBHhN zU_AOGIoD(9n=5ml9znWl*d2^-1G%mY;usNLuN-+i#r;`#+9CWW74f?YeE`?X2E;Eb zPd|t}fb<98Czs{C>V%zP+}Abc`KBIyGniY4^4I2EY)E^=cE=|Y(NtzwVABUtN&jugfz_Bii*4?gJLk2EeBIoU2fO@C|+z7{@tQj5=*kUB+?0+zuO&Tn8xE zF=&3ubP?a~SLM2e??bSA1HKRZA;OnM(LTVN=nn47GcBl(Z?Vv%18C>)$NS-Df6g(m z1^zv3Y@z;UfqZc;)0sK4x#XMjY5J#bw8PF^AE<*0(4t-OrxfQ~KCXk)s8{N-9`_yJ zQl`dJY17cd)47j>pE;TH8J*HIXqSYI0#ylL2i-N8YsgHld$VXS&^cfiNP>JBni@0$ z?}2e3Cur8qWvX>?nZ@7$_bQ8;^1RoCdd|zaN4l<{CRhvxg7=vte+l$0$+dy}9u*-B z#Bv;y)Ta$m-V)%YN%SpX(gf}!p>GhDY$Ex?yTCkfld#RipXB&drd*4WpF#eDxVrEU zp!bpUK?g%Ou_ojx{Jh9ReA!gk0jEN^e*qmpGvqAb8hisV801G@1nuePG8w_O0M_ie zm@B?d|B*o3OUfFRA31;Es}sK0<6?cR%UmL?`~&(Ku#WH{pdC1r%w@_Om-+G${WExh z_#NObNdA!H1dS&?9zHhEWp)L*OmF1uMl|L4DF!AniEfKcsF}fd=?inlu%luVE`Y{33jv z1MPs_>FC6Q(!`yke!n8E3mdW2(*yMSz;B0N1?GZ!AQ#wze?ia|=oH6~mB>$HuN(Oo zaDcLQCXXA0Wv5ITsH-sY7>Bk+fF-<@>$e&$El{kpz@-u+YI)|S6^u4}Q zBL--tgk@~aBhkDXl?@yUpt z2in~%Jn}^Ardi?-+?m=n;z72A;*Ww8E-w3YS=}cOKi_8ixPU!tUi^ID%=kBk>^`=q zxZlIp`HoiTJ8R^Fa}lT3l^Jt2$M8xoE_-g(gADujL@X_o;2w21_HNM!@%P@icX`iO zLmQWjuX!Y)HBH!4oz`4cF5A$R`F>bj=H|s??imoYco%`ZaOMYY=mF$yKhf>@{a3K zM5pt+{BOoy3msgl&x7ZK;xC*ycrL!;pHIC+`LC znKI(ly8*F%Um3YB;oOKHuHD=*a$!Ww!*ORn54^Yd&Db}u1Ye(1WyS89JK`rk4EV8V z%3a~>@1?qaZ})d!*L-xb(XKBO%8z=ma{Gkdef!s*ZLX&EJ6odP z-My`kw_fsfaJ6B%%h!G5aMjRqYpxgXQEvEzf=`&EgUR`}8LS$^~@7oYaKg2(QTb4Scrd$z>AfOR86^A&Ei zdt7|Q^KDZ;xU|vpD0E5AhXL)MDVl7}jl03u-hT4@*=x(LpNRf&?ywQL-)yjXLPW+N za?RdT>`~~$z4!Z9*|B6&@jGch>%Qq`=C=|&7Z=TWdCZ<0U(C%iBIUHulb@HG;J2pm zq%V`sN(dXezfR{JX->3AJ}TS3J#Urm_I8qGU!IO^-tNmm<4*L;x#w>40_XPR?(F(H z_So&JU84iC|gSg zs|os=J6E_r<a9IC zJ=wfI)S@g}TjSNQVBLp{AA|jaK7YPKXPnQ6dibFA($eu@Q`b=OBPol>Sq~5AiRMuhwUa4$9H>`&wfmoiy0j+H>*2_@*%;@eS}<`SNW+ zzFLzb{eJjd!RNC-KI=J1;d<}8#*@UaBHsr-e`4`RYqdw}~&`5AkP_&$o*38fTS`n|yUIFTN^e)OsrMC$M?M=R*)a z==n|Ie&m~)HTdG&;Ac&rZ~5^}^9%|PBi|f8JA1LCF>-~c#?C=szAkdpbD+Wlu&H}* z@dNSURiB?_@Ux%K|4-pHzbu^>OciVHRJMhcft3(C23d{Ny&-ltgFm zgUQzXl=R! z`24So&y#%q7vZ>TzEnDapIhRy=BO2(m%Ow-Tzo9PVV)3U z&OMxL?Q>LkQhb~5%d04PY3+r=i%?e@PZ#e;S+wR){8s#Y&S$eJHox@w9E;Csxp$XN z3TzgJ5ijT&Q#3bzY8|ck%y`n;=W}y>)_OvPzk+@3(-L11t#v-%+TfeUj}_hpf3$u; z{0jWknmF-c*zE1I*#etY2~>C?pgj-bOL8^SJ}>b#u>Zj4e`hz>S)ZRt@pFaGpUwF5 zhR=r(e9)R6r46ApniCVBle++G4Lf`!_O;-~hQiLXY!n|=1TU|(|; z3Qt10LRgP3zAOHW_LZe8Wzn3FS0}f%??HTO^3`~N_*D2j-B(6`eCSM|!u`QMUtXKY zE6nFxDttTX^QRX6oc5J*2xZj%cBOS;UvnwqJ@}T>=UW$i)4CajSEpQaeSWsZPwgvK zcz&?b=T8&-`M~Fc2OqRvQ99xHpfL^cA^5Mocj9Z}&l;c2&e+r(j=}@+VZG005o~IY zgu;_^EXKiz4*->Yes;o7?cq~+eQatysQ4n}`_Nb3gS6Y7KAS19skNWd$wJv*_xaEc zAGB^-;kodCm9OmnlwIRE3irc*%{Pe;z)!8!5U)4V)c5%lhd)_jR z81bP%^Mm43kv1crL=oSVNX`P4kv*5!f81Wgwd0*N>q}3dy!u|0_>#f9>Ca)qs-;&{*_LnF;E%r4x zCB6c_y$K^eJ?_O(`7;fqP3^(Nx8;*a*Ai4VZ$SYI8srw+B3OX1z{ zU;CcKm%xtpz=&^8TCH0WKNCM|`}|CbpW45s@DNh0_W7wR*leHu4%pXtm2|4$=P4NR zX@S<~ix0w2?Hd!Hk9@V~LwrZ_)&4p09_(wsfOzg=t-UI`e>nDNvb9H7;o+p!dNuLo z$xVAvq_h0%$<{cC!tY6`!7RX}`Pp z?36`o_Qcnq-n2$Sd=hLP^7%OeKediY;hFi<-UIQ~DEmcUT{Xw%G@oxN@lE4c(s>1+ zwWdIP1M<=yBk@6$OZ$e!SHY&%6^YMH9cq1;_+a$4Mnilu{5kLQryu?t@s%+bWsLIq zzYt5>_aOZ`_@?z(;?rUOd7p2|@lErx3U7+fEq(rs#Gg_e2!)3L?Yk787auf^DZVRZ zx#jaS1>WWH`R2km?FE-kF7&mpS$q@n)!t6=sqk~D&$rt6rg>q7H^YZ}zH;@YT>X9i zjKH6oK7W#eU~L586Yb@LKq(_gje13$$-jd_mG?_SsC1&5wNk1mTa?TS})Jern!G z{1ECv>ukga;ivWhh!4e2&0&l0iVt&qWgku1HKwcZG5D|bE8^>sulBfzkHNQmKA#8U zv)-Gc@GRhx&!3Z&K>Lst9)h3Rn<_p(cCalX7f$Qnyl_!Ru?>9d&$n_8cs@Pd>}`$5H*Cf^4>-vX#B?Vne8CGx83E6X6t z@`BHwAv{gx~J=oF@q%7J`AwC;*sC7%?Qy$A>jC{2opU;$JRMX^^bh}b(i z<0!UqY}ng4jtw2V?{Vfno$q_sde{2i|G%HEC%Lk7?ejdYeLo@Px%aiQQQhP^~+J5$V2x9D83vv?JZPXAK#_sJPXby=KPK8KFON#Xlk#A z@{3{9enQ1F@zvfX#WUb}%3k`JUax~{JQIEG-&P!pj_wgwyo|c^_j$$l!C7P9Yw^`R zBN`t7XK#De;-%L+HC}?I?u$~KP6gUiuQ&lV{rz2W1zxY3Cy9@@yT+B&_=m6QIJj1y4Rr;H-%I8hll#z>-L{3W<`SW=D!Pm-T$HSweTM_TNzo` zm|-3a+Ec8Yj_}VgL!{Qzv*2)-d&9sP}kGeUx0pR^RIzldke$4{Cmz{Wff=g&^3 zBSGW*v|6{1T5%yfx?f!JW;pelrs4={*WP!-)qy7Sl$HCdiJbCc!H)kT8 z+Eb>SdU*9V4?p?U^`p>u63oAu;anKh=Yub$;Na8S>hAqiP8^!*N2Zwbtn2QTS9}At z==Ds+wQxRW{#4u^H}jV;YcIGoYroxAcQ2pvoAcOY&4FAO?K#zWD$Lpor?>#-3fJ3} zdecfmuSIa?mV`N3@auj~KXpZP3v)Wdsa_AN4pTNt;7S$j$~z6XX8CE?uVFn6|ZDZZmi z!kkQ)H(Dndou^#aUh2}ltiUe3FC5j=9Gk*D`3_=(VCkM+q-7F47R(yw)(8@1ys&9 zcs{gm3w)cH=R>}BbRUCq_{(_Ro_)o=$Z6}khEvz$Xl5}Ue6cN9TM}v}!lS+u$}fUJ z`=}MSf?4~66i=kC@9kTSW*7TDfv@iUQ_elGX}_uBCj13!OG(JHkQ#q>T^CW;QG4a% zrTrz!kK(QF<5henoG}x^xCpOHOTxG@oVrI!Ip>hm(VS<%sXbvDkB3wDS}I-x&wJJ{ zVnp|kXuO*BQC~L2x#;WuqcCn1jCWm6Qr9&lVg4EL=Q=;1eBIxr{H8GEP6%^$P?!39 zXgr?Ubx*wF7;02c3B}!*dvi$`=c*R-r^By3Z_3ecY)_egHT>!yq36CyVALkl)g^?4p*ly$+AD z4(e5*oH+Dvv2PB(-&v;~I@%YmoE_An-XDs)pn1F`jAN)*_rhxYZ0b5*60+@wZHx6= zq2H6as`mu-Y9E2}6VTUQDaH4*KDsAJaXIU-%bfH1dK_f_o$#ywhH^6D)O~k~o1?G2 z-ijZFQ$6Vv7sFZ3A0QRi=k3XoFm3>|?nl=6Aei4N34Qm%ti973Z;8J4LMV=cQ+v%6 zUjpanC1KnI9o-wF@og|)XP!iOZZiK*tn*hTVa`tUXSkLNsb!WqTSE7yeUtFjy~)y? z2b=CQRGbBadI2b2OpP_JtAG*pw9xoMe0499;&JeNYRwEZ)oV@TJZtOr*(u&aEwQCx z{%+WwF!K*Et5=G0x|6T_4HcI$TlaG-?gN|p1}NSNk9uq#iz+3f_P&@>l_N8I0p5>>^_8-`^UqLxltef_LC?1HH?%!9;GcUNyY`bC8 z-hGXCAV)nb6=(CdzuESP&HR_buYDKF$)IBG4^Ui=rusD~z8p67rBvJj2K5nBoD8S- z*(%PY#^mndn*0Kt_8w}yKlN_1ek%IvC!q08usvtyJuquejmC$NpJlI+cug?#r7&yH zf^sTgQ@<$1@o1{|rs6{0svm&jzUb(FKE*w#QT-njAEg%EkEuAHx${fIIE7lYuUF%Z zsYUxl6j#FVzBOaf-0!)`e5TU%{z$#*m7x5N)V0*i`(V~y3yn8~`H<&EF;_i9HLf$V zbuY2vQRu7RhT_d|&a!49n(7&<@s`Z^*6Vf&>-K}^mM~X)UzM{R{vKwV#lMYPO2hFC zYSdmNHW)S`Q6!|}>sv+KQ_dez@W ze8j_xDW_)ge9F+)Bh2TT9dPp|7Q zsGMxpQ+>)5Pk>qdyA&sJUDT6HaU6B2mrWRVuIu-vIET3xJEw@88J?R6gZ73fXF8mv zt|f+NhxTS`ycf*sXBFn~dYSnzW3GD1YCM^@>gA(2kM-9*kBYCLu7mdFPSd(xP#RBw zUwu>*U&I=&G*3F3+P9+dsqm;bn&P&s?USWpoQnRr=4pqHdVeUVDf;T4rthsS`Mu^@ zbM8V@`{0z5#yY5Ht>R+d>V8_q&EeF(DaDP@)V>+TwJ3D$YSEr_#iLlaQhVhxqW&Tp?~Km-X1iExXs^k5sn4%+a?m{AnrAWN)6#G}p4!zD zL^)m2(Y?Ehd&57?a|@ZPz3LiY0E2q`D%Sbt+6$(*ni|y~MR5ysX1T8A`dTyFMX+fv zpK?Z^sopw@SHYuwREitJe3!3XF8Lo@vp<@AldQ{W0JH8vR(=;aS6Q<@nva?%9-c2f zH<7vOMXdZx-l{i%;y%=(o;-?o!m!CYdFZ5k6)NtBrusxGj)UhF z`_9Ez_Y`YZPYRNu2gwjj#HZX*`AJQu3ZK<}a#s`>!-U5#RT$zYhII zW@`i6Rn{y(^JA}DGUM74uelFXqxvW*9*>v$Zz(QDU-yG6ZU(1%T`Eqb7WE!f91D+n zIx9})t@d0fJ{yK>e0^7OeYF=$;~U|;-8?byd}p3~c+?k6Ig6O9y`_qK!O+9Cj3MWM znID1qQ!`%=b3d~sz^41FHFrJCkv&447&O(BTH|rN)t)uQli+#6JaO=-*PF)c;XB5@ zUGP;8AC0$VT>Y&T$MROaV-@#g#`D&xKu7z@HC_yl`YtFw7iRU0QhX-N+M}j;1GCkG zUvV^VbsxLp@$jqnnc^~h%j`89uXnt*%UE0Wc2rIR*P^0FI5!h!^&ZuDCJdYHwH~h} zuB(O|^#M~(H9YE9p?DIU>J6Yc8!zqsP@ILn_9iG!gza%Nr!X?hoTYH8Z-8<#`6*2M zfEA}RccXcV_(=N;H9iiWE@m!(r-ywfU)-Xp*3gaetsgH@q zW8wdY+0q%&UJ8vT!K^;OiaVpP{&I>-U>;$HdU$CMp~lz2rae81bKzH?PsL;LQZHD= zG1Q_xNs61Hd9|54qSM!$&2iJ-MCF`|ruv~PPU5ZZ`&Yafwo>a4M?dk!Fy}#P(OzZc z^o4VQIrGq0zdDT>T=hZlOV%7BbI*nhPB#m=8Ir%;TmJ9QTz9l(~{ahF=rZH+N-1Si{Vrs5yh3{ zoMZho^oz|L3-c+@&0(&3!YDr(PVF65d?Re?%dR+;xxHN15b{59y&2T29@NT7=YRFt zQG5vIh?+1?*7KnzWXoc%`jOt2eyjL^8EkPcdJCbv+am z4}kw!uje+_Q$6H0o=kpbO&B-ES3Q6=UWl*uHY+|tUFut@xB>iqy(Xz>PIZk#$-lvx z*=X)EXEdDkt)GUz_OnT+3C!vlrMMZjt1qA8R%mJuk>Y%GPMUcu%h^|#Z85h>|)Yo_nv)Xy?QvUX?y=fYs2-{lMHH^B{ z-&W&A{3LkFJoDjE-z|-&!>>NKinHKXZ+pdg=vSJv8=O6A!tp+=gU-NF&QRET*M$5f z?`*5 zRi8tRw?}7GP3XIx+JAH{8PxKjeWUR0Vg4rY-|Oc?d)QJYhrWxbK)tu68I7j;i7QUR z_gb&vNY+rjhBRIP(R6$jf5GqRU)d`OuNgIAP7$2iZ>XGs)TO@Zic_dpJ;)X3qJNov zQ}8V@&jNVVmq9t5;8g!h#rMOno?METQ{%FlFs_f+vYOEATX@u;MLAvIyx#f^(Qj@2 zh3G%(x<*l#_D3qeKb-0bp|~Ty8?4_C{jS!GLvy3OKEdlg>sO$E!ZpTHqk87*`K&`R z`gtz95bOHIO23p^B3FlAWvoMCTo~&wvg)~|oO`KJ`$`p;z&6zUx4^GH78-8{r+W0( zeeK|-p1K-u1W%8S-KH*lRMJH5qTOLwKp*z2>G;m(Isf z9ILgh3EBR`I;aP$#@ADq`q(J$0fY8MEB*^Q>PM=$1fDxqJG zuKnYRV_;iiomzZO z^JGmJcjP1O;njEW{3P zT=d_yZ!x~9)@gu_dQd1Q4o>Y=ReUY=ZZY#5n5(^316ZpG_A0{bvzjpfd)U;kSaaLK ztX}d_#KFI|)%8QucsiUqA3<>@HO{b3B{~hv(;A*{Yr>pDIMrK0`O9I`9%jXTVN)MI z#b?5%vknxepmWq~G6k=`Wvjk0rXCd2doe;H!Ps8t=#K8te1doVtE}8owOooSxy|vJSFGAlGb< z!?we};jC$37L-FbG z%=GwR#-FrK7CPUWVI&OdtEK#G>e7B~#hYN>;2OtL<0<>zfUo-bDyIvYcblOQh92hs z0Dkr5P|gY%K6Q;ZQ)9oL;dl<~qh4Oh$-!6s)D>5tqrSFl_L~$a%2V7$-YW&!~(fCg28RnG0 zsq-+D9|MEVu~0k}2K5Y8oJL&}Tzh~{zS-`EO}!A56A6#b0#Td+gZh;yUJ0A}aw#5! zzWT2#j)kGjUh#O1a*bQ4aY4^8r!Q?5!dUO*I}IaUkWulQ`hy@j6zd=ROGb*X7#*Mybw0^LRZ`!Hl0hUI0F5RJ;OK= z&S%Y80H=B>D5nE!(!-p$!>Rsk8t;aedZUQ>F_^cS^JzGB?uc^63*{ zXYM~-OJ{0P-&KuQ@)@0VqBxSAhUhCU!sR`)MZ>0k3mP8_+tv2{E57P;qwz6#O)|qo z7}N({<7=t?`krANOTFr$ukkqai`Rs4G;5-BB{iOpm(CzioI$?&tSTN0=a1&Eg1^Q( ziRh@GqjFl~s~$Rvr@?c-Igi8H%wF+$sfWCB#=-Vb&oGX|OZ_i2-iR89TfZUti4|c^ z3`9D^MmeeItoJp#nQNr86EvQVj(XfE-UmZn?=#{>uq|;d-Kph-*`9?huOjrVpe~&y zpt%|Ns)vW-`taz?oKU~2?p&WRC!?;fi{i!TtIxdR4b*j+*{*}_-JaoiZ`joPNjdrp z>k@nAK$xExLO2UZ*h^JixM3(V?Iq4BM-weh2P&^&x zr(Mg{)S~kiL(O(|y_giA0l#|wDDKZ(^=MR_3#WPsD;^C)uDvR#@ml!xHGYtmbAAH(t;`m|8tObC<bz3L6|mLVD*-R{*V6b1)>C~+6yFB(i@w(NA^gNVIz9b2*M1GPM@$Xp z_P}d^+1_T|bS8&%qN(>uGc?W#e_Ona9Aa z9^TSF9Uk?rQ(O;U^%Pdzf*Su~{zdSsHV4Y zgi~kkC~g2-wsoS>dBF@Xz@W3AloN%f&NEhA0MRb*t`azER5Q1#_u2+oAcC zd1B#FZ$Ra+!>X?TwBkG{8a4{&Hs?98(QA^*_5IMC_2B%-Y)`?Kb494r7@lj)^B6qp z3oOkJXzCnr#R)Lz+zZ78aH{8(;%;!NpS9u=@_(>bH@wvQPvaBe)Ojw7FNI&{Jt}U4 zW>+(x4)YN+JOaa2=1+lN=Ort@C!D{U|6%xb4urZt1$7 zp)U2|()eZ6rL)Ww&!QIfN>^Np??Urzf#qpUjMGFzxpL> zJPzgo_WcFl>&MgJRbG$*_nRXhFf=%ZO zD87Z-b)K2x0`wP~^Ph04Z=%LC;L#cPid#@ixyMH{uAcoGkLG`!ucY`|)}d8x7?)Ak zBc7YfT%D(;oNT<*e^hZ#YS9^bieq4FT^sryM_=brXnYWyI)g`XJYMQ6r+6(j-syEX zn|0_`8|E~?S7%)-Ckf51_T{I>y7T)q&UXvOL!Hm5_k=mC;p|l#jz0;5&h$|}onPwu zsVZ&{^WfTWyeD2dFGAxx^<1)7XS{TtpvEKcI@jxy!}`4A>)V~{t6q7^Sxqg+UCVZA zdEY$jA_&IThB;5bbCsDthFLwrH8&o8olB%R1!+fhT^Z{1;kxXw>l=*P-&4tsqpCh9mUPzxu!OZbKq}boo48$x4d!^@zq&3ij&~Ht~O+N8ip^;`5~O@ zd#s!kc+?wHaV6_;Yi&3_2mMmB)q_pFOO?|Jul8QgW~`^qPSkil%p1*_2Iu?cp8|gm z&n;!{(b~}K8F(W4gmZf__Xacf)brLl73j<`XFQzhLn*Jb;C#ZI{oov7{T%cY`h+=0 zsj;*9cfvo`%uQj|`4`e@gzxj#nU0Rmr_=cPFstvS;#GM4-8uEisc-%JwT9Mji2f`y zq{E=z%$nN)W}Ts zyckaPX;qvFPlY-2;QXmJoZA()8Z)HAu-W=8nel>oBH%e{{&@HY+v@?m)Vo{y5wOKh z3*)|M#!d@;^{TJVhg42JzI&}-g8q8fm`ja&y(WWL6P@j%e0D$uY1W~8NZq+X8ed1f zADS&5HuWgg_!er^nFNZv!El|u==u~)HS;l;bND9XjVfeyx zn=)7DIZJaK46DrlApA4UzaM_}L{-l1_}*^L6gW4SZ5C|mHLjfQFdz4tG+|ACuva6z zD$Vu)S>4T62wQJ6w1Giqc}XW5&X-+Rf9iV0nptRGXwG-xRG(Jm-wB(}!&E#O=G|tS z37gIz(|AJ|bgsPOSbU#xEos!EGpjUSgs*y+D;`fR>IJL#4)n)Q3&$J5*~hgMQp-Qh zmIm9u%-j#=8_m!X)mr-w!1osOzYqUzGbh0OmU%MZ>0+KZc+`Vd40pkh`c25t1GXyH zl}uer%{B@)okgbn`mpJY8O1YTh^z|Z)^HBAejfU(%r*$N)z+Dd&e!G{3Xgi>O6M>P zI*(NGX)r(STE3!|_^L3cFSV!Jt2tid?UjR<&Ii)me0X$@S{U(HEaNZ23FO^3P6JPqMFY0fv`+-Ln<^mU$`^pjxIxv+{W zscVzj@>oNiH>B|vFpsxa3|_s=%ukSY=SC?f3(f1zHV`)T9M<@C@aw!f#c6nznX{#? zwd*RTE}e0voE7-$94W=I_`YklGT82!7LGT@OXun-rvjeNu6H!`_O@mPnmW%wImvMT z=5=_Kbx^NojW2>tXN4(l0NZ2c?+3rm0@C;f7<3l2;wJpBbHx-FldrR36|aPCj2Wt7 z(3xEtPeD~@Yc-ooyRhT>2s}irZUbiN!n|jkrr<}Rp zn149@I!{L9H8?CV&m?$s_M*m1U^wYorc;Z~K+yPE@Hck7v#3|Sz%@QYYiqU&*dnKg z`R&ku)S4M+CQJ|WyTUNS{I9`(hxMDIud}YCIgwg6nQb6!I-6PJ#rW#XF~x1s*O_#R z%kcfp%%w1^C%49Lg6*K!q$O+es(D(#Q)-?e@VxEuD8_ZpmgY`|q1;}>@H%eJhH%a` z|JU#zFy{_9brzlGM#H0?;EHdCL1#=Wt`EP?SXA5%PM!CrI3N9o%sC!TokywhOmx

VAAn)AnSX@2vuhtg?K(qSImxi8uejnR z@VsWtL^O34rN&EO))|0`%VGPwnLEL(^X@dB&0L+Wp?C>wmzn=b_(#}xB)-p?bFnzr zh52dJrE@toHyQoSW@`hR&T-QC2k0DdEk9AqB>N7+SLgmIhpv=$=PN4S3$uE&E53zw zi2XLqnGBoGeA4(AXwI?DWOUv(+jQ8z_d0ZB9lmwF?WlLQYw1QUcbn%Acy#`@G)Kbx zi|3{=x2f5xVN?Hjf9IQm%^;G92MV1U2Dz2cduZi z*G>P@-(iLkFz77RaBhOUqpIv(kYFCeY&AkE6$<~iRKi@j_ z(9v0&%2@=D&Z$#8iCT2Vjp8hrA2UxmJbPT@5NaH5woKM!uWRYA=cK)w;-xEl{3y;uU+4KK=FZ@{Gt?Ci zhqIk)j3uj`*XmAu51X?uoI00L`SoDX8IOt^z@YPk6z8CS$P9PF5ZNyrUk5`=bDjgI z&Tm)#Fnpu?h4uaeug9#v09Bnepqv|7hmmIM%D*Th&2~HaI)g_!1E?jJ+gwX3wY+48Xc+RXc_*3!%)cCdou{O^ap>#(BgKg@ zl)09dV5{)lyP2DMEX)~&*ZbB_MSs72%kkA&LDDHlbD?Xz4IQ0ls`0}xPcp;lFnr;< zdQz9pbyLni@zPm6idVz)m^Jg!eA4U5i5NkNc`D#JWu6J}bT$9W_--=8y~H}RRGKk7 zyLHy8;@jb=vG2d|)tRIkkH+hSy`u42Zsv_J>kK31Ooi=D=ckb0!8|SC(b=fViN#B2 zx+=Z{uMeHiE1JOpvmJ)*bTeE6!zcEQ!Z&+H`268cxL~^(mclT_HNL{!zkB`jSbv>C zB`;nrt2~m(iWy;k7rsl6F@GfdSJ^8HuV2j*3C~e8--WNvtd;(4 z=tri6aSJqCTa(@9b!R>)X9_&4UE^kIe9S!A@SNpZPN4adYssY+o%5x+325qkWyKBf z>ghG<&YHYvom6ykIfGg`F}hx^C7W7aHuF8`UucFsFg)ZMi>Pscnft-4^RJ{sN7^8A zeHcf>Q)V9il@H#vZwkJt&M6}2fNS{wGimB*F8keYs1i?p!L3 zSL3zZ>(GI9&{@zL9|6z9X1D@|8_eGp{;29OCk}?#>TvyU#Y^XbM>2OQ`z*$|mNN7= zTE8dyI!jpkQOxbWK8%}*-@Zff{j2%^j;784Q~o0Oe=~mr_;pUI#uvi2)3x`e_J_@R zA)JG(UxowRfTR9%dU1+g1Pl`t4tL-kjz(g7bNM zb;T>IfA}2xhPrglv~rSR-eKQt)+h3TaQtz2batC^cEGQ5e-+oj|GG6Z(R{>f*aFVI z)`>(%=e8-o5{3`W+zICKX5IkveP&K%tv<45A(}d`P;+DXKifQ)z_Y^4=`bI%R{>s4 zUDuP;wcKkJ%UbE|W9c*(vpEyt)VY8fZ%SR?+P4_rr|p}H?@wkP2JRn>apW)P*h033g?<3Y30Z&|NI5!>U*=8OK^S5S*f#DgmrNMTmc{agQZicI1IPP`3 z8ZVvgC$FK@waq;H;OS+~C_eMM^%Ky~Pu0)MtPlSte{RmR;naEV(&4U!V6Zg@p}EGK zGvVBA{ZjNxTuTPE#BT`arlLR8zD@8wZvN5mSKupsPFoAQxR$2WqH`EEz7~dw_8o|? z&XL!6B0N*9$t!}vmtN17oKJC+c@D#)GlW&wdyj9cJ6~6GspWNRzK3S~RiRD~ymXeRG&`a{!fcVS&GDMVu_k-%H2^Q2Nv!;OFnnmuN6_42 zuXFHfVxGfaZX+kGy%9W9te=Q}eKT}|LFZ#ib3Y7gte=7YE%r^v_YFS}C+d}0>mNja zo;Bmp?CSN5WE4CQebWXG4 zG}v01|5Eq||Mxm(2aj5_2F;=7eC+9M!I$Pg0{+`dcjO&bt;Rl}J! zAY4OU6$^UVw;jGq%{CggYt5Db+eCcDxq$r02SXixBMPROlkY~sbh9mG4Ieeb1Q_;s zJ!4tVGBcb9!zO!W;5E(+Yhcj1yz-)ha8PN^ruZ(iS2SLqxUQwt^_kbFKkIXr8BV}Z z&zvjaY-`{4_}*fkbaUe}p<`!Bgb9t(kkP z`J>?9W44a4oib03*3&#m@QgCUC>R#{nl|H_HnwJ4G>@9$FwgB5%)bo&2kaGtSDtxR z!L!=@XTX268IoX#O$%#GW_@(tv(}**JTuL3BMcqw+Y(=$;Tq-?2haZb9OmD>pUuzd zjdkbnDrXNo)n-@;gU(ymcoO=%%rg+4)%NOu*W+e854Jb|TxY&t3^zjy7<8_$bgn=@ zZDSZG-MP}rZ$>TM&6x@3PiD9X zhQ;P=2j~6f9Ioe~^~a!pwlzDVIm8SlFvK+tzc-zDoqnO#p#xFyt(oIso^Q5!ur>NV zuiJni9m(`(zDwN1P_%!!34HMcoBE6kGxPoF=p#jBjnH!#c@ z2iuT8*M#R!JG1fXSMZdXtMuF(7=G;+|%3g2b+O2;ebp-^)I{14cdubjHGmm~2S@yfQ~ z2J0lEGs`?B@aSxL@sz-G+;bZ;cOyI+Z^G{g-RwIW-=ECf7v`;Ih=t)pGv5RAZ(c*K zbW^kKgiUAKOS3*+yRCnc-7x2vXDmD;?6n53H_X!to>9KmoRko}>*rn$bJJ#rU#B(v z8~&piE`;GD&rM-&_UzDi2+Y0BGZvoDtdoV#A@h_`ZvmR(jDr6WGq-{H-`31SbEY}R zz(GyN7;DaPa4vG~Wz_zu z=O!`t59?>6xyn54;CbE5ZDD@OzV)f=X>;bndCEGG=*+R#Ie4XV=$dNh4v(PHY}dlJ z#rjvHf1f$ef>Y;_D?ggG%JbZO=Dud%hlq>P!y5G))t6?Q0NX#zlM2ruuNxg+g4O0Z z4W5Ke;oN9AORb-Q=9T7o9G=G3*XhouStl8tznSw)IGcLz1pZd=nb~HrCOhmk9yhZ!@-;q~8Wmr}-yGtag}%vn6`Ma6 zex0>0o;-NYF=r~Ar_56Y&pg+7fEu55jeDsvtyy@jZ)E+)+3PTWm*`=(WY{Kq{2=2m zd+t@teZaLuP|I{Pq`~la*V2Gm8d!fJ>kxM^_!au@ZnRx9re!hP| zgRgrjuN>ZDo&sIUgOMp203@Tmg}kICHtn~yVLqH=tn;sGSJB)nCZC#nLEqt zAIJJPFeg9J2Itr}AKyF7v!8sOk*<0h!7$3q7r^|c*Q$cGy4t=e_%^j>Uo@B7i|?kv z1J+4J=VLSTRTRAJT9#1DS>}A6uZ2g=um^^V%yubkUwLjf=5`nqUf;%C_Y&8;f_hJx ztto8t%v=n!&V5%c2;w{Jbz)|m4$;_vJgjn`XdI2(pV){jQNkLO+w z^ZoX!#_K}sT)_DC=B$RZ*1ntYZD*bd@I3DI?9FJ$uny`DKiLhy}w zR>AWZ`!>dRf_Xm0cZI#!9TXH;ClZ~4!Qu0&6>Igd*~(zM$iDUPz13c^cnvdWIh?mq zmwuM}n%`^QGII-<;~xn*o4~Wc44=Tz$i5NyzH81ZIIpxFpn6ENVKX{g#XB<2`tP_vUXXft#e+x4d!0@njO3)c-=6*28%njGD z6}4Py&aH69&ke6vF%0jxu8XPba(gA}7^}Fl;yTESO(1 zPb@swTXSYWPh&Iuj#t!MA=?GiQr|pf@O=2<4Qus)`Pp$1d|{rJ@D!N85&UPH zZ53>9m}eb437KJyx%htPxeb}y*$kyH%r$d9%$>~842I{;FcgL(u4NUqykMR(crr7? z>$sD3=wr?LXl`{~!>FsjHCv$B#>`j3e5slL1M}Br9tHDI>r|q%#%#r~oixvx@EkW! zHauyY!x}TFYb;*+TCU-DjgQQk2$LcXc5*P z3)=vD#p6}z@o2`Uo3jAUw&t7-XVSId+(GC+W8XpezH9z2@NcwN2fP+pCkCCy*3UtI ziP_GFZIT&cVCZYF8F;Pq+&JbQa_yW}5_GUmBs%jvH;uXPm?sII3Uf|`^Lwx1NY-$_ z*>YeTXRidjwwdQ5cz$;+&rr)TuXA!x60EXUGrWeh2){1Q<(dvR4<|?k2}8p5xtF<} z%+MW%y{;vnTD~*qWpF;@y7(<3c+Otwcr7y9blA4qw*kIK%-(DKWl!_I<@GWuzn=^ z&CHMk!%FL~MgL#sX#&q+>$5t+8(z0HtlM6%PYUakG%w`Iqplij=A!vG^CZJ_pBXNK zVX8IXM{}or7vNhkFI?Lc)-C$&Fn$ziU;8v(PLu!yXvcSid9sYrX!{SpN>_N9x~L&L5m(-}U%D z{q-^TdXxW-Ise971G1Z)?W;cOTR&AgfM*X&qF{K|*LMoncayL0QvR-Znwb~E zywseh!TEyOeuJ&KeS71(!)*DmJ!rNKu*Dw=z2@OtX5V6b%UXud!?k?Pp0wsxG_Np! zI{f>rS%Btp^PCA!ANy9~d%|9w@v3L96?mQH+Ow(sBJ&@E|5j^0&ue*|%##7nDKl(= z;cn;T;@iWV1K`|Z%~Ui`Gs7+zj+i+g=H_MyVEEi@yD(Y{qN9!#mogT|J@7; zFwC@9K3?nW)flfvL&NJeg6GLS=3kH3i{^X?&WZLKfY*a&s|VX>*3Upc|FN*fBG}Hh zS0P?!oBv%j+nBQxoR^qkAPirdnV-6Xjh~k%#JZDnphwGLM z^8|bK#_Iy}tb^xeYqmo3L3>r;75Pr6-v!PAW{Zcd*4JVj*P`6|N$8)nPA)oko8f!- zU$AB)G!NM~3*Q#z&xZd@YfeP7)?PQ^6`LLMFGJ@m>nEZAg!K!lajomBPhIcZ>m0ml zV2ccRZIu4T+1X(&8Qd+{+rC-&p76TS**REY-y!%$Yz_0<;q{Q2N5b6S^~URYYle?t zyVwkgFqGRX4zG8uAA$ZD&y8blrRzG2xj&kjJ2HbD`xfK7-8@_2`P@2@=={^Ze_`$+ z`~HgWYv!B@=QP(CO^r8sZKt!g)6I|oLuYfQz`5UEBk-y+107_7CDutr=U4kqX3dY< z_X2#ETC**h{ax28*uF4NH+Y^f!)Y+AcYZtayV|QhUTLlL8YAD|f8Q1yHqQ=tGFyeu zfg$*gH*+-1FPY&77$U9du_n$3iBkvGy3PSuBq%1>tX$P^nWtLtuSmhLlO)h+V=u{x4ZV`)PBtTneeYL zPaAlK*mnWGvBSKc5&WImUZr@oHFGJwsn{SDShL1&>k8S$Yvc*y54wR zAzWn5k<_@!oEO4bZO$2RHZemw3@?~154PoIZUyrfuB8*T6q#W!3^UDnuCA$h_(>&r z!aVWtY%s&i@Ncwce>5*Q&t7<*b&V^@`H%Udv_sTv-^2E?*>=FT(>knR@Q{65{NI~74d(al z)e*0It@!|&Rj#EAwcKa@=IB>jGY-w{lVL5_z&z2Mhu}Qny7p7ondUhHPaDroX71zG zY>#GKPPlGc@O{z@uM@BHb8Irtu{+E^9RAJLOh&V@8CJsZt7~aWEjc-Vu5)6r#B9A_ z`_yd7u)S=r9$d%1uD2`omYe4c7)F{o66WJ(Xa+<2wopG3uPe=y1kXp-JjC1@vz-Ck zW;2w*@S7PMqKep~bpn{6m;7uqWcuW9C?Yj*Iq^;6NGYv$Sbb~ex5;<-L# z%SZoNYhH@xKCfXEJMFHveggX2%(ff0X0Bx!&w*9;jm7sXuhn?g>Q?Jypwr3x?EVeD zGuuwshMOlEo;&T8kJr2AnI#_kUW#vxeV60An03?7T_-p<;e6M44mI|(S3X`3S~D8W z=;7h|^B0g{jn}*{om6(4KLP&u;o+L3z;>H`Yw-QfJpJH##+oT;&N2T3@Q*QDQ`lZ` z?b@yQlJoP(pK3OCzX!X_&+zap&1Ps8o9z|Y-nM=c`p=m25;*U2 zEveMf$oYljFS2h7d^eeSI?SJ&Ef%&__G*t;kr}dKSnIh(%>9SGF2?I=GtY;)tG%}4 z^|RShVY|;YMp5H6_8o%n4tsULtDmn+d#=krt-llfUH0vP?_lfiK)>mAq~!Z&DIjOkN^91loU*`FLxCL*P3|~ z%zv2kA~?VBIxJ!x>X{(|hJog+f%8`Lw1%hLIcem)W43JA%FPoC&)xRA9nE_^w+VAI z-VJMPj_(22Qc5k$%sCj&7S>Ni|0UOTh`OelCj*|RteKAHZPqD4CpkCNr_&{IxISB9 z=wi(bG>@C@Jl0{8uiXT$T^I8wz+Yv~QE-n~Q6SZz0Z^ZaV))@tV4|CoN=L_~N!}n9q ztzd3*d&S^2*vIt1)#izZC$3F6 zUWwP&X2^x1gE{-bIl>GPFeJ4JpBr0X?&O@V4uQG0M1UXD}}l?nV}ShkL~*{zRj$egXXLD zt-!aneH-Ch>ssQerP%t}=-+OJbQro=rv{z#T+0S(+06RH^8KiUzXM!phP^P1FM8r!zXwo8e9v&am$se7BnCC_KkpJO3&LpP4@%{ub7}3C$^H zNQ2=l>-R>#(EN$;cl26KVy&Jw|3>)NJ3of}^=1fQ_`zPBd=uR1x)P}Cq?r%H+{Fw( z!?4H<#W0+2&6a5X=5>f+9d=s33jJ1Q+YQ^_U1Je7K5DOOyaro;2>RD~O>$Y2ug%a6 zhI8$kgYV_`O~UtG*Eo|J(-(!;F^O6Zn&BAZ_gga$%?qp(ht2@AO@r;q4YhkOfZyLV$*tZq6AMxCN%>C7zi{Uw7hFBP$H(Nc} zrkIDHHiD?UP`?nKv+R2pzHRK4j@K$*>zQ2ZC+yW7uM)Fm!FH#;((!uFUQ6-XY|WEs zo-lJun1A0n;{m46=sWp?G<}9!>cea{My_^U2W}~iSKUfcSZlC^9#v;#ypkq zq-_stEXC_bv*p89ZQo3M4_W6ybat5G01Q*T4hgJ7zI8It`O;qX@fu*B9C%)}Zw0@(w*f*Z_IclD^@Z_`&uf*#Oe!e~7TGFVcwKY4Tx!PeJk)j3sV(Sa{+qat_nJ8q=B?J*fzFj?&Vczhv+{JgL@y6a8`aZG`Uu zdnMqNH!{5L{b9ZieO=#{+`Aq;6|$wmJk1Of@Ezp3BB|>VGgQLRz+S)O^`?0u;aTTe zim2tV`CG7_cbVZd{@(tKnbTpu+M0a#3YuE;95nOIb0It}&D;;>HDkl)Wju)S* z`#XOk`p3+0l<}6M(3J;0Q^0y zABlcue)t@2hi{H~cJX(c7tQk;<4x^#H(o2u(;A-h?VE}3!}e{A?-#E32=xxNS1eu$ z7lifJgTJADC!qhny)yY4`Kxs}r6#Dc?@jnNFocVL$-)i4ze2>^G6|axXTnckD>qn#C&%WQ_ zJHYx4(O>E7)s5?Qi8WKve8QS3XvU8U*XI`)?l5OEoIlvB9bQY!HWIc8_WByH-e#x= zLy>iA(J2}gJ|AjW!&~fIj_>VW!|u!->ACsLz1*DKg&b_O*9g4Qo(|d05`%qTW$p{+ ztPkgM*PF!-v(H>tGVt3%hru?>njO(>xFj5pqC5M$*3U=(M>C|u zFxJdVwEp%wMC~uwYcyU#L3pjXQ#^RczV8ti+P4hfe_Ou=`cHdJqF9s8W{7}cgZ1A= ze}R23!uLnd?ZVuQf{-}{wvWt^4a3X!{Q%zr^Nb_j;d*;eZ}g6EZX!Bu%{EKd%f8p* z`;OV-VQXlwY`iv_=Sp}!a!x8aAKUj?yr#OAR@8F6HIJe>&|Vkd74b*NungvQ=4{2> z8_YQh&NqF1b!uW~GsMBL*9@Cs_}&aDF#K$W;e4O!=lllb_qYCJ^e3C)01T_l*&NOX z%$W;kO#6^68_l*}tG29Fftkm^e5)Du!;suQyzYNRf1G`b@y)PK3_3r$mW!$7bn{e` z|AKx0jqi5zWWuw|oTK4<)LxD8Dz?`t=Dy*%3Cx{q-x7Q~n{yhRA9y{-u%4T(*#gb1 zo5LE{z;n>Ph4{9%{;%l2X5UDBS6jan{dTUafV#dk!+aQSw@!U@F1Oc(c=d38GWmGL1-E7XraDHOWQaC4?XFfcI z_L{D1XZ=|8Z?=91^xK$W0Ss@Na|@j7?Ny3b7uPbFT56pCA^A(}wH&W2&C?N{6K0+Q z^B-nQgRPZ$3gNlL`X%VU;kC`6L;vGu>jB$0=Ap}KFx0+(!*{rOhQf1&>q?}qjHTh) zCgJtGbq1p|-gAQp`q`ST2W-8~(-)pCuH`anIpSJksO36y{*C;9nKKK{o9vs1?=0)T z1Y4;YQejB?Fyxs4|LOLciP!zstfBT#%$W=4a_byJ=Rxap!c%a_Y)`;;!feN2i>?>y z)4?QYZQopc{mQbi5ug z&(-jJZJr0=>1549G~YFUCj1+%zZm^W>!hIbzP%RVm3m=V%Rtzw%|8kLeP%cg!vxn@ zNsTAW&=H24TqC;#g9g^=jLxl|+m^ZC+G{ahd(CqdJYCI`2hRfQN2C9P`Sal)<+`q- zt}5$CqTkP)9pH@W5c21c|1Y!AB`S#P5MGO7d~dPuWPC^3HwNEM){H}Qj=kFA^{n~V z!~d*n>_m;3_DaBOtC_izKImngSag0jLnaJU%-IpneDnO9_*LuQj{Y?B#KAMjI=q?~ zl-Vm6uXSd-3%28~Wi_?DZ=J8vsj~i8=wD^FWZ2HIegXPZt-}%;Qj?Ufo%GR|r&jEP0**6W}KfH!rSi=>bo5S2)W@rn; zK-Zg2y=~013!Win7!Si&X6O#X6ZUP0Z{nDc|2cebH~+2hUtxw+7+!XMTk`u`|5o&C z?VEvbt-a2{Yo|H0;EXvQ>R*9xvAyQt^@P28;dQ5L=|nAyt&@+=eP*C*fAFyx8pANb z47b2gVErxVKk57&@^3RkFBsmiS2124%&-xL4fYz1*CK1)jONdHMe_Um*ZUheT?rwr>-B&obv< z;k?1Vx8WOC80JT#Gt>IFqyK~%(qMSp4837UDh$`NHT+-Ow*udD%pVJXLo<}Xu+hHX z;M?6i_24rLw{L8rp}W8mLshIugTH|HO4o@f0#(f`oC<@jb=KL!2nt}%fco0>ln{uj-2Iy~1| zvlz`U%+Ldd8D?t+Td_3*=mG{Zy~#@crXzCB&b2x>XvTINzq6Km$7 z`GlhiSM4$OsTqibnOE#s}3 zgy!jH>knHm>-0wFc{4l@!PxPc(VhwM85-^tdThvqReoC8CiHM7txGQ*`X#5^1FT!(Lob8^TzY2S3M ztu;rXxzN7Z_>MErBk&yYx@B;pV6}C!(OK@fDa<`#o=xx^@^wk$x;$k5!SL5JPdPlT z&G`bH?W~!H=GSJchV5DVX5zciUP*XuGG`2&hwW94*ZXGZ0z-{8bJ6T&uUqgs!*#8r zt{v9whUP2g><4E{bGC=`H8aG)5VI^?&p6lyTR$KDz2@ly&q#aC!|Mv`k3fHn^EZ>f z#SAyV@Uiuy(f`H#ZQ#Gob5}99z`pVLUT?3ycnvgXOE_!odo#XM?bTT8Y5g4Zzj2MD zsPS&=N1?ypJXP>i*{cMvUp%*vxtSk_wfBQ&en+yKw{)-OT-WotG@^A+>l zujih9WAWW#wkEK}>EPzp^Lrlz-yx!n!|9peXH=TvVI==ja^G0 zd^4?|fd0p3TLIgrW_ysF8?950&dp}~9Jcn>Oht31*~(%2);f#P*<+qv@C-309eILs z`=;RghHL3WEk~?>5Bh!0*&BwSQ@H+VT)Q*v6^qvcW-EhjhV}cSf17<<;QOuhC!n9) zDO}HV*hZV5Q+$GF>^ltK?bdIAe!hK&;rp_^8sYV*^_!x<#=cAOony@uG|TMO5wDT1 zm)$bKeAm^Bx=z~nX?zoI3)%P!W6;8L+c5WKd$B7!Xl0%ZcxtT~jpl`BSOUYB=B(89 zaxLwsWv$tYVf)IyyYMZw?>>CH*_YD^Yh&$_@~)sz;==K6VZ zIhVuviFp#?iHit=qs+UXM{F>NPMd@3ex?_FWZnN!yp86;d4ps`k`YPYBb{WTZvX1e z9KqlEBKVmg0?!Cu(~O{lcLXQXN6^(Wf`0uvsZJ+!MX(=Ioe=9@EavyO2

mIRQ-S zQmQVa2ug@cd0)n(oS1dv#7uRX)5#t|P{pG$k7^!Gcr@kFj7M`GEqS!!(V9ma z^wd{09-TzElX;}@Nac~nBb`SE4{_%3o_jIsxa#x16*GqN>lD4+S?{@#+~dd3l$`d$ zdC;6+%p;!1JRX~PoX6t`kNbGs!{c5aQRKGek*hx=rvIaP#PEpaq4iAUeKL;} z9;rOic%<{l;E~Dab9kT6`vM;Id9)&HU@!yCWZswaKA!it@I2xbAkI7<8YJ*>G~WMa zY!2^J7(1WGmwY^%kJE^+<&nzc3Lc_~srz5MqWC)vniY)2G8T(^6>$}D0&yjAC2>6e zHzICC97n7!raFZ#JZ+#aBYlHQ(7Kez&FJ02V=wV#JamGYPPB<3j({hg=UoDiaq#8x z@xzQK^ZpOsr}I9K@eJPI%*X8N54!VlHt!$h<5b>%$NMzi-@^Mu-rvgmB;L;>uYmUr zc+W{0K@smWd4DyZkLUeWypQ9(PC<#}F_q8f@$od?b4NXAhz#cJB7SEkFNOD6c z$LDkScq8xY@jiyVH0^mr@JQql&7%#E_0+t9M?K~j@`&WItxk*Aei)A;r#_FJ=Mcr@qHg7wq-Ci6()k;)^D zM>>xT9%YQ^R3|v_33y*wmtPKdIkh+Bt?nq+UuyJq_CNpqf31N275tz7{$~aLX9fQM zxdOj`_4`-+7!{nqh_`d5Et*x*tmL$Li`%p==`(BknR7~dE?hcy+W+Ab|NGFWSqo=P zTR!Xmlw}d`=FOPpy#Mznr>>Ybec`O-nouXg#|sxsT`_mw;spV7 zW(Kon&YQ7f>WY%;<+B#f4n~idI%C@M6`_!4ET6k%)zmp>E?(}Br%#))V9D&+|If@N zE9TBx=1(r1HG9R>+4Gjo^2Z99J5}TV`%tiQ){Hh7FPZ(P@T`^7X3m;A<9~7X_Mx^d z*?!QxFOq*E#)Lou8guQ~^7^E0`t1AB?IFHopM5^=={{e5_P)2fb8}s+z1G}&ue;Y* zuaCXYZY7ZfzvBxkNyHEgQKF&3slj?YTQ(Q-)p+;*^=xw8%$B?Nr{l%= zvenPU^zCRp-t6+jc7MJ)|FWH=_J+4Y*)FG}>t)-{N8{ZN<8jh9v&*YN@>SrKyv0w> zS1ah%GC{@71bqKuJV`8=%x8;p$ZfUus_cBb8!xB+Je{?LnX~1^91>Y=3dlMHi=AWZ z6*!P^iD%=*xj)ZW%gcI9P_4;T6p4)+QeEvDDZ*$yAK&e+_R~u23(Oj5)Oa>`)B^Z# zYEg4QSNDt2cDAFoQbYZz=;(UCyrw#4RkIq6*BmWYH|=P9JBA$Qcg;eN7_HSBU2Hfj zLb(7?qpyGdMXpq#7_FA3kB&iw^Y(JIz1m;YO~6KyE}*e(wRFyTW2xc+S_V5}gApc2 z>|8K#HNvLtcy~1#1eVr5_(*1$&K17NYJVB=c~k4Ahp|JYSMJbRp)g95DPY%QO#p~o zs-2i&({?)JWcKkoo&yy2B%|5lLV<8boGrteH(g!2*728HLHrChkWU;|W8iEG`FK9w zTnnB?MW9c1{=D3*Zs)2{Ca~JgcCEmqjDYoOzr^gng?de{#+&!=ef{(Ae4!HK5$oKw z^R+;6!lo&K3MvazcX-5_OE%HcwBn@W?=WaRV!rQah&L?^>9i5-YJmYtYZlE(F8kyA;NCu-S)QTX8ku=)EASMnFZn#|l zo7LpH)c^tkyVYWGHwpluiyRdo46#T~C1LjHIjvTcO~r)Kw1tH<5QUuUo{xXJT3wI5 zJh3kL9+$3R0HrP$90u z0w>l;Y=YQ&pr0Ctei^Uz6JvM3L62c=)pJ-D^_*s%9;7b%I8L70s!D4i-M0!`@z zqO_}3zO&pFWR$9!MCB16s7S_Xi?<%bDmg4iaAC8%bGzgZE=zj~(sY3F&>xD%I-sX> zK(9qAyIEeb%#}W>y$%W(m}H z)ddc-LC;bT{qkvSjr-FQoKN##Rfi(;yi7hGr4?Tf9YG%XI#)~TNE|;J4Ugt1 z&8k!@yY1G)fOP>C*gs`|J5iF|3Ad>@loDVPM^7 zk>Qb>MxfG0fV5Y-hb`jhdN!YHhnQHEC3@t3-hQ1IZS~Y;7Rrr+paDnN4V7(*70cq= z&omX1V7R*(R)bp@*Vb*T{r0)6hoA%Y9D6lLB?<$vcl)KW*7b~i1}pZp)G5}^U>cSE z40>UJU@r|&TXusb0%79}V0IRr^tI^B$_JR!Z@C9vmoSQottd#;Cs#2 z<2k}B(7xB$7PQ;#_bp71jHMKm%*{A`%zI+Z1 zi*~NfJEr3HdN##QTS2LIgO%d4G2;2t13j#^i!}h)Ogez=T?YU^xnQDoSl>jzFkS1_ zcD7pHa2@1AgI1&z%M47@di46U=d1m!9i6rF`Su0&5CE>0+ZJ@DpXB-L&qfCn#j*T& zHAg&fJbJp?y;v<_Hl;wI&-Bg}$Scz(l$wTK#-d2&^=h_tsz*^K+I1=dHrXI5I9*+v zi3WjL8GTZ{{>+K8?XDW#GI(r_axGaXBLW%|Oe+_2i{|zEGFvrz4%xD0AT}v}ntGW9 zT{fC_T1>l38{*MY78ya?rZK1(s4uhyV5!+7xY%NiG*1oit-t&s0yC#pAlNn??N)nO z!wD2`Nv*i2AI)UD-!Mc>2!D3jP*2M)gUn_d&%3rP*7XTz6>U8OU%^sRCKBnp;rU_@ zl|7$hLA~FD95omZE2!MYbAJGKU`U7 zZeSSX%Ck?@tn~?iJljlCnmBJxdJ_jVi?ugYMbcmm`kO6hyV-aL8!$TG?6-1m(5x0v z?6J2hqR<85bH)g1YUHLTMngT1oUXDWyg9K^^$1M7ajxVUZ5T`eo*;JjV!V0#aHC@z zt=ph58i~LNw$pBor0 zjB0}btKw7INRK>5M;+y#k2f0xC=okES2F29qjh>1~{Oj1_m|lq@H-KAld*;T0eUH`pNU-rx9(MHQoNP=ccg}4_}NgXOr)d ziH}xu2&QVEHz~kCx6BE-@Xgg`m0YZ~c5kEgY%RAoQJki^`rt00wAk%8%Q1EX2q=cZ z)XIi})TMEhC)0i4vPu1!rk!@Nx`pnsA-nyleKeGv@sBC%upV3sZ*Kp0uG$0`U<31@Jb=8 zlFq_hmE{Gsbew56TA_P9WJyji=Ng`|3kzODX&jZUK$E3~7}54-JilqLu;=4Sqb&kS z>Mo^LH}@NACbkdo(zR9Uk_hycX%1yU`bYvbRL($j@Fxb81jolSC+um5pv@xHan8==cK5=kwVGqG)U~VrS}@g|Y@`%vG_%4T4TBX~9aBjPLM|SmP1zqpAFbFgXi3+!RZchj8A4bzrSQ{P;|`W|3?T4BJ#M>fPexqE~+GkhTos!)C*W@s;~Fs5_;SBklYJ8^^mcsFGRz3aA|;{C zrwH`0V&T)X<#@JX8;Rtz@q9LYxO#iMd%l|FW}D0Ob1_4LoMT&z-)@VKXu7Ka=VH9Q zZk~)M;Qur1!A-$9blcHqbw6Ld-DwJ$!h$R?>Fxr=$Dtr^ZjmzZMALWQ7mIRmY>a-NrgfQi`LiW9!rwCmyw3|j^62}r9^mZ43e3rA4b?S!T+4AX}l8ctRV z>@h}&9qt?zRaB3XJ+huQtMzUL!-lf~>nyP6px7=L+=twNpoE6)pz;j!#7s>t3s9z2@;pjpLy+CE$cilw*+}a2CetdndP7p4A%gQlhbMf>6>LJbB}u@Ro% zSn4p>?tnvcHDR!@2UpbIRh)ZqyY2#_&_n_B7hC@Zf zci2&6PQo>_N1lQrRD=pJac+;{d0^A-4_Ko_{TAm`Q~d((wpSWHN7Y_jFm)Kor_ede zhPL+V&5YFxtvFAZi`u*xowmEjYP9vEZZcs6Pao};)BDZ#cDBIsP$8pJP=iL7E8zO! zYBQfEZ0gZE@7G7=CotdJS4;fTs`b>Cw9<+wj{@8FQg*p% zmvn8qMDiR`qQ;2FyYb~}Gy7@#8YeVzUIzF~4ivO-n&(IuQlEEX8Gc5~I@F)Fr+)QR zqQ>s0=HeNWTj9tI=rHzz)E-K-P-OLM3lFT& z>poe)PeTa*LcgA_rs)@~2wf+CJhtQIRL|_o)(f$P#JMdVKp=8f(T$M(upO^S3<@y7 z+chT}9L4joFWi`A568>LOXeGYw%WlokeH|F_){FK8;UWe!$o7=ogy8snc$3U_dZ?E z_wS9Xr*pM8nfM+eZmzM^3CiknSBQ<%s zf~%A0`5yA;(cH$lLvxK)t`L@}1?H@gjgdc>x*Ce{jb1u=1m6{{$p9pJV)vrbPgZkU zoQLqEE}AEpJUri4$=T`>J}^X#0E4)`>ph2gI-U2H$6k`v=W&ju* zaAZx%ae`v*?l858Q783Y3)mf}gr$|fImLoDLF@L0duuhH?QHR2dmjccP?jS|w!sM@ z-9Jj%Rwve@R!~{Jt0%Oeb9;G0biCTY!$e_L8DbzA@W*iuJ+k>hOzOvm^>Tb8X**Ip zis4MLculo4rkAGQ$7TjV8xpC}kg%yi-U&RBMlL&6FRRc_Rm?tLuCO4$@9~aK$JpDK zy(TrHJfY&ZH6$SQ`VXd?h{^IyYqaVCJKKta0M#bVjV|?zr z+oovbxgL3U#P@HgGilAj_8+EtlQa3A=Drph*0l+rH<4nWB z_8l9N=48C|>UqXe6!@4p^UNCIdyT~!GT*(zk{|%quJkMol$VA%%B|e-240u-jkiYd z8ql@*CR5YtE!crw2vWKdCi`)A)l!9F$jl0G{{vTMp`0EeCa;`SJ;NbG?7PtXNd#}_(S+nuePPGY~M2Wx78M4=TjZ#5)aip}LY8wH77FR@W$>LrA2 z;1`d6G^`d1@k|oZw89v)2k!%E z`)?E;#lE;Ja*OI!7oI(Sbs;bO2c>yYqtS~_C_aGnkARqJ~ANL?1Wd@p*%cy*A z;*C1^Y9gECsl=j$kOp8S{Bn4o;`eLD&P-{se5D9RniT5B$gnKoOhE2Ba|WAg7~2g} z_qJtaU9H=t%fXelh$8Zh^Ha~9aOW#1&7#Z`b2>O65emohroDsp=nwJ2Wo9Z$V!IQ- zj0iT(zQ~P_(vPBrJ95JMG8z>{q!-3VStE=|hr**gv6w@WxsymVB$9`$LE>78C{=2I zj_pCxN9VW7eHK~Iq{9IA9N9>Y>=Ywe(uBE|XudXQj71@BV6{2(1MMVb(r1RxY?yb) z9h|qKmW({?nhkJ~q>NaQoStbqG;BpRJ67q(`NBisg+`jTG2LTS0{2|o`clT=8~T51!|HF405q(8-= zF*n#F{Kh{Dd45XMvbt?I=DS_89)-@ovOCZC0}8lCcJXSC@cR_~UoVL|>1-h5-pn=($6{3TeV-a+U06E?c zHR>KCv2?TA?#(>#$GqEoVPR^>av~-?0BL7_A!p=m+ z@p8iR2M~i7QcXT^9kI7JWR%}aY^BAw?_tjyIGrAAHJRG20BJzZdme?%8@Mjo0Y1Dt z!M1EGx7au|DbE&%PYkA#e2Gr6Q;Z-oYtA>C69@S2If?xNG$jAfZmB~FTo3RYyYI<( za@9&m2?x|avE{Yt{fiY2{UwD30`N9@c$q^ZZc^2oV{+G|!6-KoZbbn0{`>h7*7bab zoru!UNcG4#;+9+eKU$?Z#IDj2LsGrKaZ?%Ww$%+&_i=B-YKr`Ttc`rEIEA%Tb22mE zw_9tQXp(`fu}GQ`BWK-tFK;Y)|^2hZ%IlW;iDM(en%%rH02Dbc72MR^Zuk zhBD1Wb&(pMzFW3@rRADBFegxYk^Gz{2PCm%o(-V${bE$DR-Ow zYbJ*t_D1!;rne3T5sEimVxiu9%tB_-s0hDh@2 z=*wC@Usdr$>N#?-H~J5V#q{8b)t!!=saK2&q|Qqv>7E6G z(li#YJ8F2Oolr+X5*C|L4-tF`)9eGau!R32(~?J8V6X4 z`VBwmH~gUA@TlMLC^VE(uE$92?on}6kl}q#Br>>V)T9rl5!+xMX4!k*iCs`FYI_oX z($#ZhA*}7Z?us!6a|%NvXfU+^2PKTFre>6u;&?7TSWa9Bl#6{rN;bv3nsz7Mr&trZ zSU(!=2p^rE^(T5UF3{HFU~AF{sDe=W@iLNuFchU&IP8ixo^we?5*RW=bGuRdc0G6d zj6LK6E)s6MS*~tjQ1^(m$kJ|BtBVm6F(@>hTj72cNi{u;Bk{$uWg#1LIO%aVKV(f1 zdxNNQeH$1z;0SEOhU502G*XwmnTG!4V=OkK`G6O#(BMi|W<5udR|CZlZJ9Aup@~CJ zBD^zwM^|@Kq|AsXHg`l~?%S5z@HnB_q8c_hy}=Pp*S6eX*Ij5kLfYQ8E$Wg*Z6-kr zu9*ijbt4mqDB;`WW&H)~uohCG-6(d}7+K1P-IYhsNDfiDJ}lc?w~s|rl1d&i2MtFh ztes%~ax^l)GRPD{bI(n1nk}gjRvpb*tns=l%tr=&2cPeQZsltvk5#`tS@6{W+6BAj-H=5qh!VgYdpqr6Ut6hziTH~RjXKZnX9>3 zJyZ^UaP)oMhgQ0!wZ}PHV-DMPx5p_`(X{Sjb9*)0@__S_TfpRh*usZji(dTa;x3Z1UCX z7_g+P{>*7=vP-nW0WEf^$>ZR;?kYcVG?ImH+H5#MEv*|ZY(8D&*d=kmXOux*w21tV zisNiPKlZY&S%%l!0`=Xe<4jC1<&l$>zICRj4d788fZKPf@99~dR7uE*MW#hE zfz^iIG%}V#!9+@DOtzx%1U5V2Q5L=#H95i?#U_Iq}AmrxQ5#`_aMWv=4UCK;m_Pnb#$aiEG<_Oc$`i~Q{a?q`r z%?3&-&S+~&<56b0!C-U@79Av;qLd5`dYpD(b{4ct6f}HeIy^F0xNNivb5#Qn^;TCPR3GpOT#EoC+KGugk zEZgD@b!~+#{i~VsSe~aq)(T0626eMnE`|dC=3*Vv7q& zFr{`^2%ceOxSX#LF4^kxU)nGnIF68OHs|fIFmf3#aKb?8qZe=X*uge0#_JQlI?Gfnr*bh~ zBT8Q5Z8#^n!N8uY@#RXVL*R*0G`7te-qo zlWdqc3tA_Q9qVNpi0|co5hs++U+y)$2brQO>5n{@ph%7XRA`MHFF{OseYU5pOEX~9 z#kVaIYSka^d)8FO^qGv;%&&FM;(!Z>5L2oV==k1#Im5ZPHRilVq6!9uJW9MwfajEE ziMiT5emmRQ_%OW?5S{aA>VOTx+p@4hFjzX9O@VE_g?NE;EVz{_z%q+%G=lL+I6`z1 zbFOURRhbLWc7h`Sqzr7~I@#g^yq*ELg`u)DVq8~djqg93#Q505`UXZpi^%#pYkroN*j27Nf6S+29MEZ@HZu-d0boj;ov^g_#hSfva zbXc(|5V?`l)%3Ex!TaLyiYWt{}@HwZpnYdk7-*rim~*Hq`T9i883gHPS@KxIPWtK<(R%W>sKxnye$J;&d!a+9&@T^_#f>xNne>Quu4TMCoRtqW z@6ar_zA*vVyh(_q!>7Y9ouwel-UEPzDcPq+jyfKBM-& zlDEnNqBn(mibFgAo`5qlTN*#dfUCf*#-QzG8&Ss7SXdu;L$+rqCkn<{=ra9DCU}^# zXkwwY(Mm#TdZTFFUfEzJY+DYHkquYVjx<7GtsHz}f?{eRWlml<*F8396dXG{NfZ9nebi! zU*LU?8N#!&*t&*PkvS6c6bph*`bkK_1o)%bc8phk3dL|8*a?c{OBUpz;|C9n6b|g` zpMUp@obJyau)HEm-0mU55BN~fk>!>-_c)%$sR2Io;MxJdHn8MYS>anmOt4%pL;^A% z&cMz`daDjX((wE`kk~Xcl5`(yJl2uM&pzOAE%!ErSEColXU|TYdoLcp{M6X_MTK!S zpNfQs`#b&RdmDiTqnF1o9(SJ~JP4^R!;JAeTErK;7sCJ$oQ5U#SMcjdJy|Fj;MIt% zQ$eih&5Fcoz9ygzknvjfx7`qv{5_IA!wIrmEA)HI*RWU)FOtk1=p^0i5*Y$#2ub)w zWsx6-qzJtBKvbl)*5P~MQ4;_o#r8$&I24iM9X+oo4byz$Za(F``{aLkqCf(gx9BXPe! z8}jucCiXqf;2`%kTWHh?p>#H*$579)n~g$%kpg|Wq2KCR=BTuCz$~zZ8y-vI$rC1Z zeTDD-96n6WY5ud(Yy6r`w!Df5!L!e}Gc_sUw=m~L zfQv$Y@U204iw60Io|4QRDGY{@ z%Q<$CTe?u={7Nx1loLT8V#UY&n3H}n!sAtB;G0V~ z^x%X2Qnk=t_|z=x_ISTrkv>Bt@}4V*P&&_KSGzNnjTq4`h7o;ZzvIzflr9H z)9^Vh5@A6ai&i?$VOh~;Kv+-hC3%FgaG%#BSY3qs)RjlQaH8nHaIwxF@f7p~Lt^h~ z!b!FF0!0IyLJ(lJzyA5hA3_aZj}ZC-Q`i~NFZLu zO@v~Zz@^-e@HRJ2E;Qg_#@|frt!HDz+3JZRwasj8AzMb)_#!AT21V#eukfCJ#y1_G zBbW9W9Ba&OK4OCV6GX^hFLR0!J2IMar43$*%{ar)2M=_03xZ-uf@-Jl!|AL_v3q2Y z*?W9-h7p@;qe%d|RT-}4}xr(c$<>Sa=9i#0g}hxgU9y%d4DPI@e? zRE^2kRqW<&`LblhlFlz3Ho<;)D=s=BPR}8f1uUNp&f!{No-^zIjJB`p2iuUqf;6U7 zh29Erh@3AGea`VQjn%l@e5p%^O4oD`v1B-QM;}`?^8B`_SBF;!ESr9ByxFmgwNPDPrftUYKu{pl_+b=& z3XMOr%BOXo&b7L~JitU*9G9W#v9=aS){GvDvUI`#b)lB?q|#mtC#j(7l<}ttI&37| z7Q;-OC9}+xGd(oCa_D@FE7m1HM6O{OkQ3o9w~nv~)NTRlm~beFUp?_~g%x$uk6&vg1=6%rTc*xGjVNLBZ0X>gaa1yF%(8V!`gx ze*NUdtgS~1FM=RYdqWPv-a9E+rwIMxJj1ETL~HPj?b~M#)Kx})45uk09+rg7 zDF}k`C<|SlDKh$EKi|!oy}oHt(!|rWlof?dp8%kiJG6spYVDMA6X$iVii=@A>gH#79QcMB7l&v>Pgm@X2RqWDvMd* znxcHEjmgcpM^e>cA*hf}lwLXDWKCyX2U8?72s476o!&kuL?Vt^ZXhZTkb-8eJ|0KZHkw~!lVHx{6%Ikl_uPZ1&6wRSay#J@T zxNUt`Z9!ncpXy$<$J%gaMjzPYT2K|rB#&%sUl+26bKDvws9*V%Ub$vOB1Bn`W`ujE zR!e+@N5_G(=W2(y5c1$=i{@-IUV8)#sC{)&#cB-|1fSW&_ahJkp`XYUIlGd|XN90? zMa^5{E4&H1;YTqU80VQJdr3ZOYBIUzTZ0KNKA=m#Y%zAkPqI6%xnu!?L3jUtf)~MIC=2YuFNuB6jioFI!$|gz5$CRXcvHI#JG)`!EnaU zkz8nV#7g0MuI(2Gsv0&&QzndX*r2SQU*_d~_&|%iu+;Nn7UwU|HH|EsyL+H^J9j6?S8I4@YybB4n)3Y725b znY~r75AFT}=?;@Set8&BiW5bN_0G_uk zIxgdYxkHc=A*mDI8*8_7rTll8Dc&8Ek-WmxLQVDt1zDHSCe}b|_`uND{NNlcI0pZ0 z`=o{YiU2p$Jzk6EHUH(Fe2sg}R1u+TKVjgarGqzyvUR9FPWfAUeU!?Pitv*WO+(@L z_1I-jZ*)APWHcE+Ek;T#^A2G*LC?j?Mwu?e!2&2~vxZNJ93$?^47=XUFZd8kpq~}c zD(0^%PZmY85-fE$Q)VUkYC zq@_&?7=?Q2s!n8A%JkVOz(WM@(=9Ssapm5@&(Ys>59ipQ@7>@%J61Q}k~SN+qZkIG z1>%gl7<<^O%!-7g)G#y07l4=^E6IgtE;Bh3lo z*I-t4HEAHiax5MH8)h=Pdx^ldWyKB(BRhp=*x`cmwhz3fuS-9kU>VJL{8-5=KE&yv zy%Eksw=%wX*q!r`XdVID?sMRHn$>yt# ziE*~)xW&@S@?9+VZl!kRnF$1mqG%lkjM7i=z7kGxxFCNm|Hk#YSdkET%-8#W{qrMa z8^Ks$bJmFu!1CQsGZ4S=aRQ$FJ(?ku?4JOnyMartur)_Obl)OT>HCO7VI_l8L=QS8 zOe@)x>ZXkB3Fw02Eq2W{zOl61%x^c%50J}#c_dlkn9+JNsxqZm31$t>!1&7c6RtkK z=2VA(T9&>6Pv-5bC9KM_J>>=g)PDf)snrofe&9hw8VKC`1`^!tUan4Wv0;R=Ab_QR z-=|{~(H%8!5Jgzxjf!+Yjx%2^hqLAV&%a=-Ha#B2M=J2eRm+JQ9 z6>i{0lxzL?t+LOt^D=HRS%MqCjlFi_5__qONRj1!#33S7{R8q7l;O|_XExS!dq4d! z{w|SQ+~wiiTBe5Z>X{flo9vOtXkth_oZ>wP?0$ITu`!kR*OP1=9D7gqcwjnOJC*co zc%JADZi-SJnf|0`dh>90X_8e{Unxf!n%IuG$Z`w+1t->t(d0YMo6{rto*#|xcy#3< zx20*7=0FnPNHwGhF8!*K6yh5`F5F9mi3C?3qsIX(GH#R1G%McV4*i>!6M~|({X4Fu z<88;&J@!;=_NcuWBkWdMn#h<6>a4`;CwvV7iePehah&;xYZ!dM_I5+!Z#y{;b+D`D z9E}syFlFU&eXv3Q014mciLbahS(brcOO*UDiL9@Y72pV(UF}xzF!3h$A{ zB3ZhkOS7+M>(^yy9HoMCH@G(2Y=Tl!8%o@$0e)?Sxto(Q&n5UFIX;J~$}Tx8=;HZ+ zR4zO=w|M-SnD2xlQiUWV8m!mY5jhExCkxx#G zvz*}*JTFHlpB(et+u3uvKj&_b^YViJ;GCMLIXdI~^jh4mW+f7T)*uGkJ*3~@sxMj= z4Zv9byj@;0HatVd7~%`d-0~r2eItv6TjZh5$6EiaQ9WfDCavbMWj@&Cnc{0QEkv2; z^wCEj^V`&PzJ%8eYX?L9=r<$}EKB|#9;5MJ!*668Uu=2n`)Bx#UibxU^T7%DA+9W% zpRG1O*|*2LH?Lnnzx*w}_wV7Si+qE~3~QqTIHlbXAGs68U%vI%X(te?sIp<^Bg`JH ziqz?|M7WIMn9I7cD%+^AV&HRtNY5b*N#OfS8#B-3Fuh;! zdSffZz2#Hn4Q({~?a)qJsi5HCXUcN6_z}MEDx=2O4njfrI1{jia(}>(l_AaQR&36< zF4tD-v_Vrnyw?V6i!Y*ZWzo6m+HZWDj&6wlFo7d|&=_PQ66asIKSy%;Wt_W&$^>w`fkZc`>3I(6?i=eS1zp*NPLFt7MyZAEY)T1^7#zoSVy46L24y+*fMp6po`NbXV z`b&PivEkR=@v870Ui8C<;A{Pm1UfM3Ob2$QvR2Ix0$ZkdA$XeEAvp!E@^BeE-QD54d-;gO{~ShH>SPW3d_wLX0`$PLDB zsf@}gn#>n?I}Ya;sdrI?SH@d?cFH@j2o)56yu2O5>#Fzy0kzm5g#n3b3==175xmA3 z?TA6rs`>5V(O)ldVM3}d!hG<&I=mV@ghkAFJ2q8!lD)xZdo@iByrjL+r>bfanPiS= zsY^m#N)B+GFrI2OoK#T0SQX#?#Cus_9Xtamln~&JrNsIu&n#&1i65hgs5l^@O3);N zP8S(V?6(Gf;KbA%nS&!8+(L1*-DQ?|i&}$toa`7iJU(}LFZjiLh8T|V!4awI6l*N@ zcyYqHkjUvIB;y>I5NCjZsqz&JCYf)J_*jLfoYUD z<2_J{hX%0WJE@%k6y9bLn)=Bi#Zq;uGNdXw(|k%Jj}Zqki4|#{)0&{FYi0-fp%K!7 zy5dA=At9M57YEHz98CiE=N%3f7Pns2*;L8SyXz@qWIuVAG{tcY8yAXX%e#vMqj6*o zBV6R_2rgUQ-cnOGMbgUEN3rz)`KnY+`J|&@`T)KT5P=>({0MCN=`ugInI9RJ?RJ{)B0X>VPB<(q18&k3Kv1jfBJj$k)c2uOA9O+hf zkOBr1;sZLY$ei5unj?V_jF$~`6yrQAll9<=R?M-j+JnT{I=pIw&C{ z9@cui(YSj_TWArku#{e% z+EAbwyUn$}hvx(Z-_i9)4Z^yfF%A3oVPH}%e$gty!m3Jdv+!#x?H3c@eOP49lYDgS2AaF@!kP^lZ=jv(Qz=JLuY|m-U`5=C z%;JUltdT7q+MleO87{}04)h*80_(3i)OQpV4 z;QBo#kHh-N6)r^?Yz8i3B$Ck%7bxPzg$Sq0MXH8cQ2=eWh+cpx)GD=gp^IBVgteeldWbur z6(d>^D|<`La*yJMVbldiWeCIFsJ`*DBjT?9_*lg0H%Pe)TB26+u-6G9M*Cy+6_y z1Q)SL3cYC=*15t#Vp-k>l8YZ(SL%0F$%5!rV2#MY!nADl*hS7%TH%e{1q{Z)3(ACeg4DrJoXhQuinm2~V=8~e&MJZ{@29zKmeO?j4`W$4|nr>%x^?)Z*AycLeTcPBz zrg#?&|L-rtSi<%qGDOI!kQLz_t05vjRHb?zh^s+q^0=!xC#cIR$KQKAEdujF9$Iw??+rAy0nd|p z8L}iIxFXIQYQSW6&;Y?YOCp7uI!Hw1r7B6syujdid4YEFg~qUngA?mL=S*Er1aqJ{@sPo(^F{_U_U`Uk`otdLTb9e+_VUa1s zMW&UG@-%dE4ze?ok}%fHG-avRWV7h5`9xgV46-f_{2+G@dJw5)ZxK!8_0^A-*pA$a z4w8ep^E@KwMeQ0nu)-hLub%Pt2A#c$L*KpHiJLutZUu-9o8_B#zgks8L=FrI))e&`4Cxeblb{>vBrtNc3tA=u-Dl)!rsnq2YRoj5bE+yUo7SgM8N@ z>d|%CXeCWm?RO8shONz0q2mB1b*3?!<6Ihu$38aIa_rRh^Irmmwr~tWwjXHiug1Lmu(zsoLQ*v=dfxi zS>(j1STO^mvSeUXx(tjqAOmYYXBKfk9BJ2xw4I7jsgAO{rbx^TCZ|fLDK35D%A1Ts>A zb7;CnMA+N@;o@Qf+)b3S#r zS2H?`&=~DYdDmbJD}m3IvXBbL(ELe!>iGz%px{VEli{*c^(bvUWI9*P*#hrP8YTlp z+tiV;sg5Uic0C5C2H(Ay<5M0TRnZLWVn1k!Y|8Kmzi6yYSUguM=zJ}cz^Uk)_sqWR zducRo^s2=*CDv`LuF_r~Bt-Q#We7)(h2+$wqE`iMqpP*)usP}tZI}_YYt-|c)Mrnn zikNH^rqaD0`;KvkL)JQFQfQdX-;>oOK#`>bAFEA^Fc4FyMP^V zo;qut)6!RCFNo`G1jW_5UeRN%xP+%Jp6AIKYt}1(daW%Q#9gmu;!e*$i8!OUIvV2D zzRFgl%ro`q8r!i^$#8THrka!~Sa(~^j)Z~ZG*J%kn^Cse-5pFwvf{FL_Gi&S)Tx`Y z<@Xy2@J%dT*kMYk6};OvIVcX#gTc~-oAbCUuS;ToDSS}Z2s^jfnHW~rj4{txRdTgx zNv8n@n}S#DK(qJj$;H)kG%xOL|I$_nku! zIm61-D7wR@_qRxbJO zTrPv^O_tcKqQX#xenbLUHAGr3GF-EwBB1KV3=}=V$bu-5FzT*isIgqSx;s~97C%pT zT?IqYn^fe2R6>F+)(RmXYS-GGu(1p;Nz13H91xnF1Q)@SOr9xy@f@0; zYCGhdR4~<&NTTDDM1m#bI~6Ttz~GW6<`rw_2!4hM9d@gV9C}^9L#)LN_jO2us0U)5 z_{GS3*1#H-qsAZy8s$1Zm>LO3}XXzh?)GVl1&F}*n97*Y@WtR`xrBQ*YKB-J(ySn~ND@ogyMvd-Mb79Ta zuqJ-MKT>tVA&@SXnuJj5BuZRy8{_bS0Dz+^WO`Nd&G}W6YPkEVKvLNtP@^FbQCU8- zl)al$5{#s^>kU0ocBsI0eL!TCNa`uj=Lq{u_JZC}MVJ(KV8*hO4g*35S<^%RnLoL( z?<>4}nyB<=dzESI0eu-tSIUXakXt>UidRItki-QaUc#zi zL8vR*%#o`5!kzWok7`~_2s^y=xB?q41+s@ z+9-rsrh@U|_jQ5r_6BH~eN^BXV7QxZ93S(t33nZD#0_pIUW(e0w;>F@X zjF2TOt)^+%+Maf6Cfi*)NpdZap3?MeQq@oJB7E4CTuLhn1axIDEaG{W)RI_W%^fdw zZnjGVSHKRS}9O)NF0xpf@U_d&L{r1 z<1F=+Eg}iH)u(JXu5YTDBx_Y`tRqQ+2^#7pgX?#y-lg5Nyt7aZ8NJ~-Zp$%|B<1(P zJF$f3kk8Panm%yFkvdb$V@s9h36>N$woPM*u!?@0VQDfMjhgytCI(P7 zyXt8lYNgp4KpiUFIN8;eHjYraHX5QOjZC#Fo`iPQuqq~%W*tI0oTM_iF0PapXe!qIv<{lL)*=Ri@)&nTmnH8kzv{O;fTNva|BC_i1j-9sCr3gvEKay zH~3KE^)}r$j~aZYEuBBrbKh#JOOr^dMmEQNNT_JzGJtFnKEZ1~QK)1C4FDTu0N4-> zkT{veZD5U{0~7r^aMZXZh^}8{tvf0`n93yta(iSG~teHTx7e|EjHdsvS0d2_zb{03}F9$z<0; z{(<>q#7VB%Ur3lbJGul`<-CT~oa}4&V7$f}bu`}vFAXkkaq3lIsfzDrQ-P6_mcs&2r! zsy{n*C~{{-T(}(TB@HPuboO+%mq9nm4ACHJ7tEzu9E;j=bt-2u%ikc)6>+tQdd2-& zD89qJn_Kjq3IBq(ZFqj%iAjgOZ3<#u2#>VXT$XRh%xWB=C@l2va8xs#pxQEZp@SCwBa`SsV*NMvIj-KqJVmnsAG_fEL$)`Vo>a0$VJEwW+F`+gp|f-JL<9 z_h}@DhE%r*MeInLoTDbIzyWYMn>se2X0z}_cfZ8XP z-OrnSx4j2=(BXE`i(m*jRQc!urglN@YKSACyVV|_DvZ;i)7sf5e39$}?pN53B;69o znd#W-jzx>FtR9!D+SUuU(77loJt)4o_Y#+h;p0x&^G$p3L{p_@t7MOkThq%=TC0L$ zO$;m&#eEsD0F;`Cbh8T0aG{W~DDAbXHaWAWf|{vjj%&za?AOQ#%2uSFn8aW);i`U^ zVWG11(;JTvxp2dabWMfPmhuYJJ^c?oyqJ%AhdKYxG%N(dQki z=*WB2Sk+(3nhq2SULC<#_=ftZkh|gu_EGFG4E=dMbk+S}0QO;QZ>E7E$UtpCdQu}G z&v0;D5zl0dJTz3OOG_dH(?zO=hnONxmK|8th6JQc9p**^s)ep!=B(2|)P@~K1-Gr_fTi|6h_7RMLrKRnmDRq}N8ST>tWHSxs#Zq&yrT5Od8-z`94$&L+#jBeviwRFy0&|9zw|ZGFeR=cl z@-L#TjZ3ya%MTT+ErnH2%s}V?MuZ_0&L{cC;RhQYu$DHMP)WF6PJsoWz#rGj>d@~DLX-FCeZEs9j_A8JA~rc- zQmMW}w#E@9R(jtK?f5|sO@2>i@Bl08$>3OPyT&Rt`J@p62D>-B(kP)TvQHB?N=Ff= zs*%a1EZCw~l2llvs%uj3)D13!+U8|G`gtme%dY?&%CNPt;z2?Aa5UIj4b>=*rz0%( z6-eta=aAqdg@;=go(GGVN7xZo9$LnSPC6nUoR3LodwlKhs>Ga1k=3gze&~G(Qn^@q zm9!FgR}Tu7r1S-n_+21r3b@2lU%``CUF)PQSpt&r^)kWzMZ%~maSxIK6&0+J>_x6I zG=4FrYC1HFeE_OlQDRfJKUI6WC?b4eyrMT$9MdOC%)c#cYtKH9gd@2j>a>TOt8cv zD7jc|@D14d>A?dP;*;uK_?(Tdmk3>rR-4%+KJ8nfdGLV4?P2p?c6a!KM5jK#FAo!n z%&|iSqv;F>)1A`gYB$1Xr}5b>e7_8zt=ZxG%OicOzEg2_xkNy5xM(@)qRn4<=JCY) zKR+5xrtM_@{=Kh%C$|KuVJI`YnS-2&9|<;h99Hl_(s2O+N;@Q-r^fM0`FSL8T#&z)Iz|)>WMW>^XzNQ ze0`2P`0<7V#Me&WC#ev^=ih$&1pj@}aK=)ZFwXG;AA81d@l|bp#Tj4e9z!>G%|iAW zKQ3nNeCm}k=SGIwK4aW&SV3Pj=1-_S#I{{xAQiL+7;iA~@NMh#Ib>@L$9j(BzKCxz ze#@`cbir)9y4W_e*i+I#A`^rPFr3LVoFB%k%Magzs~ARpr40%~h19qB!ga z5BA%3Gh1G)8fl@4>)FdEuSTb5Z=St;`o(aoWxJEwc%%CtAE?Je#bFHme(?;Scy@Yg zqVSFIWjhJutczXe2Ac+*94z1BThr4gX2xw+)wuCxSM@vsn-{~>&6YRN4J<4{!=If! zegP#O?2;s%<2%*uE-OXdCo60r`T0A_H>=6@I}!NG{|*$BclWTJ@42=OF@*#!u=1hC z;R?IW7|YyH^V@d3J|t>t=ex@DGWf1a6Q%F(umWJ=AEIEr!Z+qell^&_m$eA0`CJzr znzePUfr(pJF#7o!<#o`TA3i>Q{p#f*%~``dt>!qOogNTOiyByWxl1}EyX|b=E+-g0 z_8^B8@M44Y+J7!~ zY0=|?W=oerA3Wfi<5eC!kT;f}g5O4CM|)3K&wgWdF#X}e+hE1L!P1)?l~iRs>)}BE z@NayDi0Ev!s(P4BL4O6=wqwRmE7){3y=2V6Y& z=2D~iY6+j&T2|D+J;7<$SE8na66gMt>mih@`84vn>TbH9T-WU2Ua*E}ANJKq`ex!n zm$vZ^0XTh1x$0iaBzqj~_8WKn6N?0?6|fgizm49+FwNH0(AK0-LP9-Kt5l z?`_%^sV-Tzdn_5SZrY^PWwvQ0ZwBC#jkq>Y!l+EeD&YZC`}}^%WOJZE0kWa`IxbSs zrC%zlcq4zm$OLnsGb8lQDeV=WexeF{ZcF| zhs$opY0H=tsmOh#WSSb|Ikv$od_K17=73Ji&l^$m>*}t}uxyxhbrEg!fO5}g%WL0O zL?aK~oz1PfFBu3A%%GaKAY>Rj?121Hf3(u%%3v3Fqj`V#-~rYh0^VhXeI-bH!Uqo& zQYeqRD~!O2_C4u#ik7B5>%ABU%?l%DHq3x z-WmYg090s>1_}(%Pzey#;PC{$aE$_=0j_&PXrxmoTkuHg?ReH1l!6hl%5=7=`tlWU zwC(lDRs&$V83W)=yTB26wYF5}jv>ni|567x3z9C_UI3 zk~vd@uUdH!HE_9_ZQD-!GKcHB+Jn^~q>$gtc3najv*q3Rwu2Q*>Hu)IT+iSE^y?0R zFIJb+7IB(hhbXv#X{l)|wQ(7aMQWV2R{f}%!;sHM3My^Ma+v_cZF&V-q`S54Sx#@a z2vQn^Ckb}zBR11+7PBq);Ddcxh=RiJHf`U|U^`3mUWHhgtV9<{RYxYHhenycBT3arFhguGoS-Zt*$>?*x>GceOj48IH2g;LiJHV6k)%0%k6C43_2NQSb z-79r?8BAmbX!Yz>M;w%aDO4UBK`6?xZi{=Jd~*Ee_~h*I8|=rsNH6EB zbI3xjNAy@z@Sg!(hB^a|?sE^P@7{ax{Ss?Rmw-8KDW((l`8Vz41B~1{)YpJVr>{PJ zbMknAZfiDK%~u1$v_crNJ>nvABmQ=fZg+Q#bDrPr+OO730cs5cb8j<2+wLGIdn|Ml z>>13lI$Z3|$KeXYHpLH_unk2Zwby$oMeBa4LhlG$43`|BNXr0CX0O%xcr%*c%zJRS z1>@^so1D2bK_q#D58K~rDLc#sI%MX%cI#Zg_eSYpKQaNV(4&o^&&{?SEGrSPMj^AZ z%CQ9JVB7I!dq2gQKe~VP#XIU94VBrNH0>7I60z-qwF0kKSZTT?a10K#L5U3447%AF z1mffvy9I$dMbvA$D!n%2{cfd=NOQ^Z5f02(I*BtCsO~(lD@<%#LiDy4Pxu3jx{`}PsWgN|J zZX5p#*Rk=XG9k<*zJ6cY-_aIvwOlq^A{Gz@*an&a$7|HhG0R*UiWx-`SlG>+9X1v*_Endh2;^z;?}%#beKSWo8#$;GC% zpir*wleJVSCx^L?rdJ0stqC*$$KAP_+2Q<%J>X>zC^Rk2($**Ap#$fBR)$IVo$+E9qz5{0kU^SE37|e8ceX>a;4`_T+VVap6KBlrGJ`-cSSx5uKX*sW|GoZ zY%bsDn^-E+{{x!o>~EV0VKFal0HJtL(7dR}jJaUqleJG_#cF;Bf&Vp~tqD=|^0H2|M4W;Q(h?M(O#`| z7szik*FDq%458B+*#&ZeG4s})=5JFBFw4)Q9MGk!f|8d>=$txNqlMhfCf7lQX;?eH zhHNbiW0>&E)is*&yrU)%?@dp+RF+N!L7+VM$)H}nqzF>^Pgo%Kmuuwx1W#PWu{gA-`AyNax-Wur}|G88g> zaO5Yuj==(p1BF74G(@{D;Cx-(rRve#^g>-O)<5k zr+BNSw6omJ7gc+)CWipjn zS-Q?qwCc8E0qnt?1GWo#yDg>7WXYvPFKc#K12RrHKPc@D578CDalerfK`L!|D7n75Bfk4$j$_A&8nC9pU=`QBTIKc`tn1EQA^;i9nazojxOFqz&Y1I+ z$r>oErR^2CV1`M>X@h_or)W*N?QllBD`+1DQF=-x9jltasX5Dt;9k$IAGo`y2N5PI|Ee*F4I!S=3AHrsd~Rhuc7 zzTCOR5-l`vXuDqbY2?~=HQ-ro;ASJ+5e{fUUVxtFn2We&>{g#4ceph6eq;=DGj0Ax zw=>?7mVrOnBM+QWnhas?eR(pq%7xlfXxjyxWaSJG z6mu^-T#9fru9#%(9Ffv$zFG;)>N20l-~ToaN{gP98t^(Q)pD!|&w$``&U*jjx;dAM ze2`tCMJz*m;n-RB1tajwcDLpWiHhqE72J+Dc&{y%*sWfpzLCbb*8R1@^b#BDhyy!L z9Gdz*El|E+BQOUakHy0;_%S|UZ{{`piOj3PdeC*e>8G>Z_N|38v6!uqaAL12bxNKw zOQY}Z5CZRt8?J)o^lHCT)^Hb2Sv;oW!4u~`GVZc@JQDx(kpB>-qzzKT&Vn@9UcZLqVavC2I~`lmr~W3}2_j8= zxvtL)+e`e+J|4~B80iJH;f_vL2+-52*D^LL&X{cb&c5MqZ}^%Z=;#gd&3^fWHn)rW zRLKViI)2*jUhWsK&c8%nz(bxw*a7&x>IL6HwM5I<>@|}muptxYzFKp1{5_;AF}VnB z>utwimy$u=pCKEd!$sfk@pQaXf^}%*tve+=u!<$KMVh_m3UXcy$b)BnKCQm>t#7#? zO2g^FhVN)JIoQZXMa}ye{UY}X68H*u-a&>fWA9Rb62bpt#TZxr_V|FEJ#5no=GO0QWb2%!OAyx)6e*6UiA^gr=RN9f6@~t&GO69v<<^nskuO zm=QBr!eHcqUfw}5UcB+0ZA~;B61+F0e_;~pIjcOsZ#skPKNY)s!&2H4xQl~5xTHO1 z7^+^Y+4A*grw8nF)%#G(PfokyIBj>w@S9)bU~oJ?RiJ8E#+}uv2$apYzHY#xr+PJ) z$aDO^M-!s#*BHLs?3(5K<>9i2tGADN7s5fVC2?c{+3gJ$zTnPZ0k= z&g2xOzZ1!9Nc{NL)h{%^bAh;tejsUJwo1PsBmc>zKSAfSbN%FAn?LCBA?k)LYm;)t z(g6H97a%Hb39_js0D28BRrEK)%Oj5cmgh6r`2t#FKkeDgqjG{-&FJnI;Qsu8pLp#xw4{DUv}^CN6h6Xc^Wuy4gXTG({yt`bEezeMsF zWFCIw4fxGv4PZJ(RRfV=sG7yTs{)WW1h)Eq&edx$1fS0??3}8q&5ZGxN8G9c>%anr zRRIYa0K+Mp)!ne!Q&Jb1vcoKDO}D{Tb34e7LEJ|+FmxAN4N z@YFaB(};PBzNfTTPIR5m&u(b#kjRR_E{#`>oGI`+)~~@}zns@D{S=Ge0z^K37ko75 zF3$?F8WP}rSWR$}8Vk^24};SX=3=1O-}Hd;@mvHJ(+*4Qwz3Qjapi6U7U7_m%U8EZ z@p%tNcgqk@J6v)AAKI9}2auUL>K0feU8@u9$%kL`NW56x^k5t1a&}Ll>~gJbgV^>a zy>WDUcFYT#y1mj`Q)l}qii9hvCVcUBs2)}i&F=Z~NN-NzawEM?B>rHPz*6ilD;Um4 z&)$smeiX|m!y#=-sr0k*MG(8s}M&?AU)lT zPhxq0*k^d>eYlQSI^guaLkEmybvI7uqMb4vmDwWU@f5`G zajTYIuE`L2932?!sJ&B_Yr*}XlICYvJ1iji(Np`H_~Jq-&5@T}A8QrXE3Cgsg}3Dw z<``b_jnC=mJ6Fay>{7V^!Tt#cEmN&r0nB?`y0E?26nnt#a6iX+Noc6~Xt{ZQC1);d z9<6q-H!GY@?wYsFT{AI@m;D}phA(Xe<%ipk1ji$%N_li$DgYj8St_tXH=eqHXP4Cs}G%r}w%dcQ<}^$C=i} zT6}4pbCyT!lYd6#{p}w@~-TZ5xj+LbE?UgX+RyEt21# z?FS}BdIu{0grd`RE@k-++FTop7GL0ogQHjSX=1lmBX=gjWP4Q{``P_QL&RG*xos04 zkXY7v-dN|1rC?u*J#na>Cx3v!sKrZ7Ei{DTFv7$gx`yHp9`#RUDeI>Lw)G-af|AZ~ zryDMXawInL^rTIiJwQkFBU5Q$+l1Z!7>>@s2fC0wiPy3&aG`61)I{8iIT_(39=kZ2 zaV3SV7H#3CJj+Q))HsSq+d05DCMz;3Dt9VElI4jEE5h?;O#Q4G*>}NQ;BAZlCuuNY|Ap z6FG4sRYnN{^#~#k6d(f%F^gLz%Hp*waIudN@nF3@6-$J0sDPZUDy|pt5&4{}-42o3 zKpawlk-Ec|9RtvpgaGlCAVTI4s_ucVf&I4GZLQDu$GWi6<32nlOopMQy*%7H4DC*3dL$*rU_&yFiSB!ICol<*3LiAbOu{ z!h;9=X#h>@?{Z#q0{I^otHBuC;ah#_$tID{e9Sz(0-0p^;KA*c*{cNcIhkw~gzQZ_ z1-v79$%|&%gB32u=dg(fi|MZ;-gpT8qD3I)VCfdOt{*Ja`=p2P-ZEWt$eP>D+l|)# ziQNjzP!NOhx65J#XgadMT;6K&lV*V!r;3Ff~-heb~JEiw_|bdKPv-A6fBM&#KK{r9 z`+fSKq+adsuRSWy|Kq<5y8g4K`N;>R-J{>$G{5JkP4hqhUsmrg{onTYZ+x?9PJgv& z{?OmoG=KcJzSlhdji7g@Un$N%eUi0TZY?@zv@m}-4{NTOj*Mio6{$IzqQUBvd?=|23g{JxRw>Hh|-&5%0 zuYdawHO-#{|M=gpqRt<p2dy3d{kbQg>7Qwu z-~104?Em-^P4niTv)}LkUW_5|*r4|BzlJ)$1~UAW&oPca+cduv>ir8p-!%9Bw^IAt z7~>!QN8W3`k8!8}{?3ozYyQZ;l%AUA_g#X&zq@Ik-ZstO{EwUFZ$KaT-1dzu)I_`>Vg+h<|1bXkXw)zJ?a-&c2KoFd+Wx)2yOjT~ zf3*Bg`2HH`_-FsUruo(%fGj}AANUKYq-p+f={><~H`5xN-7tp<5h8({Q z9r(r9R`=IV3ywE`vuVEZcQ?)dbp2lQ@Ba6Y&7W$Tzw4i9n!g`?{7Q(x@&D5_4}Pwc6|DB_8and_f#XkMtbYgQWcR=S0J#77j|=>_{F?ud zy|aL?;^+eXYzPoMP+XJX?rtFjcXyJI1QLjq1h?Q8C~if97A+1%8z@CuDB2>$y`@NT z&->4vU3PODO4_eq`@Q#ie!tl>wzDJ0=Iq`(n&>nL8u?Mx%niRvs8~i5p{%`xd~TYk zPP^a37vtN(hc#^3aV{-etGeBj!dHwx>%7fo$%i|?kk{)Ci*>F;6(}f;pNBhj1{sKx2EF8%MUfvd-eMk zTE_iNc1@IG-k0n0;oErDP`0qB4P&8?60RjzSYDUb5aOY`nU=8t`2KV%vyYxDRQW~Z zjD)RO6t-Ubek(*3{n=xu3DJnPjPkbDh#OCRM~F6)gy^ZulTMDB*prTN)F!Wp5Sx(i zd8?a!Fzz0kP2~;y+Q?D(P;yNqTd3k+!aKF;<4WXgh`%Pr9#{EC&`S~y;`Q*RUEH8@)e zO}s*W{7n1|;d8>xTgb8$LgZ+V-usI6tce^Bf^SozPq7V>TIMlvPt~dq{W0Kepb({; zH4)M+?p!4ERW-^Y+cfwg*>KvsBt()ELR4&)8EOd87aj5O6r*Ki zX$?)3@Izif*SXfJ{BrrxE!ZYS4x9C?u_n5_lX>gtQWNOPfI8h(yoXM&H;`$^pyPGr zHIcfYs51Dp5CCho_VP@au0o9OG4a3))t5Ve-GSzgm`oSI@Ra2awbiDi;l_E7Cw5S z?(BoDU_jsXMvSqeJ0#@mE5v5xyM*%jh1kPf*+VMmNWzR!=qT1QBvz&OdJFMwXBC&% zPgz4ZUH16SL7pX3Wy5MHybRqWp+aVb#|(iNe-Pru4(Pv=%2PFwlh{!k1_&`**O?EX zsZ;KnxXF5NW_%lcg!mCX(>bT!pJz{i z*Y;7TPf}Gc)Ity2sBb`L_*_B^vekgO$iDgL<3sdS!b;*<%D`he=yOq(*ACj-ogLdS zFSLgoIx^6>`}gtFAmmUh){$n~msM@aJMyyb!KH*){y>O>?4eH5?hUp?`i)nw6Wn`H8Fmd zil1SwE;yObDS%w{*e!%tC~G*3{-D?LI0-QqJ}5j<-Bay?+0KTWLL@#QM3+h`Zwa*0 zi#0ydRJG~-iOP3`p5ueyD?-dcPu$o0YSf89u6JVIJM?2N&!KB3@QfnZ4Dgc&&#YRW zP?J4QGi>L=Labg2UEWi7-w1=Zml-Vyv4DF=zc$k{c2}R<#Creom5f`SCs6f2OBPLx zM8Bterpg;uN7o?JkLj|u$as~1Y&!NH&sf1aOK{NV=*)chwH|g>b0PY-V{P^4sanX< zJw_~kJUvJgg)^h4EaQh9Cm?BcI+Yv0QVzcobHLBp(f zxHXpYGnE>DQsJ#%p2u;II4OPykV?ZE-Q zyT^Q5Ap-p;!F{H}_E(R_DrYovcrpq0S2`hTX3#`MT~-h6&%2}Iq z@L_v+Z~!`~4C|M5D!vkT^xQ2W*3QHJs7!FcH^rEeLR((Y{7letb4&9gs8lhHG0n4L%*ZpowYUK#fsP~%lHg-#{1V5VjHwAVHmV5q4P2! zlC8(D^+=_kz)#;TRdIRkomdl#kTW@FG8Yf&X92S;Df;UXbL_)>RAY{3Z5QI!OI5!1 zXXL|j6)(>ENO+VI`@1x>TL*p1IvmN0JmlFDIuFI~mS4rYBHxnM7os%JlaTEydgMpa zjfD7eD*kUTAx?zRK77>{oi4%AqT^0d_kEBLI+3so8MQ4VdYN%uV7wdpGbiw&gkk#? z&I;Og9b1j@4?Ba;Fg<%NXyNR1WP1(hUSB^|TZm~zR9_a;*8WiJ)UHBIr~Ne@u&=mh z9P@Gfj!_#MjJe$dO-fi+U)}q7p-Ri^f%eEU#(Sct5JRD(G=A_!Mos)ez5(so|IcPW zRfuO8&0o|<_&vID;p;Tj=7{d&us90_M{Sefy{f8W%? z=P}V}EiV2X8@Utw=ifqzlDm)%f%v!dy|7X96=Qsx6uC;hdzp}V7M&;Sblt9M-YulY zEK`yA-6XU^mN#myiLU6fi!SI9`endR=iv)@U@~+dp?x2P?XM{;&)Zy){VZ~IC2MiL zD86yz-%{qMU_ARNqn$m-KMB3lv3~d^zx{-D>w?`;f_*u3lL+}T?FnlGJujP#9St8g zX`%W*K*!Gpsy2*kvwZk3^fj)P8kqzwWG-lwnz%Ce@0@0)cYVejAj1r(#F|>+*q3JN z0JKvJ*(<>ldGejE!-g@2%BRsOq-V`D>p!h&#uviN2F!yWMq>AU`Xe$7zIOCbZOZZ~ z$kC(FcJsTeRd4nhja6B8osW$+3g~n`8hcxUTPlU+bwUr`1MF4l5NOT{A-a63_!^nR zvxW@jSLyX zC~_Ts{r+oguBMte22Xp!7fFzt!;ocGsIJT22hQw$Sf|F7tflB!+6h1|wYBpx$yyDT zz$1Zi>z86(tgvn(^5RqWDDKeB4721Az7KmykN?shs$d7ivft}L8wO0if zpg~h)H#XB8#`oP7_V?Ud;F2m`18+8jmWvK&zGz#*H1Z_OaW&geIqEv~8tpjpo|Wet zFvJ^O!Mc~8f{q|0C7iI#K?VobnKeD@r0)1)I&1g>9nj2Z0ePQTr&Z7CQ6p~M zM0r?K_5zJU;^wbiW~LV*UrzsErtM>6^*%R1j%0^_cSAGwa4m-Qc&2hau>qo(cY8P) zsQM`LFIN=eIbjWaYQU#0RqRlEvz}3AkAL~mJ|}MaAbqL$9zperIg?Pc0Q<1IDsEg~ zV>2c5N5?RaJ{hoimLMyTn+1Ae<04PCqO%KOCvHdQJV>nWnoM^CvS7=@e67KY8$gTr zny0`6KX${X^)3F?kNBPd9pkdjcoOt&8N+^Lw}h757vJb_e}e2nR^HWZ6;)eZcf5t4 zY5zujP0Sd{yY11uA4V2jMR!Z!gdrDn z8akMV_sGz=guK~)J3Bc_sWN#jtj8||nRznieMhCcd7JmgoMevLs&rxet()w4w?bQW z&)ScL7{OTWq4_Z6Q%3d>Ss62Q`~!Af(eh@k$9+}&5Odp-y}SXD;n2rwWF$W7_BG6W zS>71FtVXB~zcwoZ4d3ToKxu5Bv+%plA4WS8Z(hiSzQ+e=cA^JM(AF7J}@Tu(KV0h=$19?$l-7A21g?+wk70iz+v+7t+#C>|6~x zl#tf0+<~zyO`*!FVgE@OP!Ye_HuO(F^d-EL6uxR_x4!v#*K9yh=%EKTO}mNMIovZo z4SV$lW_i*tnF{QT>AGBBR2kX}Vz1-PyGdxMIPr|=ifwj&L8E;uKFnMn@1b%g3>IQ) zYip^BKiN#1jG@C~+tw{t_G87_ztzJYa>t$^Tw?t09;~YmHh4UGEfIQP#%k5(6Xd1=Q92z2 zdm&$0!-446iL_zBZGGP=)59HjAK2R{Q8+iWHG}aR@D+2}qzZJ)+Aq}oG`nW9znzP{ zm`t_%3jHskHf?1nqlvRsHQ}JsPU}EbCaVW*K|etWT(hqoTt&1JGrRUKFK(^KS8USI4Ki(E2W!2h1hoR_jr))M?? z`m?44GOx2rAK0&O z37%bCzhCC8<$0AEOF#y*KR-v{%h35!-KDOLQ>i*lnTPKl;|pQ^o{z_e2%S5zzUwo< z_swW8NE4H>`>Q;`$CnA&_>;Q-+ot$CU3u4ue$9{>{!A{!B-$8Of_){n=V8`73SKMa zgAQ86J0N6<0n4_jSmJ{UKhFWC4Hxo*kpmxs9oT1S(L;Ciakgxz#**7IZfhGG8}m-H zftiyX`7<3E@QikD4d=PL%(5pXkqvp#Pq{Tw1KE0!`SbXdJblh(&5G;=#>XQIHZvEa zn3KMR(QEqr%KA^Hvd-&d%ml5Y8DCk+jLX=-Y<$-?Oyzx!oVUUY{XMObSE`JPxp!Cf zsvwKJk>`6$#J$g`FYyyyS5<@`yFWxmF+W$4RddS=@p7nH^LB_C|C+f?Sq-}w`Meey z*_Rp_!k8NMH|xB50ACg`(=rz2gU>f@+&ue~KmMYXmigTTU&aS@m=`NJ;a>=Yb~n4? z*Fa{}*7el*XVzLOJ{%dc*@JHZ8T0OOam!y6fv(|^MsIkRSwj=&Z=%=hs5%`M$F1A+ z3^WRDTjA(8JRkZUO*@-QW7nTV20JtErP$0}@rC8%d!vzjqvNi|wPz@HF|zm5800TJ zHkRPs3jg^l)oNf#=yiyS&mEy~ZFE>R=IFR1vJ0QVX=HIj=39a<_$4&`h_#v62Oob; zjvMz%w)2E%R(>F=zhq~q6^-}xa&UNszcg40y{~aowwNu=D`_w=eWSmY9L$0aP zn3QI%rxu=Rf78sDu}BNw7lG!FAwPH5!WJ2WPAjO1SZK3+OZFHw*~868KesjSpOGKE zV$qkf)aNeKO{}hgaUBYpsxidD%G{Ur{>bTNmCxw%~m< zv=qAmTjC{qvqH3+3_D{m^ngEfDfZoT*4luHzG|+wwNp70`Cf4XV_iK>rFZD`Vbr(B z&EHc#kTq=eHT1{&2C=94@-*~ix%nFYf`0zcEo1h;wrZy98Cj*sB;H|H{MB(h`$_OKNScT?$B-f{D5Wn!I{-~&Mq#x~(yX+BM? zo5j1FZmgGG-2vDj68a-cvg@)@rniy*8FpN@g)*g}`aB~RKW=8Ro%W=_7m!=kyQKH? zsFO-xU8L|=S=mn!FWOLu9ZR8A_~~*r^dzz&n*51`a|5tpu><#bw#3$cy77Mgi7*8G~8&RZKBnekYm?p*xOp7;oP zMiylH4}Hwi=;vnqIcu@KHS)VIzH|DSueVtiUo5G=8c5dR?8OSBv5A0z^1T-|pK3AnL4rDLNn4h9+3tPq_OKVxy zG^y?zv9@wy6TJQrbA~*dhwUKYH2We6X<3)3NZtkBvL%J{ZFs7tCUP^E_i49*H#XuS zTN3SD#I~x^l5U8+mJ;@&8%}bS<2H%9Ct2~i;-RR?^ z`pAc9zE5DitkAHRnW|I?orpbQz}9dhhMZ-LB}%f#s&3}VSYqb=A@b86<{+c3kVCi4 zmfmN6Jgg-uzVJ9aiVd^fnSFJB)!yn__%d0Oj6S^ItAGuV856HXHE5^Ol|g{*Ri*o8NK3tLS}3Q+A-kv4CZc+ zN?n*|^q?Enk|t-e)t5i&(1PN2lUJ)`06fedt@@@ z^t;Sn_CJYKTT@puA6c*&rWh?N>{(ZpUu69%e#81yFw1vfBb82tPUG9d8b=ssEaOkY zJ7;)3C$@QbQQjqYhEAb_he^>T_zWa?;p-U=4N3U+81Jf(5pK}p6YN_Fr+jS4cFBjG zCt(7%Zu>^a4i8OyF-hgg>k;PGfO72rilbK=e{AHK_y+X<)^cC&8ocABtyS#Xhob)_ zq=9bj;Uu&rAsc<`xCNOXrqc47G!42pt(mSAiXG~viEF7 zD{~d!&20RBG5CGTqF3N831Jp~km=|_tPAU9g^R59oG8|~oS7Tus)@Ocna4uR?=bWP zwBmV+_o&!RS*Sal^_y2q^f8F>wGA#tV z0@{kIqUuF5_8l8}Pgw-|YHs!+zF6sC>~G|*1b4^yYS1q0|BAV*;Ke%JkH3yJ_rA{0 z*1Vh5RjMFsGI9_01orXuHtM;pI;pad@+xh;FR#8{v)Btt*oDluLN4a>5c8h|d+k{v z>~wfwWK(Mm>?L%V1pidbiQZ1CC-9%Xrbca_jC@CV5L=aXx!+agF8_@8*V~O63b&j9 zO&n!ilH;1I$Tx-5^(w`)FJPbD!#13XoJoS;0eUReiv2)eb>B+XXHQ9dj_}Jlop--p zg|Cx-ABRulg9E+z4re94!?R}TW_|4!R8)EEd6qrg^j0}@poJdTHA|bI_o3BQ>v=yA z$$o_W+-+n}5He~x@<75DUGZmr3Gbj&mogU;cIdL;NJ^D9u08FZc?{k@J6s4CU4O}X z9kEm11VFRX*~38RZzI`zBY!01f#%P)wMA{0hwMK}=3swCzJx@~NqJ~{8vK8>JhlgO z`5KvE1rPRNUv0uBA4561)(Vlxjs+2jwNaYj2p2PE=CL)UI2ToF**yrbm-4JIr>(pv3mA}4rU*6GIj~~ zSUW2eM`q-O{~t!;gKhvl>-Su+;|c3M*7&*@YwE-CEC=9I*4ZPsCh|kCPtvMBzOj4W z@{B4!H8kq6)NFS#wDTH0bem8H88em8kx-YAwjA~m`Js%_F)Kcz9(;e3m+#V2X~I80 zHaY8cu{*r78#|&UG};KCQYH9=y3No@iT9}I#6qv*;jh%Jw}g)=e~4TOYOT^TZ!EN5 zF&e&vt|b(9u_2MHp~CXIYnzJatZ(KuCjQn1`vo4^L4UXPP;E9_Zq|{p0O)6V9r^*U z9)`bXQ+E#iFA#t&)Ed1*UUuYw7qZv^+q1GRpE?DZ?L1s-#s_$@w(V8gX+E^Jl6fcu zt-vp-O0bWkZb|arBA46fdRf*!;H&!AvK?~ASKUAV1ak>*N*G35LQdq5Jsd=)ed5SF z)7r?fX~@Q>*s9n+hjXz9h(QnL;ybnP7|(HhDv8;{M2;UMuj>!Ahkoi}`QfSx$RxCW5Uas`_O{5BEt>N2(#p)O%-Rb&=8%}De-crM{d zPv#!n?LM{~V?O3i+tAxk?1jQr`ThWTwxAZzYN?6!?KRQjH1;>LwLAQIx;X8z_I}_? z?2qowq<;+02{~Ye=?CdUN|p1OJ{Kt~a_e?*sdq5VcJ z;8R_9xvpkkIv5{2bWxZ}laa5l;q_|$m{aD#7y5ZPpS<4Ko9rPBXtV&oF(Em@13vk* z2zqoEG+YIJoQCh2LZuwRK7t3%peL%4R}z|=gsk}fA^(j~899v26(0;NgG~5bl_alV z)^O>r;%zP|T%;M}L(YuEPU};dHQvLw1YP*9eugUl6`H!y1YHWfF46Z7Mr+wJsb@FU zpJU_?j$*$CzfaEr?a)?y@XHEljCp;MUX}Lz^|!S?Wo^B6-cE}ie0bQb^Uy*|{h+zu zgRDgv(;QW!l3Y8>e$2S<*gX}S&X~f^skm>m`1@|$)9a)WQ`kdaixfYZ`9(iNemzp@ zY8}n?igh&WjIN{dd;F;KvN>pC$0sUYI*G!C!xdh33tBwNejB~NITE^q_9U$O8hZ`? zutL+}-V{ghfusn*zKK>;i8!#^0C?c>umV8J!iR#v6i78cTEy zV{vCbX0vBcS{8n|Y-=LUW$8D_^DSo9C+NlZL9U5$OU^G*=~2*FTKX>GSR#e@bi>9+ z=k)Q?L^ovB*wWZ%{qa9fK-cVNe&Oln=znh?^}JH<$cLnSpNsu6J~jN(0)MeZ=kCTf zS&&_|ZCslnH&+E3sf6KjiB-L~@JUD3U}rXSyk5-Ha`^vO-HtE)R@KeN+&%R{K4ets z?0e`NJoX?~rK8HRH@u?a_Sd@5i5FuY#@vlUAA};Cn?Q#>8nX7QSnu!9A;cxzjDoLu z{>8eiX+30vBj4?ThqS>bLpy^ak@e6|wZZ6pXlOIKZFFbesU(9Bncvx2**~nocS*a8 z8DFyT*f*q)(a-tNd)XwK$Q*-Tg1z~R5afGF_Fzplu`MY&4qbCcw|Qh=B;2jcw-lpP z+$T_B<9cVYiUk+J=E7$)^C$c#tcL;P(Kq(+>~`Fo>^l8eb8{g_tS}x~Y=9Sh_muHw z<=JhSkKO2C+*V@Ge0&Rwcu!7WUZO{TWe+u)wcYH3PIZT$(WNtV*|eE)cQ}Fn20EyW zzLn5&oACtn_IefHGhJa{>II=U3i0esr_kNY;Ne;LcfNoxk=yRjj3>P4(}DVKyeqKC z%w>7ac8%CWUn7Q%(}Vf_*-XpWLulZpC2Mj+)yDw(?Mh#g+(IrOM~|ZW8#T66B*h(lmIOaS1YuPX>~8QhLYWA77XJAbzOPyj zn~t!P{4wxzD=+F5=H13@>`C@1Z|~xp$;LZe>Xh>4dk6R|knxUWevgoDh+Mb}_Fykr z72C^4=buq7@VSTC|Be@!A3xehwi)mR^t?c)dn3<^{XA64Et2;i#gI$I_&*b5&_{i+ zhjp99T7P$5_ApM^gskad_#?Cxa**{5dcs_|X<{+5*LjTf4*I0iyEWGVy4c9RS$1_EOfx=BJ5_2Pps>Y``rVSj*s$p?)VK+p5+_`qWq&w&3V z1lPo8fK4G`d@dWZU1q?SGv}zZcOK@|N!9uEw#w@}6TdGq+<;|?(Mi>iA1l!b?1f5$ zPo*$Qkxl453CSBFqu^x;W8jm=v|R~$y-mDgYJBY${UhtlXp0ZfLKENGjj6*5_IJ#Y z6?!&dUfJ{Kg#Qj8yH-P+Ck{eG_3??+=X-cRPFl4Qh}k(qW?-;8FqkVUb7W z9y?c#`D>WiKWWs*vVrU-h z&Oz{%J}%XQ+#{KDYvfsREqnzbW$^pa#!Vme1$*A{RLH}6tzQK#zrvsMJ$z4}ypm%V zcZu6x687{4>}QYV(t~e0q1Ei@+fg0y&9O$G9!AF_CvRm}bNM=9!qX#a)Cy(<|hK-iFG5ZWB zYzAnlPX_qdVn>@#VqK9TcSfk3#z~NOJ}O=TId6qjtf_<)tpBm>DlV^Ky3J$c42QNl zFXjCcwz7nWtbNDatlJFq=^Ol3=;Z#;`?2fnTef0{GM)yEFFx4SHojciDy8a21*-BL z1K~CHF%m9!f^Ou-+77BtW4#Fl37L@VAA)1+p@s9v6KuXm*PuZ{+Z51NZcU8J2d&Wm zGc|c9#~RgMjIDuPZNO$<=w0XA4#*4%(^!Mb+@JcSQ470Hm)SBWX=#I4a`ZpRP6iU*UN;qR#9+)KMCcc|*`L93paQSV#18d1|#OeQT zi_fXUWae>ge66dz?{lz!q>XVs%{s5JxeTbjMa3K<8Rtsk$dwC6;V1UX5{{O#p*WWo z@WLV1#2$tf;oU#u$PL}t!|_6@{@m)UV`qMsXX%5iyEq;HV@jEX`8yRht^=y#M}lXr zdt&?e;omN%O19h4^wj3Y9niy6?4}pI+e!+5GyWaWX4GA?T*fxLvH#F{+*(o?TF(+| z=A;V3*580Uae&Vr(pPBI3X7_1B8R)mNq-TVKrR~aD47|Tc?G3xq(2VZ`ArLQZdpIx zCHCZoTSeiQ{z7dUn2~s$v5bX6EWzND!li5ieGyU zd*#8{aKl*pafIUV@G9ge&-)%bVKe%Cr61q&j^`VrUF>^%V;4p74IuRgBX_?6?|fmIn~zFIpwA50 zMqir1LoYwYW~81k_k4-GsobCTp`-j+;bqFBkbfHM-&LRcuhH4=<(cD>;d>a74;>2*O2{!E-QZBgumZn1F5^!^&tKFvMcXKp(P3DF5_!K z=WdR$CHb!!em7ta&z8A`aR)P&k?EmH4}3E4-_+dDpBwfWd|3ZGz6-?0KhN4sgn!0a z#&dL~YFA#*K@-qU1L?}eb<})&5}3JiiBr+|1%82R{n~2 zgy+zMV6hJxod}I)M&`lOTafv4@|pv@30>I3G48FE3i0{O!5zD+2K~Zr$$}18 z4E7-$C42_01i}9k5^LfL>BK*v0|^qgFfYriYQm>GcKjIjbjY*QPw*vH!rsk^?Vg`+ zzMkPkQ z7vAix^6ale-mv#z9?CvNU%(e>q2G$&LOZbCu`@Cs$G*mPkce#dg)vZG*8F?&1To@cp%v{Cr*)$Iu^W=P@6D}Q2!*~zJrGh$KQiq zyj~2Q+8UVxjXkQyZ#966fx%E^%dEMR;dw@O~a2HzJ+6em^n@Yj~T@M=N@-=dvqI}-Fi=aako#g?U55!82%W0$;ZrTjQw-wBlLR?WJgwL z2p;HNA38w)tmAnp(O&~C>uuf%t>#gw1IWnXtdA9%3}L;nsm3{C9}rSv6F08I_W-F> zE!PX!Oz4q(^k>{rXdn8TchlNJ-1yUI_QcrX$Kji#+30I+^jQXiuUYRJZTY&Z^iy5F zy++Php>sEtel~%9o)hDwUzKT3f@0NBH!3c#&K>#v5pD0Usq*%Du?MyD$yLX$v_f%YNueWVj`uTourlkAlY4nb=7gO5 zyb5v#+7DldZ5^fRM&olfz~_;QJ-{wao)3A}9+}dN_kPg00sE0t2D~0^#1yW`GXvqP z8+mz;J)d`u5qvlB3V$p_E{}R52M$RJ-R}=OTMvhYL z#CI*-JigrD=54@UXbRt1!KbiFIabB~M8-)755(8LROMGagWm&kuiHM)&HxSfC8^S_A#XUU)!W{__o9HlWmc>_+6?$EW#5 z#$0P^U6uD2zOpaA`bp8yYsCV;6p}ge;U$$VuTOJkNkZ=*fBT@AT=|Qo0T`%C1D? zGfanlmP6%aal=P>2OB0a-*uHVY9Sxd&l{PyhKtO+LeNC6CT4nquZkBdiX7JaE^}I? z##afAyrR4v?MtZBNZ}gLfP{sNIl3&g-IU+x5hNTAVJ|>_7RK6$Fo-#j@Tvy9uInt7 z^V{p~bL_K_J5jCJ*UZEIT8u8sLVKj!|B5|b0s9>~xlcdm=)x<$$ zWG7_A8|0J~Iweu5vW&Y1_59fjX3oSMBb%ZJnl-;XsN%hP;zR4hzGseECS%8LsdU&U z_!;bcAkoOGjmRlqT^H5LV~({=E;BA$_!%1C3oqV30UyvO13o&0yv>Ebry}38Oy&1U zx{qC!f4s`5rErF1jFtWm-JsHQ*+({f9Jh{4HDoW6h_O1cpBaX4E}5OJ;t{Owxx#qs zZdY+XXnH)n)eL(02D#h8Pvy(&S!ih5ZhWvMusfmkVerj;blQR0_-OphaaOHp-cuAg zz2gPn0AzsoyYZan=v&4%W+v<5Yu+R8NVQqrcb7W%S=;%{MI8r~7cv-K25p>}%l;s( z%3GrAun@hS6wBF%c7V5#<44O_+NPbT2z8IV4n=l8UI5M0|M;L`8lF*vy^6(ekj@?3 zy@zUZSWEmF;n>~G?a=7>S}^lG_n2`RE8PPg-Nc^s4K^SA+NU0SPUO}_iQ&s}3(fj% zg*k>R(6)r>W3jbZR|#phvbK!ZfYlRJY}-nO7r>)kk!2+r$Ec53C*~nOsG1^fe)8`4 z1K_!7*cnzhwU<7^lM;G0Qh4__=-+K zid(NI@F7~ENPT>a(AR=p*v06HER)!)ppSO4=aR4{d))eA7XG`f*OB!is^L38_I+)X zACkEy6fpA5EHNB=q+530Q_;_S^ecOFzQu%2E}lZ4qDRVRfp=&(rUCXAc1rL3nuu}J zs0*$5$L&{kXwSKTrE#K#;L#hjFQH%r^bf7Kev2+Cu8E%L=qbpTZ{4uLkPjQ9vESPw z$MiMIG@kbw*k130C9iq^!+!8N_zS{eLP}`x(PjK5U-O=04K~yl@4MT~ckZp?w{n|# zQ=u~hT9r0p3eSco4Ja9d4K>|J!OPHm;AEBlLbr`3GBydWVG3KX?oKMz7g~OT{D0g9 z9|QKq(?R&*Eb?a&`ESO+o2-)+&e4|>8&yu^J%u;s!M1f_ubh(kKLd{-TYg0LA7d>a z|Ad_q2+gm@#?8&XiE##_^Io^+zZnj*H`&4b>GP4!ll#l@tvmE+z>$$gOyQVE^a&n4 z{+&u6=!6WCb8uFrlOta)-;R6Fhf=SZ&lTx8Tkfu^=~sY#0y3tTAAJLt#D2`D^J>UZ z8|4Qpk=obieA&wCwnMJdlII0Mm8|tZ{WxC`Z!dHx~8@0 z$s4t?x6s2$Sc8Qfc+cQ(t*PRk0SfP`iO(0>EAt$G-xze+L9=cdKrHl}wem&G?`f&ljvA`XoKHFX05Ta2C%E%EY(j$m*6J_}RSh9r>8^`|(6oS6;*0 zsr>3Cp=oHgw+B8Vf)(!RGH?}R+KL=l-^DCFFwcxzV^`4s2YyvKKisFkXW)yx>|Jl+ zUvdSfXP%bhV}b_8GZ*s+KR~bR_Amz4F=80w*Wb@r+g-zb-L9EA-M(bKpv8A4QqxbOG$UV(~pCHQUU@ zno8Kd0=+m6n(m^~OJ}M&mli5~4ml^GDD?e%5ZglCUxK+j#n=x+clWucFFdm+2Hgb> zb{h|m==-r$1yz07W?ABm3gb6##+hFP3H2lK3va+~CB6cgKYu(8J%G6Q#;4j$U z(C~S1CHVJvBXsF(_DrNV5!QII_XZD2!ulOyPgl`=u595)Xut|TAGD@ayh1bl6%SRs z0rM|mHT6!6V(t6lCn<=WZq9y;XB)5-UXu{jAN!3lXJ4+;_Sbvq>~qX?Mi(<~#8N>^ z6lzpR82eYxi#Mbx@Iglt3d$nWq$DRMr_f+k?&SDfl#P2N% zU}J4jb>%fHWBCbQZ3KTgA`9y1@_uV?Rp*C{*u$gE`n}rYE7y5U=1$uToo2>n3zNFl z9Fuv6ilswtPy80Uy%zF>;AA)V_Vr~tGc>xRr&;n#H{{YDGi{9xXTEmiS2<@h$L+@@ zU6va4^Pl3KUk_EM*kX9o8(#r?ix7Aq@pE*EKF3D=Pxh)~!qHtW?~)fgU#EVvHc2dZ{n>H1BUUTR>r;#OD17onGmLSM76&;iizS>!@J#$FCNTdxALbOQEMCv01NZjv%z5-ycvF9<#U zGEk*^B;pw#qtno5^E<$wDJgr1%?!=&+kh-!t**iQC6LX(BI~+B$5(6eeyIuP1GDE( zi;V5C2fq!xGAy}jb8Z!dQ+}tg2eKv|ditTR|Ch4nebC_pnU5DkRGoYD+Y$P3TLAw( zR(Zy?@@nK8a&9j9NoXfFw^4#_qMr-gc(>!N=1P`a9LhHo$N?(^>oPDPFYg{$tK6s2 zBk;IOCG;b-)vO2fr0@A|FxNLSpi^`5ZY&7<;~sPXy&CW<_wInEPL}4|nvLwUbsApf z&AuNyTaa@8v;LRs)$jr&SPlRTC(Nozx_;2lw_~Ds@ zPS8M3Y~$_7ymq6I#n6D`F80l=aSnZsy4>Qutc6$QGjGksPQH%Zo=08cgR4P*;H&hl zLf5Dwgip_I{tlNg0ro$sbds>o#fg#}$ ze*RstpJe1iSMd-`_t3H0g`7~vaG%r_x5dj)%i2Sy~Qu3u=k z1l0@c71AR?6?^syN!XLa144U7^h;2i5dpmt)=OD2!9(vu2mC+$eE%>npP--w)${Gy zFFe90D9k6w$2Vau2PI_s=|Na%cwlHq@4%p-gtgn#$1gC{H!vadOY7kQfnoi8disSY zXq4eS0{wc1_DNXX2!H>eh|oSE3922@(KfQB z;DglL!Y1GNI~|coIEus~iAc&%u9J!6B85mPQi;?ejc^ueMLO}3NG~#oj3SfBEV78K zBAduAa)_KFmv9lT!cF8Bc|=~3PvjQ`L_twV6c$A|sIZtQE=q`!qLe5t%80U}oG33U z;3%pjDvK(js;DNa3wKdNc!-+9Q`8c*MIHV|x}K;n8iJ~+I$Z*W4Gt(%w9CkdIH2!Eg8upplV2vl0_8Q86xf6s(8+bbe4C_$6d z$KNL`Gy%&P?A4`9Xx|S%I@l{XG$GR-=H(j{2#bHX#W1gcUI~yaVP3rh{eMro{a?iY z9ealc`uZo-bWoKOtm&0O5|9vsM4B$pa+e_g@L~zNLAPKMQde3q39R==x?r1zgtRLw z{*i`l22w&AmKFa!t;Y8vItMTuF~Db<7?*E}y^lGY|-u^x12Ew)xmHXF~1Uy~B>1J$_6dMk$cYB^|NZ$tAs%`u6ru?eX z23>ibfOk#Au(_2Uui3cYB<i`4GVVRzI@>7JRh&3_=^0x z5))`boW#AD6MTX3)CBY920LHPf!y)`@7w=;`a^$rGJhq&Y*yHLC?G1PGVXTZHq0|# zO}=sE^#N!wX)kaQ23rv<=ZYeZyuc+&m`r=c!Cx~;c$$R+_3%`SAHY??fwYTVf5van->uS+6YMtl;$E#dJD1Sbm;S zAKaStk#7(}3Eavqj8~xqH`;3oeo4J1;JT!nf$NZN03J#EHNat1E&%=){+)q8G6RSi z_VP-0)di=2<}b5E9vznfC;mkfk-xUqoXNlb)L(0ezA}lk(-RoeQ71O|z=(i)!k?F^J zz8_eQyNsTn2iz2e^!Qix4m3UK3dqv7db#66@+nU*F_1^cWx%qYC%A-^sd~Pj#MF-f ze?k2v;J)BZ;8U`{vK$xzjz;ia2gi_hhpwI@7xUdXwohV5V2x27e@aX}z^RT3@Z7_CmZAulUorH{z{` zML}wsgO*5h)Dmk+w4|DomP|{orO;ApskGEu8qHZttEJ<#)%02hEu)r6%dBP5vTE71 z>{<>jrY zF%`8+T4k+@R#mH}Rp)HC8k&bzQ}fhnX|=UFT3xN4R$pttN;lFPYfZGKS~IP=)(mHEinz!bob0=4d14=qTOHqcFiJc^_^ zn2!i;*WbH13(ZBi*xna_oNRUkKggCC5h1071ZNS+^2rPNtcVjiMwzVbNRA7HD4eJg z2hOMCkM~$h`Ili*xw_g)rM8U=a@`UL4lH1#?1tv#;_f1x-DN~LXio0J!CBPcPbL`@ zkNjQenMCzV{-yVQg4E~AdW(D8ALv)y8{eC9b{OIAFC8aFq&I}UYrjdZT-?BVF)>^j2TVQ6H$O~uJH=Ibndl6F%GTWNPo z9d}Fox6uUj>$f*Sctf3PI6KtHghSAu9NGq5g#B7W4`2HS&KGBHJL24DAADs4o{eS85(x8!Y{QVS0WfSo;4afir`n!DDE4 z9XOi%W5Ck?cML53f0x0R$$tQLkk!b{eRJ5>Hk{?mj1sOu=M|(0!#njb+GjRJqAnvpW{n^oBuC8So;6+ zfGdE@fTjP>6MTkrOR)6+`GIF~Uj$hC|3-kL>CZH<^#3gZOaI>{u=M}!155wkDX{ea zT?b45-(#@!|2e*5eZc9#(*KtSEd76Fz%(m7!P5WNQcwHoI07ukJwi`U155wk5J$*`I%CGC`$2xX=t?H!*OaEUUuzYSAiK*`imj1t%VCnz!155v3ge(U}fTjO$ z8aRgZ7hviCJE)hR0ZaeiZLlBZ&%x6F=fr>DO8;MGu=M{G089U01+et<)zxuZ9S7*R zFPP~SW5E5j0h;{IZJ;(t8~p!`2QXL*(L%K_?PIN{7Oq8TD|nx}N~{)Z#OGqISSQwt z4Pv9%BsPmJVu{!)z7X5QcCkb36uZQ3@ui3nd&FMeGw$Q3O8dnDaZnr*-|#P|hs6=` zoj59viR0pgI4Mqv@5K+|v^XQqigV&eab8>y7sVxUSzHlU`B~U?aRX1}Epc1?Bz_im zute^Pd*Z%$Abu4O#Ut@pJP}XDGpvn&_B+HDyeDkMyS_HO7i`D7-VWGDop|TyCA@`? z=puZDpYRu5@uLQaK+#?F5J4P*6vCUmFn$}?Q-q5M(M$9eeMDc;PxKc9#6U4f4Casi zBgIfLObizz#7Hqpj22_WSTT-2>W&f<#6xSVy2iSW{Wwz$($?Z ziTPrIh!zXQBC%L370bkDV!3z@UH=RJ&cKIfU{ce%dFrK2o7T;3L|qRl4~mwbjk zlt*exyWI9WPrVl6HXg8v^LXgW1MPvdL%dc^_D*QqZ8u#ah>Du z)^8v0PL>-X&u@!&pF)`szYro0nKd{_Ege z&pp|g=wZX0hK)!+$vKZu^VOo|J^Hksk6YyTEozqrl17#V{`%FkH9pokSsqU(r(~{{ zN9p})+3pY>lE(yK&HyNH3G6rjPH>;Z@8)z+^VPJT4}Dt1%bsGk{4m?q z-GrgYVRfg}UAm+|!Fsh_rnIbYd4}qjSAnhcX&^RfUR#6ms}t8H0WL?=|gLj2_see%f0e75o~wyR!Q#;rZHmHqjPYAQNT1MWX`pLV!qgS;4p zI;eg{^pk%T@RN)2UPW4;s8j=f!^K8H!m+J4k@3`zY}LxW7IRc^MRWeS>m8_mbq##$ zf?b^3kY9eX{4eg8i<3jNl8)~lZXa>4*L-sGLMw`}P^w=o+sR`rt4=Io>Q1B6aSFlo|hBICG`b z)+eXCRt)!^Z?NR3j@yv;5&h)fx5y(aq`yjiO&Dp5{Vf-ZoQ&yy`ouXpr{=49t?cw^ zJAtJIP)Z_FM*bOyX`e{-tDuYgIrcSHSNa9jYDU{)f2oMjTYN8CRQ7Dz#Y)$xe(`g5 z`ZTkI`aX{zu5+vNdv8|-E*~iWgTdUp+2HPGhK94$Pv%lm~f8IE$ z6+cG&?fp`{k=Jnx&aTKH=6rI%)~_J?B>zHol&ymFd;BNT)O-ptLnOt?v`f5t6npp8 z#n=n?FZ6n~AolK;nz4@Zcouh0^?fT}&XKUY^S_;Z{kHS{&@W?Sl>sQKMSf|UFZnk; zHQVslA+~AS>hL$%gb!k4Pt%du`?0alKyg5qtN5_!lRW0JrEOkFWG0f36|kR2i|n>9 zN>KW8?4?(+vDN3)-ff#NdGwb2i^`8}H}juiN?;_YslTk!Wn<2&3xmFr`SLw>fYgkM z&_&o^e`c=!(+;w-v9VtckEn79o8}#T?WIqhf{gFX z*meJ7{d#MguVVcaKgz$oJr^v0pCErXfSUUI`{k}rmw3bG+H<0k_qXViJmxu#tzT%L zzrSBbw|Ft(^==*Iv54~M4*8o4{?zd=6!+%i5)k8$#G+$k-^6M~MsKvq33(L!0@Px9 z+s*9O{xUU`fZoKZ5((9_U+lHR)-QSNQJp^c@NIPl{e%7Dy;5wfZm;sY9{MEzdRBe+ z>G4nYYv9{dru>q}h{+>^)qGw3+xr!1(2aX+tc)6VbZYwKNl?}`{AkpRv-W>M!s)}D zF8g5gYcPH41X)R%vw2VcTm7=N|NEB**gA$D>PMe8M;iW#UV`W!fj?nx>xO~-_+ylU zY*^)_jUV^Yk?h0N@8;we8YKTQh`gIfY)GZP!!Aaj77SNr*PrOupO~-T8}`oX27Srn zqN|Qkzc-VP)yUtw&92PdF8!Y*AH?Q*n~Mev`jUS)y>6oX-bOBX%zx7Ke|GQdyF2d3 zdWlL!H`wS)9(^ePPG9XS-Tu&g{bwEd&E1#T0==8BBJ}AC07k5o<^V3AQ{{!=6Jo0U9>=2`0N9oi55*Yk= zmwu&M%C`=-&Z%qMemcfY{`ILCW0w|-g>TH48-4m;0;69Z|6~0!)=?h+JZ`!AUAJ-l zhvx6CG^CCBvL1o)5A`R`V~u`oVXoxy^80M1>T0PNV~PKlqLJ^&p2)lTnnj=fm%yN} z&Gc*2A^sxQ);V>x^i!GFmW=;O6oINB*Sq;TMxXwdz@V@D^vmIbVd2F56J306%$9U! z8vSymPyb6`^sCzcSicOq??}Jokqhsk`*%|r`7ZX~h!})#uA}2!zB_!uZ_aIxQ&;23 ziH*qLfOR5!M_a@FRDEaZnEutz=u>0nA+0Fk5anS1y7ryhWsH;Fl(fPn=ytzEe`?2R zY9C8%NcX1OZTs!f^yxD~a@(_vXWJ4Vz9^^JhwCN0hPyFeYw6Qw{(?P(FTlL{g7!n; z{s+7Mf%f#b$IQ6RJRI_lACJ+e|0OW^Q63E@kE%ZkFMh&T+6e;rj#7v8iU5q{AHX_& z#^|@awozH4th)bR9yu7mQ3gsE{+${z-XWwm=4&v0>cU^-S3|OvwEfFdy!HQ{%$V3A zM!$y8Cwa6=I!G^ty^#1#Z`^;A^G;sGQ}V~Np1-4ed5m^TLS9=V>iWmpdyd!YF9Xex z6Y>aJd5o_5;!$1y*i#C;)&=b!yDk3O4o1J?Fa9_8-x>Jdoq@!>M=ZiC>CF@Pe?Y=> z;_}#Zc?8TXf;=)(9+PyLGI_lArkea$UJ?FFu@mnb$$L4J_f zt@bCl5e^`N!iI z$Ui_jn)q(oT9%mKvQd8;=~g-TPCGke1ZU>Har8L{^`BFglX!9NlSlGC&cpBA2=bfA zaKaYKm&txLWBhgb9d;Myvm;~WO@9B{)Njb~F$8(s{gyF&u{A**yPmTGW+N{$22>Qb z<3xY##(55e!~uK{2Tnss&pLXK=DFPGSVkSwSD5eRE`*bd46v2#>UVCA!mKQ=OI*S!V#E__)kJ`Z_*R!-~CpMhrY`rh1!wMPP%_Pe#cE4 zoxJH2p(*qu-z}z?%r}?NS4l$A0sQACG$)T1_FzmE3G$e@hKrbsCF*$MMhl=HLUO{x z`SfizYXqJ-izDH{^5`#llzIc|?*}LQR2{FIG@Acjq^$!Bp&xK0Wpjy3KYT3rx{{Vh zPst;vElew}IPff-atwD=mdCXCFf;`6SJaw;7@B78-`0-@4F^lw7*?02%z!M441bNKwA?nNH zM91;G_Qao3w=VIl)ICCT&p1pxOt(k+~+%Jzo@}pnlsWX)OmR+k6I1z zg%SLAb^!EWPaUOKxSbI0g!Ubnqv6mVVg4{=O(gVKlQ9qC+3?6T;%krz-ec(-K^_Mt zkN=yCJdsBN_HYz7$G`*PuZZsf_al@eoFVuU8WG+mVxA~(O>iZB9DI}DPS{0QLAXqv z++cZ}n>?mc9_2Tj{$&KqOZMml_*bDi%i1=34 z>@jN?)du;&^9E5?mGQfQ3sAnIkS30IVcvPZJVtmFa#kLrI;%9lUnX6Gu!8WEJb8R& zKH__ZGH%M{@xK{pt0?g##E%kc69&>oYQjbG<*|`>!4<)E$Xh|YF>NH}KKVViJVv@T z`48z&Qp#KjrO59{olTUbF-NE8s_UEl@Zz{Kc|6@zLa4;8 zu>}ZM2~P>dn?m=k;4eZ1Z5?MVJ^a{z5Sk8WY~9FbzBf~ztRcrTH)f2Dgjh;j^60ei z7WAPO`kK7S^^vip`!}PnwChVaNd0TjVP@(s2lpi}FY(;o^sN)JkUqGvmKo^#6vA%S zuRQdX37VMBx&#uobcWBU^N27Kx>-U9rd)mp>>Ny=81qBg>Y0Qw6XX$Woe0wj@;?LT z6Gjt8ea6}n>J$8y6DOo3E{}Vb$3Dwrey5YZuoT%${3Y?9WT31wVXdq~S{~=TgF3lL z%cF@;666uu56BxzXvV!MNY?~623I2#C-fs73|>v0d4%r>KhjnJK_0s--)HUz_aeQE zP%8USsVlya zx+CFR!jaL;HFd*$(0#1gmG-PRV|cL)IZ%K($cNoPa3#oNzMDbsqA-4xK9UxowU4mr z(!pn7d8~5V^zbdAPX@}tdkNEsXCRCuUJG0aEPqq^1ndJ2=Dt;F(LLa3+NlNJ0geVA zAYcA2v?gH`;T7pp<`%?*Th-W3p<4xr;r-zAWB)>3W1)&6K7s^@?ZwXFLx-V_c zpuLnlZ@wG!m>WKJ#Xcckn^1yKj&u`3cfwbM3*^b)$c-W%Lfn~nGUn`C;_^u5tl8lK z@b~mt9x*zJv=c%84zU}!9KnB~$-$Sw)oF7#{R#JlK02VU(KYgj%SMFZgsxMNAK;GQ2Vi-m z_H=?gT2mfveh9j}3?4H?h#}s{1oU2QXuA)(Cwdz4t1Wz36aDRhtf#L(^g%xML$>vY z&I#oQz{7;PgtMd@5grq-48BP?N8K>e>4^Ufjv{Oz-kvav_&&ca73JCPc%!sNkrK7G4syz@M7U-o|kOIPeYCcrw7a}e7z+RTSDAdh2-^hPf) zpBcQS?Hl+e^7;YW5%^Z^%KMf$AHT%kL+E?ZOJz9UX=e;#`V+o?oYm43tLO%vMXW^(UPiSw8C{>XmfeuVw4D$a7957~C0)>HIDEw<74cdf&c*yM>L zP7*nrl_EZj=O^=?kkG$z#E3^y5G^G?-jC0F&a3=1nSHQ~YZg2!mUDko2!Y`gc~|oN>N4~}V>l;}+x<8;#B6|{mbR|R zvCc%k9nAYUopYiF*JjSGhBawZhkk0ueHpou5G|EFmCu^4d|q_r{iJs&UY<+8^ZY?KrJnii&OZUsx0?q*v_(zK(yri0^TQ2*{5aNKVHgvlGj>R z`x@Ii)OwR+u#sc8oqHiI6|C{Eg<+nGq|v{LT{-vg*OI|{<~oP-#v_CNX-^*@!(h3c z#eU?SD9)uAu6KptPv#gAdndI&^n!=?x0Z-4g$$&BzUTThxi&uZ!x&^UdTuq|FK}L< zMt{z;s>pVv%>>@p9E&YQSdyEzTDp7<$2%KYNWX0-&pG*WsSkGPV;e6P~GSaO$4i#!~ZL02!(~0Cd@lSdFHshQvkjHt$`I5sn{#E*n zK6*Qw`@Wv!L1!Exx$ad^RT*o*!T zwtKvOjXu><-C7R#7{70q=5MD^UdPbib*6K^sNazmNIk9@e)xxx=P3R8V-9wXftFEU z!M+CFJzQHjZkOOphi4RWqC3|`eyjKb&h_N@CyDnI=hL1)BU=b8QRf#D~ZUM9(4L!goy(xc#_q^QSM_=CalAdh?O)yv|~KjP0AqAY?eN&%edJ z$cLOWAHlwtdiU_&eTUC5wvBhg#C9q6RXaI1-{so8kLwn?mSpzZ#q|ie@gB#18}Ci_ zjV8`C;=P8X(5@O1_%`0~Za{Yw7i>yXM$@`S;G}`u~ z)=k9S0q<#Q{$@MzU}#PIztAURzXHcs$P99)5w9i3qbSGYF74vs)H8i0iFXffEvc^M zz4KFdSA4f&YY@w440Wu6M@w_hM5>`{8SdfuoPkHnwEs)Hm26)|CLo8AeC(f3p4~7F zCFV%Bi`3WHmXfO)+s&{Q!nZB@yTl!U935lnag&&{VOvg{>BJj~ zbU_*+Zz4;O&)EMfd5#ii1F{>LfxL!vN3^7R0C74Jdp`Ok`fVM0Chexc)RAo=;`kB6 zQ^yUKU&yDq-+$nk)IdH$TJgHxAnvb`yn*=f{@=HZzFok3^%bu5FY`CUJkA01&TI$s zKA*vR{7-HSL-AHl;FM4gk#={YeggeCSu?9hJ1G6cbfRE z7E|kMe1;*9(0@hJ&=0V!h!jTrkOE6!MOGpIAVZNIOW`5Lw*|Onp+{o-iS0?YZI<(W z^9rsHNNs%ldF_o~4%?FWv_WbkCy*idv>D8~MC}LICLq5dsmMia>$FYaS{)A~*P%r* z{M``CHIQvBVwR^)&8?El^=mr&zn=yt-$7l;<-F$l{sD4qGS}%zTu12ZjBZ>bUgg?U zmG5I}a1NyNUgb0EGIG5d=Qd2aovEb@=U4#89r+mv3grA}+nH?{Bp0d6>m;N%5{*nk z3Su8}ob&Euj`3&Iae(*JNj_IT<=i{M_2?Mq{|WxK{sdq23x_yHhq=b0>p|PoY=5F{ z7W<3SZY@#>y)-@pbnhNB%(G zL=GZ{Ve?_XKmLdDVKO*ZF54YQ6Qmn5h8W(&)w1>P;CGt*p78BO96=x&&LD1EWC^kb zsYjo5KqeszkfpSZW~+6Z+9N&b_XTXVe!;o@obR;RPR?%Rx{Y5!^xw%_YP6Q=aYT#3&DQeYR=DTt*#( zX}ca6?5o_z-(JJjv|4$X3rLXX4)#A0J})a@^X%(uW$d$rDez z;n?fbu07HR8H3D3mLeY`r;uv&&o6BMqMug;P#3ZTxrL0P|9g(+{2oIM)A;P+zNSVF z*A4VlY~w0%KUIiX&B#w)Z_Y*!M#Nl&e_)FZOO53!!@WapM7law&!|>zOgyA zzs&sw*TI@W^b@%}*bYUsKExef=b#6nYrU?{NE2iS68IJO65n$Ep65J9wtPYUZ>ZsG zKEJTvJH@>awzEHSK77Y}^h=Ka8Tu7@cAEDozK@U{#94)JyR&S6=JSnh-uJ{pP9h&5 z^^r*AC8Q+rTH#mz2jcMhAi3KRuhK8PhsY7fzAEJZj_nCzSBK#cZT6EliacBJ|C4<+ z$@3ZclX-oceS5HdgKrOF(y6->QdY2TY| z9_a~w4F`AOd#$cUa!L5lo+AJ8%-U1 zkTckJv+oP!0)F}Mf1Nn1*`{KPMZA%_w7H1vK;A%RBOem$5j@HCVJ7(xQTvy)J44b&kj+ndA)W$Qy<#UfXTeIMC`e1r5v zUM2ojVwJ~tAuNg1(Tq5$=!?i(oPG%;-Z$tkQ~Mgk8~xQFuCvGuq;N2w3v81!d7sar zkNtU%A=nBTtrfdQyb}n+~u`5+gM}}aXuo(U)0hL`4Jh2Oh+2iM}?3o zoEL@Q+)oWlkr~KlV#LGuGCA9j>o5E&QrqcJ!#lpxN2wv%|B#BY4okZVa6 zefRew&f(W+vz)fbx@BBnkqP)7WgFFxa}FP$Vcd68!@Cpstj*;*J&1lsZlb5>(GDq% z%qRX212~pbdC$=1z!c7@f#l$t8i@aLuD6=^AR74*`)H&m@)2#~*bc|1B- z*Q%53TTh%@*wcww4!I>BWDD~5e9n&%H5`8neGS?>bReZ-Zk7Kxk<5q(04Q&6g?Sp*6an(ddb#{#`}0aV@wu)~4QI{&oxH9P{FJAlFddOFs0+r+wjUiEw=C*C8iT4EcvP zXR2}UgkBqtOSAYK?ZLT${~Wd+yssX@-i&&_XWN_CNpS3kp*ndsBC+V#kooA7k+;wv zu>G5D2ew0zPmyZ8e)A^h?+rdXk-Nw*NHuK9NH3%XQs)|i>feT{$mZyaZ0?nAGBmE%L(uZeLV{Tx!1xOvzL{>nM?JD;7% z7^FE;4T-}y^bf8H__e#mJt6u6^a$F_qRn6IAA-FD+b7uj6I0{JK0wwZzaXC@ck%rX zh8-9Adk~)m@Lj<_1-?6~=Q@3ftRhx(wx8g0j5didT*meQzoF#lK%4f&@M2#V>Usjt zdFm}ej8WL05;q+G71(c}?oIuXf|5uTk_+=wc$Wwyt4{UECJCRS2 z)yS4I^e?e}iC3A}2iOK-Uq|d17`%~t=$|96Ad`^{7}KeH2F%Nme`!}z+~|YZ{sPmd z$PVN^_I*TMhspmAG7A}vv_wv0pGkeA$#EWr`{;SJ84p8I+BLy;oqm0t?eD}*rp^~^ ze?pEUE0MVpSn3j^BWNkOXAy} z{TbA-3*VEpdk3G5Fusd_P4=In?L{O9dm4T#Xq(RKQM8**zxP1=kom|t+w)fdiLKYx%d3}U!MYdy++JE!jy2E?%9{q$q=3lN654aXS@;jWVdA!HU z(WgD>%WUqKdk`ao&jIQ>&9)>p-GJ>$CZAidPay6+^kL{Hv9GJk`GFk6cl>bvrbSx9 zmc=$;H0L?`nGtY~;ys4EhyEoo-lP8(AtkasTz&bCYzcWoU*Y;Rfb*~~pAYmw4Ypx}&x7BJpK$$n!MPW}Gb;b_{y}em{fLhT&&PVW zZepwcloc;M{riwdNboa`6Wbj2=b&f#d$eF| zCi;BhZ6MzP7~VpbA-TwKq^feWjU!(wehrAdlALc5^BFA9X!i+m;@N)9zF6|L!#;(WB+&b%@(8;Y?WzKgY8GeDuTWW*2Qdl5qAMTSx9B}U8aAp)7FC+S@hFW z{Dz_LMc;xfL0TY1k@w&WV%r&?@^EbA^((|1Kpq!zoLc*m;~usm)D%l!C6FTz-mA15 zhkrS0n2GOIwr7d)6x(Fl_#+FkjX_uy+VwhZ4zqtA^*zV-i1w$kRU~dWzpsx#F3`3h z{N33&L(~yElOQbeZgSNZbUl6uGVE&Tr z9AdYE>oon*pZ#~(zJdJ$xrVc^3QR*d245n5d0*^gTc2(HUewNY@q4b7;e)vkL@FZ3 zk+MU$P9WLnHQ7#KyW5xVymI+-Ycb~rG4>bY`sw0xtoZ#;iad|G`AOL!>5oRw-1&at z%*Ss}7#DH*h0p5ejdwkW|M^MvX%DWPoL1ra50`WH^)K|icJSTw*NQxvbLvTf=XY~* z7ToO|^`hdb!zb<@dGX!nVgH?InSP+!)8>!%<;;CC_rIJY>%J+wq}0=2Cf>XI@2^kS zUAU5S>{7pv-fevNK;EQvXCGhO@%Z3`XRqHs`P;WI)?ZyX;@-N=lMl4J@nT^0XIYU}8$v0Ogw0qj@1v)A>!bfM(EoU>D}*SLH7(zf&;r|du8<9_L>XS=p9m~;H$y#DD= z3%@A;JnY4dbw90ZKJwJ2ZhQ0m4sYH5^U;Ml2PYgleYm{Wv#uq+sWE)f)Tfuzf7w=L z#_goZwYIN&W6RUnqleSiroHf-_9*L7*{3;=4?ezi`1-`Q6>}PW^`iIR_lGAvIhlC) zjU_qHr~e!O%II}9{_4N5;FRuzTbyllbJIUtXT0dK^p~4^x|E$ZeBV!B=X*3UTCuEjuc41Vn?LfQ$Mf_)zaH?upLHjGe5GMeHwEQf zJ$vGEPR(0$rWV-!IPCSOqu#$gp!$DLXIu^Yd~2geFIG+~@J;UtC!(h=UHka_`GLo> zR)2nM;r-hYlfJ#xW4~=v;!Binb0{yT=C9pDpWfW*^E`e{@-x4l z%gY9Cz4s{W&SxWky>w^Y-Lv(-TQX@%%CT0vXQk)=x9Dq!%RP^OcI3&ZI{VhlDgQ9) z{J>rJ3w-**=fZF&&Z^Ui zj~-BcFPuk6co{?4z=` z;(twyKmAtx<-`8J=KWWG+-fi0nyyjRJ-AwMf9GoA{ti}p0cO(E*e~h6ywY_{`Z8C2 z_p=Ssm%D1X|IU)W!j-Pcvl{cMZ$D&*BYko2!yE!^L;NWV@T-E&E=Kx_T&Dt#zyx?W0u z8-Cs6NDm_BTI2a09(`{pdtqwVeW~4%Ab)9Px6zkWNH-J81feWP?wGUNz4eTGV(N-g?MMtU51^;^31#<1z$Q@ST?FB?NY7&Hz@_DbZ^ zb4${z(hvIXO}Y;w$2G=7`eyR#`E2R_GyQ$ld18pF&u|M_j$4x zB$uA6k$#N2svC0~eDu4H?D=7P-*~#hGu+|_5?{|)$R{81_3XLyFxd1Rk@QwD>-%-- zqhRx{;pDBr`J-p3Wba2_Js&AOl$g4Il0FEw4i>Wrdpa3g8f^MKUOpShtM4|YC&T%* z<=R57FO0c2%=#WjKC|G_-vrWqm?1&mpGwb1UcYx7eJwl*7PA{MEs9S!HZB(e*v6d_2jkdwJ=Z z)TrmFq@N|`SH=(ogZ_S#-HW`DJcBR28=Q@dtt4#vok8{l@+MiFBgD~n2r{v!gHvQHiJqQNw)*~Ax;LEqtya1xx%8~5^!&W5cx>3M z^V0o%pzPCN_{#We!#v0M%W&NFd#QZ<$*X6Lr3aE%e=A6zPwn-M`6Zb38@24k$))GR zrDwrLcr1J$KrI^QD0={G%Pdz}a_QL%*~`#Z`aWH{7q#e_Kk4to`G&=8Pt0q^oCR}~ z#S9^4X`JOR(chTbrogG^Xr&i`q^mJ^f?3ZK%KicIHBL)`cr|jIyU88uK8%BA;d&=Ow)%@t+!hUr#<~jWYnw4aTz@o`c2^ z4uhWQQQL5;(QjhXler6UKf{imL41uplHCs;Jx?P&08WiDlU|R!yDk2E#Mf^Xvink3 zIM1U??+?#(tEE4+=r zc$&a-!D^g9jT+yswjRXSZzhhJmwq&I?RtHta~O#OxW> z3x56HB;5~AJ*y#IGt#s)o@{tDu1xk=7&OLEdNbJ8qezcO^!uRn2-@anNfhbrIWBsJ zT6$d=^!tVMm&v8)c%N;a}WmA`)^N@c*7B1PsX6X3y0RzIR?n+RuTD0NMUl@4eDpnt?8RNhTs@7yAN=}mSoT@u z(wIHzUgXkmYSIT#i^lj%PeGE5vnsjte7x*k;n(xg(o4gp@6n}4kW0@&OV3YCefKQA zEV*`B|4gNSQi&rwj+>#I)0oNsKQu<3g&`FsGgo+*&tid-6FBt3|_G;UaW9b)RaBIzmgp`H(u9)`c3 z(U2Yp&#%Ta0-mp|#-h|%*Z5ZwN#h>m-wZZAk0m{t_?wI^7&iSbD|>sGUoxJl@KoYJ z$R3Vp+@HVqYfpLaFSIpQvVAEJ|`4q)p+nBd^AGN{@hZt+6$QO}`7v z-T{WkR@ZRq8f83F;Avz$!T9O9O!-%##)DQ%Eo#wkC$cBQpz)>B1IVTCV5RqkSz~Xd z`@)=Sob}<|}gCRWL@t+8T#*oO~1WwIwA-y=FahuXh(YAoa3?}CH#uEgOp0||G z066u#k@N}lgPyaI9t5Yx07#FAQ@>$L?+?Rbt9?4P>pNZ9XTY!LSERQfug17YZwy-r zV;&E)=1q~kAac`q&QXEJA(9zFXg{XLj9hFy9F%o?xY_*8I@ zuaVw}ym^+(hu8WpS@xIV9BeV;h^gljWG_Ws8V@SHGI^gGn;(6p@$<6RB3Gu>GL~94 z8&9x~wYANpt;S%>-=A7EoR@X>D~(#yl9`EsNOB6==B`s=W1Y@zhRAm6k)N<*bUcZCN9!Y$S-bWTC;Z&e8_0j`i)A#SvQ^@tb@dWXDp4B*x z8eiBk&Ec5p**5vd6Tha_Qj=QrTdQL)=KdW@dK#R1KHQ04$36aBIz8g*Z2Y_7*Yh8; zPl12Eu_fWP!59X@pfSbrsRn;s zHMU`}B^W~j`<7ZQ>*?FJ#ykmTJ^Q1!V`0-cJn19oTm2R1VTdp-);gJ6DU4AWrHJRiK3Tp8S7>Df>D_z_d{kx6Gg zYxlGA(%+;O{hld38_pxfA4;~P#{3t|8VjzN)A`$9&+^H?43cLtn{Zq-=2Z4jm^Bto zdK}CtR&Oop4NGux4TUo%!STrlzn37VG-iL8zcrrD@Mv7M7)HPlZ*c|@=e%)N z=Nw*UalDA5xwjNE8PRX&()p#(Jnw9vDCvgfBRJ=ZC=Y}hs$LnsUyQ!IOH>;)`N0&)H}=4vocHqJ!+Zd<)EF!VFF z6xgaKIQ*li_g!Kt?-I_L^aO{Y1U$bQ^G=vGHp5QOW8w7a;^>9QwIspOOTwvVq~tRdpK8WA5>AZ?lieRqJ!>g_ zGCY?pejzM+enj?E`bYD!Nsl4Eonakl^@_gg?go^W(4QyX2n+LrfRP zX90C-eh=CGsa?;+OZTBh%_$+hHf^^hIC_j~G5&D)HReq|`it#T@Eq;08XVO;n?xJ3eBanXp@ikUT`ab$c&jd+NrXLm>=OEsXO^yFm_%;8Ad?Ml0 zb9d6q5MN`xr5}V-bJ9tVhclTkAf*@P|BDHZUIb=6k1Tsrm@gzad6&bivD31bBfiE$ zNcVzMW6h*5hV!=sM=wPjJsTtYT$nc-Par&R8UJJY`F4Wi^D6OsTP?3pOJCzG2iQTC$b(wIo;ji4xKoU7qnVr}cuHX+gR;ad;) zToUq6gXf&p@*lNm-VWK5;n6ek(u>2d`5~q2H~%%pIUi0v&m{X&cr>nFdKuc5HHI}X zXuO~7dtlR?NzzNhqxm7F7vX=+B_X{zJXI1MU2~Q{Ft&eT(|85>l%U@<21I%ja_RYf z>7044-Nv>QHjUkvy(&JMvr>8#|2HzWWnwe_CGcz9g?u8YSmOhvClgciHAsIQHqA>Z zy($cvM@)J!oEm2o|S#1Uij9l)Vx4=2`qu;%hzu*{j2L(wLXQtT8pRH^)Dp z?v;bKB8XDl_39W)HTAGSHi5Z7P1$G zd6TvEqOIl(m0fFO>seyyZHce>Hl)vjv#-T0NKDNcDtkFv+_QdLOus#}wh6S=*jM?? zgFoHa`f_cYo#@yjs8M5)X3gIvJ&5C?Ik}|!QJ3bjar7GQ`QD^Q)Alv< zDTGgNYa0lI#)inJ7o3S!iw|dq#%9Z27iP_8<@oS>nenfnt>%)IJ(&MBmyh&V`d`mH zN`Hg8)>~elGv>w~W#H7fDe1+Csc|#Xvtjty z;)knm?fAaV@zp%z@`->=^UX+~NG%$ZF1;=NmT0+RuxNe}*=rEzim|<>KD1oj$)$OI zp7yx<>20W^9XK(^x+Fv?iwJ){#CQ9*v`tUJ~ZrcI;yCziu%b5t9!|w@(q6 z^$fE7Yr;9+ViqRmVdL?K=Pzp;NL$TCEdNOU*W3Wo>r;#7yOQ^^#m^yrF=ML;+gghmN6hQiZ^76#CSGk1QlsWklHQqIntw}r zJn{8Bxb)I+YOYJ^fz+b82c`SMqdA?Whw{J1Tu7e?!v;IP<2k+>izRz5obMQq4?Opc zCqF!z7fe1wX{)iN((A&IZnd<>XN@r*g88N~Z-Kd?u?4`U=d0CrI?SHwP8=U%YEEj| z{rF#F)}(iX=M&@cgGY0{$zFiG?JaLj@@ftr*(+h!{MOQa`CoI#O3$RlDT|Xr9E~TJ zJsuv-yC8iU%$hSw`dFAXMosz*T5Aq|>E8UW=h&rphF^1^NlzkglI7}0t_#+;qv%`B z?I@oBjzvnk(>4-j%{?l6Bn-1G*K~3Xx4JU$(L7-CNrgxARY>m!r{)Hb9z`yV{g9rI z_!^raJrK5|#vFpBuW=^Asd)qB6Ukke#sNzYr){qB6ylY}7s}odo|?uS2T!`??M~h~ z#+ixzsnt7%dNmiB+E#$sqno3bBA4bdk=+;mpNuUWi^fvO9t5-I0hV5a_?ll%dIHR? zjiCU!G=@<29N09bM|uqWn&(q`2XbjHSm{30qA^L*OA~XQF;^o_1LG`1HjPb`&op9c zK6L3p{IBQ!rO$#b(c-rve&9Eb&jD)DSY`P%fOD{M#u8ui)yW80sODI6J#$=e2qhuo<<9e@sS?Mo}R{>3G)%Fr5L$1)<8as;mk3HQ0$sdRQ4d+ zYF-iP(_z;5C+RKVsngAAJC0YH16Ou$m@|xLAUv9bO7@X3YkZ~j)v##}FzLmK<1x|E zJ$dztF+{+iu^RFjsN-ufYYNZE{$WBJruUR#t?f4tXcp@tVN#(j3~d#}G&3I;8KTmIqc#FtuooI@#yJrm=9=rwX|=|B!SaGC#GLrD?5kw6brauI|R*2g6y56G9w~n~~20-- zFFu-UP4>#f`PA6f!xo?H_*bE=<`9uj2^dycy<@3YV~%AXMPAK|F5R1$nr~OS4}CSy zm>0oZ)@t;nMvdQ-PdRG8VVq&)(pVkYUxQQgh)6Gv&s2*aM*MhV_J#R@wT-5&=7f=d zFq|4YEPX3%nwMRAC~fOnUCr^oVf98(ujZhZPdNWH&yMs>FneS;da%xi42LZrZ8d+X zCq9d~kJbFc^7nvLW1yrDhF^2TOAo|TWA&u-4s_3t%!S734QFACA4YtQXH%R~ zFl){z>7}V%^YTeAPfU#=lAfP97maxi%vY?gW>9DjNcjwfNAn}Af2Pwv8V@e}8!&6` z8R@0*uaNOSy`Xzeec63zRoU8(psmKH$=(&VDOOiY>eBqSvKQh`@PY9Rf=Bai$sP{B z=DC%g4}Q&UFFls{#f`Hzoaq^ky*~Y*HE`t90=9Y?4u3Wbnp;5js_<(be(4d!(OkIF zqlmBh#H9zZM`QD(H-=er2RZ&l+;eeDFTy*iZH8lyB(LTdDD%*6#O3;TNT(sx;uG?Qi0~)R!nbVYCdu4LFC~=1rF#LcN-UTzU-gS6JQ<@+KJ1V0bhygM6yPsrfIZ z?}J}+a!DUejiWLgy)d~(WjML+!K3+E2``ADTFz_T;M(UW1&m{i%DQlsXslb%fN8b2=G2e#oB=WXJw zvs?$rrMbA|69&%<)colW*t*KG-)~anmc#dT_dNp2Y46p1- z@MsP#>4k`|xp|~#P*+Wh8AZ&Q#`YF$8rv_Q+5B~-dETVIOf9D~9K8(jHJ`EUVdRZ1 z>geHOwz}3(*Y_C?!vpxeS2#Yc$g8=K)V4Z2EsP-&hULbv0|w2HET0(SU$VUM8mc5s}Q+vWjOx-z^3_%)wVLsnoHgbJ)HAU z^P$Ne4yV>fkRC~my)900;uJBS3h>;^aC{2Fsks&8KN>cTVV2$iHqFB)eJpHR>p*%4 zarRoS9^`6Z%$;D?L+bL`qdv@Z{A&?k^J2?hn7oIq-`=I)G)IN(^~tMsAEXDseAjB+ zK#iK4T6TXbJz;qR$g6SIvNxo4hQ;UG9QS;EvcC>@~KJ8_l%(+4C%)IEBu<5Lq20* zxM?+RqsE4rjy;sUz7f^pXIQfn3J=ioCf_yyT(OMwVBVf>cCDO;irg^!fHzmI2UzhF+ zLz3n4Cs$jmaW*v$&UAblz@{})xYiw|JI3FgSxg@OfO<;9u>8n0kh`3l0F1B&4n(#4s2SNQo0B6b2A-15YEqy zGY(G8r68ZG^hvsLz5}P`XOq1)ximM5n2*3b$2dQOQ|pe%r!#pqZ;SMo;nAFK((BOn zC#$6fwP@Z|*^9GBYn@2<#HT3nr57U0Wn=S(P4g|t-T}6CmiJ5YYMvX}+moxCF?5AN z^PtNx&7mW`Cp`O%^8}owEtfyJG>5!=I>PpGrlb3jOY>jIUW^(wFS+!h#1Bky zbRUSchK=l@#F=i#XdA~!YbVGaP8`i~BYhxt=S_zo_>4B*ml8o!I_AI=Yrvo)NW&r|;S zV9>e@(nE-&`9!2QgHvk@Nsom=^V&*(jk>(+IzA_cHRwalQzCsb z@k91FKI!bydP}kwCYR>M70+~dG|#K-Md8$($1%}jyLrlGlpU?Xs#65*AaiEF&Bq<6@9CI$fh4=8s}m-HJ6k8 z8xvpaTS*TiPIQ(NXAKORZ%g*+@Mjsr1sLA6<5h?|P_4}%pUv=SjY8=)sa^BpN>3!d z)=QG^MSR~gj^2-YwWh4>f$%)EK2c?wGe-7B)Kc1b*21HC-<&vgU7i7s?t#C1{UZD` z$*VPj<&y^6@0K@?yyJ}j8T{3ZtsiXtjK4qp56nLw{wFL>FmZMnXLC3;Z?ocm2!FIO z#KNF;lw{9<;f8T8r{6T6kL*3DD!K1nBq!%Es<`kA*mKwh>{-N+|ZZ6p?!P(W~uO$8^V|WgO=IEDC zVRC66AnDWK*PLF`tI$?+VM?z@{H4Z|3y6PePt<@ymlbBk+MS26+ zwC;fPc=BovIO(s#sWo?`7lAFx;&>D1Yh(Bt2Ce-hA1`8RJ!9!{5G^#G{qXd*_|e4I zyixM03v;5ytW3;LjmH-r%?&6YMp(J$pOzjAMbTnT+cKO3xz;D49N(+PSpd#!#`Y;} z(Qi0$O2V_jc#goMd4UzPDlxSVxby%RwC;uUI5;)umGs(hYCdb}3HU#>T(!xix&LJE z3a8d{k-h|et@kLsA~9 z^a|9Qoc%w05%-#QvU|a%^#!DFr*^GpCOwY$!;JHHI5lsg>=E#2jeF^3sU_L$?XYXk ze%ZbGr}dSjZ=@f}XFGZlbse&{F|^fsYVwI9m*yXpo=GiQLr=O7Y!$MdyeEjS^(bU- z3a8fKk?v0}%_}E;3N`Muewau<)XsK%ijY@pUCSqkm~$*Ica84#`()?S0=pCEH|jlY zoT+fu&35d^V9=UA@@M83_k60-tH9hW+p%YoOY23*{;JL;%Tnco;?C>X7aDd;-r}W4;cv<_K3?f8uLhBIzM;ZZd}I zFm%s$?4EFH?o;_pgTJXUw}JUJV~c@J^VG@bFg*RU9sN`CUNpA0ust$1zM*z~V7ZtL z&o#_)d67$VW-Crvcs?@bn=o&-TrwGD=?uEh@}epGQMPJNEc0*mt! zaWvPV{6~{l>%2*?1%FSAlSrI6%f(;d?zKpZ;L-X!(#ycJA=}ZT;V)}(N)tzO z%gZN_yjtrF?o-)UQywr?79rp{Z7lR}){ z#_12I=Al%s32=U5oDJb@ZSkXtA5h=%*-MQzjQ>^mI~a2s%v%3Kaf*@ml*Q>q9Ia0$ z`^zwE-b?A@$@Qc86vn5p#ownswD?7d-`5zzVbI*nYFia%t)U~mGj*-7W0a4xMr&=$ z9!EbEH=ca(gza_wyFAJswWY(<(g@o)qJZh4XQ?)3z3D8O9I_ z!z_zmjuu}Vj|V(^jo%;sW|nI|xiojT;(Ng6+tbk-5YxA(lUKj`YJEugV4X-c1HZ5R170?HL;ahN^Cy>5`~In;aA*!*GB9Hp|)rbewvAiXvWn=Kc! zKDn}t`6HOM&Z2wLua@(6P5fiV1GZPRG0^_&&6BMjq>{{Z}bjDHpU zniEw%?~wN$;|zgwhOza9O>>RQrw+^~tWQeOCl4)GF>)0*w*7e3F}8xR)iZ{QFla3= z#fgIRjMdeMy1uiR`H1<7abAK`^R&u;Cu~{|Q+jupml|6i*tGtb>_uVFy7JO}$$Q*t z38NORStWZR@@npK>7A)XbHPe~m-wA~I`(34*0)*;Qp@kg76#j&#@rC*t;SG}sM(gc zF?qKe{}uR`8gl^5KO0X3JT;BS4<5}yD~8=Lgx+-+(qSuMbp=z`2xDsto7N(ee_`0P z#*FmdFnE@5^a^k`vG}pXA8%|;VVh)e1`y|t@w9+PbKxq^E*P{Psq{`Te`dAZrWXGa zj!y$>54T)p$ko|$MUzYG1F3C(c(jh1qjRoWT_dPVYthJF4F=6cEPWVx<1A(@F<&+2 z8Zfu8ekemf1gvt}hQpj>JVoKTXq@NZTxs!Rh_ChJ6h8^e0d)+Ac}C zt97KL`;zyPu_eLweox0Pd+K|)UbNnQExqqnL)_*xDOIDhyh)OZE_=YOOr! z1*og8)xL<@wLX#TQ;4s%52Vwx?zyU^_kr#Eo{qgPakLhf?D2RNXyEXlqLw~ZuOIbl z4M6!Y3e@$p)sjIi7c5R7aYFVvKKWqQT7L46gRO+|jDTmh@ic{}i!qOc`G&NMONv7>x<8KAO){~Jv zgA9X>ryD$4dr|fT7%o~Zy{JWNAjm!e{*qR2U+UFd;Ij8t-x^yAY@WRw|H{NaY%wE< z8PLn|uLVPEyvWy$@j)n7M?`oX%5dXX7|Fbb+**DI}FK|t0lQk7-vy92N?ey_}3Wc z0ywo6o!WZCqdCE)Z-YT=OiM2ezt&ikUK>uW_a;3*@jo`s&TwiyO4%ccGu?Q4z@s%W zWlz#EGM>5coU~(|M2q)~XA(S`$6WqvV3=jhk6^B0wYR2rt)VTSVAwRTxb)%h{9rKy ziK(?HWlw-vYXC}5hV4gVt`4)-yOTYNwpv?5`f%7*82>T&TU*{X&VB*g*wu-Q69Vgj;CC(bFp9<^%bQrhgoy8OW#gE_}+7T zy2GY5pJe}onEfqIcjEkFY`tLn$NHff{cz9ftxUcBtd`o;@}BX$fJf_ZD`p#*pIF-v z+NK#>Dr}lRUOrpkIb;m`VVGzP?P2gO>BOl*Tdn&d|3sLzmZS9D)HTHz`1EqMv3}E) z{#|2e4TIKFb=sD4g<8y_#0)9vFuV)%7smf5`hQk?S!&lD_iFnloZT(H2l4Y;oC3tr zTAT723Xj&QlirP5w8o9}d@vs|o@98IS&hx9v6Zn!(kIKUmPR@!Ems=3G!MVxtcBsa zah`>9qs8Hu9#;>G6GEK0)lS}e@N4Z&wOs(4*3y&S1vahmBR!J%TF*y1PX@c!P?z2c z&dOG!FJ6_cuXd7mmvJ_LQ|mIyzW@wc<57AM7_@$n^l0L5GKQTncs6wGIWUwn&Z%%} z{dW1cB(HZvr{15)b;RNiCaTsNkk3~7p^dTC;)>G7*xtckYw*aYF|~wQt`+3cx@5BZ zz;nv@dHT@3Myl+?VAFc>(%Zo>*J=r+mT!&08;1NAb0;wy8~Sd#(##qdB*Soy4EaJ zOdrl}t+gus9e6S<@1Nw=nxwLOlk2qQ@+Q}4W6p(HYZ%EV3%2v-AA)~X<0%V|)<%_& zFS)d)tMqrtb=Ca&Mbov$*mlA8k})iX;fCe)B5zc0=ltPGIM+O57y&~MtMNP9{%HLl zOaE&PD&^wWGWWW&(%&ZU+r|?q9%G1rA*HwDUz1Pi_QvlC|60rCMXsmD;|b4RW8O_( zty!!1JBaTY;^<|GS;1m5+T6Y7lYDx>Gs$Y4MU6*{CkmbkR?BH(KDJt7s7331scir; zwZ5|SBIL@nKB+^Wd}DD!i4(&b)bjDs@v>T?sO5|?zfb&EjA0oJA6t!usIjpzH-uU1 zUnveV(z-mSJGwVKNyfuf-gU|HhLAVZdrfI2e+QArOXP)<5Y~u*Z15!C&i}DNYbP zH!UwuDY@6Bl0B7NqpcsR(hph-TK3lP95jYEV0hE`E5YxT>iGD<;G637|J&r!df=XF z%ku;6t(GL>=UV(s;%hBo#rL9Zo#~EVTKtx`1$nrwkb<9r3qrWU^-@rzjA81nWtwjkKzjo*j+1g-m}nDfb%YdkICxokY=;kj;k zejkO{4>Tg2A;Q!vl*PXEzUl?npxf&;>)|r-1Fw6@qZxsFGx!foj4|eLm^WFjIC7;~UB{?vwDpxQeWkUJ6{n1tjWZBVtqUl78g<>Xyz%7y%<_hk z_pvdzg!zg2=&!L6#-9!U9%G1xVV_raL|%^y2HrP#gxWf2KI)h@*As z6=w*{DSe!CuQdHR%<4^}-r>giADmjVQ2v9+d&uG>5XUdnX&Vl6KV$9y^F3qmf#JBZ zg~7Jdc=F&$Hioq@oUnddM=q`Hr(7+lYp(IEgr}}?da>uZ#Sb8U{!ra7^V}vpzZvI5 zIJKU;;_%dhtC_`YO3cZ|*$2+07C({r306x4wfN6)+J+Lph217-gRVLs!e&guGfuUiLtEdRR<;5p?}!{dp&Sj_WPs*#(c*5LR86v1@%@ zwe=_01!LezW!FE}_B1~KT6|C9*RfhcsHL5;MZu;uAQfjOYwIqq$-SGBfb^i^P~|Ha{c%s5|$^Q7f^om|C?VJQq+6Ii+8 z$Ti#I7bAWc@m2c~>N;uXVOc&6Mp`W~)N;-z*5a=x{y>ZAN6cE*pPqb^@rLnCfhX5$@u!x@#{50ZA6Wcm z#NTemE`VdS*YsiNS|?U)KCo$>X6a$Dl{fw+@HhMa;~3>SY%w#4*}^y%!TFc*?}2}r z@r1#%!#F3ydBXAzCvR9|Cs!(*VU3;hhhN29buDjY@{TaJcCc+UwgA|=l2@FA@%KF7 z#NjU@S5M>Q)5z7!*rvmF*ciINu*~|?m;OvLhM6$rS*{3jbu@;_Flb#~|R@VsXx@G;-i2j*i3?pDDV4UONtYmqskaxTBgv0Zx<>D6|*F|HV1oKSG zK~t1-G}7(-PUF4?gT;89;t`>rYe4=4*z0!zO-De$+g#V4I)>p#k^Bzj(eSO z@u!kY>-qeOrdU4P58=_`=rK+WOJ< zqVcqWC)b!WU@mSvr^!{z_>Sh_ z%Qcx?=ZvR3JZZVlAU|ev<>U$yiZ$G<0E5u1%_+ZHiWiO{hYkbVXkL99pJfT zaq`8GW3CAE-xf2Ln0<`1J)Cb_KlsxRg)LVSx$ar~SmM8D@vop? zv11X?o`k{kyc7$`N)t*G{H?3_DZC_aYC}NH`p33l?HReh%e`&M#a~DK4~=sIoLY}u{@(OethLQg z+aE0N$LNK^of`EQ)nCTe1-74zClsEh)^E)4;+kYUo!|+`bJ}{tnP~ANh`HK$j>1#Y z;%jy1P8KJaIA0m(SUA(HZ5O^PxMgg;>5~PPt24R&FrEN-3Rqr$@_IdV7+S&H%=%<6 zeX`9MYQr$V`hiuSU4x7v1O~06t^P@X?XkrVA^sI(D+b$BOVxz)Iw8pBFE$9gOM-_dd4ehm&96T$PP~2>h)rS0uTX8-F1D7cCdx(7AGre;xcEeTeUU&|zRE3s)a&+l01#t^fV#|02dY7tX1cH$Qpb zHJ(-YYmIc(TMUM_#ylV9^VU}>^wm1c8$#YRi`jsfqb(Pormp=KCzLqXjhT0m>x|Vh zoLVLr=PBL`hmBzw42z6y32e8mZEf0CZR#A~k{tI0t9K0bJ}|a4*ajMNJj`16U9}{` z@Z91=5$6@l`zd)hTdpW_{b6ibhz1!-@aG*w*0V5#g`}!7$G1T1s7Ijk64#|JUAm$5&CU>wi{y?;!~ZBoInMOGrWq zHFTu+jv*u=38a~XCcXD2MMP8-M2aXNsDK4g5s!$7D-pk{kB0;q_;rvK zBONz%VtPB|ymS)KxkJp|VfHL^YS^4y){AoqoIZule8t1?iSk-UUYq6R zi`QV~l1?uB#m1hQ6(-G0G&_r-CJf8PoDcKc;_-s#QEBE`T+>(#f8pi+vBS24TxyA@ zE<8V~R{Rpl`b0YJ=uA{zBgpG#F)v5wl-O#+HdH)O@N5-N6g+=OGZ@Vz@z;jGL^-CB zV`DKS!f-^K>D20|`1!?!^|g3X;fWD{1Nf(lZ7OUZif0ZyzF|&|HSqmOW9u=tjTq{{ zP$=eTm@~!D6o%7c=nKPPq!c|Wh^OXBo{bGy9m z$7`(g8=;@3`tXZT>s#p`Bp1)?j%GJ_S}4agtluD>k?{N^{Rs5?E3bI+nxK3m$@hSK zlkvSM<}#T7(%3qT{Y$iA{tk!$5e!Mti;LH%`1UUU4amMyS z|D=3-;d@d1ZQ-9UuU2@KNXHYMWa&quUnaI?u#FLeCk)->m5bLDjrC^icID39N~~7W zaYLs_V}lv{iFo|ssV~maaQ>_s4y1VhZvhFh7K@nQZCWt@{>64h4ZBH;;#tnb$Ny0RU)?W zuq}~qZF~=lKLh@4()6?IBmRZ(zb73pbmGJ_9-cgL2E*A$Yz8*(7aiuA@NAM-5?-^# zkPpKb(sVJvzP z{EHl(DDujZW(_po6i)y=Pm5tK4B68B49(T@orG^pkyG11>gI9YdHf;_--+2B=6dpq z!0V#)qtKru%~og*7Q;>$lBF4p=4mmsfMJ__i}5w#4*w+b`bL`JXvT?QBMdX7-x~dy zs(%jkZ-u@a@3Gr>k1dezTzpTeK4H`+DBQ_~D>YaL<=YM4&&5*!&mZzl#y3kjhLPjj zn#Z%Stq{X>7-Ge|i1q)JmnU8sVy*{sE%}Dv+go+;rVca3IR{R^#SU8?e18!4r zG{1K;zY8?KYnk8SVlIZcT%5zi6>R$guJswuB3yrwDl2y$O5{v+`3 zmF8*ASv?H830&b2QA +bjmDsw#)>~fQ zc&%41v&rRUc}3yn*Vn04eHadixgE^IG}fQ7#qv$Ucbj;8;2AB>*U`Kw-vE5Oi)RWv zG1C7D{ddG11M~Z0@P#2yUeS2XkykQa4f;CsHGu8pDe=$6>n(9U2j^&c^~CF#*lNOd zMf#!WM;~``jDu~uykha1F8+&Xri(KZ&U?gg2Mkxm%wCr@Ut?=A_H}s$;Ptd#yG#j9~UB2P?riecR{>joDjpjIc?ZV3|!r`w#=X>eY zdDSAX&*U`=uPoTyEX$h9`$fs*-OXe9aQ4e+#^x6Z1fr zdnjKYd%G3GCD_)9!4HN+d3ob?QThh`AsXw=*oMk$8e^}EnQvrTk@Ahlce!}@#(?#e zbllMSFZuq1vD@W)1K;<=nFnW%a`Yg_U8?PPYCB#GzA&^AXCR#S%WD8$Nn+p%GFF*% zg3!4k-?7yE8Tqcjw_KVTX!cNEQ(^mBJni8*A%@{F%vJvu^lvAxT6hIFx6d(hE}Qw< zFP@d~gf(}zfj;<-5VHr&Z;Rm<7|af5zTEJNL&u=QH(9Nhq_Yg2La|lBHc-BG@jWlL zaj?zPHouX-*&9eF6rILmh=F07YT`*vz7)gLFjR_-D~nmF8XL&ib7EKu!#Mdi!#7UM zi(uZXnzW)Ot>rZjulvN~56|G=oxHO7jaWzN`=I}u81}-jNDTfk{7b$o@LjIlE6M$c z_`~3@5>GljedId{U$1_ur{OrWyz1bUA?7+TUz7fF^yf(@5S?Oidczsk&zZYyYI|Ba zwkF3h(rkq0v&xY>vs%&eJw-0##Pc@Hz2zH(?{4KXo%NnCIh>7P*dT^P81|_S5!B&= z^7Y{iVTm*clH&q#u7b0XICJ4_EQSym&WJ4vwn{NKhxu#el1VOcV%P*jo;YXQb1EM8 zRIC%?@quTa7|y{zUz$D8+$^3=@SIYPQ|R-n_}%Sah>GoJ*e;80C2XsuLj|qpmVL89PIqW8vH=p7GS=yf{7K^qb_&T^n-TB7G0^Pf5Qf`!FGsocjC0_LTTr z!vDM2I>Pp*`uoAtRXiKv`ARw7O^%O>;Z+{*mRAs7d1Af@bAr4)@!BZ<5%B*k=3tmV zlUHlJ4oUMUnn}u~Ex9}`{buMllBPGB5f_|X9)@|eIJd)jR(ah|UX#Uh7@l;E4Pfj` z(rk&QccfFd#rVD~hJW&Sj<&I}Y-3M|zd!toq#1x_vKXeoa6`E?A(zO=|EaT|RVKF1 zuze}E0NBpSt0VK+P5HJX-$e1;1;aowyTSaL7@EQmveeOc!)vQ}{NcGI&FzfM65Cy{ zEfPar82%K)NEoiD4gu6*oV-Ht8ZVyq@SK-#4}0#^zXkn&mDd%#hRBPnC|Xa6XB9kK zZ><>e)p(mNB-QY8Alt;Fad&6@~sx@r1z>|A(`F49tOP&U}5v*i-U)9kHc|dHLg&BOb1rZJn2X5c-8;o`7!~@f@^y9(CBF z(LW{4^=NKU4c+;r-9ys%MSrQ-Ho(?Yxm2(XOqH(}zTc}>BdFD0>4c(_DSm$aYyBj) z)v)y!j|V(Y$}1YLi{i<*dE~nu-z@o7;#*4H?ES6*e2y=FMQ_`Oaz43FZKFU_WC#*6J8*v?DeAN`Z!ya&z$$|ZEt!}9lKyJ+*T}aczP+Wt68#LZ`NDQw`i9Slz+$Iv zk>s*PW5XExy86VxFi+cj6u&YFDt5MqU^ownEfu!Q|9&0$TchO5w+gIB#Jm9Jo8nvx z=hv!333aF`1_Q$#;>?0`uXxhnNmQR;`g|g`2-p(E;|0$_dF?~UfanlTRfrgydupIG#{5v0y+UT9DS~I$z!KJOJHa#%}_L7 z6Wc=Sut0M+in(hmeqZ>L#5oAgx8zj=uVvyag!8i4?t-nm^lPAhOg!Q6Oc8TynBSA{ zTkzBpryHDoH8z5=-pd^R9@O)^eEsaYX?+9MUy{xs_&bX85S(Y^TNmFiHMTxuo5{-) zud(t9$Lmk=kAnYE<@E}AJ)oN8Q1n(xZDKE7%4ZGi7M z<>Esw@zRe#f1emaU}!6yEOZtsmwDu}i28W(d6dfM(N-~Rf?HT+mS-tg2H z!?)yKCY?6uoEF2AFx(~I0(_T<=NWj8D0kkKtSjR8fj>o>yU@H-48br=lYSTUW5w?W ze{0oh47GYy{PW?TtNxz!pDP9nhF|2xoo}osm6tDhT@dqrnA?iscNj{<5D&vLX{Mt2 zr|RHI9ac*}3H|0`+W_19$}x@{UzArPyn0K&5BfV)lN!|IsuZ3KfV{0 zV;(t%lsNO~PcGZUaD?^GN;3-071HrWr>EF*VEayN4PdKf}llx(f?atU6;w**d0Wo;Na9V6NVY^d2>}^=?QI38rJk#WR z0N-?Zh2S++bDhUrpO9Avyb{C~4%?IR3c>4Bd6na}NSYVWJS*l@nE%qeBrq@0V(@~Y zN^G96y(6!tc*RCJugwMIl_B3Sd^bqH9r_p4KbHO{#nTX;;N?z^b?~|_wrJQI$u|t& z?b11h&Pp*n07JIw;7c8%r4x$IxALlmS5NUo!t<_t>*L#2%!M!q{OK^n;Co2*>`FcV zP)&Bw=V>uChhdu-*1^zCoW=ZJdyKpy@cK$#L3nv&IQnhjX(7%qI1}W%65k;8sY#zV zcABg=WBG4znk|^`)7CX0htFoX7X8{vOmnN&4yNFO=^>d`E~m8Rk!wR|I)oQk}a{ z=RxXohW*>K$|aaw(xjP*=G|gDN}cZ(!wML_m!>D0abgaIxv%o#N^MrA_;)dnhr}EP z^AhQ-L}#m*Lt*|?Y#b@Gno854c|~l2u=NmIJZxs5Q>z6qtPy7vz2=->hqe|LSfr4p55>SN&h4Chsn1Az7NRD7q6&+&b;@4c?bIT{94Sf^@_t5 z1apoUM&a8_dAX6-Jz{7GLv4Beh1W;oaf4@$a)~3C{o+rdo(IG*oa5~$#T)|jL(=5a z%W5LcS!hO!XB9lDV(t#}46z+TbEa~PA;*uTIS|d((kVgbq;SLVe;)OFE6}&S2+3BgukAAN1^|jyux^mydfR#Qe$PwcNe~m z#g@V^$RCz(D84JiQvgqt^gYq{{>$-7f}yp>K1H9_@=e9J5H|ZYd$rvXD?wv>G4^9I zB*O5k*mlx?sCd%gIjnkiqn=GPwl!lbm2Uv~J|ebG_#P4SNSMEpejxgN#kQH(vUdxI zIg$BlDb2=c)>bad$;H2gGha`@b4r?P(JT>LZ`gj9egOJ!ij!Z3S&`C@K>t~>Ere~n z7$)&}o%sFXuO+Yd@ru{jc8pCI&sKOo5kpTH{C7G0{`k%lPbEC3<>ifjW9hU<=S#75 zf^Di8Jb5il(;Ow^`>1$4;YrijWSc>3pU@{xzCQSFl5Z8h?bY9#{@2CX6wYDdkA#1T zd_C|zEUzHEE{VAg%uS{5fqr-S{(x^!>DNPlisq|5^L39jgU~!7%|JAL208Wl1BNHW z835-m@@j!snb-!xHcDPs@#-RmnlQvkXB;|lgPiRliyH2cZz8_?RKpI89jLLgJ+AGTJ~?}7ew@zjQA zmw5WYb3wHVr&fJc!#33LO?mN`u(e!c8!$FoJjTRX$E4F2oyWxRF%0gXJ2mVFTfQ_~ zqgk)aS?|u(*)K{z8vW~H2!Ua!n9J*D*J z^i$A(RW)&^CT+xEV3;TU^XN~K?^=AXYiwJ_hQ>I|fv{Z?Lj(-x_)%?Gx6@`}J~zIe96b4h)I=yO@Vr|`;FF3rj1QE5Jd z<{k1{ftR`IFjTg|ei#B;I`jSp`orWK zk8h}SJkhzXT-K4xNbxkH{~7syhwpOnguzoG&cSfLD6eF^;^lRXu^(!zFJlYkn}BZ{ zapu7Jx#~HDdM=V?3Yy`&og8PtvrWFS_@+t!2Kw*G*A3shrC$gA7RoDzyuKB~L>Tr- zrxrS!<+Td0j_Myk{}RczkOQcD9GX)cj@ncEQ*0q~n_aPofy!gJGihz2V;?oqFgT5?edi%H%r*-$mj~ zhVu(?)`4@hcqYOVE3fhP+)3XH{oT@Ug?_piCc*HLI2Xe?S6+4SYO7p&lS`KR|BL=* z@~XsZt9V+&b5_iE!hBO~!LT(KPb@t5NIwDn4^`VxuF(II*gC@YgLt^gs?}G%Z{piu zJbmH0PkH%~S7^CYTYtPxOQ$zFBQ(}BT+dc)9bxMto^J3gRxbCF%VFi>NiI9Y`6m6p z5ob7@yW|^%Z@%>3hOLemf?)9fm%}p({*m&^!|PdTW|8|B;;aE@rF4#c&;mO)A zwiB?O726TmJZd`nT*1UjlWz@ty=yw#UKY$VRI5JJ>PLBn;FT!0HLw+n&4TT;*rvm_ zOg#U9r-r;j@H#47J@Ork??Cx_;+rW= zZ!`lTYTtz2I`ro7fpx6RnyG!~p=x0lxJA_%& z#KzV3t++i-4PS(Ly}UZ%l_|}U)bN6Qx8XZcI?d2ID6a^6?!@x|JWJ&pjPFg=uq`#L z(%4AGt`S2940kBs5b{kI&l-68h+zZ_-;1FG3@7AU4`06_4*%=;?i2rB`0o=#5De$k zKZE`~q`w#aaqF-1TgcyQhcu5RhVDOK1>X`=rRr%J(cb53Q;IAi! z1Q_Pa_Xm7Ch^Hnz3)O!j{lmmi6NVeoOhWT5F$BQywiw#OP$kYM;5?#SHjs`gKltAg z&q#Q7NHZSIuf@<2hFq~Vg)Ls1J<;4C-~ITum8LJ6*TpazhN1H9gKsD0GJsqTE0;oY zX)MhsG;hjx623>plL$`_=|`ZyL%v@4ek=Yl@VAgoIy!!>o!Ztx$G^3+4HUvNU%50P zml4wRM{}gudcf9MI$h8?Er!!DOja(9$mKaP9Dt#=ygcygqp|*sO_1*Zd_R&-5;}f+ z9X9?#w(b>AJUkP{;{(rW=^sRYq%@nLSt-tbaIO?jQ+Qg)t216Rr4xhO0$v#)ZWLhe6FpKqvJ0YjadhjFgw zw7k;s>Ljn{@ERk{a5T5ew zCrzAZ;A|nyC^WB%tr2Xen`Or zhrCuwvpt&ch_gGKsp4!2=X+xChQYJKsi!w=y`>+G{wDEsg=e6=itxHm`UB7(qW+8M zzgP@AVYn=P5A^>Ke>(g-Gtxl1VOyrT-NA-Ne}i1}oF4e=u`5Szcav9Ti($*m9-c1O3P4n}Y9;(jSF>K&DgA z5ZDHbpS$>2C*|7@-{sP;jefLz`{8>|UJdYiQTk2LpCR9Jd<&!*h-O`RwZ?0p^5xeu z)p-A9vU|!f2&vY&v7l$%|iQTg}B23ePxcdZ4*V3}rBUE6#@Yd?}X} z)h zLVut%7oyo#UQ6*Bs$9mA%L3&RKrRR5I|APj>2yWsA?Zh;A3Dt09_o?fIk5%8X1(tC zHiaiw`t{JiNBW-VPY_Q&JpIKJ2hTp`)rY)JiJ=sRhVrV9*C8>~fgxO8oAGKQ&Pq7H z5RV@`-o~oe>V7(5N|t3+v}9T%T4P!hT2opxS}LtMEsd6ro_$?WA9VcS4xk0n zf@s0C5LzhB=8PorU5sk3TEymz=*yo|T-%*`7rOBsKlUlP+Y9%D=KjSrA6gM@0c|1e zFzspDQ?x@gclu_~LKwfQdc0ws{htTTljcRU>*+@fpas%`Xu-4)S|}}y=Oc;H#28vF zT622cVdbJ3Kuje15cjYhaR!Kc9{06;S@yvDJJuBt16j9>_ASd3SPtg#BeWpeeKecK zv-&^#S5X|NL9;&VyjbUjdJ>P5cbZwVZ|+^h-^}z2B!<%`g4UhqBUzqLtV#6bw=^wjhUQ1}przC1lJh)TO~%L4 z+-OUywK(^~dUyKNqOC?}4b7Y9HV_Rlm*&QEL9`I&=m^c?wGmnU`smNR*najl+nCmr z){K@y{p|V%&;n^ev|w5YEtFQ5HTGSd;K0WsHmvTS2zMg6*W>^8H;U~eHTLW5_P<+I zzLKn8)>b@oUC1n*ZY`+EBxjB_Ci1x_NEzGHOVR{iPab>FLS5`7U z#|7(x>|{?pB`dYRY%<2Afln?}GP~ z{KBH#;(QkhKBcV4m5-R}Zm#Y+IGtVoq<3~m3SHSDv3Fgvt8&KMskt;jdoZr_wfA6L z?DuyNs>|StuHEtP2v_eQxgujpq>H2rXt9QX%k+wUgxilfwJ^wDl-|6q{ z;JE@_-P2`h?GfHmn11&D-7Wi7@5{K*tNKIQg?`0lxjDtI*#7%7izpI@s>S#OU$ty%r%=~_3vdAiv7Ki@T+&+ZiaPq>7p3B!v@ z)6){V=8vCTkkF~PyfEiK|6u(8bo$?)9+Y34&yM1)RMgGUnUY^&{{d0`hv-=TZsqF^ z924Y@QD5Bj@;~_cfx6e@=S=H;q{ESqzpzhdRsWm7fv)a6I?g!*`$+G79Ae}vWY%Q{ z+DF{a`P+9Ov#eGe+D#{R<`3dX;vrui6Z7e3AEAGke)f^fo}SLp{6KWOvfP&E?W6cd zIczzKc%0`O5znAwpD}odzpcj+L+NK9@xSKboD~?xq31R%XTfD3>Ab=?`>enfmhGd_ zU&G1iBZ7ZXL=dfSXh>Mo@u^D;XXO}TYhrb+8PtyD52zDgOR+XF&OS1`pJiL~ zF?{T^A;B!$XEA27Y@Z?72CsegX&Pl}E|87^{?^Ga%&KKBr0tFLtAKox~67Bc3LgINhV@)Hjv|otV^UV#m@etxPVgm6z+jc5(7td#Dd4QJ3 z5k2rP*ZR4{(~Mh7j3#a)E=6`faU0{06E~xGmUxBuDe+U*UnM5k{=em$A*>G}UP3p4 z_yIbp#CLf*i#USi0mK{h8)q-GzMQy=7xG+UIqTOFuko7RMoi$nXg@K47wB=~R{Fh5 zyuoYm67dqt*N9cM9vG+xHr_!wW~XZ%fo2{b__*o2r+6UIg9BTS^JVWLd5i7_=z ztcf$VOl=cy5=1=gG=t1wGsFxv!_06q z!i+Sd%xE*lj5T+fY%|W}nDHjpIbx2Q zV{GBin-|QB=D2yuoG>q&SIn#CqN9z#c+fK2`blCi_AS`8-T!AFMI^TlO6-QrK^3&OS*x`xPzNS82uPy#1{x`>IFn z*;nXjW${VcnZ2W~>?L&PQ{MjGrG1@&KJ4-J>1t3UdA{p#~RO>?>uhwK7ns86k0{rL~9b~;Y+MiKH1CpMn;8IX;oR1ttr-2YnnCP zy4#vz&9r7&v#mMSTx*^+pKoL=v=;F_h$WnBUuG@0R#+>oRn}^2jkVTV$9EFeTN}9B z_$I!Iu$gZ^Y++AktMvfi1$fBXW>@}f=udnQv731O1TGJ*eL{W+7FJ!kLpn+X@2*=PRz7~Ya;@GBUS^~trO~kx*@sdhoB(T z3-v*VA-T>+&<{YbK)40eF=!Ba6$(MGL1Onh`V-I_&=7PIdJ}pJIt87E#4d*ZEc7SFEo|Su7;;3W#-ytVXxmnSs;XSYJ!N0~<;{-bJDWiVHv&`cYEfBC+OZ)twUI4(wI{{hgG*t^o^x;{BKvAmYar3;zdvV69! zl+#~awF_dzMgk;20wh2JBtQZrKmsH{0wh2JB+!-wMlPs_e?7g6#8$2?<7dz$KmyGZ z=-m2`j%4_l|7#v4&m;j7AOR8}0TLhq5+DH*AOR8}ftDq}{9nsn8U{uJdrlyTCw~_g z=H<~==KuDbHXV=v36KB@kN^pg011!)36KB@kig3!!2I9K;ZCn4&Oe%VY@{W$6WeziQ`y2DQw|PQ9V`#Fb+{)ON+hP^ zcwY6e3g0%Zv@XVqdVR+b{0&!?gbZNKTW7wrR(_*UcGw*ZMdp+JbJ|?hmYb}sV>b}j zc12pVj-@-U`&*{ZMgk;20wh2JBtQZrKmsH{0wh2JFPs4Le=i&<2PA>EA>ifzYQMck zp66u#kNLm0xt$p(36KB@kN^pg011!)36KB@kiZTEnE%@W40n^j0U+SL|G89h9;XXu z?V0RqBAZ`vih>0I^MB0$9e^(ar$_=MKmsH{0wh2JBtQZrKmz-m0P}zQ`~q`&Bv6My z1Zxhis12;Yn8ub>$FlYztiRas`h)W_RC)c!2v(U)!N08im{UcpgVJwwZZNucEk^f<5m&LK|b|F&L2 vQ)jhCuK(Eb_cQ|}0TLhq5+DH*AOR8}0TLhq64*|F`M>Q +# +# Kingpin-ized, July '99 by Ridah +# +# ELF only +# + +VERSION=1.21_ +VERSION_FN=$(VERSION)beta_glibc#$(GLIBC) +RPM_RELEASE=1 + +ifneq (,$(findstring libc6,$(shell if [ -e /lib/libc.so.6* ];then echo libc6;fi))) +GLIBC=-glibc +else +GLIBC= +endif + +ifneq (,$(findstring alpha,$(shell uname -m))) +ARCH=axp +RPMARCH=alpha +else +ARCH=i386 +RPMARCH=i386 +endif + +MOUNT_DIR=/disks/f/kingpin/source + +BUILD_DEBUG_DIR=debug$(ARCH)$(GLIBC) +BUILD_RELEASE_DIR=release$(ARCH)$(GLIBC) +CLIENT_DIR=$(MOUNT_DIR)/client +SERVER_DIR=$(MOUNT_DIR)/server +REF_GL_DIR=$(MOUNT_DIR)/ref_gl +COMMON_DIR=$(MOUNT_DIR)/qcommon +LINUX_DIR=$(MOUNT_DIR)/linux +GAME_DIR=$(MOUNT_DIR)/game +NULL_DIR=$(MOUNT_DIR)/null + +MESA_DIR=/usr/local/src/Mesa-3.1 + +#CC=i386-glibc20-linux-gcc +CC=gcc +CPP=g++ +BASE_CFLAGS=-Dstricmp=strcasecmp + +ifeq ($(ARCH),axp) +RELEASE_CFLAGS=$(BASE_CFLAGS) -ffast-math -funroll-loops \ + -fomit-frame-pointer -fexpensive-optimizations +else +RELEASE_CFLAGS=$(BASE_CFLAGS) -m486 -O6 -ffast-math -funroll-loops \ + -fomit-frame-pointer -fexpensive-optimizations -malign-loops=2 \ + -malign-jumps=2 -malign-functions=2 +endif + +DEBUG_CFLAGS=$(BASE_CFLAGS) -g +LDFLAGS=-ldl -lm +SVGALDFLAGS=-lvga -lm +XLDFLAGS=-L/usr/X11R6/lib -lX11 -lXext +XCFLAGS= + +GLLDFLAGS=-L/usr/X11R6/lib -L/usr/local/lib \ + -L$(MESA_DIR)/lib -lX11 -lXext -lvga -lm +GLXLDFLAGS=-L/usr/X11R6/lib -L/usr/local/lib \ + -L$(MESA_DIR)/lib -lX11 -lXext -lm +GLCFLAGS=-I$(MESA_DIR)/include -I/usr/include/glide + +SHLIBEXT=so + +SHLIBCFLAGS=-fPIC +SHLIBLDFLAGS=-shared + +# Enable the following line to enable the CD copy protection +DO_CC=$(CC) $(CFLAGS) -DCOPYPROTECT -o $@ -c $< +#DO_NORMAL_CC=$(CC) $(CFLAGS) -o $@ -c $< + +DO_DED_CC=$(CC) $(CFLAGS) -DDEDICATED_ONLY -o $@ -c $< +DO_O_CC=$(CC) $(CFLAGS) -O -o $@ -c $< +DO_SHLIB_CC=$(CC) $(CFLAGS) $(SHLIBCFLAGS) -o $@ -c $< +DO_SHLIB_O_CC=$(CC) $(CFLAGS) -O $(SHLIBCFLAGS) -o $@ -c $< +DO_GL_SHLIB_CC=$(CC) $(CFLAGS) $(SHLIBCFLAGS) $(GLCFLAGS) -o $@ -c $< +DO_GL_SHLIB_CPP=$(CPP) $(CFLAGS) $(SHLIBCFLAGS) $(GLCFLAGS) -o $@ -c $< +DO_GL_SHLIB_O_CC=$(CC) $(CFLAGS) -O $(SHLIBCFLAGS) $(GLCFLAGS) -o $@ -c $< +DO_AS=$(CC) $(CFLAGS) -DELF -x assembler-with-cpp -o $@ -c $< +DO_SHLIB_AS=$(CC) $(CFLAGS) $(SHLIBCFLAGS) -DELF -x assembler-with-cpp -o $@ -c $< + +############################################################################# +# SETUP AND BUILD +############################################################################# + +TARGETS=$(BUILDDIR)/kingpin \ + $(BUILDDIR)/game$(ARCH).$(SHLIBEXT) \ + $(BUILDDIR)/ref_gl.$(SHLIBEXT) \ + $(BUILDDIR)/ref_glx.$(SHLIBEXT) + +TARGETS_DED=$(BUILDDIR)/kpded \ + $(BUILDDIR)/game$(ARCH).$(SHLIBEXT) + +build_debug: + @-mkdir $(BUILD_DEBUG_DIR) \ + $(BUILD_DEBUG_DIR)/client \ + $(BUILD_DEBUG_DIR)/ded \ + $(BUILD_DEBUG_DIR)/ref_gl \ + $(BUILD_DEBUG_DIR)/game + $(MAKE) targets BUILDDIR=$(BUILD_DEBUG_DIR) CFLAGS="$(DEBUG_CFLAGS)" + +build_release: + @-mkdir $(BUILD_RELEASE_DIR) \ + $(BUILD_RELEASE_DIR)/client \ + $(BUILD_RELEASE_DIR)/ded \ + $(BUILD_RELEASE_DIR)/ref_gl \ + $(BUILD_RELEASE_DIR)/game + $(MAKE) targets BUILDDIR=$(BUILD_RELEASE_DIR) CFLAGS="$(RELEASE_CFLAGS)" + +build_release_ded: + @-mkdir $(BUILD_RELEASE_DIR) \ + $(BUILD_RELEASE_DIR)/ded \ + $(BUILD_RELEASE_DIR)/game + $(MAKE) targets_ded BUILDDIR=$(BUILD_RELEASE_DIR) CFLAGS="$(RELEASE_CFLAGS)" + +all: build_debug build_release build_releas_ded + +egcs egcs_release: + $(MAKE) build_release CC=egcs GLIBC=-glibc-egcs \ + RELEASE_CFLAGS="$(BASE_CFLAGS) -mpentium -O6 -ffast-math \ + -fomit-frame-pointer -fexpensive-optimizations" + +egcs_debug: + $(MAKE) build_debug CC=egcs GLIBC=-glibc-egcs \ + DEBUG_CFLAGS="$(BASE_CFLAGS) -g" + +targets: $(TARGETS) + +targets_ded: $(TARGETS_DED) + +############################################################################# +# CLIENT/SERVER +############################################################################# + +QUAKE2_OBJS = \ + $(BUILDDIR)/client/cl_cin.o \ + $(BUILDDIR)/client/cl_ents.o \ + $(BUILDDIR)/client/cl_fx.o \ + $(BUILDDIR)/client/cl_input.o \ + $(BUILDDIR)/client/cl_inv.o \ + $(BUILDDIR)/client/cl_main.o \ + $(BUILDDIR)/client/cl_parse.o \ + $(BUILDDIR)/client/cl_pred.o \ + $(BUILDDIR)/client/cl_tent.o \ + $(BUILDDIR)/client/cl_scrn.o \ + $(BUILDDIR)/client/cl_view.o \ + $(BUILDDIR)/client/console.o \ + $(BUILDDIR)/client/keys.o \ + $(BUILDDIR)/client/menu.o \ + $(BUILDDIR)/client/snd_dma.o \ + $(BUILDDIR)/client/snd_mem.o \ + $(BUILDDIR)/client/snd_mix.o \ + $(BUILDDIR)/client/qmenu.o \ + \ + $(BUILDDIR)/client/cmd.o \ + $(BUILDDIR)/client/cmodel.o \ + $(BUILDDIR)/client/common.o \ + $(BUILDDIR)/client/cvar.o \ + $(BUILDDIR)/client/files.o \ + $(BUILDDIR)/client/md4.o \ + $(BUILDDIR)/client/net_chan.o \ + \ + $(BUILDDIR)/client/sv_ccmds.o \ + $(BUILDDIR)/client/sv_ents.o \ + $(BUILDDIR)/client/sv_game.o \ + $(BUILDDIR)/client/sv_init.o \ + $(BUILDDIR)/client/sv_main.o \ + $(BUILDDIR)/client/sv_send.o \ + $(BUILDDIR)/client/sv_user.o \ + $(BUILDDIR)/client/sv_world.o \ + \ + $(BUILDDIR)/client/cd_linux.o \ + $(BUILDDIR)/client/q_shlinux.o \ + $(BUILDDIR)/client/vid_menu.o \ + $(BUILDDIR)/client/vid_so.o \ + $(BUILDDIR)/client/snd_linux.o \ + $(BUILDDIR)/client/sys_linux.o \ + $(BUILDDIR)/client/glob.o \ + $(BUILDDIR)/client/net_udp.o \ + \ + $(BUILDDIR)/client/q_shared.o \ + $(BUILDDIR)/client/pmove.o \ + \ + $(BUILDDIR)/client/goautil.o \ + $(BUILDDIR)/client/nonport.o \ + \ + $(BUILDDIR)/client/crc.o + +ifeq ($(ARCH),axp) +QUAKE2_AS_OBJS = #blank +else +QUAKE2_AS_OBJS = \ + $(BUILDDIR)/client/snd_mixa.o +endif + +$(BUILDDIR)/kingpin : $(QUAKE2_OBJS) $(QUAKE2_AS_OBJS) + $(CC) $(CFLAGS) -o $@ $(QUAKE2_OBJS) $(QUAKE2_AS_OBJS) $(LDFLAGS) + +$(BUILDDIR)/client/cl_cin.o : $(CLIENT_DIR)/cl_cin.c + $(DO_CC) + +$(BUILDDIR)/client/cl_ents.o : $(CLIENT_DIR)/cl_ents.c + $(DO_CC) + +$(BUILDDIR)/client/cl_fx.o : $(CLIENT_DIR)/cl_fx.c + $(DO_CC) + +$(BUILDDIR)/client/cl_input.o : $(CLIENT_DIR)/cl_input.c + $(DO_CC) + +$(BUILDDIR)/client/cl_inv.o : $(CLIENT_DIR)/cl_inv.c + $(DO_CC) + +$(BUILDDIR)/client/cl_main.o : $(CLIENT_DIR)/cl_main.c + $(DO_CC) + +$(BUILDDIR)/client/cl_parse.o : $(CLIENT_DIR)/cl_parse.c + $(DO_CC) + +$(BUILDDIR)/client/cl_pred.o : $(CLIENT_DIR)/cl_pred.c + $(DO_CC) + +$(BUILDDIR)/client/cl_tent.o : $(CLIENT_DIR)/cl_tent.c + $(DO_CC) + +$(BUILDDIR)/client/cl_scrn.o : $(CLIENT_DIR)/cl_scrn.c + $(DO_CC) + +$(BUILDDIR)/client/cl_view.o : $(CLIENT_DIR)/cl_view.c + $(DO_CC) + +$(BUILDDIR)/client/console.o : $(CLIENT_DIR)/console.c + $(DO_CC) + +$(BUILDDIR)/client/keys.o : $(CLIENT_DIR)/keys.c + $(DO_CC) + +$(BUILDDIR)/client/menu.o : $(CLIENT_DIR)/menu.c + $(DO_CC) + +$(BUILDDIR)/client/snd_dma.o : $(CLIENT_DIR)/snd_dma.c + $(DO_CC) + +$(BUILDDIR)/client/snd_mem.o : $(CLIENT_DIR)/snd_mem.c + $(DO_CC) + +$(BUILDDIR)/client/snd_mix.o : $(CLIENT_DIR)/snd_mix.c + $(DO_CC) + +$(BUILDDIR)/client/qmenu.o : $(CLIENT_DIR)/qmenu.c + $(DO_CC) + +$(BUILDDIR)/client/cmd.o : $(COMMON_DIR)/cmd.c + $(DO_CC) + +$(BUILDDIR)/client/cmodel.o : $(COMMON_DIR)/cmodel.c + $(DO_CC) + +$(BUILDDIR)/client/common.o : $(COMMON_DIR)/common.c + $(DO_CC) + +$(BUILDDIR)/client/crc.o : $(COMMON_DIR)/crc.c + $(DO_CC) + +$(BUILDDIR)/client/cvar.o : $(COMMON_DIR)/cvar.c + $(DO_CC) + +$(BUILDDIR)/client/files.o : $(COMMON_DIR)/files.c + $(DO_CC) + +$(BUILDDIR)/client/md4.o : $(COMMON_DIR)/md4.c + $(DO_CC) + +$(BUILDDIR)/client/net_chan.o : $(COMMON_DIR)/net_chan.c + $(DO_CC) + +$(BUILDDIR)/client/q_shared.o : $(GAME_DIR)/q_shared.c + $(CC) $(DEBUG_CFLAGS) -o $@ -c $< + +$(BUILDDIR)/client/pmove.o : $(COMMON_DIR)/pmove.c + $(DO_CC) + +$(BUILDDIR)/client/sv_ccmds.o : $(SERVER_DIR)/sv_ccmds.c + $(DO_CC) + +$(BUILDDIR)/client/sv_ents.o : $(SERVER_DIR)/sv_ents.c + $(DO_CC) + +$(BUILDDIR)/client/sv_game.o : $(SERVER_DIR)/sv_game.c + $(DO_CC) + +$(BUILDDIR)/client/sv_init.o : $(SERVER_DIR)/sv_init.c + $(DO_CC) + +$(BUILDDIR)/client/sv_main.o : $(SERVER_DIR)/sv_main.c + $(DO_CC) + +$(BUILDDIR)/client/sv_send.o : $(SERVER_DIR)/sv_send.c + $(DO_CC) + +$(BUILDDIR)/client/sv_user.o : $(SERVER_DIR)/sv_user.c + $(DO_CC) + +$(BUILDDIR)/client/sv_world.o : $(SERVER_DIR)/sv_world.c + $(DO_CC) + +$(BUILDDIR)/client/cd_linux.o : $(LINUX_DIR)/cd_linux.c + $(DO_CC) + +$(BUILDDIR)/client/q_shlinux.o : $(LINUX_DIR)/q_shlinux.c + $(DO_O_CC) + +$(BUILDDIR)/client/vid_menu.o : $(LINUX_DIR)/vid_menu.c + $(DO_CC) + +$(BUILDDIR)/client/vid_so.o : $(LINUX_DIR)/vid_so.c + $(DO_CC) + +$(BUILDDIR)/client/snd_linux.o : $(LINUX_DIR)/snd_linux.c + $(DO_CC) + +$(BUILDDIR)/client/snd_mixa.o : $(LINUX_DIR)/snd_mixa.s + $(DO_AS) + +$(BUILDDIR)/client/sys_linux.o : $(LINUX_DIR)/sys_linux.c + $(DO_CC) + +$(BUILDDIR)/client/glob.o : $(LINUX_DIR)/glob.c + $(DO_CC) + +$(BUILDDIR)/client/net_udp.o : $(LINUX_DIR)/net_udp.c + $(DO_CC) + +$(BUILDDIR)/client/goautil.o : $(SERVER_DIR)/goautil.c + $(DO_CC) + +$(BUILDDIR)/client/nonport.o : $(SERVER_DIR)/nonport.c + $(DO_CC) + +############################################################################# +# DEDICATED SERVER +############################################################################# + +Q2DED_OBJS = \ + \ + $(BUILDDIR)/ded/cmd.o \ + $(BUILDDIR)/ded/cmodel.o \ + $(BUILDDIR)/ded/common.o \ + $(BUILDDIR)/ded/cvar.o \ + $(BUILDDIR)/ded/files.o \ + $(BUILDDIR)/ded/md4.o \ + $(BUILDDIR)/ded/net_chan.o \ + \ + $(BUILDDIR)/ded/sv_ccmds.o \ + $(BUILDDIR)/ded/sv_ents.o \ + $(BUILDDIR)/ded/sv_game.o \ + $(BUILDDIR)/ded/sv_init.o \ + $(BUILDDIR)/ded/sv_main.o \ + $(BUILDDIR)/ded/sv_send.o \ + $(BUILDDIR)/ded/sv_user.o \ + $(BUILDDIR)/ded/sv_world.o \ + \ + $(BUILDDIR)/ded/q_shlinux.o \ + $(BUILDDIR)/ded/sys_linux.o \ + $(BUILDDIR)/ded/glob.o \ + $(BUILDDIR)/ded/net_udp.o \ + \ + $(BUILDDIR)/ded/q_shared.o \ + $(BUILDDIR)/ded/pmove.o \ + \ + $(BUILDDIR)/ded/cl_null.o \ + $(BUILDDIR)/ded/cd_null.o \ + \ + $(BUILDDIR)/ded/goautil.o \ + $(BUILDDIR)/ded/nonport.o \ + \ + $(BUILDDIR)/ded/crc.o + +$(BUILDDIR)/kpded : $(Q2DED_OBJS) + $(CC) $(CFLAGS) -o $@ $(Q2DED_OBJS) $(LDFLAGS) + +$(BUILDDIR)/ded/cmd.o : $(COMMON_DIR)/cmd.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/cmodel.o : $(COMMON_DIR)/cmodel.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/common.o : $(COMMON_DIR)/common.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/cvar.o : $(COMMON_DIR)/cvar.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/files.o : $(COMMON_DIR)/files.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/md4.o : $(COMMON_DIR)/md4.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/net_chan.o : $(COMMON_DIR)/net_chan.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/q_shared.o : $(GAME_DIR)/q_shared.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/pmove.o : $(COMMON_DIR)/pmove.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/sv_ccmds.o : $(SERVER_DIR)/sv_ccmds.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/sv_ents.o : $(SERVER_DIR)/sv_ents.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/sv_game.o : $(SERVER_DIR)/sv_game.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/sv_init.o : $(SERVER_DIR)/sv_init.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/sv_main.o : $(SERVER_DIR)/sv_main.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/sv_send.o : $(SERVER_DIR)/sv_send.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/sv_user.o : $(SERVER_DIR)/sv_user.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/sv_world.o : $(SERVER_DIR)/sv_world.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/q_shlinux.o : $(LINUX_DIR)/q_shlinux.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/sys_linux.o : $(LINUX_DIR)/sys_linux.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/glob.o : $(LINUX_DIR)/glob.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/net_udp.o : $(LINUX_DIR)/net_udp.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/cd_null.o : $(NULL_DIR)/cd_null.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/cl_null.o : $(NULL_DIR)/cl_null.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/goautil.o : $(SERVER_DIR)/goautil.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/nonport.o : $(SERVER_DIR)/nonport.c + $(DO_DED_CC) + +$(BUILDDIR)/ded/crc.o : $(COMMON_DIR)/crc.c + $(DO_DED_CC) + + +############################################################################# +# GAME +############################################################################# + +GAME_OBJS = \ + $(BUILDDIR)/game/ai_bitch.o \ + $(BUILDDIR)/game/ai_bum_sit.o \ + $(BUILDDIR)/game/ai_dog.o \ + $(BUILDDIR)/game/ai_punk.o \ + $(BUILDDIR)/game/ai_runt.o \ + $(BUILDDIR)/game/ai_shorty.o \ + $(BUILDDIR)/game/ai_skinny.o \ + $(BUILDDIR)/game/ai_thug.o \ + $(BUILDDIR)/game/ai_thug_sit.o \ + $(BUILDDIR)/game/ai_whore.o \ + $(BUILDDIR)/game/ep_all.o \ + $(BUILDDIR)/game/ep_crystalpalace.o \ + $(BUILDDIR)/game/ep_log.o \ + $(BUILDDIR)/game/ep_posionville.o \ + $(BUILDDIR)/game/ep_radiocity.o \ + $(BUILDDIR)/game/ep_shipyards.o \ + $(BUILDDIR)/game/ep_skidrow.o \ + $(BUILDDIR)/game/ep_steeltown.o \ + $(BUILDDIR)/game/ep_trainyard.o \ + $(BUILDDIR)/game/g_ai.o \ + $(BUILDDIR)/game/g_ai_ents.o \ + $(BUILDDIR)/game/g_ai_fight.o \ + $(BUILDDIR)/game/g_ai_memory.o \ + $(BUILDDIR)/game/g_cast.o \ + $(BUILDDIR)/game/g_chase.o \ + $(BUILDDIR)/game/g_cmds.o \ + $(BUILDDIR)/game/g_combat.o \ + $(BUILDDIR)/game/g_fog.o \ + $(BUILDDIR)/game/g_func.o \ + $(BUILDDIR)/game/g_items.o \ + $(BUILDDIR)/game/g_joe_misc.o \ + $(BUILDDIR)/game/g_main.o \ + $(BUILDDIR)/game/g_misc.o \ + $(BUILDDIR)/game/g_nav.o \ + $(BUILDDIR)/game/g_nav_cells.o \ + $(BUILDDIR)/game/g_nav_io.o \ + $(BUILDDIR)/game/g_nav_misc.o \ + $(BUILDDIR)/game/g_pawn.o \ + $(BUILDDIR)/game/g_phys.o \ + $(BUILDDIR)/game/g_save.o \ + $(BUILDDIR)/game/g_spawn.o \ + $(BUILDDIR)/game/g_svcmds.o \ + $(BUILDDIR)/game/g_target.o \ + $(BUILDDIR)/game/g_teamplay.o \ + $(BUILDDIR)/game/g_trigger.o \ + $(BUILDDIR)/game/g_utils.o \ + $(BUILDDIR)/game/g_weapon.o \ + $(BUILDDIR)/game/lateral.o \ + $(BUILDDIR)/game/m_bbox.o \ + $(BUILDDIR)/game/m_flash.o \ + $(BUILDDIR)/game/m_move.o \ + $(BUILDDIR)/game/p_client.o \ + $(BUILDDIR)/game/p_hud.o \ + $(BUILDDIR)/game/p_trail.o \ + $(BUILDDIR)/game/p_view.o \ + $(BUILDDIR)/game/p_weapon.o \ + $(BUILDDIR)/game/q_shared.o \ + $(BUILDDIR)/game/vehicles.o \ + $(BUILDDIR)/game/voice.o \ + $(BUILDDIR)/game/voice_bitch.o \ + $(BUILDDIR)/game/voice_punk.o +# $(BUILDDIR)/game/g_so.o + +$(BUILDDIR)/game$(ARCH).$(SHLIBEXT) : $(GAME_OBJS) + $(CC) $(CFLAGS) $(SHLIBLDFLAGS) -o $@ $(GAME_OBJS) + +$(BUILDDIR)/game/ai_bitch.o : $(GAME_DIR)/ai_bitch.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/ai_bum_sit.o : $(GAME_DIR)/ai_bum_sit.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/ai_dog.o : $(GAME_DIR)/ai_dog.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/ai_punk.o : $(GAME_DIR)/ai_punk.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/ai_runt.o : $(GAME_DIR)/ai_runt.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/ai_shorty.o : $(GAME_DIR)/ai_shorty.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/ai_skinny.o : $(GAME_DIR)/ai_skinny.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/ai_thug.o : $(GAME_DIR)/ai_thug.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/ai_thug_sit.o : $(GAME_DIR)/ai_thug_sit.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/ai_whore.o : $(GAME_DIR)/ai_whore.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/ep_all.o : $(GAME_DIR)/ep_all.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/ep_crystalpalace.o : $(GAME_DIR)/ep_crystalpalace.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/ep_log.o : $(GAME_DIR)/ep_log.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/ep_posionville.o : $(GAME_DIR)/ep_posionville.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/ep_radiocity.o : $(GAME_DIR)/ep_radiocity.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/ep_shipyards.o : $(GAME_DIR)/ep_shipyards.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/ep_skidrow.o : $(GAME_DIR)/ep_skidrow.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/ep_steeltown.o : $(GAME_DIR)/ep_steeltown.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/ep_trainyard.o : $(GAME_DIR)/ep_trainyard.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_ai.o : $(GAME_DIR)/g_ai.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_ai_ents.o : $(GAME_DIR)/g_ai_ents.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_ai_fight.o : $(GAME_DIR)/g_ai_fight.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_ai_memory.o : $(GAME_DIR)/g_ai_memory.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_cast.o : $(GAME_DIR)/g_cast.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_cmds.o : $(GAME_DIR)/g_cmds.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_chase.o : $(GAME_DIR)/g_chase.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_combat.o : $(GAME_DIR)/g_combat.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_fog.o : $(GAME_DIR)/g_fog.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_func.o : $(GAME_DIR)/g_func.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_items.o : $(GAME_DIR)/g_items.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_joe_misc.o : $(GAME_DIR)/g_joe_misc.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_main.o : $(GAME_DIR)/g_main.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_misc.o : $(GAME_DIR)/g_misc.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_nav.o : $(GAME_DIR)/g_nav.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_nav_cells.o : $(GAME_DIR)/g_nav_cells.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_nav_io.o : $(GAME_DIR)/g_nav_io.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_nav_misc.o : $(GAME_DIR)/g_nav_misc.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_pawn.o : $(GAME_DIR)/g_pawn.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_phys.o : $(GAME_DIR)/g_phys.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_save.o : $(GAME_DIR)/g_save.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_spawn.o : $(GAME_DIR)/g_spawn.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_svcmds.o : $(GAME_DIR)/g_svcmds.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_target.o : $(GAME_DIR)/g_target.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_teamplay.o : $(GAME_DIR)/g_teamplay.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_trigger.o : $(GAME_DIR)/g_trigger.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_utils.o : $(GAME_DIR)/g_utils.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/g_weapon.o : $(GAME_DIR)/g_weapon.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/lateral.o : $(GAME_DIR)/lateral.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/m_bbox.o : $(GAME_DIR)/m_bbox.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/m_flash.o : $(GAME_DIR)/m_flash.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/m_move.o : $(GAME_DIR)/m_move.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/p_client.o : $(GAME_DIR)/p_client.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/p_hud.o : $(GAME_DIR)/p_hud.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/p_trail.o : $(GAME_DIR)/p_trail.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/p_view.o : $(GAME_DIR)/p_view.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/p_weapon.o : $(GAME_DIR)/p_weapon.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/q_shared.o : $(GAME_DIR)/q_shared.c + $(CC) $(DEBUG_CFLAGS) $(SHLIBCFLAGS) -o $@ -c $< + +$(BUILDDIR)/game/vehicles.o : $(GAME_DIR)/vehicles.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/voice.o : $(GAME_DIR)/voice.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/voice_bitch.o : $(GAME_DIR)/voice_bitch.c + $(DO_SHLIB_CC) + +$(BUILDDIR)/game/voice_punk.o : $(GAME_DIR)/voice_punk.c + $(DO_SHLIB_CC) + + +############################################################################# +# REF_GL +############################################################################# + +REF_GL_OBJS = \ + $(BUILDDIR)/ref_gl/gl_draw.o \ + $(BUILDDIR)/ref_gl/gl_image.o \ + $(BUILDDIR)/ref_gl/gl_light.o \ + $(BUILDDIR)/ref_gl/gl_mesh.o \ + $(BUILDDIR)/ref_gl/gl_model.o \ + $(BUILDDIR)/ref_gl/gl_rmain.o \ + $(BUILDDIR)/ref_gl/gl_rmisc.o \ + $(BUILDDIR)/ref_gl/gl_rsurf.o \ + $(BUILDDIR)/ref_gl/gl_warp.o \ + \ + $(BUILDDIR)/ref_gl/qgl_linux.o \ + $(BUILDDIR)/ref_gl/q_shared.o \ + $(BUILDDIR)/ref_gl/q_shlinux.o \ + $(BUILDDIR)/ref_gl/glob.o \ + $(BUILDDIR)/ref_gl/xatrixtxrmap.o + +REF_GL_FXMESA_OBJS = \ + $(BUILDDIR)/ref_gl/gl_fxmesa.o \ + $(BUILDDIR)/ref_gl/rw_in_svgalib.o + +REF_GL_GLX_OBJS = \ + $(BUILDDIR)/ref_gl/gl_glx.o + +$(BUILDDIR)/ref_gl.$(SHLIBEXT) : $(REF_GL_OBJS) $(REF_GL_FXMESA_OBJS) + $(CC) $(CFLAGS) $(SHLIBLDFLAGS) -o $@ $(REF_GL_OBJS) $(REF_GL_FXMESA_OBJS) $(GLLDFLAGS) + +$(BUILDDIR)/ref_glx.$(SHLIBEXT) : $(REF_GL_OBJS) $(REF_GL_GLX_OBJS) + $(CC) $(CFLAGS) $(SHLIBLDFLAGS) -o $@ $(REF_GL_OBJS) $(REF_GL_GLX_OBJS) $(GLXLDFLAGS) + +$(BUILDDIR)/ref_gl/gl_draw.o : $(REF_GL_DIR)/gl_draw.c + $(DO_GL_SHLIB_CC) + +$(BUILDDIR)/ref_gl/gl_image.o : $(REF_GL_DIR)/gl_image.c + $(DO_GL_SHLIB_CC) + +$(BUILDDIR)/ref_gl/gl_light.o : $(REF_GL_DIR)/gl_light.c + $(DO_GL_SHLIB_CC) + +$(BUILDDIR)/ref_gl/gl_mesh.o : $(REF_GL_DIR)/gl_mesh.c + $(DO_GL_SHLIB_CC) + +$(BUILDDIR)/ref_gl/gl_model.o : $(REF_GL_DIR)/gl_model.c + $(DO_GL_SHLIB_CC) + +$(BUILDDIR)/ref_gl/gl_rmain.o : $(REF_GL_DIR)/gl_rmain.c + $(DO_GL_SHLIB_CC) + +$(BUILDDIR)/ref_gl/gl_rmisc.o : $(REF_GL_DIR)/gl_rmisc.c + $(DO_GL_SHLIB_CC) + +$(BUILDDIR)/ref_gl/gl_rsurf.o : $(REF_GL_DIR)/gl_rsurf.c + $(DO_GL_SHLIB_CC) + +$(BUILDDIR)/ref_gl/gl_warp.o : $(REF_GL_DIR)/gl_warp.c + $(DO_GL_SHLIB_CC) + +$(BUILDDIR)/ref_gl/qgl_linux.o : $(LINUX_DIR)/qgl_linux.c + $(DO_GL_SHLIB_CC) + +$(BUILDDIR)/ref_gl/gl_fxmesa.o : $(LINUX_DIR)/gl_fxmesa.c + $(DO_GL_SHLIB_CC) + +$(BUILDDIR)/ref_gl/gl_glx.o : $(LINUX_DIR)/gl_glx.c + $(DO_GL_SHLIB_CC) + +$(BUILDDIR)/ref_gl/rw_in_svgalib.o : $(LINUX_DIR)/rw_in_svgalib.c + $(DO_GL_SHLIB_CC) + +$(BUILDDIR)/ref_gl/q_shared.o : $(GAME_DIR)/q_shared.c + $(CC) $(DEBUG_CFLAGS) $(SHLIBCFLAGS) $(GLCFLAGS) -o $@ -c $< + +$(BUILDDIR)/ref_gl/q_shlinux.o : $(LINUX_DIR)/q_shlinux.c + $(DO_GL_SHLIB_O_CC) + +$(BUILDDIR)/ref_gl/glob.o : $(LINUX_DIR)/glob.c + $(DO_GL_SHLIB_CC) + +$(BUILDDIR)/ref_gl/xatrixtxrmap.o : $(REF_GL_DIR)/xatrixtxrmap.cpp + $(DO_GL_SHLIB_CPP) + + +############################################################################# +# RPM +############################################################################# + +# Make RPMs. You need to be root to make this work +RPMROOT=/usr/src/RPM +RPM = rpm +RPMFLAGS = -bb +INSTALLDIR = /usr/local/games/kingpin +QUAKE2_DIR = /usr/local/games/quake2 +DESTDIR= $(RPMDIR)/$(INSTALLDIR) + + +RPMDIR = /var/tmp/kingpin-$(VERSION_FN) + +rpm: kingpin.spec +# touch $(RPMROOT)/SOURCES/kingpin-$(VERSION_FN).tar.gz + if [ ! -d archives ];then mkdir archives;fi + $(MAKE) copyfiles COPYDIR=$(DESTDIR) + cd $(MOUNT_DIR) + -mkdir $(RPMDIR)/etc + cp $(MOUNT_DIR)/linux/kingpin.conf $(RPMDIR)/etc/kingpin.conf + cp kingpin.spec $(RPMROOT)/SPECS/. + cd $(RPMROOT)/SPECS/.; $(RPM) $(RPMFLAGS) kingpin.spec + rm -rf $(RPMDIR) + mv $(RPMROOT)/RPMS/$(ARCH)/kingpin-$(VERSION_FN)-$(RPM_RELEASE).$(RPMARCH).rpm /pub + +tar: + if [ ! -d archives ];then mkdir archives;fi + $(MAKE) copyfiles COPYDIR=$(RPMDIR) + cp $(MOUNT_DIR)/linux/kingpin.conf $(RPMDIR)/kingpin.conf + cd $(RPMDIR); sh $(MOUNT_DIR)/linux/fixperms.sh + cd $(RPMDIR); tar czvf kingpin-$(VERSION_FN)-$(ARCH)-linux2.0.tar.gz * + mv $(RPMDIR)/*.tar.gz /pub + rm -rf $(RPMDIR) + + +copyfiles: + -mkdirhier $(COPYDIR) + cp $(BUILD_RELEASE_DIR)/kingpin $(COPYDIR)/kingpin + strip $(COPYDIR)/kingpin + -mkdir $(COPYDIR)/main + -mkdir $(COPYDIR)/main/maps + for x in `find $(COPYDIR)/main -type d`; do chmod 755 $$x;done + for x in `find $(COPYDIR)/main -type f`; do chmod 644 $$x;done + chmod 1777 $(COPYDIR)/main + chmod 1777 $(COPYDIR)/main/maps + +# Swap these over when debugging process is complete +# cp $(BUILD_DEBUG_DIR)/game$(ARCH).$(SHLIBEXT) $(COPYDIR)/main + cp $(BUILD_RELEASE_DIR)/game$(ARCH).$(SHLIBEXT) $(COPYDIR)/main + + cp $(BUILD_RELEASE_DIR)/ref_gl.$(SHLIBEXT) $(COPYDIR) + cp $(BUILD_RELEASE_DIR)/ref_glx.$(SHLIBEXT) $(COPYDIR) + cp $(QUAKE2_DIR)/lib3dfxgl.so $(COPYDIR) + cp $(QUAKE2_DIR)/libTNTgl.so $(COPYDIR) + cp $(QUAKE2_DIR)/libMesaGL.so.2.6 $(COPYDIR) + cd $(COPYDIR); ln -sf libMesaGL.so.2.6 libMesaGL.so.2 + cd $(COPYDIR); ln -sf libMesaGL.so.2 libMesaGL.so + cd $(COPYDIR); ln -sf libMesaGL.so libGL.so + cp $(MOUNT_DIR)/linux/README $(COPYDIR) + cp ccase $(COPYDIR)/main + cp $(MOUNT_DIR)/../patch12.txt $(COPYDIR) + cp $(MOUNT_DIR)/../main/server.cfg $(COPYDIR)/main + cp $(MOUNT_DIR)/../main/teammaps.lst $(COPYDIR)/main + cp $(MOUNT_DIR)/../main/maps/team_rival.bsp $(COPYDIR)/main/maps + cp $(MOUNT_DIR)/../main/maps/team_towers.bsp $(COPYDIR)/main/maps + +kingpin.spec : $(MOUNT_DIR)/linux/kingpin.spec.sh makefile + sh $< $(VERSION_FN) $(RPM_RELEASE) $(ARCH) $(INSTALLDIR) > $@ + +tar_ded: + if [ ! -d archives ];then mkdir archives;fi + $(MAKE) copyfiles_ded COPYDIR=$(RPMDIR) + cp $(MOUNT_DIR)/linux/kingpin.conf $(RPMDIR)/kingpin.conf + cd $(RPMDIR); sh $(MOUNT_DIR)/linux/fixperms.sh + cd $(RPMDIR); tar czvf kpded-$(VERSION_FN)-$(ARCH)-linux2.0.tar.gz * + mv $(RPMDIR)/*.tar.gz /pub + rm -rf $(RPMDIR) + + +copyfiles_ded: + -mkdirhier $(COPYDIR) + cp $(BUILD_RELEASE_DIR)/kingpin $(COPYDIR)/kingpin + strip $(COPYDIR)/kingpin + -mkdir $(COPYDIR)/main + -mkdir $(COPYDIR)/main/maps + for x in `find $(COPYDIR)/main -type d`; do chmod 755 $$x;done + for x in `find $(COPYDIR)/main -type f`; do chmod 644 $$x;done + chmod 1777 $(COPYDIR)/main + chmod 1777 $(COPYDIR)/main/maps + +# Swap these over when debugging process is complete + cp $(BUILD_DEBUG_DIR)/game$(ARCH).$(SHLIBEXT) $(COPYDIR)/main +# cp $(BUILD_RELEASE_DIR)/game$(ARCH).$(SHLIBEXT) $(COPYDIR)/main + + cp $(MOUNT_DIR)/linux/README $(COPYDIR) + cp ccase $(COPYDIR)/main + cp $(MOUNT_DIR)/../patch12.txt $(COPYDIR) + cp $(MOUNT_DIR)/../main/server.cfg $(COPYDIR)/main + cp $(MOUNT_DIR)/../main/teammaps.lst $(COPYDIR)/main + cp $(MOUNT_DIR)/../main/maps/team_rival.bsp $(COPYDIR)/main/maps + cp $(MOUNT_DIR)/../main/maps/team_towers.bsp $(COPYDIR)/main/maps + + +############################################################################# +# MISC +############################################################################# + +clean: clean-debug clean-release + +clean-debug: + $(MAKE) clean2 BUILDDIR=$(BUILD_DEBUG_DIR) CFLAGS="$(DEBUG_CFLAGS)" + +clean-release: + $(MAKE) clean2 BUILDDIR=$(BUILD_RELEASE_DIR) CFLAGS="$(DEBUG_CFLAGS)" + +clean2: + -rm -f \ + $(QUAKE2_OBJS) \ + $(Q2DED_OBJS) \ + $(QUAKE2_AS_OBJS) \ + $(GAME_OBJS) \ + $(CTF_OBJS) \ + $(XATRIX_OBJS) \ + $(ROGUE_OBJS) \ + $(REF_SOFT_OBJS) \ + $(REF_SOFT_SVGA_OBJS) \ + $(REF_SOFT_X11_OBJS) \ + $(REF_GL_OBJS) \ + $(REF_GL_FXMESA_OBJS) \ + $(REF_GL_GLX_OBJS) diff --git a/gamesrc/M_BBOX.C b/gamesrc/M_BBOX.C new file mode 100644 index 0000000..f013b25 --- /dev/null +++ b/gamesrc/M_BBOX.C @@ -0,0 +1,186 @@ +#include "g_local.h" + +// +// M_BBOX.C +// +#define MAX_MDX_BBOX_ENTITIES 32 // theoretically, this should be MAX_MODEL_PARTS * MAX_MODELPART_OBJECTS + // but that would be too many, so we have to compromise + +edict_t *mdx_bbox[MAX_MDX_BBOX_ENTITIES]; + +void MDX_Bbox_Init (void) +{ + int i; + + for (i = 0; i < (MAX_MDX_BBOX_ENTITIES); i++) + { + mdx_bbox[i] = G_Spawn(); + mdx_bbox[i]->classname = "mdx_bbox"; + mdx_bbox[i]->s.modelindex = 0; + mdx_bbox[i]->takedamage = DAMAGE_NO; // don't take damage from explosions, we'll do all damage testing manually + +// mdx_bbox[i]->svflags |= SVF_MONSTER; + + mdx_bbox[i]->solid |= SOLID_BBOX; + + mdx_bbox[i]->flags |= FL_MDXBBOX; + + } + +} + +int bbox_cnt; + +trace_t MDX_HitCheck (edict_t *targ, edict_t *inflictor, edict_t *attacker, vec3_t dir, vec3_t point, vec3_t normal, int damage, int knockback, int dflags, int mod, vec3_t end) +{ + trace_t tr; + vec3_t forward, right, up; + int sub_object; + int i; + vec3_t rmins, rmaxs; // rotated mins/maxs positions + vec3_t pmins, pmaxs; // perpendicular with world axis + vec3_t org; + + bbox_cnt = 0; + + AngleVectors (mdx_bbox[bbox_cnt]->s.angles, forward, right, up); + VectorCopy (targ->s.origin, org); + + if (targ->cast_info.scale != 1.0) + { + VectorScale( forward, targ->cast_info.scale, forward ); + VectorScale( right, targ->cast_info.scale, right ); + VectorScale( up, targ->cast_info.scale, up ); + + org[2] -= 24 * (1.0 - targ->cast_info.scale); + } + + for (i=0; is.model_parts[i].modelindex) + { + + if (!targ->s.model_parts[i].object_bounds[sub_object]) + break; + + // Ridah, only check visible sub-objects + if (!(targ->s.model_parts[i].invisible_objects & (1<s.origin); + VectorCopy (targ->s.angles, mdx_bbox[bbox_cnt]->s.angles); + + VectorCopy (g_objbnds[-1+targ->s.model_parts[i].object_bounds[sub_object]][targ->s.frame].mins, mdx_bbox[bbox_cnt]->mins); + VectorCopy (g_objbnds[-1+targ->s.model_parts[i].object_bounds[sub_object]][targ->s.frame].maxs, mdx_bbox[bbox_cnt]->maxs); + + if (targ->cast_info.scale != 1.0) + { + VectorScale( mdx_bbox[bbox_cnt]->mins, targ->cast_info.scale, mdx_bbox[bbox_cnt]->mins ); + VectorScale( mdx_bbox[bbox_cnt]->maxs, targ->cast_info.scale, mdx_bbox[bbox_cnt]->maxs ); + } + + VectorMA (mdx_bbox[bbox_cnt]->s.origin, ((mdx_bbox[bbox_cnt]->mins[0] + mdx_bbox[bbox_cnt]->maxs[0]) * 0.5), forward, mdx_bbox[bbox_cnt]->s.origin); + VectorMA (mdx_bbox[bbox_cnt]->s.origin, -((mdx_bbox[bbox_cnt]->mins[1] + mdx_bbox[bbox_cnt]->maxs[1]) * 0.5), right, mdx_bbox[bbox_cnt]->s.origin); + VectorMA (mdx_bbox[bbox_cnt]->s.origin, (mdx_bbox[bbox_cnt]->mins[2] + mdx_bbox[bbox_cnt]->maxs[2]) * 0.5, up, mdx_bbox[bbox_cnt]->s.origin); + + // find rotated positions of mins/maxs, and then build the new min/max + VectorScale ( forward, mdx_bbox[bbox_cnt]->mins[0], rmins); + VectorMA (rmins, -mdx_bbox[bbox_cnt]->mins[1], right, rmins); + VectorMA (rmins, mdx_bbox[bbox_cnt]->mins[2], up, rmins); + + VectorScale ( forward, mdx_bbox[bbox_cnt]->maxs[0], rmaxs); + VectorMA (rmaxs, -mdx_bbox[bbox_cnt]->maxs[1], right, rmaxs); + VectorMA (rmaxs, mdx_bbox[bbox_cnt]->maxs[2], up, rmaxs); + + pmins[0] = (rmins[0] < rmaxs[0] ? rmins[0] : rmaxs[0]); + pmins[1] = (rmins[1] < rmaxs[1] ? rmins[1] : rmaxs[1]); + pmins[2] = (rmins[2] < rmaxs[2] ? rmins[2] : rmaxs[2]); + + pmaxs[0] = (rmins[0] > rmaxs[0] ? rmins[0] : rmaxs[0]); + pmaxs[1] = (rmins[1] > rmaxs[1] ? rmins[1] : rmaxs[1]); + pmaxs[2] = (rmins[2] > rmaxs[2] ? rmins[2] : rmaxs[2]); + + // now align the mins/maxs with the origin + mdx_bbox[bbox_cnt]->mins[0] = pmins[0] - (0.5*(pmaxs[0] + pmins[0])); + mdx_bbox[bbox_cnt]->mins[1] = pmins[1] - (0.5*(pmaxs[1] + pmins[1])); + mdx_bbox[bbox_cnt]->mins[2] = pmins[2] - (0.5*(pmaxs[2] + pmins[2])); + mdx_bbox[bbox_cnt]->maxs[0] = pmaxs[0] - (0.5*(pmaxs[0] + pmins[0])); + mdx_bbox[bbox_cnt]->maxs[1] = pmaxs[1] - (0.5*(pmaxs[1] + pmins[1])); + mdx_bbox[bbox_cnt]->maxs[2] = pmaxs[2] - (0.5*(pmaxs[2] + pmins[2])); + + mdx_bbox[bbox_cnt]->count = i; // record model part + mdx_bbox[bbox_cnt]->dmg = sub_object; // record sub_object + + if (damage > 0) + { + mdx_bbox[bbox_cnt]->solid = SOLID_BBOX; + gi.linkentity (mdx_bbox[bbox_cnt]); + } + + bbox_cnt++; + } + + sub_object++; + + if (bbox_cnt > (MAX_MDX_BBOX_ENTITIES)) + { + gi.error ("MDX_HitCheck: too many bbox parts: %d\n", bbox_cnt); + } + + if (sub_object == MAX_MODELPART_OBJECTS) + break; + } + } + + if (damage > 0) + { + tr = gi.trace (point, NULL, NULL, end, targ, MASK_SHOT ); + MDX_Cleanup(); + } + else + { + memset( &tr, 0, sizeof(trace_t)); + } + +/* + // just to see where the hit occured + { + edict_t *e; + e = G_Spawn(); + e->s.modelindex = 98; + gi.linkentity(e); + VectorCopy (tr.endpos, e->s.origin); + e->think = G_FreeEdict; + e->nextthink = level.time + 1.0; + + // Ridah, debugging, change the skin on this sub-object + if (tr.fraction < 1 && tr.ent->flags & FL_MDXBBOX) + if (++targ->s.model_parts[tr.ent->count].skinnum[tr.ent->dmg] > 4) + targ->s.model_parts[tr.ent->count].skinnum[tr.ent->dmg] = 0; + + } +*/ + + return tr; + +} + +void MDX_Cleanup (void) +{ + int i; + + for (i = 0; i < (MAX_MDX_BBOX_ENTITIES); i++) + { + if (mdx_bbox[i]->solid) + { + gi.unlinkentity (mdx_bbox[i]); + mdx_bbox[i]->solid = 0; + } + } +} diff --git a/gamesrc/M_MOVE.C b/gamesrc/M_MOVE.C new file mode 100644 index 0000000..e2e1876 --- /dev/null +++ b/gamesrc/M_MOVE.C @@ -0,0 +1,1120 @@ +// m_move.c -- monster movement + +#include "g_local.h" + +#define STEPSIZE 28 + +// JOSEPH 20-AUG-98 +/* +============= +M_CheckBottom + +Returns false if any part of the bottom of the entity is off an edge that +is not a staircase. + +============= +*/ +int c_yes, c_no; + +qboolean M_CheckBottom (edict_t *ent) +{ + vec3_t mins, maxs, start, stop; + trace_t trace; + int x, y; + float mid, bottom, stepsize; + + stepsize = STEPSIZE; + + if (ent->fallerflag) + { + vec3_t oldmins, oldmaxs; + + stepsize = 8; + + oldmins[0] = (ent->mins[0] / 8); + oldmins[1] = (ent->mins[1] / 8); + oldmins[2] = (ent->mins[2]); + + oldmaxs[0] = (ent->maxs[0] / 8); + oldmaxs[1] = (ent->maxs[1] / 8); + oldmaxs[2] = (ent->maxs[2]); + + VectorAdd (ent->s.origin, oldmins, mins); + VectorAdd (ent->s.origin, oldmaxs, maxs); + } + else + { + VectorAdd (ent->s.origin, ent->mins, mins); + VectorAdd (ent->s.origin, ent->maxs, maxs); + } + +// if all of the points under the corners are solid world, don't bother +// with the tougher checks +// the corners must be within 16 of the midpoint + start[2] = mins[2] - 1; + for (x=0 ; x<=1 ; x++) + for (y=0 ; y<=1 ; y++) + { + start[0] = x ? maxs[0] : mins[0]; + start[1] = y ? maxs[1] : mins[1]; + if (gi.pointcontents (start) != CONTENTS_SOLID) + goto realcheck; + } + + c_yes++; + return true; // we got out easy + +realcheck: + c_no++; +// +// check it for real... +// + start[2] = mins[2]; + +// the midpoint must be within 16 of the bottom + start[0] = stop[0] = (mins[0] + maxs[0])*0.5; + start[1] = stop[1] = (mins[1] + maxs[1])*0.5; + stop[2] = start[2] - 2*stepsize; // Ridah, this was changed from STEPSIZE, which is why we must initialize it at the top + trace = gi.trace (start, vec3_origin, vec3_origin, stop, ent, MASK_MONSTERSOLID); + + if (trace.fraction == 1.0) + return false; + mid = bottom = trace.endpos[2]; + +// the corners must be within 16 of the midpoint + for (x=0 ; x<=1 ; x++) + for (y=0 ; y<=1 ; y++) + { + start[0] = stop[0] = x ? maxs[0] : mins[0]; + start[1] = stop[1] = y ? maxs[1] : mins[1]; + + trace = gi.trace (start, vec3_origin, vec3_origin, stop, ent, MASK_MONSTERSOLID); + + if (trace.fraction != 1.0 && trace.endpos[2] > bottom) + bottom = trace.endpos[2]; + if (trace.fraction == 1.0 || mid - trace.endpos[2] > stepsize) + return false; + } + + c_yes++; + return true; +} +// END JOSEPH + +// JOSEPH 7-OCT-98 +void think_checkedges (edict_t *ent) +{ + vec3_t mins, maxs, start, stop; + trace_t trace; + int x, y; + float mid, bottom, stepsize; + vec3_t oldmins, oldmaxs; + int currentcorner, fall; + + stepsize = 8; + fall = 0; + + // JOSEPH 25-SEP-98 + /*if ((ent->s.origin[0] != ent->s.old_origin[0]) || + (ent->s.origin[1] != ent->s.old_origin[1]) || + (ent->s.origin[2] != ent->s.old_origin[2]))*/ + { + // Set to floor angles + vec3_t avec, stop; + trace_t trace; + + VectorCopy(ent->s.origin, stop); + stop[2] -= 16*2; + + trace = gi.trace (ent->s.origin, ent->mins, ent->maxs, stop, ent, MASK_MONSTERSOLID); + if (trace.fraction < 1) + { + VectorCopy (trace.plane.normal, avec); + avec[0] = acos(trace.plane.normal[2])/M_PI*180; + avec[2] = atan2(trace.plane.normal[1], trace.plane.normal[0])/M_PI*180; + avec[1] = ent->s.angles[1]; + + if (avec[2] == 180) + { + avec[0] = -avec[0]; + avec[2] = 0; + } + else if (avec[2] == 90) + { + avec[2] = avec[0]; + avec[0] = 0; + } + else if (avec[2] == -90) + { + avec[2] = -avec[0]; + avec[0] = 0; + } + + VectorCopy (avec, ent->s.angles); + } + } + + /*if (ent->s.angles[0] > 20 || ent->s.angles[2] > 20 || + ent->s.angles[0] < -20 || ent->s.angles[2] < -20) + { + // Slope slide + think_slide (ent); + }*/ + + oldmins[0] = (ent->mins[0] /8); + oldmins[1] = (ent->mins[1] /8); + oldmins[2] = (ent->mins[2]); + + oldmaxs[0] = (ent->maxs[0] /8); + oldmaxs[1] = (ent->maxs[1] /8); + oldmaxs[2] = (ent->maxs[2]); + + VectorAdd (ent->s.origin, oldmins, mins); + VectorAdd (ent->s.origin, oldmaxs, maxs); + + // if all of the points under the corners are solid world, don't bother + // with the tougher checks + // the corners must be within 16 of the midpoint + start[2] = mins[2] - 1; + for (x=0 ; x<=1 ; x++) + for (y=0 ; y<=1 ; y++) + { + start[0] = x ? maxs[0] : mins[0]; + start[1] = y ? maxs[1] : mins[1]; + if (gi.pointcontents (start) != CONTENTS_SOLID) + goto realcheck; + } + + return; // we got out easy + +realcheck: + // + // check it for real... + // + start[2] = mins[2]; + + // the midpoint must be within 16 of the bottom + start[0] = stop[0] = (mins[0] + maxs[0])*0.5; + start[1] = stop[1] = (mins[1] + maxs[1])*0.5; + stop[2] = start[2] - 2*stepsize; + trace = gi.trace (start, vec3_origin, vec3_origin, stop, ent, MASK_MONSTERSOLID); + + //if (trace.fraction == 1.0) + // return false; + mid = bottom = trace.endpos[2]; + + // the corners must be within 16 of the midpoint + for (x=0 ; x<=1 ; x++) + { + for (y=0 ; y<=1 ; y++) + { + start[0] = stop[0] = x ? maxs[0] : mins[0]; + start[1] = stop[1] = y ? maxs[1] : mins[1]; + + trace = gi.trace (start, vec3_origin, vec3_origin, stop, ent, MASK_MONSTERSOLID); + + if (trace.fraction != 1.0 && trace.endpos[2] > bottom) + bottom = trace.endpos[2]; + if (trace.fraction == 1.0 || mid - trace.endpos[2] > stepsize) + { + fall = 1; + } + } + } + + if (fall) + { + vec3_t move, forward, right, up, newvec; + int speed = 140; + int movesize = 1; + float randmove2 = 0; //(random()-0.5)/2; + float randmove = 0; //(random()-0.5); + int nocorner[4] = {0, 0, 0, 0}; + + // Stop any drag sound + ent->s.sound = 0; + + oldmins[0] = (ent->mins[0]); + oldmins[1] = (ent->mins[1]); + oldmins[2] = (ent->mins[2]); + + oldmaxs[0] = (ent->maxs[0]); + oldmaxs[1] = (ent->maxs[1]); + oldmaxs[2] = (ent->maxs[2]); + + VectorAdd (ent->s.origin, oldmins, mins); + VectorAdd (ent->s.origin, oldmaxs, maxs); + + currentcorner = 0; + + for (x=0 ; x<=1 ; x++) + { + for (y=0 ; y<=1 ; y++) + { + currentcorner++; + + start[0] = stop[0] = x ? maxs[0] : mins[0]; + start[1] = stop[1] = y ? maxs[1] : mins[1]; + + trace = gi.trace (start, vec3_origin, vec3_origin, stop, ent, MASK_MONSTERSOLID); + + if (trace.fraction != 1.0 && trace.endpos[2] > bottom) + bottom = trace.endpos[2]; + if (trace.fraction == 1.0 || mid - trace.endpos[2] > stepsize) + { + nocorner[currentcorner] = 1; + } + } + } + + VectorClear(move); + + if (nocorner[1]) + { + VectorSet(newvec, -1.0, -1, 0); + VectorAdd(move, newvec ,move); + } + if (nocorner[2]) + { + VectorSet(newvec, -1, 1, 0); + VectorAdd(move, newvec ,move); + } + if (nocorner[3]) + { + VectorSet(newvec, 1, -1.0, 0); + VectorAdd(move, newvec ,move); + } + if (nocorner[0]) + { + VectorSet(newvec, 1, 1, 0); + VectorAdd(move, newvec ,move); + } + + // JOSEPH 17-MAY-99 + if (!ent->pullingflag) + { + AngleVectors (move, forward, right, up); + + VectorScale (move, speed, ent->velocity); + VectorMA (ent->velocity, 85, up, ent->velocity); + ent->movetype = MOVETYPE_TOSS; + } + // END JOSEPH + + // Object is falling + ent->fallingflag = 1; + + ent->groundentity = NULL; + } +} +// END JOSEPH + +// JOSEPH 24-AUG-98 +void think_slide (edict_t *ent) +{ + vec3_t mins, maxs, start, stop; + trace_t trace; + int x, y; + float mid, bottom, stepsize; + vec3_t oldmins, oldmaxs; + int nocorner[4]; + int currentcorner, fall; + + stepsize = 1; + fall = 0; + + oldmins[0] = (ent->mins[0] / 8); + oldmins[1] = (ent->mins[1] / 8); + oldmins[2] = (ent->mins[2]); + + oldmaxs[0] = (ent->maxs[0] / 8); + oldmaxs[1] = (ent->maxs[1] / 8); + oldmaxs[2] = (ent->maxs[2]); + + VectorAdd (ent->s.origin, oldmins, mins); + VectorAdd (ent->s.origin, oldmaxs, maxs); + + // if all of the points under the corners are solid world, don't bother + // with the tougher checks + // the corners must be within 16 of the midpoint + start[2] = mins[2] - 1; + for (x=0 ; x<=1 ; x++) + for (y=0 ; y<=1 ; y++) + { + start[0] = x ? maxs[0] : mins[0]; + start[1] = y ? maxs[1] : mins[1]; + if (gi.pointcontents (start) != CONTENTS_SOLID) + goto realcheck; + } + + return; // we got out easy + +realcheck: + // + // check it for real... + // + start[2] = mins[2]; + + // the midpoint must be within 16 of the bottom + start[0] = stop[0] = (mins[0] + maxs[0])*0.5; + start[1] = stop[1] = (mins[1] + maxs[1])*0.5; + stop[2] = start[2] - 2*stepsize; + trace = gi.trace (start, vec3_origin, vec3_origin, stop, ent, MASK_MONSTERSOLID); + + //if (trace.fraction == 1.0) + // return false; + mid = bottom = trace.endpos[2]; + + currentcorner = 0; + + // the corners must be within 16 of the midpoint + for (x=0 ; x<=1 ; x++) + { + for (y=0 ; y<=1 ; y++) + { + currentcorner++; + + start[0] = stop[0] = x ? maxs[0] : mins[0]; + start[1] = stop[1] = y ? maxs[1] : mins[1]; + + trace = gi.trace (start, vec3_origin, vec3_origin, stop, ent, MASK_MONSTERSOLID); + + if (trace.fraction != 1.0 && trace.endpos[2] > bottom) + bottom = trace.endpos[2]; + if (trace.fraction == 1.0 || mid - trace.endpos[2] > stepsize) + { + nocorner[currentcorner] = 1; + fall = 1; + } + } + } + + if (fall) + { + vec3_t move, forward, right, up, endorigin; + trace_t trace; + int speed = 4; + int movesize = 1; + float randmove = (random()-0.5)/3; + float randmove2 = (random())/3; + + if (nocorner[2] && nocorner[3]) + { + VectorSet(move, movesize+randmove2, randmove, 0); + } + else if (nocorner[3] && nocorner[1]) + { + VectorSet(move, randmove, (-movesize)+randmove2, 0); + } + else if (nocorner[1] && nocorner[0]) + { + VectorSet(move, (-movesize)+randmove2, randmove, 0); + } + else if (nocorner[0] && nocorner[2]) + { + VectorSet(move, randmove, movesize+randmove2, 0); + } + else if (nocorner[2]) + { + VectorSet(move, movesize+randmove, movesize+randmove2, 0); + } + else if (nocorner[0]) + { + VectorSet(move, (-movesize)+randmove, movesize+randmove2, 0); + } + else if (nocorner[3]) + { + VectorSet(move, movesize+randmove, (-movesize)+randmove2, 0); + } + else if (nocorner[1]) + { + VectorSet(move, (-movesize)+randmove, (-movesize)+randmove, 0); + } + + AngleVectors (move, forward, right, up); + + VectorScale (move, speed, move); + VectorAdd(ent->s.origin, move, endorigin); + trace = gi.trace (ent->s.origin, ent->mins, ent->maxs, endorigin, ent, MASK_MONSTERSOLID); + VectorCopy(trace.endpos, ent->s.origin); + //ent->movetype = MOVETYPE_STEP; + ent->groundentity = NULL; + } +} +// END JOSEPH + +// JOSEPH 24-AUG-98 +/* +============= +SV_movestep + +Called by monster program code. +The move will be adjusted for slopes and stairs, but if the move isn't +possible, no move is done, false is returned, and +pr_global_struct->trace_normal is set to the normal of the blocking wall +============= +*/ +//FIXME since we need to test end position contents here, can we avoid doing +//it again later in catagorize position? +qboolean SV_movestep (edict_t *ent, vec3_t move, qboolean relink) +{ + float dz; + vec3_t oldorg, neworg, end; + trace_t trace; + int i; + float stepsize; + vec3_t test; + int contents; + +// BEGIN: Xatrix/Ridah/Navigator/14-apr-1998 + int mask = MASK_MONSTERSOLID; + + if (ent->cast_info.aiflags & AI_PLAYERCLIP) + mask = MASK_PLAYERSOLID; + else if (ent->flags & FL_RESPAWN) // used for moveout command + mask = MASK_SOLID; +// END: Xatrix/Ridah/Navigator/14-apr-1998 + +// try the move + VectorCopy (ent->s.origin, oldorg); + VectorAdd (ent->s.origin, move, neworg); + +// flying monsters don't step up + if ( ent->flags & (FL_SWIM | FL_FLY) ) + { + // try one move with vertical motion, then one without + for (i=0 ; i<2 ; i++) + { + VectorAdd (ent->s.origin, move, neworg); + if (i == 0 && ent->enemy) + { + if (!ent->goalentity) + ent->goalentity = ent->enemy; + dz = ent->s.origin[2] - ent->goalentity->s.origin[2]; + if (ent->goalentity->client) + { + if (dz > 40) + neworg[2] -= 8; + if (!((ent->flags & FL_SWIM) && (ent->waterlevel < 2))) + if (dz < 30) + neworg[2] += 8; + } + else + { + if (dz > 8) + neworg[2] -= 8; + else if (dz > 0) + neworg[2] -= dz; + else if (dz < -8) + neworg[2] += 8; + else + neworg[2] += dz; + + } + } + +// BEGIN: Xatrix/Ridah/Navigator/14-apr-1998 (use modified mask for Grunts) + trace = gi.trace (ent->s.origin, ent->mins, ent->maxs, neworg, ent, mask); +// END: Xatrix/Ridah/Navigator/14-apr-1998 + + // fly monsters don't enter water voluntarily + if (ent->flags & FL_FLY) + { + if (!ent->waterlevel) + { + test[0] = trace.endpos[0]; + test[1] = trace.endpos[1]; + test[2] = trace.endpos[2] + ent->mins[2] + 1; + contents = gi.pointcontents(test); + if (contents & MASK_WATER) + return false; + } + } + + // swim monsters don't exit water voluntarily + if (ent->flags & FL_SWIM) + { + if (ent->waterlevel < 2) + { + test[0] = trace.endpos[0]; + test[1] = trace.endpos[1]; + test[2] = trace.endpos[2] + ent->mins[2] + 1; + contents = gi.pointcontents(test); + if (!(contents & MASK_WATER)) + return false; + } + } + + if (trace.fraction == 1) + { + VectorCopy (trace.endpos, ent->s.origin); + if (relink) + { + gi.linkentity (ent); + G_TouchTriggers (ent); + } + return true; + } + + if (!ent->enemy) + break; + } + + return false; + } + +// push down from a step height above the wished position + if (!(ent->cast_info.aiflags & AI_NOSTEP)) + stepsize = STEPSIZE; + else + stepsize = 1; + +// BEGIN: Xatrix/Ridah/Navigator/03-apr-1998 + if (ent->nav_data.goal_index && ((level.node_data->nodes[ent->nav_data.goal_index-1]->origin[2] - ent->s.origin[2]) > 0)) + { + stepsize += 8; + + if (ent->waterlevel > 2) + stepsize = 1; + } +// END: Xatrix/Ridah/Navigator/03-apr-1998 + + neworg[2] += stepsize; + VectorCopy (neworg, end); + end[2] -= stepsize*2; + + trace = gi.trace (neworg, ent->mins, ent->maxs, end, ent, mask); + + // Ridah, tell this ent to avoid us if possible + if ((trace.ent && trace.ent->svflags & SVF_MONSTER) && (ent->health > 0)) // Ridah, Fixes life after death bug + { + extern void AI_GetAvoidDirection( edict_t *self, edict_t *other ); + + AI_GetAvoidDirection( trace.ent, ent ); + ent->cast_info.currentmove = ent->cast_info.move_avoid_walk; + } + + if (trace.allsolid) + return false; + + if (trace.startsolid) + { + neworg[2] -= stepsize; + trace = gi.trace (neworg, ent->mins, ent->maxs, end, ent, mask); + if (trace.allsolid || trace.startsolid || trace.fraction == 0) + { + return false; + } + } + +// BEGIN: Xatrix/Ridah/Navigator/03-apr-1998 + // don't let monsters walk onto other monsters + if ((trace.fraction < 1) && (trace.ent->svflags & SVF_MONSTER)) + { + return false; + } +// END: Xatrix/Ridah/Navigator/03-apr-1998 + + // don't go in to lava/slime + if (ent->waterlevel < 2) + { + test[0] = trace.endpos[0]; + test[1] = trace.endpos[1]; + test[2] = trace.endpos[2] + ent->mins[2] + 16; + contents = gi.pointcontents(test); + + if (contents & (CONTENTS_LAVA|CONTENTS_SLIME)) + return false; + } + + if (trace.fraction == 1) + { + // if monster had the ground pulled out, go ahead and fall + if ( ent->flags & FL_PARTIALGROUND ) + { + VectorAdd (ent->s.origin, move, ent->s.origin); + if (relink) + { + gi.linkentity (ent); + G_TouchTriggers (ent); + } + ent->groundentity = NULL; + return true; + } +// BEGIN: Xatrix/Ridah/Navigator/14-apr-1998 + else + { + float fall_dist=0; + + // never fall into water + VectorCopy(trace.endpos, neworg); + VectorCopy(neworg, end); + end[2] -= 2048; + + trace = gi.trace( neworg, ent->mins, ent->maxs, end, ent, mask ); + + test[0] = trace.endpos[0]; + test[1] = trace.endpos[1]; + test[2] = trace.endpos[2] + ent->mins[2] + 16; + contents = gi.pointcontents(test); + + if (contents & MASK_WATER) + return false; + + +/* + // let them fall into water if they should be doing so + if ( ent->waterlevel + || (ent->count && level.node_data->nodes[ent->count-1]->waterlevel) + || (ent->goalentity && ent->goalentity->waterlevel)) + { + VectorAdd (ent->s.origin, move, ent->s.origin); + VectorScale(move, 10, ent->velocity); + ent->groundentity = NULL; + + return true; + } +*/ + + if ( (ent->nav_data.goal_index && ((fall_dist = level.node_data->nodes[ent->nav_data.goal_index-1]->origin[2] - ent->s.origin[2]) < 0)) + || (ent->goalentity && (( fall_dist = ent->goalentity->s.origin[2] - ent->s.origin[2]) < 0))) + { +// VectorCopy(trace.endpos, neworg); + VectorCopy(neworg, end); + end[2] += (fall_dist - 48); + + trace = gi.trace( neworg, ent->mins, ent->maxs, end, ent, mask ); + + if (trace.fraction < 1) + { // start to fall + VectorAdd (ent->s.origin, move, ent->s.origin); + VectorScale(move, 5, ent->velocity); + ent->groundentity = NULL; + + return true; + } + } + } +// END: Xatrix/Ridah/Navigator/23-mar-1998 + + // walked off an edge + return false; + } + + // check point traces down for dangling corners + VectorCopy (trace.endpos, ent->s.origin); + + if (!M_CheckBottom (ent)) + { + if ( ent->flags & FL_PARTIALGROUND ) + { // entity had floor mostly pulled out from underneath it + // and is trying to correct + if (relink) + { + gi.linkentity (ent); + G_TouchTriggers (ent); + } + return true; + } + + // Joseph + if (!ent->fallerflag) + { + // Ridah, don't bother checking all corners +// VectorCopy (oldorg, ent->s.origin); +// return false; + } + else + { + vec3_t forward, right, up; + int speed = 140; + + // JOSEPH 7-OCT-98 + // Stop any drag sound + ent->s.sound = 0; + + // Object is falling + ent->fallingflag = 1; + // END JOSEPH + + // JOSEPH 17-MAY-99 + if (!ent->pullingflag) + { + AngleVectors (move, forward, right, up); + + VectorScale (move, speed, ent->velocity); + VectorMA (ent->velocity, 100, up, ent->velocity); + ent->movetype = MOVETYPE_TOSS; + } + // END JOSEPH + + // JOSEPH 17-MAY-99 + //VectorAdd (ent->s.origin, move, ent->s.origin); + // END JOSEPH + if (relink) + { + gi.linkentity (ent); + G_TouchTriggers (ent); + } + ent->groundentity = NULL; + return true; + } + } + + if ( ent->flags & FL_PARTIALGROUND ) + { + ent->flags &= ~FL_PARTIALGROUND; + } + ent->groundentity = trace.ent; + ent->groundentity_linkcount = trace.ent->linkcount; + +// the move is ok + if (relink) + { + gi.linkentity (ent); + G_TouchTriggers (ent); + } + return true; +} +// END JOSEPH + +//============================================================================ + +/* +=============== +M_ChangeYaw + +=============== +*/ +void M_ChangeYaw (edict_t *ent) +{ + float ideal; + float current; + float move; + float speed; + + current = anglemod(ent->s.angles[YAW]); + ideal = ent->ideal_yaw; + + if (current == ideal) + return; + + move = ideal - current; + speed = ent->yaw_speed; + + // Ridah, turn faster if we have an enemy + if (ent->enemy) + { + speed *= 4; + if (speed > 80) + speed = 80; + } + else if (ent->cast_info.currentmove && (ent->cast_info.currentmove->frame->dist)) + { // dependant on speed + speed *= (fabs(ent->cast_info.currentmove->frame->dist) / 16.0); + if (speed > 60) + speed = 60; + if (speed < 20) + speed = 20; + +//if (ent->name) +//gi.dprintf( "%s yaw = %2.1f\n", ent->name, speed ); + } + + if (ideal > current) + { + if (move >= 180) + move = move - 360; + } + else + { + if (move <= -180) + move = move + 360; + } + if (move > 0) + { + if (move > speed) + move = speed; + } + else + { + if (move < -speed) + move = -speed; + } + + ent->s.angles[YAW] = anglemod (current + move); +} + +void M_ChangeYawOld (edict_t *ent) +{ + float ideal; + float current; + float move; + float speed; + + current = anglemod (ent->s.angles[YAW]); + ideal = ent->ideal_yaw; + + if (current == ideal) + return; + + move = ideal - current; + speed = ent->yaw_speed; + + if (ideal > current) + { + if (move >= 180) + move = move - 360; + } + else + { + if (move <= -180) + move = move + 360; + } + if (move > 0) + { + if (move > speed) + move = speed; + } + else + { + if (move < -speed) + move = -speed; + } + + ent->s.angles[YAW] = anglemod (current + move); +} + +/* +====================== +SV_StepDirection + +Turns to the movement direction, and walks the current distance if +facing it. + +====================== +*/ +qboolean SV_StepDirection (edict_t *ent, float yaw, float dist) +{ + vec3_t move, oldorigin; + float delta; + + ent->ideal_yaw = yaw; + M_ChangeYaw (ent); + + yaw = yaw*M_PI*2 / 360; + move[0] = cos(yaw)*dist; + move[1] = sin(yaw)*dist; + move[2] = 0; + + VectorCopy (ent->s.origin, oldorigin); + if (SV_movestep (ent, move, false)) + { + delta = ent->s.angles[YAW] - ent->ideal_yaw; + if (delta > 45 && delta < 315) + { // not turned far enough, so don't take the step + VectorCopy (oldorigin, ent->s.origin); + } + gi.linkentity (ent); + G_TouchTriggers (ent); + return true; + } + gi.linkentity (ent); + G_TouchTriggers (ent); + return false; +} + +/* +====================== +SV_FixCheckBottom + +====================== +*/ +void SV_FixCheckBottom (edict_t *ent) +{ + ent->flags |= FL_PARTIALGROUND; +} + + + +/* +================ +SV_NewChaseDir + +================ +*/ +#define DI_NODIR -1 +void SV_NewChaseDir (edict_t *actor, edict_t *enemy, float dist) +{ + float deltax,deltay; + float d[3]; + float tdir, olddir, turnaround; + + //FIXME: how did we get here with no enemy + if (!enemy) + return; + + olddir = anglemod( (int)(actor->ideal_yaw/45)*45 ); + turnaround = anglemod(olddir - 180); + + deltax = enemy->s.origin[0] - actor->s.origin[0]; + deltay = enemy->s.origin[1] - actor->s.origin[1]; + if (deltax>10) + d[1]= 0; + else if (deltax<-10) + d[1]= 180; + else + d[1]= DI_NODIR; + if (deltay<-10) + d[2]= 270; + else if (deltay>10) + d[2]= 90; + else + d[2]= DI_NODIR; + +// try direct route + if (d[1] != DI_NODIR && d[2] != DI_NODIR) + { + if (d[1] == 0) + tdir = d[2] == 90 ? 45 : 315; + else + tdir = d[2] == 90 ? 135 : 215; + + if (tdir != turnaround && SV_StepDirection(actor, tdir, dist)) + return; + } + +// try other directions + if ( ((rand()&3) & 1) || abs(deltay)>abs(deltax)) + { + tdir=d[1]; + d[1]=d[2]; + d[2]=tdir; + } + + if (d[1]!=DI_NODIR && d[1]!=turnaround + && SV_StepDirection(actor, d[1], dist)) + return; + + if (d[2]!=DI_NODIR && d[2]!=turnaround + && SV_StepDirection(actor, d[2], dist)) + return; + +/* there is no direct path to the player, so pick another direction */ + + if (olddir!=DI_NODIR && SV_StepDirection(actor, olddir, dist)) + return; + + if (rand()&1) /*randomly determine direction of search*/ + { + for (tdir=0 ; tdir<=315 ; tdir += 45) + if (tdir!=turnaround && SV_StepDirection(actor, tdir, dist) ) + return; + } + else + { + for (tdir=315 ; tdir >=0 ; tdir -= 45) + if (tdir!=turnaround && SV_StepDirection(actor, tdir, dist) ) + return; + } + + if (turnaround != DI_NODIR && SV_StepDirection(actor, turnaround, dist) ) + return; + + actor->ideal_yaw = olddir; // can't move + +// if a bridge was pulled out from underneath a monster, it may not have +// a valid standing position at all + + if (!M_CheckBottom (actor)) + SV_FixCheckBottom (actor); +} + +/* +====================== +SV_CloseEnough + +====================== +*/ +qboolean SV_CloseEnough (edict_t *ent, edict_t *goal, float dist) +{ + int i; + + for (i=0 ; i<3 ; i++) + { + if (goal->absmin[i] > ent->absmax[i] + dist) + return false; + if (goal->absmax[i] < ent->absmin[i] - dist) + return false; + } + return true; +} + + +/* +====================== +M_MoveToGoal +====================== +*/ +void M_MoveToGoal (edict_t *ent, float dist) +{ + edict_t *goal; + + goal = ent->goalentity; + + if (!ent->groundentity && !(ent->flags & (FL_FLY|FL_SWIM))) + return; + +// if the next step hits the enemy, return immediately + if (ent->enemy && SV_CloseEnough (ent, ent->enemy, dist) ) + return; + +// bump around... + if ( (rand()&3)==1 || !SV_StepDirection (ent, ent->ideal_yaw, dist)) + { + if (ent->inuse) + SV_NewChaseDir (ent, goal, dist); + } +} + + +/* +=============== +M_walkmove +=============== +*/ +qboolean M_walkmove (edict_t *ent, float yaw, float dist) +{ + vec3_t move; + qboolean rval; +// qboolean changezval = false; + + if (ent->svflags & SVF_MONSTER && dist >= 28) + dist = 28; + // gi.dprintf ("%s: tried to move %5.2f\n", ent->classname, dist); + + if (!ent->groundentity && !(ent->flags & (FL_FLY|FL_SWIM))) + return false; + + yaw = yaw*M_PI*2 / 360; + + move[0] = cos(yaw)*dist; + move[1] = sin(yaw)*dist; + move[2] = 0; +/* + if (ent->maxs[2] == DUCKING_MAX_Z) + { + ent->maxs[2] = 8;//4; // Ridah, as requested + changezval = true; + } +*/ + rval = SV_movestep(ent, move, true); +/* + if (changezval) + { + ent->maxs[2] = DUCKING_MAX_Z; + } +*/ + + return rval; +} diff --git a/gamesrc/M_PLAYER.H b/gamesrc/M_PLAYER.H new file mode 100644 index 0000000..bef60b0 --- /dev/null +++ b/gamesrc/M_PLAYER.H @@ -0,0 +1,388 @@ +#define FRAME_tgun_rdy_01 0 +#define FRAME_tgun_rdy_02 1 +#define FRAME_tgun_rdy_03 2 +#define FRAME_tgun_rdy_04 3 +#define FRAME_tgun_rdy_05 4 +#define FRAME_tgun_rdy_06 5 +#define FRAME_tgun_rdy_07 6 +#define FRAME_tgun_rdy_08 7 +#define FRAME_tgun_rdy_09 8 +#define FRAME_tgun_rdy_10 9 +#define FRAME_tgun_rdy_11 10 +#define FRAME_tgun_rdy_12 11 +#define FRAME_tgun_rdy_13 12 +#define FRAME_tgun_rdy_14 13 +#define FRAME_tgun_rdy_15 14 +#define FRAME_tgun_rdy_16 15 +#define FRAME_tgun_rdy_17 16 +#define FRAME_tgun_rdy_18 17 +#define FRAME_tgun_rdy_19 18 +#define FRAME_tgun_rdy_20 19 +#define FRAME_tgun_rdy_21 20 +#define FRAME_tgun_rdy_22 21 +#define FRAME_tgun_rdy_23 22 +#define FRAME_tgun_rdy_24 23 +#define FRAME_tgun_rdy_25 24 +#define FRAME_tgun_rdy_26 25 +#define FRAME_tgun_rdy_27 26 +#define FRAME_tgun_rdy_28 27 +#define FRAME_tgun_rdy_29 28 +#define FRAME_tgun_rdy_30 29 +#define FRAME_tgun_rdy_31 30 +#define FRAME_tgun_rdy_32 31 +#define FRAME_tg_shoot_01 32 +#define FRAME_tg_shoot_02 33 +#define FRAME_tg_shoot_03 34 +#define FRAME_tg_shoot_04 35 +#define FRAME_tg_shoot_05 36 +#define FRAME_tg_bird_01 37 +#define FRAME_tg_bird_02 38 +#define FRAME_tg_bird_03 39 +#define FRAME_tg_bird_04 40 +#define FRAME_tg_bird_05 41 +#define FRAME_tg_bird_06 42 +#define FRAME_tg_bird_07 43 +#define FRAME_tg_bird_08 44 +#define FRAME_tg_bird_09 45 +#define FRAME_tg_bird_10 46 +#define FRAME_tg_crch_grab_01 47 +#define FRAME_tg_crch_grab_02 48 +#define FRAME_tg_crch_grab_03 49 +#define FRAME_tg_crch_grab_04 50 +#define FRAME_tg_crch_grab_05 51 +#define FRAME_tg_crch_grab_06 52 +#define FRAME_tg_crch_grab_07 53 +#define FRAME_tg_crch_grab_08 54 +#define FRAME_tg_crch_grab_09 55 +#define FRAME_tg_crch_grab_10 56 +#define FRAME_tg_crch_grab_11 57 +#define FRAME_tg_crch_grab_12 58 +#define FRAME_tg_crch_grab_13 59 +#define FRAME_tg_crch_grab_14 60 +#define FRAME_tg_crch_grab_15 61 +#define FRAME_tg_crch_grab_16 62 +#define FRAME_tg_chin_flip_01 63 +#define FRAME_tg_chin_flip_02 64 +#define FRAME_tg_chin_flip_03 65 +#define FRAME_tg_chin_flip_04 66 +#define FRAME_tg_chin_flip_05 67 +#define FRAME_tg_chin_flip_06 68 +#define FRAME_tg_chin_flip_07 69 +#define FRAME_tg_chin_flip_08 70 +#define FRAME_tg_chin_flip_09 71 +#define FRAME_tg_chin_flip_10 72 +#define FRAME_tg_chin_flip_11 73 +#define FRAME_tg_chin_flip_12 74 +#define FRAME_tg_chin_flip_13 75 +#define FRAME_tg_chin_flip_14 76 +#define FRAME_tg_chin_flip_15 77 +#define FRAME_1pstl_rdy_01 78 +#define FRAME_1pstl_rdy_02 79 +#define FRAME_1pstl_rdy_03 80 +#define FRAME_1pstl_rdy_04 81 +#define FRAME_1pstl_rdy_05 82 +#define FRAME_1pstl_rdy_06 83 +#define FRAME_1pstl_rdy_07 84 +#define FRAME_1pstl_rdy_08 85 +#define FRAME_1pstl_rdy_09 86 +#define FRAME_1pstl_rdy_10 87 +#define FRAME_1pstl_rdy_11 88 +#define FRAME_1pstl_rdy_12 89 +#define FRAME_1pstl_rdy_13 90 +#define FRAME_1pstl_rdy_14 91 +#define FRAME_1pstl_rdy_15 92 +#define FRAME_1pstl_rdy_16 93 +#define FRAME_1pstl_rdy_17 94 +#define FRAME_1pstl_rdy_18 95 +#define FRAME_1pstl_rdy_19 96 +#define FRAME_1pstl_rdy_20 97 +#define FRAME_1pstl_rdy_21 98 +#define FRAME_1pstl_rdy_22 99 +#define FRAME_1pstl_rdy_23 100 +#define FRAME_p_std_shoot_01 101 +#define FRAME_p_std_shoot_02 102 +#define FRAME_p_std_shoot_03 103 +#define FRAME_p_std_shoot_04 104 +#define FRAME_walk_gdown_01 105 +#define FRAME_walk_gdown_02 106 +#define FRAME_walk_gdown_03 107 +#define FRAME_walk_gdown_04 108 +#define FRAME_walk_gdown_05 109 +#define FRAME_walk_gdown_06 110 +#define FRAME_walk_gdown_07 111 +#define FRAME_walk_gdown_08 112 +#define FRAME_walk_gdown_09 113 +#define FRAME_walk_gdown_10 114 +#define FRAME_walk_tg_sht_01 115 +#define FRAME_walk_tg_sht_02 116 +#define FRAME_walk_tg_sht_03 117 +#define FRAME_walk_tg_sht_04 118 +#define FRAME_walk_tg_sht_05 119 +#define FRAME_walk_tg_sht_06 120 +#define FRAME_walk_tg_sht_07 121 +#define FRAME_walk_tg_sht_08 122 +#define FRAME_walk_tg_sht_09 123 +#define FRAME_walk_tg_sht_10 124 +#define FRAME_run_tg_sht_01 125 +#define FRAME_run_tg_sht_02 126 +#define FRAME_run_tg_sht_03 127 +#define FRAME_run_tg_sht_04 128 +#define FRAME_run_tg_sht_05 129 +#define FRAME_run_tg_sht_06 130 +#define FRAME_rsd_tg_run_01 131 +#define FRAME_rsd_tg_run_02 132 +#define FRAME_rsd_tg_run_03 133 +#define FRAME_rsd_tg_run_04 134 +#define FRAME_rsd_tg_run_05 135 +#define FRAME_rsd_tg_run_06 136 +#define FRAME_lsd_tg_run_01 137 +#define FRAME_lsd_tg_run_02 138 +#define FRAME_lsd_tg_run_03 139 +#define FRAME_lsd_tg_run_04 140 +#define FRAME_lsd_tg_run_05 141 +#define FRAME_lsd_tg_run_06 142 +#define FRAME_p_walk_sht_01 143 +#define FRAME_p_walk_sht_02 144 +#define FRAME_p_walk_sht_03 145 +#define FRAME_p_walk_sht_04 146 +#define FRAME_p_walk_sht_05 147 +#define FRAME_p_walk_sht_06 148 +#define FRAME_p_walk_sht_07 149 +#define FRAME_p_walk_sht_08 150 +#define FRAME_p_walk_sht_09 151 +#define FRAME_p_walk_sht_10 152 +#define FRAME_p_run_shoot_01 153 +#define FRAME_p_run_shoot_02 154 +#define FRAME_p_run_shoot_03 155 +#define FRAME_p_run_shoot_04 156 +#define FRAME_p_run_shoot_05 157 +#define FRAME_p_run_shoot_06 158 +#define FRAME_p_rside_run_01 159 +#define FRAME_p_rside_run_02 160 +#define FRAME_p_rside_run_03 161 +#define FRAME_p_rside_run_04 162 +#define FRAME_p_rside_run_05 163 +#define FRAME_p_rside_run_06 164 +#define FRAME_p_lside_run_01 165 +#define FRAME_p_lside_run_02 166 +#define FRAME_p_lside_run_03 167 +#define FRAME_p_lside_run_04 168 +#define FRAME_p_lside_run_05 169 +#define FRAME_p_lside_run_06 170 +#define FRAME_melee_rdy_01 171 +#define FRAME_melee_rdy_02 172 +#define FRAME_melee_rdy_03 173 +#define FRAME_melee_rdy_04 174 +#define FRAME_melee_rdy_05 175 +#define FRAME_melee_rdy_06 176 +#define FRAME_melee_rdy_07 177 +#define FRAME_melee_rdy_08 178 +#define FRAME_melee_rdy_09 179 +#define FRAME_melee_rdy_10 180 +#define FRAME_melee_rdy_11 181 +#define FRAME_melee_rdy_12 182 +#define FRAME_melee_rdy_13 183 +#define FRAME_melee_rdy_14 184 +#define FRAME_melee_rdy_15 185 +#define FRAME_melee_rdy_16 186 +#define FRAME_melee_rdy_17 187 +#define FRAME_melee_rdy_18 188 +#define FRAME_melee_rdy_19 189 +#define FRAME_melee3_01 190 +#define FRAME_melee3_02 191 +#define FRAME_melee3_03 192 +#define FRAME_melee3_04 193 +#define FRAME_melee3_05 194 +#define FRAME_melee3_06 195 +#define FRAME_melee3_07 196 +#define FRAME_melee4_01 197 +#define FRAME_melee4_02 198 +#define FRAME_melee4_03 199 +#define FRAME_melee4_04 200 +#define FRAME_melee4_05 201 +#define FRAME_melee4_06 202 +#define FRAME_run_melee_01 203 +#define FRAME_run_melee_02 204 +#define FRAME_run_melee_03 205 +#define FRAME_run_melee_04 206 +#define FRAME_run_melee_05 207 +#define FRAME_run_melee_06 208 +#define FRAME_run_gun_dn_01 209 +#define FRAME_run_gun_dn_02 210 +#define FRAME_run_gun_dn_03 211 +#define FRAME_run_gun_dn_04 212 +#define FRAME_run_gun_dn_05 213 +#define FRAME_run_gun_dn_06 214 +#define FRAME_jump_01 215 +#define FRAME_jump_02 216 +#define FRAME_jump_03 217 +#define FRAME_jump_04 218 +#define FRAME_jump_05 219 +#define FRAME_jump_06 220 +#define FRAME_jump_07 221 +#define FRAME_clmb_loop_01 222 +#define FRAME_clmb_loop_02 223 +#define FRAME_clmb_loop_03 224 +#define FRAME_clmb_loop_04 225 +#define FRAME_clmb_loop_05 226 +#define FRAME_clmb_loop_06 227 +#define FRAME_clmb_loop_07 228 +#define FRAME_clmb_loop_08 229 +#define FRAME_clmb_loop_09 230 +#define FRAME_death1_01 231 +#define FRAME_death1_02 232 +#define FRAME_death1_03 233 +#define FRAME_death1_04 234 +#define FRAME_death1_05 235 +#define FRAME_death1_06 236 +#define FRAME_death1_07 237 +#define FRAME_death1_08 238 +#define FRAME_death1_09 239 +#define FRAME_death1_10 240 +#define FRAME_death1_11 241 +#define FRAME_death1_12 242 +#define FRAME_death1_13 243 +#define FRAME_death1_14 244 +#define FRAME_death1_15 245 +#define FRAME_death1_16 246 +#define FRAME_death1_17 247 +#define FRAME_death1_18 248 +#define FRAME_death1_19 249 +#define FRAME_death2_01 250 +#define FRAME_death2_02 251 +#define FRAME_death2_03 252 +#define FRAME_death2_04 253 +#define FRAME_death2_05 254 +#define FRAME_death2_06 255 +#define FRAME_death2_07 256 +#define FRAME_death2_08 257 +#define FRAME_death2_09 258 +#define FRAME_death2_10 259 +#define FRAME_death2_11 260 +#define FRAME_death2_12 261 +#define FRAME_death2_13 262 +#define FRAME_death2_14 263 +#define FRAME_death2_15 264 +#define FRAME_death2_16 265 +#define FRAME_death3_01 266 +#define FRAME_death3_02 267 +#define FRAME_death3_03 268 +#define FRAME_death3_04 269 +#define FRAME_death3_05 270 +#define FRAME_death3_06 271 +#define FRAME_death3_07 272 +#define FRAME_death3_08 273 +#define FRAME_death3_09 274 +#define FRAME_death3_10 275 +#define FRAME_death3_11 276 +#define FRAME_death3_12 277 +#define FRAME_death3_13 278 +#define FRAME_death3_14 279 +#define FRAME_death3_15 280 +#define FRAME_death3_16 281 +#define FRAME_death3_17 282 +#define FRAME_death3_18 283 +#define FRAME_death3_19 284 +#define FRAME_death3_20 285 +#define FRAME_death3_21 286 +#define FRAME_death3_22 287 +#define FRAME_death3_23 288 +#define FRAME_death3_24 289 +#define FRAME_death3_25 290 +#define FRAME_death3_26 291 +#define FRAME_death3_27 292 +#define FRAME_death3_28 293 +#define FRAME_death4_01 294 +#define FRAME_death4_02 295 +#define FRAME_death4_03 296 +#define FRAME_death4_04 297 +#define FRAME_death4_05 298 +#define FRAME_death4_06 299 +#define FRAME_death4_07 300 +#define FRAME_death4_08 301 +#define FRAME_death4_09 302 +#define FRAME_death4_10 303 +#define FRAME_death4_11 304 +#define FRAME_death4_12 305 +#define FRAME_death4_13 306 +#define FRAME_tg_crch_rdy_01 307 +#define FRAME_tg_crch_rdy_02 308 +#define FRAME_tg_crch_rdy_03 309 +#define FRAME_tg_crch_rdy_04 310 +#define FRAME_tg_crch_rdy_05 311 +#define FRAME_tg_crch_rdy_06 312 +#define FRAME_tg_crch_rdy_07 313 +#define FRAME_tg_crch_rdy_08 314 +#define FRAME_tg_crch_rdy_09 315 +#define FRAME_tg_crch_rdy_10 316 +#define FRAME_tg_crch_rdy_11 317 +#define FRAME_tg_crch_rdy_12 318 +#define FRAME_tg_crch_rdy_13 319 +#define FRAME_tg_crch_rdy_14 320 +#define FRAME_tg_crch_rdy_15 321 +#define FRAME_tg_crch_rdy_16 322 +#define FRAME_tg_crch_rdy_17 323 +#define FRAME_tg_crch_rdy_18 324 +#define FRAME_tg_crch_rdy_19 325 +#define FRAME_tg_crch_rdy_20 326 +#define FRAME_tg_crch_rdy_21 327 +#define FRAME_tg_crch_rdy_22 328 +#define FRAME_tg_crch_rdy_23 329 +#define FRAME_tg_crch_rdy_24 330 +#define FRAME_tg_crch_rdy_25 331 +#define FRAME_tg_crch_rdy_26 332 +#define FRAME_tg_crch_rdy_27 333 +#define FRAME_crouch_shoot_01 334 +#define FRAME_crouch_shoot_02 335 +#define FRAME_crouch_shoot_03 336 +#define FRAME_crouch_shoot_04 337 +#define FRAME_crouch_shoot_05 338 +#define FRAME_crouch_shoot_06 339 +#define FRAME_crch_shuf_01 340 +#define FRAME_crch_shuf_02 341 +#define FRAME_crch_shuf_03 342 +#define FRAME_crch_shuf_04 343 +#define FRAME_crch_shuf_05 344 +#define FRAME_1p_crch_rdy_01 345 +#define FRAME_1p_crch_rdy_02 346 +#define FRAME_1p_crch_rdy_03 347 +#define FRAME_1p_crch_rdy_04 348 +#define FRAME_1p_crch_rdy_05 349 +#define FRAME_1p_crch_rdy_06 350 +#define FRAME_1p_crch_rdy_07 351 +#define FRAME_1p_crch_rdy_08 352 +#define FRAME_1p_crch_rdy_09 353 +#define FRAME_1p_crch_rdy_10 354 +#define FRAME_1p_crch_rdy_11 355 +#define FRAME_1p_crch_rdy_12 356 +#define FRAME_1p_crch_rdy_13 357 +#define FRAME_1p_crch_rdy_14 358 +#define FRAME_1p_crch_rdy_15 359 +#define FRAME_1p_crch_rdy_16 360 +#define FRAME_1p_crch_rdy_17 361 +#define FRAME_1p_crch_rdy_18 362 +#define FRAME_p_crch_sht_01 363 +#define FRAME_p_crch_sht_02 364 +#define FRAME_p_crch_sht_03 365 +#define FRAME_p_crch_sht_04 366 +#define FRAME_p_crch_sht_05 367 +#define FRAME_p_crch_walk_01 368 +#define FRAME_p_crch_walk_02 369 +#define FRAME_p_crch_walk_03 370 +#define FRAME_p_crch_walk_04 371 +#define FRAME_p_crch_walk_05 372 +#define FRAME_p_crch_walk_06 373 +#define FRAME_crouch_death_01 374 +#define FRAME_crouch_death_02 375 +#define FRAME_crouch_death_03 376 +#define FRAME_crouch_death_04 377 +#define FRAME_crouch_death_05 378 +#define FRAME_crouch_death_06 379 +#define FRAME_crouch_death_07 380 +#define FRAME_crouch_death_08 381 +#define FRAME_crouch_death_09 382 +#define FRAME_crouch_death_10 383 +#define FRAME_crouch_death_11 384 +#define FRAME_crouch_death_12 385 + +#define MODEL_SCALE 1.000000 diff --git a/gamesrc/NavLib/NavLib.lib b/gamesrc/NavLib/NavLib.lib new file mode 100644 index 0000000000000000000000000000000000000000..3c4682b7efceab75590ade3932220e013c3a01fd GIT binary patch literal 61678 zcmeHw3w%`7wfC812qQ#hkU=A$3@{)fVju(vQ8Rf=2qBM2LJ};55Rwceh6KY5q6UOc zf=mvBvodZ@aazH7mWPsrA;Zbd9LkRhsK5ibGV=mX*GiCBO%$!6ns3GZ%h{s;H^8k-sfy z^kuJaYih`AYHzIfHMO;>-nngSR@V7EZR=E@f~JN>{d;+1UH$61l`V}WZ4Hg3e&0HT z=d}4-8w5!?vewknP~PVEH43kWwe3xqyY#bRN7v&)SuK$Zc!g`r5iC zYH1v9pyn&UJ6h}3G}ZH$wza;dHBEP-m9_fU)OuU$+NlW;EEugtdqeYSY^X)^t4E;F z4XN2KgRYqA$<24WvSvki7D9()%{F+>DqNJE?`mIZ^ekBb&)bcjX$5)3xh`bIfI7P% zr?|kirmm^g=v|tfztFX+ZcU@XJH4dTUF@oFXlQCT_|IKfT98e=8|r*@#*o5AIXSMC zb?X`W~!Tr4i=4O5HguzS`Wn zmU=%>8kyqEQ~DDmgFN&ko}vW{FOtNSexI)mS=P}NxJq(LST{02OpWz^Ev7}Tf(0d< zq#DJ=^gR`ezZF`XcL7T8qY@RlN{bdPeQMs60u()v>Tf7r-pA!PwKgnht7~z$`nU&r zxQ1+Wi|bjI1qbq^9*?820*S&=i%HRSvq_uHi`Hh)0{-@O=y#D%KSjG9`bX`Cvm01U zi`#M=TUwM1pv--Z|KC5Bo%DFS=rq64fH8X?y zA1!nsCCd`MGNaz8g$=X_1qYqeLZR3Ppyi^V}6#=|~jyZA9nS>CXE0 zMgvt|c3~VUR&=~WW#+8NHEJQhD328^?}ZH|TMVs+E{2z3gTJ1Y3l*JF0ANVx;cL$GTVQZ5wN^O-2tA*)Ckw%ZdeN|%=rpj6MQ?eM*{zE_RMjHC+YEe?9VlB z8K9RRa7^==XN>;ujDr5xQehK(WZ!&dOXYuJj!!WK|97zZPY+fHGAsYdq3plHCcVgj z_@6OZg%Ay9OdWGL3KN#BxY)+-XBd3{(+09}NE~T28|T@%)k?GO+EjS7SsgVWFu-hi z)bN|;-)USP!!G~lr`G>xjr)twg2b5WHyZx`k|6;V=|$&T2*=H)*Bhoaf8&oQSb<{|$LgHx6B|9-xrf&Bm7&sUJ!I5XM9ZirZb zak2Fm8MBpz87qd(SXSPM>9BQ;%T}>(Z)=*?)z4^K*(^l{G_}R_uBVCfSRu^s24%^I zh%jEtFzq~N&K!qhX4>3&84P#Dup-m7(!)3XdhQgbB<;ma2e}yy^c5Yma>7l)-;N~Z zP5d2Z10Ft(>AdFw{(1zSOG@pX;cMLB)8V-Q{|0zthH}p#_~Wp7R?J|t%+7r7D@is0 zMZj4m@Jx6wu-S4V`K?8O7dWq3I3>|>e#Z1oga7(VIF9mk*^s`7eAp5Aa4fubBO=WV zJsFMXisUyPc>AL95HEdpHRkti;C&!)(q;Is?8c>Inb;T^y!8p-)hR`|up$FrAl9OcRK z5d-hQAn~3X1RjagFQf2Wt{D;W65h*$z$1D2O%xvLBZ42{y*Ws{-^IdPxo#a;s7^Es z^__stG1?``{2#z?>o|_;#vfL{5$Pj-^Tu-=<>|6TmkZ^?6@?d_U*eY+g%{0_@QMbB zw|J0v%Lai*`Dlp3i_Qn(tsVp(<)bAEFFL=(&liOkJKhbk@FMiC0}ZwVczY*+F&s7b zc=an`t)Skq`i|10~PwyOTo9q^L#oGBg- zHk;tL41R$_Da#M;)EsHmvG^rPm#R>T3Q?AMC~0>N0g%$^0f(ZdY)WJB8!83PCd)-m zdqq_!&zW2;cR0s+nx$q_S+i7qIM2z7Dp`CWy1If9Re~t>H~58@Ia7JqGUx12k<(e$Y^tbY zK7m7yz=ebwUn#O@^9DZZ_pPw@yd>W{4&AZ*T%gw?`@UoeRaweC3Uj2uA|G)DKC*#* z^4*t*7CUX_I(|0r^Z!@ipgHiIMMM%t5rIk+z-lTF#x1gFw7R1bO~ubH&BF5r{F0=( zc+O#dH{nUOmL%2Tc`bvQ@#M9*8_*Qy_ia3>PqIq~@uZrxORwTd-0hMX#mD_71LA)3 zRlj0DBqK>uIUpYI5a>2ZTr8!X_h$ZT z(+z>=`>j3C$&0%zX}#oOxAq)yd4tQk3%$XP?jmodTk1GV`1#(POcgw4L` z3&50pA&WO-Q^BSjYtQS}p1i7Qp=DLmK)JOrly9;243`&&EP(@x#6s>^`5<6{H<-5r z>^Bv396~Fxr}euiF5=wrt=i=^OAqecgj92h*$OBdKUUb%e*z+hN?;x?z(b`<`Rtan zcKB6P$^K+Cd&}~)-lg(8H3zw5_g!TM9;*wV8uSSH$u*Yn5CXn|pCr3&;jcbyVOpUg zRALTQn9Isps(Ec955y!};~#Q=z!XqbvsA$lN$vFdla{mCy<0Y(mlD>iQHJx)ef8#0 z@uBLnaLu7`zNN3;60SKC&QI>EPY&0-z&M0!wuf`ga)m|CO%7LDcLh z^hv3?t2elDU$D5>f2Djy_=_$GnN~(7YiBM9WNUZ!)XrYtr1^mc3;NHofuGS|leKFy zg$9c7($#D2yaI25{g#mXR2kPzNOWJ#D@s{eJI|xJoDbL`(wlu(%GPkUt^hFlbmA-CdpR0EIEj54wWmDFh;|0aUs^IP7cUM5)l_Hp;yeU(DmM)4A5qG#=V6qsic-sqEyKS+DooB2!Y z_BNtTl5e7ZDA?7}-`_9iT7vG)5TKyDQ+A&Uy8Dolp!305(bo}IFLTUhG5BB(NivtC;>~hpXAtVh{Ryzaxgyy=Mc%kC?6%1GpT!der5kj=5;$xL zZhVGUrw!`HpDeq3A=_Pnzf;|xk}J=W{Qc+wD3017(o|uAe97)-xU$rYj-51YT8&>4 zGoHB(LH!tqvQ#Kf#aj-D_ZJO-8u3e#?!lAWE=K{a#Lq7M3C}tP{Y{1PkzdZa8xZI6 zV?Zl_ktF>APz|FPj%G&otzDW1h~uRK;;~f$TFOH20rUk1?E`cRgN8zZ@Hp-Uw37Kf z0f=+?2_P(rL2SQN{f?=Ae*jd;La7_$w95dMGrzTfN*S~sP!WT^42W~?0mSWtKLT3F zLTQ?Vr=BlnXwQ?cgaM}Of?_K3fDFM$8%gZSmLp7ur*37T9*RW+pZl3Jy&MPDlC znuUD|(K=Vg+8*y;`zSq9-&Y?+<;xe8cHz^gqkC#COdgHIOF`D+!lO#X+Uldo+-|HWW5azWp zIaK*Td3XUCFyWd9!V9>r-5Xv&x)w^86$g|bMq*0GW(&Hvp|CoyMwHN{3?s;tx$N(i zi?_?WNwEk0pUC;obPE#&nr0W(Fmjs|-W+A0>`y`}Z|*Lg+IiGBWxmYpldDzx znP3|y;Q)KW^#z<6L{#o4z<{$A*&)9Vc0oKlyATdf65pb#M za&vyrcA?@^)m+A5JcMg3WMarkV6NCf7Zg*&CTK4q+7aio9S)x*?7ncKH(YZ8H4(UA z@=pu9pA<4&b3vg02JI7QeKjAD2l~CE@HjIA73RN|(D8%K6Uwv!tN8HT=NOmrF%kM#KTi27k?5S=afg%=!MaQ z-7jzyBnq}+MIY>CEuNP{p^yB9~auwaX>UxG1qv+KWHorm1|1wda!kZzaGm z$sw~7){2F!m5qN6d~6|2V?oUzHyHAqMEfs3B1SOQu5IW?VOv7^6@|A(%I64qt0JGb z5Z=aQt_MjG1@{oPkgVjOib&ly4T!jPdyK4GX76~y50UxIY}{AEHJig^HIR7>sTbz)RJ2;T_(HJw136V@LuX9DLBj|AhkVIfes&VAdk=EmF+y0! z=Psb3`44HMMcC$*+tK>bWuo~6cTva4DlN#AHdIhBKsL1e947K;l0#=XJHfdQKRcVN z<4`)@r{I^wW|X)MNOtVK%#Z9z9=bt=X!eDNQc8K~UO+qWOOk$wr;Hz;&Ff}i-0OGNIUxmh^sZtv4(lvm%C4Lj2Z06Sih*P`> zh|i9lRsH@7s1tZe(kPVSWJWPng=PZc_VNlqTNvKGDs&nU=S=1$hiIyUryvs$rzK0A zj|yZ!D_I<5b@Tj&0a0ltN$&%?i-nSYzmxfmKyShMO$2m1^Scg^k3pG$Zevg$pjHNT z0pcTy%afE;%~PSE3VmCJegcTc@ev@NzCv^jlflm}c>wW|$12rtjp`Qw#77>70CCzR zNFE<~i~+<)9u7dfG_nA3&TWAB$m4!MT( zg7`bz#a^XU{B`AEWFqi>orP(@dGK>#R1!Elk0$>t)rZ{|2puM6Xt^>NDS>e;47ELc zuFS$`&YpRi8P%8~I{<;B9^n&tfjNi&d(7*z4MDBD9ZMFk5qK$BP|k76sZNvy31Kfm=!$hFxwTE3!L zBJ)O>F-yiY*=kHq*+Adzae^LP%DQ*3`K>aQ5hk~M*@lR-ef6^Y0=zE`yU+I3h~DZd z8Ro!HbmSOh$dzvg-7s@cLHh}z1;T1xGrCeDC8YR>3vF(UJ`jOvhsWK z-I(3=kC7{-aP-9PVM45ApY2F`Q$mGejuJFYhjQ1b*khHz_efV3Vo71&Rz_F1s-mO2Z|+5Tg5(n#~uL zLcbMb>Mk+~@WB9+{Rfe&TCbeo4YIP8FNKnof;*@Vz;JmDqQPecI2-(Vyry6|L<87S5=SO%; zG5GuzZ^;IqOGO!IoNp$dB>dpW7nAnzp%jqgKFgwf$j+tNG7X2?ossJ9C?A^5GvYj8 z@DWEZNT2j`);#v_0tf#^T>2GKgq3J=;W-4q$J+jKhlcqRL6Rsrkc-+?O~BAx0_sa! zDMV>XG?5$<(b%Q6+Y=c_eOwenqG>G<2=A>EyS}K!bx6cDgvF(=Wh&T2(=YYQ06?YGO4Xd26&lqlK}9&mxL_=RYC4|eR=3gzb|tA@0w5d?{!9r{^YyC1 zM_(71<^pG>E?)ZRXx@;hx){!IJa|&Aq*gw>TdRxT3eLmTxXAkC&JmG!Y8zVKIgWyS zUI4uP)YjIozIC1NRvjOm{LoNKOEcjNk4p0hhVulT#CX+p*BsQ+Z0F)GjbLf6t@Zla z)LLd~*2QIIe3bG@>FioKA}THlO*GLOw8?;83lu>^nE;WyM#N=fap@(2zISM)vHr*J zgp~S|qzpktI7a!o%s@5G_Ud~YRkffZ93#~z1JzB}dw-%)(ewv7!ZA{jY$uvX8p-{o z=3(Sesjppvig1inqv4}bz4T^^PFDX*P!W!iiuxk0G_HBo|GE~}uLKq0@c7>qK3dCV zQ{V{KeC$diQzdgkluxR`M_)TvfRmPbt}AGfgsI z6jWoPBy%jIQsR1iq4RrM3f~Y^gk!8h>K(Ow?aV%bE>n?~zY8kfgX+uqDnnd5-*Egz zqq-9EMvicdaa|1`O~$t6CpK$Ta|IRQ7^%h^s8;>(JZu0Zg_VMeaJb((;lm|LpJs=F zPyOv*`Hn&(NgD+f;TU6|z^Ft)NKdtWZ?#7CRY65KMyiPhs*WFieX2(Fl%OIUBh@5E zrPN^k8Se~@>UBXyI7TX`A+GPd+slKCap#EOGa25RB%H(5V>l>X9|;E@@W-5(e-r=LN#f*eSKn? z5;x{11Qp?+G<53{QP7}z7!gwJi-s3N3aY6rc71<}A_JAuU*H9HBo$o`C~C8C z@K1eX?V7rEx4N=sW@XXREB($j+BaCLKR3?h%5Y_XZhd2Y?V6_6TCcyQm2QlklC(=yJ8V(e0Cv%>g9B_@8)#D^I~y+KLywsWFSUhPsxP#sOvH{u_la4lS@{#_{2K~QdFmUhEY^MBn`V^R=TnYjs3mo&ajyoGdTtA44WqX2X=;C z0^{mF>Js7f^EdQ91;0l{uS)OC(atbkk4%2&U=92dcu&KoB}W!+tQ}f3ZhMwGZk=O0 zv~*)}3L?wn#b`X2exy%$WKF&ljn^BANBrI!1RmKw?+*fx20DKm1RmLXG#RRQv38^} zGmZxIIu{F%(l=xfcogr@LEurm)>wGDF%Bh3v9JhM+-A13PMbd>f3mRb;O7)Pi7wWT zz9$ec12}Ke!~z`63&fI_`S5S1i3OeGZ7rtIoyB z2Z`v-gTSL|Ef@se^}wr$g%_ipZ;r-`YUd;-ozZwv?K~ZLJ7eL+i1!!KcroKW8jXi| zqwDQe;JqVoRkaDGigcsSB?@%a56 zIKyes4i}Ff1&jvHXi}_jRNt}WYA*Z(0*CO(#gZ$kkEdheMd$ZD;Pne!C4Kr0WAS&8 zZ8_VCc<_a*x|yxd<&XZ+d*Q41k^8uxyulne+K;7;hf@CfgAZT2?j!6`vdjDB59N;u z+J8C$%bbrO{H?_IAMF7X3FsUXIH%>0*{l3wDaU+~;mH-mRQ{Oo7W%I>lCcOrl*0GGlKgib#V-ZkFA+srZ)9TPa;1RSiH}YJHvJH;=lw@dQBFf0 z&J@Ir1TA(h5eZUCX30fLCI)jb;idD8^I?5CuBNz99v_M_lhqPIyvqii_RoTw$M`Dw zq{Y6;UH$%1*y*&mj3uXkG_@jp=B{owAr&dj=5lP_b5NUNMI%4yd<-x`n-ln_K@uT{ zHzNsKglwC}%XwSz&5$n`q>qk>z}hpymARjSJKo{}hx3V_B-30g;xdPG#Fi}DU_{?E zUH%awHG~L^Er&?D^{Z*9le-DOB#GvfsgF!zbCc96lO&oeS)**8!1jm?R}aqfsxKB+=qE2OztY z3y4yYBrOEQBoRb+b2o;0g;+al3oII1%qA(#QCvP zl^v~^nprnv7`L$a0ovF29CUoPWAZu&PR@4R&JWI>Az`XPnjzi3k^uI-h>j4)5*cyQ zw?v;e5eIZQ;+TNH_(Rj^?7?<;vM=Zkw!1U!U6PS}bF|6D8Q9 zbtu1p81Xmk8+9?coMzqe4l)qRFRXwFPPO(V%{rd>i*3uC4qr9)b58ZjCi>Wqu#`>t zUb&!#cFI-maH7O$e1t^UBMdDc+1LeIs0f{Rx=|I{w@Z>N827_ICIAM}c9b z#~`f9kbA6@^-bz7a*m=zFLsVicpiD$R^*%{(r!bEjgrn>+KoTGzc(iw+y(&g*eOYf z`8bxF2lkuYLA=7tiR57i;K+6>KE+f`?&MUB#L}7~NgZ8Gi5|T+SZ!=XW zONEM6h}r|kYf+&)RcM7d{2o*x8px?fZO?b;&Lijh zIdPtM;|6t4sAKBnCdc*I2zo6S>u-Y(%sussJ++vj(w4Kw@K^41;yVTF`aIB8%=*Az zN`OSVOZ;VW%t}h%9g5D-!}~4LWj5A%`6h{Oigk^sZ}}y3dw=K3pL(MAA3Zbb5n|oV zmop$D)UOj;Ic-mqch}3-&X195`2h85B1&w>-it7$?}cQvXx$5Vv%a@Q*YTofV4bMI zI<55;YR5}VSbETFO=mqOB{^mvt)eoXpBtBTSE2iyk0UF8{Xv8YfIuW9Dq9@;GvbZ zlBZhiq#sen`*ds16<7eA8+gu~`J0ZPh`=YElo)O&h)!Q5%o4E;n-p^>*%e9-hLX31 z>yyw41g&qLJ`F$S{@7tdQ#3}v&h}!_P1D-=(K-^a7RsF6)k#X80K%|3{q%Q!f zV9*vo4nTJ4KLPO+ysJX*tI%aocNRu*1t1Tj7^nKpQT>(y;_0K^YnvI~HbAuc(=P1= z#BGZ20P13XKL#YM3qahu_#>bageFP!{hITG24<#(gWupW9oqO-2TiFDliF8G>^c!p zKvqC88-I~>JH0Q$kJ}1RhW4szuk3a_X0vu)NhQ?3now4!m{DJl->I8R4=x}XVW&c1 zd$_gpAYLlut!IIOwQ^;lt+bCKRAUkA9K*eR%bZhTpz_6V7M$DQkUypU6QLc4fGO6q z#YfW;z~z#Tqo951+i?PegD+QSHmJ#WWANvBXbbYa$d1I;I|lEeWO=ckZ8)}Z+)pb7 zgDezzM7y|$JVYlfUrMJ;UnX8ufs-LA1~7UKtA+P)?=2l?TxCs1#cZaQy)rF-j1=93HwVcj`p z;d3VZ{?C>KwdnqpNr)`F6e=+;To)Ib$f1xB82ToC7k)|Xw2cjb>=Nm{+ZjY593pAq zc;5uX@%8~)k6)6Mfcjge_E*wr!s7>YTX5{Nf!>=R*?2J5L7GelAN2_eG{8 zX$3Nc{}M`^DdlB=heA2B@!L2WzopRlfsNi+%c8fqgEqEokI)?z%3wnb+$!Ra+XU(( zl$^k!)W8LE$4C~7ZVYE*q1BlOH(pW^s+!hpD?ekQc%~_%I@l+nk^+#4hy*tqC>k-w z8<+O3Hv>aFTFn|-UP$br#g!outS|Hww#ogJf(!kdhGDN!K8`^derAaGa3U7CgMs%j zjnv(++^jtbnWs9Q;k^Ra%u8=Mh|$+LWfb8JWJuN>l!Q=gk%(?FMaPXQjQ1$I?){tJ zvi6=bclKgXXTzW%W&J3!16eXC1ygk?0C$8ryobp$abbu@hXVb=oO!@^Q#YnxI$vII zM=Dcr1QNo%^5QBGj}pmOi7pXDG|A$yZg0d0F(MaY&HWW%!cB?EDny11_oF0ms8WUM zRcNgW`2kt*OJW;oIK?j2?*}R#8N597pc;Bc^_zk!BdN4YUjW4M&Z>S0kVtXhKgltZ z;mv??Tn>iGmdYxxoLG$wiq=j-NjnMmZW7qfpv-?IT1PVa7*v|FwZ5{mTzRz>~Q-R3V44^)Dwo^EW|e9xdH8 za}ZpR3h=3=lZgtK<6y5VP@6@23gyMyv;&M#RvoD~t@sl*?+w{Ue?VmIS-hhVZDvoA zHxV_yct=s%QESgoY(*&ATC`l=PpkyvJzy-_$j+Tpk*{R@k|dfo;oSudB)-J_a`EKd zMHL`ks$Lap1;lBo4mfQ9&<^~Pq#&N0_6LA?JvYGEF=LfZ}Z)7KC zO~>(B{06BR!>Ff-Pe$uI9INZrDd%nB;-2hddPf!t#k&1ezM3W+F=Wh3du|h@0D>=eJnrqkGiu)~@j}(<=TE(F)&Ft!Z_iq}X zm4Xl97-Oe4mT01KBR6ih3xcJ@-XW+6$4G^Y>2kW{vJq$u3e_$_ML0$((lc5L3(qC#=eW10b_XTIMjX}2!hCVDOnn)jz zyX`BN9a2(*zapuGV@wZyPSVm-dU)L|TU2^RF&t74lK{Q6yy9jpJ#z);Q4-IoR?gJL zCYoqEhTMdf-tAg?XsU=D;c)OC;lm}f)(h3&z)j=$&(oxd$X8{lnrAI4g(zuBx-rM0gqOMKe&6k%XjFBAif}-sTYhmBd^CL+?E0_U zG^zH)tK(h*eLIU-^w&75eWHcsxncP?#GXe5ay!^jbiG0o%QlW0n(K)9b|yn2g9 z^?N}@I6U^TkaEQtbK!uumJ8!{ktu?Ta5$elm5&2HwF_$L$`*u@BOiSYPJo}5uis8S zd56M9k`@a-ghN!?B8rKON|8gn;Dd0aCYi)=C`r`vPd;`B{+I|AZk^yfNu)>P>_n)h z69{)w6z9nd#{p)eI=GA+ z;TY>;8hnf;b`8tL7*t5@zi-KW)XfGLUqc^tOU)o}SyGlON8CHfUe)FCpZ{9x*cX4# z^u)SNJl4hG@h{1Xb9s2o+so(1y$F1E?7PO*JJBKJ`UUvvr(dOL@^Dkz;BTtt+Y%x! zHxd<<^Es{^XZ#}W$P(;~H!?EB$O~8nX4Jjv3|W5@l|an6qv#?|(p^*Z*?a98}W8)nb@OzYTZ&6}&<-&$lE!Pc>V z4eB+6G%{SQb?kYH=H@8aKo-4@oy@If;C)5lQpXZ+JtZA@`=kyp);i}Epnn!PR}0gE z3^T@0XAr@Q4a&YKaOj;}yc-v~qwr$i7_eiIcwZhQ-kw3?ePxh%UyFsOGij&{$Q1ZG z@O~(8sXk(rvj+js04JGj9yl@!7?g>p zgF)FUv;YuMC9!YoG=Q+PH3u^pga_QoEJ@m&eZ^19GNgHX-I5Exd3%3>zrUc+rSyQK z5+`>he)Odr*Amd2D?ZDpr^(=;Gn^{k;+%Sl5al;;(o7zff#Fhx{l6a)vS)_2@1#8y z;#6(=&`Tq9WZNc=dt>Ey9NzYE6}s~I9=cqH*xA%57ZdM*uaOsK(~ z5f)ACsJ&3h+S&R`4xw6@tl6akK)jC206FkWVztPj5Z-wxebC^3530~RfN1D%mxiGV zIYbjt972G!0Bs_y6aJ%4mPs7&WEp-DRz1-h-DjC@T@kkaRikEhI&Xra?HQ+A z36t8Uu;&F1wV8kY4YPw2AiWO!Voh^t zgSbS-hopn}1pEH*!{~`7%73D11)kJPnLnO&ix$^T_>eR6xV$ZGZOYss^U)9Rsr6}7 zbHs|*Doc&ZwBU=F5mEA$C8!9; zNJT?ijq3EK75N%fji4eN&gm}UL#>vkb_Y5+g?dKg;M5#7#3oIcXrexqu%CbJ=t4~r zx~9QIy(l*{kfHQu{Ro0+5T!qxA2jkhC~+2v{R zL$RlHfNNN>r*vgTy^-8t@gtP>ooY@C#a`3_XnAN9tzjS7CE?ya-IP1wku*lS z&4j1Zm=sR>bQpyAPS&M!D>BwDCW>+liLK7X+Qmd{CJzFSqs&;%PkqP?$Ac3cOl@OVt+3nmz{qCg5by_X#-Cps_|R)MMN&a0rha%Fm_O3gkyR zAppEx0ykc~q|P1!&O;-Kihn+gRd3S}_6U8e(79OkHUZ(!4+4+M`RpL@sQ?5NBovX;l<`xAB7jq z55*#_iiHbogET-q?6_gG(Q!gW}QRO6#R1<(8+O zg_*`TY`ss12+~Hfy?E+(Tz=#8dSeYaqpihMA6Z8jkYhH4%oI!v03yR7mqF-0MCdhu zNTT^H?{o%HgWz}>fU=k$3B!#Hq7Z6=*td-*$MXQ40?k)&0L4(&GS1;%nFaBeZuH&Ce#jCnsVyc9gu< zEa*WjKZl)D?`}D`8MvkXH)*FdCU9-8zy$|ph;1E@SMaESy1cdq%jx+d+be<2D`N_v z3jFxhwN%haY~y|@AUnIvfEVqT@y?;2s}KO@eu*c_i+;?gE&)szkG9~OL>HaP?%gu) znS_p!OdwAY36hi6TXPV%q(yCcJSVn1%AaD(V~D7++dCB#%wBn?^9D;C-eA?lZOffuH{Z{M zCF8;TDf7cV`{utVuCr#I_E|DQQ(^P?61SB&<*sKesNem*%jBKP4Ov6G4{XbydIrH$ zdFHCDJ(i$vo08RjN#0GVKAdBwGGW;jh-au;2#P!(KjW^~B8 zD{#nh{-DV>bTyURne_7q6BPK`^9RieeAW4b76l%8{-8~PhcGh63}t@)pu=~m!H36> z_1q-|*nUyQRR=@o$;9^z@0N_8CUjiI$k?NQ^utJso=q~lZpCof%Fdl+*xrdBKNjM4 zK>VU)E=ARN=h8-P=q?sI6b1GygY1CTGl(WNH#2Akpq&h&DN8?tXnN2GC`qD&(QjkW zYCx?F@&US)L7M?lf^qR7phgC52gFlFlY=Xn-`7+>I<&l&`Tb1wI|hiWp;rNMrFR?< z&(TRh%NWHwfH>#k>?O4&rFpnu9IFTGS2s3HcaS=2;3|i%T&`P*^YpMXoOTj9CQVLj zn(vrAtI4sxX&v@^rqK@2c78{*V`_uHo=(HR)*+QN-tKTnIhBh`9MWQUk=r48in13w zq@wJSJcm?RS?qC0F{1XjQf#z|sUFF}3Uy`s63!b#lF6a_U`-g)?r6gFWsD9*sH_TA zOsjqhqA6j$zWlMWALsq=dB5kCb0@Of8isp=2^2t_a5+}!R^?&_TyrI^JEV4qmP|M6 zos&C%NLmdauR6~X1zKxp@uF$?jAc7Rt=o%b{>F+!kPT=Q;u>9iC>Bz=K>vmo^(W24?%mcQ0~uS2??L z>5`9TTyU&xvkuVJ#lHEZTfMj>t^+%Uf)?x+Cnf8Z^9vSuZ?a1GI_TJlT@S~wHw2p{ zaN%=*en9}9R-ZVN!rCMgdp306(z20q89zI_L54#=pxiLO zeRu}(OOjs0^IOdCk9clneo3eYDk!@|4I;q&S^;rkZEb69Bq3{pK%f@b-7!)g0O=0k zB;YT8OcFK&CP{G67t*O|N9m^P5mYJoWNESP7zwE+B0A8Jc;-+WAE!gzX~A zJZSCo<0ZJvIqzq*wZz-ii)fr6#%?gW?l!bw8db!ZWJEI^$(#*ovQu4Id!W5#-&TvS z)El^QR{y4H*kc!}wuqanQPii13w;#z%J!Lw2fUdF*Chpg&Utbl=$+IVTYE|iTsReg z9iihyn62Z1GmCKDJoYV>d+_dJJXBtN-T98k5`5#maw&6) z=;CSKjFG-#b{@)e9q%Lk^RRUdTZMKPvbMO8cGm2-KnQmiBAF3;s{}f2E=tVXT?DL9 z(V5GwJqNHyrwhBXtf&z9nEN58NL-3iqPWT#+pNI$6P30YIG@?$E^1@pw4)tLiDd9e0E)qwTt?B zQkrPTIHLvrXw8_hqt?v2f@pT5L1FD7G3!~JKP|K@f12EZs$u1ax|ml;Rp7UKGpyFG zd%?(?QIuL}?d&8lljXyA7uo?DzehQ}h_`&Dj5CJ&hGEYjc->!=cz~cl$DYD|-ch=aoV4& zesn4r4}DV&r91XG9(q_;e$xh+Z_1WHX4XX>vm{{wQ;yhUi0$uKi`l?-9!BDs6ZwQD za>F|5-N@Wf>PV8eoZSw%tCtQU^baSqiOvPHotcJP7SYUX~$}2!o1kUqT6BRf$c*-KBt|f42I;1YonTMXHYXcGq zUIp4IDlThRJv`6nIXhCUT}uEWf>b^j2YdVRPIhh+M$Q;l+z47*_$XhDm+jBe$pRJH zL6k%11=v7gTp)}I1eklb@Y~<4U2nlV5*`eB@GQa=8lgN@J3b~p=zrd5r`58c5y6FIwALGp~(Js>`86FKAs1vhGTU0;l7I^5> zfOu>N0rA*g1;k@}4-k*-Q$Rd62Nb&6ma@^s=72d{tWE74EsV9NCjgU4>Y>5&lB#OD zQMV#FgbSmwT$jr>D#I4ewUI#Enx%4H`K(UZ!^5Nl5|A1x(zCfDEpmElgYu2TC22Vp zUwWwTzY?*guvAc5_A@9APx4QqyFkTmcq(_E8vw|IB(1@Z5{_&p()+XcvEIZiZ(~<| z9`z;dgR+ngp5M%`$V}SjpjUbGHc0x1eK;uXWHN>W1``Ab>{u%L3(m|vho|6-(PQ9j z9`X-WvKrI$2_9~Xf(c!>jCzOjzPbwFep1{SWZ=WK1+%1kajf*)+1JPdU^IO4BGWlwhn=Zl0F0-pwana=w z+*+L1ZK0cs`6ZbKWwjsWXt1ikMt3-}Go-AYk0MaLydy$(xCU;B7WcpgH(u~x5xyttBG^&jA2@8mWu4+gjmU|a zzoLAU3olow#abo1(fRsHNsp3#;Q8}q;ri=P<%wXiC0L2eP;IzYI^ONCAB5c>Xt%#& z1}I1svGoPish;CdCM9PQ(t2rLNSUXnd7))Ws?av8m6Kd>!i6vQ5o!jtL3V#Bu4mzFR#r7L-Hg?hN=7~R9mujGA& z?&`JSx?SA6%aYQ~uEC`~uf{^BqOmSV$h@_45ArV;+q;fhJ7p?Wy1F-1e4;G66(}u0 zsdaJI*^*G@v5@-&uJ8@I&&tJTW%s#w^=J#bZMu5&Uxj!5+IY36ee)>NN^dov@F8aB zW=iHzxiVS1^0!>QsF$jErBcPCaj|dIMXPyqKkuosZjYn8z!~_R12?3WckgLHyGMts zND9pejzz45D?}A_6D($FF!^z<{RL|D)if{S{s72VVP*%XsO+JZ$w$-t5>_rn-oxy6 zR%M{ggTyW7bC4b0k97dzRv%f1d@!{O&;$4-NxxJ>-%>;W2#620ra=riMGl~D_+vRf zpmzWzv5CLmF^G;>CYv%zdL9rNbxG1YfXGg?OVk^ZR>UHFs58zlRfXmN3NwllK&0>O zQVk#y7EDE|5DlR??I}P!Z}ZSVIdn6i-!U#7fOuNA1LC=)%|cvbe-+Sc4DSdap1wZ- z;_0)Zu|C1#bprY|!=v5HJl-}Hg0+={U#_^O7&h{`Y#=Mn4Ir0&0mMYO9PogDHJgES zfGE#TgDF70xtIe@39U0%h1$&ACWBq%&>xm)?WAmtcE*z^vX4qA*fg4B`uA{%}U9KW^4EwS0SA`51K zsH>xiqOSA4k@Ee#qdF=Vb(7geaXK(9XDjp~mhDHV9`0qI>5xafpik?SeOoLvI{hAA zW0aoSTY!}_wA|vM0#lD;Bb`zZgDSGj?`5Uko$svll#qmr5#SUW!A@mX=fFmiw z$z*I7myI2+7izVHYRwh8hRAFQ%r!7`$=9GZ!;ulq5S=X!g~Ml#z$S+S$AEiqXrCgb zsHE#e<0)~bz06QN-S<$PTJJkhu0utA`e)1cQd39ej7xjDSwf$=8#t=S17ieL9;+5= zB?mLl`5pR3$AXNF4rgZJgA+S_3jz(9-*lxnI1H8}1cpx4LL)8Yb-whVuD+QeO!Jhy zj>iK!hadme&ue=r-g)`22EL*<|feQG{B}p$)q4b*YMhz-z|Zd6W=^ZON46RD+WIE`kR#=BP+LWrpv3cPgEI zq&-&`gAw~C11))67-~=)-8)#Tt?15i>Nr!ArRti>qyy2$(2)nJQ-ICZ;hf6!9&OHZ zRF|vMP^9;!Qt4!(3`y=tH(Gm4T&qD_F|9^lO1k=?)z~n>+M{T-sf4X*HEM_4WJi~z zYPAk%wSH^o4=+}1$Y-e5;z9M48w9>cUq)bTr`l$Xh;@Ce#(7b7mpZwTDx)YZKd@xnFoE7G9Ktf%6wyo zY``Cep_mgE67dQ`-a)*DMBS1?V&w8K*Gm{z&ki}?9Lyfa(J?p*mN~>orzAO8;5>8P zd6UUEMP?>B4pA*{?r(PR7)2hK{sbb*@L)5w%KcPuuP0}*{dyBCh9}pL)nC9@JkF}G0J;76i)^S&&`S_1Gs0EjcChk zB41T@_G(vNQ`l>Ycx4%7aZwF&&r9Z={t%VVUow{1tzF0Pn)$r7lZ@f>Qi8R!hr%~Z z&HTHyldQz>0*v{R4chb}cw@53jv+AWze4GpXlzp>GeN-Yp{=ahBAsIVaBDBO@ zCg)7WtPQVgK0ZS?%jZB(p;T!~5?_~(;0)D%r0*r`j;SIo%abdqy0fia^Uy$|r9c~@ zW323fU5#UCb$zk5({vHCZf0)bf|Ty9OoMA(IWlPNJb=Uv6f3ulRdUR=>c)Q7&cH>; zWfnV{%l?x?_{yqEE}i-~A){R6wajv{hD@t;6%kS`TWZj(gO=0hFH!)a(JnWGRatUE zb3adq;HOWAd;}?hrJNU)8a6=i%9nsed9tZ2bU%qZD#KGQvcn~?LUv8X{1+tQjb+X} z+RP3~#mEA0e1*h`OX(d;15UI!9Vc*zyr}#0@P&{~4Y3AQM$Nca%)!$Hv#{He8Mc2I zdZ1K%G0Z)4CAwZ=JMbjaKny_-=jgw7hp$3n2drdXOUCkvQBQPNQ=FQ@mtduAFeUFP zS8IzDaW!ujB2BDFPy{?#=Z1!nr1at+NEW8Gsoht2EYYYUc7gkQFEHj=J70jvptw`{hj68M+3ZZV zuadWFGU1!;U&%s zt{RyxlFM+Jg@wx$2IL+@EM%{T@n91#+;S56$9yMxztayR7=tZq*Zlx^P&Klx#$im7 zFX2qPzDaSh%;33)a3(vz<-BC_PvOln&^r#wAzsI2F>yTr^Cy|-1scJFRXwbq69-SA zkVT4FFI*eUu?vCOL(>SsGNl74F$W7Q0yQ6b6D;Mbrz4KBgW2+Vuu zPO^2lmGdZ|@8OrktQiiyfOoRV?GlaoxD7<=oQGxsx`l<-!APNr*d&Rp9;#70I~(y` z2GNuPx7O&W8amz~Njj`jya0$>Ty(rVk7GRY$L*{+fVkgsKu<7!e$|h9IPOPXAjf+R z5KrG5fOz^&tDz&HGI%I0iQ%Dh0f{)&&_*@%HZ}Bd)$b@ETIrG`{TdL@TNn_ZiyMN5 zOv^;h}deJT035@sxG};wk--8hTLmI|gVc zE0@;*an5vJ3+Mcf>UUnnTb-nQO=|`84oks(fOv@?0L07mZ9u#RM?u-~TwV!?Q{ftzlmqJ`6MUQEDyqA3N5A@}Q_-uhb((G%hz z(RhmCFz=ao(pPoOX9avd!B6ucJ$b?4Lu%}-!ROC-J8AH7fa@y;pHlc7G5F9|(nAKH zC*ZTs;PV!I9yj=mM$#TL_}mPiy#}8q_>cr@xws!-r@`kZ@Y!JSp$jH_1|Mqws|`L= z&~BF*e2U?-#Ncxqe2NS{_ru3!@acumY=aM7%9CpFxdavFH27Q(pA>@+%`lVnA))jY z5svI7a@;z!P5(1DJXGSM5z;wk&4x;dO~jL#%^R!p&Bo!2q*TDI@-qQOIYkA zZRFmq``t#3Pp05QIL6qA!ACpS`~5lj&`3(`Ul3G;LsZ%(=i!Ws>VfL&o7-DvL?7Bh zDM>UP!;|tnrtMx?t1s$D$R)G-BB)dNNX)0Ug^nL2f9?>wZi_3`i*^`|g2DfOMerdU zo{xP7&iY)8V0@HZTrK&ICbKQh`r|vS42M{a0d)Or8R~`dOpba!a#ogRz0?uUL|kXj zU0(2(7nRgV(#wL1aEx^^l2J_%R3q{xB37j?hEgHI5ss1SGWckE!*?y6Zm&=+5>$j^ zq#DJjl%mORdIY_vLe(y)2**f86I0rm)Y%_yzfz;xE~p5{NJVqa8r3T!$EIsk-xO4Y zW2Cy=Ky|IdUZhbyE2s#^NJT3;w78bAb;5-@3;$&PwYh+_6#R<6t;0FsDim zy*g%rRz6lLGB}4QA5HsBfUj2a58wFUWJeU|i5v&L=2Spmy#2#sjk8m5p2#`t%5V~+ zQu@)|Bfhy+$+;xW6I6s_lwK#JqWqGpd+3VaXjD~#ig1i2KN&vpjz!xms0hax*AzzO zz?0k)+iNapaXl@l2#2V&61xUIT8X{+Ve@?xqe_g*DbYl-N_Cd~wDl&f#FXxFYE+3` z%cztRTmR#CLRxx8P{##FI9z_F3m;8>GF6|*G*b)J()|AOj|ZkkrTIFBL&tcKt}ICY z6GQ_UV6H%LzK*4tysFi>91(Rf9idv=F&;LzT2K)V&&Afbe6Ba}DZTtY$TO$G5u<{N zaJb(OjeK8=~qfl~F16m2}&2 z6ql01mjo5z80CjXLRwwm1>3?YR((%Bi{ZHNB=_K--d(As=RLuB7Eg~Zr)j`7a-J2% znMMMM%<`mkJ9d8xg@j}?H-bzdxY<#h(aGsJk1zYUdv+A(ISgkr*ix&0K0P>3<9xN? zJco1EX^FXvN-4t+_mzD^E5liWig1kW9juWah01tC09`Xnj&O`r8Sv4xMD^c(_KX%+ ztDqtrBh`FHrNs5KovYBjE492`P!W!iD$@`bUf>j}?+PlyF;d+KA1z z^x#EuMWrW~;cP}u2`}0FoiZ&wiv{Ogo*o_NJVvE({?b$HM&?Fwb~Buv$R?%3Ghy#` zjdP3O?2gK5KBJ1w%h@2hBV$P#mV1r^~KsS4nuNz}(1 z|MFFh>S;kmIGj_T@PTHC;Iq)c=NZS#4=6O46BAT~V~oAfKy^G^3(G-CbK<24gd-ed zoi2ipCS!!-W+guX6t!8n4YR(nc1_*7TU}W*v$E*EGIpwZt-ICN?(yHBg3)NGcZBy6vd{AktRBUlrAJ&=c7y*ia#E1p{d4<2-3u#vvF=?*bphYzRT2t%A&|<_}PNzB0 zVG0p3Mo4TttSCW^iHI6tr$(shi;6Wy%BuLD{sGe!2PZOBvCtx=A`VWZI7Fba<8r-h zJ7n#eb*o%ibGUvg702{2J+)5B1H)!FFV?m+wQAZdHg;RHT3&Gwng&Mr_g#*2@l%51 zTy#?8D#|a)b7_YfWjV96UCOl>C9Xv!*+nc=Ip@d_KHF1Ln(v~Mj||=!`33HUjEZ&U zhOlB+X-;k_59DW+7=mYdiVCw`f*rfw!{cvX)tFuHYg*q(?NMCk5p}hXddrD+wy*}# zq0#y)Yxt4L#7@a+F7B+!%Pw@OXPacDvli0Wkd>O1t~*&JE4@K2p4=SQ!cyb~e6rHB zoVj`U<)<}erLnjCSxs5#>zmdQ0}+re&Rofwqw*+rm1O7SxERVp(N2I}NFKVHNY5`U zTI9m%EbxyA$t^8$yXeH0$bf|lP(-P+g+L8N1PsNi!Kk{m&*vNG5!K#~+=j_0{>Mt5V> z3Em=(+-z4~&cX#QWh;1AI^PS9zfgdKh=g*iRD)W^h|wDrV=ceSC%0`4bT)41LD!j9 z+t%K+s;QNisM_gB0=1;AeN9~p9j2yoM*SF%6GuHN=;F>IJ?`w4hI-a;i?cOR(sk>G zh-O7+fpUwAS5vz9jXZSC9&5*$@yLz5HD@G(S?9vy*l)fn;_<2EGSiS6}z*T70a zN1Nu2%C|xr5x`yzsj3?=Rdb?4qwRftdGL_{m9b)b8)BPVAHh(_0?D{x{J{O)>+4$l zI8ds%ZM`ZLOv2~Yr8Ue=RUY7Jh$X!)BHPB$=rnLyt*EbSQKMl;;m?jptudOJQKA0_ DEVZ9G literal 0 HcmV?d00001 diff --git a/gamesrc/P_HUD.C b/gamesrc/P_HUD.C new file mode 100644 index 0000000..90c8c49 --- /dev/null +++ b/gamesrc/P_HUD.C @@ -0,0 +1,1925 @@ +#include "g_local.h" + +#define ENABLE_INDEX_NAMES 1 + + +/* +====================================================================== + +INTERMISSION + +====================================================================== +*/ + +void MoveClientToIntermission (edict_t *ent) +{ + if (deathmatch->value || coop->value) + ent->client->showscores = true; + VectorCopy (level.intermission_origin, ent->s.origin); + ent->client->ps.pmove.origin[0] = level.intermission_origin[0]*8; + ent->client->ps.pmove.origin[1] = level.intermission_origin[1]*8; + ent->client->ps.pmove.origin[2] = level.intermission_origin[2]*8; + VectorCopy (level.intermission_angle, ent->client->ps.viewangles); + ent->client->ps.pmove.pm_type = PM_FREEZE; + ent->client->ps.gunindex = 0; + ent->client->ps.blend[3] = 0; + ent->client->ps.rdflags &= ~RDF_UNDERWATER; + + // clean up powerup info + ent->client->quad_framenum = 0; + ent->client->invincible_framenum = 0; + ent->client->breather_framenum = 0; + ent->client->enviro_framenum = 0; + ent->client->grenade_blew_up = false; + ent->client->grenade_time = 0; + + // RAFAEL + ent->client->quadfire_framenum = 0; + + // RAFAEL + ent->client->trap_blew_up = false; + ent->client->trap_time = 0; + + ent->viewheight = 0; + ent->s.modelindex = 0; +// ent->s.modelindex2 = 0; +// ent->s.modelindex3 = 0; + ent->s.effects = 0; + ent->s.sound = 0; + ent->solid = SOLID_NOT; + + // add the layout + + if (deathmatch->value || coop->value) + { + DeathmatchScoreboardMessage (ent, NULL); + gi.unicast (ent, true); + } + +} + +void BeginIntermission (edict_t *targ) +{ + int i, n; + edict_t *ent, *client; + + if (level.intermissiontime) + return; // already activated + + game.autosaved = false; + + // respawn any dead clients + for (i=0 ; ivalue ; i++) + { + client = g_edicts + 1 + i; + if (!client->inuse) + continue; + if (client->health <= 0) + respawn(client); + } + + level.intermissiontime = level.time; + + level.changemap = targ->map; + + if (strstr(level.changemap, "*")) + { + //if (coop->value) + { + for (i=0 ; ivalue ; i++) + { + client = g_edicts + 1 + i; + if (!client->inuse) + continue; + // strip players of all keys between units + for (n = 0; n < MAX_ITEMS; n++) + { + if (itemlist[n].flags & IT_FLASHLIGHT) + continue; + + if (itemlist[n].flags & IT_KEY) + client->client->pers.inventory[n] = 0; + } + + client->episode_flags = client->client->pers.episode_flags = 0; + client->client->pers.friends = 0; + level.helpchange = 0; + } + } + + // Dan: this should eliminate the need to press a key to exit the end of episode + if (!deathmatch->value) + { + level.exitintermission = 1; // go immediately to the next level + return; + } + } + else + { + if (!deathmatch->value) + { + level.exitintermission = 1; // go immediately to the next level + return; + } + } + + level.exitintermission = 0; + + // find an intermission spot + ent = G_Find (NULL, FOFS(classname), "info_player_intermission"); + if (!ent) + { // the map creator forgot to put in an intermission point... + ent = G_Find (NULL, FOFS(classname), "info_player_start"); + if (!ent) + ent = G_Find (NULL, FOFS(classname), "info_player_deathmatch"); + } + else + { // chose one of four spots + i = rand() & 3; + while (i--) + { + ent = G_Find (ent, FOFS(classname), "info_player_intermission"); + if (!ent) // wrap around the list + ent = G_Find (ent, FOFS(classname), "info_player_intermission"); + } + } + + VectorCopy (ent->s.origin, level.intermission_origin); + VectorCopy (ent->s.angles, level.intermission_angle); + + // move all clients to the intermission point + for (i=0 ; ivalue ; i++) + { + client = g_edicts + 1 + i; + if (!client->inuse) + continue; + MoveClientToIntermission (client); + } +} + + +/* +================== +GrabDaLootScoreboardMessage + +================== +*/ +void GrabDaLootScoreboardMessage (edict_t *ent, edict_t *killer) +{ + char entry[1024]; + char string[1400]; + int stringlength; + int i, j, k; + int sorted[MAX_CLIENTS]; + int sortedscores[MAX_CLIENTS]; + int score, total, real_total; +// int picnum; + int x, y; + gclient_t *cl; + edict_t *cl_ent; + char *tag; + int team; + char *header = "NAME ping hits depst";// score"; + char nfill[64]; + int yofs=0; + int teamcount[3]; + + char *selectheader[] = + { + "You are a spectator!", + "Press the corresponding number to join a team.", + "Valid teams are:", + NULL + }; + +// "%12s - 1 (%i players)"\n%12s - 2\n\n--------------------------------------------------------\n", team_names[1], team_names[2] + + + x = (-1*strlen(header) - 2) * 10; // 10 pixels per char + + string[0] = 0; + stringlength = 0; + + if (ent->client->chase_target && ent->client->chase_target->client) + { + ent->client->update_chase = false; + Com_sprintf(entry, sizeof(entry), "xm -80 yb -68 dmstr 773 \"Chasing %s\" xm -230 yb -40 dmstr 552 \".. use [ and ] to cycle, ACTIVATE to disable ..\" ", + ent->client->chase_target->client->pers.netname); + + j = strlen(entry); + strcpy (string + stringlength, entry); + stringlength += j; + } + + if (!ent->client->showscores) + goto skipscores; + + if (!ent->client->pers.team) + { + // count players per team + memset( teamcount, 0, sizeof(int) * 3 ); + + for (team=1; team<=2; team++) + { + for (i=0 ; iinuse) + continue; + + if (game.clients[i].pers.team != team) + continue; + + teamcount[team]++; + } + } + + // print the team selection header + for (i=0; selectheader[i]; i++) + { + Com_sprintf (entry, sizeof(entry), + "xm %i yv %i dmstr 999 \"%s\" ", + -5*strlen(selectheader[i]), yofs + (int)(-60.0+-3.5*14), selectheader[i] ); + + j = strlen(entry); + strcpy (string + stringlength, entry); + stringlength += j; + + yofs += 30; + } + + // show team counts + for (team=1; team<=2; team++) + { + strcpy( nfill, team_names[team] ); + if (strlen(nfill) > 14) + nfill[14] = '\0'; + + if (strlen(team_names[team]) < 14) + { + for (k=0; k<14-strlen(team_names[team]); k++) + strcat( nfill, " " ); + } + + Com_sprintf (entry, sizeof(entry), + "xm %i yv %i dmstr 999 \"%i - %s (%i plyrs)\" ", + -15*10, yofs + (int)(-60.0+-3.5*14), team, nfill, teamcount[team] ); + + j = strlen(entry); + strcpy (string + stringlength, entry); + stringlength += j; + + yofs += 20; + } + + yofs += 15; + + if (!ent->client->chase_target) + { + char *chasecammsg = "[hit ACTIVATE to chase]"; + + // Chase Cam message + Com_sprintf (entry, sizeof(entry), + "xm %i yb -50 dmstr 773 \"%s\" ", + -5*strlen(chasecammsg), chasecammsg ); + + j = strlen(entry); + strcpy (string + stringlength, entry); + stringlength += j; + } + + } + + for (team=1; team<=2; team++) + { + + // Team header + Com_sprintf (entry, sizeof(entry), + "xm %i yv %i tscore %i xm %i dmstr 677 \"%s\" teampic %i ", + x+14*10, yofs + (int)(-60.0+-3.5*14), team, x, team_names[team], team ); + + j = strlen(entry); + strcpy (string + stringlength, entry); + stringlength += j; + + // sort the clients by score + total = 0; + for (i=0 ; iinuse) + continue; + + if (game.clients[i].pers.team != team) + continue; + + // Tweaked to produce +// score = (int)(1.0*game.clients[i].resp.score + (0.3*game.clients[i].resp.deposited)); + score = game.clients[i].resp.deposited + game.clients[i].resp.score; // so it works in games without cash + + for (j=0 ; j sortedscores[j]) + break; + } + for (k=total ; k>j ; k--) + { + sorted[k] = sorted[k-1]; + sortedscores[k] = sortedscores[k-1]; + } + sorted[j] = i; + sortedscores[j] = score; + total++; + } + + real_total = total; + + // header +//#if ENABLE_INDEX_NAMES + if (ent->client->pers.version >= 114) + { + + // add the clients in sorted order + if (ent->client->pers.team) + { + if (total > 10) + total = 10; + } + else // don't show as much, less space remaining + { + if (total > 7) + total = 7; + } + + } +//#else + else + { + + if (ent->client->pers.team) + { + if (total > 5) + total = 5; + } + else // don't show as much, less space remaining + { + if (total > 3) + total = 3; + } + + } +//#endif + + Com_sprintf (entry, sizeof(entry), + "yv %i dmstr 663 \"%s\" ", + yofs + (int)(-60.0+-1.5*14), header ); + + j = strlen(entry); + strcpy (string + stringlength, entry); + stringlength += j; + + for (i=0 ; iclient->pers.version >= 114) + { + Com_sprintf (entry, sizeof(entry), + "yv %i ds %s %i %i %i %i ",// %5i\" ", // ~28 chars + yofs + -60+i*16, tag, sorted[i]/*nfill*/, cl->ping, cl->resp.score, cl->resp.deposited/*, sortedscores[i]*/ ); + + } +//#else + else + { + + strcpy( nfill, cl->pers.netname ); + if (strlen(nfill) > 12) + nfill[12] = '\0'; + + if (strlen(cl->pers.netname) < 12) + { + for (k=0; k<12-strlen(cl->pers.netname); k++) + strcat( nfill, " " ); + } + + Com_sprintf (entry, sizeof(entry), + "yv %i dmstr %s \"%s %4i %4i %5i \" ",// %5i\" ", // 48 chars + yofs + -60+i*16, tag, nfill, cl->ping, cl->resp.score, cl->resp.deposited/*, sortedscores[i]*/ ); + + } +//#endif + + j = strlen(entry); + if (stringlength + j > 1024) + break; + strcpy (string + stringlength, entry); + stringlength += j; + } + + if (real_total > total) + { // show the nuber of undisplayed players + + Com_sprintf (entry, sizeof(entry), + "yv %i dmstr 777 \"(%i players)\" ", + yofs + -60+i*16 + 6, real_total ); + + j = strlen(entry); + if (stringlength + j > 1024) + break; + strcpy (string + stringlength, entry); + stringlength += j; + } + + x = -8; + } + +skipscores: + + // TODO: add the spectators at the bottom + + gi.WriteByte (svc_layout); + gi.WriteString (string); +} + + +/* +================== +DeathmatchScoreboardMessage + +================== +*/ +void DeathmatchScoreboardMessage (edict_t *ent, edict_t *killer) +{ + char entry[1024]; + char string[1400]; + int stringlength; + int i, j, k; + int sorted[MAX_CLIENTS]; + int sortedscores[MAX_CLIENTS]; + int score, total, realtotal; +// int picnum; + int /*x,*/ y; + gclient_t *cl; + edict_t *cl_ent; + char *tag; + + // Teamplay, divert if teamplay enabled + if (teamplay->value) + { +// switch (teamplay_mode) + { +// case TM_CASHMATCH: +// case TM_GRABDALOOT: + GrabDaLootScoreboardMessage (ent, ent->enemy); + return; + } + } + + // sort the clients by score + total = 0; + for (i=0 ; iinuse) + continue; + score = game.clients[i].resp.score; + + if (dm_realmode->value && !teamplay->value) + score -= game.clients[i].resp.deposited; + + for (j=0 ; j sortedscores[j]) + break; + } + for (k=total ; k>j ; k--) + { + sorted[k] = sorted[k-1]; + sortedscores[k] = sortedscores[k-1]; + } + sorted[j] = i; + sortedscores[j] = score; + total++; + } + + // print level name and exit rules + string[0] = 0; + + stringlength = strlen(string); + + realtotal = total; + +//#if ENABLE_INDEX_NAMES && false + // add the clients in sorted order + if (ent->client->pers.version >= 114) + { + if (total > 14) + total = 14; + } +//#else + else + { + if (total > 7) + total = 7; + } +//#endif + + // Send the current leader + if (total > 0) + { + Com_sprintf (entry, sizeof(entry), + "leader %i ", + sorted[0] ); + + j = strlen(entry); + strcpy (string + stringlength, entry); + stringlength += j; + } + + // header +//#if ENABLE_INDEX_NAMES && false + if (ent->client->pers.version >= 114) + { + if (dm_realmode->value && !teamplay->value) + { // show deaths + Com_sprintf (entry, sizeof(entry), + "xr %i yv %i dmstr 442 \"NAME ping hits score\" ", + -36*10 - 10, -60+-2*14 ); + } + else // normal + { + Com_sprintf (entry, sizeof(entry), + "xr %i yv %i dmstr 442 \"NAME ping time hits\" ", + -36*10 - 10, -60+-2*14 ); + } + } +//#else + else + { + if (dm_realmode->value && !teamplay->value) + { // show deaths + Com_sprintf (entry, sizeof(entry), + "xr %i yv %i dmstr 442 \" NAME ping hits score\" ", + -36*10 - 10, -60+-2*14 ); + } + else // normal + { + Com_sprintf (entry, sizeof(entry), + "xr %i yv %i dmstr 442 \" NAME ping time hits\" ", + -36*10 - 10, -60+-2*14 ); + } + } +//#endif + + j = strlen(entry); + strcpy (string + stringlength, entry); + stringlength += j; + + for (i=0 ; iclient->pers.version >= 114) + { + if (dm_realmode->value && !teamplay->value) + { // show deaths + Com_sprintf (entry, sizeof(entry), + "yv %i ds %s %i %i %i %i ", + -60+i*16, tag, sorted[i]/*cl->pers.netname*/, cl->ping, cl->resp.score, sortedscores[i] ); + } + else + { + Com_sprintf (entry, sizeof(entry), + "yv %i ds %s %i %i %i %i ", + -60+i*16, tag, sorted[i]/*cl->pers.netname*/, cl->ping, (level.framenum - cl->resp.enterframe)/600, cl->resp.score ); + } + } +//#else + else + { + if (dm_realmode->value && !teamplay->value) + { // show deaths + Com_sprintf (entry, sizeof(entry), + "yv %i dmstr %s \"%16s %4i %3i %4i\" ", + -60+i*16, tag, cl->pers.netname, cl->ping, cl->resp.score, sortedscores[i] ); + } + else + { + Com_sprintf (entry, sizeof(entry), + "yv %i dmstr %s \"%16s %4i %3i %4i\" ", + -60+i*16, tag, cl->pers.netname, cl->ping, (level.framenum - cl->resp.enterframe)/600, cl->resp.score ); + } + } +//#endif + + j = strlen(entry); + if (stringlength + j > 1024) + break; + strcpy (string + stringlength, entry); + stringlength += j; + } + + if ((stringlength + 30 < 1024) && realtotal > total) + { + Com_sprintf (entry, sizeof(entry), + "yv %i dmstr 999 \" ( %i total players )\" ", + -60+total*16, realtotal ); + + j = strlen(entry); + if (stringlength + j < 1024) + { + strcpy (string + stringlength, entry); + stringlength += j; + } + } + + gi.WriteByte (svc_layout); + gi.WriteString (string); +} + +/* +================== +DeathmatchScoreboard + +Draw instead of help message. +Note that it isn't that hard to overflow the 1400 byte message limit! +================== +*/ +void DeathmatchScoreboard (edict_t *ent) +{ + DeathmatchScoreboardMessage (ent, ent->enemy); + gi.unicast (ent, false);//true); +} + + +/* +================== +Cmd_Score_f + +Display the scoreboard +================== +*/ +void Cmd_Score_f (edict_t *ent) +{ + ent->client->showinventory = false; + ent->client->showhelp = false; + + if (!deathmatch->value && !coop->value) + return; + + if (ent->client->showscores) + { + ent->client->showscores = false; + + if (!ent->client->chase_target) + return; + } + else + { + ent->client->showscores = true; + } + + DeathmatchScoreboard (ent); +} + + +/* +================== +HelpComputer + +Draw help computer. +================== +*/ +void HelpComputer (edict_t *ent, int page) +{ + char string[1024]; + /*char *sk; + + if (skill->value == 0) + sk = "easy"; + else if (skill->value == 1) + sk = "medium"; + else if (skill->value == 2) + sk = "hard"; + else + sk = "hard+"; + + // send the layout + Com_sprintf (string, sizeof(string), + "xv 33 yv 7 picnote " // background + "xv 202 yv 12 string2 \"%s\" " // skill + "xv 0 yv 24 cstring2 \"%s\" " // level name + "xv 0 yv 54 cstring2 \"%s\" " // help 1 + "xv 0 yv 110 cstring2 \"%s\" " // help 2 + "xv 50 yv 164 string2 \" kills goals secrets\" " + "xv 50 yv 172 string2 \"%3i/%3i %i/%i %i/%i\" ", + sk, + level.level_name, + game.helpmessage1, + game.helpmessage2, + level.killed_monsters, level.total_monsters, + level.found_goals, level.total_goals, + level.found_secrets, level.total_secrets);*/ + + EP_PlayerLog (ent, page); + + level.helpchange = 0; + + Com_sprintf (string, sizeof(string), + "picnote \"%s\" " + " \"%s\" ", + game.helpmessage1, + game.helpmessage2); + +// Com_sprintf (string, sizeof(string), +// "xv 32 yv 8 string2 \"Help screen not yet implemented\" " ); + + gi.WriteByte (svc_layout); + gi.WriteString (string); + gi.unicast (ent, true); +} + +#if 0 +/* +================== +HelpComputer + +Draw help computer. +================== +*/ +void HelpComputer (edict_t *ent) +{ + char string[1024]; + char *sk; + + if (skill->value == 0) + sk = "easy"; + else if (skill->value == 1) + sk = "medium"; + else if (skill->value == 2) + sk = "hard"; + else + sk = "hard+"; +/* + // send the layout + Com_sprintf (string, sizeof(string), + "xv 32 yv 8 picn help " // background + "xv 202 yv 12 string2 \"%s\" " // skill + "xv 0 yv 24 cstring2 \"%s\" " // level name + "xv 0 yv 54 cstring2 \"%s\" " // help 1 + "xv 0 yv 110 cstring2 \"%s\" " // help 2 + "xv 50 yv 164 string2 \" kills goals secrets\" " + "xv 50 yv 172 string2 \"%3i/%3i %i/%i %i/%i\" ", + sk, + level.level_name, + game.helpmessage1, + game.helpmessage2, + level.killed_monsters, level.total_monsters, + level.found_goals, level.total_goals, + level.found_secrets, level.total_secrets); +*/ + Com_sprintf (string, sizeof(string), + "xv 32 yv 8 string2 \"Help screen not yet implemented\" " ); + + gi.WriteByte (svc_layout); + gi.WriteString (string); + gi.unicast (ent, true); +} +#endif + +/* +================== +Cmd_Help_f + +Display the current help message +================== +*/ +void Cmd_Help_f (edict_t *ent, int page) +{ + // this is for backwards compatability + if (deathmatch->value) + { + Cmd_Score_f (ent); + return; + } + + ent->client->showinventory = false; + ent->client->showscores = false; + + if (ent->client->showhelp && (ent->client->pers.game_helpchanged == game.helpchanged) && !(page)) + { + ent->client->showhelp = false; + return; + } + + ent->client->showhelp = true; + ent->client->pers.helpchanged = 0; + + HelpComputer (ent, page); +} + + +//======================================================================= + +/* +=============== +G_SetStats +=============== +*/ +void G_SetStats (edict_t *ent) +{ + gitem_t *item; + int index, cells; + int power_armor_type; + + // if chasecam, show stats of player we are following + if (ent->client->chase_target && ent->client->chase_target->client) + { + memcpy( ent->client->ps.stats, ent->client->chase_target->client->ps.stats, sizeof( ent->client->ps.stats ) ); + ent->client->ps.stats[STAT_LAYOUTS] = true; + + // make sure they don't gain world ranking stats + ent->client->ps.stats[STAT_FRAGS] = 0; + ent->client->ps.stats[STAT_DEPOSITED] = 0; + + return; + } + + // + // health + // + // JOSEPH 23-MAR-99 + //ent->client->ps.stats[STAT_HEALTH_ICON] = level.pic_health; + { + int index1, index2, index3; + + item = FindItem ("Cash"); + index1 = ITEM_INDEX (item); + item = FindItem ("Large Cash Bag"); + index2 = ITEM_INDEX (item); + item = FindItem ("Small Cash Bag"); + index3 = ITEM_INDEX (item); + + if (!((ent->client->ps.stats[STAT_PICKUP_STRING] == CS_ITEMS+index1) || + (ent->client->ps.stats[STAT_PICKUP_STRING] == CS_ITEMS+index2) || + (ent->client->ps.stats[STAT_PICKUP_STRING] == CS_ITEMS+index3))) + ent->client->ps.stats[STAT_CASH_PICKUP] = 0; + + // JOSEPH 1-APR-99-B + item = FindItem ("Helmet Armor"); + ent->client->ps.stats[STAT_ARMOR1] = ent->client->pers.inventory[ITEM_INDEX(item)]; + item = FindItem ("Jacket Armor"); + ent->client->ps.stats[STAT_ARMOR2] = ent->client->pers.inventory[ITEM_INDEX(item)]; + item = FindItem ("Legs Armor"); + ent->client->ps.stats[STAT_ARMOR3] = ent->client->pers.inventory[ITEM_INDEX(item)]; + item = FindItem ("Helmet Armor Heavy"); + if (ent->client->pers.inventory[ITEM_INDEX(item)]) + ent->client->ps.stats[STAT_ARMOR1] = ent->client->pers.inventory[ITEM_INDEX(item)] + 1024; + item = FindItem ("Jacket Armor heavy"); + if (ent->client->pers.inventory[ITEM_INDEX(item)]) + ent->client->ps.stats[STAT_ARMOR2] = ent->client->pers.inventory[ITEM_INDEX(item)] + 1024; + item = FindItem ("Legs Armor Heavy"); + if (ent->client->pers.inventory[ITEM_INDEX(item)]) + ent->client->ps.stats[STAT_ARMOR3] = ent->client->pers.inventory[ITEM_INDEX(item)] + 1024; + // END JOSEPH + } + // END JOSEPH + + ent->client->ps.stats[STAT_HEALTH] = ent->health; + + // + // ammo + // + + // JOSEPH 28-APR-99 + if (!level.bar_lvl) + { + if (!ent->client->ammo_index /* || !ent->client->pers.inventory[ent->client->ammo_index] */) + { + ent->client->ps.stats[STAT_AMMO_ICON] = 0; + ent->client->ps.stats[STAT_AMMO] = 0; + } + else + { + item = &itemlist[ent->client->ammo_index]; + ent->client->ps.stats[STAT_AMMO_ICON] = gi.imageindex (item->icon); + ent->client->ps.stats[STAT_AMMO] = ent->client->pers.inventory[ent->client->ammo_index]; + } + + // RAFAEL 01-11-99 + // JOSEPH 9-MAR-99 + if (ent->client->ammo_index) + { + item = &itemlist[ent->client->ammo_index]; + } + else + { + item = NULL; + } + + if ((item) && (item->pickup_name) && (/*(!strcmp(item->pickup_name, "Rockets")) ||*/ ((!strcmp(item->pickup_name, "Gas"))))) + { + ent->client->ps.stats[STAT_CLIP] = -1; + } + else + { + // ent->client->ps.stats[STAT_CLIP_ICON] = gi.imageindex (clipname); + ent->client->ps.stats[STAT_CLIP] = ent->client->pers.weapon_clip[ent->client->clip_index]; + } + } + else + { + ent->client->ps.stats[STAT_AMMO_ICON] = 0; + ent->client->ps.stats[STAT_AMMO] = 0; + ent->client->ps.stats[STAT_CLIP] = -1; + } + // END JOSEPH + + // + // money + // + + // Ridah, 26-may-99, show frag count + if (deathmatch->value && !teamplay->value) + ent->client->ps.stats[STAT_CASH] = ent->client->resp.score; + else // show cash + ent->client->ps.stats[STAT_CASH] = ent->client->pers.currentcash; + + if (level.pawn_time) + ent->client->ps.stats[STAT_FORCE_HUD] = 1; + else + ent->client->ps.stats[STAT_FORCE_HUD] = 0; + // END JOSEPH + + // JOSEPH 4-MAR-99 + if ((level.cut_scene_time) || (level.fadeendtime > level.time)) + ent->client->ps.stats[STAT_HIDE_HUD] = 1; + else + ent->client->ps.stats[STAT_HIDE_HUD] = 0; + // END JOSEPH + + if ((level.cut_scene_time || level.cut_scene_end_count) && level.cut_scene_camera_switch) + ent->client->ps.stats[STAT_SWITCH_CAMERA] = 1; + else + ent->client->ps.stats[STAT_SWITCH_CAMERA] = 0; + // END JOSEPH + + // JOSEPH 2-FEB-99 + if (level.time > ent->client->hud_enemy_talk_time) + { + ent->client->ps.stats[STAT_HUD_ENEMY_TALK] = 0; + } + else if ((ent->client->hud_enemy_talk_time - level.time) > 1.0) + { + ent->client->ps.stats[STAT_HUD_ENEMY_TALK_TIME] = 255; + } + else + { + ent->client->ps.stats[STAT_HUD_ENEMY_TALK_TIME] = + (short)((255.0/1.0)*(ent->client->hud_enemy_talk_time - level.time)); + if (ent->client->ps.stats[STAT_HUD_ENEMY_TALK_TIME] < 0) + ent->client->ps.stats[STAT_HUD_ENEMY_TALK_TIME] = 0; + } + + if (level.time > ent->client->hud_self_talk_time) + { + ent->client->ps.stats[STAT_HUD_SELF_TALK] = 0; + } + else if ((ent->client->hud_self_talk_time - level.time) > 1.0) + { + ent->client->ps.stats[STAT_HUD_SELF_TALK_TIME] = 255; + } + else + { + ent->client->ps.stats[STAT_HUD_SELF_TALK_TIME] = + (short)((255.0/1.0)*(ent->client->hud_self_talk_time - level.time)); + if (ent->client->ps.stats[STAT_HUD_SELF_TALK_TIME] < 0) + ent->client->ps.stats[STAT_HUD_SELF_TALK_TIME] = 0; + } + // END JOSEPH + + // JOSEPH 16-FEB-99 + { + cast_memory_t *mem; + int firsthire = 0; + int i; + edict_t *theent; + + ent->client->ps.stats[STAT_HUD_HIRE1] = 0; + ent->client->ps.stats[STAT_HUD_HIRE2] = 0; + + theent = &g_edicts[0]; + for (i=0 ; iinuse) + continue; + + if ((theent->leader) && (theent->leader == ent)) + { + mem = level.global_cast_memory[theent->character_index][ent->character_index]; + + if (!mem) + continue; + + if (mem->flags & MEMORY_HIRED) + { + if (!firsthire) + { + if (theent->health > 0) + { + // JOSEPH 28-APR-99 + ent->client->ps.stats[STAT_HUD_HIRE1] = (int)((100.0/(float)theent->max_health)*((float)theent->health)); + // END JOSEPH + + if ((theent->enemy) && (theent->enemy->health > 0)) + { + ent->client->ps.stats[STAT_HUD_HIRE1_CMD] = 3; + } + else if (theent->cast_info.aiflags & AI_MOVEOUT || theent->cast_info.aiflags & AI_DOKEY) + { + ent->client->ps.stats[STAT_HUD_HIRE1_CMD] = 1; + } + else if (theent->cast_info.aiflags & AI_HOLD_POSITION) + { + ent->client->ps.stats[STAT_HUD_HIRE1_CMD] = 2; + } + else + { + ent->client->ps.stats[STAT_HUD_HIRE1_CMD] = 0; + } + + firsthire = 1; + } + } + else + { + if (theent->health > 0) + { + // JOSEPH 28-APR-99 + ent->client->ps.stats[STAT_HUD_HIRE2] = (int)((100.0/(float)theent->max_health)*((float)theent->health)); + // END JOSEPH + + if ((theent->enemy) && (theent->enemy->health > 0)) + { + ent->client->ps.stats[STAT_HUD_HIRE1_CMD] = 3; + } + else if (theent->cast_info.aiflags & AI_MOVEOUT || theent->cast_info.aiflags & AI_DOKEY) + { + ent->client->ps.stats[STAT_HUD_HIRE2_CMD] = 1; + } + else if (theent->cast_info.aiflags & AI_HOLD_POSITION) + { + ent->client->ps.stats[STAT_HUD_HIRE2_CMD] = 2; + } + else + { + ent->client->ps.stats[STAT_HUD_HIRE2_CMD] = 0; + } + } + break; + } + } + } + } + } + // END JOSEPH + + // JOSEPH 4-FEB-99-C + ent->client->ps.stats[STAT_HUD_INV] = 0; + + if (ent->client->pers.inventory[ITEM_INDEX(FindItem ("Battery"))]) + ent->client->ps.stats[STAT_HUD_INV] |= 1; + + if (ent->client->pers.inventory[ITEM_INDEX(FindItem ("Coil"))]) + ent->client->ps.stats[STAT_HUD_INV] |= 2; + + // JOSEPH 17-MAR-99 + if (ent->client->pers.inventory[ITEM_INDEX(FindItem ("Watch"))]) + ent->client->ps.stats[STAT_HUD_INV] |= 4; + // END JOSEPH + + if (ent->client->pers.inventory[ITEM_INDEX(FindItem ("Safe docs"))]) + ent->client->ps.stats[STAT_HUD_INV] |= 8; + + if (ent->client->pers.inventory[ITEM_INDEX(FindItem ("Fuse"))]) + ent->client->ps.stats[STAT_HUD_INV] |= 16; + + if (ent->client->pers.inventory[ITEM_INDEX(FindItem ("Valve"))]) + ent->client->ps.stats[STAT_HUD_INV] |= 32; + // END JOSEPH + + // JOSEPH 10-JUN-99 + if (ent->client->pers.inventory[ITEM_INDEX(FindItem ("Lizzy Head"))]) + ent->client->ps.stats[STAT_HUD_INV] |= 64; + + if (ent->client->pers.inventory[ITEM_INDEX(FindItem ("Whiskey"))]) + ent->client->ps.stats[STAT_HUD_INV] |= 128; + + if (ent->client->pers.inventory[ITEM_INDEX(FindItem ("Oil Can"))]) + ent->client->ps.stats[STAT_HUD_INV] |= 256; + + if (ent->client->pers.inventory[ITEM_INDEX(FindItem ("Ticket"))]) + ent->client->ps.stats[STAT_HUD_INV] |= 512; + // END JOSEPH + + // + // armor + // + power_armor_type = PowerArmorType (ent); + if (power_armor_type) + { + cells = ent->client->pers.inventory[ITEM_INDEX(FindItem ("Gas"))]; + if (cells == 0) + { // ran out of cells for power armor + ent->flags &= ~FL_POWER_ARMOR; + gi.sound(ent, CHAN_ITEM, gi.soundindex("misc/power2.wav"), 1, ATTN_NORM, 0); + power_armor_type = 0;; + } + } + + index = ArmorIndex (ent); + + // JOSEPH 1-APR-99 + /*if (power_armor_type && (!index || (level.framenum & 8) ) ) + { // flash between power armor and other armor icon + ent->client->ps.stats[STAT_ARMOR_ICON] = gi.imageindex ("i_powershield"); + ent->client->ps.stats[STAT_ARMOR] = cells; + } + else if (index) + { + item = GetItemByIndex (index); + ent->client->ps.stats[STAT_ARMOR_ICON] = gi.imageindex (item->icon); + ent->client->ps.stats[STAT_ARMOR] = ent->client->pers.inventory[index]; + } + else + { + // ent->client->ps.stats[STAT_ARMOR_ICON] = 0; + ent->client->ps.stats[STAT_ARMOR] = 0; + }*/ + // END JOSEPH + + // + // pickup message + // + // JOSEPH 25-JAN-99 + if (level.time > ent->client->pickup_msg_time) + { + ent->client->ps.stats[STAT_PICKUP_ICON] = 0; + ent->client->ps.stats[STAT_PICKUP_STRING] = 0; + ent->client->ps.stats[STAT_PICKUP_COUNT] = 0; + } + else if ((ent->client->pickup_msg_time - level.time) > 1.5) + { + ent->client->ps.stats[STAT_PICKUP_COUNT] = 255; + } + else + { + ent->client->ps.stats[STAT_PICKUP_COUNT] = + (short)((255.0/1.5)*(ent->client->pickup_msg_time - level.time)); + if (ent->client->ps.stats[STAT_PICKUP_COUNT] < 0) + ent->client->ps.stats[STAT_PICKUP_COUNT] = 0; + } + // END JOSEPH + + // + // timers + // + // JOSEPH 12-MAY-99-B + /* + if (ent->client->quad_framenum > level.framenum) + { + ent->client->ps.stats[STAT_TIMER_ICON] = gi.imageindex ("p_quad"); + ent->client->ps.stats[STAT_TIMER] = (ent->client->quad_framenum - level.framenum)/10; + } + // RAFAEL + else if (ent->client->quadfire_framenum > level.framenum) + { + // note to self + // need to change imageindex + ent->client->ps.stats[STAT_TIMER_ICON] = gi.imageindex ("p_quadfire"); + ent->client->ps.stats[STAT_TIMER] = (ent->client->quadfire_framenum - level.framenum)/10; + } + else if (ent->client->invincible_framenum > level.framenum) + { + ent->client->ps.stats[STAT_TIMER_ICON] = gi.imageindex ("p_invulnerability"); + ent->client->ps.stats[STAT_TIMER] = (ent->client->invincible_framenum - level.framenum)/10; + } + else if (ent->client->enviro_framenum > level.framenum) + { + ent->client->ps.stats[STAT_TIMER_ICON] = gi.imageindex ("p_envirosuit"); + ent->client->ps.stats[STAT_TIMER] = (ent->client->enviro_framenum - level.framenum)/10; + } + else if (ent->client->breather_framenum > level.framenum) + { + ent->client->ps.stats[STAT_TIMER_ICON] = gi.imageindex ("p_rebreather"); + ent->client->ps.stats[STAT_TIMER] = (ent->client->breather_framenum - level.framenum)/10; + } + else + { + ent->client->ps.stats[STAT_TIMER_ICON] = 0; + ent->client->ps.stats[STAT_TIMER] = 0; + } + */ + // END JOSEPH + + // + // selected item + // + // JOSEPH 1-APR-99 + /*if (ent->client->pers.selected_item == -1) + ent->client->ps.stats[STAT_SELECTED_ICON] = 0; + else + ent->client->ps.stats[STAT_SELECTED_ICON] = gi.imageindex (itemlist[ent->client->pers.selected_item].icon); + */ + // END JOSEPH + ent->client->ps.stats[STAT_SELECTED_ITEM] = ent->client->pers.selected_item; + + // + // layouts + // + ent->client->ps.stats[STAT_LAYOUTS] = 0; + + if (deathmatch->value) + { + if (ent->client->pers.health <= 0 || level.intermissiontime + || ent->client->showscores) + ent->client->ps.stats[STAT_LAYOUTS] |= 1; + if (ent->client->showinventory && ent->client->pers.health > 0) + ent->client->ps.stats[STAT_LAYOUTS] |= 2; + } + else + { + if (ent->client->showscores || ent->client->showhelp) + ent->client->ps.stats[STAT_LAYOUTS] |= 1; + if (ent->client->showinventory && ent->client->pers.health > 0) + ent->client->ps.stats[STAT_LAYOUTS] |= 2; + } + + // + // frags + // + ent->client->ps.stats[STAT_FRAGS] = ent->client->resp.score; + ent->client->ps.stats[STAT_DEPOSITED] = ent->client->resp.deposited; + + // + // help icon / current weapon if not shown + // + if (ent->client->resp.helpchanged && (level.framenum&8) ) + ent->client->ps.stats[STAT_HELPICON] = gi.imageindex ("i_help"); + else if ( (ent->client->pers.hand == CENTER_HANDED || ent->client->ps.fov > 91) + && ent->client->pers.weapon) + ent->client->ps.stats[STAT_HELPICON] = gi.imageindex (ent->client->pers.weapon->icon); + else + ent->client->ps.stats[STAT_HELPICON] = 0; + + // JOSEPH 14-JUN-99 + ent->client->ps.stats[STAT_HELPICON] = level.helpchange; + // END JOSEPH + + // Teamplay + if (deathmatch->value && teamplay->value) + { + int i; + + // show team scores + for (i=0; i<2; i++) + { + ent->client->ps.stats[STAT_TEAM1_SCORE + i] = team_cash[1+i]; // set score + + ent->client->ps.stats[STAT_TEAM1_FLASH + i] = 0; // set normal + + if (last_safe_withdrawal[i+1] > last_safe_deposit[i+1]) + { + if (last_safe_withdrawal[i+1] > (level.time - 3.0)) + ent->client->ps.stats[STAT_TEAM1_FLASH + i] = 2; // flash red + } + else + { + if (last_safe_deposit[i+1] > (level.time - 3.0)) + ent->client->ps.stats[STAT_TEAM1_FLASH + i] = 1; // flash green + } + } + + // show bagged cash + ent->client->ps.stats[STAT_BAGCASH] = ent->client->pers.bagcash; + + } +} + +// JOSEPH 16-DEC-98 + +// RAFAEL +/*void BeginCutScene (edict_t *ent) +{ + edict_t *player; + + player = g_edicts + 1; + + level.cut_scene_time = level.time + 0.1; + + VectorCopy (ent->s.angles, level.cut_scene_angle); + VectorCopy (ent->s.origin, level.cut_scene_origin); + + VectorCopy (player->s.origin, level.player_oldpos); + VectorCopy (player->s.angles, level.player_oldang); + + MoveClientToCutScene (player); + +}*/ + +void FollowEnt (edict_t *ent) +{ + /*if (ent->target2_ent) + { + vec3_t forward, right, up, forward2, right2, up2, avect, avect2; + + AngleVectors (ent->s.origin, forward, right, up); + AngleVectors (ent->target2_ent->s.origin, forward2, right2, up2); + avect[0] = ((forward[0] + right[0] + up[0]))/3; + avect[1] = ((forward[1] + right[1] + up[1]))/3; + avect[2] = ((forward[2] + right[2] + up[2]))/3; + avect2[0] = ((forward2[0] + right2[0] + up2[0]))/3; + avect2[1] = ((forward2[1] + right2[1] + up2[1]))/3; + avect2[2] = ((forward2[2] + right2[2] + up2[2]))/3; + VectorSubtract(avect, avect2, avect); + VectorNormalize(avect); + vectoangles(avect, ent->s.angles); + }*/ + + if (ent->target2_ent) + { +// vec3_t forward, forward2; + vec3_t avect; + +// Ridah, not sure how this is supposed to work, doesn't make sense to do an AngleVectors() call on an origin +// AngleVectors (ent->s.origin, forward, NULL, NULL); +// AngleVectors (ent->target2_ent->s.origin, forward2, NULL, NULL); +// VectorSubtract(forward, forward2, avect); + + VectorSubtract(ent->target2_ent->s.origin, ent->s.origin, avect); + + VectorNormalize(avect); + vectoangles(avect, ent->s.angles); + } +} + +// JOSEPH 23-FEB-99 +void BeginCutScene (edict_t *ent) +{ + edict_t *player; + + player = g_edicts + 1; + + level.cut_scene_camera_switch = 1; + + level.cut_scene_time = level.time + 0.1; + + VectorCopy(ent->s.angles, ent->save_avel); + VectorCopy(ent->s.origin, ent->savecameraorigin); + + if (ent->cameraangle[0]) + { + ent->s.angles[0] += ent->cameraangle[0]; + } + + if (ent->cameraangle[1]) + { + ent->s.angles[1] += ent->cameraangle[1]; + } + + if (ent->cameraangle[2]) + { + ent->s.angles[2] += ent->cameraangle[2]; + } + + FollowEnt (ent); + + VectorCopy (ent->s.angles, level.cut_scene_angle); + VectorCopy (ent->s.origin, level.cut_scene_origin); + + VectorCopy (player->s.origin, level.player_oldpos); + VectorCopy (player->s.angles, level.player_oldang); + + MoveClientToCutSceneCamera (player, ent->deadticks); +} + +void NewCutSceneCamera (edict_t *ent) +{ + edict_t *player; + + player = g_edicts + 1; + + level.cut_scene_camera_switch = 1; + + VectorCopy(ent->s.angles, ent->save_avel); + VectorCopy(ent->s.origin, ent->savecameraorigin); + + level.cut_scene_time = level.time + 0.1; + + // JOSEPH 19-MAR-99-B + ent->alphalevel = level.time + ent->reactdelay; + // END JOSEPH + + if (ent->cameraangle[0]) + { + ent->s.angles[0] += ent->cameraangle[0]; + } + + if (ent->cameraangle[1]) + { + ent->s.angles[1] += ent->cameraangle[1]; + } + + if (ent->cameraangle[2]) + { + ent->s.angles[2] += ent->cameraangle[2]; + } + + FollowEnt (ent); + + VectorCopy (ent->s.angles, level.cut_scene_angle); + VectorCopy (ent->s.origin, level.cut_scene_origin); + + MoveClientToCutSceneCamera (player, ent->deadticks); +} + +void AdjustCutSceneCamera(edict_t *ent) +{ + edict_t *player; + + player = g_edicts + 1; + + if (ent->accel) + { + if (ent->delay < (level.time - ent->timestamp)) + { + if ((ent->delay + ent->reactdelay) < (level.time - ent->timestamp)) + { + if (ent->speed > 0) + { + ent->speed -= ent->decel * FRAMETIME; + + if (ent->speed < 0) + ent->speed = 0; + } + } + else if (ent->speed < 1) + { + ent->speed += ent->accel * FRAMETIME; + if (ent->speed > 1) + ent->speed = 1; + } + } + } + + level.cut_scene_camera_switch = 0; + + level.cut_scene_time = level.time + 0.1; + + if (ent->rotate[0]) + { + ent->s.angles[0] += ent->rotate[0]*FRAMETIME*ent->speed; + } + + if (ent->rotate[1]) + { + ent->s.angles[1] += ent->rotate[1]*FRAMETIME*ent->speed; + } + + if (ent->rotate[2]) + { + ent->s.angles[2] += ent->rotate[2]*FRAMETIME*ent->speed; + } + + // Ridah, not sure what ->save_avel is, but we need a way of setting an absolute velocity + VectorMA(ent->s.origin, FRAMETIME*ent->speed, ent->cameravel, ent->s.origin); +/* + if (ent->cameravel[0]) + { + vec3_t forward; + + AngleVectors (ent->save_avel, forward, NULL, NULL); + VectorMA(ent->s.origin, ent->cameravel[0]*FRAMETIME, forward, ent->s.origin); + } + + if (ent->cameravel[1]) + { + vec3_t right; + + AngleVectors (ent->save_avel, NULL, right, NULL); + VectorMA(ent->s.origin, ent->cameravel[1]*FRAMETIME, right, ent->s.origin); + } + + if (ent->cameravel[2]) + { + vec3_t up; + + AngleVectors (ent->save_avel, NULL, NULL, up); + VectorMA(ent->s.origin, ent->cameravel[2]*FRAMETIME, up, ent->s.origin); + } +*/ + if (ent->cameravelrel[0]) + { + vec3_t forward; + + AngleVectors (ent->s.angles, forward, NULL, NULL); + VectorMA(ent->s.origin, ent->cameravelrel[0]*FRAMETIME*ent->speed, forward, ent->s.origin); + } + + if (ent->cameravelrel[1]) + { + vec3_t right; + + AngleVectors (ent->s.angles, NULL, right, NULL); + VectorMA(ent->s.origin, ent->cameravelrel[1]*FRAMETIME*ent->speed, right, ent->s.origin); + } + + if (ent->cameravelrel[2]) + { + vec3_t up; + + AngleVectors (ent->s.angles, NULL, NULL, up); + VectorMA(ent->s.origin, ent->cameravelrel[2]*FRAMETIME*ent->speed, up, ent->s.origin); + } + + FollowEnt (ent); + + VectorCopy (ent->s.angles, level.cut_scene_angle); + VectorCopy (ent->s.origin, level.cut_scene_origin); + + //VectorCopy (ent->s.origin, ent->origin); + //VectorCopy (ent->s.origin, ent->oldorigin); + //VectorCopy (player->s.origin, level.player_oldpos); + //VectorCopy (player->s.angles, level.player_oldang); + + // JOSEPH 19-MAR-99-B + // Fade out + if (ent->duration) + { + if ((level.time + ent->duration) > ent->alphalevel) + { + level.totalfade = ent->duration; + level.fadeendtime = level.time + level.totalfade; + level.inversefade = 1; + ent->duration = 0; + } + } + // END JOSEPH + + MoveClientToCutSceneCamera (player, ent->deadticks); +} + +void EndCutScene (edict_t *ent) +{ + edict_t *player; + + player = g_edicts + 1; + + level.cut_scene_camera_switch = 0; + + player->client->ps.fov = 90; + + VectorCopy (level.player_oldpos, player->s.origin); + VectorCopy (level.player_oldang, player->s.angles); + + // JOSEPH 24-FEB-99 + level.cut_scene_camera_switch = 1; + level.cut_scene_end_count = 5; + // END JOSEPH + + level.cut_scene_time = 0; + + player->client->ps.pmove.origin[0] = player->s.origin[0]*8; + player->client->ps.pmove.origin[1] = player->s.origin[1]*8; + player->client->ps.pmove.origin[2] = player->s.origin[2]*8; + + VectorCopy (level.player_oldang, player->client->ps.viewangles); + + + if (!player->client->pers.weapon) + return; + + { + int i; + + + if (!strcmp (player->client->pers.weapon->pickup_name , "SPistol")) + { + if ((player->client->pers.pistol_mods) && (player->client->pers.pistol_mods & WEAPON_MOD_DAMAGE)) + player->client->ps.gunindex = gi.modelindex("models/weapons/silencer_mdx/magnum.mdx"); + else + player->client->ps.gunindex = gi.modelindex(player->client->pers.weapon->view_model); + } + else if (!strcmp (player->client->pers.weapon->pickup_name , "Pistol")) + { + if ((player->client->pers.pistol_mods) && (player->client->pers.pistol_mods & WEAPON_MOD_DAMAGE)) + player->client->ps.gunindex = gi.modelindex("models/weapons/v_colt/magnum.mdx"); + else + player->client->ps.gunindex = gi.modelindex(player->client->pers.weapon->view_model); + } + else if (!strcmp (player->client->pers.weapon->pickup_name, "Heavy machinegun")) + { + if (player->client->pers.pistol_mods & WEAPON_MOD_COOLING_JACKET) + player->client->ps.gunindex = gi.modelindex("models/weapons/v_hmgcool/hmgcool.mdx"); + else + player->client->ps.gunindex = gi.modelindex(player->client->pers.weapon->view_model); + } + else + player->client->ps.gunindex = gi.modelindex(player->client->pers.weapon->view_model); + + + memset(&(player->client->ps.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + player->client->ps.num_parts++; + // player->client->ps.model_parts[PART_HEAD].modelindex = gi.modelindex(player->client->pers.weapon->view_model); + player->client->ps.model_parts[PART_HEAD].modelindex = player->client->ps.gunindex; + for (i=0; iclient->ps.model_parts[PART_HEAD].skinnum[i] = 0; // will we have more than one skin??? + + // HACK, set arm model + if (!strcmp(player->client->pers.weapon->pickup_name, "Shotgun")) + { + player->client->ps.num_parts++; + player->client->ps.model_parts[PART_BODY].modelindex = gi.modelindex("models/weapons/shotgun/hand.mdx"); + for (i=0; iclient->ps.model_parts[PART_BODY].skinnum[i] = 0; // will we have more than one skin??? + player->client->ps.num_parts++; + player->client->ps.model_parts[PART_LEGS].modelindex = gi.modelindex("models/weapons/shotgun/shell.mdx"); + for (i=0; iclient->ps.model_parts[PART_LEGS].skinnum[i] = 0; // will we have more than one skin??? + } + else if (!strcmp(player->client->pers.weapon->pickup_name, "Pipe")) + { + player->client->ps.num_parts++; + player->client->ps.model_parts[PART_BODY].modelindex = gi.modelindex("models/weapons/blakjak/hand.mdx"); + for (i=0; iclient->ps.model_parts[PART_BODY].skinnum[i] = 0; // will we have more than one skin??? + } + else if (!strcmp(player->client->pers.weapon->pickup_name, "Crowbar")) + { + player->client->ps.num_parts++; + player->client->ps.model_parts[PART_BODY].modelindex = gi.modelindex("models/weapons/crowbar/hand.mdx"); + for (i=0; iclient->ps.model_parts[PART_BODY].skinnum[i] = 0; // will we have more than one skin??? + } + else if (!strcmp(player->client->pers.weapon->pickup_name, "FlameThrower")) + { + player->client->ps.num_parts++; + player->client->ps.model_parts[PART_BODY].modelindex = gi.modelindex("models/weapons/v_flamegun/hand.mdx"); + for (i=0; iclient->ps.model_parts[PART_BODY].skinnum[i] = 0; // will we have more than one skin??? + } + // JOSEPH 4-MAR-99 + else if (!strcmp(player->client->pers.weapon->pickup_name, "Bazooka")) + { + player->client->ps.num_parts++; + player->client->ps.model_parts[PART_BODY].modelindex = gi.modelindex("models/weapons/v_rocket_launcher/hand.mdx"); + for (i=0; iclient->ps.model_parts[PART_BODY].skinnum[i] = 0; // will we have more than one skin??? + + player->client->ps.num_parts++; + player->client->ps.model_parts[PART_LEGS].modelindex = gi.modelindex("models/weapons/v_rocket_launcher/shell_a.mdx"); + for (i=0; iclient->ps.model_parts[PART_LEGS].skinnum[i] = 0; // will we have more than one skin??? + + + /* + // note to self: not using this anymore + player->client->ps.num_parts++; + player->client->ps.model_parts[PART_GUN].modelindex = gi.modelindex("models/weapons/v_rocket_launcher/shell_b.mdx"); + for (i=0; iclient->ps.model_parts[PART_GUN].skinnum[i] = 0; // will we have more than one skin??? + */ + + player->client->ps.num_parts++; + player->client->ps.model_parts[PART_GUN2].modelindex = gi.modelindex("models/weapons/v_rocket_launcher/clip.mdx"); + for (i=0; iclient->ps.model_parts[PART_GUN2].skinnum[i] = 0; // will we have more than one skin??? + + + } + // END JOSEPH + else if (!strcmp (player->client->pers.weapon->pickup_name , "SPistol")) + { + player->client->ps.num_parts++; + player->client->ps.model_parts[PART_BODY].modelindex = gi.modelindex("models/weapons/silencer_mdx/handl.mdx"); + for (i=0; iclient->ps.model_parts[PART_BODY].skinnum[i] = 0; // will we have more than one skin??? + + player->client->ps.num_parts++; + player->client->ps.model_parts[PART_LEGS].modelindex = gi.modelindex("models/weapons/silencer_mdx/handr.mdx"); + for (i=0; iclient->ps.model_parts[PART_LEGS].skinnum[i] = 0; // will we have more than one skin??? + + player->client->ps.num_parts++; + player->client->ps.model_parts[PART_GUN].modelindex = gi.modelindex("models/weapons/silencer_mdx/clip.mdx"); + for (i=0; iclient->ps.model_parts[PART_GUN].skinnum[i] = 0; + + } + else if (!strcmp (player->client->pers.weapon->pickup_name , "Pistol")) + { + player->client->ps.num_parts++; + player->client->ps.model_parts[PART_BODY].modelindex = gi.modelindex("models/weapons/v_colt/handl.mdx"); + for (i=0; iclient->ps.model_parts[PART_BODY].skinnum[i] = 0; // will we have more than one skin??? + + player->client->ps.num_parts++; + player->client->ps.model_parts[PART_LEGS].modelindex = gi.modelindex("models/weapons/v_colt/handr.mdx"); + for (i=0; iclient->ps.model_parts[PART_LEGS].skinnum[i] = 0; // will we have more than one skin??? + + player->client->ps.num_parts++; + player->client->ps.model_parts[PART_GUN].modelindex = gi.modelindex("models/weapons/v_colt/clip.mdx"); + for (i=0; iclient->ps.model_parts[PART_GUN].skinnum[i] = 0; + } + // JOSEPH 16-APR-99 + else if (!strcmp (player->client->pers.weapon->pickup_name , "Heavy machinegun")) + { + player->client->ps.num_parts++; + player->client->ps.model_parts[PART_LEGS].modelindex = gi.modelindex("models/weapons/v_hmg/lhand.mdx"); + for (i=0; iclient->ps.model_parts[PART_LEGS].skinnum[i] = 0; // will we have more than one skin??? + + player->client->ps.num_parts++; + player->client->ps.model_parts[PART_BODY].modelindex = gi.modelindex("models/weapons/v_hmg/clip.mdx"); + for (i=0; iclient->ps.model_parts[PART_BODY].skinnum[i] = 0; // will we have more than one skin??? + + } + // END JOSEPH + else if (!strcmp (player->client->pers.weapon->pickup_name , "Grenade Launcher")) + { + player->client->ps.num_parts++; + player->client->ps.model_parts[PART_LEGS].modelindex = gi.modelindex("models/weapons/v_grenade_launcher/lhand.mdx"); + for (i=0; iclient->ps.model_parts[PART_LEGS].skinnum[i] = 0; // will we have more than one skin??? + + player->client->ps.num_parts++; + player->client->ps.model_parts[PART_BODY].modelindex = gi.modelindex("models/weapons/v_grenade_launcher/clip.mdx"); + for (i=0; iclient->ps.model_parts[PART_BODY].skinnum[i] = 0; // will we have more than one skin??? + + } + + } + +// player->client->ps.gunindex = gi.modelindex(player->client->pers.weapon->view_model); +} +// END JOSEPH + +void MoveClientToCutScene (edict_t *ent) +{ + VectorCopy (level.cut_scene_origin, ent->s.origin); + ent->client->ps.pmove.origin[0] = level.cut_scene_origin[0]*8; + ent->client->ps.pmove.origin[1] = level.cut_scene_origin[1]*8; + ent->client->ps.pmove.origin[2] = level.cut_scene_origin[2]*8; + VectorCopy (level.cut_scene_angle, ent->client->ps.viewangles); + ent->client->ps.pmove.pm_type = PM_FREEZE; + + // note to self + // this may cause a problem + ent->client->ps.gunindex = 0; + ent->client->ps.blend[3] = 0; + ent->client->ps.rdflags &= ~RDF_UNDERWATER; + + // clean up powerup info + ent->client->quad_framenum = 0; + ent->client->invincible_framenum = 0; + ent->client->breather_framenum = 0; + ent->client->enviro_framenum = 0; + ent->client->grenade_blew_up = false; + ent->client->grenade_time = 0; + + // RAFAEL + ent->client->quadfire_framenum = 0; + + // RAFAEL + ent->client->trap_blew_up = false; + ent->client->trap_time = 0; + + /* + ent->viewheight = 0; + ent->s.modelindex = 0; + ent->s.modelindex2 = 0; + ent->s.modelindex3 = 0; + ent->s.modelindex = 0; + ent->s.effects = 0; + ent->s.sound = 0; + ent->solid = SOLID_NOT; + */ + +} + +void MoveClientToCutSceneCamera (edict_t *ent, int fov) +{ + ent->client->ps.fov = fov; + + VectorCopy (level.cut_scene_origin, ent->s.origin); + ent->client->ps.pmove.origin[0] = level.cut_scene_origin[0]*8; + ent->client->ps.pmove.origin[1] = level.cut_scene_origin[1]*8; + ent->client->ps.pmove.origin[2] = level.cut_scene_origin[2]*8; + VectorCopy (level.cut_scene_angle, ent->client->ps.viewangles); + ent->client->ps.pmove.pm_type = PM_FREEZE; + + // note to self + // this may cause a problem + ent->client->ps.gunindex = 0; + ent->client->ps.blend[3] = 0; + ent->client->ps.rdflags &= ~RDF_UNDERWATER; + + // clean up powerup info + ent->client->quad_framenum = 0; + ent->client->invincible_framenum = 0; + ent->client->breather_framenum = 0; + ent->client->enviro_framenum = 0; + ent->client->grenade_blew_up = false; + ent->client->grenade_time = 0; + + // RAFAEL + ent->client->quadfire_framenum = 0; + + // RAFAEL + ent->client->trap_blew_up = false; + ent->client->trap_time = 0; + + /* + ent->viewheight = 0; + ent->s.modelindex = 0; + ent->s.modelindex2 = 0; + ent->s.modelindex3 = 0; + ent->s.modelindex = 0; + ent->s.effects = 0; + ent->s.sound = 0; + ent->solid = SOLID_NOT; + */ + +} +// END JOSEPH + +void MoveClientToPawnoMatic (edict_t *ent) +{ +// RAFAEL 03-14-99 +// Drew will compensate by moveing the start pos +// ent->client->ps.fov = 96; + +// ent->s.origin[2] = level.pawn_origin[2]; + ent->client->ps.pmove.origin[0] = level.cut_scene_origin[0]*8; + ent->client->ps.pmove.origin[1] = level.cut_scene_origin[1]*8; + ent->client->ps.pmove.origin[2] = level.cut_scene_origin[2]*8; + + ent->client->ps.pmove.pm_type = PM_FREEZE; + + ent->client->ps.gunindex = 0; + ent->client->ps.blend[3] = 0; + ent->client->ps.rdflags &= ~RDF_UNDERWATER; + + // clean up powerup info + ent->client->quad_framenum = 0; + ent->client->invincible_framenum = 0; + ent->client->breather_framenum = 0; + ent->client->enviro_framenum = 0; + ent->client->grenade_blew_up = false; + ent->client->grenade_time = 0; + + // RAFAEL + ent->client->quadfire_framenum = 0; + + // RAFAEL + ent->client->trap_blew_up = false; + ent->client->trap_time = 0; + + +} diff --git a/gamesrc/P_TRAIL.C b/gamesrc/P_TRAIL.C new file mode 100644 index 0000000..242398d --- /dev/null +++ b/gamesrc/P_TRAIL.C @@ -0,0 +1,127 @@ +#include "g_local.h" + + +/* +============================================================================== + +PLAYER TRAIL + +============================================================================== + +This is a circular list containing the a list of points of where +the player has been recently. It is used by monsters for pursuit. + +.origin the spot +.owner forward link +.aiment backward link +*/ + + +#define TRAIL_LENGTH 8 + +edict_t *trail[TRAIL_LENGTH]; +int trail_head; +qboolean trail_active = false; + +#define NEXT(n) (((n) + 1) & (TRAIL_LENGTH - 1)) +#define PREV(n) (((n) - 1) & (TRAIL_LENGTH - 1)) + + +void PlayerTrail_Init (void) +{ + int n; + + if (deathmatch->value /* FIXME || coop */) + return; + + for (n = 0; n < TRAIL_LENGTH; n++) + { + trail[n] = G_Spawn(); + trail[n]->classname = "player_trail"; + } + + trail_head = 0; + trail_active = true; +} + + +void PlayerTrail_Add (vec3_t spot) +{ + vec3_t temp; + + if (!trail_active) + return; + + VectorCopy (spot, trail[trail_head]->s.origin); + + trail[trail_head]->timestamp = level.time; + + VectorSubtract (spot, trail[PREV(trail_head)]->s.origin, temp); + trail[trail_head]->s.angles[1] = vectoyaw (temp); + + trail_head = NEXT(trail_head); +} + + +void PlayerTrail_New (vec3_t spot) +{ + if (!trail_active) + return; + + PlayerTrail_Init (); + PlayerTrail_Add (spot); +} + + +edict_t *PlayerTrail_PickFirst (edict_t *self) +{ + int marker; + int n; + + if (!trail_active) + return NULL; + + for (marker = trail_head, n = TRAIL_LENGTH; n; n--) + { + if(trail[marker]->timestamp <= self->cast_info.trail_time) + marker = NEXT(marker); + else + break; + } + + if (visible(self, trail[marker])) + { + return trail[marker]; + } + + if (visible(self, trail[PREV(marker)])) + { + return trail[PREV(marker)]; + } + + return trail[marker]; +} + +edict_t *PlayerTrail_PickNext (edict_t *self) +{ + int marker; + int n; + + if (!trail_active) + return NULL; + + for (marker = trail_head, n = TRAIL_LENGTH; n; n--) + { + if(trail[marker]->timestamp <= self->cast_info.trail_time) + marker = NEXT(marker); + else + break; + } + + return trail[marker]; +} + +edict_t *PlayerTrail_LastSpot (void) +{ + return trail[PREV(trail_head)]; +} diff --git a/gamesrc/P_VIEW.C b/gamesrc/P_VIEW.C new file mode 100644 index 0000000..c41cf2d --- /dev/null +++ b/gamesrc/P_VIEW.C @@ -0,0 +1,1904 @@ +#include "g_local.h" +#include "m_player.h" + + +static edict_t *current_player; +static gclient_t *current_client; + +static vec3_t forward, right, up; +float xyspeed; + +float bobmove; +int bobcycle; // odd cycles are right foot going forward +float bobfracsin; // sin(bobfrac*M_PI) + +/* +=============== +SV_CalcRoll + +=============== +*/ +float SV_CalcRoll (vec3_t angles, vec3_t velocity) +{ + float sign; + float side; + float value; + + side = DotProduct (velocity, right); + sign = side < 0 ? -1 : 1; + side = fabs(side); + + value = sv_rollangle->value; + + if (side < sv_rollspeed->value) + side = side * value / sv_rollspeed->value; + else + side = value; + + return side*sign; + +} + + +/* +=============== +P_DamageFeedback + +Handles color blends and view kicks +=============== +*/ +void P_DamageFeedback (edict_t *player) +{ + gclient_t *client; + float side; + float realcount, count, kick; + vec3_t v; + int r, l; + static vec3_t power_color = {0.0, 1.0, 0.0}; + static vec3_t acolor = {1.0, 1.0, 1.0}; + static vec3_t bcolor = {1.0, 0.0, 0.0}; + static vec3_t fcolor = {0.9, 0.6, 0.0}; + + client = player->client; + + // flash the backgrounds behind the status numbers + client->ps.stats[STAT_FLASHES] = 0; + if (client->damage_blood || client->damage_flame) + client->ps.stats[STAT_FLASHES] |= 1; + if (client->damage_armor && !(player->flags & FL_GODMODE) && (client->invincible_framenum <= level.framenum)) + client->ps.stats[STAT_FLASHES] |= 2; + + // total points of damage shot at the player this frame + count = (client->damage_blood + client->damage_flame + client->damage_armor + client->damage_parmor); + if (count == 0) + return; // didn't take any damage +/* + // start a pain animation if still in the player model + if (client->anim_priority < ANIM_PAIN && player->s.modelindex == 255) + { + static int i; + + client->anim_priority = ANIM_PAIN; + if (client->ps.pmove.pm_flags & PMF_DUCKED) + { + player->s.frame = FRAME_crpain1-1; + client->anim_end = FRAME_crpain4; + } + else + { + i = (i+1)%3; + switch (i) + { + case 0: + player->s.frame = FRAME_pain101-1; + client->anim_end = FRAME_pain104; + break; + case 1: + player->s.frame = FRAME_pain201-1; + client->anim_end = FRAME_pain204; + break; + case 2: + player->s.frame = FRAME_pain301-1; + client->anim_end = FRAME_pain304; + break; + } + } + } +*/ + realcount = count; + if (count < 10) + count = 10; // always make a visible effect + + // play an apropriate pain sound + if ((level.time > player->pain_debounce_time) && !(player->flags & FL_GODMODE) && (client->invincible_framenum <= level.framenum)) + { + r = 1 + (rand()&1); + player->pain_debounce_time = level.time + 0.7; + if (player->health < 25) + l = 25; + else if (player->health < 50) + l = 50; + else if (player->health < 75) + l = 75; + else + l = 100; + gi.sound (player, CHAN_VOICE, gi.soundindex(va("*pain%i_%i.wav", l, r)), 1, ATTN_NORM, 0); + } + + // the total alpha of the blend is always proportional to count + if (client->damage_alpha < 0) + client->damage_alpha = 0; + client->damage_alpha += count*0.01; + if (client->damage_alpha < 0.2) + client->damage_alpha = 0.2; + if (client->damage_alpha > 0.6) + client->damage_alpha = 0.6; // don't go too saturated + + // the color of the blend will vary based on how much was absorbed + // by different armors + VectorClear (v); + if (client->damage_parmor) + VectorMA (v, (float)client->damage_parmor/realcount, power_color, v); + if (client->damage_armor) + VectorMA (v, (float)client->damage_armor/realcount, acolor, v); + if (client->damage_blood) + VectorMA (v, (float)client->damage_blood/realcount, bcolor, v); + if (client->damage_flame) + { + VectorMA (v, (float)client->damage_flame/realcount, fcolor, v); + client->damage_alpha = 1.0; + } + VectorCopy (v, client->damage_blend); + + + // + // calculate view angle kicks + // + kick = abs(client->damage_knockback); + if (kick && player->health > 0) // kick of 0 means no view adjust at all + { + kick = kick * 100 / player->health; + + if (kick < count*0.5) + kick = count*0.5; + if (kick > 50) + kick = 50; + + VectorSubtract (client->damage_from, player->s.origin, v); + VectorNormalize (v); + + side = DotProduct (v, right); + client->v_dmg_roll = kick*side*0.3; + + side = -DotProduct (v, forward); + client->v_dmg_pitch = kick*side*0.3; + + client->v_dmg_time = level.time + DAMAGE_TIME; + } + + // + // clear totals + // + client->damage_blood = 0; + client->damage_flame = 0; + client->damage_armor = 0; + client->damage_parmor = 0; + client->damage_knockback = 0; +} + + + + +/* +=============== +SV_CalcViewOffset + +Auto pitching on slopes? + + fall from 128: 400 = 160000 + fall from 256: 580 = 336400 + fall from 384: 720 = 518400 + fall from 512: 800 = 640000 + fall from 640: 960 = + + damage = deltavelocity*deltavelocity * 0.0001 + +=============== +*/ +void SV_CalcViewOffset (edict_t *ent) +{ + float *angles; + float bob; + float ratio; + float delta; + vec3_t v; + + +//=================================== + + // base angles + angles = ent->client->ps.kick_angles; + + // if dead, fix the angle and don't add any kick + if (ent->deadflag) + { + VectorClear (angles); + + ent->client->ps.viewangles[ROLL] = 40; + ent->client->ps.viewangles[PITCH] = -15; + ent->client->ps.viewangles[YAW] = ent->client->killer_yaw; + } + else + { + // add angles based on weapon kick + + VectorCopy (ent->client->kick_angles, angles); + + // add angles based on damage kick + + ratio = (ent->client->v_dmg_time - level.time) / DAMAGE_TIME; + if (ratio < 0) + { + ratio = 0; + ent->client->v_dmg_pitch = 0; + ent->client->v_dmg_roll = 0; + } + angles[PITCH] += ratio * ent->client->v_dmg_pitch; + angles[ROLL] += ratio * ent->client->v_dmg_roll; + + // add pitch based on fall kick + + ratio = (ent->client->fall_time - level.time) / FALL_TIME; + if (ratio < 0) + ratio = 0; + angles[PITCH] += ratio * ent->client->fall_value; + + // add angles based on velocity + + delta = DotProduct (ent->velocity, forward); + angles[PITCH] += delta*run_pitch->value; + + delta = DotProduct (ent->velocity, right); + angles[ROLL] += delta*run_roll->value; + + // add angles based on bob + + delta = bobfracsin * bob_pitch->value * xyspeed; + if (ent->client->ps.pmove.pm_flags & PMF_DUCKED) + delta *= 6; // crouching + angles[PITCH] += delta; + delta = bobfracsin * bob_roll->value * xyspeed; + if (ent->client->ps.pmove.pm_flags & PMF_DUCKED) + delta *= 6; // crouching + if (bobcycle & 1) + delta = -delta; + angles[ROLL] += delta; + } + +//=================================== + + // base origin + + VectorClear (v); + + // add view height + + v[2] += ent->viewheight; + + // add fall height + + ratio = (ent->client->fall_time - level.time) / FALL_TIME; + if (ratio < 0) + ratio = 0; + v[2] -= ratio * ent->client->fall_value * 0.4; + + // add bob height + + bob = bobfracsin * xyspeed * bob_up->value; + if (bob > 6) + bob = 6; + //gi.DebugGraph (bob *2, 255); + v[2] += bob; + + // add kick offset + + VectorAdd (v, ent->client->kick_origin, v); + + // absolutely bound offsets + // so the view can never be outside the player box + + if (v[0] < -14) + v[0] = -14; + else if (v[0] > 14) + v[0] = 14; + if (v[1] < -14) + v[1] = -14; + else if (v[1] > 14) + v[1] = 14; + if (v[2] < -22) + v[2] = -22; + else if (v[2] > 50) + v[2] = 50; + + VectorCopy (v, ent->client->ps.viewoffset); +} + +/* +============== +SV_CalcGunOffset +============== +*/ +void SV_CalcGunOffset (edict_t *ent) +{ + int i; +// float delta; + + // gun angles from bobbing + ent->client->ps.gunangles[ROLL] = xyspeed * bobfracsin * 0.005; + ent->client->ps.gunangles[YAW] = xyspeed * bobfracsin * 0.01; + if (bobcycle & 1) + { + ent->client->ps.gunangles[ROLL] = -ent->client->ps.gunangles[ROLL]; + ent->client->ps.gunangles[YAW] = -ent->client->ps.gunangles[YAW]; + } + + ent->client->ps.gunangles[PITCH] = xyspeed * bobfracsin * 0.005; + +// Ridah, causes problems with flamethrower alignment +/* + // gun angles from delta movement + for (i=0 ; i<3 ; i++) + { + delta = ent->client->oldviewangles[i] - ent->client->ps.viewangles[i]; + if (delta > 180) + delta -= 360; + if (delta < -180) + delta += 360; + if (delta > 45) + delta = 45; + if (delta < -45) + delta = -45; + if (i == YAW) + ent->client->ps.gunangles[ROLL] += 0.1*delta; + ent->client->ps.gunangles[i] += 0.2 * delta; + } +*/ + + // gun height + VectorClear (ent->client->ps.gunoffset); +// ent->ps->gunorigin[2] += bob; + + // gun_x / gun_y / gun_z are development tools + for (i=0 ; i<3 ; i++) + { + ent->client->ps.gunoffset[i] += forward[i]*(gun_y->value); + ent->client->ps.gunoffset[i] += right[i]*gun_x->value; + ent->client->ps.gunoffset[i] += up[i]* (-gun_z->value); + } +} + + +/* +============= +SV_AddBlend +============= +*/ +void SV_AddBlend (float r, float g, float b, float a, float *v_blend) +{ + float a2, a3; + + if (a <= 0) + return; + a2 = v_blend[3] + (1-v_blend[3])*a; // new total alpha + a3 = v_blend[3]/a2; // fraction of color from old + + v_blend[0] = v_blend[0]*a3 + r*(1-a3); + v_blend[1] = v_blend[1]*a3 + g*(1-a3); + v_blend[2] = v_blend[2]*a3 + b*(1-a3); + v_blend[3] = a2; +} + + +/* +============= +SV_CalcBlend +============= +*/ +void SV_CalcBlend (edict_t *ent) +{ + int contents; + vec3_t vieworg; + int remaining; + + ent->client->ps.blend[0] = ent->client->ps.blend[1] = + ent->client->ps.blend[2] = ent->client->ps.blend[3] = 0; + + // add for contents + VectorAdd (ent->s.origin, ent->client->ps.viewoffset, vieworg); + contents = gi.pointcontents (vieworg); + if (contents & (CONTENTS_LAVA|CONTENTS_SLIME|CONTENTS_WATER) ) + ent->client->ps.rdflags |= RDF_UNDERWATER; + else + ent->client->ps.rdflags &= ~RDF_UNDERWATER; + + if (contents & (CONTENTS_SOLID|CONTENTS_LAVA)) + SV_AddBlend (1.0, 0.3, 0.0, 0.6, ent->client->ps.blend); + else if (contents & CONTENTS_SLIME) + SV_AddBlend (0.0, 0.1, 0.05, 0.6, ent->client->ps.blend); + // JOSEPH 20-MAY-99 + else if (contents & CONTENTS_WATER) + //SV_AddBlend (0.5, 0.3, 0.2, 0.4, ent->client->ps.blend); + SV_AddBlend (0.03, 0.04, 0.03, 0.4, ent->client->ps.blend); + // END JOSEPH + + // add for powerups + if (ent->client->quad_framenum > level.framenum) + { + remaining = ent->client->quad_framenum - level.framenum; + if (remaining == 30) // beginning to fade + gi.sound(ent, CHAN_ITEM, gi.soundindex("items/damage2.wav"), 1, ATTN_NORM, 0); + if (remaining > 30 || (remaining & 4) ) + SV_AddBlend (0, 0, 1, 0.08, ent->client->ps.blend); + } + // RAFAEL + else if (ent->client->quadfire_framenum > level.framenum) + { + remaining = ent->client->quadfire_framenum - level.framenum; + if (remaining == 30) // beginning to fade + gi.sound(ent, CHAN_ITEM, gi.soundindex("items/quadfire2.wav"), 1, ATTN_NORM, 0); + if (remaining > 30 || (remaining & 4) ) + SV_AddBlend (1, 0.2, 0.5, 0.08, ent->client->ps.blend); + } + else if (ent->client->invincible_framenum > level.framenum) + { + remaining = ent->client->invincible_framenum - level.framenum; + if (remaining == 30) // beginning to fade + gi.sound(ent, CHAN_ITEM, gi.soundindex("items/protect2.wav"), 1, ATTN_NORM, 0); + if (remaining > 30 || (remaining & 4) ) + SV_AddBlend (1, 1, 0, 0.08, ent->client->ps.blend); + } + else if (ent->client->enviro_framenum > level.framenum) + { + remaining = ent->client->enviro_framenum - level.framenum; + if (remaining == 30) // beginning to fade + gi.sound(ent, CHAN_ITEM, gi.soundindex("items/airout.wav"), 1, ATTN_NORM, 0); + if (remaining > 30 || (remaining & 4) ) + SV_AddBlend (0, 1, 0, 0.08, ent->client->ps.blend); + } + else if (ent->client->breather_framenum > level.framenum) + { + remaining = ent->client->breather_framenum - level.framenum; + if (remaining == 30) // beginning to fade + gi.sound(ent, CHAN_ITEM, gi.soundindex("items/airout.wav"), 1, ATTN_NORM, 0); + if (remaining > 30 || (remaining & 4) ) + SV_AddBlend (0.4, 1, 0.4, 0.04, ent->client->ps.blend); + } + + // JOSEPH 9-JUN-99-B + if (level.fadeendtime > level.time) + { + float alpha; + if (level.inversefade) + { + alpha = 1.0 - ((level.fadeendtime - level.time)*(1.0/level.totalfade)); + } + else + alpha = (level.fadeendtime - level.time)*(1.0/level.totalfade); + + SV_AddBlend (0.0, 0.0, 0.0, alpha, ent->client->ps.blend); + } + else + { + if (level.inversefade) + { + SV_AddBlend (0.0, 0.0, 0.0, 1.0, ent->client->ps.blend); + // JOSEPH 11-JUN-99-B + //gi.StopRender(); + // END JOSEPH + } + } + // END JOSEPH + + // add for damage + if (ent->client->damage_alpha > 0) + SV_AddBlend (ent->client->damage_blend[0],ent->client->damage_blend[1] + ,ent->client->damage_blend[2], ent->client->damage_alpha, ent->client->ps.blend); + + if (ent->client->bonus_alpha > 0) + SV_AddBlend (0.85, 0.7, 0.3, ent->client->bonus_alpha, ent->client->ps.blend); + + // drop the damage value + ent->client->damage_alpha -= 0.06; + if (ent->client->damage_alpha < 0) + ent->client->damage_alpha = 0; + + // drop the bonus value + ent->client->bonus_alpha -= 0.1; + if (ent->client->bonus_alpha < 0) + ent->client->bonus_alpha = 0; +} + + + +// JOSEPH 20-JAN-99 +/* +================= +P_FallingDamage +================= +*/ +void P_FallingDamage (edict_t *ent) +{ + float delta; + int damage; + vec3_t dir; + +// if (ent->s.modelindex != 255) +// return; // not in the player model + + if (ent->movetype == MOVETYPE_NOCLIP) + return; + + if ((ent->client->oldvelocity[2] < 0) && (ent->velocity[2] > ent->client->oldvelocity[2]) && (!ent->groundentity)) + { + delta = ent->client->oldvelocity[2]; + } + else + { + if (!ent->groundentity) + return; + delta = ent->velocity[2] - ent->client->oldvelocity[2]; + + // Ridah, don't do damage so much as Q2 did + if (deathmatch->value)// && ent->client->oldvelocity[2] > -400) + { + delta *= 0.9; + } + } + delta = delta*delta * 0.0001; + + // never take falling damage if completely underwater + if (ent->waterlevel == 3) + return; + if (ent->waterlevel == 2) + delta *= 0.25; + if (ent->waterlevel == 1) + delta *= 0.5; + + if (delta < 1) + return; + + if (delta < 15) + { + // Ridah, Hovercars, no footsteps + if (!(ent->flags & (FL_HOVERCAR | FL_HOVERCAR_GROUND | FL_BIKE))) + // done. + // JOSEPH 1-SEP-98 + ent->s.event = EV_FOOTSTEP0 + ent->footsteptype; + return; + } + + ent->client->fall_value = delta*0.5; + if (ent->client->fall_value > 40) + ent->client->fall_value = 40; + ent->client->fall_time = level.time + FALL_TIME; + + // JOSEPH 26-JAN-99-B + if (delta > 30) + //if (delta >= 15) + // END JOSEPH + { + if (ent->health > 0) + { + if (delta >= 55) + ent->s.event = EV_FALLFAR; + else + ent->s.event = EV_FALL; + } + ent->pain_debounce_time = level.time; // no normal pain sound + + //damage = (delta-30)/2; + damage = delta/2; + + if (damage < 1) + damage = 1; + VectorSet (dir, 0, 0, 1); + + if (!deathmatch->value || !((int)dmflags->value & DF_NO_FALLING) ) + T_Damage (ent, world, world, dir, ent->s.origin, vec3_origin, damage, 0, 0, MOD_FALLING); + } + else + { + // JOSEPH 1-SEP-98 + ent->s.event = EV_FALLSHORT0 + ent->footsteptype; + return; + } +} +// END JOSEPH + + +/* +============= +P_WorldEffects +============= +*/ +void P_WorldEffects (void) +{ + qboolean breather; + qboolean envirosuit; + int waterlevel, old_waterlevel; + + if (current_player->movetype == MOVETYPE_NOCLIP) + { + current_player->air_finished = level.time + 12; // don't need air + return; + } + + waterlevel = current_player->waterlevel; + old_waterlevel = current_client->old_waterlevel; + current_client->old_waterlevel = waterlevel; + + breather = current_client->breather_framenum > level.framenum; + envirosuit = current_client->enviro_framenum > level.framenum; + + // + // if just entered a water volume, play a sound + // + if (!old_waterlevel && waterlevel) + { + PlayerNoise(current_player, current_player->s.origin, PNOISE_SELF); + if (current_player->watertype & CONTENTS_LAVA) + gi.sound (current_player, CHAN_BODY, gi.soundindex("actors/player/lava_in.wav"), 1, ATTN_NORM, 0); + // JOSEPH 13-MAY-99 + else if (current_player->watertype & CONTENTS_SLIME) + gi.sound (current_player, CHAN_BODY, gi.soundindex("actors/player/male/watr_in.wav"), 1, ATTN_NORM, 0); + else if (current_player->watertype & CONTENTS_WATER) + gi.sound (current_player, CHAN_BODY, gi.soundindex("actors/player/male/watr_in.wav"), 1, ATTN_NORM, 0); + // END JOSEPH + current_player->flags |= FL_INWATER; + + // clear damage_debounce, so the pain sound will play immediately + current_player->damage_debounce_time = level.time - 1; + } + + // + // if just completely exited a water volume, play a sound + // + if (old_waterlevel && ! waterlevel) + { + PlayerNoise(current_player, current_player->s.origin, PNOISE_SELF); + // JOSEPH 13-MAY-99 + gi.sound (current_player, CHAN_BODY, gi.soundindex("actors/player/male/watr_out.wav"), 1, ATTN_NORM, 0); + // END JOSEPH + current_player->flags &= ~FL_INWATER; + } + + // + // check for head just going under water + // + if (old_waterlevel != 3 && waterlevel == 3) + { + // JOSEPH 24-NOV-98 + // FIXME : needs to find water to place splash sprite + trace_t tr; + vec3_t start; + int color; + int content_mask = MASK_WATER; + + // JOSEPH 13-MAY-99 + gi.sound (current_player, CHAN_BODY, gi.soundindex("actors/player/male/watr_un.wav"), 1, ATTN_NORM, 0); + // END JOSEPH + + VectorCopy (current_player->s.origin, start); + start[2] += 128; + + tr = gi.trace (start, NULL, NULL, current_player->s.origin, current_player, content_mask); + + if (tr.contents & CONTENTS_WATER) + { + if (strcmp(tr.surface->name, "*brwater") == 0) + color = SPLASH_BROWN_WATER; + else + color = SPLASH_BLUE_WATER; + } + else if (tr.contents & CONTENTS_SLIME) + color = SPLASH_SLIME; + else if (tr.contents & CONTENTS_LAVA) + color = SPLASH_LAVA; + else + color = SPLASH_UNKNOWN; + + if (color != SPLASH_UNKNOWN) + { + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SPLASH); + gi.WriteByte (8); + gi.WritePosition (tr.endpos); + gi.WriteDir (tr.plane.normal); + gi.WriteByte (color); + gi.multicast (tr.endpos, MULTICAST_PVS); + } + + if (color == SPLASH_BLUE_WATER) + { + static float last_ripple; + + if (last_ripple > level.time) + last_ripple = 0; + + if (last_ripple < (level.time - 0.75)) + { + // Ripple effect + SurfaceSpriteEffect( SFX_SPRITE_SURF_RIPPLE, SFX_RIPPLE_WIDTH, SFX_RIPPLE_HEIGHT, + tr.ent, tr.endpos, tr.plane.normal ); + SurfaceSpriteEffect( SFX_SPRITE_SURF_RIPPLE, SFX_RIPPLE_WIDTH<<2, SFX_RIPPLE_HEIGHT<<2, + tr.ent, tr.endpos, tr.plane.normal ); + SurfaceSpriteEffect( SFX_SPRITE_SURF_RIPPLE, SFX_RIPPLE_WIDTH<<1, SFX_RIPPLE_HEIGHT<<1, + tr.ent, tr.endpos, tr.plane.normal ); + } + + } + // END JOSEPH + } + + // + // check for head just coming out of water + // + if (old_waterlevel == 3 && waterlevel != 3) + { + // JOSEPH 24-NOV-98 + // FIXME : needs to find water to place splash sprite + trace_t tr; + vec3_t start; + int color; + int content_mask = MASK_WATER; + + // JOSEPH 29-MAR-99 + if (current_player->air_finished < level.time) + { // gasp for air + // Rafael-final + gi.sound (current_player, CHAN_VOICE, gi.soundindex("*gasp1.wav"), 1, ATTN_NORM, 0); + //gi.sound (current_player, CHAN_VOICE, gi.soundindex("actors/player/male/gasp1.wav"), 1, ATTN_NORM, 0); + + PlayerNoise(current_player, current_player->s.origin, PNOISE_SELF); + } + else if (current_player->air_finished < level.time + 11) + { // just break surface + // Rafael-final + gi.sound (current_player, CHAN_VOICE, gi.soundindex("*gasp2.wav"), 1, ATTN_NORM, 0); + // gi.sound (current_player, CHAN_VOICE, gi.soundindex("actors/player/male/gasp2.wav"), 1, ATTN_NORM, 0); + + } + // END JOSEPH + + VectorCopy (current_player->s.origin, start); + start[2] += 128; + + tr = gi.trace (start, NULL, NULL, current_player->s.origin, current_player, content_mask); + + if (tr.contents & CONTENTS_WATER) + { + if (strcmp(tr.surface->name, "*brwater") == 0) + color = SPLASH_BROWN_WATER; + else + color = SPLASH_BLUE_WATER; + } + else if (tr.contents & CONTENTS_SLIME) + color = SPLASH_SLIME; + else if (tr.contents & CONTENTS_LAVA) + color = SPLASH_LAVA; + else + color = SPLASH_UNKNOWN; + + if (color != SPLASH_UNKNOWN) + { + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SPLASH); + gi.WriteByte (8); + gi.WritePosition (tr.endpos); + gi.WriteDir (tr.plane.normal); + gi.WriteByte (color); + gi.multicast (tr.endpos, MULTICAST_PVS); + } + + if (color == SPLASH_BLUE_WATER) + { + static float last_ripple; + + if (last_ripple > level.time) + last_ripple = 0; + + if (last_ripple < (level.time - 0.75)) + { + // Ripple effect + SurfaceSpriteEffect( SFX_SPRITE_SURF_RIPPLE, SFX_RIPPLE_WIDTH, SFX_RIPPLE_HEIGHT, + tr.ent, tr.endpos, tr.plane.normal ); + SurfaceSpriteEffect( SFX_SPRITE_SURF_RIPPLE, SFX_RIPPLE_WIDTH<<2, SFX_RIPPLE_HEIGHT<<2, + tr.ent, tr.endpos, tr.plane.normal ); + SurfaceSpriteEffect( SFX_SPRITE_SURF_RIPPLE, SFX_RIPPLE_WIDTH<<1, SFX_RIPPLE_HEIGHT<<1, + tr.ent, tr.endpos, tr.plane.normal ); + } + + } + // END JOSEPH + } + + // + // check for drowning + // + if (waterlevel == 3) + { + // breather or envirosuit give air + if (breather || envirosuit) + { + current_player->air_finished = level.time + 10; + + if (((int)(current_client->breather_framenum - level.framenum) % 25) == 0) + { + // JOSEPH 29-MAR-99 + //if (!current_client->breather_sound) + // gi.sound (current_player, CHAN_AUTO, gi.soundindex("actors/player/u_breath1.wav"), 1, ATTN_NORM, 0); + //else + // gi.sound (current_player, CHAN_AUTO, gi.soundindex("actors/player/u_breath2.wav"), 1, ATTN_NORM, 0); + // END JOSEPH + current_client->breather_sound ^= 1; + PlayerNoise(current_player, current_player->s.origin, PNOISE_SELF); + //FIXME: release a bubble? + } + } + + // if out of air, start drowning + if (current_player->air_finished < level.time) + { // drown! + if (current_player->client->next_drown_time < level.time + && current_player->health > 0) + { + current_player->client->next_drown_time = level.time + 1; + + // take more damage the longer underwater + current_player->dmg += 2; + if (current_player->dmg > 15) + current_player->dmg = 15; + + // play a gurp sound instead of a normal pain sound + if (current_player->health <= current_player->dmg) + gi.sound (current_player, CHAN_VOICE, gi.soundindex("actors/player/male/drown1.wav"), 1, ATTN_NORM, 0); + else if (rand()&1) + gi.sound (current_player, CHAN_VOICE, gi.soundindex("*gurp1.wav"), 1, ATTN_NORM, 0); + else + gi.sound (current_player, CHAN_VOICE, gi.soundindex("*gurp2.wav"), 1, ATTN_NORM, 0); + + current_player->pain_debounce_time = level.time; + + T_Damage (current_player, world, world, vec3_origin, current_player->s.origin, vec3_origin, current_player->dmg, 0, DAMAGE_NO_ARMOR, MOD_WATER); + } + } + } + else + { + current_player->air_finished = level.time + 12; + current_player->dmg = 2; + } + + // + // check for sizzle damage + // + if (waterlevel && (current_player->watertype&(CONTENTS_LAVA|CONTENTS_SLIME)) ) + { + if (current_player->watertype & CONTENTS_LAVA) + { + if (current_player->health > 0 + && current_player->pain_debounce_time <= level.time + && current_client->invincible_framenum < level.framenum) + { + if (rand()&1) + gi.sound (current_player, CHAN_VOICE, gi.soundindex("actors/player/burn1.wav"), 1, ATTN_NORM, 0); + else + gi.sound (current_player, CHAN_VOICE, gi.soundindex("actors/player/burn2.wav"), 1, ATTN_NORM, 0); + current_player->pain_debounce_time = level.time + 1; + } + + if (envirosuit) // take 1/3 damage with envirosuit + T_Damage (current_player, world, world, vec3_origin, current_player->s.origin, vec3_origin, 1*waterlevel, 0, 0, MOD_LAVA); + else + T_Damage (current_player, world, world, vec3_origin, current_player->s.origin, vec3_origin, 3*waterlevel, 0, 0, MOD_LAVA); + } + + if (current_player->watertype & CONTENTS_SLIME) + { + if (!envirosuit) + { // no damage from slime with envirosuit + T_Damage (current_player, world, world, vec3_origin, current_player->s.origin, vec3_origin, 1*waterlevel, 0, 0, MOD_SLIME); + } + } + } +} + + +/* +=============== +G_SetClientEffects +=============== +*/ +void G_SetClientEffects (edict_t *ent) +{ + int pa_type; + int remaining; + + ent->s.effects = 0; + ent->s.renderfx = 0; + + // RAFAEL + if (level.cut_scene_time) + return; + else if (level.pawn_time) + return; + else if (level.intermissiontime) + return; + + if (ent->onfiretime > 0) + { + ent->s.effects |= EF_FLAMETHROWER; + + if (ent->health <= 0) + ent->onfiretime -= 1; + } + + if (ent->health <= 0) + return; + + if (ent->powerarmor_time > level.time) + { + pa_type = PowerArmorType (ent); + if (pa_type == POWER_ARMOR_SCREEN) + { + ent->s.effects |= EF_POWERSCREEN; + } + else if (pa_type == POWER_ARMOR_SHIELD) + { + ent->s.effects |= EF_COLOR_SHELL; + ent->s.renderfx |= RF_SHELL_GREEN; + } + } + + if (ent->client->quad_framenum > level.framenum) + { + remaining = ent->client->quad_framenum - level.framenum; + if (remaining > 30 || (remaining & 4) ) + ent->s.effects |= EF_QUAD; + } + + // RAFAEL + if (ent->client->quadfire_framenum > level.framenum) + { + remaining = ent->client->quadfire_framenum - level.framenum; + if (remaining > 30 || (remaining & 4) ) + ent->s.effects |= EF_QUAD; + } + + + if (ent->client->invincible_framenum > level.framenum) + { + remaining = ent->client->invincible_framenum - level.framenum; + if (remaining > 30 || (remaining & 4) ) + ent->s.effects |= EF_PENT; + } + + // show cheaters!!! + if (ent->flags & FL_GODMODE) + { + ent->s.effects |= EF_COLOR_SHELL; + ent->s.renderfx |= (RF_SHELL_RED|RF_SHELL_GREEN|RF_SHELL_BLUE); + } + + if (deathmatch->value && teamplay->value && ent->client->pers.bagcash) + { + ent->s.renderfx2 |= RF2_MONEYBAG; + } + else + { + ent->s.renderfx2 &= ~RF2_MONEYBAG; + } +} + + +// JOSEPH 27-JAN-99 +/* +=============== +G_SetClientEvent +=============== +*/ +void G_SetClientEvent (edict_t *ent) +{ + if (ent->s.event) + return; + + if ( ent->groundentity && xyspeed > 270) + { + if ( (int)(current_client->bobtime+bobmove) != bobcycle ) + // Ridah, Hovercars, no footsteps + if (!(ent->flags & (FL_HOVERCAR | FL_HOVERCAR_GROUND | FL_BIKE))) + // done. + // JOSEPH 1-SEP-98 + { + if (ent->footsteptype == 8) + { + if (bobcycle & 1) + ent->s.event = EV_FOOTSTEP0 + ent->footsteptype; + } + else + { + ent->s.event = EV_FOOTSTEP0 + ent->footsteptype; + } + } + } +} +// END JOSEPH + + +/* +=============== +G_SetClientSound +=============== +*/ +void G_SetClientSound (edict_t *ent) +{ + char *weap; + + + if (ent->client->pers.game_helpchanged != game.helpchanged) + { + ent->client->pers.game_helpchanged = game.helpchanged; + ent->client->pers.helpchanged = 1; + } + + + // JOSEPH 29-MAR-99 + // help beep (no more than three times) + /*if (ent->client->pers.helpchanged && ent->client->pers.helpchanged <= 3 && !(level.framenum&63) ) + { + ent->client->pers.helpchanged++; + gi.sound (ent, CHAN_VOICE, gi.soundindex ("misc/pc_up.wav"), 1, ATTN_STATIC, 0); + }*/ + // END JOSEPH + + if (ent->client->pers.weapon) + weap = ent->client->pers.weapon->classname; + else + weap = ""; + + if (ent->waterlevel && (ent->watertype&(CONTENTS_LAVA|CONTENTS_SLIME)) ) + ent->s.sound = snd_fry; + else if (strcmp(weap, "weapon_railgun") == 0) + ent->s.sound = gi.soundindex("weapons/rg_hum.wav"); + else if (strcmp(weap, "weapon_bfg") == 0) + ent->s.sound = gi.soundindex("weapons/bfg_hum.wav"); + // RAFAEL + else if (strcmp (weap, "weapon_phalanx") == 0) + ent->s.sound = gi.soundindex ("weapons/phaloop.wav"); + else if (ent->client->weapon_sound) + ent->s.sound = ent->client->weapon_sound; + else if (strcmp (weap, "weapon_flamethrower") == 0) + ent->s.sound = gi.soundindex ("weapons/flame_thrower/flamepilot.wav"); + else + ent->s.sound = 0; +} + +/* +=============== +G_SetClientFrame +=============== +*/ + +void G_SetClientFrame (edict_t *ent) +{ +#define WEAPON_NONE 0 +#define WEAPON_MELEE 1 +#define WEAPON_GENERIC 2 +#define WEAPON_PISTOL 3 + + gclient_t *client; + vec3_t vel; + float side_dot, fwd_dot, speed; + int duck, run, slide; + int weapontype; + int oldframe, oldend; + +// Ridah, Hovercars + if (ent->flags & (FL_HOVERCAR | FL_HOVERCAR_GROUND | FL_BIKE)) + { // always frame 0, use visiblity for model_parts to represent damage + ent->s.frame = 0; + return; + } +// done. + +// if (ent->s.modelindex != 255) +// return; // not in the player model + + client = ent->client; + + if (client->ps.pmove.pm_flags & PMF_DUCKED) + duck = true; + else + duck = false; + + VectorCopy( ent->velocity, vel ); + vel[2] = 0; + speed = VectorNormalize( vel ); + + run = 0; + slide = 0; + + if (speed > 1) + { + side_dot = DotProduct( right, vel ); + fwd_dot = DotProduct( forward, vel ); + + if (fwd_dot < -0.5) + run = -1; + else if (fwd_dot > 0.5) + run = 1; + + if (side_dot < -0.5) + slide = -1; + else if (side_dot > 0.5) + slide = 1; + } + + run *= 1 + (speed > 200); + + if (client->pers.weapon && (ent->noise_time > (level.time + 1.5))) + { + if (strstr(client->pers.weapon->classname, "pistol")) + weapontype = WEAPON_PISTOL; + else if (!client->pers.weapon->ammo) + weapontype = WEAPON_MELEE; + else + weapontype = WEAPON_GENERIC; + } + else + { + weapontype = WEAPON_NONE; + } + + + if (weapontype == WEAPON_MELEE) + { + + // always use normal run if melee and moving + if (run || slide) + { + if (!run) + run = 1; + + run = 2 * (int)(run/fabs(run)); + + slide = 0; + } + + } + + if (client->anim_priority == ANIM_DEATH) + { + if (ent->s.frame < client->anim_end) + ent->s.frame++; + return; // stay there + } + + if ((client->anim_priority < ANIM_DEATH) && (client->last_weapontype != weapontype)) + goto newanim; + + // check for stand/duck and stop/go transitions + if (duck != client->anim_duck && client->anim_priority < ANIM_DEATH) + goto newanim; + if (run != client->anim_run && client->anim_priority <= ANIM_BASIC) + goto newanim; + if (slide != client->anim_slide && !client->anim_run && client->anim_priority <= ANIM_BASIC) + goto newanim; + if (!ent->groundentity && client->anim_priority <= ANIM_WAVE) + goto newanim; + if (client->anim_priority == ANIM_JUMP && ent->groundentity) + goto newanim; + + // attacking while standing? + if (!client->anim_run && !client->anim_slide && (client->anim_priority == ANIM_BASIC) && (client->buttons & BUTTON_ATTACK)) + goto newanim; + + if ((client->anim_priority == ANIM_REVERSE) || client->anim_reverse) + { + if(ent->s.frame > client->anim_end) + { + ent->s.frame--; + return; + } + } + else if (ent->s.frame < client->anim_end) + { // continue an animation + ent->s.frame++; + return; + } + + if (client->anim_priority == ANIM_JUMP) + { + if (!ent->groundentity) + { + trace_t tr; + vec3_t endpos; + + VectorMA( ent->s.origin, 1, forward, endpos ); + tr = gi.trace( ent->s.origin, ent->mins, ent->maxs, endpos, ent, CONTENTS_LADDER ); + + if (tr.fraction < 1 && tr.contents & CONTENTS_LADDER) + { // climbing animation + if (fabs(client->last_climb_anim_z - ent->s.origin[2]) > 1) + { + // JOSEPH 14-MAY-99 + if (ent->last_step_time < (level.time-0.2)) + { + ent->s.event = EV_FOOTSTEP0 + 4; + ent->last_step_time = level.time; + } + // END JOSEPH + + if (ent->s.frame < FRAME_clmb_loop_01 || (ent->s.frame >= FRAME_clmb_loop_09)) + { + ent->s.frame = FRAME_clmb_loop_01; + } + else + { + if (client->last_climb_anim_z > ent->s.origin[2]) + ent->s.frame--; + else + ent->s.frame++; + } + client->last_climb_anim_z = ent->s.origin[2]; + } + } + else + { + client->last_climb_anim_z = ent->s.origin[2]; + } + + return; // stay there + } + + ent->client->anim_priority = ANIM_WAVE; + +// ent->s.frame = FRAME_jump1_01; + ent->client->anim_end = FRAME_jump_07; + return; + } + +newanim: + // return to either a running or standing frame + client->anim_priority = ANIM_BASIC; + client->anim_reverse = false; + client->anim_duck = duck; + client->anim_run = run; + client->anim_slide = slide; + + client->last_weapontype = weapontype; + + + oldframe = ent->s.frame; + oldend = client->anim_end; + + if (!ent->groundentity) + { + client->anim_priority = ANIM_JUMP; +// if (ent->s.frame != FRAME_jump_07) + ent->s.frame = FRAME_jump_01; + client->anim_end = FRAME_jump_07; + } + else if (run) + { // running + if (duck) + { + if (run < 0) + { + client->anim_reverse = true; + + switch (weapontype) + { + case WEAPON_PISTOL: + ent->s.frame = FRAME_p_crch_walk_06; + client->anim_end = FRAME_p_crch_walk_01; + break; + + case WEAPON_MELEE: + // TODO: need crouch melee + + default: + ent->s.frame = FRAME_crch_shuf_05; + client->anim_end = FRAME_crch_shuf_01; + } + } + else + { + switch (weapontype) + { + case WEAPON_PISTOL: + ent->s.frame = FRAME_p_crch_walk_01; + client->anim_end = FRAME_p_crch_walk_06; + break; + + case WEAPON_MELEE: + // TODO: need crouch melee + + default: + ent->s.frame = FRAME_crch_shuf_01; + client->anim_end = FRAME_crch_shuf_05; + } + } + } + else + { + if (run < 0) + { + if (fabs(run) < 2) // walking backwards + { + client->anim_reverse = true; + + switch (weapontype) + { + case WEAPON_PISTOL: + ent->s.frame = FRAME_p_walk_sht_10; + client->anim_end = FRAME_p_walk_sht_01; + break; + + case WEAPON_MELEE: + if (client->buttons & BUTTON_ATTACK) + { + ent->s.frame = FRAME_run_melee_06; + client->anim_end = FRAME_run_melee_01; + } + else + { + ent->s.frame = FRAME_walk_gdown_10; + client->anim_end = FRAME_walk_gdown_01; + } + break; + + case WEAPON_NONE: + ent->s.frame = FRAME_walk_gdown_10; + client->anim_end = FRAME_walk_gdown_01; + break; + + default: + ent->s.frame = FRAME_walk_tg_sht_10; + client->anim_end = FRAME_walk_tg_sht_01; + } + } + else // running backwards + { + client->anim_reverse = true; + + switch (weapontype) + { + case WEAPON_PISTOL: + ent->s.frame = FRAME_p_run_shoot_06; + client->anim_end = FRAME_p_run_shoot_01; + break; + + case WEAPON_MELEE: + if (client->buttons & BUTTON_ATTACK) + { + ent->s.frame = FRAME_run_melee_06; + client->anim_end = FRAME_run_melee_01; + } + else + { + ent->s.frame = FRAME_run_gun_dn_06; + client->anim_end = FRAME_run_gun_dn_01; + } + break; + + case WEAPON_NONE: + ent->s.frame = FRAME_run_gun_dn_06; + client->anim_end = FRAME_run_gun_dn_01; + break; + + default: + ent->s.frame = FRAME_run_tg_sht_06; + client->anim_end = FRAME_run_tg_sht_01; + } + } + } + else + { + if (fabs(run) < 2) // walking forwards + { + switch (weapontype) + { + case WEAPON_PISTOL: + ent->s.frame = FRAME_p_walk_sht_01; + client->anim_end = FRAME_p_walk_sht_10; + break; + + case WEAPON_MELEE: + if (client->buttons & BUTTON_ATTACK) + { + ent->s.frame = FRAME_run_melee_01; + client->anim_end = FRAME_run_melee_06; + } + else + { + ent->s.frame = FRAME_walk_gdown_01; + client->anim_end = FRAME_walk_gdown_10; + } + break; + + case WEAPON_NONE: + ent->s.frame = FRAME_walk_gdown_01; + client->anim_end = FRAME_walk_gdown_10; + break; + + default: + ent->s.frame = FRAME_walk_tg_sht_01; + client->anim_end = FRAME_walk_tg_sht_10; + } + } + else // running forwards + { + switch (weapontype) + { + case WEAPON_PISTOL: + ent->s.frame = FRAME_p_run_shoot_01; + client->anim_end = FRAME_p_run_shoot_06; + break; + + case WEAPON_MELEE: + if (client->buttons & BUTTON_ATTACK) + { + ent->s.frame = FRAME_run_melee_01; + client->anim_end = FRAME_run_melee_06; + } + else + { + ent->s.frame = FRAME_run_gun_dn_01; + client->anim_end = FRAME_run_gun_dn_06; + } + break; + + case WEAPON_NONE: + ent->s.frame = FRAME_run_gun_dn_01; + client->anim_end = FRAME_run_gun_dn_06; + break; + + default: + ent->s.frame = FRAME_run_tg_sht_01; + client->anim_end = FRAME_run_tg_sht_06; + } + } + } + + // keep smooth transitions between firing/firing+running + if ((fabs(oldend - oldframe) <= fabs(ent->s.frame - client->anim_end)) && (fabs(ent->s.frame - client->anim_end) == 5)) + { + int diff; + + diff = fabs(ent->s.frame - client->anim_end); + + if (ent->s.frame < client->anim_end) + { + ent->s.frame += (diff - fabs(oldend - oldframe)) + 1; + if (ent->s.frame > client->anim_end) + ent->s.frame = client->anim_end - diff; + } + else + { + ent->s.frame -= (diff - fabs(oldend - oldframe)) + 1; + if (ent->s.frame < client->anim_end) + ent->s.frame = client->anim_end + diff; + } + } + } + } + else if (slide) + { // strafing + if (duck) + { + switch (weapontype) + { + case WEAPON_PISTOL: + ent->s.frame = FRAME_p_crch_walk_01; + client->anim_end = FRAME_p_crch_walk_06; + break; + + default: + ent->s.frame = FRAME_crch_shuf_01; + client->anim_end = FRAME_crch_shuf_05; + } + } + else + { + if (slide < 0) + { + if ( (client->anim_end == FRAME_rsd_tg_run_06) + || (client->anim_end == FRAME_p_rside_run_06)) + { // changing from one side to the other, go to run first + + switch (weapontype) + { + case WEAPON_PISTOL: + ent->s.frame = FRAME_p_run_shoot_01; + client->anim_end = FRAME_p_run_shoot_02; + break; + + default: + ent->s.frame = FRAME_run_tg_sht_01; + client->anim_end = FRAME_run_tg_sht_02; + } + + } + else + { + switch (weapontype) + { + case WEAPON_PISTOL: + ent->s.frame = FRAME_p_lside_run_01; + client->anim_end = FRAME_p_lside_run_06; + break; + + default: + ent->s.frame = FRAME_lsd_tg_run_01; + client->anim_end = FRAME_lsd_tg_run_06; + } + + } + } + else + { + if ( (client->anim_end == FRAME_lsd_tg_run_06) + || (client->anim_end == FRAME_p_lside_run_06)) + { // changing from one side to the other, go to run first + switch (weapontype) + { + case WEAPON_PISTOL: + ent->s.frame = FRAME_p_run_shoot_01; + client->anim_end = FRAME_p_run_shoot_02; + break; + + default: + ent->s.frame = FRAME_run_tg_sht_01; + client->anim_end = FRAME_run_tg_sht_02; + } + } + else + { + switch (weapontype) + { + case WEAPON_PISTOL: + ent->s.frame = FRAME_p_rside_run_01; + client->anim_end = FRAME_p_rside_run_06; + break; + + default: + ent->s.frame = FRAME_rsd_tg_run_01; + client->anim_end = FRAME_rsd_tg_run_06; + } + } + } + + } + } + else if (client->buttons & BUTTON_ATTACK) + { // standing attack + + client->anim_priority = ANIM_ATTACK; + + if (duck) + { + switch (weapontype) + { + case WEAPON_MELEE: + // TODO, crouch melee? + case WEAPON_PISTOL: + ent->s.frame = FRAME_p_crch_sht_01; + client->anim_end = FRAME_p_crch_sht_05; + break; + + case WEAPON_NONE: + case WEAPON_GENERIC: + ent->s.frame = FRAME_crouch_shoot_01; + client->anim_end = FRAME_crouch_shoot_06; + break; + } + } + else + { + switch (weapontype) + { + case WEAPON_NONE: + case WEAPON_GENERIC: + ent->s.frame = FRAME_tg_shoot_01; + client->anim_end = FRAME_tg_shoot_05; + break; + + case WEAPON_MELEE: + if (rand()%2) + { + ent->s.frame = FRAME_melee3_01; + client->anim_end = FRAME_melee3_07; + } + else + { + ent->s.frame = FRAME_melee4_01; + client->anim_end = FRAME_melee4_06; + } + break; + + case WEAPON_PISTOL: + ent->s.frame = FRAME_p_std_shoot_01; + client->anim_end = FRAME_p_std_shoot_04; + break; + } + } + } + else + { // standing + + if (duck) + { + switch (weapontype) + { + case WEAPON_GENERIC: + ent->s.frame = FRAME_tg_crch_rdy_01; + client->anim_end = FRAME_tg_crch_rdy_27; + break; + + default: + ent->s.frame = FRAME_1p_crch_rdy_01; + client->anim_end = FRAME_1p_crch_rdy_18; + } + } + else + { + switch (weapontype) + { + case WEAPON_PISTOL: + ent->s.frame = FRAME_1pstl_rdy_01; + client->anim_end = FRAME_1pstl_rdy_23; + break; + + case WEAPON_MELEE: + ent->s.frame = FRAME_melee_rdy_01; + client->anim_end = FRAME_melee_rdy_19; + break; + + default: + ent->s.frame = FRAME_tgun_rdy_01; + client->anim_end = FRAME_tgun_rdy_32; + break; + + } + } + } +} + + + +/* +================= +ClientEndServerFrame + +Called for each player at the end of the server frame +and right after spawning +================= +*/ +void ClientEndServerFrame (edict_t *ent) +{ + float bobtime; + int i; + + // Ridah, had to put this here so the AI can process a gunshot before it gets cleared + ent->client->gun_noise = false; + + current_player = ent; + current_client = ent->client; + + // + // If the origin or velocity have changed since ClientThink(), + // update the pmove values. This will happen when the client + // is pushed by a bmodel or kicked by an explosion. + // + // If it wasn't updated here, the view position would lag a frame + // behind the body position when pushed -- "sinking into plats" + // + for (i=0 ; i<3 ; i++) + { + current_client->ps.pmove.origin[i] = ent->s.origin[i]*8.0; + current_client->ps.pmove.velocity[i] = ent->velocity[i]*8.0; + } + + // + // If the end of unit layout is displayed, don't give + // the player any normal movement attributes + // + if (level.intermissiontime) + { + // FIXME: add view drifting here? + current_client->ps.blend[3] = 0; + current_client->ps.fov = 90; + G_SetStats (ent); + return; + } + + // RAFAEL + // JOSEPH 25-FEB-99 + if (level.cut_scene_time) + { + current_client->ps.blend[3] = 0; + // note to self + // we may want to script the fov to an event + // Joseph 22-FEB-99 + //current_client->ps.fov = 90; + // END JOSEPH + SV_CalcBlend (ent); + G_SetStats (ent); + return; + } + // END JOSEPH + else if (level.pawn_time) + { + current_client->ps.blend[3] = 0; + + G_SetStats (ent); + return; + } + + AngleVectors (ent->client->v_angle, forward, right, up); + + // burn from lava, etc + P_WorldEffects (); + + // + // set model angles from view angles so other things in + // the world can tell which direction you are looking + // + + // Ridah, Hovercars, handle angles differently + if (ent->flags & (FL_HOVERCAR | FL_HOVERCAR_GROUND | FL_BIKE)) + { + if (current_client->ps.fov < 105) + current_client->ps.fov = 105; // fix FOV while in Hovercar + + if (ent->client->v_angle[PITCH] > 180) + ent->s.angles[PITCH] = (-360 + ent->client->v_angle[PITCH]); + else + ent->s.angles[PITCH] = ent->client->v_angle[PITCH]; + } + else + // done. + { + if (ent->client->v_angle[PITCH] > 180) + ent->s.angles[PITCH] = (-360 + ent->client->v_angle[PITCH])/3; + else + ent->s.angles[PITCH] = ent->client->v_angle[PITCH]/3; + + // Ridah, snap the pitch so that it doesn't change as often (cut network bandwidth) + ent->s.angles[PITCH] = (int)(((int)ent->s.angles[PITCH]) / 5) * 5; + } + ent->s.angles[YAW] = ent->client->v_angle[YAW]; + ent->s.angles[ROLL] = 0; + ent->s.angles[ROLL] = SV_CalcRoll (ent->s.angles, ent->velocity)*4; +/* + if (ent->client->anim_end == FRAME_lside_run_07) + ent->s.angles[YAW] = anglemod(ent->s.angles[YAW] - 90); + else if (ent->client->anim_end == FRAME_rside_run_07) + ent->s.angles[YAW] = anglemod(ent->s.angles[YAW] + 90); +*/ + // Ridah, Hovercars + if (ent->flags & (FL_HOVERCAR | FL_HOVERCAR_GROUND | FL_BIKE)) + ent->s.angles[ROLL] *= 0.5; + // done. + + // + // calculate speed and cycle to be used for + // all cyclic walking effects + // + xyspeed = sqrt(ent->velocity[0]*ent->velocity[0] + ent->velocity[1]*ent->velocity[1]); + + if (xyspeed < 5) + { + bobmove = 0; + current_client->bobtime = 0; // start at beginning of cycle again + } + else if (ent->groundentity) + { // so bobbing only cycles when on ground + if (xyspeed > 210) + bobmove = 0.25; + else if (xyspeed > 100) + bobmove = 0.125; + else + bobmove = 0.0625; + } + + bobtime = (current_client->bobtime += bobmove); + + if (current_client->ps.pmove.pm_flags & PMF_DUCKED) + bobtime *= 4; + + bobcycle = (int)bobtime; + bobfracsin = fabs(sin(bobtime*M_PI)); + + // detect hitting the floor +// Ridah, Hovercars, no falling damage +if (!(ent->flags & (FL_HOVERCAR | FL_HOVERCAR_GROUND | FL_BIKE))) +// done. + P_FallingDamage (ent); + + // apply all the damage taken this frame +// Ridah, doesn't work with new palette? + P_DamageFeedback (ent); + + // determine the view offsets +// Ridah, Hovercars, no view offsets +if (ent->flags & (FL_HOVERCAR | FL_HOVERCAR_GROUND | FL_BIKE)) + ent->client->ps.viewoffset[2] = ent->viewheight; +else +// done. + SV_CalcViewOffset (ent); + + + // determine the gun offsets +// Ridah, Hovercars, no gun offsets +if (ent->flags & (FL_HOVERCAR | FL_HOVERCAR_GROUND | FL_BIKE)) +// done. + SV_CalcGunOffset (ent); + + // Ridah, fade out kicks, which are used for mono's + if (ent->flags & (FL_BIKE)) + { + if (ent->client->kick_angles[PITCH] > 0) + { + ent->client->kick_angles[PITCH] -= 5 * FRAMETIME; + if (ent->client->kick_angles[PITCH] < 0) + ent->client->kick_angles[PITCH] = 0; + } + else if (ent->client->kick_angles[PITCH] < 0) + { + ent->client->kick_angles[PITCH] += 5 * FRAMETIME; + if (ent->client->kick_angles[PITCH] > 0) + ent->client->kick_angles[PITCH] = 0; + } + + VectorCopy( ent->client->kick_angles, ent->client->ps.kick_angles ); + } + + // determine the full screen color blend + // must be after viewoffset, so eye contents can be + // accurately determined + // FIXME: with client prediction, the contents + // should be determined by the client + SV_CalcBlend (ent); + + G_SetStats (ent); + + G_SetClientEvent (ent); + + G_SetClientEffects (ent); + + G_SetClientSound (ent); + + G_SetClientFrame (ent); + + VectorCopy (ent->velocity, ent->client->oldvelocity); + VectorCopy (ent->client->ps.viewangles, ent->client->oldviewangles); + + // clear weapon kicks + VectorClear (ent->client->kick_origin); + + // Ridah, fade out kicks, which are used for mono's + if (!(ent->flags & FL_BIKE)) + { + VectorClear (ent->client->kick_angles); + } + + // if the scoreboard is up, update it + if (ent->client->showscores && !(level.framenum & 31) ) + { + DeathmatchScoreboardMessage (ent, ent->enemy); + gi.unicast (ent, false); + } +} + diff --git a/gamesrc/P_WEAPON.C b/gamesrc/P_WEAPON.C new file mode 100644 index 0000000..7728fdd --- /dev/null +++ b/gamesrc/P_WEAPON.C @@ -0,0 +1,3235 @@ +// g_weapon.c + +#include "g_local.h" +#include "m_player.h" + + +static qboolean is_quad; +// RAFAEL +static qboolean is_quadfire; +static byte is_silenced; + +void weapon_grenade_fire (edict_t *ent, qboolean held); +// RAFAEL +void weapon_trap_fire (edict_t *ent, qboolean held); + +static void P_ProjectSource (gclient_t *client, vec3_t point, vec3_t distance, vec3_t forward, vec3_t right, vec3_t result) +{ + vec3_t _distance; + + VectorCopy (distance, _distance); + if (client->pers.hand == LEFT_HANDED) + _distance[1] *= -1; + else if (client->pers.hand == CENTER_HANDED) + _distance[1] = 0; + G_ProjectSource (point, _distance, forward, right, result); +} + + +/* +=============== +PlayerNoise + +Each player can have two noise objects associated with it: +a personal noise (jumping, pain, weapon firing), and a weapon +target noise (bullet wall impacts) + +Monsters that don't directly see the player can move +to a noise in hopes of seeing the player from there. +=============== +*/ +void PlayerNoise(edict_t *who, vec3_t where, int type) +{ + + if (deathmatch->value && type != PNOISE_WEAPON) + return; + + VectorCopy( who->s.origin, who->noise_pos ); + who->noise_time = level.time + 2; + who->noise_type = type; + VectorCopy( who->s.angles, who->noise_angles ); + +} + +#define MAX_PISTOL_ROUNDS 10 +#define MAX_TOMMYGUN_ROUNDS 50 +#define MAX_SHOTGUN_ROUNDS 8 +#define MAX_BARMACHINEGUN_ROUNDS 30 +#define MAX_GRENADELAUNCHER_ROUNDS 3 +#define MAX_ROCKETLAUNCHER_ROUNDS 5 +#define MAX_FLAMEGUN_ROUNDS 50 + +// this is here so we can simplify the auto-reload code. it's in the same order as clip_t +int auto_rounds[] = +{ + 0, + MAX_PISTOL_ROUNDS, + MAX_SHOTGUN_ROUNDS, + MAX_TOMMYGUN_ROUNDS, + MAX_BARMACHINEGUN_ROUNDS, + MAX_GRENADELAUNCHER_ROUNDS, + MAX_ROCKETLAUNCHER_ROUNDS, + //MAX_FLAMEGUN_ROUNDS, + 0 +}; + +int QweryClipIndex (gitem_t *item); + +void AutoLoadWeapon( gclient_t *client, gitem_t *weapon, gitem_t *ammo ) +{ + int clip_index; + int ammo_index; + + if (((clip_index = QweryClipIndex( weapon )) != CLIP_NONE) && !(client->pers.weapon_clip[clip_index])) + { + ammo_index = ITEM_INDEX(ammo); + + if (client->pers.inventory[ammo_index] >= auto_rounds[clip_index]) + { + client->pers.weapon_clip[clip_index] = auto_rounds[clip_index]; + client->pers.inventory[ammo_index] -= auto_rounds[clip_index]; + } + else // not quite enough ammo, so just load all ammo + { + client->pers.weapon_clip[clip_index] = client->pers.inventory[ammo_index]; + client->pers.inventory[ammo_index] = 0; + } + } +} + +qboolean Pickup_Weapon (edict_t *ent, edict_t *other) +{ + int index; + gitem_t *ammo; + int auto_reload=false; + + index = ITEM_INDEX(ent->item); + + if ( ( ((int)(dmflags->value) & DF_WEAPONS_STAY) || coop->value) + && other->client->pers.inventory[index]) + { + if (!(ent->spawnflags & (DROPPED_ITEM | DROPPED_PLAYER_ITEM) ) ) + return false; // leave the weapon for others to pickup + } + + // Ridah, start with gun loaded + if (!(other->client->pers.inventory[index])) + auto_reload = true; + + //other->client->pers.inventory[index]++; + other->client->pers.inventory[index] = 1; + + if (ent->item->ammo && !(ent->spawnflags & DROPPED_ITEM) ) + { + // give them some ammo with it + ammo = FindItem (ent->item->ammo); + if ( (int)dmflags->value & DF_INFINITE_AMMO && deathmatch->value ) + Add_Ammo (other, ammo, 1000); + else + Add_Ammo (other, ammo, ammo->quantity); + + if (auto_reload) + AutoLoadWeapon( other->client, ent->item, ammo ); + + if (! (ent->spawnflags & DROPPED_PLAYER_ITEM) ) + { + if (deathmatch->value) + { + if ((int)(dmflags->value) & DF_WEAPONS_STAY) + ent->flags |= FL_RESPAWN; + else + SetRespawn (ent, 30); + } + if (coop->value) + ent->flags |= FL_RESPAWN; + } + } + else if (!(strcmp (ent->classname, "weapon_crowbar"))) + { + if (! (ent->spawnflags & DROPPED_PLAYER_ITEM) ) + { + if (deathmatch->value) + { + if ((int)(dmflags->value) & DF_WEAPONS_STAY) + ent->flags |= FL_RESPAWN; + else + SetRespawn (ent, 30); + } + if (coop->value) + ent->flags |= FL_RESPAWN; + } + } + + if (other->client->pers.weapon == FindItem ("SPistol")) + other->client->pers.silencer_shots = 20; + + /* + if (other->client->pers.weapon != ent->item && + (other->client->pers.inventory[index] == 1) && + ( !deathmatch->value || other->client->pers.weapon == FindItem("Pipe") ) ) + other->client->newweapon = ent->item; + */ + + if (deathmatch->value) + { + if (other->client->pers.weapon != ent->item && auto_reload && (other->client->pers.weapon == FindItem ("Pistol") || other->client->pers.weapon == FindItem ("Pipe") )) + other->client->newweapon = ent->item; + } + else + { + if (other->client->pers.weapon != ent->item && auto_reload) + other->client->newweapon = ent->item; + } + + + return true; +} + +/* +Change Clip Index +*/ +void ChangeClipIndex (edict_t *ent) +{ + + if (!strcmp(ent->client->pers.weapon->pickup_name, "Pipe")) + ent->client->clip_index = CLIP_NONE; + else if (!strcmp(ent->client->pers.weapon->pickup_name, "Crowbar")) + ent->client->clip_index = CLIP_NONE; + else if (!strcmp(ent->client->pers.weapon->pickup_name, "Pistol")) + ent->client->clip_index = CLIP_PISTOL; + else if (!strcmp(ent->client->pers.weapon->pickup_name, "SPistol")) + ent->client->clip_index = CLIP_PISTOL; + else if (!strcmp(ent->client->pers.weapon->pickup_name, "Shotgun")) + ent->client->clip_index = CLIP_SHOTGUN; + else if (!strcmp(ent->client->pers.weapon->pickup_name, "Tommygun")) + ent->client->clip_index = CLIP_TOMMYGUN; + else if (!strcmp(ent->client->pers.weapon->pickup_name, "FlameThrower")) + ent->client->clip_index = CLIP_FLAMEGUN; + else if (!strcmp(ent->client->pers.weapon->pickup_name, "Bazooka")) + ent->client->clip_index = CLIP_ROCKETS; + else if (!strcmp(ent->client->pers.weapon->pickup_name, "Grenade Launcher")) + ent->client->clip_index = CLIP_GRENADES; + // JOSEPH 16-APR-99 + else if (!strcmp(ent->client->pers.weapon->pickup_name, "Heavy machinegun")) + ent->client->clip_index = CLIP_SLUGS; + // END JOSEPH +} + + +int QweryClipIndex (gitem_t *item) +{ + + if (!strcmp(item->pickup_name, "Pipe")) + return CLIP_NONE; + else if (!strcmp(item->pickup_name, "Crowbar")) + return CLIP_NONE; + else if (!strcmp(item->pickup_name, "Pistol")) + return CLIP_PISTOL; + else if (!strcmp(item->pickup_name, "SPistol")) + return CLIP_PISTOL; + else if (!strcmp(item->pickup_name, "Shotgun")) + return CLIP_SHOTGUN; + else if (!strcmp(item->pickup_name, "Tommygun")) + return CLIP_TOMMYGUN; + else if (!strcmp(item->pickup_name, "FlameThrower")) + return CLIP_FLAMEGUN; + else if (!strcmp(item->pickup_name, "Bazooka")) + return CLIP_ROCKETS; + else if (!strcmp(item->pickup_name, "Grenade Launcher")) + return CLIP_GRENADES; + // JOSEPH 16-APR-99 + else if (!strcmp(item->pickup_name, "Heavy machinegun")) + return CLIP_SLUGS; + // END JOSEPH + + return (0); +} + +/* +=============== +ChangeWeapon + +The old weapon has been dropped all the way, so make the new one +current +=============== +*/ +void ChangeWeapon (edict_t *ent) +{ + int i; + + if (ent->client->grenade_time) + { + ent->client->grenade_time = level.time; + ent->client->weapon_sound = 0; + weapon_grenade_fire (ent, false); + ent->client->grenade_time = 0; + } + + ent->client->pers.lastweapon = ent->client->pers.weapon; + ent->client->pers.weapon = ent->client->newweapon; + ent->client->newweapon = NULL; + ent->client->machinegun_shots = 0; + + // set visible model + if (ent->s.modelindex == 255) { + if (ent->client->pers.weapon) + i = (((QweryClipIndex(ent->client->pers.weapon)+1) & 0xff) << 8); + else + i = 0; + ent->s.skinnum = (ent - g_edicts - 1) | i; + } + + if (ent->client->pers.weapon && ent->client->pers.weapon->ammo) + ent->client->ammo_index = ITEM_INDEX(FindItem(ent->client->pers.weapon->ammo)); + else + ent->client->ammo_index = 0; + + if (!ent->client->pers.weapon) + { // dead + ent->client->ps.gunindex = 0; + return; + } + + ent->client->weaponstate = WEAPON_ACTIVATING; + ent->client->ps.gunframe = 0; + + // ent->client->flashlight = false; + + // RAFAEL 28-dec-98 + ent->client->gun_noise = false; + + if (ent->client->pers.weapon) + ChangeClipIndex (ent); + + { + int i; + + if (!strcmp (ent->client->pers.weapon->pickup_name , "SPistol")) + { + if (ent->client->pers.pistol_mods & WEAPON_MOD_DAMAGE) + ent->client->ps.gunindex = gi.modelindex("models/weapons/silencer_mdx/magnum.mdx"); + else + ent->client->ps.gunindex = gi.modelindex(ent->client->pers.weapon->view_model); + } + else if (!strcmp (ent->client->pers.weapon->pickup_name , "Pistol")) + { + if (ent->client->pers.pistol_mods & WEAPON_MOD_DAMAGE) + ent->client->ps.gunindex = gi.modelindex("models/weapons/v_colt/magnum.mdx"); + else + ent->client->ps.gunindex = gi.modelindex(ent->client->pers.weapon->view_model); + } + else if (!strcmp (ent->client->pers.weapon->pickup_name, "Shotgun")) + ent->client->ps.gunindex = gi.modelindex("models/weapons/shotgun/shotgun.mdx"); + else if (!strcmp (ent->client->pers.weapon->pickup_name, "Heavy machinegun")) + { + if (ent->client->pers.pistol_mods & WEAPON_MOD_COOLING_JACKET) + ent->client->ps.gunindex = gi.modelindex("models/weapons/v_hmgcool/hmgcool.mdx"); + else + ent->client->ps.gunindex = gi.modelindex(ent->client->pers.weapon->view_model); + } + else + ent->client->ps.gunindex = gi.modelindex(ent->client->pers.weapon->view_model); + + memset(&(ent->client->ps.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + ent->client->ps.num_parts = 0; + + ent->client->ps.num_parts++; + // ent->client->ps.model_parts[PART_HEAD].modelindex = gi.modelindex(ent->client->pers.weapon->view_model); + ent->client->ps.model_parts[PART_HEAD].modelindex = ent->client->ps.gunindex;//gi.modelindex(ent->client->pers.weapon->view_model); + for (i=0; iclient->ps.model_parts[PART_HEAD].skinnum[i] = 0; // will we have more than one skin??? + + // HACK, set arm model + if (!strcmp(ent->client->pers.weapon->pickup_name, "Shotgun")) + { + // Ridah, HACK: changed this to use PART_LEGS, since PART_BODY sometimes doesn't show up + ent->client->ps.num_parts++; + ent->client->ps.model_parts[PART_LEGS].modelindex = gi.modelindex("models/weapons/shotgun/hand.mdx"); + for (i=0; iclient->ps.model_parts[PART_LEGS].skinnum[i] = 0; // will we have more than one skin??? + } + // JOSEPH 12-OCT-98 + // JOSEPH 5-FEB-99-B + else if (!strcmp(ent->client->pers.weapon->pickup_name, "Pipe")) + { + ent->client->ps.num_parts++; + ent->client->ps.model_parts[PART_BODY].modelindex = gi.modelindex("models/weapons/blakjak/hand.mdx"); + for (i=0; iclient->ps.model_parts[PART_BODY].skinnum[i] = 0; // will we have more than one skin??? + } + // END JOSEPH + // JOSEPH 19-JAN-99 + else if (!strcmp(ent->client->pers.weapon->pickup_name, "Crowbar")) + { + ent->client->ps.num_parts++; + ent->client->ps.model_parts[PART_BODY].modelindex = gi.modelindex("models/weapons/crowbar/hand.mdx"); + for (i=0; iclient->ps.model_parts[PART_BODY].skinnum[i] = 0; // will we have more than one skin??? + } + // END JOSEPH + + else if (!strcmp(ent->client->pers.weapon->pickup_name, "FlameThrower")) + { + ent->client->ps.num_parts++; + ent->client->ps.model_parts[PART_BODY].modelindex = gi.modelindex("models/weapons/v_flamegun/hand.mdx"); + for (i=0; iclient->ps.model_parts[PART_BODY].skinnum[i] = 0; // will we have more than one skin??? + } + // END JOSEPH + // JOSEPH 4-MAR-99 + else if (!strcmp(ent->client->pers.weapon->pickup_name, "Bazooka")) + { + ent->client->ps.num_parts++; + ent->client->ps.model_parts[PART_BODY].modelindex = gi.modelindex("models/weapons/v_rocket_launcher/hand.mdx"); + for (i=0; iclient->ps.model_parts[PART_BODY].skinnum[i] = 0; // will we have more than one skin??? + + ent->client->ps.num_parts++; + ent->client->ps.model_parts[PART_LEGS].modelindex = gi.modelindex("models/weapons/v_rocket_launcher/shell_a.mdx"); + for (i=0; iclient->ps.model_parts[PART_LEGS].skinnum[i] = 0; // will we have more than one skin??? + + // note to self: not using this anymore + /* + ent->client->ps.num_parts++; + ent->client->ps.model_parts[PART_GUN].modelindex = gi.modelindex("models/weapons/v_rocket_launcher/shell_b.mdx"); + for (i=0; iclient->ps.model_parts[PART_GUN].skinnum[i] = 0; // will we have more than one skin??? + */ + + ent->client->ps.num_parts++; + ent->client->ps.model_parts[PART_GUN2].modelindex = gi.modelindex("models/weapons/v_rocket_launcher/clip.mdx"); + for (i=0; iclient->ps.model_parts[PART_GUN2].skinnum[i] = 0; // will we have more than one skin??? + } + // END JOSEPH + else if (!strcmp (ent->client->pers.weapon->pickup_name , "SPistol")) + { + ent->client->ps.num_parts++; + ent->client->ps.model_parts[PART_BODY].modelindex = gi.modelindex("models/weapons/silencer_mdx/handl.mdx"); + for (i=0; iclient->ps.model_parts[PART_BODY].skinnum[i] = 0; // will we have more than one skin??? + + ent->client->ps.num_parts++; + ent->client->ps.model_parts[PART_LEGS].modelindex = gi.modelindex("models/weapons/silencer_mdx/handr.mdx"); + for (i=0; iclient->ps.model_parts[PART_LEGS].skinnum[i] = 0; // will we have more than one skin??? + + ent->client->ps.num_parts++; + ent->client->ps.model_parts[PART_GUN].modelindex = gi.modelindex("models/weapons/silencer_mdx/clip.mdx"); + for (i=0; iclient->ps.model_parts[PART_GUN].skinnum[i] = 0; + + ent->client->ps.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + } + else if (!strcmp (ent->client->pers.weapon->pickup_name , "Pistol")) + { + ent->client->ps.num_parts++; + ent->client->ps.model_parts[PART_BODY].modelindex = gi.modelindex("models/weapons/v_colt/handl.mdx"); + for (i=0; iclient->ps.model_parts[PART_BODY].skinnum[i] = 0; // will we have more than one skin??? + + ent->client->ps.num_parts++; + ent->client->ps.model_parts[PART_LEGS].modelindex = gi.modelindex("models/weapons/v_colt/handr.mdx"); + for (i=0; iclient->ps.model_parts[PART_LEGS].skinnum[i] = 0; // will we have more than one skin??? + + ent->client->ps.num_parts++; + ent->client->ps.model_parts[PART_GUN].modelindex = gi.modelindex("models/weapons/v_colt/clip.mdx"); + for (i=0; iclient->ps.model_parts[PART_GUN].skinnum[i] = 0; + } + else if (!strcmp(ent->client->pers.weapon->pickup_name, "Tommygun")) + { + // Ridah, hacked this, we're still having disappearing hands after going from the Pistol ?! + ent->client->ps.num_parts++; + ent->client->ps.model_parts[PART_CIGAR].modelindex = gi.modelindex("models/weapons/v_tomgun/lhand.mdx"); + for (i=0; iclient->ps.model_parts[PART_CIGAR].skinnum[i] = 0; // will we have more than one skin??? + + ent->client->ps.num_parts++; + ent->client->ps.model_parts[PART_LEGS].modelindex = gi.modelindex("models/weapons/v_tomgun/rhand.mdx"); + for (i=0; iclient->ps.model_parts[PART_LEGS].skinnum[i] = 0; // will we have more than one skin??? + + } + // JOSEPH 16-APR-99 + else if (!strcmp (ent->client->pers.weapon->pickup_name , "Heavy machinegun")) + { + ent->client->ps.num_parts++; + ent->client->ps.model_parts[PART_LEGS].modelindex = gi.modelindex("models/weapons/v_hmg/lhand.mdx"); + for (i=0; iclient->ps.model_parts[PART_LEGS].skinnum[i] = 0; // will we have more than one skin??? + + ent->client->ps.num_parts++; + ent->client->ps.model_parts[PART_BODY].modelindex = gi.modelindex("models/weapons/v_hmg/clip.mdx"); + for (i=0; iclient->ps.model_parts[PART_BODY].skinnum[i] = 0; // will we have more than one skin??? + + } + // END JOSEPH + else if (!strcmp (ent->client->pers.weapon->pickup_name , "Grenade Launcher")) + { + ent->client->ps.num_parts++; + ent->client->ps.model_parts[PART_LEGS].modelindex = gi.modelindex("models/weapons/v_grenade_launcher/lhand.mdx"); + for (i=0; iclient->ps.model_parts[PART_LEGS].skinnum[i] = 0; // will we have more than one skin??? + + ent->client->ps.num_parts++; + ent->client->ps.model_parts[PART_BODY].modelindex = gi.modelindex("models/weapons/v_grenade_launcher/clip.mdx"); + for (i=0; iclient->ps.model_parts[PART_BODY].skinnum[i] = 0; // will we have more than one skin??? + } + } + +// ent->client->ps.gunindex = gi.modelindex(ent->client->pers.weapon->view_model); +#if 0 + ent->client->anim_priority = ANIM_PAIN; + if(ent->client->ps.pmove.pm_flags & PMF_DUCKED) + { + int rnd; + + rnd = rand()%3; + + if (rnd==0) + { + ent->s.frame = FRAME_crouch_pain1_01; + ent->client->anim_end = FRAME_crouch_pain1_08; + } + else if (rnd==1) + { + ent->s.frame = FRAME_crouch_pain2_01; + ent->client->anim_end = FRAME_crouch_pain2_06; + } + else if (rnd==2) + { + ent->s.frame = FRAME_crouch_pain3_01; + ent->client->anim_end = FRAME_crouch_pain3_06; + } + } + else + { + int rnd; + + /* + rnd = rand()%3; + + if (rnd==0) + { + ent->s.frame = FRAME_pain1_01; + ent->client->anim_end = FRAME_pain1_05; + } + else if (rnd==1) + { + ent->s.frame = FRAME_pain2_01; + ent->client->anim_end = FRAME_pain2_05; + } + else if (rnd==2) + { + ent->s.frame = FRAME_pain3_01; + ent->client->anim_end = FRAME_pain3_05; + } + */ + rnd = rand()%6; + + switch (rnd) + { + case 0: + ent->s.frame = FRAME_pain_Rarm_01; + ent->client->anim_end = FRAME_pain_Rarm_10; + break; + case 1: + ent->s.frame = FRAME_pain_Larm_01; + ent->client->anim_end = FRAME_pain_Larm_09; + break; + case 2: + ent->s.frame = FRAME_pain_chest_01; + ent->client->anim_end = FRAME_pain_chest_09; + break; + case 3: + ent->s.frame = FRAME_pain_head_01; + ent->client->anim_end = FRAME_pain_head_10; + break; + case 4: + ent->s.frame = FRAME_pain_Rleg_01; + ent->client->anim_end = FRAME_pain_Rleg_10; + break; + case 5: + ent->s.frame = FRAME_pain_Lleg_01; + ent->client->anim_end = FRAME_pain_Lleg_08; + break; + } + + } + +#endif +} + +/* +================= +NoAmmoWeaponChange +================= +*/ +void NoAmmoWeaponChange (edict_t *ent) +{ + + if ( ent->client->pers.inventory[ITEM_INDEX(FindItem("grenades"))] + && ent->client->pers.inventory[ITEM_INDEX(FindItem("grenade launcher"))] ) + { + ent->client->newweapon = FindItem ("grenade launcher"); + return; + } + + // JOSEPH 16-APR-99 + if ( ent->client->pers.inventory[ITEM_INDEX(FindItem("308cal"))] + && ent->client->pers.inventory[ITEM_INDEX(FindItem("heavy machinegun"))] ) + { + ent->client->newweapon = FindItem ("heavy machinegun"); + return; + } + // END JOSEPH + + if ( ent->client->pers.inventory[ITEM_INDEX(FindItem("gas"))] + && ent->client->pers.inventory[ITEM_INDEX(FindItem("flamethrower"))] ) + { + ent->client->newweapon = FindItem ("flamethrower"); + return; + } + + if ( ent->client->pers.inventory[ITEM_INDEX(FindItem("rockets"))] + && ent->client->pers.inventory[ITEM_INDEX(FindItem("bazooka"))] ) + { + ent->client->newweapon = FindItem ("Bazooka"); + return; + } + + if ( ent->client->pers.inventory[ITEM_INDEX(FindItem("bullets"))] + && ent->client->pers.inventory[ITEM_INDEX(FindItem("tommygun"))] ) + { + ent->client->newweapon = FindItem ("tommygun"); + return; + } + + if ( ent->client->pers.inventory[ITEM_INDEX(FindItem("shells"))] + && ent->client->pers.inventory[ITEM_INDEX(FindItem("shotgun"))] ) + { + ent->client->newweapon = FindItem ("shotgun"); + return; + } + + if ( ent->client->pers.inventory[ITEM_INDEX(FindItem("bullets"))] + && ent->client->pers.inventory[ITEM_INDEX(FindItem("pistol"))] ) + { + ent->client->newweapon = FindItem ("pistol"); + return; + } + + // JOSEPH 5-FEB-99-B + if ( ent->client->pers.inventory[ITEM_INDEX(FindItem("crowbar"))]) + ent->client->newweapon = FindItem ("Crowbar"); + else + ent->client->newweapon = FindItem ("Pipe"); + // END JOSEPH +} + + +/* +Think_FlashLight +*/ +void Think_FlashLight (edict_t *ent) +{ + + trace_t tr; + vec3_t forward; + vec3_t end; + vec3_t mins, maxs; + edict_t *light; + vec3_t angles, origin; + + if (ent->health < 1) + return; + + if (ent->client->flashlight) + { + VectorCopy (ent->client->v_angle, angles); + VectorCopy (ent->s.origin, origin); + AngleVectors (angles, forward, NULL, NULL); + VectorCopy (origin, end); + VectorMA (end, 8194, forward, end); + + VectorSet (mins, -8, -8, -8 ); + VectorSet (maxs, 8, 8, 8); + + tr = gi.trace (ent->s.origin, mins, maxs, end, ent, MASK_SHOT); + + if (((tr.ent) && (tr.ent->s.renderfx2 & RF2_SURF_ALPHA)) || ((tr.contents & MASK_ALPHA))) + { + vec3_t start; + VectorCopy (tr.endpos, start); + VectorMA (start, 8, forward, start); + tr = gi.trace (start, mins, maxs, end, ent, MASK_SHOT); + } + + light = G_Spawn(); + VectorCopy (tr.endpos, light->s.origin); + light->s.renderfx |= RF_BEAM; + light->s.effects |= EF_FLASHLIGHT; + light->nextthink = level.time + 0.1; + light->think = G_FreeEdict; + gi.linkentity (light); + } + + +} + +/* +================= +Think_Weapon + +Called by ClientBeginServerFrame and ClientThink +================= +*/ +void Think_Weapon (edict_t *ent) +{ + // make sure flamethrower is disabled when it should be + ent->s.renderfx2 &= ~RF2_FLAMETHROWER; + + // if just died, put the weapon away + if (ent->health < 1) + { + ent->client->newweapon = NULL; + ChangeWeapon (ent); + } + + // JOSEPH 10-FEB-99 + if (level.bar_lvl) + return; + // END JOSEPH + + // Unholster a holstered gun if fired + if ((!ent->client->pers.weapon) && ent->client->pers.holsteredweapon && (((ent->client->latched_buttons|ent->client->buttons) & BUTTON_ATTACK))) + { + ent->client->newweapon = ent->client->pers.holsteredweapon; + ChangeWeapon (ent); + ent->client->pers.holsteredweapon = 0; + } + else if (ent->client->pers.weapon && ent->client->pers.weapon->weaponthink) + { + is_quad = (ent->client->quad_framenum > level.framenum); + // RAFAEL + is_quadfire = (ent->client->quadfire_framenum > level.framenum); + //if (ent->client->pers.silencer_shots) + // is_silenced = MZ_SILENCED; + //else + is_silenced = 0; + ent->client->pers.weapon->weaponthink (ent); + } + +} + + +/* +================ +Use_Weapon + +Make the weapon ready if there is ammo +================ +*/ +void Use_Weapon (edict_t *ent, gitem_t *item) +{ + int ammo_index; + gitem_t *ammo_item; + int clip_index; + + // see if we're already using it + if (item == ent->client->pers.weapon) + return; + + + if (item->ammo && !g_select_empty->value && !(item->flags & IT_AMMO)) + { + ammo_item = FindItem(item->ammo); + ammo_index = ITEM_INDEX(ammo_item); + + clip_index = QweryClipIndex (item); + + if (!ent->client->pers.inventory[ammo_index] && !ent->client->pers.weapon_clip [clip_index]) + { + gi.cprintf (ent, PRINT_HIGH, "No %s for %s.\n", ammo_item->pickup_name, item->pickup_name); + return; + } + /* + if (ent->client->pers.inventory[ammo_index] < item->quantity) + { + gi.cprintf (ent, PRINT_HIGH, "Not enough %s for %s.\n", ammo_item->pickup_name, item->pickup_name); + return; + } + */ + } + + // change to this weapon when down + ent->client->newweapon = item; +} + +// RAFAEL 14-APR-98 +void Use_Weapon2 (edict_t *ent, gitem_t *item) +{ + int ammo_index; + gitem_t *ammo_item; + int index; + int clip_index; + + + // JOSEPH 5-FEB-99-B + if (strcmp (item->pickup_name, "Pipe") == 0) + { + // Ridah, changed this so it defaults to Crowbar if we have it + if (ent->client->pers.weapon != FindItem ("Crowbar")) + { + item = FindItem ("Crowbar"); + index = ITEM_INDEX (item); + if (!ent->client->pers.inventory[index]) + { + item = FindItem ("Pipe"); + } + } + } + // END JOSEPH + + else if (strcmp (item->pickup_name, "Pistol") == 0) + { + if (item == ent->client->pers.weapon) + { + item = FindItem ("SPistol"); + index = ITEM_INDEX (item); + if (!ent->client->pers.inventory[index]) + { + item = FindItem ("Pistol"); + } + } + } + + + // see if we're already using it + if (item == ent->client->pers.weapon) + return; + + if (item->ammo) + { + ammo_item = FindItem(item->ammo); + ammo_index = ITEM_INDEX(ammo_item); + clip_index = QweryClipIndex (item); + + if (!ent->client->pers.inventory[ammo_index] && !g_select_empty->value && !ent->client->pers.weapon_clip [clip_index]) + { + gi.cprintf (ent, PRINT_HIGH, "No %s for %s.\n", ammo_item->pickup_name, item->pickup_name); + return; + } + } + + // change to this weapon when down + ent->client->newweapon = item; + +} +// END 14-APR-98 + +/* +================ +Drop_Weapon +================ +*/ +void Drop_Weapon (edict_t *ent, gitem_t *item) +{ + int index; + + if ((int)(dmflags->value) & DF_WEAPONS_STAY) + return; + + index = ITEM_INDEX(item); + // see if we're already using it + if ( ((item == ent->client->pers.weapon) || (item == ent->client->newweapon))&& (ent->client->pers.inventory[index] == 1) ) + { + gi.cprintf (ent, PRINT_HIGH, "Can't drop current weapon\n"); + return; + } + + Drop_Item (ent, item); + ent->client->pers.inventory[index]--; +} + + +/* +================ +Weapon_Generic + +A generic function to handle the basics of weapon thinking +================ +*/ +#define FRAME_FIRE_FIRST (FRAME_ACTIVATE_LAST + 1) +#define FRAME_IDLE_FIRST (FRAME_FIRE_LAST + 1) +#define FRAME_DEACTIVATE_FIRST (FRAME_IDLE_LAST + 1) + +#define FRAME_OFFSET_FOR_SPISTOL 43 +#define FRAME_OFFSET_FOR_SPISTOL_WITH_SILENCER 70 + +void Weapon_Generic (edict_t *ent, int FRAME_ACTIVATE_LAST, int FRAME_FIRE_LAST, int FRAME_IDLE_LAST, int FRAME_DEACTIVATE_LAST, int *pause_frames, int *fire_frames, void (*fire)(edict_t *ent)) +{ + int n; +// RAFAEL 01-11-99 + + if (ent->client->weaponstate == WEAPON_RELOADING_SPISTOL) + { + if (ent->client->ps.gunframe == FRAME_OFFSET_FOR_SPISTOL) + { + ent->client->weaponstate = WEAPON_READY; + ent->client->ps.gunframe = FRAME_IDLE_FIRST; + return; + } + + ent->client->ps.gunframe++; + return; + } + + if (ent->client->weaponstate == WEAPON_RELOADING) + { + if (ent->client->ps.gunframe == FRAME_FIRE_LAST) + { + ent->client->weaponstate = WEAPON_READY; + ent->client->ps.gunframe = FRAME_IDLE_FIRST; + return; + } + + ent->client->ps.gunframe++; + return; + } + + if (ent->client->weaponstate == WEAPON_RELOAD_CYCLE) + { + /* + if ( ((ent->client->latched_buttons|ent->client->buttons) & BUTTON_ATTACK) ) + { + ent->client->weaponstate = WEAPON_READY; + ent->client->ps.gunframe = FRAME_IDLE_FIRST; + } + else + */ + { + ent->client->ps.gunframe++; + return; + } + } + + if (ent->client->weaponstate == WEAPON_DROPPING) + { + if (ent->client->pers.weapon == FindItem("SPistol")) + { + if (ent->client->pers.silencer_shots && ent->client->ps.gunframe == FRAME_OFFSET_FOR_SPISTOL_WITH_SILENCER) + { + ChangeWeapon (ent); + return; + } + if (ent->client->ps.gunframe == FRAME_DEACTIVATE_LAST) + { + ChangeWeapon (ent); + return; + } + } + else + { + if (ent->client->ps.gunframe == FRAME_DEACTIVATE_LAST) + { + ChangeWeapon (ent); + return; + } + else if ((ent->client->weaponstate != WEAPON_FIRING) && (ent->client->ps.gunframe < FRAME_DEACTIVATE_FIRST)) + { + ent->client->ps.gunframe = FRAME_DEACTIVATE_FIRST; + return; + } + } +/* + else if ((FRAME_DEACTIVATE_LAST - ent->client->ps.gunframe) == 4) + { + ent->client->anim_priority = ANIM_REVERSE; + if(ent->client->ps.pmove.pm_flags & PMF_DUCKED) + { + ent->s.frame = FRAME_crpain4+1; + ent->client->anim_end = FRAME_crpain1; + } + else + { + ent->s.frame = FRAME_pain304+1; + ent->client->anim_end = FRAME_pain301; + + } + } +*/ + ent->client->ps.gunframe++; + + // Ridah, faster weapon changing in deathmatch + if (deathmatch->value && ent->client->ps.gunframe < FRAME_DEACTIVATE_LAST) + ent->client->ps.gunframe++; + + return; + } + + if (ent->client->weaponstate == WEAPON_ACTIVATING) + { + if (ent->client->ps.gunframe == FRAME_ACTIVATE_LAST) + { + ent->client->weaponstate = WEAPON_READY; + ent->client->ps.gunframe = FRAME_IDLE_FIRST; + return; + } + + ent->client->ps.gunframe++; + + // Ridah, faster weapon changing in deathmatch + if (deathmatch->value && ent->client->ps.gunframe < FRAME_ACTIVATE_LAST) + ent->client->ps.gunframe++; + + return; + } + + if ((ent->client->newweapon) /*&& (ent->client->weaponstate != WEAPON_FIRING)*/) + { + ent->client->weaponstate = WEAPON_DROPPING; + ent->client->ps.gunframe = FRAME_DEACTIVATE_FIRST; +/* + if ((FRAME_DEACTIVATE_LAST - FRAME_DEACTIVATE_FIRST) < 4) + { + ent->client->anim_priority = ANIM_REVERSE; + if(ent->client->ps.pmove.pm_flags & PMF_DUCKED) + { + ent->s.frame = FRAME_crpain4+1; + ent->client->anim_end = FRAME_crpain1; + } + else + { + ent->s.frame = FRAME_pain304+1; + ent->client->anim_end = FRAME_pain301; + + } + } +*/ + return; + } + + if (ent->client->weaponstate == WEAPON_READY) + { + if ( ((ent->client->latched_buttons|ent->client->buttons) & BUTTON_ATTACK) ) + { + ent->client->latched_buttons &= ~BUTTON_ATTACK; + + if (ent->client->clip_index == CLIP_PISTOL && ent->client->pers.weapon_clip[ent->client->clip_index] >= 1) + { + ent->client->ps.gunframe = FRAME_FIRE_FIRST; + ent->client->weaponstate = WEAPON_FIRING; + } + else if (ent->client->clip_index == CLIP_SHOTGUN && ent->client->pers.weapon_clip[ent->client->clip_index] >= 1) + { + ent->client->ps.gunframe = FRAME_FIRE_FIRST; + ent->client->weaponstate = WEAPON_FIRING; + } + else if (ent->client->clip_index == CLIP_TOMMYGUN && ent->client->pers.weapon_clip[ent->client->clip_index] >=1) + { + ent->client->ps.gunframe = FRAME_FIRE_FIRST; + ent->client->weaponstate = WEAPON_FIRING; + } + else if (ent->client->clip_index == CLIP_SLUGS && ent->client->pers.weapon_clip[ent->client->clip_index] >=1) + { + ent->client->ps.gunframe = FRAME_FIRE_FIRST; + ent->client->weaponstate = WEAPON_FIRING; + } + else if (ent->client->clip_index == CLIP_GRENADES && ent->client->pers.weapon_clip[ent->client->clip_index] >=1) + { + ent->client->ps.gunframe = FRAME_FIRE_FIRST; + ent->client->weaponstate = WEAPON_FIRING; + } + else if (ent->client->clip_index == CLIP_ROCKETS && ent->client->pers.weapon_clip[ent->client->clip_index] >=1) + { + ent->client->ps.gunframe = FRAME_FIRE_FIRST; + ent->client->weaponstate = WEAPON_FIRING; + } + else if ((!ent->client->ammo_index) || + ( ent->client->pers.inventory[ent->client->ammo_index] >= ent->client->pers.weapon->quantity)) + { + ent->client->ps.gunframe = FRAME_FIRE_FIRST; + ent->client->weaponstate = WEAPON_FIRING; + } + else + { + if (level.time >= ent->pain_debounce_time) + { + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/noammo.wav"), 1, ATTN_NORM, 0); + ent->pain_debounce_time = level.time + 1; + } + NoAmmoWeaponChange (ent); + } + } + else + { + if (ent->client->ps.gunframe == FRAME_IDLE_LAST) + { + ent->client->ps.gunframe = FRAME_IDLE_FIRST; + return; + } + + if (pause_frames) + { + for (n = 0; pause_frames[n]; n++) + { + if (ent->client->ps.gunframe == pause_frames[n]) + { + if (rand()&15) + return; + } + } + } + + ent->client->ps.gunframe++; + return; + } + } + + if (ent->client->weaponstate == WEAPON_FIRING) + { + for (n = 0; fire_frames[n]; n++) + { + if (ent->client->ps.gunframe == fire_frames[n]) + { + if (ent->client->quad_framenum > level.framenum) + gi.sound(ent, CHAN_ITEM, gi.soundindex("items/damage3.wav"), 1, ATTN_NORM, 0); +/* + if (ent->client->anim_priority <= ANIM_JUMP + && (!ent->groundentity || (!ent->client->anim_run && !ent->client->anim_slide))) + { + // start the animation + ent->client->anim_priority = ANIM_ATTACK; + if (ent->client->ps.pmove.pm_flags & PMF_DUCKED) + { + if (ent->s.frame != FRAME_crch_shoot_01) + ent->s.frame = FRAME_crch_shoot_01-1; + ent->client->anim_end = FRAME_crch_shoot_05; + } + else + { + if (ent->s.frame != FRAME_shoot_01) + ent->s.frame = FRAME_shoot_01-1; + ent->client->anim_end = FRAME_shoot_04; + } + } +*/ + fire (ent); + break; + } + } + + if (!fire_frames[n]) + ent->client->ps.gunframe++; + + // JOSEPH 5-FEB-99-B + // Blackjack hack + if ((ent->client->ps.gunframe == 9) && + (!((ent->client->latched_buttons|ent->client->buttons) & BUTTON_ATTACK)) && + (!strcmp(ent->client->pers.weapon->pickup_name, "Pipe"))) + { + ent->client->ps.gunframe = FRAME_IDLE_FIRST+1; + ent->client->weaponstate = WEAPON_READY; + } + // END JOSEPH + + // JOSEPH 19-JAN-99 + // Crowbar hack + else if ((ent->client->ps.gunframe == 9) && + (!((ent->client->latched_buttons|ent->client->buttons) & BUTTON_ATTACK)) && + (!strcmp(ent->client->pers.weapon->pickup_name, "Crowbar"))) + { + ent->client->ps.gunframe = FRAME_IDLE_FIRST+1; + ent->client->weaponstate = WEAPON_READY; + } + // END JOSEPH + + + if (ent->client->ps.gunframe == FRAME_IDLE_FIRST+1) + ent->client->weaponstate = WEAPON_READY; + } +} + + +/* +====================================================================== + +GRENADE + +====================================================================== +*/ + +#define GRENADE_TIMER 3.0 +#define GRENADE_MINSPEED 400 +#define GRENADE_MAXSPEED 800 + +void weapon_grenade_fire (edict_t *ent, qboolean held) +{ + vec3_t offset; + vec3_t forward, right; + vec3_t start; + int damage = 125; + float timer; + int speed; + float radius; + + radius = damage+40; + if (is_quad) + damage *= 4; + + VectorSet(offset, 8, 8, ent->viewheight-8); + AngleVectors (ent->client->v_angle, forward, right, NULL); + P_ProjectSource (ent->client, ent->s.origin, offset, forward, right, start); + + timer = ent->client->grenade_time - level.time; + speed = GRENADE_MINSPEED + (GRENADE_TIMER - timer) * ((GRENADE_MAXSPEED - GRENADE_MINSPEED) / GRENADE_TIMER); + fire_grenade2 (ent, start, forward, damage, speed, timer, radius, held); + + if (! ( (int)dmflags->value & DF_INFINITE_AMMO && deathmatch->value ) ) + ent->client->pers.inventory[ent->client->ammo_index]--; + + ent->client->grenade_time = level.time + 1.0; +/* + if (ent->client->ps.pmove.pm_flags & PMF_DUCKED) + { + ent->client->anim_priority = ANIM_ATTACK; + ent->s.frame = FRAME_crattak1-1; + ent->client->anim_end = FRAME_crattak3; + } + else + { + ent->client->anim_priority = ANIM_REVERSE; + ent->s.frame = FRAME_wave08; + ent->client->anim_end = FRAME_wave01; + } +*/ +} + +void Weapon_Grenade (edict_t *ent) +{ + if ((ent->client->newweapon) && (ent->client->weaponstate == WEAPON_READY)) + { + ChangeWeapon (ent); + return; + } + + if (ent->client->weaponstate == WEAPON_ACTIVATING) + { + ent->client->weaponstate = WEAPON_READY; + ent->client->ps.gunframe = 16; + return; + } + + if (ent->client->weaponstate == WEAPON_READY) + { + if ( ((ent->client->latched_buttons|ent->client->buttons) & BUTTON_ATTACK) ) + { + ent->client->latched_buttons &= ~BUTTON_ATTACK; + if (ent->client->pers.inventory[ent->client->ammo_index]) + { + ent->client->ps.gunframe = 1; + ent->client->weaponstate = WEAPON_FIRING; + ent->client->grenade_time = 0; + } + else + { + if (level.time >= ent->pain_debounce_time) + { + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/noammo.wav"), 1, ATTN_NORM, 0); + ent->pain_debounce_time = level.time + 1; + } + NoAmmoWeaponChange (ent); + } + return; + } + + if ((ent->client->ps.gunframe == 29) || (ent->client->ps.gunframe == 34) || (ent->client->ps.gunframe == 39) || (ent->client->ps.gunframe == 48)) + { + if (rand()&15) + return; + } + + if (++ent->client->ps.gunframe > 48) + ent->client->ps.gunframe = 16; + return; + } + + if (ent->client->weaponstate == WEAPON_FIRING) + { + if (ent->client->ps.gunframe == 5) + gi.sound(ent, CHAN_WEAPON, gi.soundindex("weapons/grenade_launcher/hgrena1b.wav"), 1, ATTN_NORM, 0); + + if (ent->client->ps.gunframe == 11) + { + if (!ent->client->grenade_time) + { + ent->client->grenade_time = level.time + GRENADE_TIMER + 0.2; + ent->client->weapon_sound = gi.soundindex("weapons/grenade_launcher/hgrenc1b.wav"); + } + + // they waited too long, detonate it in their hand + if (!ent->client->grenade_blew_up && level.time >= ent->client->grenade_time) + { + ent->client->weapon_sound = 0; + weapon_grenade_fire (ent, true); + ent->client->grenade_blew_up = true; + } + + if (ent->client->buttons & BUTTON_ATTACK) + return; + + if (ent->client->grenade_blew_up) + { + if (level.time >= ent->client->grenade_time) + { + ent->client->ps.gunframe = 15; + ent->client->grenade_blew_up = false; + } + else + { + return; + } + } + } + + if (ent->client->ps.gunframe == 12) + { + ent->client->weapon_sound = 0; + weapon_grenade_fire (ent, false); + } + + if ((ent->client->ps.gunframe == 15) && (level.time < ent->client->grenade_time)) + return; + + ent->client->ps.gunframe++; + + if (ent->client->ps.gunframe == 16) + { + ent->client->grenade_time = 0; + ent->client->weaponstate = WEAPON_READY; + } + } +} + + + +// JOSEPH 18-DEC-98 +void Think_Eject_Shell (edict_t *ent) +{ + if (!ent->misstime--) + { + ent->nextthink = 0; + G_FreeEdict(ent); + } + else + { + if (ent->misstime <= 20) + { + if (ent->misstime == 20) + { + ent->s.renderfx2 |= RF2_PASSALPHA; + ent->s.effects = 1; // this is full alpha now + } + + ent->s.effects += (255/20); + + if (ent->s.effects > 255) + ent->s.effects = 255; + } + +// ent->s.angles[0] += ent->avelocity[0]; + ent->s.angles[1] += ent->avelocity[1]; +// ent->s.angles[2] += ent->avelocity[2]; + ent->nextthink = level.time + 0.1; + } +} +// END JOSEPH + +// JOSEPH 7-JAN-99 +void Eject_Shotgun_Shell (edict_t *ent) +{ + edict_t *dropped = NULL; + vec3_t forward, right, up; + vec3_t offset; + + if (!(ent->client)) + return; + + if (deathmatch->value) + return; + + //gi.dprintf("angles = %s\n", vtos(ent->s.angles)); + + dropped = G_Spawn(); + + if (!dropped) + return; + + dropped->s.modelindex = gi.modelindex("models/weapons/sshell_md2/tris.md2"); + + dropped->movetype = MOVETYPE_BOUNCE; + + dropped->mins[0] = -4; + dropped->mins[1] = -4; + dropped->mins[2] = -2; + + dropped->maxs[0] = 4; + dropped->maxs[1] = 4; + dropped->maxs[2] = 4; + + AngleVectors (ent->client->v_angle, forward, right, up); + + dropped->s.angles[YAW] = ent->client->v_angle[YAW]; + + VectorSet(offset, 0, 16, ent->viewheight -2 ); + P_ProjectSource (ent->client, ent->s.origin, offset, forward, right, dropped->s.origin); + + VectorScale (forward, 5 + ((rand()&15)-8), dropped->velocity); + VectorMA (dropped->velocity, 50 + (rand()&31), right, dropped->velocity); + dropped->velocity[2] = 150 + (rand()&31); + + // Ridah, changed this so they don't stick in the ground so much + VectorSet(dropped->avelocity, 0/*((rand()&7)-4)*/, ((rand()&15)-8), ((rand()&7)-4)); + + dropped->think = Think_Eject_Shell; + dropped->misstime = 40; + dropped->nextthink = level.time + 0.1; + + dropped->s.renderfx2 |= RF2_NOSHADOW; + + gi.linkentity (dropped); + + return; +} +// END JOSEPH + + + + +//====================================================================== + + + +// JOSEPH 12-OCT-98 +void Blackjack_Hit (edict_t *ent, vec3_t vorigin, int damage) +{ + vec3_t start; + vec3_t forward, right; + int kick = 2; + vec3_t offset; + + if (is_quad) + damage *= 4; + AngleVectors (ent->client->v_angle, forward, right, NULL); + + VectorSet(offset, 0, 0, ent->viewheight); + + VectorAdd (offset, vorigin, offset); + P_ProjectSource (ent->client, ent->s.origin, offset, forward, right, start); + + if (fire_blackjack (ent, start, forward, damage, kick, MOD_BLACKJACK)) + ent->client->ps.weapon_usage++; + + if (ent->client->ps.weapon_usage > 20) + { + ent->client->ps.rdflags &= ~RDF_SKINPLUS; + ent->client->ps.rdflags |= RDF_SKINPLUSPLUS; + } + else if (ent->client->ps.weapon_usage > 10) + ent->client->ps.rdflags |= RDF_SKINPLUS; + + +// PlayerNoise(ent, start, PNOISE_WEAPON); + + gi.WriteByte (svc_muzzleflash); + gi.WriteShort (ent-g_edicts); + gi.WriteByte (MZ_BLACKJACK_SWING); + gi.multicast (ent->s.origin, MULTICAST_PVS); +} + +void Weapon_Blackjack_Hit (edict_t *ent) +{ + int damage; + + if (deathmatch->value) + damage = 10; + else + damage = 8;// - (int)(skill->value-1); + + Blackjack_Hit (ent, vec3_origin, damage); + ent->client->ps.gunframe++; +} + +void Weapon_Blackjack (edict_t *ent) +{ + static int pause_frames[] = {0, 0}; + static int fire_frames[] = {8, 11, 0}; + + + if (ent->client->ps.gunframe < 5) + { + ent->client->ps.rdflags &= ~RDF_SKINPLUS; + ent->client->ps.rdflags &= ~RDF_SKINPLUSPLUS; + } + + Weapon_Generic (ent, 5, 13, 31, 36, pause_frames, fire_frames, Weapon_Blackjack_Hit); + + ent->client->ps.model_parts[PART_BODY].invisible_objects = 0; + +} +// END JOSEPH + +// JOSEPH 19-JAN-99 +void Crowbar_Hit (edict_t *ent, vec3_t vorigin, int damage) +{ + vec3_t start; + vec3_t forward, right; + int kick = 2; + vec3_t offset; + + if (is_quad) + damage *= 4; + AngleVectors (ent->client->v_angle, forward, right, NULL); + + VectorSet(offset, 0, 0, ent->viewheight); + + VectorAdd (offset, vorigin, offset); + P_ProjectSource (ent->client, ent->s.origin, offset, forward, right, start); + + if (fire_crowbar (ent, start, forward, damage, kick, MOD_CROWBAR)) + ent->client->ps.weapon_usage++; + + if (ent->client->ps.weapon_usage > 20) + { + ent->client->ps.rdflags &= ~RDF_SKINPLUS; + ent->client->ps.rdflags |= RDF_SKINPLUSPLUS; + } + else if (ent->client->ps.weapon_usage > 10) + ent->client->ps.rdflags |= RDF_SKINPLUS; + + +// PlayerNoise(ent, start, PNOISE_WEAPON); + + gi.WriteByte (svc_muzzleflash); + gi.WriteShort (ent-g_edicts); + gi.WriteByte (MZ_CROWBAR_SWING); + gi.multicast (ent->s.origin, MULTICAST_PVS); +} + +void Weapon_Crowbar_Hit (edict_t *ent) +{ + int damage; + + if (deathmatch->value) + damage = 50; // This should be very powerful in deathmatch + else + damage = 12;// - (int)(skill->value-1); + + Crowbar_Hit (ent, vec3_origin, damage); + ent->client->ps.gunframe++; +} + +void Weapon_Crowbar (edict_t *ent) +{ + static int pause_frames[] = {0, 0}; + static int fire_frames[] = {8, 11, 0}; + + + if (ent->client->ps.gunframe < 5) + { + ent->client->ps.rdflags &= ~RDF_SKINPLUS; + ent->client->ps.rdflags &= ~RDF_SKINPLUSPLUS; + } + + Weapon_Generic (ent, 5, 13, 31, 36, pause_frames, fire_frames, Weapon_Crowbar_Hit); + + ent->client->ps.model_parts[PART_BODY].invisible_objects = 0; + +} +// END JOSEPH + + + +// JOSEPH 7-JAN-99 +void Eject_Pistol_Shell (edict_t *ent) +{ + edict_t *dropped = NULL; + vec3_t forward, right, up; + vec3_t offset; + + if (!(ent->client)) + return; + + if (deathmatch->value) + return; + + //gi.dprintf("angles = %s\n", vtos(ent->s.angles)); + + dropped = G_Spawn(); + + if (!dropped) + return; + + dropped->s.modelindex = gi.modelindex("models/weapons/shell_md2/tris.md2"); + + dropped->movetype = MOVETYPE_BOUNCE; + + dropped->mins[0] = -4; + dropped->mins[1] = -4; + dropped->mins[2] = -2; + + dropped->maxs[0] = 4; + dropped->maxs[1] = 4; + dropped->maxs[2] = 4; + + AngleVectors (ent->client->v_angle, forward, right, up); + + dropped->s.angles[YAW] = ent->client->v_angle[YAW]; + + VectorSet(offset, 0, 16, ent->viewheight -2 ); + P_ProjectSource (ent->client, ent->s.origin, offset, forward, right, dropped->s.origin); + + VectorScale (forward, 5 + ((rand()&15)-8), dropped->velocity); + VectorMA (dropped->velocity, 50 + (rand()&31), right, dropped->velocity); + dropped->velocity[2] = 150 + (rand()&31); + + // Ridah, changed this so they don't stick in the ground so much + VectorSet(dropped->avelocity, 0/*((rand()&7)-4)*/, ((rand()&15)-8), ((rand()&7)-4)); + + dropped->think = Think_Eject_Shell; + dropped->misstime = 40; + dropped->nextthink = level.time + 0.1; + + dropped->s.renderfx2 |= RF2_NOSHADOW; + + gi.linkentity (dropped); + + return; +} + +// JOSEPH 7-JAN-99 +void Eject_Tommy_Shell (edict_t *ent) +{ + edict_t *dropped = NULL; + vec3_t forward, right, up; + vec3_t offset; + + if (!(ent->client)) + return; + + if (deathmatch->value) + return; + + //gi.dprintf("angles = %s\n", vtos(ent->s.angles)); + + dropped = G_Spawn(); + + if (!dropped) + return; + + dropped->s.modelindex = gi.modelindex("models/weapons/shell_md2/tris.md2"); + + dropped->movetype = MOVETYPE_BOUNCE; + + dropped->mins[0] = -4; + dropped->mins[1] = -4; + dropped->mins[2] = -2; + + dropped->maxs[0] = 4; + dropped->maxs[1] = 4; + dropped->maxs[2] = 4; + + AngleVectors (ent->client->v_angle, forward, right, up); + + dropped->s.angles[YAW] = ent->client->v_angle[YAW]; + + VectorSet(offset, 0, 16, ent->viewheight -2 ); + P_ProjectSource (ent->client, ent->s.origin, offset, forward, right, dropped->s.origin); + + VectorScale (forward, 5 + ((rand()&15)-8), dropped->velocity); + VectorMA (dropped->velocity, 50 + (rand()&31), right, dropped->velocity); + dropped->velocity[2] = 150 + (rand()&31); + + // Ridah, changed this so they don't stick in the ground so much + VectorSet(dropped->avelocity, 0/*((rand()&7)-4)*/, ((rand()&15)-8), ((rand()&7)-4)); + + dropped->think = Think_Eject_Shell; + dropped->misstime = 40; + dropped->nextthink = level.time + 0.1; + + dropped->s.renderfx2 |= RF2_NOSHADOW; + + gi.linkentity (dropped); + + return; +} +// END JOSEPH + +// WEAPON PISTOL +void Pistol_Fire (edict_t *ent, vec3_t vorigin, int damage) +{ + vec3_t start; + vec3_t forward, right; + int kick = 2; + vec3_t offset; + + if (is_quad) + damage *= 4; + AngleVectors (ent->client->v_angle, forward, right, NULL); + + VectorSet(offset, 0, 0, ent->viewheight); + + VectorAdd (offset, vorigin, offset); + P_ProjectSource (ent->client, ent->s.origin, offset, forward, right, start); + + VectorScale (forward, -2, ent->client->kick_origin); + + ent->client->kick_angles[0] = -4; + + fire_bullet (ent, start, forward, damage, kick, DEFAULT_BULLET_HSPREAD, DEFAULT_BULLET_VSPREAD, MOD_PISTOL); + + if (ent->client->pers.pistol_mods & WEAPON_MOD_DAMAGE) + { + gi.WriteByte (svc_muzzleflash); + gi.WriteShort (ent-g_edicts); + gi.WriteByte (MZ_PISTOL_DAMAGE_MOD | is_silenced); + gi.multicast (ent->s.origin, MULTICAST_PVS); + } + else + { + gi.WriteByte (svc_muzzleflash); + gi.WriteShort (ent-g_edicts); + gi.WriteByte (MZ_PISTOL | is_silenced); + gi.multicast (ent->s.origin, MULTICAST_PVS); + } + + PlayerNoise(ent, start, PNOISE_WEAPON); + + if (! ( (int)dmflags->value & DF_INFINITE_AMMO && deathmatch->value ) ) + { + ent->client->pers.weapon_clip[ent->client->clip_index]--; + } + + ent->client->gun_noise = true; + +} + +void Weapon_Pistol_Fire (edict_t *ent) +{ + int damage; + int rounds; + + + if (ent->waterlevel >= 2) + { + // gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/noammo.wav"), 1, ATTN_NORM, 0); + if (ent->client->weaponstate == WEAPON_FIRING) + { + ent->client->weaponstate = WEAPON_READY; + ent->client->ps.gunframe = 29; + } + return; + } + + if (deathmatch->value) + damage = 15; + else + damage = 10; + + + if (ent->client->ps.gunframe == 6) + { + if (ent->client->pers.pistol_mods & WEAPON_MOD_ROF) + { + if (ent->client->pers.pistol_mods & WEAPON_MOD_DAMAGE) + { + damage *= 2; + } + ent->client->ps.gunframe = 8; + } + else + { + if (ent->client->pers.pistol_mods & WEAPON_MOD_DAMAGE) + { + damage *= 2; + } + ent->client->ps.gunframe++; + } + Pistol_Fire (ent, vec3_origin, damage); + Eject_Pistol_Shell(ent); + } + else if (ent->client->ps.gunframe == 10) + { + if (!ent->client->pers.weapon_clip[ent->client->clip_index]) + { + + if (ent->client->pers.inventory[ent->client->ammo_index] < MAX_PISTOL_ROUNDS) + { + rounds = ent->client->pers.inventory[ent->client->ammo_index]; + } + else + rounds = MAX_PISTOL_ROUNDS; + + ent->client->pers.weapon_clip[ent->client->clip_index] = rounds; + ent->client->pers.inventory[ent->client->ammo_index] -= rounds; + ent->client->ps.gunframe++; + if (ent->client->pers.pistol_mods & WEAPON_MOD_RELOAD) + ;//gi.dprintf ("need fast reload sound\n"); + else + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/pistol/clip_out.wav"), 1, ATTN_NORM, 0); + + if (! ent->client->pers.weapon_clip[ent->client->clip_index]) + { + if (level.time >= ent->pain_debounce_time) + { + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/noammo.wav"), 1, ATTN_NORM, 0); + ent->pain_debounce_time = level.time + 1; + } + NoAmmoWeaponChange (ent); + } + } + else + ent->client->ps.gunframe = 29; + } + +} + +void Weapon_Pistol (edict_t *ent) +{ + int rounds; + //static int pause_frames[] = {46, 0, 0}; + static int pause_frames[] = {0, 0, 0}; + static int fire_frames[] = {6, 10, 0}; + + if (ent->client->reload_weapon) + { + if (ent->client->ps.gunframe >= 28 && ent->client->ps.gunframe <= 44) + { + if (ent->client->pers.weapon_clip[ent->client->clip_index] < MAX_PISTOL_ROUNDS) + { + ent->client->ps.gunframe = 10; + ent->client->weaponstate = WEAPON_RELOADING; + + ent->client->pers.inventory[ent->client->ammo_index] += ent->client->pers.weapon_clip[ent->client->clip_index]; + + if (ent->client->pers.inventory[ent->client->ammo_index] < MAX_PISTOL_ROUNDS) + { + rounds = ent->client->pers.inventory[ent->client->ammo_index]; + } + else + rounds = MAX_PISTOL_ROUNDS; + + ent->client->pers.weapon_clip[ent->client->clip_index] = rounds; + ent->client->pers.inventory[ent->client->ammo_index] -= rounds; + } + + ent->client->reload_weapon = false; + } + else + ent->client->reload_weapon = false; + } + else if (!ent->client->pers.weapon_clip[ent->client->clip_index] && ent->client->pers.inventory[ent->client->ammo_index]) + { + if (ent->client->ps.gunframe >= 28 && ent->client->ps.gunframe <= 44) + { + ent->client->reload_weapon = false; + ent->client->ps.gunframe = 10; + ent->client->weaponstate = WEAPON_RELOADING; + + if (ent->client->pers.inventory[ent->client->ammo_index] < MAX_PISTOL_ROUNDS) + { + rounds = ent->client->pers.inventory[ent->client->ammo_index]; + } + else + rounds = MAX_PISTOL_ROUNDS; + + ent->client->pers.weapon_clip[ent->client->clip_index] = rounds; + ent->client->pers.inventory[ent->client->ammo_index] -= rounds; + } + } + + if (ent->client->pers.pistol_mods & WEAPON_MOD_DAMAGE) + ent->client->ps.gunindex = gi.modelindex("models/weapons/v_colt/magnum.mdx"); + + Weapon_Generic (ent, 5, 28, 44, 49, pause_frames, fire_frames, Weapon_Pistol_Fire); + + if (ent->client->pers.pistol_mods & WEAPON_MOD_RELOAD) + { + if (ent->client->ps.gunframe == 21) + ent->client->ps.gunframe = 26; + } + + if (ent->client->ps.gunframe >= 10 && ent->client->ps.gunframe <= 28) + { + ent->client->ps.model_parts[PART_BODY].invisible_objects = 0; + } + else + ent->client->ps.model_parts[PART_BODY].invisible_objects = (1<<0 | 1<<1); + + if (ent->client->ps.gunframe == 1) + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/pistol/holster.wav"), 1, ATTN_NORM, 0); + + if (ent->client->ps.gunframe == 11) + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/pistol/clip_out.wav"), 1, ATTN_NORM, 0); + + if (ent->client->ps.gunframe == 18) + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/pistol/clip_in.wav"), 1, ATTN_NORM, 0); + + if (ent->client->ps.gunframe >= 10 && ent->client->ps.gunframe <= 24) + { + ent->client->ps.model_parts[PART_GUN].invisible_objects = 0; + } + else + ent->client->ps.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + +} + + + +void SPistol_Fire (edict_t *ent, vec3_t vorigin, int damage) +{ + vec3_t start; + vec3_t forward, right; + int kick = 2; + vec3_t offset; + + // is_silenced = MZ_SILENCED; + + if (is_quad) + damage *= 4; + AngleVectors (ent->client->v_angle, forward, right, NULL); + + VectorSet(offset, 0, 0, ent->viewheight); + + VectorAdd (offset, vorigin, offset); + P_ProjectSource (ent->client, ent->s.origin, offset, forward, right, start); + + VectorScale (forward, -2, ent->client->kick_origin); + + ent->client->kick_angles[0] = -4; + + fire_bullet (ent, start, forward, damage, kick, DEFAULT_BULLET_HSPREAD, DEFAULT_BULLET_VSPREAD, MOD_SILENCER); + + gi.WriteByte (svc_muzzleflash); + gi.WriteShort (ent-g_edicts); + gi.WriteByte (MZ_SPISTOL | is_silenced); + gi.multicast (ent->s.origin, MULTICAST_PVS); + + if (! ( (int)dmflags->value & DF_INFINITE_AMMO && deathmatch->value ) ) + ent->client->pers.weapon_clip[ent->client->clip_index]--; + + if (!ent->client->pers.weapon_clip[ent->client->clip_index] && !ent->client->pers.inventory[ ent->client->ammo_index]) + { + if (level.time >= ent->pain_debounce_time) + { + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/noammo.wav"), 1, ATTN_NORM, 0); + ent->pain_debounce_time = level.time + 1; + } + NoAmmoWeaponChange (ent); + } + + Eject_Pistol_Shell(ent); + ent->client->gun_noise = false; +} + + +void Weapon_SPistol_Fire (edict_t *ent) +{ + int damage; + int rounds; + + + if (ent->waterlevel >= 2) + { + //gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/noammo.wav"), 1, ATTN_NORM, 0); + if (ent->client->weaponstate == WEAPON_FIRING) + { + ent->client->weaponstate = WEAPON_READY; + ent->client->ps.gunframe = 50; + } + return; + } + + if (deathmatch->value) + damage = 15; + else + damage = 10; + + if (ent->client->ps.gunframe == 21) + { + if (ent->client->pers.pistol_mods & WEAPON_MOD_ROF) + { + ent->client->ps.gunframe = 23; + } + else + { + ent->client->ps.gunframe++; + } + + if (ent->client->pers.pistol_mods & WEAPON_MOD_DAMAGE) + { + damage *= 2; + } + + SPistol_Fire (ent, vec3_origin, damage); + Eject_Pistol_Shell(ent); + ent->client->pers.silencer_shots--; + + if (!ent->client->pers.silencer_shots) + ent->client->ps.gunframe = 43; + + } + else if (ent->client->ps.gunframe == 25) + { + if (!ent->client->pers.weapon_clip[ent->client->clip_index]) + { + + if (ent->client->pers.inventory[ent->client->ammo_index] < MAX_PISTOL_ROUNDS) + { + rounds = ent->client->pers.inventory[ent->client->ammo_index]; + } + else + rounds = MAX_PISTOL_ROUNDS; + + ent->client->pers.weapon_clip[ent->client->clip_index] = rounds; + ent->client->pers.inventory[ent->client->ammo_index] -= rounds; + ent->client->ps.gunframe++; + if (ent->client->pers.pistol_mods & WEAPON_MOD_RELOAD) + ;//gi.dprintf ("need fast reload sound\n"); + else + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/pistol/clip_out.wav"), 1, ATTN_NORM, 0); + + if (! ent->client->pers.weapon_clip[ent->client->clip_index]) + { + if (level.time >= ent->pain_debounce_time) + { + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/noammo.wav"), 1, ATTN_NORM, 0); + ent->pain_debounce_time = level.time + 1; + } + NoAmmoWeaponChange (ent); + } + } + else + ent->client->ps.gunframe = 50; + } + + else if (ent->client->ps.gunframe == 44) + { + if (!(ent->client->pers.silencer_shots)) + ent->client->ps.gunframe++; + else + ent->client->ps.gunframe = 50; + } + + +} + + +void Weapon_SPistol (edict_t *ent) +{ + static int pause_frames[] = {0, 0, 0}; + static int fire_frames[] = {21, 25, 44, 0}; + int rounds; + +// gi.dprintf ("silencer shots left: %d\n", ent->client->pers.silencer_shots); + + if (ent->client->ps.gunframe < 22) + { + ent->client->ps.model_parts[PART_BODY].invisible_objects = 0; + } + else if (ent->client->weaponstate == WEAPON_RELOADING_SPISTOL && ent->client->ps.gunframe < 40) + { + if (ent->client->ps.gunframe < 39) + ent->client->ps.model_parts[PART_GUN].invisible_objects = 0; + else + ent->client->ps.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + + ent->client->ps.model_parts[PART_BODY].invisible_objects = 0; + } + else if (ent->client->pers.holsteredweapon) + { + ent->client->ps.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + ent->client->ps.model_parts[PART_BODY].invisible_objects = (1<<0 | 1<<1); + } + else + { + ent->client->ps.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + ent->client->ps.model_parts[PART_BODY].invisible_objects = (1<<0 | 1<<1); + } + + if (ent->client->ps.gunframe == 49) + { + if ( ent->client->pers.inventory[ITEM_INDEX(FindItem("bullets"))] + && ent->client->pers.inventory[ITEM_INDEX(FindItem("pistol"))] ) + { + ent->client->newweapon = FindItem ("pistol"); + + } + else + NoAmmoWeaponChange (ent); + + ent->client->ps.gunframe = 71; + ent->client->weaponstate = WEAPON_DROPPING; + { + gitem_t *it; + int index; + it = FindItem ("SPistol"); + index = ITEM_INDEX (it); + ent->client->pers.inventory[index] = 0; + } + } + else if (ent->client->reload_weapon) + { + if (ent->client->ps.gunframe >= 50 && ent->client->ps.gunframe <= 65) + { + + if (ent->client->pers.weapon_clip[ent->client->clip_index] < MAX_PISTOL_ROUNDS) + { + ent->client->ps.gunframe = 25; + ent->client->weaponstate = WEAPON_RELOADING_SPISTOL; + + ent->client->pers.inventory[ent->client->ammo_index] += ent->client->pers.weapon_clip[ent->client->clip_index]; + + if (ent->client->pers.inventory[ent->client->ammo_index] < MAX_PISTOL_ROUNDS) + { + rounds = ent->client->pers.inventory[ent->client->ammo_index]; + } + else + rounds = MAX_PISTOL_ROUNDS; + + ent->client->pers.weapon_clip[ent->client->clip_index] = rounds; + ent->client->pers.inventory[ent->client->ammo_index] -= rounds; + } + + ent->client->reload_weapon = false; + } + } + else if (!ent->client->pers.weapon_clip[ent->client->clip_index] && ent->client->pers.inventory[ent->client->ammo_index]) + { + + if (ent->client->ps.gunframe >= 50 && ent->client->ps.gunframe <= 65) + { + ent->client->reload_weapon = false; + ent->client->ps.gunframe = 25; + ent->client->weaponstate = WEAPON_RELOADING_SPISTOL; + + if (ent->client->pers.inventory[ent->client->ammo_index] < MAX_PISTOL_ROUNDS) + { + rounds = ent->client->pers.inventory[ent->client->ammo_index]; + } + else + rounds = MAX_PISTOL_ROUNDS; + + ent->client->pers.weapon_clip[ent->client->clip_index] = rounds; + ent->client->pers.inventory[ent->client->ammo_index] -= rounds; + } + } + + if (ent->client->pers.pistol_mods & WEAPON_MOD_DAMAGE) + ent->client->ps.gunindex = gi.modelindex("models/weapons/silencer_mdx/magnum.mdx"); + + + Weapon_Generic (ent, 20, 49, 65, 75, pause_frames, fire_frames, Weapon_SPistol_Fire); + + if (ent->client->ps.gunframe == 1) + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/pistol/silencerattatch.wav"), 1, ATTN_NORM, 0); + + +} + + +// JOSEPH 26-AUG-98 +/* +====================================================================== + +TOMMYGUN + +====================================================================== +*/ + +void Tommygun_Fire (edict_t *ent) +{ + int i; + vec3_t start; + //vec3_t fireorigin; + vec3_t forward, right; + vec3_t angles; + int damage = 8; + int kick = 2; + vec3_t offset; + + if (ent->waterlevel >= 2) + { + // gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/noammo.wav"), 1, ATTN_NORM, 0); + if (ent->client->weaponstate == WEAPON_FIRING) + { + ent->client->weaponstate = WEAPON_READY; + ent->client->ps.gunframe = 30; + } + return; + } + + // First shot + if (!(ent->client->buttons & BUTTON_ATTACK)) + { + // ent->client->machinegun_shots = 0; + ent->client->ps.gunframe = 30; + return; + } + + if (deathmatch->value) + damage *= 1.75; + + if (ent->client->pers.inventory[ent->client->ammo_index] == 0 && ent->client->pers.weapon_clip[ent->client->clip_index] == 0) + return; + + if (ent->client->ps.gunframe == 5) + ent->client->ps.gunframe = 4; + else + ent->client->ps.gunframe = 5; + + if (is_quad) + { + damage *= 4; + kick *= 4; + } + + // Tommy is too powerful in real-mode + if (dm_realmode->value) + damage /= 2; + + // Bounce + for (i=1 ; i<3 ; i++) + { + ent->client->kick_origin[i] = crandom() * 0.22; + ent->client->kick_angles[i] = crandom() * 0.6; + } + ent->client->kick_origin[0] = crandom() * 0.22; + // ent->client->kick_angles[0] = ent->client->machinegun_shots * -.5; + + // get start / end positions + VectorAdd (ent->client->v_angle, ent->client->kick_angles, angles); + AngleVectors (angles, forward, right, NULL); + + VectorSet(offset, 0, 0, ent->viewheight-1); + + P_ProjectSource (ent->client, ent->s.origin, offset, forward, right, start); + + fire_bullet (ent, start, forward, damage, kick, DEFAULT_BULLET_HSPREAD, DEFAULT_BULLET_VSPREAD, MOD_MACHINEGUN); + + gi.WriteByte (svc_muzzleflash); + gi.WriteShort (ent-g_edicts); + gi.WriteByte (MZ_MACHINEGUN | is_silenced); + gi.multicast (ent->s.origin, MULTICAST_PVS); + + PlayerNoise(ent, start, PNOISE_WEAPON); + + // Disable for unlimited ammo + if (! ( (int)dmflags->value & DF_INFINITE_AMMO && deathmatch->value ) ) + { + ent->client->pers.weapon_clip [ent->client->clip_index]--; + + if (!(ent->client->pers.inventory[ent->client->ammo_index]) && !ent->client->pers.weapon_clip [ent->client->clip_index]) + { + NoAmmoWeaponChange (ent); + ent->client->ps.gunframe = 30; + } + else if (!ent->client->pers.weapon_clip [ent->client->clip_index]) + { + ent->client->reload_weapon = true; + ent->client->ps.gunframe = 30; + // gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/machinegun/machgcock.wav"), 1, ATTN_NORM, 0); + } + } + + if (!deathmatch->value) // uses up bandwidth + Eject_Tommy_Shell(ent); + + ent->client->gun_noise = true; +} + +void Weapon_Tommygun (edict_t *ent) +{ + int rounds; + static int pause_frames[] = {44, 0, 0}; + static int fire_frames[] = {4, 5, 0}; + + if (ent->client->pers.inventory[ent->client->ammo_index] == 0 && ent->client->pers.weapon_clip[ent->client->clip_index] == 0 + && ent->client->weaponstate != WEAPON_DROPPING) + { + if (level.time >= ent->pain_debounce_time) + { + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/noammo.wav"), 1, ATTN_NORM, 0); + ent->pain_debounce_time = level.time + 1; + } + NoAmmoWeaponChange (ent); + } + else if (ent->client->reload_weapon) + { + if (ent->client->ps.gunframe >= 30 && ent->client->ps.gunframe <= 40) + { + if (ent->client->pers.weapon_clip[ent->client->clip_index] < MAX_TOMMYGUN_ROUNDS) + { + ent->client->ps.gunframe = 6; + ent->client->weaponstate = WEAPON_RELOADING; + + ent->client->pers.inventory[ent->client->ammo_index] += ent->client->pers.weapon_clip[ent->client->clip_index]; + + if (ent->client->pers.inventory[ent->client->ammo_index] < MAX_TOMMYGUN_ROUNDS) + { + rounds = ent->client->pers.inventory[ent->client->ammo_index]; + } + else + rounds = MAX_TOMMYGUN_ROUNDS; + + ent->client->pers.weapon_clip[ent->client->clip_index] = rounds; + ent->client->pers.inventory[ent->client->ammo_index] -= rounds; + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/machinegun/machgcock.wav"), 1, ATTN_NORM, 0); + } + + ent->client->reload_weapon = false; + } + } + else if (!ent->client->pers.weapon_clip[ent->client->clip_index] && ent->client->pers.inventory[ent->client->ammo_index]) + { + if (ent->client->ps.gunframe >= 30 && ent->client->ps.gunframe <= 40) + { + ent->client->reload_weapon = false; + ent->client->ps.gunframe = 6; + ent->client->weaponstate = WEAPON_RELOADING; + + if (ent->client->pers.inventory[ent->client->ammo_index] < MAX_TOMMYGUN_ROUNDS) + { + rounds = ent->client->pers.inventory[ent->client->ammo_index]; + } + else + rounds = MAX_TOMMYGUN_ROUNDS; + + ent->client->pers.weapon_clip[ent->client->clip_index] = rounds; + ent->client->pers.inventory[ent->client->ammo_index] -= rounds; + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/machinegun/machgcock.wav"), 1, ATTN_NORM, 0); + } + } + + Weapon_Generic (ent, 3, 29, 40, 46, pause_frames, fire_frames, Tommygun_Fire); + + +} +// END JOSEPH + + + +/* +====================================================================== + + FLAMETHROWER + +====================================================================== +*/ + +void FlameThrower_Fire (edict_t *ent) +{ + vec3_t start; + vec3_t forward, right; + vec3_t angles; + int damage = 2; + int kick = 0; + static int flamesnd = 0; +// vec3_t offset; + + if (ent->waterlevel >= 2) + { + // gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/noammo.wav"), 1, ATTN_NORM, 0); + if (ent->client->weaponstate == WEAPON_FIRING) + { + ent->client->weaponstate = WEAPON_READY; + ent->client->ps.gunframe = 14; + ent->s.renderfx2 &= ~RF2_FLAMETHROWER; + } + return; + } + + if (deathmatch->value && rand()%2) + damage = 1; + + if (ent->health <= 0) + return; + + if (!(ent->client->buttons & BUTTON_ATTACK)) + { + // ent->client->machinegun_shots = 0; + ent->client->ps.gunframe = 14; + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/flame_thrower/flameend.wav"), 1, ATTN_NORM, 0); + flamesnd = 0; + ent->s.renderfx2 &= ~RF2_FLAMETHROWER; + return; + } + + ent->client->ps.gunframe ++ ; + + if (ent->client->ps.gunframe == 14) + ent->client->ps.gunframe = 6; + + if (ent->client->pers.inventory[ent->client->ammo_index] < 1) + { + ent->client->ps.gunframe = 6; + + if (level.time >= ent->pain_debounce_time) + { + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/noammo.wav"), 1, ATTN_NORM, 0); + ent->pain_debounce_time = level.time + 1; + } + NoAmmoWeaponChange (ent); + ent->s.renderfx2 &= ~RF2_FLAMETHROWER; + return; + } + + if (is_quad) + { + damage *= 4; + kick *= 4; + } + + // get start / end positions + VectorAdd (ent->client->v_angle, ent->client->kick_angles, angles); + AngleVectors (angles, forward, right, NULL); + + VectorCopy( ent->s.origin, start ); + + fire_flamethrower (ent, start, forward, damage, kick, MOD_FLAMETHROWER); + + PlayerNoise(ent, start, PNOISE_WEAPON); + + ent->s.renderfx2 |= RF2_FLAMETHROWER; + + flamesnd++; + + if (flamesnd > 2) + flamesnd = 0; + + if (flamesnd == 1) + gi.sound(ent, CHAN_AUTO, gi.soundindex("weapons/flame_thrower/flame2.wav"), 1, ATTN_NORM, 0); + else if (flamesnd == 2) + gi.sound(ent, CHAN_AUTO, gi.soundindex("weapons/flame_thrower/flame3.wav"), 1, ATTN_NORM, 0); + else + gi.sound(ent, CHAN_AUTO, gi.soundindex("weapons/flame_thrower/flame1.wav"), 1, ATTN_NORM, 0); + + + if (! ( (int)dmflags->value & DF_INFINITE_AMMO && deathmatch->value ) ) + { + if ((ent->client->pers.inventory[ent->client->ammo_index] -= 2) < 0) + ent->client->pers.inventory[ent->client->ammo_index] = 0; + } + + // RAFAEL 28-dec-98 + ent->client->gun_noise = true; + + +} + +void Weapon_FlameThrower (edict_t *ent) +{ + static int pause_frames[] = {18, 24, 0}; + + static int fire_frames[] = {6, 7, 8, 9, 10, 11, 12, 13}; + + Weapon_Generic (ent, 5, 13, 25, 31, pause_frames, fire_frames, FlameThrower_Fire); + +} + + +/* + SHOTGUN +*/ + +void shotgun_fire (edict_t *ent) +{ + vec3_t start; + vec3_t forward, right; + vec3_t offset; + int damage = 8; + int kick = 50; + + if (ent->waterlevel >= 2) + { + // gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/noammo.wav"), 1, ATTN_NORM, 0); + if (ent->client->weaponstate == WEAPON_FIRING) + { + ent->client->weaponstate = WEAPON_READY; + ent->client->ps.gunframe = 33; + } + return; + } + + if (deathmatch->value) + damage *= 2; + + AngleVectors (ent->client->v_angle, forward, right, NULL); + + VectorSet(offset, 0, 0, ent->viewheight-2); + + P_ProjectSource (ent->client, ent->s.origin, offset, forward, right, start); + + if (deathmatch->value) + { + fire_shotgun (ent, start, forward, damage, kick, 500, 500, DEFAULT_SAWED_SHOTGUN_COUNT, MOD_SHOTGUN); + } + else + { + fire_shotgun (ent, start, forward, damage, kick, 500, 500, DEFAULT_SAWED_SHOTGUN_COUNT , MOD_SHOTGUN); + } + + VectorScale (forward, -2, ent->client->kick_origin); + + // send muzzle flash + gi.WriteByte (svc_muzzleflash); + gi.WriteShort (ent-g_edicts); + gi.WriteByte (MZ_SHOTGUN | is_silenced); + gi.multicast (ent->s.origin, MULTICAST_PVS); + + ent->client->ps.gunframe++; + PlayerNoise(ent, start, PNOISE_WEAPON); + + if (! ( (int)dmflags->value & DF_INFINITE_AMMO && deathmatch->value ) ) + ent->client->pers.weapon_clip[ent->client->clip_index]--; + + Eject_Shotgun_Shell(ent); + ent->client->gun_noise = true; + +} + +void Weapon_Shotgun_Fire (edict_t *ent) +{ + if (ent->client->ps.gunframe == 6) + { + if (ent->client->pers.weapon_clip[ent->client->clip_index]) + shotgun_fire (ent); + else + { + ent->client->ps.gunframe = 17; + ent->client->reload_weapon = true; + ent->client->weaponstate = WEAPON_RELOAD_CYCLE; + } + } + else if (ent->client->ps.gunframe == 16) + { + if (!ent->client->pers.weapon_clip[ent->client->clip_index]) + { + if (ent->client->pers.inventory[ent->client->ammo_index]) + { + ent->client->ps.gunframe ++; + ent->client->reload_weapon = true; + ent->client->weaponstate = WEAPON_RELOAD_CYCLE; + } + else + { + if (level.time >= ent->pain_debounce_time) + { + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/noammo.wav"), 1, ATTN_NORM, 0); + ent->pain_debounce_time = level.time + 1; + } + NoAmmoWeaponChange (ent); + } + } + else + { + ent->client->ps.gunframe = 33; + } + } +} + + +void Weapon_Shotgun (edict_t *ent) +{ + static int pause_frames[] = {0, 0}; + static int fire_frames[] = {6, 16, 0}; + static int kick_frames[] = {-12, -9, -6, -4, -1}; + + if ((ent->client->ps.gunframe >= 6) & (ent->client->ps.gunframe <= 9)) + { + ent->client->kick_angles[0] = kick_frames[ent->client->ps.gunframe-6]; + } + + if (ent->client->ps.gunframe == 7) + ent->client->ps.rdflags |= RDF_NOLERP; + else + ent->client->ps.rdflags &= ~RDF_NOLERP; + + if (ent->client->reload_weapon) + { + if (ent->client->buttons & BUTTON_ATTACK && ent->client->pers.weapon_clip[ent->client->clip_index] >= 1 && ent->client->weaponstate != WEAPON_FIRING) + { + ent->client->reload_weapon = false; + ent->client->ps.gunframe = 33; + ent->client->weaponstate = WEAPON_READY; + } + else if (ent->client->newweapon) + { + ent->client->reload_weapon = false; + ent->client->ps.gunframe = 33; + ent->client->weaponstate = WEAPON_DROPPING; + } + else + { + if (ent->client->ps.gunframe == 29) + { + if (ent->client->pers.weapon_clip[ent->client->clip_index] < MAX_SHOTGUN_ROUNDS) + { + if (ent->client->pers.inventory[ent->client->ammo_index]) + { + ent->client->pers.inventory[ent->client->ammo_index]--; + ent->client->pers.weapon_clip[ent->client->clip_index]++; + + if (ent->client->pers.weapon_clip[ent->client->clip_index] < MAX_SHOTGUN_ROUNDS) + ent->client->ps.gunframe = 21; + else + { + ent->client->reload_weapon = false; + ent->client->ps.gunframe = 29; + ent->client->weaponstate = WEAPON_RELOADING; + } + } + else + { + ent->client->reload_weapon = false; + ent->client->weaponstate = WEAPON_RELOADING; + } + } + else + { + ent->client->reload_weapon = false; + ent->client->weaponstate = WEAPON_RELOADING; + } + } + else if (ent->client->ps.gunframe >= 33 && ent->client->ps.gunframe <= 40) + { + if (ent->client->pers.weapon_clip[ent->client->clip_index] < MAX_SHOTGUN_ROUNDS && + ent->client->pers.inventory[ent->client->ammo_index]) + { + ent->client->weaponstate = WEAPON_RELOAD_CYCLE; + ent->client->ps.gunframe = 17; + } + } + } + } + else if (!ent->client->pers.weapon_clip[ent->client->clip_index] && ent->client->weaponstate != WEAPON_DROPPING + && !ent->client->buttons & BUTTON_ATTACK) + { + ent->client->reload_weapon = true; + ent->client->weaponstate = WEAPON_RELOAD_CYCLE; + ent->client->ps.gunframe = 17; + + if (!ent->client->pers.inventory[ent->client->ammo_index]) + { + if (level.time >= ent->pain_debounce_time) + { + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/noammo.wav"), 1, ATTN_NORM, 0); + ent->pain_debounce_time = level.time + 1; + } + NoAmmoWeaponChange (ent); + ent->client->reload_weapon = false; + ent->client->ps.gunframe = 33; + ent->client->weaponstate = WEAPON_READY; + } + } + + if (ent->client->ps.gunframe == 21) + { + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/shotgun/shotgload.wav"), 1, ATTN_NORM, 0); + } + + Weapon_Generic (ent, 5, 32, 40, 45, pause_frames, fire_frames, Weapon_Shotgun_Fire); + + /* + if (ent->client->ps.gunframe == 1) + { + ent->client->ps.model_parts[PART_HEAD].invisible_objects = 0; + ent->client->ps.model_parts[PART_BODY].invisible_objects = 0; + ent->client->ps.model_parts[PART_LEGS].invisible_objects = 0; + } + */ + + +} + +/* +BAR .308 +*/ +void weapon_barmachinegun_fire (edict_t *ent) +{ + vec3_t start; + vec3_t forward, right; + vec3_t offset; + int damage; + int kick; + + + if (ent->waterlevel >= 2) + { + // gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/noammo.wav"), 1, ATTN_NORM, 0); + if (ent->client->weaponstate == WEAPON_FIRING) + { + ent->client->weaponstate = WEAPON_READY; + ent->client->ps.gunframe = 43; + } + return; + } + + if (deathmatch->value) + { + // tone down if too much in deathmatch + damage = 50; + kick = 50; + } + else + { + damage = 25; + kick = 50; + } + + AngleVectors (ent->client->v_angle, forward, right, NULL); + VectorScale (forward, -3, ent->client->kick_origin); + ent->client->kick_angles[0] = -3; + VectorSet(offset, 0, 0, ent->viewheight-1); + P_ProjectSource (ent->client, ent->s.origin, offset, forward, right, start); + + fire_bullet (ent, start, forward, damage, kick, 0, 0, MOD_BARMACHINEGUN); + + // send muzzle flash + gi.WriteByte (svc_muzzleflash); + gi.WriteShort (ent-g_edicts); + if (ent->client->ps.gunframe == 5) + gi.WriteByte (MZ_BARMACHINEGUN | is_silenced); + else + gi.WriteByte (MZ_BARMACHINEGUN2 | is_silenced); + gi.multicast (ent->s.origin, MULTICAST_PVS); + + PlayerNoise(ent, start, PNOISE_WEAPON); + + if (! ( (int)dmflags->value & DF_INFINITE_AMMO && deathmatch->value ) ) + { + ent->client->pers.weapon_clip [ent->client->clip_index]--; + + if (!(ent->client->pers.inventory[ent->client->ammo_index]) && !ent->client->pers.weapon_clip [ent->client->clip_index]) + { + NoAmmoWeaponChange (ent); + ent->client->ps.gunframe = 43; + } + else if (ent->client->pers.inventory[ent->client->ammo_index] && !(ent->client->pers.weapon_clip [ent->client->clip_index])) + { + ent->client->reload_weapon = true; + ent->client->ps.gunframe = 43; + } + + } + Eject_Tommy_Shell(ent); + ent->client->gun_noise = true; + +} + +void barmachinegun_fire (edict_t *ent) +{ + + + if ((ent->client->ps.gunframe == 19)/* && !(ent->client->buttons & BUTTON_ATTACK)*/) + { + ent->client->ps.gunframe = 43; + return; + } + else if (ent->client->ps.gunframe == 12) + { + if (ent->client->pers.pistol_mods & WEAPON_MOD_COOLING_JACKET) + { + ent->client->ps.gunframe = 43; + } + } + else if (ent->client->ps.gunframe == 5 + || ent->client->ps.gunframe == 7 + || ent->client->ps.gunframe == 9) + { + weapon_barmachinegun_fire (ent); + + if (ent->client->pers.pistol_mods & WEAPON_MOD_COOLING_JACKET) + { + ent->client->pers.hmg_shots --; + + if (!ent->client->pers.hmg_shots) + { + ent->client->pers.pistol_mods &= ~WEAPON_MOD_COOLING_JACKET; + + ent->client->newweapon = ent->client->pers.weapon; + + if (ent->client->pers.inventory[ent->client->ammo_index] || ent->client->pers.weapon_clip[ent->client->clip_index]) + ChangeWeapon (ent); + else + NoAmmoWeaponChange (ent); + } + } + } + + ent->client->ps.gunframe++; + +} + +#define MAX_BARGUN_ROUNDS 30 + +void Weapon_Barmachinegun (edict_t *ent) +{ + static int pause_frames[] = {0, 0}; + static int fire_frames[] = {5, 6, 7, 8, 9, 12, 19, 0}; + int rounds; + + if (ent->client->pers.inventory[ent->client->ammo_index] == 0 && ent->client->pers.weapon_clip[ent->client->clip_index] == 0 + && ent->client->weaponstate != WEAPON_DROPPING) + { + if (level.time >= ent->pain_debounce_time) + { + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/noammo.wav"), 1, ATTN_NORM, 0); + ent->pain_debounce_time = level.time + 1; + } + NoAmmoWeaponChange (ent); + } + else if (ent->client->reload_weapon) + { + if (ent->client->ps.gunframe >= 43 && ent->client->ps.gunframe <= 53) + { + if (ent->client->pers.weapon_clip[ent->client->clip_index] < MAX_BARGUN_ROUNDS) + { + ent->client->ps.gunframe = 20; + ent->client->weaponstate = WEAPON_RELOADING; + + ent->client->pers.inventory[ent->client->ammo_index] += ent->client->pers.weapon_clip[ent->client->clip_index]; + + if (ent->client->pers.inventory[ent->client->ammo_index] < MAX_BARGUN_ROUNDS) + { + rounds = ent->client->pers.inventory[ent->client->ammo_index]; + } + else + rounds = MAX_BARGUN_ROUNDS; + + ent->client->pers.weapon_clip[ent->client->clip_index] = rounds; + ent->client->pers.inventory[ent->client->ammo_index] -= rounds; + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/hmg/hmgcock.wav"), 1, ATTN_NORM, 0); + } + + ent->client->reload_weapon = false; + } + } + else if (!ent->client->pers.weapon_clip[ent->client->clip_index] && ent->client->pers.inventory[ent->client->ammo_index]) + { + if (ent->client->ps.gunframe >= 43 && ent->client->ps.gunframe <= 53) + { + ent->client->reload_weapon = false; + ent->client->ps.gunframe = 20; + ent->client->weaponstate = WEAPON_RELOADING; + + if (ent->client->pers.inventory[ent->client->ammo_index] < MAX_BARGUN_ROUNDS) + { + rounds = ent->client->pers.inventory[ent->client->ammo_index]; + } + else + rounds = MAX_BARGUN_ROUNDS; + + ent->client->pers.weapon_clip[ent->client->clip_index] = rounds; + ent->client->pers.inventory[ent->client->ammo_index] -= rounds; + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/hmg/hmgcock.wav"), 1, ATTN_NORM, 0); + } + } + + + Weapon_Generic (ent, 4, 42, 53, 59, pause_frames, fire_frames, barmachinegun_fire); + + // gi.dprintf ("Frame: %d\n", ent->client->ps.gunframe); +} + + +/* +====================================================================== + +GRENADE LAUNCHER + +====================================================================== +*/ + +void Eject_Grenade_Shell (edict_t *ent) +{ + edict_t *dropped = NULL; + vec3_t forward, right, up; + vec3_t offset; + + if (!(ent->client)) + return; + + if (deathmatch->value) + return; + + //gi.dprintf("angles = %s\n", vtos(ent->s.angles)); + + dropped = G_Spawn(); + + if (!dropped) + return; + + dropped->s.modelindex = gi.modelindex("models/weapons/grenade_shell/tris.md2"); + + dropped->movetype = MOVETYPE_BOUNCE; + + dropped->mins[0] = -4; + dropped->mins[1] = -4; + dropped->mins[2] = -2; + + dropped->maxs[0] = 4; + dropped->maxs[1] = 4; + dropped->maxs[2] = 4; + + AngleVectors (ent->client->v_angle, forward, right, up); + + dropped->s.angles[YAW] = ent->client->v_angle[YAW]; + + VectorSet(offset, 0, 16, ent->viewheight -2 ); + P_ProjectSource (ent->client, ent->s.origin, offset, forward, right, dropped->s.origin); + + VectorScale (forward, 5 + ((rand()&15)-8), dropped->velocity); + VectorMA (dropped->velocity, 50 + (rand()&31), right, dropped->velocity); + dropped->velocity[2] = 150 + (rand()&31); + + // Ridah, changed this so they don't stick in the ground so much + VectorSet(dropped->avelocity, 0/*((rand()&7)-4)*/, ((rand()&15)-8), ((rand()&7)-4)); + + dropped->think = Think_Eject_Shell; + dropped->misstime = 40; + dropped->nextthink = level.time + 0.1; + + dropped->s.renderfx2 |= RF2_NOSHADOW; + + gi.linkentity (dropped); + + return; +} + + +void weapon_grenadelauncher_fire (edict_t *ent) +{ + vec3_t offset; + vec3_t forward, right; + vec3_t start; + int damage = 120; + float radius; + + if (ent->waterlevel >= 2) + { + // gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/noammo.wav"), 1, ATTN_NORM, 0); + if (ent->client->weaponstate == WEAPON_FIRING) + { + ent->client->weaponstate = WEAPON_READY; + ent->client->ps.gunframe = 33; + } + return; + } + + damage *= 2; // 240 points of damage + radius = damage*2; // 480 units radius + radius *= 0.75; + + VectorSet(offset, 16, 8, ent->viewheight-8); + AngleVectors (ent->client->v_angle, forward, right, NULL); + P_ProjectSource (ent->client, ent->s.origin, offset, forward, right, start); + + VectorScale (forward, -2, ent->client->kick_origin); + ent->client->kick_angles[0] = -1; + + fire_grenade (ent, start, forward, damage, 750, 2.0, radius); + + gi.WriteByte (svc_muzzleflash); + gi.WriteShort (ent-g_edicts); + gi.WriteByte (MZ_GRENADE | is_silenced); + gi.multicast (ent->s.origin, MULTICAST_PVS); + + ent->client->ps.gunframe++; + + PlayerNoise(ent, start, PNOISE_WEAPON); + + if (! ( (int)dmflags->value & DF_INFINITE_AMMO && deathmatch->value ) ) + { + ent->client->pers.weapon_clip[ent->client->clip_index]--; + + if (!(ent->client->pers.inventory[ent->client->ammo_index]) && !ent->client->pers.weapon_clip [ent->client->clip_index]) + { + NoAmmoWeaponChange (ent); + ent->client->ps.gunframe = 33; + } + } + + Eject_Grenade_Shell(ent); + + ent->client->gun_noise = true; + +} + +void Weapon_GrenadeLauncher_Fire (edict_t *ent) +{ + if (ent->client->ps.gunframe == 5) + weapon_grenadelauncher_fire (ent); + else if (ent->client->ps.gunframe == 16) + { + if ((ent->client->pers.inventory[ent->client->ammo_index]) && !ent->client->pers.weapon_clip [ent->client->clip_index]) + { + ent->client->reload_weapon = true; + } + + ent->client->ps.gunframe = 33; + + } + + +} + +#define MAX_GRENADE_ROUNDS 3 + +void Weapon_GrenadeLauncher (edict_t *ent) +{ + static int pause_frames[] = {0, 0}; + static int fire_frames[] = {5, 16, 0}; + int rounds; + + if (ent->client->pers.inventory[ent->client->ammo_index] == 0 && ent->client->pers.weapon_clip[ent->client->clip_index] == 0 + && ent->client->weaponstate != WEAPON_DROPPING) + { + if (level.time >= ent->pain_debounce_time) + { + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/noammo.wav"), 1, ATTN_NORM, 0); + ent->pain_debounce_time = level.time + 1; + } + NoAmmoWeaponChange (ent); + } + else if (ent->client->reload_weapon) + { + if (ent->client->ps.gunframe >= 33 && ent->client->ps.gunframe <= 40) + { + if (ent->client->pers.weapon_clip[ent->client->clip_index] < MAX_GRENADE_ROUNDS) + { + ent->client->ps.gunframe = 17; + ent->client->weaponstate = WEAPON_RELOADING; + + ent->client->pers.inventory[ent->client->ammo_index] += ent->client->pers.weapon_clip[ent->client->clip_index]; + + if (ent->client->pers.inventory[ent->client->ammo_index] < MAX_GRENADE_ROUNDS) + { + rounds = ent->client->pers.inventory[ent->client->ammo_index]; + } + else + rounds = MAX_GRENADE_ROUNDS; + + ent->client->pers.weapon_clip[ent->client->clip_index] = rounds; + ent->client->pers.inventory[ent->client->ammo_index] -= rounds; + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/grenade_launcher/reload.wav"), 1, ATTN_NORM, 0); + } + + ent->client->reload_weapon = false; + } + } + else if (!ent->client->pers.weapon_clip[ent->client->clip_index] && ent->client->pers.inventory[ent->client->ammo_index]) + { + if (ent->client->ps.gunframe >= 33 && ent->client->ps.gunframe <= 40) + { + ent->client->reload_weapon = false; + ent->client->ps.gunframe = 17; + ent->client->weaponstate = WEAPON_RELOADING; + + if (ent->client->pers.inventory[ent->client->ammo_index] < MAX_GRENADE_ROUNDS) + { + rounds = ent->client->pers.inventory[ent->client->ammo_index]; + } + else + rounds = MAX_GRENADE_ROUNDS; + + ent->client->pers.weapon_clip[ent->client->clip_index] = rounds; + ent->client->pers.inventory[ent->client->ammo_index] -= rounds; + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/grenade_launcher/reload.wav"), 1, ATTN_NORM, 0); + } + } + + Weapon_Generic (ent, 4, 32, 40, 45, pause_frames, fire_frames, Weapon_GrenadeLauncher_Fire); + + if (ent->client->ps.gunframe >= 17 && ent->client->ps.gunframe <= 32) + { + ent->client->ps.model_parts[PART_GUN].invisible_objects = 0; + } + else + ent->client->ps.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + + + if (ent->client->ps.gunframe >= 9 && ent->client->ps.gunframe <= 16) + ent->client->ps.rdflags |= RDF_NOLERP; + else + ent->client->ps.rdflags &= ~RDF_NOLERP; + + +} + +// rocket launcher + +void weapon_rocketlauncher_fire (edict_t *ent) +{ + vec3_t offset, start; + vec3_t forward, right; + int damage; + float damage_radius; + int radius_damage; + + if (ent->waterlevel >= 2) + { + // gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/noammo.wav"), 1, ATTN_NORM, 0); + if (ent->client->weaponstate == WEAPON_FIRING) + { + ent->client->weaponstate = WEAPON_READY; + ent->client->ps.gunframe = 30; + } + return; + } + + damage = 100 + (int)(random() * 20.0); + radius_damage = 120; + damage_radius = 180; // 256; + if (is_quad) + { + damage *= 4; + radius_damage *= 4; + } + + AngleVectors (ent->client->v_angle, forward, right, NULL); + + VectorScale (forward, -2, ent->client->kick_origin); + ent->client->kick_angles[0] = -4; + + VectorSet(offset, 8, 8, ent->viewheight-8); + P_ProjectSource (ent->client, ent->s.origin, offset, forward, right, start); + fire_rocket (ent, start, forward, damage, 900, damage_radius, radius_damage); + + // send muzzle flash + gi.WriteByte (svc_muzzleflash); + gi.WriteShort (ent-g_edicts); + gi.WriteByte (MZ_ROCKET | is_silenced); + gi.multicast (ent->s.origin, MULTICAST_PVS); + + ent->client->ps.gunframe++; + + PlayerNoise(ent, start, PNOISE_WEAPON); + + if (! ( (int)dmflags->value & DF_INFINITE_AMMO && deathmatch->value ) ) + { + ent->client->pers.weapon_clip[ent->client->clip_index]--; + + if (!(ent->client->pers.inventory[ent->client->ammo_index]) && !ent->client->pers.weapon_clip [ent->client->clip_index]) + { + NoAmmoWeaponChange (ent); + ent->client->ps.gunframe = 30; + } + } + + ent->client->gun_noise = true; + +} + +void Weapon_RocketLauncher_Fire (edict_t *ent) +{ + if (ent->client->ps.gunframe == 6) + weapon_rocketlauncher_fire (ent); + else if (ent->client->ps.gunframe == 13) + { + if ((ent->client->pers.inventory[ent->client->ammo_index]) && !ent->client->pers.weapon_clip [ent->client->clip_index]) + { + ent->client->reload_weapon = true; + } + + ent->client->ps.gunframe = 30; + } + +} + +#define MAX_ROCKET_ROUNDS 5 + +void Weapon_RocketLauncher (edict_t *ent) +{ + static int pause_frames[] = {0, 0}; + static int fire_frames[] = {6, 13, 0}; + int rounds; + + if (ent->client->pers.inventory[ent->client->ammo_index] == 0 && ent->client->pers.weapon_clip[ent->client->clip_index] == 0 + && ent->client->weaponstate != WEAPON_DROPPING) + { + if (level.time >= ent->pain_debounce_time) + { + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/noammo.wav"), 1, ATTN_NORM, 0); + ent->pain_debounce_time = level.time + 1; + } + NoAmmoWeaponChange (ent); + } + else if (ent->client->reload_weapon) + { + if (ent->client->ps.gunframe >= 30 && ent->client->ps.gunframe <= 41) + { + if (ent->client->pers.weapon_clip[ent->client->clip_index] < MAX_ROCKET_ROUNDS) + { + ent->client->ps.gunframe = 14; + ent->client->weaponstate = WEAPON_RELOADING; + + ent->client->pers.inventory[ent->client->ammo_index] += ent->client->pers.weapon_clip[ent->client->clip_index]; + + if (ent->client->pers.inventory[ent->client->ammo_index] < MAX_ROCKET_ROUNDS) + { + rounds = ent->client->pers.inventory[ent->client->ammo_index]; + } + else + rounds = MAX_ROCKET_ROUNDS; + + ent->client->pers.weapon_clip[ent->client->clip_index] = rounds; + ent->client->pers.inventory[ent->client->ammo_index] -= rounds; + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/rocket_launcher/reload.wav"), 1, ATTN_NORM, 0); + } + + ent->client->reload_weapon = false; + } + } + else if (!ent->client->pers.weapon_clip[ent->client->clip_index] && ent->client->pers.inventory[ent->client->ammo_index]) + { + if (ent->client->ps.gunframe >= 30 && ent->client->ps.gunframe <= 41) + { + ent->client->reload_weapon = false; + ent->client->ps.gunframe = 14; + ent->client->weaponstate = WEAPON_RELOADING; + + if (ent->client->pers.inventory[ent->client->ammo_index] < MAX_ROCKET_ROUNDS) + { + rounds = ent->client->pers.inventory[ent->client->ammo_index]; + } + else + rounds = MAX_ROCKET_ROUNDS; + + ent->client->pers.weapon_clip[ent->client->clip_index] = rounds; + ent->client->pers.inventory[ent->client->ammo_index] -= rounds; + gi.sound(ent, CHAN_VOICE, gi.soundindex("weapons/rocket_launcher/reload.wav"), 1, ATTN_NORM, 0); + } + } + + Weapon_Generic (ent, 5, 29, 41, 47, pause_frames, fire_frames, Weapon_RocketLauncher_Fire); + + /* + if (ent->client->ps.gunframe >= 14 && ent->client->ps.gunframe <= 29) + { + ent->client->ps.model_parts[PART_GUN].invisible_objects = 0; + } + else + ent->client->ps.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + */ + + + + // gi.dprintf ("frame: %d\n", ent->client->ps.gunframe); +} diff --git a/gamesrc/P_client.c b/gamesrc/P_client.c new file mode 100644 index 0000000..ab3d915 --- /dev/null +++ b/gamesrc/P_client.c @@ -0,0 +1,3186 @@ + +#include "g_local.h" +#include "m_player.h" + +void ClientUserinfoChanged (edict_t *ent, char *userinfo); + +void SP_misc_teleporter_dest (edict_t *ent); + +// +// Gross, ugly, disgustuing hack section +// + +// this function is an ugly as hell hack to fix some map flaws +// +// the coop spawn spots on some maps are SNAFU. There are coop spots +// with the wrong targetname as well as spots with no name at all +// +// we use carnal knowledge of the maps to fix the coop spot targetnames to match +// that of the nearest named single player spot + +static void SP_FixCoopSpots (edict_t *self) +{ + edict_t *spot; + vec3_t d; + + spot = NULL; + + while(1) + { + spot = G_Find(spot, FOFS(classname), "info_player_start"); + if (!spot) + return; + if (!spot->targetname) + continue; + VectorSubtract(self->s.origin, spot->s.origin, d); + if (VectorLength(d) < 384) + { + if ((!self->targetname) || stricmp(self->targetname, spot->targetname) != 0) + { +// gi.dprintf("FixCoopSpots changed %s at %s targetname from %s to %s\n", self->classname, vtos(self->s.origin), self->targetname, spot->targetname); + self->targetname = spot->targetname; + } + return; + } + } +} + +// now if that one wasn't ugly enough for you then try this one on for size +// some maps don't have any coop spots at all, so we need to create them +// where they should have been + +static void SP_CreateCoopSpots (edict_t *self) +{ + edict_t *spot; + + if(stricmp(level.mapname, "security") == 0) + { + spot = G_Spawn(); + spot->classname = "info_player_coop"; + spot->s.origin[0] = 188 - 64; + spot->s.origin[1] = -164; + spot->s.origin[2] = 80; + spot->targetname = "jail3"; + spot->s.angles[1] = 90; + + spot = G_Spawn(); + spot->classname = "info_player_coop"; + spot->s.origin[0] = 188 + 64; + spot->s.origin[1] = -164; + spot->s.origin[2] = 80; + spot->targetname = "jail3"; + spot->s.angles[1] = 90; + + spot = G_Spawn(); + spot->classname = "info_player_coop"; + spot->s.origin[0] = 188 + 128; + spot->s.origin[1] = -164; + spot->s.origin[2] = 80; + spot->targetname = "jail3"; + spot->s.angles[1] = 90; + + return; + } +} + + +/*QUAKED info_player_start (1 0 0) (-16 -16 -24) (16 16 48) +The normal starting point for a level. +*/ +void SP_info_player_start(edict_t *self) +{ + + extern void Show_Help (void); + + if (!(deathmatch->value)) + { + if ( !strcmp(level.mapname, "sr1") + || !strcmp(level.mapname, "pv_h") + || !strcmp(level.mapname, "sy_h") + || !strcmp(level.mapname, "steel1") + || !strcmp(level.mapname, "ty1") + || !strcmp(level.mapname, "rc1") ) + Show_Help (); + } + + if (!coop->value) + return; + if(stricmp(level.mapname, "security") == 0) + { + // invoke one of our gross, ugly, disgusting hacks + self->think = SP_CreateCoopSpots; + self->nextthink = level.time + FRAMETIME; + } +} + +/*QUAKED info_player_deathmatch (1 0 1) (-16 -16 -24) (16 16 48) +potential spawning position for deathmatch games + + style - team # for Teamplay (1 or 2) +*/ +void SP_info_player_deathmatch(edict_t *self) +{ + if (!deathmatch->value) + { + G_FreeEdict (self); + return; + } +// SP_misc_teleporter_dest (self); +} + +/*QUAKED info_player_coop (1 0 1) (-16 -16 -24) (16 16 48) +potential spawning position for coop games +*/ + +void SP_info_player_coop(edict_t *self) +{ +/* + if (!coop->value) + { + G_FreeEdict (self); + return; + } + + if((stricmp(level.mapname, "jail2") == 0) || + (stricmp(level.mapname, "jail4") == 0) || + (stricmp(level.mapname, "mine1") == 0) || + (stricmp(level.mapname, "mine2") == 0) || + (stricmp(level.mapname, "mine3") == 0) || + (stricmp(level.mapname, "mine4") == 0) || + (stricmp(level.mapname, "lab") == 0) || + (stricmp(level.mapname, "boss1") == 0) || + (stricmp(level.mapname, "fact3") == 0) || + (stricmp(level.mapname, "biggun") == 0) || + (stricmp(level.mapname, "space") == 0) || + (stricmp(level.mapname, "command") == 0) || + (stricmp(level.mapname, "power2") == 0) || + (stricmp(level.mapname, "strike") == 0)) + { + // invoke one of our gross, ugly, disgusting hacks + self->think = SP_FixCoopSpots; + self->nextthink = level.time + FRAMETIME; + } +*/ +} + + +/*QUAKED info_player_intermission (1 0 1) (-16 -16 -24) (16 16 32) +The deathmatch intermission point will be at one of these +Use 'angles' instead of 'angle', so you can set pitch or roll as well as yaw. 'pitch yaw roll' +*/ +void SP_info_player_intermission(void) +{ +} + + +//======================================================================= + + +void player_pain (edict_t *self, edict_t *other, float kick, int damage, int mdx_part, int mdx_subobject) +{ + // player pain is handled at the end of the frame in P_DamageFeedback +} + + +qboolean IsFemale (edict_t *ent) +{ +// char *info; + + if (!ent->client) + return false; + + if (ent->gender == GENDER_FEMALE) + return true; +/* + info = Info_ValueForKey (ent->client->pers.userinfo, "gender"); + if (info[0] == 'f' || info[0] == 'F') + return true; +*/ + return false; +} + +qboolean IsNeutral (edict_t *ent) +{ +// char *info; + + if (!ent->client) + return false; + + if (ent->gender == GENDER_NONE) + return true; +/* + info = Info_ValueForKey (ent->client->pers.userinfo, "gender"); + if (info[0] != 'f' && info[0] != 'F' && info[0] != 'm' && info[0] != 'M') + return true; +*/ + return false; +} + +void ClientObituary (edict_t *self, edict_t *inflictor, edict_t *attacker) +{ + int mod; + char *message; + char *message2; + qboolean ff; + + if (coop->value && attacker->client) + meansOfDeath |= MOD_FRIENDLY_FIRE; + + if (deathmatch->value || coop->value) + { + ff = meansOfDeath & MOD_FRIENDLY_FIRE; + mod = meansOfDeath & ~MOD_FRIENDLY_FIRE; + message = NULL; + message2 = ""; + + // in realmode, track deaths + if (dm_realmode->value && !teamplay->value) + self->client->resp.deposited++; + + switch (mod) + { + case MOD_SUICIDE: + message = "suicides"; + break; + case MOD_FALLING: + message = "cratered"; + break; + case MOD_CRUSH: + message = "was squished"; + break; + case MOD_WATER: + message = "sank like a rock"; + break; + case MOD_SLIME: + message = "melted"; + break; + case MOD_LAVA: + message = "does a back flip into the lava"; + break; + case MOD_EXPLOSIVE: + case MOD_BARREL: + message = "blew up"; + break; + case MOD_EXIT: + message = "found a way out"; + break; + case MOD_TARGET_LASER: + message = "saw the light"; + break; + case MOD_TARGET_BLASTER: + message = "got blasted"; + break; + case MOD_BOMB: + case MOD_SPLASH: + case MOD_TRIGGER_HURT: + message = "was in the wrong place"; + break; + // RAFAEL + case MOD_GEKK: + case MOD_BRAINTENTACLE: + message = "that's gotta hurt"; + break; + } + if (attacker == self) + { + switch (mod) + { + case MOD_HELD_GRENADE: + message = "tried to put the pin back in"; + break; + case MOD_HG_SPLASH: + case MOD_G_SPLASH: + if (IsNeutral(self)) + message = "tripped on its own grenade"; + else if (IsFemale(self)) + message = "tripped on her own grenade"; + else + message = "tripped on his own grenade"; + break; + case MOD_R_SPLASH: + if (IsNeutral(self)) + message = "blew itself up"; + else if (IsFemale(self)) + message = "blew herself up"; + else + message = "blew himself up"; + break; + case MOD_BFG_BLAST: + message = "should have used a smaller gun"; + break; + // RAFAEL 03-MAY-98 + case MOD_TRAP: + message = "sucked into his own trap"; + break; + default: + if (IsNeutral(self)) + message = "killed itself"; + else if (IsFemale(self)) + message = "killed herself"; + else + message = "killed himself"; + break; + } + } + if (message) + { + gi.bprintf (PRINT_MEDIUM, "%s %s.\n", self->client->pers.netname, message); + if (deathmatch->value) + { + self->client->resp.score--; + + if ((int)teamplay->value == TM_GANGBANG) + team_cash[self->client->pers.team]--; + } + self->enemy = NULL; + return; + } + + self->enemy = attacker; + if (attacker && attacker->client) + { + switch (mod) + { + case MOD_BLACKJACK: + message = "was mashed by"; + break; + case MOD_CROWBAR: + message = "was severely dented by"; + break; + case MOD_PISTOL: + message = "was busted by"; + message2 = "'s cap"; + break; + case MOD_SILENCER: + message = "was silenced by"; + break; + case MOD_SHOTGUN: + message = "accepted"; + message2 = "'s load"; + break; + case MOD_MACHINEGUN: + message = "bows to"; + message2 = "'s Tommygun"; + break; + case MOD_FLAMETHROWER: + message = "roasted in"; + message2 = "'s torch"; + break; + case MOD_GRENADE: + message = "fumbled"; + message2 = "'s grenade"; + break; + case MOD_G_SPLASH: + message = "was mortally wounded by"; + message2 = "'s shrapnel"; + break; + case MOD_ROCKET: + message = "was minced by"; + message2 = "'s rocket"; + break; + case MOD_R_SPLASH: + message = "couldn't escape"; + message2 = "'s blast"; + break; + case MOD_TELEFRAG: + message = "couldn't co-exist with"; + message2 = ""; + break; + // JOSEPH 16-APR-99 + case MOD_BARMACHINEGUN: + message = "was maimed by"; + message2 = "'s H.M.G."; + // END JOSEPH + } + if (message) + { + gi.bprintf (PRINT_MEDIUM,"%s %s %s%s\n", self->client->pers.netname, message, attacker->client->pers.netname, message2); + if (deathmatch->value) + { + if (ff) + { + attacker->client->resp.score--; + + if ((int)teamplay->value == TM_GANGBANG) + team_cash[attacker->client->pers.team]--; + } + else + { + attacker->client->resp.score++; + + if ((int)teamplay->value == TM_GANGBANG) + team_cash[attacker->client->pers.team]++; + } + } + return; + } + } + } + + gi.bprintf (PRINT_MEDIUM,"%s died.\n", self->client->pers.netname); + if (deathmatch->value) + { + self->client->resp.score--; + + if ((int)teamplay->value == TM_GANGBANG) + team_cash[self->client->pers.team]--; + } +} + + +void Touch_Item (edict_t *ent, edict_t *other, cplane_t *plane, csurface_t *surf); + +void TossClientWeapon (edict_t *self) +{ + gitem_t *item; + edict_t *drop; + qboolean quad; + // RAFAEL + qboolean quadfire; + float spread; + + if (!deathmatch->value) + return; + + item = self->client->pers.weapon; + if (! self->client->pers.inventory[self->client->ammo_index] ) + item = NULL; + if (item && (strcmp (item->pickup_name, "Blaster") == 0)) + item = NULL; + +// if (!((int)(dmflags->value) & DF_QUAD_DROP)) + quad = false; +// else +// quad = (self->client->quad_framenum > (level.framenum + 10)); + + // RAFAEL +// if (!((int)(dmflags->value) & DF_QUADFIRE_DROP)) + quadfire = false; +// else +// quadfire = (self->client->quadfire_framenum > (level.framenum + 10)); + + + if (item && quad) + spread = 22.5; + else if (item && quadfire) + spread = 12.5; + else + spread = 0.0; + + if (item) + { + self->client->v_angle[YAW] -= spread; + drop = Drop_Item (self, item); + self->client->v_angle[YAW] += spread; + drop->spawnflags = DROPPED_PLAYER_ITEM; + } + + if (quad) + { + self->client->v_angle[YAW] += spread; + drop = Drop_Item (self, FindItemByClassname ("item_quad")); + self->client->v_angle[YAW] -= spread; + drop->spawnflags |= DROPPED_PLAYER_ITEM; + + drop->touch = Touch_Item; + drop->nextthink = level.time + (self->client->quad_framenum - level.framenum) * FRAMETIME; + drop->think = G_FreeEdict; + } + + // RAFAEL + if (quadfire) + { + self->client->v_angle[YAW] += spread; + drop = Drop_Item (self, FindItemByClassname ("item_quadfire")); + self->client->v_angle[YAW] -= spread; + drop->spawnflags |= DROPPED_PLAYER_ITEM; + + drop->touch = Touch_Item; + drop->nextthink = level.time + (self->client->quadfire_framenum - level.framenum) * FRAMETIME; + drop->think = G_FreeEdict; + } +} + + +/* +================== +LookAtKiller +================== +*/ +void LookAtKiller (edict_t *self, edict_t *inflictor, edict_t *attacker) +{ + vec3_t dir; + + if (attacker && attacker != world && attacker != self) + { + VectorSubtract (attacker->s.origin, self->s.origin, dir); + } + else if (inflictor && inflictor != world && inflictor != self) + { + VectorSubtract (inflictor->s.origin, self->s.origin, dir); + } + else + { + self->client->killer_yaw = self->s.angles[YAW]; + return; + } + + self->client->killer_yaw = 180/M_PI*atan2(dir[1], dir[0]); +} + +/* +================== +player_die +================== +*/ +extern void VelocityForDamage (int damage, vec3_t v); + +void player_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + int n; + + VectorClear (self->avelocity); + + self->takedamage = DAMAGE_YES; + self->movetype = MOVETYPE_TOSS; + +// self->s.modelindex2 = 0; // remove linked weapon model + self->s.model_parts[PART_GUN].modelindex = 0; + + self->s.renderfx2 &= ~RF2_FLAMETHROWER; + self->s.renderfx2 &= ~RF2_MONEYBAG; + + self->s.angles[0] = 0; + self->s.angles[2] = 0; + + self->s.sound = 0; + self->client->weapon_sound = 0; + + self->maxs[2] = -8; + +// self->solid = SOLID_NOT; + self->svflags |= SVF_DEADMONSTER; + + if (!self->deadflag && (self->health + damage > 0)) + { + self->client->respawn_time = level.time + 1.0; + LookAtKiller (self, inflictor, attacker); + self->client->ps.pmove.pm_type = PM_DEAD; + ClientObituary (self, inflictor, attacker); + TossClientWeapon (self); + if (deathmatch->value) + Cmd_Help_f (self, 0); // show scores + + // clear inventory + // this is kind of ugly, but it's how we want to handle keys in coop + for (n = 0; n < game.num_items; n++) + { + if (coop->value && itemlist[n].flags & IT_KEY) + self->client->resp.coop_respawn.inventory[n] = self->client->pers.inventory[n]; + self->client->pers.inventory[n] = 0; + } + + // yell at us? + if (rand()%6 == 0 && attacker->last_talk_time < (level.time - TALK_FIGHTING_DELAY)) + { + #define F_NUM_FIGHTING 8 + #define NUM_FIGHTING 10 + extern voice_table_t f_fightsounds[]; + extern voice_table_t fightsounds[]; + + if (attacker->gender == GENDER_MALE) + Voice_Random(attacker, self, fightsounds, NUM_FIGHTING); + else if (attacker->gender == GENDER_FEMALE) + Voice_Random(attacker, self, f_fightsounds, F_NUM_FIGHTING); + } + + // drop cash if we have some + if (deathmatch->value && (self != attacker) && (!self->client->pers.friendly_vulnerable)) + { + edict_t *cash; + + // always drop at least 10 bucks, to reward the killer + if (teamplay->value && (teamplay_mode != TM_GANGBANG) && (attacker->client) && (attacker->client->pers.team != self->client->pers.team)) + { + if (self->client->pers.currentcash < MAX_CASH_PLAYER) + { + self->client->pers.currentcash += 10; + } + + if (self->client->pers.bagcash < MAX_BAGCASH_PLAYER) + { + // if they were killed in the enemy base, reward them with some extra cash + cash = NULL; + while (cash = G_Find( cash, FOFS(classname), "dm_safebag" )) + { + if (cash->style != self->client->pers.team) + { + if ( gi.inPHS( cash->s.origin, self->s.origin ) + || (VectorDistance( cash->s.origin, self->s.origin ) < 512)) + self->client->pers.bagcash += 30; + + if (self->client->pers.bagcash > MAX_BAGCASH_PLAYER) + self->client->pers.bagcash = MAX_BAGCASH_PLAYER; + + break; + } + } + } + } + + if (self->client->pers.currentcash) + { + cash = SpawnTheWeapon( self, "item_cashroll" ); + cash->currentcash = self->client->pers.currentcash; + self->client->pers.currentcash = 0; + + cash->velocity[0] = crandom() * 100; + cash->velocity[1] = crandom() * 100; + cash->velocity[2] = 0; + + VectorNormalize( cash->velocity ); + VectorScale( cash->velocity, 100, cash->velocity ); + cash->velocity[2] = 300; + } + + if (self->client->pers.bagcash) + { + if (self->client->pers.bagcash > 100) + cash = SpawnTheWeapon( self, "item_cashbaglarge" ); + else + cash = SpawnTheWeapon( self, "item_cashbagsmall" ); + + cash->nextthink = level.time + 120; + + cash->currentcash = -self->client->pers.bagcash; + self->client->pers.bagcash = 0; + + cash->velocity[0] = crandom() * 100; + cash->velocity[1] = crandom() * 100; + cash->velocity[2] = 0; + + VectorNormalize( cash->velocity ); + VectorScale( cash->velocity, 100, cash->velocity ); + cash->velocity[2] = 300; + } + } + + } + + // remove powerups + self->client->quad_framenum = 0; + self->client->invincible_framenum = 0; + self->client->breather_framenum = 0; + self->client->enviro_framenum = 0; + self->flags &= ~FL_POWER_ARMOR; + + // RAFAEL + self->client->quadfire_framenum = 0; + +// Ridah + self->moveout_ent = NULL; +// done. + + self->s.renderfx2 = 0; + + if (damage >= 50 && self->health < -30 && !inflictor->client) + { // gib + GibEntity( self, inflictor, damage ); + self->s.renderfx2 |= RF2_ONLY_PARENTAL_LOCKED; + } + + { // normal death + if (!self->deadflag) + { + static int i; + + i = (i+1)%4; + // start a death animation + self->client->anim_priority = ANIM_DEATH; + if (self->client->ps.pmove.pm_flags & PMF_DUCKED) + { + self->s.frame = FRAME_crouch_death_01-1; + self->client->anim_end = FRAME_crouch_death_12; + } + else switch (i) + { + case 0: + self->s.frame = FRAME_death1_01-1; + self->client->anim_end = FRAME_death1_19; + break; + case 1: + self->s.frame = FRAME_death2_01-1; + self->client->anim_end = FRAME_death2_16; + break; + case 2: + self->s.frame = FRAME_death3_01-1; + self->client->anim_end = FRAME_death3_28; + break; + default: + self->s.frame = FRAME_death4_01-1; + self->client->anim_end = FRAME_death4_13; + break; + } + gi.sound (self, CHAN_VOICE, gi.soundindex(va("*death%i.wav", (rand()%4)+1)), 1, ATTN_NORM, 0); + } + } + + self->deadflag = DEAD_DEAD; + + gi.linkentity (self); +} + +//======================================================================= + +/* +============== +InitClientPersistant + +This is only called when the game first initializes in single player, +but is called after each death and level change in deathmatch +============== +*/ +extern void AutoLoadWeapon( gclient_t *client, gitem_t *weapon, gitem_t *ammo ); + +void InitClientPersistant (gclient_t *client) +{ + gitem_t *item, *ammo; + int team; // save team + + if (deathmatch->value && teamplay->value) + team = client->pers.team; + + memset (&client->pers, 0, sizeof(client->pers)); + + if (deathmatch->value && teamplay->value) + client->pers.team = team; + + // JOSEPH 5-FEB-99-B + item = FindItem("Pipe"); + // END JOSEPH + client->pers.selected_item = ITEM_INDEX(item); + client->pers.inventory[client->pers.selected_item] = 1; + + // Ridah, start with Pistol in deathmatch + if (deathmatch->value) + { + item = FindItem("pistol"); + client->pers.selected_item = ITEM_INDEX(item); + client->pers.inventory[client->pers.selected_item] = 1; + + client->ammo_index = ITEM_INDEX(FindItem(item->ammo)); + client->pers.inventory[client->ammo_index] = 50; + + client->pers.weapon = item; + + // Ridah, start with the pistol loaded + ammo = FindItem (item->ammo); + + AutoLoadWeapon( client, item, ammo ); + } + else // start holstered in single player + { + client->pers.holsteredweapon = item; + client->pers.weapon = NULL; + } + + + client->pers.health = 100; + client->pers.max_health = 100; + + client->pers.max_bullets = 200; + client->pers.max_shells = 100; + client->pers.max_rockets = 25; + client->pers.max_grenades = 12; + client->pers.max_cells = 200; + client->pers.max_slugs = 90; + + // RAFAEL + client->pers.max_magslug = 50; + client->pers.max_trap = 5; + + client->pers.connected = true; +} + + +void InitClientResp (gclient_t *client) +{ + memset (&client->resp, 0, sizeof(client->resp)); + client->resp.enterframe = level.framenum; + client->resp.coop_respawn = client->pers; +} + +/* +================== +SaveClientData + +Some information that should be persistant, like health, +is still stored in the edict structure, so it needs to +be mirrored out to the client structure before all the +edicts are wiped. +================== +*/ +void SaveClientData (void) +{ + int i; + edict_t *ent; + + for (i=0 ; iinuse) + continue; + game.clients[i].pers.health = ent->health; + game.clients[i].pers.max_health = ent->max_health; + game.clients[i].pers.savedFlags = (ent->flags & (FL_GODMODE|FL_NOTARGET|FL_POWER_ARMOR)); + if (coop->value) + game.clients[i].pers.score = ent->client->resp.score; + } +} + +void FetchClientEntData (edict_t *ent) +{ + ent->health = ent->client->pers.health; + ent->max_health = ent->client->pers.max_health; + ent->flags |= ent->client->pers.savedFlags; + if (coop->value) + ent->client->resp.score = ent->client->pers.score; +} + + + +/* +======================================================================= + + SelectSpawnPoint + +======================================================================= +*/ + +/* +================ +PlayersRangeFromSpot + +Returns the distance to the nearest player from the given spot +================ +*/ +float PlayersRangeFromSpot (edict_t *spot) +{ + edict_t *player; + float bestplayerdistance; + vec3_t v; + int n; + float playerdistance; + + + bestplayerdistance = 9999; + + for (n = 1; n <= maxclients->value; n++) + { + player = &g_edicts[n]; + + if (!player->inuse) + continue; + + if (player->health <= 0) + continue; + + VectorSubtract (spot->s.origin, player->s.origin, v); + playerdistance = VectorLength (v); + + if (playerdistance < bestplayerdistance) + bestplayerdistance = playerdistance; + } + + return bestplayerdistance; +} + +/* +================ +SelectRandomDeathmatchSpawnPoint + +go to a random point, but NOT the two points closest +to other players +================ +*/ +edict_t *SelectRandomDeathmatchSpawnPoint (edict_t *ent) +{ + edict_t *spot, *spot1, *spot2; + int count = 0; + int selection; + float range, range1, range2; + + spot = NULL; + range1 = range2 = 99999; + spot1 = spot2 = NULL; + + while ((spot = G_Find (spot, FOFS(classname), "info_player_deathmatch")) != NULL) + { + count++; + range = PlayersRangeFromSpot(spot); + if (range < range1) + { + range1 = range; + spot1 = spot; + } + else if (range < range2) + { + range2 = range; + spot2 = spot; + } + } + + if (!count) + return NULL; + + if (count <= 2) + { + spot1 = spot2 = NULL; + } + else + count -= 2; + + selection = rand() % count; + + spot = NULL; + do + { + spot = G_Find (spot, FOFS(classname), "info_player_deathmatch"); + if (spot == spot1 || spot == spot2) + selection++; + } while(selection--); + + return spot; +} + +/* +================ +SelectFarthestDeathmatchSpawnPoint + +================ +*/ +edict_t *SelectFarthestDeathmatchSpawnPoint (edict_t *ent, qboolean team_spawnbase) +{ + edict_t *bestspot; + float bestdistance, bestplayerdistance; + edict_t *spot; + qboolean ignoreteams = false; + +spotagain: + + spot = NULL; + bestspot = NULL; + bestdistance = 0; + while ((spot = G_Find (spot, FOFS(classname), "info_player_deathmatch")) != NULL) + { + // Teamplay, don't go here if it's not in our base + if ( teamplay->value && ent->client->pers.team + && spot->style && spot->style != ent->client->pers.team) // Never spawn in the enemy base + { + continue; + } + + if (!ignoreteams && teamplay->value && ent->client->pers.team + && ((ent->client->resp.enterframe == level.framenum) || team_spawnbase)) + { + if (spot->style != ent->client->pers.team) + continue; + } + else if (spot->style) + { + continue; // ignore team spawns if not in a team + } + // teamplay, done. + + bestplayerdistance = PlayersRangeFromSpot (spot); + + if (bestplayerdistance > bestdistance) + { + bestspot = spot; + bestdistance = bestplayerdistance; + } + + } + + if (bestspot) + { + return bestspot; + } + else if (teamplay->value && ent->client->pers.team && !ignoreteams) + { + ignoreteams = true; + goto spotagain; + } + + // if there is a player just spawned on each and every start spot + // we have no choice to turn one into a telefrag meltdown + spot = G_Find (NULL, FOFS(classname), "info_player_deathmatch"); + + return spot; +} + +edict_t *SelectDeathmatchSpawnPoint (edict_t *ent) +{ + // Ridah, in teamplay, spawn at base + if (teamplay->value && ent->client->pers.team) + return SelectFarthestDeathmatchSpawnPoint (ent, (rand()%10 < 3)); + else if ( (int)(dmflags->value) & DF_SPAWN_FARTHEST) + return SelectFarthestDeathmatchSpawnPoint (ent, false); + else + return SelectRandomDeathmatchSpawnPoint (ent); +} + + +edict_t *SelectCoopSpawnPoint (edict_t *ent) +{ + int index; + edict_t *spot = NULL; + char *target; + + index = ent->client - game.clients; + + // player 0 starts in normal player spawn point + if (!index) + return NULL; + + spot = NULL; + + // assume there are four coop spots at each spawnpoint + while (1) + { + spot = G_Find (spot, FOFS(classname), "info_player_coop"); + if (!spot) + return NULL; // we didn't have enough... + + target = spot->targetname; + if (!target) + target = ""; + if ( Q_stricmp(game.spawnpoint, target) == 0 ) + { // this is a coop spawn point for one of the clients here + index--; + if (!index) + return spot; // this is it + } + } + + + return spot; +} + + +/* +=========== +SelectSpawnPoint + +Chooses a player start, deathmatch start, coop start, etc +============ +*/ +void SelectSpawnPoint (edict_t *ent, vec3_t origin, vec3_t angles) +{ + edict_t *spot = NULL; + + if (deathmatch->value) + spot = SelectDeathmatchSpawnPoint (ent); + else if (coop->value) + spot = SelectCoopSpawnPoint (ent); + + // find a single player start spot + if (!spot) + { + while ((spot = G_Find (spot, FOFS(classname), "info_player_start")) != NULL) + { + if (!game.spawnpoint[0] && !spot->targetname) + break; + + if (!game.spawnpoint[0] || !spot->targetname) + continue; + + if (Q_stricmp(game.spawnpoint, spot->targetname) == 0) + break; + } + + if (!spot) + { + if (!game.spawnpoint[0]) + { // there wasn't a spawnpoint without a target, so use any + spot = G_Find (spot, FOFS(classname), "info_player_start"); + } + if (!spot) + gi.error ("Couldn't find spawn point %s\n", game.spawnpoint); + } + } + + VectorCopy (spot->s.origin, origin); + origin[2] += 9; + VectorCopy (spot->s.angles, angles); +} + +//====================================================================== + + +void InitBodyQue (void) +{ + int i; + edict_t *ent; + + level.body_que = 0; + for (i=0; iclassname = "bodyque"; + } +} + +void body_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ +// int n; + + if (damage > 50) + { + // send the client-side gib message + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_GIBS); + gi.WritePosition (self->s.origin); + gi.WriteDir (vec3_origin); + gi.WriteByte ( 20 ); // number of gibs + gi.WriteByte ( 0 ); // scale of direction to add to velocity + gi.WriteByte ( 16 ); // random offset scale + gi.WriteByte ( 200 ); // random velocity scale + gi.multicast (self->s.origin, MULTICAST_PVS); + + self->s.origin[2] -= 48; + ThrowClientHead (self, damage); + self->takedamage = DAMAGE_NO; + } +} + +void HideBody( edict_t *ent ) +{ +// ent->svflags |= SVF_NOCLIENT; + ent->s.effects &= ~EF_FLAMETHROWER; +} + +void Body_Animate( edict_t *ent ) +{ + ent->s.frame++; + + if (ent->s.frame >= ent->cal) + { + ent->s.frame = ent->cal; + } + + // sink into ground + if ((ent->timestamp < (level.time - 5)) && ((int)(10.0*level.time) & 1)) + { + ent->s.origin[2] -= 0.5; + + if (ent->s.origin[2] + 24 < ent->take_cover_time) + { + // done with this body + ent->svflags |= SVF_NOCLIENT; + return; + } + } + + ent->nextthink = level.time + 0.1; +} + +void CopyToBodyQue (edict_t *ent) +{ + edict_t *body; + + // grab a body que and cycle to the next one + body = &g_edicts[(int)maxclients->value + level.body_que + 1]; + level.body_que = (level.body_que + 1) % BODY_QUEUE_SIZE; + + // FIXME: send an effect on the removed body + + gi.unlinkentity (ent); + + gi.unlinkentity (body); + body->s = ent->s; + body->s.number = body - g_edicts; + + body->cal = ent->client->anim_end; + + body->svflags = ent->svflags; +// VectorCopy (ent->mins, body->mins); +// VectorCopy (ent->maxs, body->maxs); + + VectorSet (body->mins, -64, -64, -24); + VectorSet (body->maxs, 64, 64, -4); + + VectorCopy (ent->absmin, body->absmin); + VectorCopy (ent->absmax, body->absmax); + VectorCopy (ent->size, body->size); + body->solid = ent->solid; + body->clipmask = ent->clipmask; + body->owner = ent->owner; + body->movetype = ent->movetype; + + body->svflags &= ~SVF_NOCLIENT; + + // Ridah so we can shoot the body + body->svflags |= (SVF_MONSTER | SVF_DEADMONSTER); + + body->cast_info.scale = 1.0; + + body->s.renderfx = 0; + body->s.renderfx2 = (ent->s.renderfx2 & RF2_ONLY_PARENTAL_LOCKED); + body->s.renderfx2 |= RF2_NOSHADOW; + body->s.effects = 0; + body->s.angles[PITCH] = 0; + + body->gender = ent->gender; + body->deadflag = ent->deadflag; + + body->die = body_die; + body->takedamage = DAMAGE_YES; + + body->take_cover_time = body->s.origin[2]; + body->timestamp = level.time; + +// body->think = HideBody; +// body->nextthink = level.time + 30; + body->think = Body_Animate; + body->nextthink = level.time + 0.1; + + gi.linkentity (body); +} + + +void respawn (edict_t *self) +{ + if (deathmatch->value || coop->value) + { + // make sure on the last death frame +// self->s.frame = self->client->anim_end; + + CopyToBodyQue (self); + PutClientInServer (self); + + // add a teleportation effect + self->s.event = EV_PLAYER_TELEPORT; + + // hold in place briefly + self->client->ps.pmove.pm_flags = PMF_TIME_TELEPORT; + self->client->ps.pmove.pm_time = 14; + + self->client->respawn_time = level.time; + + return; + } + + // restart the entire server + gi.AddCommandString ("menu_loadgame\n"); +} + +//============================================================== + + +/* +=========== +PutClientInServer + +Called when a player connects to a server or respawns in +a deathmatch. +============ +*/ +void PutClientInServer (edict_t *ent) +{ + vec3_t mins = {-16, -16, -24}; + vec3_t maxs = {16, 16, 48}; + int index; + vec3_t spawn_origin, spawn_angles; + gclient_t *client; + int i; + client_persistant_t saved; + client_respawn_t resp; + + // find a spawn point + // do it before setting health back up, so farthest + // ranging doesn't count this client + SelectSpawnPoint (ent, spawn_origin, spawn_angles); + + index = ent-g_edicts-1; + client = ent->client; + + // deathmatch wipes most client data every spawn + if (deathmatch->value) + { + char userinfo[MAX_INFO_STRING]; + + resp = client->resp; + memcpy (userinfo, client->pers.userinfo, sizeof(userinfo)); + InitClientPersistant (client); + ClientUserinfoChanged (ent, userinfo); + } +/* + else if (coop->value) + { +// int n; + char userinfo[MAX_INFO_STRING]; + + resp = client->resp; + memcpy (userinfo, client->pers.userinfo, sizeof(userinfo)); + // this is kind of ugly, but it's how we want to handle keys in coop +// for (n = 0; n < game.num_items; n++) +// { +// if (itemlist[n].flags & IT_KEY) +// resp.coop_respawn.inventory[n] = client->pers.inventory[n]; +// } + resp.coop_respawn.game_helpchanged = client->pers.game_helpchanged; + resp.coop_respawn.helpchanged = client->pers.helpchanged; + client->pers = resp.coop_respawn; + ClientUserinfoChanged (ent, userinfo); + if (resp.score > client->pers.score) + client->pers.score = resp.score; + } +*/ + else + { +// for (i=0; iname_index = -1; + + // clear everything but the persistant data + saved = client->pers; + memset (client, 0, sizeof(*client)); + client->pers = saved; + if (client->pers.health <= 0) + InitClientPersistant(client); + client->resp = resp; + + // copy some data from the client to the entity + FetchClientEntData (ent); + + // clear entity values + ent->groundentity = NULL; + ent->client = &game.clients[index]; + ent->takedamage = DAMAGE_AIM; + ent->movetype = MOVETYPE_WALK; + + // RAFAEL + ent->viewheight = 40; + + ent->inuse = true; + ent->classname = "player"; + ent->mass = 200; + ent->solid = SOLID_BBOX; + ent->deadflag = DEAD_NO; + ent->air_finished = level.time + 12; + ent->clipmask = MASK_PLAYERSOLID; +// ent->model = "players/male/tris.md2"; + ent->pain = player_pain; + ent->die = player_die; + ent->waterlevel = 0; + ent->watertype = 0; + ent->flags &= ~FL_NO_KNOCKBACK; + ent->svflags &= ~(SVF_DEADMONSTER|SVF_NOCLIENT); + + ent->s.renderfx2 = 0; + ent->onfiretime = 0; + + ent->cast_info.aiflags |= AI_GOAL_RUN; // make AI run towards us if in pursuit + + VectorCopy (mins, ent->mins); + VectorCopy (maxs, ent->maxs); + VectorClear (ent->velocity); + + ent->cast_info.standing_max_z = ent->maxs[2]; + + ent->cast_info.scale = MODEL_SCALE; + ent->s.scale = ent->cast_info.scale - 1.0; + + // clear playerstate values + memset (&ent->client->ps, 0, sizeof(client->ps)); + + client->ps.pmove.origin[0] = spawn_origin[0]*8; + client->ps.pmove.origin[1] = spawn_origin[1]*8; + client->ps.pmove.origin[2] = spawn_origin[2]*8; + + if (deathmatch->value && ((int)dmflags->value & DF_FIXED_FOV)) + { + client->ps.fov = 90; + } + else + { + client->ps.fov = atoi(Info_ValueForKey(client->pers.userinfo, "fov")); + if (client->ps.fov < 1) + client->ps.fov = 90; + else if (client->ps.fov > 160) + client->ps.fov = 160; + } + + // RAFAEL + // weapon mdx + { + int i; + + memset(&(client->ps.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + client->ps.num_parts++; + // JOSEPH 22-JAN-99 + if (client->pers.weapon) + client->ps.model_parts[PART_HEAD].modelindex = gi.modelindex(client->pers.weapon->view_model); + + for (i=0; ips.model_parts[PART_HEAD].skinnum[i] = 0; // will we have more than one skin??? + } + + if (client->pers.weapon) + client->ps.gunindex = gi.modelindex(client->pers.weapon->view_model); + // END JOSEPH + + // clear entity state values + ent->s.effects = 0; + ent->s.skinnum = ent - g_edicts - 1; + ent->s.modelindex = 255; // will use the skin specified model +// ent->s.modelindex2 = 255; // custom gun model + ent->s.frame = 0; + VectorCopy (spawn_origin, ent->s.origin); + ent->s.origin[2] += 1; // make sure off ground + VectorCopy (ent->s.origin, ent->s.old_origin); + +// bikestuff +ent->biketime = 0; +ent->bikestate = 0; + +// JOSEPH 29-MAR-99 +//gi.soundindex ("vehicles/motorcycle/idle.wav"); +// gi.soundindex ("motorcycle/running.wav"); +//gi.soundindex ("vehicles/motorcycle/decel.wav"); +//gi.soundindex ("vehicles/motorcycle/accel1.wav"); +//gi.soundindex ("vehicles/motorcycle/accel2.wav"); +//gi.soundindex ("vehicles/motorcycle/accel3.wav"); +//gi.soundindex ("vehicles/motorcycle/accel4.wav"); +// END JOSEPH + + +// Ridah, Hovercars + if (g_vehicle_test->value) + { + if (g_vehicle_test->value == 3) + ent->s.modelindex = gi.modelindex ("models/props/moto/moto.mdx"); + else + ent->s.modelindex = gi.modelindex ("models/vehicles/cars/viper/tris_test.md2"); + +// ent->s.modelindex2 = 0; + ent->s.skinnum = 0; + ent->s.frame = 0; + + if ((int)g_vehicle_test->value == 1) + ent->flags |= FL_HOVERCAR_GROUND; + else if ((int)g_vehicle_test->value == 2) + ent->flags |= FL_HOVERCAR; + else if ((int)g_vehicle_test->value == 3) + ent->flags |= FL_BIKE; + else if ((int)g_vehicle_test->value == 4) + ent->flags |= FL_CAR; + } +// done. + + +// Ridah, not used anymore, since the frames don't match. In single player, we just enforce the thug with correct skins in UserinfoChanged() +/* + else if (!deathmatch->value) // normal fighting + { + char skinstr[16]; + int skin; + + strcpy( skinstr, "001" ); + // skinstr[2] += (char) (rand() % 6); + + // ------------------------------------------------------------------------ + // initialize all model_part data + + // ent->s.skinnum = 12; + ent->s.skinnum = 0; + + memset(&(ent->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + ent->s.num_parts++; + ent->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/punk/head.mdx"); + skin = gi.skinindex( ent->s.model_parts[PART_HEAD].modelindex, "018" ); + for (i=0; is.model_parts[PART_HEAD].baseskin = ent->s.model_parts[PART_HEAD].skinnum[i] = skin; + + ent->s.num_parts++; + ent->s.model_parts[PART_LEGS].modelindex = gi.modelindex("models/actors/punk/legs.mdx"); + skin = gi.skinindex( ent->s.model_parts[PART_LEGS].modelindex, "010" ); + for (i=0; is.model_parts[PART_LEGS].baseskin = ent->s.model_parts[PART_LEGS].skinnum[i] = skin; + + ent->s.num_parts++; + ent->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/actors/punk/body.mdx"); + skin = gi.skinindex( ent->s.model_parts[PART_BODY].modelindex, "016" ); + for (i=0; is.model_parts[PART_BODY].baseskin = ent->s.model_parts[PART_BODY].skinnum[i] = skin; + + + // ------------------------------------------------------------------------ + } +*/ + else if (dm_locational_damage->value) // deathmatch, note models must exist on server for client's to use them, but if the server has a model a client doesn't that client will see the default male model + { + char *s; + char modeldir[MAX_QPATH];//, *skins; + int len; + int did_slash; + char modelname[MAX_QPATH]; +// int skin; + + // NOTE: this is just here for collision detection, modelindex's aren't actually set + + ent->s.num_parts = 0; // so the client's setup the model for viewing + + s = Info_ValueForKey (client->pers.userinfo, "skin"); + +// skins = strstr( s, "/" ) + 1; + + // converts some characters to NULL's + len = strlen( s ); + did_slash = 0; + for (i=0; i MAX_QPATH-1) + s[MAX_QPATH-1] = '\0'; + + strcpy(modeldir, s); + + if (strlen(modeldir) < 1) + strcpy( modeldir, "male_thug" ); + + memset(&(ent->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + ent->s.num_parts++; + strcpy( modelname, "players/" ); + strcat( modelname, modeldir ); + strcat( modelname, "/head.mdx" ); + ent->s.model_parts[ent->s.num_parts-1].modelindex = 255; + gi.GetObjectBounds( modelname, &ent->s.model_parts[ent->s.num_parts-1] ); + if (!ent->s.model_parts[ent->s.num_parts-1].object_bounds[0]) + gi.GetObjectBounds( "players/male_thug/head.mdx", &ent->s.model_parts[ent->s.num_parts-1] ); + + ent->s.num_parts++; + strcpy( modelname, "players/" ); + strcat( modelname, modeldir ); + strcat( modelname, "/legs.mdx" ); + ent->s.model_parts[ent->s.num_parts-1].modelindex = 255; + gi.GetObjectBounds( modelname, &ent->s.model_parts[ent->s.num_parts-1] ); + if (!ent->s.model_parts[ent->s.num_parts-1].object_bounds[0]) + gi.GetObjectBounds( "players/male_thug/legs.mdx", &ent->s.model_parts[ent->s.num_parts-1] ); + + ent->s.num_parts++; + strcpy( modelname, "players/" ); + strcat( modelname, modeldir ); + strcat( modelname, "/body.mdx" ); + ent->s.model_parts[ent->s.num_parts-1].modelindex = 255; + gi.GetObjectBounds( modelname, &ent->s.model_parts[ent->s.num_parts-1] ); + if (!ent->s.model_parts[ent->s.num_parts-1].object_bounds[0]) + gi.GetObjectBounds( "players/male_thug/body.mdx", &ent->s.model_parts[ent->s.num_parts-1] ); + + ent->s.num_parts++; + ent->s.model_parts[PART_GUN].modelindex = 255; + } + else // make sure we can see their weapon + { + memset(&(ent->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + ent->s.model_parts[PART_GUN].modelindex = 255; + ent->s.num_parts = PART_GUN+1; // make sure old clients recieve the view weapon index + } + + // set the delta angle + for (i=0 ; i<3 ; i++) + client->ps.pmove.delta_angles[i] = ANGLE2SHORT(spawn_angles[i] - client->resp.cmd_angles[i]); + + ent->s.angles[PITCH] = 0; + ent->s.angles[YAW] = spawn_angles[YAW]; + ent->s.angles[ROLL] = 0; + VectorCopy (ent->s.angles, client->ps.viewangles); + VectorCopy (ent->s.angles, client->v_angle); + + if (!KillBox (ent)) + { // could't spawn in? + } + + gi.linkentity (ent); + + // force the current weapon up + client->newweapon = client->pers.weapon; + ChangeWeapon (ent); + +} + +/* +===================== +ClientBeginDeathmatch + +A client has just connected to the server in +deathmatch mode, so clear everything out before starting them. + + NOTE: called every level load/change in deathmatch +===================== +*/ +extern void Teamplay_AutoJoinTeam( edict_t *self ); + +void ClientBeginDeathmatch (edict_t *ent) +{ + G_InitEdict (ent); + + InitClientResp (ent->client); + + // locate ent at a spawn point + PutClientInServer (ent); + + // send effect + gi.WriteByte (svc_muzzleflash); + gi.WriteShort (ent-g_edicts); + gi.WriteByte (MZ_LOGIN); + gi.multicast (ent->s.origin, MULTICAST_PVS); + + // Teamplay: if they aren't assigned to a team, make them a spectator + if (teamplay->value) + { + if (ent->client->pers.team) + { + // so we don't KillBox() ourselves + ent->solid = SOLID_NOT; + gi.linkentity( ent ); + + if (!Teamplay_ValidateJoinTeam( ent, ent->client->pers.team )) + { + ent->client->pers.team = 0; + } + } + + if (!ent->client->pers.team) + { + if (((int)dmflags->value) & DF_AUTO_JOIN_TEAM) + { + Teamplay_AutoJoinTeam( ent ); + } + else + { + ent->movetype = MOVETYPE_NOCLIP; + ent->solid = SOLID_NOT; + ent->svflags |= SVF_NOCLIENT; + + ent->client->pers.weapon = NULL; + ent->client->showscores = true; + } + } + } + else + { + gi.bprintf (PRINT_HIGH, "%s entered the game\n", ent->client->pers.netname); + } + + // make sure all view stuff is valid + ClientEndServerFrame (ent); + + // If they're using an old version, make sure they're aware of it + if (ent->client->pers.version < 120) + { + gi.centerprintf( ent, "You are using an old version\nof Kingpin.\n\nGet the upgrade at:\n\nhttp://www.interplay.com/kingpin" ); + } +} + + +/* +=========== +ClientBegin + +called when a client has finished connecting, and is ready +to be placed into the game. This will happen every level load. +============ +*/ +extern void MoveClientToPawnoMatic (edict_t *ent); // note to Rafael, was causing an undefined warning +extern void ED_CallSpawn (edict_t *ent); + +int num_followers = 0; + +extern int client_connected; + +extern qboolean changing_levels; +extern void Cmd_HolsterBar_f (edict_t *ent); + +void ClientBegin (edict_t *ent) +{ + int i; + + client_connected = 1; + + ent->client = game.clients + (ent - g_edicts - 1); + + if (deathmatch->value) + { + ClientBeginDeathmatch (ent); + return; + } + + ent->cast_group = 1; + + // Ridah, copy the episode_flags over + ent->episode_flags = ent->client->pers.episode_flags; + + level.speaktime = 0; + + // if there is already a body waiting for us (a loadgame), just + // take it, otherwise spawn one from scratch + if (ent->inuse == true) + { + // the client has cleared the client side viewangles upon + // connecting to the server, which is different than the + // state when the game is saved, so we need to compensate + // with deltaangles + for (i=0 ; i<3 ; i++) + ent->client->ps.pmove.delta_angles[i] = ANGLE2SHORT(ent->client->ps.viewangles[i]); + } + else + { + // a spawn point will completely reinitialize the entity + // except for the persistant data that was initialized at + // ClientConnect() time + G_InitEdict (ent); + ent->classname = "player"; + InitClientResp (ent->client); + PutClientInServer (ent); + } + + if (level.intermissiontime) + { + MoveClientToIntermission (ent); + } + else if (level.cut_scene_time) + { + MoveClientToCutScene (ent); + } + else if (level.pawn_time || strstr (level.mapname, "pawn_")) + { + level.pawn_time = 1.0; + MoveClientToPawnoMatic (ent); + } + else if (strstr (level.mapname, "bar_")) + { + level.bar_lvl = true; + Cmd_HolsterBar_f (ent); + + if (level.episode == 1) + { + //ent->episode_flags |= EP_BAR_FIRST_TIME; + //ent->client->pers.episode_flags |= EP_BAR_FIRST_TIME; + EP_Skidrow_Register_EPFLAG (ent, EP_BAR_FIRST_TIME); + } + else if (level.episode == 2) + { + EP_Skidrow_Register_EPFLAG (ent, EP_PV_BAR_FIRST_TIME); + } + + } + else if (strstr(level.mapname, "office_")) + { + level.bar_lvl = true; + Cmd_HolsterBar_f (ent); + + if (level.episode == 2) + { + EP_Skidrow_Register_EPFLAG (ent, EP_PV_OFFICE_FIRST_TIME); + } + } + else + { + // send effect if in a multiplayer game + if (game.maxclients > 1) + { + gi.WriteByte (svc_muzzleflash); + gi.WriteShort (ent-g_edicts); + gi.WriteByte (MZ_LOGIN); + gi.multicast (ent->s.origin, MULTICAST_PVS); + + gi.bprintf (PRINT_HIGH, "%s entered the game\n", ent->client->pers.netname); + } + } + + // Ridah, restore any following characters + if (num_followers > 0) + { + int j, k; + follower_t *fol; + edict_t *newent, *spawnspot; + qboolean killed, fakespawn; + + if (num_followers > MAX_FOLLOWERS) + num_followers = MAX_FOLLOWERS; + + for (i=0; iclassname = gi.TagMalloc( strlen( fol->classname ) + 1, TAG_LEVEL ); + strcpy( newent->classname, fol->classname ); + + if (fol->name) + { + newent->name = gi.TagMalloc( strlen( fol->name ) + 1, TAG_LEVEL ); + strcpy( newent->name, fol->name ); + } + + if (fol->art_skins) + { + newent->art_skins = gi.TagMalloc( strlen( fol->art_skins ) + 1, TAG_LEVEL ); + strcpy( newent->art_skins, fol->art_skins ); + } + + newent->cast_info.scale = fol->scale; + newent->head = fol->head; + newent->cast_group = 1; + newent->spawnflags = fol->spawnflags; + newent->count = fol->count; + + // find a spawn spot + spawnspot = NULL; + while (1) + { + if (!(spawnspot = G_Find( spawnspot, FOFS(classname), "info_player_coop" ))) + break; + + if (VectorDistance( spawnspot->s.origin, ent->s.origin ) > 384) + continue; + + if (!ValidBoxAtLoc( spawnspot->s.origin, tv(-16, -16, -24), tv(16, 16, 48), NULL, MASK_PLAYERSOLID|CONTENTS_MONSTERCLIP )) + { + if(developer->value) + gi.dprintf( "WARNING: coop spawn in solid at: %i, %i, %i\n", (int)spawnspot->s.origin[0], (int)spawnspot->s.origin[1], (int)spawnspot->s.origin[2] ); + continue; + } + + if (!(spawnspot->spawnflags & 0x10000000)) + { + spawnspot->spawnflags |= 0x10000000; + break; + } + } + + fakespawn = false; + + if (!spawnspot) + { + vec3_t vec; + + gi.dprintf( "** WARNING: Unable to find a coop spawn for %s. Hacking a spawn spot.\n", fol->classname ); + + spawnspot = G_Spawn(); + AngleVectors( ent->s.angles, vec, NULL, NULL ); + + VectorMA( ent->s.origin, -48*(i+1), vec, spawnspot->s.origin ); + VectorCopy( ent->s.angles, spawnspot->s.angles ); + + fakespawn = true; + } + + VectorCopy( spawnspot->s.origin, newent->s.origin ); + newent->s.origin[2] += 1; + + VectorCopy( spawnspot->s.angles, newent->s.angles ); + + if (fakespawn) + G_FreeEdict( spawnspot ); + + // add it to the characters listing + if (killed) + { + level.characters[j] = newent; + } + else + { + AddCharacterToGame( newent ); + } + + + // spawn it! + ED_CallSpawn( newent ); // will get added to the game in here + + + // make them aware of and hired by us + AI_RecordSighting( newent, ent, 64 ); // dist = 64 will do, will get updated next sight anyway + level.global_cast_memory[newent->character_index][ent->character_index]->flags |= (MEMORY_HIRED | MEMORY_HIRE_FIRST_TIME | MEMORY_HIRE_ASK); + + // make them follow us + newent->leader = ent; + + // restore pain skins + for (j=0; js.num_parts; j++) + { + for (k=0; ks.model_parts[j].skinnum[k] += (byte)fol->skinofs[j][k]; + } + } + + // restore health + newent->health = fol->health; + newent->max_health = fol->max_health; + + } + + num_followers = 0; + + // clear coop spawnflags + spawnspot = NULL; + while (1) + { + if (!(spawnspot = G_Find( spawnspot, FOFS(classname), "info_player_coop" ))) + break; + + spawnspot->spawnflags &= ~0x10000000; + } + } + + // make sure all view stuff is valid + ClientEndServerFrame (ent); + + // Ridah, if we've come from another level, save the current game (fixes hired guy's disappearing after restarting a level after dying) + if (changing_levels) + { + gi.SaveCurrentGame(); + changing_levels = false; + } +} + +void maxrate_think(edict_t *self) +{ + gi.cprintf( self->owner, PRINT_HIGH, "Server restricting rate to %i\n", (int)maxrate->value ); + G_FreeEdict(self); +} + +/* +=========== +ClientUserInfoChanged + +called whenever the player updates a userinfo variable. + +The game can override any of the settings in place +(forcing skins or names, etc) before copying it off. +============ +*/ +void ClientUserinfoChanged (edict_t *ent, char *userinfo) +{ + char *s; +// char *fog; + int playernum, rate; + char *extras; + + // check for malformed or illegal info strings + if (!Info_Validate(userinfo)) + { + // strcpy (userinfo, "\\name\\badinfo\\skin\\male_thug/018 016 010\\extras\\0"); + strcpy (userinfo, "\\name\\badinfo\\skin\\male_thug/009 019 017\\extras\\0"); + } + + // set name + s = Info_ValueForKey (userinfo, "name"); + strncpy (ent->client->pers.netname, s, sizeof(ent->client->pers.netname)-1); + + // check maxrate + s = Info_ValueForKey (userinfo, "rate"); + if (s) + { + rate = atoi(s); + + if (rate > (int)maxrate->value) + { + edict_t *thinker; + + thinker = G_Spawn(); + thinker->think = maxrate_think; + thinker->nextthink = level.time + 2 + random()*2; + thinker->owner = ent; + Info_SetValueForKey( userinfo, "rate", va("%i", (int)maxrate->value) ); + } + } + + // set skin + s = Info_ValueForKey (userinfo, "skin"); + + // Ridah, HACK for teamplay demo, set skins manually + if (deathmatch->value && teamplay->value && ent->client->pers.team) + { + // NOTE: skin order is "HEAD BODY LEGS" + char *skin, *body, *legs; + char tempstr[MAX_QPATH]; + int i, valid, model_index; + + // Hard-coded skin sets for each model + + static char *valid_models[] = { "female_chick", "male_thug", "male_runt", NULL }; + static char *valid_skinsets[][2][2][2] = + + // ordering here is {"LEGS", "BODY"} + { + { // Bitch + {{"056","057"}, {"056","058"}}, // Team 1 + {{"033","032"}, {"031","031"}} // Team 2 + }, + { // Thug + {{"057","056"}, {"058","091"}}, + {{"031","031"}, {"032","035"}} + }, + { // Runt + {{"058","056"}, {"057","056"}}, + {{"031","030"}, {"032","031"}} + } + }; + + // make sure they are using one of the standard models + valid = false; + i = 0; + strcpy( tempstr, s ); + skin = strrchr( tempstr, '/' ); + + if (!skin) + { // invalid model, so assign a default + model_index = 0; + strcpy( tempstr, valid_models[model_index] ); + + // also recreate a new skin for "s" + strcpy( s, tempstr ); + strcat( s, "/001 001 001" ); + + valid = true; + } + else + { + skin[0] = '\0'; + + while (valid_models[i]) + { + if (!Q_stricmp( tempstr, valid_models[i] )) + { + valid = true; + model_index = i; + break; + } + + i++; + } + } + + if (!valid) + { // assign a random model + model_index = -1; + + // look for a gender match + while (valid_models[i]) + { + if (!strncmp( tempstr, valid_models[i], 4 )) + { + model_index = i; + strcpy( tempstr, valid_models[model_index] ); + break; + } + + i++; + } + + if (model_index < 0) + { + model_index = rand()%i; + strcpy( tempstr, valid_models[model_index] ); + } + } + + // At this point, tempstr = model only (eg. "male_thug") + + // check that skin is valid + skin = strrchr( s, '/' ) + 1; + skin[3] = skin[7] = '\0'; + + body = &skin[4]; + legs = &skin[8]; + + valid = false; + + for (i=0; i<2; i++) + { + if ( !Q_stricmp( body, valid_skinsets[model_index][ent->client->pers.team-1][i][1] ) + && !Q_stricmp( legs, valid_skinsets[model_index][ent->client->pers.team-1][i][0] )) + { + valid = true; + break; + } + } + + if (!valid) + { // Assign a random skin for this model + i = rand()%2; + + strcpy( body, valid_skinsets[model_index][ent->client->pers.team-1][i][1] ); + strcpy( legs, valid_skinsets[model_index][ent->client->pers.team-1][i][0] ); + } + + skin[3] = skin[7] = ' '; + + // paste the skin into the tempstr + strcat( tempstr, "/" ); + strcat( tempstr, skin ); + + Info_SetValueForKey( userinfo, "skin", tempstr ); + } + else if (!deathmatch->value) // enforce thug with single player skin set + { + static char *singleplayerskin = "male_thug/018 016 010"; + + Info_SetValueForKey( userinfo, "skin", singleplayerskin ); + } + + // now check it again after the filtering, and set the Gender accordingly + s = Info_ValueForKey (userinfo, "skin"); + + if ((strstr(s, "female") == s)) + ent->gender = GENDER_FEMALE; + else if ((strstr(s, "male") == s) || (strstr(s, "thug"))) + ent->gender = GENDER_MALE; + else + ent->gender = GENDER_NONE; + + extras = Info_ValueForKey (userinfo, "extras"); + + playernum = ent-g_edicts-1; + + // combine name and skin into a configstring + gi.configstring (CS_PLAYERSKINS+playernum, va("%s\\%s %s", ent->client->pers.netname, s, extras) ); + + // fov + if (deathmatch->value && ((int)dmflags->value & DF_FIXED_FOV)) + { + ent->client->ps.fov = 90; + } + else + { + ent->client->ps.fov = atoi(Info_ValueForKey(userinfo, "fov")); + if (ent->client->ps.fov < 1) + ent->client->ps.fov = 90; + else if (ent->client->ps.fov > 160) + ent->client->ps.fov = 160; + } + + /* + { + vec3_t vars1, vars2; + + fog = Info_ValueForKey (userinfo, "fogcolor"); + + if (strlen (fog) == 17) + { + int i, cnt; + char *varR, *varG, *varB; + + for (i=0; i<17; i++) + { + if (i < 5) + { + varR[i] = fog[i]; + } + else if (i == 5) + continue; + else if (i < 11) + { + varG[i-5] = fog[i]; + } + else if (i == 11) + continue; + else + { + varB[i-11] = fog[i]; + } + } + + vars1[0] = atof (varR); + vars1[1] = atof (varG); + vars1[2] = atof (varB); + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_FOG_BRUSH); + + gi.WritePosition (vars1); + gi.WritePosition (vars2); + + gi.multicast (ent->s.origin, MULTICAST_PVS); + + gi.dprintf ("fog color <%s %s %s>\n", varR, varG, varB); + } + else + gi.dprintf ("must be in <0.000 0.000 0.000> format\n"); + } + */ + + // handedness + s = Info_ValueForKey (userinfo, "hand"); + if (strlen(s)) + { + ent->client->pers.hand = atoi(s); + } + + // client exe version + s = Info_ValueForKey (userinfo, "ver"); + if (s && strlen(s)) + { + ent->client->pers.version = atoi(s); + } + else // assume client is old version + { + ent->client->pers.version = 100; + } + + // save off the userinfo in case we want to check something later + strncpy (ent->client->pers.userinfo, userinfo, sizeof(ent->client->pers.userinfo)-1); +} + + + +/* +=========== +ClientConnect + +Called when a player begins connecting to the server. +The game can refuse entrance to a client by returning false. +If the client is allowed, the connection process will continue +and eventually get to ClientBegin() +Changing levels will NOT cause this to be called again, but +loadgames will. +============ +*/ +qboolean ClientConnect (edict_t *ent, char *userinfo) +{ + char *value; + + + // check to see if they are on the banned IP list + value = Info_ValueForKey (userinfo, "ip"); + if (SV_FilterPacket(value)) + return false; + + // check for a password + value = Info_ValueForKey (userinfo, "password"); + if (strcmp(password->string, value) != 0) + return false; + +// Ridah, if this isn't a loadgame, try to add them to the character list + if (!deathmatch->value && (ent->inuse == false)) + { + if (!AddCharacterToGame(ent)) + { + return false; + } + } +// Ridah, done. + + // they can connect + ent->client = game.clients + (ent - g_edicts - 1); + + // if there is already a body waiting for us (a loadgame), just + // take it, otherwise spawn one from scratch + if (ent->inuse == false) + { + // clear the respawning variables + InitClientResp (ent->client); + if (!game.autosaved || !ent->client->pers.weapon) + InitClientPersistant (ent->client); + + // JOSEPH 14-MAR-99 + if (!strcmp(level.mapname, "sr1") || !strcmp(level.mapname, "kpcut1")) + { + if (!(game.maxclients > 1)) + { + ent->client->pers.health = 68; + ent->health = 68; + } + } + // END JOSEPH + } + + ClientUserinfoChanged (ent, userinfo); + + if (game.maxclients > 1) + gi.dprintf ("%s connected\n", ent->client->pers.netname); + + ent->client->pers.connected = true; + + // Ridah, make sure they have to join a team + if (teamplay->value) + ent->client->pers.team = 0; + + return true; +} + +/* +=========== +ClientDisconnect + +Called when a player drops from the server. +Will not be called between levels. +============ +*/ +void ClientDisconnect (edict_t *ent) +{ + int playernum; + int i; + + if (!ent->client) + return; + + // inform any chasers + for (i=1; i<=maxclients->value; i++) + { + if (!g_edicts[i].inuse) + continue; + if (!g_edicts[i].client) + continue; + if (g_edicts[i].client->chase_target == ent) + g_edicts[i].client->chase_target = NULL; + } + + i = rand()%2; + + switch (i) + { + case 0: + gi.bprintf (PRINT_HIGH, "%s fled the scene\n", ent->client->pers.netname); + break; + case 1: + gi.bprintf (PRINT_HIGH, "%s checked out\n", ent->client->pers.netname); + break; + } + + // send effect + gi.WriteByte (svc_muzzleflash); + gi.WriteShort (ent-g_edicts); + gi.WriteByte (MZ_LOGOUT); + gi.multicast (ent->s.origin, MULTICAST_PVS); + + gi.unlinkentity (ent); + ent->s.modelindex = 0; + ent->s.num_parts = 0; + ent->solid = SOLID_NOT; + ent->inuse = false; + ent->classname = "disconnected"; + ent->client->pers.connected = false; + + playernum = ent-g_edicts-1; + gi.configstring (CS_PLAYERSKINS+playernum, ""); +} + +//============================================================== + + +edict_t *pm_passent; + +// pmove doesn't need to know about passent and contentmask +trace_t PM_trace (vec3_t start, vec3_t mins, vec3_t maxs, vec3_t end) +{ + if (pm_passent->health > 0) + { + if (nav_dynamic->value) // if dynamic on, get blocked by MONSTERCLIP brushes as the AI will be + return gi.trace (start, mins, maxs, end, pm_passent, MASK_PLAYERSOLID | CONTENTS_MONSTERCLIP); + else + return gi.trace (start, mins, maxs, end, pm_passent, MASK_PLAYERSOLID); + } + else + return gi.trace (start, mins, maxs, end, pm_passent, MASK_DEADSOLID); +} + +unsigned CheckBlock (void *b, int c) +{ + int v,i; + v = 0; + for (i=0 ; is, sizeof(pm->s)); + c2 = CheckBlock (&pm->cmd, sizeof(pm->cmd)); + Com_Printf ("sv %3i:%i %i\n", pm->cmd.impulse, c1, c2); +} + +/* +============== +ClientThink + +This will be called once for each client frame, which will +usually be a couple times for each server frame. +============== +*/ +void ClientThink (edict_t *ent, usercmd_t *ucmd) +{ + gclient_t *client; + edict_t *other; + int i, j; + pmove_t pm; + + vec3_t bike_premove_vel; + + level.current_entity = ent; + client = ent->client; + + // JOSEPH 24-FEB-99 + if (level.cut_scene_end_count) + { + level.cut_scene_end_count--; + + if (!level.cut_scene_end_count) + level.cut_scene_camera_switch = 0; + } + // END JOSEPH + + if (level.intermissiontime) + { + client->ps.pmove.pm_type = PM_FREEZE; + // can exit intermission after five seconds + if (level.time > level.intermissiontime + 11.0 + && (ucmd->buttons & BUTTON_ANY) ) + level.exitintermission = true; + return; + } + // RAFAEL + else if (level.cut_scene_time) + { + client->ps.pmove.pm_type = PM_FREEZE; + + // note to self + // need to do any precanned player move stuff + + if (level.time > level.cut_scene_time + 5.0 + && (ucmd->buttons & BUTTON_ANY) ) + level.cut_scene_time = 0; + + return; + } + else if (level.pawn_time) + { + client->ps.pmove.pm_type = PM_FREEZE; + return; + } + + pm_passent = ent; + + // set up for pmove + memset (&pm, 0, sizeof(pm)); + + if (ent->client->chase_target) + { + if (ent->solid != SOLID_NOT) + { // stop chasing + ent->client->chase_target = NULL; + } + else + { + goto chasing; + } + } + + if (ent->flags & FL_CHASECAM) + { + client->ps.pmove.pm_flags |= PMF_CHASECAM; + } + else + { + client->ps.pmove.pm_flags &= ~PMF_CHASECAM; + } + + if (ent->movetype == MOVETYPE_NOCLIP) + client->ps.pmove.pm_type = PM_SPECTATOR; + + // Ridah, Hovercars + else if (ent->flags & FL_HOVERCAR) + { + ent->viewheight = 0; + client->ps.pmove.pm_type = PM_HOVERCAR; + + ent->s.renderfx |= RF_REFL_MAP; // FIXME: remove this once this flag is set in .mdx + } + else if (ent->flags & FL_HOVERCAR_GROUND) + { + ent->viewheight = 0; + client->ps.pmove.pm_type = PM_HOVERCAR_GROUND; + + ent->s.renderfx |= RF_REFL_MAP; // FIXME: remove this once this flag is set in .mdx + } + else if (ent->flags & FL_BIKE) + { + client->ps.pmove.pm_type = PM_BIKE; + + ent->s.renderfx |= RF_REFL_MAP; // FIXME: remove this once this flag is set in .mdx + + if ((client->latched_buttons & BUTTON_ACTIVATE) && (ent->duration < level.time)) + { // Thruster + VectorScale( ent->velocity, 2, ent->velocity ); + ent->duration = level.time + 4; + + client->kick_angles[PITCH] = -20; + + gi.cprintf( ent, PRINT_HIGH, "Sound Todo: Thruster\n"); + } + + VectorCopy( ent->velocity, bike_premove_vel ); + } + else if (ent->flags & FL_CAR) + { + // Cars don't use client-side prediction + + client->ps.pmove.pm_type = PM_CAR; + client->ps.pmove.pm_flags |= PMF_NO_PREDICTION; + + ent->s.renderfx |= RF_REFL_MAP; // FIXME: remove this once this flag is set in .mdx + + // Set the pmove up as usual.. + + client->ps.pmove.gravity = sv_gravity->value; + pm.s = client->ps.pmove; + + if (memcmp(&client->old_pmove, &pm.s, sizeof(pm.s))) + { + pm.snapinitial = true; + } + + pm.cmd = *ucmd; + + pm.trace = PM_trace; // adds default parms + + pm.pointcontents = gi.pointcontents; + + // do controls, then get outta here + + Veh_ProcessFrame( ent, ucmd, &pm ); + + goto car_resume; + } + // done. + + else if (ent->s.modelindex != 255) + client->ps.pmove.pm_type = PM_GIB; + else if (ent->deadflag) + client->ps.pmove.pm_type = PM_DEAD; + else + { + + if (ent->flags & FL_JETPACK) + { + client->ps.pmove.pm_type = PM_NORMAL_WITH_JETPACK; // Ridah, debugging + gi.dprintf( "SOUND TODO: Jet Pack firing\n" ); + ent->s.sound = gi.soundindex("weapons/flame_thrower/flamepilot.wav"); // this should go into G_SetClientSound() + } + else + { + client->ps.pmove.pm_type = PM_NORMAL; + } + + } + +chasing: + + client->ps.pmove.gravity = sv_gravity->value; + pm.s = client->ps.pmove; + + for (i=0 ; i<3 ; i++) + { + pm.s.origin[i] = ent->s.origin[i]*8; + pm.s.velocity[i] = ent->velocity[i]*8; + } + + if (memcmp(&client->old_pmove, &pm.s, sizeof(pm.s))) + { + pm.snapinitial = true; +// gi.dprintf ("pmove changed!\n"); + } + +#if 0 + // set run speed scale + if (deathmatch->value) + { + if (sv_runscale->value > 2.0) + gi.cvar_set ("sv_runscale", "2.0"); + else if (sv_runscale->value < 0.1) + gi.cvar_set ("sv_runscale", "0.1"); + + pm.s.runscale = 128 + (byte)(127.0 * (sv_runscale->value - 1.0)); + } + else + { + pm.s.runscale = 128; + } +#endif + + pm.cmd = *ucmd; + + pm.trace = PM_trace; // adds default parms + + pm.pointcontents = gi.pointcontents; + + // perform a pmove + gi.Pmove (&pm); + + // save results of pmove + client->ps.pmove = pm.s; + client->old_pmove = pm.s; + + // JOSEPH 1-SEP-98 + ent->footsteptype = pm.footsteptype; + + for (i=0 ; i<3 ; i++) + { + ent->s.origin[i] = pm.s.origin[i]*0.125; + ent->velocity[i] = pm.s.velocity[i]*0.125; + } + + VectorCopy (pm.mins, ent->mins); + VectorCopy (pm.maxs, ent->maxs); + + client->resp.cmd_angles[0] = SHORT2ANGLE(ucmd->angles[0]); + client->resp.cmd_angles[1] = SHORT2ANGLE(ucmd->angles[1]); + client->resp.cmd_angles[2] = SHORT2ANGLE(ucmd->angles[2]); + + // Ridah, Hovercars + if (!(ent->flags & (FL_HOVERCAR | FL_HOVERCAR_GROUND))) + // done. + if (ent->groundentity && !pm.groundentity && (pm.cmd.upmove >= 10) && (pm.waterlevel == 0)) + { + int rval; + rval = rand()%100; + if (rval > 66) + gi.sound(ent, CHAN_VOICE, gi.soundindex("*jump1.wav"), 1, ATTN_NORM, 0); + else if (rval > 33) + gi.sound(ent, CHAN_VOICE, gi.soundindex("*jump2.wav"), 1, ATTN_NORM, 0); + else + gi.sound(ent, CHAN_VOICE, gi.soundindex("*jump3.wav"), 1, ATTN_NORM, 0); + + PlayerNoise(ent, ent->s.origin, PNOISE_SELF); + } + +#if !DEMO + // bikestuff + if (ent->flags & (FL_BIKE) || ent->flags & (FL_HOVERCAR | FL_HOVERCAR_GROUND) ) + { + + int oldbikestate; + qboolean accel = false; + static int bikegear = 0; + float xyspeed; + static float old_xyspeed; + vec3_t xyvel; + + if (ent->flags & FL_BIKE) + { + vec3_t diffvec; + float difflength, prelength; + + VectorSubtract( bike_premove_vel, ent->velocity, diffvec ); + + difflength = VectorLength( diffvec ); + prelength = VectorLength( bike_premove_vel ); + + if ( ((prelength > 300) && (difflength >= 300))) +// || ((VectorLength( bike_premove_vel ) > 300) && (DotProduct(bike_premove_vel, ent->velocity) < 0))) + { + gi.dprintf( "SOUND TODO: CRASH!\n" ); + } + else if (pm.wall_collision) + { + gi.dprintf( "SOUND TODO: Scraped wall\n"); + } + } + + VectorCopy( ent->velocity, xyvel ); + xyvel[2] = 0; + + xyspeed = VectorLength( xyvel ); + + oldbikestate = ent->bikestate; + + if (ucmd->forwardmove > 0 && ((old_xyspeed < xyspeed) || xyspeed>50)) + { + //gi.dprintf ("ACCEL: %5.3f\n", xyspeed); + accel = true; + ent->bikestate = 2; + } + else + { + //gi.dprintf ("NO ACCEL: %5.3f\n", xyspeed); + if (ent->bikestate == 2) + ent->bikestate = 1; + else if (ent->bikestate == 1) + { + if (xyspeed < 100) + ent->bikestate = 0; + } + } + + // need a state change check + + if (ent->biketime < level.time || oldbikestate != ent->bikestate) + { + if (xyspeed < 400 && (accel == false)) + { + if ((bikegear <= 1) || ent->biketime < level.time) + { + gi.sound ( ent, CHAN_VOICE, gi.soundindex ("motorcycle/idle.wav"), 0.5, ATTN_NORM, 0); + ent->s.sound = 0; + ent->biketime = level.time + 2.4; + } + + bikegear = 0; + } + else + { + if (accel) + { + bikegear = (int)floor((xyspeed+100) / 280); + + if (oldbikestate == 0 || bikegear == 0) + { + gi.sound ( ent, CHAN_VOICE, gi.soundindex ("motorcycle/accel1.wav"), 1, ATTN_NORM, 0); + ent->s.sound = 0; + ent->biketime = level.time + 1.8; + bikegear = 1; + } + else + { + if (bikegear == 1) + { + gi.sound ( ent, CHAN_VOICE, gi.soundindex ("motorcycle/accel2.wav"), 1, ATTN_NORM, 0); + ent->s.sound = 0; + ent->biketime = level.time + 2.4; + } + else if (bikegear == 2) + { + gi.sound ( ent, CHAN_VOICE, gi.soundindex ("motorcycle/accel3.wav"), 1, ATTN_NORM, 0); + ent->s.sound = 0; + ent->biketime = level.time + 2.4; + } +/* + else if (bikegear == 3) + { + gi.sound ( ent, CHAN_VOICE, gi.soundindex ("motorcycle/accel4.wav"), 1, ATTN_NORM, 0); + ent->biketime = level.time + 2.1; + } +*/ + else // TODO: high speed rev (looped) + { +// gi.sound ( ent, CHAN_VOICE, gi.soundindex ("motorcycle/running.wav"), 1, ATTN_NORM, 0); + ent->s.sound = gi.soundindex ("motorcycle/running.wav"); + ent->biketime = level.time + 9999; + ent->volume = 1.0; + } +/* + bikegear++; + if (bikegear >= 3) + bikegear = 3; +*/ + } + } + else + { + ent->s.sound = 0; + gi.sound ( ent, CHAN_VOICE, gi.soundindex ("motorcycle/decel.wav"), 1, ATTN_NORM, 0); + + bikegear--; + if (bikegear > 0 && xyspeed > 100) + { + ent->biketime = level.time + 0.7 - (0.2 * bikegear); + bikegear = 0; // only do this short one once + } + else + { + bikegear = 0; + ent->biketime = level.time + 2.4; + } + } + } + } + + old_xyspeed = xyspeed; + } +#endif // DEMO + + ent->viewheight = pm.viewheight; + ent->waterlevel = pm.waterlevel; + ent->watertype = pm.watertype; + ent->groundentity = pm.groundentity; + if (pm.groundentity) + { + ent->groundentity_linkcount = pm.groundentity->linkcount; + + // if standing on an AI, get off + if (pm.groundentity->svflags & SVF_MONSTER) + { + VectorSet( ent->velocity, rand()%400 - 200, rand()%400 - 200, 200 ); + + if (pm.groundentity->maxs[2] == pm.groundentity->cast_info.standing_max_z) + { // duck + if (pm.groundentity->cast_info.move_crouch_down) + pm.groundentity->cast_info.currentmove = pm.groundentity->cast_info.move_crouch_down; + pm.groundentity->maxs[2] = DUCKING_MAX_Z; + } + + // avoid + pm.groundentity->cast_info.avoid( pm.groundentity, ent, false ); + + } + } + + if (ent->deadflag) + { + client->ps.viewangles[ROLL] = 40; + client->ps.viewangles[PITCH] = -15; + client->ps.viewangles[YAW] = client->killer_yaw; + } + else + { + VectorCopy (pm.viewangles, client->v_angle); + VectorCopy (pm.viewangles, client->ps.viewangles); + } + + gi.linkentity (ent); + + if (ent->movetype != MOVETYPE_NOCLIP) + G_TouchTriggers (ent); + + // touch other objects + for (i=0 ; itouch) + continue; + other->touch (other, ent, NULL, NULL); + } + + // JOSEPH 22-JAN-99 + // Activate button is pressed + if (((client->latched_buttons|client->buttons) & BUTTON_ACTIVATE)) + { + edict_t *trav, *best; + float best_dist=9999, this_dist; + + // find the nearest pull-enabled object + trav = best = NULL; + while (trav = findradius( trav, ent->s.origin, 48 )) + { + if (!trav->pullable) + continue; + //if (!infront(ent, trav)) + // continue; + //if (!visible(ent, trav)) + // continue; + if (((this_dist = VectorDistance(ent->s.origin, trav->s.origin)) > best_dist) && (this_dist > 64)) + continue; + + best = trav; + best_dist = this_dist; + } + + // If we find something to drag + if (best) + { + cplane_t plane; + + plane.type = 123; + best->touch (best, ent, &plane, NULL); + + // Slow down the player + // JOSEPH 24-MAY-99 + ent->velocity[0] /= 8; + ent->velocity[1] /= 8; + // END JOSEPH + } + } + // END JOSEPH + +#if !DEMO +car_resume: +#endif + + client->oldbuttons = client->buttons; + client->buttons = ucmd->buttons; + client->latched_buttons |= client->buttons & ~client->oldbuttons; + + // save light level the player is standing on for + // monster sighting AI + ent->light_level = ucmd->lightlevel; + + // fire weapon from final position if needed + if (client->latched_buttons & BUTTON_ATTACK) + { + if (!client->weapon_thunk) + { + client->weapon_thunk = true; + Think_Weapon (ent); + } + } + + Think_FlashLight (ent); + + // BEGIN: Xatrix/Ridah/Navigator/18-mar-1998 + if (!deathmatch->value && nav_dynamic->value && !(ent->flags & (FL_HOVERCAR_GROUND | FL_HOVERCAR | FL_BIKE | FL_CAR))) + { + static float alpha; + + // check for nodes + NAV_EvaluateMove( ent ); + + // optimize routes (flash screen if lots of optimizations + if (NAV_OptimizeRoutes( ent->active_node_data ) > 50) + { + alpha += 0.05; + if (alpha > 1) + alpha = 1; + } + else if (alpha > 0) + { + alpha -= 0.05; + } + + if (nav_debug->value) + ent->client->bonus_alpha = alpha; + } + // END: Xatrix/Ridah/Navigator/18-mar-1998 + + // Ridah, new AI + if (maxclients->value == 1) + { + AI_UpdateCharacterMemories( 16 ); + } + // done. + + // Ridah, special burn surface code for artists + if ((maxclients->value == 1) && burn_enabled->value) + { + static vec3_t last_endpos; + + if (!(client->buttons & BUTTON_ATTACK)) + { // next press must draw, since they've just hit the attack button + last_endpos[0] = -9999; + last_endpos[1] = -9999; + last_endpos[2] = -9999; + } + else if (num_lpbuf >= 0xFFFF) + { + gi.dprintf( "LightPaint buffers are full, you must save to continue painting.\n"); + } + else + { + trace_t tr; + vec3_t start, end, fwd; + + VectorCopy( ent->s.origin, start ); + start[2] += ent->viewheight; + + AngleVectors( ent->client->v_angle, fwd, NULL, NULL ); + + VectorMA( start, 4000, fwd, end ); + + tr = gi.trace( start, NULL, NULL, end, ent, (MASK_OPAQUE & ~CONTENTS_MONSTER) ); + + if (tr.fraction < 1 && (VectorDistance( last_endpos, tr.endpos ) > ((float)burn_size->value)*0.5)) + { + VectorMA( tr.endpos, 1, tr.plane.normal, last_endpos ); + + // spawn a burn ent at this location + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_ART_BURN); + gi.WritePosition (last_endpos); + + gi.WriteShort( (int)burn_size->value ); + + gi.WriteByte ( (int) (255.0 * (float)burn_r->value) ); + gi.WriteByte ( (int) (255.0 * (float)burn_g->value) ); + gi.WriteByte ( (int) (255.0 * (float)burn_b->value) ); + + gi.WriteByte ( (int) (127.0 * (float)burn_intensity->value) + 127 ); + + gi.multicast (ent->s.origin, MULTICAST_ALL); + + // record this, so we can save them to a file + lpbuf[num_lpbuf] = malloc( LP_SIZE ); + + memcpy( lpbuf[num_lpbuf], last_endpos, 12 ); + + *((short *) (lpbuf[num_lpbuf]+12)) = (short) burn_size->value; + *(lpbuf[num_lpbuf]+14) = (unsigned char) (255.0 * (float)burn_r->value); + *(lpbuf[num_lpbuf]+15) = (unsigned char) (255.0 * (float)burn_g->value); + *(lpbuf[num_lpbuf]+16) = (unsigned char) (255.0 * (float)burn_b->value); + *(lpbuf[num_lpbuf]+17) = (unsigned char) ((127.0 * (float)burn_intensity->value) + 127.0); + + num_lpbuf++; + } + } + } + + for (i = 1; i <= maxclients->value; i++) { + other = g_edicts + i; + if (other->inuse && other->client->chase_target == ent) + UpdateChaseCam(other); + } + +} + + +/* +============== +ClientBeginServerFrame + +This will be called once for each server frame, before running +any other entities in the world. +============== +*/ +void ClientBeginServerFrame (edict_t *ent) +{ + gclient_t *client; + int buttonMask; + + if (ent->moveout_ent && ent->moveout_ent->health <= 0) + { + ent->moveout_ent = NULL; + } + + if (level.intermissiontime) + return; + + // RAFAEL + if (level.cut_scene_time) + return; + + if (level.pawn_time) + return; + +/* + if (teamplay->value && !ent->client->pers.team && (ent->movetype == MOVETYPE_NOCLIP) && ((int)(level.time*10)%10 == 0)) + { + gi.centerprintf( ent, "--------------------------------------------------------\n\nYou are a spectator!\n\nPress the corresponding number\nto join a team.\n\nValid teams are:\n\n%12s - 1\n%12s - 2\n\n--------------------------------------------------------\n", team_names[1], team_names[2] ); + } +*/ + + client = ent->client; + + // Ridah, hack, make sure we duplicate the episode flags + ent->episode_flags |= ent->client->pers.episode_flags; + ent->client->pers.episode_flags |= ent->episode_flags; + + // run weapon animations if it hasn't been done by a ucmd_t + if (!client->weapon_thunk) + Think_Weapon (ent); + else + client->weapon_thunk = false; + + Think_FlashLight (ent); + + if (ent->deadflag) + { + // wait for any button just going down + if ( level.time > client->respawn_time) + { + // in deathmatch, only wait for attack button + if (deathmatch->value) + buttonMask = BUTTON_ATTACK; + else + buttonMask = -1; + + if ( ( client->latched_buttons & buttonMask ) || + (deathmatch->value && ((int)dmflags->value & DF_FORCE_RESPAWN) ) ) + { + respawn(ent); + client->latched_buttons = 0; + } + } + return; + } + +// BEGIN: Xatrix/Ridah/Navigator/16-apr-1998 + if (!deathmatch->value && !ent->nav_build_data && nav_dynamic->value) + { + // create the nav_build_data structure, so we can begin dropping nodes + ent->nav_build_data = gi.TagMalloc(sizeof(nav_build_data_t), TAG_LEVEL); + memset(ent->nav_build_data, 0, sizeof(ent->nav_build_data)); + + ent->nav_build_data->jump_ent = G_Spawn(); + VectorCopy(ent->maxs, ent->nav_build_data->jump_ent->maxs ); + VectorCopy(ent->mins, ent->nav_build_data->jump_ent->mins ); + } +// END: Xatrix/Ridah/Navigator/16-apr-1998 + + // BEGIN: Xatrix/Ridah/Navigator/23-mar-1998 + // show the debug path + { + extern int showpath_on; + extern edict_t *showpath_ent; + + if (showpath_on) + { + NAV_Debug_DrawPath(ent, showpath_ent); + } + } + // END: Xatrix/Ridah/Navigator/23-mar-1998 + + client->latched_buttons = 0; + + if (!(ent->flags & FL_JETPACK)) + { + ent->client->jetpack_warned = false; + + if (ent->client->jetpack_power < 15.0) + ent->client->jetpack_power += 0.05; + } + else + { + ent->client->jetpack_power -= 0.1; + + if (ent->client->jetpack_power <= 0.0) + { // disable the jetpack + gitem_t *jetpack; + + jetpack = FindItem("Jet Pack"); + jetpack->use( ent, jetpack ); + } + else if (!ent->client->jetpack_warned && ent->client->jetpack_power < 5.0) + { + ent->client->jetpack_warned = true; + gi.cprintf( ent, PRINT_HIGH, "SOUND TODO: WARNING: Jet Pack power is LOW\n"); + } + } + +} diff --git a/gamesrc/Q_SHARED.C b/gamesrc/Q_SHARED.C new file mode 100644 index 0000000..66517ae --- /dev/null +++ b/gamesrc/Q_SHARED.C @@ -0,0 +1,1564 @@ +#include "q_shared.h" + +#define DEG2RAD( a ) ( a * M_PI ) / 180.0F + +vec3_t vec3_origin = {0,0,0}; + +//============================================================================ + +#ifdef _WIN32 +#pragma optimize( "", off ) +#endif + +void vectoangles (vec3_t value1, vec3_t angles) +{ + float forward; + float yaw, pitch; + + if (value1[1] == 0 && value1[0] == 0) + { + yaw = 0; + if (value1[2] > 0) + pitch = 90; + else + pitch = 270; + } + else + { + yaw = /*(int)*/ (atan2(value1[1], value1[0]) * 180 / M_PI); + if (yaw < 0) + yaw += 360; + + forward = sqrt (value1[0]*value1[0] + value1[1]*value1[1]); + pitch = /*(int)*/ (atan2(value1[2], forward) * 180 / M_PI); + if (pitch < 0) + pitch += 360; + } + + angles[PITCH] = -pitch; + angles[YAW] = yaw; + angles[ROLL] = 0; +} + +void RotatePointAroundVector( vec3_t dst, const vec3_t dir, const vec3_t point, float degrees ) +{ + float m[3][3]; + float im[3][3]; + float zrot[3][3]; + float tmpmat[3][3]; + float rot[3][3]; + int i; + vec3_t vr, vup, vf; + + vf[0] = dir[0]; + vf[1] = dir[1]; + vf[2] = dir[2]; + + PerpendicularVector( vr, dir ); + CrossProduct( vr, vf, vup ); + + m[0][0] = vr[0]; + m[1][0] = vr[1]; + m[2][0] = vr[2]; + + m[0][1] = vup[0]; + m[1][1] = vup[1]; + m[2][1] = vup[2]; + + m[0][2] = vf[0]; + m[1][2] = vf[1]; + m[2][2] = vf[2]; + + memcpy( im, m, sizeof( im ) ); + + im[0][1] = m[1][0]; + im[0][2] = m[2][0]; + im[1][0] = m[0][1]; + im[1][2] = m[2][1]; + im[2][0] = m[0][2]; + im[2][1] = m[1][2]; + + memset( zrot, 0, sizeof( zrot ) ); + zrot[0][0] = zrot[1][1] = zrot[2][2] = 1.0F; + + zrot[0][0] = cos( DEG2RAD( degrees ) ); + zrot[0][1] = sin( DEG2RAD( degrees ) ); + zrot[1][0] = -sin( DEG2RAD( degrees ) ); + zrot[1][1] = cos( DEG2RAD( degrees ) ); + + R_ConcatRotations( m, zrot, tmpmat ); + R_ConcatRotations( tmpmat, im, rot ); + + for ( i = 0; i < 3; i++ ) + { + dst[i] = rot[i][0] * point[0] + rot[i][1] * point[1] + rot[i][2] * point[2]; + } +} + +#ifdef _WIN32 +#pragma optimize( "", on ) +#endif + + + +void AngleVectors (vec3_t angles, vec3_t forward, vec3_t right, vec3_t up) +{ + float angle; + static float sr, sp, sy, cr, cp, cy; + // static to help MS compiler fp bugs + + angle = angles[YAW] * (M_PI*2 / 360); + sy = sin(angle); + cy = cos(angle); + angle = angles[PITCH] * (M_PI*2 / 360); + sp = sin(angle); + cp = cos(angle); + angle = angles[ROLL] * (M_PI*2 / 360); + sr = sin(angle); + cr = cos(angle); + + if (forward) + { + forward[0] = cp*cy; + forward[1] = cp*sy; + forward[2] = -sp; + } + if (right) + { + right[0] = (-1*sr*sp*cy+-1*cr*-sy); + right[1] = (-1*sr*sp*sy+-1*cr*cy); + right[2] = -1*sr*cp; + } + if (up) + { + up[0] = (cr*sp*cy+-sr*-sy); + up[1] = (cr*sp*sy+-sr*cy); + up[2] = cr*cp; + } +} + + +void ProjectPointOnPlane( vec3_t dst, const vec3_t p, const vec3_t normal ) +{ + float d; + vec3_t n; + float inv_denom; + + inv_denom = 1.0F / DotProduct( normal, normal ); + + d = DotProduct( normal, p ) * inv_denom; + + n[0] = normal[0] * inv_denom; + n[1] = normal[1] * inv_denom; + n[2] = normal[2] * inv_denom; + + dst[0] = p[0] - d * n[0]; + dst[1] = p[1] - d * n[1]; + dst[2] = p[2] - d * n[2]; +} + +/* +** assumes "src" is normalized +*/ +void PerpendicularVector( vec3_t dst, const vec3_t src ) +{ + int pos; + int i; + float minelem = 1.0F; + vec3_t tempvec; + + /* + ** find the smallest magnitude axially aligned vector + */ + for ( pos = 0, i = 0; i < 3; i++ ) + { + if ( fabs( src[i] ) < minelem ) + { + pos = i; + minelem = fabs( src[i] ); + } + } + tempvec[0] = tempvec[1] = tempvec[2] = 0.0F; + tempvec[pos] = 1.0F; + + /* + ** project the point onto the plane defined by src + */ + ProjectPointOnPlane( dst, tempvec, src ); + + /* + ** normalize the result + */ + VectorNormalize( dst ); +} + + + +/* +================ +R_ConcatRotations +================ +*/ +void R_ConcatRotations (float in1[3][3], float in2[3][3], float out[3][3]) +{ + out[0][0] = in1[0][0] * in2[0][0] + in1[0][1] * in2[1][0] + + in1[0][2] * in2[2][0]; + out[0][1] = in1[0][0] * in2[0][1] + in1[0][1] * in2[1][1] + + in1[0][2] * in2[2][1]; + out[0][2] = in1[0][0] * in2[0][2] + in1[0][1] * in2[1][2] + + in1[0][2] * in2[2][2]; + out[1][0] = in1[1][0] * in2[0][0] + in1[1][1] * in2[1][0] + + in1[1][2] * in2[2][0]; + out[1][1] = in1[1][0] * in2[0][1] + in1[1][1] * in2[1][1] + + in1[1][2] * in2[2][1]; + out[1][2] = in1[1][0] * in2[0][2] + in1[1][1] * in2[1][2] + + in1[1][2] * in2[2][2]; + out[2][0] = in1[2][0] * in2[0][0] + in1[2][1] * in2[1][0] + + in1[2][2] * in2[2][0]; + out[2][1] = in1[2][0] * in2[0][1] + in1[2][1] * in2[1][1] + + in1[2][2] * in2[2][1]; + out[2][2] = in1[2][0] * in2[0][2] + in1[2][1] * in2[1][2] + + in1[2][2] * in2[2][2]; +} + + +/* +================ +R_ConcatTransforms +================ +*/ +void R_ConcatTransforms (float in1[3][4], float in2[3][4], float out[3][4]) +{ + out[0][0] = in1[0][0] * in2[0][0] + in1[0][1] * in2[1][0] + + in1[0][2] * in2[2][0]; + out[0][1] = in1[0][0] * in2[0][1] + in1[0][1] * in2[1][1] + + in1[0][2] * in2[2][1]; + out[0][2] = in1[0][0] * in2[0][2] + in1[0][1] * in2[1][2] + + in1[0][2] * in2[2][2]; + out[0][3] = in1[0][0] * in2[0][3] + in1[0][1] * in2[1][3] + + in1[0][2] * in2[2][3] + in1[0][3]; + out[1][0] = in1[1][0] * in2[0][0] + in1[1][1] * in2[1][0] + + in1[1][2] * in2[2][0]; + out[1][1] = in1[1][0] * in2[0][1] + in1[1][1] * in2[1][1] + + in1[1][2] * in2[2][1]; + out[1][2] = in1[1][0] * in2[0][2] + in1[1][1] * in2[1][2] + + in1[1][2] * in2[2][2]; + out[1][3] = in1[1][0] * in2[0][3] + in1[1][1] * in2[1][3] + + in1[1][2] * in2[2][3] + in1[1][3]; + out[2][0] = in1[2][0] * in2[0][0] + in1[2][1] * in2[1][0] + + in1[2][2] * in2[2][0]; + out[2][1] = in1[2][0] * in2[0][1] + in1[2][1] * in2[1][1] + + in1[2][2] * in2[2][1]; + out[2][2] = in1[2][0] * in2[0][2] + in1[2][1] * in2[1][2] + + in1[2][2] * in2[2][2]; + out[2][3] = in1[2][0] * in2[0][3] + in1[2][1] * in2[1][3] + + in1[2][2] * in2[2][3] + in1[2][3]; +} + + +//============================================================================ + + +float Q_fabs (float f) +{ +#if 0 + if (f >= 0) + return f; + return -f; +#else + int tmp = * ( int * ) &f; + tmp &= 0x7FFFFFFF; + return * ( float * ) &tmp; +#endif +} + +#if defined _M_IX86 && !defined C_ONLY +#pragma warning (disable:4035) +__declspec( naked ) long Q_ftol( float f ) +{ + static int tmp; + __asm fld dword ptr [esp+4] + __asm fistp tmp + __asm mov eax, tmp + __asm ret +} +#pragma warning (default:4035) +#endif + +/* +=============== +LerpAngle + +=============== +*/ +float LerpAngle (float a2, float a1, float frac) +{ + if (a1 - a2 > 180) + a1 -= 360; + if (a1 - a2 < -180) + a1 += 360; + return a2 + frac * (a1 - a2); +} + +// Ridah, another handy util +float AngleDiff (float a2, float a1) +{ + if (a1 - a2 > 180) + a1 -= 360; + if (a1 - a2 < -180) + a1 += 360; + return (a1 - a2); +} + +float anglemod(float a) +{ +#if 0 + if (a >= 0) + a -= 360*(int)(a/360); + else + a += 360*( 1 + (int)(-a/360) ); +#endif + a = (360.0/65536) * ((int)(a*(65536/360.0)) & 65535); + return a; +} + + int i; + vec3_t corners[2]; + + +// this is the slow, general version +int BoxOnPlaneSide2 (vec3_t emins, vec3_t emaxs, struct cplane_s *p) +{ + int i; + float dist1, dist2; + int sides; + vec3_t corners[2]; + + for (i=0 ; i<3 ; i++) + { + if (p->normal[i] < 0) + { + corners[0][i] = emins[i]; + corners[1][i] = emaxs[i]; + } + else + { + corners[1][i] = emins[i]; + corners[0][i] = emaxs[i]; + } + } + dist1 = DotProduct (p->normal, corners[0]) - p->dist; + dist2 = DotProduct (p->normal, corners[1]) - p->dist; + sides = 0; + if (dist1 >= 0) + sides = 1; + if (dist2 < 0) + sides |= 2; + + return sides; +} + +/* +================== +BoxOnPlaneSide + +Returns 1, 2, or 1 + 2 +================== +*/ +#if !id386 || defined __linux__ +int BoxOnPlaneSide (vec3_t emins, vec3_t emaxs, struct cplane_s *p) +{ + float dist1, dist2; + int sides; + +// fast axial cases + if (p->type < 3) + { + if (p->dist <= emins[p->type]) + return 1; + if (p->dist >= emaxs[p->type]) + return 2; + return 3; + } + +// general case + switch (p->signbits) + { + case 0: +dist1 = p->normal[0]*emaxs[0] + p->normal[1]*emaxs[1] + p->normal[2]*emaxs[2]; +dist2 = p->normal[0]*emins[0] + p->normal[1]*emins[1] + p->normal[2]*emins[2]; + break; + case 1: +dist1 = p->normal[0]*emins[0] + p->normal[1]*emaxs[1] + p->normal[2]*emaxs[2]; +dist2 = p->normal[0]*emaxs[0] + p->normal[1]*emins[1] + p->normal[2]*emins[2]; + break; + case 2: +dist1 = p->normal[0]*emaxs[0] + p->normal[1]*emins[1] + p->normal[2]*emaxs[2]; +dist2 = p->normal[0]*emins[0] + p->normal[1]*emaxs[1] + p->normal[2]*emins[2]; + break; + case 3: +dist1 = p->normal[0]*emins[0] + p->normal[1]*emins[1] + p->normal[2]*emaxs[2]; +dist2 = p->normal[0]*emaxs[0] + p->normal[1]*emaxs[1] + p->normal[2]*emins[2]; + break; + case 4: +dist1 = p->normal[0]*emaxs[0] + p->normal[1]*emaxs[1] + p->normal[2]*emins[2]; +dist2 = p->normal[0]*emins[0] + p->normal[1]*emins[1] + p->normal[2]*emaxs[2]; + break; + case 5: +dist1 = p->normal[0]*emins[0] + p->normal[1]*emaxs[1] + p->normal[2]*emins[2]; +dist2 = p->normal[0]*emaxs[0] + p->normal[1]*emins[1] + p->normal[2]*emaxs[2]; + break; + case 6: +dist1 = p->normal[0]*emaxs[0] + p->normal[1]*emins[1] + p->normal[2]*emins[2]; +dist2 = p->normal[0]*emins[0] + p->normal[1]*emaxs[1] + p->normal[2]*emaxs[2]; + break; + case 7: +dist1 = p->normal[0]*emins[0] + p->normal[1]*emins[1] + p->normal[2]*emins[2]; +dist2 = p->normal[0]*emaxs[0] + p->normal[1]*emaxs[1] + p->normal[2]*emaxs[2]; + break; + default: + dist1 = dist2 = 0; // shut up compiler + assert( 0 ); + break; + } + + sides = 0; + if (dist1 >= p->dist) + sides = 1; + if (dist2 < p->dist) + sides |= 2; + + assert( sides != 0 ); + + return sides; +} +#else +#pragma warning( disable: 4035 ) + +__declspec( naked ) int BoxOnPlaneSide (vec3_t emins, vec3_t emaxs, struct cplane_s *p) +{ + static int bops_initialized; + static int Ljmptab[8]; + + __asm { + + push ebx + + cmp bops_initialized, 1 + je initialized + mov bops_initialized, 1 + + mov Ljmptab[0*4], offset Lcase0 + mov Ljmptab[1*4], offset Lcase1 + mov Ljmptab[2*4], offset Lcase2 + mov Ljmptab[3*4], offset Lcase3 + mov Ljmptab[4*4], offset Lcase4 + mov Ljmptab[5*4], offset Lcase5 + mov Ljmptab[6*4], offset Lcase6 + mov Ljmptab[7*4], offset Lcase7 + +initialized: + + mov edx,ds:dword ptr[4+12+esp] + mov ecx,ds:dword ptr[4+4+esp] + xor eax,eax + mov ebx,ds:dword ptr[4+8+esp] + mov al,ds:byte ptr[17+edx] + cmp al,8 + jge Lerror + fld ds:dword ptr[0+edx] + fld st(0) + jmp dword ptr[Ljmptab+eax*4] +Lcase0: + fmul ds:dword ptr[ebx] + fld ds:dword ptr[0+4+edx] + fxch st(2) + fmul ds:dword ptr[ecx] + fxch st(2) + fld st(0) + fmul ds:dword ptr[4+ebx] + fld ds:dword ptr[0+8+edx] + fxch st(2) + fmul ds:dword ptr[4+ecx] + fxch st(2) + fld st(0) + fmul ds:dword ptr[8+ebx] + fxch st(5) + faddp st(3),st(0) + fmul ds:dword ptr[8+ecx] + fxch st(1) + faddp st(3),st(0) + fxch st(3) + faddp st(2),st(0) + jmp LSetSides +Lcase1: + fmul ds:dword ptr[ecx] + fld ds:dword ptr[0+4+edx] + fxch st(2) + fmul ds:dword ptr[ebx] + fxch st(2) + fld st(0) + fmul ds:dword ptr[4+ebx] + fld ds:dword ptr[0+8+edx] + fxch st(2) + fmul ds:dword ptr[4+ecx] + fxch st(2) + fld st(0) + fmul ds:dword ptr[8+ebx] + fxch st(5) + faddp st(3),st(0) + fmul ds:dword ptr[8+ecx] + fxch st(1) + faddp st(3),st(0) + fxch st(3) + faddp st(2),st(0) + jmp LSetSides +Lcase2: + fmul ds:dword ptr[ebx] + fld ds:dword ptr[0+4+edx] + fxch st(2) + fmul ds:dword ptr[ecx] + fxch st(2) + fld st(0) + fmul ds:dword ptr[4+ecx] + fld ds:dword ptr[0+8+edx] + fxch st(2) + fmul ds:dword ptr[4+ebx] + fxch st(2) + fld st(0) + fmul ds:dword ptr[8+ebx] + fxch st(5) + faddp st(3),st(0) + fmul ds:dword ptr[8+ecx] + fxch st(1) + faddp st(3),st(0) + fxch st(3) + faddp st(2),st(0) + jmp LSetSides +Lcase3: + fmul ds:dword ptr[ecx] + fld ds:dword ptr[0+4+edx] + fxch st(2) + fmul ds:dword ptr[ebx] + fxch st(2) + fld st(0) + fmul ds:dword ptr[4+ecx] + fld ds:dword ptr[0+8+edx] + fxch st(2) + fmul ds:dword ptr[4+ebx] + fxch st(2) + fld st(0) + fmul ds:dword ptr[8+ebx] + fxch st(5) + faddp st(3),st(0) + fmul ds:dword ptr[8+ecx] + fxch st(1) + faddp st(3),st(0) + fxch st(3) + faddp st(2),st(0) + jmp LSetSides +Lcase4: + fmul ds:dword ptr[ebx] + fld ds:dword ptr[0+4+edx] + fxch st(2) + fmul ds:dword ptr[ecx] + fxch st(2) + fld st(0) + fmul ds:dword ptr[4+ebx] + fld ds:dword ptr[0+8+edx] + fxch st(2) + fmul ds:dword ptr[4+ecx] + fxch st(2) + fld st(0) + fmul ds:dword ptr[8+ecx] + fxch st(5) + faddp st(3),st(0) + fmul ds:dword ptr[8+ebx] + fxch st(1) + faddp st(3),st(0) + fxch st(3) + faddp st(2),st(0) + jmp LSetSides +Lcase5: + fmul ds:dword ptr[ecx] + fld ds:dword ptr[0+4+edx] + fxch st(2) + fmul ds:dword ptr[ebx] + fxch st(2) + fld st(0) + fmul ds:dword ptr[4+ebx] + fld ds:dword ptr[0+8+edx] + fxch st(2) + fmul ds:dword ptr[4+ecx] + fxch st(2) + fld st(0) + fmul ds:dword ptr[8+ecx] + fxch st(5) + faddp st(3),st(0) + fmul ds:dword ptr[8+ebx] + fxch st(1) + faddp st(3),st(0) + fxch st(3) + faddp st(2),st(0) + jmp LSetSides +Lcase6: + fmul ds:dword ptr[ebx] + fld ds:dword ptr[0+4+edx] + fxch st(2) + fmul ds:dword ptr[ecx] + fxch st(2) + fld st(0) + fmul ds:dword ptr[4+ecx] + fld ds:dword ptr[0+8+edx] + fxch st(2) + fmul ds:dword ptr[4+ebx] + fxch st(2) + fld st(0) + fmul ds:dword ptr[8+ecx] + fxch st(5) + faddp st(3),st(0) + fmul ds:dword ptr[8+ebx] + fxch st(1) + faddp st(3),st(0) + fxch st(3) + faddp st(2),st(0) + jmp LSetSides +Lcase7: + fmul ds:dword ptr[ecx] + fld ds:dword ptr[0+4+edx] + fxch st(2) + fmul ds:dword ptr[ebx] + fxch st(2) + fld st(0) + fmul ds:dword ptr[4+ecx] + fld ds:dword ptr[0+8+edx] + fxch st(2) + fmul ds:dword ptr[4+ebx] + fxch st(2) + fld st(0) + fmul ds:dword ptr[8+ecx] + fxch st(5) + faddp st(3),st(0) + fmul ds:dword ptr[8+ebx] + fxch st(1) + faddp st(3),st(0) + fxch st(3) + faddp st(2),st(0) +LSetSides: + faddp st(2),st(0) + fcomp ds:dword ptr[12+edx] + xor ecx,ecx + fnstsw ax + fcomp ds:dword ptr[12+edx] + and ah,1 + xor ah,1 + add cl,ah + fnstsw ax + and ah,1 + add ah,ah + add cl,ah + pop ebx + mov eax,ecx + ret +Lerror: + int 3 + } +} +#pragma warning( default: 4035 ) +#endif + +void ClearBounds (vec3_t mins, vec3_t maxs) +{ + mins[0] = mins[1] = mins[2] = 99999; + maxs[0] = maxs[1] = maxs[2] = -99999; +} + +void AddPointToBounds (vec3_t v, vec3_t mins, vec3_t maxs) +{ + int i; + vec_t val; + + for (i=0 ; i<3 ; i++) + { + val = v[i]; + if (val < mins[i]) + mins[i] = val; + if (val > maxs[i]) + maxs[i] = val; + } +} + + +int VectorCompare (vec3_t v1, vec3_t v2) +{ + if (v1[0] != v2[0] || v1[1] != v2[1] || v1[2] != v2[2]) + return 0; + + return 1; +} + + +vec_t VectorNormalize (vec3_t v) +{ + float length, ilength; + + length = v[0]*v[0] + v[1]*v[1] + v[2]*v[2]; + length = sqrt (length); // FIXME + + if (length) + { + ilength = 1/length; + v[0] *= ilength; + v[1] *= ilength; + v[2] *= ilength; + } + + return length; + +} + +vec_t VectorNormalize2 (vec3_t v, vec3_t out) +{ + float length, ilength; + + length = v[0]*v[0] + v[1]*v[1] + v[2]*v[2]; + length = sqrt (length); // FIXME + + if (length) + { + ilength = 1/length; + out[0] = v[0]*ilength; + out[1] = v[1]*ilength; + out[2] = v[2]*ilength; + } + + return length; + +} + +void VectorMA (vec3_t veca, float scale, vec3_t vecb, vec3_t vecc) +{ + vecc[0] = veca[0] + scale*vecb[0]; + vecc[1] = veca[1] + scale*vecb[1]; + vecc[2] = veca[2] + scale*vecb[2]; +} + + +vec_t _DotProduct (vec3_t v1, vec3_t v2) +{ + return v1[0]*v2[0] + v1[1]*v2[1] + v1[2]*v2[2]; +} + +void _VectorSubtract (vec3_t veca, vec3_t vecb, vec3_t out) +{ + out[0] = veca[0]-vecb[0]; + out[1] = veca[1]-vecb[1]; + out[2] = veca[2]-vecb[2]; +} + +void _VectorAdd (vec3_t veca, vec3_t vecb, vec3_t out) +{ + out[0] = veca[0]+vecb[0]; + out[1] = veca[1]+vecb[1]; + out[2] = veca[2]+vecb[2]; +} + +void _VectorCopy (vec3_t in, vec3_t out) +{ + out[0] = in[0]; + out[1] = in[1]; + out[2] = in[2]; +} + +void CrossProduct (vec3_t v1, vec3_t v2, vec3_t cross) +{ + cross[0] = v1[1]*v2[2] - v1[2]*v2[1]; + cross[1] = v1[2]*v2[0] - v1[0]*v2[2]; + cross[2] = v1[0]*v2[1] - v1[1]*v2[0]; +} + +double sqrt(double x); + +vec_t VectorLength(vec3_t v) +{ + int i; + float length; + + length = 0; + for (i=0 ; i< 3 ; i++) + length += v[i]*v[i]; + length = sqrt (length); // FIXME + + return length; +} + +/* +================ +VectorDistance +================ +*/ +float VectorDistance(vec3_t vec1, vec3_t vec2) +{ + vec3_t vec; + + VectorSubtract(vec1, vec2, vec); + return VectorLength(vec); +} + +void VectorInverse (vec3_t v) +{ + v[0] = -v[0]; + v[1] = -v[1]; + v[2] = -v[2]; +} + +void VectorScale (vec3_t in, vec_t scale, vec3_t out) +{ + out[0] = in[0]*scale; + out[1] = in[1]*scale; + out[2] = in[2]*scale; +} + + +int Q_log2(int val) +{ + int answer=0; + while (val>>=1) + answer++; + return answer; +} + + + +//==================================================================================== + +/* +============ +COM_SkipPath +============ +*/ +char *COM_SkipPath (char *pathname) +{ + char *last; + + last = pathname; + while (*pathname) + { + if (*pathname=='/') + last = pathname+1; + pathname++; + } + return last; +} + +/* +============ +COM_StripExtension +============ +*/ +void COM_StripExtension (char *in, char *out) +{ + while (*in && *in != '.') + *out++ = *in++; + *out = 0; +} + +/* +============ +COM_FileExtension +============ +*/ +char *COM_FileExtension (char *in) +{ + static char exten[8]; + int i; + + while (*in && *in != '.') + in++; + if (!*in) + return ""; + in++; + for (i=0 ; i<7 && *in ; i++,in++) + exten[i] = *in; + exten[i] = 0; + return exten; +} + +/* +============ +COM_FileBase +============ +*/ +void COM_FileBase (char *in, char *out) +{ + char *s, *s2; + + s = in + strlen(in) - 1; + + while (s != in && *s != '.') + s--; + + for (s2 = s ; s2 != in && *s2 != '/' ; s2--) + ; + + if (s-s2 < 2) + out[0] = 0; + else + { + s--; + strncpy (out,s2+1, s-s2); + out[s-s2] = 0; + } +} + +/* +============ +COM_FilePath + +Returns the path up to, but not including the last / +============ +*/ +void COM_FilePath (char *in, char *out) +{ + char *s; + + s = in + strlen(in) - 1; + + while (s != in && *s != '/') + s--; + + strncpy (out,in, s-in); + out[s-in] = 0; +} + + +/* +================== +COM_DefaultExtension +================== +*/ +void COM_DefaultExtension (char *path, char *extension) +{ + char *src; +// +// if path doesn't have a .EXT, append extension +// (extension should include the .) +// + src = path + strlen(path) - 1; + + while (*src != '/' && src != path) + { + if (*src == '.') + return; // it has an extension + src--; + } + + strcat (path, extension); +} + +/* +============================================================================ + + BYTE ORDER FUNCTIONS + +============================================================================ +*/ + +qboolean bigendien; + +// can't just use function pointers, or dll linkage can +// mess up when qcommon is included in multiple places +short (*_BigShort) (short l); +short (*_LittleShort) (short l); +int (*_BigLong) (int l); +int (*_LittleLong) (int l); +float (*_BigFloat) (float l); +float (*_LittleFloat) (float l); + +short BigShort(short l){return _BigShort(l);} +short LittleShort(short l) {return _LittleShort(l);} +int BigLong (int l) {return _BigLong(l);} +int LittleLong (int l) {return _LittleLong(l);} +float BigFloat (float l) {return _BigFloat(l);} +float LittleFloat (float l) {return _LittleFloat(l);} + +short ShortSwap (short l) +{ + byte b1,b2; + + b1 = l&255; + b2 = (l>>8)&255; + + return (b1<<8) + b2; +} + +short ShortNoSwap (short l) +{ + return l; +} + +int LongSwap (int l) +{ + byte b1,b2,b3,b4; + + b1 = l&255; + b2 = (l>>8)&255; + b3 = (l>>16)&255; + b4 = (l>>24)&255; + + return ((int)b1<<24) + ((int)b2<<16) + ((int)b3<<8) + b4; +} + +int LongNoSwap (int l) +{ + return l; +} + +float FloatSwap (float f) +{ + union + { + float f; + byte b[4]; + } dat1, dat2; + + + dat1.f = f; + dat2.b[0] = dat1.b[3]; + dat2.b[1] = dat1.b[2]; + dat2.b[2] = dat1.b[1]; + dat2.b[3] = dat1.b[0]; + return dat2.f; +} + +float FloatNoSwap (float f) +{ + return f; +} + +/* +================ +Swap_Init +================ +*/ +void Swap_Init (void) +{ + byte swaptest[2] = {1,0}; + +// set the byte swapping variables in a portable manner + if ( *(short *)swaptest == 1) + { + bigendien = false; + _BigShort = ShortSwap; + _LittleShort = ShortNoSwap; + _BigLong = LongSwap; + _LittleLong = LongNoSwap; + _BigFloat = FloatSwap; + _LittleFloat = FloatNoSwap; + } + else + { + bigendien = true; + _BigShort = ShortNoSwap; + _LittleShort = ShortSwap; + _BigLong = LongNoSwap; + _LittleLong = LongSwap; + _BigFloat = FloatNoSwap; + _LittleFloat = FloatSwap; + } + +} + + + +/* +============ +va + +does a varargs printf into a temp buffer, so I don't need to have +varargs versions of all text functions. +FIXME: make this buffer size safe someday +============ +*/ +char *va(char *format, ...) +{ + va_list argptr; + static char string[1024]; + + va_start (argptr, format); + vsprintf (string, format,argptr); + va_end (argptr); + + return string; +} + + +char com_token[MAX_TOKEN_CHARS]; + +/* +============== +COM_Parse + +Parse a token out of a string +============== +*/ +char *COM_Parse (char **data_p) +{ + int c; + int len; + char *data; + + data = *data_p; + len = 0; + com_token[0] = 0; + + if (!data) + { + *data_p = NULL; + return ""; + } + +// skip whitespace +skipwhite: + while ( (c = *data) <= ' ') + { + if (c == 0) + { + *data_p = NULL; + return ""; + } + data++; + } + +// skip // comments + if (c=='/' && data[1] == '/') + { + while (*data && *data != '\n') + data++; + goto skipwhite; + } + +// handle quoted strings specially + if (c == '\"') + { + data++; + while (1) + { + c = *data++; + if (c=='\"' || !c) + { + com_token[len] = 0; + *data_p = data; + return com_token; + } + if (len < MAX_TOKEN_CHARS) + { + com_token[len] = c; + len++; + } + } + } + +// parse a regular word + do + { + if (len < MAX_TOKEN_CHARS) + { + com_token[len] = c; + len++; + } + data++; + c = *data; + } while (c>32); + + if (len == MAX_TOKEN_CHARS) + { +// Com_Printf ("Token exceeded %i chars, discarded.\n", MAX_TOKEN_CHARS); + len = 0; + } + com_token[len] = 0; + + *data_p = data; + return com_token; +} + + +char *COM_Parse256 (char **data_p) +{ + int c; + int len; + char *data; + + data = *data_p; + len = 0; + com_token[0] = 0; + + if (!data) + { + *data_p = NULL; + return ""; + } + +// skip whitespace +skipwhite: + while ( (c = *data) <= ' ') + { + if (c == 0) + { + *data_p = NULL; + return ""; + } + data++; + } + +// skip // comments + if (c=='/' && data[1] == '/') + { + while (*data && *data != '\n') + data++; + goto skipwhite; + } + +// handle quoted strings specially + if (c == '\"') + { + data++; + while (1) + { + c = *data++; + if (c=='\"' || !c) + { + com_token[len] = 0; + *data_p = data; + return com_token; + } + if (len < 256) + { + com_token[len] = c; + len++; + } + } + } + +// parse a regular word + do + { + if (len < 256) + { + com_token[len] = c; + len++; + } + data++; + c = *data; + } while (c>32); + + if (len == 256) + { + len = 0; + } + com_token[len] = 0; + + *data_p = data; + return com_token; +} + +/* +=============== +Com_PageInMemory + +=============== +*/ +int paged_total; + +void Com_PageInMemory (byte *buffer, int size) +{ + int i; + + for (i=size-1 ; i>0 ; i-=4096) + paged_total += buffer[i]; +} + + + +/* +============================================================================ + + LIBRARY REPLACEMENT FUNCTIONS + +============================================================================ +*/ + +// FIXME: replace all Q_stricmp with Q_strcasecmp +int Q_stricmp (char *s1, char *s2) +{ +#if defined(WIN32) + return _stricmp (s1, s2); +#else + return strcasecmp (s1, s2); +#endif +} + + +int Q_strncasecmp (char *s1, char *s2, int n) +{ + int c1, c2; + + do + { + c1 = *s1++; + c2 = *s2++; + + if (!n--) + return 0; // strings are equal until end point + + if (c1 != c2) + { + if (c1 >= 'a' && c1 <= 'z') + c1 -= ('a' - 'A'); + if (c2 >= 'a' && c2 <= 'z') + c2 -= ('a' - 'A'); + if (c1 != c2) + return -1; // strings not equal + } + } while (c1); + + return 0; // strings are equal +} + +int Q_strcasecmp (char *s1, char *s2) +{ + return Q_strncasecmp (s1, s2, 99999); +} + + + +void Com_sprintf (char *dest, int size, char *fmt, ...) +{ + int len; + va_list argptr; + char bigbuffer[0x10000]; + + va_start (argptr,fmt); + len = vsprintf (bigbuffer,fmt,argptr); + va_end (argptr); + if (len >= size) + Com_Printf ("Com_sprintf: overflow of %i in %i\n", len, size); + strncpy (dest, bigbuffer, size-1); +} + +// Ridah, portable strlwr() +char *kp_strlwr( char *name ) +{ + for (i=0; name[i]; i++) + if (name[i] >= 'A' && name[i] <= 'Z') + name[i] -= 'A' - 'a'; + + return name; +} + +/* +===================================================================== + + INFO STRINGS + +===================================================================== +*/ + +/* +=============== +Info_ValueForKey + +Searches the string for the given +key and returns the associated value, or an empty string. +=============== +*/ +char *Info_ValueForKey (char *s, char *key) +{ + char pkey[512]; + static char value[2][512]; // use two buffers so compares + // work without stomping on each other + static int valueindex; + char *o; + + valueindex ^= 1; + if (*s == '\\') + s++; + while (1) + { + o = pkey; + while (*s != '\\') + { + if (!*s) + return ""; + *o++ = *s++; + } + *o = 0; + s++; + + o = value[valueindex]; + + while (*s != '\\' && *s) + { + if (!*s) + return ""; + *o++ = *s++; + } + *o = 0; + + if (!strcmp (key, pkey) ) + return value[valueindex]; + + if (!*s) + return ""; + s++; + } +} + +void Info_RemoveKey (char *s, char *key) +{ + char *start; + char pkey[512]; + char value[512]; + char *o; + + if (strstr (key, "\\")) + { +// Com_Printf ("Can't use a key with a \\\n"); + return; + } + + while (1) + { + start = s; + if (*s == '\\') + s++; + o = pkey; + while (*s != '\\') + { + if (!*s) + return; + *o++ = *s++; + } + *o = 0; + s++; + + o = value; + while (*s != '\\' && *s) + { + if (!*s) + return; + *o++ = *s++; + } + *o = 0; + + if (!strcmp (key, pkey) ) + { + strcpy (start, s); // remove this part + return; + } + + if (!*s) + return; + } + +} + + +/* +================== +Info_Validate + +Some characters are illegal in info strings because they +can mess up the server's parsing +================== +*/ +qboolean Info_Validate (char *s) +{ + char *skin; + qboolean validstr = true; + char *pskin; + + if (strstr (s, "\"")) + return false; + if (strstr (s, ";")) + return false; + + skin = Info_ValueForKey (s, "skin"); + + if (!skin || !(pskin = strrchr(skin, '/'))) + { + return false; + } + else if (strlen(pskin) != 12) + { + return false; + } + else + { + if (!(pskin = strstr(skin, "/"))) + return false; + if (pskin == skin) + return false; + } + + + return true; +} + +void Info_SetValueForKey (char *s, char *key, char *value) +{ + char newi[MAX_INFO_STRING], *v; + int c; + int maxsize = MAX_INFO_STRING; + + if (strstr (key, "\\") || strstr (value, "\\") ) + { + Com_Printf ("Can't use keys or values with a \\\n"); + return; + } + + if (strstr (key, ";") ) + { + Com_Printf ("Can't use keys or values with a semicolon\n"); + return; + } + + if (strstr (key, "\"") || strstr (value, "\"") ) + { + Com_Printf ("Can't use keys or values with a \"\n"); + return; + } + + if (strlen(key) > MAX_INFO_KEY-1 || strlen(value) > MAX_INFO_KEY-1) + { + Com_Printf ("Keys and values must be < 64 characters.\n"); + return; + } + Info_RemoveKey (s, key); + if (!value || !strlen(value)) + return; + + Com_sprintf (newi, sizeof(newi), "\\%s\\%s", key, value); + + if (strlen(newi) + strlen(s) > maxsize) + { + Com_Printf ("Info string length exceeded\n"); + return; + } + + // only copy ascii values + s += strlen(s); + v = newi; + while (*v) + { + c = *v++; + c &= 127; // strip high bits + if (c >= 32 && c < 127) + *s++ = c; + } + *s = 0; +} + +//==================================================================== + + diff --git a/gamesrc/Q_SHARED.H b/gamesrc/Q_SHARED.H new file mode 100644 index 0000000..c7b14a0 --- /dev/null +++ b/gamesrc/Q_SHARED.H @@ -0,0 +1,1460 @@ +// q_shared.h -- included first by ALL program modules + +#define DEMO 0 // enable this when compiling a demo release + +// RIDAH, DISABLE THIS BEFORE RELEASE! +#define USE_OLD_CHECKSUM + +#ifdef _WIN32 +// unknown pragmas are SUPPOSED to be ignored, but.... +#pragma warning(disable : 4244) // MIPS +#pragma warning(disable : 4136) // X86 +#pragma warning(disable : 4051) // ALPHA + +#pragma warning(disable : 4018) // signed/unsigned mismatch +#pragma warning(disable : 4305) // truncation from const double to float + +#endif + +#include +#include +#include +#include +#include +#include +#include + +#if (defined _M_IX86 || defined __i386__) && !defined C_ONLY +#define id386 1 +#else +#define id386 0 +#endif + +#if defined _M_ALPHA && !defined C_ONLY +#define idaxp 1 +#else +#define idaxp 0 +#endif + +typedef unsigned char byte; +typedef enum {false, true} qboolean; + + +#ifndef NULL +#define NULL ((void *)0) +#endif + + +#define RANDOM ( ((float)(rand()) / RAND_MAX)*2.0 - 1.0) + +// angle indexes +#define PITCH 0 // up / down +#define YAW 1 // left / right +#define ROLL 2 // fall over + +#define MAX_STRING_CHARS 1024 // max length of a string passed to Cmd_TokenizeString +#define MAX_STRING_TOKENS 80 // max tokens resulting from Cmd_TokenizeString +#define MAX_TOKEN_CHARS 128 // max length of an individual token + +#define MAX_QPATH 64 // max length of a quake game pathname +#define MAX_OSPATH 128 // max length of a filesystem pathname + +// +// per-level limits +// +#define MAX_CLIENTS 256 // absolute limit +#define MAX_EDICTS 2048 // must change protocol to increase more +#define MAX_LIGHTSTYLES 256 +#define MAX_MODELS 256 // these are sent over the net as bytes +#define MAX_SOUNDS 384 // so they cannot be blindly increased +#define MAX_IMAGES 256 +#define MAX_ITEMS 256 +#define MAX_LIGHTFLARES 128 +#define MAX_JUNIOR_STRINGS 512 +#define MAX_GENERAL (MAX_CLIENTS*2) // general config strings + +// game print flags +#define PRINT_LOW 0 // pickup messages +#define PRINT_MEDIUM 1 // death messages +#define PRINT_HIGH 2 // critical messages +#define PRINT_CHAT 3 // chat messages + + + +#define ERR_FATAL 0 // exit the entire game with a popup window +#define ERR_DROP 1 // print to console and disconnect from game +#define ERR_DISCONNECT 2 // don't kill server + +#define PRINT_ALL 0 +#define PRINT_DEVELOPER 1 // only print when "developer 1" +#define PRINT_ALERT 2 + + +// destination class for gi.multicast() +typedef enum +{ +MULTICAST_ALL, +MULTICAST_PHS, +MULTICAST_PVS, +MULTICAST_ALL_R, +MULTICAST_PHS_R, +MULTICAST_PVS_R +} multicast_t; + + +/* +============================================================== + +MATHLIB + +============================================================== +*/ + +typedef float vec_t; +typedef vec_t vec3_t[3]; +typedef vec_t vec5_t[5]; + +typedef int fixed4_t; +typedef int fixed8_t; +typedef int fixed16_t; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 // matches value in gcc v2 math.h +#endif + +struct cplane_s; + +extern vec3_t vec3_origin; + +#define nanmask (255<<23) + +#define IS_NAN(x) (((*(int *)&x)&nanmask)==nanmask) + +// microsoft's fabs seems to be ungodly slow... +//float Q_fabs (float f); +//#define fabs(f) Q_fabs(f) +#if !defined C_ONLY && !defined __linux__ +extern long Q_ftol( float f ); +#else +#define Q_ftol( f ) ( long ) (f) +#endif + +void vectoangles (vec3_t value1, vec3_t angles); + +// JOSEPH 6-NOV-98 +#ifdef _WIN32 +_inline vec_t DotProduct(x,y) +{ + float dotprod; + _asm + { + mov ecx, x + mov eax, y + + ;optimized dot product; 15 cycles + fld dword ptr [eax+0] ;starts & ends on cycle 0 + fmul dword ptr [ecx+0] ;starts on cycle 1 + fld dword ptr [eax+4] ;starts & ends on cycle 2 + fmul dword ptr [ecx+4] ;starts on cycle 3 + fld dword ptr [eax+8] ;starts & ends on cycle 4 + fmul dword ptr [ecx+8] ;starts on cycle 5 + fxch st(1) ;no cost + faddp st(2),st(0) ;starts on cycle 6, stalls for cycles 7-8 + faddp st(1),st(0) ;starts on cycle 9, stalls for cycles 10-12 + fstp dword ptr [dotprod] ;starts on cycle 13, ends on cycle 14 + } + return dotprod; +} +#else +#define DotProduct(x,y) (x[0]*y[0]+x[1]*y[1]+x[2]*y[2]) +#endif +// END JOSEPH + +#define VectorSubtract(a,b,c) (c[0]=a[0]-b[0],c[1]=a[1]-b[1],c[2]=a[2]-b[2]) +#define VectorAdd(a,b,c) (c[0]=a[0]+b[0],c[1]=a[1]+b[1],c[2]=a[2]+b[2]) +#define VectorCopy(a,b) (b[0]=a[0],b[1]=a[1],b[2]=a[2]) +#define VectorClear(a) (a[0]=a[1]=a[2]=0) +#define VectorNegate(a,b) (b[0]=-a[0],b[1]=-a[1],b[2]=-a[2]) +#define VectorSet(v, x, y, z) (v[0]=(x), v[1]=(y), v[2]=(z)) + +void VectorMA (vec3_t veca, float scale, vec3_t vecb, vec3_t vecc); + +// just in case you do't want to use the macros +vec_t _DotProduct (vec3_t v1, vec3_t v2); +void _VectorSubtract (vec3_t veca, vec3_t vecb, vec3_t out); +void _VectorAdd (vec3_t veca, vec3_t vecb, vec3_t out); +void _VectorCopy (vec3_t in, vec3_t out); + +void ClearBounds (vec3_t mins, vec3_t maxs); +void AddPointToBounds (vec3_t v, vec3_t mins, vec3_t maxs); +int VectorCompare (vec3_t v1, vec3_t v2); +vec_t VectorLength (vec3_t v); +float VectorDistance(vec3_t vec1, vec3_t vec2); +void CrossProduct (vec3_t v1, vec3_t v2, vec3_t cross); +vec_t VectorNormalize (vec3_t v); // returns vector length +vec_t VectorNormalize2 (vec3_t v, vec3_t out); +void VectorInverse (vec3_t v); +void VectorScale (vec3_t in, vec_t scale, vec3_t out); +int Q_log2(int val); + +void R_ConcatRotations (float in1[3][3], float in2[3][3], float out[3][3]); +void R_ConcatTransforms (float in1[3][4], float in2[3][4], float out[3][4]); + +void AngleVectors (vec3_t angles, vec3_t forward, vec3_t right, vec3_t up); +int BoxOnPlaneSide (vec3_t emins, vec3_t emaxs, struct cplane_s *plane); +float anglemod(float a); +float LerpAngle (float a1, float a2, float frac); +// Ridah +float AngleDiff (float a2, float a1); + +#ifdef WIN32 +#define BOX_ON_PLANE_SIDE(emins, emaxs, p) \ + (((p)->type < 3)? \ + ( \ + ((p)->dist <= (emins)[(p)->type])? \ + 1 \ + : \ + ( \ + ((p)->dist >= (emaxs)[(p)->type])?\ + 2 \ + : \ + 3 \ + ) \ + ) \ + : \ + BoxOnPlaneSide( (emins), (emaxs), (p))) +#endif + +void ProjectPointOnPlane( vec3_t dst, const vec3_t p, const vec3_t normal ); +void PerpendicularVector( vec3_t dst, const vec3_t src ); +void RotatePointAroundVector( vec3_t dst, const vec3_t dir, const vec3_t point, float degrees ); + + +//============================================= + +char *COM_SkipPath (char *pathname); +void COM_StripExtension (char *in, char *out); +void COM_FileBase (char *in, char *out); +void COM_FilePath (char *in, char *out); +void COM_DefaultExtension (char *path, char *extension); + +char *COM_Parse (char **data_p); +char *COM_Parse256 (char **data_p); +// data is an in/out parm, returns a parsed out token + +void Com_sprintf (char *dest, int size, char *fmt, ...); + +void Com_PageInMemory (byte *buffer, int size); + +//============================================= + +// portable case insensitive compare +int Q_stricmp (char *s1, char *s2); +int Q_strcasecmp (char *s1, char *s2); +int Q_strncasecmp (char *s1, char *s2, int n); + +//============================================= + +short BigShort(short l); +short LittleShort(short l); +int BigLong (int l); +int LittleLong (int l); +float BigFloat (float l); +float LittleFloat (float l); + +void Swap_Init (void); +char *va(char *format, ...); + +char *kp_strlwr( char *name ); + +//============================================= + +// +// key / value info strings +// +#define MAX_INFO_KEY 64 +#define MAX_INFO_VALUE 64 +#define MAX_INFO_STRING 512 + +char *Info_ValueForKey (char *s, char *key); +void Info_RemoveKey (char *s, char *key); +void Info_SetValueForKey (char *s, char *key, char *value); +qboolean Info_Validate (char *s); + +/* +============================================================== + +SYSTEM SPECIFIC + +============================================================== +*/ + +extern int curtime; // time returned by last Sys_Milliseconds + +int Sys_Milliseconds (void); +void Sys_Mkdir (char *path); + +// large block stack allocation routines +void *Hunk_Begin (int maxsize); +void *Hunk_Alloc (int size); +void Hunk_Free (void *buf); +int Hunk_End (void); + +// directory searching +#define SFF_ARCH 0x01 +#define SFF_HIDDEN 0x02 +#define SFF_RDONLY 0x04 +#define SFF_SUBDIR 0x08 +#define SFF_SYSTEM 0x10 + +/* +** pass in an attribute mask of things you wish to REJECT +*/ +char *Sys_FindFirst (char *path, unsigned musthave, unsigned canthave ); +char *Sys_FindNext ( unsigned musthave, unsigned canthave ); +void Sys_FindClose (void); + + +// this is only here so the functions in q_shared.c and q_shwin.c can link +void Sys_Error (char *error, ...); +void Com_Printf (char *msg, ...); + + +/* +========================================================== + +CVARS (console variables) + +========================================================== +*/ + +#ifndef CVAR +#define CVAR + +#define CVAR_ARCHIVE 1 // set to cause it to be saved to vars.rc +#define CVAR_USERINFO 2 // added to userinfo when changed +#define CVAR_SERVERINFO 4 // added to serverinfo when changed +#define CVAR_NOSET 8 // don't allow change from console at all, + // but can be set from the command line +#define CVAR_LATCH 16 // save changes until server restart + +// nothing outside the Cvar_*() functions should modify these fields! +typedef struct cvar_s +{ + char *name; + char *string; + char *latched_string; // for CVAR_LATCH vars + int flags; + qboolean modified; // set each time the cvar is changed + float value; + struct cvar_s *next; +} cvar_t; + +#endif // CVAR + +/* +============================================================== + +COLLISION DETECTION + +============================================================== +*/ + +// lower bits are stronger, and will eat weaker brushes completely +#define CONTENTS_SOLID 1 // an eye is never valid in a solid +#define CONTENTS_WINDOW 2 // translucent, but not watery +#define CONTENTS_AUX 4 +#define CONTENTS_LAVA 8 +#define CONTENTS_SLIME 16 +#define CONTENTS_WATER 32 +#define CONTENTS_MIST 64 +// JOSEPH +#define CONTENTS_ALPHA 128 +#define LAST_VISIBLE_CONTENTS 128 +// END JOSEPH +// remaining contents are non-visible, and don't eat brushes + +#define CONTENTS_AREAPORTAL 0x8000 + +#define CONTENTS_PLAYERCLIP 0x10000 +#define CONTENTS_MONSTERCLIP 0x20000 + +// currents can be added to any other contents, and may be mixed +#define CONTENTS_CURRENT_0 0x40000 +#define CONTENTS_CURRENT_90 0x80000 +#define CONTENTS_CURRENT_180 0x100000 +#define CONTENTS_CURRENT_270 0x200000 +#define CONTENTS_CURRENT_UP 0x400000 +#define CONTENTS_CURRENT_DOWN 0x800000 + +#define CONTENTS_ORIGIN 0x1000000 // removed before bsping an entity + +#define CONTENTS_MONSTER 0x2000000 // should never be on a brush, only in game +#define CONTENTS_DEADMONSTER 0x4000000 +#define CONTENTS_DETAIL 0x8000000 // brushes to be added after vis leafs +#define CONTENTS_TRANSLUCENT 0x10000000 // auto set if any surface has trans +#define CONTENTS_LADDER 0x20000000 + + +#define SURF_LIGHT 0x1 // value will hold the light strength + +#define SURF_SLICK 0x2 // effects game physics + +#define SURF_SKY 0x4 // don't draw, but add to skybox +#define SURF_WARP 0x8 // turbulent water warp +#define SURF_TRANS33 0x10 +#define SURF_TRANS66 0x20 +#define SURF_FLOWING 0x40 // scroll towards angle +#define SURF_NODRAW 0x80 // don't bother referencing the texture +#define SURF_BURNT 0x100 // Ridah, used for rendering, marks this surface as having been burnt or charred +// JOSEPH 29-DEC-98 +#define SURF_SPECULAR 0x400 // Ridah, shows specular lighting from light flares +#define SURF_DIFFUSE 0x800 // Ridah, used with specular lighting, makes it bigger and less intense +// END JOSEPH + +// JOSEPH 26-JAN-99-C +#define SURF_ALPHA 0x1000 // wire fence effect flag +#define SURF_WATER 0x80000 +#define SURF_CONCRETE 0x100000 +#define SURF_FABRIC 0x200000 +#define SURF_GRAVEL 0x400000 +#define SURF_METAL 0x800000 +#define SURF_METAL_L 0x1000000 +#define SURF_SNOW 0x2000000 +#define SURF_TILE 0x4000000 +#define SURF_WOOD 0x8000000 +// END JOSEPH + +// Ridah +#define SURF_REFLECT_FAKE 0x10000000 // Ridah, uses fast (fake) reflections +#define SURF_REFLECT_LIGHT 0x20000000 // Ridah, only reflects SURF_LIGHT surfaces + +// content masks +#define MASK_ALL (-1) +#define MASK_SOLID (CONTENTS_SOLID|CONTENTS_WINDOW) +#define MASK_PLAYERSOLID (CONTENTS_SOLID|CONTENTS_PLAYERCLIP|CONTENTS_WINDOW|CONTENTS_MONSTER) +#define MASK_DEADSOLID (CONTENTS_SOLID|CONTENTS_PLAYERCLIP|CONTENTS_WINDOW) +#define MASK_MONSTERSOLID (CONTENTS_SOLID|CONTENTS_MONSTERCLIP|CONTENTS_WINDOW|CONTENTS_MONSTER) +#define MASK_WATER (CONTENTS_WATER|CONTENTS_LAVA|CONTENTS_SLIME) +#define MASK_OPAQUE (CONTENTS_SOLID|CONTENTS_SLIME|CONTENTS_LAVA) +#define MASK_SHOT (CONTENTS_SOLID|CONTENTS_MONSTER|CONTENTS_WINDOW|CONTENTS_DEADMONSTER) +#define MASK_CURRENT (CONTENTS_CURRENT_0|CONTENTS_CURRENT_90|CONTENTS_CURRENT_180|CONTENTS_CURRENT_270|CONTENTS_CURRENT_UP|CONTENTS_CURRENT_DOWN) +// JOSEPH +#define MASK_ALPHA (CONTENTS_ALPHA) +// END JOSEPH + + +// gi.BoxEdicts() can return a list of either solid or trigger entities +// FIXME: eliminate AREA_ distinction? +#define AREA_SOLID 1 +#define AREA_TRIGGERS 2 + + +// plane_t structure +// !!! if this is changed, it must be changed in asm code too !!! +typedef struct cplane_s +{ + vec3_t normal; + float dist; + byte type; // for fast side tests + byte signbits; // signx + (signy<<1) + (signz<<1) + byte pad[2]; + // Ridah + int spec_updateframe; // so we only do each plane once + int spec_updateframe_backface; + byte spec_render, spec_render_back; +} cplane_t; + +// structure offset for asm code +#define CPLANE_NORMAL_X 0 +#define CPLANE_NORMAL_Y 4 +#define CPLANE_NORMAL_Z 8 +#define CPLANE_DIST 12 +#define CPLANE_TYPE 16 +#define CPLANE_SIGNBITS 17 +#define CPLANE_PAD0 18 +#define CPLANE_PAD1 19 + +typedef struct cmodel_s +{ + vec3_t mins, maxs; + vec3_t origin; // for sounds or lights + int headnode; +} cmodel_t; + +typedef struct csurface_s +{ + char name[16]; + int flags; + int value; +} csurface_t; + +typedef struct mapsurface_s // used internally due to name len probs //ZOID +{ + csurface_t c; + char rname[32]; +} mapsurface_t; + +// a trace is returned when a box is swept through the world +typedef struct +{ + qboolean allsolid; // if true, plane is not valid + qboolean startsolid; // if true, the initial point was in a solid area + float fraction; // time completed, 1.0 = didn't hit anything + vec3_t endpos; // final position + cplane_t plane; // surface normal at impact + csurface_t *surface; // surface hit + int contents; // contents on other side of surface hit + struct edict_s *ent; // not set by CM_*() functions +} trace_t; + + + +// pmove_state_t is the information necessary for client side movement +// prediction +typedef enum +{ + // can accelerate and turn + PM_NORMAL, + PM_NORMAL_WITH_JETPACK, + + // Ridah, vehicles + PM_HOVERCAR, // flying hovercar + PM_HOVERCAR_GROUND, // grounded hovercar + PM_BIKE, // motorcycle + PM_CAR, // uses vehicle code + // done. + + PM_SPECTATOR, + // no acceleration or turning + PM_DEAD, + PM_GIB, // different bounding box + PM_FREEZE +} pmtype_t; + +// pmove->pm_flags +#define PMF_DUCKED 1 +#define PMF_JUMP_HELD 2 +#define PMF_ON_GROUND 4 +#define PMF_TIME_WATERJUMP 8 // pm_time is waterjump +#define PMF_TIME_LAND 16 // pm_time is time before rejump +#define PMF_TIME_TELEPORT 32 // pm_time is non-moving time +#define PMF_NO_PREDICTION 64 // temporarily disables prediction (used for grappling hook) + +// Ridah, chasecam +#define PMF_CHASECAM 128 + +// this structure needs to be communicated bit-accurate +// from the server to the client to guarantee that +// prediction stays in sync, so no floats are used. +// if any part of the game code modifies this struct, it +// will result in a prediction error of some degree. +typedef struct +{ + pmtype_t pm_type; + + short origin[3]; // 12.3 + short velocity[3]; // 12.3 + byte pm_flags; // ducked, jump_held, etc + byte pm_time; // each unit = 8 ms + short gravity; + short delta_angles[3]; // add to command angles to get view direction + // changed by spawns, rotating objects, and teleporters + + byte runscale; // Ridah, so we can mess with the running speed +} pmove_state_t; + + +// +// button bits +// +#define BUTTON_ATTACK 1 +#define BUTTON_USE 2 +#define BUTTON_ACTIVATE 4 // Joseph + +#define BUTTON_ANY 128 // any key whatsoever + + +// usercmd_t is sent to the server each client frame +typedef struct usercmd_s +{ + byte msec; + byte buttons; + short angles[3]; + short forwardmove, sidemove, upmove; + byte impulse; // remove? + byte lightlevel; // light level the player is standing on +} usercmd_t; + + +#define MAXTOUCH 32 +typedef struct +{ + // state (in / out) + pmove_state_t s; + + // command (in) + usercmd_t cmd; + qboolean snapinitial; // if s has been changed outside pmove + + // results (out) + int numtouch; + struct edict_s *touchents[MAXTOUCH]; + + vec3_t viewangles; // clamped + float viewheight; + + vec3_t mins, maxs; // bounding box size + + struct edict_s *groundentity; + int watertype; + int waterlevel; + + // callbacks to test the world + trace_t (*trace) (vec3_t start, vec3_t mins, vec3_t maxs, vec3_t end); + int (*pointcontents) (vec3_t point); + + // JOSEPH 1-SEP-98 + int footsteptype; + + // Ridah, bike collisions + int wall_collision; + +} pmove_t; + + +// entity_state_t->effects +// Effects are things handled on the client side (lights, particles, frame animations) +// that happen constantly on the given entity. +// An entity that has effects will be sent to the client +// even if it has a zero index model. +#define EF_ROTATE 0x00000001 // rotate (bonus items) +#define EF_GIB 0x00000002 // leave a trail +#define EF_BLASTER 0x00000008 // redlight + trail +#define EF_ROCKET 0x00000010 // redlight + trail +#define EF_GRENADE 0x00000020 +#define EF_HYPERBLASTER 0x00000040 +#define EF_BFG 0x00000080 +#define EF_COLOR_SHELL 0x00000100 +#define EF_POWERSCREEN 0x00000200 +#define EF_ANIM01 0x00000400 // automatically cycle between frames 0 and 1 at 2 hz +#define EF_ANIM23 0x00000800 // automatically cycle between frames 2 and 3 at 2 hz +#define EF_ANIM_ALL 0x00001000 // automatically cycle through all frames at 2hz +#define EF_ANIM_ALLFAST 0x00002000 // automatically cycle through all frames at 10hz +#define EF_FLIES 0x00004000 +#define EF_QUAD 0x00008000 +#define EF_PENT 0x00010000 +#define EF_TELEPORTER 0x00020000 // particle fountain +#define EF_FLAG1 0x00040000 +#define EF_FLAG2 0x00080000 +#define EF_IONRIPPER 0x00100000 +#define EF_FLASHLIGHT 0x00200000 +#define EF_BLUEHYPERBLASTER 0x00400000 +#define EF_SPINNINGLIGHTS 0x00800000 +#define EF_PLASMA 0x01000000 +#define EF_TRAP 0x02000000 +#define EF_REFL 0x04000000 +#define EF_FLAMETHROWER 0x08000000 +#define EF_ANIM_ALLFAST_NEW 0x10000000 // automatically cycle through all frames at 10hz + +// entity_state_t->renderfx flags +#define RF_MINLIGHT 1 // allways have some light (viewmodel) +#define RF_VIEWERMODEL 2 // don't draw through eyes, only mirrors +#define RF_WEAPONMODEL 4 // only draw through eyes +#define RF_FULLBRIGHT 8 // allways draw full intensity +#define RF_DEPTHHACK 16 // for view weapon Z crunching +#define RF_TRANSLUCENT 32 +#define RF_FRAMELERP 64 +#define RF_BEAM 128 +#define RF_CUSTOMSKIN 256 // skin is an index in image_precache +#define RF_GLOW 512 // pulse lighting for bonus items +#define RF_SHELL_RED 1024 +#define RF_SHELL_GREEN 2048 +#define RF_SHELL_BLUE 4096 +#define RF_REFL_MAP 8192 // (1<<13) +#define RF_FACING 16384 // (1<<14) +#define RF_FACINGUP 32768 // (1<<15) +// JOSEPH 21-JAN-99 +#define RF_DIMLIGHT (1<<16) // allways draw dim light intensity +// END JOSEPH + +// JOSEPH 20-MAY-99 +// 1 - 16 must check that RF2_PASSLIGHT is not set +#define RF2_FLAMESHOOTER 1 +#define RF2_FLAMESHOOTER_MOD 2 +#define RF2_MODULUS_FRAME 4 // if the frame is higher than the max, just do a MODULUS on it +#define RF2_8 8 +#define RF2_16 16 +// END JOSEPH + +#define RF2_ONLY_PARENTAL_LOCKED 32 // Ridah, this entity is visible only to clients who have the parental lock ENABLED (ie. if a player is gibbed, the body remains in the game, but is only visible to client's who can't see the gibs, since they are parental locked) +#define RF2_SCALE50 64 // .5 +#define RF2_SCALE25 128 // .25 + +#define RF2_MONEYBAG 256 // used for Teamplay, shows a moneybag on the player's back, automatically animated +#define RF2_SURF_ALPHA 512 +#define RF2_DIR_LIGHTS 1024 // Uses new directional lighting code +#define RF2_FLAMETHROWER 2048 // client-side flamthrower effects (damage done in game code) +#define RF2_PASSALPHA 4096 +#define RF2_NOSHADOW 8192 +#define RF2_BEAM2 16384 +#define RF2_PASSLIGHT 32768 + + +// player_state_t->refdef flags +#define RDF_UNDERWATER 1 // warp the screen as apropriate +#define RDF_NOWORLDMODEL 2 // used for player configuration screen + +#define RDF_PAUSED 4 // Ridah, so renderer knows if it's paused + +// RAFAEL +#define RDF_NOLERP 8 +#define RDF_SKINPLUS 16 +#define RDF_SKINPLUSPLUS 32 + +// JOSEPH 14-JAN-99 +#define RDF_NOWORLDMODELALPHA 64 // used for inventory screen + +// +// muzzle flashes / player effects +// +#define MZ_BLASTER 0 +#define MZ_MACHINEGUN 1 +#define MZ_SHOTGUN 2 +#define MZ_CHAINGUN1 3 +#define MZ_CHAINGUN2 4 +#define MZ_CHAINGUN3 5 +#define MZ_RAILGUN 6 +#define MZ_ROCKET 7 +#define MZ_GRENADE 8 +#define MZ_LOGIN 9 +#define MZ_LOGOUT 10 +#define MZ_RESPAWN 11 +#define MZ_BFG 12 +#define MZ_SSHOTGUN 13 +#define MZ_HYPERBLASTER 14 +#define MZ_ITEMRESPAWN 15 +// RAFAEL +#define MZ_IONRIPPER 16 +#define MZ_BLUEHYPERBLASTER 17 +#define MZ_PHALANX 18 +#define MZ_PISTOL 19 + + +#define MZ_BLACKJACK_SWING 20 +#define MZ_BLACKJACK_HIT 21 + +#define MZ_SPISTOL 22 +#define MZ_PISTOL_DAMAGE_MOD 23 + +// JOSEPH 19-JAN-99 +#define MZ_CROWBAR_SWING 24 +#define MZ_CROWBAR_HIT 25 +// END JOSEPH + +#define MZ_BARMACHINEGUN 26 +#define MZ_BARMACHINEGUN2 27 + +#define MZ_SILENCED 128 // bit flag ORed with one of the above numbers + +// +// monster muzzle flashes +// +#define MZ2_TANK_BLASTER_1 1 +#define MZ2_TANK_BLASTER_2 2 +#define MZ2_TANK_BLASTER_3 3 +#define MZ2_TANK_MACHINEGUN_1 4 +#define MZ2_TANK_MACHINEGUN_2 5 +#define MZ2_TANK_MACHINEGUN_3 6 +#define MZ2_TANK_MACHINEGUN_4 7 +#define MZ2_TANK_MACHINEGUN_5 8 +#define MZ2_TANK_MACHINEGUN_6 9 +#define MZ2_TANK_MACHINEGUN_7 10 +#define MZ2_TANK_MACHINEGUN_8 11 +#define MZ2_TANK_MACHINEGUN_9 12 +#define MZ2_TANK_MACHINEGUN_10 13 +#define MZ2_TANK_MACHINEGUN_11 14 +#define MZ2_TANK_MACHINEGUN_12 15 +#define MZ2_TANK_MACHINEGUN_13 16 +#define MZ2_TANK_MACHINEGUN_14 17 +#define MZ2_TANK_MACHINEGUN_15 18 +#define MZ2_TANK_MACHINEGUN_16 19 +#define MZ2_TANK_MACHINEGUN_17 20 +#define MZ2_TANK_MACHINEGUN_18 21 +#define MZ2_TANK_MACHINEGUN_19 22 +#define MZ2_TANK_ROCKET_1 23 +#define MZ2_TANK_ROCKET_2 24 +#define MZ2_TANK_ROCKET_3 25 + +#define MZ2_INFANTRY_MACHINEGUN_1 26 +#define MZ2_INFANTRY_MACHINEGUN_2 27 +#define MZ2_INFANTRY_MACHINEGUN_3 28 +#define MZ2_INFANTRY_MACHINEGUN_4 29 +#define MZ2_INFANTRY_MACHINEGUN_5 30 +#define MZ2_INFANTRY_MACHINEGUN_6 31 +#define MZ2_INFANTRY_MACHINEGUN_7 32 +#define MZ2_INFANTRY_MACHINEGUN_8 33 +#define MZ2_INFANTRY_MACHINEGUN_9 34 +#define MZ2_INFANTRY_MACHINEGUN_10 35 +#define MZ2_INFANTRY_MACHINEGUN_11 36 +#define MZ2_INFANTRY_MACHINEGUN_12 37 +#define MZ2_INFANTRY_MACHINEGUN_13 38 + +#define MZ2_SOLDIER_BLASTER_1 39 +#define MZ2_SOLDIER_BLASTER_2 40 +#define MZ2_SOLDIER_SHOTGUN_1 41 +#define MZ2_SOLDIER_SHOTGUN_2 42 +#define MZ2_SOLDIER_MACHINEGUN_1 43 +#define MZ2_SOLDIER_MACHINEGUN_2 44 + +#define MZ2_GUNNER_MACHINEGUN_1 45 +#define MZ2_GUNNER_MACHINEGUN_2 46 +#define MZ2_GUNNER_MACHINEGUN_3 47 +#define MZ2_GUNNER_MACHINEGUN_4 48 +#define MZ2_GUNNER_MACHINEGUN_5 49 +#define MZ2_GUNNER_MACHINEGUN_6 50 +#define MZ2_GUNNER_MACHINEGUN_7 51 +#define MZ2_GUNNER_MACHINEGUN_8 52 +#define MZ2_GUNNER_GRENADE_1 53 +#define MZ2_GUNNER_GRENADE_2 54 +#define MZ2_GUNNER_GRENADE_3 55 +#define MZ2_GUNNER_GRENADE_4 56 + +#define MZ2_CHICK_ROCKET_1 57 + +#define MZ2_FLYER_BLASTER_1 58 +#define MZ2_FLYER_BLASTER_2 59 + +#define MZ2_MEDIC_BLASTER_1 60 + +#define MZ2_GLADIATOR_RAILGUN_1 61 + +#define MZ2_HOVER_BLASTER_1 62 + +#define MZ2_ACTOR_MACHINEGUN_1 63 + +#define MZ2_SUPERTANK_MACHINEGUN_1 64 +#define MZ2_SUPERTANK_MACHINEGUN_2 65 +#define MZ2_SUPERTANK_MACHINEGUN_3 66 +#define MZ2_SUPERTANK_MACHINEGUN_4 67 +#define MZ2_SUPERTANK_MACHINEGUN_5 68 +#define MZ2_SUPERTANK_MACHINEGUN_6 69 +#define MZ2_SUPERTANK_ROCKET_1 70 +#define MZ2_SUPERTANK_ROCKET_2 71 +#define MZ2_SUPERTANK_ROCKET_3 72 + +#define MZ2_BOSS2_MACHINEGUN_L1 73 +#define MZ2_BOSS2_MACHINEGUN_L2 74 +#define MZ2_BOSS2_MACHINEGUN_L3 75 +#define MZ2_BOSS2_MACHINEGUN_L4 76 +#define MZ2_BOSS2_MACHINEGUN_L5 77 +#define MZ2_BOSS2_ROCKET_1 78 +#define MZ2_BOSS2_ROCKET_2 79 +#define MZ2_BOSS2_ROCKET_3 80 +#define MZ2_BOSS2_ROCKET_4 81 + +#define MZ2_FLOAT_BLASTER_1 82 + +#define MZ2_SOLDIER_BLASTER_3 83 +#define MZ2_SOLDIER_SHOTGUN_3 84 +#define MZ2_SOLDIER_MACHINEGUN_3 85 +#define MZ2_SOLDIER_BLASTER_4 86 +#define MZ2_SOLDIER_SHOTGUN_4 87 +#define MZ2_SOLDIER_MACHINEGUN_4 88 +#define MZ2_SOLDIER_BLASTER_5 89 +#define MZ2_SOLDIER_SHOTGUN_5 90 +#define MZ2_SOLDIER_MACHINEGUN_5 91 +#define MZ2_SOLDIER_BLASTER_6 92 +#define MZ2_SOLDIER_SHOTGUN_6 93 +#define MZ2_SOLDIER_MACHINEGUN_6 94 +#define MZ2_SOLDIER_BLASTER_7 95 +#define MZ2_SOLDIER_SHOTGUN_7 96 +#define MZ2_SOLDIER_MACHINEGUN_7 97 +#define MZ2_SOLDIER_BLASTER_8 98 +#define MZ2_SOLDIER_SHOTGUN_8 99 +#define MZ2_SOLDIER_MACHINEGUN_8 100 + +// --- Xian shit below --- +#define MZ2_MAKRON_BFG 101 +#define MZ2_MAKRON_BLASTER_1 102 +#define MZ2_MAKRON_BLASTER_2 103 +#define MZ2_MAKRON_BLASTER_3 104 +#define MZ2_MAKRON_BLASTER_4 105 +#define MZ2_MAKRON_BLASTER_5 106 +#define MZ2_MAKRON_BLASTER_6 107 +#define MZ2_MAKRON_BLASTER_7 108 +#define MZ2_MAKRON_BLASTER_8 109 +#define MZ2_MAKRON_BLASTER_9 110 +#define MZ2_MAKRON_BLASTER_10 111 +#define MZ2_MAKRON_BLASTER_11 112 +#define MZ2_MAKRON_BLASTER_12 113 +#define MZ2_MAKRON_BLASTER_13 114 +#define MZ2_MAKRON_BLASTER_14 115 +#define MZ2_MAKRON_BLASTER_15 116 +#define MZ2_MAKRON_BLASTER_16 117 +#define MZ2_MAKRON_BLASTER_17 118 +#define MZ2_MAKRON_RAILGUN_1 119 +#define MZ2_JORG_MACHINEGUN_L1 120 +#define MZ2_JORG_MACHINEGUN_L2 121 +#define MZ2_JORG_MACHINEGUN_L3 122 +#define MZ2_JORG_MACHINEGUN_L4 123 +#define MZ2_JORG_MACHINEGUN_L5 124 +#define MZ2_JORG_MACHINEGUN_L6 125 +#define MZ2_JORG_MACHINEGUN_R1 126 +#define MZ2_JORG_MACHINEGUN_R2 127 +#define MZ2_JORG_MACHINEGUN_R3 128 +#define MZ2_JORG_MACHINEGUN_R4 129 +#define MZ2_JORG_MACHINEGUN_R5 130 +#define MZ2_JORG_MACHINEGUN_R6 131 +#define MZ2_JORG_BFG_1 132 +#define MZ2_BOSS2_MACHINEGUN_R1 133 +#define MZ2_BOSS2_MACHINEGUN_R2 134 +#define MZ2_BOSS2_MACHINEGUN_R3 135 +#define MZ2_BOSS2_MACHINEGUN_R4 136 +#define MZ2_BOSS2_MACHINEGUN_R5 137 + +// JOSEPH 2-SEP-98 +#define MZ3_LEADHIT_METAL 1 + +extern vec3_t monster_flash_offset []; + +// ---------------------------------------------------------------- +// Ridah, Surface Sprite Effects +#define SFX_SPRITE_SURF_BLOOD1 0 +#define SFX_SPRITE_SURF_BULLET1 1 +#define SFX_SPRITE_SURF_RIPPLE 2 +#define SFX_SPRITE_SURF_BLOOD_POOL 5 + +// need these for each SFX_SPRITE_SURF, so the engine knows what dimensions they are +#define SFX_BLOOD_WIDTH 16 +#define SFX_BLOOD_HEIGHT 16 +#define SFX_BULLET_WIDTH 1 +#define SFX_BULLET_HEIGHT 1 +#define SFX_RIPPLE_WIDTH 8 +#define SFX_RIPPLE_HEIGHT 8 + +// SFX flags +#define SFX_FLAG_GRAVITY 1 // velocity is effected by gravity +#define SFX_FLAG_SURFACE_EFFECT 2 // this is a surface effect, therefore velocity is the surface normal, and sprite will use alpha = 1 for "fadein_time" +#define SFX_FLAG_NO_FLIP 4 // this SFX won't have it's S coordinate randomly flipped +#define SFX_FLAG_LIGHTFLARE 8 // no depth checking, align with view +#define SFX_FLAG_DEPTHHACK 16 +#define SFX_FLAG_UPRIGHT 32 // used for fire in barrel +#define SFX_FLAG_VEL_IS_ANGLES 64 +#define SFX_FLAG_ADDITIVE_BLEND 128 +#define SFX_FLAG_ALPHA_IS_FRAME 256 +#define SFX_FLAG_VEL_IS_COLOR_MODULATION 512 +#define SFX_FLAG_CLOSE_CULL 1024 + +#define SFX_GRAVITY 100.0 // gravity value for all SFX effected by gravity + +// temp entity events +// +// Temp entity events are for things that happen +// at a location seperate from any existing entity. +// Temporary entity messages are explicitly constructed +// and broadcast. +typedef enum +{ + TE_GUNSHOT, + TE_GUNSHOT_VISIBLE, + TE_BLOOD, + TE_BLASTER, + TE_RAILTRAIL, + TE_SHOTGUN, + TE_EXPLOSION1, + TE_EXPLOSION2, + TE_ROCKET_EXPLOSION, + TE_GRENADE_EXPLOSION, + TE_METAL_SPARKS, + TE_SPARKS, + TE_SPLASH, + TE_BUBBLETRAIL, + TE_SCREEN_SPARKS, + TE_SHIELD_SPARKS, + TE_BULLET_SPARKS, + TE_LASER_SPARKS, + TE_PARASITE_ATTACK, + TE_ROCKET_EXPLOSION_WATER, + TE_GRENADE_EXPLOSION_WATER, + TE_MEDIC_CABLE_ATTACK, + TE_BFG_EXPLOSION, + TE_BFG_BIGEXPLOSION, + TE_BOSSTPORT, // used as '22' in a map, so DON'T RENUMBER!!! + TE_BFG_LASER, + TE_GRAPPLE_CABLE, + // RAFAEL + TE_WELDING_SPARKS, + TE_GREENBLOOD, + TE_BLUEHYPERBLASTER, + TE_PLASMA_EXPLOSION, + TE_TUNNEL_SPARKS, + // JOSEPH 30-AUG-98 + TE_SFXFIRE, + TE_SFXSMOKE, + TE_SFXFIREGO, + TE_SUN_FLARE, + TE_GUN_FLARE, + TE_SNOW, + TE_RAIN, + // END JOSEPH + TE_LIGHT_FLARE, + // Ridah, Surface Sprites + // RAFAEL + TE_BLOOD_DRIP, + TE_BLOOD_SPLAT, + TE_BLOOD_POOL, + TE_SURFACE_SPRITE_ENTITY, + TE_BURN_TO_A_CRISP, + // JOSEPH 18-FEB-99 + TE_CONCUSSION_EXPLOSION, + TE_CONCUSSION_EXPLOSION_WATER, + TE_EXPLOSION1B, + // END JOSEPH + // JOSEPH 1-MAR-99 + TE_IMPACT, + TE_EXPLOSION1C, + // END JOSEPH + // JOSEPH 19-FEB-99 + TE_SFXSTEAM, + // END JOSEPH + // JOSEPH 3-MAR-99 + TE_SFXSMOKE2, + // END JOSEPH + // JOSEPH 2-APR-99 + TE_IMPACT_CONCUSSION, + // END JOSEPH + TE_ART_BURN, // used to mark surfaces by artists + TE_FOG_BRUSH, + TE_GIBS, + TE_CONCUSSION_EXPLOSION_BIG, + // JOSEPH 9-APR-99 + TE_BARMACHINGUN, + TE_SFXFIRET + // END JOSEPH +} temp_event_t; + +#define SPLASH_UNKNOWN 0 +#define SPLASH_SPARKS 1 +#define SPLASH_BLUE_WATER 2 +#define SPLASH_BROWN_WATER 3 +#define SPLASH_SLIME 4 +#define SPLASH_LAVA 5 +#define SPLASH_BLOOD 6 +// JOSEPH 17-MAY-99 +#define SPLASH_SPARKS_P 7 +// END JOSEPH + +// sound channels +// channel 0 never willingly overrides +// other channels (1-7) allways override a playing sound on that channel +#define CHAN_AUTO 0 +#define CHAN_WEAPON 1 +#define CHAN_VOICE 2 +#define CHAN_ITEM 3 +#define CHAN_BODY 4 +#define CHAN_SPECIAL 5 +// modifier flags +#define CHAN_NO_PHS_ADD 8 // send to all clients, not just ones in PHS (ATTN 0 will also do this) +#define CHAN_RELIABLE 16 // send by reliable message, not datagram + + +// sound attenuation values +#define ATTN_NONE 0 // full volume the entire level +#define ATTN_NORM 1 +#define ATTN_IDLE 2 +#define ATTN_STATIC 3 // diminish very rapidly with distance + + +// player_state->stats[] indexes +#define STAT_CASH_PICKUP 0 +#define STAT_HEALTH 1 +#define STAT_AMMO_ICON 2 +#define STAT_AMMO 3 + +#define STAT_ARMOR1 4 //previous STAT_ARMOR_ICON +#define STAT_ARMOR2 5 //previous STAT_ARMOR +#define STAT_ARMOR3 6 //previous STAT_SELECTED_ICON + +#define STAT_PICKUP_ICON 7 +#define STAT_PICKUP_STRING 8 +// JOSEPH 12-MAY-99-B +#define STAT_ENDPIC 9 //previous STAT_TIMER_ICON +// END JOSEPH +#define STAT_TIMER 10 +#define STAT_HELPICON 11 +#define STAT_SELECTED_ITEM 12 +#define STAT_LAYOUTS 13 +#define STAT_FRAGS 14 +#define STAT_FLASHES 15 // cleared each frame, 1 = health, 2 = armor +#define STAT_CASH 16 +#define STAT_PICKUP_COUNT 17 + +// RAFAEL 01-11-99 +#define STAT_CLIP 18 +#define STAT_CLIP_ICON 19 + +// JOSEPH 26-JAN-99 +#define STAT_HUD_INV 20 +// END JOSEPH + +// Following are duplicated for deathmatch, so beware if changing! +#define STAT_HUD_ENEMY_TALK 21 +#define STAT_HUD_SELF_TALK 22 +#define STAT_HUD_ENEMY_TALK_TIME 23 +#define STAT_HUD_SELF_TALK_TIME 24 +#define STAT_FORCE_HUD 25 + +#define STAT_HUD_HIRE1 26 +#define STAT_HUD_HIRE2 27 +#define STAT_HUD_HIRE1_CMD 28 +#define STAT_HUD_HIRE2_CMD 29 + +// Ridah, duplicated these for use in teamplay, since they aren't used at all in multiplay +#define STAT_BAGCASH 21 +#define STAT_DEPOSITED 22 +//#define STAT_HUD_ENEMY_TALK_TIME 23 +//#define STAT_HUD_SELF_TALK_TIME 24 + +#define STAT_TEAM1_SCORE 26 +#define STAT_TEAM2_SCORE 27 +#define STAT_TEAM1_FLASH 28 // 0 - no flash, 1 - green, 2 - red +#define STAT_TEAM2_FLASH 29 // 0 - no flash, 1 - green, 2 - red +// done. + + +#define STAT_HIDE_HUD 30 +#define STAT_SWITCH_CAMERA 31 +#define MAX_STATS 32 + + +// dmflags->value flags +// Ridah, 26-may-99, disabled those that are not used in Kingpin +#define DF_NO_HEALTH 1 + +// Ridah, 27-may-99, Not used anymore +//#define DF_NO_ITEMS 2 +#define DF_AUTO_JOIN_TEAM 2 + +#define DF_WEAPONS_STAY 4 +#define DF_NO_FALLING 8 + +// Ridah, 27-may-99, not used +//#define DF_INSTANT_ITEMS 16 + +#define DF_SAME_LEVEL 32 + +// Ridah, 27-may-99, not used (teams determined by model and skin +//#define DF_SKINTEAMS 64 + +#define DF_MODELTEAMS 128 +#define DF_NO_FRIENDLY_FIRE 256 +#define DF_SPAWN_FARTHEST 512 +#define DF_FORCE_RESPAWN 1024 +#define DF_NO_ARMOR 2048 +#define DF_ALLOW_EXIT 4096 +#define DF_INFINITE_AMMO 8192 + +// Ridah, 27-may-99, not used +//#define DF_QUAD_DROP 16384 + +#define DF_FIXED_FOV 32768 + +// Ridah, 27-may-99, not used +//#define DF_QUADFIRE_DROP 65536 + +/* +========================================================== + + ELEMENTS COMMUNICATED ACROSS THE NET + +========================================================== +*/ + +#define ANGLE2SHORT(x) ((int)((x)*65536/360) & 65535) +#define SHORT2ANGLE(x) ((x)*(360.0/65536)) + + +// +// config strings are a general means of communication from +// the server to all connected clients. +// Each config string can be at most MAX_QPATH characters. +// +#define CS_NAME 0 +#define CS_CDTRACK 1 + +#define CS_DENSITY 2 +#define CS_FOGVAL 3 + +#define CS_DENSITY2 4 +#define CS_FOGVAL2 5 + +#define CS_SKY 6 +#define CS_STATUSBAR 7 // display program string + +// RAFAEL +//#define CS_SKYBOX_ORIGIN 10 +/* +#define CS_SKY 2 +#define CS_SKYAXIS 3 // %f %f %f format +#define CS_SKYROTATE 4 +#define CS_STATUSBAR 5 // display program string +*/ + +#define CS_SERVER_VERSION 29 // so new clients can decide which version of download code to use + +#define CS_MAXCLIENTS 30 +#define CS_MAPCHECKSUM 31 // for catching cheater maps + +#define CS_MODELS 32 +#define CS_SOUNDS (CS_MODELS+MAX_MODELS) +#define CS_IMAGES (CS_SOUNDS+MAX_SOUNDS) +#define CS_MODELSKINS (CS_IMAGES+MAX_IMAGES) +#define CS_LIGHTS (CS_MODELSKINS+MAX_MODELS) +#define CS_ITEMS (CS_LIGHTS+MAX_LIGHTSTYLES) +#define CS_PLAYERSKINS (CS_ITEMS+MAX_ITEMS) +#define CS_LIGHTFLARES (CS_PLAYERSKINS+MAX_CLIENTS) +#define CS_JUNIORS (CS_LIGHTFLARES+MAX_LIGHTFLARES) +#define CS_GENERAL (CS_JUNIORS+MAX_JUNIOR_STRINGS) +#define MAX_CONFIGSTRINGS (CS_GENERAL+MAX_GENERAL) + + +// Ridah, Lightflares +#define FLARE_NORMAL 0 +#define FLARE_SUN 1 // pos is actually the direction vector +#define FLARE_AMBER 2 +#define FLARE_RED 3 +#define FLARE_BLUE 4 +#define FLARE_GREEN 5 + +typedef struct +{ + char lightstyle, type; + vec3_t pos; + float size; +} lightflare_t; + +/* +typedef struct +{ + char showflare; + vec3_t origin; + vec3_t angles; +} sunflare_t; +*/ + +char num_flares; // this also goes into the configstring, at the start of the lightflare section +// done. + +//============================================== + + +// entity_state_t->event values +// ertity events are for effects that take place reletive +// to an existing entities origin. Very network efficient. +// All muzzle flashes really should be converted to events... + +// JOSEPH 1-SEP-98 +typedef enum +{ + EV_NONE, + EV_ITEM_RESPAWN, + EV_FOOTSTEP0, + EV_FOOTSTEP1, + EV_FOOTSTEP2, + EV_FOOTSTEP3, + EV_FOOTSTEP4, + EV_FOOTSTEP5, + EV_FOOTSTEP6, + EV_FOOTSTEP7, + // JOSEPH 26-JAN-99 + EV_FOOTSTEP8, + // END JOSEPH + EV_FALLSHORT0, + EV_FALLSHORT1, + EV_FALLSHORT2, + EV_FALLSHORT3, + EV_FALLSHORT4, + EV_FALLSHORT5, + EV_FALLSHORT6, + EV_FALLSHORT7, + // JOSEPH 26-JAN-99 + EV_FALLSHORT8, + // END JOSEPH + EV_FALL, + EV_FALLFAR, + EV_PLAYER_TELEPORT, + EV_OTHER_TELEPORT +} entity_event_t; +// END JOSEPH + +// JOSEPH 18-FEB-99 +typedef enum +{ + TT_NONE = 0, + TT_POSITIVE, + TT_FIGHT, + TT_NEGATIVE, + TT_QUESTION, + TT_NEUTRAL, + TT_NEWHUD, + TT_NO, + TT_YES, + TT_COMMAND, +} talk_tone; +// END JOSEPH + +// Ridah, MDX +typedef struct +{ + vec3_t mins, maxs; +} object_bounds_t; + +#define MAX_MODEL_PARTS 8 // must change network code to increase this (also savegame code) +#define MAX_MODELPART_OBJECTS 8 // absolutely do not change, bound by "invisible_objects" bit-flags + +typedef struct model_part_s +{ +// Ridah, MDX, ENABLE the following line when .mdx system goes online + int modelindex; // leave as 0 if blank + +// int invisible_objects; // bit flags that define which sub-parts NOT to display when SET + byte invisible_objects; // bit flags that define which sub-parts NOT to display when SET + byte skinnum[MAX_MODELPART_OBJECTS]; + + // server-only data used for collision detection, etc + int object_bounds[MAX_MODELPART_OBJECTS]; // read in and allocated immediately after setting the modelindex + char *objectbounds_filename; // so we can restore the object bounds data when loading a savegame + + int baseskin; + byte hitpoints[MAX_MODELPART_OBJECTS]; + byte hit_scale[MAX_MODELPART_OBJECTS]; // 0-250 +} model_part_t; +// done. + +// entity_state_t is the information conveyed from the server +// in an update message about entities that the client will +// need to render in some way + +#define MAX_MODEL_DIR_LIGHTS 3 // bound to 8 by network code + +typedef struct +{ + int light_indexes[MAX_MODEL_DIR_LIGHTS]; // so we can tell the client to use a certain light index, and it knows the details for that light + + vec3_t light_vecs[MAX_MODEL_DIR_LIGHTS]; // static light directions that touch this model (dynamic are added in ref_gl) + vec3_t light_colors[MAX_MODEL_DIR_LIGHTS]; + float light_intensities[MAX_MODEL_DIR_LIGHTS]; // 0.0 -> 1.0 + byte light_styles[MAX_MODEL_DIR_LIGHTS]; + int num_dir_lights; + + // below this doesn't get sent to client (only used at server side) + vec3_t light_orgs[MAX_MODEL_DIR_LIGHTS]; + +} model_lighting_t; + +// Ridah, flamethrower +typedef struct flamejunc_s +{ + vec3_t org, vel; + float start_width, end_width, start_height, end_height; + float lifetime, fadein_time; + float start_alpha, end_alpha; + + // current values + float aged, alpha; + float width, height; + + vec3_t unitvel; + int hit_wall; + + struct flamejunc_s *next; +} flamejunc_t; + +typedef struct entity_state_s +{ + int number; // edict index + + vec3_t origin; + vec3_t angles; + vec3_t old_origin; // for lerping + int modelindex; +// int modelindex2, modelindex3, modelindex4; // weapons, CTF flags, etc + int frame; + int skinnum; + int effects; + int renderfx; + int solid; // for client side prediction, 8*(bits 0-4) is x/y radius + // 8*(bits 5-9) is z down distance, 8(bits10-15) is z up + // gi.linkentity sets this properly + int sound; // for looping sounds, to guarantee shutoff + int event; // impulse events -- muzzle flashes, footsteps, etc + // events only go out for a single frame, they + // are automatically cleared each frame + + int renderfx2; + + // Ridah, MDX, making way for .mdx system.. + int num_parts; + model_part_t model_parts[MAX_MODEL_PARTS]; + // done. + + // Ridah, new lighting data + model_lighting_t model_lighting; + + vec3_t last_lighting_update_pos; // so we only calculate when a good distance from the last checked position + vec3_t last_lighting_vec_update_pos; // set when we update the vecs + + // Ridah, flamethrower (only used on client-side) + flamejunc_t *flamejunc_head; + // JOSEPH 15-APR-99 + flamejunc_t *flamejunc_head2; + // END JOSEPH + int last_time, prev_last_time; // time of last call to CL_FlameEffects() for this entity + byte broken_flag; // set if we release the trigger, so next time we fire, we can free all current flames + + float alpha; // set in CL_AddPacketEntities() from entity_state->effects + + float scale; // ranges from 0.0 -> 2.0 + +} entity_state_t; + +//============================================== + + +// player_state_t is the information needed in addition to pmove_state_t +// to rendered a view. There will only be 10 player_state_t sent each second, +// but the number of pmove_state_t changes will be reletive to client +// frame rates +typedef struct +{ + pmove_state_t pmove; // for prediction + + // these fields do not need to be communicated bit-precise + + vec3_t viewangles; // for fixed views + vec3_t viewoffset; // add to pmovestate->origin + vec3_t kick_angles; // add to view direction to get render angles + // set by weapon kicks, pain effects, etc + + vec3_t gunangles; + vec3_t gunoffset; + int gunindex; + int gunframe; + + float blend[4]; // rgba full screen effect + + float fov; // horizontal field of view + + int rdflags; // refdef flags + + short stats[MAX_STATS]; // fast status bar updates + + // RAFAEL + // weapon mdx + int num_parts; + model_part_t model_parts[MAX_MODEL_PARTS]; + + int weapon_usage; + +} player_state_t; diff --git a/gamesrc/VEHICLES.C b/gamesrc/VEHICLES.C new file mode 100644 index 0000000..654e360 --- /dev/null +++ b/gamesrc/VEHICLES.C @@ -0,0 +1,687 @@ +//====================================================================== +// Vehicle Physics/Simulation + +#include "g_local.h" +#include "veh_defs.h" + + +/* +Veh_ProcessFrame + + Handles everything from input acceleration/braking, through world physics and dynamics. +*/ +void Veh_ProcessFrame( edict_t *ent, usercmd_t *ucmd, pmove_t *pm ) +{ + vehicle_t *vehicle; + + // find the vehicle structure + + if (ent->vehicle_index) + { + vehicle = &global_vehicles[ent->vehicle_index - 1]; + } + else // need to assign them one + { + int i; + for (i=0; i< MAX_VEHICLES; i++) + { + if (!global_vehicles[i].driver) + { + vehicle = &global_vehicles[i]; + ent->vehicle_index = i + 1; + + vehicle->driver = ent; + + // this will eventually be setup inside the map, but for now just do it here + vehicle->def = &vehicle_defines[0]; + + Veh_InitVehicle( vehicle ); + } + } + } + + + VectorCopy( vehicle->origin, vehicle->oldorigin ); + VectorCopy( vehicle->angles, vehicle->oldangles ); + + + // Process the controls + Veh_ProcessControls( vehicle, ucmd ); + + + // Set steering avelocity + Veh_SetSteeringAngleVelocity( vehicle ); + + // Do Angular Velocities + Veh_PerformAngleVelocity( vehicle, 0.001 * ((float)ucmd->msec), pm ); + + + // Move the vehicle according to it's velocity + Veh_PerformMove( vehicle, pm ); + + + // Examine movement, adjusting velocity accordingly + + + // Set the position of the owner to the middle of the front and rear positions, with angles: + + // PITCH: according to front/rear positions + // ROLL: use interpolated roll angles from downward traces at each wheel(??) + + + // Show the vehicle + Veh_PositionModels( vehicle ); +} + +/* +================== +Veh_InitVehicle + + Initializes a vehicle ready for placing into the game +================== +*/ +void Veh_InitVehicle ( vehicle_t *vehicle ) +{ + + vehicle->front_traction = 1.0; + vehicle->rear_traction = 1.0; + + vehicle->front_weight_ratio = 0.5; + + vehicle->front_onground = true; + vehicle->rear_onground = true; + + VectorClear( vehicle->velocity ); + VectorClear( vehicle->avelocity ); + VectorCopy( vehicle->driver->s.origin, vehicle->origin ); + VectorCopy( vehicle->driver->s.angles, vehicle->angles ); + + vehicle->gear = 1; // neutral + vehicle->rpm = 0; + vehicle->throttle = 0; + vehicle->steer_yaw = 0; + + vehicle->fl = G_Spawn(); + vehicle->fl->s.modelindex = gi.modelindex( vehicle->def->wheel_model ); + vehicle->fr = G_Spawn(); + vehicle->fr->s.modelindex = gi.modelindex( vehicle->def->wheel_model ); + vehicle->rl = G_Spawn(); + vehicle->rl->s.modelindex = gi.modelindex( vehicle->def->wheel_model ); + vehicle->rr = G_Spawn(); + vehicle->rr->s.modelindex = gi.modelindex( vehicle->def->wheel_model ); +} + +/* +===================== +Veh_ProcessControls + + Process all inputs and adjust velocities and traction levels +===================== +*/ +void Veh_ProcessControls ( vehicle_t *vehicle, usercmd_t *ucmd ) +{ + +#define THROTTLE_ACCELERATION 20000.0 // increase this amount per second +#define THROTTLE_DECCELERATION 20000.0 +#define STEERING_ACCELERATION 75.0 + + float throttle_add, throttle_ideal, throttle_max, throttle_rate; + float steering_ideal, steering_add, steering_max, steer_rate; + vec3_t forward, unit_vel; + float frametime; + float current_speed; + float new_rpm; + + float wheel_torque, max_wheel_torque; + float ideal_speed, rear_speed; + + float accel_force = 0; // force applied by ground + float accel_speed = 0; // transferred velocity increase to vehicle + + + AngleVectors( vehicle->angles, forward, NULL, NULL ); + + if (vehicle->velocity[0] || vehicle->velocity[1] || vehicle->velocity[2]) + { + current_speed = VectorNormalize2( vehicle->velocity, unit_vel ); + } + else + { + VectorCopy( forward, unit_vel ); + current_speed = 0; + } + + frametime = (0.001 * ucmd->msec); + + + // adjust throttle + + throttle_ideal = ((float)(ucmd->forwardmove) / 400.0) * (THROTTLE_MAX - IDLE_THROTTLE) + IDLE_THROTTLE; + + if (throttle_ideal < 0) + throttle_ideal = 0; // TODO: this would be brakes + + throttle_add = throttle_ideal - vehicle->throttle; + + if ((throttle_add < 0) && (ucmd->forwardmove >= 0) && (vehicle->gear == 1)) + throttle_rate = THROTTLE_DECCELERATION; + else + throttle_rate = THROTTLE_ACCELERATION; + + if (fabs( throttle_add ) > (throttle_max = (throttle_rate * frametime) ) ) + { + if (throttle_add < 0) + throttle_add = -throttle_max; + else + throttle_add = throttle_max; + } + + vehicle->throttle = vehicle->throttle + throttle_add; + + Veh_Debug( "Thr=%4i ", (int)vehicle->throttle ); + + // adjust steering + + steering_ideal = -((float)(ucmd->sidemove) / 400.0) * vehicle->def->max_steer * (0.5 + 0.5 * ((VEH_MAX_SPEED - current_speed) / VEH_MAX_SPEED)); + + // turn faster if changing directions + steer_rate = STEERING_ACCELERATION; + + if (steering_ideal == 0) + steer_rate *= 2; + + if (steering_ideal < 0) + { + if (vehicle->steer_yaw > 0) + steer_rate *= 2; + } + else + { + if (vehicle->steer_yaw < 0) + steer_rate *= 2; + } + + steering_add = steering_ideal - vehicle->steer_yaw; + + if (fabs( steering_add ) > (steering_max = (steer_rate * frametime) ) ) + { + if (steering_add < 0) + steering_add = -steering_max; + else + steering_add = steering_max; + } + + vehicle->steer_yaw += steering_add; + + Veh_Debug( "Str=%2i ", (int)vehicle->steer_yaw ); + + + Veh_Debug( "G=%s ", vehicle->def->gearbox->gears[vehicle->gear].name ); + + // Do engine acceleration + +// if (vehicle->throttle > vehicle->rpm) + { + + // Get the new engine RPM, which is effected by the current throttle, and drivetrain resistance + + if (vehicle->def->gearbox->gears[vehicle->gear].ratio) // current gear isn't neutral + { + + // Get the "force" applied by the acceleration on the drivetrain + // We use this to determine whether or not the rear wheels will hold traction + + // get the amount of torque applied at the rear wheels + + wheel_torque = Veh_WheelTorqueAtRPM( vehicle, vehicle->throttle - vehicle->rpm ); + + Veh_Debug( "Tw=%i ", (int)wheel_torque ); + + + // get the maximum amount of torque the rear wheels will take + + max_wheel_torque = + + (1.0 - vehicle->front_weight_ratio) + * (vehicle->def->weight * KG_TO_LBS) + * ((vehicle->rear_traction + 1.0) / 2.0); + + Veh_Debug( "TwM=%i ", (int)max_wheel_torque ); + + + // get the speed we should be doing at the new rpm + + ideal_speed = Veh_SpeedAtRPM( vehicle, vehicle->throttle ); + + Veh_Debug( "iSpd=%i ", (int)ideal_speed ); + + + rear_speed = current_speed; + if (rear_speed > 0) +// rear_speed *= ((fabs(DotProduct( forward, unit_vel )) + 1.0) / 2.0); + rear_speed *= DotProduct( forward, unit_vel ); + + Veh_Debug( "cSpd=%i ", (int)rear_speed ); + + + if ( ((ideal_speed > 0) && (ideal_speed > rear_speed)) + || ((ideal_speed < 0) && (ideal_speed < rear_speed))) + { + if (wheel_torque > max_wheel_torque) + { + vehicle->rear_traction -= (wheel_torque / max_wheel_torque) * frametime; + } + else if (vehicle->rear_traction < 1.0) + { + vehicle->rear_traction += ((max_wheel_torque - wheel_torque) / max_wheel_torque) * frametime * 7.0; + + if (vehicle->rear_traction > 1.0) + vehicle->rear_traction = 1.0; + } + + // cap min traction (TODO: use current surface as factor of minimum) + if (vehicle->rear_traction < 0.1) // HACK + vehicle->rear_traction = 0.1; + + // get the amount of force applied to the vehicle at the new throttle + + accel_force = + + (wheel_torque) * LBS_TO_KG + * FT_TO_CM * CM_TO_UNITS + * vehicle->rear_traction + * 2.0 // HACK, fudge factor + / frametime; // convert to force per second + + if (ideal_speed < 0) + accel_force *= -1; + + } + else // slowing down + { + + // if we're going faster than the maximum revs of the engine will take us + if ( Veh_SpeedAtRPM( vehicle, THROTTLE_MAX ) < rear_speed ) + { + // lose traction, but still grip + vehicle->rear_traction -= 2 * frametime; // ??? + + // cap min traction (TODO: use current surface as factor of minimum) + if (vehicle->rear_traction < 0.5) // HACK + vehicle->rear_traction = 0.5; + } + else if (vehicle->rear_traction < 1.0) + { + // regain traction + vehicle->rear_traction += 5 * frametime; // ??? + + if (vehicle->rear_traction > 1.0) + vehicle->rear_traction = 1.0; + } + + // Decompression braking! + wheel_torque = Veh_WheelTorqueAtRPM( vehicle, vehicle->rpm ); + + accel_force = + + (wheel_torque) * LBS_TO_KG + * -0.5 + * FT_TO_CM * CM_TO_UNITS + * vehicle->rear_traction + / frametime; // convert to force per second + } + + Veh_Debug( "Tr=%1.2f ", vehicle->rear_traction ); + + + Veh_Debug( "Af=%i ", (int)accel_force ); + + + accel_speed = accel_force / vehicle->def->weight; + + // factor in rolling resistance + accel_speed -= current_speed * 0.0007656; + + // factor in drag resistance + accel_speed -= (0.5 * 0.3 * 20 * 0.00025 * ((current_speed*UNITS_TO_CM*CM_TO_FT) * (current_speed*UNITS_TO_CM*CM_TO_FT))) * FT_TO_CM * CM_TO_UNITS + * 0.05; // Fudge factor + + Veh_Debug( "As=%i ", (int)accel_speed ); + } + + } + + + // Calculate the transferred velocity to the vehicle + + VectorMA( vehicle->velocity, accel_speed * frametime, forward, vehicle->velocity ); + + current_speed = VectorLength( vehicle->velocity ); + + Veh_Debug( "Spd=%i ", (int)current_speed ); + + // get the new engine RPM + if (vehicle->gear != 1) + { + rear_speed = current_speed; + if (rear_speed > 0) + rear_speed *= ((fabs(DotProduct( forward, unit_vel )) + 1.0) / 2.0); + + new_rpm = Veh_RPMatSpeed( vehicle, rear_speed ); + if (new_rpm > THROTTLE_MAX) + new_rpm = THROTTLE_MAX; + + if (vehicle->rear_traction >= 1) + { + vehicle->rpm = new_rpm; + + if (vehicle->rear_traction > 1.0) + vehicle->rear_traction = 1.0; + } + else // use new_rpm, but adjust for throttle + { + vehicle->rpm = new_rpm + (vehicle->throttle - new_rpm) * (1.0 - vehicle->rear_traction); + } + } + else + { + vehicle->rpm = vehicle->throttle; + } + + Veh_Debug( "Erpm=%4.0f ", vehicle->rpm ); + + + Veh_Debug( "\n" ); +} + +/* +================= +Veh_Debug +================= +*/ +void Veh_Debug( char *fmt, ...) +{ + int len; + va_list argptr; + char bigbuffer[0x10000]; + + va_start (argptr,fmt); + len = vsprintf (bigbuffer,fmt,argptr); + va_end (argptr); + + gi.dprintf( bigbuffer ); +} + +/* +================= +Veh_SpeedAtRPM +================= +*/ +float Veh_SpeedAtRPM( vehicle_t *veh, float rpm ) +{ + float speed; + + speed = + + (rpm) + * (1.0 / veh->def->gearbox->gears[veh->gear].ratio) + * (1.0 / veh->def->diff_ratio) + * (M_PI * veh->def->wheels->radius * 2 * CM_TO_UNITS) + * MIN_PER_SEC; + + return speed; +} + +/* +================= +Veh_RPMatSpeed +================= +*/ +float Veh_RPMatSpeed( vehicle_t *veh, float speed ) +{ + float rpm; + + rpm = + + (speed) + * (veh->def->gearbox->gears[veh->gear].ratio) + * (veh->def->diff_ratio) + * (1.0 / (M_PI * veh->def->wheels->radius * 2 * CM_TO_UNITS)) + * SEC_PER_MIN; + + if (rpm < 0) // reversing + rpm = -rpm; + + return rpm; +} + +/* +================= +Veh_SpeedAtRPM +================= +*/ +float Veh_WheelTorqueAtRPM( vehicle_t *veh, float rpm ) +{ + float torque; + + torque = + + (veh->def->engine_power * 1.5) // translate roughly to foot-pounds of engine torque + * (rpm / THROTTLE_MAX) + * (veh->def->gearbox->gears[veh->gear].ratio) + * (veh->def->gearbox->gears[veh->gear].ratio) // Fudge factor + * (veh->def->diff_ratio) + * (1.0 / (veh->def->wheels->radius * CM_TO_FT)); + + return torque; +} + + +/* +================= +Veh_PerformMove +================= +*/ +void Veh_PerformMove( vehicle_t *vehicle, pmove_t *pm ) +{ + int i; + gclient_t *client; + edict_t *ent; + + ent = vehicle->driver; + client = vehicle->driver->client; + + for (i=0 ; i<3 ; i++) + { + pm->s.origin[i] = vehicle->origin[i]*8; + pm->s.velocity[i] = vehicle->velocity[i]*8; + } + + // perform a pmove + gi.Pmove (pm); + + // save results of pmove + client->ps.pmove = pm->s; + client->old_pmove = pm->s; + + for (i=0 ; i<3 ; i++) + { + vehicle->origin[i] = pm->s.origin[i]*0.125; + vehicle->velocity[i] = pm->s.velocity[i]*0.125; + } + +// VectorCopy (pm->mins, ent->mins); +// VectorCopy (pm->maxs, ent->maxs); + +// client->resp.cmd_angles[0] = SHORT2ANGLE(ucmd->angles[0]); +// client->resp.cmd_angles[1] = SHORT2ANGLE(ucmd->angles[1]); +// client->resp.cmd_angles[2] = SHORT2ANGLE(ucmd->angles[2]); + + VectorCopy( vehicle->angles, client->ps.viewangles ); + VectorCopy( vehicle->angles, client->v_angle ); + + client->ps.pmove.pm_type = PM_FREEZE; + + ent->viewheight = pm->viewheight; + ent->waterlevel = pm->waterlevel; + ent->watertype = pm->watertype; + ent->groundentity = pm->groundentity; + if (pm->groundentity) + ent->groundentity_linkcount = pm->groundentity->linkcount; + + VectorCopy( vehicle->origin, ent->s.origin ); +} + + +void Veh_PerformAngleVelocity( vehicle_t *vehicle, float frametime, pmove_t *pm ) +{ + float speed; + vec3_t unitvel, forward, up; + + VectorMA( vehicle->angles, frametime, vehicle->avelocity, vehicle->angles ); + + // adjust velocity + if (vehicle->velocity[0] || vehicle->velocity[1] || vehicle->velocity[2]) + { + AngleVectors( vehicle->angles, forward, NULL, up ); + speed = VectorNormalize2( vehicle->velocity, unitvel ); + + VectorScale( forward, speed * (vehicle->rear_traction + vehicle->front_traction) / 2.0, vehicle->velocity ); + VectorMA( vehicle->velocity, speed * (1.0 - ((vehicle->rear_traction + vehicle->front_traction) / 2.0)), unitvel, vehicle->velocity ); + } + + // According to traction levels, we should move the CG (center of gravity), such that: + // + // * Under FULL traction of the REAR wheels, rotate about the rear axle center + // * Under ZERO traction of the REAR wheels, rotate about the front axle center + + // Just calculate this as a movement of the center of the vehicle / second, and add to velocity + + if (vehicle->avelocity[YAW]) + { + vec3_t dst, pnt, rear_pnt, move; + vec3_t velback; + + VectorMA( vehicle->origin, (-vehicle->def->wheelspan_length*0.5 + (vehicle->def->wheelspan_length * (1.0 - vehicle->rear_traction) * (vehicle->front_traction*0.5 + 0.5))), forward, rear_pnt ); + VectorSubtract( vehicle->origin, rear_pnt, pnt ); + + RotatePointAroundVector( dst, up, pnt, vehicle->avelocity[YAW] * frametime ); + + VectorSubtract( dst, pnt, move ); + // convert to per second, since it'll get converted back in Pmove(); + VectorScale( move, 0.3 / frametime, move ); // 0.3 is a HACK, should be 1.0 + + // save the velocity + VectorCopy( vehicle->velocity, velback ); + + VectorCopy( move, vehicle->velocity ); + + // move the vehicle to account for the change in CG + Veh_PerformMove( vehicle, pm ); + + // set the velocity back + VectorCopy( velback, vehicle->velocity ); + + Veh_Debug( "YawAdjust=%3.0f ", VectorLength(move) ); + } + +} + +void Veh_SetSteeringAngleVelocity( vehicle_t *vehicle ) +{ + float speed, dot, yaw_change; + vec3_t forward, unitvel; + + AngleVectors( vehicle->angles, forward, NULL, NULL ); + + if (vehicle->velocity[0] || vehicle->velocity[1] || vehicle->velocity[2]) + { + speed = VectorNormalize2( vehicle->velocity, unitvel ); + + yaw_change = + + ( (vehicle->steer_yaw) + * (speed / (vehicle->def->wheelspan_length * CM_TO_UNITS)) + * (vehicle->front_traction)) + + - vehicle->avelocity[YAW]; + + dot = DotProduct( forward, unitvel ); + + yaw_change *= dot; // this works for reverse, since yaw is just the opposite + } + else + { + speed = 0; + VectorClear( unitvel ); + + yaw_change = -vehicle->avelocity[YAW] * vehicle->front_traction; + } + + vehicle->avelocity[YAW] += yaw_change; + + Veh_Debug( "YawVel=%3.0f\n", vehicle->avelocity[YAW] ); +} + + +void Veh_HoldRearWheels( vehicle_t *vehicle ) +{ + vec3_t old_rear, new_rear; + vec3_t old_fwd, new_fwd; + vec3_t ideal_rear, ideal_vec, end_rear; + vec3_t new_vec, old_vec; + + AngleVectors( vehicle->oldangles, old_fwd, NULL, NULL ); + VectorMA( vehicle->oldorigin, -vehicle->def->wheelspan_length * 0.5, old_fwd, old_rear ); + + AngleVectors( vehicle->angles, new_fwd, NULL, NULL ); + VectorMA( vehicle->origin, -vehicle->def->wheelspan_length * 0.5, new_fwd, new_rear ); + + VectorSubtract( old_rear, vehicle->origin, old_vec ); + VectorNormalize( old_vec ); + VectorMA( vehicle->origin, vehicle->def->wheelspan_length * 0.5, old_vec, ideal_rear ); + + // now move to it depending on traction + VectorSubtract( ideal_rear, new_rear, ideal_vec ); + VectorMA( new_rear, vehicle->rear_traction, ideal_vec, end_rear ); + + VectorSubtract( vehicle->origin, end_rear, new_vec ); + VectorNormalize( new_vec ); + + vehicle->angles[YAW] = vectoyaw( new_vec ); +} + +// this is hacked together just for debugging +void Veh_PositionModels( vehicle_t *vehicle ) +{ + vec3_t fwd, right, up; + + AngleVectors( vehicle->angles, fwd, right, up ); + + VectorMA( vehicle->origin, 0.5 * CM_TO_UNITS * vehicle->def->wheelspan_length, fwd, vehicle->fl->s.origin ); + VectorMA( vehicle->fl->s.origin, -0.5 * CM_TO_UNITS * vehicle->def->wheelspan_width, right, vehicle->fl->s.origin ); + VectorMA( vehicle->fl->s.origin, -24 + CM_TO_UNITS * vehicle->def->wheels->radius, up, vehicle->fl->s.origin ); + VectorCopy( vehicle->angles, vehicle->fl->s.angles ); + vehicle->fl->s.angles[YAW] += vehicle->steer_yaw; + gi.linkentity( vehicle->fl ); + + VectorMA( vehicle->origin, 0.5 * CM_TO_UNITS * vehicle->def->wheelspan_length, fwd, vehicle->fr->s.origin ); + VectorMA( vehicle->fr->s.origin, 0.5 * CM_TO_UNITS * vehicle->def->wheelspan_width, right, vehicle->fr->s.origin ); + VectorMA( vehicle->fr->s.origin, -24 + CM_TO_UNITS * vehicle->def->wheels->radius, up, vehicle->fr->s.origin ); + VectorCopy( vehicle->angles, vehicle->fr->s.angles ); + vehicle->fr->s.angles[YAW] += vehicle->steer_yaw; + gi.linkentity( vehicle->fr ); + + VectorMA( vehicle->origin, -0.5 * CM_TO_UNITS * vehicle->def->wheelspan_length, fwd, vehicle->rl->s.origin ); + VectorMA( vehicle->rl->s.origin, -0.5 * CM_TO_UNITS * vehicle->def->wheelspan_width, right, vehicle->rl->s.origin ); + VectorMA( vehicle->rl->s.origin, -24 + CM_TO_UNITS * vehicle->def->wheels->radius, up, vehicle->rl->s.origin ); + VectorCopy( vehicle->angles, vehicle->rl->s.angles ); + gi.linkentity( vehicle->rl ); + + VectorMA( vehicle->origin, -0.5 * CM_TO_UNITS * vehicle->def->wheelspan_length, fwd, vehicle->rr->s.origin ); + VectorMA( vehicle->rr->s.origin, 0.5 * CM_TO_UNITS * vehicle->def->wheelspan_width, right, vehicle->rr->s.origin ); + VectorMA( vehicle->rr->s.origin, -24 + CM_TO_UNITS * vehicle->def->wheels->radius, up, vehicle->rr->s.origin ); + VectorCopy( vehicle->angles, vehicle->rr->s.angles ); + gi.linkentity( vehicle->rr ); + +} \ No newline at end of file diff --git a/gamesrc/VEHICLES.H b/gamesrc/VEHICLES.H new file mode 100644 index 0000000..b3e6e3c --- /dev/null +++ b/gamesrc/VEHICLES.H @@ -0,0 +1,139 @@ +// Vehicle defines + + +#define THROTTLE_MAX 8000.0 +#define IDLE_THROTTLE 1000.0 +#define DEFAULT_VEHICLE_WEIGHT 1650.0 +#define VEH_MAX_SPEED 1500.0 + +// these could be replaced with constants to speed things up +#define UNITS_TO_CM 4.0 +#define CM_TO_UNITS (1.0/UNITS_TO_CM) +#define MIN_PER_SEC (1.0 / 60.0) +#define SEC_PER_MIN (60.0) +#define LBS_TO_KG (12.5/28.0) +#define KG_TO_LBS (28.0/12.5) +#define FT_TO_CM (2.5*12.0) +#define CM_TO_FT (1.0/(2.5*12.0)) + +#define MAX_VEHICLES 64 + + +// Static + +typedef struct +{ + float concrete, fabric, gravel, metal, snow, tile, wood; +} wheel_traction_table_t; + +typedef struct +{ + float radius; + wheel_traction_table_t *whl_trac; // how the wheel grips to each surface type +} wheel_t; + +typedef struct +{ + char *name; + int index; + float ratio; // effects acceleration, top speed, etc. we could make these configurable + // e.g. a ratio of 0.5 means the drive wheels will spin 0.5 of a revolution + // for each engine revolution +} gear_t; + +typedef struct +{ + int num_gears; + gear_t gears[8]; // 0 = reverse, 1 = neutral +} gearbox_t; + +typedef struct +{ + char *name; + + // mechanics + gearbox_t *gearbox; // stores all gears for this vehicle + wheel_t *wheels; + float wheelspan_width; + float wheelspan_length; + + float weight; // effects acceleration, traction, braking, etc + float max_steer; // maximum angle of steering + float engine_power; // engine power output (kW) + float diff_ratio; // usually 3 : 1 + + // visuals + char *body_model; + int body_skin; + + char *wheel_model; + int wheel_skin; + + // sounds + char *shift_sound; + +} vehicle_define_t; + +// Run-time + +// This stores the information pertaining to an active vehicle in the game. +typedef struct +{ + edict_t *driver; + + vehicle_define_t *def; + + float front_traction, rear_traction; // 0.0 (no traction) -> 1.0 (full traction) + + float front_weight_ratio; // at rest, this should be 0.5. + // when accelerating, this will decrease as weight is transferred + // to the rear wheels. + // vice versa for braking/decelleration + + qboolean front_onground; + qboolean rear_onground; + + int gear; // current gear, 0 = reverse, 1 = neutral + float rpm; + float throttle; // 0 (none) -> THROTTLE_MAX (full) + // This will effect RPM by increasing + // fuel intake. If drive wheels have full traction, RPM + // will be limited to the RPM of the drive wheels (which is + // determined by applying a formula to the current rear velocity). + + // If this is lower then the current RPM, decceleration will + // occur, depending on rear wheel traction and the current RPM + // (higher RPM will induce more decompression braking on rear wheels). + + // if Negative, brakes will be applied in same scale (0 - THROTTLE_MAX). + + float steer_yaw; + + vec3_t angles, origin; + vec3_t oldorigin, oldangles; + vec3_t velocity; // overall velocity + vec3_t avelocity; // angular velocity (only used when in air?) + + + edict_t *fl, *fr, *rl, *rr; + +} vehicle_t; + +//============================================================================= +// Vars + +extern vehicle_t global_vehicles[MAX_VEHICLES]; + + +void Veh_ProcessFrame( edict_t *ent, usercmd_t *ucmd, pmove_t *pm ); +void Veh_InitVehicle ( vehicle_t *vehicle ); +void Veh_ProcessControls ( vehicle_t *vehicle, usercmd_t *ucmd ); +void Veh_Debug( char *fmt, ...); +float Veh_SpeedAtRPM( vehicle_t *veh, float rpm ); +float Veh_WheelTorqueAtRPM( vehicle_t *veh, float rpm ); +float Veh_RPMatSpeed( vehicle_t *veh, float speed ); +void Veh_PerformMove( vehicle_t *vehicle, pmove_t *pm ); +void Veh_PerformAngleVelocity( vehicle_t *vehicle, float frametime, pmove_t *pm ); +void Veh_SetSteeringAngleVelocity( vehicle_t *vehicle ); +void Veh_HoldRearWheels( vehicle_t *vehicle ); +void Veh_PositionModels( vehicle_t *vehicle ); diff --git a/gamesrc/VEH_DEFS.H b/gamesrc/VEH_DEFS.H new file mode 100644 index 0000000..ba1b135 --- /dev/null +++ b/gamesrc/VEH_DEFS.H @@ -0,0 +1,96 @@ +//======================================================================= + +vehicle_t global_vehicles[MAX_VEHICLES]; + +//======================================================================= + +gearbox_t commodore_gearbox = +{ + 7, // num_gears (Neutral, Reverse + 5 gears) + + { + { + "Reverse", // display name + 0, // index + -2 // gear ratio + }, + { + "Neutral", + 1, + 0 + }, + { + "1st", + 2, + 2.8 + }, + { + "2nd", + 3, + 2.0 + }, + { + "3rd", + 4, + 1.5 + }, + { + "4th", + 5, + 1.0 + }, + { + "5th", + 6, + 0.8 + } + } + +}; + +wheel_traction_table_t generic_wheel_traction = +{ + 0.8, // concrete + 0.6, // fabric + 0.4, // gravel + 0.7, // metal + 0.1, // snow + 0.6, // tile + 0.7 // wood +}; + +wheel_t generic_wheel = +{ + 29, // radius (cm) + &generic_wheel_traction // traction table +}; + +vehicle_define_t vehicle_defines[] = +{ + + { + "Commodore VT", + + &commodore_gearbox, + &generic_wheel, + 150, // wheelspan width (cm) + 250, // wheelspan length (cm) + 1650, // weight (kg) + 40, // maximum steering angle + 180, // engine power output (kW) + 3, // diff ratio + + "models/vehicles/cars/viper/tris_test.md2", // body model + 0, // body skin + + "models/vehicles/cars/misc/wheel.md2", // wheel model + 0, // wheel skin + + NULL, // gear change sound + }, + + { + NULL + } + +}; diff --git a/gamesrc/VOICE.C b/gamesrc/VOICE.C new file mode 100644 index 0000000..142003a --- /dev/null +++ b/gamesrc/VOICE.C @@ -0,0 +1,829 @@ + +#include "g_local.h" + +#include "voice_punk.h" +#include "voice_bitch.h" + +char stranger_str[] = "(Stranger)"; + +int num_precached_voices = 0; + +void Voice_Random_rc( edict_t *self, edict_t *other, voice_table_t *voice_table, int num_entries ); +void Voice_Specific_rc( edict_t *self, edict_t *other, voice_table_t *voice_table, int entry ); + +void Voice_Random( edict_t *self, edict_t *other, voice_table_t *voice_table, int num_entries ) +{ + int entry=-1, best_entry=-1, count=0; + int i; + + if (self->cast_info.aiflags & AI_NO_TALK) + return; + + if (self->health <= 0) + return; + + if ( !(self->client) ) + { + if ( level.episode == EP_RADIOCITY && (self->gender == GENDER_MALE || self->gender == GENDER_FEMALE) ) + { + Voice_Random_rc (self, other, voice_table, num_entries); + return; + } + } + +again: + + if ( !deathmatch->value + && (other) + && (other->last_talk_time > (level.time - 5)) + && (other->last_voice) + && (other->last_voice->response_table == voice_table) + && (other->last_voice->num_responses)) + { + // we should pick a specific response + i = (int)floor( random()*other->last_voice->num_responses ); + + while ((entry < 0) || (voice_table[entry].last_played > 0.1)) + { + entry = other->last_voice->responses[ i++ ]; + + if ((best_entry < 0) || (voice_table[entry].last_played < voice_table[best_entry].last_played)) + { + best_entry = entry; + } + else if (voice_table[ entry ].last_played > level.time) + { // still set from a previous level + voice_table[ entry ].last_played = 0; + } + + if (i >= other->last_voice->num_responses) + i = 0; + + if (count++ > other->last_voice->num_responses) + break; + } + + entry = best_entry; + + } + else // not responding, just pick any non-response + { + + entry = (int)floor( random()*num_entries ); + + while (count++ < num_entries) + { + if ( (!voice_table[ entry ].response) + && (self->last_voice != &voice_table[ entry ]) + && ( (best_entry < 0) + || (voice_table[ entry ].last_played < voice_table[ best_entry ].last_played))) + { + best_entry = entry; + } + else if (voice_table[ entry ].last_played > level.time) + { // still set from a previous level + voice_table[ entry ].last_played = 0; + } + + entry++; + + if (entry >= num_entries) + entry = 0; + } + + if (best_entry < 0) + best_entry = (int)floor( random()*num_entries ); + + entry = best_entry; + } + + // HACK, don't say "Fuck me, Freddy is it you?" to the bitch (we need a better way to handle things like this) + if ( self->client + && other + && other->gender == GENDER_FEMALE + && voice_table == neutral_talk_player + && entry == 4) + { + voice_table[ entry ].last_played = level.time; + entry=-1; + best_entry=-1; + count=0; + goto again; + } + + // the popeye hack + if ( self->name_index == NAME_POPEYE + && ( voice_table == fightsounds + || voice_table == grunting + || voice_table == m_backoff ) + ) + { + voice_table = sy_popeye; + entry = 19 + (rand()%3); + } + + if (voice_table[ entry ].filename) + { + if (!voice_table[ entry ].last_played || (voice_table[ entry ].last_played > level.time) + || (voice_table[ entry ].gameinc_soundindex != gameinc)) + { + voice_table[ entry ].soundindex = 0; + } + + if (deathmatch->value || VectorDistance( g_edicts[1].s.origin, self->s.origin ) < 1024) + { + if ((other && other->client) || self->client) + gi.sound( self, CHAN_VOICE | CHAN_RELIABLE, (voice_table[ entry ].soundindex ? voice_table[ entry ].soundindex - 1 : (voice_table[ entry ].soundindex = 1 + gi.soundindex ( voice_table[ entry ].filename )) - 1 ), 1.0, 1, 0 ); + else + gi.sound( self, CHAN_VOICE | CHAN_RELIABLE, (voice_table[ entry ].soundindex ? voice_table[ entry ].soundindex - 1 : (voice_table[ entry ].soundindex = 1 + gi.soundindex ( voice_table[ entry ].filename )) - 1 ), 0.2, 1, 0 ); + + voice_table[ entry ].gameinc_soundindex = gameinc; + + if (cl_captions->value && strlen(voice_table[entry].text) > 0) + { + if (cl_parental_lock->value && !cl_parental_override->value) + { + if (self->client) + gi.dprintf ("player : %s\n", voice_table[entry].text2); + else if (other && other->client) // Ridah, 5-8-99, had to do this otherwise too much text comes up, and you can't see which of it's yours + gi.dprintf ("%s : %s\n", self->name ? self->name : stranger_str, voice_table[entry].text2); + } + else + { + if (self->client) + gi.dprintf ("player : %s\n", voice_table[entry].text); + else if (other && other->client) // Ridah, 5-8-99, had to do this otherwise too much text comes up, and you can't see which of it's yours + gi.dprintf ("%s : %s\n", self->name ? self->name : stranger_str, voice_table[entry].text); + } + } + } + } + else + { + if (cl_parental_lock->value && !cl_parental_override->value) + gi.dprintf("VOICE TODO: %s\n", voice_table[ entry ].text2); + else + gi.dprintf("VOICE TODO: %s\n", voice_table[ entry ].text); + } + + if (self->client || (other && other->client)) + { + if (other && other->client) // tell this client to talk back to us next time they chat + other->cast_info.talk_ent = self; + + self->cast_info.talk_ent = other; + + last_client_talk = level.time; + } + + self->last_voice = &( voice_table[ entry ] ); + voice_table[ entry ].last_played = level.time; + + self->last_talk_time = level.time; + +// JOSEPH 2-FEB-99 + if (other && other->client) + { + other->client->ps.stats[STAT_HUD_ENEMY_TALK] = voice_table[ entry ].type; + other->client->hud_enemy_talk_time = level.time + 2.0; + } + // END JOSEPH + +} + +void Voice_Specific( edict_t *self, edict_t *other, voice_table_t *voice_table, int entry ) +{ + + if (self->cast_info.aiflags & AI_NO_TALK) + return; + + if (self->health <= 0) + return; + + if (!(self->client)) + { + if (level.episode == EP_RADIOCITY && (self->gender == GENDER_MALE || self->gender == GENDER_FEMALE)) + { + Voice_Specific_rc (self, other, voice_table, entry); + return; + } + } + + // JOSEPH 2-FEB-99 + if (other && other->client) + { + other->client->ps.stats[STAT_HUD_ENEMY_TALK] = voice_table[ entry ].type; + other->client->hud_enemy_talk_time = level.time + 2.0; + } + // END JOSEPH + + if (voice_table[ entry ].filename) + { + if (!voice_table[ entry ].last_played || (voice_table[ entry ].last_played > level.time) + || (voice_table[ entry ].gameinc_soundindex != gameinc)) + { + voice_table[ entry ].soundindex = 0; + } + + if (VectorDistance( g_edicts[1].s.origin, self->s.origin ) < 1024) + { + if ((other && other->client) || self->client) + gi.sound( self, CHAN_VOICE + CHAN_RELIABLE, (voice_table[ entry ].soundindex ? voice_table[ entry ].soundindex - 1 : (voice_table[ entry ].soundindex = 1 + gi.soundindex ( voice_table[ entry ].filename )) - 1 ), 1.0, 1, 0 ); + else + gi.sound( self, CHAN_VOICE + CHAN_RELIABLE, (voice_table[ entry ].soundindex ? voice_table[ entry ].soundindex - 1 : (voice_table[ entry ].soundindex = 1 + gi.soundindex ( voice_table[ entry ].filename )) - 1 ), 0.2, 1, 0 ); + + voice_table[ entry ].gameinc_soundindex = gameinc; + + if (cl_captions->value && strlen(voice_table[entry].text) > 0) + { + if (cl_parental_lock->value && !cl_parental_override->value) + { + if (self->client) + gi.dprintf ("player : %s\n", voice_table[entry].text2); + else if (other->client) // Ridah, 5-8-99, had to do this otherwise too much text comes up, and you can't see which of it's yours + gi.dprintf ("%s : %s\n", self->name ? self->name : stranger_str, voice_table[entry].text2); + } + else + { + if (self->client) + gi.dprintf ("player : %s\n", voice_table[entry].text); + else if (other->client) // Ridah, 5-8-99, had to do this otherwise too much text comes up, and you can't see which of it's yours + gi.dprintf ("%s : %s\n", self->name ? self->name : stranger_str, voice_table[entry].text); + } + } + + } + } + else + { + if (cl_parental_lock->value && !cl_parental_override->value) + gi.dprintf("VOICE: %s\n", voice_table[ entry ].text2); + else + gi.dprintf("VOICE: %s\n", voice_table[ entry ].text); + } + + if (self->client || (other && other->client)) + { + if (other && other->client) // tell this client to talk back to us next time they chat + other->cast_info.talk_ent = self; + + last_client_talk = level.time; + } + + self->last_voice = &( voice_table[ entry ] ); + voice_table[ entry ].last_played = level.time; + + self->last_talk_time = level.time; +} + +// JOSEPH 13-FEB-99 +void Voice_Player_Specific( edict_t *player, int entry ) +{ + + if (player->health <= 0) + return; + + // JOSEPH 2-FEB-99 + if (player && player->client) + { + player->client->ps.stats[STAT_HUD_SELF_TALK] = entry; + player->client->hud_self_talk_time = level.time + 2.0; + } + // END JOSEPH + + last_client_talk = level.time; + player->last_talk_time = level.time; +} +// END JOSEPH + + +////////////////////////////////////// +// radio city voice_routines +////////////////////////////////////// + +void Voice_Random_rc( edict_t *self, edict_t *other, voice_table_t *voice_table, int num_entries ) +{ + int entry=-1, best_entry=-1, count=0; + int i; + int offset; + + if (self->cast_info.aiflags & AI_NO_TALK) + return; + + if (self->health <= 0) + return; + + { + // voice_table conversion + if (self->name_index == NAME_KINGPIN) + voice_table = voice_table; + else if (self->name_index == NAME_BLUNT) + voice_table = voice_table; + else if (self->name_index == NAME_NICKIBLANCO) + voice_table = voice_table; + else if (self->name_index == NAME_BUTCH) + voice_table = voice_table; + else if (self->name_index == NAME_PATRICK) + voice_table = voice_table; + else if (self->name_index == NAME_MOMO) + voice_table = voice_table; + else if (self->name_index == NAME_SCALPER) + voice_table = voice_table; + else if (self->gender == GENDER_MALE) + { + qboolean is_rc = true; + + if (voice_table >= rc_joker && voice_table <= &rc_joker[9]) + voice_table = voice_table; + else if (self->cast_group == 1) + voice_table = voice_table; + else if (voice_table >= neutral_talk && voice_table <= &neutral_talk[15]) + { + offset = voice_table - neutral_talk; + voice_table = rc_neutral_talk + offset; + } + else if (voice_table >= neutral_asshole_talk && voice_table <= &neutral_asshole_talk[1]) + { + offset = voice_table - neutral_talk; + voice_table = rc_neutral_asshole_talk + offset; + } + else if (voice_table >= neutral_talk_player && voice_table <= &neutral_talk_player[9]) + { + offset = voice_table - neutral_talk_player; + voice_table = rc_neutral_talk_player + offset; + } + else if (voice_table >= neutral_converse && voice_table <= &neutral_converse[19]) + { + offset = voice_table - neutral_converse; + voice_table = rc_neutral_converse + offset; + } + else if (voice_table >= neutral_converse_to_female && voice_table <= &neutral_converse_to_female[10]) + { + offset = voice_table - neutral_converse_to_female; + voice_table = rc_neutral_converse_to_female + offset; + } + else if (voice_table >= profanity_level1 && voice_table <= &profanity_level1[10]) + { + offset = voice_table - profanity_level1; + voice_table = rc_profanity_level1 + offset; + } + else if (voice_table >= profanity_level2 && voice_table <= &profanity_level2[16]) + { + offset = voice_table - profanity_level2; + voice_table = rc_profanity_level2 + offset; + } + else if (voice_table >= profanity_level3 && voice_table <= &profanity_level3[1]) + { + offset = voice_table - profanity_level3; + voice_table = rc_profanity_level3 + offset; + } + else if (voice_table >= friendlycombat && voice_table <= &friendlycombat[4]) + { + offset = voice_table - friendlycombat; + voice_table = rc_friendlycombat + offset; + } + else if (voice_table >= friendlypain && voice_table <= &friendlypain[1]) + { + offset = voice_table - friendlypain; + voice_table = rc_friendlypain + offset; + } + else if (voice_table >= friendlyhurt && voice_table <= &friendlyhurt[1]) + { + offset = voice_table - friendlyhurt; + voice_table = rc_friendlyhurt + offset; + } + else if (voice_table >= fightsounds && voice_table <= &fightsounds[9]) + { + offset = voice_table - fightsounds; + voice_table = rc_fightsounds + offset; + } + else if (voice_table >= specific && voice_table <= &specific[29]) + { + offset = voice_table - specific; + voice_table = rc_specific + offset; + } + else if (voice_table >= m_backoff && voice_table <= &m_backoff[2]) + { + offset = voice_table - m_backoff; + voice_table = rc_m_backoff + offset; + } + else if (voice_table >= male_specific && voice_table <= &male_specific[12]) + { + offset = voice_table - male_specific; + voice_table = rc_male_specific + offset; + } + else if (voice_table >= grunting && voice_table <= &grunting[4]) + { + offset = voice_table - grunting; + voice_table = rc_grunting + offset; + } + else + { + gi.dprintf ("ERROR: Random missing conversion for male %s\n", voice_table[0].text); + return; + } + + } + else if (self->gender == GENDER_FEMALE) + { + if (self->name_index == NAME_LOLA) + voice_table = voice_table; + else if (voice_table >= f_neutral_talk && voice_table <= &f_neutral_talk[15]) + { + offset = voice_table - f_neutral_talk; + voice_table = rc_f_neutral_talk + offset; + } + else if (voice_table >= f_neutral_asshole_talk && voice_table <= &f_neutral_asshole_talk[4]) + { + offset = voice_table - f_neutral_asshole_talk; + voice_table = rc_f_neutral_asshole_talk + offset; + } + else if (voice_table >= f_neutral_talk_player && voice_table <= &f_neutral_talk_player[3]) + { + offset = voice_table - f_neutral_talk_player; + voice_table = rc_f_neutral_talk_player + offset; + } + else if (voice_table >= f_neutral_converse && voice_table <= &f_neutral_converse[15]) + { + offset = voice_table - f_neutral_converse; + voice_table = rc_f_neutral_converse + offset; + } + else if (voice_table >= f_profanity_level1 && voice_table <= &f_profanity_level1[4]) + { + offset = voice_table - f_profanity_level1; + voice_table = rc_f_profanity_level1 + offset; + } + else if (voice_table >= f_profanity_level2 && voice_table <= &f_profanity_level2[3]) + { + offset = voice_table - f_profanity_level2; + voice_table = rc_f_profanity_level2 + offset; + } + else if (voice_table >= f_profanity_level3 && voice_table <= &f_profanity_level3[2]) + { + offset = voice_table - f_profanity_level3; + voice_table = rc_f_profanity_level3 + offset; + } + else if (voice_table >= f_fightsounds && voice_table <= &f_fightsounds[7]) + { + offset = voice_table - f_fightsounds; + voice_table = rc_f_fightsounds + offset; + } + else if (voice_table >= f_specific && voice_table <= &f_specific[3]) + { + offset = voice_table - f_specific; + voice_table = rc_f_specific + offset; + } + else if (voice_table >= f_backoff && voice_table <= &f_backoff[3]) + { + offset = voice_table - f_backoff; + voice_table = rc_f_backoff + offset; + } + else if (voice_table >= female_specific && voice_table <= &female_specific[8]) + { + offset = voice_table - female_specific; + voice_table = rc_female_specific + offset; + } + else if (voice_table >= f_grunting && voice_table <= &f_grunting[4]) + { + offset = voice_table - f_grunting; + voice_table = rc_f_grunting + offset; + } + else + { + gi.dprintf ("ERROR: Random missing conversion for female %s\n", voice_table[0].text); + return; + } + } + + } + +again: + + if ( (other) + && (other->last_talk_time > (level.time - 5)) + && (other->last_voice) + && (other->last_voice->response_table == voice_table) + && (other->last_voice->num_responses)) + { + // we should pick a specific response + i = (int)floor( random()*other->last_voice->num_responses ); + + while ((entry < 0) || (voice_table[entry].last_played > 0.1)) + { + entry = other->last_voice->responses[ i++ ]; + + if ((best_entry < 0) || (voice_table[entry].last_played < voice_table[best_entry].last_played)) + { + best_entry = entry; + } + else if (voice_table[ entry ].last_played > level.time) + { // still set from a previous level + voice_table[ entry ].last_played = 0; + } + + if (i >= other->last_voice->num_responses) + i = 0; + + if (count++ > other->last_voice->num_responses) + break; + } + + entry = best_entry; + + } + else // not responding, just pick any non-response + { + + entry = (int)floor( random()*num_entries ); + + while (count++ < num_entries) + { + if ( (!voice_table[ entry ].response) + && (self->last_voice != &voice_table[ entry ]) + && ( (best_entry < 0) + || (voice_table[ entry ].last_played < voice_table[ best_entry ].last_played))) + { + best_entry = entry; + } + else if (voice_table[ entry ].last_played > level.time) + { // still set from a previous level + voice_table[ entry ].last_played = 0; + } + + entry++; + + if (entry >= num_entries) + entry = 0; + } + + if (best_entry < 0) + best_entry = (int)floor( random()*num_entries ); + + entry = best_entry; + } + + // HACK, don't say "Fuck me, Freddy is it you?" to the bitch (we need a better way to handle things like this) + if ( self->client + && other + && other->gender == GENDER_FEMALE + && voice_table == neutral_talk_player + && entry == 4) + { + voice_table[ entry ].last_played = level.time; + entry=-1; + best_entry=-1; + count=0; + goto again; + } + + // the popeye hack + if ( self->name_index == NAME_POPEYE + && ( voice_table == fightsounds + || voice_table == grunting + || voice_table == m_backoff ) + ) + { + voice_table = sy_popeye; + entry = 19 + (rand()%3); + } + + if (voice_table[ entry ].filename) + { + if (!voice_table[ entry ].last_played || (voice_table[ entry ].last_played > level.time) + || (voice_table[ entry ].gameinc_soundindex != gameinc)) + { + voice_table[ entry ].soundindex = 0; + } + + if (VectorDistance( g_edicts[1].s.origin, self->s.origin ) < 1024) + { + if ((other && other->client) || self->client) + gi.sound( self, CHAN_VOICE | CHAN_RELIABLE, (voice_table[ entry ].soundindex ? voice_table[ entry ].soundindex - 1 : (voice_table[ entry ].soundindex = 1 + gi.soundindex ( voice_table[ entry ].filename )) - 1 ), 1.0, 1, 0 ); + else + gi.sound( self, CHAN_VOICE | CHAN_RELIABLE, (voice_table[ entry ].soundindex ? voice_table[ entry ].soundindex - 1 : (voice_table[ entry ].soundindex = 1 + gi.soundindex ( voice_table[ entry ].filename )) - 1 ), 0.2, 1, 0 ); + + voice_table[ entry ].gameinc_soundindex = gameinc; + + if (cl_captions->value && strlen(voice_table[entry].text) > 0) + { + if (cl_parental_lock->value && !cl_parental_override->value) + { + if (self->client) + gi.dprintf ("player : %s\n", voice_table[entry].text2); + else if (other && other->client) // Ridah, 5-8-99, had to do this otherwise too much text comes up, and you can't see which of it's yours + gi.dprintf ("%s : %s\n", self->name ? self->name : stranger_str, voice_table[entry].text2); + } + else + { + if (self->client) + gi.dprintf ("player : %s\n", voice_table[entry].text); + else if (other && other->client) // Ridah, 5-8-99, had to do this otherwise too much text comes up, and you can't see which of it's yours + gi.dprintf ("%s : %s\n", self->name ? self->name : stranger_str, voice_table[entry].text); + } + } + } + } + else + { + if (cl_parental_lock->value && !cl_parental_override->value) + gi.dprintf("VOICE TODO: %s\n", voice_table[ entry ].text2); + else + gi.dprintf("VOICE TODO: %s\n", voice_table[ entry ].text); + } + + if (self->client || (other && other->client)) + { + if (other && other->client) // tell this client to talk back to us next time they chat + other->cast_info.talk_ent = self; + + self->cast_info.talk_ent = other; + + last_client_talk = level.time; + } + + self->last_voice = &( voice_table[ entry ] ); + voice_table[ entry ].last_played = level.time; + + self->last_talk_time = level.time; + +// JOSEPH 2-FEB-99 + if (other && other->client) + { + other->client->ps.stats[STAT_HUD_ENEMY_TALK] = voice_table[ entry ].type; + other->client->hud_enemy_talk_time = level.time + 2.0; + } + // END JOSEPH + +} + +void Voice_Specific_rc( edict_t *self, edict_t *other, voice_table_t *voice_table, int entry ) +{ + + if (self->cast_info.aiflags & AI_NO_TALK) + return; + + if (self->health <= 0) + return; + + { + // voice_table conversion + if (self->name_index == NAME_KINGPIN) + voice_table = voice_table; + else if (self->name_index == NAME_BLUNT) + voice_table = voice_table; + else if (self->name_index == NAME_NICKIBLANCO) + voice_table = voice_table; + else if (self->name_index == NAME_BUTCH) + voice_table = voice_table; + else if (self->name_index == NAME_PATRICK) + voice_table = voice_table; + else if (self->name_index == NAME_MOMO) + voice_table = voice_table; + else if (self->name_index == NAME_SCALPER) + voice_table = voice_table; + else if (self->gender == GENDER_MALE) + { + if (voice_table == rc_joker) + voice_table = voice_table; + else if (self->cast_group == 1) + voice_table = voice_table; + else if (voice_table == neutral_talk) + voice_table = rc_neutral_talk; + else if (voice_table == neutral_asshole_talk) + voice_table = rc_neutral_asshole_talk; + else if (voice_table == neutral_talk_player) + voice_table = rc_neutral_talk_player; + else if (voice_table == neutral_converse) + voice_table = rc_neutral_converse; + else if (voice_table == neutral_converse_to_female) + voice_table = rc_neutral_converse_to_female; + else if (voice_table == profanity_level1) + voice_table = rc_profanity_level1; + else if (voice_table == profanity_level2) + voice_table = rc_profanity_level2; + else if (voice_table == profanity_level3) + voice_table = rc_profanity_level3; + else if (voice_table == friendlycombat) + voice_table = rc_friendlycombat; + else if (voice_table == friendlypain) + voice_table = rc_friendlypain; + else if (voice_table == friendlyhurt) + voice_table = rc_friendlyhurt; + else if (voice_table == fightsounds) + voice_table = rc_fightsounds; + else if (voice_table == specific) + voice_table = rc_specific; + else if (voice_table == m_backoff) + voice_table = rc_m_backoff; + else if (voice_table == male_specific) + voice_table = rc_male_specific; + else if (voice_table == grunting) + voice_table = rc_grunting; + else + { + gi.dprintf ("ERROR: Specific missing voice table conversion for %s", voice_table[0].text); + return; + } + } + else if (self->gender == GENDER_FEMALE) + { + if (self->name_index == NAME_LOLA) + voice_table = voice_table; + else if (voice_table == f_neutral_talk) + voice_table = rc_f_neutral_talk; + else if (voice_table == f_neutral_asshole_talk) + voice_table = rc_f_neutral_asshole_talk; + else if (voice_table == f_neutral_talk_player) + voice_table = rc_f_neutral_talk_player; + else if (voice_table == f_neutral_converse) + voice_table = rc_f_neutral_converse; + else if (voice_table == f_profanity_level1) + voice_table = rc_f_profanity_level1; + else if (voice_table == f_profanity_level2) + voice_table = rc_f_profanity_level2; + else if (voice_table == f_profanity_level3) + voice_table = rc_f_profanity_level3; + else if (voice_table == f_fightsounds) + voice_table = rc_f_fightsounds; + else if (voice_table == f_specific) + voice_table = rc_f_specific; + else if (voice_table == f_backoff) + voice_table = rc_f_backoff; + else if (voice_table == female_specific) + voice_table = rc_female_specific; + else if (voice_table == f_grunting) + voice_table = rc_f_grunting; + else + { + gi.dprintf ("ERROR: Specific missing voice table conversion for %s", voice_table[0].text); + return; + } + } + + } + // JOSEPH 2-FEB-99 + if (other && other->client) + { + other->client->ps.stats[STAT_HUD_ENEMY_TALK] = voice_table[ entry ].type; + other->client->hud_enemy_talk_time = level.time + 2.0; + } + // END JOSEPH + + if (voice_table[ entry ].filename) + { + if (!voice_table[ entry ].last_played || (voice_table[ entry ].last_played > level.time) + || (voice_table[ entry ].gameinc_soundindex != gameinc)) + { + voice_table[ entry ].soundindex = 0; + } + + if (VectorDistance( g_edicts[1].s.origin, self->s.origin ) < 1024) + { + if ((other && other->client) || self->client) + gi.sound( self, CHAN_VOICE + CHAN_RELIABLE, (voice_table[ entry ].soundindex ? voice_table[ entry ].soundindex - 1 : (voice_table[ entry ].soundindex = 1 + gi.soundindex ( voice_table[ entry ].filename )) - 1 ), 1.0, 1, 0 ); + else + gi.sound( self, CHAN_VOICE + CHAN_RELIABLE, (voice_table[ entry ].soundindex ? voice_table[ entry ].soundindex - 1 : (voice_table[ entry ].soundindex = 1 + gi.soundindex ( voice_table[ entry ].filename )) - 1 ), 0.2, 1, 0 ); + + voice_table[ entry ].gameinc_soundindex = gameinc; + + if (cl_captions->value && strlen(voice_table[entry].text) > 0) + { + if (cl_parental_lock->value && !cl_parental_override->value) + { + if (self->client) + gi.dprintf ("player : %s\n", voice_table[entry].text2); + else if (other->client) // Ridah, 5-8-99, had to do this otherwise too much text comes up, and you can't see which of it's yours + gi.dprintf ("%s : %s\n", self->name ? self->name : stranger_str, voice_table[entry].text2); + } + else + { + if (self->client) + gi.dprintf ("player : %s\n", voice_table[entry].text); + else if (other->client) // Ridah, 5-8-99, had to do this otherwise too much text comes up, and you can't see which of it's yours + gi.dprintf ("%s : %s\n", self->name ? self->name : stranger_str, voice_table[entry].text); + } + } + + } + } + else + { + if (cl_parental_lock->value && !cl_parental_override->value) + gi.dprintf("VOICE: %s\n", voice_table[ entry ].text2); + else + gi.dprintf("VOICE: %s\n", voice_table[ entry ].text); + } + + if (self->client || (other && other->client)) + { + if (other && other->client) // tell this client to talk back to us next time they chat + other->cast_info.talk_ent = self; + + last_client_talk = level.time; + } + + self->last_voice = &( voice_table[ entry ] ); + voice_table[ entry ].last_played = level.time; + + self->last_talk_time = level.time; +} diff --git a/gamesrc/VOICE.H b/gamesrc/VOICE.H new file mode 100644 index 0000000..240ce2f --- /dev/null +++ b/gamesrc/VOICE.H @@ -0,0 +1,42 @@ + +// Voice System defines + +typedef struct voice_table_s voice_table_t; + +// JOSEPH 11-MAR-99 +struct voice_table_s +{ + voice_table_t *response_table; // match responses to this table + char *text; + char *text2; + char *filename; + int num_responses; // 0 for anything + int responses[5]; // list of indexes of sounds that would possibly match this comment + // NOTE: these could reference sounds in other tables! + float last_played; + qboolean response; // set if this "response" can only be played after another comment + + int type; + + int soundindex; // for faster playing of sounds that have already been played this level + int gameinc_soundindex; // so we can reset soundindexes on a new level +}; +// END JOSEPH + +extern int gameinc; + +#define TALK_SELF_DELAY 9 +#define TALK_OTHER_DELAY 1.6 +#define TALK_FIGHTING_DELAY 4 + +float last_client_talk; // records the last time the client was spoken to, so AI characters don't all respond at once + +// this list is kept so we can make sure the soundindex of each voice item is cleared when starting a new level +voice_table_t *precached_voices[MAX_SOUNDS]; +extern int num_precached_voices; + +void Voice_Random( edict_t *self, edict_t *other, voice_table_t *voice_table, int num_entries ); +void Voice_Specific( edict_t *self, edict_t *other, voice_table_t *voice_table, int entry ); +// JOSEPH 13-FEB-99 +void Voice_Player_Specific( edict_t *player, int entry ); +// END JOSEPH diff --git a/gamesrc/ai_bitch_tables.h b/gamesrc/ai_bitch_tables.h new file mode 100644 index 0000000..9efcf4d --- /dev/null +++ b/gamesrc/ai_bitch_tables.h @@ -0,0 +1,1443 @@ +mframe_t bitch_frames_boredA[] = +{ + ai_stand, 0.000, bitch_talk_think, // frame 0 + ai_stand, 0.000, bitch_talk_think, // frame 1 + ai_stand, 0.000, bitch_talk_think, // frame 2 + ai_stand, 0.000, bitch_talk_think, // frame 3 + ai_stand, 0.000, bitch_talk_think, // frame 4 + ai_stand, 0.000, bitch_talk_think, // frame 5 + ai_stand, 0.000, bitch_talk_think, // frame 6 + ai_stand, 0.000, bitch_talk_think, // frame 7 + ai_stand, 0.000, bitch_talk_think, // frame 8 + ai_stand, 0.000, bitch_talk_think, // frame 9 + ai_stand, 0.000, bitch_talk_think, // frame 10 + ai_stand, 0.000, bitch_talk_think, // frame 11 + ai_stand, 0.000, bitch_talk_think, // frame 12 + ai_stand, 0.000, bitch_talk_think, // frame 13 + ai_stand, 0.000, bitch_talk_think, // frame 14 + ai_stand, 0.000, bitch_talk_think, // frame 15 + ai_stand, 0.000, bitch_talk_think, // frame 16 + ai_stand, 0.000, bitch_talk_think, // frame 17 + ai_stand, 0.000, bitch_talk_think, // frame 18 + ai_stand, 0.000, bitch_talk_think, // frame 19 + ai_stand, 0.000, bitch_talk_think, // frame 20 + ai_stand, 0.000, bitch_talk_think, // frame 21 + ai_stand, 0.000, bitch_talk_think, // frame 22 + ai_stand, 0.000, bitch_talk_think, // frame 23 + ai_stand, 0.000, bitch_talk_think, // frame 24 + ai_stand, 0.000, bitch_talk_think, // frame 25 + ai_stand, 0.000, bitch_talk_think, // frame 26 + ai_stand, 0.000, bitch_talk_think, // frame 27 + ai_stand, 0.000, bitch_talk_think, // frame 28 + ai_stand, 0.000, bitch_talk_think, // frame 29 + ai_stand, 0.000, bitch_talk_think, // frame 30 + ai_stand, 0.000, bitch_talk_think, // frame 31 + ai_stand, 0.000, bitch_talk_think, // frame 32 + ai_stand, 0.000, bitch_talk_think, // frame 33 + ai_stand, 0.000, bitch_talk_think, // frame 34 + ai_stand, 0.000, bitch_talk_think, // frame 35 + ai_stand, 0.000, bitch_talk_think, // frame 36 + ai_stand, 0.000, bitch_talk_think, // frame 37 + ai_stand, 0.000, bitch_talk_think, // frame 38 + ai_stand, 0.000, bitch_talk_think, // frame 39 + ai_stand, 0.000, bitch_talk_think, // frame 40 + ai_stand, 0.000, bitch_talk_think, // frame 41 + ai_stand, 0.000, bitch_talk_think, // frame 42 + ai_stand, 0.000, bitch_talk_think, // frame 43 + ai_stand, 0.000, bitch_talk_think, // frame 44 + ai_stand, 0.000, bitch_talk_think, // frame 45 + ai_stand, 0.000, bitch_talk_think, // frame 46 + ai_stand, 0.000, bitch_talk_think // frame 47 +}; +mmove_t bitch_move_boredA = {FRAME_boredA_01, FRAME_boredA_48, bitch_frames_boredA, bitch_end_stand}; + + +mframe_t bitch_frames_leanlook[] = +{ + ai_stand, 0.000, bitch_talk_think, // frame 0 + ai_stand, 0.000, bitch_talk_think, // frame 1 + ai_stand, 0.000, bitch_talk_think, // frame 2 + ai_stand, 0.000, bitch_talk_think, // frame 3 + ai_stand, 0.000, bitch_talk_think, // frame 4 + ai_stand, 0.000, bitch_talk_think, // frame 5 + ai_stand, 0.000, bitch_talk_think, // frame 6 + ai_stand, 0.000, bitch_talk_think, // frame 7 + ai_stand, 0.000, bitch_talk_think, // frame 8 + ai_stand, 0.000, bitch_talk_think, // frame 9 + ai_stand, 0.000, bitch_talk_think, // frame 10 + ai_stand, 0.000, bitch_talk_think, // frame 11 + ai_stand, 0.000, bitch_talk_think, // frame 12 + ai_stand, 0.000, bitch_talk_think, // frame 13 + ai_stand, 0.000, bitch_talk_think, // frame 14 + ai_stand, 0.000, bitch_talk_think, // frame 15 + ai_stand, 0.000, bitch_talk_think, // frame 16 + ai_stand, 0.000, bitch_talk_think, // frame 17 + ai_stand, 0.000, bitch_talk_think, // frame 18 + ai_stand, 0.000, bitch_talk_think, // frame 19 + ai_stand, 0.000, bitch_talk_think, // frame 20 + ai_stand, 0.000, bitch_talk_think, // frame 21 + ai_stand, 0.000, bitch_talk_think, // frame 22 + ai_stand, 0.000, bitch_talk_think, // frame 23 + ai_stand, 0.000, bitch_talk_think, // frame 24 + ai_stand, 0.000, bitch_talk_think, // frame 25 + ai_stand, 0.000, bitch_talk_think, // frame 26 + ai_stand, 0.000, bitch_talk_think, // frame 27 + ai_stand, 0.000, bitch_talk_think, // frame 28 + ai_stand, 0.000, bitch_talk_think, // frame 29 + ai_stand, 0.000, bitch_talk_think, // frame 30 + ai_stand, 0.000, bitch_talk_think, // frame 31 + ai_stand, 0.000, bitch_talk_think, // frame 32 + ai_stand, 0.000, bitch_talk_think, // frame 33 + ai_stand, 0.000, bitch_talk_think, // frame 34 + ai_stand, 0.000, bitch_talk_think, // frame 35 + ai_stand, 0.000, bitch_talk_think, // frame 36 + ai_stand, 0.000, bitch_talk_think, // frame 37 + ai_stand, 0.000, bitch_talk_think, // frame 38 +}; +mmove_t bitch_move_leanlook = {FRAME_leanlook_01, FRAME_leanlook_39, bitch_frames_leanlook, bitch_end_stand}; + +mframe_t bitch_frames_leanwave[] = +{ + ai_stand, 0.000, bitch_talk_think, // frame 0 + ai_stand, 0.000, bitch_talk_think, // frame 1 + ai_stand, 0.000, bitch_talk_think, // frame 2 + ai_stand, 0.000, bitch_talk_think, // frame 3 + ai_stand, 0.000, bitch_talk_think, // frame 4 + ai_stand, 0.000, bitch_talk_think, // frame 5 + ai_stand, 0.000, bitch_talk_think, // frame 6 + ai_stand, 0.000, bitch_talk_think, // frame 7 + ai_stand, 0.000, bitch_talk_think, // frame 8 + ai_stand, 0.000, bitch_talk_think, // frame 9 + ai_stand, 0.000, bitch_talk_think, // frame 10 + ai_stand, 0.000, bitch_talk_think, // frame 11 + ai_stand, 0.000, bitch_talk_think, // frame 12 + ai_stand, 0.000, bitch_talk_think, // frame 13 + ai_stand, 0.000, bitch_talk_think, // frame 14 + ai_stand, 0.000, bitch_talk_think, // frame 15 + ai_stand, 0.000, bitch_talk_think, // frame 16 + ai_stand, 0.000, bitch_talk_think, // frame 17 + ai_stand, 0.000, bitch_talk_think, // frame 18 + ai_stand, 0.000, bitch_talk_think, // frame 19 + ai_stand, 0.000, bitch_talk_think, // frame 20 + ai_stand, 0.000, bitch_talk_think, // frame 21 + ai_stand, 0.000, bitch_talk_think, // frame 22 + ai_stand, 0.000, bitch_talk_think, // frame 23 + ai_stand, 0.000, bitch_talk_think, // frame 24 + ai_stand, 0.000, bitch_talk_think, // frame 25 + ai_stand, 0.000, bitch_talk_think, // frame 26 + ai_stand, 0.000, bitch_talk_think, // frame 27 + ai_stand, 0.000, bitch_talk_think, // frame 28 + ai_stand, 0.000, bitch_talk_think, // frame 29 + ai_stand, 0.000, bitch_talk_think, // frame 30 + ai_stand, 0.000, bitch_talk_think, // frame 31 + ai_stand, 0.000, bitch_talk_think, // frame 32 +}; +mmove_t bitch_move_leanwave = {FRAME_leanwave_01, FRAME_leanwave_33, bitch_frames_leanwave, bitch_end_stand}; + +mframe_t bitch_frames_whatsup[] = +{ + ai_stand, 0.000, bitch_talk_think, // frame 0 + ai_stand, 0.000, bitch_talk_think, // frame 1 + ai_stand, 0.000, bitch_talk_think, // frame 2 + ai_stand, 0.000, bitch_talk_think, // frame 3 + ai_stand, 0.000, bitch_talk_think, // frame 4 + ai_stand, 0.000, bitch_talk_think, // frame 5 + ai_stand, 0.000, bitch_talk_think, // frame 6 + ai_stand, 0.000, bitch_talk_think, // frame 7 + ai_stand, 0.000, bitch_talk_think, // frame 8 + ai_stand, 0.000, bitch_talk_think, // frame 9 + ai_stand, 0.000, bitch_talk_think, // frame 10 + ai_stand, 0.000, bitch_talk_think, // frame 11 + ai_stand, 0.000, bitch_talk_think, // frame 12 + ai_stand, 0.000, bitch_talk_think, // frame 13 + ai_stand, 0.000, bitch_talk_think, // frame 14 + ai_stand, 0.000, bitch_talk_think, // frame 15 + ai_stand, 0.000, bitch_talk_think, // frame 16 + ai_stand, 0.000, bitch_talk_think, // frame 17 + ai_stand, 0.000, bitch_talk_think, // frame 18 + ai_stand, 0.000, bitch_talk_think, // frame 19 + ai_stand, 0.000, bitch_talk_think, // frame 20 + ai_stand, 0.000, bitch_talk_think, // frame 21 + ai_stand, 0.000, bitch_talk_think, // frame 22 + ai_stand, 0.000, bitch_talk_think, // frame 23 + ai_stand, 0.000, bitch_talk_think, // frame 24 + ai_stand, 0.000, bitch_talk_think, // frame 25 + ai_stand, 0.000, bitch_talk_think, // frame 26 +}; +mmove_t bitch_move_whatsup = {FRAME_whatsup_01, FRAME_whatsup_27, bitch_frames_whatsup, bitch_end_stand}; + +mframe_t bitch_frames_talkme[] = +{ + ai_stand, 0.000, bitch_talk_think, // frame 0 + ai_stand, 0.000, bitch_talk_think, // frame 1 + ai_stand, 0.000, bitch_talk_think, // frame 2 + ai_stand, 0.000, bitch_talk_think, // frame 3 + ai_stand, 0.000, bitch_talk_think, // frame 4 + ai_stand, 0.000, bitch_talk_think, // frame 5 + ai_stand, 0.000, bitch_talk_think, // frame 6 + ai_stand, 0.000, bitch_talk_think, // frame 7 + ai_stand, 0.000, bitch_talk_think, // frame 8 + ai_stand, 0.000, bitch_talk_think, // frame 9 + ai_stand, 0.000, bitch_talk_think, // frame 10 + ai_stand, 0.000, bitch_talk_think, // frame 11 + ai_stand, 0.000, bitch_talk_think, // frame 12 + ai_stand, 0.000, bitch_talk_think, // frame 13 + ai_stand, 0.000, bitch_talk_think, // frame 14 + ai_stand, 0.000, bitch_talk_think, // frame 15 + ai_stand, 0.000, bitch_talk_think, // frame 16 + ai_stand, 0.000, bitch_talk_think, // frame 17 + ai_stand, 0.000, bitch_talk_think, // frame 18 + ai_stand, 0.000, bitch_talk_think, // frame 19 +}; +mmove_t bitch_move_talkme = {FRAME_talkme_01, FRAME_talkme_20, bitch_frames_talkme, bitch_end_stand}; + +mframe_t bitch_frames_nonono[] = +{ + ai_stand, 0.000, bitch_talk_think, // frame 0 + ai_stand, 0.000, bitch_talk_think, // frame 1 + ai_stand, 0.000, bitch_talk_think, // frame 2 + ai_stand, 0.000, bitch_talk_think, // frame 3 + ai_stand, 0.000, bitch_talk_think, // frame 4 + ai_stand, 0.000, bitch_talk_think, // frame 5 + ai_stand, 0.000, bitch_talk_think, // frame 6 + ai_stand, 0.000, bitch_talk_think, // frame 7 + ai_stand, 0.000, bitch_talk_think, // frame 8 + ai_stand, 0.000, bitch_talk_think, // frame 9 + ai_stand, 0.000, bitch_talk_think, // frame 10 + ai_stand, 0.000, bitch_talk_think, // frame 11 + ai_stand, 0.000, bitch_talk_think, // frame 12 + ai_stand, 0.000, bitch_talk_think, // frame 13 + ai_stand, 0.000, bitch_talk_think, // frame 14 + ai_stand, 0.000, bitch_talk_think, // frame 15 + ai_stand, 0.000, bitch_talk_think, // frame 16 + ai_stand, 0.000, bitch_talk_think, // frame 17 + ai_stand, 0.000, bitch_talk_think, // frame 18 + ai_stand, 0.000, bitch_talk_think, // frame 19 + ai_stand, 0.000, bitch_talk_think, // frame 20 + ai_stand, 0.000, bitch_talk_think, // frame 21 + ai_stand, 0.000, bitch_talk_think, // frame 22 + ai_stand, 0.000, bitch_talk_think, // frame 23 + ai_stand, 0.000, bitch_talk_think, // frame 24 + ai_stand, 0.000, bitch_talk_think, // frame 25 +}; +mmove_t bitch_move_nonono = {FRAME_nonono_01, FRAME_nonono_26, bitch_frames_nonono, bitch_end_stand}; + +mframe_t bitch_frames_comeon[] = +{ + ai_stand, 0.000, bitch_talk_think, // frame 0 + ai_stand, 0.000, bitch_talk_think, // frame 1 + ai_stand, 0.000, bitch_talk_think, // frame 2 + ai_stand, 0.000, bitch_talk_think, // frame 3 + ai_stand, 0.000, bitch_talk_think, // frame 4 + ai_stand, 0.000, bitch_talk_think, // frame 5 + ai_stand, 0.000, bitch_talk_think, // frame 6 + ai_stand, 0.000, bitch_talk_think, // frame 7 + ai_stand, 0.000, bitch_talk_think, // frame 8 + ai_stand, 0.000, bitch_talk_think, // frame 9 + ai_stand, 0.000, bitch_talk_think, // frame 10 + ai_stand, 0.000, bitch_talk_think, // frame 11 + ai_stand, 0.000, bitch_talk_think, // frame 12 + ai_stand, 0.000, bitch_talk_think, // frame 13 + ai_stand, 0.000, bitch_talk_think, // frame 14 + ai_stand, 0.000, bitch_talk_think, // frame 15 + ai_stand, 0.000, bitch_talk_think, // frame 16 + ai_stand, 0.000, bitch_talk_think, // frame 17 + ai_stand, 0.000, bitch_talk_think, // frame 18 + ai_stand, 0.000, bitch_talk_think, // frame 19 +}; +mmove_t bitch_move_comeon = {FRAME_comeon_01, FRAME_comeon_20, bitch_frames_comeon, bitch_end_stand}; + +mframe_t bitch_frames_getdown[] = +{ + ai_stand, 0.000, bitch_talk_think, // frame 0 + ai_stand, 0.000, bitch_talk_think, // frame 1 + ai_stand, 0.000, bitch_talk_think, // frame 2 + ai_stand, 0.000, bitch_talk_think, // frame 3 + ai_stand, 0.000, bitch_talk_think, // frame 4 + ai_stand, 0.000, bitch_talk_think, // frame 5 + ai_stand, 0.000, bitch_talk_think, // frame 6 + ai_stand, 0.000, bitch_talk_think, // frame 7 + ai_stand, 0.000, bitch_talk_think, // frame 8 + ai_stand, 0.000, bitch_talk_think, // frame 9 + ai_stand, 0.000, bitch_talk_think, // frame 10 + ai_stand, 0.000, bitch_talk_think, // frame 11 + ai_stand, 0.000, bitch_talk_think, // frame 12 + ai_stand, 0.000, bitch_talk_think, // frame 13 + ai_stand, 0.000, bitch_talk_think, // frame 14 + ai_stand, 0.000, bitch_talk_think, // frame 15 + ai_stand, 0.000, bitch_talk_think, // frame 16 + ai_stand, 0.000, bitch_talk_think, // frame 17 + ai_stand, 0.000, bitch_talk_think, // frame 18 + ai_stand, 0.000, bitch_talk_think, // frame 19 + ai_stand, 0.000, bitch_talk_think, // frame 20 + ai_stand, 0.000, bitch_talk_think, // frame 21 +}; +mmove_t bitch_move_getdown = {FRAME_getdown_01, FRAME_getdown_22, bitch_frames_getdown, bitch_end_stand}; + +mframe_t bitch_frames_whomw[] = +{ + ai_stand, 0.000, bitch_talk_think, // frame 0 + ai_stand, 0.000, bitch_talk_think, // frame 1 + ai_stand, 0.000, bitch_talk_think, // frame 2 + ai_stand, 0.000, bitch_talk_think, // frame 3 + ai_stand, 0.000, bitch_talk_think, // frame 4 + ai_stand, 0.000, bitch_talk_think, // frame 5 + ai_stand, 0.000, bitch_talk_think, // frame 6 + ai_stand, 0.000, bitch_talk_think, // frame 7 + ai_stand, 0.000, bitch_talk_think, // frame 8 + ai_stand, 0.000, bitch_talk_think, // frame 9 + ai_stand, 0.000, bitch_talk_think, // frame 10 + ai_stand, 0.000, bitch_talk_think, // frame 11 + ai_stand, 0.000, bitch_talk_think, // frame 12 + ai_stand, 0.000, bitch_talk_think, // frame 13 + ai_stand, 0.000, bitch_talk_think, // frame 14 + ai_stand, 0.000, bitch_talk_think, // frame 15 + ai_stand, 0.000, bitch_talk_think, // frame 16 + ai_stand, 0.000, bitch_talk_think, // frame 17 + ai_stand, 0.000, bitch_talk_think, // frame 18 + ai_stand, 0.000, bitch_talk_think, // frame 19 + ai_stand, 0.000, bitch_talk_think, // frame 20 + ai_stand, 0.000, bitch_talk_think, // frame 21 + ai_stand, 0.000, bitch_talk_think, // frame 22 + ai_stand, 0.000, bitch_talk_think, // frame 23 +}; +mmove_t bitch_move_whomw = {FRAME_whomw_01, FRAME_whomw_24, bitch_frames_whomw, bitch_end_stand}; + +mframe_t bitch_frames_lookself[] = +{ + ai_stand, 0.000, bitch_talk_think, // frame 0 + ai_stand, 0.000, bitch_talk_think, // frame 1 + ai_stand, 0.000, bitch_talk_think, // frame 2 + ai_stand, 0.000, bitch_talk_think, // frame 3 + ai_stand, 0.000, bitch_talk_think, // frame 4 + ai_stand, 0.000, bitch_talk_think, // frame 5 + ai_stand, 0.000, bitch_talk_think, // frame 6 + ai_stand, 0.000, bitch_talk_think, // frame 7 + ai_stand, 0.000, bitch_talk_think, // frame 8 + ai_stand, 0.000, bitch_talk_think, // frame 9 + ai_stand, 0.000, bitch_talk_think, // frame 10 + ai_stand, 0.000, bitch_talk_think, // frame 11 + ai_stand, 0.000, bitch_talk_think, // frame 12 + ai_stand, 0.000, bitch_talk_think, // frame 13 + ai_stand, 0.000, bitch_talk_think, // frame 14 + ai_stand, 0.000, bitch_talk_think, // frame 15 + ai_stand, 0.000, bitch_talk_think, // frame 16 + ai_stand, 0.000, bitch_talk_think, // frame 17 + ai_stand, 0.000, bitch_talk_think, // frame 18 + ai_stand, 0.000, bitch_talk_think, // frame 19 + ai_stand, 0.000, bitch_talk_think, // frame 20 + ai_stand, 0.000, bitch_talk_think, // frame 21 + ai_stand, 0.000, bitch_talk_think, // frame 22 + ai_stand, 0.000, bitch_talk_think, // frame 23 + ai_stand, 0.000, bitch_talk_think, // frame 24 + ai_stand, 0.000, bitch_talk_think, // frame 25 + ai_stand, 0.000, bitch_talk_think, // frame 26 + ai_stand, 0.000, bitch_talk_think, // frame 27 + ai_stand, 0.000, bitch_talk_think, // frame 28 + ai_stand, 0.000, bitch_talk_think, // frame 29 + ai_stand, 0.000, bitch_talk_think, // frame 30 + ai_stand, 0.000, bitch_talk_think, // frame 31 + ai_stand, 0.000, bitch_talk_think, // frame 32 + ai_stand, 0.000, bitch_talk_think, // frame 33 +}; +mmove_t bitch_move_lookself = {FRAME_lookself_01, FRAME_lookself_34, bitch_frames_lookself, bitch_end_stand}; + +mframe_t bitch_frames_flirt[] = +{ + ai_stand, 0.000, bitch_talk_think, // frame 0 + ai_stand, 0.000, bitch_talk_think, // frame 1 + ai_stand, 0.000, bitch_talk_think, // frame 2 + ai_stand, 0.000, bitch_talk_think, // frame 3 + ai_stand, 0.000, bitch_talk_think, // frame 4 + ai_stand, 0.000, bitch_talk_think, // frame 5 + ai_stand, 0.000, bitch_talk_think, // frame 6 + ai_stand, 0.000, bitch_talk_think, // frame 7 + ai_stand, 0.000, bitch_talk_think, // frame 8 + ai_stand, 0.000, bitch_talk_think, // frame 9 + ai_stand, 0.000, bitch_talk_think, // frame 10 + ai_stand, 0.000, bitch_talk_think, // frame 11 + ai_stand, 0.000, bitch_talk_think, // frame 12 + ai_stand, 0.000, bitch_talk_think, // frame 13 + ai_stand, 0.000, bitch_talk_think, // frame 14 + ai_stand, 0.000, bitch_talk_think, // frame 15 + ai_stand, 0.000, bitch_talk_think, // frame 16 + ai_stand, 0.000, bitch_talk_think, // frame 17 + ai_stand, 0.000, bitch_talk_think, // frame 18 + ai_stand, 0.000, bitch_talk_think, // frame 19 + ai_stand, 0.000, bitch_talk_think, // frame 20 + ai_stand, 0.000, bitch_talk_think, // frame 21 + ai_stand, 0.000, bitch_talk_think, // frame 22 + ai_stand, 0.000, bitch_talk_think, // frame 23 + ai_stand, 0.000, bitch_talk_think, // frame 24 + ai_stand, 0.000, bitch_talk_think, // frame 25 + ai_stand, 0.000, bitch_talk_think, // frame 26 + ai_stand, 0.000, bitch_talk_think, // frame 27 + ai_stand, 0.000, bitch_talk_think, // frame 28 + ai_stand, 0.000, bitch_talk_think, // frame 29 + ai_stand, 0.000, bitch_talk_think, // frame 30 + ai_stand, 0.000, bitch_talk_think, // frame 31 + ai_stand, 0.000, bitch_talk_think, // frame 32 +}; +mmove_t bitch_move_flirt = {FRAME_flirt_01, FRAME_flirt_33, bitch_frames_flirt, bitch_end_stand}; + +mframe_t bitch_frames_walk_shoot[] = +{ + ai_charge,-0.387, NULL, // frame 0 + ai_charge,14.335, NULL, // frame 1 + ai_charge, 3.746, bitch_right_fire, // frame 2 + ai_charge,-2.939, NULL, // frame 3 + ai_charge,12.968, NULL, // frame 4 + ai_charge, 8.805, NULL, // frame 5 + ai_charge, 5.401, bitch_right_fire, // frame 6 + ai_charge, 3.617, NULL, // frame 7 + ai_charge, 7.752, NULL, // frame 8 + ai_charge, 5.046, NULL, // frame 9 + ai_charge, 7.724, bitch_right_fire, // frame 10 + +}; +mmove_t bitch_move_walk_shoot = {FRAME_walk_shoot_01, FRAME_walk_shoot_11, bitch_frames_walk_shoot, AI_EndAttack}; + +mframe_t bitch_frames_walk_guns_dn[] = +{ + ai_run, 15.394, NULL, // frame 0 + ai_run, 12.447, NULL, // frame 1 + ai_run, 7.060, NULL, // frame 2 + ai_run, 1.269, NULL, // frame 3 + ai_run, -0.079, NULL, // frame 4 + ai_run, 2.024, NULL, // frame 5 + ai_run, 5.744, NULL, // frame 6 + ai_run, 6.065, NULL, // frame 7 + ai_run, 3.934, NULL, // frame 8 + ai_run, 6.049, NULL, // frame 9 + ai_run, 5.951, NULL, // frame 10 + +}; +mmove_t bitch_move_walk_guns_dn = {FRAME_walk_guns_dn_01, FRAME_walk_guns_dn_11, bitch_frames_walk_guns_dn, NULL}; + +mframe_t bitch_frames_run_shoot[] = +{ + ai_charge, 25.544, bitch_right_fire, // frame 0 + ai_charge, 16.408, NULL, // frame 1 + ai_charge, 11.801, NULL, // frame 2 + ai_charge, 22.815, bitch_right_fire, // frame 3 + ai_charge, 19.555, NULL, // frame 4 + ai_charge, 13.387, NULL, // frame 5 + ai_charge, 23.020, bitch_right_fire, // frame 6 +}; +mmove_t bitch_move_run_shoot = {FRAME_run_shoot_01, FRAME_run_shoot_07, bitch_frames_run_shoot, AI_EndAttack}; + +mframe_t bitch_frames_reverse_run_shoot[] = +{ + ai_charge,- 23.020, bitch_right_fire, // frame 6 + ai_charge,- 13.387, NULL, // frame 5 + ai_charge,- 19.555, NULL, // frame 4 + ai_charge,- 22.815, bitch_right_fire, // frame 3 + ai_charge,- 11.801, NULL, // frame 2 + ai_charge,- 16.408, NULL, // frame 1 + ai_charge,- 25.544, bitch_right_fire, // frame 0 +}; +mmove_t bitch_move_reverse_run_shoot = {FRAME_run_shoot_07, FRAME_run_shoot_01, bitch_frames_reverse_run_shoot, AI_EndAttack}; + +mframe_t bitch_frames_run_guns_dn[] = +{ + ai_run, 17.697, NULL, // frame 0 + ai_run, 15.930, NULL, // frame 1 + ai_run, 15.610, NULL, // frame 2 + ai_run, 18.980, NULL, // frame 3 + ai_run, 21.142, NULL, // frame 4 + ai_run, 15.510, NULL, // frame 5 + ai_run, 20.503, NULL, // frame 6 +}; +mmove_t bitch_move_run_guns_dn = {FRAME_run_guns_dn_01, FRAME_run_guns_dn_07, bitch_frames_run_guns_dn, NULL}; + +mframe_t bitch_frames_lside_run[] = +{ + ai_sidestep, - 5.667, bitch_firegun_left, // frame 0 + ai_sidestep, -17.557, NULL, // frame 1 + ai_sidestep, -18.095, NULL, // frame 2 + ai_sidestep, -16.412, bitch_firegun_left, // frame 3 + ai_sidestep, -19.351, NULL, // frame 4 + ai_sidestep, -19.924, NULL, // frame 5 + ai_sidestep, -15.967, bitch_firegun_left // frame 6 +}; +mmove_t bitch_move_lside_run = {FRAME_lside_run_01, FRAME_lside_run_07, bitch_frames_lside_run, NULL}; + +mframe_t bitch_frames_rside_run[] = +{ + ai_sidestep, 5.422, bitch_firegun_right, // frame 0 + ai_sidestep, 17.349, NULL, // frame 1 + ai_sidestep, 15.397, NULL, // frame 2 + ai_sidestep, 19.357, bitch_firegun_right, // frame 3 + ai_sidestep, 19.243, NULL, // frame 4 + ai_sidestep, 16.958, NULL, // frame 5 + ai_sidestep, 19.244, bitch_firegun_right // frame 6 +}; +mmove_t bitch_move_rside_run = {FRAME_rside_run_01, FRAME_rside_run_07, bitch_frames_rside_run, NULL}; + +mframe_t bitch_frames_run_on_fire[] = +{ + + ai_onfire_run, 6.564 , NULL, // frame 0 + ai_onfire_run, 20.491 , NULL, // frame 1 + ai_onfire_run, 13.021 , NULL, // frame 2 + ai_onfire_run, 26.721 , NULL, // frame 3 + ai_onfire_run, 17.332 , NULL, // frame 4 + ai_onfire_run, 11.295 , NULL, // frame 5 + ai_onfire_run, 17.608 , NULL, // frame 6 + ai_onfire_run, 18.820 , NULL, // frame 7 + ai_onfire_run, 17.630 , NULL, // frame 8 + ai_onfire_run, 18.087 , NULL, // frame 9 + ai_onfire_run, 23.520 , NULL, // frame 10 + ai_onfire_run, 12.192 , NULL, // frame 11 + ai_onfire_run, 20.855 , NULL, // frame 12 + +}; +mmove_t bitch_move_run_on_fire = {FRAME_run_on_fire_01, FRAME_run_on_fire_13, bitch_frames_run_on_fire, NULL}; + +mframe_t bitch_frames_evd_walk[] = +{ + ai_turn, -3.523 , NULL, // frame 0 + ai_turn, -7.377 , NULL, // frame 1 + ai_turn, -5.952 , NULL, // frame 2 + ai_turn, -9.002 , NULL, // frame 3 + ai_turn, -8.051 , NULL, // frame 4 + ai_turn, -1.897 , NULL, // frame 5 + ai_turn, -1.948 , NULL, // frame 6 +}; +mmove_t bitch_move_evd_walk = {FRAME_evd_walk_01, FRAME_evd_walk_07, bitch_frames_evd_walk, bitch_evade_amb}; + + +mframe_t bitch_frames_evade_adjust[] = +{ + ai_turn, -9.002, bitch_evade_adjust, // frame 4 + ai_turn, -8.051, bitch_evade_adjust, // frame 5 + ai_turn, -1.897, bitch_evade_adjust, // frame 6 + ai_turn, -1.948, bitch_evade_adjust, // frame 7 +}; +mmove_t bitch_move_evade_adjust = {FRAME_evd_walk_04, FRAME_evd_walk_07, bitch_frames_evade_adjust, bitch_evade_amb}; + + +mframe_t bitch_frames_evd_amb[] = +{ + ai_turn, 0.0, NULL, // frame 0 + ai_turn, 0.0, NULL, // frame 1 + ai_turn, 0.0, NULL, // frame 2 + ai_turn, 0.0, NULL, // frame 3 + ai_turn, 0.0, NULL, // frame 4 + ai_turn, 0.0, NULL, // frame 5 + ai_turn, 0.0, NULL, // frame 6 + ai_turn, 0.0, NULL, // frame 7 + ai_turn, 0.0, NULL, // frame 8 + ai_turn, 0.0, NULL, // frame 9 + ai_turn, 0.0, NULL, // frame 10 +}; +mmove_t bitch_move_evd_amb = {FRAME_evd_amb_01, FRAME_evd_amb_11, bitch_frames_evd_amb, AI_CheckEvade}; + + +mframe_t bitch_frames_evd_stand[] = +{ + ai_stand, 0.0, NULL, // frame 0 + ai_stand, 0.0, NULL, // frame 1 + ai_stand, 0.0, NULL, // frame 2 + ai_stand, 0.0, NULL, // frame 3 + ai_stand, 0.0, NULL, // frame 4 + ai_stand, 0.0, NULL, // frame 5 + ai_stand, 0.0, NULL, // frame 6 + ai_stand, 0.0, NULL, // frame 7 + ai_stand, 0.0, NULL, // frame 8 + ai_stand, 0.0, NULL, // frame 9 + ai_stand, 0.0, NULL, // frame 10 +}; +mmove_t bitch_move_evd_stand = {FRAME_evd_amb_01, FRAME_evd_amb_11, bitch_frames_evd_stand, bitch_end_stand}; + + +mframe_t bitch_frames_pull_gun[] = +{ + ai_charge, 0.000, NULL, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, bitch_show_guns, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, NULL, // frame 4 + ai_charge, 0.000, NULL, // frame 5 + ai_charge, 0.000, NULL, // frame 6 + ai_charge, 0.000, NULL, // frame 7 +}; +mmove_t bitch_move_pull_gun = {FRAME_pull_gun_01, FRAME_pull_gun_08, bitch_frames_pull_gun, AI_EndAttack}; + +mframe_t bitch_frames_shoot_stand[] = +{ + ai_charge, 0.000, bitch_right_fire, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, bitch_right_fire, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, bitch_right_fire, // frame 4 +}; +mmove_t bitch_move_shoot_stand = {FRAME_stand_shoot_01, FRAME_stand_shoot_05, bitch_frames_shoot_stand, AI_EndAttack}; + +mframe_t bitch_frames_reload[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 7 + NULL, 0.000, NULL, // frame 8 + NULL, 0.000, NULL, // frame 9 + NULL, 0.000, NULL, // frame 10 + NULL, 0.000, NULL, // frame 11 + NULL, 0.000, NULL, // frame 12 + NULL, 0.000, NULL, // frame 13 + NULL, 0.000, NULL, // frame 14 + NULL, 0.000, NULL, // frame 15 + NULL, 0.000, NULL, // frame 16 + NULL, 0.000, NULL, // frame 17 + NULL, 0.000, NULL, // frame 18 + NULL, 0.000, NULL, // frame 19 +}; +mmove_t bitch_move_reload = {FRAME_reload_01, FRAME_reload_13, bitch_frames_reload, AI_EndAttack}; + + + +mframe_t bitch_frames_p_pain_chst[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 +}; +mmove_t bitch_move_p_pain_chst = {FRAME_p_pain_chst_01, FRAME_p_pain_chst_06, bitch_frames_p_pain_chst, AI_EndAttack}; + +mframe_t bitch_frames_p_pain_rshd[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 +}; +mmove_t bitch_move_p_pain_rshd = {FRAME_p_pain_rshd_01, FRAME_p_pain_rshd_07, bitch_frames_p_pain_rshd, AI_EndAttack}; + +mframe_t bitch_frames_p_pain_lshd[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 +}; +mmove_t bitch_move_p_pain_lshd = {FRAME_p_pain_lshd_01, FRAME_p_pain_lshd_06, bitch_frames_p_pain_lshd, AI_EndAttack}; + +mframe_t bitch_frames_p_pain_rshd2[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 +}; +mmove_t bitch_move_p_pain_rshd2 = {FRAME_p_pain_rshd2_01, FRAME_p_pain_rshd2_05, bitch_frames_p_pain_rshd2, AI_EndAttack}; + +mframe_t bitch_frames_p_pain_rleg[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 +}; +mmove_t bitch_move_p_pain_rleg = {FRAME_p_pain_rleg_01, FRAME_p_pain_rleg_08, bitch_frames_p_pain_rleg, AI_EndAttack}; + +mframe_t bitch_frames_p_pain_lleg[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 +}; +mmove_t bitch_move_p_pain_lleg = {FRAME_p_pain_lleg_01, FRAME_p_pain_lleg_07, bitch_frames_p_pain_lleg, AI_EndAttack}; + +mframe_t bitch_frames_p_pain_crch[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 +}; +mmove_t bitch_move_p_pain_crch = {FRAME_p_pain_crch_01, FRAME_p_pain_crch_07, bitch_frames_p_pain_crch, AI_EndAttack}; + +mframe_t bitch_frames_p_pain_butt[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 + ai_move, 0.000, NULL, // frame 12 +}; +mmove_t bitch_move_p_pain_butt = {FRAME_p_pain_butt_01, FRAME_p_pain_butt_13, bitch_frames_p_pain_butt, AI_EndAttack}; + +mframe_t bitch_frames_p_pain_lshd2[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t bitch_move_p_pain_lshd2 = {FRAME_p_pain_lshd2_01, FRAME_p_pain_lshd2_09, bitch_frames_p_pain_lshd2, AI_EndAttack}; + +mframe_t bitch_frames_p_pain_rleg2[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 +}; +mmove_t bitch_move_p_pain_rleg2 = {FRAME_p_pain_rleg2_01, FRAME_p_pain_rleg2_10, bitch_frames_p_pain_rleg2, AI_EndAttack}; + +mframe_t bitch_frames_p_pain_lleg2[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 +}; +mmove_t bitch_move_p_pain_lleg2 = {FRAME_p_pain_lleg2_01, FRAME_p_pain_lleg2_07, bitch_frames_p_pain_lleg2, AI_EndAttack}; + +mframe_t bitch_frames_p_pain_crch2[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 +}; +mmove_t bitch_move_p_pain_crch2 = {FRAME_p_pain_crch2_01, FRAME_p_pain_crch2_06, bitch_frames_p_pain_crch2, AI_EndAttack}; + +mframe_t bitch_frames_p_pain_butt2[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 +}; +mmove_t bitch_move_p_pain_butt2 = {FRAME_p_pain_butt2_01, FRAME_p_pain_butt2_08, bitch_frames_p_pain_butt2, AI_EndAttack}; + +mframe_t bitch_frames_p_pain_head2[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 +}; +mmove_t bitch_move_p_pain_head2 = {FRAME_p_pain_head2_01, FRAME_p_pain_head2_04, bitch_frames_p_pain_head2, AI_EndAttack}; + + +mframe_t bitch_frames_death1[] = +{ + ai_move, -6.175, NULL, // frame 0 + ai_move, -3.499, NULL, // frame 1 + ai_move, -6.851, NULL, // frame 2 + ai_move, -12.644, NULL, // frame 3 + ai_move, -22.505, NULL, // frame 4 + ai_move, 1.774, NULL, // frame 5 + ai_move, -5.915, NULL, // frame 6 + ai_move, -0.512, NULL, // frame 7 + ai_move, 1.367, NULL, // frame 8 + ai_move, 1.460, NULL, // frame 9 + ai_move, 0.932, NULL, // frame 10 + ai_move, -0.798, NULL, // frame 11 + ai_move, -1.688, NULL, // frame 12 + ai_move, -0.359, NULL, // frame 13 + ai_move, -0.033, NULL, // frame 14 + +}; +mmove_t bitch_move_death1 = {FRAME_death1_01, FRAME_death1_15, bitch_frames_death1, AI_EndDeath}; + +mframe_t bitch_frames_death2[] = +{ + ai_move, -4.503, NULL, // frame 0 + ai_move, -6.637, NULL, // frame 1 + ai_move, -7.037, NULL, // frame 2 + ai_move, -15.226, NULL, // frame 3 + ai_move, -10.693, NULL, // frame 4 + ai_move, -7.248, NULL, // frame 5 + ai_move, -6.418, NULL, // frame 6 + ai_move, -3.067, NULL, // frame 7 + ai_move, -0.148, NULL, // frame 8 + ai_move, -1.794, NULL, // frame 9 + ai_move, -1.262, NULL, // frame 10 + ai_move, 0.233, NULL, // frame 11 + ai_move, 0.098, NULL, // frame 12 + ai_move, -0.047, NULL, // frame 13 + ai_move, -0.051, NULL, // frame 14 + ai_move, 0.024, NULL, // frame 15 +}; +mmove_t bitch_move_death2 = {FRAME_death2_01, FRAME_death2_16, bitch_frames_death2, AI_EndDeath}; + +mframe_t bitch_frames_death3[] = +{ + ai_move, -2.798, NULL, // frame 0 + ai_move, 9.722, NULL, // frame 1 + ai_move, 8.203, NULL, // frame 2 + ai_move, 6.324, NULL, // frame 3 + ai_move, 8.530, NULL, // frame 4 + ai_move, 9.302, NULL, // frame 5 + ai_move, 2.073, NULL, // frame 6 + ai_move, 0.491, NULL, // frame 7 + ai_move, -0.245, NULL, // frame 8 + ai_move, 0.103, NULL, // frame 9 + ai_move, 0.026, NULL, // frame 10 + ai_move, -0.040, NULL, // frame 11 + ai_move, -0.005, NULL, // frame 12 + ai_move, 0.017, NULL, // frame 13 + ai_move, -0.007, NULL, // frame 14 + ai_move, -0.001, NULL, // frame 15 +}; +mmove_t bitch_move_death3 = {FRAME_death3_01, FRAME_death3_16, bitch_frames_death3, AI_EndDeath}; + +mframe_t bitch_frames_death4[] = +{ + ai_move, -1.635, NULL, // frame 0 + ai_move, 0.821, NULL, // frame 1 + ai_move, 1.613, NULL, // frame 2 + ai_move, 2.872, NULL, // frame 3 + ai_move, 2.480, NULL, // frame 4 + ai_move, 3.158, NULL, // frame 5 + ai_move, 5.585, NULL, // frame 6 + ai_move, 3.709, NULL, // frame 7 + ai_move, -0.516, NULL, // frame 8 + ai_move, -1.012, NULL, // frame 9 + ai_move, -1.925, NULL, // frame 10 + ai_move, 3.284, NULL, // frame 11 + ai_move, 6.448, NULL, // frame 12 + ai_move, 6.095, NULL, // frame 13 + ai_move, 5.101, NULL, // frame 14 + ai_move, 0.425, NULL, // frame 15 + ai_move, 0.241, NULL, // frame 16 + ai_move, 1.507, NULL, // frame 17 + ai_move, 0.167, NULL, // frame 18 + ai_move, -0.324, NULL, // frame 19 + ai_move, -0.151, NULL, // frame 20 + ai_move, 0.024, NULL, // frame 21 +}; +mmove_t bitch_move_death4 = {FRAME_death4_01, FRAME_death4_22, bitch_frames_death4, AI_EndDeath}; + +mframe_t bitch_frames_death5[] = +{ + ai_move, -2.966, NULL, // frame 0 + ai_move, 4.526, NULL, // frame 1 + ai_move, 3.461, NULL, // frame 2 + ai_move, 0.109, NULL, // frame 3 + ai_move, 2.338, NULL, // frame 4 + ai_move, 3.914, NULL, // frame 5 + ai_move, 4.384, NULL, // frame 6 + ai_move, 1.872, NULL, // frame 7 + ai_move, -0.987, NULL, // frame 8 + ai_move, 0.239, NULL, // frame 9 + ai_move, -0.840, NULL, // frame 10 + ai_move, -0.444, NULL, // frame 11 + ai_move, 0.330, NULL, // frame 12 + ai_move, 0.396, NULL, // frame 13 + ai_move, 0.506, NULL, // frame 14 + ai_move, 1.860, NULL, // frame 15 + ai_move, 4.885, NULL, // frame 16 + ai_move, 11.843, NULL, // frame 17 + ai_move, 2.474, NULL, // frame 18 + ai_move, -2.247, NULL, // frame 19 + ai_move, -1.171, NULL, // frame 20 + ai_move, 0.513, NULL, // frame 21 + ai_move, -0.415, NULL, // frame 22 + ai_move, -0.085, NULL, // frame 23 + ai_move, 0.103, NULL, // frame 24 + ai_move, 0.042, NULL, // frame 25 + ai_move, 0.006, NULL, // frame 26 + ai_move, 0.004, NULL, // frame 27 + ai_move, 0.002, NULL, // frame 28 + ai_move, 0.011, NULL, // frame 29 + ai_move, 0.000, NULL, // frame 30 + ai_move, 0.002, NULL, // frame 31 + ai_move, -0.002, NULL, // frame 32 +}; +mmove_t bitch_move_death5 = {FRAME_death5_01, FRAME_death5_33, bitch_frames_death5, AI_EndDeath}; + + + + + + + +// custom moves + +mframe_t bitch_frames_avoid_walk[] = +{ + ai_turn, 2.385, NULL, // frame 0 + ai_turn, 11.490, NULL, // frame 1 + ai_turn, 6.246, NULL, // frame 2 + ai_turn, -0.401, NULL, // frame 3 + ai_turn, 0.363, NULL, // frame 4 + ai_turn, 7.448, NULL, // frame 5 + ai_turn, 8.381, NULL, // frame 6 + ai_turn, 8.323, NULL, // frame 7 + ai_turn, 1.809, NULL, // frame 8 + ai_turn, 1.921, NULL, // frame 9 + ai_turn, 8.302, NULL, // frame 10 + +}; +mmove_t bitch_move_avoid_walk = {FRAME_walk_guns_dn_01, FRAME_walk_guns_dn_11, bitch_frames_avoid_walk, AI_EndAttack}; +// ok + + +mframe_t bitch_frames_avoid_reverse_walk[] = +{ + ai_turn, -8.302, NULL, // frame 10 + ai_turn, -1.921, NULL, // frame 9 + ai_turn, -1.809, NULL, // frame 8 + ai_turn, -8.323, NULL, // frame 7 + ai_turn, -8.381, NULL, // frame 6 + ai_turn, -7.448, NULL, // frame 5 + ai_turn, -0.363, NULL, // frame 4 + ai_turn, 0.401, NULL, // frame 3 + ai_turn, -6.246, NULL, // frame 2 + ai_turn, -11.490, NULL, // frame 1 + ai_turn, -2.385, NULL, // frame 0 +}; +mmove_t bitch_move_avoid_reverse_walk = {FRAME_walk_guns_dn_11, FRAME_walk_guns_dn_01, bitch_frames_avoid_reverse_walk, AI_EndAttack}; +// ok + + +mframe_t bitch4_frames_crch_avoid_walk[] = +{ + ai_turn, 3.161, NULL, // frame 0 + ai_turn, 5.625, NULL, // frame 1 + ai_turn, 6.073, NULL, // frame 2 + ai_turn, 4.260, NULL, // frame 3 + ai_turn, 3.528, NULL, // frame 4 + ai_turn, 5.728, NULL, // frame 5 + ai_turn, 9.076, NULL, // frame 6 +}; +mmove_t bitch_move_crch_avoid_walk = {FRAME_crch_walk_01, FRAME_crch_walk_07, bitch4_frames_crch_avoid_walk, AI_EndAttack}; + + + +mframe_t bitch_frames_avoid_run[] = +{ + ai_turn, 15.508, NULL, // frame 0 + ai_turn, 15.090, NULL, // frame 1 + ai_turn, 14.876, NULL, // frame 2 + ai_turn, 20.541, NULL, // frame 3 + ai_turn, 21.397, NULL, // frame 4 + ai_turn, 13.534, NULL, // frame 5 + ai_turn, 22.275, NULL, // frame 6 +}; +mmove_t bitch_move_avoid_run = {FRAME_run_guns_dn_01, FRAME_run_guns_dn_07, bitch_frames_avoid_run, AI_EndAttack}; +// ok + + +mframe_t bitch_frames_avoid_reverse_run[] = +{ + ai_turn, 22.275, NULL, // frame 6 + ai_turn, 13.534, NULL, // frame 5 + ai_turn, 21.397, NULL, // frame 4 + ai_turn, 20.541, NULL, // frame 3 + ai_turn, 14.876, NULL, // frame 2 + ai_turn, 15.090, NULL, // frame 1 + ai_turn, 15.508, NULL, // frame 0 +}; +mmove_t bitch_move_avoid_reverse_run = {FRAME_run_guns_dn_07, FRAME_run_guns_dn_01, bitch_frames_avoid_reverse_run, AI_EndAttack}; + + + + + +// new moves + +mframe_t bitch4_frames_stnd2melee[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 +}; +mmove_t bitch4_move_stnd2melee = {FRAME_stnd2melee_01, FRAME_stnd2melee_04, bitch4_frames_stnd2melee, NULL}; + +mframe_t bitch4_frames_melee2stnd[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 +}; +mmove_t bitch4_move_melee2stnd = {FRAME_melee2stnd_01, FRAME_melee2stnd_05, bitch4_frames_melee2stnd, NULL}; + +mframe_t bitch4_frames_melee_amb[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 +}; +mmove_t bitch4_move_melee_amb = {FRAME_melee_amb_01, FRAME_melee_amb_08, bitch4_frames_melee_amb, NULL}; + +mframe_t bitch4_frames_low_melee1[] = +{ + ai_turn2, 0.000, bitch_melee_bail, // frame 0 + ai_turn2, 0.000, bitch_melee_bail, // frame 1 + ai_turn2, 0.000, bitch_melee, // frame 2 + ai_turn2, 0.000, NULL, // frame 3 + ai_turn2, 0.000, NULL, // frame 4 + ai_turn2, 0.000, NULL, // frame 5 +}; +mmove_t bitch4_move_low_melee1 = {FRAME_low_melee1_01, FRAME_low_melee1_06, bitch4_frames_low_melee1, AI_EndAttack}; + +mframe_t bitch4_frames_melee1[] = +{ + ai_turn2, 0.000, bitch_melee_bail, // frame 0 + ai_turn2, 0.000, bitch_melee_bail, // frame 1 + ai_turn2, 0.000, bitch_melee_bail, // frame 2 + ai_turn2, 0.000, bitch_melee_bail, // frame 3 + ai_turn2, 0.000, bitch_melee, // frame 4 + ai_turn2, 0.000, NULL, // frame 5 + ai_turn2, 0.000, NULL, // frame 6 + ai_turn2, 0.000, NULL, // frame 7 + + // the animation is fucked beyond this point + /* + ai_turn2, 0.000, NULL, // frame 8 + ai_turn2, 0.000, NULL, // frame 9 + ai_turn2, 0.000, NULL, // frame 10 + ai_turn2, 0.000, NULL, // frame 11 + ai_turn2, 0.000, NULL, // frame 12 + ai_turn2, 0.000, NULL, // frame 13 + ai_turn2, 0.000, NULL, // frame 14 + ai_turn2, 0.000, NULL, // frame 15 + ai_turn2, 0.000, NULL, // frame 16 + ai_turn2, 0.000, NULL, // frame 17 + */ +}; +mmove_t bitch4_move_melee1 = {FRAME_melee1_01, FRAME_melee1_08, bitch4_frames_melee1, AI_EndAttack}; + +/* +This entire animation is messed up the pipe clips her head +mframe_t bitch4_frames_melee2[] = +{ + ai_turn2, 0.000, NULL, // frame 0 + ai_turn2, 0.000, NULL, // frame 1 + ai_turn2, 0.000, NULL, // frame 2 + ai_turn2, 0.000, NULL, // frame 3 + ai_turn2, 0.000, NULL, // frame 4 + ai_turn2, 0.000, NULL, // frame 5 + ai_turn2, 0.000, NULL, // frame 6 + ai_turn2, 0.000, NULL, // frame 7 + ai_turn2, 0.000, NULL, // frame 8 + ai_turn2, 0.000, NULL, // frame 9 +}; +mmove_t bitch4_move_melee2 = {FRAME_melee2_01, FRAME_melee2_10, bitch4_frames_melee2, AI_EndAttack}; +*/ + +mframe_t bitch4_frames_melee3[] = +{ + ai_turn2, 0.000, bitch_melee_bail, // frame 0 + ai_turn2, 0.000, bitch_melee_bail, // frame 1 + ai_turn2, 0.000, bitch_melee_bail, // frame 2 + ai_turn2, 0.000, bitch_melee_bail, // frame 3 + ai_turn2, 0.000, bitch_melee, // frame 4 + ai_turn2, 0.000, NULL, // frame 5 + ai_turn2, 0.000, NULL, // frame 6 + ai_turn2, 0.000, NULL, // frame 7 + // the animation is fucked beyond this point + /* + ai_turn2, 0.000, NULL, // frame 8 + ai_turn2, 0.000, NULL, // frame 9 + ai_turn2, 0.000, NULL, // frame 10 + ai_turn2, 0.000, NULL, // frame 11 + ai_turn2, 0.000, NULL, // frame 12 + ai_turn2, 0.000, NULL, // frame 13 + ai_turn2, 0.000, NULL, // frame 14 + ai_turn2, 0.000, NULL, // frame 15 + ai_turn2, 0.000, NULL, // frame 16 + ai_turn2, 0.000, NULL, // frame 17 + */ +}; +mmove_t bitch4_move_melee3 = {FRAME_melee3_01, FRAME_melee3_08, bitch4_frames_melee3, AI_EndAttack}; + +mframe_t bitch4_frames_run_melee[] = +{ + ai_charge, 10.665, NULL, // frame 0 //Ridah, changed this so it always moves (was negative value) + ai_charge, 14.615, NULL, // frame 1 + ai_charge, 16.697, NULL, // frame 2 + ai_charge, 18.682, bitch_melee, // frame 3 + ai_charge, 20.176, NULL, // frame 4 + ai_charge, 16.733, NULL, // frame 5 + ai_charge, 20.605, NULL, // frame 6 +}; +mmove_t bitch4_move_run_melee = {FRAME_run_melee_01, FRAME_run_melee_07, bitch4_frames_run_melee, AI_EndAttack}; + +mframe_t bitch4_frames_jump[] = +{ +// NULL, 0.000, NULL, // frame 0 +// NULL, 0.000, NULL, // frame 1 +// NULL, 0.000, NULL, // frame 2 +// NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, AI_CheckStillInair, // frame 7 + NULL, 0.000, NULL, // frame 8 +// NULL, 0.000, NULL, // frame 9 +}; +mmove_t bitch4_move_jump = {FRAME_jump_05, FRAME_jump_09, bitch4_frames_jump, AI_EndJump}; + +mframe_t bitch4_frames_lside_step[] = +{ + ai_sidestep, 0.354, NULL, // frame 0 + ai_sidestep, 1.416, NULL, // frame 1 + ai_sidestep, 8.838, NULL, // frame 2 + ai_sidestep, 6.317, NULL, // frame 3 + ai_sidestep, 6.272, NULL, // frame 4 + ai_sidestep, 1.312, NULL, // frame 5 +}; +mmove_t bitch4_move_lside_step = {FRAME_lside_step_01, FRAME_lside_step_06, bitch4_frames_lside_step, AI_EndAttack}; + +mframe_t bitch4_frames_rside_step[] = +{ + ai_sidestep, -3.238, NULL, // frame 0 + ai_sidestep,-11.204, NULL, // frame 1 + ai_sidestep, -6.360, NULL, // frame 2 + ai_sidestep, -5.556, NULL, // frame 3 +}; +mmove_t bitch4_move_rside_step = {FRAME_rside_step_01, FRAME_rside_step_04, bitch4_frames_rside_step, AI_EndAttack}; + + +mframe_t bitch4_frames_st_climb[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 7 +}; +mmove_t bitch4_move_st_climb = {FRAME_st_climb_01, FRAME_st_climb_08, bitch4_frames_st_climb, NULL}; + +mframe_t bitch4_frames_clmb_loop[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 7 + NULL, 0.000, NULL, // frame 8 + NULL, 0.000, NULL, // frame 9 + NULL, 0.000, NULL, // frame 10 +}; +mmove_t bitch4_move_clmb_loop = {FRAME_clmb_loop_01, FRAME_clmb_loop_11, bitch4_frames_clmb_loop, AI_CheckStillClimbingLadder}; + +/* + move does not exist will use this till then +*/ + +mframe_t bitch4_frames_clmb_jump[] = +{ +// NULL, 0.000, NULL, // frame 0 +// NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, AI_CheckStillInair, // frame 4 + NULL, 0.000, NULL, // frame 5 +// NULL, 0.000, NULL, // frame 6 +// NULL, 0.000, NULL, // frame 7 +}; +mmove_t bitch4_move_clmb_jmp = {FRAME_st_climb_03, FRAME_st_climb_06, bitch4_frames_clmb_jump, AI_EndJump}; + +mframe_t bitch4_frames_crch_dth1[] = +{ + ai_move, -6.696, NULL, // frame 0 + ai_move, -4.322, NULL, // frame 1 + ai_move, -12.365, NULL, // frame 2 + ai_move, -13.342, NULL, // frame 3 + ai_move, -9.794, NULL, // frame 4 + ai_move, -13.628, NULL, // frame 5 + ai_move, -9.628, NULL, // frame 6 + ai_move, 0.269, NULL, // frame 7 + ai_move, 2.220, NULL, // frame 8 + ai_move, 0.794, NULL, // frame 9 + ai_move, -0.188, NULL, // frame 10 + ai_move, -0.880, NULL, // frame 11 + ai_move, -0.311, NULL, // frame 12 + ai_move, -0.042, NULL, // frame 13 + ai_move, 0.053, NULL, // frame 14 + ai_move, -0.055, NULL, // frame 15 + ai_move, -0.052, NULL, // frame 16 + ai_move, -0.041, NULL, // frame 17 +}; +mmove_t bitch4_move_crch_dth1 = {FRAME_crch_dth1_01, FRAME_crch_dth1_18, bitch4_frames_crch_dth1, AI_EndDeath}; + +mframe_t bitch4_frames_crch_dth2[] = +{ + ai_move, 0.165, NULL, // frame 0 + ai_move, -4.994, NULL, // frame 1 + ai_move, -10.808, NULL, // frame 2 + ai_move, -18.492, NULL, // frame 3 + ai_move, -12.699, NULL, // frame 4 + ai_move, 1.597, NULL, // frame 5 + ai_move, -6.449, NULL, // frame 6 + ai_move, -1.806, NULL, // frame 7 + ai_move, -1.587, NULL, // frame 8 + ai_move, -0.255, NULL, // frame 9 + ai_move, -0.102, NULL, // frame 10 + ai_move, 0.111, NULL, // frame 11 + ai_move, 0.332, NULL, // frame 12 + ai_move, -0.076, NULL, // frame 13 + ai_move, -0.093, NULL, // frame 14 + ai_move, -0.010, NULL, // frame 15 + ai_move, 0.030, NULL, // frame 16 + ai_move, -0.028, NULL, // frame 17 + ai_move, -0.008, NULL, // frame 18 + ai_move, 0.010, NULL, // frame 19 +}; +mmove_t bitch4_move_crch_dth2 = {FRAME_crch_dth2_01, FRAME_crch_dth2_20, bitch4_frames_crch_dth2, AI_EndDeath}; + +mframe_t bitch4_frames_crch_dth3[] = +{ + ai_move, 0.314, NULL, // frame 0 + ai_move, 1.450, NULL, // frame 1 + ai_move, 1.566, NULL, // frame 2 + ai_move, 3.095, NULL, // frame 3 + ai_move, 3.611, NULL, // frame 4 + ai_move, 3.086, NULL, // frame 5 + ai_move, 1.937, NULL, // frame 6 + ai_move, 3.584, NULL, // frame 7 + ai_move, 1.953, NULL, // frame 8 + ai_move, -1.328, NULL, // frame 9 + ai_move, 0.703, NULL, // frame 10 + ai_move, 1.461, NULL, // frame 11 + ai_move, 0.224, NULL, // frame 12 + ai_move, 0.003, NULL, // frame 13 + ai_move, -0.014, NULL, // frame 14 + ai_move, -0.011, NULL, // frame 15 + ai_move, -0.006, NULL, // frame 16 +}; +mmove_t bitch4_move_crch_dth3 = {FRAME_crch_dth3_01, FRAME_crch_dth3_17, bitch4_frames_crch_dth3, AI_EndDeath}; + +mframe_t bitch4_frames_crch_dth4[] = +{ + ai_move, 3.347, NULL, // frame 0 + ai_move, 2.696, NULL, // frame 1 + ai_move, 3.915, NULL, // frame 2 + ai_move, 2.660, NULL, // frame 3 + ai_move, -0.513, NULL, // frame 4 + ai_move, 0.444, NULL, // frame 5 + ai_move, 0.294, NULL, // frame 6 + ai_move, 0.391, NULL, // frame 7 + ai_move, 0.410, NULL, // frame 8 + ai_move, -0.087, NULL, // frame 9 + ai_move, -0.443, NULL, // frame 10 + ai_move, -0.331, NULL, // frame 11 + ai_move, 0.436, NULL, // frame 12 + ai_move, 1.010, NULL, // frame 13 + ai_move, 1.466, NULL, // frame 14 + ai_move, 2.814, NULL, // frame 15 + ai_move, 4.338, NULL, // frame 16 + ai_move, 6.705, NULL, // frame 17 + ai_move, 3.991, NULL, // frame 18 + ai_move, -2.109, NULL, // frame 19 + ai_move, -0.242, NULL, // frame 20 + ai_move, -0.005, NULL, // frame 21 + ai_move, 0.962, NULL, // frame 22 + ai_move, -0.066, NULL, // frame 23 + ai_move, -0.177, NULL, // frame 24 + ai_move, 0.016, NULL, // frame 25 + ai_move, 0.033, NULL, // frame 26 + ai_move, 0.048, NULL, // frame 27 +}; +mmove_t bitch4_move_crch_dth4 = {FRAME_crch_dth4_01, FRAME_crch_dth4_28, bitch4_frames_crch_dth4, AI_EndDeath}; + +mframe_t bitch4_frames_crch_knl_dn[] = +{ +// NULL, 0.000, NULL, // frame 0 +// NULL, 0.000, NULL, // frame 1 +// NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 +// NULL, 0.000, NULL, // frame 7 +}; +mmove_t bitch4_move_crch_knl_dn = {FRAME_crch_knl_dn_04, FRAME_crch_knl_dn_07, bitch4_frames_crch_knl_dn, AI_EndAttack}; + +mframe_t bitch4_frames_stand_up[] = +{ +// NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 +// NULL, 0.000, NULL, // frame 5 +// NULL, 0.000, NULL, // frame 6 +// NULL, 0.000, NULL, // frame 7 +}; +mmove_t bitch4_move_stand_up = {FRAME_crch_knl_dn_07, FRAME_crch_knl_dn_04, bitch4_frames_stand_up, AI_EndAttack}; + +mframe_t bitch4_frames_crch_amb_std[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 + ai_stand, 0.000, NULL, // frame 9 + ai_stand, 0.000, NULL, // frame 10 + ai_stand, 0.000, NULL, // frame 11 + ai_stand, 0.000, NULL, // frame 12 + ai_stand, 0.000, NULL, // frame 13 + ai_stand, 0.000, NULL, // frame 14 + ai_stand, 0.000, NULL, // frame 15 + ai_stand, 0.000, NULL, // frame 16 + ai_stand, 0.000, NULL, // frame 17 + ai_stand, 0.000, NULL, // frame 18 + ai_stand, 0.000, NULL, // frame 19 + ai_stand, 0.000, NULL, // frame 20 + ai_stand, 0.000, NULL, // frame 21 + ai_stand, 0.000, NULL, // frame 22 + ai_stand, 0.000, NULL, // frame 23 + ai_stand, 0.000, NULL, // frame 24 + ai_stand, 0.000, NULL, // frame 25 + ai_stand, 0.000, NULL, // frame 26 + ai_stand, 0.000, NULL, // frame 27 + ai_stand, 0.000, NULL, // frame 28 + ai_stand, 0.000, NULL, // frame 29 + ai_stand, 0.000, NULL, // frame 30 + ai_stand, 0.000, NULL, // frame 31 + ai_stand, 0.000, NULL, // frame 32 + ai_stand, 0.000, NULL, // frame 33 +}; +mmove_t bitch4_move_crch_amb_std = {FRAME_crch_amb_std_01, FRAME_crch_amb_std_34, bitch4_frames_crch_amb_std, AI_EndAttack}; + +mframe_t bitch4_frames_crch_shoot[] = +{ + ai_charge, 0.000, bitch_right_fire, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, NULL, // frame 2 +}; +mmove_t bitch4_move_crch_shoot = {FRAME_crch_shoot_01, FRAME_crch_shoot_03, bitch4_frames_crch_shoot, AI_EndAttack}; + +mframe_t bitch4_frames_crch_reload[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 7 + NULL, 0.000, NULL, // frame 8 + NULL, 0.000, NULL, // frame 9 + NULL, 0.000, NULL, // frame 10 + NULL, 0.000, NULL, // frame 11 + NULL, 0.000, NULL, // frame 12 + NULL, 0.000, NULL, // frame 13 + NULL, 0.000, NULL, // frame 14 + NULL, 0.000, NULL, // frame 15 + NULL, 0.000, NULL, // frame 16 + NULL, 0.000, NULL, // frame 17 + NULL, 0.000, NULL, // frame 18 + NULL, 0.000, NULL, // frame 19 + NULL, 0.000, NULL, // frame 20 + NULL, 0.000, NULL, // frame 21 + NULL, 0.000, NULL, // frame 22 + NULL, 0.000, NULL, // frame 23 + NULL, 0.000, NULL, // frame 24 + NULL, 0.000, NULL, // frame 25 + NULL, 0.000, NULL, // frame 26 + NULL, 0.000, NULL, // frame 27 + NULL, 0.000, NULL, // frame 28 + NULL, 0.000, NULL, // frame 29 + NULL, 0.000, NULL, // frame 30 + NULL, 0.000, NULL, // frame 31 + NULL, 0.000, NULL, // frame 32 + NULL, 0.000, NULL, // frame 33 + NULL, 0.000, NULL, // frame 34 +}; +mmove_t bitch4_move_crch_reload = {FRAME_crch_reload_01, FRAME_crch_reload_35, bitch4_frames_crch_reload, AI_EndAttack}; + +mframe_t bitch4_frames_crch_walk[] = +{ + ai_run, 3.161, NULL, // frame 0 + ai_run, 5.625, NULL, // frame 1 + ai_run, 6.073, NULL, // frame 2 + ai_run, 4.260, NULL, // frame 3 + ai_run, 3.528, NULL, // frame 4 + ai_run, 5.728, NULL, // frame 5 + ai_run, 9.076, NULL, // frame 6 +}; +mmove_t bitch4_move_crch_walk = {FRAME_crch_walk_01, FRAME_crch_walk_07, bitch4_frames_crch_walk, NULL}; + +mframe_t bitch_frames_walk_dokey[] = +{ + ai_runDOKEY, 17.697, EP_ReachedDoKey, // frame 0 + ai_runDOKEY, 15.930, EP_ReachedDoKey, // frame 1 + ai_runDOKEY, 15.610, EP_ReachedDoKey, // frame 2 + ai_runDOKEY, 18.980, EP_ReachedDoKey, // frame 3 + ai_runDOKEY, 21.142, EP_ReachedDoKey, // frame 4 + ai_runDOKEY, 15.510, EP_ReachedDoKey, // frame 5 + ai_runDOKEY, 20.503, EP_ReachedDoKey, // frame 6 +}; +mmove_t bitch_move_walk_dokey = {FRAME_run_guns_dn_01, FRAME_run_guns_dn_07, bitch_frames_walk_dokey, EP_ReachedDoKey}; diff --git a/gamesrc/ai_bum_sit.c b/gamesrc/ai_bum_sit.c new file mode 100644 index 0000000..ce2ce56 --- /dev/null +++ b/gamesrc/ai_bum_sit.c @@ -0,0 +1,639 @@ +#include "g_local.h" +#include "ai_bum_sit.h" +#include "voice_punk.h" + +void bum_sit_talk (edict_t *self); +void bum_sit_end_sit (edict_t *self); +void bum_talk_think( edict_t *self ); + +void ai_stand_onfire (edict_t *self, float dist); + +mframe_t bum_sit_frames_amb_sit[] = +{ + ai_stand, 0.000, bum_talk_think, // frame 0 + ai_stand, 0.000, bum_talk_think, // frame 1 + ai_stand, 0.000, bum_talk_think, // frame 2 + ai_stand, 0.000, bum_talk_think, // frame 3 + ai_stand, 0.000, bum_talk_think, // frame 4 + ai_stand, 0.000, bum_talk_think, // frame 5 + ai_stand, 0.000, bum_talk_think, // frame 6 + ai_stand, 0.000, bum_talk_think, // frame 7 + ai_stand, 0.000, bum_talk_think, // frame 8 + ai_stand, 0.000, bum_talk_think, // frame 9 + ai_stand, 0.000, bum_talk_think, // frame 10 + ai_stand, 0.000, bum_talk_think, // frame 11 + ai_stand, 0.000, bum_talk_think, // frame 12 + ai_stand, 0.000, bum_talk_think, // frame 13 + ai_stand, 0.000, bum_talk_think, // frame 14 + ai_stand, 0.000, bum_talk_think, // frame 15 + ai_stand, 0.000, bum_talk_think, // frame 16 + ai_stand, 0.000, bum_talk_think, // frame 17 + ai_stand, 0.000, bum_talk_think, // frame 18 + ai_stand, 0.000, bum_talk_think, // frame 19 + ai_stand, 0.000, bum_talk_think, // frame 20 + ai_stand, 0.000, bum_talk_think, // frame 21 + ai_stand, 0.000, bum_talk_think, // frame 22 + ai_stand, 0.000, bum_talk_think, // frame 23 + ai_stand, 0.000, bum_talk_think, // frame 24 + ai_stand, 0.000, bum_talk_think, // frame 25 + ai_stand, 0.000, bum_talk_think, // frame 26 + ai_stand, 0.000, bum_talk_think, // frame 27 + ai_stand, 0.000, bum_talk_think, // frame 28 + ai_stand, 0.000, bum_talk_think, // frame 29 + ai_stand, 0.000, bum_talk_think, // frame 30 + ai_stand, 0.000, bum_talk_think, // frame 31 + ai_stand, 0.000, bum_talk_think, // frame 32 + ai_stand, 0.000, bum_talk_think, // frame 33 + ai_stand, 0.000, bum_talk_think, // frame 34 + ai_stand, 0.000, bum_talk_think, // frame 35 + ai_stand, 0.000, bum_talk_think, // frame 36 + ai_stand, 0.000, bum_talk_think, // frame 37 + ai_stand, 0.000, bum_talk_think, // frame 38 + ai_stand, 0.000, bum_talk_think, // frame 39 + ai_stand, 0.000, bum_talk_think, // frame 40 + ai_stand, 0.000, bum_talk_think, // frame 41 + ai_stand, 0.000, bum_talk_think, // frame 42 + ai_stand, 0.000, bum_talk_think, // frame 43 + ai_stand, 0.000, bum_talk_think, // frame 44 + ai_stand, 0.000, bum_talk_think, // frame 45 + ai_stand, 0.000, bum_talk_think, // frame 46 + ai_stand, 0.000, bum_talk_think, // frame 47 + ai_stand, 0.000, bum_talk_think, // frame 48 + ai_stand, 0.000, bum_talk_think, // frame 49 + ai_stand, 0.000, bum_talk_think, // frame 50 + ai_stand, 0.000, bum_talk_think, // frame 51 +}; +mmove_t bum_sit_move_amb_sit = {FRAME_amb_sit_01, FRAME_amb_sit_52, bum_sit_frames_amb_sit, bum_sit_end_sit}; + +mframe_t bum_sit_frames_leg_shuf[] = +{ + ai_stand, 0.000, bum_talk_think, // frame 0 + ai_stand, 0.000, bum_talk_think, // frame 1 + ai_stand, 0.000, bum_talk_think, // frame 2 + ai_stand, 0.000, bum_talk_think, // frame 3 + ai_stand, 0.000, bum_talk_think, // frame 4 + ai_stand, 0.000, bum_talk_think, // frame 5 + ai_stand, 0.000, bum_talk_think, // frame 6 + ai_stand, 0.000, bum_talk_think, // frame 7 + ai_stand, 0.000, bum_talk_think, // frame 8 + ai_stand, 0.000, bum_talk_think, // frame 9 + ai_stand, 0.000, bum_talk_think, // frame 10 + ai_stand, 0.000, bum_talk_think, // frame 11 + ai_stand, 0.000, bum_talk_think, // frame 12 + ai_stand, 0.000, bum_talk_think, // frame 13 + ai_stand, 0.000, bum_talk_think, // frame 14 + ai_stand, 0.000, bum_talk_think, // frame 15 + ai_stand, 0.000, bum_talk_think, // frame 16 + ai_stand, 0.000, bum_talk_think, // frame 17 + ai_stand, 0.000, bum_talk_think, // frame 18 + ai_stand, 0.000, bum_talk_think, // frame 19 + ai_stand, 0.000, bum_talk_think, // frame 20 + ai_stand, 0.000, bum_talk_think, // frame 21 + ai_stand, 0.000, bum_talk_think, // frame 22 + ai_stand, 0.000, bum_talk_think, // frame 23 + ai_stand, 0.000, bum_talk_think, // frame 24 + ai_stand, 0.000, bum_talk_think, // frame 25 + ai_stand, 0.000, bum_talk_think, // frame 26 + ai_stand, 0.000, bum_talk_think, // frame 27 + ai_stand, 0.000, bum_talk_think, // frame 28 + ai_stand, 0.000, bum_talk_think, // frame 29 + ai_stand, 0.000, bum_talk_think, // frame 30 + ai_stand, 0.000, bum_talk_think, // frame 31 + ai_stand, 0.000, bum_talk_think, // frame 32 +}; +mmove_t bum_sit_move_leg_shuf = {FRAME_leg_shuf_01, FRAME_leg_shuf_33, bum_sit_frames_leg_shuf, bum_sit_end_sit}; + +mframe_t bum_sit_frames_swat_fly[] = +{ + ai_stand, 0.000, bum_talk_think, // frame 0 + ai_stand, 0.000, bum_talk_think, // frame 1 + ai_stand, 0.000, bum_talk_think, // frame 2 + ai_stand, 0.000, bum_talk_think, // frame 3 + ai_stand, 0.000, bum_talk_think, // frame 4 + ai_stand, 0.000, bum_talk_think, // frame 5 + ai_stand, 0.000, bum_talk_think, // frame 6 + ai_stand, 0.000, bum_talk_think, // frame 7 + ai_stand, 0.000, bum_talk_think, // frame 8 + ai_stand, 0.000, bum_talk_think, // frame 9 + ai_stand, 0.000, bum_talk_think, // frame 10 + ai_stand, 0.000, bum_talk_think, // frame 11 + ai_stand, 0.000, bum_talk_think, // frame 12 + ai_stand, 0.000, bum_talk_think, // frame 13 + ai_stand, 0.000, bum_talk_think, // frame 14 + ai_stand, 0.000, bum_talk_think, // frame 15 + ai_stand, 0.000, bum_talk_think, // frame 16 + ai_stand, 0.000, bum_talk_think, // frame 17 + ai_stand, 0.000, bum_talk_think, // frame 18 + ai_stand, 0.000, bum_talk_think, // frame 19 + ai_stand, 0.000, bum_talk_think, // frame 20 + ai_stand, 0.000, bum_talk_think, // frame 21 + ai_stand, 0.000, bum_talk_think, // frame 22 + ai_stand, 0.000, bum_talk_think, // frame 23 + ai_stand, 0.000, bum_talk_think, // frame 24 + ai_stand, 0.000, bum_talk_think, // frame 25 + ai_stand, 0.000, bum_talk_think, // frame 26 + ai_stand, 0.000, bum_talk_think, // frame 27 + ai_stand, 0.000, bum_talk_think, // frame 28 + ai_stand, 0.000, bum_talk_think, // frame 29 + ai_stand, 0.000, bum_talk_think, // frame 30 + ai_stand, 0.000, bum_talk_think, // frame 31 + ai_stand, 0.000, bum_talk_think, // frame 32 + ai_stand, 0.000, bum_talk_think, // frame 33 + ai_stand, 0.000, bum_talk_think, // frame 34 + ai_stand, 0.000, bum_talk_think, // frame 35 + ai_stand, 0.000, bum_talk_think, // frame 36 + ai_stand, 0.000, bum_talk_think, // frame 37 + ai_stand, 0.000, bum_talk_think, // frame 38 + ai_stand, 0.000, bum_talk_think, // frame 39 + ai_stand, 0.000, bum_talk_think, // frame 40 + ai_stand, 0.000, bum_talk_think, // frame 41 + ai_stand, 0.000, bum_talk_think, // frame 42 + ai_stand, 0.000, bum_talk_think, // frame 43 + ai_stand, 0.000, bum_talk_think, // frame 44 + ai_stand, 0.000, bum_talk_think, // frame 45 + ai_stand, 0.000, bum_talk_think, // frame 46 + ai_stand, 0.000, bum_talk_think, // frame 47 + ai_stand, 0.000, bum_talk_think, // frame 48 + ai_stand, 0.000, bum_talk_think, // frame 49 + ai_stand, 0.000, bum_talk_think, // frame 50 + ai_stand, 0.000, bum_talk_think, // frame 51 + ai_stand, 0.000, bum_talk_think, // frame 52 + ai_stand, 0.000, bum_talk_think, // frame 53 + ai_stand, 0.000, bum_talk_think, // frame 54 +}; +mmove_t bum_sit_move_swat_fly = {FRAME_swat_fly_01, FRAME_swat_fly_55, bum_sit_frames_swat_fly, bum_sit_end_sit}; + +mframe_t bum_sit_frames_swat_fly_onfire[] = +{ + ai_stand_onfire, 0.000, NULL, // frame 0 + ai_stand_onfire, 0.000, NULL, // frame 1 + ai_stand_onfire, 0.000, NULL, // frame 2 + ai_stand_onfire, 0.000, NULL, // frame 3 + ai_stand_onfire, 0.000, NULL, // frame 4 + ai_stand_onfire, 0.000, NULL, // frame 5 + ai_stand_onfire, 0.000, NULL, // frame 6 + ai_stand_onfire, 0.000, NULL, // frame 7 + ai_stand_onfire, 0.000, NULL, // frame 8 + ai_stand_onfire, 0.000, NULL, // frame 9 + ai_stand_onfire, 0.000, NULL, // frame 10 + ai_stand_onfire, 0.000, NULL, // frame 11 + ai_stand_onfire, 0.000, NULL, // frame 12 + ai_stand_onfire, 0.000, NULL, // frame 13 + ai_stand_onfire, 0.000, NULL, // frame 14 + ai_stand_onfire, 0.000, NULL, // frame 15 + ai_stand_onfire, 0.000, NULL, // frame 16 + ai_stand_onfire, 0.000, NULL, // frame 17 + ai_stand_onfire, 0.000, NULL, // frame 18 + ai_stand_onfire, 0.000, NULL, // frame 19 + ai_stand_onfire, 0.000, NULL, // frame 20 + ai_stand_onfire, 0.000, NULL, // frame 21 + ai_stand_onfire, 0.000, NULL, // frame 22 + ai_stand_onfire, 0.000, NULL, // frame 23 + ai_stand_onfire, 0.000, NULL, // frame 24 + ai_stand_onfire, 0.000, NULL, // frame 25 + ai_stand_onfire, 0.000, NULL, // frame 26 + ai_stand_onfire, 0.000, NULL, // frame 27 + ai_stand_onfire, 0.000, NULL, // frame 28 + ai_stand_onfire, 0.000, NULL, // frame 29 + ai_stand_onfire, 0.000, NULL, // frame 30 + ai_stand_onfire, 0.000, NULL, // frame 31 + ai_stand_onfire, 0.000, NULL, // frame 32 + ai_stand_onfire, 0.000, NULL, // frame 33 + ai_stand_onfire, 0.000, NULL, // frame 34 + ai_stand_onfire, 0.000, NULL, // frame 35 + ai_stand_onfire, 0.000, NULL, // frame 36 + ai_stand_onfire, 0.000, NULL, // frame 37 + ai_stand_onfire, 0.000, NULL, // frame 38 + ai_stand_onfire, 0.000, NULL, // frame 39 + ai_stand_onfire, 0.000, NULL, // frame 40 + ai_stand_onfire, 0.000, NULL, // frame 41 + ai_stand_onfire, 0.000, NULL, // frame 42 + ai_stand_onfire, 0.000, NULL, // frame 43 + ai_stand_onfire, 0.000, NULL, // frame 44 + ai_stand_onfire, 0.000, NULL, // frame 45 + ai_stand_onfire, 0.000, NULL, // frame 46 + ai_stand_onfire, 0.000, NULL, // frame 47 + ai_stand_onfire, 0.000, NULL, // frame 48 + ai_stand_onfire, 0.000, NULL, // frame 49 + ai_stand_onfire, 0.000, NULL, // frame 50 + ai_stand_onfire, 0.000, NULL, // frame 51 + ai_stand_onfire, 0.000, NULL, // frame 52 + ai_stand_onfire, 0.000, NULL, // frame 53 + ai_stand_onfire, 0.000, NULL, // frame 54 +}; +mmove_t bum_sit_move_swat_fly_onfire = {FRAME_swat_fly_01, FRAME_swat_fly_55, bum_sit_frames_swat_fly_onfire, NULL}; + +mframe_t bum_sit_frames_cough_l[] = +{ + /*ai_stand*/ NULL, 0.000, NULL, // frame 0 + /*ai_stand*/ NULL, 0.000, NULL, // frame 1 + /*ai_stand*/ NULL, 0.000, NULL, // frame 2 + /*ai_stand*/ NULL, 0.000, NULL, // frame 3 + /*ai_stand*/ NULL, 0.000, NULL, // frame 4 + /*ai_stand*/ NULL, 0.000, NULL, // frame 5 + /*ai_stand*/ NULL, 0.000, NULL, // frame 6 + /*ai_stand*/ NULL, 0.000, NULL, // frame 7 + /*ai_stand*/ NULL, 0.000, NULL, // frame 8 + /*ai_stand*/ NULL, 0.000, NULL, // frame 9 + /*ai_stand*/ NULL, 0.000, NULL, // frame 10 + /*ai_stand*/ NULL, 0.000, NULL, // frame 11 + /*ai_stand*/ NULL, 0.000, NULL, // frame 12 + /*ai_stand*/ NULL, 0.000, NULL, // frame 13 + /*ai_stand*/ NULL, 0.000, NULL, // frame 14 + /*ai_stand*/ NULL, 0.000, NULL, // frame 15 + /*ai_stand*/ NULL, 0.000, NULL, // frame 16 + /*ai_stand*/ NULL, 0.000, NULL, // frame 17 + /*ai_stand*/ NULL, 0.000, NULL, // frame 18 + /*ai_stand*/ NULL, 0.000, NULL, // frame 19 + /*ai_stand*/ NULL, 0.000, NULL, // frame 20 + /*ai_stand*/ NULL, 0.000, NULL, // frame 21 + /*ai_stand*/ NULL, 0.000, NULL, // frame 22 + /*ai_stand*/ NULL, 0.000, NULL, // frame 23 + /*ai_stand*/ NULL, 0.000, NULL, // frame 24 + /*ai_stand*/ NULL, 0.000, NULL, // frame 25 + /*ai_stand*/ NULL, 0.000, NULL, // frame 26 + /*ai_stand*/ NULL, 0.000, NULL, // frame 27 + /*ai_stand*/ NULL, 0.000, NULL, // frame 28 + /*ai_stand*/ NULL, 0.000, NULL, // frame 29 + /*ai_stand*/ NULL, 0.000, NULL, // frame 30 + /*ai_stand*/ NULL, 0.000, NULL, // frame 31 + /*ai_stand*/ NULL, 0.000, NULL, // frame 32 + /*ai_stand*/ NULL, 0.000, NULL, // frame 33 + /*ai_stand*/ NULL, 0.000, NULL, // frame 34 +}; +mmove_t bum_sit_move_cough_l = {FRAME_cough_l_01, FRAME_cough_l_35, bum_sit_frames_cough_l, bum_sit_end_sit}; + +mframe_t bum_sit_frames_pain_r[] = +{ + /*ai_stand*/ NULL, 0.000, NULL, // frame 0 + /*ai_stand*/ NULL, 0.000, NULL, // frame 1 + /*ai_stand*/ NULL, 0.000, NULL, // frame 2 + /*ai_stand*/ NULL, 0.000, NULL, // frame 3 + /*ai_stand*/ NULL, 0.000, NULL, // frame 4 + /*ai_stand*/ NULL, 0.000, NULL, // frame 5 + /*ai_stand*/ NULL, 0.000, NULL, // frame 6 + /*ai_stand*/ NULL, 0.000, NULL, // frame 7 + /*ai_stand*/ NULL, 0.000, NULL, // frame 8 + /*ai_stand*/ NULL, 0.000, NULL, // frame 9 + /*ai_stand*/ NULL, 0.000, NULL, // frame 10 + /*ai_stand*/ NULL, 0.000, NULL, // frame 11 + /*ai_stand*/ NULL, 0.000, NULL, // frame 12 + /*ai_stand*/ NULL, 0.000, NULL, // frame 13 +}; +mmove_t bum_sit_move_pain_r = {FRAME_pain_r_01, FRAME_pain_r_14, bum_sit_frames_pain_r, bum_sit_end_sit}; + +mframe_t bum_sit_frames_pain_l[] = +{ + /*ai_stand*/ NULL, 0.000, NULL, // frame 0 + /*ai_stand*/ NULL, 0.000, NULL, // frame 1 + /*ai_stand*/ NULL, 0.000, NULL, // frame 2 + /*ai_stand*/ NULL, 0.000, NULL, // frame 3 + /*ai_stand*/ NULL, 0.000, NULL, // frame 4 + /*ai_stand*/ NULL, 0.000, NULL, // frame 5 + /*ai_stand*/ NULL, 0.000, NULL, // frame 6 + /*ai_stand*/ NULL, 0.000, NULL, // frame 7 + /*ai_stand*/ NULL, 0.000, NULL, // frame 8 + /*ai_stand*/ NULL, 0.000, NULL, // frame 9 + /*ai_stand*/ NULL, 0.000, NULL, // frame 10 + /*ai_stand*/ NULL, 0.000, NULL, // frame 11 + /*ai_stand*/ NULL, 0.000, NULL, // frame 12 + /*ai_stand*/ NULL, 0.000, NULL, // frame 13 + /*ai_stand*/ NULL, 0.000, NULL, // frame 14 + /*ai_stand*/ NULL, 0.000, NULL, // frame 15 +}; +mmove_t bum_sit_move_pain_l = {FRAME_pain_l_01, FRAME_pain_l_16, bum_sit_frames_pain_l, bum_sit_end_sit}; + +mframe_t bum_sit_frames_death_r[] = +{ + /*ai_stand*/ NULL, 0.000, NULL, // frame 0 + /*ai_stand*/ NULL, 0.000, NULL, // frame 1 + /*ai_stand*/ NULL, 0.000, NULL, // frame 2 + /*ai_stand*/ NULL, 0.000, NULL, // frame 3 + /*ai_stand*/ NULL, 0.000, NULL, // frame 4 + /*ai_stand*/ NULL, 0.000, NULL, // frame 5 + /*ai_stand*/ NULL, 0.000, NULL, // frame 6 + /*ai_stand*/ NULL, 0.000, NULL, // frame 7 + /*ai_stand*/ NULL, 0.000, NULL, // frame 8 + /*ai_stand*/ NULL, 0.000, NULL, // frame 9 + /*ai_stand*/ NULL, 0.000, NULL, // frame 10 + /*ai_stand*/ NULL, 0.000, NULL, // frame 11 + /*ai_stand*/ NULL, 0.000, NULL, // frame 12 + /*ai_stand*/ NULL, 0.000, NULL, // frame 13 + /*ai_stand*/ NULL, 0.000, NULL, // frame 14 + /*ai_stand*/ NULL, 0.000, NULL, // frame 15 +}; +mmove_t bum_sit_move_death_r = {FRAME_death_r_01, FRAME_death_r_16, bum_sit_frames_death_r, AI_EndDeath}; + +mframe_t bum_sit_frames_death_l[] = +{ + /*ai_stand*/ NULL, 0.000, NULL, // frame 0 + /*ai_stand*/ NULL, 0.000, NULL, // frame 1 + /*ai_stand*/ NULL, 0.000, NULL, // frame 2 + /*ai_stand*/ NULL, 0.000, NULL, // frame 3 + /*ai_stand*/ NULL, 0.000, NULL, // frame 4 + /*ai_stand*/ NULL, 0.000, NULL, // frame 5 + /*ai_stand*/ NULL, 0.000, NULL, // frame 6 + /*ai_stand*/ NULL, 0.000, NULL, // frame 7 + /*ai_stand*/ NULL, 0.000, NULL, // frame 8 + /*ai_stand*/ NULL, 0.000, NULL, // frame 9 + /*ai_stand*/ NULL, 0.000, NULL, // frame 10 + /*ai_stand*/ NULL, 0.000, NULL, // frame 11 + /*ai_stand*/ NULL, 0.000, NULL, // frame 12 + /*ai_stand*/ NULL, 0.000, NULL, // frame 13 + /*ai_stand*/ NULL, 0.000, NULL, // frame 14 + /*ai_stand*/ NULL, 0.000, NULL, // frame 15 + /*ai_stand*/ NULL, 0.000, NULL, // frame 16 +}; +mmove_t bum_sit_move_death_l = {FRAME_death_l_01, FRAME_death_l_17, bum_sit_frames_death_l, AI_EndDeath}; + + +void ai_stand_onfire (edict_t *self, float dist) +{ + + if (self->onfiretime <= 0) + { // stopping running around + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + if (!self->groundentity) + return; + +} + +void bum_talk_think (edict_t *self) +{ + AI_TalkThink (self, true); +} + +void bum_sit_end_sit (edict_t *self) +{ + int rnd; + + if (self->cast_info.currentmove == &bum_sit_move_cough_l) + rnd = rand() % 3; + else + rnd = rand() % 5; + + if (rnd < 1) + self->cast_info.currentmove = &bum_sit_move_amb_sit; + else if (rnd < 2) + self->cast_info.currentmove = &bum_sit_move_leg_shuf; + else if (rnd < 3) + self->cast_info.currentmove = &bum_sit_move_swat_fly; + else + { + if (self->name_index == NAME_RUMMY || self->name_index == NAME_NICK) + self->cast_info.currentmove = &bum_sit_move_amb_sit; + else + self->cast_info.currentmove = &bum_sit_move_cough_l; + } + +} + +void bum_sit_pain (edict_t *self, edict_t *other, float kick, int damage, int mdx_part, int mdx_subobject) +{ + + if (level.time < self->pain_debounce_time) + return; + + self->pain_debounce_time = level.time + 3 + random(); + + gi.sound ( self, CHAN_VOICE, gi.soundindex ("actors/bum/pain.wav"), 1, 3, 0); + + if (rand()%100 > 50) + self->cast_info.currentmove = &bum_sit_move_pain_r; + else + self->cast_info.currentmove = &bum_sit_move_pain_l; + +} + +void bum_sit_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ +// self->s.modelindex2 = 0; + + self->takedamage = DAMAGE_YES; + + if (DeathByGib(self, inflictor, attacker, damage)) + { // gib + self->deadflag = DEAD_DEAD; + GibEntity( self, inflictor, damage ); + return; + } + + if (self->deadflag == DEAD_DEAD) + return; + + self->deadflag = DEAD_DEAD; + + gi.sound ( self, CHAN_VOICE, gi.soundindex ("actors/bum/death.wav"), 1, 3, 0); + + if (rand()%100 > 50) + self->cast_info.currentmove = &bum_sit_move_death_r; + else + self->cast_info.currentmove = &bum_sit_move_death_l; +} + +void bum_avoid (edict_t *self, edict_t *other, qboolean face) +{ + self->cast_info.currentmove = &bum_sit_move_swat_fly; +} + +void bum_backoff (edict_t *self, edict_t *other ) +{ + Voice_Random (self, other, rummy, 0); +} + +void bum_catch_on_fire (edict_t *self, edict_t *other) +{ + self->enemy = NULL; // stop attacking + self->cast_info.currentmove = &bum_sit_move_swat_fly_onfire; +} + + +/*QUAKED cast_bum_sit (1 .5 0) (-24 -24 -24) (24 24 48) x TRIGGERED_START x x x +cast_group 0 neutral +They should only be neutrals +model="models\actors\bum_sit\" +*/ +void SP_cast_bum_sit (edict_t *self) +{ + int i; + char *head_skin, *body_skin, *legs_skin; + int skin; + + + if (deathmatch->value) + { + G_FreeEdict (self); + return; + } + + self->movetype = MOVETYPE_STEP; + self->solid = SOLID_BBOX; + VectorSet (self->mins, -24, -24, -24); + VectorSet (self->maxs, 24, 24, 48); + + self->s.skinnum = (self->skin-1) * 3; + + if (!self->art_skins) + { // use default skins + self->art_skins = "001 001 001"; + } + + if (self->art_skins) + { + // convert spaces to NULL's + for (i=0; i<11; i++) + if (self->art_skins[i] == ' ') + self->art_skins[i] = '\0'; + + head_skin = &self->art_skins[0]; + body_skin = &self->art_skins[4]; + legs_skin = &self->art_skins[8]; + } + else + { + head_skin = body_skin = legs_skin = NULL; + } + + // ------------------------------------------------------------------------ + // initialize all model_part data + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/bum_sit/head.mdx"); + if (head_skin) + { + skin = gi.skinindex( self->s.model_parts[PART_HEAD].modelindex, head_skin ); + } + else + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_HEAD].baseskin = self->s.model_parts[PART_HEAD].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/bum_sit/head.mdx", &self->s.model_parts[PART_HEAD] ); + + self->s.num_parts++; + self->s.model_parts[PART_LEGS].modelindex = gi.modelindex("models/actors/bum_sit/legs.mdx"); + if (head_skin) + skin = gi.skinindex( self->s.model_parts[PART_LEGS].modelindex, legs_skin ); + else + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_LEGS].baseskin = self->s.model_parts[PART_LEGS].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/bum_sit/legs.mdx", &self->s.model_parts[PART_LEGS] ); + + self->s.num_parts++; + self->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/actors/bum_sit/body.mdx"); + if (head_skin) + skin = gi.skinindex( self->s.model_parts[PART_BODY].modelindex, body_skin ); + else + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_BODY].baseskin = self->s.model_parts[PART_BODY].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/bum_sit/body.mdx", &self->s.model_parts[PART_BODY] ); + + if (self->count & 1) // cigar + { + self->s.num_parts++; + self->s.model_parts[PART_CIGAR].modelindex = gi.modelindex("models/actors/bum_sit/cigar.mdx"); + for (i=0; is.model_parts[PART_CIGAR].baseskin = self->s.model_parts[PART_CIGAR].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/runt/cigar.mdx", &self->s.model_parts[PART_CIGAR] ); + } + + if (self->count & 2) // fedora hat + { + self->s.num_parts++; + self->s.model_parts[PART_HAT].modelindex = gi.modelindex("models/actors/bum_sit/fedora.mdx"); + for (i=0; is.model_parts[PART_HAT].baseskin = self->s.model_parts[PART_HAT].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/bum_sit/fedora.mdx", &self->s.model_parts[PART_HAT] ); + } + else if (self->count & 4) // stetson hat + { + self->s.num_parts++; + self->s.model_parts[PART_HAT].modelindex = gi.modelindex("models/actors/bum_sit/stetson.mdx"); + for (i=0; is.model_parts[PART_HAT].baseskin = self->s.model_parts[PART_HAT].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/bum_sit/stetson.mdx", &self->s.model_parts[PART_HAT] ); + } + else if (self->count & 8) // cap (hat) + { + self->s.num_parts++; + self->s.model_parts[PART_HAT].modelindex = gi.modelindex("models/actors/bum_sit/cap.mdx"); + for (i=0; is.model_parts[PART_HAT].baseskin = self->s.model_parts[PART_HAT].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/bum_sit/cap.mdx", &self->s.model_parts[PART_HAT] ); + } + + // remove NULL's + if (self->art_skins) + self->art_skins[3] = self->art_skins[7] = ' '; + + // ------------------------------------------------------------------------ + + if (!(self->health)) + self->health = 100; + + self->gib_health = -200; + self->mass = 200; + + self->gender = GENDER_MALE; + + self->pain = bum_sit_pain; + self->die = bum_sit_die; + + self->cast_info.checkattack = NULL; + + self->cast_info.attack = NULL; + self->cast_info.long_attack = NULL; + self->cast_info.talk = bum_sit_end_sit; + self->cast_info.avoid = bum_avoid; + self->cast_info.backoff = bum_backoff; + + self->cast_info.catch_fire = bum_catch_on_fire; + + self->cast_info.max_attack_distance = 64; + + self->cast_info.move_stand = &bum_sit_move_amb_sit; + self->cast_info.move_crstand = NULL; + + self->cast_info.move_run = NULL; + self->cast_info.move_runwalk = NULL; + self->cast_info.move_crwalk = NULL; + + self->cast_info.move_jump = NULL; + + self->cast_info.move_avoid_walk = NULL; + self->cast_info.move_avoid_run = NULL; + self->cast_info.move_avoid_reverse_walk = NULL; + self->cast_info.move_avoid_reverse_run = NULL; + self->cast_info.move_avoid_crwalk = NULL; + + self->cast_info.move_crouch_down = NULL; + self->cast_info.move_stand_up = NULL; + self->cast_info.move_lside_step = NULL; + self->cast_info.move_rside_step = NULL; + self->cast_info.move_start_climb = NULL; + self->cast_info.move_end_climb = NULL; + self->cast_info.move_evade = NULL; + self->cast_info.move_stand_evade = NULL; + + gi.linkentity (self); + + self->cast_info.currentmove = self->cast_info.move_stand; + + + if (!self->cast_info.scale) + self->cast_info.scale = MODEL_SCALE; + + self->s.scale = self->cast_info.scale - 1.0; + + // talk by default +// self->cast_info.aiflags |= AI_NO_TALK; + self->cast_info.aiflags |= (AI_TALK | AI_NOWALK_FACE); + + walking_cast_start (self); + +} diff --git a/gamesrc/ai_bum_sit.h b/gamesrc/ai_bum_sit.h new file mode 100644 index 0000000..50e326f --- /dev/null +++ b/gamesrc/ai_bum_sit.h @@ -0,0 +1,240 @@ +#define FRAME_amb_sit_01 0 +#define FRAME_amb_sit_02 1 +#define FRAME_amb_sit_03 2 +#define FRAME_amb_sit_04 3 +#define FRAME_amb_sit_05 4 +#define FRAME_amb_sit_06 5 +#define FRAME_amb_sit_07 6 +#define FRAME_amb_sit_08 7 +#define FRAME_amb_sit_09 8 +#define FRAME_amb_sit_10 9 +#define FRAME_amb_sit_11 10 +#define FRAME_amb_sit_12 11 +#define FRAME_amb_sit_13 12 +#define FRAME_amb_sit_14 13 +#define FRAME_amb_sit_15 14 +#define FRAME_amb_sit_16 15 +#define FRAME_amb_sit_17 16 +#define FRAME_amb_sit_18 17 +#define FRAME_amb_sit_19 18 +#define FRAME_amb_sit_20 19 +#define FRAME_amb_sit_21 20 +#define FRAME_amb_sit_22 21 +#define FRAME_amb_sit_23 22 +#define FRAME_amb_sit_24 23 +#define FRAME_amb_sit_25 24 +#define FRAME_amb_sit_26 25 +#define FRAME_amb_sit_27 26 +#define FRAME_amb_sit_28 27 +#define FRAME_amb_sit_29 28 +#define FRAME_amb_sit_30 29 +#define FRAME_amb_sit_31 30 +#define FRAME_amb_sit_32 31 +#define FRAME_amb_sit_33 32 +#define FRAME_amb_sit_34 33 +#define FRAME_amb_sit_35 34 +#define FRAME_amb_sit_36 35 +#define FRAME_amb_sit_37 36 +#define FRAME_amb_sit_38 37 +#define FRAME_amb_sit_39 38 +#define FRAME_amb_sit_40 39 +#define FRAME_amb_sit_41 40 +#define FRAME_amb_sit_42 41 +#define FRAME_amb_sit_43 42 +#define FRAME_amb_sit_44 43 +#define FRAME_amb_sit_45 44 +#define FRAME_amb_sit_46 45 +#define FRAME_amb_sit_47 46 +#define FRAME_amb_sit_48 47 +#define FRAME_amb_sit_49 48 +#define FRAME_amb_sit_50 49 +#define FRAME_amb_sit_51 50 +#define FRAME_amb_sit_52 51 +#define FRAME_leg_shuf_01 52 +#define FRAME_leg_shuf_02 53 +#define FRAME_leg_shuf_03 54 +#define FRAME_leg_shuf_04 55 +#define FRAME_leg_shuf_05 56 +#define FRAME_leg_shuf_06 57 +#define FRAME_leg_shuf_07 58 +#define FRAME_leg_shuf_08 59 +#define FRAME_leg_shuf_09 60 +#define FRAME_leg_shuf_10 61 +#define FRAME_leg_shuf_11 62 +#define FRAME_leg_shuf_12 63 +#define FRAME_leg_shuf_13 64 +#define FRAME_leg_shuf_14 65 +#define FRAME_leg_shuf_15 66 +#define FRAME_leg_shuf_16 67 +#define FRAME_leg_shuf_17 68 +#define FRAME_leg_shuf_18 69 +#define FRAME_leg_shuf_19 70 +#define FRAME_leg_shuf_20 71 +#define FRAME_leg_shuf_21 72 +#define FRAME_leg_shuf_22 73 +#define FRAME_leg_shuf_23 74 +#define FRAME_leg_shuf_24 75 +#define FRAME_leg_shuf_25 76 +#define FRAME_leg_shuf_26 77 +#define FRAME_leg_shuf_27 78 +#define FRAME_leg_shuf_28 79 +#define FRAME_leg_shuf_29 80 +#define FRAME_leg_shuf_30 81 +#define FRAME_leg_shuf_31 82 +#define FRAME_leg_shuf_32 83 +#define FRAME_leg_shuf_33 84 +#define FRAME_swat_fly_01 85 +#define FRAME_swat_fly_02 86 +#define FRAME_swat_fly_03 87 +#define FRAME_swat_fly_04 88 +#define FRAME_swat_fly_05 89 +#define FRAME_swat_fly_06 90 +#define FRAME_swat_fly_07 91 +#define FRAME_swat_fly_08 92 +#define FRAME_swat_fly_09 93 +#define FRAME_swat_fly_10 94 +#define FRAME_swat_fly_11 95 +#define FRAME_swat_fly_12 96 +#define FRAME_swat_fly_13 97 +#define FRAME_swat_fly_14 98 +#define FRAME_swat_fly_15 99 +#define FRAME_swat_fly_16 100 +#define FRAME_swat_fly_17 101 +#define FRAME_swat_fly_18 102 +#define FRAME_swat_fly_19 103 +#define FRAME_swat_fly_20 104 +#define FRAME_swat_fly_21 105 +#define FRAME_swat_fly_22 106 +#define FRAME_swat_fly_23 107 +#define FRAME_swat_fly_24 108 +#define FRAME_swat_fly_25 109 +#define FRAME_swat_fly_26 110 +#define FRAME_swat_fly_27 111 +#define FRAME_swat_fly_28 112 +#define FRAME_swat_fly_29 113 +#define FRAME_swat_fly_30 114 +#define FRAME_swat_fly_31 115 +#define FRAME_swat_fly_32 116 +#define FRAME_swat_fly_33 117 +#define FRAME_swat_fly_34 118 +#define FRAME_swat_fly_35 119 +#define FRAME_swat_fly_36 120 +#define FRAME_swat_fly_37 121 +#define FRAME_swat_fly_38 122 +#define FRAME_swat_fly_39 123 +#define FRAME_swat_fly_40 124 +#define FRAME_swat_fly_41 125 +#define FRAME_swat_fly_42 126 +#define FRAME_swat_fly_43 127 +#define FRAME_swat_fly_44 128 +#define FRAME_swat_fly_45 129 +#define FRAME_swat_fly_46 130 +#define FRAME_swat_fly_47 131 +#define FRAME_swat_fly_48 132 +#define FRAME_swat_fly_49 133 +#define FRAME_swat_fly_50 134 +#define FRAME_swat_fly_51 135 +#define FRAME_swat_fly_52 136 +#define FRAME_swat_fly_53 137 +#define FRAME_swat_fly_54 138 +#define FRAME_swat_fly_55 139 +#define FRAME_cough_l_01 140 +#define FRAME_cough_l_02 141 +#define FRAME_cough_l_03 142 +#define FRAME_cough_l_04 143 +#define FRAME_cough_l_05 144 +#define FRAME_cough_l_06 145 +#define FRAME_cough_l_07 146 +#define FRAME_cough_l_08 147 +#define FRAME_cough_l_09 148 +#define FRAME_cough_l_10 149 +#define FRAME_cough_l_11 150 +#define FRAME_cough_l_12 151 +#define FRAME_cough_l_13 152 +#define FRAME_cough_l_14 153 +#define FRAME_cough_l_15 154 +#define FRAME_cough_l_16 155 +#define FRAME_cough_l_17 156 +#define FRAME_cough_l_18 157 +#define FRAME_cough_l_19 158 +#define FRAME_cough_l_20 159 +#define FRAME_cough_l_21 160 +#define FRAME_cough_l_22 161 +#define FRAME_cough_l_23 162 +#define FRAME_cough_l_24 163 +#define FRAME_cough_l_25 164 +#define FRAME_cough_l_26 165 +#define FRAME_cough_l_27 166 +#define FRAME_cough_l_28 167 +#define FRAME_cough_l_29 168 +#define FRAME_cough_l_30 169 +#define FRAME_cough_l_31 170 +#define FRAME_cough_l_32 171 +#define FRAME_cough_l_33 172 +#define FRAME_cough_l_34 173 +#define FRAME_cough_l_35 174 +#define FRAME_pain_r_01 175 +#define FRAME_pain_r_02 176 +#define FRAME_pain_r_03 177 +#define FRAME_pain_r_04 178 +#define FRAME_pain_r_05 179 +#define FRAME_pain_r_06 180 +#define FRAME_pain_r_07 181 +#define FRAME_pain_r_08 182 +#define FRAME_pain_r_09 183 +#define FRAME_pain_r_10 184 +#define FRAME_pain_r_11 185 +#define FRAME_pain_r_12 186 +#define FRAME_pain_r_13 187 +#define FRAME_pain_r_14 188 +#define FRAME_pain_l_01 189 +#define FRAME_pain_l_02 190 +#define FRAME_pain_l_03 191 +#define FRAME_pain_l_04 192 +#define FRAME_pain_l_05 193 +#define FRAME_pain_l_06 194 +#define FRAME_pain_l_07 195 +#define FRAME_pain_l_08 196 +#define FRAME_pain_l_09 197 +#define FRAME_pain_l_10 198 +#define FRAME_pain_l_11 199 +#define FRAME_pain_l_12 200 +#define FRAME_pain_l_13 201 +#define FRAME_pain_l_14 202 +#define FRAME_pain_l_15 203 +#define FRAME_pain_l_16 204 +#define FRAME_death_r_01 205 +#define FRAME_death_r_02 206 +#define FRAME_death_r_03 207 +#define FRAME_death_r_04 208 +#define FRAME_death_r_05 209 +#define FRAME_death_r_06 210 +#define FRAME_death_r_07 211 +#define FRAME_death_r_08 212 +#define FRAME_death_r_09 213 +#define FRAME_death_r_10 214 +#define FRAME_death_r_11 215 +#define FRAME_death_r_12 216 +#define FRAME_death_r_13 217 +#define FRAME_death_r_14 218 +#define FRAME_death_r_15 219 +#define FRAME_death_r_16 220 +#define FRAME_death_l_01 221 +#define FRAME_death_l_02 222 +#define FRAME_death_l_03 223 +#define FRAME_death_l_04 224 +#define FRAME_death_l_05 225 +#define FRAME_death_l_06 226 +#define FRAME_death_l_07 227 +#define FRAME_death_l_08 228 +#define FRAME_death_l_09 229 +#define FRAME_death_l_10 230 +#define FRAME_death_l_11 231 +#define FRAME_death_l_12 232 +#define FRAME_death_l_13 233 +#define FRAME_death_l_14 234 +#define FRAME_death_l_15 235 +#define FRAME_death_l_16 236 +#define FRAME_death_l_17 237 + +#define MODEL_SCALE 1.000000 diff --git a/gamesrc/ai_dog_tables.h b/gamesrc/ai_dog_tables.h new file mode 100644 index 0000000..6cd11de --- /dev/null +++ b/gamesrc/ai_dog_tables.h @@ -0,0 +1,304 @@ +mframe_t dog_frames_amb[] = +{ + ai_stand, 0.000, dog_talk_think, // frame 0 + ai_stand, 0.000, dog_talk_think, // frame 1 + ai_stand, 0.000, dog_talk_think, // frame 2 + ai_stand, 0.000, dog_talk_think, // frame 3 + ai_stand, 0.000, dog_talk_think, // frame 4 + ai_stand, 0.000, dog_talk_think, // frame 5 + ai_stand, 0.000, dog_talk_think, // frame 6 + ai_stand, 0.000, dog_talk_think, // frame 7 + ai_stand, 0.000, dog_talk_think, // frame 8 + ai_stand, 0.000, dog_talk_think, // frame 9 + ai_stand, 0.000, dog_talk_think, // frame 10 + ai_stand, 0.000, dog_talk_think, // frame 11 +}; +mmove_t dog_move_amb = {FRAME_amb_01, FRAME_amb_12, dog_frames_amb, dog_end_stand}; + +mframe_t dog_frames_pant[] = +{ + ai_stand, 0.000, dog_talk_think, // frame 0 + ai_stand, 0.000, dog_talk_think, // frame 1 + ai_stand, 0.000, dog_talk_think, // frame 2 + ai_stand, 0.000, dog_talk_think, // frame 3 + ai_stand, 0.000, dog_talk_think, // frame 4 + ai_stand, 0.000, dog_talk_think, // frame 5 + ai_stand, 0.000, dog_talk_think, // frame 6 + ai_stand, 0.000, dog_talk_think, // frame 7 + ai_stand, 0.000, dog_talk_think, // frame 8 + ai_stand, 0.000, dog_talk_think, // frame 9 + ai_stand, 0.000, dog_talk_think, // frame 10 + ai_stand, 0.000, dog_talk_think, // frame 11 + ai_stand, 0.000, dog_talk_think, // frame 12 + ai_stand, 0.000, dog_talk_think, // frame 13 +}; +mmove_t dog_move_pant = {FRAME_pant_01, FRAME_pant_14, dog_frames_pant, dog_end_stand}; + +mframe_t dog_frames_sniff[] = +{ + ai_stand, 0.000, dog_talk_think, // frame 0 + ai_stand, 0.000, dog_talk_think, // frame 1 + ai_stand, 0.000, dog_talk_think, // frame 2 + ai_stand, 0.000, dog_talk_think, // frame 3 + ai_stand, 0.000, dog_talk_think, // frame 4 + ai_stand, 0.000, dog_talk_think, // frame 5 + ai_stand, 0.000, dog_talk_think, // frame 6 + ai_stand, 0.000, dog_talk_think, // frame 7 + ai_stand, 0.000, dog_talk_think, // frame 8 + ai_stand, 0.000, dog_talk_think, // frame 9 + ai_stand, 0.000, dog_talk_think, // frame 10 + ai_stand, 0.000, dog_talk_think, // frame 11 + ai_stand, 0.000, dog_talk_think, // frame 12 + ai_stand, 0.000, dog_talk_think, // frame 13 + ai_stand, 0.000, dog_talk_think, // frame 14 + ai_stand, 0.000, dog_talk_think, // frame 15 + ai_stand, 0.000, dog_talk_think, // frame 16 + ai_stand, 0.000, dog_talk_think, // frame 17 + ai_stand, 0.000, dog_talk_think, // frame 18 + ai_stand, 0.000, dog_talk_think, // frame 19 +}; +mmove_t dog_move_sniff = {FRAME_sniff_01, FRAME_sniff_20, dog_frames_sniff, dog_end_stand}; + +mframe_t dog_frames_bark[] = +{ + ai_stand, 0.000, dog_talk_think, // frame 0 + ai_stand, 0.000, dog_bark, // frame 1 + ai_stand, 0.000, dog_talk_think, // frame 2 + ai_stand, 0.000, dog_talk_think, // frame 3 + ai_stand, 0.000, dog_bark, // frame 4 + ai_stand, 0.000, dog_talk_think, // frame 5 + ai_stand, 0.000, dog_talk_think, // frame 6 + ai_stand, 0.000, dog_talk_think, // frame 7 + ai_stand, 0.000, dog_talk_think, // frame 8 +}; +mmove_t dog_move_bark = {FRAME_bark_01, FRAME_bark_09, dog_frames_bark, dog_end_stand}; + +mframe_t dog_frames_growl[] = +{ + ai_stand, 0.000, dog_growl, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 +}; +mmove_t dog_move_growl = {FRAME_growl_01, FRAME_growl_05, dog_frames_growl, dog_end_stand}; + +mframe_t enemy_dog_frames_pee[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 7 + NULL, 0.000, NULL, // frame 8 + NULL, 0.000, NULL, // frame 9 + NULL, 0.000, NULL, // frame 10 + NULL, 0.000, NULL, // frame 11 +}; +mmove_t enemy_dog_move_pee = {FRAME_pee_01, FRAME_pee_12, enemy_dog_frames_pee, dog_end_stand}; + +mframe_t dog_frames_low_atk[] = +{ + ai_turn2, 0.000, NULL, // frame 0 + ai_turn2, 8.570, dog_bite, // frame 1 + ai_turn2, 11.397, dog_bite, // frame 2 + ai_turn2, 5.512, NULL, // frame 3 + ai_turn2, 1.776, dog_bite, // frame 4 + ai_turn2, -0.788, dog_bite, // frame 5 + ai_turn2, 0.808, NULL, // frame 6 + ai_turn2, -1.987, NULL, // frame 7 +}; +mmove_t dog_move_low_atk = {FRAME_low_atk_01, FRAME_low_atk_08, dog_frames_low_atk, AI_EndAttack}; + +mframe_t dog_frames_med_atk[] = +{ + ai_turn2, 0.000, NULL, // frame 0 + ai_turn2, 16.169, NULL, // frame 1 + ai_turn2, 6.894, dog_bite, // frame 2 + ai_turn2, 3.803, dog_bite, // frame 3 + ai_turn2, -4.625, dog_bite, // frame 4 + ai_turn2, 1.215, dog_bite, // frame 5 + ai_turn2, 0.501, NULL, // frame 6 +}; +mmove_t dog_move_med_atk = {FRAME_med_atk_01, FRAME_med_atk_07, dog_frames_med_atk, AI_EndAttack}; + +mframe_t dog_frames_upr_atk[] = +{ + NULL, 0.004, NULL, // frame 0 + NULL, 5.304, dog_pounce, // frame 1 + NULL, 0.102, dog_pounce, // frame 2 + NULL, 8.523, dog_pounce, // frame 3 + NULL, 19.589, dog_bite, // frame 4 + NULL, 3.179, dog_pounce, // frame 5 + NULL, 18.590, dog_bite, // frame 6 + NULL, 4.629, dog_pounce, // frame 7 + NULL, -4.434, dog_bite, // frame 8 + NULL, 3.514, dog_bite, // frame 9 +}; +mmove_t dog_move_upr_atk = {FRAME_upr_atk_01, FRAME_upr_atk_10, dog_frames_upr_atk, AI_EndAttack}; + +mframe_t dog_frames_pain1[] = +{ + ai_move, 0.712, NULL, // frame 0 + ai_move, -0.637, NULL, // frame 1 + ai_move, -35.731, NULL, // frame 2 + ai_move, -17.782, NULL, // frame 3 + ai_move, -1.044, NULL, // frame 4 +}; +mmove_t dog_move_pain1 = {FRAME_pain1_01, FRAME_pain1_05, dog_frames_pain1, AI_EndAttack}; + +mframe_t dog_frames_pain2[] = +{ + ai_move, -0.405, NULL, // frame 0 + ai_move, -2.011, NULL, // frame 1 + ai_move, -25.452, NULL, // frame 2 + ai_move, -24.575, NULL, // frame 3 + ai_move, -3.124, NULL, // frame 4 + ai_move, -2.106, NULL, // frame 5 + ai_move, 2.975, NULL, // frame 6 +}; +mmove_t dog_move_pain2 = {FRAME_pain2_01, FRAME_pain2_07, dog_frames_pain2, AI_EndAttack}; + +mframe_t dog_frames_pain3[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 +}; +mmove_t dog_move_pain3 = {FRAME_pain3_01, FRAME_pain3_05, dog_frames_pain3, AI_EndAttack}; + +mframe_t dog_frames_death1[] = +{ + ai_move, -1.383, NULL, // frame 0 + ai_move, -23.848, NULL, // frame 1 + ai_move, -39.326, NULL, // frame 2 + ai_move, -4.539, NULL, // frame 3 + ai_move, 5.228, NULL, // frame 4 + ai_move, -1.049, NULL, // frame 5 + ai_move, -1.829, NULL, // frame 6 + ai_move, 0.942, NULL, // frame 7 + ai_move, 1.584, NULL, // frame 8 + ai_move, 0.862, NULL, // frame 9 + ai_move, 0.140, NULL, // frame 10 + ai_move, 0.160, NULL, // frame 11 + ai_move, -0.249, NULL, // frame 12 + ai_move, -0.246, NULL, // frame 12 + ai_move, 0.217, NULL, // frame 12 + ai_move, 0.650, NULL, // frame 12 + ai_move, 0.000, NULL, // frame 12 +}; +mmove_t dog_move_death1 = {FRAME_death1_01, FRAME_death1_17, dog_frames_death1, AI_EndDeath}; + +mframe_t dog_frames_death2[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, -9.109, NULL, // frame 1 + ai_move, -8.657, NULL, // frame 2 + ai_move, -10.863, NULL, // frame 3 + ai_move, -2.848, NULL, // frame 4 + ai_move, -0.382, NULL, // frame 5 + ai_move, 0.707, NULL, // frame 6 + ai_move, -0.066, NULL, // frame 7 + ai_move, 0.067, NULL, // frame 8 +}; +mmove_t dog_move_death2 = {FRAME_death2_01, FRAME_death2_09, dog_frames_death2, AI_EndDeath}; + +mframe_t dog_frames_walk[] = +{ + ai_run, 0.022, NULL, // frame 0 + ai_run, 0.120, NULL, // frame 1 + ai_run, 0.127, NULL, // frame 2 + ai_run, 0.026, NULL, // frame 3 + ai_run, -0.324, NULL, // frame 4 + ai_run, -0.720, NULL, // frame 5 + ai_run, -0.664, NULL, // frame 6 + ai_run, -0.627, NULL, // frame 7 + ai_run, -0.346, NULL, // frame 8 + ai_run, 0.031, NULL, // frame 9 + ai_run, 0.408, NULL, // frame 10 + ai_run, 0.707, NULL, // frame 11 + ai_run, 0.761, NULL, // frame 12 +}; +mmove_t dog_move_walk = {FRAME_walk_01, FRAME_walk_13, dog_frames_walk, NULL}; + +mframe_t dog_frames_trot[] = +{ + ai_run, 3.512, NULL, // frame 0 + ai_run, 6.911, NULL, // frame 1 + ai_run, 2.456, NULL, // frame 2 + ai_run, 4.272, NULL, // frame 3 + ai_run, 5.160, NULL, // frame 4 + ai_run, 4.942, NULL, // frame 5 + ai_run, 4.272, NULL, // frame 6 + ai_run, 6.615, NULL, // frame 7 +}; +mmove_t dog_move_trot = {FRAME_trot_01, FRAME_trot_08, dog_frames_trot, AI_EndRun}; + +mframe_t dog_frames_run[] = +{ + ai_run, 11.155, NULL, // frame 0 + ai_run, 25.162, NULL, // frame 1 + ai_run, 27.589, NULL, // frame 2 + ai_run, 21.692, NULL, // frame 3 +}; +mmove_t dog_move_run = {FRAME_run_01, FRAME_run_04, dog_frames_run, AI_EndRun}; + +mframe_t dog_frames_run_on_fire[] = +{ + ai_onfire_run, 11.155, NULL, // frame 0 + ai_onfire_run, 25.162, NULL, // frame 1 + ai_onfire_run, 27.589, NULL, // frame 2 + ai_onfire_run, 21.692, NULL, // frame 3 +}; +mmove_t dog_move_run_on_fire = {FRAME_run_01, FRAME_run_04, dog_frames_run_on_fire, NULL}; + + +mframe_t dog_frames_avoid_walk[] = +{ + ai_turn, 3.512, NULL, // frame 0 + ai_turn, 6.911, NULL, // frame 1 + ai_turn, 2.456, NULL, // frame 2 + ai_turn, 4.272, NULL, // frame 3 + ai_turn, 5.160, NULL, // frame 4 + ai_turn, 4.942, NULL, // frame 5 + ai_turn, 4.272, NULL, // frame 6 + ai_turn, 6.615, NULL, // frame 7 +}; +mmove_t dog_move_avoid_walk = {FRAME_trot_01, FRAME_trot_08, dog_frames_avoid_walk, AI_EndAttack}; + +mframe_t dog_frames_avoid_reverse_walk[] = +{ + ai_turn, 6.615, NULL, // frame 0 + ai_turn, 4.272, NULL, // frame 1 + ai_turn, 4.942, NULL, // frame 2 + ai_turn, 5.160, NULL, // frame 3 + ai_turn, 4.272, NULL, // frame 4 + ai_turn, 2.456, NULL, // frame 5 + ai_turn, 6.911, NULL, // frame 6 + ai_turn, 3.512, NULL, // frame 7 +}; +mmove_t dog_move_avoid_reverse_walk = {FRAME_trot_08, FRAME_trot_01, dog_frames_avoid_reverse_walk, AI_EndAttack}; + +mframe_t dog_frames_avoid_run[] = +{ + ai_turn, 11.155, NULL, // frame 0 + ai_turn, 25.162, NULL, // frame 1 + ai_turn, 27.589, NULL, // frame 2 + ai_turn, 21.692, NULL, // frame 3 +}; +mmove_t dog_move_avoid_run = {FRAME_run_01, FRAME_run_04, dog_frames_avoid_run, AI_EndAttack}; + +mframe_t dog_frames_avoid_reverse_run[] = +{ + ai_turn, 21.692, NULL, // frame 0 + ai_turn, 27.589, NULL, // frame 1 + ai_turn, 25.162, NULL, // frame 2 + ai_turn, 11.155, NULL, // frame 3 +}; +mmove_t dog_move_avoid_reverse_run = {FRAME_run_04, FRAME_run_01, dog_frames_avoid_reverse_run, AI_EndAttack}; + diff --git a/gamesrc/ai_punk_tables.h b/gamesrc/ai_punk_tables.h new file mode 100644 index 0000000..df8173d --- /dev/null +++ b/gamesrc/ai_punk_tables.h @@ -0,0 +1,1695 @@ + +//================================================================================================== +// standard moves + +mframe_t punk_frames_stand[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 + ai_stand, 0.000, punk_talk_think, // frame 21 + ai_stand, 0.000, punk_talk_think, // frame 22 + ai_stand, 0.000, punk_talk_think, // frame 23 + ai_stand, 0.000, punk_talk_think, // frame 24 + ai_stand, 0.000, punk_talk_think, // frame 25 + ai_stand, 0.000, punk_talk_think, // frame 26 + ai_stand, 0.000, punk_talk_think, // frame 27 + ai_stand, 0.000, punk_talk_think, // frame 28 + ai_stand, 0.000, punk_talk_think, // frame 29 + ai_stand, 0.000, punk_talk_think, // frame 30 +}; +mmove_t punk_move_stand = {FRAME_stand_01, FRAME_stand_31, punk_frames_stand, punk_end_stand}; + +mframe_t punk_frames_tg_shoot[] = +{ + ai_charge, 0.000, punk_firegun, // frame 0 + ai_charge, 0.000, punk_firegun, // frame 1 + ai_charge, 0.000, punk_firegun, // frame 2 + ai_charge, 0.000, punk_firegun, // frame 3 + ai_charge, 0.000, punk_firegun, // frame 4 +}; +mmove_t punk_move_tg_shoot = {FRAME_tg_shoot_01, FRAME_tg_shoot_05, punk_frames_tg_shoot, AI_EndAttack}; + +mframe_t punk_frames_hmg_shoot[] = +{ + ai_charge, 0.000, punk_firehmg, // frame 0 + ai_charge, 0.000, punk_firehmg, // frame 1 + ai_charge, 0.000, punk_firehmg, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, punk_firehmg_delay, // frame 4 +}; +mmove_t punk_move_hmg_shoot = {FRAME_tg_shoot_01, FRAME_tg_shoot_05, punk_frames_hmg_shoot, AI_EndAttack}; + +mframe_t punk_frames_bazooka_shoot[] = +{ + ai_charge, 0.000, punk_firegun, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, NULL, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, punk_firebazooka_delay, // frame 4 +}; +mmove_t punk_move_bazooka_shoot = {FRAME_tg_shoot_01, FRAME_tg_shoot_05, punk_frames_bazooka_shoot, AI_EndAttack}; + +mframe_t punk_frames_grenade_shoot[] = +{ + ai_charge, 0.000, punk_firegun, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, NULL, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, NULL, // frame 4 +}; +mmove_t punk_move_grenade_shoot = {FRAME_tg_shoot_01, FRAME_tg_shoot_05, punk_frames_grenade_shoot, AI_EndAttack}; + + +mframe_t punk_frames_flamegun_shoot[] = +{ + ai_charge, 0.000, punk_firegun, // frame 0 + ai_charge, 0.000, punk_firegun, // frame 1 + ai_charge, 0.000, punk_firegun, // frame 2 + ai_charge, 0.000, punk_firegun, // frame 3 + ai_charge, 0.000, punk_firegun, // frame 4 +}; +mmove_t punk_move_flamegun_shoot = {FRAME_tg_shoot_01, FRAME_tg_shoot_05, punk_frames_flamegun_shoot, AI_EndAttack}; + +mframe_t punk_frames_shg_shoot[] = +{ + ai_charge, 0.000, punk_firegun, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, NULL, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, NULL, // frame 4 + ai_charge, 0.000, NULL, // frame 5 + ai_charge, 0.000, NULL, // frame 6 + ai_charge, 0.000, punk_shotgun_reload, // frame 7 + ai_charge, 0.000, NULL, // frame 8 + ai_charge, 0.000, NULL, // frame 9 + ai_charge, 0.000, NULL, // frame 10 + ai_charge, 0.000, NULL, // frame 11 + ai_charge, 0.000, NULL, // frame 12 +}; +mmove_t punk_move_shg_shoot = {FRAME_shg_shoot_01, FRAME_shg_shoot_13, punk_frames_shg_shoot, AI_EndAttack}; + +mframe_t punk_frames_tg_reload[] = +{ + ai_charge, 0.000, NULL, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, NULL, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, NULL, // frame 4 + ai_charge, 0.000, NULL, // frame 5 + ai_charge, 0.000, NULL, // frame 6 + ai_charge, 0.000, NULL, // frame 7 + ai_charge, 0.000, punk_reload_snd, // frame 8 + ai_charge, 0.000, NULL, // frame 9 + ai_charge, 0.000, NULL, // frame 10 + ai_charge, 0.000, NULL, // frame 11 + ai_charge, 0.000, NULL, // frame 12 + ai_charge, 0.000, NULL, // frame 13 + ai_charge, 0.000, NULL, // frame 14 + ai_charge, 0.000, NULL, // frame 15 +}; +mmove_t punk_move_tg_reload = {FRAME_tg_reload_01, FRAME_tg_reload_16, punk_frames_tg_reload, AI_EndAttack}; + +mframe_t punk_frames_talk1[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 + ai_stand, 0.000, punk_talk_think, // frame 21 + ai_stand, 0.000, punk_talk_think, // frame 22 + ai_stand, 0.000, punk_talk_think, // frame 23 + ai_stand, 0.000, punk_talk_think, // frame 24 + ai_stand, 0.000, punk_talk_think, // frame 25 +}; +mmove_t punk_move_talk1 = {FRAME_talk1_01, FRAME_talk1_26, punk_frames_talk1, punk_end_stand}; + +mframe_t punk_frames_talk2[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 +}; +mmove_t punk_move_talk2 = {FRAME_talk2_01, FRAME_talk2_20, punk_frames_talk2, punk_end_stand}; + +mframe_t punk_frames_talk3[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 +}; +mmove_t punk_move_talk3 = {FRAME_talk3_01, FRAME_talk3_21, punk_frames_talk3, punk_end_stand}; + +mframe_t punk_frames_talk4[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 + ai_stand, 0.000, punk_talk_think, // frame 21 + ai_stand, 0.000, punk_talk_think, // frame 22 + ai_stand, 0.000, punk_talk_think, // frame 23 + ai_stand, 0.000, punk_talk_think, // frame 24 + ai_stand, 0.000, punk_talk_think, // frame 25 + ai_stand, 0.000, punk_talk_think, // frame 26 + ai_stand, 0.000, punk_talk_think, // frame 27 + ai_stand, 0.000, punk_talk_think, // frame 28 + ai_stand, 0.000, punk_talk_think, // frame 29 + ai_stand, 0.000, punk_talk_think, // frame 30 + ai_stand, 0.000, punk_talk_think, // frame 31 + ai_stand, 0.000, punk_talk_think, // frame 32 +}; +mmove_t punk_move_talk4 = {FRAME_talk4_01, FRAME_talk4_33, punk_frames_talk4, punk_end_stand}; + +mframe_t punk_frames_talk5[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 + ai_stand, 0.000, punk_talk_think, // frame 21 + ai_stand, 0.000, punk_talk_think, // frame 22 + ai_stand, 0.000, punk_talk_think, // frame 23 + ai_stand, 0.000, punk_talk_think, // frame 24 + ai_stand, 0.000, punk_talk_think, // frame 25 + ai_stand, 0.000, punk_talk_think, // frame 26 + ai_stand, 0.000, punk_talk_think, // frame 27 + ai_stand, 0.000, punk_talk_think, // frame 28 +}; +mmove_t punk_move_talk5 = {FRAME_talk5_01, FRAME_talk5_29, punk_frames_talk5, punk_end_stand}; + +mframe_t punk_frames_talk6[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 + ai_stand, 0.000, punk_talk_think, // frame 21 + ai_stand, 0.000, punk_talk_think, // frame 22 + ai_stand, 0.000, punk_talk_think, // frame 23 + ai_stand, 0.000, punk_talk_think, // frame 24 + ai_stand, 0.000, punk_talk_think, // frame 25 + ai_stand, 0.000, punk_talk_think, // frame 26 + ai_stand, 0.000, punk_talk_think, // frame 27 + ai_stand, 0.000, punk_talk_think, // frame 28 + ai_stand, 0.000, punk_talk_think, // frame 29 + ai_stand, 0.000, punk_talk_think, // frame 30 + ai_stand, 0.000, punk_talk_think, // frame 31 + ai_stand, 0.000, punk_talk_think, // frame 32 + ai_stand, 0.000, punk_talk_think, // frame 33 + ai_stand, 0.000, punk_talk_think, // frame 34 + ai_stand, 0.000, punk_talk_think, // frame 35 + ai_stand, 0.000, punk_talk_think, // frame 36 + ai_stand, 0.000, punk_talk_think, // frame 37 + ai_stand, 0.000, punk_talk_think, // frame 38 + ai_stand, 0.000, punk_talk_think, // frame 39 + ai_stand, 0.000, punk_talk_think, // frame 40 + ai_stand, 0.000, punk_talk_think, // frame 41 + ai_stand, 0.000, punk_talk_think, // frame 42 + ai_stand, 0.000, punk_talk_think, // frame 43 + ai_stand, 0.000, punk_talk_think, // frame 44 + ai_stand, 0.000, punk_talk_think, // frame 45 + ai_stand, 0.000, punk_talk_think, // frame 46 +}; +mmove_t punk_move_talk6 = {FRAME_talk6_01, FRAME_talk6_47, punk_frames_talk6, punk_end_stand}; + +mframe_t punk_frames_head_wipe[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 + ai_stand, 0.000, NULL, // frame 9 + ai_stand, 0.000, NULL, // frame 10 + ai_stand, 0.000, NULL, // frame 11 + ai_stand, 0.000, NULL, // frame 12 + ai_stand, 0.000, NULL, // frame 13 + ai_stand, 0.000, NULL, // frame 14 + ai_stand, 0.000, NULL, // frame 15 + ai_stand, 0.000, NULL, // frame 16 + ai_stand, 0.000, NULL, // frame 17 + ai_stand, 0.000, NULL, // frame 18 + ai_stand, 0.000, NULL, // frame 19 + ai_stand, 0.000, NULL, // frame 20 + ai_stand, 0.000, NULL, // frame 21 + ai_stand, 0.000, NULL, // frame 22 + ai_stand, 0.000, NULL, // frame 23 + ai_stand, 0.000, NULL, // frame 24 + ai_stand, 0.000, NULL, // frame 25 + ai_stand, 0.000, NULL, // frame 26 + ai_stand, 0.000, NULL, // frame 27 +}; +mmove_t punk_move_head_wipe = {FRAME_head_wipe_01, FRAME_head_wipe_28, punk_frames_head_wipe, punk_end_stand}; + +mframe_t punk_frames_pain_Rarm[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t punk_move_pain_Rarm = {FRAME_pain_Rarm_01, FRAME_pain_Rarm_09, punk_frames_pain_Rarm, AI_EndAttack}; + +mframe_t punk_frames_pain_Larm[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 +}; +mmove_t punk_move_pain_Larm = {FRAME_pain_Larm_01, FRAME_pain_Larm_08, punk_frames_pain_Larm, AI_EndAttack}; + +mframe_t punk_frames_pain_chest[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 +}; +mmove_t punk_move_pain_chest = {FRAME_pain_chest_01, FRAME_pain_chest_10, punk_frames_pain_chest, AI_EndAttack}; + +mframe_t punk_frames_pain_head[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 +}; +mmove_t punk_move_pain_head = {FRAME_pain_head_01, FRAME_pain_head_08, punk_frames_pain_head, AI_EndAttack}; + +mframe_t punk_frames_pain_Rleg[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 +}; +mmove_t punk_move_pain_Rleg = {FRAME_pain_Rleg_01, FRAME_pain_Rleg_11, punk_frames_pain_Rleg, AI_EndAttack}; + +mframe_t punk_frames_pain_Lleg[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t punk_move_pain_Lleg = {FRAME_pain_Lleg_01, FRAME_pain_Lleg_09, punk_frames_pain_Lleg, AI_EndAttack}; + +mframe_t punk_frames_pain_crch[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 + ai_move, 0.000, NULL, // frame 12 +}; +mmove_t punk_move_pain_crch = {FRAME_pain_crch_01, FRAME_pain_crch_13, punk_frames_pain_crch, AI_EndAttack}; + +mframe_t punk_frames_pain_butt[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 + ai_move, 0.000, NULL, // frame 12 + ai_move, 0.000, NULL, // frame 13 +}; +mmove_t punk_move_pain_butt = {FRAME_pain_butt_01, FRAME_pain_butt_14, punk_frames_pain_butt, AI_EndAttack}; + +mframe_t punk_frames_jump[] = +{ +// ai_stand, 0.000, NULL, // frame 0 +// ai_stand, 0.000, NULL, // frame 1 +// ai_stand, 0.000, NULL, // frame 2 +// ai_stand, 0.000, NULL, // frame 3 +// ai_stand, 0.000, NULL, // frame 4 + + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, AI_CheckStillInair, // frame 7 + NULL, 0.000, NULL, // frame 8 + +// ai_stand, 0.000, NULL, // frame 9 +// ai_stand, 0.000, NULL, // frame 10 +// ai_stand, 0.000, NULL, // frame 11 +}; +mmove_t punk_move_jump = {FRAME_jump_06, FRAME_jump_09, punk_frames_jump, AI_EndJump}; + +mframe_t punk_frames_death1[] = +{ + ai_move, -4.355, NULL, // frame 0 + ai_move, -12.373, NULL, // frame 1 + ai_move, -4.930, NULL, // frame 2 + ai_move, -2.820, NULL, // frame 3 + ai_move, -7.905, NULL, // frame 4 + ai_move, -12.099, NULL, // frame 5 + ai_move, -4.754, NULL, // frame 6 + ai_move, -3.771, NULL, // frame 7 + ai_move, 1.005, NULL, // frame 8 + ai_move, -0.313, NULL, // frame 9 + ai_move, 0.516, NULL, // frame 10 + ai_move, -0.092, NULL, // frame 11 + ai_move, -0.086, NULL, // frame 12 + ai_move, -0.042, NULL, // frame 13 + ai_move, 0.032, NULL, // frame 14 + ai_move, -0.026, NULL, // frame 15 + ai_move, 0.008, NULL, // frame 16 + ai_move, 0.017, NULL, // frame 17 + ai_move, -0.003, NULL, // frame 18 +}; +mmove_t punk_move_death1 = {FRAME_death1_01, FRAME_death1_19, punk_frames_death1, AI_EndDeath}; + +mframe_t punk_frames_death2[] = +{ + ai_move, -5.523, NULL, // frame 0 + ai_move, -12.982, NULL, // frame 1 + ai_move, -5.191, NULL, // frame 2 + ai_move, -12.765, NULL, // frame 3 + ai_move, -12.250, NULL, // frame 4 + ai_move, -6.917, NULL, // frame 5 + ai_move, -7.750, NULL, // frame 6 + ai_move, 0.493, NULL, // frame 7 + ai_move, 2.456, NULL, // frame 8 + ai_move, 0.524, NULL, // frame 9 + ai_move, 3.357, NULL, // frame 10 + ai_move, 1.128, NULL, // frame 11 + ai_move, -0.663, NULL, // frame 12 + ai_move, -0.169, NULL, // frame 13 + ai_move, -0.012, NULL, // frame 14 + ai_move, -0.017, NULL, // frame 15 +}; +mmove_t punk_move_death2 = {FRAME_death2_01, FRAME_death2_16, punk_frames_death2, AI_EndDeath}; + +mframe_t punk_frames_death3[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 + ai_move, 0.000, NULL, // frame 12 + ai_move, 0.000, NULL, // frame 13 + ai_move, 0.000, NULL, // frame 14 + ai_move, 0.000, NULL, // frame 15 + ai_move, 0.000, NULL, // frame 16 + ai_move, 0.000, NULL, // frame 17 + ai_move, 0.000, NULL, // frame 18 + ai_move, 0.000, NULL, // frame 19 + ai_move, 0.000, NULL, // frame 20 + ai_move, 0.000, NULL, // frame 21 + ai_move, 0.000, NULL, // frame 22 + ai_move, 0.000, NULL, // frame 23 + ai_move, 0.000, NULL, // frame 24 + ai_move, 0.000, NULL, // frame 25 + ai_move, 0.000, NULL, // frame 26 + ai_move, 0.000, NULL, // frame 27 +}; +mmove_t punk_move_death3 = {FRAME_death3_01, FRAME_death3_28, punk_frames_death3, AI_EndDeath}; + +mframe_t punk_frames_death4[] = +{ + ai_move, -0.476, NULL, // frame 0 + ai_move, -15.310, NULL, // frame 1 + ai_move, -5.952, NULL, // frame 2 + ai_move, -7.488, NULL, // frame 3 + ai_move, -18.312, NULL, // frame 4 + ai_move, -2.110, NULL, // frame 5 + ai_move, -11.255, NULL, // frame 6 + ai_move, -1.091, NULL, // frame 7 + ai_move, 0.135, NULL, // frame 8 + ai_move, -0.201, NULL, // frame 9 + ai_move, -0.217, NULL, // frame 10 + ai_move, 0.002, NULL, // frame 11 + ai_move, 0.008, NULL, // frame 12 +}; +mmove_t punk_move_death4 = {FRAME_death4_01, FRAME_death4_13, punk_frames_death4, AI_EndDeath}; + +mframe_t punk_frames_crh_shuf[] = +{ + ai_run, -0.364, NULL, // frame 0 + ai_run, 15.133, NULL, // frame 1 + ai_run, 7.529, NULL, // frame 2 + ai_run, 11.337, NULL, // frame 3 + ai_run, 20.832, NULL, // frame 4 +}; +mmove_t punk_move_crh_shuf = {FRAME_crh_shuf_01, FRAME_crh_shuf_05, punk_frames_crh_shuf, NULL}; + +mframe_t punk_frames_crouch_walk[] = +{ + ai_run, 5.383, NULL, // frame 0 + ai_run, 5.466, NULL, // frame 1 + ai_run, 3.693, NULL, // frame 2 + ai_run, 5.865, NULL, // frame 3 + ai_run, 13.852, NULL, // frame 4 + ai_run, 6.698, NULL, // frame 5 + ai_run, 3.743, NULL, // frame 6 +}; +mmove_t punk_move_crouch_walk = {FRAME_crouch_walk_01, FRAME_crouch_walk_07, punk_frames_crouch_walk, NULL}; + +mframe_t punk_frames_crouch_painC[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 +}; +mmove_t punk_move_crouch_painC = {FRAME_crouch_painC_01, FRAME_crouch_painC_07, punk_frames_crouch_painC, AI_EndAttack}; + +mframe_t punk_frames_crouch_painL[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 +}; +mmove_t punk_move_crouch_painL = {FRAME_crouch_painL_01, FRAME_crouch_painL_08, punk_frames_crouch_painL, AI_EndAttack}; + +mframe_t punk_frames_crouch_painR[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 +}; +mmove_t punk_move_crouch_painR = {FRAME_crouch_painR_01, FRAME_crouch_painR_07, punk_frames_crouch_painR, AI_EndAttack}; + +mframe_t punk_frames_crouch_shoot[] = +{ + ai_turn, 0.000, punk_firegun, // frame 0 + ai_turn, 0.000, punk_firegun_cr, // frame 1 + ai_turn, 0.000, punk_firegun_cr, // frame 2 + ai_turn, 0.000, punk_firegun_cr, // frame 3 + ai_turn, 0.000, punk_firegun_cr, // frame 4 + ai_turn, 0.000, punk_firegun_cr, // frame 5 +}; +mmove_t punk_move_crouch_shoot = {FRAME_crouch_shoot_01, FRAME_crouch_shoot_06, punk_frames_crouch_shoot, AI_EndAttack}; + +mframe_t punk_frames_crch_shg_sht[] = +{ + ai_turn, 0.000, punk_firegun, // frame 0 + ai_turn, 0.000, NULL, // frame 1 + ai_turn, 0.000, NULL, // frame 2 + ai_turn, 0.000, NULL, // frame 3 + ai_turn, 0.000, NULL, // frame 4 + ai_turn, 0.000, NULL, // frame 5 + ai_turn, 0.000, NULL, // frame 6 + ai_turn, 0.000, punk_shotgun_reload, // frame 7 + ai_turn, 0.000, NULL, // frame 8 + ai_turn, 0.000, NULL, // frame 9 + ai_turn, 0.000, NULL, // frame 10 + ai_turn, 0.000, NULL, // frame 11 + ai_turn, 0.000, NULL, // frame 12 +}; +mmove_t punk_move_crch_shg_sht = {FRAME_crch_shg_sht_01, FRAME_crch_shg_sht_13, punk_frames_crch_shg_sht, AI_EndAttack}; + +mframe_t punk_frames_crouch_stand_down[] = +{ +// NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 +// NULL, 0.000, NULL, // frame 4 +}; +mmove_t punk_move_crouch_stand_down = {FRAME_stand_crouch_02, FRAME_stand_crouch_04, punk_frames_crouch_stand_down, AI_End_CrouchStand_Down}; + +mframe_t punk_frames_crouch_stand_up[] = +{ +// NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 +// NULL, 0.000, NULL, // frame 4 +}; +mmove_t punk_move_crouch_stand_up = {FRAME_stand_crouch_04, FRAME_stand_crouch_02, punk_frames_crouch_stand_up, AI_End_CrouchStand_Up}; + +mframe_t punk_frames_crch_astand[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 + ai_stand, 0.000, NULL, // frame 9 + ai_stand, 0.000, NULL, // frame 10 + ai_stand, 0.000, NULL, // frame 11 + ai_stand, 0.000, NULL, // frame 12 + ai_stand, 0.000, NULL, // frame 13 + ai_stand, 0.000, NULL, // frame 14 + ai_stand, 0.000, NULL, // frame 15 + ai_stand, 0.000, NULL, // frame 16 + ai_stand, 0.000, NULL, // frame 17 + ai_stand, 0.000, NULL, // frame 18 + ai_stand, 0.000, NULL, // frame 19 +}; +mmove_t punk_move_crch_astand = {FRAME_crch_astand_01, FRAME_crch_astand_20, punk_frames_crch_astand, NULL}; + +mframe_t punk_frames_crouch_death[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 +}; +mmove_t punk_move_crouch_death = {FRAME_crouch_death_01, FRAME_crouch_death_12, punk_frames_crouch_death, AI_EndDeath}; + +/* +mframe_t punk_frames_st_clmb[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 +}; +mmove_t punk_move_st_clmb = {FRAME_st_clmb_01, FRAME_st_clmb_02, punk_frames_st_clmb, NULL}; +*/ + +mframe_t punk_frames_clmb_loop[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 7 + NULL, 0.000, NULL, // frame 8 +}; +mmove_t punk_move_clmb_loop = {FRAME_clmb_loop_01, FRAME_clmb_loop_09, punk_frames_clmb_loop, AI_CheckStillClimbingLadder}; + +mframe_t punk_frames_clmb_over[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 7 + NULL, 0.000, NULL, // frame 8 + NULL, 0.000, NULL, // frame 9 +// NULL, 0.000, NULL, // frame 10 +// NULL, 0.000, NULL, // frame 11 +// NULL, 0.000, NULL, // frame 12 +// NULL, 0.000, NULL, // frame 13 +// NULL, 0.000, NULL, // frame 14 +}; +mmove_t punk_move_clmb_over = {FRAME_clmb_over_01, FRAME_clmb_over_10, punk_frames_clmb_over, AI_EndJump}; +/* +mframe_t punk_frames_lside_step[] = +{ + ai_sidestep, 0.215, NULL, // frame 0 + ai_sidestep, 0.721, NULL, // frame 1 + ai_sidestep, 2.871, NULL, // frame 2 + ai_sidestep, 4.372, NULL, // frame 3 + ai_sidestep, 2.453, NULL, // frame 4 + ai_sidestep, 2.358, NULL, // frame 5 + ai_sidestep, -0.671, NULL, // frame 6 +}; +mmove_t punk_move_lside_step = {FRAME_lside_step_01, FRAME_lside_step_07, punk_frames_lside_step, NULL}; + +mframe_t punk_frames_rside_step[] = +{ + ai_sidestep, 0.676, NULL, // frame 0 + ai_sidestep, -0.261, NULL, // frame 1 + ai_sidestep, -1.790, NULL, // frame 2 + ai_sidestep, -1.300, NULL, // frame 3 + ai_sidestep, -2.096, NULL, // frame 4 + ai_sidestep, -3.586, NULL, // frame 5 + ai_sidestep, -3.024, NULL, // frame 6 +}; +mmove_t punk_move_rside_step = {FRAME_rside_step_01, FRAME_rside_step_07, punk_frames_rside_step, NULL}; +*/ + +mframe_t punk_frames_lside_step[] = +{ + ai_sidestep, -0.215, NULL, // frame 0 + ai_sidestep, -0.721, NULL, // frame 1 + ai_sidestep, -2.871, NULL, // frame 2 + ai_sidestep, -4.372, NULL, // frame 3 + ai_sidestep, -2.453, NULL, // frame 4 + ai_sidestep, -2.358, NULL, // frame 5 + ai_sidestep, 0.671, NULL, // frame 6 +}; +mmove_t punk_move_lside_step = {FRAME_lside_step_01, FRAME_lside_step_07, punk_frames_lside_step, AI_EndAttack}; + +mframe_t punk_frames_rside_step[] = +{ + ai_sidestep, -0.676, NULL, // frame 0 + ai_sidestep, 0.261, NULL, // frame 1 + ai_sidestep, 1.790, NULL, // frame 2 + ai_sidestep, 1.300, NULL, // frame 3 + ai_sidestep, 2.096, NULL, // frame 4 + ai_sidestep, 3.586, NULL, // frame 5 + ai_sidestep, 3.024, NULL, // frame 6 +}; +mmove_t punk_move_rside_step = {FRAME_rside_step_01, FRAME_rside_step_07, punk_frames_rside_step, AI_EndAttack}; + + +mframe_t punk_frames_walk_nw[] = +{ + ai_run, 9.849, NULL, // frame 0 + ai_run, -1.401, NULL, // frame 1 + ai_run, 8.203, NULL, // frame 2 + ai_run, 7.614, NULL, // frame 3 + ai_run, 6.068, NULL, // frame 4 + ai_run, 7.790, NULL, // frame 5 + ai_run, 13.569, NULL, // frame 6 + ai_run, 10.150, NULL, // frame 7 + ai_run, 8.247, NULL, // frame 8 + ai_run, 6.745, NULL, // frame 9 +}; +mmove_t punk_move_walk_nw = {FRAME_walk_nw_01, FRAME_walk_nw_10, punk_frames_walk_nw, AI_EndRun}; + +mframe_t punk_frames_walk_tg_sht[] = +{ + ai_turn, 11.306, punk_firegun, // frame 0 + ai_turn, 6.486, punk_firegun, // frame 1 + ai_turn, 6.159, punk_firegun, // frame 2 + ai_turn, 9.146, punk_firegun, // frame 3 + ai_turn, 9.527, punk_firegun, // frame 4 + ai_turn, 8.850, punk_firegun, // frame 5 + ai_turn, 8.214, punk_firegun, // frame 6 + ai_turn, 6.377, punk_firegun, // frame 7 + ai_turn, 5.029, punk_firegun, // frame 8 + ai_turn, 5.740, punk_firegun, // frame 9 +}; +mmove_t punk_move_walk_tg_sht = {FRAME_walk_tg_sht_01, FRAME_walk_tg_sht_10, punk_frames_walk_tg_sht, AI_EndAttack}; + +mframe_t punk_frames_walk_hmg_sht[] = +{ + ai_turn, 11.306, punk_firehmg, // frame 0 + ai_turn, 6.486, punk_firehmg, // frame 1 + ai_turn, 6.159, punk_firehmg, // frame 2 + ai_turn, 9.146, NULL, // frame 3 + ai_turn, 9.527, NULL, // frame 4 + ai_turn, 8.850, NULL, // frame 5 + ai_turn, 8.214, NULL, // frame 6 + ai_turn, 6.377, NULL, // frame 7 + ai_turn, 5.029, NULL, // frame 8 + ai_turn, 5.740, punk_firehmg_delay, // frame 9 +}; +mmove_t punk_move_walk_hmg_sht = {FRAME_walk_tg_sht_01, FRAME_walk_tg_sht_10, punk_frames_walk_hmg_sht, AI_EndAttack}; + +mframe_t punk_frames_walk_bazooka_sht[] = +{ + ai_turn, 11.306, punk_firegun, // frame 0 + ai_turn, 6.486, NULL, // frame 1 + ai_turn, 6.159, NULL, // frame 2 + ai_turn, 9.146, NULL, // frame 3 + ai_turn, 9.527, NULL, // frame 4 + ai_turn, 8.850, NULL, // frame 5 + ai_turn, 8.214, NULL, // frame 6 + ai_turn, 6.377, NULL, // frame 7 + ai_turn, 5.029, NULL, // frame 8 + ai_turn, 5.740, NULL, // frame 9 +}; +mmove_t punk_move_walk_bazooka_sht = {FRAME_walk_tg_sht_01, FRAME_walk_tg_sht_10, punk_frames_walk_bazooka_sht, AI_EndAttack}; + +mframe_t punk_frames_walk_grenade_sht[] = +{ + ai_turn, 11.306, punk_firegun, // frame 0 + ai_turn, 6.486, NULL, // frame 1 + ai_turn, 6.159, NULL, // frame 2 + ai_turn, 9.146, NULL, // frame 3 + ai_turn, 9.527, NULL, // frame 4 + ai_turn, 8.850, NULL, // frame 5 + ai_turn, 8.214, NULL, // frame 6 + ai_turn, 6.377, NULL, // frame 7 + ai_turn, 5.029, NULL, // frame 8 + ai_turn, 5.740, NULL, // frame 9 +}; +mmove_t punk_move_walk_grenade_sht = {FRAME_walk_tg_sht_01, FRAME_walk_tg_sht_10, punk_frames_walk_grenade_sht, AI_EndAttack}; + +mframe_t punk_frames_walk_flamegun_sht[] = +{ + ai_turn, 11.306, punk_firegun, // frame 0 + ai_turn, 6.486, punk_firegun, // frame 1 + ai_turn, 6.159, punk_firegun, // frame 2 + ai_turn, 9.146, punk_firegun, // frame 3 + ai_turn, 9.527, punk_firegun, // frame 4 + ai_turn, 8.850, punk_firegun, // frame 5 + ai_turn, 8.214, punk_firegun, // frame 6 + ai_turn, 6.377, punk_firegun, // frame 7 + ai_turn, 5.029, punk_firegun, // frame 8 + ai_turn, 5.740, punk_firegun, // frame 9 +}; +mmove_t punk_move_walk_flamegun_sht = {FRAME_walk_tg_sht_01, FRAME_walk_tg_sht_10, punk_frames_walk_flamegun_sht, AI_EndAttack}; + + +mframe_t punk_frames_walk_shg_sht[] = +{ + ai_turn, 13.194, punk_firegun, // frame 0 + ai_turn, 3.697, NULL, // frame 1 + ai_turn, 9.794, NULL, // frame 2 + ai_turn, 9.688, NULL, // frame 3 + ai_turn, 8.709, NULL, // frame 4 + ai_turn, 9.221, punk_shotgun_reload, // frame 5 + ai_turn, 7.405, NULL, // frame 6 + ai_turn, 7.594, NULL, // frame 7 + ai_turn, 2.303, NULL, // frame 8 + ai_turn, 5.228, NULL, // frame 9 +}; +mmove_t punk_move_walk_shg_sht = {FRAME_walk_shg_sht_01, FRAME_walk_shg_sht_10, punk_frames_walk_shg_sht, AI_EndAttack}; + +mframe_t punk_frames_walk_gdown[] = +{ + ai_run, 3.636, NULL, // frame 0 + ai_run, 6.504, NULL, // frame 1 + ai_run, 3.111, NULL, // frame 2 + ai_run, 4.200, NULL, // frame 3 + ai_run, 8.913, NULL, // frame 4 + ai_run, 7.640, NULL, // frame 5 + ai_run, 11.360, NULL, // frame 6 + ai_run, 4.233, NULL, // frame 7 + ai_run, 12.047, NULL, // frame 8 + ai_run, 10.356, NULL, // frame 9 +}; +mmove_t punk_move_walk_gdown = {FRAME_walk_gdown_01, FRAME_walk_gdown_10, punk_frames_walk_gdown, AI_EndRun}; + +mframe_t punk_frames_run_nw[] = +{ + ai_run, 26.748, NULL, // frame 0 + ai_run, 17.188, NULL, // frame 1 + ai_run, 31.486, NULL, // frame 2 + ai_run, 31.052, NULL, // frame 3 + ai_run, 23.944, NULL, // frame 4 + ai_run, 24.549, NULL, // frame 5 +}; +mmove_t punk_move_run_nw = {FRAME_run_nw_01, FRAME_run_nw_06, punk_frames_run_nw, AI_EndRun}; + +mframe_t punk_frames_run_tg_sht[] = +{ + ai_charge, 27.656, punk_firegun, // frame 0 + ai_charge, 17.929, NULL, // frame 1 + ai_charge, 33.470, punk_firegun, // frame 2 + ai_charge, 37.084, NULL, // frame 3 + ai_charge, 31.857, punk_firegun, // frame 4 + ai_charge, 24.969, NULL, // frame 5 +}; +mmove_t punk_move_run_tg_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, punk_frames_run_tg_sht, AI_EndAttack}; + +mframe_t punk_frames_run_reverse_tg_sht[] = +{ + ai_charge,- 24.969, punk_firegun, // frame 5 + ai_charge,- 31.857, NULL, // frame 4 + ai_charge,- 37.084, punk_firegun, // frame 3 + ai_charge,- 33.470, NULL, // frame 2 + ai_charge,- 17.929, punk_firegun, // frame 1 + ai_charge,- 27.656, NULL, // frame 0 +}; +mmove_t punk_move_run_reverse_tg_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, punk_frames_run_reverse_tg_sht, AI_EndAttack}; + + +mframe_t punk_frames_run_hmg_sht[] = +{ + ai_charge, 27.656, punk_firehmg, // frame 0 + ai_charge, 17.929, punk_firehmg, // frame 1 + ai_charge, 33.470, punk_firehmg, // frame 2 + ai_charge, 37.084, NULL, // frame 3 + ai_charge, 31.857, NULL, // frame 4 + ai_charge, 24.969, punk_firehmg_delay, // frame 5 +}; +mmove_t punk_move_run_hmg_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, punk_frames_run_hmg_sht, AI_EndAttack}; + +mframe_t punk_frames_run_reverse_hmg_sht[] = +{ + ai_charge,- 24.969, punk_firehmg, // frame 5 + ai_charge,- 31.857, punk_firehmg, // frame 4 + ai_charge,- 37.084, punk_firehmg, // frame 3 + ai_charge,- 33.470, NULL, // frame 2 + ai_charge,- 17.929, NULL, // frame 1 + ai_charge,- 27.656, NULL, // frame 0 +}; +mmove_t punk_move_run_reverse_hmg_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, punk_frames_run_reverse_hmg_sht, AI_EndAttack}; + + +mframe_t punk_frames_run_bazooka_sht[] = +{ + ai_charge, 27.656, punk_firegun, // frame 0 + ai_charge, 17.929, NULL, // frame 1 + ai_charge, 33.470, NULL, // frame 2 + ai_charge, 37.084, NULL, // frame 3 + ai_charge, 31.857, NULL, // frame 4 + ai_charge, 24.969, NULL, // frame 5 +}; +mmove_t punk_move_run_bazooka_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, punk_frames_run_bazooka_sht, AI_EndAttack}; + +mframe_t punk_frames_run_reverse_bazooka_sht[] = +{ + ai_charge,- 24.969, punk_firegun, // frame 5 + ai_charge,- 31.857, NULL, // frame 4 + ai_charge,- 37.084, NULL, // frame 3 + ai_charge,- 33.470, NULL, // frame 2 + ai_charge,- 17.929, NULL, // frame 1 + ai_charge,- 27.656, NULL, // frame 0 +}; +mmove_t punk_move_run_reverse_bazooka_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, punk_frames_run_reverse_bazooka_sht, AI_EndAttack}; + + +mframe_t punk_frames_run_grenade_sht[] = +{ + ai_charge, 27.656, punk_firegun, // frame 0 + ai_charge, 17.929, NULL, // frame 1 + ai_charge, 33.470, NULL, // frame 2 + ai_charge, 37.084, NULL, // frame 3 + ai_charge, 31.857, NULL, // frame 4 + ai_charge, 24.969, NULL, // frame 5 +}; +mmove_t punk_move_run_grenade_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, punk_frames_run_grenade_sht, AI_EndAttack}; + +mframe_t punk_frames_run_reverse_grenade_sht[] = +{ + ai_charge,- 24.969, punk_firegun, // frame 5 + ai_charge,- 31.857, NULL, // frame 4 + ai_charge,- 37.084, NULL, // frame 3 + ai_charge,- 33.470, NULL, // frame 2 + ai_charge,- 17.929, NULL, // frame 1 + ai_charge,- 27.656, NULL, // frame 0 +}; +mmove_t punk_move_run_reverse_grenade_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, punk_frames_run_reverse_grenade_sht, AI_EndAttack}; + + +mframe_t punk_frames_run_flamegun_sht[] = +{ + ai_charge, 27.656, punk_firegun, // frame 0 + ai_charge, 17.929, punk_firegun, // frame 1 + ai_charge, 33.470, punk_firegun, // frame 2 + ai_charge, 37.084, punk_firegun, // frame 3 + ai_charge, 31.857, punk_firegun, // frame 4 + ai_charge, 24.969, punk_firegun, // frame 5 +}; +mmove_t punk_move_run_flamegun_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, punk_frames_run_flamegun_sht, AI_EndAttack}; + +mframe_t punk_frames_run_reverse_flamegun_sht[] = +{ + ai_charge,- 24.969, punk_firegun, // frame 5 + ai_charge,- 31.857, punk_firegun, // frame 4 + ai_charge,- 37.084, punk_firegun, // frame 3 + ai_charge,- 33.470, punk_firegun, // frame 2 + ai_charge,- 17.929, punk_firegun, // frame 1 + ai_charge,- 27.656, punk_firegun, // frame 0 +}; +mmove_t punk_move_run_reverse_flamegun_sht = {FRAME_run_tg_sht_06, FRAME_run_tg_sht_01, punk_frames_run_reverse_flamegun_sht, AI_EndAttack}; + + +mframe_t punk_frames_run_shg_sht[] = +{ + ai_charge, 25.263, punk_firegun, // frame 0 + ai_charge, 15.586, NULL, // frame 1 + ai_charge, 37.674, NULL, // frame 2 + ai_charge, 32.187, punk_shotgun_reload, // frame 3 + ai_charge, 33.081, NULL, // frame 4 + ai_charge, 30.137, NULL, // frame 5 +}; +mmove_t punk_move_run_shg_sht = {FRAME_run_shg_sht_01, FRAME_run_shg_sht_06, punk_frames_run_shg_sht, AI_EndAttack}; + +mframe_t punk_frames_run_gun_down[] = +{ + ai_run, 26.748, NULL, // frame 0 + ai_run, 17.188, NULL, // frame 1 + ai_run, 31.486, NULL, // frame 2 + ai_run, 31.052, NULL, // frame 3 + ai_run, 23.944, NULL, // frame 4 + ai_run, 24.549, NULL, // frame 5 +}; +mmove_t punk_move_run_gun_down = {FRAME_run_gun_down_01, FRAME_run_gun_down_06, punk_frames_run_gun_down, AI_EndRun}; + +mframe_t punk_frames_run_on_fire[] = +{ + ai_onfire_run, 26.846, NULL, // frame 0 + ai_onfire_run, 20.973, NULL, // frame 1 + ai_onfire_run, 44.080, NULL, // frame 2 + ai_onfire_run, 30.029, NULL, // frame 3 + ai_onfire_run, 25.538, NULL, // frame 4 + ai_onfire_run, 26.007, NULL, // frame 5 +}; +mmove_t punk_move_run_on_fire = {FRAME_run_on_fire_01, FRAME_run_on_fire_06, punk_frames_run_on_fire, NULL}; + +mframe_t punk_frames_lsd_tg_run[] = +{ + ai_sidestep,- 23.733*0.75, punk_firegun_left, // frame 0 + ai_sidestep,- 18.601*0.75, punk_firegun_left, // frame 1 + ai_sidestep,- 31.336*0.75, punk_firegun_left, // frame 2 + ai_sidestep,- 39.244*0.75, punk_firegun_left, // frame 3 + ai_sidestep,- 26.961*0.75, punk_firegun_left, // frame 4 + ai_sidestep,- 23.858*0.75, punk_firegun_left, // frame 5 +}; +mmove_t punk_move_lsd_tg_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_06, punk_frames_lsd_tg_run, NULL}; + +mframe_t punk_frames_rsd_tg_run[] = +{ + ai_sidestep, 19.829*0.75, punk_firegun_right, // frame 0 + ai_sidestep, 17.364*0.75, punk_firegun_right, // frame 1 + ai_sidestep, 32.611*0.75, punk_firegun_right, // frame 2 + ai_sidestep, 37.973*0.75, punk_firegun_right, // frame 3 + ai_sidestep, 32.279*0.75, punk_firegun_right, // frame 4 + ai_sidestep, 24.741*0.75, punk_firegun_right, // frame 5 +}; +mmove_t punk_move_rsd_tg_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_06, punk_frames_rsd_tg_run, NULL}; + + +mframe_t punk_frames_lsd_hmg_run[] = +{ + ai_sidestep,- 23.733*0.75, punk_firegun_left, // frame 0 + ai_sidestep,- 18.601*0.75, NULL, // frame 1 + ai_sidestep,- 31.336*0.75, punk_firegun, // frame 2 + ai_sidestep,- 39.244*0.75, NULL, // frame 3 + ai_sidestep,- 26.961*0.75, punk_firegun, // frame 4 + ai_sidestep,- 23.858*0.75, NULL, // frame 5 +}; +mmove_t punk_move_lsd_hmg_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_06, punk_frames_lsd_hmg_run, NULL}; + +mframe_t punk_frames_rsd_hmg_run[] = +{ + ai_sidestep, 19.829*0.75, punk_firegun_right, // frame 0 + ai_sidestep, 17.364*0.75, NULL, // frame 1 + ai_sidestep, 32.611*0.75, punk_firegun, // frame 2 + ai_sidestep, 37.973*0.75, NULL, // frame 3 + ai_sidestep, 32.279*0.75, punk_firegun, // frame 4 + ai_sidestep, 24.741*0.75, NULL, // frame 5 +}; +mmove_t punk_move_rsd_hmg_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_06, punk_frames_rsd_hmg_run, NULL}; + + +mframe_t punk_frames_lsd_bazooka_run[] = +{ + ai_sidestep,- 23.733*0.75, punk_firegun_left, // frame 0 + ai_sidestep,- 18.601*0.75, NULL, // frame 1 + ai_sidestep,- 31.336*0.75, NULL, // frame 2 + ai_sidestep,- 39.244*0.75, NULL, // frame 3 + ai_sidestep,- 26.961*0.75, NULL, // frame 4 + ai_sidestep,- 23.858*0.75, NULL, // frame 5 +}; +mmove_t punk_move_lsd_bazooka_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_06, punk_frames_lsd_bazooka_run, NULL}; + +mframe_t punk_frames_rsd_bazooka_run[] = +{ + ai_sidestep, 19.829*0.75, punk_firegun_right, // frame 0 + ai_sidestep, 17.364*0.75, NULL, // frame 1 + ai_sidestep, 32.611*0.75, NULL, // frame 2 + ai_sidestep, 37.973*0.75, NULL, // frame 3 + ai_sidestep, 32.279*0.75, NULL, // frame 4 + ai_sidestep, 24.741*0.75, NULL, // frame 5 +}; +mmove_t punk_move_rsd_bazooka_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_06, punk_frames_rsd_bazooka_run, NULL}; + + +mframe_t punk_frames_lsd_grenade_run[] = +{ + ai_sidestep,- 23.733*0.75, punk_firegun_left, // frame 0 + ai_sidestep,- 18.601*0.75, NULL, // frame 1 + ai_sidestep,- 31.336*0.75, NULL, // frame 2 + ai_sidestep,- 39.244*0.75, NULL, // frame 3 + ai_sidestep,- 26.961*0.75, NULL, // frame 4 + ai_sidestep,- 23.858*0.75, NULL, // frame 5 +}; +mmove_t punk_move_lsd_grenade_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_06, punk_frames_lsd_grenade_run, NULL}; + +mframe_t punk_frames_rsd_grenade_run[] = +{ + ai_sidestep, 19.829*0.75, punk_firegun_right, // frame 0 + ai_sidestep, 17.364*0.75, NULL, // frame 1 + ai_sidestep, 32.611*0.75, NULL, // frame 2 + ai_sidestep, 37.973*0.75, NULL, // frame 3 + ai_sidestep, 32.279*0.75, NULL, // frame 4 + ai_sidestep, 24.741*0.75, NULL, // frame 5 +}; +mmove_t punk_move_rsd_grenade_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_06, punk_frames_rsd_grenade_run, NULL}; + + +mframe_t punk_frames_lsd_flamegun_run[] = +{ + ai_sidestep,- 23.733*0.75, punk_firegun_left, // frame 0 + ai_sidestep,- 18.601*0.75, punk_firegun_left, // frame 1 + ai_sidestep,- 31.336*0.75, punk_firegun_left, // frame 2 + ai_sidestep,- 39.244*0.75, punk_firegun_left, // frame 3 + ai_sidestep,- 26.961*0.75, punk_firegun_left, // frame 4 + ai_sidestep,- 23.858*0.75, punk_firegun_left, // frame 5 +}; +mmove_t punk_move_lsd_flamegun_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_06, punk_frames_lsd_flamegun_run, NULL}; + +mframe_t punk_frames_rsd_flamegun_run[] = +{ + ai_sidestep, 19.829*0.75, punk_firegun_right, // frame 0 + ai_sidestep, 17.364*0.75, punk_firegun_right, // frame 1 + ai_sidestep, 32.611*0.75, punk_firegun_right, // frame 2 + ai_sidestep, 37.973*0.75, punk_firegun_right, // frame 3 + ai_sidestep, 32.279*0.75, punk_firegun_right, // frame 4 + ai_sidestep, 24.741*0.75, punk_firegun_right, // frame 5 +}; +mmove_t punk_move_rsd_flamegun_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_06, punk_frames_rsd_flamegun_run, NULL}; + +mframe_t punk_frames_lsd_shg_run[] = +{ + ai_sidestep,- 24.221*0.75, NULL, // frame 0 + ai_sidestep,- 20.466*0.75, punk_firegun_left, // frame 1 + ai_sidestep,- 32.136*0.75, NULL, // frame 2 + ai_sidestep,- 39.252*0.75, punk_shotgun_reload, // frame 3 + ai_sidestep,- 29.464*0.75, NULL, // frame 4 + ai_sidestep,- 23.279*0.75, NULL, // frame 5 +}; +mmove_t punk_move_lsd_shg_run = {FRAME_rsd_shg_run_01, FRAME_rsd_shg_run_06, punk_frames_lsd_shg_run, NULL}; + +mframe_t punk_frames_rsd_shg_run[] = +{ + ai_sidestep, 26.812*0.75, NULL, // frame 0 + ai_sidestep, 18.773*0.75, punk_firegun_right, // frame 1 + ai_sidestep, 34.600*0.75, NULL, // frame 2 + ai_sidestep, 36.035*0.75, punk_shotgun_reload, // frame 3 + ai_sidestep, 31.354*0.75, NULL, // frame 4 + ai_sidestep, 23.697*0.75, NULL, // frame 5 +}; +mmove_t punk_move_rsd_shg_run = {FRAME_lsd_shg_run_01, FRAME_lsd_shg_run_06, punk_frames_rsd_shg_run, NULL}; + +//================================================================================================================ +// created moves +mframe_t punk_frames_avoid_walk[] = +{ + ai_turn, 3.636, NULL, // frame 0 + ai_turn, 6.504, NULL, // frame 1 + ai_turn, 3.111, NULL, // frame 2 + ai_turn, 4.200, NULL, // frame 3 + ai_turn, 8.913, NULL, // frame 4 + ai_turn, 7.640, NULL, // frame 5 +}; +mmove_t punk_move_avoid_walk = {FRAME_walk_gdown_01, FRAME_walk_gdown_06, punk_frames_avoid_walk, AI_EndAttack}; + +mframe_t punk_frames_avoid_crouch_walk[] = +{ + ai_turn, 5.383, NULL, // frame 0 + ai_turn, 5.466, NULL, // frame 1 + ai_turn, 3.693, NULL, // frame 2 + ai_turn, 5.865, NULL, // frame 3 + ai_turn, 13.852, NULL, // frame 4 + ai_turn, 6.698, NULL, // frame 5 + ai_turn, 3.743, NULL, // frame 6 +}; +mmove_t punk_move_avoid_crouch_walk = {FRAME_crouch_walk_01, FRAME_crouch_walk_07, punk_frames_avoid_crouch_walk, AI_EndAttack}; + +mframe_t punk_frames_walk_gdownFLASHLIGHT[] = +{ + ai_runFLASHLIGHT, 12.686, NULL, // frame 0 + ai_runFLASHLIGHT, 6.612, NULL, // frame 1 + ai_runFLASHLIGHT, 4.302, NULL, // frame 2 + ai_runFLASHLIGHT, 8.823, NULL, // frame 3 + ai_runFLASHLIGHT, 7.734, NULL, // frame 4 + ai_runFLASHLIGHT, 9.099, NULL, // frame 5 + ai_runFLASHLIGHT, 9.405, NULL, // frame 6 + ai_runFLASHLIGHT, 5.060, NULL, // frame 7 + ai_runFLASHLIGHT, 4.412, NULL, // frame 8 + ai_runFLASHLIGHT, 8.700, NULL, // frame 9 +}; +mmove_t punk_move_walk_gdownFLASHLIGHT = {FRAME_walk_gdown_01, FRAME_walk_gdown_10, punk_frames_walk_gdownFLASHLIGHT, AI_EndRun }; + +mframe_t punk_frames_avoid_run[] = +{ + ai_turn, 26.748, NULL, // frame 0 + ai_turn, 17.188, NULL, // frame 1 + ai_turn, 31.486, NULL, // frame 2 + ai_turn, 31.052, NULL, // frame 3 + ai_turn, 23.944, NULL, // frame 4 + ai_turn, 24.549, NULL, // frame 5 +}; +mmove_t punk_move_avoid_run = {FRAME_run_gun_down_01, FRAME_run_gun_down_06, punk_frames_avoid_run, AI_EndAttack}; + +mframe_t punk_frames_avoid_reverse_walk[] = +{ + ai_turn, -7.640, NULL, // frame 5 + ai_turn, -8.913, NULL, // frame 4 + ai_turn, -4.200, NULL, // frame 3 + ai_turn, -3.111, NULL, // frame 2 + ai_turn, -6.504, NULL, // frame 1 + ai_turn, -3.636, NULL, // frame 0 +}; +mmove_t punk_move_avoid_reverse_walk = {FRAME_walk_gdown_06, FRAME_walk_gdown_01, punk_frames_avoid_reverse_walk, AI_EndAttack}; + +mframe_t punk_frames_avoid_reverse_run[] = +{ + ai_turn, - 24.549, NULL, // frame 5 + ai_turn, - 23.944, NULL, // frame 4 + ai_turn, - 31.052, NULL, // frame 3 + ai_turn, - 31.486, NULL, // frame 2 + ai_turn, - 17.188, NULL, // frame 1 + ai_turn, - 26.748, NULL, // frame 0 +}; +mmove_t punk_move_avoid_reverse_run = {FRAME_run_gun_down_06, FRAME_run_gun_down_03, punk_frames_avoid_reverse_run, AI_EndAttack}; + +mframe_t punk_frames_sg_stand[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 + ai_stand, 0.000, punk_talk_think, // frame 21 + ai_stand, 0.000, punk_talk_think, // frame 22 + ai_stand, 0.000, punk_talk_think, // frame 23 + ai_stand, 0.000, punk_talk_think, // frame 24 + ai_stand, 0.000, punk_talk_think, // frame 25 + ai_stand, 0.000, punk_talk_think, // frame 26 + ai_stand, 0.000, punk_talk_think, // frame 27 + ai_stand, 0.000, punk_talk_think, // frame 28 + ai_stand, 0.000, punk_talk_think, // frame 29 + ai_stand, 0.000, punk_talk_think, // frame 30 +}; +mmove_t punk_move_sg_stand = {FRAME_sg_stand_01, FRAME_sg_stand_31, punk_frames_sg_stand, punk_end_stand}; + +mframe_t punk_frames_sg_talk1[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 + ai_stand, 0.000, punk_talk_think, // frame 21 + ai_stand, 0.000, punk_talk_think, // frame 22 + ai_stand, 0.000, punk_talk_think, // frame 23 + ai_stand, 0.000, punk_talk_think, // frame 24 + ai_stand, 0.000, punk_talk_think, // frame 25 +}; +mmove_t punk_move_sg_talk1 = {FRAME_sg_talk1_01, FRAME_sg_talk1_26, punk_frames_sg_talk1, punk_end_stand}; + +mframe_t punk_frames_sg_talk2[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 +}; +mmove_t punk_move_sg_talk2 = {FRAME_sg_talk2_01, FRAME_sg_talk2_20, punk_frames_sg_talk2, punk_end_stand}; + +mframe_t punk_frames_sg_talk3[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 +}; +mmove_t punk_move_sg_talk3 = {FRAME_sg_talk3_01, FRAME_sg_talk3_21, punk_frames_sg_talk3, punk_end_stand}; + +mframe_t punk_frames_sg_talk4[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 + ai_stand, 0.000, punk_talk_think, // frame 21 + ai_stand, 0.000, punk_talk_think, // frame 22 + ai_stand, 0.000, punk_talk_think, // frame 23 + ai_stand, 0.000, punk_talk_think, // frame 24 + ai_stand, 0.000, punk_talk_think, // frame 25 + ai_stand, 0.000, punk_talk_think, // frame 26 + ai_stand, 0.000, punk_talk_think, // frame 27 + ai_stand, 0.000, punk_talk_think, // frame 28 + ai_stand, 0.000, punk_talk_think, // frame 29 + ai_stand, 0.000, punk_talk_think, // frame 30 + ai_stand, 0.000, punk_talk_think, // frame 31 + ai_stand, 0.000, punk_talk_think, // frame 32 +}; +mmove_t punk_move_sg_talk4 = {FRAME_sg_talk4_01, FRAME_sg_talk4_33, punk_frames_sg_talk4, punk_end_stand}; + +mframe_t punk_frames_sg_talk5[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 + ai_stand, 0.000, punk_talk_think, // frame 21 + ai_stand, 0.000, punk_talk_think, // frame 22 + ai_stand, 0.000, punk_talk_think, // frame 23 + ai_stand, 0.000, punk_talk_think, // frame 24 + ai_stand, 0.000, punk_talk_think, // frame 25 + ai_stand, 0.000, punk_talk_think, // frame 26 + ai_stand, 0.000, punk_talk_think, // frame 27 + ai_stand, 0.000, punk_talk_think, // frame 28 +}; +mmove_t punk_move_sg_talk5 = {FRAME_sg_talk5_01, FRAME_sg_talk5_29, punk_frames_sg_talk5, punk_end_stand}; + +mframe_t punk_frames_sg_talk6[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 + ai_stand, 0.000, punk_talk_think, // frame 21 + ai_stand, 0.000, punk_talk_think, // frame 22 + ai_stand, 0.000, punk_talk_think, // frame 23 + ai_stand, 0.000, punk_talk_think, // frame 24 + ai_stand, 0.000, punk_talk_think, // frame 25 + ai_stand, 0.000, punk_talk_think, // frame 26 + ai_stand, 0.000, punk_talk_think, // frame 27 + ai_stand, 0.000, punk_talk_think, // frame 28 + ai_stand, 0.000, punk_talk_think, // frame 29 + ai_stand, 0.000, punk_talk_think, // frame 30 + ai_stand, 0.000, punk_talk_think, // frame 31 + ai_stand, 0.000, punk_talk_think, // frame 32 + ai_stand, 0.000, punk_talk_think, // frame 33 + ai_stand, 0.000, punk_talk_think, // frame 34 + ai_stand, 0.000, punk_talk_think, // frame 35 + ai_stand, 0.000, punk_talk_think, // frame 36 + ai_stand, 0.000, punk_talk_think, // frame 37 + ai_stand, 0.000, punk_talk_think, // frame 38 + ai_stand, 0.000, punk_talk_think, // frame 39 + ai_stand, 0.000, punk_talk_think, // frame 40 + ai_stand, 0.000, punk_talk_think, // frame 41 + ai_stand, 0.000, punk_talk_think, // frame 42 + ai_stand, 0.000, punk_talk_think, // frame 43 + ai_stand, 0.000, punk_talk_think, // frame 44 + ai_stand, 0.000, punk_talk_think, // frame 45 + ai_stand, 0.000, punk_talk_think, // frame 46 +}; +mmove_t punk_move_sg_talk6 = {FRAME_sg_talk6_01, FRAME_sg_talk6_47, punk_frames_sg_talk6, punk_end_stand}; + + +mframe_t punk_frames_walk_dokey[] = +{ + ai_runDOKEY, 12.686, EP_ReachedDoKey, // frame 0 + ai_runDOKEY, 6.612, EP_ReachedDoKey, // frame 1 + ai_runDOKEY, 4.302, EP_ReachedDoKey, // frame 2 + ai_runDOKEY, 8.823, EP_ReachedDoKey, // frame 3 + ai_runDOKEY, 7.734, EP_ReachedDoKey, // frame 4 + ai_runDOKEY, 9.099, EP_ReachedDoKey, // frame 5 + ai_runDOKEY, 9.405, EP_ReachedDoKey, // frame 6 + ai_runDOKEY, 5.060, EP_ReachedDoKey, // frame 7 + ai_runDOKEY, 4.412, EP_ReachedDoKey, // frame 8 + ai_runDOKEY, 8.700, EP_ReachedDoKey, // frame 9 +}; +mmove_t punk_move_walk_dokey = {FRAME_walk_gdown_01, FRAME_walk_gdown_10, punk_frames_walk_dokey, EP_ReachedDoKey}; + +mframe_t punk_frames_crch_dokey[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 + ai_stand, 0.000, NULL, // frame 9 + ai_stand, 0.000, NULL, // frame 10 + ai_stand, 0.000, NULL, // frame 11 + ai_stand, 0.000, NULL, // frame 12 + ai_stand, 0.000, NULL, // frame 13 + ai_stand, 0.000, NULL, // frame 14 + ai_stand, 0.000, NULL, // frame 15 + ai_stand, 0.000, NULL, // frame 16 + ai_stand, 0.000, NULL, // frame 17 + ai_stand, 0.000, NULL, // frame 18 + ai_stand, 0.000, NULL, // frame 19 +}; +mmove_t punk_move_crch_dokey = {FRAME_crch_astand_01, FRAME_crch_astand_20, punk_frames_crch_dokey, EP_EndDoKey}; + +/* +custom moves to allow hmg sound to and visuals to behave as player hmg +*/ + +mframe_t punk_frames_hmg_shoot2[] = +{ + ai_charge, 0.000, NULL, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, punk_hmg_avoid, // frame 2 +}; +mmove_t punk_move_hmg_shoot2 = {FRAME_hmg_std_01, FRAME_hmg_std_03, punk_frames_hmg_shoot2, AI_EndAttack}; + +mframe_t punk_frames_walk_hmg_sht2[] = +{ + ai_turn, 5.738, NULL, // frame 0 + ai_turn, 6.106, NULL, // frame 1 + ai_turn, 2.718, NULL, // frame 2 + ai_turn, 15.227, NULL, // frame 3 + ai_turn, 8.520, NULL, // frame 4 + ai_turn, 8.156, NULL, // frame 5 + ai_turn, 8.786, NULL, // frame 6 + ai_turn, 8.167, NULL, // frame 7 + ai_turn, 4.561, NULL, // frame 8 + ai_turn, 8.200, punk_hmg_avoid, // frame 9 +}; +mmove_t punk_move_walk_hmg_sht2 = {FRAME_hmg_wlk_01, FRAME_hmg_wlk_10, punk_frames_walk_hmg_sht2, AI_EndAttack}; + +mframe_t punk_frames_run_hmg_sht2[] = +{ + ai_charge, 26.196, NULL, // frame 0 + ai_charge, 16.246, NULL, // frame 1 + ai_charge, 33.745, NULL, // frame 2 + ai_charge, 39.112, NULL, // frame 3 + ai_charge, 31.627, NULL, // frame 4 + ai_charge, 25.468, punk_hmg_avoid, // frame 5 +}; +mmove_t punk_move_run_hmg_sht2 = {FRAME_hmg_run_01, FRAME_hmg_run_06, punk_frames_run_hmg_sht2, AI_EndAttack}; + +mframe_t punk_frames_bazooka_shoot2[] = +{ + ai_charge, 0.000, NULL, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, NULL, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, NULL, // frame 4 + ai_charge, 0.000, NULL, // frame 5 +}; +mmove_t punk_move_bazooka_shoot2 = {FRAME_hmg_std_01, FRAME_hmg_std_06, punk_frames_bazooka_shoot2, AI_EndAttack}; + +mframe_t punk_frames_walk_bazooka_shoot2[] = +{ + ai_turn, 5.738, NULL, // frame 0 + ai_turn, 6.106, NULL, // frame 1 + ai_turn, 2.718, NULL, // frame 2 + ai_turn, 15.227, NULL, // frame 3 + ai_turn, 8.520, NULL, // frame 4 + ai_turn, 8.156, NULL, // frame 5 + ai_turn, 8.786, NULL, // frame 6 + ai_turn, 8.167, NULL, // frame 7 + ai_turn, 4.561, NULL, // frame 8 + ai_turn, 8.200, NULL, // frame 9 +}; +mmove_t punk_move_walk_bazooka_shoot2 = {FRAME_hmg_wlk_01, FRAME_hmg_wlk_10, punk_frames_walk_bazooka_shoot2, AI_EndAttack}; + +mframe_t punk_frames_run_bazooka_shoot2[] = +{ + ai_charge, 26.196, NULL, // frame 0 + ai_charge, 16.246, NULL, // frame 1 + ai_charge, 33.745, NULL, // frame 2 + ai_charge, 39.112, NULL, // frame 3 + ai_charge, 31.627, NULL, // frame 4 + ai_charge, 25.468, NULL, // frame 5 +}; +mmove_t punk_move_run_bazooka_shoot2 = {FRAME_hmg_run_01, FRAME_hmg_run_06, punk_frames_run_bazooka_shoot2, AI_EndAttack}; diff --git a/gamesrc/ai_runt_tables.h b/gamesrc/ai_runt_tables.h new file mode 100644 index 0000000..afc9c65 --- /dev/null +++ b/gamesrc/ai_runt_tables.h @@ -0,0 +1,1590 @@ + +mframe_t runt_frames_amb_stand[] = +{ + ai_stand, 0.000, runt_talk_think, // frame 0 + ai_stand, 0.000, runt_talk_think, // frame 1 + ai_stand, 0.000, runt_talk_think, // frame 2 + ai_stand, 0.000, runt_talk_think, // frame 3 + ai_stand, 0.000, runt_talk_think, // frame 4 + ai_stand, 0.000, runt_talk_think, // frame 5 + ai_stand, 0.000, runt_talk_think, // frame 6 + ai_stand, 0.000, runt_talk_think, // frame 7 + ai_stand, 0.000, runt_talk_think, // frame 8 + ai_stand, 0.000, runt_talk_think, // frame 9 + ai_stand, 0.000, runt_talk_think, // frame 10 + ai_stand, 0.000, runt_talk_think, // frame 11 + ai_stand, 0.000, runt_talk_think, // frame 12 + ai_stand, 0.000, runt_talk_think, // frame 13 + ai_stand, 0.000, runt_talk_think, // frame 14 + ai_stand, 0.000, runt_talk_think, // frame 15 + ai_stand, 0.000, runt_talk_think, // frame 16 + ai_stand, 0.000, runt_talk_think, // frame 17 + ai_stand, 0.000, runt_talk_think, // frame 18 + ai_stand, 0.000, runt_talk_think, // frame 19 +}; +mmove_t runt_move_amb_stand = {FRAME_amb_stand_01, FRAME_amb_stand_20, runt_frames_amb_stand, runt_end_stand}; + +mframe_t runt_frames_talk1[] = +{ + ai_stand, 0.000, runt_talk_think, // frame 0 + ai_stand, 0.000, runt_talk_think, // frame 1 + ai_stand, 0.000, runt_talk_think, // frame 2 + ai_stand, 0.000, runt_talk_think, // frame 3 + ai_stand, 0.000, runt_talk_think, // frame 4 + ai_stand, 0.000, runt_talk_think, // frame 5 + ai_stand, 0.000, runt_talk_think, // frame 6 + ai_stand, 0.000, runt_talk_think, // frame 7 + ai_stand, 0.000, runt_talk_think, // frame 8 + ai_stand, 0.000, runt_talk_think, // frame 9 + ai_stand, 0.000, runt_talk_think, // frame 10 + ai_stand, 0.000, runt_talk_think, // frame 11 + ai_stand, 0.000, runt_talk_think, // frame 12 + ai_stand, 0.000, runt_talk_think, // frame 13 +}; +mmove_t runt_move_talk1 = {FRAME_talk1_01, FRAME_talk1_14, runt_frames_talk1, runt_end_stand}; + +mframe_t runt_frames_talk2[] = +{ + ai_stand, 0.000, runt_talk_think, // frame 0 + ai_stand, 0.000, runt_talk_think, // frame 1 + ai_stand, 0.000, runt_talk_think, // frame 2 + ai_stand, 0.000, runt_talk_think, // frame 3 + ai_stand, 0.000, runt_talk_think, // frame 4 + ai_stand, 0.000, runt_talk_think, // frame 5 + ai_stand, 0.000, runt_talk_think, // frame 6 + ai_stand, 0.000, runt_talk_think, // frame 7 + ai_stand, 0.000, runt_talk_think, // frame 8 + ai_stand, 0.000, runt_talk_think, // frame 9 + ai_stand, 0.000, runt_talk_think, // frame 10 + ai_stand, 0.000, runt_talk_think, // frame 11 + ai_stand, 0.000, runt_talk_think, // frame 12 + ai_stand, 0.000, runt_talk_think, // frame 13 + ai_stand, 0.000, runt_talk_think, // frame 14 + ai_stand, 0.000, runt_talk_think, // frame 15 + ai_stand, 0.000, runt_talk_think, // frame 16 + ai_stand, 0.000, runt_talk_think, // frame 17 + ai_stand, 0.000, runt_talk_think, // frame 18 + ai_stand, 0.000, runt_talk_think, // frame 19 + ai_stand, 0.000, runt_talk_think, // frame 20 + ai_stand, 0.000, runt_talk_think, // frame 21 +}; +mmove_t runt_move_talk2 = {FRAME_talk2_01, FRAME_talk2_22, runt_frames_talk2, runt_end_stand}; + +mframe_t runt_frames_talk3[] = +{ + ai_stand, 0.000, runt_talk_think, // frame 0 + ai_stand, 0.000, runt_talk_think, // frame 1 + ai_stand, 0.000, runt_talk_think, // frame 2 + ai_stand, 0.000, runt_talk_think, // frame 3 + ai_stand, 0.000, runt_talk_think, // frame 4 + ai_stand, 0.000, runt_talk_think, // frame 5 + ai_stand, 0.000, runt_talk_think, // frame 6 + ai_stand, 0.000, runt_talk_think, // frame 7 + ai_stand, 0.000, runt_talk_think, // frame 8 + ai_stand, 0.000, runt_talk_think, // frame 9 + ai_stand, 0.000, runt_talk_think, // frame 10 + ai_stand, 0.000, runt_talk_think, // frame 11 + ai_stand, 0.000, runt_talk_think, // frame 12 + ai_stand, 0.000, runt_talk_think, // frame 13 +}; +mmove_t runt_move_talk3 = {FRAME_talk3_01, FRAME_talk3_14, runt_frames_talk3, runt_end_stand}; + +mframe_t runt_frames_talk4[] = +{ + ai_stand, 0.000, runt_talk_think, // frame 0 + ai_stand, 0.000, runt_talk_think, // frame 1 + ai_stand, 0.000, runt_talk_think, // frame 2 + ai_stand, 0.000, runt_talk_think, // frame 3 + ai_stand, 0.000, runt_talk_think, // frame 4 + ai_stand, 0.000, runt_talk_think, // frame 5 + ai_stand, 0.000, runt_talk_think, // frame 6 + ai_stand, 0.000, runt_talk_think, // frame 7 + ai_stand, 0.000, runt_talk_think, // frame 8 + ai_stand, 0.000, runt_talk_think, // frame 9 + ai_stand, 0.000, runt_talk_think, // frame 10 + ai_stand, 0.000, runt_talk_think, // frame 11 + ai_stand, 0.000, runt_talk_think, // frame 12 + ai_stand, 0.000, runt_talk_think, // frame 13 + ai_stand, 0.000, runt_talk_think, // frame 14 + ai_stand, 0.000, runt_talk_think, // frame 15 + ai_stand, 0.000, runt_talk_think, // frame 16 + ai_stand, 0.000, runt_talk_think, // frame 17 + ai_stand, 0.000, runt_talk_think, // frame 18 + ai_stand, 0.000, runt_talk_think, // frame 19 + ai_stand, 0.000, runt_talk_think, // frame 20 + ai_stand, 0.000, runt_talk_think, // frame 21 + ai_stand, 0.000, runt_talk_think, // frame 22 + +}; +mmove_t runt_move_talk4 = {FRAME_talk4_01, FRAME_talk4_23, runt_frames_talk4, runt_end_stand}; + +mframe_t runt_frames_talk5[] = +{ + ai_stand, 0.000, runt_talk_think, // frame 0 + ai_stand, 0.000, runt_talk_think, // frame 1 + ai_stand, 0.000, runt_talk_think, // frame 2 + ai_stand, 0.000, runt_talk_think, // frame 3 + ai_stand, 0.000, runt_talk_think, // frame 4 + ai_stand, 0.000, runt_talk_think, // frame 5 + ai_stand, 0.000, runt_talk_think, // frame 6 + ai_stand, 0.000, runt_talk_think, // frame 7 + ai_stand, 0.000, runt_talk_think, // frame 8 + ai_stand, 0.000, runt_talk_think, // frame 9 + ai_stand, 0.000, runt_talk_think, // frame 10 + ai_stand, 0.000, runt_talk_think, // frame 11 + ai_stand, 0.000, runt_talk_think, // frame 12 + ai_stand, 0.000, runt_talk_think, // frame 13 + ai_stand, 0.000, runt_talk_think, // frame 14 + ai_stand, 0.000, runt_talk_think, // frame 15 + ai_stand, 0.000, runt_talk_think, // frame 16 + ai_stand, 0.000, runt_talk_think, // frame 17 + ai_stand, 0.000, runt_talk_think, // frame 18 + ai_stand, 0.000, runt_talk_think, // frame 19 + ai_stand, 0.000, runt_talk_think, // frame 20 + ai_stand, 0.000, runt_talk_think, // frame 21 + ai_stand, 0.000, runt_talk_think, // frame 22 +}; +mmove_t runt_move_talk5 = {FRAME_talk5_01, FRAME_talk5_23, runt_frames_talk5, runt_end_stand}; + +mframe_t runt_frames_talk6[] = +{ + ai_stand, 0.000, runt_talk_think, // frame 0 + ai_stand, 0.000, runt_talk_think, // frame 1 + ai_stand, 0.000, runt_talk_think, // frame 2 + ai_stand, 0.000, runt_talk_think, // frame 3 + ai_stand, 0.000, runt_talk_think, // frame 4 + ai_stand, 0.000, runt_talk_think, // frame 5 + ai_stand, 0.000, runt_talk_think, // frame 6 + ai_stand, 0.000, runt_talk_think, // frame 7 + ai_stand, 0.000, runt_talk_think, // frame 8 + ai_stand, 0.000, runt_talk_think, // frame 9 + ai_stand, 0.000, runt_talk_think, // frame 10 + ai_stand, 0.000, runt_talk_think, // frame 11 + ai_stand, 0.000, runt_talk_think, // frame 12 + ai_stand, 0.000, runt_talk_think, // frame 13 + ai_stand, 0.000, runt_talk_think, // frame 14 + ai_stand, 0.000, runt_talk_think, // frame 15 + ai_stand, 0.000, runt_talk_think, // frame 16 + ai_stand, 0.000, runt_talk_think, // frame 17 + ai_stand, 0.000, runt_talk_think, // frame 18 + ai_stand, 0.000, runt_talk_think, // frame 19 + ai_stand, 0.000, runt_talk_think, // frame 20 + ai_stand, 0.000, runt_talk_think, // frame 21 + +}; +mmove_t runt_move_talk6 = {FRAME_talk6_01, FRAME_talk6_22, runt_frames_talk6, runt_end_stand}; + +mframe_t runt_frames_talk7[] = +{ + ai_stand, 0.000, runt_talk_think, // frame 0 + ai_stand, 0.000, runt_talk_think, // frame 1 + ai_stand, 0.000, runt_talk_think, // frame 2 + ai_stand, 0.000, runt_talk_think, // frame 3 + ai_stand, 0.000, runt_talk_think, // frame 4 + ai_stand, 0.000, runt_talk_think, // frame 5 + ai_stand, 0.000, runt_talk_think, // frame 6 + ai_stand, 0.000, runt_talk_think, // frame 7 + ai_stand, 0.000, runt_talk_think, // frame 8 + ai_stand, 0.000, runt_talk_think, // frame 9 + ai_stand, 0.000, runt_talk_think, // frame 10 + ai_stand, 0.000, runt_talk_think, // frame 11 + ai_stand, 0.000, runt_talk_think, // frame 12 + ai_stand, 0.000, runt_talk_think, // frame 13 + ai_stand, 0.000, runt_talk_think, // frame 14 + ai_stand, 0.000, runt_talk_think, // frame 15 + ai_stand, 0.000, runt_talk_think, // frame 16 + ai_stand, 0.000, runt_talk_think, // frame 17 + ai_stand, 0.000, runt_talk_think, // frame 18 + ai_stand, 0.000, runt_talk_think, // frame 19 + ai_stand, 0.000, runt_talk_think, // frame 20 + ai_stand, 0.000, runt_talk_think, // frame 21 + ai_stand, 0.000, runt_talk_think, // frame 22 + ai_stand, 0.000, runt_talk_think, // frame 23 + ai_stand, 0.000, runt_talk_think, // frame 24 + ai_stand, 0.000, runt_talk_think, // frame 25 + ai_stand, 0.000, runt_talk_think, // frame 26 + ai_stand, 0.000, runt_talk_think, // frame 27 + ai_stand, 0.000, runt_talk_think, // frame 28 + ai_stand, 0.000, runt_talk_think, // frame 29 + ai_stand, 0.000, runt_talk_think, // frame 30 + ai_stand, 0.000, runt_talk_think, // frame 31 + ai_stand, 0.000, runt_talk_think, // frame 32 + ai_stand, 0.000, runt_talk_think, // frame 33 + ai_stand, 0.000, runt_talk_think, // frame 34 + ai_stand, 0.000, runt_talk_think, // frame 35 +}; +mmove_t runt_move_talk7 = {FRAME_talk7_01, FRAME_talk7_36, runt_frames_talk7, runt_end_stand}; + +mframe_t runt_frames_talk8[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 + ai_stand, 0.000, NULL, // frame 9 + ai_stand, 0.000, NULL, // frame 10 + ai_stand, 0.000, NULL, // frame 11 + ai_stand, 0.000, NULL, // frame 12 + ai_stand, 0.000, NULL, // frame 13 + ai_stand, 0.000, NULL, // frame 14 + ai_stand, 0.000, NULL, // frame 15 + ai_stand, 0.000, NULL, // frame 16 + ai_stand, 0.000, NULL, // frame 17 + ai_stand, 0.000, NULL, // frame 18 + ai_stand, 0.000, NULL, // frame 19 + ai_stand, 0.000, NULL, // frame 20 + ai_stand, 0.000, NULL, // frame 21 + ai_stand, 0.000, NULL, // frame 22 + ai_stand, 0.000, NULL, // frame 23 + ai_stand, 0.000, NULL, // frame 24 + ai_stand, 0.000, NULL, // frame 25 + ai_stand, 0.000, NULL, // frame 26 + ai_stand, 0.000, NULL, // frame 27 + ai_stand, 0.000, NULL, // frame 28 + ai_stand, 0.000, NULL, // frame 29 + ai_stand, 0.000, NULL, // frame 30 + ai_stand, 0.000, NULL, // frame 31 + ai_stand, 0.000, NULL, // frame 32 + ai_stand, 0.000, NULL, // frame 33 +}; +mmove_t runt_move_talk8 = {FRAME_talk8_01, FRAME_talk8_34, runt_frames_talk8, runt_end_stand}; + + +mframe_t runt_frames_pull_guns[] = +{ + ai_turn, 0.000, NULL, // frame 0 + ai_turn, 0.000, NULL, // frame 1 + ai_turn, 0.000, runt_show_guns, // frame 2 + ai_turn, 0.000, NULL, // frame 3 + ai_turn, 0.000, NULL, // frame 4 + ai_turn, 0.000, NULL, // frame 5 + ai_turn, 0.000, NULL, // frame 6 + ai_turn, 0.000, NULL, // frame 7 +}; +mmove_t runt_move_pull_guns = {FRAME_pull_guns_01, FRAME_pull_guns_08, runt_frames_pull_guns, AI_EndAttack}; + +mframe_t runt_frames_shoot[] = +{ + ai_turn, 0.000, NULL, // frame 0 + ai_turn, 0.000, runt_left_fire, // frame 1 + ai_turn, 0.000, NULL, // frame 2 + ai_turn, 0.000, runt_right_fire, // frame 3 + ai_turn, 0.000, NULL, // frame 4 + ai_turn, 0.000, runt_left_fire, // frame 5 + ai_turn, 0.000, NULL, // frame 6 + ai_turn, 0.000, runt_right_fire, // frame 7 +}; +mmove_t runt_move_shoot = {FRAME_shoot_01, FRAME_shoot_08, runt_frames_shoot, AI_EndAttack}; + +mframe_t runt_frames_reload[] = +{ + ai_turn, 0.000, NULL, // frame 0 + ai_turn, 0.000, NULL, // frame 1 + ai_turn, 0.000, NULL, // frame 2 + ai_turn, 0.000, NULL, // frame 3 + ai_turn, 0.000, NULL, // frame 4 + ai_turn, 0.000, NULL, // frame 5 + ai_turn, 0.000, NULL, // frame 6 + ai_turn, 0.000, NULL, // frame 7 + ai_turn, 0.000, NULL, // frame 8 + ai_turn, 0.000, NULL, // frame 9 + ai_turn, 0.000, NULL, // frame 10 + ai_turn, 0.000, NULL, // frame 11 + ai_turn, 0.000, NULL, // frame 12 + ai_turn, 0.000, NULL, // frame 13 + ai_turn, 0.000, NULL, // frame 14 + ai_turn, 0.000, NULL, // frame 15 + ai_turn, 0.000, NULL, // frame 16 +}; +mmove_t runt_move_reload = {FRAME_reload_01, FRAME_reload_17, runt_frames_reload, AI_EndAttack}; + +mframe_t runt_frames_kneel[] = +{ + ai_charge, 0.0, NULL, // frame 0 + ai_charge, 0.0, NULL, // frame 1 + ai_charge, 0.0, runt_show_guns, // frame 2 + ai_charge, 0.0, NULL, // frame 3 + ai_charge, 0.0, NULL, // frame 4 + ai_charge, 0.0, NULL, // frame 5 + ai_charge, 0.0, NULL, // frame 6 + ai_charge, 0.0, NULL, // frame 7 +}; +mmove_t runt_move_kneel = {FRAME_kneel_01, FRAME_kneel_08, runt_frames_kneel, runt_kneel_shoot}; + +mframe_t runt_frames_kneel_up[] = +{ + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 0 +}; +mmove_t runt_move_kneel_up = {FRAME_kneel_08, FRAME_kneel_01, runt_frames_kneel_up, AI_EndAttack}; + +mframe_t runt_frames_knl_shoot[] = +{ + ai_charge, 0.000, runt_right_fire, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, NULL, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, NULL, // frame 4 + ai_charge, 0.000, runt_left_fire, // frame 5 + ai_charge, 0.000, NULL, // frame 6 + ai_charge, 0.000, NULL, // frame 7 + ai_charge, 0.000, NULL, // frame 8 + ai_charge, 0.000, NULL, // frame 9 +}; +mmove_t runt_move_knl_shoot = {FRAME_knl_shoot_01, FRAME_knl_shoot_10, runt_frames_knl_shoot, runt_end_kneel_attack}; + +mframe_t runt_frames_melee1[] = +{ + ai_turn2, 0.000, runt_melee_bail, // frame 0 + ai_turn2, 0.000, runt_melee_bail, // frame 1 + ai_turn2, 0.000, runt_melee_bail, // frame 2 + ai_turn2, 0.000, runt_melee_bail, // frame 3 + ai_turn2, 0.000, runt_melee_bail, // frame 4 + ai_turn2, 0.000, runt_melee, // frame 5 + ai_turn2, 0.000, runt_melee_bail, // frame 6 + ai_turn2, 0.000, runt_melee_bail, // frame 7 + ai_turn2, 0.000, runt_melee_bail, // frame 8 + ai_turn2, 0.000, runt_melee, // frame 9 + ai_turn2, 0.000, NULL, // frame 10 + ai_turn2, 0.000, NULL, // frame 11 + ai_turn2, 0.000, NULL, // frame 12 +}; +mmove_t runt_move_melee1 = {FRAME_melee1_01, FRAME_melee1_13, runt_frames_melee1, AI_EndAttack}; + +mframe_t runt_frames_melee2[] = +{ + ai_turn2, 0.000, runt_melee_bail, // frame 0 + ai_turn2, 0.000, runt_melee_bail, // frame 1 + ai_turn2, 0.000, runt_melee_bail, // frame 2 + ai_turn2, 0.000, runt_melee_bail, // frame 3 + ai_turn2, 0.000, runt_melee_bail, // frame 4 + ai_turn2, 0.000, runt_melee_bail, // frame 5 + ai_turn2, 0.000, runt_melee_bail, // frame 6 + ai_turn2, 0.000, runt_melee_bail, // frame 7 + ai_turn2, 0.000, runt_melee, // frame 8 + ai_turn2, 0.000, runt_melee_bail, // frame 9 + ai_turn2, 0.000, runt_melee_bail, // frame 10 + ai_turn2, 0.000, runt_melee_bail, // frame 11 + ai_turn2, 0.000, runt_melee, // frame 12 + ai_turn2, 0.000, NULL, // frame 13 + ai_turn2, 0.000, NULL, // frame 14 + ai_turn2, 0.000, NULL, // frame 15 + ai_turn2, 0.000, NULL, // frame 16 + ai_turn2, 0.000, NULL, // frame 17 +}; +mmove_t runt_move_melee2 = {FRAME_melee2_01, FRAME_melee2_18, runt_frames_melee2, AI_EndAttack}; + +mframe_t runt_frames_melee3[] = +{ + ai_turn2, 0.000, runt_melee_bail, // frame 0 + ai_turn2, 0.000, runt_melee_bail, // frame 1 + ai_turn2, 0.000, runt_melee_bail, // frame 2 + ai_turn2, 0.000, runt_melee_bail, // frame 3 + ai_turn2, 0.000, runt_melee_bail, // frame 4 + ai_turn2, 0.000, runt_melee_bail, // frame 5 + ai_turn2, 0.000, runt_melee, // frame 6 + ai_turn2, 0.000, runt_melee_bail, // frame 7 + ai_turn2, 0.000, runt_melee_bail, // frame 8 + ai_turn2, 0.000, runt_melee_bail, // frame 9 + ai_turn2, 0.000, runt_melee_bail, // frame 10 + ai_turn2, 0.000, runt_melee, // frame 11 + ai_turn2, 0.000, NULL, // frame 12 + ai_turn2, 0.000, NULL, // frame 13 + ai_turn2, 0.000, NULL, // frame 14 + ai_turn2, 0.000, NULL, // frame 15 + ai_turn2, 0.000, NULL, // frame 16 + ai_turn2, 0.000, NULL, // frame 17 + ai_turn2, 0.000, NULL, // frame 18 +}; +mmove_t runt_move_melee3 = {FRAME_melee3_01, FRAME_melee3_19, runt_frames_melee3, AI_EndAttack}; + +mframe_t runt_frames_melee4[] = +{ + ai_turn2, 0.000, runt_melee_bail, // frame 0 + ai_turn2, 0.000, runt_melee_bail, // frame 1 + ai_turn2, 0.000, runt_melee_bail, // frame 2 + ai_turn2, 0.000, runt_melee_bail, // frame 3 + ai_turn2, 0.000, runt_melee_bail, // frame 4 + ai_turn2, 0.000, runt_melee_bail, // frame 5 + ai_turn2, 0.000, runt_melee, // frame 6 + ai_turn2, 0.000, NULL, // frame 7 +}; +mmove_t runt_move_melee4 = {FRAME_melee4_01, FRAME_melee4_08, runt_frames_melee4, AI_EndAttack}; + +mframe_t runt_frames_melee5[] = +{ + ai_turn2, 0.000, runt_melee_bail, // frame 0 + ai_turn2, 0.000, runt_melee_bail, // frame 1 + ai_turn2, 0.000, runt_melee_bail, // frame 2 + ai_turn2, 0.000, runt_melee_bail, // frame 3 + ai_turn2, 0.000, runt_melee, // frame 4 + ai_turn2, 0.000, runt_melee_bail, // frame 5 + ai_turn2, 0.000, runt_melee_bail, // frame 6 + ai_turn2, 0.000, runt_melee, // frame 7 + ai_turn2, 0.000, runt_melee_bail, // frame 8 + ai_turn2, 0.000, runt_melee_bail, // frame 9 + ai_turn2, 0.000, runt_melee, // frame 10 + ai_turn2, 0.000, NULL, // frame 11 + ai_turn2, 0.000, NULL, // frame 12 +}; +mmove_t runt_move_melee5 = {FRAME_melee5_01, FRAME_melee5_13, runt_frames_melee5, AI_EndAttack}; + +mframe_t runt_frames_melee6[] = +{ + ai_turn2, 0.000, runt_melee_bail, // frame 0 + ai_turn2, 0.000, runt_melee_bail, // frame 1 + ai_turn2, 0.000, runt_melee_bail, // frame 2 + ai_turn2, 0.000, runt_melee_bail, // frame 3 + ai_turn2, 0.000, runt_melee_bail, // frame 4 + ai_turn2, 0.000, runt_melee_bail, // frame 5 + ai_turn2, 0.000, runt_melee_bail, // frame 6 + ai_turn2, 0.000, runt_melee, // frame 7 + ai_turn2, 0.000, NULL, // frame 8 +}; +mmove_t runt_move_melee6 = {FRAME_melee6_01, FRAME_melee6_09, runt_frames_melee6, AI_EndAttack}; + +// this is a cowering move +mframe_t runt_frames_melee_amb1[] = +{ + NULL, 0.000, runt_evade_checkadjust, // frame 0 + NULL, 0.000, runt_evade_checkadjust, // frame 1 + NULL, 0.000, runt_evade_checkadjust, // frame 2 + NULL, 0.000, runt_evade_checkadjust, // frame 3 + NULL, 0.000, runt_evade_checkadjust, // frame 4 + NULL, 0.000, runt_evade_checkadjust, // frame 5 + NULL, 0.000, runt_evade_checkadjust, // frame 6 + NULL, 0.000, runt_evade_checkadjust, // frame 7 + NULL, 0.000, runt_evade_checkadjust, // frame 8 + NULL, 0.000, runt_evade_checkadjust, // frame 9 + NULL, 0.000, runt_evade_checkadjust, // frame 10 + NULL, 0.000, runt_evade_checkadjust, // frame 11 + NULL, 0.000, runt_evade_checkadjust, // frame 12 + NULL, 0.000, runt_evade_checkadjust, // frame 13 + NULL, 0.000, runt_evade_checkadjust, // frame 14 + NULL, 0.000, runt_evade_checkadjust, // frame 15 + NULL, 0.000, runt_evade_checkadjust, // frame 16 +}; +mmove_t runt_move_melee_amb1 = {FRAME_melee_amb1_01, FRAME_melee_amb1_17, runt_frames_melee_amb1, AI_CheckEvade}; + +mframe_t runt_frames_low_melee1[] = +{ + ai_turn2, 0.000, runt_melee_bail, // frame 0 + ai_turn2, 0.000, runt_melee_bail, // frame 1 + ai_turn2, 0.000, runt_melee_bail, // frame 2 + ai_turn2, 0.000, runt_melee_bail, // frame 3 + ai_turn2, 0.000, runt_melee, // frame 4 + ai_turn2, 0.000, runt_melee_bail, // frame 5 + ai_turn2, 0.000, runt_melee_bail, // frame 6 + ai_turn2, 0.000, runt_melee, // frame 7 + ai_turn2, 0.000, NULL, // frame 8 +}; +mmove_t runt_move_low_melee1 = {FRAME_low_melee1_01, FRAME_low_melee1_09, runt_frames_low_melee1, AI_EndAttack}; + +mframe_t runt_frames_low_melee2[] = +{ + ai_turn2, 0.000, runt_melee_bail, // frame 0 + ai_turn2, 0.000, runt_melee_bail, // frame 1 + ai_turn2, 0.000, runt_melee_bail, // frame 2 + ai_turn2, 0.000, runt_melee_bail, // frame 3 + ai_turn2, 0.000, runt_melee_bail, // frame 4 + ai_turn2, 0.000, runt_melee, // frame 5 +}; +mmove_t runt_move_low_melee2 = {FRAME_low_melee2_01, FRAME_low_melee2_06, runt_frames_low_melee2, AI_EndAttack}; + +mframe_t runt_frames_low_melee3[] = +{ + ai_turn2, 0.000, runt_melee_bail, // frame 0 + ai_turn2, 0.000, runt_melee_bail, // frame 1 + ai_turn2, 0.000, runt_melee_bail, // frame 2 + ai_turn2, 0.000, runt_melee_bail, // frame 3 + ai_turn2, 0.000, runt_melee, // frame 4 + ai_turn2, 0.000, NULL, // frame 5 +}; +mmove_t runt_move_low_melee3 = {FRAME_low_melee3_01, FRAME_low_melee3_06, runt_frames_low_melee3, AI_EndAttack}; + +mframe_t runt_frames_low_melee4[] = +{ + ai_turn2, 0.000, runt_melee_bail, // frame 0 + ai_turn2, 0.000, runt_melee_bail, // frame 1 + ai_turn2, 0.000, runt_melee_bail, // frame 2 + ai_turn2, 0.000, runt_melee, // frame 3 + ai_turn2, 0.000, runt_melee_bail, // frame 4 + ai_turn2, 0.000, runt_melee_bail, // frame 5 + ai_turn2, 0.000, runt_melee, // frame 6 + ai_turn2, 0.000, NULL, // frame 7 +}; +mmove_t runt_move_low_melee4 = {FRAME_low_melee4_01, FRAME_low_melee4_08, runt_frames_low_melee4, AI_EndAttack}; + +mframe_t runt_frames_low_melee5[] = +{ + ai_turn2, 0.000, runt_melee_bail, // frame 0 + ai_turn2, 0.000, runt_melee_bail, // frame 1 + ai_turn2, 0.000, runt_melee_bail, // frame 2 + ai_turn2, 0.000, runt_melee_bail, // frame 3 + ai_turn2, 0.000, runt_melee_bail, // frame 4 + ai_turn2, 0.000, runt_melee_bail, // frame 5 + ai_turn2, 0.000, runt_melee_bail, // frame 6 + ai_turn2, 0.000, runt_melee_bail, // frame 7 + ai_turn2, 0.000, runt_melee, // frame 8 + ai_turn2, 0.000, NULL, // frame 9 + ai_turn2, 0.000, NULL, // frame 10 + ai_turn2, 0.000, NULL, // frame 11 + ai_turn2, 0.000, NULL, // frame 12 + ai_turn2, 0.000, NULL, // frame 13 + ai_turn2, 0.000, NULL, // frame 14 +}; +mmove_t runt_move_low_melee5 = {FRAME_low_melee5_01, FRAME_low_melee5_15, runt_frames_low_melee5, AI_EndAttack}; + +// not using this for now +mframe_t runt_frames_lw_melee_a[] = +{ + NULL, 0.000, runt_evade_checkadjust, // frame 0 + NULL, 0.000, runt_evade_checkadjust, // frame 1 + NULL, 0.000, runt_evade_checkadjust, // frame 2 + NULL, 0.000, runt_evade_checkadjust, // frame 3 + NULL, 0.000, runt_evade_checkadjust, // frame 4 + NULL, 0.000, runt_evade_checkadjust, // frame 5 + NULL, 0.000, runt_evade_checkadjust, // frame 6 + NULL, 0.000, runt_evade_checkadjust, // frame 7 + NULL, 0.000, runt_evade_checkadjust, // frame 8 + NULL, 0.000, runt_evade_checkadjust, // frame 9 + NULL, 0.000, runt_evade_checkadjust, // frame 10 + NULL, 0.000, runt_evade_checkadjust, // frame 11 + NULL, 0.000, runt_evade_checkadjust, // frame 12 + NULL, 0.000, runt_evade_checkadjust, // frame 13 +}; +mmove_t runt_move_lw_melee_a = {FRAME_lw_melee_a_01, FRAME_lw_melee_a_14, runt_frames_lw_melee_a, AI_CheckEvade}; + +mframe_t runt_frames_jump[] = +{ + // ai_stand, 0.000, NULL, // frame 0 + // ai_stand, 0.000, NULL, // frame 1 + // ai_stand, 0.000, NULL, // frame 2 + // ai_stand, 0.000, NULL, // frame 3 + // ai_stand, 0.000, NULL, // frame 4 + + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, AI_CheckStillInair, // frame 7 + NULL, 0.000, NULL, // frame 8 + + // ai_stand, 0.000, NULL, // frame 9 + // ai_stand, 0.000, NULL, // frame 10 + // ai_stand, 0.000, NULL, // frame 11 + // ai_stand, 0.000, NULL, // frame 12 + // ai_stand, 0.000, NULL, // frame 13 + // ai_stand, 0.000, NULL, // frame 14 + // ai_stand, 0.000, NULL, // frame 15 + // ai_stand, 0.000, NULL, // frame 16 +}; +mmove_t runt_move_jump = {FRAME_jump_05, FRAME_jump_08, runt_frames_jump, AI_EndJump}; + +mframe_t runt_frames_pstl_jump[] = +{ + // ai_stand, 0.000, NULL, // frame 0 + // ai_stand, 0.000, NULL, // frame 1 + // ai_stand, 0.000, NULL, // frame 2 + // ai_stand, 0.000, NULL, // frame 3 + // ai_stand, 0.000, NULL, // frame 4 + + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, AI_CheckStillInair, // frame 7 + NULL, 0.000, NULL, // frame 8 + + // ai_stand, 0.000, NULL, // frame 9 + // ai_stand, 0.000, NULL, // frame 10 + // ai_stand, 0.000, NULL, // frame 11 + // ai_stand, 0.000, NULL, // frame 12 + // ai_stand, 0.000, NULL, // frame 13 + // ai_stand, 0.000, NULL, // frame 14 +}; +mmove_t runt_move_pstl_jump = {FRAME_pstl_jump_05, FRAME_pstl_jump_08, runt_frames_pstl_jump, AI_EndJump}; + +mframe_t runt_frames_pain_Rarm[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 +}; +mmove_t runt_move_pain_Rarm = {FRAME_pain_Rarm_01, FRAME_pain_Rarm_06, runt_frames_pain_Rarm, AI_EndAttack}; + +mframe_t runt_frames_pain_Larm[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t runt_move_pain_Larm = {FRAME_pain_Larm_01, FRAME_pain_Larm_09, runt_frames_pain_Larm, AI_EndAttack}; + +mframe_t runt_frames_pain_chst[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t runt_move_pain_chst = {FRAME_pain_chst_01, FRAME_pain_chst_09, runt_frames_pain_chst, AI_EndAttack}; + +mframe_t runt_frames_pain_head[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t runt_move_pain_head = {FRAME_pain_head_01, FRAME_pain_head_09, runt_frames_pain_head, AI_EndAttack}; + +mframe_t runt_frames_pain_Rleg[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 +}; +mmove_t runt_move_pain_Rleg = {FRAME_pain_Rleg_01, FRAME_pain_Rleg_11, runt_frames_pain_Rleg, AI_EndAttack}; + +mframe_t runt_frames_pain_Lleg[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t runt_move_pain_Lleg = {FRAME_pain_Lleg_01, FRAME_pain_Lleg_09, runt_frames_pain_Lleg, AI_EndAttack}; + +mframe_t runt_frames_pain_crch[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t runt_move_pain_crch = {FRAME_pain_crch_01, FRAME_pain_crch_09, runt_frames_pain_crch, AI_EndAttack}; + +mframe_t runt_frames_pain_butt[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 +}; +mmove_t runt_move_pain_butt = {FRAME_pain_butt_01, FRAME_pain_butt_08, runt_frames_pain_butt, AI_EndAttack}; + +mframe_t runt_frames_nw_pain_Rarm[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t runt_move_nw_pain_Rarm = {FRAME_nw_pain_Rarm_01, FRAME_nw_pain_Rarm_09, runt_frames_nw_pain_Rarm, AI_EndAttack}; + +mframe_t runt_frames_nw_pain_Larm[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 +}; +mmove_t runt_move_nw_pain_Larm = {FRAME_nw_pain_Larm_01, FRAME_nw_pain_Larm_10, runt_frames_nw_pain_Larm, AI_EndAttack}; + +mframe_t runt_frames_nw_pain_chst[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t runt_move_nw_pain_chst = {FRAME_nw_pain_chst_01, FRAME_nw_pain_chst_09, runt_frames_nw_pain_chst, AI_EndAttack}; + +mframe_t runt_frames_nw_pain_crch[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t runt_move_nw_pain_crch = {FRAME_nw_pain_crch_01, FRAME_nw_pain_crch_09, runt_frames_nw_pain_crch, AI_EndAttack}; + +mframe_t runt_frames_nw_pain_butt[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t runt_move_nw_pain_butt = {FRAME_nw_pain_butt_01, FRAME_nw_pain_butt_09, runt_frames_nw_pain_butt, AI_EndAttack}; + +mframe_t runt_frames_nw_pain_head[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 +}; +mmove_t runt_move_nw_pain_head = {FRAME_nw_pain_head_01, FRAME_nw_pain_head_08, runt_frames_nw_pain_head, AI_EndAttack}; + +mframe_t runt_frames_nw_pain_Rleg[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t runt_move_nw_pain_Rleg = {FRAME_nw_pain_Rleg_01, FRAME_nw_pain_Rleg_09, runt_frames_nw_pain_Rleg, AI_EndAttack}; + +mframe_t runt_frames_nw_pain_Lleg[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 +}; +mmove_t runt_move_nw_pain_Lleg = {FRAME_nw_pain_Lleg_01, FRAME_nw_pain_Lleg_11, runt_frames_nw_pain_Lleg, AI_EndAttack}; + +mframe_t runt_frames_death1[] = +{ + ai_move, 0.238, NULL, // frame 0 + ai_move, -1.034, NULL, // frame 1 + ai_move, -9.583, NULL, // frame 2 + ai_move, -0.592, NULL, // frame 3 + ai_move, 3.194, NULL, // frame 4 + ai_move, 7.565, NULL, // frame 5 + ai_move, 3.078, NULL, // frame 6 + ai_move, -2.142, NULL, // frame 7 + ai_move, 0.399, NULL, // frame 8 + ai_move, 3.574, NULL, // frame 9 + ai_move, 2.717, NULL, // frame 10 + ai_move, 4.743, NULL, // frame 11 + ai_move, 7.929, NULL, // frame 12 + ai_move, 10.851, NULL, // frame 13 + ai_move, 0.817, NULL, // frame 14 + ai_move, -1.070, NULL, // frame 15 + ai_move, -0.856, NULL, // frame 16 + ai_move, 0.396, NULL, // frame 17 + ai_move, 0.292, NULL, // frame 18 + ai_move, -0.027, NULL, // frame 19 + ai_move, 0.016, NULL, // frame 20 + ai_move, 0.010, NULL, // frame 21 +}; +mmove_t runt_move_death1 = {FRAME_death1_01, FRAME_death1_22, runt_frames_death1, AI_EndDeath}; + +mframe_t runt_frames_death2[] = +{ + ai_move, -0.144, NULL, // frame 0 + ai_move, -15.665, NULL, // frame 1 + ai_move, 1.324, NULL, // frame 2 + ai_move, 9.216, NULL, // frame 3 + ai_move, 17.036, NULL, // frame 4 + ai_move, 13.883, NULL, // frame 5 + ai_move, 10.773, NULL, // frame 6 + ai_move, -0.456, NULL, // frame 7 + ai_move, 2.582, NULL, // frame 8 + ai_move, 1.007, NULL, // frame 9 + ai_move, 0.337, NULL, // frame 10 + ai_move, 0.039, NULL, // frame 11 + ai_move, 0.037, NULL, // frame 12 + ai_move, 0.003, NULL, // frame 13 +}; +mmove_t runt_move_death2 = {FRAME_death2_01, FRAME_death2_14, runt_frames_death2, AI_EndDeath}; + +mframe_t runt_frames_death3[] = +{ + ai_move, 0.520, NULL, // frame 0 + ai_move, -15.514, NULL, // frame 1 + ai_move, -4.272, NULL, // frame 2 + ai_move, 2.028, NULL, // frame 3 + ai_move, 7.542, NULL, // frame 4 + ai_move, 8.201, NULL, // frame 5 + ai_move, 8.360, NULL, // frame 6 + ai_move, 19.227, NULL, // frame 7 + ai_move, 4.670, NULL, // frame 8 + ai_move, 0.909, NULL, // frame 9 + ai_move, 9.508, NULL, // frame 10 + ai_move, -0.948, NULL, // frame 11 + ai_move, -11.286, NULL, // frame 12 + ai_move, 0.418, NULL, // frame 13 + ai_move, 0.453, NULL, // frame 14 + ai_move, -0.007, NULL, // frame 15 + ai_move, -0.064, NULL, // frame 16 + ai_move, 0.002, NULL, // frame 17 + ai_move, 0.001, NULL, // frame 18 +}; +mmove_t runt_move_death3 = {FRAME_death3_01, FRAME_death3_19, runt_frames_death3, AI_EndDeath}; + +mframe_t runt_frames_death4[] = +{ + ai_move, -3.228, NULL, // frame 0 + ai_move, -12.813, NULL, // frame 1 + ai_move, -9.574, NULL, // frame 2 + ai_move, -3.682, NULL, // frame 3 + ai_move, -11.420, NULL, // frame 4 + ai_move, -6.316, NULL, // frame 5 + ai_move, -6.718, NULL, // frame 6 + ai_move, -5.913, NULL, // frame 7 + ai_move, 2.085, NULL, // frame 8 + ai_move, -0.542, NULL, // frame 9 + ai_move, 1.025, NULL, // frame 10 + ai_move, 0.427, NULL, // frame 11 + ai_move, -0.207, NULL, // frame 12 + ai_move, -0.102, NULL, // frame 13 + ai_move, 0.076, NULL, // frame 14 + ai_move, -0.002, NULL, // frame 15 + ai_move, -0.018, NULL, // frame 16 +}; +mmove_t runt_move_death4 = {FRAME_death4_01, FRAME_death4_17, runt_frames_death4, AI_EndDeath}; + +mframe_t runt_frames_death5[] = +{ + ai_move, -3.046, NULL, // frame 0 + ai_move, -7.635, NULL, // frame 1 + ai_move, -17.739, NULL, // frame 2 + ai_move, -7.189, NULL, // frame 3 + ai_move, -20.864, NULL, // frame 4 + ai_move, -7.619, NULL, // frame 5 + ai_move, -5.923, NULL, // frame 6 + ai_move, -1.859, NULL, // frame 7 + ai_move, 7.043, NULL, // frame 8 + ai_move, 4.872, NULL, // frame 9 + ai_move, 0.045, NULL, // frame 10 + ai_move, 0.610, NULL, // frame 11 + ai_move, 0.627, NULL, // frame 12 + ai_move, -0.499, NULL, // frame 13 + ai_move, 0.104, NULL, // frame 14 + ai_move, 0.000, NULL, // frame 15 + ai_move, 0.008, NULL, // frame 16 + ai_move, 0.004, NULL, // frame 17 + ai_move, -0.001, NULL, // frame 18 +}; +mmove_t runt_move_death5 = {FRAME_death5_01, FRAME_death5_19, runt_frames_death5, AI_EndDeath}; + +mframe_t runt_frames_death6[] = +{ + ai_move, 1.086, NULL, // frame 0 + ai_move, -7.158, NULL, // frame 1 + ai_move, -19.735, NULL, // frame 2 + ai_move, -4.218, NULL, // frame 3 + ai_move, 2.623, NULL, // frame 4 + ai_move, -8.821, NULL, // frame 5 + ai_move, -6.157, NULL, // frame 6 + ai_move, -11.324, NULL, // frame 7 + ai_move, -3.710, NULL, // frame 8 + ai_move, 1.731, NULL, // frame 9 + ai_move, 11.367, NULL, // frame 10 + ai_move, 0.115, NULL, // frame 11 + ai_move, 0.032, NULL, // frame 12 + ai_move, -0.037, NULL, // frame 13 + ai_move, -0.015, NULL, // frame 14 + ai_move, 0.001, NULL, // frame 15 + ai_move, -0.005, NULL, // frame 16 + ai_move, 0.002, NULL, // frame 17 +}; +mmove_t runt_move_death6 = {FRAME_death6_01, FRAME_death6_18, runt_frames_death6, AI_EndDeath}; + +mframe_t runt_frames_crch_amb_sdt[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 + ai_stand, 0.000, NULL, // frame 9 + ai_stand, 0.000, NULL, // frame 10 + ai_stand, 0.000, NULL, // frame 11 + ai_stand, 0.000, NULL, // frame 12 + ai_stand, 0.000, NULL, // frame 13 + ai_stand, 0.000, NULL, // frame 14 + ai_stand, 0.000, NULL, // frame 15 + ai_stand, 0.000, NULL, // frame 16 + ai_stand, 0.000, NULL, // frame 17 + ai_stand, 0.000, NULL, // frame 18 + ai_stand, 0.000, NULL, // frame 19 + ai_stand, 0.000, NULL, // frame 20 + ai_stand, 0.000, NULL, // frame 21 + ai_stand, 0.000, NULL, // frame 22 + ai_stand, 0.000, NULL, // frame 23 + ai_stand, 0.000, NULL, // frame 24 + ai_stand, 0.000, NULL, // frame 25 + ai_stand, 0.000, NULL, // frame 26 +}; +mmove_t runt_move_crch_amb_sdt = {FRAME_crch_amb_sdt_01, FRAME_crch_amb_sdt_27, runt_frames_crch_amb_sdt, NULL}; + +mframe_t runt_frames_crch_shoot[] = +{ + ai_turn, 0.000, runt_right_fire, // frame 0 + ai_turn, 0.000, NULL, // frame 1 + ai_turn, 0.000, NULL, // frame 2 + ai_turn, 0.000, NULL, // frame 3 + ai_turn, 0.000, NULL, // frame 4 + ai_turn, 0.000, runt_left_fire, // frame 5 + ai_turn, 0.000, NULL, // frame 6 + ai_turn, 0.000, NULL, // frame 7 + ai_turn, 0.000, NULL, // frame 8 +}; +mmove_t runt_move_crch_shoot = {FRAME_crch_shoot_01, FRAME_crch_shoot_09, runt_frames_crch_shoot, AI_EndAttack}; + +mframe_t runt_frames_crouch_walk[] = +{ + ai_run, 4.227, NULL, // frame 0 + ai_run, 3.913, NULL, // frame 1 + ai_run, 4.576, NULL, // frame 2 + ai_run, 4.929, NULL, // frame 3 + ai_run, 4.588, NULL, // frame 4 + ai_run, 3.154, NULL, // frame 5 + ai_run, 3.287, NULL, // frame 6 + ai_run, 4.085, NULL, // frame 7 +}; +mmove_t runt_move_crouch_walk = {FRAME_crouch_walk_01, FRAME_crouch_walk_08, runt_frames_crouch_walk, NULL}; + +mframe_t runt_frames_c_pain_Rarm[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 +}; +mmove_t runt_move_c_pain_Rarm = {FRAME_c_pain_Rarm_01, FRAME_c_pain_Rarm_12, runt_frames_c_pain_Rarm, AI_EndAttack}; + +mframe_t runt_frames_c_pain_Larm[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 + ai_move, 0.000, NULL, // frame 12 +}; +mmove_t runt_move_c_pain_Larm = {FRAME_c_pain_Larm_01, FRAME_c_pain_Larm_13, runt_frames_c_pain_Larm, AI_EndAttack}; + +mframe_t runt_frames_c_pain_chst[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 +}; +mmove_t runt_move_c_pain_chst = {FRAME_c_pain_chst_01, FRAME_c_pain_chst_11, runt_frames_c_pain_chst, AI_EndAttack}; + +mframe_t runt_frames_c_pain_head[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 + ai_move, 0.000, NULL, // frame 12 + ai_move, 0.000, NULL, // frame 13 + ai_move, 0.000, NULL, // frame 14 + ai_move, 0.000, NULL, // frame 15 +}; +mmove_t runt_move_c_pain_head = {FRAME_c_pain_head_01, FRAME_c_pain_head_16, runt_frames_c_pain_head, AI_EndAttack}; + +mframe_t runt_frames_evade[] = +{ + ai_turn, 0.581, NULL, // frame 0 + ai_turn, 8.219, NULL, // frame 1 + ai_turn, 3.057, NULL, // frame 2 + ai_turn, -18.376, NULL, // frame 3 + ai_turn, -4.337, NULL, // frame 4 + ai_turn, -18.023, NULL, // frame 5 + ai_turn, -11.317, NULL, // frame 6 + ai_turn, -6.771, NULL, // frame 7 + ai_turn, 3.034, NULL, // frame 8 +// ai_turn, 57.618, NULL, // frame 9 + ai_turn, 20.618, NULL, // frame 9 +}; +mmove_t runt_move_evade = {FRAME_evade_01, FRAME_evade_10, runt_frames_evade, runt_evade_amb}; + +mframe_t runt_frames_evade_amb[] = +{ + NULL, 0.000, runt_evade_checkadjust, // frame 0 + NULL, 0.000, runt_evade_checkadjust, // frame 1 + NULL, 0.000, runt_evade_checkadjust, // frame 2 + NULL, 0.000, runt_evade_checkadjust, // frame 3 + NULL, 0.000, runt_evade_checkadjust, // frame 4 + NULL, 0.000, runt_evade_checkadjust, // frame 5 + NULL, 0.000, runt_evade_checkadjust, // frame 6 + NULL, 0.000, runt_evade_checkadjust, // frame 7 + NULL, 0.000, runt_evade_checkadjust, // frame 8 + NULL, 0.000, runt_evade_checkadjust, // frame 9 + NULL, 0.000, runt_evade_checkadjust, // frame 10 + NULL, 0.000, runt_evade_checkadjust, // frame 11 + +}; +mmove_t runt_move_evade_amb = {FRAME_evade_amb_01, FRAME_evade_amb_12, runt_frames_evade_amb, AI_CheckEvade}; + + +mframe_t runt_frames_evade_stand[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + + ai_stand, 0.000, NULL, + ai_stand, 0.000, NULL, + ai_stand, 0.000, NULL, + ai_stand, 0.000, NULL, + ai_stand, 0.000, NULL, + +}; +mmove_t runt_move_evade_stand = {FRAME_evade_amb_01, FRAME_evade_amb_12, runt_frames_evade_stand, runt_end_stand}; + + + +mframe_t runt_frames_lside_step[] = +{ + ai_sidestep, 0.013, NULL, // frame 0 + ai_sidestep, 1.814, NULL, // frame 1 + ai_sidestep, 8.195, NULL, // frame 2 + ai_sidestep, 1.742, NULL, // frame 3 + ai_sidestep, 11.579, NULL, // frame 4 + ai_sidestep, 9.565, NULL, // frame 5 + ai_sidestep, 8.587, NULL, // frame 6 + ai_sidestep, 2.062, NULL, // frame 7 + ai_sidestep, 1.663, NULL, // frame 8 + ai_sidestep, 0.411, NULL, // frame 9 +}; +mmove_t runt_move_lside_step = {FRAME_lside_step_01, FRAME_lside_step_10, runt_frames_lside_step, AI_EndAttack}; + +mframe_t runt_frames_rside_step[] = +{ + ai_sidestep, 0.008, NULL, // frame 0 + ai_sidestep, -1.045, NULL, // frame 1 + ai_sidestep, -1.978, NULL, // frame 2 + ai_sidestep, -3.345, NULL, // frame 3 + ai_sidestep, -2.344, NULL, // frame 4 + ai_sidestep, -10.970, NULL, // frame 5 + ai_sidestep, -7.659, NULL, // frame 6 + ai_sidestep, -9.143, NULL, // frame 7 + ai_sidestep, -4.204, NULL, // frame 8 +}; +mmove_t runt_move_rside_step = {FRAME_rside_step_01, FRAME_rside_step_09, runt_frames_rside_step, AI_EndAttack}; + +mframe_t runt_frames_walk_guns_dn[] = +{ + ai_run, 1.235, NULL, // frame 0 + ai_run, 7.009, NULL, // frame 1 + ai_run, 7.589, NULL, // frame 2 + ai_run, 13.206, NULL, // frame 3 + ai_run, 3.028, NULL, // frame 4 + ai_run, 2.102, NULL, // frame 5 + ai_run, 24.908, NULL, // frame 6 + ai_run, 11.297, NULL, // frame 7 + ai_run, 11.088, NULL, // frame 8 + ai_run, 7.711, NULL, // frame 9 +}; +mmove_t runt_move_walk_guns_dn = {FRAME_walk_guns_dn_01, FRAME_walk_guns_dn_10, runt_frames_walk_guns_dn, NULL}; + +mframe_t runt_frames_walk_shoot[] = +{ + ai_turn2, 7.582, runt_left_fire, // frame 0 + ai_turn2, 2.967, NULL, // frame 1 + ai_turn2, 7.032, NULL, // frame 2 + ai_turn2, 12.919, runt_right_fire, // frame 3 + ai_turn2, 5.230, NULL, // frame 4 + ai_turn2, 3.191, NULL, // frame 5 + ai_turn2, 14.270, NULL, // frame 6 + ai_turn2, 12.124, NULL, // frame 7 + ai_turn2, 8.824, NULL, // frame 8 + ai_turn2, 13.341, NULL, // frame 9 + +}; +mmove_t runt_move_walk_shoot = {FRAME_walk_shoot_01, FRAME_walk_shoot_10, runt_frames_walk_shoot, AI_EndAttack}; + +mframe_t runt_frames_run_guns_dn[] = +{ + ai_run, 13.390, NULL, // frame 0 + ai_run, 20.672, NULL, // frame 1 + ai_run, 23.981, NULL, // frame 2 + ai_run, 21.476, NULL, // frame 3 + ai_run, 1.388, NULL, // frame 4 + ai_run, 24.850, NULL, // frame 5 +}; +mmove_t runt_move_run_guns_dn = {FRAME_run_guns_dn_01, FRAME_run_guns_dn_06, runt_frames_run_guns_dn, NULL}; + +mframe_t runt_frames_run_shoot[] = +{ + ai_charge, 2.894, runt_left_fire, // frame 0 + ai_charge,13.404, NULL, // frame 1 + ai_charge, 9.943, NULL, // frame 2 + ai_charge,31.004, runt_right_fire, // frame 3 + ai_charge,13.367, NULL, // frame 4 + ai_charge, 9.128, NULL, // frame 5 +}; +mmove_t runt_move_run_shoot = {FRAME_run_shoot_01, FRAME_run_shoot_06, runt_frames_run_shoot, AI_EndAttack}; + +mframe_t runt_frames_reverse_run_shoot[] = +{ + ai_charge, -9.128, NULL, // frame 5 + ai_charge,-13.367, NULL, // frame 4 + ai_charge,-31.004, runt_right_fire, // frame 3 + ai_charge, -9.943, NULL, // frame 2 + ai_charge,-13.404, NULL, // frame 1 + ai_charge, -2.894, runt_left_fire, // frame 0 +}; +mmove_t runt_move_reverse_run_shoot = {FRAME_run_shoot_06, FRAME_run_shoot_01, runt_frames_reverse_run_shoot, AI_EndAttack}; + +mframe_t runt_frames_run_on_fire[] = +{ + ai_onfire_run, 3.788, NULL, // frame 0 + ai_onfire_run, 19.318, NULL, // frame 1 + ai_onfire_run, 8.519, NULL, // frame 2 + ai_onfire_run, 26.090, NULL, // frame 3 + ai_onfire_run, 11.733, NULL, // frame 4 + ai_onfire_run, 7.604, NULL, // frame 5 +}; +mmove_t runt_move_run_on_fire = {FRAME_run_on_fire_01, FRAME_run_on_fire_06, runt_frames_run_on_fire, NULL}; + +mframe_t runt_frames_run_melee[] = +{ + ai_charge, 16.222, NULL, // frame 0 + ai_charge, 12.651, NULL, // frame 1 + ai_charge, 18.236, NULL, // frame 2 + ai_charge, 12.563, NULL, // frame 3 + ai_charge, 38.242, runt_melee, // frame 4 + ai_charge, 7.863, NULL, // frame 5 +}; +mmove_t runt_move_run_melee = {FRAME_run_melee_01, FRAME_run_melee_06, runt_frames_run_melee, AI_EndAttack}; + +// oh joy this is backwards again +// Ridah, 5-8-99, they don't seem to be backwards here, changed them back to normal + +// Rafael: 03-15-99 thats because you are using the wrong model +mframe_t runt_frames_lside_run[] = +{ + ai_sidestep, -16.313, runt_firegun_left, // frame 0 + ai_sidestep, -6.614, NULL, // frame 1 + ai_sidestep, -9.217, NULL, // frame 2 + ai_sidestep, -10.424, runt_firegun_left, // frame 3 + ai_sidestep, -11.793, NULL, // frame 4 + ai_sidestep, -16.889, NULL, // frame 5 +}; +//mmove_t runt_move_lside_run = {FRAME_lside_run_01, FRAME_lside_run_06, runt_frames_lside_run, NULL}; +mmove_t runt_move_lside_run = {FRAME_rside_run_01, FRAME_rside_run_06, runt_frames_lside_run, NULL}; + +mframe_t runt_frames_rside_run[] = +{ + ai_sidestep, 10.051, runt_firegun_right, // frame 0 + ai_sidestep, 12.243, NULL, // frame 1 + ai_sidestep, 8.393, NULL, // frame 2 + ai_sidestep, 8.554, runt_firegun_right, // frame 3 + ai_sidestep, 10.702, NULL, // frame 4 + ai_sidestep, 10.621, NULL, // frame 5 +}; +//mmove_t runt_move_rside_run = {FRAME_rside_run_01, FRAME_rside_run_06, runt_frames_rside_run, NULL}; +mmove_t runt_move_rside_run = {FRAME_lside_run_01, FRAME_lside_run_06, runt_frames_rside_run, NULL}; + +mframe_t runt_frames_crch_death1[] = +{ + ai_move, -0.142, NULL, // frame 0 + ai_move, -5.406, NULL, // frame 1 + ai_move, -1.274, NULL, // frame 2 + ai_move, -1.072, NULL, // frame 3 + ai_move, -2.619, NULL, // frame 4 + ai_move, -6.650, NULL, // frame 5 + ai_move, 1.475, NULL, // frame 6 + ai_move, 7.553, NULL, // frame 7 + ai_move, 3.779, NULL, // frame 8 + ai_move, 4.477, NULL, // frame 9 + ai_move, 5.449, NULL, // frame 10 + ai_move, 1.825, NULL, // frame 11 + ai_move, 1.503, NULL, // frame 12 + ai_move, 0.483, NULL, // frame 13 + ai_move, -0.968, NULL, // frame 14 + ai_move, -0.301, NULL, // frame 15 + ai_move, 0.195, NULL, // frame 16 + ai_move, -0.106, NULL, // frame 17 + ai_move, -0.053, NULL, // frame 18 +}; +mmove_t runt_move_crch_death1 = {FRAME_crch_death1_01, FRAME_crch_death1_19, runt_frames_crch_death1, AI_EndDeath}; + +mframe_t runt_frames_crch_death2[] = +{ + ai_move, -1.292, NULL, // frame 0 + ai_move, -9.592, NULL, // frame 1 + ai_move, -4.339, NULL, // frame 2 + ai_move, 14.878, NULL, // frame 3 + ai_move, 12.582, NULL, // frame 4 + ai_move, 6.198, NULL, // frame 5 + ai_move, 6.637, NULL, // frame 6 + ai_move, 3.702, NULL, // frame 7 + ai_move, -1.876, NULL, // frame 8 + ai_move, -1.002, NULL, // frame 9 + ai_move, 1.758, NULL, // frame 10 +}; +mmove_t runt_move_crch_death2 = {FRAME_crch_death2_01, FRAME_crch_death2_11, runt_frames_crch_death2, AI_EndDeath}; + +mframe_t runt_frames_crch_death3[] = +{ + ai_move, -0.655, NULL, // frame 0 + ai_move, -4.884, NULL, // frame 1 + ai_move, -11.008, NULL, // frame 2 + ai_move, -11.476, NULL, // frame 3 + ai_move, -8.028, NULL, // frame 4 + ai_move, -7.586, NULL, // frame 5 + ai_move, -17.826, NULL, // frame 6 + ai_move, 4.965, NULL, // frame 7 + ai_move, 1.719, NULL, // frame 8 + ai_move, 0.809, NULL, // frame 9 + ai_move, -0.198, NULL, // frame 10 + ai_move, 1.219, NULL, // frame 11 + ai_move, -0.083, NULL, // frame 12 + ai_move, -0.085, NULL, // frame 13 + ai_move, 0.088, NULL, // frame 14 + ai_move, 0.055, NULL, // frame 15 + ai_move, 0.046, NULL, // frame 16 + ai_move, 0.015, NULL, // frame 17 +}; +mmove_t runt_move_crch_death3 = {FRAME_crch_death3_01, FRAME_crch_death3_18, runt_frames_crch_death3, AI_EndDeath}; + +mframe_t runt_frames_clmb_loop[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 7 + NULL, 0.000, NULL, // frame 8 + NULL, 0.000, NULL, // frame 9 +}; +mmove_t runt_move_clmb_loop = {FRAME_clmb_loop_01, FRAME_clmb_loop_10, runt_frames_clmb_loop, AI_CheckStillClimbingLadder}; + +mframe_t runt_frames_clmb_over[] = +{ + ai_move, 0.000, AI_CheckStillInair, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 +}; +mmove_t runt_move_clmb_over = {FRAME_clmb_over_01, FRAME_clmb_over_12, runt_frames_clmb_over, AI_EndJump}; + +mframe_t runt_frames_clmb_jmp[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 7 + NULL, 0.000, NULL, // frame 8 +// NULL, 0.000, NULL, // frame 9 +// NULL, 0.000, NULL, // frame 10 +// NULL, 0.000, NULL, // frame 11 +// NULL, 0.000, NULL, // frame 12 +// NULL, 0.000, NULL, // frame 13 +// NULL, 0.000, NULL, // frame 14 +}; +mmove_t runt_move_clmb_jmp = {FRAME_clmb_over_01, FRAME_clmb_over_09, runt_frames_clmb_jmp, AI_EndJump}; + +mframe_t runt_frames_evade_adjust[] = +{ + ai_turn, -1.430, runt_evade_adjust, // frame 9 + ai_turn, -5.835, runt_evade_adjust, // frame 10 + ai_turn, -1.706, runt_evade_adjust, // frame 11 + ai_turn, -0.040, runt_evade_adjust, // frame 12 +}; +mmove_t runt_move_evade_adjust = {FRAME_evade_05, FRAME_evade_08, runt_frames_evade_adjust, runt_evade_amb}; + +mframe_t runt_frames_avoid_walk[] = +{ + ai_turn, -1.594, NULL, // frame 0 + ai_turn, 9.027, NULL, // frame 1 + ai_turn, 0.580, NULL, // frame 2 + ai_turn, 7.894, NULL, // frame 2 + ai_turn, -0.956, NULL, // frame 3 + ai_turn, 19.279, NULL, // frame 4 + ai_turn, 15.273, NULL, // frame 5 +}; +mmove_t runt_move_avoid_walk = {FRAME_walk_guns_dn_01, FRAME_walk_guns_dn_06, runt_frames_avoid_walk, AI_EndAttack}; + +mframe_t runt_frames_avoid_reverse_walk[] = +{ + ai_turn, -6.953, NULL, // frame 0 + ai_turn, -3.311, NULL, // frame 1 + ai_turn, -5.149, NULL, // frame 2 + ai_turn,-15.273, NULL, // frame 3 + ai_turn,-19.279, NULL, // frame 4 + ai_turn, -0.956, NULL, // frame 5 +}; +mmove_t runt_move_avoid_reverse_walk = {FRAME_walk_guns_dn_10, FRAME_walk_guns_dn_05, runt_frames_avoid_reverse_walk, AI_EndAttack}; + +mframe_t runt_frames_crouch_avoid_walk[] = +{ + ai_turn, 4.227 , NULL, // frame 0 + ai_turn, 3.913 , NULL, // frame 1 + ai_turn, 4.576 , NULL, // frame 2 + ai_turn, 4.929 , NULL, // frame 3 + ai_turn, 4.588 , NULL, // frame 4 + ai_turn, 3.154 , NULL, // frame 5 +}; +mmove_t runt_move_crouch_avoid_walk = {FRAME_crouch_walk_01, FRAME_crouch_walk_06, runt_frames_crouch_avoid_walk, AI_EndAttack}; + +mframe_t runt_frames_reverse_walk_shoot[] = +{ +// ai_turn2, -0.298, NULL, // frame 0 + ai_turn2, -3.334, NULL, // frame 1 + ai_turn2, -3.541, NULL, // frame 2 + ai_turn2, -8.010, NULL, // frame 3 + ai_turn2, -19.929, NULL, // frame 4 + ai_turn2, -0.660, NULL, // frame 5 + ai_turn2, -0.327, NULL, // frame 6 + ai_turn2, -3.077, runt_right_fire, // frame 7 + ai_turn2, -5.263, NULL, // frame 8 + ai_turn2, -10.442, NULL, // frame 9 + ai_turn2, -1.378, runt_left_fire, // frame 10 +}; +mmove_t runt_move_reverse_walk_shoot = {FRAME_walk_shoot_10, FRAME_walk_shoot_01, runt_frames_reverse_walk_shoot, AI_EndAttack}; + +mframe_t runt_frames_avoid_run[] = +{ + ai_turn,12.722, NULL, // frame 0 + ai_turn,19.632, NULL, // frame 1 + ai_turn,22.735, NULL, // frame 2 + ai_turn,20.400, NULL, // frame 3 + ai_turn, 1.322, NULL, // frame 4 + ai_turn,23.556, NULL, // frame 5 +}; +mmove_t runt_move_avoid_run = {FRAME_run_guns_dn_01, FRAME_run_guns_dn_06, runt_frames_avoid_run, AI_EndAttack}; + +mframe_t runt_frames_avoid_reverse_run[] = +{ + ai_turn,-23.556, NULL, // frame 5 + ai_turn, -1.322, NULL, // frame 4 + ai_turn,-20.400, NULL, // frame 3 + ai_turn,-22.735, NULL, // frame 2 + ai_turn,-19.632, NULL, // frame 1 + ai_turn,-12.722, NULL, // frame 0 +}; +mmove_t runt_move_avoid_reverse_run = {FRAME_run_guns_dn_06, FRAME_run_guns_dn_01, runt_frames_avoid_reverse_run, AI_EndAttack}; + +mframe_t runt_frames_stand_up[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 +}; +mmove_t runt_move_stand_up = {FRAME_crch_knl_dn_06, FRAME_crch_knl_dn_03, runt_frames_stand_up, AI_EndAttack}; + +mframe_t runt_frames_crouch_dn[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 +}; +mmove_t runt_move_crouch_dn = {FRAME_crch_knl_dn_03, FRAME_crch_knl_dn_06, runt_frames_crouch_dn, AI_EndAttack}; + + +mframe_t runt_frames_evade_stand2[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 + ai_stand, 0.000, NULL, // frame 9 + ai_stand, 0.000, NULL, // frame 10 + ai_stand, 0.000, NULL, // frame 11 + ai_stand, 0.000, NULL, // frame 12 + ai_stand, 0.000, NULL, // frame 13 + ai_stand, 0.000, NULL, // frame 14 + ai_stand, 0.000, NULL, // frame 15 + ai_stand, 0.000, NULL, // frame 16 +}; +mmove_t runt_move_evade_stand2 = {FRAME_melee_amb1_01, FRAME_melee_amb1_17, runt_frames_evade_stand2, runt_end_stand}; + +mframe_t runt_frames_move_walk_dokey[] = +{ + ai_runDOKEY, 1.235, EP_ReachedDoKey, // frame 0 + ai_runDOKEY, 7.009, EP_ReachedDoKey, // frame 1 + ai_runDOKEY, 7.589, EP_ReachedDoKey, // frame 2 + ai_runDOKEY, 13.206, EP_ReachedDoKey, // frame 3 + ai_runDOKEY, 3.028, EP_ReachedDoKey, // frame 4 + ai_runDOKEY, 2.102, EP_ReachedDoKey, // frame 5 + ai_runDOKEY, 24.908, EP_ReachedDoKey, // frame 6 + ai_runDOKEY, 11.297, EP_ReachedDoKey, // frame 7 + ai_runDOKEY, 11.088, EP_ReachedDoKey, // frame 8 + ai_runDOKEY, 7.711, EP_ReachedDoKey, // frame 9 +}; +mmove_t runt_move_walk_dokey = {FRAME_walk_guns_dn_01, FRAME_walk_guns_dn_10, runt_frames_move_walk_dokey, EP_ReachedDoKey}; + +mframe_t runt_frames_crch_dokey[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 + ai_stand, 0.000, NULL, // frame 9 + ai_stand, 0.000, NULL, // frame 10 + ai_stand, 0.000, NULL, // frame 11 + ai_stand, 0.000, NULL, // frame 12 + ai_stand, 0.000, NULL, // frame 13 + ai_stand, 0.000, NULL, // frame 14 + ai_stand, 0.000, NULL, // frame 15 + ai_stand, 0.000, NULL, // frame 16 + ai_stand, 0.000, NULL, // frame 17 + ai_stand, 0.000, NULL, // frame 18 + ai_stand, 0.000, NULL, // frame 19 + ai_stand, 0.000, NULL, // frame 20 + ai_stand, 0.000, NULL, // frame 21 + ai_stand, 0.000, NULL, // frame 22 + ai_stand, 0.000, NULL, // frame 23 + ai_stand, 0.000, NULL, // frame 24 + ai_stand, 0.000, NULL, // frame 25 + ai_stand, 0.000, NULL, // frame 26 +}; +mmove_t runt_move_crch_dokey = {FRAME_crch_amb_sdt_01, FRAME_crch_amb_sdt_27, runt_frames_crch_dokey, EP_EndDoKey}; diff --git a/gamesrc/ai_shorty.c b/gamesrc/ai_shorty.c new file mode 100644 index 0000000..f195dac --- /dev/null +++ b/gamesrc/ai_shorty.c @@ -0,0 +1,1576 @@ +// +// ai_shorty.c shorty clone of the punk +// + +#include "g_local.h" +#include "ai_shorty.h" + +#include "voice_punk.h" + +void shorty_end_stand( edict_t *self ); + +void shorty_firehmg (edict_t *self); + +void shorty_firegun( edict_t *self ); +void shorty_firegun_left( edict_t *self ); +void shorty_firegun_right( edict_t *self ); +void shorty_talk_think( edict_t *self ); +// Joseph 20-NOV-98 +void think_killedict( edict_t *self ); +void think_playthud( edict_t *self ); +// END JOSEPH + +void shorty_firegun_cr (edict_t *self); +void shorty_shotgun_reload( edict_t *self ); + +void shorty_reload_snd (edict_t *self); +void shorty_firehmg_delay (edict_t *self); +void shorty_hmg_avoid (edict_t *self); +void shorty_bazooka_delay (edict_t *self); + +// ========================================================================= + +#include "ai_shorty_tables.h" + +// ========================================================================= + +#define SHORTY_FLAMEGUN 4 +#define SHORTY_BAZOOKA 8 +#define SHORTY_HMG 16 + +#define SHORTY_TOMMYGUN 64 // spawnflag + +#define SHORTY_GRENADE 128 +#define SHORTY_SHOTGUN 8192 + + +int tommy_soundindex; +int shotgun_soundindex; +int shotgun_reload_soundindex; +int heavymachinegun_soundindex; +int rocketgun_soundindex; + +void shorty_reload_snd (edict_t *self) +{ + if (self->spawnflags & SHORTY_TOMMYGUN) + gi.sound(self, CHAN_VOICE, gi.soundindex("weapons/machinegun/machgcock.wav"), 1, ATTN_NORM, 0); + else if (self->spawnflags & SHORTY_HMG) + gi.sound(self, CHAN_VOICE, gi.soundindex("weapons/machinegun/machgcock.wav"), 1, ATTN_NORM, 0); + else if (self->spawnflags & SHORTY_BAZOOKA) + gi.sound(self, CHAN_VOICE, gi.soundindex("weapons/rocket_launcher/reload.wav"), 1, ATTN_NORM, 0); + else if (self->spawnflags & SHORTY_GRENADE) + gi.sound(self, CHAN_VOICE, gi.soundindex("weapons/grenade_launcher/reload.wav"), 1, ATTN_NORM, 0); +} + +void shorty_catch_fire( edict_t *self, edict_t *other ) +{ + self->enemy = NULL; // stop attacking + self->cast_info.currentmove = &shorty_move_run_on_fire; +} + +void shorty_talk_think( edict_t *self ) +{ + AI_TalkThink( self, true ); +} + +void shorty_talk( edict_t *self ) +{ + float rnd; + + rnd = random() * 7; + + // only make talking jester if we've recently said something + if (!(self->cast_info.aiflags & AI_REPEAT_TALK_JESTURE) && self->last_talk_time < (level.time - 1.0)) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + if (self->cast_info.currentmove != self->cast_info.move_stand) + return; + + if (rnd < 1) + self->cast_info.currentmove = &shorty_move_talk1; + else if (rnd < 2) + self->cast_info.currentmove = &shorty_move_talk2; + else if (rnd < 3) + self->cast_info.currentmove = &shorty_move_talk3; + else if (rnd < 4) + self->cast_info.currentmove = &shorty_move_talk4; + else if (rnd < 5) + self->cast_info.currentmove = &shorty_move_talk5; + else if (rnd < 6) + self->cast_info.currentmove = &shorty_move_talk6; + else + self->cast_info.currentmove = &shorty_move_talk7; + +} + +void shorty_avoid ( edict_t *self, edict_t *other, qboolean face ) +{ + vec3_t vec; + + + if (self->health <= 0) + return; + + if (!self->groundentity) + return; + + if (!other) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + self->cast_info.last_avoid = level.time; + self->cast_info.avoid_ent = NULL; + + if (face) + { // turn to face them + VectorSubtract( other->s.origin, self->s.origin, vec ); + self->cast_info.avoid_ent = other; + } + else + { // turn to face away from them + VectorSubtract( self->s.origin, other->s.origin, vec ); + } + VectorNormalize( vec ); + + self->ideal_yaw = vectoyaw( vec ); + + if (self->maxs[2] > DUCKING_MAX_Z) + { + if (self->cast_info.aiflags & AI_NOWALK_FACE) + { +// if (face) + { + int side_result; + + side_result = AI_SideTrace( self, 48, 90, SIDE_RANDOM ); + + if (side_result == AI_SideTrace( self, 48, 90 + (self->ideal_yaw - self->s.angles[YAW]), side_result )) + { + if (side_result < 0) + self->cast_info.currentmove = &shorty_move_lside_step; + else + self->cast_info.currentmove = &shorty_move_rside_step; + + return; + } + + // if no move set, just turn to face + M_ChangeYaw( self ); + + return; + } + } + + if ((VectorDistance( self->s.origin, other->s.origin ) > 72) || !face) + { + if (self->moral > 4) + self->cast_info.currentmove = &shorty_move_avoid_walk; + else + self->cast_info.currentmove = &shorty_move_avoid_run; + } + else + { + if (self->moral > 4) + self->cast_info.currentmove = &shorty_move_avoid_reverse_walk; + else + self->cast_info.currentmove = &shorty_move_avoid_reverse_run; + } + } + else + { + self->cast_info.currentmove = &shorty_move_avoid_crouch_walk; + } + +} + +void shorty_end_stand( edict_t *self ) +{ + if (self->cast_info.move_stand_evade && (self->last_stand_evade > (level.time - 3))) + return; + + if (self->cast_info.currentmove == self->cast_info.move_crstand) + return; + +// if ( ((!self->cast_group) && (random() < 0.8)) +// || ((self->cast_group) && (random() < 0.3))) + { // stand normally + + if ( (self->cast_info.currentmove != &shorty_move_talk7) + && (random() < 0.3) && self->spawnflags & SHORTY_TOMMYGUN) + { // randomly wipe our face + self->cast_info.currentmove = &shorty_move_talk7; + } + else + { + self->cast_info.currentmove = self->cast_info.move_stand; + } + +// return; + } + + AI_CheckTalk(self); +} + +void shorty_long_attack( edict_t *self ) +{ + // keep running, and try to fire if possible + + if (self->maxs[2] < self->cast_info.standing_max_z) + return; + + // self->cast_info.currentmove = &shorty_move_run_shoot; + + if (self->spawnflags & SHORTY_TOMMYGUN) + self->cast_info.currentmove = &shorty_move_run_tg_sht; + else if (self->spawnflags & SHORTY_SHOTGUN) + self->cast_info.currentmove = &shorty_move_run_shg_sht; + else if (self->spawnflags & SHORTY_HMG) + self->cast_info.currentmove = &shorty_move_run_hmg_sht; + else if (self->spawnflags & SHORTY_BAZOOKA) + self->cast_info.currentmove = &shorty_move_run_bazooka_sht; + else if (self->spawnflags & SHORTY_FLAMEGUN) + self->cast_info.currentmove = &shorty_move_run_flamegun_sht; + else if (self->spawnflags & SHORTY_GRENADE) + self->cast_info.currentmove = &shorty_move_run_grenade_sht; + else + { + gi.dprintf ("actor is missing weapon spawnflag\n"); + self->cast_info.currentmove = &shorty_move_run_shg_sht; + } +} + +qboolean shorty_attack( edict_t *self ) +{ + + if (self->maxs[2] < self->cast_info.standing_max_z) + { + self->cast_info.currentmove = &shorty_move_crouch_shoot; + return true; + } + else + { + vec3_t vec; + float dist; + + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + dist = VectorNormalize( vec ); + + // Special case: enemy has flamethrower, run backwards, keep firing + if ( (dist < 384) // they're close + && (self->spawnflags & SHORTY_TOMMYGUN) + && (self->enemy->client) + && (self->enemy->client->pers.weapon) + && (stricmp(self->enemy->client->pers.weapon->classname, "weapon_flamethrower") == 0)) + { + int side_result; + + // see if we can go backwards + if (side_result = AI_SideTrace( self, -64, 0, 1 )) + { + self->cast_info.currentmove = &shorty_move_run_reverse_tg_sht; + return true; + } + + } + + // if just popped out from a corner, just stand here + if (self->dont_takecover_time > (level.time - 2)) + { + goto stand_shoot; + } + + + if ((skill->value > random()*2) && (self->cast_info.last_side_attack_time < (level.time - 1)) && (dist > 128)) + { + // attempt a side-ways attack + + int side_result, side_result2; + + side_result = AI_SideTrace( self, 64, 90, -self->cast_info.last_side_attack ); + + if (side_result) + { + side_result2 = AI_SideTrace( self, 128, 90, side_result ); + + if (side_result2 == side_result) + { + /* + if (side_result < 0) + self->cast_info.currentmove = &shorty_move_lside_run; + else + self->cast_info.currentmove = &shorty_move_rside_run; + */ + if (side_result < 0) + { + if (self->spawnflags & SHORTY_TOMMYGUN) + self->cast_info.currentmove = &shorty_move_lsd_tg_run; + else if (self->spawnflags & SHORTY_SHOTGUN) + self->cast_info.currentmove = &shorty_move_lsd_shg_run; + else if (self->spawnflags & SHORTY_HMG) + // self->cast_info.currentmove = &shorty_move_lsd_hmg_run; + self->cast_info.currentmove = &shorty_move_walk_hmg_sht; + else if (self->spawnflags & SHORTY_BAZOOKA) + self->cast_info.currentmove = &shorty_move_lsd_bazooka_run; + else if (self->spawnflags & SHORTY_FLAMEGUN) + self->cast_info.currentmove = &shorty_move_lsd_flamegun_run; + else if (self->spawnflags & SHORTY_GRENADE) + self->cast_info.currentmove = &shorty_move_lsd_grenade_run; + else + { + gi.dprintf ("missing weapon spawnflag\n"); + self->cast_info.currentmove = &shorty_move_lsd_shg_run; + } + } + else + { + if (self->spawnflags & SHORTY_TOMMYGUN) + self->cast_info.currentmove = &shorty_move_rsd_tg_run; + else if (self->spawnflags & SHORTY_SHOTGUN) + self->cast_info.currentmove = &shorty_move_rsd_shg_run; + else if (self->spawnflags & SHORTY_HMG) + // self->cast_info.currentmove = &shorty_move_rsd_hmg_run; + self->cast_info.currentmove = &shorty_move_walk_hmg_sht; + else if (self->spawnflags & SHORTY_BAZOOKA) + self->cast_info.currentmove = &shorty_move_rsd_bazooka_run; + else if (self->spawnflags & SHORTY_FLAMEGUN) + self->cast_info.currentmove = &shorty_move_rsd_flamegun_run; + else if (self->spawnflags & SHORTY_GRENADE) + self->cast_info.currentmove = &shorty_move_rsd_grenade_run; + else + { + gi.dprintf ("missing weapon spawnflag\n"); + } + } + + + self->ideal_yaw = vectoyaw(vec) + side_result * 90; + + M_ChangeYaw( self ); + + self->cast_info.last_side_attack = side_result; + self->cast_info.last_side_attack_time = level.time; + + return true; + } + } + + } + + self->ideal_yaw = vectoyaw(vec); + + M_ChangeYaw( self ); + + // just shoot like normal + + // walk shooting? + if ((dist > 256) && directly_infront( self, self->enemy ) && AI_SideTrace(self, 32, 0, 1 ) ) + { + if (self->spawnflags & SHORTY_TOMMYGUN) + self->cast_info.currentmove = &shorty_move_walk_tg_sht; + else if (self->spawnflags & SHORTY_HMG) + self->cast_info.currentmove = &shorty_move_walk_hmg_sht; + else if (self->spawnflags & SHORTY_BAZOOKA) + self->cast_info.currentmove = &shorty_move_walk_bazooka_sht; + else if (self->spawnflags & SHORTY_FLAMEGUN) + self->cast_info.currentmove = &shorty_move_walk_flamegun_sht; + else if (self->spawnflags & SHORTY_GRENADE) + self->cast_info.currentmove = &shorty_move_walk_grenade_sht; + else if (self->spawnflags & SHORTY_SHOTGUN) + { + if (dist > 800) // shotgun dude should get closer + self->cast_info.currentmove = &shorty_move_walk_shg_sht; + else + self->cast_info.currentmove = &shorty_move_run_shg_sht; + } + + return true; + } +/* TODO: Reverse walking anim table + else if ((dist < 128) && AI_SideTrace(self, -32, 0, 1 ) ) + { + self->cast_info.currentmove = &thug_move_reverse_walk_shoot; + return true; + } +*/ + // normal attack + +stand_shoot: + + self->ideal_yaw = vectoyaw(vec); + + M_ChangeYaw( self ); + + if (self->spawnflags & SHORTY_TOMMYGUN) + self->cast_info.currentmove = &shorty_move_tg_shoot; + else if (self->spawnflags & SHORTY_SHOTGUN) + self->cast_info.currentmove = &shorty_move_shg_shoot; + else if (self->spawnflags & SHORTY_HMG) + self->cast_info.currentmove = &shorty_move_hmg_shoot; + else if (self->spawnflags & SHORTY_BAZOOKA) + self->cast_info.currentmove = &shorty_move_bazooka_shoot; + else if (self->spawnflags & SHORTY_FLAMEGUN) + self->cast_info.currentmove = &shorty_move_flamegun_shoot; + else if (self->spawnflags & SHORTY_GRENADE) + self->cast_info.currentmove = &shorty_move_grenade_shoot; + else + { + gi.dprintf ("missing weapon spawnflag\n"); + self->cast_info.currentmove = &shorty_move_shg_shoot; + } + + return true; + } + + return false; +} + +void shorty_firegun_cr ( edict_t *self ) +{ + if (self->spawnflags & SHORTY_SHOTGUN) + return; + else if (self->spawnflags & SHORTY_HMG) + return; + else if (self->spawnflags & SHORTY_BAZOOKA) + return; + else if (self->spawnflags & SHORTY_FLAMEGUN) + return; + else if (self->spawnflags & SHORTY_GRENADE) + return; + else if (self->spawnflags & SHORTY_TOMMYGUN) + shorty_firegun (self); + else + gi.dprintf ("error : not tagged right!\n"); +} + +void shorty_hmg_avoid (edict_t *self) +{ + if (self->name_index == NAME_HEILMAN) + { + self->cast_info.avoid(self, self->enemy, true); + } + else if (self->s.frame == FRAME_tg_shoot_07) + self->cast_info.avoid(self, self->enemy, true); + else + self->cast_info.avoid(self, self->enemy, false); +} + +void shorty_firehmg_delay (edict_t *self) +{ + + if (self->name_index == NAME_HEILMAN) + return; + + if (self->s.frame == FRAME_tg_shoot_07) + self->cast_info.currentmove = &shorty_move_hmg_shoot2; + else if (self->s.frame == FRAME_walk_tg_sht_10) + self->cast_info.currentmove = &shorty_move_walk_hmg_sht2; + else + self->cast_info.currentmove = &shorty_move_run_hmg_sht2; +} + +void shorty_bazooka_delay (edict_t *self) +{ + if (self->s.frame == FRAME_tg_shoot_07) + self->cast_info.currentmove = &shorty_move_bazooka_shoot2; + else if (self->s.frame == FRAME_walk_tg_sht_10) + self->cast_info.currentmove = &shorty_move_walk_bazooka_shoot2; + else + self->cast_info.currentmove = &shorty_move_run_bazooka_shoot2; +} + +void shorty_firehmg( edict_t *self ) +{ + + vec3_t start; + vec3_t forward, right; + vec3_t target; + vec3_t aim; + vec3_t offset; + int flash_number; + float dist; + + if (!AI_BeginAttack( self )) + { + // self->s.frame++; // skip the firing frame since it might have a muzzle flash + self->cast_info.currentmove = self->cast_info.move_stand; + + // may need to hack this + // self->s.frame == standframe; + return; + } + + /* + if (self->durationflag) + { + self->durationflag++; + if (self->durationflag > 6) + self->durationflag = 0; + self->s.frame++; + return; + } + + if (self->lastduration++ > 2) + self->lastduration = 0; + */ + + if (self->duration++ > 30) + { + self->duration = 0; + self->cast_info.currentmove = &shorty_move_tg_reload; + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + + // yell at them? + if (self->last_talk_time < (level.time - TALK_FIGHTING_DELAY)) + { + if (self->name_index == NAME_HEILMAN) + { + Voice_Random (self, self->enemy, &heilman[6], 11); + } + else if (self->cast_group != 1) + { + Voice_Random(self, self->enemy, fightsounds, NUM_FIGHTING); + } + else + Voice_Random(self, self->enemy, friendlycombat, NUM_FRIENDLYCOMBAT ); + } + + { + VectorSet(offset, 0, 8, self->viewheight-8); + + AngleVectors (self->s.angles, forward, right, NULL); + G_ProjectSource (self->s.origin, offset, forward, right, start); + + // project enemy back a bit and target there + VectorCopy (self->enemy->s.origin, target); + VectorMA (target, (-0.5 * (crandom())) * (1.0 - (skill->value/4.0)), self->enemy->velocity, target); + + if (self->enemy->maxs[2] < self->cast_info.standing_max_z) + target[2] += - ( 8 * random()); + else + target[2] += self->enemy->viewheight - 4 - (16 * random()); + + flash_number = MZ2_GUNNER_MACHINEGUN_1; + + VectorSubtract (target, start, aim); + dist = VectorNormalize (aim); + } + +#if 0 + // look for a new attack? + if ( (dist < self->cast_info.max_attack_distance) + && ( ((random() < 0.1) && (self->cast_info.last_side_attack_time < (level.time - 2))) + || ( (!(self->cast_info.aiflags & AI_SIDE_ATTACK) || (self->cast_info.last_side_attack_time < (level.time - 2))) + && (directly_infront( self->enemy, self)) + && (self->enemy->client) + && (self->enemy->client->pers.weapon) + && (self->enemy->client->pers.weapon->ammo)))) // if we are directly infront of them, try to strafe + { + if (self->cast_info.aiflags & AI_SIDE_ATTACK) + { + // self->cast_info.currentmove = &shorty_move_shoot; + if (self->spawnflags & SHORTY_TOMMYGUN) + self->cast_info.currentmove = &shorty_move_run_tg_sht; + else if (self->spawnflags & SHORTY_SHOTGUN) + self->cast_info.currentmove = &shorty_move_run_shg_sht; + else if (self->spawnflags & SHORTY_HMG) + self->cast_info.currentmove = &shorty_move_run_hmg_sht; + else if (self->spawnflags & SHORTY_BAZOOKA) + self->cast_info.currentmove = &shorty_move_run_bazooka_sht; + else if (self->spawnflags & SHORTY_FLAMEGUN) + self->cast_info.currentmove = &shorty_move_run_flamegun_sht; + else if (self->spawnflags & SHORTY_GRENADE) + self->cast_info.currentmove = &shorty_move_run_grenade_sht; + else + { + gi.dprintf ("missing weapon spawnflag\n"); + self->cast_info.currentmove = &shorty_move_run_shg_sht; + } + } + else + self->cast_info.attack( self ); + } +#endif + + self->ideal_yaw = vectoyaw( aim ); + + { + fire_bullet (self, start, aim, 15, 50, DEFAULT_BULLET_HSPREAD>>self->acc, DEFAULT_BULLET_VSPREAD>>self->acc, MOD_BARMACHINEGUN); + { + if (self->s.frame == FRAME_tg_shoot_01 + || self->s.frame == FRAME_walk_tg_sht_01 + || self->s.frame == FRAME_run_tg_sht_01) + { + gi.sound(self, CHAN_WEAPON, gi.soundindex("weapons/hmg/hmg.wav"), 1, ATTN_NORM, 0); + } + } + } + +}; + +void shorty_firegun( edict_t *self ) +{ + vec3_t start; + vec3_t forward, right; + vec3_t target; + vec3_t aim; + vec3_t offset; + int flash_number; + float dist; + + if (self->cast_info.aiflags & AI_RELOAD) + { // we need to reload first, just do it now (since it's a similar motion) + shorty_shotgun_reload( self ); + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + + if (self->spawnflags & SHORTY_TOMMYGUN) + { + if ( (self->maxs[2] == self->cast_info.standing_max_z) + && !(self->cast_info.aiflags & AI_SIDE_ATTACK) + && (self->duration++ > 40)) + { + + self->duration = 0; + self->cast_info.currentmove = &shorty_move_tg_reload; + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + } + else if (self->spawnflags & SHORTY_BAZOOKA) + { + if ( (self->maxs[2] == self->cast_info.standing_max_z) + && !(self->cast_info.aiflags & AI_SIDE_ATTACK) + && (self->duration++ > 3)) + { + + self->duration = 0; + self->cast_info.currentmove = &shorty_move_tg_reload; + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + } + else if (self->spawnflags & SHORTY_GRENADE) + { + if ( (self->maxs[2] == self->cast_info.standing_max_z) + && !(self->cast_info.aiflags & AI_SIDE_ATTACK) + && (self->duration++ > 2)) + { + + self->duration = 0; + self->cast_info.currentmove = &shorty_move_tg_reload; + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + } + + + if (!AI_BeginAttack( self )) + { + self->s.frame++; // skip the firing frame since it might have a muzzle flash + return; + } + + // yell at them? + if (self->last_talk_time < (level.time - TALK_FIGHTING_DELAY)) + { + if (self->name_index == NAME_HEILMAN) + { + Voice_Random (self, self->enemy, &heilman[6], 11); + } + else if (self->cast_group != 1) + Voice_Random(self, self->enemy, fightsounds, NUM_FIGHTING); + else + Voice_Random(self, self->enemy, friendlycombat, NUM_FRIENDLYCOMBAT ); + } + + // fire the gun + if (self->spawnflags & SHORTY_BAZOOKA) + { + VectorSet(offset, 0, 8, self->viewheight-8); + + AngleVectors (self->s.angles, forward, right, NULL); + G_ProjectSource (self->s.origin, offset, forward, right, start); + + // project enemy back a bit and target there + VectorCopy (self->enemy->s.origin, target); + + target[2] -= 24; // this will help create more splash damage + + VectorMA (target, (-0.5 * (crandom())) * (1.0 - (skill->value/4.0)), self->enemy->velocity, target); + + if (self->enemy->maxs[2] < self->cast_info.standing_max_z) + target[2] += - ( 8 * random()); + else + target[2] += self->enemy->viewheight - 4 - (16 * random()); + + flash_number = MZ2_GUNNER_MACHINEGUN_1; + + VectorSubtract (target, start, aim); + dist = VectorNormalize (aim); + + // idiot check + { + // clean shot??? + trace_t tr; + vec3_t mins; + vec3_t maxs; + vec3_t origin; + vec3_t destination; + + VectorCopy (self->s.origin, origin); + origin[2] += self->viewheight; + + VectorCopy (self->enemy->s.origin, destination); + destination[2] += self->enemy->viewheight; + + VectorSet (mins, -8, -8, -8); + VectorSet (maxs, 8, 8, 8); + + tr = gi.trace (origin, mins, maxs, destination, self, MASK_SHOT); + + if (tr.ent != self->enemy) + { + if (!(AI_ForceTakeCover( self, self->enemy, false ))) + { + self->cast_info.avoid(self, self->enemy, false); + } + + if (self->duration) + self->duration--; + + return; + } + goto skipbail; // causes bazooka dude to shoot twice + } + } + else + { + VectorSet(offset, 0, 8, self->viewheight-8); + + AngleVectors (self->s.angles, forward, right, NULL); + G_ProjectSource (self->s.origin, offset, forward, right, start); + + // project enemy back a bit and target there + VectorCopy (self->enemy->s.origin, target); + VectorMA (target, (-0.5 * (crandom())) * (1.0 - (skill->value/4.0)), self->enemy->velocity, target); + + if (self->enemy->maxs[2] < self->cast_info.standing_max_z) + target[2] += - ( 8 * random()); + else + target[2] += self->enemy->viewheight - 4 - (16 * random()); + + flash_number = MZ2_GUNNER_MACHINEGUN_1; + + VectorSubtract (target, start, aim); + dist = VectorNormalize (aim); + } + + // look for a new attack? + if ( (dist < self->cast_info.max_attack_distance) + && ( ((random() < 0.1) && (self->cast_info.last_side_attack_time < (level.time - 2))) + || ( (!(self->cast_info.aiflags & AI_SIDE_ATTACK) || (self->cast_info.last_side_attack_time < (level.time - 2))) + && (directly_infront( self->enemy, self)) + && (self->enemy->client) + && (self->enemy->client->pers.weapon) + && (self->enemy->client->pers.weapon->ammo)))) // if we are directly infront of them, try to strafe + { + if (self->cast_info.aiflags & AI_SIDE_ATTACK) + { + // self->cast_info.currentmove = &shorty_move_shoot; + if (self->spawnflags & SHORTY_TOMMYGUN) + self->cast_info.currentmove = &shorty_move_run_tg_sht; + else if (self->spawnflags & SHORTY_SHOTGUN) + self->cast_info.currentmove = &shorty_move_run_shg_sht; + else if (self->spawnflags & SHORTY_BAZOOKA) + self->cast_info.currentmove = &shorty_move_run_bazooka_sht; + else if (self->spawnflags & SHORTY_FLAMEGUN) + self->cast_info.currentmove = &shorty_move_run_flamegun_sht; + else if (self->spawnflags & SHORTY_GRENADE) + self->cast_info.currentmove = &shorty_move_run_grenade_sht; + else + { + gi.dprintf ("missing weapon spawnflag\n"); + self->cast_info.currentmove = &shorty_move_run_shg_sht; + } + } + else + self->cast_info.attack( self ); + } + +skipbail: + + self->ideal_yaw = vectoyaw( aim ); + + if (self->spawnflags & SHORTY_TOMMYGUN) + { + if (self->acc) + cast_fire_bullet (self, start, aim, 4, 0, DEFAULT_BULLET_HSPREAD>>self->acc, DEFAULT_BULLET_VSPREAD>>self->acc, flash_number); + else + cast_fire_bullet (self, start, aim, 4, 0, DEFAULT_BULLET_HSPREAD, DEFAULT_BULLET_VSPREAD, flash_number); + gi.sound(self, CHAN_WEAPON, tommy_soundindex, 1, ATTN_NORM, 0); + } + else if (self->spawnflags & SHORTY_SHOTGUN) + { + // tweeking the damage + cast_fire_shotgun (self, start, aim, 6, 0, DEFAULT_SHOTGUN_HSPREAD, DEFAULT_SHOTGUN_VSPREAD, DEFAULT_SHOTGUN_COUNT, flash_number); + gi.sound(self, CHAN_WEAPON, shotgun_soundindex, 1, ATTN_NORM, 0); + self->cast_info.aiflags |= AI_RELOAD; + } + else if (self->spawnflags & SHORTY_BAZOOKA) + { + { + int damage = 100; + int speed = 900; + + cast_fire_rocket (self, start, aim, damage, speed, MOD_ROCKET); + gi.sound (self, CHAN_WEAPON, rocketgun_soundindex, 1, ATTN_NORM, 0); + } + } + else if (self->spawnflags & SHORTY_FLAMEGUN) + { + int damage = 1; + int kick = 4; + static int flamesnd = 0; + + extern void fire_target_flamethrower (edict_t *self, vec3_t start, vec3_t forward, int damage, int kick, int mod); + + fire_flamethrower(self, start, aim, damage, 0, MOD_FLAMETHROWER); + self->s.renderfx2 |= RF2_FLAMETHROWER; +// fire_target_flamethrower(self, start, aim, damage, 0, MOD_FLAMETHROWER); +// self->s.renderfx2 = RF2_FLAMESHOOTER; + + flamesnd++; + + if (flamesnd > 2) + flamesnd = 0; + + if (flamesnd == 1) + gi.sound(self, CHAN_AUTO, gi.soundindex("weapons/flame_thrower/flame2.wav"), 1, ATTN_NORM, 0); + else if (flamesnd == 2) + gi.sound(self, CHAN_AUTO, gi.soundindex("weapons/flame_thrower/flame3.wav"), 1, ATTN_NORM, 0); + else + gi.sound(self, CHAN_AUTO, gi.soundindex("weapons/flame_thrower/flame1.wav"), 1, ATTN_NORM, 0); + + } + else if (self->spawnflags & SHORTY_GRENADE) + { + fire_grenade (self, start, aim, 150, 450, 2.0, 256); + gi.sound(self, CHAN_AUTO, gi.soundindex("weapons/grenade_launcher/gl_fire.wav"), 1, ATTN_NORM, 0); + } + else + { + gi.dprintf ("Error: Bang Bang not tagged right\n"); + } + +} + +void shorty_shotgun_reload( edict_t *self ) +{ + if (self->cast_info.aiflags & AI_TURN_BLOCKED) + { // abort the side run + self->cast_info.aiflags &= ~AI_TURN_BLOCKED; + AI_EndAttack(self); + } + + if (!(self->spawnflags & SHORTY_SHOTGUN)) + { // no need to reload + return; + } + + gi.sound(self, CHAN_AUTO, shotgun_reload_soundindex, 1, ATTN_NORM, 0); + self->cast_info.aiflags &= ~AI_RELOAD; +} + +void shorty_firegun_right( edict_t *self ) +{ +// vec3_t vec; +// float oldyaw; + + if (!self->enemy || (self->enemy->health <= 0)) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + if (self->cast_info.aiflags & AI_TURN_BLOCKED) + { // abort the side run + self->cast_info.aiflags &= ~AI_TURN_BLOCKED; + AI_EndAttack(self); + return; + } + + // if the path ahead is not clear, abort + if (!AI_SideTrace( self, 96, 0, 1 )) + { + AI_EndAttack(self); + return; + } + +/* + oldyaw = self->s.angles[YAW]; + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + + self->s.angles[YAW] = vectoyaw( vec ); +*/ + self->cast_info.aiflags |= AI_SIDE_ATTACK; + shorty_firegun(self); + self->cast_info.aiflags &= ~AI_SIDE_ATTACK; +/* + // keep running to the side + self->ideal_yaw = self->s.angles[YAW] + 90; + + self->s.angles[YAW] = oldyaw; +*/ +} + +void shorty_firegun_left( edict_t *self ) +{ +// vec3_t vec; +// float oldyaw; + + if (!self->enemy) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + if (self->cast_info.aiflags & AI_TURN_BLOCKED) + { // abort the side run + self->cast_info.aiflags &= ~AI_TURN_BLOCKED; + AI_EndAttack(self); + return; + } + + // if the path ahead is not clear, abort + if (!AI_SideTrace( self, 96, 0, 1 )) + { + AI_EndAttack(self); + return; + } + +/* + oldyaw = self->s.angles[YAW]; + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + + self->s.angles[YAW] = vectoyaw( vec ); +*/ + self->cast_info.aiflags |= AI_SIDE_ATTACK; + shorty_firegun(self); + self->cast_info.aiflags &= ~AI_SIDE_ATTACK; +/* + // keep running to the side + self->ideal_yaw = self->s.angles[YAW] - 90; + + self->s.angles[YAW] = oldyaw; +*/ +} + +void shorty_pain (edict_t *self, edict_t *other, float kick, int damage, int mdx_part, int mdx_subobject) +{ + int orientation; + + if (self->s.renderfx2 & RF2_FLAMETHROWER) + self->s.renderfx2 &= ~RF2_FLAMETHROWER; + + AI_CheckMakeEnemy( self, other ); + + if (level.time < self->pain_debounce_time) + return; + + self->pain_debounce_time = level.time + 3 + random(); + + if (skill->value >= 3) + return; // no pain anims in nightmare + + // faked client pain sound + + if (self->name_index == NAME_HEILMAN) + Voice_Random (self, self->enemy, &heilman[2], 4); + + // gi.sound (self, CHAN_VOICE, gi.soundindex(va("*pain%i_%i.wav", l, r)), 1, ATTN_NORM, 0); + + + // Ridah, randomly don't play an animation, since it' leaves them WAY open to be killed + if (skill->value > 0 && rand()%2) + return; + + + if (other->client || (other->svflags & SVF_MONSTER)) + { + orientation = AI_GetOrientation( self, other ); + } + else + { + orientation = ORIENTATION_CENTER; + } + + if (self->maxs[2] < self->cast_info.standing_max_z) + { // crouching + + switch (orientation) + { + case ORIENTATION_CENTER : + { + self->cast_info.currentmove = &shorty_move_crouch_painC; + break; + } + case ORIENTATION_LEFT : + { + self->cast_info.currentmove = &shorty_move_crouch_painL; + break; + } + case ORIENTATION_RIGHT : + { + self->cast_info.currentmove = &shorty_move_crouch_painR; + break; + } + } + + } + else // standing + { + if ( (mdx_part == PART_BODY) + || (other->client && other->client->pers.weapon && !(other->client->pers.weapon->ammo) && (orientation = rand()%2+1))) + { + switch (orientation) + { + case ORIENTATION_CENTER : + { + self->cast_info.currentmove = &shorty_move_pain_chest; + break; + } + case ORIENTATION_LEFT : + { + self->cast_info.currentmove = &shorty_move_pain_Larm; + break; + } + case ORIENTATION_RIGHT : + { + self->cast_info.currentmove = &shorty_move_pain_Rarm; + break; + } + } + } + else if (mdx_part == PART_LEGS) + { + switch (orientation) + { + case ORIENTATION_CENTER : + { + if (infront(self, other)) + { + self->cast_info.currentmove = &shorty_move_pain_crch; + } + else + { + self->cast_info.currentmove = &shorty_move_pain_butt; + } + break; + } + case ORIENTATION_LEFT : + { + self->cast_info.currentmove = &shorty_move_pain_Lleg; + break; + } + case ORIENTATION_RIGHT : + { + self->cast_info.currentmove = &shorty_move_pain_Rleg; + break; + } + } + } + else if (mdx_part == PART_HEAD) + { + self->cast_info.currentmove = &shorty_move_pain_head; + } + + } + +} + +// JOSEPH 26-FEB-99 +void shorty_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + trace_t tr; + vec3_t end; + edict_t *playthud1, *playthud2; + + if (self->s.renderfx2 & RF2_FLAMETHROWER) + self->s.renderfx2 &= ~RF2_FLAMETHROWER; + + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + self->s.model_parts[PART_GUN2].invisible_objects = (1<<0 | 1<<1); + +// regular death + self->takedamage = DAMAGE_YES; + + if (DeathByGib(self, inflictor, attacker, damage)) + { // gib + self->deadflag = DEAD_DEAD; + GibEntity( self, inflictor, damage ); + return; + } + + if (self->deadflag == DEAD_DEAD) + return; + + self->deadflag = DEAD_DEAD; + + // JOSEPH 7-MAY-99 + if (!(self->cast_info.aiflags & AI_MELEE)) + { + if (self->spawnflags & SHORTY_SHOTGUN) + SpawnTheWeapon (self, "weapon_shotgun_e"); + else if (self->spawnflags & SHORTY_HMG) + SpawnTheWeapon (self, "weapon_heavymachinegun_e"); + else if (self->spawnflags & SHORTY_BAZOOKA) + SpawnTheWeapon (self, "weapon_bazooka_e"); + else if (self->spawnflags & SHORTY_FLAMEGUN) + SpawnTheWeapon (self, "weapon_flamethrower_e"); + else if (self->spawnflags & SHORTY_GRENADE) + SpawnTheWeapon (self, "weapon_grenadelauncher_e"); + else + SpawnTheWeapon (self, "weapon_tommygun_e"); + } + // END JOSEPH + + // EP_SpecialEventDeath (self); + + VectorCopy (self->s.origin, end); + end[2] -= 64; + tr = gi.trace (self->s.origin, self->mins, self->maxs, end, self, MASK_SHOT); + + // JOSEPH 5-JUN-99 + if (mdx_part == PART_HEAD) + { // probably head impact, we should really be passing in the model_part here + self->cast_info.currentmove = &shorty_move_death3; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*8.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + } + else if (self->maxs[2] < self->cast_info.standing_max_z) + { + if (rand()%100 > 50) + { + self->cast_info.currentmove = &shorty_move_crouch_death1; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*10.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*14.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + else + { + self->cast_info.currentmove = &shorty_move_crouch_death2; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*5.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*7.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + } + else + { + int n; + + n = rand() % 4; + if (n == 0) + { + self->cast_info.currentmove = &shorty_move_death1; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*6.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*15.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + else if (n == 1) + { + self->cast_info.currentmove = &shorty_move_death2; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*6.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*10.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + else if (n == 2) + { + self->cast_info.currentmove = &shorty_move_death3; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*8.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + } + else + { + self->cast_info.currentmove = &shorty_move_death4; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*7.0); + playthud1->think = think_playthud; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*16.0); + playthud2->think = think_playthud; + gi.linkentity (playthud2); + } + } + // END JOSEPH + + // JOSEPH 7-DEC-98 + //if (!(self->spawnflags & SHORTY_MELEE)) + //{ + //self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + //Shot_Drop_Item(self, FindItem("Tommygun"), "models/weapons/g_tomgun/tomgun_pu.mdx"); + //} + // END JOSEPH + + if (!self->onfiretime) + { + if (self->name_index == NAME_HEILMAN) + Voice_Random (self, self->enemy, &heilman[0], 2); + else + Voice_Random (self, attacker, &male_specific[8], 2); + } + // gi.sound (self, CHAN_VOICE, gi.soundindex(va("*death%i.wav", (rand()%4)+1)), 1, ATTN_NORM, 0); +} +// END JOSEPH + + +// ========================================================================= + +/*QUAKED cast_shorty (1 .5 0) (-16 -16 -24) (16 16 48) FLASH_LIGHT TRIGGERED_START FLAM_BE BAZOOKA HMG IMMEDIATE_FOLLOW_PATH TOMMYGUN GRENADE + +cast_group defines which group the character is a member of +default cast_group is 0, which is neutral (won't help others out) +player's cast_group is 1 (friendly characters) + +The default weapon for a shorty is the shotgun + +model="models\actors\shorty\" + + +*/ +void SP_cast_shorty(edict_t *self) +{ + int i; + char *head_skin, *body_skin, *legs_skin; + int skin; + + if (deathmatch->value) + { + G_FreeEdict (self); + return; + } + + if (!(self->spawnflags & (SHORTY_FLAMEGUN|SHORTY_BAZOOKA|SHORTY_HMG|SHORTY_TOMMYGUN|SHORTY_GRENADE))) + { + self->spawnflags |= SHORTY_SHOTGUN; + } + + self->movetype = MOVETYPE_STEP; + self->solid = SOLID_BBOX; + self->s.skinnum = (self->skin-1) * 3; + + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 48); + + if (!self->art_skins) + { // use default skins + self->art_skins = "001 001 001"; + } + + if (self->art_skins) + { + // convert spaces to NULL's + for (i=0; i<11; i++) + if (self->art_skins[i] == ' ') + self->art_skins[i] = '\0'; + + head_skin = &self->art_skins[0]; + body_skin = &self->art_skins[4]; + legs_skin = &self->art_skins[8]; + } + else + { + head_skin = body_skin = legs_skin = NULL; + } + + tommy_soundindex = gi.soundindex("weapons/machinegun/machgf1b.wav"); + shotgun_soundindex = gi.soundindex("weapons/shotgun/shotgf1b.wav"); + shotgun_reload_soundindex = gi.soundindex("weapons/shotgun/shotgr1b.wav"); + heavymachinegun_soundindex = gi.soundindex ("weapons/hmg/single.wav"); + rocketgun_soundindex = gi.soundindex ("weapons/rocket_launcher/rl_fire.wav"); + + // ------------------------------------------------------------------------ + // initialize all model_part data + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + + switch (self->head) + { + case 1: + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/shorty/bald_head.mdx"); + break; + case 2: + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/shorty/ski_head.mdx"); + break; + case 3: + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/shorty/weld_head.mdx"); + break; + default: + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/shorty/head.mdx"); + break; + } + if (head_skin) + { + skin = gi.skinindex( self->s.model_parts[PART_HEAD].modelindex, head_skin ); + } + else + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_HEAD].baseskin = self->s.model_parts[PART_HEAD].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/shorty/head.mdx", &self->s.model_parts[PART_HEAD] ); + + self->s.num_parts++; + self->s.model_parts[PART_LEGS].modelindex = gi.modelindex("models/actors/shorty/legs.mdx"); + if (head_skin) + skin = gi.skinindex( self->s.model_parts[PART_LEGS].modelindex, legs_skin ); + else + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_LEGS].baseskin = self->s.model_parts[PART_LEGS].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/shorty/legs.mdx", &self->s.model_parts[PART_LEGS] ); + + self->s.num_parts++; + self->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/actors/shorty/body.mdx"); + if (head_skin) + skin = gi.skinindex( self->s.model_parts[PART_BODY].modelindex, body_skin ); + else + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_BODY].baseskin = self->s.model_parts[PART_BODY].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/shorty/body.mdx", &self->s.model_parts[PART_BODY] ); + +// Ridah, temp only for testing, hard to test with all grenade guys +//if (self->spawnflags & SHORTY_GRENADE) +//self->spawnflags |= SHORTY_SHOTGUN; + + if (self->spawnflags & SHORTY_TOMMYGUN) + { + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/shorty/tommygun.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0;// self->s.skinnum; + gi.GetObjectBounds( "models/actors/shorty/tommygun.mdx", &self->s.model_parts[PART_GUN] ); + } + else if (self->spawnflags & SHORTY_SHOTGUN) + { + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/shorty/shotgun.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0;// self->s.skinnum; + gi.GetObjectBounds( "models/actors/shorty/shotgun.mdx", &self->s.model_parts[PART_GUN] ); + } + else if (self->spawnflags & SHORTY_HMG) + { + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/shorty/hmg.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0;// self->s.skinnum; + gi.GetObjectBounds( "models/actors/shorty/hmg.mdx", &self->s.model_parts[PART_GUN] ); + } + else if (self->spawnflags & SHORTY_BAZOOKA) + { + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/shorty/rocket_lnch.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0;// self->s.skinnum; + gi.GetObjectBounds( "models/actors/shorty/rocket_lnch.mdx", &self->s.model_parts[PART_GUN] ); + } + else if (self->spawnflags & SHORTY_FLAMEGUN) + { + // NOTE TO SELF: tell Jason to make a gun.mdx for this weapon + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/shorty/rocket_lnch.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0;// self->s.skinnum; + gi.GetObjectBounds( "models/actors/shorty/rocket_lnch.mdx", &self->s.model_parts[PART_GUN] ); + } + else if (self->spawnflags & SHORTY_GRENADE) + { + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/shorty/grenade_lnch.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0;// self->s.skinnum; + gi.GetObjectBounds( "models/actors/shorty/grenade_lnch.mdx", &self->s.model_parts[PART_GUN] ); + } + else + { + gi.dprintf ("error no weapon spawnflag\n"); + + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/shorty/shotgun.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0;// self->s.skinnum; + gi.GetObjectBounds( "models/actors/shorty/shotgun.mdx", &self->s.model_parts[PART_GUN] ); + } + + // remove NULL's + if (self->art_skins) + self->art_skins[3] = self->art_skins[7] = ' '; + + // ------------------------------------------------------------------------ + + if (!self->health) + self->health = 100; + + self->gib_health = -200; + self->mass = 200; + + self->gender = GENDER_MALE; + + self->pain = shorty_pain; + self->die = shorty_die; + + self->cast_info.checkattack = AI_CheckAttack; + + self->cast_info.attack = shorty_attack; + self->cast_info.long_attack = shorty_long_attack; + self->cast_info.talk = shorty_talk; + self->cast_info.avoid = shorty_avoid; + + self->cast_info.catch_fire = shorty_catch_fire; + +// Ridah, new AI system stuff! + self->cast_info.max_attack_distance = 2000; + + // Ridah, so they don't shoot the flamegun from too far away + if (self->spawnflags & SHORTY_FLAMEGUN) + self->cast_info.max_attack_distance = 384; + + self->cast_info.move_stand = &shorty_move_stand; + +// self->cast_info.move_crstand = &shorty_move_crouch_stand; + self->cast_info.move_crstand = &shorty_move_crch_astand; + + self->cast_info.move_run = &shorty_move_run_gun_down; + + // RAFAEL + if (self->spawnflags & 1) + self->cast_info.move_runwalk = &shorty_move_walk_gdownFLASHLIGHT; + else + self->cast_info.move_runwalk = &shorty_move_walk_gdown; + + self->cast_info.move_crwalk = &shorty_move_crh_shuf; + + self->cast_info.move_jump = &shorty_move_jump; + + self->cast_info.move_avoid_walk = &shorty_move_avoid_walk; + self->cast_info.move_avoid_run = &shorty_move_avoid_run; + self->cast_info.move_avoid_reverse_walk = &shorty_move_avoid_reverse_walk; + self->cast_info.move_avoid_reverse_run = &shorty_move_avoid_reverse_run; + self->cast_info.move_avoid_crwalk = &shorty_move_avoid_crouch_walk; + + self->cast_info.move_crouch_down = &shorty_move_crouch_stand_down; + self->cast_info.move_stand_up = &shorty_move_crouch_stand_up; + + self->cast_info.move_lside_step = &shorty_move_lside_step; + self->cast_info.move_rside_step = &shorty_move_rside_step; + + self->cast_info.move_start_climb = &shorty_move_clmb_loop; + self->cast_info.move_end_climb = &shorty_move_clmb_over; + +// Ridah, done. + + gi.linkentity (self); + + self->cast_info.currentmove = self->cast_info.move_stand; + + if (!self->cast_info.scale) + self->cast_info.scale = MODEL_SCALE; + + self->s.scale = self->cast_info.scale - 1.0; + + // talk by default + self->cast_info.aiflags |= AI_TALK; + + if (!self->acc) + self->acc = 2; + + walking_cast_start (self); +} + diff --git a/gamesrc/ai_shorty.h b/gamesrc/ai_shorty.h new file mode 100644 index 0000000..aae51ba --- /dev/null +++ b/gamesrc/ai_shorty.h @@ -0,0 +1,719 @@ + +#define FRAME_stand_01 0 +#define FRAME_stand_02 1 +#define FRAME_stand_03 2 +#define FRAME_stand_04 3 +#define FRAME_stand_05 4 +#define FRAME_stand_06 5 +#define FRAME_stand_07 6 +#define FRAME_stand_08 7 +#define FRAME_stand_09 8 +#define FRAME_stand_10 9 +#define FRAME_stand_11 10 +#define FRAME_stand_12 11 +#define FRAME_stand_13 12 +#define FRAME_stand_14 13 +#define FRAME_stand_15 14 +#define FRAME_stand_16 15 +#define FRAME_stand_17 16 +#define FRAME_stand_18 17 +#define FRAME_stand_19 18 +#define FRAME_stand_20 19 +#define FRAME_stand_21 20 +#define FRAME_stand_22 21 +#define FRAME_tg_shoot_01 22 +#define FRAME_tg_shoot_02 23 +#define FRAME_tg_shoot_03 24 +#define FRAME_tg_shoot_04 25 +#define FRAME_tg_shoot_05 26 +#define FRAME_tg_shoot_06 27 +#define FRAME_tg_shoot_07 28 +#define FRAME_shg_shoot_01 29 +#define FRAME_shg_shoot_02 30 +#define FRAME_shg_shoot_03 31 +#define FRAME_shg_shoot_04 32 +#define FRAME_shg_shoot_05 33 +#define FRAME_shg_shoot_06 34 +#define FRAME_shg_shoot_07 35 +#define FRAME_shg_shoot_08 36 +#define FRAME_shg_shoot_09 37 +#define FRAME_shg_shoot_10 38 +#define FRAME_shg_shoot_11 39 +#define FRAME_shg_shoot_12 40 +#define FRAME_shg_shoot_13 41 +#define FRAME_shg_shoot_14 42 +#define FRAME_shg_shoot_15 43 +#define FRAME_tg_reload_01 44 +#define FRAME_tg_reload_02 45 +#define FRAME_tg_reload_03 46 +#define FRAME_tg_reload_04 47 +#define FRAME_tg_reload_05 48 +#define FRAME_tg_reload_06 49 +#define FRAME_tg_reload_07 50 +#define FRAME_tg_reload_08 51 +#define FRAME_tg_reload_09 52 +#define FRAME_talk1_01 53 +#define FRAME_talk1_02 54 +#define FRAME_talk1_03 55 +#define FRAME_talk1_04 56 +#define FRAME_talk1_05 57 +#define FRAME_talk1_06 58 +#define FRAME_talk1_07 59 +#define FRAME_talk1_08 60 +#define FRAME_talk1_09 61 +#define FRAME_talk1_10 62 +#define FRAME_talk1_11 63 +#define FRAME_talk1_12 64 +#define FRAME_talk1_13 65 +#define FRAME_talk1_14 66 +#define FRAME_talk1_15 67 +#define FRAME_talk1_16 68 +#define FRAME_talk1_17 69 +#define FRAME_talk2_01 70 +#define FRAME_talk2_02 71 +#define FRAME_talk2_03 72 +#define FRAME_talk2_04 73 +#define FRAME_talk2_05 74 +#define FRAME_talk2_06 75 +#define FRAME_talk2_07 76 +#define FRAME_talk2_08 77 +#define FRAME_talk2_09 78 +#define FRAME_talk2_10 79 +#define FRAME_talk2_11 80 +#define FRAME_talk2_12 81 +#define FRAME_talk2_13 82 +#define FRAME_talk2_14 83 +#define FRAME_talk2_15 84 +#define FRAME_talk2_16 85 +#define FRAME_talk2_17 86 +#define FRAME_talk3_01 87 +#define FRAME_talk3_02 88 +#define FRAME_talk3_03 89 +#define FRAME_talk3_04 90 +#define FRAME_talk3_05 91 +#define FRAME_talk3_06 92 +#define FRAME_talk3_07 93 +#define FRAME_talk3_08 94 +#define FRAME_talk3_09 95 +#define FRAME_talk3_10 96 +#define FRAME_talk3_11 97 +#define FRAME_talk3_12 98 +#define FRAME_talk3_13 99 +#define FRAME_talk3_14 100 +#define FRAME_talk3_15 101 +#define FRAME_talk3_16 102 +#define FRAME_talk3_17 103 +#define FRAME_talk3_18 104 +#define FRAME_talk3_19 105 +#define FRAME_talk4_01 106 +#define FRAME_talk4_02 107 +#define FRAME_talk4_03 108 +#define FRAME_talk4_04 109 +#define FRAME_talk4_05 110 +#define FRAME_talk4_06 111 +#define FRAME_talk4_07 112 +#define FRAME_talk4_08 113 +#define FRAME_talk4_09 114 +#define FRAME_talk4_10 115 +#define FRAME_talk4_11 116 +#define FRAME_talk4_12 117 +#define FRAME_talk4_13 118 +#define FRAME_talk4_14 119 +#define FRAME_talk4_15 120 +#define FRAME_talk4_16 121 +#define FRAME_talk4_17 122 +#define FRAME_talk4_18 123 +#define FRAME_talk4_19 124 +#define FRAME_talk4_20 125 +#define FRAME_talk5_01 126 +#define FRAME_talk5_02 127 +#define FRAME_talk5_03 128 +#define FRAME_talk5_04 129 +#define FRAME_talk5_05 130 +#define FRAME_talk5_06 131 +#define FRAME_talk5_07 132 +#define FRAME_talk5_08 133 +#define FRAME_talk5_09 134 +#define FRAME_talk5_10 135 +#define FRAME_talk5_11 136 +#define FRAME_talk5_12 137 +#define FRAME_talk5_13 138 +#define FRAME_talk5_14 139 +#define FRAME_talk5_15 140 +#define FRAME_talk5_16 141 +#define FRAME_talk5_17 142 +#define FRAME_talk5_18 143 +#define FRAME_talk5_19 144 +#define FRAME_talk6_01 145 +#define FRAME_talk6_02 146 +#define FRAME_talk6_03 147 +#define FRAME_talk6_04 148 +#define FRAME_talk6_05 149 +#define FRAME_talk6_06 150 +#define FRAME_talk6_07 151 +#define FRAME_talk6_08 152 +#define FRAME_talk6_09 153 +#define FRAME_talk6_10 154 +#define FRAME_talk6_11 155 +#define FRAME_talk6_12 156 +#define FRAME_talk6_13 157 +#define FRAME_talk6_14 158 +#define FRAME_talk6_15 159 +#define FRAME_talk6_16 160 +#define FRAME_talk6_17 161 +#define FRAME_talk6_18 162 +#define FRAME_talk6_19 163 +#define FRAME_talk6_20 164 +#define FRAME_talk6_21 165 +#define FRAME_talk6_22 166 +#define FRAME_talk6_23 167 +#define FRAME_talk6_24 168 +#define FRAME_talk6_25 169 +#define FRAME_talk6_26 170 +#define FRAME_talk6_27 171 +#define FRAME_talk6_28 172 +#define FRAME_talk6_29 173 +#define FRAME_talk6_30 174 +#define FRAME_talk6_31 175 +#define FRAME_talk7_01 176 +#define FRAME_talk7_02 177 +#define FRAME_talk7_03 178 +#define FRAME_talk7_04 179 +#define FRAME_talk7_05 180 +#define FRAME_talk7_06 181 +#define FRAME_talk7_07 182 +#define FRAME_talk7_08 183 +#define FRAME_talk7_09 184 +#define FRAME_talk7_10 185 +#define FRAME_talk7_11 186 +#define FRAME_talk7_12 187 +#define FRAME_talk7_13 188 +#define FRAME_talk7_14 189 +#define FRAME_talk7_15 190 +#define FRAME_talk7_16 191 +#define FRAME_talk7_17 192 +#define FRAME_pain_Rarm_01 193 +#define FRAME_pain_Rarm_02 194 +#define FRAME_pain_Rarm_03 195 +#define FRAME_pain_Rarm_04 196 +#define FRAME_pain_Rarm_05 197 +#define FRAME_pain_Rarm_06 198 +#define FRAME_pain_Rarm_07 199 +#define FRAME_pain_Rarm_08 200 +#define FRAME_pain_Rarm_09 201 +#define FRAME_pain_Larm_01 202 +#define FRAME_pain_Larm_02 203 +#define FRAME_pain_Larm_03 204 +#define FRAME_pain_Larm_04 205 +#define FRAME_pain_Larm_05 206 +#define FRAME_pain_Larm_06 207 +#define FRAME_pain_Larm_07 208 +#define FRAME_pain_Larm_08 209 +#define FRAME_pain_Larm_09 210 +#define FRAME_pain_chest_01 211 +#define FRAME_pain_chest_02 212 +#define FRAME_pain_chest_03 213 +#define FRAME_pain_chest_04 214 +#define FRAME_pain_chest_05 215 +#define FRAME_pain_chest_06 216 +#define FRAME_pain_chest_07 217 +#define FRAME_pain_chest_08 218 +#define FRAME_pain_chest_09 219 +#define FRAME_pain_chest_10 220 +#define FRAME_pain_chest_11 221 +#define FRAME_pain_head_01 222 +#define FRAME_pain_head_02 223 +#define FRAME_pain_head_03 224 +#define FRAME_pain_head_04 225 +#define FRAME_pain_head_05 226 +#define FRAME_pain_head_06 227 +#define FRAME_pain_head_07 228 +#define FRAME_pain_head_08 229 +#define FRAME_pain_Rleg_01 230 +#define FRAME_pain_Rleg_02 231 +#define FRAME_pain_Rleg_03 232 +#define FRAME_pain_Rleg_04 233 +#define FRAME_pain_Rleg_05 234 +#define FRAME_pain_Rleg_06 235 +#define FRAME_pain_Rleg_07 236 +#define FRAME_pain_Rleg_08 237 +#define FRAME_pain_Lleg_01 238 +#define FRAME_pain_Lleg_02 239 +#define FRAME_pain_Lleg_03 240 +#define FRAME_pain_Lleg_04 241 +#define FRAME_pain_Lleg_05 242 +#define FRAME_pain_Lleg_06 243 +#define FRAME_pain_Lleg_07 244 +#define FRAME_pain_Lleg_08 245 +#define FRAME_pain_Lleg_09 246 +#define FRAME_pain_Lleg_10 247 +#define FRAME_pain_crch_01 248 +#define FRAME_pain_crch_02 249 +#define FRAME_pain_crch_03 250 +#define FRAME_pain_crch_04 251 +#define FRAME_pain_crch_05 252 +#define FRAME_pain_crch_06 253 +#define FRAME_pain_crch_07 254 +#define FRAME_pain_crch_08 255 +#define FRAME_pain_crch_09 256 +#define FRAME_pain_butt_01 257 +#define FRAME_pain_butt_02 258 +#define FRAME_pain_butt_03 259 +#define FRAME_pain_butt_04 260 +#define FRAME_pain_butt_05 261 +#define FRAME_pain_butt_06 262 +#define FRAME_pain_butt_07 263 +#define FRAME_pain_butt_08 264 +#define FRAME_jump_01 265 +#define FRAME_jump_02 266 +#define FRAME_jump_03 267 +#define FRAME_jump_04 268 +#define FRAME_jump_05 269 +#define FRAME_jump_06 270 +#define FRAME_jump_07 271 +#define FRAME_jump_08 272 +#define FRAME_jump_09 273 +#define FRAME_jump_10 274 +#define FRAME_jump_11 275 +#define FRAME_jump_12 276 +#define FRAME_jump_13 277 +#define FRAME_jump_14 278 +#define FRAME_jump_15 279 +#define FRAME_jump_16 280 +#define FRAME_death1_01 281 +#define FRAME_death1_02 282 +#define FRAME_death1_03 283 +#define FRAME_death1_04 284 +#define FRAME_death1_05 285 +#define FRAME_death1_06 286 +#define FRAME_death1_07 287 +#define FRAME_death1_08 288 +#define FRAME_death1_09 289 +#define FRAME_death1_10 290 +#define FRAME_death1_11 291 +#define FRAME_death1_12 292 +#define FRAME_death1_13 293 +#define FRAME_death1_14 294 +#define FRAME_death1_15 295 +#define FRAME_death1_16 296 +#define FRAME_death1_17 297 +#define FRAME_death1_18 298 +#define FRAME_death1_19 299 +#define FRAME_death1_20 300 +#define FRAME_death1_21 301 +#define FRAME_death1_22 302 +#define FRAME_death2_01 303 +#define FRAME_death2_02 304 +#define FRAME_death2_03 305 +#define FRAME_death2_04 306 +#define FRAME_death2_05 307 +#define FRAME_death2_06 308 +#define FRAME_death2_07 309 +#define FRAME_death2_08 310 +#define FRAME_death2_09 311 +#define FRAME_death2_10 312 +#define FRAME_death2_11 313 +#define FRAME_death2_12 314 +#define FRAME_death2_13 315 +#define FRAME_death2_14 316 +#define FRAME_death2_15 317 +#define FRAME_death2_16 318 +#define FRAME_death2_17 319 +#define FRAME_death2_18 320 +#define FRAME_death2_19 321 +#define FRAME_death3_01 322 +#define FRAME_death3_02 323 +#define FRAME_death3_03 324 +#define FRAME_death3_04 325 +#define FRAME_death3_05 326 +#define FRAME_death3_06 327 +#define FRAME_death3_07 328 +#define FRAME_death3_08 329 +#define FRAME_death3_09 330 +#define FRAME_death3_10 331 +#define FRAME_death3_11 332 +#define FRAME_death3_12 333 +#define FRAME_death3_13 334 +#define FRAME_death3_14 335 +#define FRAME_death3_15 336 +#define FRAME_death3_16 337 +#define FRAME_death3_17 338 +#define FRAME_death4_01 339 +#define FRAME_death4_02 340 +#define FRAME_death4_03 341 +#define FRAME_death4_04 342 +#define FRAME_death4_05 343 +#define FRAME_death4_06 344 +#define FRAME_death4_07 345 +#define FRAME_death4_08 346 +#define FRAME_death4_09 347 +#define FRAME_death4_10 348 +#define FRAME_death4_11 349 +#define FRAME_death4_12 350 +#define FRAME_death4_13 351 +#define FRAME_death4_14 352 +#define FRAME_death4_15 353 +#define FRAME_death4_16 354 +#define FRAME_death5_01 355 +#define FRAME_death5_02 356 +#define FRAME_death5_03 357 +#define FRAME_death5_04 358 +#define FRAME_death5_05 359 +#define FRAME_death5_06 360 +#define FRAME_death5_07 361 +#define FRAME_death5_08 362 +#define FRAME_death5_09 363 +#define FRAME_death5_10 364 +#define FRAME_death5_11 365 +#define FRAME_death5_12 366 +#define FRAME_death5_13 367 +#define FRAME_death6_01 368 +#define FRAME_death6_02 369 +#define FRAME_death6_03 370 +#define FRAME_death6_04 371 +#define FRAME_death6_05 372 +#define FRAME_death6_06 373 +#define FRAME_death6_07 374 +#define FRAME_death6_08 375 +#define FRAME_death6_09 376 +#define FRAME_death6_10 377 +#define FRAME_death6_11 378 +#define FRAME_death6_12 379 +#define FRAME_death7_01 380 +#define FRAME_death7_02 381 +#define FRAME_death7_03 382 +#define FRAME_death7_04 383 +#define FRAME_death7_05 384 +#define FRAME_death7_06 385 +#define FRAME_death7_07 386 +#define FRAME_death7_08 387 +#define FRAME_death7_09 388 +#define FRAME_death7_10 389 +#define FRAME_death7_11 390 +#define FRAME_death7_12 391 +#define FRAME_death7_13 392 +#define FRAME_death8_01 393 +#define FRAME_death8_02 394 +#define FRAME_death8_03 395 +#define FRAME_death8_04 396 +#define FRAME_death8_05 397 +#define FRAME_death8_06 398 +#define FRAME_death8_07 399 +#define FRAME_death8_08 400 +#define FRAME_death8_09 401 +#define FRAME_death8_10 402 +#define FRAME_death8_11 403 +#define FRAME_crouch_walk_01 404 +#define FRAME_crouch_walk_02 405 +#define FRAME_crouch_walk_03 406 +#define FRAME_crouch_walk_04 407 +#define FRAME_crouch_walk_05 408 +#define FRAME_crouch_walk_06 409 +#define FRAME_crouch_walk_07 410 +#define FRAME_crouch_walk_08 411 +#define FRAME_crouch_walk_09 412 +#define FRAME_crouch_painC_01 413 +#define FRAME_crouch_painC_02 414 +#define FRAME_crouch_painC_03 415 +#define FRAME_crouch_painC_04 416 +#define FRAME_crouch_painC_05 417 +#define FRAME_crouch_painC_06 418 +#define FRAME_crouch_painC_07 419 +#define FRAME_crouch_painC_08 420 +#define FRAME_crouch_painC_09 421 +#define FRAME_crouch_painC_10 422 +#define FRAME_crouch_painC_11 423 +#define FRAME_crouch_painL_01 424 +#define FRAME_crouch_painL_02 425 +#define FRAME_crouch_painL_03 426 +#define FRAME_crouch_painL_04 427 +#define FRAME_crouch_painL_05 428 +#define FRAME_crouch_painL_06 429 +#define FRAME_crouch_painL_07 430 +#define FRAME_crouch_painL_08 431 +#define FRAME_crouch_painL_09 432 +#define FRAME_crouch_painL_10 433 +#define FRAME_crouch_painL_11 434 +#define FRAME_crouch_painR_01 435 +#define FRAME_crouch_painR_02 436 +#define FRAME_crouch_painR_03 437 +#define FRAME_crouch_painR_04 438 +#define FRAME_crouch_painR_05 439 +#define FRAME_crouch_painR_06 440 +#define FRAME_crouch_painR_07 441 +#define FRAME_crouch_painR_08 442 +#define FRAME_crouch_painR_09 443 +#define FRAME_crouch_painR_10 444 +#define FRAME_crouch_painR_11 445 +#define FRAME_crouch_painH_01 446 +#define FRAME_crouch_painH_02 447 +#define FRAME_crouch_painH_03 448 +#define FRAME_crouch_painH_04 449 +#define FRAME_crouch_painH_05 450 +#define FRAME_crouch_painH_06 451 +#define FRAME_crouch_painH_07 452 +#define FRAME_crouch_painH_08 453 +#define FRAME_crouch_painH_09 454 +#define FRAME_crouch_painH_10 455 +#define FRAME_crouch_painH_11 456 +#define FRAME_crouch_shoot_01 457 +#define FRAME_crouch_shoot_02 458 +#define FRAME_crouch_shoot_03 459 +#define FRAME_crouch_shoot_04 460 +#define FRAME_crouch_shoot_05 461 +#define FRAME_crouch_shoot_06 462 +#define FRAME_crouch_shoot_07 463 +#define FRAME_crouch_shoot_08 464 +#define FRAME_crch_shg_sht_01 465 +#define FRAME_crch_shg_sht_02 466 +#define FRAME_crch_shg_sht_03 467 +#define FRAME_crch_shg_sht_04 468 +#define FRAME_crch_shg_sht_05 469 +#define FRAME_crch_shg_sht_06 470 +#define FRAME_crch_shg_sht_07 471 +#define FRAME_crch_shg_sht_08 472 +#define FRAME_crch_shg_sht_09 473 +#define FRAME_crch_shg_sht_10 474 +#define FRAME_crch_shg_sht_11 475 +#define FRAME_crch_shg_sht_12 476 +#define FRAME_crch_shg_sht_13 477 +#define FRAME_crch_shg_sht_14 478 +#define FRAME_crch_shg_sht_15 479 +#define FRAME_crch_shg_sht_16 480 +#define FRAME_crch_shg_sht_17 481 +#define FRAME_stand_crouch_01 482 +#define FRAME_stand_crouch_02 483 +#define FRAME_stand_crouch_03 484 +#define FRAME_stand_crouch_04 485 +#define FRAME_stand_crouch_05 486 +#define FRAME_stand_crouch_06 487 +#define FRAME_stand_crouch_07 488 +#define FRAME_stand_crouch_08 489 +#define FRAME_stand_crouch_09 490 +#define FRAME_stand_crouch_10 491 +#define FRAME_stand_crouch_11 492 +#define FRAME_stand_crouch_12 493 +#define FRAME_stand_crouch_13 494 +#define FRAME_crch_astand_01 495 +#define FRAME_crch_astand_02 496 +#define FRAME_crch_astand_03 497 +#define FRAME_crch_astand_04 498 +#define FRAME_crch_astand_05 499 +#define FRAME_crch_astand_06 500 +#define FRAME_crch_astand_07 501 +#define FRAME_crch_astand_08 502 +#define FRAME_crch_astand_09 503 +#define FRAME_crch_astand_10 504 +#define FRAME_crch_astand_11 505 +#define FRAME_crch_astand_12 506 +#define FRAME_crch_astand_13 507 +#define FRAME_crch_astand_14 508 +#define FRAME_crch_astand_15 509 +#define FRAME_crch_astand_16 510 +#define FRAME_crch_death1_01 511 +#define FRAME_crch_death1_02 512 +#define FRAME_crch_death1_03 513 +#define FRAME_crch_death1_04 514 +#define FRAME_crch_death1_05 515 +#define FRAME_crch_death1_06 516 +#define FRAME_crch_death1_07 517 +#define FRAME_crch_death1_08 518 +#define FRAME_crch_death1_09 519 +#define FRAME_crch_death1_10 520 +#define FRAME_crch_death1_11 521 +#define FRAME_crch_death1_12 522 +#define FRAME_crch_death1_13 523 +#define FRAME_crch_death1_14 524 +#define FRAME_crch_death1_15 525 +#define FRAME_crch_death1_16 526 +#define FRAME_crch_death1_17 527 +#define FRAME_crch_death1_18 528 +#define FRAME_crch_death1_19 529 +#define FRAME_crch_death2_01 530 +#define FRAME_crch_death2_02 531 +#define FRAME_crch_death2_03 532 +#define FRAME_crch_death2_04 533 +#define FRAME_crch_death2_05 534 +#define FRAME_crch_death2_06 535 +#define FRAME_crch_death2_07 536 +#define FRAME_crch_death2_08 537 +#define FRAME_crch_death2_09 538 +#define FRAME_crch_death2_10 539 +#define FRAME_crch_death2_11 540 +#define FRAME_crch_death2_12 541 +#define FRAME_crch_death2_13 542 +#define FRAME_crch_death2_14 543 +#define FRAME_crch_death2_15 544 +#define FRAME_st_clmb_01 545 +#define FRAME_st_clmb_02 546 +#define FRAME_clmb_loop_01 547 +#define FRAME_clmb_loop_02 548 +#define FRAME_clmb_loop_03 549 +#define FRAME_clmb_loop_04 550 +#define FRAME_clmb_loop_05 551 +#define FRAME_clmb_loop_06 552 +#define FRAME_clmb_loop_07 553 +#define FRAME_clmb_loop_08 554 +#define FRAME_clmb_loop_09 555 +#define FRAME_clmb_loop_10 556 +#define FRAME_clmb_over_01 557 +#define FRAME_clmb_over_02 558 +#define FRAME_clmb_over_03 559 +#define FRAME_clmb_over_04 560 +#define FRAME_clmb_over_05 561 +#define FRAME_clmb_over_06 562 +#define FRAME_clmb_over_07 563 +#define FRAME_clmb_over_08 564 +#define FRAME_clmb_over_09 565 +#define FRAME_clmb_over_10 566 +#define FRAME_clmb_over_11 567 +#define FRAME_clmb_over_12 568 +#define FRAME_lside_step_01 569 +#define FRAME_lside_step_02 570 +#define FRAME_lside_step_03 571 +#define FRAME_lside_step_04 572 +#define FRAME_lside_step_05 573 +#define FRAME_lside_step_06 574 +#define FRAME_lside_step_07 575 +#define FRAME_lside_step_08 576 +#define FRAME_lside_step_09 577 +#define FRAME_rside_step_01 578 +#define FRAME_rside_step_02 579 +#define FRAME_rside_step_03 580 +#define FRAME_rside_step_04 581 +#define FRAME_rside_step_05 582 +#define FRAME_rside_step_06 583 +#define FRAME_rside_step_07 584 +#define FRAME_rside_step_08 585 +#define FRAME_rside_step_09 586 +#define FRAME_walk_nw_01 587 +#define FRAME_walk_nw_02 588 +#define FRAME_walk_nw_03 589 +#define FRAME_walk_nw_04 590 +#define FRAME_walk_nw_05 591 +#define FRAME_walk_nw_06 592 +#define FRAME_walk_nw_07 593 +#define FRAME_walk_nw_08 594 +#define FRAME_walk_nw_09 595 +#define FRAME_walk_nw_10 596 +#define FRAME_walk_tg_sht_01 597 +#define FRAME_walk_tg_sht_02 598 +#define FRAME_walk_tg_sht_03 599 +#define FRAME_walk_tg_sht_04 600 +#define FRAME_walk_tg_sht_05 601 +#define FRAME_walk_tg_sht_06 602 +#define FRAME_walk_tg_sht_07 603 +#define FRAME_walk_tg_sht_08 604 +#define FRAME_walk_tg_sht_09 605 +#define FRAME_walk_tg_sht_10 606 +#define FRAME_walk_shg_sht_01 607 +#define FRAME_walk_shg_sht_02 608 +#define FRAME_walk_shg_sht_03 609 +#define FRAME_walk_shg_sht_04 610 +#define FRAME_walk_shg_sht_05 611 +#define FRAME_walk_shg_sht_06 612 +#define FRAME_walk_shg_sht_07 613 +#define FRAME_walk_shg_sht_08 614 +#define FRAME_walk_shg_sht_09 615 +#define FRAME_walk_shg_sht_10 616 +#define FRAME_walk_gdown_01 617 +#define FRAME_walk_gdown_02 618 +#define FRAME_walk_gdown_03 619 +#define FRAME_walk_gdown_04 620 +#define FRAME_walk_gdown_05 621 +#define FRAME_walk_gdown_06 622 +#define FRAME_walk_gdown_07 623 +#define FRAME_walk_gdown_08 624 +#define FRAME_walk_gdown_09 625 +#define FRAME_walk_gdown_10 626 +#define FRAME_run_nw_01 627 +#define FRAME_run_nw_02 628 +#define FRAME_run_nw_03 629 +#define FRAME_run_nw_04 630 +#define FRAME_run_nw_05 631 +#define FRAME_run_nw_06 632 +#define FRAME_run_tg_sht_01 633 +#define FRAME_run_tg_sht_02 634 +#define FRAME_run_tg_sht_03 635 +#define FRAME_run_tg_sht_04 636 +#define FRAME_run_tg_sht_05 637 +#define FRAME_run_tg_sht_06 638 +#define FRAME_run_shg_sht_01 639 +#define FRAME_run_shg_sht_02 640 +#define FRAME_run_shg_sht_03 641 +#define FRAME_run_shg_sht_04 642 +#define FRAME_run_shg_sht_05 643 +#define FRAME_run_shg_sht_06 644 +#define FRAME_run_gun_down_01 645 +#define FRAME_run_gun_down_02 646 +#define FRAME_run_gun_down_03 647 +#define FRAME_run_gun_down_04 648 +#define FRAME_run_gun_down_05 649 +#define FRAME_run_gun_down_06 650 +#define FRAME_run_on_fire_01 651 +#define FRAME_run_on_fire_02 652 +#define FRAME_run_on_fire_03 653 +#define FRAME_run_on_fire_04 654 +#define FRAME_run_on_fire_05 655 +#define FRAME_run_on_fire_06 656 +#define FRAME_rsd_tg_run_01 657 +#define FRAME_rsd_tg_run_02 658 +#define FRAME_rsd_tg_run_03 659 +#define FRAME_rsd_tg_run_04 660 +#define FRAME_rsd_tg_run_05 661 +#define FRAME_rsd_tg_run_06 662 +#define FRAME_lsd_tg_run_01 663 +#define FRAME_lsd_tg_run_02 664 +#define FRAME_lsd_tg_run_03 665 +#define FRAME_lsd_tg_run_04 666 +#define FRAME_lsd_tg_run_05 667 +#define FRAME_lsd_tg_run_06 668 +#define FRAME_rsd_shg_run_01 669 +#define FRAME_rsd_shg_run_02 670 +#define FRAME_rsd_shg_run_03 671 +#define FRAME_rsd_shg_run_04 672 +#define FRAME_rsd_shg_run_05 673 +#define FRAME_rsd_shg_run_06 674 +#define FRAME_lsd_shg_run_01 675 +#define FRAME_lsd_shg_run_02 676 +#define FRAME_lsd_shg_run_03 677 +#define FRAME_lsd_shg_run_04 678 +#define FRAME_lsd_shg_run_05 679 +#define FRAME_lsd_shg_run_06 680 +#define FRAME_hmg_sht_01 681 +#define FRAME_hmg_sht_02 682 +#define FRAME_hmg_sht_03 683 +#define FRAME_hmg_sht_04 684 +#define FRAME_hmg_sht_05 685 +#define FRAME_hmg_sht_06 686 +#define FRAME_hmg_sht_07 687 +#define FRAME_hmg_wlk_01 688 +#define FRAME_hmg_wlk_02 689 +#define FRAME_hmg_wlk_03 690 +#define FRAME_hmg_wlk_04 691 +#define FRAME_hmg_wlk_05 692 +#define FRAME_hmg_wlk_06 693 +#define FRAME_hmg_wlk_07 694 +#define FRAME_hmg_wlk_08 695 +#define FRAME_hmg_wlk_09 696 +#define FRAME_hmg_wlk_10 697 +#define FRAME_hmg_run_01 698 +#define FRAME_hmg_run_02 699 +#define FRAME_hmg_run_03 700 +#define FRAME_hmg_run_04 701 +#define FRAME_hmg_run_05 702 +#define FRAME_hmg_run_06 703 +#define FRAME_hmg_std_01 704 +#define FRAME_hmg_std_02 705 +#define FRAME_hmg_std_03 706 +#define FRAME_hmg_std_04 707 +#define FRAME_hmg_std_05 708 +#define FRAME_hmg_std_06 709 +#define FRAME_hmg_std_07 710 +#define FRAME_hmg_std_08 711 +#define FRAME_hmg_std_09 712 +#define FRAME_hmg_std_10 713 +#define FRAME_hmg_std_11 714 +#define FRAME_hmg_std_12 715 + +#define MODEL_SCALE 1.000000 diff --git a/gamesrc/ai_shorty_tables.h b/gamesrc/ai_shorty_tables.h new file mode 100644 index 0000000..0326330 --- /dev/null +++ b/gamesrc/ai_shorty_tables.h @@ -0,0 +1,1547 @@ +// ai_shorty_tables.h + +//================================================================================================== +// standard moves + +mframe_t shorty_frames_stand[] = +{ + ai_stand, 0.000, shorty_talk_think, // frame 0 + ai_stand, 0.000, shorty_talk_think, // frame 1 + ai_stand, 0.000, shorty_talk_think, // frame 2 + ai_stand, 0.000, shorty_talk_think, // frame 3 + ai_stand, 0.000, shorty_talk_think, // frame 4 + ai_stand, 0.000, shorty_talk_think, // frame 5 + ai_stand, 0.000, shorty_talk_think, // frame 6 + ai_stand, 0.000, shorty_talk_think, // frame 7 + ai_stand, 0.000, shorty_talk_think, // frame 8 + ai_stand, 0.000, shorty_talk_think, // frame 9 + ai_stand, 0.000, shorty_talk_think, // frame 10 + ai_stand, 0.000, shorty_talk_think, // frame 11 + ai_stand, 0.000, shorty_talk_think, // frame 12 + ai_stand, 0.000, shorty_talk_think, // frame 13 + ai_stand, 0.000, shorty_talk_think, // frame 14 + ai_stand, 0.000, shorty_talk_think, // frame 15 + ai_stand, 0.000, shorty_talk_think, // frame 16 + ai_stand, 0.000, shorty_talk_think, // frame 17 + ai_stand, 0.000, shorty_talk_think, // frame 18 + ai_stand, 0.000, shorty_talk_think, // frame 19 + ai_stand, 0.000, shorty_talk_think, // frame 20 + ai_stand, 0.000, shorty_talk_think, // frame 21 + +}; +mmove_t shorty_move_stand = {FRAME_stand_01, FRAME_stand_22, shorty_frames_stand, shorty_end_stand}; + +mframe_t shorty_frames_tg_shoot[] = +{ + ai_charge, 0.000, shorty_firegun, // frame 0 + ai_charge, 0.000, shorty_firegun, // frame 1 + ai_charge, 0.000, shorty_firegun, // frame 2 + ai_charge, 0.000, shorty_firegun, // frame 3 + ai_charge, 0.000, shorty_firegun, // frame 4 + ai_charge, 0.000, shorty_firegun, // frame 5 + ai_charge, 0.000, shorty_firegun, // frame 6 +}; +mmove_t shorty_move_tg_shoot = {FRAME_tg_shoot_01, FRAME_tg_shoot_07, shorty_frames_tg_shoot, AI_EndAttack}; + +mframe_t shorty_frames_hmg_shoot[] = +{ + ai_charge, 0.000, shorty_firehmg, // frame 0 + ai_charge, 0.000, shorty_firehmg, // frame 1 + ai_charge, 0.000, shorty_firehmg, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, NULL, // frame 4 + ai_charge, 0.000, NULL, // frame 5 + ai_charge, 0.000, shorty_firehmg_delay, // frame 6 +}; +mmove_t shorty_move_hmg_shoot = {FRAME_tg_shoot_01, FRAME_tg_shoot_07, shorty_frames_hmg_shoot, AI_EndAttack}; + +mframe_t shorty_frames_bazooka_shoot[] = +{ + ai_charge, 0.000, shorty_firegun, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, NULL, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, NULL, // frame 4 + + ai_charge, 0.000, NULL, // frame 5 + ai_charge, 0.000, shorty_bazooka_delay, // frame 6 +}; +mmove_t shorty_move_bazooka_shoot = {FRAME_tg_shoot_01, FRAME_tg_shoot_07, shorty_frames_bazooka_shoot, AI_EndAttack}; + +mframe_t shorty_frames_grenade_shoot[] = +{ + ai_charge, 0.000, shorty_firegun, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, NULL, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, NULL, // frame 4 + ai_charge, 0.000, NULL, // frame 5 + ai_charge, 0.000, NULL, // frame 6 +}; +mmove_t shorty_move_grenade_shoot = {FRAME_tg_shoot_01, FRAME_tg_shoot_07, shorty_frames_grenade_shoot, AI_EndAttack}; + + +mframe_t shorty_frames_flamegun_shoot[] = +{ + ai_charge, 0.000, shorty_firegun, // frame 0 + ai_charge, 0.000, shorty_firegun, // frame 1 + ai_charge, 0.000, shorty_firegun, // frame 2 + ai_charge, 0.000, shorty_firegun, // frame 3 + ai_charge, 0.000, shorty_firegun, // frame 4 + ai_charge, 0.000, shorty_firegun, // frame 3 + ai_charge, 0.000, shorty_firegun, // frame 4 +}; +mmove_t shorty_move_flamegun_shoot = {FRAME_tg_shoot_01, FRAME_tg_shoot_07, shorty_frames_flamegun_shoot, AI_EndAttack}; + +mframe_t shorty_frames_shg_shoot[] = +{ + ai_charge, 0.000, shorty_firegun, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, NULL, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, NULL, // frame 4 + ai_charge, 0.000, NULL, // frame 5 + ai_charge, 0.000, NULL, // frame 6 + ai_charge, 0.000, shorty_shotgun_reload, // frame 7 + ai_charge, 0.000, NULL, // frame 8 + ai_charge, 0.000, NULL, // frame 9 + ai_charge, 0.000, NULL, // frame 10 + ai_charge, 0.000, NULL, // frame 11 + ai_charge, 0.000, NULL, // frame 12 +}; +mmove_t shorty_move_shg_shoot = {FRAME_shg_shoot_01, FRAME_shg_shoot_13, shorty_frames_shg_shoot, AI_EndAttack}; + +mframe_t shorty_frames_tg_reload[] = +{ + ai_charge, 0.000, NULL, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, NULL, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, shorty_reload_snd, // frame 4 + ai_charge, 0.000, NULL, // frame 5 + ai_charge, 0.000, NULL, // frame 6 + ai_charge, 0.000, NULL, // frame 7 + ai_charge, 0.000, NULL, // frame 8 + +}; +mmove_t shorty_move_tg_reload = {FRAME_tg_reload_01, FRAME_tg_reload_09, shorty_frames_tg_reload, AI_EndAttack}; + +mframe_t shorty_frames_talk1[] = +{ + ai_stand, 0.000, shorty_talk_think, // frame 0 + ai_stand, 0.000, shorty_talk_think, // frame 1 + ai_stand, 0.000, shorty_talk_think, // frame 2 + ai_stand, 0.000, shorty_talk_think, // frame 3 + ai_stand, 0.000, shorty_talk_think, // frame 4 + ai_stand, 0.000, shorty_talk_think, // frame 5 + ai_stand, 0.000, shorty_talk_think, // frame 6 + ai_stand, 0.000, shorty_talk_think, // frame 7 + ai_stand, 0.000, shorty_talk_think, // frame 8 + ai_stand, 0.000, shorty_talk_think, // frame 9 + ai_stand, 0.000, shorty_talk_think, // frame 10 + ai_stand, 0.000, shorty_talk_think, // frame 11 + ai_stand, 0.000, shorty_talk_think, // frame 12 + ai_stand, 0.000, shorty_talk_think, // frame 13 + ai_stand, 0.000, shorty_talk_think, // frame 14 + ai_stand, 0.000, shorty_talk_think, // frame 15 + ai_stand, 0.000, shorty_talk_think, // frame 16 + +}; +mmove_t shorty_move_talk1 = {FRAME_talk1_01, FRAME_talk1_17, shorty_frames_talk1, shorty_end_stand}; + +mframe_t shorty_frames_talk2[] = +{ + ai_stand, 0.000, shorty_talk_think, // frame 0 + ai_stand, 0.000, shorty_talk_think, // frame 1 + ai_stand, 0.000, shorty_talk_think, // frame 2 + ai_stand, 0.000, shorty_talk_think, // frame 3 + ai_stand, 0.000, shorty_talk_think, // frame 4 + ai_stand, 0.000, shorty_talk_think, // frame 5 + ai_stand, 0.000, shorty_talk_think, // frame 6 + ai_stand, 0.000, shorty_talk_think, // frame 7 + ai_stand, 0.000, shorty_talk_think, // frame 8 + ai_stand, 0.000, shorty_talk_think, // frame 9 + ai_stand, 0.000, shorty_talk_think, // frame 10 + ai_stand, 0.000, shorty_talk_think, // frame 11 + ai_stand, 0.000, shorty_talk_think, // frame 12 + ai_stand, 0.000, shorty_talk_think, // frame 13 + ai_stand, 0.000, shorty_talk_think, // frame 14 + ai_stand, 0.000, shorty_talk_think, // frame 15 + ai_stand, 0.000, shorty_talk_think, // frame 16 + +}; +mmove_t shorty_move_talk2 = {FRAME_talk2_01, FRAME_talk2_17, shorty_frames_talk2, shorty_end_stand}; + +mframe_t shorty_frames_talk3[] = +{ + ai_stand, 0.000, shorty_talk_think, // frame 0 + ai_stand, 0.000, shorty_talk_think, // frame 1 + ai_stand, 0.000, shorty_talk_think, // frame 2 + ai_stand, 0.000, shorty_talk_think, // frame 3 + ai_stand, 0.000, shorty_talk_think, // frame 4 + ai_stand, 0.000, shorty_talk_think, // frame 5 + ai_stand, 0.000, shorty_talk_think, // frame 6 + ai_stand, 0.000, shorty_talk_think, // frame 7 + ai_stand, 0.000, shorty_talk_think, // frame 8 + ai_stand, 0.000, shorty_talk_think, // frame 9 + ai_stand, 0.000, shorty_talk_think, // frame 10 + ai_stand, 0.000, shorty_talk_think, // frame 11 + ai_stand, 0.000, shorty_talk_think, // frame 12 + ai_stand, 0.000, shorty_talk_think, // frame 13 + ai_stand, 0.000, shorty_talk_think, // frame 14 + ai_stand, 0.000, shorty_talk_think, // frame 15 + ai_stand, 0.000, shorty_talk_think, // frame 16 + ai_stand, 0.000, shorty_talk_think, // frame 17 + ai_stand, 0.000, shorty_talk_think, // frame 18 + +}; +mmove_t shorty_move_talk3 = {FRAME_talk3_01, FRAME_talk3_19, shorty_frames_talk3, shorty_end_stand}; + +mframe_t shorty_frames_talk4[] = +{ + ai_stand, 0.000, shorty_talk_think, // frame 0 + ai_stand, 0.000, shorty_talk_think, // frame 1 + ai_stand, 0.000, shorty_talk_think, // frame 2 + ai_stand, 0.000, shorty_talk_think, // frame 3 + ai_stand, 0.000, shorty_talk_think, // frame 4 + ai_stand, 0.000, shorty_talk_think, // frame 5 + ai_stand, 0.000, shorty_talk_think, // frame 6 + ai_stand, 0.000, shorty_talk_think, // frame 7 + ai_stand, 0.000, shorty_talk_think, // frame 8 + ai_stand, 0.000, shorty_talk_think, // frame 9 + ai_stand, 0.000, shorty_talk_think, // frame 10 + ai_stand, 0.000, shorty_talk_think, // frame 11 + ai_stand, 0.000, shorty_talk_think, // frame 12 + ai_stand, 0.000, shorty_talk_think, // frame 13 + ai_stand, 0.000, shorty_talk_think, // frame 14 + ai_stand, 0.000, shorty_talk_think, // frame 15 + ai_stand, 0.000, shorty_talk_think, // frame 16 + ai_stand, 0.000, shorty_talk_think, // frame 17 + ai_stand, 0.000, shorty_talk_think, // frame 18 + ai_stand, 0.000, shorty_talk_think, // frame 19 + +}; +mmove_t shorty_move_talk4 = {FRAME_talk4_01, FRAME_talk4_20, shorty_frames_talk4, shorty_end_stand}; + +mframe_t shorty_frames_talk5[] = +{ + ai_stand, 0.000, shorty_talk_think, // frame 0 + ai_stand, 0.000, shorty_talk_think, // frame 1 + ai_stand, 0.000, shorty_talk_think, // frame 2 + ai_stand, 0.000, shorty_talk_think, // frame 3 + ai_stand, 0.000, shorty_talk_think, // frame 4 + ai_stand, 0.000, shorty_talk_think, // frame 5 + ai_stand, 0.000, shorty_talk_think, // frame 6 + ai_stand, 0.000, shorty_talk_think, // frame 7 + ai_stand, 0.000, shorty_talk_think, // frame 8 + ai_stand, 0.000, shorty_talk_think, // frame 9 + ai_stand, 0.000, shorty_talk_think, // frame 10 + ai_stand, 0.000, shorty_talk_think, // frame 11 + ai_stand, 0.000, shorty_talk_think, // frame 12 + ai_stand, 0.000, shorty_talk_think, // frame 13 + ai_stand, 0.000, shorty_talk_think, // frame 14 + ai_stand, 0.000, shorty_talk_think, // frame 15 + ai_stand, 0.000, shorty_talk_think, // frame 16 + ai_stand, 0.000, shorty_talk_think, // frame 17 + ai_stand, 0.000, shorty_talk_think, // frame 18 + +}; +mmove_t shorty_move_talk5 = {FRAME_talk5_01, FRAME_talk5_19, shorty_frames_talk5, shorty_end_stand}; + +mframe_t shorty_frames_talk6[] = +{ + ai_stand, 0.000, shorty_talk_think, // frame 0 + ai_stand, 0.000, shorty_talk_think, // frame 1 + ai_stand, 0.000, shorty_talk_think, // frame 2 + ai_stand, 0.000, shorty_talk_think, // frame 3 + ai_stand, 0.000, shorty_talk_think, // frame 4 + ai_stand, 0.000, shorty_talk_think, // frame 5 + ai_stand, 0.000, shorty_talk_think, // frame 6 + ai_stand, 0.000, shorty_talk_think, // frame 7 + ai_stand, 0.000, shorty_talk_think, // frame 8 + ai_stand, 0.000, shorty_talk_think, // frame 9 + ai_stand, 0.000, shorty_talk_think, // frame 10 + ai_stand, 0.000, shorty_talk_think, // frame 11 + ai_stand, 0.000, shorty_talk_think, // frame 12 + ai_stand, 0.000, shorty_talk_think, // frame 13 + ai_stand, 0.000, shorty_talk_think, // frame 14 + ai_stand, 0.000, shorty_talk_think, // frame 15 + ai_stand, 0.000, shorty_talk_think, // frame 16 + ai_stand, 0.000, shorty_talk_think, // frame 17 + ai_stand, 0.000, shorty_talk_think, // frame 18 + ai_stand, 0.000, shorty_talk_think, // frame 19 + ai_stand, 0.000, shorty_talk_think, // frame 20 + ai_stand, 0.000, shorty_talk_think, // frame 21 + ai_stand, 0.000, shorty_talk_think, // frame 22 + ai_stand, 0.000, shorty_talk_think, // frame 23 + ai_stand, 0.000, shorty_talk_think, // frame 24 + ai_stand, 0.000, shorty_talk_think, // frame 25 + ai_stand, 0.000, shorty_talk_think, // frame 26 + ai_stand, 0.000, shorty_talk_think, // frame 27 + ai_stand, 0.000, shorty_talk_think, // frame 28 + ai_stand, 0.000, shorty_talk_think, // frame 29 + ai_stand, 0.000, shorty_talk_think, // frame 30 + +}; +mmove_t shorty_move_talk6 = {FRAME_talk6_01, FRAME_talk6_31, shorty_frames_talk6, shorty_end_stand}; + +mframe_t shorty_frames_talk7[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 + ai_stand, 0.000, NULL, // frame 9 + ai_stand, 0.000, NULL, // frame 10 + ai_stand, 0.000, NULL, // frame 11 + ai_stand, 0.000, NULL, // frame 12 + ai_stand, 0.000, NULL, // frame 13 + ai_stand, 0.000, NULL, // frame 14 + ai_stand, 0.000, NULL, // frame 15 + ai_stand, 0.000, NULL, // frame 16 + +}; +mmove_t shorty_move_talk7 = {FRAME_talk7_01, FRAME_talk7_17, shorty_frames_talk7, shorty_end_stand}; + +/* +mframe_t shorty_frames_head_wipe[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 + ai_stand, 0.000, NULL, // frame 9 + ai_stand, 0.000, NULL, // frame 10 + ai_stand, 0.000, NULL, // frame 11 + ai_stand, 0.000, NULL, // frame 12 + ai_stand, 0.000, NULL, // frame 13 + ai_stand, 0.000, NULL, // frame 14 + ai_stand, 0.000, NULL, // frame 15 + ai_stand, 0.000, NULL, // frame 16 + ai_stand, 0.000, NULL, // frame 17 + ai_stand, 0.000, NULL, // frame 18 + ai_stand, 0.000, NULL, // frame 19 + ai_stand, 0.000, NULL, // frame 20 + ai_stand, 0.000, NULL, // frame 21 + ai_stand, 0.000, NULL, // frame 22 + ai_stand, 0.000, NULL, // frame 23 + ai_stand, 0.000, NULL, // frame 24 + ai_stand, 0.000, NULL, // frame 25 + ai_stand, 0.000, NULL, // frame 26 + ai_stand, 0.000, NULL, // frame 27 +}; +mmove_t shorty_move_head_wipe = {FRAME_head_wipe_01, FRAME_head_wipe_28, shorty_frames_head_wipe, shorty_end_stand}; +*/ + +mframe_t shorty_frames_pain_Rarm[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t shorty_move_pain_Rarm = {FRAME_pain_Rarm_01, FRAME_pain_Rarm_09, shorty_frames_pain_Rarm, AI_EndAttack}; + +mframe_t shorty_frames_pain_Larm[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 +}; +mmove_t shorty_move_pain_Larm = {FRAME_pain_Larm_01, FRAME_pain_Larm_08, shorty_frames_pain_Larm, AI_EndAttack}; + +mframe_t shorty_frames_pain_chest[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 +}; +mmove_t shorty_move_pain_chest = {FRAME_pain_chest_01, FRAME_pain_chest_10, shorty_frames_pain_chest, AI_EndAttack}; + +mframe_t shorty_frames_pain_head[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 +}; +mmove_t shorty_move_pain_head = {FRAME_pain_head_01, FRAME_pain_head_08, shorty_frames_pain_head, AI_EndAttack}; + +mframe_t shorty_frames_pain_Rleg[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + +}; +mmove_t shorty_move_pain_Rleg = {FRAME_pain_Rleg_01, FRAME_pain_Rleg_08, shorty_frames_pain_Rleg, AI_EndAttack}; + +mframe_t shorty_frames_pain_Lleg[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 +}; +mmove_t shorty_move_pain_Lleg = {FRAME_pain_Lleg_01, FRAME_pain_Lleg_10, shorty_frames_pain_Lleg, AI_EndAttack}; + +mframe_t shorty_frames_pain_crch[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + +}; +mmove_t shorty_move_pain_crch = {FRAME_pain_crch_01, FRAME_pain_crch_09, shorty_frames_pain_crch, AI_EndAttack}; + +mframe_t shorty_frames_pain_butt[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + +}; +mmove_t shorty_move_pain_butt = {FRAME_pain_butt_01, FRAME_pain_butt_08, shorty_frames_pain_butt, AI_EndAttack}; + +mframe_t shorty_frames_jump[] = +{ +// ai_stand, 0.000, NULL, // frame 0 +// ai_stand, 0.000, NULL, // frame 1 +// ai_stand, 0.000, NULL, // frame 2 +// ai_stand, 0.000, NULL, // frame 3 +// ai_stand, 0.000, NULL, // frame 4 + + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, AI_CheckStillInair, // frame 7 + NULL, 0.000, NULL, // frame 8 + +// ai_stand, 0.000, NULL, // frame 9 +// ai_stand, 0.000, NULL, // frame 10 +// ai_stand, 0.000, NULL, // frame 11 +}; +mmove_t shorty_move_jump = {FRAME_jump_06, FRAME_jump_09, shorty_frames_jump, AI_EndJump}; + +mframe_t shorty_frames_death1[] = +{ + ai_move, 5.538, NULL, // frame 0 + ai_move, -11.159, NULL, // frame 1 + ai_move, -2.126, NULL, // frame 2 + ai_move, 2.642, NULL, // frame 3 + ai_move, 7.539, NULL, // frame 4 + ai_move, 8.717, NULL, // frame 5 + ai_move, -0.335, NULL, // frame 6 + ai_move, 1.315, NULL, // frame 7 + ai_move, -9.381, NULL, // frame 8 + ai_move, 3.059, NULL, // frame 9 + ai_move, 4.369, NULL, // frame 10 + ai_move, 17.348, NULL, // frame 11 + ai_move, 13.971, NULL, // frame 12 + ai_move, 9.086, NULL, // frame 13 + ai_move, 1.221, NULL, // frame 14 + ai_move, -1.728, NULL, // frame 15 + ai_move, -0.284, NULL, // frame 16 + ai_move, -0.076, NULL, // frame 17 + ai_move, -0.188, NULL, // frame 18 + ai_move, -0.075, NULL, // frame 19 + ai_move, 0.052, NULL, // frame 20 + ai_move, 0.015, NULL, // frame 21 + +}; +mmove_t shorty_move_death1 = {FRAME_death1_01, FRAME_death1_22, shorty_frames_death1, AI_EndDeath}; + +mframe_t shorty_frames_death2[] = +{ + ai_move, 3.400, NULL, // frame 0 + ai_move, -5.462, NULL, // frame 1 + ai_move, -8.080, NULL, // frame 2 + ai_move, 6.676, NULL, // frame 3 + ai_move, 8.716, NULL, // frame 4 + ai_move, 6.521, NULL, // frame 5 + ai_move, 6.836, NULL, // frame 6 + ai_move, 2.100, NULL, // frame 7 + ai_move, 10.029, NULL, // frame 8 + ai_move, 19.021, NULL, // frame 9 + ai_move, 4.883, NULL, // frame 10 + ai_move, 4.209, NULL, // frame 11 + ai_move, -8.390, NULL, // frame 12 + ai_move, -1.513, NULL, // frame 13 + ai_move, 1.113, NULL, // frame 14 + ai_move, 0.017, NULL, // frame 15 + ai_move, 0.020, NULL, // frame 16 + ai_move, -0.036, NULL, // frame 17 + ai_move, -0.012, NULL, // frame 18 +}; +mmove_t shorty_move_death2 = {FRAME_death2_01, FRAME_death2_19, shorty_frames_death2, AI_EndDeath}; + +mframe_t shorty_frames_death3[] = +{ + ai_move, 4.775, NULL, // frame 0 + ai_move, -19.169, NULL, // frame 1 + ai_move, -3.797, NULL, // frame 2 + ai_move, 1.160, NULL, // frame 3 + ai_move, 15.269, NULL, // frame 4 + ai_move, 23.089, NULL, // frame 5 + ai_move, 19.805, NULL, // frame 6 + ai_move, 4.425, NULL, // frame 7 + ai_move, 5.173, NULL, // frame 8 + ai_move, -0.740, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.203, NULL, // frame 11 + ai_move, 0.266, NULL, // frame 12 + ai_move, 0.086, NULL, // frame 13 + ai_move, -0.015, NULL, // frame 14 + ai_move, 0.027, NULL, // frame 15 + ai_move, 0.024, NULL, // frame 16 + +}; +mmove_t shorty_move_death3 = {FRAME_death3_01, FRAME_death3_17, shorty_frames_death3, AI_EndDeath}; + +mframe_t shorty_frames_death4[] = +{ + ai_move, 3.890, NULL, // frame 0 + ai_move, 6.990, NULL, // frame 1 + ai_move, -8.191, NULL, // frame 2 + ai_move, 14.215, NULL, // frame 3 + ai_move, 17.146, NULL, // frame 4 + ai_move, 9.714, NULL, // frame 5 + ai_move, 1.483, NULL, // frame 6 + ai_move, 6.178, NULL, // frame 7 + ai_move, 1.228, NULL, // frame 8 + ai_move, -0.240, NULL, // frame 9 + ai_move, -0.790, NULL, // frame 10 + ai_move, -0.521, NULL, // frame 11 + ai_move, 0.484, NULL, // frame 12 + ai_move, -0.410, NULL, // frame 13 + ai_move, 0.459, NULL, // frame 14 + ai_move, -0.009, NULL, // frame 15 + +}; +mmove_t shorty_move_death4 = {FRAME_death4_01, FRAME_death4_16, shorty_frames_death4, AI_EndDeath}; + +mframe_t shorty_frames_death5[] = +{ + ai_move, 6.268, NULL, // frame 0 + ai_move, 12.423, NULL, // frame 1 + ai_move, 5.181, NULL, // frame 2 + ai_move, 10.112, NULL, // frame 3 + ai_move, 5.047, NULL, // frame 4 + ai_move, 16.568, NULL, // frame 5 + ai_move, 7.034, NULL, // frame 6 + ai_move, 2.520, NULL, // frame 7 + ai_move, -2.414, NULL, // frame 8 + ai_move, -0.397, NULL, // frame 9 + ai_move, -0.583, NULL, // frame 10 + ai_move, -0.332, NULL, // frame 11 + ai_move, -0.128, NULL, // frame 12 + +}; +mmove_t shorty_move_death5 = {FRAME_death5_01, FRAME_death5_13, shorty_frames_death5, AI_EndDeath}; + +mframe_t shorty_frames_death6[] = +{ + ai_move, -6.192, NULL, // frame 0 + ai_move, -5.745, NULL, // frame 1 + ai_move, 0.539, NULL, // frame 2 + ai_move, -10.390, NULL, // frame 3 + ai_move, -0.039, NULL, // frame 4 + ai_move, 0.036, NULL, // frame 5 + ai_move, -4.263, NULL, // frame 6 + ai_move, -0.696, NULL, // frame 7 + ai_move, 1.591, NULL, // frame 8 + ai_move, -0.695, NULL, // frame 9 + ai_move, -0.362, NULL, // frame 10 + ai_move, 0.276, NULL, // frame 11 + +}; +mmove_t shorty_move_death6 = {FRAME_death6_01, FRAME_death6_12, shorty_frames_death6, AI_EndDeath}; + +mframe_t shorty_frames_death7[] = +{ + ai_move, -3.027, NULL, // frame 0 + ai_move, -9.123, NULL, // frame 1 + ai_move, -2.839, NULL, // frame 2 + ai_move, -15.739, NULL, // frame 3 + ai_move, -2.845, NULL, // frame 4 + ai_move, -5.223, NULL, // frame 5 + ai_move, -1.970, NULL, // frame 6 + ai_move, -1.052, NULL, // frame 7 + ai_move, 2.239, NULL, // frame 8 + ai_move, 6.121, NULL, // frame 9 + ai_move, -0.037, NULL, // frame 10 + ai_move, -0.012, NULL, // frame 11 + ai_move, 0.009, NULL, // frame 12 + +}; +mmove_t shorty_move_death7 = {FRAME_death7_01, FRAME_death7_13, shorty_frames_death7, AI_EndDeath}; + +mframe_t shorty_frames_death8[] = +{ + ai_move, 2.131, NULL, // frame 0 + ai_move, -2.581, NULL, // frame 1 + ai_move, -10.245, NULL, // frame 2 + ai_move, -4.453, NULL, // frame 3 + ai_move, -9.977, NULL, // frame 4 + ai_move, -2.910, NULL, // frame 5 + ai_move, -6.631, NULL, // frame 6 + ai_move, -2.800, NULL, // frame 7 + ai_move, 1.224, NULL, // frame 8 + ai_move, -0.100, NULL, // frame 9 + ai_move, 0.105, NULL, // frame 10 + +}; +mmove_t shorty_move_death8 = {FRAME_death8_01, FRAME_death8_11, shorty_frames_death8, AI_EndDeath}; + + +mframe_t shorty_frames_crh_shuf[] = +{ + ai_run, 6.362, NULL, // frame 0 + ai_run, 5.393, NULL, // frame 1 + ai_run, 5.862, NULL, // frame 2 + ai_run, 8.591, NULL, // frame 3 + ai_run, 5.853, NULL, // frame 4 + ai_run, 5.498, NULL, // frame 5 + ai_run, 5.083, NULL, // frame 6 + ai_run, 5.991, NULL, // frame 7 + ai_run, 6.440, NULL, // frame 8 + +}; +mmove_t shorty_move_crh_shuf = {FRAME_crouch_walk_01, FRAME_crouch_walk_09, shorty_frames_crh_shuf, NULL}; + + +mframe_t shorty_frames_crouch_walk[] = +{ + ai_run, 6.362, NULL, // frame 0 + ai_run, 5.393, NULL, // frame 1 + ai_run, 5.862, NULL, // frame 2 + ai_run, 8.591, NULL, // frame 3 + ai_run, 5.853, NULL, // frame 4 + ai_run, 5.498, NULL, // frame 5 + ai_run, 5.083, NULL, // frame 6 + ai_run, 5.991, NULL, // frame 7 + ai_run, 6.440, NULL, // frame 8 + +}; +mmove_t shorty_move_crouch_walk = {FRAME_crouch_walk_01, FRAME_crouch_walk_09, shorty_frames_crouch_walk, NULL}; + +mframe_t shorty_frames_crouch_painC[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 +}; +mmove_t shorty_move_crouch_painC = {FRAME_crouch_painC_01, FRAME_crouch_painC_07, shorty_frames_crouch_painC, AI_EndAttack}; + +mframe_t shorty_frames_crouch_painL[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 +}; +mmove_t shorty_move_crouch_painL = {FRAME_crouch_painL_01, FRAME_crouch_painL_08, shorty_frames_crouch_painL, AI_EndAttack}; + +mframe_t shorty_frames_crouch_painR[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 +}; +mmove_t shorty_move_crouch_painR = {FRAME_crouch_painR_01, FRAME_crouch_painR_07, shorty_frames_crouch_painR, AI_EndAttack}; + +mframe_t shorty_frames_crouch_shoot[] = +{ + ai_turn, 0.000, shorty_firegun, // frame 0 + ai_turn, 0.000, shorty_firegun_cr, // frame 1 + ai_turn, 0.000, shorty_firegun_cr, // frame 2 + ai_turn, 0.000, shorty_firegun_cr, // frame 3 + ai_turn, 0.000, shorty_firegun_cr, // frame 4 + ai_turn, 0.000, shorty_firegun_cr, // frame 5 +}; +mmove_t shorty_move_crouch_shoot = {FRAME_crouch_shoot_01, FRAME_crouch_shoot_06, shorty_frames_crouch_shoot, AI_EndAttack}; + +mframe_t shorty_frames_crch_shg_sht[] = +{ + ai_turn, 0.000, shorty_firegun, // frame 0 + ai_turn, 0.000, NULL, // frame 1 + ai_turn, 0.000, NULL, // frame 2 + ai_turn, 0.000, NULL, // frame 3 + ai_turn, 0.000, NULL, // frame 4 + ai_turn, 0.000, NULL, // frame 5 + ai_turn, 0.000, NULL, // frame 6 + ai_turn, 0.000, shorty_shotgun_reload, // frame 7 + ai_turn, 0.000, NULL, // frame 8 + ai_turn, 0.000, NULL, // frame 9 + ai_turn, 0.000, NULL, // frame 10 + ai_turn, 0.000, NULL, // frame 11 + ai_turn, 0.000, NULL, // frame 12 +}; +mmove_t shorty_move_crch_shg_sht = {FRAME_crch_shg_sht_01, FRAME_crch_shg_sht_13, shorty_frames_crch_shg_sht, AI_EndAttack}; + +mframe_t shorty_frames_crouch_stand_down[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 +// NULL, 0.000, NULL, // frame 4 +}; +mmove_t shorty_move_crouch_stand_down = {FRAME_stand_crouch_01, FRAME_stand_crouch_04, shorty_frames_crouch_stand_down, AI_End_CrouchStand_Down}; + +mframe_t shorty_frames_crouch_stand_up[] = +{ +// NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 +}; +mmove_t shorty_move_crouch_stand_up = {FRAME_stand_crouch_04, FRAME_stand_crouch_01, shorty_frames_crouch_stand_up, AI_End_CrouchStand_Up}; + +mframe_t shorty_frames_crch_astand[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 + ai_stand, 0.000, NULL, // frame 9 + ai_stand, 0.000, NULL, // frame 10 + ai_stand, 0.000, NULL, // frame 11 + ai_stand, 0.000, NULL, // frame 12 + ai_stand, 0.000, NULL, // frame 13 + ai_stand, 0.000, NULL, // frame 14 + ai_stand, 0.000, NULL, // frame 15 + +}; +mmove_t shorty_move_crch_astand = {FRAME_crch_astand_01, FRAME_crch_astand_16, shorty_frames_crch_astand, NULL}; + +mframe_t shorty_frames_crouch_death1[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 + ai_move, 0.000, NULL, // frame 12 + ai_move, 0.000, NULL, // frame 13 + ai_move, 0.000, NULL, // frame 14 + ai_move, 0.000, NULL, // frame 15 + ai_move, 0.000, NULL, // frame 16 + ai_move, 0.000, NULL, // frame 17 + ai_move, 0.000, NULL, // frame 18 + +}; +mmove_t shorty_move_crouch_death1 = {FRAME_crch_death1_01, FRAME_crch_death1_19, shorty_frames_crouch_death1, AI_EndDeath}; + +mframe_t shorty_frames_crouch_death2[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 + ai_move, 0.000, NULL, // frame 12 + ai_move, 0.000, NULL, // frame 13 + ai_move, 0.000, NULL, // frame 14 + +}; +mmove_t shorty_move_crouch_death2 = {FRAME_crch_death2_01, FRAME_crch_death2_15, shorty_frames_crouch_death2, AI_EndDeath}; + +/* +mframe_t shorty_frames_st_clmb[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 +}; +mmove_t shorty_move_st_clmb = {FRAME_st_clmb_01, FRAME_st_clmb_02, shorty_frames_st_clmb, NULL}; +*/ + +mframe_t shorty_frames_clmb_loop[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 7 + NULL, 0.000, NULL, // frame 8 +}; +mmove_t shorty_move_clmb_loop = {FRAME_clmb_loop_01, FRAME_clmb_loop_09, shorty_frames_clmb_loop, AI_CheckStillClimbingLadder}; + +mframe_t shorty_frames_clmb_over[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 7 + NULL, 0.000, NULL, // frame 8 + NULL, 0.000, NULL, // frame 9 +// NULL, 0.000, NULL, // frame 10 +// NULL, 0.000, NULL, // frame 11 +// NULL, 0.000, NULL, // frame 12 +// NULL, 0.000, NULL, // frame 13 +// NULL, 0.000, NULL, // frame 14 +}; +mmove_t shorty_move_clmb_over = {FRAME_clmb_over_01, FRAME_clmb_over_10, shorty_frames_clmb_over, AI_EndJump}; +/* +mframe_t shorty_frames_lside_step[] = +{ + ai_sidestep, 0.215, NULL, // frame 0 + ai_sidestep, 0.721, NULL, // frame 1 + ai_sidestep, 2.871, NULL, // frame 2 + ai_sidestep, 4.372, NULL, // frame 3 + ai_sidestep, 2.453, NULL, // frame 4 + ai_sidestep, 2.358, NULL, // frame 5 + ai_sidestep, -0.671, NULL, // frame 6 +}; +mmove_t shorty_move_lside_step = {FRAME_lside_step_01, FRAME_lside_step_07, shorty_frames_lside_step, NULL}; + +mframe_t shorty_frames_rside_step[] = +{ + ai_sidestep, 0.676, NULL, // frame 0 + ai_sidestep, -0.261, NULL, // frame 1 + ai_sidestep, -1.790, NULL, // frame 2 + ai_sidestep, -1.300, NULL, // frame 3 + ai_sidestep, -2.096, NULL, // frame 4 + ai_sidestep, -3.586, NULL, // frame 5 + ai_sidestep, -3.024, NULL, // frame 6 +}; +mmove_t shorty_move_rside_step = {FRAME_rside_step_01, FRAME_rside_step_07, shorty_frames_rside_step, NULL}; +*/ + +mframe_t shorty_frames_lside_step[] = +{ + ai_sidestep, 0.193, NULL, // frame 0 + ai_sidestep, 0.145, NULL, // frame 1 + ai_sidestep, -0.441, NULL, // frame 2 + ai_sidestep, -3.371, NULL, // frame 3 + ai_sidestep, -11.950, NULL, // frame 4 + ai_sidestep, -11.676, NULL, // frame 5 + ai_sidestep, -8.798, NULL, // frame 6 + ai_sidestep, -3.155, NULL, // frame 7 + ai_sidestep, -3.032, NULL, // frame 8 +}; +mmove_t shorty_move_lside_step = {FRAME_lside_step_01, FRAME_lside_step_09, shorty_frames_lside_step, AI_EndAttack}; + +mframe_t shorty_frames_rside_step[] = +{ + ai_sidestep, 0.267, NULL, // frame 0 + ai_sidestep, 5.044, NULL, // frame 1 + ai_sidestep, 12.985, NULL, // frame 2 + ai_sidestep, 5.358, NULL, // frame 3 + ai_sidestep, 4.552, NULL, // frame 4 + ai_sidestep, 10.731, NULL, // frame 5 + ai_sidestep, 3.606, NULL, // frame 6 + ai_sidestep, 0.040, NULL, // frame 5 + ai_sidestep, 1.343, NULL, // frame 6 +}; +mmove_t shorty_move_rside_step = {FRAME_rside_step_01, FRAME_rside_step_09, shorty_frames_rside_step, AI_EndAttack}; + + +mframe_t shorty_frames_walk_nw[] = +{ + ai_run, 1.235, NULL, // frame 0 + ai_run, 7.009, NULL, // frame 1 + ai_run, 7.589, AI_EndRun, // frame 2 + ai_run, 13.206, NULL, // frame 3 + ai_run, 3.028, NULL, // frame 4 + ai_run, 2.102, NULL, // frame 5 + ai_run, 24.908, AI_EndRun, // frame 6 + ai_run, 11.297, NULL, // frame 7 + ai_run, 11.088, NULL, // frame 8 + ai_run, 7.711, NULL, // frame 9 +}; +mmove_t shorty_move_walk_nw = {FRAME_walk_nw_01, FRAME_walk_nw_10, shorty_frames_walk_nw, AI_EndRun}; + +mframe_t shorty_frames_walk_tg_sht[] = +{ + ai_turn, 7.963, shorty_firegun, // frame 0 + ai_turn, 3.735, shorty_firegun, // frame 1 + ai_turn, 9.088, shorty_firegun, // frame 2 + ai_turn, 11.945, shorty_firegun, // frame 3 + ai_turn, 6.984, shorty_firegun, // frame 4 + ai_turn, 3.927, shorty_firegun, // frame 5 + ai_turn, 16.424, shorty_firegun, // frame 6 + ai_turn, 4.464, shorty_firegun, // frame 7 + ai_turn, 15.347, shorty_firegun, // frame 8 + ai_turn, 8.590, shorty_firegun, // frame 9 +}; +mmove_t shorty_move_walk_tg_sht = {FRAME_walk_tg_sht_01, FRAME_walk_tg_sht_10, shorty_frames_walk_tg_sht, AI_EndAttack}; + +mframe_t shorty_frames_walk_hmg_sht[] = +{ + ai_turn, 7.963, shorty_firehmg, // frame 0 + ai_turn, 3.735, shorty_firehmg, // frame 1 + ai_turn, 9.088, shorty_firehmg, // frame 2 + ai_turn, 11.945, NULL, // frame 3 + ai_turn, 6.984, NULL, // frame 4 + ai_turn, 3.927, NULL, // frame 5 + ai_turn, 16.424, NULL, // frame 6 + ai_turn, 4.464, NULL, // frame 7 + ai_turn, 15.347, NULL, // frame 8 + ai_turn, 8.590, shorty_firehmg_delay, // frame 9 +}; +mmove_t shorty_move_walk_hmg_sht = {FRAME_walk_tg_sht_01, FRAME_walk_tg_sht_10, shorty_frames_walk_hmg_sht, AI_EndAttack}; + +mframe_t shorty_frames_walk_bazooka_sht[] = +{ + ai_turn, 7.963, shorty_firegun, // frame 0 + ai_turn, 3.735, NULL, // frame 1 + ai_turn, 9.088, NULL, // frame 2 + ai_turn, 11.945, NULL, // frame 3 + ai_turn, 6.984, NULL, // frame 4 + ai_turn, 3.927, NULL, // frame 5 + ai_turn, 16.424, NULL, // frame 6 + ai_turn, 4.464, NULL, // frame 7 + ai_turn, 15.347, NULL, // frame 8 + ai_turn, 8.590, shorty_bazooka_delay, // frame 9 +}; +mmove_t shorty_move_walk_bazooka_sht = {FRAME_walk_tg_sht_01, FRAME_walk_tg_sht_10, shorty_frames_walk_bazooka_sht, AI_EndAttack}; + +mframe_t shorty_frames_walk_grenade_sht[] = +{ + ai_turn, 7.963, shorty_firegun, // frame 0 + ai_turn, 3.735, NULL, // frame 1 + ai_turn, 9.088, NULL, // frame 2 + ai_turn, 11.945, NULL, // frame 3 + ai_turn, 6.984, NULL, // frame 4 + ai_turn, 3.927, NULL, // frame 5 + ai_turn, 16.424, NULL, // frame 6 + ai_turn, 4.464, NULL, // frame 7 + ai_turn, 15.347, NULL, // frame 8 + ai_turn, 8.590, NULL, // frame 9 +}; +mmove_t shorty_move_walk_grenade_sht = {FRAME_walk_tg_sht_01, FRAME_walk_tg_sht_10, shorty_frames_walk_grenade_sht, AI_EndAttack}; + +mframe_t shorty_frames_walk_flamegun_sht[] = +{ + ai_turn, 7.963, shorty_firegun, // frame 0 + ai_turn, 3.735, shorty_firegun, // frame 1 + ai_turn, 9.088, shorty_firegun, // frame 2 + ai_turn, 11.945, shorty_firegun, // frame 3 + ai_turn, 6.984, shorty_firegun, // frame 4 + ai_turn, 3.927, shorty_firegun, // frame 5 + ai_turn, 16.424, shorty_firegun, // frame 6 + ai_turn, 4.464, shorty_firegun, // frame 7 + ai_turn, 15.347, shorty_firegun, // frame 8 + ai_turn, 8.590, shorty_firegun, // frame 9 +}; +mmove_t shorty_move_walk_flamegun_sht = {FRAME_walk_tg_sht_01, FRAME_walk_tg_sht_10, shorty_frames_walk_flamegun_sht, AI_EndAttack}; + + +mframe_t shorty_frames_walk_shg_sht[] = +{ + ai_turn, -2.719, shorty_firegun, // frame 0 + ai_turn, 16.444, NULL, // frame 1 + ai_turn, 6.570, NULL, // frame 2 + ai_turn, 11.042, NULL, // frame 3 + ai_turn, 3.100, NULL, // frame 4 + ai_turn, 5.307, shorty_shotgun_reload, // frame 5 + ai_turn, 16.312, NULL, // frame 6 + ai_turn, 9.812, NULL, // frame 7 + ai_turn, 13.933, NULL, // frame 8 + ai_turn, 8.408, NULL, // frame 9 +}; +mmove_t shorty_move_walk_shg_sht = {FRAME_walk_shg_sht_01, FRAME_walk_shg_sht_10, shorty_frames_walk_shg_sht, AI_EndAttack}; + +mframe_t shorty_frames_walk_gdown[] = +{ + ai_run, 6.758, NULL, // frame 0 + ai_run, 5.223, NULL, // frame 1 + ai_run, 4.615, NULL, // frame 2 + ai_run, 14.711, AI_EndRun, // frame 3 + ai_run, 5.692, NULL, // frame 4 + ai_run, 7.645, NULL, // frame 5 + ai_run, 12.492, AI_EndRun, // frame 6 + ai_run, 6.806, NULL, // frame 7 + ai_run, 12.816, NULL, // frame 8 + ai_run, 12.048, NULL, // frame 9 +}; +mmove_t shorty_move_walk_gdown = {FRAME_walk_gdown_01, FRAME_walk_gdown_10, shorty_frames_walk_gdown, AI_EndRun}; + +mframe_t shorty_frames_run_nw[] = +{ + ai_run, 13.390, NULL, // frame 0 + ai_run, 20.672, NULL, // frame 1 + ai_run, 23.981, NULL, // frame 2 + ai_run, 21.476, NULL, // frame 3 + ai_run, 1.388, NULL, // frame 4 + ai_run, 24.850, NULL, // frame 5 +}; +mmove_t shorty_move_run_nw = {FRAME_run_nw_01, FRAME_run_nw_06, shorty_frames_run_nw, AI_EndRun}; + +mframe_t shorty_frames_run_tg_sht[] = +{ + ai_charge, 18.527, shorty_firegun, // frame 0 + ai_charge, 5.820, NULL, // frame 1 + ai_charge, 38.453, shorty_firegun, // frame 2 + ai_charge, 6.628, NULL, // frame 3 + ai_charge, 22.021, shorty_firegun, // frame 4 + ai_charge, 14.366, NULL, // frame 5 +}; +mmove_t shorty_move_run_tg_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, shorty_frames_run_tg_sht, AI_EndAttack}; + +mframe_t shorty_frames_run_reverse_tg_sht[] = +{ + ai_charge,-14.366, shorty_firegun, // frame 5 + ai_charge,-22.021, NULL, // frame 4 + ai_charge, -6.628, shorty_firegun, // frame 3 + ai_charge,-38.453, NULL, // frame 2 + ai_charge, -5.820, shorty_firegun, // frame 1 + ai_charge,-18.527, NULL, // frame 0 +}; +mmove_t shorty_move_run_reverse_tg_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, shorty_frames_run_reverse_tg_sht, AI_EndAttack}; + +mframe_t shorty_frames_run_hmg_sht[] = +{ + ai_charge, 18.527, shorty_firehmg, // frame 0 + ai_charge, 5.820, shorty_firehmg, // frame 1 + ai_charge, 38.453, shorty_firehmg, // frame 2 + ai_charge, 6.628, NULL, // frame 3 + ai_charge, 22.021, NULL, // frame 4 + ai_charge, 14.366, shorty_firehmg_delay, // frame 5 +}; +mmove_t shorty_move_run_hmg_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, shorty_frames_run_hmg_sht, AI_EndAttack}; + +mframe_t shorty_frames_run_reverse_hmg_sht[] = +{ + ai_charge,-14.366, shorty_firehmg, // frame 5 + ai_charge,-22.021, shorty_firehmg, // frame 4 + ai_charge, -6.628, shorty_firehmg, // frame 3 + ai_charge,-38.453, NULL, // frame 2 + ai_charge, -5.820, NULL, // frame 1 + ai_charge,-18.527, NULL, // frame 0 +}; +mmove_t shorty_move_run_reverse_hmg_sht = {FRAME_run_tg_sht_06, FRAME_run_tg_sht_01, shorty_frames_run_reverse_hmg_sht, AI_EndAttack}; + + +mframe_t shorty_frames_run_bazooka_sht[] = +{ + ai_charge, 18.527, shorty_firegun, // frame 0 + ai_charge, 5.820, NULL, // frame 1 + ai_charge, 38.453, NULL, // frame 2 + ai_charge, 6.628, NULL, // frame 3 + ai_charge, 22.021, NULL, // frame 4 + ai_charge, 14.366, shorty_bazooka_delay, // frame 5 +}; +mmove_t shorty_move_run_bazooka_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, shorty_frames_run_bazooka_sht, AI_EndAttack}; + +mframe_t shorty_frames_run_reverse_bazooka_sht[] = +{ + ai_charge,-14.366, shorty_firegun, // frame 5 + ai_charge,-22.021, NULL, // frame 4 + ai_charge, -6.628, NULL, // frame 3 + ai_charge,-38.453, NULL, // frame 2 + ai_charge, -5.820, NULL, // frame 1 + ai_charge,-18.527, NULL, // frame 0 +}; +mmove_t shorty_move_run_reverse_bazooka_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, shorty_frames_run_reverse_bazooka_sht, AI_EndAttack}; + + +mframe_t shorty_frames_run_grenade_sht[] = +{ + ai_charge, 18.527, shorty_firegun, // frame 0 + ai_charge, 5.820, NULL, // frame 1 + ai_charge, 38.453, NULL, // frame 2 + ai_charge, 6.628, NULL, // frame 3 + ai_charge, 22.021, NULL, // frame 4 + ai_charge, 14.366, NULL, // frame 5 +}; +mmove_t shorty_move_run_grenade_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, shorty_frames_run_grenade_sht, AI_EndAttack}; + +mframe_t shorty_frames_run_reverse_grenade_sht[] = +{ + ai_charge,-14.366, shorty_firegun, // frame 5 + ai_charge,-22.021, NULL, // frame 4 + ai_charge, -6.628, NULL, // frame 3 + ai_charge,-38.453, NULL, // frame 2 + ai_charge, -5.820, NULL, // frame 1 + ai_charge,-18.527, NULL, // frame 0 +}; +mmove_t shorty_move_run_reverse_grenade_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, shorty_frames_run_reverse_grenade_sht, AI_EndAttack}; + + +mframe_t shorty_frames_run_flamegun_sht[] = +{ + ai_charge, 18.527, shorty_firegun, // frame 0 + ai_charge, 5.820, shorty_firegun, // frame 1 + ai_charge, 38.453, shorty_firegun, // frame 2 + ai_charge, 6.628, shorty_firegun, // frame 3 + ai_charge, 22.021, shorty_firegun, // frame 4 + ai_charge, 14.366, shorty_firegun, // frame 5 +}; +mmove_t shorty_move_run_flamegun_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, shorty_frames_run_flamegun_sht, AI_EndAttack}; + +mframe_t shorty_frames_run_reverse_flamegun_sht[] = +{ + ai_charge,-14.366, shorty_firegun, // frame 5 + ai_charge,-22.021, shorty_firegun, // frame 4 + ai_charge, -6.628, shorty_firegun, // frame 3 + ai_charge,-38.453, shorty_firegun, // frame 2 + ai_charge, -5.820, shorty_firegun, // frame 1 + ai_charge,-18.527, shorty_firegun, // frame 0 +}; +mmove_t shorty_move_run_reverse_flamegun_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, shorty_frames_run_reverse_flamegun_sht, AI_EndAttack}; + + +mframe_t shorty_frames_run_shg_sht[] = +{ + ai_charge, 18.527, shorty_firegun, // frame 0 + ai_charge, -1.017, NULL, // frame 1 + ai_charge, 37.949, NULL, // frame 2 + ai_charge, 10.778, shorty_shotgun_reload, // frame 3 + ai_charge, 16.787, NULL, // frame 4 + ai_charge, 22.273, NULL, // frame 5 +}; +mmove_t shorty_move_run_shg_sht = {FRAME_run_shg_sht_01, FRAME_run_shg_sht_06, shorty_frames_run_shg_sht, AI_EndAttack}; + +mframe_t shorty_frames_run_gun_down[] = +{ + ai_run, 14.752, NULL, // frame 0 + ai_run, 12.524, NULL, // frame 1 + ai_run, 31.706, NULL, // frame 2 + ai_run, 13.085, NULL, // frame 3 + ai_run, 17.995, NULL, // frame 4 + ai_run, 16.366, NULL, // frame 5 +}; +mmove_t shorty_move_run_gun_down = {FRAME_run_gun_down_01, FRAME_run_gun_down_06, shorty_frames_run_gun_down, AI_EndRun}; + +mframe_t shorty_frames_run_on_fire[] = +{ + ai_onfire_run, 15.378, NULL, // frame 0 + ai_onfire_run, 26.701, NULL, // frame 1 + ai_onfire_run, 18.632, NULL, // frame 2 + ai_onfire_run, 18.586, NULL, // frame 3 + ai_onfire_run, 19.691, NULL, // frame 4 + ai_onfire_run, 6.251, NULL, // frame 5 +}; +mmove_t shorty_move_run_on_fire = {FRAME_run_on_fire_01, FRAME_run_on_fire_06, shorty_frames_run_on_fire, NULL}; + +mframe_t shorty_frames_lsd_tg_run[] = +{ + ai_sidestep,-17.749, shorty_firegun_left, // frame 0 + ai_sidestep, -7.890, shorty_firegun_left, // frame 1 + ai_sidestep,-32.494, shorty_firegun_left, // frame 2 + ai_sidestep,-13.723, shorty_firegun_left, // frame 3 + ai_sidestep,-17.575, shorty_firegun_left, // frame 4 + ai_sidestep,-18.599, shorty_firegun_left, // frame 5 +}; +mmove_t shorty_move_lsd_tg_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_06, shorty_frames_lsd_tg_run, NULL}; +//mmove_t shorty_move_rsd_tg_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_06, shorty_frames_lsd_tg_run, NULL}; + +mframe_t shorty_frames_rsd_tg_run[] = +{ + ai_sidestep,16.578, shorty_firegun_right, // frame 0 + ai_sidestep, 6.597, shorty_firegun_right, // frame 1 + ai_sidestep,31.200, shorty_firegun_right, // frame 2 + ai_sidestep,16.163, shorty_firegun_right, // frame 3 + ai_sidestep,12.506, shorty_firegun_right, // frame 4 + ai_sidestep,22.445, shorty_firegun_right, // frame 5 +}; +mmove_t shorty_move_rsd_tg_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_06, shorty_frames_rsd_tg_run, NULL}; +//mmove_t shorty_move_lsd_tg_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_06, shorty_frames_rsd_tg_run, NULL}; + + + + +mframe_t shorty_frames_lsd_hmg_run[] = +{ + ai_sidestep,-17.749, shorty_firegun_left, // frame 0 + ai_sidestep, -7.890, NULL, // frame 1 + ai_sidestep,-32.494, shorty_firegun, // frame 2 + ai_sidestep,-13.723, NULL, // frame 3 + ai_sidestep,-17.575, shorty_firegun, // frame 4 + ai_sidestep,-18.599, NULL, // frame 5 +}; +mmove_t shorty_move_lsd_hmg_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_06, shorty_frames_lsd_hmg_run, NULL}; +//mmove_t shorty_move_rsd_hmg_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_06, shorty_frames_lsd_hmg_run, NULL}; + +mframe_t shorty_frames_rsd_hmg_run[] = +{ + ai_sidestep,16.578, shorty_firegun_right, // frame 0 + ai_sidestep, 6.597, NULL, // frame 1 + ai_sidestep,31.200, shorty_firegun, // frame 2 + ai_sidestep,16.163, NULL, // frame 3 + ai_sidestep,12.506, shorty_firegun, // frame 4 + ai_sidestep,22.445, NULL, // frame 5 +}; +mmove_t shorty_move_rsd_hmg_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_06, shorty_frames_rsd_hmg_run, NULL}; +//mmove_t shorty_move_lsd_hmg_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_06, shorty_frames_rsd_hmg_run, NULL}; + +mframe_t shorty_frames_lsd_bazooka_run[] = +{ + ai_sidestep,-17.749, shorty_firegun_left, // frame 0 + ai_sidestep, -7.890, NULL, // frame 1 + ai_sidestep,-32.494, NULL, // frame 2 + ai_sidestep,-13.723, NULL, // frame 3 + ai_sidestep,-17.575, NULL, // frame 4 + ai_sidestep,-18.599, NULL, // frame 5 +}; +mmove_t shorty_move_lsd_bazooka_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_06, shorty_frames_lsd_bazooka_run, NULL}; +//mmove_t shorty_move_rsd_bazooka_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_06, shorty_frames_lsd_bazooka_run, NULL}; + +mframe_t shorty_frames_rsd_bazooka_run[] = +{ + ai_sidestep,16.578, shorty_firegun_right, // frame 0 + ai_sidestep, 6.597, NULL, // frame 1 + ai_sidestep,31.200, NULL, // frame 2 + ai_sidestep,16.163, NULL, // frame 3 + ai_sidestep,12.506, NULL, // frame 4 + ai_sidestep,22.445, NULL, // frame 5 +}; +mmove_t shorty_move_rsd_bazooka_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_06, shorty_frames_rsd_bazooka_run, NULL}; +//mmove_t shorty_move_lsd_bazooka_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_06, shorty_frames_rsd_bazooka_run, NULL}; + +mframe_t shorty_frames_lsd_grenade_run[] = +{ + ai_sidestep,-17.749, shorty_firegun_left, // frame 0 + ai_sidestep, -7.890, NULL, // frame 1 + ai_sidestep,-32.494, NULL, // frame 2 + ai_sidestep,-13.723, NULL, // frame 3 + ai_sidestep,-17.575, NULL, // frame 4 + ai_sidestep,-18.599, NULL, // frame 5 +}; +mmove_t shorty_move_lsd_grenade_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_06, shorty_frames_lsd_grenade_run, NULL}; +//mmove_t shorty_move_rsd_grenade_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_06, shorty_frames_lsd_grenade_run, NULL}; + +mframe_t shorty_frames_rsd_grenade_run[] = +{ + ai_sidestep,16.578, shorty_firegun_right, // frame 0 + ai_sidestep, 6.597, NULL, // frame 1 + ai_sidestep,31.200, NULL, // frame 2 + ai_sidestep,16.163, NULL, // frame 3 + ai_sidestep,12.506, NULL, // frame 4 + ai_sidestep,22.445, NULL, // frame 5 +}; +mmove_t shorty_move_rsd_grenade_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_06, shorty_frames_rsd_grenade_run, NULL}; +//mmove_t shorty_move_lsd_grenade_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_06, shorty_frames_rsd_grenade_run, NULL}; + +mframe_t shorty_frames_lsd_flamegun_run[] = +{ + ai_sidestep,-17.749, shorty_firegun_left, // frame 0 + ai_sidestep, -7.890, shorty_firegun_left, // frame 1 + ai_sidestep,-32.494, shorty_firegun_left, // frame 2 + ai_sidestep,-13.723, shorty_firegun_left, // frame 3 + ai_sidestep,-17.575, shorty_firegun_left, // frame 4 + ai_sidestep,-18.599, shorty_firegun_left, // frame 5 +}; +mmove_t shorty_move_lsd_flamegun_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_06, shorty_frames_lsd_flamegun_run, NULL}; +//mmove_t shorty_move_rsd_flamegun_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_06, shorty_frames_lsd_flamegun_run, NULL}; + +mframe_t shorty_frames_rsd_flamegun_run[] = +{ + ai_sidestep,16.578, shorty_firegun_right, // frame 0 + ai_sidestep, 6.597, shorty_firegun_right, // frame 1 + ai_sidestep,31.200, shorty_firegun_right, // frame 2 + ai_sidestep,16.163, shorty_firegun_right, // frame 3 + ai_sidestep,12.506, shorty_firegun_right, // frame 4 + ai_sidestep,22.445, shorty_firegun_right, // frame 5 +}; +mmove_t shorty_move_rsd_flamegun_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_06, shorty_frames_rsd_flamegun_run, NULL}; +//mmove_t shorty_move_lsd_flamegun_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_06, shorty_frames_rsd_flamegun_run, NULL}; + +mframe_t shorty_frames_lsd_shg_run[] = +{ + ai_sidestep,- 24.221*0.75, NULL, // frame 0 + ai_sidestep,- 20.466*0.75, shorty_firegun_left, // frame 1 + ai_sidestep,- 32.136*0.75, NULL, // frame 2 + ai_sidestep,- 39.252*0.75, shorty_shotgun_reload, // frame 3 + ai_sidestep,- 29.464*0.75, NULL, // frame 4 + ai_sidestep,- 23.279*0.75, NULL, // frame 5 +}; +//mmove_t shorty_move_lsd_shg_run = {FRAME_rsd_shg_run_01, FRAME_rsd_shg_run_06, shorty_frames_lsd_shg_run, NULL}; +mmove_t shorty_move_rsd_shg_run = {FRAME_lsd_shg_run_01, FRAME_lsd_shg_run_06, shorty_frames_lsd_shg_run, NULL}; + +mframe_t shorty_frames_rsd_shg_run[] = +{ + ai_sidestep, 26.812*0.75, NULL, // frame 0 + ai_sidestep, 18.773*0.75, shorty_firegun_right, // frame 1 + ai_sidestep, 34.600*0.75, NULL, // frame 2 + ai_sidestep, 36.035*0.75, shorty_shotgun_reload, // frame 3 + ai_sidestep, 31.354*0.75, NULL, // frame 4 + ai_sidestep, 23.697*0.75, NULL, // frame 5 +}; +//mmove_t shorty_move_rsd_shg_run = {FRAME_lsd_shg_run_01, FRAME_lsd_shg_run_06, shorty_frames_rsd_shg_run, NULL}; +mmove_t shorty_move_lsd_shg_run = {FRAME_rsd_shg_run_01, FRAME_rsd_shg_run_06, shorty_frames_rsd_shg_run, NULL}; + +//================================================================================================================ +// created moves +mframe_t shorty_frames_avoid_walk[] = +{ + ai_turn, 6.758, NULL, // frame 0 + ai_turn, 5.223, NULL, // frame 1 + ai_turn, 4.615, NULL, // frame 2 + ai_turn, 14.711, NULL, // frame 3 + ai_turn, 5.692, NULL, // frame 4 + ai_turn, 7.645, NULL, // frame 5 + ai_turn, 12.492, NULL, // frame 6 + ai_turn, 6.806, NULL, // frame 7 + ai_turn, 12.816, NULL, // frame 8 + ai_turn, 12.048, NULL, // frame 9 +}; +mmove_t shorty_move_avoid_walk = {FRAME_walk_gdown_01, FRAME_walk_gdown_10, shorty_frames_avoid_walk, AI_EndAttack}; + +mframe_t shorty_frames_avoid_crouch_walk[] = +{ + ai_turn, 5.383, NULL, // frame 0 + ai_turn, 5.466, NULL, // frame 1 + ai_turn, 3.693, NULL, // frame 2 + ai_turn, 5.865, NULL, // frame 3 + ai_turn, 13.852, NULL, // frame 4 + ai_turn, 6.698, NULL, // frame 5 + ai_turn, 3.743, NULL, // frame 6 +}; +mmove_t shorty_move_avoid_crouch_walk = {FRAME_crouch_walk_01, FRAME_crouch_walk_07, shorty_frames_avoid_crouch_walk, AI_EndAttack}; + +mframe_t shorty_frames_walk_gdownFLASHLIGHT[] = +{ + ai_runFLASHLIGHT, 6.758, NULL, // frame 0 + ai_runFLASHLIGHT, 5.223, NULL, // frame 1 + ai_runFLASHLIGHT, 4.615, NULL, // frame 2 + ai_runFLASHLIGHT, 14.711, AI_EndRun, // frame 3 + ai_runFLASHLIGHT, 5.692, NULL, // frame 4 + ai_runFLASHLIGHT, 7.645, NULL, // frame 5 + ai_runFLASHLIGHT, 12.492, AI_EndRun, // frame 6 + ai_runFLASHLIGHT, 6.806, NULL, // frame 7 + ai_runFLASHLIGHT, 12.816, NULL, // frame 8 + ai_runFLASHLIGHT, 12.048, NULL, // frame 9 +}; +mmove_t shorty_move_walk_gdownFLASHLIGHT = {FRAME_walk_gdown_01, FRAME_walk_gdown_10, shorty_frames_walk_gdownFLASHLIGHT, AI_EndRun }; + +mframe_t shorty_frames_avoid_run[] = +{ + ai_turn, 26.748, NULL, // frame 0 + ai_turn, 17.188, NULL, // frame 1 + ai_turn, 31.486, NULL, // frame 2 + ai_turn, 31.052, NULL, // frame 3 + ai_turn, 23.944, NULL, // frame 4 + ai_turn, 24.549, NULL, // frame 5 +}; +mmove_t shorty_move_avoid_run = {FRAME_run_gun_down_01, FRAME_run_gun_down_06, shorty_frames_avoid_run, AI_EndAttack}; + +mframe_t shorty_frames_avoid_reverse_walk[] = +{ + ai_turn, -7.640, NULL, // frame 5 + ai_turn, -8.913, NULL, // frame 4 + ai_turn, -4.200, NULL, // frame 3 + ai_turn, -3.111, NULL, // frame 2 + ai_turn, -6.504, NULL, // frame 1 + ai_turn, -3.636, NULL, // frame 0 +}; +mmove_t shorty_move_avoid_reverse_walk = {FRAME_walk_gdown_06, FRAME_walk_gdown_01, shorty_frames_avoid_reverse_walk, AI_EndAttack}; + +mframe_t shorty_frames_avoid_reverse_run[] = +{ + ai_turn, - 24.549, NULL, // frame 5 + ai_turn, - 23.944, NULL, // frame 4 + ai_turn, - 31.052, NULL, // frame 3 + ai_turn, - 31.486, NULL, // frame 2 + ai_turn, - 17.188, NULL, // frame 1 + ai_turn, - 26.748, NULL, // frame 0 +}; +mmove_t shorty_move_avoid_reverse_run = {FRAME_run_gun_down_06, FRAME_run_gun_down_03, shorty_frames_avoid_reverse_run, AI_EndAttack}; + + +mframe_t shorty_frames_walk_dokey[] = +{ + ai_runDOKEY, 6.758, EP_ReachedDoKey, // frame 0 + ai_runDOKEY, 5.223, EP_ReachedDoKey, // frame 1 + ai_runDOKEY, 4.615, EP_ReachedDoKey, // frame 2 + ai_runDOKEY, 14.711, EP_ReachedDoKey, // frame 3 + ai_runDOKEY, 5.692, EP_ReachedDoKey, // frame 4 + ai_runDOKEY, 7.645, EP_ReachedDoKey, // frame 5 + ai_runDOKEY, 12.492, EP_ReachedDoKey, // frame 6 + ai_runDOKEY, 6.806, EP_ReachedDoKey, // frame 7 + ai_runDOKEY, 12.816, EP_ReachedDoKey, // frame 8 + ai_runDOKEY, 12.048, EP_ReachedDoKey, // frame 9 +}; +mmove_t shorty_move_walk_dokey = {FRAME_walk_gdown_01, FRAME_walk_gdown_10, shorty_frames_walk_dokey, EP_ReachedDoKey}; + +mframe_t shorty_frames_crch_dokey[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 + ai_stand, 0.000, NULL, // frame 9 + ai_stand, 0.000, NULL, // frame 10 + ai_stand, 0.000, NULL, // frame 11 + ai_stand, 0.000, NULL, // frame 12 + ai_stand, 0.000, NULL, // frame 13 + ai_stand, 0.000, NULL, // frame 14 + ai_stand, 0.000, NULL, // frame 15 + +}; +mmove_t shorty_move_crch_dokey = {FRAME_crch_astand_01, FRAME_crch_astand_16, shorty_frames_crch_dokey, EP_EndDoKey}; + +/* +custom moves to allow hmg sound to and visuals to behave as player hmg +*/ + +mframe_t shorty_frames_hmg_shoot2[] = +{ + ai_charge, 0.000, NULL, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, NULL, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, shorty_hmg_avoid, // frame 4 +}; +mmove_t shorty_move_hmg_shoot2 = {FRAME_hmg_std_01, FRAME_hmg_std_05, shorty_frames_hmg_shoot2, AI_EndAttack}; + +mframe_t shorty_frames_walk_hmg_sht2[] = +{ + ai_turn, 7.963, NULL, // frame 0 + ai_turn, 3.735, NULL, // frame 1 + ai_turn, 9.088, NULL, // frame 2 + ai_turn, 11.945, NULL, // frame 3 + ai_turn, 6.984, NULL, // frame 4 + ai_turn, 3.927, NULL, // frame 5 + ai_turn, 16.424, NULL, // frame 6 + ai_turn, 4.464, NULL, // frame 7 + ai_turn, 15.347, NULL, // frame 8 + ai_turn, 8.590, shorty_hmg_avoid, // frame 9 +}; +mmove_t shorty_move_walk_hmg_sht2 = {FRAME_hmg_wlk_01, FRAME_hmg_wlk_10, shorty_frames_walk_hmg_sht2, AI_EndAttack}; + +mframe_t shorty_frames_run_hmg_sht2[] = +{ + ai_charge, 18.527, NULL, // frame 0 + ai_charge, 5.820, NULL, // frame 1 + ai_charge, 38.453, NULL, // frame 2 + ai_charge, 6.628, NULL, // frame 3 + ai_charge, 22.021, NULL, // frame 4 + ai_charge, 14.366, shorty_hmg_avoid, // frame 5 +}; +mmove_t shorty_move_run_hmg_sht2 = {FRAME_hmg_run_01, FRAME_hmg_run_06, shorty_frames_run_hmg_sht2, AI_EndAttack}; + + +mframe_t shorty_frames_bazooka_shoot2[] = +{ + ai_charge, 0.000, NULL, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, NULL, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, NULL, // frame 4 +}; +mmove_t shorty_move_bazooka_shoot2 = {FRAME_hmg_std_01, FRAME_hmg_std_05, shorty_frames_bazooka_shoot2, AI_EndAttack}; + +mframe_t shorty_frames_walk_bazooka_shoot2[] = +{ + ai_turn, 7.963, NULL, // frame 0 + ai_turn, 3.735, NULL, // frame 1 + ai_turn, 9.088, NULL, // frame 2 + ai_turn, 11.945, NULL, // frame 3 + ai_turn, 6.984, NULL, // frame 4 + ai_turn, 3.927, NULL, // frame 5 + ai_turn, 16.424, NULL, // frame 6 + ai_turn, 4.464, NULL, // frame 7 + ai_turn, 15.347, NULL, // frame 8 + ai_turn, 8.590, NULL, // frame 9 +}; +mmove_t shorty_move_walk_bazooka_shoot2 = {FRAME_hmg_wlk_01, FRAME_hmg_wlk_10, shorty_frames_walk_bazooka_shoot2, AI_EndAttack}; + +mframe_t shorty_frames_run_bazooka_shoot2[] = +{ + ai_charge, 18.527, NULL, // frame 0 + ai_charge, 5.820, NULL, // frame 1 + ai_charge, 38.453, NULL, // frame 2 + ai_charge, 6.628, NULL, // frame 3 + ai_charge, 22.021, NULL, // frame 4 + ai_charge, 14.366, NULL, // frame 5 +}; +mmove_t shorty_move_run_bazooka_shoot2 = {FRAME_hmg_run_01, FRAME_hmg_run_06, shorty_frames_run_bazooka_shoot2, AI_EndAttack}; diff --git a/gamesrc/ai_skinny.c b/gamesrc/ai_skinny.c new file mode 100644 index 0000000..b2b611c --- /dev/null +++ b/gamesrc/ai_skinny.c @@ -0,0 +1,9 @@ +// ai_skinny.c + +#include "g_local.h" +// #include "ai_skinny.h" // rename tris.h to this + +#include "voice_punk.h" + + +// #include "ai_skinny_tables.h" // this is a clone of ai_punk_tables.h you need to fix this \ No newline at end of file diff --git a/gamesrc/ai_skinny_tables.h b/gamesrc/ai_skinny_tables.h new file mode 100644 index 0000000..81d5712 --- /dev/null +++ b/gamesrc/ai_skinny_tables.h @@ -0,0 +1,1620 @@ + +//================================================================================================== +// standard moves + +mframe_t punk_frames_stand[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 + ai_stand, 0.000, punk_talk_think, // frame 21 + ai_stand, 0.000, punk_talk_think, // frame 22 + ai_stand, 0.000, punk_talk_think, // frame 23 + ai_stand, 0.000, punk_talk_think, // frame 24 + ai_stand, 0.000, punk_talk_think, // frame 25 + ai_stand, 0.000, punk_talk_think, // frame 26 + ai_stand, 0.000, punk_talk_think, // frame 27 + ai_stand, 0.000, punk_talk_think, // frame 28 + ai_stand, 0.000, punk_talk_think, // frame 29 + ai_stand, 0.000, punk_talk_think, // frame 30 +}; +mmove_t punk_move_stand = {FRAME_stand_01, FRAME_stand_31, punk_frames_stand, punk_end_stand}; + +mframe_t punk_frames_tg_shoot[] = +{ + ai_charge, 0.000, punk_firegun, // frame 0 + ai_charge, 0.000, punk_firegun, // frame 1 + ai_charge, 0.000, punk_firegun, // frame 2 + ai_charge, 0.000, punk_firegun, // frame 3 + ai_charge, 0.000, punk_firegun, // frame 4 +}; +mmove_t punk_move_tg_shoot = {FRAME_tg_shoot_01, FRAME_tg_shoot_05, punk_frames_tg_shoot, AI_EndAttack}; + +mframe_t punk_frames_hmg_shoot[] = +{ + ai_charge, 0.000, punk_firegun, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, punk_firegun, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, punk_firegun, // frame 4 +}; +mmove_t punk_move_hmg_shoot = {FRAME_tg_shoot_01, FRAME_tg_shoot_05, punk_frames_hmg_shoot, AI_EndAttack}; + +mframe_t punk_frames_bazooka_shoot[] = +{ + ai_charge, 0.000, punk_firegun, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, NULL, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, NULL, // frame 4 +}; +mmove_t punk_move_bazooka_shoot = {FRAME_tg_shoot_01, FRAME_tg_shoot_05, punk_frames_bazooka_shoot, AI_EndAttack}; + +mframe_t punk_frames_grenade_shoot[] = +{ + ai_charge, 0.000, punk_firegun, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, NULL, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, NULL, // frame 4 +}; +mmove_t punk_move_grenade_shoot = {FRAME_tg_shoot_01, FRAME_tg_shoot_05, punk_frames_grenade_shoot, AI_EndAttack}; + + +mframe_t punk_frames_flamegun_shoot[] = +{ + ai_charge, 0.000, punk_firegun, // frame 0 + ai_charge, 0.000, punk_firegun, // frame 1 + ai_charge, 0.000, punk_firegun, // frame 2 + ai_charge, 0.000, punk_firegun, // frame 3 + ai_charge, 0.000, punk_firegun, // frame 4 +}; +mmove_t punk_move_flamegun_shoot = {FRAME_tg_shoot_01, FRAME_tg_shoot_05, punk_frames_flamegun_shoot, AI_EndAttack}; + +mframe_t punk_frames_shg_shoot[] = +{ + ai_charge, 0.000, punk_firegun, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, NULL, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, NULL, // frame 4 + ai_charge, 0.000, NULL, // frame 5 + ai_charge, 0.000, NULL, // frame 6 + ai_charge, 0.000, punk_shotgun_reload, // frame 7 + ai_charge, 0.000, NULL, // frame 8 + ai_charge, 0.000, NULL, // frame 9 + ai_charge, 0.000, NULL, // frame 10 + ai_charge, 0.000, NULL, // frame 11 + ai_charge, 0.000, NULL, // frame 12 +}; +mmove_t punk_move_shg_shoot = {FRAME_shg_shoot_01, FRAME_shg_shoot_13, punk_frames_shg_shoot, AI_EndAttack}; + +mframe_t punk_frames_tg_reload[] = +{ + ai_charge, 0.000, NULL, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, NULL, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, NULL, // frame 4 + ai_charge, 0.000, NULL, // frame 5 + ai_charge, 0.000, NULL, // frame 6 + ai_charge, 0.000, NULL, // frame 7 + ai_charge, 0.000, punk_reload_snd, // frame 8 + ai_charge, 0.000, NULL, // frame 9 + ai_charge, 0.000, NULL, // frame 10 + ai_charge, 0.000, NULL, // frame 11 + ai_charge, 0.000, NULL, // frame 12 + ai_charge, 0.000, NULL, // frame 13 + ai_charge, 0.000, NULL, // frame 14 + ai_charge, 0.000, NULL, // frame 15 +}; +mmove_t punk_move_tg_reload = {FRAME_tg_reload_01, FRAME_tg_reload_16, punk_frames_tg_reload, AI_EndAttack}; + +mframe_t punk_frames_talk1[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 + ai_stand, 0.000, punk_talk_think, // frame 21 + ai_stand, 0.000, punk_talk_think, // frame 22 + ai_stand, 0.000, punk_talk_think, // frame 23 + ai_stand, 0.000, punk_talk_think, // frame 24 + ai_stand, 0.000, punk_talk_think, // frame 25 +}; +mmove_t punk_move_talk1 = {FRAME_talk1_01, FRAME_talk1_26, punk_frames_talk1, punk_end_stand}; + +mframe_t punk_frames_talk2[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 +}; +mmove_t punk_move_talk2 = {FRAME_talk2_01, FRAME_talk2_20, punk_frames_talk2, punk_end_stand}; + +mframe_t punk_frames_talk3[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 +}; +mmove_t punk_move_talk3 = {FRAME_talk3_01, FRAME_talk3_21, punk_frames_talk3, punk_end_stand}; + +mframe_t punk_frames_talk4[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 + ai_stand, 0.000, punk_talk_think, // frame 21 + ai_stand, 0.000, punk_talk_think, // frame 22 + ai_stand, 0.000, punk_talk_think, // frame 23 + ai_stand, 0.000, punk_talk_think, // frame 24 + ai_stand, 0.000, punk_talk_think, // frame 25 + ai_stand, 0.000, punk_talk_think, // frame 26 + ai_stand, 0.000, punk_talk_think, // frame 27 + ai_stand, 0.000, punk_talk_think, // frame 28 + ai_stand, 0.000, punk_talk_think, // frame 29 + ai_stand, 0.000, punk_talk_think, // frame 30 + ai_stand, 0.000, punk_talk_think, // frame 31 + ai_stand, 0.000, punk_talk_think, // frame 32 +}; +mmove_t punk_move_talk4 = {FRAME_talk4_01, FRAME_talk4_33, punk_frames_talk4, punk_end_stand}; + +mframe_t punk_frames_talk5[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 + ai_stand, 0.000, punk_talk_think, // frame 21 + ai_stand, 0.000, punk_talk_think, // frame 22 + ai_stand, 0.000, punk_talk_think, // frame 23 + ai_stand, 0.000, punk_talk_think, // frame 24 + ai_stand, 0.000, punk_talk_think, // frame 25 + ai_stand, 0.000, punk_talk_think, // frame 26 + ai_stand, 0.000, punk_talk_think, // frame 27 + ai_stand, 0.000, punk_talk_think, // frame 28 +}; +mmove_t punk_move_talk5 = {FRAME_talk5_01, FRAME_talk5_29, punk_frames_talk5, punk_end_stand}; + +mframe_t punk_frames_talk6[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 + ai_stand, 0.000, punk_talk_think, // frame 21 + ai_stand, 0.000, punk_talk_think, // frame 22 + ai_stand, 0.000, punk_talk_think, // frame 23 + ai_stand, 0.000, punk_talk_think, // frame 24 + ai_stand, 0.000, punk_talk_think, // frame 25 + ai_stand, 0.000, punk_talk_think, // frame 26 + ai_stand, 0.000, punk_talk_think, // frame 27 + ai_stand, 0.000, punk_talk_think, // frame 28 + ai_stand, 0.000, punk_talk_think, // frame 29 + ai_stand, 0.000, punk_talk_think, // frame 30 + ai_stand, 0.000, punk_talk_think, // frame 31 + ai_stand, 0.000, punk_talk_think, // frame 32 + ai_stand, 0.000, punk_talk_think, // frame 33 + ai_stand, 0.000, punk_talk_think, // frame 34 + ai_stand, 0.000, punk_talk_think, // frame 35 + ai_stand, 0.000, punk_talk_think, // frame 36 + ai_stand, 0.000, punk_talk_think, // frame 37 + ai_stand, 0.000, punk_talk_think, // frame 38 + ai_stand, 0.000, punk_talk_think, // frame 39 + ai_stand, 0.000, punk_talk_think, // frame 40 + ai_stand, 0.000, punk_talk_think, // frame 41 + ai_stand, 0.000, punk_talk_think, // frame 42 + ai_stand, 0.000, punk_talk_think, // frame 43 + ai_stand, 0.000, punk_talk_think, // frame 44 + ai_stand, 0.000, punk_talk_think, // frame 45 + ai_stand, 0.000, punk_talk_think, // frame 46 +}; +mmove_t punk_move_talk6 = {FRAME_talk6_01, FRAME_talk6_47, punk_frames_talk6, punk_end_stand}; + +mframe_t punk_frames_head_wipe[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 + ai_stand, 0.000, NULL, // frame 9 + ai_stand, 0.000, NULL, // frame 10 + ai_stand, 0.000, NULL, // frame 11 + ai_stand, 0.000, NULL, // frame 12 + ai_stand, 0.000, NULL, // frame 13 + ai_stand, 0.000, NULL, // frame 14 + ai_stand, 0.000, NULL, // frame 15 + ai_stand, 0.000, NULL, // frame 16 + ai_stand, 0.000, NULL, // frame 17 + ai_stand, 0.000, NULL, // frame 18 + ai_stand, 0.000, NULL, // frame 19 + ai_stand, 0.000, NULL, // frame 20 + ai_stand, 0.000, NULL, // frame 21 + ai_stand, 0.000, NULL, // frame 22 + ai_stand, 0.000, NULL, // frame 23 + ai_stand, 0.000, NULL, // frame 24 + ai_stand, 0.000, NULL, // frame 25 + ai_stand, 0.000, NULL, // frame 26 + ai_stand, 0.000, NULL, // frame 27 +}; +mmove_t punk_move_head_wipe = {FRAME_head_wipe_01, FRAME_head_wipe_28, punk_frames_head_wipe, punk_end_stand}; + +mframe_t punk_frames_pain_Rarm[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t punk_move_pain_Rarm = {FRAME_pain_Rarm_01, FRAME_pain_Rarm_09, punk_frames_pain_Rarm, AI_EndAttack}; + +mframe_t punk_frames_pain_Larm[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 +}; +mmove_t punk_move_pain_Larm = {FRAME_pain_Larm_01, FRAME_pain_Larm_08, punk_frames_pain_Larm, AI_EndAttack}; + +mframe_t punk_frames_pain_chest[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 +}; +mmove_t punk_move_pain_chest = {FRAME_pain_chest_01, FRAME_pain_chest_10, punk_frames_pain_chest, AI_EndAttack}; + +mframe_t punk_frames_pain_head[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 +}; +mmove_t punk_move_pain_head = {FRAME_pain_head_01, FRAME_pain_head_08, punk_frames_pain_head, AI_EndAttack}; + +mframe_t punk_frames_pain_Rleg[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 +}; +mmove_t punk_move_pain_Rleg = {FRAME_pain_Rleg_01, FRAME_pain_Rleg_11, punk_frames_pain_Rleg, AI_EndAttack}; + +mframe_t punk_frames_pain_Lleg[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t punk_move_pain_Lleg = {FRAME_pain_Lleg_01, FRAME_pain_Lleg_09, punk_frames_pain_Lleg, AI_EndAttack}; + +mframe_t punk_frames_pain_crch[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 + ai_move, 0.000, NULL, // frame 12 +}; +mmove_t punk_move_pain_crch = {FRAME_pain_crch_01, FRAME_pain_crch_13, punk_frames_pain_crch, AI_EndAttack}; + +mframe_t punk_frames_pain_butt[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 + ai_move, 0.000, NULL, // frame 12 + ai_move, 0.000, NULL, // frame 13 +}; +mmove_t punk_move_pain_butt = {FRAME_pain_butt_01, FRAME_pain_butt_14, punk_frames_pain_butt, AI_EndAttack}; + +mframe_t punk_frames_jump[] = +{ +// ai_stand, 0.000, NULL, // frame 0 +// ai_stand, 0.000, NULL, // frame 1 +// ai_stand, 0.000, NULL, // frame 2 +// ai_stand, 0.000, NULL, // frame 3 +// ai_stand, 0.000, NULL, // frame 4 + + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, AI_CheckStillInair, // frame 7 + NULL, 0.000, NULL, // frame 8 + +// ai_stand, 0.000, NULL, // frame 9 +// ai_stand, 0.000, NULL, // frame 10 +// ai_stand, 0.000, NULL, // frame 11 +}; +mmove_t punk_move_jump = {FRAME_jump_06, FRAME_jump_09, punk_frames_jump, AI_EndJump}; + +mframe_t punk_frames_death1[] = +{ + ai_move, -4.355, NULL, // frame 0 + ai_move, -12.373, NULL, // frame 1 + ai_move, -4.930, NULL, // frame 2 + ai_move, -2.820, NULL, // frame 3 + ai_move, -7.905, NULL, // frame 4 + ai_move, -12.099, NULL, // frame 5 + ai_move, -4.754, NULL, // frame 6 + ai_move, -3.771, NULL, // frame 7 + ai_move, 1.005, NULL, // frame 8 + ai_move, -0.313, NULL, // frame 9 + ai_move, 0.516, NULL, // frame 10 + ai_move, -0.092, NULL, // frame 11 + ai_move, -0.086, NULL, // frame 12 + ai_move, -0.042, NULL, // frame 13 + ai_move, 0.032, NULL, // frame 14 + ai_move, -0.026, NULL, // frame 15 + ai_move, 0.008, NULL, // frame 16 + ai_move, 0.017, NULL, // frame 17 + ai_move, -0.003, NULL, // frame 18 +}; +mmove_t punk_move_death1 = {FRAME_death1_01, FRAME_death1_19, punk_frames_death1, AI_EndDeath}; + +mframe_t punk_frames_death2[] = +{ + ai_move, -5.523, NULL, // frame 0 + ai_move, -12.982, NULL, // frame 1 + ai_move, -5.191, NULL, // frame 2 + ai_move, -12.765, NULL, // frame 3 + ai_move, -12.250, NULL, // frame 4 + ai_move, -6.917, NULL, // frame 5 + ai_move, -7.750, NULL, // frame 6 + ai_move, 0.493, NULL, // frame 7 + ai_move, 2.456, NULL, // frame 8 + ai_move, 0.524, NULL, // frame 9 + ai_move, 3.357, NULL, // frame 10 + ai_move, 1.128, NULL, // frame 11 + ai_move, -0.663, NULL, // frame 12 + ai_move, -0.169, NULL, // frame 13 + ai_move, -0.012, NULL, // frame 14 + ai_move, -0.017, NULL, // frame 15 +}; +mmove_t punk_move_death2 = {FRAME_death2_01, FRAME_death2_16, punk_frames_death2, AI_EndDeath}; + +mframe_t punk_frames_death3[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 + ai_move, 0.000, NULL, // frame 12 + ai_move, 0.000, NULL, // frame 13 + ai_move, 0.000, NULL, // frame 14 + ai_move, 0.000, NULL, // frame 15 + ai_move, 0.000, NULL, // frame 16 + ai_move, 0.000, NULL, // frame 17 + ai_move, 0.000, NULL, // frame 18 + ai_move, 0.000, NULL, // frame 19 + ai_move, 0.000, NULL, // frame 20 + ai_move, 0.000, NULL, // frame 21 + ai_move, 0.000, NULL, // frame 22 + ai_move, 0.000, NULL, // frame 23 + ai_move, 0.000, NULL, // frame 24 + ai_move, 0.000, NULL, // frame 25 + ai_move, 0.000, NULL, // frame 26 + ai_move, 0.000, NULL, // frame 27 +}; +mmove_t punk_move_death3 = {FRAME_death3_01, FRAME_death3_28, punk_frames_death3, AI_EndDeath}; + +mframe_t punk_frames_death4[] = +{ + ai_move, -0.476, NULL, // frame 0 + ai_move, -15.310, NULL, // frame 1 + ai_move, -5.952, NULL, // frame 2 + ai_move, -7.488, NULL, // frame 3 + ai_move, -18.312, NULL, // frame 4 + ai_move, -2.110, NULL, // frame 5 + ai_move, -11.255, NULL, // frame 6 + ai_move, -1.091, NULL, // frame 7 + ai_move, 0.135, NULL, // frame 8 + ai_move, -0.201, NULL, // frame 9 + ai_move, -0.217, NULL, // frame 10 + ai_move, 0.002, NULL, // frame 11 + ai_move, 0.008, NULL, // frame 12 +}; +mmove_t punk_move_death4 = {FRAME_death4_01, FRAME_death4_13, punk_frames_death4, AI_EndDeath}; + +mframe_t punk_frames_crh_shuf[] = +{ + ai_run, -0.364, NULL, // frame 0 + ai_run, 15.133, NULL, // frame 1 + ai_run, 7.529, NULL, // frame 2 + ai_run, 11.337, NULL, // frame 3 + ai_run, 20.832, NULL, // frame 4 +}; +mmove_t punk_move_crh_shuf = {FRAME_crh_shuf_01, FRAME_crh_shuf_05, punk_frames_crh_shuf, NULL}; + +mframe_t punk_frames_crouch_walk[] = +{ + ai_run, 5.383, NULL, // frame 0 + ai_run, 5.466, NULL, // frame 1 + ai_run, 3.693, NULL, // frame 2 + ai_run, 5.865, NULL, // frame 3 + ai_run, 13.852, NULL, // frame 4 + ai_run, 6.698, NULL, // frame 5 + ai_run, 3.743, NULL, // frame 6 +}; +mmove_t punk_move_crouch_walk = {FRAME_crouch_walk_01, FRAME_crouch_walk_07, punk_frames_crouch_walk, NULL}; + +mframe_t punk_frames_crouch_painC[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 +}; +mmove_t punk_move_crouch_painC = {FRAME_crouch_painC_01, FRAME_crouch_painC_07, punk_frames_crouch_painC, AI_EndAttack}; + +mframe_t punk_frames_crouch_painL[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 +}; +mmove_t punk_move_crouch_painL = {FRAME_crouch_painL_01, FRAME_crouch_painL_08, punk_frames_crouch_painL, AI_EndAttack}; + +mframe_t punk_frames_crouch_painR[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 +}; +mmove_t punk_move_crouch_painR = {FRAME_crouch_painR_01, FRAME_crouch_painR_07, punk_frames_crouch_painR, AI_EndAttack}; + +mframe_t punk_frames_crouch_shoot[] = +{ + ai_turn, 0.000, punk_firegun, // frame 0 + ai_turn, 0.000, punk_firegun_cr, // frame 1 + ai_turn, 0.000, punk_firegun_cr, // frame 2 + ai_turn, 0.000, punk_firegun_cr, // frame 3 + ai_turn, 0.000, punk_firegun_cr, // frame 4 + ai_turn, 0.000, punk_firegun_cr, // frame 5 +}; +mmove_t punk_move_crouch_shoot = {FRAME_crouch_shoot_01, FRAME_crouch_shoot_06, punk_frames_crouch_shoot, AI_EndAttack}; + +mframe_t punk_frames_crch_shg_sht[] = +{ + ai_turn, 0.000, punk_firegun, // frame 0 + ai_turn, 0.000, NULL, // frame 1 + ai_turn, 0.000, NULL, // frame 2 + ai_turn, 0.000, NULL, // frame 3 + ai_turn, 0.000, NULL, // frame 4 + ai_turn, 0.000, NULL, // frame 5 + ai_turn, 0.000, NULL, // frame 6 + ai_turn, 0.000, punk_shotgun_reload, // frame 7 + ai_turn, 0.000, NULL, // frame 8 + ai_turn, 0.000, NULL, // frame 9 + ai_turn, 0.000, NULL, // frame 10 + ai_turn, 0.000, NULL, // frame 11 + ai_turn, 0.000, NULL, // frame 12 +}; +mmove_t punk_move_crch_shg_sht = {FRAME_crch_shg_sht_01, FRAME_crch_shg_sht_13, punk_frames_crch_shg_sht, AI_EndAttack}; + +mframe_t punk_frames_crouch_stand_down[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 +}; +mmove_t punk_move_crouch_stand_down = {FRAME_stand_crouch_01, FRAME_stand_crouch_05, punk_frames_crouch_stand_down, AI_End_CrouchStand_Down}; + +mframe_t punk_frames_crouch_stand_up[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 +}; +mmove_t punk_move_crouch_stand_up = {FRAME_stand_crouch_05, FRAME_stand_crouch_01, punk_frames_crouch_stand_up, AI_End_CrouchStand_Up}; + +mframe_t punk_frames_crch_astand[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 + ai_stand, 0.000, NULL, // frame 9 + ai_stand, 0.000, NULL, // frame 10 + ai_stand, 0.000, NULL, // frame 11 + ai_stand, 0.000, NULL, // frame 12 + ai_stand, 0.000, NULL, // frame 13 + ai_stand, 0.000, NULL, // frame 14 + ai_stand, 0.000, NULL, // frame 15 + ai_stand, 0.000, NULL, // frame 16 + ai_stand, 0.000, NULL, // frame 17 + ai_stand, 0.000, NULL, // frame 18 + ai_stand, 0.000, NULL, // frame 19 +}; +mmove_t punk_move_crch_astand = {FRAME_crch_astand_01, FRAME_crch_astand_20, punk_frames_crch_astand, NULL}; + +mframe_t punk_frames_crouch_death[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 +}; +mmove_t punk_move_crouch_death = {FRAME_crouch_death_01, FRAME_crouch_death_12, punk_frames_crouch_death, AI_EndDeath}; + +/* +mframe_t punk_frames_st_clmb[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 +}; +mmove_t punk_move_st_clmb = {FRAME_st_clmb_01, FRAME_st_clmb_02, punk_frames_st_clmb, NULL}; +*/ + +mframe_t punk_frames_clmb_loop[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 7 + NULL, 0.000, NULL, // frame 8 +}; +mmove_t punk_move_clmb_loop = {FRAME_clmb_loop_01, FRAME_clmb_loop_09, punk_frames_clmb_loop, NULL}; + +mframe_t punk_frames_clmb_over[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 7 + NULL, 0.000, NULL, // frame 8 + NULL, 0.000, NULL, // frame 9 +// NULL, 0.000, NULL, // frame 10 +// NULL, 0.000, NULL, // frame 11 +// NULL, 0.000, NULL, // frame 12 +// NULL, 0.000, NULL, // frame 13 +// NULL, 0.000, NULL, // frame 14 +}; +mmove_t punk_move_clmb_over = {FRAME_clmb_over_01, FRAME_clmb_over_10, punk_frames_clmb_over, AI_EndJump}; +/* +mframe_t punk_frames_lside_step[] = +{ + ai_sidestep, 0.215, NULL, // frame 0 + ai_sidestep, 0.721, NULL, // frame 1 + ai_sidestep, 2.871, NULL, // frame 2 + ai_sidestep, 4.372, NULL, // frame 3 + ai_sidestep, 2.453, NULL, // frame 4 + ai_sidestep, 2.358, NULL, // frame 5 + ai_sidestep, -0.671, NULL, // frame 6 +}; +mmove_t punk_move_lside_step = {FRAME_lside_step_01, FRAME_lside_step_07, punk_frames_lside_step, NULL}; + +mframe_t punk_frames_rside_step[] = +{ + ai_sidestep, 0.676, NULL, // frame 0 + ai_sidestep, -0.261, NULL, // frame 1 + ai_sidestep, -1.790, NULL, // frame 2 + ai_sidestep, -1.300, NULL, // frame 3 + ai_sidestep, -2.096, NULL, // frame 4 + ai_sidestep, -3.586, NULL, // frame 5 + ai_sidestep, -3.024, NULL, // frame 6 +}; +mmove_t punk_move_rside_step = {FRAME_rside_step_01, FRAME_rside_step_07, punk_frames_rside_step, NULL}; +*/ + +mframe_t punk_frames_lside_step[] = +{ + ai_sidestep, -0.215, NULL, // frame 0 + ai_sidestep, -0.721, NULL, // frame 1 + ai_sidestep, -2.871, NULL, // frame 2 + ai_sidestep, -4.372, NULL, // frame 3 + ai_sidestep, -2.453, NULL, // frame 4 + ai_sidestep, -2.358, NULL, // frame 5 + ai_sidestep, 0.671, NULL, // frame 6 +}; +mmove_t punk_move_lside_step = {FRAME_lside_step_01, FRAME_lside_step_07, punk_frames_lside_step, AI_EndAttack}; + +mframe_t punk_frames_rside_step[] = +{ + ai_sidestep, -0.676, NULL, // frame 0 + ai_sidestep, 0.261, NULL, // frame 1 + ai_sidestep, 1.790, NULL, // frame 2 + ai_sidestep, 1.300, NULL, // frame 3 + ai_sidestep, 2.096, NULL, // frame 4 + ai_sidestep, 3.586, NULL, // frame 5 + ai_sidestep, 3.024, NULL, // frame 6 +}; +mmove_t punk_move_rside_step = {FRAME_rside_step_01, FRAME_rside_step_07, punk_frames_rside_step, AI_EndAttack}; + + +mframe_t punk_frames_walk_nw[] = +{ + ai_run, 9.849, NULL, // frame 0 + ai_run, -1.401, NULL, // frame 1 + ai_run, 8.203, AI_EndRun, // frame 2 + ai_run, 7.614, NULL, // frame 3 + ai_run, 6.068, NULL, // frame 4 + ai_run, 7.790, NULL, // frame 5 + ai_run, 13.569, AI_EndRun, // frame 6 + ai_run, 10.150, NULL, // frame 7 + ai_run, 8.247, NULL, // frame 8 + ai_run, 6.745, NULL, // frame 9 +}; +mmove_t punk_move_walk_nw = {FRAME_walk_nw_01, FRAME_walk_nw_10, punk_frames_walk_nw, AI_EndRun}; + +mframe_t punk_frames_walk_tg_sht[] = +{ + ai_turn, 11.306, punk_firegun, // frame 0 + ai_turn, 6.486, punk_firegun, // frame 1 + ai_turn, 6.159, punk_firegun, // frame 2 + ai_turn, 9.146, punk_firegun, // frame 3 + ai_turn, 9.527, punk_firegun, // frame 4 + ai_turn, 8.850, punk_firegun, // frame 5 + ai_turn, 8.214, punk_firegun, // frame 6 + ai_turn, 6.377, punk_firegun, // frame 7 + ai_turn, 5.029, punk_firegun, // frame 8 + ai_turn, 5.740, punk_firegun, // frame 9 +}; +mmove_t punk_move_walk_tg_sht = {FRAME_walk_tg_sht_01, FRAME_walk_tg_sht_10, punk_frames_walk_tg_sht, AI_EndAttack}; + +mframe_t punk_frames_walk_hmg_sht[] = +{ + ai_turn, 11.306, punk_firegun, // frame 0 + ai_turn, 6.486, NULL, // frame 1 + ai_turn, 6.159, punk_firegun, // frame 2 + ai_turn, 9.146, NULL, // frame 3 + ai_turn, 9.527, punk_firegun, // frame 4 + ai_turn, 8.850, NULL, // frame 5 + ai_turn, 8.214, NULL, // frame 6 + ai_turn, 6.377, NULL, // frame 7 + ai_turn, 5.029, NULL, // frame 8 + ai_turn, 5.740, NULL, // frame 9 +}; +mmove_t punk_move_walk_hmg_sht = {FRAME_walk_tg_sht_01, FRAME_walk_tg_sht_10, punk_frames_walk_hmg_sht, AI_EndAttack}; + +mframe_t punk_frames_walk_bazooka_sht[] = +{ + ai_turn, 11.306, punk_firegun, // frame 0 + ai_turn, 6.486, NULL, // frame 1 + ai_turn, 6.159, NULL, // frame 2 + ai_turn, 9.146, NULL, // frame 3 + ai_turn, 9.527, NULL, // frame 4 + ai_turn, 8.850, NULL, // frame 5 + ai_turn, 8.214, NULL, // frame 6 + ai_turn, 6.377, NULL, // frame 7 + ai_turn, 5.029, NULL, // frame 8 + ai_turn, 5.740, NULL, // frame 9 +}; +mmove_t punk_move_walk_bazooka_sht = {FRAME_walk_tg_sht_01, FRAME_walk_tg_sht_10, punk_frames_walk_bazooka_sht, AI_EndAttack}; + +mframe_t punk_frames_walk_grenade_sht[] = +{ + ai_turn, 11.306, punk_firegun, // frame 0 + ai_turn, 6.486, NULL, // frame 1 + ai_turn, 6.159, NULL, // frame 2 + ai_turn, 9.146, NULL, // frame 3 + ai_turn, 9.527, NULL, // frame 4 + ai_turn, 8.850, NULL, // frame 5 + ai_turn, 8.214, NULL, // frame 6 + ai_turn, 6.377, NULL, // frame 7 + ai_turn, 5.029, NULL, // frame 8 + ai_turn, 5.740, NULL, // frame 9 +}; +mmove_t punk_move_walk_grenade_sht = {FRAME_walk_tg_sht_01, FRAME_walk_tg_sht_10, punk_frames_walk_grenade_sht, AI_EndAttack}; + +mframe_t punk_frames_walk_flamegun_sht[] = +{ + ai_turn, 11.306, punk_firegun, // frame 0 + ai_turn, 6.486, punk_firegun, // frame 1 + ai_turn, 6.159, punk_firegun, // frame 2 + ai_turn, 9.146, punk_firegun, // frame 3 + ai_turn, 9.527, punk_firegun, // frame 4 + ai_turn, 8.850, punk_firegun, // frame 5 + ai_turn, 8.214, punk_firegun, // frame 6 + ai_turn, 6.377, punk_firegun, // frame 7 + ai_turn, 5.029, punk_firegun, // frame 8 + ai_turn, 5.740, punk_firegun, // frame 9 +}; +mmove_t punk_move_walk_flamegun_sht = {FRAME_walk_tg_sht_01, FRAME_walk_tg_sht_10, punk_frames_walk_flamegun_sht, AI_EndAttack}; + + +mframe_t punk_frames_walk_shg_sht[] = +{ + ai_turn, 13.194, punk_firegun, // frame 0 + ai_turn, 3.697, NULL, // frame 1 + ai_turn, 9.794, NULL, // frame 2 + ai_turn, 9.688, NULL, // frame 3 + ai_turn, 8.709, NULL, // frame 4 + ai_turn, 9.221, punk_shotgun_reload, // frame 5 + ai_turn, 7.405, NULL, // frame 6 + ai_turn, 7.594, NULL, // frame 7 + ai_turn, 2.303, NULL, // frame 8 + ai_turn, 5.228, NULL, // frame 9 +}; +mmove_t punk_move_walk_shg_sht = {FRAME_walk_shg_sht_01, FRAME_walk_shg_sht_10, punk_frames_walk_shg_sht, AI_EndAttack}; + +mframe_t punk_frames_walk_gdown[] = +{ + ai_run, 3.636, NULL, // frame 0 + ai_run, 6.504, NULL, // frame 1 + ai_run, 3.111, NULL, // frame 2 + ai_run, 4.200, AI_EndRun, // frame 3 + ai_run, 8.913, NULL, // frame 4 + ai_run, 7.640, NULL, // frame 5 + ai_run, 11.360, AI_EndRun, // frame 6 + ai_run, 4.233, NULL, // frame 7 + ai_run, 12.047, NULL, // frame 8 + ai_run, 10.356, NULL, // frame 9 +}; +mmove_t punk_move_walk_gdown = {FRAME_walk_gdown_01, FRAME_walk_gdown_10, punk_frames_walk_gdown, AI_EndRun}; + +mframe_t punk_frames_run_nw[] = +{ + ai_run, 26.748, NULL, // frame 0 + ai_run, 17.188, NULL, // frame 1 + ai_run, 31.486, NULL, // frame 2 + ai_run, 31.052, NULL, // frame 3 + ai_run, 23.944, NULL, // frame 4 + ai_run, 24.549, NULL, // frame 5 +}; +mmove_t punk_move_run_nw = {FRAME_run_nw_01, FRAME_run_nw_06, punk_frames_run_nw, AI_EndRun}; + +mframe_t punk_frames_run_tg_sht[] = +{ + ai_charge, 27.656, punk_firegun, // frame 0 + ai_charge, 17.929, NULL, // frame 1 + ai_charge, 33.470, punk_firegun, // frame 2 + ai_charge, 37.084, NULL, // frame 3 + ai_charge, 31.857, punk_firegun, // frame 4 + ai_charge, 24.969, NULL, // frame 5 +}; +mmove_t punk_move_run_tg_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, punk_frames_run_tg_sht, AI_EndAttack}; + +mframe_t punk_frames_run_reverse_tg_sht[] = +{ + ai_charge,- 24.969, punk_firegun, // frame 5 + ai_charge,- 31.857, NULL, // frame 4 + ai_charge,- 37.084, punk_firegun, // frame 3 + ai_charge,- 33.470, NULL, // frame 2 + ai_charge,- 17.929, punk_firegun, // frame 1 + ai_charge,- 27.656, NULL, // frame 0 +}; +mmove_t punk_move_run_reverse_tg_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, punk_frames_run_reverse_tg_sht, AI_EndAttack}; + + +mframe_t punk_frames_run_hmg_sht[] = +{ + ai_charge, 27.656, punk_firegun, // frame 0 + ai_charge, 17.929, NULL, // frame 1 + ai_charge, 33.470, punk_firegun, // frame 2 + ai_charge, 37.084, NULL, // frame 3 + ai_charge, 31.857, punk_firegun, // frame 4 + ai_charge, 24.969, NULL, // frame 5 +}; +mmove_t punk_move_run_hmg_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, punk_frames_run_hmg_sht, AI_EndAttack}; + +mframe_t punk_frames_run_reverse_hmg_sht[] = +{ + ai_charge,- 24.969, punk_firegun, // frame 5 + ai_charge,- 31.857, NULL, // frame 4 + ai_charge,- 37.084, punk_firegun, // frame 3 + ai_charge,- 33.470, NULL, // frame 2 + ai_charge,- 17.929, punk_firegun, // frame 1 + ai_charge,- 27.656, NULL, // frame 0 +}; +mmove_t punk_move_run_reverse_hmg_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, punk_frames_run_reverse_hmg_sht, AI_EndAttack}; + + +mframe_t punk_frames_run_bazooka_sht[] = +{ + ai_charge, 27.656, punk_firegun, // frame 0 + ai_charge, 17.929, NULL, // frame 1 + ai_charge, 33.470, NULL, // frame 2 + ai_charge, 37.084, NULL, // frame 3 + ai_charge, 31.857, NULL, // frame 4 + ai_charge, 24.969, NULL, // frame 5 +}; +mmove_t punk_move_run_bazooka_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, punk_frames_run_bazooka_sht, AI_EndAttack}; + +mframe_t punk_frames_run_reverse_bazooka_sht[] = +{ + ai_charge,- 24.969, punk_firegun, // frame 5 + ai_charge,- 31.857, NULL, // frame 4 + ai_charge,- 37.084, NULL, // frame 3 + ai_charge,- 33.470, NULL, // frame 2 + ai_charge,- 17.929, NULL, // frame 1 + ai_charge,- 27.656, NULL, // frame 0 +}; +mmove_t punk_move_run_reverse_bazooka_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, punk_frames_run_reverse_bazooka_sht, AI_EndAttack}; + + +mframe_t punk_frames_run_grenade_sht[] = +{ + ai_charge, 27.656, punk_firegun, // frame 0 + ai_charge, 17.929, NULL, // frame 1 + ai_charge, 33.470, NULL, // frame 2 + ai_charge, 37.084, NULL, // frame 3 + ai_charge, 31.857, NULL, // frame 4 + ai_charge, 24.969, NULL, // frame 5 +}; +mmove_t punk_move_run_grenade_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, punk_frames_run_grenade_sht, AI_EndAttack}; + +mframe_t punk_frames_run_reverse_grenade_sht[] = +{ + ai_charge,- 24.969, punk_firegun, // frame 5 + ai_charge,- 31.857, NULL, // frame 4 + ai_charge,- 37.084, NULL, // frame 3 + ai_charge,- 33.470, NULL, // frame 2 + ai_charge,- 17.929, NULL, // frame 1 + ai_charge,- 27.656, NULL, // frame 0 +}; +mmove_t punk_move_run_reverse_grenade_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, punk_frames_run_reverse_grenade_sht, AI_EndAttack}; + + +mframe_t punk_frames_run_flamegun_sht[] = +{ + ai_charge, 27.656, punk_firegun, // frame 0 + ai_charge, 17.929, punk_firegun, // frame 1 + ai_charge, 33.470, punk_firegun, // frame 2 + ai_charge, 37.084, punk_firegun, // frame 3 + ai_charge, 31.857, punk_firegun, // frame 4 + ai_charge, 24.969, punk_firegun, // frame 5 +}; +mmove_t punk_move_run_flamegun_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, punk_frames_run_flamegun_sht, AI_EndAttack}; + +mframe_t punk_frames_run_reverse_flamegun_sht[] = +{ + ai_charge,- 24.969, punk_firegun, // frame 5 + ai_charge,- 31.857, punk_firegun, // frame 4 + ai_charge,- 37.084, punk_firegun, // frame 3 + ai_charge,- 33.470, punk_firegun, // frame 2 + ai_charge,- 17.929, punk_firegun, // frame 1 + ai_charge,- 27.656, punk_firegun, // frame 0 +}; +mmove_t punk_move_run_reverse_flamegun_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, punk_frames_run_reverse_flamegun_sht, AI_EndAttack}; + + +mframe_t punk_frames_run_shg_sht[] = +{ + ai_charge, 25.263, punk_firegun, // frame 0 + ai_charge, 15.586, NULL, // frame 1 + ai_charge, 37.674, NULL, // frame 2 + ai_charge, 32.187, punk_shotgun_reload, // frame 3 + ai_charge, 33.081, NULL, // frame 4 + ai_charge, 30.137, NULL, // frame 5 +}; +mmove_t punk_move_run_shg_sht = {FRAME_run_shg_sht_01, FRAME_run_shg_sht_06, punk_frames_run_shg_sht, AI_EndAttack}; + +mframe_t punk_frames_run_gun_down[] = +{ + ai_run, 26.748, NULL, // frame 0 + ai_run, 17.188, NULL, // frame 1 + ai_run, 31.486, NULL, // frame 2 + ai_run, 31.052, NULL, // frame 3 + ai_run, 23.944, NULL, // frame 4 + ai_run, 24.549, NULL, // frame 5 +}; +mmove_t punk_move_run_gun_down = {FRAME_run_gun_down_01, FRAME_run_gun_down_06, punk_frames_run_gun_down, AI_EndRun}; + +mframe_t punk_frames_run_on_fire[] = +{ + ai_onfire_run, 26.846, NULL, // frame 0 + ai_onfire_run, 20.973, NULL, // frame 1 + ai_onfire_run, 44.080, NULL, // frame 2 + ai_onfire_run, 30.029, NULL, // frame 3 + ai_onfire_run, 25.538, NULL, // frame 4 + ai_onfire_run, 26.007, NULL, // frame 5 +}; +mmove_t punk_move_run_on_fire = {FRAME_run_on_fire_01, FRAME_run_on_fire_06, punk_frames_run_on_fire, NULL}; + +mframe_t punk_frames_lsd_tg_run[] = +{ + ai_sidestep,- 23.733*0.75, punk_firegun_left, // frame 0 + ai_sidestep,- 18.601*0.75, punk_firegun_left, // frame 1 + ai_sidestep,- 31.336*0.75, punk_firegun_left, // frame 2 + ai_sidestep,- 39.244*0.75, punk_firegun_left, // frame 3 + ai_sidestep,- 26.961*0.75, punk_firegun_left, // frame 4 + ai_sidestep,- 23.858*0.75, punk_firegun_left, // frame 5 +}; +mmove_t punk_move_lsd_tg_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_06, punk_frames_lsd_tg_run, NULL}; + +mframe_t punk_frames_rsd_tg_run[] = +{ + ai_sidestep, 19.829*0.75, punk_firegun_right, // frame 0 + ai_sidestep, 17.364*0.75, punk_firegun_right, // frame 1 + ai_sidestep, 32.611*0.75, punk_firegun_right, // frame 2 + ai_sidestep, 37.973*0.75, punk_firegun_right, // frame 3 + ai_sidestep, 32.279*0.75, punk_firegun_right, // frame 4 + ai_sidestep, 24.741*0.75, punk_firegun_right, // frame 5 +}; +mmove_t punk_move_rsd_tg_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_06, punk_frames_rsd_tg_run, NULL}; + + +mframe_t punk_frames_lsd_hmg_run[] = +{ + ai_sidestep,- 23.733*0.75, punk_firegun_left, // frame 0 + ai_sidestep,- 18.601*0.75, NULL, // frame 1 + ai_sidestep,- 31.336*0.75, punk_firegun, // frame 2 + ai_sidestep,- 39.244*0.75, NULL, // frame 3 + ai_sidestep,- 26.961*0.75, punk_firegun, // frame 4 + ai_sidestep,- 23.858*0.75, NULL, // frame 5 +}; +mmove_t punk_move_lsd_hmg_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_06, punk_frames_lsd_hmg_run, NULL}; + +mframe_t punk_frames_rsd_hmg_run[] = +{ + ai_sidestep, 19.829*0.75, punk_firegun_right, // frame 0 + ai_sidestep, 17.364*0.75, NULL, // frame 1 + ai_sidestep, 32.611*0.75, punk_firegun, // frame 2 + ai_sidestep, 37.973*0.75, NULL, // frame 3 + ai_sidestep, 32.279*0.75, punk_firegun, // frame 4 + ai_sidestep, 24.741*0.75, NULL, // frame 5 +}; +mmove_t punk_move_rsd_hmg_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_06, punk_frames_rsd_hmg_run, NULL}; + + +mframe_t punk_frames_lsd_bazooka_run[] = +{ + ai_sidestep,- 23.733*0.75, punk_firegun_left, // frame 0 + ai_sidestep,- 18.601*0.75, NULL, // frame 1 + ai_sidestep,- 31.336*0.75, NULL, // frame 2 + ai_sidestep,- 39.244*0.75, NULL, // frame 3 + ai_sidestep,- 26.961*0.75, NULL, // frame 4 + ai_sidestep,- 23.858*0.75, NULL, // frame 5 +}; +mmove_t punk_move_lsd_bazooka_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_06, punk_frames_lsd_bazooka_run, NULL}; + +mframe_t punk_frames_rsd_bazooka_run[] = +{ + ai_sidestep, 19.829*0.75, punk_firegun_right, // frame 0 + ai_sidestep, 17.364*0.75, NULL, // frame 1 + ai_sidestep, 32.611*0.75, NULL, // frame 2 + ai_sidestep, 37.973*0.75, NULL, // frame 3 + ai_sidestep, 32.279*0.75, NULL, // frame 4 + ai_sidestep, 24.741*0.75, NULL, // frame 5 +}; +mmove_t punk_move_rsd_bazooka_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_06, punk_frames_rsd_bazooka_run, NULL}; + + +mframe_t punk_frames_lsd_grenade_run[] = +{ + ai_sidestep,- 23.733*0.75, punk_firegun_left, // frame 0 + ai_sidestep,- 18.601*0.75, NULL, // frame 1 + ai_sidestep,- 31.336*0.75, NULL, // frame 2 + ai_sidestep,- 39.244*0.75, NULL, // frame 3 + ai_sidestep,- 26.961*0.75, NULL, // frame 4 + ai_sidestep,- 23.858*0.75, NULL, // frame 5 +}; +mmove_t punk_move_lsd_grenade_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_06, punk_frames_lsd_grenade_run, NULL}; + +mframe_t punk_frames_rsd_grenade_run[] = +{ + ai_sidestep, 19.829*0.75, punk_firegun_right, // frame 0 + ai_sidestep, 17.364*0.75, NULL, // frame 1 + ai_sidestep, 32.611*0.75, NULL, // frame 2 + ai_sidestep, 37.973*0.75, NULL, // frame 3 + ai_sidestep, 32.279*0.75, NULL, // frame 4 + ai_sidestep, 24.741*0.75, NULL, // frame 5 +}; +mmove_t punk_move_rsd_grenade_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_06, punk_frames_rsd_grenade_run, NULL}; + + +mframe_t punk_frames_lsd_flamegun_run[] = +{ + ai_sidestep,- 23.733*0.75, punk_firegun_left, // frame 0 + ai_sidestep,- 18.601*0.75, punk_firegun_left, // frame 1 + ai_sidestep,- 31.336*0.75, punk_firegun_left, // frame 2 + ai_sidestep,- 39.244*0.75, punk_firegun_left, // frame 3 + ai_sidestep,- 26.961*0.75, punk_firegun_left, // frame 4 + ai_sidestep,- 23.858*0.75, punk_firegun_left, // frame 5 +}; +mmove_t punk_move_lsd_flamegun_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_06, punk_frames_lsd_flamegun_run, NULL}; + +mframe_t punk_frames_rsd_flamegun_run[] = +{ + ai_sidestep, 19.829*0.75, punk_firegun_right, // frame 0 + ai_sidestep, 17.364*0.75, punk_firegun_right, // frame 1 + ai_sidestep, 32.611*0.75, punk_firegun_right, // frame 2 + ai_sidestep, 37.973*0.75, punk_firegun_right, // frame 3 + ai_sidestep, 32.279*0.75, punk_firegun_right, // frame 4 + ai_sidestep, 24.741*0.75, punk_firegun_right, // frame 5 +}; +mmove_t punk_move_rsd_flamegun_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_06, punk_frames_rsd_flamegun_run, NULL}; + +mframe_t punk_frames_lsd_shg_run[] = +{ + ai_sidestep,- 24.221*0.75, NULL, // frame 0 + ai_sidestep,- 20.466*0.75, punk_firegun_left, // frame 1 + ai_sidestep,- 32.136*0.75, NULL, // frame 2 + ai_sidestep,- 39.252*0.75, punk_shotgun_reload, // frame 3 + ai_sidestep,- 29.464*0.75, NULL, // frame 4 + ai_sidestep,- 23.279*0.75, NULL, // frame 5 +}; +mmove_t punk_move_lsd_shg_run = {FRAME_rsd_shg_run_01, FRAME_rsd_shg_run_06, punk_frames_lsd_shg_run, NULL}; + +mframe_t punk_frames_rsd_shg_run[] = +{ + ai_sidestep, 26.812*0.75, NULL, // frame 0 + ai_sidestep, 18.773*0.75, punk_firegun_right, // frame 1 + ai_sidestep, 34.600*0.75, NULL, // frame 2 + ai_sidestep, 36.035*0.75, punk_shotgun_reload, // frame 3 + ai_sidestep, 31.354*0.75, NULL, // frame 4 + ai_sidestep, 23.697*0.75, NULL, // frame 5 +}; +mmove_t punk_move_rsd_shg_run = {FRAME_lsd_shg_run_01, FRAME_lsd_shg_run_06, punk_frames_rsd_shg_run, NULL}; + +//================================================================================================================ +// created moves +mframe_t punk_frames_avoid_walk[] = +{ + ai_turn, 3.636, NULL, // frame 0 + ai_turn, 6.504, NULL, // frame 1 + ai_turn, 3.111, NULL, // frame 2 + ai_turn, 4.200, NULL, // frame 3 + ai_turn, 8.913, NULL, // frame 4 + ai_turn, 7.640, NULL, // frame 5 +}; +mmove_t punk_move_avoid_walk = {FRAME_walk_gdown_01, FRAME_walk_gdown_06, punk_frames_avoid_walk, AI_EndAttack}; + +mframe_t punk_frames_avoid_crouch_walk[] = +{ + ai_turn, 5.383, NULL, // frame 0 + ai_turn, 5.466, NULL, // frame 1 + ai_turn, 3.693, NULL, // frame 2 + ai_turn, 5.865, NULL, // frame 3 + ai_turn, 13.852, NULL, // frame 4 + ai_turn, 6.698, NULL, // frame 5 + ai_turn, 3.743, NULL, // frame 6 +}; +mmove_t punk_move_avoid_crouch_walk = {FRAME_crouch_walk_01, FRAME_crouch_walk_07, punk_frames_avoid_crouch_walk, AI_EndAttack}; + +mframe_t punk_frames_walk_gdownFLASHLIGHT[] = +{ + ai_runFLASHLIGHT, 12.686, NULL, // frame 0 + ai_runFLASHLIGHT, 6.612, NULL, // frame 1 + ai_runFLASHLIGHT, 4.302, NULL, // frame 2 + ai_runFLASHLIGHT, 8.823, AI_EndRun, // frame 3 + ai_runFLASHLIGHT, 7.734, NULL, // frame 4 + ai_runFLASHLIGHT, 9.099, NULL, // frame 5 + ai_runFLASHLIGHT, 9.405, AI_EndRun, // frame 6 + ai_runFLASHLIGHT, 5.060, NULL, // frame 7 + ai_runFLASHLIGHT, 4.412, NULL, // frame 8 + ai_runFLASHLIGHT, 8.700, NULL, // frame 9 +}; +mmove_t punk_move_walk_gdownFLASHLIGHT = {FRAME_walk_gdown_01, FRAME_walk_gdown_10, punk_frames_walk_gdownFLASHLIGHT, AI_EndRun }; + +mframe_t punk_frames_avoid_run[] = +{ + ai_turn, 26.748, NULL, // frame 0 + ai_turn, 17.188, NULL, // frame 1 + ai_turn, 31.486, NULL, // frame 2 + ai_turn, 31.052, NULL, // frame 3 + ai_turn, 23.944, NULL, // frame 4 + ai_turn, 24.549, NULL, // frame 5 +}; +mmove_t punk_move_avoid_run = {FRAME_run_gun_down_01, FRAME_run_gun_down_06, punk_frames_avoid_run, AI_EndAttack}; + +mframe_t punk_frames_avoid_reverse_walk[] = +{ + ai_turn, -7.640, NULL, // frame 5 + ai_turn, -8.913, NULL, // frame 4 + ai_turn, -4.200, NULL, // frame 3 + ai_turn, -3.111, NULL, // frame 2 + ai_turn, -6.504, NULL, // frame 1 + ai_turn, -3.636, NULL, // frame 0 +}; +mmove_t punk_move_avoid_reverse_walk = {FRAME_walk_gdown_06, FRAME_walk_gdown_01, punk_frames_avoid_reverse_walk, AI_EndAttack}; + +mframe_t punk_frames_avoid_reverse_run[] = +{ + ai_turn, - 24.549, NULL, // frame 5 + ai_turn, - 23.944, NULL, // frame 4 + ai_turn, - 31.052, NULL, // frame 3 + ai_turn, - 31.486, NULL, // frame 2 + ai_turn, - 17.188, NULL, // frame 1 + ai_turn, - 26.748, NULL, // frame 0 +}; +mmove_t punk_move_avoid_reverse_run = {FRAME_run_gun_down_06, FRAME_run_gun_down_03, punk_frames_avoid_reverse_run, AI_EndAttack}; + +mframe_t punk_frames_sg_stand[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 + ai_stand, 0.000, punk_talk_think, // frame 21 + ai_stand, 0.000, punk_talk_think, // frame 22 + ai_stand, 0.000, punk_talk_think, // frame 23 + ai_stand, 0.000, punk_talk_think, // frame 24 + ai_stand, 0.000, punk_talk_think, // frame 25 + ai_stand, 0.000, punk_talk_think, // frame 26 + ai_stand, 0.000, punk_talk_think, // frame 27 + ai_stand, 0.000, punk_talk_think, // frame 28 + ai_stand, 0.000, punk_talk_think, // frame 29 + ai_stand, 0.000, punk_talk_think, // frame 30 +}; +mmove_t punk_move_sg_stand = {FRAME_sg_stand_01, FRAME_sg_stand_31, punk_frames_sg_stand, punk_end_stand}; + +mframe_t punk_frames_sg_talk1[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 + ai_stand, 0.000, punk_talk_think, // frame 21 + ai_stand, 0.000, punk_talk_think, // frame 22 + ai_stand, 0.000, punk_talk_think, // frame 23 + ai_stand, 0.000, punk_talk_think, // frame 24 + ai_stand, 0.000, punk_talk_think, // frame 25 +}; +mmove_t punk_move_sg_talk1 = {FRAME_sg_talk1_01, FRAME_sg_talk1_26, punk_frames_sg_talk1, punk_end_stand}; + +mframe_t punk_frames_sg_talk2[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 +}; +mmove_t punk_move_sg_talk2 = {FRAME_sg_talk2_01, FRAME_sg_talk2_20, punk_frames_sg_talk2, punk_end_stand}; + +mframe_t punk_frames_sg_talk3[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 +}; +mmove_t punk_move_sg_talk3 = {FRAME_sg_talk3_01, FRAME_sg_talk3_21, punk_frames_sg_talk3, punk_end_stand}; + +mframe_t punk_frames_sg_talk4[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 + ai_stand, 0.000, punk_talk_think, // frame 21 + ai_stand, 0.000, punk_talk_think, // frame 22 + ai_stand, 0.000, punk_talk_think, // frame 23 + ai_stand, 0.000, punk_talk_think, // frame 24 + ai_stand, 0.000, punk_talk_think, // frame 25 + ai_stand, 0.000, punk_talk_think, // frame 26 + ai_stand, 0.000, punk_talk_think, // frame 27 + ai_stand, 0.000, punk_talk_think, // frame 28 + ai_stand, 0.000, punk_talk_think, // frame 29 + ai_stand, 0.000, punk_talk_think, // frame 30 + ai_stand, 0.000, punk_talk_think, // frame 31 + ai_stand, 0.000, punk_talk_think, // frame 32 +}; +mmove_t punk_move_sg_talk4 = {FRAME_sg_talk4_01, FRAME_sg_talk4_33, punk_frames_sg_talk4, punk_end_stand}; + +mframe_t punk_frames_sg_talk5[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 + ai_stand, 0.000, punk_talk_think, // frame 21 + ai_stand, 0.000, punk_talk_think, // frame 22 + ai_stand, 0.000, punk_talk_think, // frame 23 + ai_stand, 0.000, punk_talk_think, // frame 24 + ai_stand, 0.000, punk_talk_think, // frame 25 + ai_stand, 0.000, punk_talk_think, // frame 26 + ai_stand, 0.000, punk_talk_think, // frame 27 + ai_stand, 0.000, punk_talk_think, // frame 28 +}; +mmove_t punk_move_sg_talk5 = {FRAME_sg_talk5_01, FRAME_sg_talk5_29, punk_frames_sg_talk5, punk_end_stand}; + +mframe_t punk_frames_sg_talk6[] = +{ + ai_stand, 0.000, punk_talk_think, // frame 0 + ai_stand, 0.000, punk_talk_think, // frame 1 + ai_stand, 0.000, punk_talk_think, // frame 2 + ai_stand, 0.000, punk_talk_think, // frame 3 + ai_stand, 0.000, punk_talk_think, // frame 4 + ai_stand, 0.000, punk_talk_think, // frame 5 + ai_stand, 0.000, punk_talk_think, // frame 6 + ai_stand, 0.000, punk_talk_think, // frame 7 + ai_stand, 0.000, punk_talk_think, // frame 8 + ai_stand, 0.000, punk_talk_think, // frame 9 + ai_stand, 0.000, punk_talk_think, // frame 10 + ai_stand, 0.000, punk_talk_think, // frame 11 + ai_stand, 0.000, punk_talk_think, // frame 12 + ai_stand, 0.000, punk_talk_think, // frame 13 + ai_stand, 0.000, punk_talk_think, // frame 14 + ai_stand, 0.000, punk_talk_think, // frame 15 + ai_stand, 0.000, punk_talk_think, // frame 16 + ai_stand, 0.000, punk_talk_think, // frame 17 + ai_stand, 0.000, punk_talk_think, // frame 18 + ai_stand, 0.000, punk_talk_think, // frame 19 + ai_stand, 0.000, punk_talk_think, // frame 20 + ai_stand, 0.000, punk_talk_think, // frame 21 + ai_stand, 0.000, punk_talk_think, // frame 22 + ai_stand, 0.000, punk_talk_think, // frame 23 + ai_stand, 0.000, punk_talk_think, // frame 24 + ai_stand, 0.000, punk_talk_think, // frame 25 + ai_stand, 0.000, punk_talk_think, // frame 26 + ai_stand, 0.000, punk_talk_think, // frame 27 + ai_stand, 0.000, punk_talk_think, // frame 28 + ai_stand, 0.000, punk_talk_think, // frame 29 + ai_stand, 0.000, punk_talk_think, // frame 30 + ai_stand, 0.000, punk_talk_think, // frame 31 + ai_stand, 0.000, punk_talk_think, // frame 32 + ai_stand, 0.000, punk_talk_think, // frame 33 + ai_stand, 0.000, punk_talk_think, // frame 34 + ai_stand, 0.000, punk_talk_think, // frame 35 + ai_stand, 0.000, punk_talk_think, // frame 36 + ai_stand, 0.000, punk_talk_think, // frame 37 + ai_stand, 0.000, punk_talk_think, // frame 38 + ai_stand, 0.000, punk_talk_think, // frame 39 + ai_stand, 0.000, punk_talk_think, // frame 40 + ai_stand, 0.000, punk_talk_think, // frame 41 + ai_stand, 0.000, punk_talk_think, // frame 42 + ai_stand, 0.000, punk_talk_think, // frame 43 + ai_stand, 0.000, punk_talk_think, // frame 44 + ai_stand, 0.000, punk_talk_think, // frame 45 + ai_stand, 0.000, punk_talk_think, // frame 46 +}; +mmove_t punk_move_sg_talk6 = {FRAME_sg_talk6_01, FRAME_sg_talk6_47, punk_frames_sg_talk6, punk_end_stand}; + + +mframe_t punk_frames_walk_dokey[] = +{ + ai_runDOKEY, 12.686, EP_ReachedDoKey, // frame 0 + ai_runDOKEY, 6.612, EP_ReachedDoKey, // frame 1 + ai_runDOKEY, 4.302, EP_ReachedDoKey, // frame 2 + ai_runDOKEY, 8.823, EP_ReachedDoKey, // frame 3 + ai_runDOKEY, 7.734, EP_ReachedDoKey, // frame 4 + ai_runDOKEY, 9.099, EP_ReachedDoKey, // frame 5 + ai_runDOKEY, 9.405, EP_ReachedDoKey, // frame 6 + ai_runDOKEY, 5.060, EP_ReachedDoKey, // frame 7 + ai_runDOKEY, 4.412, EP_ReachedDoKey, // frame 8 + ai_runDOKEY, 8.700, EP_ReachedDoKey, // frame 9 +}; +mmove_t punk_move_walk_dokey = {FRAME_walk_gdown_01, FRAME_walk_gdown_10, punk_frames_walk_dokey, EP_ReachedDoKey}; + +mframe_t punk_frames_crch_dokey[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 + ai_stand, 0.000, NULL, // frame 9 + ai_stand, 0.000, NULL, // frame 10 + ai_stand, 0.000, NULL, // frame 11 + ai_stand, 0.000, NULL, // frame 12 + ai_stand, 0.000, NULL, // frame 13 + ai_stand, 0.000, NULL, // frame 14 + ai_stand, 0.000, NULL, // frame 15 + ai_stand, 0.000, NULL, // frame 16 + ai_stand, 0.000, NULL, // frame 17 + ai_stand, 0.000, NULL, // frame 18 + ai_stand, 0.000, NULL, // frame 19 +}; +mmove_t punk_move_crch_dokey = {FRAME_crch_astand_01, FRAME_crch_astand_20, punk_frames_crch_dokey, EP_EndDoKey}; diff --git a/gamesrc/ai_thug2_tables.h b/gamesrc/ai_thug2_tables.h new file mode 100644 index 0000000..15a471f --- /dev/null +++ b/gamesrc/ai_thug2_tables.h @@ -0,0 +1,1605 @@ +mframe_t thug2_frames_sitdn1[] = +{ + ai_stand, 0.000, thug2_talk_think, // frame 0 + ai_stand, 0.000, thug2_talk_think, // frame 1 + ai_stand, 0.000, thug2_talk_think, // frame 2 + ai_stand, 0.000, thug2_talk_think, // frame 3 + ai_stand, 0.000, thug2_talk_think, // frame 4 + ai_stand, 0.000, thug2_talk_think, // frame 5 + ai_stand, 0.000, thug2_talk_think, // frame 6 + ai_stand, 0.000, thug2_talk_think, // frame 7 + ai_stand, 0.000, thug2_talk_think, // frame 8 + ai_stand, 0.000, thug2_talk_think, // frame 9 + ai_stand, 0.000, thug2_talk_think, // frame 10 + ai_stand, 0.000, thug2_talk_think, // frame 11 +}; +mmove_t thug2_move_sitdn1 = {FRAME_sitdn1_01, FRAME_sitdn1_12, thug2_frames_sitdn1, thug2_end_stand}; + +mframe_t thug2_frames_sitdn2[] = +{ + ai_stand, 0.000, thug2_talk_think, // frame 0 + ai_stand, 0.000, thug2_talk_think, // frame 1 + ai_stand, 0.000, thug2_talk_think, // frame 2 + ai_stand, 0.000, thug2_talk_think, // frame 3 + ai_stand, 0.000, thug2_talk_think, // frame 4 + ai_stand, 0.000, thug2_talk_think, // frame 5 + ai_stand, 0.000, thug2_talk_think, // frame 6 + ai_stand, 0.000, thug2_talk_think, // frame 7 + ai_stand, 0.000, thug2_talk_think, // frame 8 + ai_stand, 0.000, thug2_talk_think, // frame 9 + ai_stand, 0.000, thug2_talk_think, // frame 10 + ai_stand, 0.000, thug2_talk_think, // frame 11 + ai_stand, 0.000, thug2_talk_think, // frame 12 + ai_stand, 0.000, thug2_talk_think, // frame 13 + ai_stand, 0.000, thug2_talk_think, // frame 14 + ai_stand, 0.000, thug2_talk_think, // frame 15 + ai_stand, 0.000, thug2_talk_think, // frame 16 + ai_stand, 0.000, thug2_talk_think, // frame 17 + ai_stand, 0.000, thug2_talk_think, // frame 18 + ai_stand, 0.000, thug2_talk_think, // frame 19 + ai_stand, 0.000, thug2_talk_think, // frame 20 + ai_stand, 0.000, thug2_talk_think, // frame 21 + ai_stand, 0.000, thug2_talk_think, // frame 22 + ai_stand, 0.000, thug2_talk_think, // frame 23 + ai_stand, 0.000, thug2_talk_think, // frame 24 + ai_stand, 0.000, thug2_talk_think, // frame 25 + ai_stand, 0.000, thug2_talk_think, // frame 26 + ai_stand, 0.000, thug2_talk_think, // frame 27 + ai_stand, 0.000, thug2_talk_think, // frame 28 + ai_stand, 0.000, thug2_talk_think, // frame 29 + ai_stand, 0.000, thug2_talk_think, // frame 30 + ai_stand, 0.000, thug2_talk_think, // frame 31 + ai_stand, 0.000, thug2_talk_think, // frame 32 + ai_stand, 0.000, thug2_talk_think, // frame 33 + ai_stand, 0.000, thug2_talk_think, // frame 34 +}; +mmove_t thug2_move_sitdn2 = {FRAME_sitdn2_01, FRAME_sitdn2_35, thug2_frames_sitdn2, thug2_end_stand}; + +mframe_t thug2_frames_ambsit1[] = +{ + ai_stand, 0.000, thug2_talk_think, // frame 0 + ai_stand, 0.000, thug2_talk_think, // frame 1 + ai_stand, 0.000, thug2_talk_think, // frame 2 + ai_stand, 0.000, thug2_talk_think, // frame 3 + ai_stand, 0.000, thug2_talk_think, // frame 4 + ai_stand, 0.000, thug2_talk_think, // frame 5 + ai_stand, 0.000, thug2_talk_think, // frame 6 + ai_stand, 0.000, thug2_talk_think, // frame 7 + ai_stand, 0.000, thug2_talk_think, // frame 8 + ai_stand, 0.000, thug2_talk_think, // frame 9 + ai_stand, 0.000, thug2_talk_think, // frame 10 + ai_stand, 0.000, thug2_talk_think, // frame 11 + ai_stand, 0.000, thug2_talk_think, // frame 12 + ai_stand, 0.000, thug2_talk_think, // frame 13 + ai_stand, 0.000, thug2_talk_think, // frame 14 + ai_stand, 0.000, thug2_talk_think, // frame 15 + ai_stand, 0.000, thug2_talk_think, // frame 16 + ai_stand, 0.000, thug2_talk_think, // frame 17 + ai_stand, 0.000, thug2_talk_think, // frame 18 + ai_stand, 0.000, thug2_talk_think, // frame 19 + ai_stand, 0.000, thug2_talk_think, // frame 20 + ai_stand, 0.000, thug2_talk_think, // frame 21 + ai_stand, 0.000, thug2_talk_think, // frame 22 + ai_stand, 0.000, thug2_talk_think, // frame 23 +}; +mmove_t thug2_move_ambsit1 = {FRAME_ambsit1_01, FRAME_ambsit1_24, thug2_frames_ambsit1, thug2_end_stand}; + +mframe_t thug2_frames_ambsit2[] = +{ + ai_stand, 0.000, thug2_talk_think, // frame 0 + ai_stand, 0.000, thug2_talk_think, // frame 1 + ai_stand, 0.000, thug2_talk_think, // frame 2 + ai_stand, 0.000, thug2_talk_think, // frame 3 + ai_stand, 0.000, thug2_talk_think, // frame 4 + ai_stand, 0.000, thug2_talk_think, // frame 5 + ai_stand, 0.000, thug2_talk_think, // frame 6 + ai_stand, 0.000, thug2_talk_think, // frame 7 + ai_stand, 0.000, thug2_talk_think, // frame 8 + ai_stand, 0.000, thug2_talk_think, // frame 9 +}; +mmove_t thug2_move_ambsit2 = {FRAME_ambsit2_01, FRAME_ambsit2_10, thug2_frames_ambsit2, thug2_end_stand}; + +mframe_t thug2_frames_ambsit3[] = +{ + ai_stand, 0.000, thug2_talk_think, // frame 0 + ai_stand, 0.000, thug2_talk_think, // frame 1 + ai_stand, 0.000, thug2_talk_think, // frame 2 + ai_stand, 0.000, thug2_talk_think, // frame 3 + ai_stand, 0.000, thug2_talk_think, // frame 4 + ai_stand, 0.000, thug2_talk_think, // frame 5 + ai_stand, 0.000, thug2_talk_think, // frame 6 + ai_stand, 0.000, thug2_talk_think, // frame 7 + ai_stand, 0.000, thug2_talk_think, // frame 8 + ai_stand, 0.000, thug2_talk_think, // frame 9 + ai_stand, 0.000, thug2_talk_think, // frame 10 + ai_stand, 0.000, thug2_talk_think, // frame 11 +}; +mmove_t thug2_move_ambsit3 = {FRAME_ambsit3_01, FRAME_ambsit3_12, thug2_frames_ambsit3, thug2_end_stand}; + +mframe_t thug2_frames_ambsit4[] = +{ + ai_stand, 0.000, thug2_talk_think, // frame 0 + ai_stand, 0.000, thug2_talk_think, // frame 1 + ai_stand, 0.000, thug2_talk_think, // frame 2 + ai_stand, 0.000, thug2_talk_think, // frame 3 + ai_stand, 0.000, thug2_talk_think, // frame 4 + ai_stand, 0.000, thug2_talk_think, // frame 5 + ai_stand, 0.000, thug2_talk_think, // frame 6 + ai_stand, 0.000, thug2_talk_think, // frame 7 + ai_stand, 0.000, thug2_talk_think, // frame 8 + ai_stand, 0.000, thug2_talk_think, // frame 9 + ai_stand, 0.000, thug2_talk_think, // frame 10 + ai_stand, 0.000, thug2_talk_think, // frame 11 + ai_stand, 0.000, thug2_talk_think, // frame 12 +}; +mmove_t thug2_move_ambsit4 = {FRAME_ambsit4_01, FRAME_ambsit4_13, thug2_frames_ambsit4, thug2_end_stand}; + +mframe_t thug2_frames_ambsit5[] = +{ + ai_stand, 0.000, thug2_talk_think, // frame 0 + ai_stand, 0.000, thug2_talk_think, // frame 1 + ai_stand, 0.000, thug2_talk_think, // frame 2 + ai_stand, 0.000, thug2_talk_think, // frame 3 + ai_stand, 0.000, thug2_talk_think, // frame 4 + ai_stand, 0.000, thug2_talk_think, // frame 5 + ai_stand, 0.000, thug2_talk_think, // frame 6 + ai_stand, 0.000, thug2_talk_think, // frame 7 + ai_stand, 0.000, thug2_talk_think, // frame 8 + ai_stand, 0.000, thug2_talk_think, // frame 9 + ai_stand, 0.000, thug2_talk_think, // frame 10 + ai_stand, 0.000, thug2_talk_think, // frame 11 + ai_stand, 0.000, thug2_talk_think, // frame 12 + ai_stand, 0.000, thug2_talk_think, // frame 13 + ai_stand, 0.000, thug2_talk_think, // frame 14 + ai_stand, 0.000, thug2_talk_think, // frame 15 + ai_stand, 0.000, thug2_talk_think, // frame 16 + ai_stand, 0.000, thug2_talk_think, // frame 17 + ai_stand, 0.000, thug2_talk_think, // frame 18 + ai_stand, 0.000, thug2_talk_think, // frame 19 + ai_stand, 0.000, thug2_talk_think, // frame 20 + ai_stand, 0.000, thug2_talk_think, // frame 21 + ai_stand, 0.000, thug2_talk_think, // frame 22 + ai_stand, 0.000, thug2_talk_think, // frame 23 + ai_stand, 0.000, thug2_talk_think, // frame 24 + ai_stand, 0.000, thug2_talk_think, // frame 25 + ai_stand, 0.000, thug2_talk_think, // frame 26 + ai_stand, 0.000, thug2_talk_think, // frame 27 + ai_stand, 0.000, thug2_talk_think, // frame 28 + ai_stand, 0.000, thug2_talk_think, // frame 29 +}; +mmove_t thug2_move_ambsit5 = {FRAME_ambsit5_01, FRAME_ambsit5_30, thug2_frames_ambsit5, thug2_end_stand}; + +mframe_t thug2_frames_ambsit6[] = +{ + ai_stand, 0.000, thug2_talk_think, // frame 0 + ai_stand, 0.000, thug2_talk_think, // frame 1 + ai_stand, 0.000, thug2_talk_think, // frame 2 + ai_stand, 0.000, thug2_talk_think, // frame 3 + ai_stand, 0.000, thug2_talk_think, // frame 4 + ai_stand, 0.000, thug2_talk_think, // frame 5 + ai_stand, 0.000, thug2_talk_think, // frame 6 + ai_stand, 0.000, thug2_talk_think, // frame 7 + ai_stand, 0.000, thug2_talk_think, // frame 8 + ai_stand, 0.000, thug2_talk_think, // frame 9 + ai_stand, 0.000, thug2_talk_think, // frame 10 + ai_stand, 0.000, thug2_talk_think, // frame 11 + ai_stand, 0.000, thug2_talk_think, // frame 12 + ai_stand, 0.000, thug2_talk_think, // frame 13 + ai_stand, 0.000, thug2_talk_think, // frame 14 + ai_stand, 0.000, thug2_talk_think, // frame 15 + ai_stand, 0.000, thug2_talk_think, // frame 16 + ai_stand, 0.000, thug2_talk_think, // frame 17 + ai_stand, 0.000, thug2_talk_think, // frame 18 + ai_stand, 0.000, thug2_talk_think, // frame 19 + ai_stand, 0.000, thug2_talk_think, // frame 20 + ai_stand, 0.000, thug2_talk_think, // frame 21 + ai_stand, 0.000, thug2_talk_think, // frame 22 +}; +mmove_t thug2_move_ambsit6 = {FRAME_ambsit6_01, FRAME_ambsit6_23, thug2_frames_ambsit6, thug2_end_stand}; + +mframe_t thug2_frames_ambsit7[] = +{ + ai_stand, 0.000, thug2_talk_think, // frame 0 + ai_stand, 0.000, thug2_talk_think, // frame 1 + ai_stand, 0.000, thug2_talk_think, // frame 2 + ai_stand, 0.000, thug2_talk_think, // frame 3 + ai_stand, 0.000, thug2_talk_think, // frame 4 + ai_stand, 0.000, thug2_talk_think, // frame 5 + ai_stand, 0.000, thug2_talk_think, // frame 6 + ai_stand, 0.000, thug2_talk_think, // frame 7 + ai_stand, 0.000, thug2_talk_think, // frame 8 + ai_stand, 0.000, thug2_talk_think, // frame 9 + ai_stand, 0.000, thug2_talk_think, // frame 10 + ai_stand, 0.000, thug2_talk_think, // frame 11 + ai_stand, 0.000, thug2_talk_think, // frame 12 + ai_stand, 0.000, thug2_talk_think, // frame 13 + ai_stand, 0.000, thug2_talk_think, // frame 14 + ai_stand, 0.000, thug2_talk_think, // frame 15 + ai_stand, 0.000, thug2_talk_think, // frame 16 + ai_stand, 0.000, thug2_talk_think, // frame 17 + ai_stand, 0.000, thug2_talk_think, // frame 18 + ai_stand, 0.000, thug2_talk_think, // frame 19 + ai_stand, 0.000, thug2_talk_think, // frame 20 + ai_stand, 0.000, thug2_talk_think, // frame 21 + ai_stand, 0.000, thug2_talk_think, // frame 22 + ai_stand, 0.000, thug2_talk_think, // frame 23 + ai_stand, 0.000, thug2_talk_think, // frame 24 + ai_stand, 0.000, thug2_talk_think, // frame 25 + ai_stand, 0.000, thug2_talk_think, // frame 26 + ai_stand, 0.000, thug2_talk_think, // frame 27 + ai_stand, 0.000, thug2_talk_think, // frame 28 + ai_stand, 0.000, thug2_talk_think, // frame 29 + ai_stand, 0.000, thug2_talk_think, // frame 30 + ai_stand, 0.000, thug2_talk_think, // frame 31 + ai_stand, 0.000, thug2_talk_think, // frame 32 + ai_stand, 0.000, thug2_talk_think, // frame 33 +}; +mmove_t thug2_move_ambsit7 = {FRAME_ambsit7_01, FRAME_ambsit7_34, thug2_frames_ambsit7, thug2_end_stand}; + +mframe_t thug2_frames_ambsit8[] = +{ + ai_stand, 0.000, thug2_talk_think, // frame 0 + ai_stand, 0.000, thug2_talk_think, // frame 1 + ai_stand, 0.000, thug2_talk_think, // frame 2 + ai_stand, 0.000, thug2_talk_think, // frame 3 + ai_stand, 0.000, thug2_talk_think, // frame 4 + ai_stand, 0.000, thug2_talk_think, // frame 5 + ai_stand, 0.000, thug2_talk_think, // frame 6 + ai_stand, 0.000, thug2_talk_think, // frame 7 + ai_stand, 0.000, thug2_talk_think, // frame 8 + ai_stand, 0.000, thug2_talk_think, // frame 9 + ai_stand, 0.000, thug2_talk_think, // frame 10 + ai_stand, 0.000, thug2_talk_think, // frame 11 + ai_stand, 0.000, thug2_talk_think, // frame 12 + ai_stand, 0.000, thug2_talk_think, // frame 13 + ai_stand, 0.000, thug2_talk_think, // frame 14 + ai_stand, 0.000, thug2_talk_think, // frame 15 +}; +mmove_t thug2_move_ambsit8 = {FRAME_ambsit8_01, FRAME_ambsit8_16, thug2_frames_ambsit8, thug2_end_stand}; + +mframe_t thug2_frames_ambsit9[] = +{ + ai_stand, 0.000, thug2_talk_think, // frame 0 + ai_stand, 0.000, thug2_talk_think, // frame 1 + ai_stand, 0.000, thug2_talk_think, // frame 2 + ai_stand, 0.000, thug2_talk_think, // frame 3 + ai_stand, 0.000, thug2_talk_think, // frame 4 + ai_stand, 0.000, thug2_talk_think, // frame 5 + ai_stand, 0.000, thug2_talk_think, // frame 6 + ai_stand, 0.000, thug2_talk_think, // frame 7 + ai_stand, 0.000, thug2_talk_think, // frame 8 + ai_stand, 0.000, thug2_talk_think, // frame 9 + ai_stand, 0.000, thug2_talk_think, // frame 10 + ai_stand, 0.000, thug2_talk_think, // frame 11 + ai_stand, 0.000, thug2_talk_think, // frame 12 + ai_stand, 0.000, thug2_talk_think, // frame 13 + ai_stand, 0.000, thug2_talk_think, // frame 14 + ai_stand, 0.000, thug2_talk_think, // frame 15 + ai_stand, 0.000, thug2_talk_think, // frame 16 + ai_stand, 0.000, thug2_talk_think, // frame 17 + ai_stand, 0.000, thug2_talk_think, // frame 18 + ai_stand, 0.000, thug2_talk_think, // frame 19 + ai_stand, 0.000, thug2_talk_think, // frame 20 + ai_stand, 0.000, thug2_talk_think, // frame 21 + ai_stand, 0.000, thug2_talk_think, // frame 22 + ai_stand, 0.000, thug2_talk_think, // frame 23 + ai_stand, 0.000, thug2_talk_think, // frame 24 +}; +mmove_t thug2_move_ambsit9 = {FRAME_ambsit9_01, FRAME_ambsit9_25, thug2_frames_ambsit9, thug2_end_stand}; + +mframe_t thug2_frames_cards1[] = +{ + ai_stand, 0.000, thug2_talk_think, // frame 0 + ai_stand, 0.000, thug2_talk_think, // frame 1 + ai_stand, 0.000, thug2_talk_think, // frame 2 + ai_stand, 0.000, thug2_talk_think, // frame 3 + ai_stand, 0.000, thug2_talk_think, // frame 4 + ai_stand, 0.000, thug2_talk_think, // frame 5 + ai_stand, 0.000, thug2_talk_think, // frame 6 + ai_stand, 0.000, thug2_talk_think, // frame 7 + ai_stand, 0.000, thug2_talk_think, // frame 8 + ai_stand, 0.000, thug2_talk_think, // frame 9 + ai_stand, 0.000, thug2_talk_think, // frame 10 + ai_stand, 0.000, thug2_talk_think, // frame 11 + ai_stand, 0.000, thug2_talk_think, // frame 12 + ai_stand, 0.000, thug2_talk_think, // frame 13 + ai_stand, 0.000, thug2_talk_think, // frame 14 + ai_stand, 0.000, thug2_talk_think, // frame 15 + ai_stand, 0.000, thug2_talk_think, // frame 16 + ai_stand, 0.000, thug2_talk_think, // frame 17 + ai_stand, 0.000, thug2_talk_think, // frame 18 + ai_stand, 0.000, thug2_talk_think, // frame 19 + ai_stand, 0.000, thug2_talk_think, // frame 20 + ai_stand, 0.000, thug2_talk_think, // frame 21 +}; +mmove_t thug2_move_cards1 = {FRAME_cards1_01, FRAME_cards1_22, thug2_frames_cards1, thug2_end_stand}; + +mframe_t thug2_frames_cards2[] = +{ + ai_stand, 0.000, thug2_talk_think, // frame 0 + ai_stand, 0.000, thug2_talk_think, // frame 1 + ai_stand, 0.000, thug2_talk_think, // frame 2 + ai_stand, 0.000, thug2_talk_think, // frame 3 + ai_stand, 0.000, thug2_talk_think, // frame 4 + ai_stand, 0.000, thug2_talk_think, // frame 5 + ai_stand, 0.000, thug2_talk_think, // frame 6 + ai_stand, 0.000, thug2_talk_think, // frame 7 + ai_stand, 0.000, thug2_talk_think, // frame 8 + ai_stand, 0.000, thug2_talk_think, // frame 9 + ai_stand, 0.000, thug2_talk_think, // frame 10 + ai_stand, 0.000, thug2_talk_think, // frame 11 + ai_stand, 0.000, thug2_talk_think, // frame 12 + ai_stand, 0.000, thug2_talk_think, // frame 13 + ai_stand, 0.000, thug2_talk_think, // frame 14 + ai_stand, 0.000, thug2_talk_think, // frame 15 +}; +mmove_t thug2_move_cards2 = {FRAME_cards2_01, FRAME_cards2_16, thug2_frames_cards2, thug2_end_stand}; + +mframe_t thug2_frames_cards3[] = +{ + ai_stand, 0.000, thug2_talk_think, // frame 0 + ai_stand, 0.000, thug2_talk_think, // frame 1 + ai_stand, 0.000, thug2_talk_think, // frame 2 + ai_stand, 0.000, thug2_talk_think, // frame 3 + ai_stand, 0.000, thug2_talk_think, // frame 4 + ai_stand, 0.000, thug2_talk_think, // frame 5 + ai_stand, 0.000, thug2_talk_think, // frame 6 + ai_stand, 0.000, thug2_talk_think, // frame 7 + ai_stand, 0.000, thug2_talk_think, // frame 8 + ai_stand, 0.000, thug2_talk_think, // frame 9 + ai_stand, 0.000, thug2_talk_think, // frame 10 + ai_stand, 0.000, thug2_talk_think, // frame 11 + ai_stand, 0.000, thug2_talk_think, // frame 12 + ai_stand, 0.000, thug2_talk_think, // frame 13 + ai_stand, 0.000, thug2_talk_think, // frame 14 + ai_stand, 0.000, thug2_talk_think, // frame 15 + ai_stand, 0.000, thug2_talk_think, // frame 16 + ai_stand, 0.000, thug2_talk_think, // frame 17 + ai_stand, 0.000, thug2_talk_think, // frame 18 + ai_stand, 0.000, thug2_talk_think, // frame 19 + ai_stand, 0.000, thug2_talk_think, // frame 20 + ai_stand, 0.000, thug2_talk_think, // frame 21 + ai_stand, 0.000, thug2_talk_think, // frame 22 + ai_stand, 0.000, thug2_talk_think, // frame 23 + ai_stand, 0.000, thug2_talk_think, // frame 24 + ai_stand, 0.000, thug2_talk_think, // frame 25 + ai_stand, 0.000, thug2_talk_think, // frame 26 + ai_stand, 0.000, thug2_talk_think, // frame 27 + ai_stand, 0.000, thug2_talk_think, // frame 28 + ai_stand, 0.000, thug2_talk_think, // frame 29 + ai_stand, 0.000, thug2_talk_think, // frame 30 + ai_stand, 0.000, thug2_talk_think, // frame 31 + ai_stand, 0.000, thug2_talk_think, // frame 32 + ai_stand, 0.000, thug2_talk_think, // frame 33 + ai_stand, 0.000, thug2_talk_think, // frame 34 + ai_stand, 0.000, thug2_talk_think, // frame 35 +}; +mmove_t thug2_move_cards3 = {FRAME_cards3_01, FRAME_cards3_36, thug2_frames_cards3, thug2_end_stand}; + +mframe_t thug2_frames_cards4[] = +{ + ai_stand, 0.000, thug2_talk_think, // frame 0 + ai_stand, 0.000, thug2_talk_think, // frame 1 + ai_stand, 0.000, thug2_talk_think, // frame 2 + ai_stand, 0.000, thug2_talk_think, // frame 3 + ai_stand, 0.000, thug2_talk_think, // frame 4 + ai_stand, 0.000, thug2_talk_think, // frame 5 + ai_stand, 0.000, thug2_talk_think, // frame 6 + ai_stand, 0.000, thug2_talk_think, // frame 7 + ai_stand, 0.000, thug2_talk_think, // frame 8 + ai_stand, 0.000, thug2_talk_think, // frame 9 + ai_stand, 0.000, thug2_talk_think, // frame 10 + ai_stand, 0.000, thug2_talk_think, // frame 11 + ai_stand, 0.000, thug2_talk_think, // frame 12 + ai_stand, 0.000, thug2_talk_think, // frame 13 + ai_stand, 0.000, thug2_talk_think, // frame 14 + ai_stand, 0.000, thug2_talk_think, // frame 15 + ai_stand, 0.000, thug2_talk_think, // frame 16 + ai_stand, 0.000, thug2_talk_think, // frame 17 + ai_stand, 0.000, thug2_talk_think, // frame 18 + ai_stand, 0.000, thug2_talk_think, // frame 19 + ai_stand, 0.000, thug2_talk_think, // frame 20 + ai_stand, 0.000, thug2_talk_think, // frame 21 + ai_stand, 0.000, thug2_talk_think, // frame 22 + ai_stand, 0.000, thug2_talk_think, // frame 23 + ai_stand, 0.000, thug2_talk_think, // frame 24 + ai_stand, 0.000, thug2_talk_think, // frame 25 + ai_stand, 0.000, thug2_talk_think, // frame 26 + ai_stand, 0.000, thug2_talk_think, // frame 27 + ai_stand, 0.000, thug2_talk_think, // frame 28 + ai_stand, 0.000, thug2_talk_think, // frame 29 + ai_stand, 0.000, thug2_talk_think, // frame 30 + ai_stand, 0.000, thug2_talk_think, // frame 31 + ai_stand, 0.000, thug2_talk_think, // frame 32 + ai_stand, 0.000, thug2_talk_think, // frame 33 + ai_stand, 0.000, thug2_talk_think, // frame 34 + ai_stand, 0.000, thug2_talk_think, // frame 35 + ai_stand, 0.000, thug2_talk_think, // frame 36 +}; +mmove_t thug2_move_cards4 = {FRAME_cards4_01, FRAME_cards4_37, thug2_frames_cards4, thug2_end_stand}; + +mframe_t thug2_frames_cards5[] = +{ + ai_stand, 0.000, thug2_talk_think, // frame 0 + ai_stand, 0.000, thug2_talk_think, // frame 1 + ai_stand, 0.000, thug2_talk_think, // frame 2 + ai_stand, 0.000, thug2_talk_think, // frame 3 + ai_stand, 0.000, thug2_talk_think, // frame 4 + ai_stand, 0.000, thug2_talk_think, // frame 5 + ai_stand, 0.000, thug2_talk_think, // frame 6 + ai_stand, 0.000, thug2_talk_think, // frame 7 + ai_stand, 0.000, thug2_talk_think, // frame 8 + ai_stand, 0.000, thug2_talk_think, // frame 9 + ai_stand, 0.000, thug2_talk_think, // frame 10 + ai_stand, 0.000, thug2_talk_think, // frame 11 + ai_stand, 0.000, thug2_talk_think, // frame 12 + ai_stand, 0.000, thug2_talk_think, // frame 13 +}; +mmove_t thug2_move_cards5 = {FRAME_cards5_01, FRAME_cards5_14, thug2_frames_cards5, thug2_end_stand}; + +mframe_t thug2_frames_cards6[] = +{ + ai_stand, 0.000, thug2_talk_think, // frame 0 + ai_stand, 0.000, thug2_talk_think, // frame 1 + ai_stand, 0.000, thug2_talk_think, // frame 2 + ai_stand, 0.000, thug2_talk_think, // frame 3 + ai_stand, 0.000, thug2_talk_think, // frame 4 + ai_stand, 0.000, thug2_talk_think, // frame 5 + ai_stand, 0.000, thug2_talk_think, // frame 6 + ai_stand, 0.000, thug2_talk_think, // frame 7 + ai_stand, 0.000, thug2_talk_think, // frame 8 + ai_stand, 0.000, thug2_talk_think, // frame 9 + ai_stand, 0.000, thug2_talk_think, // frame 10 + ai_stand, 0.000, thug2_talk_think, // frame 11 + ai_stand, 0.000, thug2_talk_think, // frame 12 + ai_stand, 0.000, thug2_talk_think, // frame 13 + ai_stand, 0.000, thug2_talk_think, // frame 14 + ai_stand, 0.000, thug2_talk_think, // frame 15 + ai_stand, 0.000, thug2_talk_think, // frame 16 + ai_stand, 0.000, thug2_talk_think, // frame 17 + ai_stand, 0.000, thug2_talk_think, // frame 18 + ai_stand, 0.000, thug2_talk_think, // frame 19 +}; +mmove_t thug2_move_cards6 = {FRAME_cards6_01, FRAME_cards6_20, thug2_frames_cards6, thug2_end_stand}; + +mframe_t thug2_frames_cards7[] = +{ + ai_stand, 0.000, thug2_talk_think, // frame 0 + ai_stand, 0.000, thug2_talk_think, // frame 1 + ai_stand, 0.000, thug2_talk_think, // frame 2 + ai_stand, 0.000, thug2_talk_think, // frame 3 + ai_stand, 0.000, thug2_talk_think, // frame 4 + ai_stand, 0.000, thug2_talk_think, // frame 5 + ai_stand, 0.000, thug2_talk_think, // frame 6 + ai_stand, 0.000, thug2_talk_think, // frame 7 + ai_stand, 0.000, thug2_talk_think, // frame 8 + ai_stand, 0.000, thug2_talk_think, // frame 9 + ai_stand, 0.000, thug2_talk_think, // frame 10 + ai_stand, 0.000, thug2_talk_think, // frame 11 + ai_stand, 0.000, thug2_talk_think, // frame 12 + ai_stand, 0.000, thug2_talk_think, // frame 13 + ai_stand, 0.000, thug2_talk_think, // frame 14 + ai_stand, 0.000, thug2_talk_think, // frame 15 + ai_stand, 0.000, thug2_talk_think, // frame 16 + ai_stand, 0.000, thug2_talk_think, // frame 17 +}; +mmove_t thug2_move_cards7 = {FRAME_cards7_01, FRAME_cards7_18, thug2_frames_cards7, thug2_end_stand}; + + +mframe_t thug2_frames_jumpup_nw[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 + ai_stand, 0.000, NULL, // frame 9 + ai_stand, 0.000, NULL, // frame 10 +}; +mmove_t thug2_move_jumpup_nw = {FRAME_jumpup_nw_01, FRAME_jumpup_nw_11, thug2_frames_jumpup_nw, thug2_end_standup}; + +mframe_t thug2_frames_jumpup_g[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 +}; +mmove_t thug2_move_jumpup_g = {FRAME_jumpup_g_01, FRAME_jumpup_g_09, thug2_frames_jumpup_g, thug2_end_standup}; + +mframe_t thug2_frames_ambstand1[] = +{ + ai_stand, 0.000, thug2_talk_think, // frame 0 + ai_stand, 0.000, thug2_talk_think, // frame 1 + ai_stand, 0.000, thug2_talk_think, // frame 2 + ai_stand, 0.000, thug2_talk_think, // frame 3 + ai_stand, 0.000, thug2_talk_think, // frame 4 + ai_stand, 0.000, thug2_talk_think, // frame 5 + ai_stand, 0.000, thug2_talk_think, // frame 6 + ai_stand, 0.000, thug2_talk_think, // frame 7 + ai_stand, 0.000, thug2_talk_think, // frame 8 + ai_stand, 0.000, thug2_talk_think, // frame 9 + ai_stand, 0.000, thug2_talk_think, // frame 10 + ai_stand, 0.000, thug2_talk_think, // frame 11 + ai_stand, 0.000, thug2_talk_think, // frame 12 +}; +mmove_t thug2_move_ambstand1 = {FRAME_ambstand1_01, FRAME_ambstand1_13, thug2_frames_ambstand1, thug2_end_stand}; + +mframe_t thug2_frames_ambstand2[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 +}; +mmove_t thug2_move_ambstand2 = {FRAME_ambstand2_01, FRAME_ambstand2_03, thug2_frames_ambstand2, thug2_end_stand}; + +mframe_t thug2_frames_surrender[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 +}; +mmove_t thug2_move_surrender = {FRAME_surrender_01, FRAME_surrender_08, thug2_frames_surrender, NULL}; + +mframe_t thug2_frames_surr2std[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 +}; +mmove_t thug2_move_surr2std = {FRAME_surr2std_01, FRAME_surr2std_06, thug2_frames_surr2std, NULL}; + + + +mframe_t thug2_frames_pull_guns[] = +{ + ai_turn, 0.000, NULL, // frame 0 + ai_turn, 0.000, NULL, // frame 1 + ai_turn, 0.000, thug2_show_guns, // frame 2 + ai_turn, 0.000, NULL, // frame 3 + ai_turn, 0.000, NULL, // frame 4 + ai_turn, 0.000, NULL, // frame 5 + ai_turn, 0.000, NULL, // frame 6 + ai_turn, 0.000, NULL, // frame 7 +}; +mmove_t thug2_move_pull_guns = {FRAME_pull_guns_01, FRAME_pull_guns_08, thug2_frames_pull_guns, AI_EndAttack}; + +mframe_t thug2_frames_shoot[] = +{ + ai_turn, 0.000, thug2_left_fire, // frame 0 + ai_turn, 0.000, NULL, // frame 1 + ai_turn, 0.000, thug2_right_fire, // frame 2 + ai_turn, 0.000, NULL, // frame 3 +}; +mmove_t thug2_move_shoot = {FRAME_shoot_01, FRAME_shoot_04, thug2_frames_shoot, AI_EndAttack}; + +mframe_t thug2_frames_reload[] = +{ + ai_turn, 0.000, NULL, // frame 0 + ai_turn, 0.000, NULL, // frame 1 + ai_turn, 0.000, NULL, // frame 2 + ai_turn, 0.000, NULL, // frame 3 + ai_turn, 0.000, NULL, // frame 4 + ai_turn, 0.000, NULL, // frame 5 + ai_turn, 0.000, NULL, // frame 6 + ai_turn, 0.000, NULL, // frame 7 + ai_turn, 0.000, NULL, // frame 8 + ai_turn, 0.000, NULL, // frame 9 + ai_turn, 0.000, NULL, // frame 10 + ai_turn, 0.000, NULL, // frame 11 + ai_turn, 0.000, NULL, // frame 12 +}; +mmove_t thug2_move_reload = {FRAME_reload_01, FRAME_reload_13, thug2_frames_reload, AI_EndAttack}; + +mframe_t thug2_frames_kneel[] = +{ + ai_charge, 0.000, NULL, // frame 0 + ai_charge, 0.000, thug2_show_guns, // frame 1 + ai_charge, 0.000, NULL, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, NULL, // frame 4 + ai_charge, 0.000, NULL, // frame 5 + ai_charge, 0.000, NULL, // frame 6 +}; +mmove_t thug2_move_kneel = {FRAME_kneel_01, FRAME_kneel_07, thug2_frames_kneel, thug2_kneel_shoot}; + +mframe_t thug2_frames_kneel_up[] = +{ + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 0 +}; +mmove_t thug2_move_kneel_up = {FRAME_kneel_07, FRAME_kneel_01, thug2_frames_kneel_up, AI_EndAttack}; + +mframe_t thug2_frames_knl_shoot[] = +{ + NULL, 0.000, thug2_right_fire, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, thug2_left_fire, // frame 4 + NULL, 0.000, NULL, // frame 5 +}; +mmove_t thug2_move_knl_shoot = {FRAME_knl_shoot_01, FRAME_knl_shoot_06, thug2_frames_knl_shoot, thug2_end_kneel_attack}; + +mframe_t thug2_frames_melee1[] = +{ + ai_turn2, 0.000, thug2_melee_bail, // frame 0 + ai_turn2, 0.000, thug2_melee_bail, // frame 1 + ai_turn2, 0.000, thug2_melee_bail, // frame 2 + ai_turn2, 0.000, thug2_melee, // frame 4 + ai_turn2, 0.000, thug2_melee_bail, // frame 5 + ai_turn2, 0.000, thug2_melee, // frame 7 + ai_turn2, 0.000, NULL, // frame 9 + ai_turn2, 0.000, NULL, // frame 10 +}; +mmove_t thug2_move_melee1 = {FRAME_melee1_01, FRAME_melee1_08, thug2_frames_melee1, AI_EndAttack}; + +mframe_t thug2_frames_melee2[] = +{ + ai_turn2, 0.000, thug2_melee_bail, // frame 0 + ai_turn2, 0.000, thug2_melee_bail, // frame 1 + ai_turn2, 0.000, thug2_melee_bail, // frame 3 + ai_turn2, 0.000, thug2_melee, // frame 4 + ai_turn2, 0.000, thug2_melee_bail, // frame 6 + ai_turn2, 0.000, thug2_melee_bail, // frame 7 + ai_turn2, 0.000, thug2_melee, // frame 8 + ai_turn2, 0.000, NULL, // frame 10 + ai_turn2, 0.000, NULL, // frame 8 +}; +mmove_t thug2_move_melee2 = {FRAME_melee2_01, FRAME_melee2_09, thug2_frames_melee2, AI_EndAttack}; + +mframe_t thug2_frames_melee3[] = +{ + ai_turn2, 0.000, thug2_melee_bail, // frame 0 + ai_turn2, 0.000, thug2_melee_bail, // frame 2 + ai_turn2, 0.000, thug2_melee_bail, // frame 3 + ai_turn2, 0.000, thug2_melee, // frame 4 + ai_turn2, 0.000, NULL, // frame 7 + ai_turn2, 0.000, NULL, // frame 8 + ai_turn2, 0.000, NULL, // frame 9 +}; +mmove_t thug2_move_melee3 = {FRAME_melee3_01, FRAME_melee3_07, thug2_frames_melee3, AI_EndAttack}; + +mframe_t thug2_frames_melee4[] = +{ + ai_turn2, 0.000, thug2_melee_bail, // frame 0 + ai_turn2, 0.000, thug2_melee_bail, // frame 1 + ai_turn2, 0.000, thug2_melee_bail, // frame 3 + ai_turn2, 0.000, thug2_melee, // frame 4 + ai_turn2, 0.000, NULL, // frame 7 + ai_turn2, 0.000, NULL, // frame 8 +}; +mmove_t thug2_move_melee4 = {FRAME_melee4_01, FRAME_melee4_06, thug2_frames_melee4, AI_EndAttack}; + +mframe_t thug2_frames_melee5[] = +{ + ai_turn2, 0.000, thug2_melee_bail, // frame 0 + ai_turn2, 0.000, thug2_melee_bail, // frame 1 + ai_turn2, 0.000, thug2_melee_bail, // frame 3 + ai_turn2, 0.000, thug2_melee_bail, // frame 4 + ai_turn2, 0.000, thug2_melee, // frame 5 + ai_turn2, 0.000, NULL, // frame 8 + ai_turn2, 0.000, NULL, // frame 9 +}; +mmove_t thug2_move_melee5 = {FRAME_melee5_01, FRAME_melee5_07, thug2_frames_melee5, AI_EndAttack}; + +mframe_t thug2_frames_run_melee[] = +{ + ai_charge, 0.000, NULL, // frame 0 + ai_charge, 20.696, NULL, // frame 1 + ai_charge, 26.558, NULL, // frame 2 + ai_charge, 34.731, thug2_melee, // frame 3 + ai_charge, 33.953, NULL, // frame 4 + ai_charge, 28.473, NULL, // frame 5 +}; +mmove_t thug2_move_run_melee = {FRAME_run_melee_01, FRAME_run_melee_06, thug2_frames_run_melee, AI_EndAttack}; + +mframe_t thug2_frames_jump[] = +{ +// ai_stand, 0.000, NULL, // frame 0 +// ai_stand, 0.000, NULL, // frame 1 +// ai_stand, 0.000, NULL, // frame 2 +// ai_stand, 0.000, NULL, // frame 3 +// ai_stand, 0.000, NULL, // frame 4 + + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, AI_CheckStillInair, // frame 7 + NULL, 0.000, NULL, // frame 8 + +// ai_stand, 0.000, NULL, // frame 9 +// ai_stand, 0.000, NULL, // frame 10 +// ai_stand, 0.000, NULL, // frame 11 +// ai_stand, 0.000, NULL, // frame 12 +// ai_stand, 0.000, NULL, // frame 13 +// ai_stand, 0.000, NULL, // frame 14 +// ai_stand, 0.000, NULL, // frame 15 +// ai_stand, 0.000, NULL, // frame 16 +}; +mmove_t thug2_move_jump = {FRAME_jump_05, FRAME_jump_08, thug2_frames_jump, AI_EndJump}; + +mframe_t thug2_frames_walk_shoot[] = +{ + ai_charge, 7.047, thug2_left_fire, // frame 0 + ai_charge, 5.998, NULL, // frame 1 + ai_charge, 3.820, NULL, // frame 2 + ai_charge, 7.507, NULL, // frame 3 + ai_charge, 8.655, thug2_right_fire, // frame 4 + ai_charge, 9.650, NULL, // frame 5 + ai_charge, 0.565, NULL, // frame 6 + ai_charge, 13.452, NULL, // frame 7 + ai_charge, 7.716, thug2_left_fire, // frame 8 + ai_charge, 8.753, NULL, // frame 9 +}; +mmove_t thug2_move_walk_shoot = {FRAME_walk_shoot_01, FRAME_walk_shoot_10, thug2_frames_walk_shoot, AI_EndAttack}; + +mframe_t thug2_frames_reverse_walk_shoot[] = +{ + ai_charge,- 7.047, thug2_left_fire, // frame 0 + ai_charge,- 5.998, NULL, // frame 1 + ai_charge,- 3.820, NULL, // frame 2 + ai_charge,- 7.507, NULL, // frame 3 + ai_charge,- 8.655, thug2_right_fire, // frame 4 + ai_charge,- 9.650, NULL, // frame 5 + ai_charge,- 0.565, NULL, // frame 6 + ai_charge,- 13.452, NULL, // frame 7 + ai_charge,- 7.716, thug2_left_fire, // frame 8 + ai_charge,- 8.753, NULL, // frame 9 +}; +mmove_t thug2_move_reverse_walk_shoot = {FRAME_walk_shoot_10, FRAME_walk_shoot_01, thug2_frames_reverse_walk_shoot, AI_EndAttack}; + +mframe_t thug2_frames_walk_guns_dn[] = +{ + ai_run, 0.834, NULL, // frame 0 + ai_run, 2.767, NULL, // frame 1 + ai_run, 5.854, NULL, // frame 2 + ai_run, 3.947, NULL, // frame 3 + ai_run, 8.270, NULL, // frame 4 + ai_run, 4.192, NULL, // frame 5 + ai_run, 13.362, NULL, // frame 6 + ai_run, 12.064, NULL, // frame 7 + ai_run, 14.928, NULL, // frame 8 + ai_run, 6.636, NULL, // frame 9 +}; +mmove_t thug2_move_walk_guns_dn = {FRAME_walk_guns_dn_01, FRAME_walk_guns_dn_10, thug2_frames_walk_guns_dn, NULL}; + +mframe_t thug2_frames_avoid_walk[] = +{ + ai_turn, 0.834, NULL, // frame 0 + ai_turn, 2.767, NULL, // frame 1 + ai_turn, 5.854, NULL, // frame 2 + ai_turn, 3.947, NULL, // frame 3 + ai_turn, 8.270, NULL, // frame 4 + ai_turn, 4.192, NULL, // frame 5 + ai_turn, 13.362, NULL, // frame 6 + ai_turn, 12.064, NULL, // frame 7 + ai_turn, 14.928, NULL, // frame 8 + ai_turn, 6.636, NULL, // frame 9 +}; +mmove_t thug2_move_avoid_walk = {FRAME_walk_guns_dn_01, FRAME_walk_guns_dn_10, thug2_frames_avoid_walk, AI_EndAttack}; + +mframe_t thug2_frames_avoid_reverse_walk[] = +{ + ai_turn, -6.636, NULL, // frame 0 + ai_turn, -14.928, NULL, // frame 1 + ai_turn, -12.064, NULL, // frame 2 + ai_turn, -13.362, NULL, // frame 3 + ai_turn, -4.192, NULL, // frame 4 + ai_turn, -8.270, NULL, // frame 5 + ai_turn, -3.947, NULL, // frame 6 + ai_turn, -5.854, NULL, // frame 7 + ai_turn, -2.767, NULL, // frame 8 + ai_turn, -0.834, NULL, // frame 9 +}; +mmove_t thug2_move_avoid_reverse_walk = {FRAME_walk_guns_dn_10, FRAME_walk_guns_dn_01, thug2_frames_avoid_reverse_walk, AI_EndAttack}; + +mframe_t thug2_frames_avoid_run[] = +{ + ai_turn, -1.047, NULL, // frame 0 + ai_turn, 8.567, NULL, // frame 1 + ai_turn, 10.335, NULL, // frame 2 + ai_turn, 13.799, NULL, // frame 3 + ai_turn, 11.656, NULL, // frame 4 + ai_turn, 11.956, NULL, // frame 5 +}; +mmove_t thug2_move_avoid_run = {FRAME_run_guns_dn_01, FRAME_run_guns_dn_06, thug2_frames_avoid_run, AI_EndAttack}; + +mframe_t thug2_frames_avoid_reverse_run[] = +{ + ai_turn, -11.956, NULL, // frame 5 + ai_turn, -11.656, NULL, // frame 4 + ai_turn, -13.799, NULL, // frame 3 + ai_turn, -10.335, NULL, // frame 2 + ai_turn, - 8.567, NULL, // frame 1 + ai_turn, 1.047, NULL, // frame 0 +}; +mmove_t thug2_move_avoid_reverse_run = {FRAME_run_guns_dn_06, FRAME_run_guns_dn_01, thug2_frames_avoid_reverse_run, AI_EndAttack}; + +mframe_t thug2_frames_run_shoot[] = +{ + ai_run, -0.390, thug2_right_fire, // frame 0 + ai_run, 27.006, thug2_left_fire, // frame 1 + ai_run, 35.956, NULL, // frame 2 + ai_run, 35.864, thug2_right_fire, // frame 3 + ai_run, 30.130, NULL, // frame 4 + ai_run, 25.292, thug2_left_fire, // frame 5 +}; +mmove_t thug2_move_run_shoot = {FRAME_run_shoot_01, FRAME_run_shoot_06, thug2_frames_run_shoot, AI_EndAttack}; + +mframe_t thug2_frames_run_guns_dn[] = +{ + ai_run, -0.303, NULL, // frame 0 + ai_run, 17.188, NULL, // frame 1 + ai_run, 31.486, NULL, // frame 2 + ai_run, 31.052, NULL, // frame 3 + ai_run, 23.944, NULL, // frame 4 + ai_run, 24.549, NULL, // frame 5 +}; +mmove_t thug2_move_run_guns_dn = {FRAME_run_guns_dn_01, FRAME_run_guns_dn_06, thug2_frames_run_guns_dn, NULL}; + +mframe_t thug2_frames_run_on_fire[] = +{ + ai_onfire_run, -4.097, NULL, // frame 0 + ai_onfire_run, 20.973, NULL, // frame 1 + ai_onfire_run, 44.080, NULL, // frame 2 + ai_onfire_run, 30.029, NULL, // frame 3 + ai_onfire_run, 25.538, NULL, // frame 4 + ai_onfire_run, 26.007, NULL, // frame 5 +}; +mmove_t thug2_move_run_on_fire = {FRAME_run_on_fire_01, FRAME_run_on_fire_06, thug2_frames_run_on_fire, NULL}; + +// who would guess its backwards at least for today... +mframe_t thug2_frames_lside_run[] = +{ + ai_sidestep, 12.636, thug2_firegun_left, // frame 0 + ai_sidestep, 20.416, NULL, // frame 1 + ai_sidestep, 34.221, NULL, // frame 2 + ai_sidestep, 29.869, thug2_firegun_left, // frame 3 + ai_sidestep, 24.720, NULL, // frame 4 + ai_sidestep, 20.704, NULL, // frame 5 +}; +// mmove_t thug2_move_lside_run = {FRAME_lside_run_01, FRAME_lside_run_06, thug2_frames_lside_run, NULL}; +mmove_t thug2_move_lside_run = {FRAME_rside_run_01, FRAME_rside_run_06, thug2_frames_lside_run, NULL}; + +mframe_t thug2_frames_rside_run[] = +{ + ai_sidestep, -18.101, thug2_firegun_right, // frame 0 + ai_sidestep, -21.618, NULL, // frame 1 + ai_sidestep, -26.521, NULL, // frame 2 + ai_sidestep, -15.259, NULL, // frame 3 + ai_sidestep, -27.243, thug2_firegun_right, // frame 4 + ai_sidestep, -23.765, NULL, // frame 5 +}; +// mmove_t thug2_move_rside_run = {FRAME_rside_run_01, FRAME_rside_run_06, thug2_frames_rside_run, NULL}; +mmove_t thug2_move_rside_run = {FRAME_lside_run_01, FRAME_lside_run_06, thug2_frames_rside_run, NULL}; + +mframe_t thug2_frames_lside_step[] = +{ + ai_sidestep, -0.530, NULL, // frame 0 + ai_sidestep, 0.931, NULL, // frame 1 + ai_sidestep, 3.156, NULL, // frame 2 + ai_sidestep, 3.382, NULL, // frame 3 + ai_sidestep, 2.187, NULL, // frame 4 + ai_sidestep, 3.987, NULL, // frame 5 + ai_sidestep, -0.497, NULL, // frame 6 +}; +mmove_t thug2_move_lside_step = {FRAME_lside_step_01, FRAME_lside_step_07, thug2_frames_lside_step, AI_EndAttack}; + +mframe_t thug2_frames_rside_step[] = +{ + ai_sidestep, -0.710, NULL, // frame 0 + ai_sidestep, -2.559, NULL, // frame 1 + ai_sidestep, 0.032, NULL, // frame 2 + ai_sidestep, -1.031, NULL, // frame 3 + ai_sidestep, -3.099, NULL, // frame 4 + ai_sidestep, -1.713, NULL, // frame 5 + ai_sidestep, -2.924, NULL, // frame 6 +}; +mmove_t thug2_move_rside_step = {FRAME_rside_step_01, FRAME_rside_step_07, thug2_frames_rside_step, AI_EndAttack}; + +mframe_t thug2_frames_evade[] = +{ + ai_turn, -0.296, NULL, // frame 0 + ai_turn, 1.630, NULL, // frame 1 + ai_turn, 0.455, NULL, // frame 2 + ai_turn, -7.690, NULL, // frame 3 + ai_turn, -3.309, NULL, // frame 4 + ai_turn, -13.075, NULL, // frame 5 + ai_turn, -3.790, NULL, // frame 6 + ai_turn, -11.745, NULL, // frame 7 + ai_turn, -5.925, NULL, // frame 8 + ai_turn, -0.171, NULL, // frame 9 + ai_turn, -5.828, NULL, // frame 10 + ai_turn, -2.348, NULL, // frame 11 + ai_turn, -0.799, NULL, // frame 12 +}; +mmove_t thug2_move_evade = {FRAME_evade_01, FRAME_evade_13, thug2_frames_evade, thug2_evade_amb}; + +mframe_t thug2_frames_evade_amb[] = +{ + NULL, 0.000, thug2_evade_checkadjust, // frame 0 + NULL, 0.000, thug2_evade_checkadjust, // frame 1 + NULL, 0.000, thug2_evade_checkadjust, // frame 2 + NULL, 0.000, thug2_evade_checkadjust, // frame 3 + NULL, 0.000, thug2_evade_checkadjust, // frame 4 + NULL, 0.000, thug2_evade_checkadjust, // frame 5 + NULL, 0.000, thug2_evade_checkadjust, // frame 6 +}; +mmove_t thug2_move_evade_amb = {FRAME_evade_amb_01, FRAME_evade_amb_07, thug2_frames_evade_amb, AI_CheckEvade}; + +mframe_t thug2_frames_evade_stand[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 +}; +mmove_t thug2_move_evade_stand = {FRAME_evade_amb_01, FRAME_evade_amb_07, thug2_frames_evade_stand, thug2_end_stand}; + +mframe_t thug2_frames_evade_adjust[] = +{ + ai_turn, -1.430, thug2_evade_adjust, // frame 9 + ai_turn, -5.835, thug2_evade_adjust, // frame 10 + ai_turn, -1.706, thug2_evade_adjust, // frame 11 + ai_turn, -0.040, thug2_evade_adjust, // frame 12 +}; +mmove_t thug2_move_evade_adjust = {FRAME_evade_10, FRAME_evade_13, thug2_frames_evade_adjust, thug2_evade_amb}; + +/* +mframe_t thug2_frames_st_clmb[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 +}; +mmove_t thug2_move_st_clmb = {FRAME_st_clmb_01, FRAME_st_clmb_02, thug2_frames_st_clmb, thug2_climb_loop}; +*/ +mframe_t thug2_frames_clmb_loop[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 7 + NULL, 0.000, NULL, // frame 8 +}; +mmove_t thug2_move_clmb_loop = {FRAME_clmb_loop_01, FRAME_clmb_loop_09, thug2_frames_clmb_loop, AI_CheckStillClimbingLadder}; + +/* +mframe_t thug2_frames_clmb_jmp[] = +{ + NULL, 0.000, AI_CheckStillInair, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 +}; +mmove_t thug2_move_clmb_jmp = {FRAME_clmb_jmp_dn_01, FRAME_clmb_jmp_dn_06, thug2_frames_clmb_jmp, AI_EndJump}; +*/ + +mframe_t thug2_frames_clmb_jmp[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, AI_CheckStillInair, // frame 7 + NULL, 0.000, NULL, // frame 8 +// NULL, 0.000, NULL, // frame 9 +// NULL, 0.000, NULL, // frame 10 +// NULL, 0.000, NULL, // frame 11 +// NULL, 0.000, NULL, // frame 12 +// NULL, 0.000, NULL, // frame 13 +// NULL, 0.000, NULL, // frame 14 +}; +mmove_t thug2_move_clmb_jmp = {FRAME_clmb_over_01, FRAME_clmb_over_09, thug2_frames_clmb_jmp, AI_EndJump}; + + +mframe_t thug2_frames_clmb_over[] = +{ + NULL, 0.000, AI_CheckStillInair, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 7 + NULL, 0.000, NULL, // frame 8 + NULL, 0.000, NULL, // frame 9 + NULL, 0.000, NULL, // frame 10 + NULL, 0.000, NULL, // frame 11 + NULL, 0.000, NULL, // frame 12 + NULL, 0.000, NULL, // frame 13 + NULL, 0.000, NULL, // frame 14 +}; +mmove_t thug2_move_clmb_over = {FRAME_clmb_over_01, FRAME_clmb_over_15, thug2_frames_clmb_over, AI_EndJump}; + +/* +mframe_t thug2_frames_pain1[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 +}; +mmove_t thug2_move_pain1 = {FRAME_pain1_01, FRAME_pain1_05, thug2_frames_pain1, AI_EndAttack}; + +mframe_t thug2_frames_pain2[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 +}; +mmove_t thug2_move_pain2 = {FRAME_pain2_01, FRAME_pain2_05, thug2_frames_pain2, AI_EndAttack}; + +mframe_t thug2_frames_pain3[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 +}; +mmove_t thug2_move_pain3 = {FRAME_pain3_01, FRAME_pain3_05, thug2_frames_pain3, AI_EndAttack}; + + +*/ + +mframe_t thug2_frames_crch_dth[] = +{ + ai_move, -1.942, NULL, // frame 0 + ai_move, -8.438, NULL, // frame 1 + ai_move, -7.796, NULL, // frame 2 + ai_move, -10.572, NULL, // frame 3 + ai_move, -6.917, NULL, // frame 4 + ai_move, -7.397, NULL, // frame 5 + ai_move, -12.057, NULL, // frame 6 + ai_move, -1.582, NULL, // frame 7 + ai_move, 0.216, NULL, // frame 8 + ai_move, 0.493, NULL, // frame 9 + ai_move, -0.908, NULL, // frame 10 + ai_move, 0.971, NULL, // frame 11 + ai_move, -0.692, NULL, // frame 12 + ai_move, -0.122, NULL, // frame 13 + ai_move, 0.079, NULL, // frame 14 + ai_move, -0.098, NULL, // frame 15 + ai_move, -0.082, NULL, // frame 16 + ai_move, -0.019, NULL, // frame 17 + ai_move, -0.032, NULL, // frame 18 +}; +mmove_t thug2_move_crch_dth = {FRAME_crch_dth_01, FRAME_crch_dth_19, thug2_frames_crch_dth, AI_EndDeath}; + +mframe_t thug2_frames_crch_knl_dn[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 +}; +mmove_t thug2_move_crch_knl_dn = {FRAME_crch_knl_dn_01, FRAME_crch_knl_dn_04, thug2_frames_crch_knl_dn, AI_EndAttack}; + +mframe_t thug2_frames_stand_up[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 +}; +mmove_t thug2_move_stand_up = {FRAME_crch_knl_dn_04, FRAME_crch_knl_dn_01, thug2_frames_stand_up, AI_EndAttack}; + +mframe_t thug2_frames_crch_amb_sdt[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 + ai_stand, 0.000, NULL, // frame 9 + ai_stand, 0.000, NULL, // frame 10 + ai_stand, 0.000, NULL, // frame 11 + ai_stand, 0.000, NULL, // frame 12 + ai_stand, 0.000, NULL, // frame 13 + ai_stand, 0.000, NULL, // frame 14 + ai_stand, 0.000, NULL, // frame 15 + ai_stand, 0.000, NULL, // frame 16 + ai_stand, 0.000, NULL, // frame 17 + ai_stand, 0.000, NULL, // frame 18 + ai_stand, 0.000, NULL, // frame 19 + ai_stand, 0.000, NULL, // frame 20 + ai_stand, 0.000, NULL, // frame 21 + ai_stand, 0.000, NULL, // frame 22 + ai_stand, 0.000, NULL, // frame 23 +}; +mmove_t thug2_move_crch_amb_sdt = {FRAME_crch_amb_sdt_01, FRAME_crch_amb_sdt_24, thug2_frames_crch_amb_sdt, NULL}; + +mframe_t thug2_frames_crch_shoot[] = +{ + ai_turn, 0.000, thug2_right_fire, // frame 0 + ai_turn, 0.000, NULL, // frame 1 + ai_turn, 0.000, NULL, // frame 2 + ai_turn, 0.000, thug2_left_fire, // frame 3 + ai_turn, 0.000, NULL, // frame 4 +}; +mmove_t thug2_move_crch_shoot = {FRAME_crch_shoot_01, FRAME_crch_shoot_05, thug2_frames_crch_shoot, AI_EndAttack}; + +mframe_t thug2_frames_crouch_avoid_walk[] = +{ + ai_turn, 8.894, NULL, // frame 0 + ai_turn, 3.409, NULL, // frame 1 + ai_turn, 2.605, NULL, // frame 2 + ai_turn, 3.897, NULL, // frame 3 + ai_turn, 6.927, NULL, // frame 4 + ai_turn, 8.337, NULL, // frame 5 +}; +mmove_t thug2_move_crouch_avoid_walk = {FRAME_crouch_shfl_01, FRAME_crouch_shfl_06, thug2_frames_crouch_avoid_walk, AI_EndAttack}; + +mframe_t thug2_frames_crouch_shfl[] = +{ + ai_run, 8.894, NULL, // frame 0 + ai_run, 3.409, NULL, // frame 1 + ai_run, 2.605, NULL, // frame 2 + ai_run, 3.897, NULL, // frame 3 + ai_run, 6.927, NULL, // frame 4 + ai_run, 8.337, NULL, // frame 5 +}; +mmove_t thug2_move_crouch_shfl = {FRAME_crouch_shfl_01, FRAME_crouch_shfl_06, thug2_frames_crouch_shfl, NULL}; + +mframe_t thug2_frames_crouch_walk[] = +{ + ai_run, 6.183, NULL, // frame 0 + ai_run, 10.404, NULL, // frame 1 + ai_run, 6.033, NULL, // frame 2 + ai_run, 16.049, NULL, // frame 3 + ai_run, 10.574, NULL, // frame 4 + ai_run, 12.539, NULL, // frame 5 +}; +mmove_t thug2_move_crouch_walk = {FRAME_crouch_walk_01, FRAME_crouch_walk_06, thug2_frames_crouch_walk, NULL}; + +mframe_t thug2_frames_crouch_pain1[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 +}; +mmove_t thug2_move_crouch_pain1 = {FRAME_crouch_pain1_01, FRAME_crouch_pain1_08, thug2_frames_crouch_pain1, AI_EndAttack}; + +mframe_t thug2_frames_crouch_pain2[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 +}; +mmove_t thug2_move_crouch_pain2 = {FRAME_crouch_pain2_01, FRAME_crouch_pain2_06, thug2_frames_crouch_pain2, AI_EndAttack}; + +mframe_t thug2_frames_crouch_pain3[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 +}; +mmove_t thug2_move_crouch_pain3 = {FRAME_crouch_pain3_01, FRAME_crouch_pain3_06, thug2_frames_crouch_pain3, AI_EndAttack}; + +mframe_t thug2_frames_low_melee1[] = +{ + ai_charge, 0.000, thug2_melee_bail, // frame 0 + ai_charge, 0.000, thug2_melee_bail, // frame 1 + ai_charge, 0.000, thug2_melee_bail, // frame 2 + ai_charge, 0.000, thug2_melee_bail, // frame 3 + ai_charge, 0.000, thug2_melee, // frame 4 + ai_charge, 0.000, NULL, // frame 5 + ai_charge, 0.000, NULL, // frame 6 + ai_charge, 0.000, NULL, // frame 7 + ai_charge, 0.000, NULL, // frame 8 + ai_charge, 0.000, NULL, // frame 9 +}; +mmove_t thug2_move_low_melee1 = {FRAME_low_melee1_01, FRAME_low_melee1_10, thug2_frames_low_melee1, AI_EndAttack}; + +// new pains and death + +mframe_t thug2_frames_pain_Rarm[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 +}; +mmove_t thug2_move_pain_Rarm = {FRAME_pain_Rarm_01, FRAME_pain_Rarm_10, thug2_frames_pain_Rarm, AI_EndAttack}; + +mframe_t thug2_frames_pain_Larm[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t thug2_move_pain_Larm = {FRAME_pain_Larm_01, FRAME_pain_Larm_09, thug2_frames_pain_Larm, AI_EndAttack}; + +mframe_t thug2_frames_pain_chest[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t thug2_move_pain_chest = {FRAME_pain_chest_01, FRAME_pain_chest_09, thug2_frames_pain_chest, AI_EndAttack}; + +mframe_t thug2_frames_pain_head[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 +}; +mmove_t thug2_move_pain_head = {FRAME_pain_head_01, FRAME_pain_head_10, thug2_frames_pain_head, AI_EndAttack}; + +mframe_t thug2_frames_pain_Rleg[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 +}; +mmove_t thug2_move_pain_Rleg = {FRAME_pain_Rleg_01, FRAME_pain_Rleg_10, thug2_frames_pain_Rleg, AI_EndAttack}; + +mframe_t thug2_frames_pain_Lleg[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 +}; +mmove_t thug2_move_pain_Lleg = {FRAME_pain_Lleg_01, FRAME_pain_Lleg_08, thug2_frames_pain_Lleg, AI_EndAttack}; + +mframe_t thug2_frames_pain_crch[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 +}; +mmove_t thug2_move_pain_crch = {FRAME_pain_crch_01, FRAME_pain_crch_11, thug2_frames_pain_crch, AI_EndAttack}; + +mframe_t thug2_frames_pain_butt[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t thug2_move_pain_butt = {FRAME_pain_butt_01, FRAME_pain_butt_09, thug2_frames_pain_butt, AI_EndAttack}; + +mframe_t thug2_frames_nw_pain_Rarm[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 +}; +mmove_t thug2_move_nw_pain_Rarm = {FRAME_nw_pain_Rarm_01, FRAME_nw_pain_Rarm_11, thug2_frames_nw_pain_Rarm, AI_EndAttack}; + +mframe_t thug2_frames_nw_pain_Larm[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 +}; +mmove_t thug2_move_nw_pain_Larm = {FRAME_nw_pain_Larm_01, FRAME_nw_pain_Larm_11, thug2_frames_nw_pain_Larm, AI_EndAttack}; + +mframe_t thug2_frames_nw_pain_chst[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 +}; +mmove_t thug2_move_nw_pain_chst = {FRAME_nw_pain_chst_01, FRAME_nw_pain_chst_11, thug2_frames_nw_pain_chst, AI_EndAttack}; + +mframe_t thug2_frames_nw_pain_head[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 +}; +mmove_t thug2_move_nw_pain_head = {FRAME_nw_pain_head_01, FRAME_nw_pain_head_08, thug2_frames_nw_pain_head, AI_EndAttack}; + +mframe_t thug2_frames_nw_pain_Rleg[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 +}; +mmove_t thug2_move_nw_pain_Rleg = {FRAME_nw_pain_Rleg_01, FRAME_nw_pain_Rleg_10, thug2_frames_nw_pain_Rleg, AI_EndAttack}; + +mframe_t thug2_frames_nw_pain_Lleg[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 + ai_move, 0.000, NULL, // frame 12 +}; +mmove_t thug2_move_nw_pain_Lleg = {FRAME_nw_pain_Lleg_01, FRAME_nw_pain_Lleg_13, thug2_frames_nw_pain_Lleg, AI_EndAttack}; + +mframe_t thug2_frames_nw_pain_crch[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 + ai_move, 0.000, NULL, // frame 12 + ai_move, 0.000, NULL, // frame 13 + ai_move, 0.000, NULL, // frame 14 + ai_move, 0.000, NULL, // frame 15 +}; +mmove_t thug2_move_nw_pain_crch = {FRAME_nw_pain_crch_01, FRAME_nw_pain_crch_16, thug2_frames_nw_pain_crch, AI_EndAttack}; + +mframe_t thug2_frames_nw_pain_butt[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 + ai_move, 0.000, NULL, // frame 12 + ai_move, 0.000, NULL, // frame 13 +}; +mmove_t thug2_move_nw_pain_butt = {FRAME_nw_pain_butt_01, FRAME_nw_pain_butt_14, thug2_frames_nw_pain_butt, AI_EndAttack}; + +mframe_t thug2_frames_death1[] = +{ + ai_move, -5.521, NULL, // frame 0 + ai_move, -12.982, NULL, // frame 1 + ai_move, -5.191, NULL, // frame 2 + ai_move, -12.777, NULL, // frame 3 + ai_move, -12.240, NULL, // frame 4 + ai_move, -6.917, NULL, // frame 5 + ai_move, -7.750, NULL, // frame 6 + ai_move, 0.493, NULL, // frame 7 + ai_move, 2.456, NULL, // frame 8 + ai_move, 0.524, NULL, // frame 9 + ai_move, 3.357, NULL, // frame 10 + ai_move, 1.128, NULL, // frame 11 + ai_move, -0.663, NULL, // frame 12 + ai_move, -0.169, NULL, // frame 13 + ai_move, -0.012, NULL, // frame 14 + ai_move, -0.017, NULL, // frame 15 +}; +mmove_t thug2_move_death1 = {FRAME_death1_01, FRAME_death1_16, thug2_frames_death1, AI_EndDeath}; + +mframe_t thug2_frames_death2[] = +{ + ai_move, -1.257, NULL, // frame 0 + ai_move, -9.279, NULL, // frame 1 + ai_move, -9.694, NULL, // frame 2 + ai_move, -3.081, NULL, // frame 3 + ai_move, -4.356, NULL, // frame 4 + ai_move, -7.858, NULL, // frame 5 + ai_move, -9.416, NULL, // frame 6 + ai_move, -7.609, NULL, // frame 7 + ai_move, -0.727, NULL, // frame 8 + ai_move, 0.463, NULL, // frame 9 + ai_move, -0.095, NULL, // frame 10 + ai_move, 0.390, NULL, // frame 11 + ai_move, -0.166, NULL, // frame 12 + ai_move, -0.040, NULL, // frame 13 + ai_move, -0.014, NULL, // frame 14 + ai_move, 0.008, NULL, // frame 15 + ai_move, -0.013, NULL, // frame 16 + ai_move, 0.018, NULL, // frame 17 + ai_move, 0.008, NULL, // frame 18 +}; +mmove_t thug2_move_death2 = {FRAME_death2_01, FRAME_death2_19, thug2_frames_death2, AI_EndDeath}; + +mframe_t thug2_frames_death3[] = +{ + ai_move, -2.603, NULL, // frame 0 + ai_move, -13.458, NULL, // frame 1 + ai_move, -4.258, NULL, // frame 2 + ai_move, -2.817, NULL, // frame 3 + ai_move, -6.518, NULL, // frame 4 + ai_move, -13.554, NULL, // frame 5 + ai_move, -4.266, NULL, // frame 6 + ai_move, -2.536, NULL, // frame 7 + ai_move, -8.930, NULL, // frame 8 + ai_move, -3.249, NULL, // frame 9 + ai_move, -0.212, NULL, // frame 10 + ai_move, 0.674, NULL, // frame 11 + ai_move, -0.340, NULL, // frame 12 + ai_move, -0.129, NULL, // frame 13 +}; +mmove_t thug2_move_death3 = {FRAME_death3_01, FRAME_death3_14, thug2_frames_death3, AI_EndDeath}; + +mframe_t thug2_frames_death4[] = +{ + ai_move, -1.292, NULL, // frame 0 + ai_move, -0.037, NULL, // frame 1 + ai_move, -0.620, NULL, // frame 2 + ai_move, -1.143, NULL, // frame 3 + ai_move, -3.476, NULL, // frame 4 + ai_move, 1.975, NULL, // frame 5 + ai_move, 1.296, NULL, // frame 6 + ai_move, -0.489, NULL, // frame 7 + ai_move, -0.306, NULL, // frame 8 + ai_move, 0.042, NULL, // frame 9 + ai_move, -0.163, NULL, // frame 10 + ai_move, -0.039, NULL, // frame 11 + ai_move, 0.039, NULL, // frame 12 + ai_move, -0.007, NULL, // frame 13 + ai_move, -0.006, NULL, // frame 14 +}; +mmove_t thug2_move_death4 = {FRAME_death4_01, FRAME_death4_15, thug2_frames_death4, AI_EndDeath}; + +mframe_t thug2_frames_death5[] = +{ + ai_move, -0.167, NULL, // frame 0 + ai_move, -0.716, NULL, // frame 1 + ai_move, -1.767, NULL, // frame 2 + ai_move, -0.731, NULL, // frame 3 + ai_move, -4.556, NULL, // frame 4 + ai_move, -1.844, NULL, // frame 5 + ai_move, 1.790, NULL, // frame 6 + ai_move, 2.718, NULL, // frame 7 + ai_move, 4.071, NULL, // frame 8 + ai_move, 6.192, NULL, // frame 9 + ai_move, 9.945, NULL, // frame 10 + ai_move, 2.529, NULL, // frame 11 + ai_move, -0.830, NULL, // frame 12 + ai_move, -0.498, NULL, // frame 13 + ai_move, 0.204, NULL, // frame 14 + ai_move, 0.162, NULL, // frame 15 + ai_move, -0.104, NULL, // frame 16 + ai_move, -0.005, NULL, // frame 17 +}; +mmove_t thug2_move_death5 = {FRAME_death5_01, FRAME_death5_18, thug2_frames_death5, AI_EndDeath}; + diff --git a/gamesrc/ai_thug_sit.c b/gamesrc/ai_thug_sit.c new file mode 100644 index 0000000..9f39494 --- /dev/null +++ b/gamesrc/ai_thug_sit.c @@ -0,0 +1,1347 @@ +// ai_thug2.c +#include "g_local.h" +#include "ai_thug2.h" + +#include "voice_punk.h" + +void thug2_end_kneel_attack( edict_t *self ); +void thug2_talk( edict_t *self ); +void thug2_end_stand( edict_t *self ); +void thug2_kneel_shoot( edict_t *self ); +void thug2_talk_think( edict_t *self ); +void thug2_firegun( edict_t *self, vec3_t ofs ); +void thug2_right_fire( edict_t *self ); +void thug2_left_fire( edict_t *self ); +void thug2_firegun_right( edict_t *self ); +void thug2_firegun_left( edict_t *self ); +void thug2_show_guns( edict_t *self ); +void thug2_climb_loop( edict_t *self ); +void thug2_melee( edict_t *self ); +void thug2_evade_amb( edict_t *self ); +void thug2_evade_adjust( edict_t *self ); +void thug2_evade_checkadjust( edict_t *self ); +void thug2_catch_fire( edict_t *self, edict_t *other ); +void thug2_melee_bail (edict_t *self); + +void thug2_end_standup ( edict_t *self ); +void thug2_stand_up( edict_t *self ); + +#define THUG_MELEE 64 // spawnflag +#define THUG_NO_SIT 128 + +#include "ai_thug2_tables.h" + +void thug2_end_standup ( edict_t *self ) +{ // restore our previous movement + self->cast_info.currentmove = self->cast_info.oldcurrentmove; +} + +void thug2_stand_up( edict_t *self ) +{ + self->cast_info.move_stand = &thug2_move_ambstand1; + self->cast_info.oldcurrentmove = self->cast_info.currentmove; // save the current move + self->cast_info.currentmove = &thug2_move_jumpup_g; // set move to stand up + self->s.frame = self->cast_info.currentmove->firstframe; + + self->spawnflags |= THUG_NO_SIT; + + // show the weapon + self->s.model_parts[PART_GUN].invisible_objects = 0; + self->s.model_parts[PART_GUN2].invisible_objects = 0; +} + + + +void thug2_catch_fire( edict_t *self, edict_t *other ) +{ + self->enemy = NULL; // stop attacking + self->cast_info.currentmove = &thug2_move_run_on_fire; +} + +void thug2_evade_amb( edict_t *self ) +{ + self->cast_info.currentmove = &thug2_move_evade_amb; +} + +void thug2_evade_checkadjust( edict_t *self ) +{ + if (self->enemy && !directly_infront(self, self->enemy )) + self->cast_info.currentmove = &thug2_move_evade_adjust; +} + +void thug2_evade_adjust (edict_t *self ) +{ + vec3_t vec; + + if (!self->enemy) + return; + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + self->ideal_yaw = vectoyaw( vec ); +} + + +void thug2_end_kneel_attack( edict_t *self ) +{ + AI_EndAttack(self); + + if (self->cast_info.currentmove == self->cast_info.move_stand) + self->cast_info.currentmove = &thug2_move_kneel_up; +} + +void thug2_talk_think( edict_t *self ) +{ + AI_TalkThink( self, true ); +} + + +void thug2_talk( edict_t *self ) +{ + float rnd; + + if (self->spawnflags & THUG_NO_SIT) + { + self->cast_info.currentmove = self->cast_info.move_stand = &thug2_move_ambstand1; + return; + } + + // only make talking gesture if we've recently said something + if (!(self->cast_info.aiflags & AI_REPEAT_TALK_JESTURE) && self->last_talk_time < (level.time - 1.0)) + { +// self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + if (self->cast_info.currentmove != self->cast_info.move_stand) + return; + + rnd = rand()%19; + + //if (rnd < 1) + // self->cast_info.currentmove = &thug2_move_sitdn1; + //else if (rnd < 2) + // self->cast_info.currentmove = &thug2_move_sitdn2; + if (rnd < 3) + self->cast_info.currentmove = &thug2_move_ambsit1; + else if (rnd < 4) + self->cast_info.currentmove = &thug2_move_ambsit2; + else if (rnd < 5) + self->cast_info.currentmove = &thug2_move_ambsit3; + else if (rnd < 6) + self->cast_info.currentmove = &thug2_move_ambsit4; + else if (rnd < 7) + self->cast_info.currentmove = &thug2_move_ambsit5; + else if (rnd < 8) + self->cast_info.currentmove = &thug2_move_ambsit6; + else if (rnd < 9) + self->cast_info.currentmove = &thug2_move_ambsit7; + else if (rnd < 10) + self->cast_info.currentmove = &thug2_move_ambsit8; + else if (rnd < 11) + self->cast_info.currentmove = &thug2_move_ambsit9; + else if (rnd < 12) + self->cast_info.currentmove = &thug2_move_cards1; + else if (rnd < 13) + self->cast_info.currentmove = &thug2_move_cards2; + else if (rnd < 14) + self->cast_info.currentmove = &thug2_move_cards3; + else if (rnd < 15) + self->cast_info.currentmove = &thug2_move_cards4; + else if (rnd < 16) + self->cast_info.currentmove = &thug2_move_cards5; + else if (rnd < 17) + self->cast_info.currentmove = &thug2_move_cards6; + else + self->cast_info.currentmove = &thug2_move_cards7; + + + +} + +void thug2_avoid ( edict_t *self, edict_t *other, qboolean face ) +{ + vec3_t vec; + + if (!(self->spawnflags & THUG_NO_SIT)) + return; + + if (self->health <= 0) + return; + + if (!self->groundentity) + return; + + self->cast_info.last_avoid = level.time; + self->cast_info.avoid_ent = NULL; + + if (face) + { // turn to face them + VectorSubtract( other->s.origin, self->s.origin, vec ); + self->cast_info.avoid_ent = other; + } + else + { // turn to face away from them + VectorSubtract( self->s.origin, other->s.origin, vec ); + } + VectorNormalize( vec ); + + self->ideal_yaw = vectoyaw( vec ); + + if (self->maxs[2] > DUCKING_MAX_Z) + { + if (self->cast_info.aiflags & AI_NOWALK_FACE) + { +// if (face) + { + int side_result; + + side_result = AI_SideTrace( self, 48, 90, SIDE_RANDOM ); + + if (side_result == AI_SideTrace( self, 48, 90 + (self->ideal_yaw - self->s.angles[YAW]), side_result )) + { + if (side_result < 0) + self->cast_info.currentmove = &thug2_move_lside_step; + else + self->cast_info.currentmove = &thug2_move_rside_step; + + return; + } + + // if no move set, just turn to face + M_ChangeYaw( self ); + return; + } + } + + if ((VectorDistance( self->s.origin, other->s.origin ) > 72) || !face) + self->cast_info.currentmove = &thug2_move_avoid_walk; + else + self->cast_info.currentmove = &thug2_move_avoid_reverse_walk; + } + else + { + self->cast_info.currentmove = &thug2_move_crouch_avoid_walk; + } + +} + +void thug2_end_stand( edict_t *self ) +{ + int rnd; + + if (self->spawnflags & THUG_NO_SIT) + { + self->cast_info.currentmove = self->cast_info.move_stand = &thug2_move_ambstand1; + return; + } + + if (self->cast_info.move_stand_evade && (self->last_stand_evade > (level.time - 3))) + return; + + if (self->cast_info.currentmove == self->cast_info.move_crstand) + return; + + rnd = rand()%12; + + if (rnd < 3) + self->cast_info.currentmove = &thug2_move_ambsit1; + else if (rnd < 4) + self->cast_info.currentmove = &thug2_move_ambsit2; + else if (rnd < 5) + self->cast_info.currentmove = &thug2_move_ambsit3; + else if (rnd < 6) + self->cast_info.currentmove = &thug2_move_ambsit4; + else if (rnd < 7) + self->cast_info.currentmove = &thug2_move_ambsit5; + else if (rnd < 8) + self->cast_info.currentmove = &thug2_move_ambsit6; + else if (rnd < 9) + self->cast_info.currentmove = &thug2_move_ambsit7; + else if (rnd < 10) + self->cast_info.currentmove = &thug2_move_ambsit8; + else if (rnd < 11) + self->cast_info.currentmove = &thug2_move_ambsit9; + else + { // stand normally + self->cast_info.currentmove = self->cast_info.move_stand; + } + + // is there a better place to put this + self->cast_info.aiflags |= AI_SIT_TALK; + AI_CheckTalk(self); +} + +void thug2_show_guns( edict_t *self ) +{ + self->s.model_parts[PART_GUN].invisible_objects = 0; + self->s.model_parts[PART_GUN2].invisible_objects = 0; +} + +void thug2_kneel_shoot( edict_t *self ) +{ + self->cast_info.currentmove = &thug2_move_knl_shoot; +} + +void thug2_long_attack( edict_t *self ) +{ + // keep running, and try to fire if possible + + if (self->maxs[2] < self->cast_info.standing_max_z) + return; + + if (self->s.model_parts[PART_GUN].invisible_objects) + { // pull guns out + self->cast_info.currentmove = &thug2_move_pull_guns; + return; + } + + self->cast_info.currentmove = &thug2_move_run_shoot; +} + +// thug_attack: +// returns TRUE if starting an attack +qboolean thug2_attack( edict_t *self ) +{ + vec3_t vec; + float dist; + + // this is where we would start some of the fancy side-ways or rolling attacks + + if (self->maxs[2] < self->cast_info.standing_max_z) + { + if ((self->cast_info.aiflags & AI_DUCKATTACK) && (rand()%20 < 1)) + { // stop duck attacking + self->cast_info.aiflags &= ~AI_DUCKATTACK; + self->maxs[2] = self->cast_info.standing_max_z; + self->cast_info.currentmove = self->cast_info.move_stand_up; + + return true; + } + + if (self->cast_info.aiflags & AI_MELEE) + { // try to stand at all costs + self->maxs[2] = self->cast_info.standing_max_z; + + if (ValidBoxAtLoc( self->s.origin, self->mins, self->maxs, self, MASK_PLAYERSOLID )) + goto standing; + + self->maxs[2] = DUCKING_MAX_Z; + // gi.dprintf( "ANIM TODO: crouch melee attack\n" ); + self->cast_info.currentmove = &thug2_move_low_melee1; + return true; + } + + self->cast_info.currentmove = &thug2_move_crch_shoot; + return true; + } + else if (!(self->cast_info.aiflags & AI_MELEE) && (rand()%20 < 1)) // duck attack + { + self->viewheight = -4; + + if (AI_ClearSight( self, self->enemy, false )) + { + self->cast_info.aiflags |= AI_DUCKATTACK; + self->maxs[2] = DUCKING_MAX_Z; + self->cast_info.currentmove = self->cast_info.move_crouch_down; + + return true; + } + } + +standing: + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + dist = VectorNormalize( vec ); + + if (self->cast_info.aiflags & AI_MELEE) + { + if (dist < 48) + { + int rnd; + + self->ideal_yaw = vectoyaw(vec); + + M_ChangeYaw( self ); + + // JOSEPH 12-MAR-99 + Voice_Random( self, self->enemy, grunting, 5); + // END JOSEPH + + if (self->maxs[2] > self->enemy->maxs[2]) + self->cast_info.currentmove = &thug2_move_low_melee1; + else + { + rnd = rand()%5; + + switch (rnd) + { + case 0 : + self->cast_info.currentmove = &thug2_move_melee1; + break; + case 1 : + self->cast_info.currentmove = &thug2_move_melee2; + break; + case 2 : + self->cast_info.currentmove = &thug2_move_melee3; + break; + case 3 : + self->cast_info.currentmove = &thug2_move_melee4; + break; + case 4 : + self->cast_info.currentmove = &thug2_move_melee5; + break; + } + } + + self->cast_info.aiflags &=~ AI_RUSH_THE_PLAYER; + return true; + } + else if (dist < 72) + { + self->ideal_yaw = vectoyaw(vec); + M_ChangeYaw( self ); + + self->cast_info.currentmove = &thug2_move_run_melee; + return true; + } + else if (dist < 400) + self->cast_info.aiflags |= AI_RUSH_THE_PLAYER; + + return false; + } + + + if (self->cast_info.currentmove == &thug2_move_knl_shoot) + { + self->cast_info.currentmove = &thug2_move_knl_shoot; + + return true; + } + + // if just popped out from a corner, just stand here + if (self->dont_takecover_time > (level.time - 2)) + { + goto stand_shoot; + } + + + if ((skill->value > random()*2) && (self->cast_info.last_side_attack_time < (level.time - 1)) && (dist > 128)) + { + int side_result, side_result2; + + side_result = AI_SideTrace( self, 64, 90, -self->cast_info.last_side_attack ); + + if (side_result) + { + side_result2 = AI_SideTrace( self, 96, 90, side_result ); + + if (side_result2 == side_result) + { + if (side_result < 0) + self->cast_info.currentmove = &thug2_move_lside_run; + else + self->cast_info.currentmove = &thug2_move_rside_run; + + self->ideal_yaw = vectoyaw(vec) + side_result * 90; + + M_ChangeYaw( self ); + + self->cast_info.last_side_attack = side_result; + self->cast_info.last_side_attack_time = level.time; + + return true; + } + } + + } + + if ( (self->cast_info.currentmove != &thug2_move_shoot) + && (dist > 512) + && (random() < 0.5) + && (directly_infront(self, self->enemy)) + && (self->s.model_parts[PART_GUN].invisible_objects)) // only kneel if we haven't drawn our guns yet + { + self->cast_info.currentmove = &thug2_move_kneel; + + return true; + } + + + if (self->s.model_parts[PART_GUN].invisible_objects) + { // pull guns out + self->cast_info.currentmove = &thug2_move_pull_guns; + return true; + } + + // walk shooting? +// Ridah, I don't like this animation +// if ((dist > 384) && directly_infront( self, self->enemy ) && AI_SideTrace(self, 32, 0, 1 ) ) +// { +// self->cast_info.currentmove = &thug2_move_walk_shoot; +// return true; +// } +// else + if ((dist < 128) && AI_SideTrace(self, -32, 0, 1 ) ) + { + self->cast_info.currentmove = &thug2_move_reverse_walk_shoot; + return true; + } + +stand_shoot: + + // normal attack + + self->ideal_yaw = vectoyaw(vec); + + M_ChangeYaw( self ); + + self->cast_info.currentmove = &thug2_move_shoot; + + return true; +} + +void thug2_climb_loop(edict_t *self) +{ + self->cast_info.currentmove = &thug2_move_clmb_loop; +} + + +void thug2_melee_bail (edict_t *self) +{ + vec3_t vec; + float dist; + + if (self->enemy) + { + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + dist = VectorNormalize( vec ); + + if (dist > 48) + { +// AI_EndAttack(self); + self->cast_info.currentmove = &thug2_move_run_melee; + return; + } + } + +} + +void thug2_melee( edict_t *self ) +{ + vec3_t start, offset; + vec3_t forward, right; + + float damage = 10; + + if (self->cast_info.currentmove == &thug2_move_melee5) + damage *= 2; // double handed attack + + if (self->cast_info.currentmove == &thug2_move_low_melee1) + damage *= 3; + + // yell at them? + if (self->last_talk_time < (level.time - TALK_FIGHTING_DELAY)) + { + // we can't play any "eat lead" type sounds, because we're not firing lead.. + + if (self->cast_group != 1) + Voice_Random( self, self->enemy, grunting, 5); + else + Voice_Random(self, self->enemy, friendlycombat, NUM_FRIENDLYCOMBAT ); + } + + // VectorSet(offset, 0, 8, self->viewheight - 4); + VectorSet (offset, 0, 8, 16); + + AngleVectors (self->s.angles, forward, right, NULL); + G_ProjectSource (self->s.origin, offset, forward, right, start); + + fire_blackjack( self, start, forward, damage, 10, MOD_BLACKJACK ); + +} + +void thug2_firegun( edict_t *self, vec3_t ofs ) +{ + vec3_t start; + vec3_t forward, right; + vec3_t target; + vec3_t aim; + vec3_t offset; + int flash_number; + float dist; + + if (self->cast_info.currentmove == &thug2_move_knl_shoot) + { + if (!directly_infront( self, self->enemy )) + { + self->cast_info.currentmove = &thug2_move_kneel_up; + return; + } + + self->cast_info.aiflags |= AI_FACE_ATTACK; + } + else + { + // check for reload + if ( (self->maxs[2] == self->cast_info.standing_max_z) + && !(self->cast_info.aiflags & AI_SIDE_ATTACK) + && (self->duration++ > 12)) + { + self->duration = 0; + self->cast_info.currentmove = &thug2_move_reload; + return; + } + } + + if (!AI_BeginAttack( self )) + return; + + self->cast_info.aiflags &= ~AI_FACE_ATTACK; + + // yell at them? + if (self->last_talk_time < (level.time - TALK_FIGHTING_DELAY)) + { + if (self->cast_group != 1) + Voice_Random(self, self->enemy, fightsounds, NUM_FIGHTING); + else + Voice_Random(self, self->enemy, friendlycombat, NUM_FRIENDLYCOMBAT ); + } + + // fire the gun + + VectorSet(offset, 0 + ofs[0], 8 + ofs[1], self->viewheight-8 + ofs[2]); + + AngleVectors (self->s.angles, forward, right, NULL); + G_ProjectSource (self->s.origin, offset, forward, right, start); + + // project enemy back a bit and target there + VectorCopy (self->enemy->s.origin, target); + VectorMA (target, (-0.5 * (random()*0.8 + 0.2)) * (1.0 - (skill->value/4.0)), self->enemy->velocity, target); + target[2] += self->enemy->viewheight; + + flash_number = MZ2_GUNNER_MACHINEGUN_1; + + VectorSubtract (target, start, aim); + dist = VectorNormalize (aim); + + self->ideal_yaw = vectoyaw( aim ); + + if ( (dist < self->cast_info.max_attack_distance) + && ( ((random() < 0.1) && (self->cast_info.last_side_attack_time < (level.time - 2))) + || ( (!(self->cast_info.aiflags & AI_SIDE_ATTACK) || (self->cast_info.last_side_attack_time < (level.time - 2))) + && (directly_infront( self->enemy, self)) + && (self->enemy->client) + && (self->enemy->client->pers.weapon) + && (self->enemy->client->pers.weapon->ammo)))) // if we are directly infront of them, try to strafe + { + if (self->cast_info.aiflags & AI_SIDE_ATTACK) + self->cast_info.currentmove = &thug2_move_shoot; + else + self->cast_info.attack( self ); + } + + if (self->acc) + cast_fire_bullet (self, start, aim, 3, 0, DEFAULT_BULLET_HSPREAD>>self->acc, DEFAULT_BULLET_VSPREAD>>self->acc, flash_number); + else + cast_fire_bullet (self, start, aim, 3, 0, DEFAULT_BULLET_HSPREAD, DEFAULT_BULLET_VSPREAD, flash_number); + + gi.sound(self, CHAN_WEAPON, gi.soundindex("weapons/machinegun/machgf1b.wav"), 1, ATTN_NORM, 0); + +} + +void thug2_right_fire( edict_t *self ) +{ + static vec3_t ofs = {4, 0, 0}; + thug2_firegun( self, ofs ); +} + +void thug2_left_fire( edict_t *self ) +{ + static vec3_t ofs = {-4, 0, 0}; + thug2_firegun( self, ofs ); +} + +void thug2_firegun_right( edict_t *self ) +{ +// vec3_t vec; +// float oldyaw; + static vec3_t ofs = {0,0,0}; + + if (!self->enemy) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + if (self->cast_info.aiflags & AI_TURN_BLOCKED) + { // abort the side run + self->cast_info.aiflags &= ~AI_TURN_BLOCKED; + AI_EndAttack(self); + return; + } + + // if the path ahead is not clear, abort + if (!AI_SideTrace( self, 96, 90, 1 )) + { + AI_EndAttack(self); + return; + } + +/* + oldyaw = self->s.angles[YAW]; + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + + self->s.angles[YAW] = vectoyaw( vec ); +*/ + self->cast_info.aiflags |= AI_SIDE_ATTACK; + thug2_firegun(self, ofs); + self->cast_info.aiflags &= ~AI_SIDE_ATTACK; +/* + // keep running to the side + self->ideal_yaw = self->s.angles[YAW] + 90; + + self->s.angles[YAW] = oldyaw; +*/ +} + +void thug2_firegun_left( edict_t *self ) +{ +// vec3_t vec; +// float oldyaw; + static vec3_t ofs = {0,0,0}; + + if (!self->enemy) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return; + } + + if (self->cast_info.aiflags & AI_TURN_BLOCKED) + { // abort the side run + self->cast_info.aiflags &= ~AI_TURN_BLOCKED; + AI_EndAttack(self); + return; + } + + // if the path ahead is not clear, abort + if (!AI_SideTrace( self, 96, -90, 1 )) + { + AI_EndAttack(self); + return; + } + +/* + oldyaw = self->s.angles[YAW]; + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + + self->s.angles[YAW] = vectoyaw( vec ); +*/ + self->cast_info.aiflags |= AI_SIDE_ATTACK; + thug2_firegun(self, ofs); + self->cast_info.aiflags &= ~AI_SIDE_ATTACK; +/* + // keep running to the side + self->ideal_yaw = self->s.angles[YAW] - 90; + + self->s.angles[YAW] = oldyaw; +*/ +} + +// JOSEPH 17-NOV-98 +void think_killedict2( edict_t *self ) +{ + G_FreeEdict(self); +} + +void think_playthud2( edict_t *self ) +{ + char Temp[128]; + + strcpy ((char*)Temp, "actors/player/bodyfalls/"); + + if (self->thudsurf & SURF_FABRIC) + { + strcat((char*)&Temp[0], (char*)"rug"); + } + else if (self->thudsurf & SURF_GRAVEL) + { + strcat((char*)&Temp[0], (char*)"gravel"); + } + else if (self->thudsurf & SURF_METAL) + { + strcat((char*)&Temp[0], (char*)"metalh"); + } + else if (self->thudsurf & SURF_METAL_L) + { + strcat((char*)&Temp[0], (char*)"metall"); + } + else if (self->thudsurf & SURF_SNOW) + { + strcat((char*)&Temp[0], (char*)"tin"); + } + else if (self->thudsurf & SURF_TILE) + { + strcat((char*)&Temp[0], (char*)"marble"); + } + else if (self->thudsurf & SURF_WOOD) + { + strcat((char*)&Temp[0], (char*)"wood"); + } + else + { + strcat((char*)&Temp[0], (char*)"pavement"); + } + + if (self->thudsnd == 1) + { + strcat((char*)&Temp[0], (char*)"d1.wav"); + gi.positioned_sound (self->s.origin, self, CHAN_VOICE|CHAN_RELIABLE, gi.soundindex((char*)&Temp[0]), + 1.0, ATTN_NORM, 0); + } + else + { + strcat((char*)&Temp[0], (char*)"d2.wav"); + gi.positioned_sound (self->s.origin, self, CHAN_VOICE|CHAN_RELIABLE, gi.soundindex((char*)&Temp[0]), + 1.0, ATTN_NORM, 0); + } + + self->nextthink = level.time + (0.1*20.0); + self->think = think_killedict2; +} +// END JOSEPH + +// JOSEPH 20-NOV-98 +void thug2_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + trace_t tr; + vec3_t end; + edict_t *playthud1, *playthud2; + + self->takedamage = DAMAGE_YES; + + if (DeathByGib(self, inflictor, attacker, damage)) + { // gib + self->deadflag = DEAD_DEAD; + GibEntity( self, inflictor, damage ); + return; + } + + if (self->deadflag == DEAD_DEAD) + return; + + self->deadflag = DEAD_DEAD; + + if (!(self->cast_info.aiflags & AI_MELEE)) + SpawnTheWeapon (self, "weapon_pistol_e"); + + // EP_SpecialEventDeath (self); + // regular death + + VectorCopy (self->s.origin, end); + end[2] -= 64; + tr = gi.trace (self->s.origin, self->mins, self->maxs, end, self, MASK_SHOT); + + // RAFAEL 01-25-99 + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + self->s.model_parts[PART_GUN2].invisible_objects = (1<<0 | 1<<1); + + if (mdx_part == PART_HEAD) + { + self->cast_info.currentmove = &thug2_move_death5; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*6.0); + playthud1->think = think_playthud2; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*10.0); + playthud2->think = think_playthud2; + gi.linkentity (playthud2); + } + else if (self->maxs[2] < self->cast_info.standing_max_z) + { + self->cast_info.currentmove = &thug2_move_crch_dth; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*5.0); + playthud1->think = think_playthud2; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*8.0); + playthud2->think = think_playthud2; + gi.linkentity (playthud2); + } + else + { + int n; + + n = rand() % 5; + if (n == 0) + { + self->cast_info.currentmove = &thug2_move_death1; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*5.0); + playthud1->think = think_playthud2; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*8.0); + playthud2->think = think_playthud2; + gi.linkentity (playthud2); + } + else if (n == 1) + { + self->cast_info.currentmove = &thug2_move_death2; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*6.0); + playthud1->think = think_playthud2; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*9.0); + playthud2->think = think_playthud2; + gi.linkentity (playthud2); + } + else if (n == 2) + { + self->cast_info.currentmove = &thug2_move_death3; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*5.0); + playthud1->think = think_playthud2; + gi.linkentity (playthud1); + } + else if (n == 3) + { + self->cast_info.currentmove = &thug2_move_death4; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*2.0); + playthud1->think = think_playthud2; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*4.0); + playthud2->think = think_playthud2; + gi.linkentity (playthud2); + } + else + { + self->cast_info.currentmove = &thug2_move_death5; + + playthud1 = G_Spawn(); + VectorCopy (self->s.origin, playthud1->s.origin); + playthud1->thudsurf = tr.surface->flags; + playthud1->thudsnd = 1; + playthud1->nextthink = level.time + (0.1*6.0); + playthud1->think = think_playthud2; + gi.linkentity (playthud1); + + playthud2 = G_Spawn(); + VectorCopy (self->s.origin, playthud2->s.origin); + playthud2->thudsurf = tr.surface->flags; + playthud2->thudsnd = 2; + playthud2->nextthink = level.time + (0.1*10.0); + playthud2->think = think_playthud2; + gi.linkentity (playthud2); + } + } + + if (!self->onfiretime) + gi.sound (self, CHAN_VOICE, gi.soundindex(va("*death%i.wav", (rand()%4)+1)), 1, ATTN_NORM, 0); + +} +// END JOSEPH + +void thug2_pain (edict_t *self, edict_t *other, float kick, int damage, int mdx_part, int mdx_subobject) +{ + int orientation; + + AI_CheckMakeEnemy( self, other ); + + if (level.time < self->pain_debounce_time) + return; + + self->pain_debounce_time = level.time + 3 + random(); + + if (skill->value >= 3) + return; // no pain anims in nightmare + + // faked client pain sound + { + int r,l; + + r = 1 + (rand()&1); + if (self->health < 25) + l = 25; + else if (self->health < 50) + l = 50; + else if (self->health < 75) + l = 75; + else + l = 100; + gi.sound (self, CHAN_VOICE, gi.soundindex(va("*pain%i_%i.wav", l, r)), 1, ATTN_NORM, 0); + } + + + if (self->cast_info.currentmove == &thug2_move_knl_shoot) + return; // no pain anim for crouch shoot + + + // Ridah, randomly don't play an animation, since it' leaves them WAY open to be killed + if (skill->value > 0 && rand()%2) + return; + + + if (other->client || (other->svflags & SVF_MONSTER)) + { + orientation = AI_GetOrientation( self, other ); + } + else + { + orientation = ORIENTATION_CENTER; + } + + if ((self->maxs[2] < self->cast_info.standing_max_z)) + { // crouching + + switch (orientation) + { + case ORIENTATION_CENTER : + { + self->cast_info.currentmove = &thug2_move_crouch_pain1; + break; + } + case ORIENTATION_LEFT : + { + self->cast_info.currentmove = &thug2_move_crouch_pain2; + break; + } + case ORIENTATION_RIGHT : + { + self->cast_info.currentmove = &thug2_move_crouch_pain3; + break; + } + } + + } + else // standing + { + + /* + switch (orientation) + { + case ORIENTATION_CENTER : + { + self->cast_info.currentmove = &thug2_move_pain1; + break; + } + case ORIENTATION_LEFT : + { + self->cast_info.currentmove = &thug2_move_pain2; + break; + } + case ORIENTATION_RIGHT : + { + self->cast_info.currentmove = &thug2_move_pain3; + break; + } + } + */ + switch (orientation) + { + case ORIENTATION_CENTER : + { + self->cast_info.currentmove = &thug2_move_pain_chest; + break; + } + case ORIENTATION_LEFT : + { + self->cast_info.currentmove = &thug2_move_pain_Larm; + break; + } + case ORIENTATION_RIGHT : + { + self->cast_info.currentmove = &thug2_move_pain_Rarm; + break; + } + } + + } + +} + +// ========================================================================= + +/*QUAKED cast_thug_sit (1 .5 0) (-16 -16 -24) (16 16 48) x TRIGGERED_START x x x IMMEDIATE_FOLLOW_PATH MELEE NOSHADOW +cast_group 0 neutral +cast_group 1 friendly +cast_group 2 or greater enemy +guy with the pistol + +model="models\actors\thug_sit\" +*/ +void SP_cast_thug2(edict_t *self) +{ + int i; + char *head_skin, *body_skin, *legs_skin; + int skin; + + if (deathmatch->value) + { + G_FreeEdict (self); + return; + } + + self->movetype = MOVETYPE_STEP; + self->solid = SOLID_BBOX; + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 48); + + self->s.skinnum = (self->skin-1) * 3; + + if (self->art_skins) + { + // convert spaces to NULL's + for (i=0; i<11; i++) + if (self->art_skins[i] == ' ') + self->art_skins[i] = '\0'; + + head_skin = &self->art_skins[0]; + body_skin = &self->art_skins[4]; + legs_skin = &self->art_skins[8]; + } + else + { + head_skin = body_skin = legs_skin = NULL; + } + + // ------------------------------------------------------------------------ + // initialize all model_part data + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + switch (self->head) + { + case 1: + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/thug_sit/bald_head.mdx"); + break; + case 2: + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/thug_sit/ski_head.mdx"); + break; + case 3: + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/thug_sit/weld_head.mdx"); + break; + default: + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/thug_sit/head.mdx"); + break; + } + if (head_skin) + { + skin = gi.skinindex( self->s.model_parts[PART_HEAD].modelindex, head_skin ); + } + else + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_HEAD].baseskin = self->s.model_parts[PART_HEAD].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/thug_sit/head.mdx", &self->s.model_parts[PART_HEAD] ); + + self->s.num_parts++; + self->s.model_parts[PART_LEGS].modelindex = gi.modelindex("models/actors/thug_sit/legs.mdx"); + if (head_skin) + skin = gi.skinindex( self->s.model_parts[PART_LEGS].modelindex, legs_skin ); + else + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_LEGS].baseskin = self->s.model_parts[PART_LEGS].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/thug_sit/legs.mdx", &self->s.model_parts[PART_LEGS] ); + + self->s.num_parts++; + self->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/actors/thug_sit/body.mdx"); + if (head_skin) + skin = gi.skinindex( self->s.model_parts[PART_BODY].modelindex, body_skin ); + else + skin = self->s.skinnum; + for (i=0; is.model_parts[PART_BODY].baseskin = self->s.model_parts[PART_BODY].skinnum[i] = skin; + gi.GetObjectBounds( "models/actors/thug_sit/body.mdx", &self->s.model_parts[PART_BODY] ); + + if (self->spawnflags & THUG_MELEE) + { + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/thug_sit/pipe.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/thug_sit/pipe.mdx", &self->s.model_parts[PART_GUN] ); + + self->cast_info.aiflags |= AI_MELEE; + } + else + { + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/actors/thug_sit/L_pstl.mdx"); + for (i=0; is.model_parts[PART_GUN].baseskin = self->s.model_parts[PART_GUN].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/thug_sit/L_pstl.mdx", &self->s.model_parts[PART_GUN] ); + + self->s.num_parts++; + self->s.model_parts[PART_GUN2].modelindex = gi.modelindex("models/actors/thug_sit/R_pstl.mdx"); + for (i=0; is.model_parts[PART_GUN2].baseskin = self->s.model_parts[PART_GUN2].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/thug_sit/R_pstl.mdx", &self->s.model_parts[PART_GUN2] ); + + // the guns should not be visible until we go to use them + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + self->s.model_parts[PART_GUN2].invisible_objects = (1<<0 | 1<<1); + } + + if (self->count & 1) // cigar + { + self->s.num_parts++; + self->s.model_parts[PART_CIGAR].modelindex = gi.modelindex("models/actors/thug_sit/cigar.mdx"); + for (i=0; is.model_parts[PART_CIGAR].baseskin = self->s.model_parts[PART_CIGAR].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/thug_sit/cigar.mdx", &self->s.model_parts[PART_CIGAR] ); + } + + if (self->count & 2) // fedora hat + { + self->s.num_parts++; + self->s.model_parts[PART_HAT].modelindex = gi.modelindex("models/actors/thug_sit/fedora.mdx"); + for (i=0; is.model_parts[PART_HAT].baseskin = self->s.model_parts[PART_HAT].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/thug_sit/fedora.mdx", &self->s.model_parts[PART_HAT] ); + } + else if (self->count & 4) // stetson hat + { + self->s.num_parts++; + self->s.model_parts[PART_HAT].modelindex = gi.modelindex("models/actors/thug_sit/stetson.mdx"); + for (i=0; is.model_parts[PART_HAT].baseskin = self->s.model_parts[PART_HAT].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/thug_sit/stetson.mdx", &self->s.model_parts[PART_HAT] ); + } + else if (self->count & 8) // cap (hat) + { + self->s.num_parts++; + self->s.model_parts[PART_HAT].modelindex = gi.modelindex("models/actors/thug_sit/cap.mdx"); + for (i=0; is.model_parts[PART_HAT].baseskin = self->s.model_parts[PART_HAT].skinnum[i] = 0; + gi.GetObjectBounds( "models/actors/thug_sit/cap.mdx", &self->s.model_parts[PART_HAT] ); + } + // remove NULL's + if (self->art_skins) + self->art_skins[3] = self->art_skins[7] = ' '; + + // ------------------------------------------------------------------------ + + if (!self->health) + self->health = 100; + + self->gib_health = -200; + self->mass = 200; + + self->gender = GENDER_MALE; + + self->pain = thug2_pain; + self->die = thug2_die; + + self->cast_info.checkattack = AI_CheckAttack; + + self->cast_info.attack = thug2_attack; + self->cast_info.long_attack = thug2_long_attack; + self->cast_info.talk = thug2_talk; + self->cast_info.avoid = thug2_avoid; + + self->cast_info.catch_fire = thug2_catch_fire; + + self->cast_info.max_attack_distance = 2000; + + // self->cast_info.move_stand = &thug2_move_amb_stand; + + self->cast_info.move_stand = &thug2_move_ambsit1; + self->cast_info.move_crstand = &thug2_move_crch_amb_sdt; + + self->cast_info.move_run = &thug2_move_run_guns_dn; + self->cast_info.move_runwalk = &thug2_move_walk_guns_dn; + self->cast_info.move_crwalk = &thug2_move_crouch_walk; + + self->cast_info.move_jump = &thug2_move_jump; + + self->cast_info.move_avoid_walk = &thug2_move_avoid_walk; + self->cast_info.move_avoid_run = &thug2_move_avoid_run; + self->cast_info.move_avoid_reverse_walk = &thug2_move_avoid_reverse_walk; + self->cast_info.move_avoid_reverse_run = &thug2_move_avoid_reverse_run; + self->cast_info.move_avoid_crwalk = &thug2_move_crouch_avoid_walk; + + self->cast_info.move_crouch_down = &thug2_move_crch_knl_dn; + self->cast_info.move_stand_up = &thug2_move_stand_up; + + self->cast_info.move_lside_step = &thug2_move_lside_step; + self->cast_info.move_rside_step = &thug2_move_rside_step; + +// self->cast_info.move_start_climb = &thug2_move_st_clmb; + self->cast_info.move_start_climb = &thug2_move_clmb_loop; + self->cast_info.move_end_climb = &thug2_move_clmb_jmp; + + self->cast_info.move_evade = &thug2_move_evade; + self->cast_info.move_stand_evade = &thug2_move_evade_stand; + + gi.linkentity (self); + + self->cast_info.currentmove = self->cast_info.move_stand; + self->cast_info.scale = MODEL_SCALE; + + // talk by default + self->cast_info.aiflags |= AI_TALK; + + walking_cast_start (self); + + if (!(self->acc)) + self->acc = 2; + + if (self->spawnflags & 128) + self->s.renderfx2 |= RF2_NOSHADOW; +} + diff --git a/gamesrc/ai_thug_tables.h b/gamesrc/ai_thug_tables.h new file mode 100644 index 0000000..f369acd --- /dev/null +++ b/gamesrc/ai_thug_tables.h @@ -0,0 +1,1271 @@ + +mframe_t thug_frames_amb_stand[] = +{ + ai_stand, 0.000, thug_talk_think, // frame 0 + ai_stand, 0.000, thug_talk_think, // frame 1 + ai_stand, 0.000, thug_talk_think, // frame 2 + ai_stand, 0.000, thug_talk_think, // frame 3 + ai_stand, 0.000, thug_talk_think, // frame 4 + ai_stand, 0.000, thug_talk_think, // frame 5 + ai_stand, 0.000, thug_talk_think, // frame 6 + ai_stand, 0.000, thug_talk_think, // frame 7 + ai_stand, 0.000, thug_talk_think, // frame 8 + ai_stand, 0.000, thug_talk_think, // frame 9 + ai_stand, 0.000, thug_talk_think, // frame 10 + ai_stand, 0.000, thug_talk_think, // frame 11 + ai_stand, 0.000, thug_talk_think, // frame 12 + ai_stand, 0.000, thug_talk_think, // frame 13 + ai_stand, 0.000, thug_talk_think, // frame 14 + ai_stand, 0.000, thug_talk_think, // frame 15 + ai_stand, 0.000, thug_talk_think, // frame 16 + ai_stand, 0.000, thug_talk_think, // frame 17 + ai_stand, 0.000, thug_talk_think, // frame 18 + ai_stand, 0.000, thug_talk_think, // frame 19 + ai_stand, 0.000, thug_talk_think, // frame 20 + ai_stand, 0.000, thug_talk_think, // frame 21 + ai_stand, 0.000, thug_talk_think, // frame 22 + ai_stand, 0.000, thug_talk_think, // frame 23 + ai_stand, 0.000, thug_talk_think, // frame 24 + ai_stand, 0.000, thug_talk_think, // frame 25 + ai_stand, 0.000, thug_talk_think, // frame 26 + ai_stand, 0.000, thug_talk_think, // frame 27 + ai_stand, 0.000, thug_talk_think, // frame 28 + ai_stand, 0.000, thug_talk_think, // frame 29 + ai_stand, 0.000, thug_talk_think, // frame 30 + ai_stand, 0.000, thug_talk_think, // frame 31 + ai_stand, 0.000, thug_talk_think, // frame 32 + ai_stand, 0.000, thug_talk_think, // frame 33 + ai_stand, 0.000, thug_talk_think, // frame 34 + ai_stand, 0.000, thug_talk_think, // frame 35 + ai_stand, 0.000, thug_talk_think, // frame 36 + ai_stand, 0.000, thug_talk_think, // frame 37 + ai_stand, 0.000, thug_talk_think, // frame 38 + ai_stand, 0.000, thug_talk_think, // frame 39 + ai_stand, 0.000, thug_talk_think, // frame 40 + ai_stand, 0.000, thug_talk_think, // frame 41 +}; +mmove_t thug_move_amb_stand = {FRAME_amb_stand_01, FRAME_amb_stand_42, thug_frames_amb_stand, thug_end_stand}; + +mframe_t thug_frames_talk1[] = +{ + ai_stand, 0.000, thug_talk_think, // frame 0 + ai_stand, 0.000, thug_talk_think, // frame 1 + ai_stand, 0.000, thug_talk_think, // frame 2 + ai_stand, 0.000, thug_talk_think, // frame 3 + ai_stand, 0.000, thug_talk_think, // frame 4 + ai_stand, 0.000, thug_talk_think, // frame 5 + ai_stand, 0.000, thug_talk_think, // frame 6 + ai_stand, 0.000, thug_talk_think, // frame 7 + ai_stand, 0.000, thug_talk_think, // frame 8 + ai_stand, 0.000, thug_talk_think, // frame 9 + ai_stand, 0.000, thug_talk_think, // frame 10 + ai_stand, 0.000, thug_talk_think, // frame 11 + ai_stand, 0.000, thug_talk_think, // frame 12 + ai_stand, 0.000, thug_talk_think, // frame 13 + ai_stand, 0.000, thug_talk_think, // frame 14 + ai_stand, 0.000, thug_talk_think, // frame 15 + ai_stand, 0.000, thug_talk_think, // frame 16 +}; +mmove_t thug_move_talk1 = {FRAME_talk1_01, FRAME_talk1_17, thug_frames_talk1, thug_end_stand}; + +mframe_t thug_frames_handwave[] = +{ + ai_stand, 0.000, thug_talk_think, // frame 0 + ai_stand, 0.000, thug_talk_think, // frame 1 + ai_stand, 0.000, thug_talk_think, // frame 2 + ai_stand, 0.000, thug_talk_think, // frame 3 + ai_stand, 0.000, thug_talk_think, // frame 4 + ai_stand, 0.000, thug_talk_think, // frame 5 + ai_stand, 0.000, thug_talk_think, // frame 6 + ai_stand, 0.000, thug_talk_think, // frame 7 + ai_stand, 0.000, thug_talk_think, // frame 8 + ai_stand, 0.000, thug_talk_think, // frame 9 + ai_stand, 0.000, thug_talk_think, // frame 10 + ai_stand, 0.000, thug_talk_think, // frame 11 + ai_stand, 0.000, thug_talk_think, // frame 12 + ai_stand, 0.000, thug_talk_think, // frame 13 +}; +mmove_t thug_move_handwave = {FRAME_handwave_01, FRAME_handwave_14, thug_frames_handwave, thug_end_stand}; + +mframe_t thug_frames_nod_yes[] = +{ + ai_stand, 0.000, thug_talk_think, // frame 0 + ai_stand, 0.000, thug_talk_think, // frame 1 + ai_stand, 0.000, thug_talk_think, // frame 2 + ai_stand, 0.000, thug_talk_think, // frame 3 + ai_stand, 0.000, thug_talk_think, // frame 4 + ai_stand, 0.000, thug_talk_think, // frame 5 + ai_stand, 0.000, thug_talk_think, // frame 6 + ai_stand, 0.000, thug_talk_think, // frame 7 + ai_stand, 0.000, thug_talk_think, // frame 8 + ai_stand, 0.000, thug_talk_think, // frame 9 + ai_stand, 0.000, thug_talk_think, // frame 10 + ai_stand, 0.000, thug_talk_think, // frame 11 + ai_stand, 0.000, thug_talk_think, // frame 12 + ai_stand, 0.000, thug_talk_think, // frame 13 + ai_stand, 0.000, thug_talk_think, // frame 14 + ai_stand, 0.000, thug_talk_think, // frame 15 + ai_stand, 0.000, thug_talk_think, // frame 16 + ai_stand, 0.000, thug_talk_think, // frame 17 + ai_stand, 0.000, thug_talk_think, // frame 18 +}; +mmove_t thug_move_nod_yes = {FRAME_nod_yes_01, FRAME_nod_yes_19, thug_frames_nod_yes, thug_end_stand}; + +mframe_t thug_frames_whoa[] = +{ + ai_stand, 0.000, thug_talk_think, // frame 0 + ai_stand, 0.000, thug_talk_think, // frame 1 + ai_stand, 0.000, thug_talk_think, // frame 2 + ai_stand, 0.000, thug_talk_think, // frame 3 + ai_stand, 0.000, thug_talk_think, // frame 4 + ai_stand, 0.000, thug_talk_think, // frame 5 + ai_stand, 0.000, thug_talk_think, // frame 6 + ai_stand, 0.000, thug_talk_think, // frame 7 + ai_stand, 0.000, thug_talk_think, // frame 8 + ai_stand, 0.000, thug_talk_think, // frame 9 +}; +mmove_t thug_move_whoa = {FRAME_whoa_01, FRAME_whoa_10, thug_frames_whoa, thug_end_stand}; + +mframe_t thug_frames_crch_grab[] = +{ + ai_stand, 0.000, thug_talk_think, // frame 0 + ai_stand, 0.000, thug_talk_think, // frame 1 + ai_stand, 0.000, thug_talk_think, // frame 2 + ai_stand, 0.000, thug_talk_think, // frame 3 + ai_stand, 0.000, thug_talk_think, // frame 4 + ai_stand, 0.000, thug_talk_think, // frame 5 + ai_stand, 0.000, thug_talk_think, // frame 6 + ai_stand, 0.000, thug_talk_think, // frame 7 + ai_stand, 0.000, thug_talk_think, // frame 8 + ai_stand, 0.000, thug_talk_think, // frame 9 + ai_stand, 0.000, thug_talk_think, // frame 10 + ai_stand, 0.000, thug_talk_think, // frame 11 + ai_stand, 0.000, thug_talk_think, // frame 12 + ai_stand, 0.000, thug_talk_think, // frame 13 + ai_stand, 0.000, thug_talk_think, // frame 14 + ai_stand, 0.000, thug_talk_think, // frame 15 + ai_stand, 0.000, thug_talk_think, // frame 16 + ai_stand, 0.000, thug_talk_think, // frame 17 + ai_stand, 0.000, thug_talk_think, // frame 18 + ai_stand, 0.000, thug_talk_think, // frame 19 + ai_stand, 0.000, thug_talk_think, // frame 20 + ai_stand, 0.000, thug_talk_think, // frame 21 + ai_stand, 0.000, thug_talk_think, // frame 22 + ai_stand, 0.000, thug_talk_think, // frame 23 +}; +mmove_t thug_move_crch_grab = {FRAME_crch_grab_01, FRAME_crch_grab_24, thug_frames_crch_grab, thug_end_stand}; + +mframe_t thug_frames_up_yours[] = +{ + ai_stand, 0.000, thug_talk_think, // frame 0 + ai_stand, 0.000, thug_talk_think, // frame 1 + ai_stand, 0.000, thug_talk_think, // frame 2 + ai_stand, 0.000, thug_talk_think, // frame 3 + ai_stand, 0.000, thug_talk_think, // frame 4 + ai_stand, 0.000, thug_talk_think, // frame 5 + ai_stand, 0.000, thug_talk_think, // frame 6 + ai_stand, 0.000, thug_talk_think, // frame 7 + ai_stand, 0.000, thug_talk_think, // frame 8 + ai_stand, 0.000, thug_talk_think, // frame 9 + ai_stand, 0.000, thug_talk_think, // frame 10 + ai_stand, 0.000, thug_talk_think, // frame 11 + ai_stand, 0.000, thug_talk_think, // frame 12 + ai_stand, 0.000, thug_talk_think, // frame 13 + ai_stand, 0.000, thug_talk_think, // frame 14 + ai_stand, 0.000, thug_talk_think, // frame 15 + ai_stand, 0.000, thug_talk_think, // frame 16 + ai_stand, 0.000, thug_talk_think, // frame 17 + ai_stand, 0.000, thug_talk_think, // frame 18 + ai_stand, 0.000, thug_talk_think, // frame 19 + ai_stand, 0.000, thug_talk_think, // frame 20 + ai_stand, 0.000, thug_talk_think, // frame 21 + ai_stand, 0.000, thug_talk_think, // frame 22 + ai_stand, 0.000, thug_talk_think, // frame 23 +}; +mmove_t thug_move_up_yours = {FRAME_up_yours_01, FRAME_up_yours_24, thug_frames_up_yours, thug_end_stand}; + +mframe_t thug_frames_nod_no[] = +{ + ai_stand, 0.000, thug_talk_think, // frame 0 + ai_stand, 0.000, thug_talk_think, // frame 1 + ai_stand, 0.000, thug_talk_think, // frame 2 + ai_stand, 0.000, thug_talk_think, // frame 3 + ai_stand, 0.000, thug_talk_think, // frame 4 + ai_stand, 0.000, thug_talk_think, // frame 5 + ai_stand, 0.000, thug_talk_think, // frame 6 + ai_stand, 0.000, thug_talk_think, // frame 7 + ai_stand, 0.000, thug_talk_think, // frame 8 + ai_stand, 0.000, thug_talk_think, // frame 9 + ai_stand, 0.000, thug_talk_think, // frame 10 + ai_stand, 0.000, thug_talk_think, // frame 11 + ai_stand, 0.000, thug_talk_think, // frame 12 + ai_stand, 0.000, thug_talk_think, // frame 13 + ai_stand, 0.000, thug_talk_think, // frame 14 + ai_stand, 0.000, thug_talk_think, // frame 15 + ai_stand, 0.000, thug_talk_think, // frame 16 + ai_stand, 0.000, thug_talk_think, // frame 17 + ai_stand, 0.000, thug_talk_think, // frame 18 + ai_stand, 0.000, thug_talk_think, // frame 19 + ai_stand, 0.000, thug_talk_think, // frame 20 +}; +mmove_t thug_move_nod_no = {FRAME_nod_no_01, FRAME_nod_no_21, thug_frames_nod_no, thug_end_stand}; + +mframe_t thug_frames_pull_guns[] = +{ + ai_turn, 0.000, NULL, // frame 0 + ai_turn, 0.000, NULL, // frame 1 + ai_turn, 0.000, thug_show_guns, // frame 2 + ai_turn, 0.000, NULL, // frame 3 + ai_turn, 0.000, NULL, // frame 4 + ai_turn, 0.000, NULL, // frame 5 + ai_turn, 0.000, NULL, // frame 6 + ai_turn, 0.000, NULL, // frame 7 +}; +mmove_t thug_move_pull_guns = {FRAME_pull_guns_01, FRAME_pull_guns_08, thug_frames_pull_guns, AI_EndAttack}; + +mframe_t thug_frames_shoot[] = +{ + ai_turn, 0.000, thug_left_fire, // frame 0 + ai_turn, 0.000, NULL, // frame 1 + ai_turn, 0.000, thug_right_fire, // frame 2 + ai_turn, 0.000, NULL, // frame 3 +}; +mmove_t thug_move_shoot = {FRAME_shoot_01, FRAME_shoot_04, thug_frames_shoot, AI_EndAttack}; + +mframe_t thug_frames_reload[] = +{ + ai_turn, 0.000, NULL, // frame 0 + ai_turn, 0.000, NULL, // frame 1 + ai_turn, 0.000, NULL, // frame 2 + ai_turn, 0.000, NULL, // frame 3 + ai_turn, 0.000, NULL, // frame 4 + ai_turn, 0.000, NULL, // frame 5 + ai_turn, 0.000, NULL, // frame 6 + ai_turn, 0.000, NULL, // frame 7 + ai_turn, 0.000, NULL, // frame 8 + ai_turn, 0.000, NULL, // frame 9 + ai_turn, 0.000, NULL, // frame 10 + ai_turn, 0.000, NULL, // frame 11 + ai_turn, 0.000, NULL, // frame 12 +}; +mmove_t thug_move_reload = {FRAME_reload_01, FRAME_reload_13, thug_frames_reload, AI_EndAttack}; + +mframe_t thug_frames_kneel[] = +{ + ai_charge, 0.000, NULL, // frame 0 + ai_charge, 0.000, thug_show_guns, // frame 1 + ai_charge, 0.000, NULL, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, NULL, // frame 4 + ai_charge, 0.000, NULL, // frame 5 + ai_charge, 0.000, NULL, // frame 6 +}; +mmove_t thug_move_kneel = {FRAME_kneel_01, FRAME_kneel_07, thug_frames_kneel, thug_kneel_shoot}; + +mframe_t thug_frames_kneel_up[] = +{ + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 0 +}; +mmove_t thug_move_kneel_up = {FRAME_kneel_07, FRAME_kneel_01, thug_frames_kneel_up, AI_EndAttack}; + +mframe_t thug_frames_knl_shoot[] = +{ + NULL, 0.000, thug_right_fire, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, thug_left_fire, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 +}; +mmove_t thug_move_knl_shoot = {FRAME_knl_shoot_01, FRAME_knl_shoot_06, thug_frames_knl_shoot, thug_end_kneel_attack}; + +mframe_t thug_frames_melee1[] = +{ + ai_turn2, 0.000, thug_melee_bail, // frame 0 + ai_turn2, 0.000, thug_melee_bail, // frame 1 + ai_turn2, 0.000, thug_melee_bail, // frame 2 + ai_turn2, 0.000, thug_melee, // frame 4 + ai_turn2, 0.000, thug_melee_bail, // frame 5 + ai_turn2, 0.000, thug_melee, // frame 7 + ai_turn2, 0.000, NULL, // frame 9 + ai_turn2, 0.000, NULL, // frame 10 +}; +mmove_t thug_move_melee1 = {FRAME_melee1_01, FRAME_melee1_08, thug_frames_melee1, AI_EndAttack}; + +mframe_t thug_frames_melee2[] = +{ + ai_turn2, 0.000, thug_melee_bail, // frame 0 + ai_turn2, 0.000, thug_melee_bail, // frame 1 + ai_turn2, 0.000, thug_melee_bail, // frame 3 + ai_turn2, 0.000, thug_melee, // frame 4 + ai_turn2, 0.000, thug_melee_bail, // frame 6 + ai_turn2, 0.000, thug_melee_bail, // frame 7 + ai_turn2, 0.000, thug_melee, // frame 8 + ai_turn2, 0.000, NULL, // frame 10 + ai_turn2, 0.000, NULL, // frame 8 +}; +mmove_t thug_move_melee2 = {FRAME_melee2_01, FRAME_melee2_09, thug_frames_melee2, AI_EndAttack}; + +mframe_t thug_frames_melee3[] = +{ + ai_turn2, 0.000, thug_melee_bail, // frame 0 + ai_turn2, 0.000, thug_melee_bail, // frame 2 + ai_turn2, 0.000, thug_melee_bail, // frame 3 + ai_turn2, 0.000, thug_melee, // frame 4 + ai_turn2, 0.000, NULL, // frame 7 + ai_turn2, 0.000, NULL, // frame 8 + ai_turn2, 0.000, NULL, // frame 9 +}; +mmove_t thug_move_melee3 = {FRAME_melee3_01, FRAME_melee3_07, thug_frames_melee3, AI_EndAttack}; + +mframe_t thug_frames_melee4[] = +{ + ai_turn2, 0.000, thug_melee_bail, // frame 0 + ai_turn2, 0.000, thug_melee_bail, // frame 1 + ai_turn2, 0.000, thug_melee_bail, // frame 3 + ai_turn2, 0.000, thug_melee, // frame 4 + ai_turn2, 0.000, NULL, // frame 7 + ai_turn2, 0.000, NULL, // frame 8 +}; +mmove_t thug_move_melee4 = {FRAME_melee4_01, FRAME_melee4_06, thug_frames_melee4, AI_EndAttack}; + +mframe_t thug_frames_melee5[] = +{ + ai_turn2, 0.000, thug_melee_bail, // frame 0 + ai_turn2, 0.000, thug_melee_bail, // frame 1 + ai_turn2, 0.000, thug_melee_bail, // frame 3 + ai_turn2, 0.000, thug_melee_bail, // frame 4 + ai_turn2, 0.000, thug_melee, // frame 5 + ai_turn2, 0.000, NULL, // frame 8 + ai_turn2, 0.000, NULL, // frame 9 +}; +mmove_t thug_move_melee5 = {FRAME_melee5_01, FRAME_melee5_07, thug_frames_melee5, AI_EndAttack}; + +mframe_t thug_frames_run_melee[] = +{ + ai_charge, 28.912, NULL, // frame 0 + ai_charge, 19.452, NULL, // frame 1 + ai_charge, 24.673, NULL, // frame 2 + ai_charge, 34.604, thug_melee, // frame 3 + ai_charge, 37.908, NULL, // frame 4 + ai_charge, 21.425, NULL, // frame 5 +}; +mmove_t thug_move_run_melee = {FRAME_run_melee_01, FRAME_run_melee_06, thug_frames_run_melee, AI_EndAttack}; + +mframe_t thug_frames_jump[] = +{ +// ai_stand, 0.000, NULL, // frame 0 +// ai_stand, 0.000, NULL, // frame 1 +// ai_stand, 0.000, NULL, // frame 2 +// ai_stand, 0.000, NULL, // frame 3 +// ai_stand, 0.000, NULL, // frame 4 + + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, AI_CheckStillInair, // frame 7 + NULL, 0.000, NULL, // frame 8 + +// ai_stand, 0.000, NULL, // frame 9 +// ai_stand, 0.000, NULL, // frame 10 +// ai_stand, 0.000, NULL, // frame 11 +// ai_stand, 0.000, NULL, // frame 12 +// ai_stand, 0.000, NULL, // frame 13 +// ai_stand, 0.000, NULL, // frame 14 +// ai_stand, 0.000, NULL, // frame 15 +// ai_stand, 0.000, NULL, // frame 16 +}; +mmove_t thug_move_jump = {FRAME_jump_06, FRAME_jump_09, thug_frames_jump, AI_EndJump}; + +mframe_t thug_frames_walk_shoot[] = +{ + ai_charge, 12.556, thug_left_fire, // frame 0 + ai_charge, 5.996, NULL, // frame 1 + ai_charge, 3.820, NULL, // frame 2 + ai_charge, 7.507, NULL, // frame 3 + ai_charge, 8.655, thug_right_fire, // frame 4 + ai_charge, 9.650, NULL, // frame 5 + ai_charge, 0.565, NULL, // frame 6 + ai_charge, 13.452, NULL, // frame 7 + ai_charge, 7.716, NULL, // frame 8 + ai_charge, 8.753, NULL, // frame 9 +}; +mmove_t thug_move_walk_shoot = {FRAME_walk_shoot_01, FRAME_walk_shoot_10, thug_frames_walk_shoot, AI_EndAttack}; + +mframe_t thug_frames_reverse_walk_shoot[] = +{ + ai_charge,- 8.753, NULL, // frame 9 + ai_charge,- 7.716, NULL, // frame 8 + ai_charge,- 13.452, NULL, // frame 7 + ai_charge,- 0.565, thug_left_fire, // frame 6 + ai_charge,- 9.650, NULL, // frame 5 + ai_charge,- 8.655, NULL, // frame 4 + ai_charge,- 7.507, NULL, // frame 3 + ai_charge,- 3.820, thug_right_fire, // frame 2 + ai_charge,- 5.996, NULL, // frame 1 + ai_charge,- 12.556, NULL, // frame 0 +}; +mmove_t thug_move_reverse_walk_shoot = {FRAME_walk_shoot_10, FRAME_walk_shoot_01, thug_frames_reverse_walk_shoot, AI_EndAttack}; + +mframe_t thug_frames_walk_guns_dn[] = +{ + ai_run, 0.834, NULL, // frame 0 + ai_run, 2.767, NULL, // frame 1 + ai_run, 5.854, NULL, // frame 2 + ai_run, 3.947, NULL, // frame 3 + ai_run, 8.270, NULL, // frame 4 + ai_run, 4.192, NULL, // frame 5 + ai_run, 13.362, NULL, // frame 6 + ai_run, 12.064, NULL, // frame 7 + ai_run, 14.928, NULL, // frame 8 + ai_run, 6.636, NULL, // frame 9 +}; +mmove_t thug_move_walk_guns_dn = {FRAME_walk_guns_dn_01, FRAME_walk_guns_dn_10, thug_frames_walk_guns_dn, NULL}; + +mframe_t thug_frames_avoid_walk[] = +{ + ai_turn, 0.834, NULL, // frame 0 + ai_turn, 2.767, NULL, // frame 1 + ai_turn, 5.854, NULL, // frame 2 + ai_turn, 3.947, NULL, // frame 3 + ai_turn, 8.270, NULL, // frame 4 + ai_turn, 4.192, NULL, // frame 5 +// ai_turn, 13.569, NULL, // frame 6 +// ai_turn, 10.150, NULL, // frame 7 +// ai_turn, 8.247, NULL, // frame 8 +// ai_turn, 6.745, NULL, // frame 9 +}; +mmove_t thug_move_avoid_walk = {FRAME_walk_guns_dn_01, FRAME_walk_guns_dn_06, thug_frames_avoid_walk, AI_EndAttack}; + +mframe_t thug_frames_avoid_reverse_walk[] = +{ + ai_turn,-4.192, NULL, // frame 0 + ai_turn,-8.270, NULL, // frame 1 + ai_turn,-3.947, NULL, // frame 2 + ai_turn,-5.854, NULL, // frame 3 + ai_turn,-2.767, NULL, // frame 4 + ai_turn,-0.834, NULL, // frame 5 +// ai_turn, -7.614, NULL, // frame 6 +// ai_turn, -8.203, NULL, // frame 7 +// ai_turn, 1.403, NULL, // frame 8 +// ai_turn, -6.424, NULL, // frame 9 +}; +mmove_t thug_move_avoid_reverse_walk = {FRAME_walk_guns_dn_10, FRAME_walk_guns_dn_05, thug_frames_avoid_reverse_walk, AI_EndAttack}; + +mframe_t thug_frames_avoid_run[] = +{ + ai_turn, 26.748, NULL, // frame 0 + ai_turn, 17.188, NULL, // frame 1 + ai_turn, 31.486, NULL, // frame 2 + ai_turn, 31.052, NULL, // frame 3 + ai_turn, 23.944, NULL, // frame 4 + ai_turn, 24.549, NULL, // frame 5 +}; +mmove_t thug_move_avoid_run = {FRAME_run_guns_dn_01, FRAME_run_guns_dn_06, thug_frames_avoid_run, AI_EndAttack}; + +mframe_t thug_frames_avoid_reverse_run[] = +{ + ai_turn,- 24.549, NULL, // frame 5 + ai_turn,- 23.944, NULL, // frame 4 + ai_turn,- 31.052, NULL, // frame 3 + ai_turn,- 31.486, NULL, // frame 2 + ai_turn,- 17.188, NULL, // frame 1 + ai_turn,- 26.748, NULL, // frame 0 +}; +mmove_t thug_move_avoid_reverse_run = {FRAME_run_guns_dn_06, FRAME_run_guns_dn_01, thug_frames_avoid_reverse_run, AI_EndAttack}; + +mframe_t thug_frames_run_shoot[] = +{ + ai_run, 27.961, thug_right_fire, // frame 0 + ai_run, 27.010, thug_left_fire, // frame 1 + ai_run, 35.880, NULL, // frame 2 + ai_run, 35.912, thug_right_fire, // frame 3 + ai_run, 30.150, NULL, // frame 4 + ai_run, 25.239, thug_left_fire, // frame 5 +}; +mmove_t thug_move_run_shoot = {FRAME_run_shoot_01, FRAME_run_shoot_06, thug_frames_run_shoot, AI_EndAttack}; + + +mframe_t thug_frames_reverse_run_shoot[] = +{ + ai_charge,- 25.239, thug_left_fire, // frame 5 + ai_charge,- 30.150, NULL, // frame 4 + ai_charge,- 35.912, thug_right_fire, // frame 3 + ai_charge,- 35.880, NULL, // frame 2 + ai_charge,- 27.010, thug_left_fire, // frame 1 + ai_charge,- 27.961, thug_right_fire, // frame 0 +}; +mmove_t thug_move_reverse_run_shoot = {FRAME_run_shoot_06, FRAME_run_shoot_01, thug_frames_reverse_run_shoot, AI_EndAttack}; + + +mframe_t thug_frames_run_guns_dn[] = +{ + ai_run, 26.748, NULL, // frame 0 + ai_run, 17.188, NULL, // frame 1 + ai_run, 31.486, NULL, // frame 2 + ai_run, 31.052, NULL, // frame 3 + ai_run, 23.944, NULL, // frame 4 + ai_run, 24.549, NULL, // frame 5 +}; +mmove_t thug_move_run_guns_dn = {FRAME_run_guns_dn_01, FRAME_run_guns_dn_06, thug_frames_run_guns_dn, NULL}; + +mframe_t thug_frames_run_on_fire[] = +{ + ai_onfire_run, 26.846, NULL, // frame 0 + ai_onfire_run, 20.973, NULL, // frame 1 + ai_onfire_run, 44.080, NULL, // frame 2 + ai_onfire_run, 30.029, NULL, // frame 3 + ai_onfire_run, 25.538, NULL, // frame 4 + ai_onfire_run, 26.007, NULL, // frame 5 +}; +mmove_t thug_move_run_on_fire = {FRAME_run_on_fire_01, FRAME_run_on_fire_06, thug_frames_run_on_fire, NULL}; + +mframe_t thug_frames_lside_run[] = +{ + ai_sidestep,- 20.708*0.75, thug_firegun_left, // frame 0 + ai_sidestep,- 20.416*0.75, NULL, // frame 1 + ai_sidestep,- 34.221*0.75, NULL, // frame 2 + ai_sidestep,- 29.869*0.75, thug_firegun_left, // frame 3 + ai_sidestep,- 24.720*0.75, NULL, // frame 4 + ai_sidestep,- 20.704*0.75, NULL, // frame 5 +}; +// mmove_t thug_move_lside_run = {FRAME_lside_run_01, FRAME_lside_run_06, thug_frames_lside_run, NULL}; +mmove_t thug_move_lside_run = {FRAME_rside_run_01, FRAME_rside_run_06, thug_frames_lside_run, NULL}; + +mframe_t thug_frames_rside_run[] = +{ + ai_sidestep, 20.182*0.75, thug_firegun_right, // frame 0 + ai_sidestep, 22.244*0.75, NULL, // frame 1 + ai_sidestep, 26.540*0.75, NULL, // frame 2 + ai_sidestep, 15.147*0.75, NULL, // frame 3 + ai_sidestep, 27.265*0.75, thug_firegun_right, // frame 4 + ai_sidestep, 24.219*0.75, NULL, // frame 5 +}; +//mmove_t thug_move_rside_run = {FRAME_rside_run_01, FRAME_rside_run_06, thug_frames_rside_run, NULL}; +mmove_t thug_move_rside_run = {FRAME_lside_run_01, FRAME_lside_run_06, thug_frames_rside_run, NULL}; + +//NOTE: Animations are reversed for this (need to be fixed) +mframe_t thug_frames_lside_step[] = +{ + ai_sidestep, 0.530, NULL, // frame 0 + ai_sidestep, -0.931, NULL, // frame 1 + ai_sidestep, -3.156, NULL, // frame 2 + ai_sidestep, -3.382, NULL, // frame 3 + ai_sidestep, -2.187, NULL, // frame 4 + ai_sidestep, -3.987, NULL, // frame 5 + ai_sidestep, -0.497, NULL, // frame 6 +}; +mmove_t thug_move_lside_step = {FRAME_rside_step_01, FRAME_rside_step_07, thug_frames_lside_step, AI_EndAttack}; + +mframe_t thug_frames_rside_step[] = +{ + ai_sidestep, 0.710, NULL, // frame 0 + ai_sidestep, 2.559, NULL, // frame 1 + ai_sidestep, -0.032, NULL, // frame 2 + ai_sidestep, 1.031, NULL, // frame 3 + ai_sidestep, 3.099, NULL, // frame 4 + ai_sidestep, 1.713, NULL, // frame 5 + ai_sidestep, 2.924, NULL, // frame 6 +}; +mmove_t thug_move_rside_step = {FRAME_lside_step_01, FRAME_lside_step_07, thug_frames_rside_step, AI_EndAttack}; + + +mframe_t thug_frames_evade[] = +{ + ai_turn, -0.296, NULL, // frame 0 + ai_turn, 1.630, NULL, // frame 1 + ai_turn, 0.455, NULL, // frame 2 + ai_turn, -7.690, NULL, // frame 3 + ai_turn, -3.309, NULL, // frame 4 + ai_turn, -13.075, NULL, // frame 5 + ai_turn, -3.790, NULL, // frame 6 + ai_turn, -11.745, NULL, // frame 7 + ai_turn, -5.925, NULL, // frame 8 + ai_turn, -0.171, NULL, // frame 9 + ai_turn, -5.828, NULL, // frame 10 + ai_turn, -2.348, NULL, // frame 11 + ai_turn, -0.799, NULL, // frame 12 +}; +mmove_t thug_move_evade = {FRAME_evade_01, FRAME_evade_13, thug_frames_evade, thug_evade_amb}; + +mframe_t thug_frames_evade_amb[] = +{ + NULL, 0.000, thug_evade_checkadjust, // frame 0 + NULL, 0.000, thug_evade_checkadjust, // frame 1 + NULL, 0.000, thug_evade_checkadjust, // frame 2 + NULL, 0.000, thug_evade_checkadjust, // frame 3 + NULL, 0.000, thug_evade_checkadjust, // frame 4 + NULL, 0.000, thug_evade_checkadjust, // frame 5 + NULL, 0.000, thug_evade_checkadjust, // frame 6 +}; +mmove_t thug_move_evade_amb = {FRAME_evade_amb_01, FRAME_evade_amb_07, thug_frames_evade_amb, AI_CheckEvade}; + +mframe_t thug_frames_evade_stand[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 +}; +mmove_t thug_move_evade_stand = {FRAME_evade_amb_01, FRAME_evade_amb_07, thug_frames_evade_stand, thug_end_stand}; + +mframe_t thug_frames_evade_adjust[] = +{ + ai_turn, -1.430, thug_evade_adjust, // frame 9 + ai_turn, -5.835, thug_evade_adjust, // frame 10 + ai_turn, -1.706, thug_evade_adjust, // frame 11 + ai_turn, -0.040, thug_evade_adjust, // frame 12 +}; +mmove_t thug_move_evade_adjust = {FRAME_evade_10, FRAME_evade_13, thug_frames_evade_adjust, thug_evade_amb}; + +/* +mframe_t thug_frames_st_clmb[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 +}; +mmove_t thug_move_st_clmb = {FRAME_st_clmb_01, FRAME_st_clmb_02, thug_frames_st_clmb, thug_climb_loop}; +*/ +mframe_t thug_frames_clmb_loop[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 7 + NULL, 0.000, NULL, // frame 8 +}; +mmove_t thug_move_clmb_loop = {FRAME_clmb_loop_01, FRAME_clmb_loop_09, thug_frames_clmb_loop, AI_CheckStillClimbingLadder}; + +/* +mframe_t thug_frames_clmb_jmp[] = +{ + NULL, 0.000, AI_CheckStillInair, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 +}; +mmove_t thug_move_clmb_jmp = {FRAME_clmb_jmp_dn_01, FRAME_clmb_jmp_dn_06, thug_frames_clmb_jmp, AI_EndJump}; +*/ + +mframe_t thug_frames_clmb_jmp[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, AI_CheckStillInair, // frame 7 + NULL, 0.000, NULL, // frame 8 +// NULL, 0.000, NULL, // frame 9 +// NULL, 0.000, NULL, // frame 10 +// NULL, 0.000, NULL, // frame 11 +// NULL, 0.000, NULL, // frame 12 +// NULL, 0.000, NULL, // frame 13 +// NULL, 0.000, NULL, // frame 14 +}; +mmove_t thug_move_clmb_jmp = {FRAME_clmb_over_01, FRAME_clmb_over_09, thug_frames_clmb_jmp, AI_EndJump}; + + +mframe_t thug_frames_clmb_over[] = +{ + NULL, 0.000, AI_CheckStillInair, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 7 + NULL, 0.000, NULL, // frame 8 + NULL, 0.000, NULL, // frame 9 + NULL, 0.000, NULL, // frame 10 + NULL, 0.000, NULL, // frame 11 + NULL, 0.000, NULL, // frame 12 + NULL, 0.000, NULL, // frame 13 + NULL, 0.000, NULL, // frame 14 +}; +mmove_t thug_move_clmb_over = {FRAME_clmb_over_01, FRAME_clmb_over_15, thug_frames_clmb_over, AI_EndJump}; + + +mframe_t thug_frames_crch_dth[] = +{ + ai_move, -1.942, NULL, // frame 0 + ai_move, -8.438, NULL, // frame 1 + ai_move, -7.796, NULL, // frame 2 + ai_move, -10.572, NULL, // frame 3 + ai_move, -6.917, NULL, // frame 4 + ai_move, -7.397, NULL, // frame 5 + ai_move, -12.057, NULL, // frame 6 + ai_move, -1.582, NULL, // frame 7 + ai_move, 0.216, NULL, // frame 8 + ai_move, 0.493, NULL, // frame 9 + ai_move, -0.908, NULL, // frame 10 + ai_move, 0.971, NULL, // frame 11 + ai_move, -0.692, NULL, // frame 12 + ai_move, -0.122, NULL, // frame 13 + ai_move, 0.079, NULL, // frame 14 + ai_move, -0.098, NULL, // frame 15 + ai_move, -0.082, NULL, // frame 16 + ai_move, -0.019, NULL, // frame 17 + ai_move, -0.032, NULL, // frame 18 +}; +mmove_t thug_move_crch_dth = {FRAME_crch_dth_01, FRAME_crch_dth_19, thug_frames_crch_dth, AI_EndDeath}; + +mframe_t thug_frames_crch_knl_dn[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 +}; +mmove_t thug_move_crch_knl_dn = {FRAME_crch_knl_dn_01, FRAME_crch_knl_dn_04, thug_frames_crch_knl_dn, AI_EndAttack}; + +mframe_t thug_frames_stand_up[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 +}; +mmove_t thug_move_stand_up = {FRAME_crch_knl_dn_04, FRAME_crch_knl_dn_01, thug_frames_stand_up, AI_EndAttack}; + +mframe_t thug_frames_crch_amb_sdt[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 + ai_stand, 0.000, NULL, // frame 9 + ai_stand, 0.000, NULL, // frame 10 + ai_stand, 0.000, NULL, // frame 11 + ai_stand, 0.000, NULL, // frame 12 + ai_stand, 0.000, NULL, // frame 13 + ai_stand, 0.000, NULL, // frame 14 + ai_stand, 0.000, NULL, // frame 15 + ai_stand, 0.000, NULL, // frame 16 + ai_stand, 0.000, NULL, // frame 17 + ai_stand, 0.000, NULL, // frame 18 + ai_stand, 0.000, NULL, // frame 19 + ai_stand, 0.000, NULL, // frame 20 + ai_stand, 0.000, NULL, // frame 21 + ai_stand, 0.000, NULL, // frame 22 + ai_stand, 0.000, NULL, // frame 23 +}; +mmove_t thug_move_crch_amb_sdt = {FRAME_crch_amb_sdt_01, FRAME_crch_amb_sdt_24, thug_frames_crch_amb_sdt, NULL}; + +mframe_t thug_frames_crch_shoot[] = +{ + ai_turn, 0.000, thug_right_fire, // frame 0 + ai_turn, 0.000, NULL, // frame 1 + ai_turn, 0.000, thug_left_fire, // frame 2 + ai_turn, 0.000, NULL, // frame 3 + ai_turn, 0.000, NULL, // frame 4 +}; +mmove_t thug_move_crch_shoot = {FRAME_crch_shoot_01, FRAME_crch_shoot_05, thug_frames_crch_shoot, AI_EndAttack}; + +mframe_t thug_frames_crouch_avoid_walk[] = +{ + ai_turn, 8.894, NULL, // frame 0 + ai_turn, 3.409, NULL, // frame 1 + ai_turn, 2.605, NULL, // frame 2 + ai_turn, 3.897, NULL, // frame 3 + ai_turn, 6.927, NULL, // frame 4 + ai_turn, 8.337, NULL, // frame 5 +}; +mmove_t thug_move_crouch_avoid_walk = {FRAME_crouch_shfl_01, FRAME_crouch_shfl_06, thug_frames_crouch_avoid_walk, AI_EndAttack}; + +mframe_t thug_frames_crouch_shfl[] = +{ + ai_run, 8.894, NULL, // frame 0 + ai_run, 3.409, NULL, // frame 1 + ai_run, 2.605, NULL, // frame 2 + ai_run, 3.897, NULL, // frame 3 + ai_run, 6.927, NULL, // frame 4 + ai_run, 8.337, NULL, // frame 5 +}; +mmove_t thug_move_crouch_shfl = {FRAME_crouch_shfl_01, FRAME_crouch_shfl_06, thug_frames_crouch_shfl, NULL}; + +mframe_t thug_frames_crouch_walk[] = +{ + ai_run, 6.183, NULL, // frame 0 + ai_run, 10.404, NULL, // frame 1 + ai_run, 6.033, NULL, // frame 2 + ai_run, 16.049, NULL, // frame 3 + ai_run, 10.574, NULL, // frame 4 + ai_run, 12.539, NULL, // frame 5 +}; +mmove_t thug_move_crouch_walk = {FRAME_crouch_walk_01, FRAME_crouch_walk_06, thug_frames_crouch_walk, NULL}; + +mframe_t thug_frames_crouch_pain1[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 +}; +mmove_t thug_move_crouch_pain1 = {FRAME_crouch_pain1_01, FRAME_crouch_pain1_08, thug_frames_crouch_pain1, AI_EndAttack}; + +mframe_t thug_frames_crouch_pain2[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 +}; +mmove_t thug_move_crouch_pain2 = {FRAME_crouch_pain2_01, FRAME_crouch_pain2_06, thug_frames_crouch_pain2, AI_EndAttack}; + +mframe_t thug_frames_crouch_pain3[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 +}; +mmove_t thug_move_crouch_pain3 = {FRAME_crouch_pain3_01, FRAME_crouch_pain3_06, thug_frames_crouch_pain3, AI_EndAttack}; + +mframe_t thug_frames_low_melee1[] = +{ + ai_charge, 0.000, thug_melee_bail, // frame 0 + ai_charge, 0.000, thug_melee_bail, // frame 1 + ai_charge, 0.000, thug_melee_bail, // frame 2 + ai_charge, 0.000, thug_melee_bail, // frame 3 + ai_charge, 0.000, thug_melee, // frame 4 + ai_charge, 0.000, NULL, // frame 5 + ai_charge, 0.000, NULL, // frame 6 + ai_charge, 0.000, NULL, // frame 7 + ai_charge, 0.000, NULL, // frame 8 + ai_charge, 0.000, NULL, // frame 9 +}; +mmove_t thug_move_low_melee1 = {FRAME_low_melee1_01, FRAME_low_melee1_10, thug_frames_low_melee1, AI_EndAttack}; + +// new pains and death + +mframe_t thug_frames_pain_Rarm[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 +}; +mmove_t thug_move_pain_Rarm = {FRAME_pain_Rarm_01, FRAME_pain_Rarm_10, thug_frames_pain_Rarm, AI_EndAttack}; + +mframe_t thug_frames_pain_Larm[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t thug_move_pain_Larm = {FRAME_pain_Larm_01, FRAME_pain_Larm_09, thug_frames_pain_Larm, AI_EndAttack}; + +mframe_t thug_frames_pain_chest[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t thug_move_pain_chest = {FRAME_pain_chest_01, FRAME_pain_chest_09, thug_frames_pain_chest, AI_EndAttack}; + +mframe_t thug_frames_pain_head[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 +}; +mmove_t thug_move_pain_head = {FRAME_pain_head_01, FRAME_pain_head_10, thug_frames_pain_head, AI_EndAttack}; + +mframe_t thug_frames_pain_Rleg[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 +}; +mmove_t thug_move_pain_Rleg = {FRAME_pain_Rleg_01, FRAME_pain_Rleg_10, thug_frames_pain_Rleg, AI_EndAttack}; + +mframe_t thug_frames_pain_Lleg[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 +}; +mmove_t thug_move_pain_Lleg = {FRAME_pain_Lleg_01, FRAME_pain_Lleg_08, thug_frames_pain_Lleg, AI_EndAttack}; + +mframe_t thug_frames_pain_crch[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 +}; +mmove_t thug_move_pain_crch = {FRAME_pain_crch_01, FRAME_pain_crch_11, thug_frames_pain_crch, AI_EndAttack}; + +mframe_t thug_frames_pain_butt[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t thug_move_pain_butt = {FRAME_pain_butt_01, FRAME_pain_butt_09, thug_frames_pain_butt, AI_EndAttack}; + +mframe_t thug_frames_nw_pain_Rarm[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 +}; +mmove_t thug_move_nw_pain_Rarm = {FRAME_nw_pain_Rarm_01, FRAME_nw_pain_Rarm_11, thug_frames_nw_pain_Rarm, AI_EndAttack}; + +mframe_t thug_frames_nw_pain_Larm[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 +}; +mmove_t thug_move_nw_pain_Larm = {FRAME_nw_pain_Larm_01, FRAME_nw_pain_Larm_11, thug_frames_nw_pain_Larm, AI_EndAttack}; + +mframe_t thug_frames_nw_pain_chst[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 +}; +mmove_t thug_move_nw_pain_chst = {FRAME_nw_pain_chst_01, FRAME_nw_pain_chst_11, thug_frames_nw_pain_chst, AI_EndAttack}; + +mframe_t thug_frames_nw_pain_head[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 +}; +mmove_t thug_move_nw_pain_head = {FRAME_nw_pain_head_01, FRAME_nw_pain_head_08, thug_frames_nw_pain_head, AI_EndAttack}; + +mframe_t thug_frames_nw_pain_Rleg[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 +}; +mmove_t thug_move_nw_pain_Rleg = {FRAME_nw_pain_Rleg_01, FRAME_nw_pain_Rleg_10, thug_frames_nw_pain_Rleg, AI_EndAttack}; + +mframe_t thug_frames_nw_pain_Lleg[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 + ai_move, 0.000, NULL, // frame 12 +}; +mmove_t thug_move_nw_pain_Lleg = {FRAME_nw_pain_Lleg_01, FRAME_nw_pain_Lleg_13, thug_frames_nw_pain_Lleg, AI_EndAttack}; + +mframe_t thug_frames_nw_pain_crch[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 + ai_move, 0.000, NULL, // frame 12 + ai_move, 0.000, NULL, // frame 13 + ai_move, 0.000, NULL, // frame 14 + ai_move, 0.000, NULL, // frame 15 +}; +mmove_t thug_move_nw_pain_crch = {FRAME_nw_pain_crch_01, FRAME_nw_pain_crch_16, thug_frames_nw_pain_crch, AI_EndAttack}; + +mframe_t thug_frames_nw_pain_butt[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 + ai_move, 0.000, NULL, // frame 12 + ai_move, 0.000, NULL, // frame 13 +}; +mmove_t thug_move_nw_pain_butt = {FRAME_nw_pain_butt_01, FRAME_nw_pain_butt_14, thug_frames_nw_pain_butt, AI_EndAttack}; + +mframe_t thug_frames_death1[] = +{ + ai_move, -5.521, NULL, // frame 0 + ai_move, -12.982, NULL, // frame 1 + ai_move, -5.191, NULL, // frame 2 + ai_move, -12.777, NULL, // frame 3 + ai_move, -12.240, NULL, // frame 4 + ai_move, -6.917, NULL, // frame 5 + ai_move, -7.750, NULL, // frame 6 + ai_move, 0.493, NULL, // frame 7 + ai_move, 2.456, NULL, // frame 8 + ai_move, 0.524, NULL, // frame 9 + ai_move, 3.357, NULL, // frame 10 + ai_move, 1.128, NULL, // frame 11 + ai_move, -0.663, NULL, // frame 12 + ai_move, -0.169, NULL, // frame 13 + ai_move, -0.012, NULL, // frame 14 + ai_move, -0.017, NULL, // frame 15 +}; +mmove_t thug_move_death1 = {FRAME_death1_01, FRAME_death1_16, thug_frames_death1, AI_EndDeath}; + +mframe_t thug_frames_death2[] = +{ + ai_move, -1.257, NULL, // frame 0 + ai_move, -9.279, NULL, // frame 1 + ai_move, -9.694, NULL, // frame 2 + ai_move, -3.081, NULL, // frame 3 + ai_move, -4.356, NULL, // frame 4 + ai_move, -7.858, NULL, // frame 5 + ai_move, -9.416, NULL, // frame 6 + ai_move, -7.609, NULL, // frame 7 + ai_move, -0.727, NULL, // frame 8 + ai_move, 0.463, NULL, // frame 9 + ai_move, -0.095, NULL, // frame 10 + ai_move, 0.390, NULL, // frame 11 + ai_move, -0.166, NULL, // frame 12 + ai_move, -0.040, NULL, // frame 13 + ai_move, -0.014, NULL, // frame 14 + ai_move, 0.008, NULL, // frame 15 + ai_move, -0.013, NULL, // frame 16 + ai_move, 0.018, NULL, // frame 17 + ai_move, 0.008, NULL, // frame 18 +}; +mmove_t thug_move_death2 = {FRAME_death2_01, FRAME_death2_19, thug_frames_death2, AI_EndDeath}; + +mframe_t thug_frames_death3[] = +{ + ai_move, -2.603, NULL, // frame 0 + ai_move, -13.458, NULL, // frame 1 + ai_move, -4.258, NULL, // frame 2 + ai_move, -2.817, NULL, // frame 3 + ai_move, -6.518, NULL, // frame 4 + ai_move, -13.554, NULL, // frame 5 + ai_move, -4.266, NULL, // frame 6 + ai_move, -2.536, NULL, // frame 7 + ai_move, -8.930, NULL, // frame 8 + ai_move, -3.249, NULL, // frame 9 + ai_move, -0.212, NULL, // frame 10 + ai_move, 0.674, NULL, // frame 11 + ai_move, -0.340, NULL, // frame 12 + ai_move, -0.129, NULL, // frame 13 +}; +mmove_t thug_move_death3 = {FRAME_death3_01, FRAME_death3_14, thug_frames_death3, AI_EndDeath}; + +mframe_t thug_frames_death4[] = +{ + ai_move, -1.292, NULL, // frame 0 + ai_move, -0.037, NULL, // frame 1 + ai_move, -0.620, NULL, // frame 2 + ai_move, -1.143, NULL, // frame 3 + ai_move, -3.476, NULL, // frame 4 + ai_move, 1.975, NULL, // frame 5 + ai_move, 1.296, NULL, // frame 6 + ai_move, -0.489, NULL, // frame 7 + ai_move, -0.306, NULL, // frame 8 + ai_move, 0.042, NULL, // frame 9 + ai_move, -0.163, NULL, // frame 10 + ai_move, -0.039, NULL, // frame 11 + ai_move, 0.039, NULL, // frame 12 + ai_move, -0.007, NULL, // frame 13 + ai_move, -0.006, NULL, // frame 14 +}; +mmove_t thug_move_death4 = {FRAME_death4_01, FRAME_death4_15, thug_frames_death4, AI_EndDeath}; + +mframe_t thug_frames_death5[] = +{ + ai_move, -0.167, NULL, // frame 0 + ai_move, -0.716, NULL, // frame 1 + ai_move, -1.767, NULL, // frame 2 + ai_move, -0.731, NULL, // frame 3 + ai_move, -4.556, NULL, // frame 4 + ai_move, -1.844, NULL, // frame 5 + ai_move, 1.790, NULL, // frame 6 + ai_move, 2.718, NULL, // frame 7 + ai_move, 4.071, NULL, // frame 8 + ai_move, 6.192, NULL, // frame 9 + ai_move, 9.945, NULL, // frame 10 + ai_move, 2.529, NULL, // frame 11 + ai_move, -0.830, NULL, // frame 12 + ai_move, -0.498, NULL, // frame 13 + ai_move, 0.204, NULL, // frame 14 + ai_move, 0.162, NULL, // frame 15 + ai_move, -0.104, NULL, // frame 16 + ai_move, -0.005, NULL, // frame 17 +}; +mmove_t thug_move_death5 = {FRAME_death5_01, FRAME_death5_18, thug_frames_death5, AI_EndDeath}; + +mframe_t thug_frames_walk_dokey[] = +{ + ai_runDOKEY, 0.834, EP_ReachedDoKey, // frame 0 + ai_runDOKEY, 2.767, EP_ReachedDoKey, // frame 1 + ai_runDOKEY, 5.854, EP_ReachedDoKey, // frame 2 + ai_runDOKEY, 3.947, EP_ReachedDoKey, // frame 3 + ai_runDOKEY, 8.270, EP_ReachedDoKey, // frame 4 + ai_runDOKEY, 4.192, EP_ReachedDoKey, // frame 5 + ai_runDOKEY, 13.362, EP_ReachedDoKey, // frame 6 + ai_runDOKEY, 12.064, EP_ReachedDoKey, // frame 7 + ai_runDOKEY, 14.928, EP_ReachedDoKey, // frame 8 + ai_runDOKEY, 6.636, EP_ReachedDoKey, // frame 9 +}; +mmove_t thug_move_walk_dokey = {FRAME_walk_guns_dn_01, FRAME_walk_guns_dn_10, thug_frames_walk_dokey, EP_ReachedDoKey}; + +mframe_t thug_frames_crch_dokey[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 + ai_stand, 0.000, NULL, // frame 9 + ai_stand, 0.000, NULL, // frame 10 + ai_stand, 0.000, NULL, // frame 11 + ai_stand, 0.000, NULL, // frame 12 + ai_stand, 0.000, NULL, // frame 13 + ai_stand, 0.000, NULL, // frame 14 + ai_stand, 0.000, NULL, // frame 15 + ai_stand, 0.000, NULL, // frame 16 + ai_stand, 0.000, NULL, // frame 17 + ai_stand, 0.000, NULL, // frame 18 + ai_stand, 0.000, NULL, // frame 19 + ai_stand, 0.000, NULL, // frame 20 + ai_stand, 0.000, NULL, // frame 21 + ai_stand, 0.000, NULL, // frame 22 + ai_stand, 0.000, NULL, // frame 23 +}; +mmove_t thug_move_crch_dokey = {FRAME_crch_amb_sdt_01, FRAME_crch_amb_sdt_24, thug_frames_crch_dokey, EP_EndDoKey}; diff --git a/gamesrc/ai_whore_tables.h b/gamesrc/ai_whore_tables.h new file mode 100644 index 0000000..b7b9ce1 --- /dev/null +++ b/gamesrc/ai_whore_tables.h @@ -0,0 +1,1795 @@ + +//================================================================================================== +// standard moves + +mframe_t whore_frames_stand[] = +{ + ai_stand, 0.000, whore_talk_think, // frame 0 + ai_stand, 0.000, whore_talk_think, // frame 1 + ai_stand, 0.000, whore_talk_think, // frame 2 + ai_stand, 0.000, whore_talk_think, // frame 3 + ai_stand, 0.000, whore_talk_think, // frame 4 + ai_stand, 0.000, whore_talk_think, // frame 5 + ai_stand, 0.000, whore_talk_think, // frame 6 + ai_stand, 0.000, whore_talk_think, // frame 7 + ai_stand, 0.000, whore_talk_think, // frame 8 + ai_stand, 0.000, whore_talk_think, // frame 9 + ai_stand, 0.000, whore_talk_think, // frame 10 + ai_stand, 0.000, whore_talk_think, // frame 11 + ai_stand, 0.000, whore_talk_think, // frame 12 + ai_stand, 0.000, whore_talk_think, // frame 13 + ai_stand, 0.000, whore_talk_think, // frame 14 + ai_stand, 0.000, whore_talk_think, // frame 15 + ai_stand, 0.000, whore_talk_think, // frame 16 + ai_stand, 0.000, whore_talk_think, // frame 17 + ai_stand, 0.000, whore_talk_think, // frame 18 + ai_stand, 0.000, whore_talk_think, // frame 19 + ai_stand, 0.000, whore_talk_think, // frame 20 + ai_stand, 0.000, whore_talk_think, // frame 21 + ai_stand, 0.000, whore_talk_think, // frame 22 + ai_stand, 0.000, whore_talk_think, // frame 23 + ai_stand, 0.000, whore_talk_think, // frame 24 + ai_stand, 0.000, whore_talk_think, // frame 25 + ai_stand, 0.000, whore_talk_think, // frame 26 + ai_stand, 0.000, whore_talk_think, // frame 27 + +}; +mmove_t whore_move_stand = {FRAME_stand_01, FRAME_stand_28, whore_frames_stand, whore_end_stand}; + +mframe_t whore_frames_tg_shoot[] = +{ + ai_charge, 0.000, whore_firegun, // frame 0 + ai_charge, 0.000, whore_firegun, // frame 1 + ai_charge, 0.000, whore_firegun, // frame 2 + ai_charge, 0.000, whore_firegun, // frame 3 + ai_charge, 0.000, whore_firegun, // frame 4 + ai_charge, 0.000, whore_firegun, // frame 5 + ai_charge, 0.000, whore_firegun, // frame 6 + ai_charge, 0.000, whore_firegun, // frame 7 + ai_charge, 0.000, whore_firegun, // frame 8 + ai_charge, 0.000, whore_firegun, // frame 9 + ai_charge, 0.000, whore_firegun, // frame 10 + ai_charge, 0.000, whore_firegun, // frame 11 + ai_charge, 0.000, whore_firegun, // frame 12 + ai_charge, 0.000, whore_firegun, // frame 13 +}; +mmove_t whore_move_tg_shoot = {FRAME_tg_shoot_01, FRAME_tg_shoot_14, whore_frames_tg_shoot, AI_EndAttack}; + +mframe_t whore_frames_hmg_shoot[] = +{ + ai_charge, 0.000, whore_firehmg, // frame 0 + ai_charge, 0.000, whore_firehmg, // frame 1 + ai_charge, 0.000, whore_firehmg, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, NULL, // frame 4 + ai_charge, 0.000, NULL, // frame 5 + ai_charge, 0.000, NULL, // frame 6 + ai_charge, 0.000, NULL, // frame 7 + ai_charge, 0.000, NULL, // frame 8 + ai_charge, 0.000, NULL, // frame 9 + ai_charge, 0.000, NULL, // frame 10 + ai_charge, 0.000, NULL, // frame 11 + ai_charge, 0.000, NULL, // frame 12 + ai_charge, 0.000, whore_firehmg_delay, // frame 13 +}; +mmove_t whore_move_hmg_shoot = {FRAME_tg_shoot_01, FRAME_tg_shoot_14, whore_frames_hmg_shoot, AI_EndAttack}; + +mframe_t whore_frames_bazooka_shoot[] = +{ + ai_charge, 0.000, whore_firegun, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, NULL, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, NULL, // frame 4 + ai_charge, 0.000, NULL, // frame 5 + ai_charge, 0.000, NULL, // frame 6 + ai_charge, 0.000, NULL, // frame 7 + ai_charge, 0.000, NULL, // frame 8 + ai_charge, 0.000, NULL, // frame 9 + ai_charge, 0.000, NULL, // frame 10 + ai_charge, 0.000, NULL, // frame 11 + ai_charge, 0.000, NULL, // frame 12 + ai_charge, 0.000, whore_bazooka_delay, // frame 13 +}; +mmove_t whore_move_bazooka_shoot = {FRAME_tg_shoot_01, FRAME_tg_shoot_14, whore_frames_bazooka_shoot, AI_EndAttack}; + +mframe_t whore_frames_grenade_shoot[] = +{ + ai_charge, 0.000, whore_firegun, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, NULL, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, NULL, // frame 4 + ai_charge, 0.000, NULL, // frame 5 + ai_charge, 0.000, NULL, // frame 6 + ai_charge, 0.000, NULL, // frame 7 + ai_charge, 0.000, NULL, // frame 8 + ai_charge, 0.000, NULL, // frame 9 + ai_charge, 0.000, NULL, // frame 10 + ai_charge, 0.000, NULL, // frame 11 + ai_charge, 0.000, NULL, // frame 12 + ai_charge, 0.000, NULL, // frame 13 +}; +mmove_t whore_move_grenade_shoot = {FRAME_tg_shoot_01, FRAME_tg_shoot_14, whore_frames_grenade_shoot, AI_EndAttack}; + + +mframe_t whore_frames_flamegun_shoot[] = +{ + ai_charge, 0.000, whore_firegun, // frame 0 + ai_charge, 0.000, whore_firegun, // frame 1 + ai_charge, 0.000, whore_firegun, // frame 2 + ai_charge, 0.000, whore_firegun, // frame 3 + ai_charge, 0.000, whore_firegun, // frame 4 + ai_charge, 0.000, whore_firegun, // frame 5 + ai_charge, 0.000, whore_firegun, // frame 6 + ai_charge, 0.000, whore_firegun, // frame 7 + ai_charge, 0.000, whore_firegun, // frame 8 + ai_charge, 0.000, whore_firegun, // frame 9 + ai_charge, 0.000, whore_firegun, // frame 10 + ai_charge, 0.000, whore_firegun, // frame 11 + ai_charge, 0.000, whore_firegun, // frame 12 + ai_charge, 0.000, whore_firegun, // frame 13 +}; +mmove_t whore_move_flamegun_shoot = {FRAME_tg_shoot_01, FRAME_tg_shoot_14, whore_frames_flamegun_shoot, AI_EndAttack}; + +mframe_t whore_frames_shg_shoot[] = +{ + ai_charge, 0.000, whore_firegun, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, NULL, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, whore_shotgun_reload, // frame 4 + ai_charge, 0.000, NULL, // frame 5 + ai_charge, 0.000, NULL, // frame 6 + ai_charge, 0.000, NULL, // frame 7 + ai_charge, 0.000, NULL, // frame 8 +}; +mmove_t whore_move_shg_shoot = {FRAME_shg_shoot_01, FRAME_shg_shoot_09, whore_frames_shg_shoot, AI_EndAttack}; + +mframe_t whore_frames_tg_reload[] = +{ + ai_charge, 0.000, NULL, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, NULL, // frame 2 + ai_charge, 0.000, NULL, // frame 3 + ai_charge, 0.000, NULL, // frame 4 + ai_charge, 0.000, NULL, // frame 5 + ai_charge, 0.000, NULL, // frame 6 + ai_charge, 0.000, NULL, // frame 7 + ai_charge, 0.000, whore_reload_snd, // frame 8 + ai_charge, 0.000, NULL, // frame 9 + ai_charge, 0.000, NULL, // frame 10 + ai_charge, 0.000, NULL, // frame 11 + ai_charge, 0.000, NULL, // frame 12 + ai_charge, 0.000, NULL, // frame 13 + ai_charge, 0.000, NULL, // frame 14 + ai_charge, 0.000, NULL, // frame 15 + ai_charge, 0.000, NULL, // frame 16 +}; +mmove_t whore_move_tg_reload = {FRAME_tg_reload_01, FRAME_tg_reload_17, whore_frames_tg_reload, AI_EndAttack}; + +mframe_t whore_frames_talk1[] = +{ + ai_stand, 0.000, whore_talk_think, // frame 0 + ai_stand, 0.000, whore_talk_think, // frame 1 + ai_stand, 0.000, whore_talk_think, // frame 2 + ai_stand, 0.000, whore_talk_think, // frame 3 + ai_stand, 0.000, whore_talk_think, // frame 4 + ai_stand, 0.000, whore_talk_think, // frame 5 + ai_stand, 0.000, whore_talk_think, // frame 6 + ai_stand, 0.000, whore_talk_think, // frame 7 + ai_stand, 0.000, whore_talk_think, // frame 8 + ai_stand, 0.000, whore_talk_think, // frame 9 + ai_stand, 0.000, whore_talk_think, // frame 10 + ai_stand, 0.000, whore_talk_think, // frame 11 + ai_stand, 0.000, whore_talk_think, // frame 12 + ai_stand, 0.000, whore_talk_think, // frame 13 + ai_stand, 0.000, whore_talk_think, // frame 14 + ai_stand, 0.000, whore_talk_think, // frame 15 + ai_stand, 0.000, whore_talk_think, // frame 16 +}; +mmove_t whore_move_talk1 = {FRAME_talk1_01, FRAME_talk1_17, whore_frames_talk1, whore_end_stand}; + +mframe_t whore_frames_talk2[] = +{ + ai_stand, 0.000, whore_talk_think, // frame 0 + ai_stand, 0.000, whore_talk_think, // frame 1 + ai_stand, 0.000, whore_talk_think, // frame 2 + ai_stand, 0.000, whore_talk_think, // frame 3 + ai_stand, 0.000, whore_talk_think, // frame 4 + ai_stand, 0.000, whore_talk_think, // frame 5 + ai_stand, 0.000, whore_talk_think, // frame 6 + ai_stand, 0.000, whore_talk_think, // frame 7 + ai_stand, 0.000, whore_talk_think, // frame 8 + ai_stand, 0.000, whore_talk_think, // frame 9 + ai_stand, 0.000, whore_talk_think, // frame 10 + ai_stand, 0.000, whore_talk_think, // frame 11 + ai_stand, 0.000, whore_talk_think, // frame 12 + ai_stand, 0.000, whore_talk_think, // frame 13 + ai_stand, 0.000, whore_talk_think, // frame 14 + ai_stand, 0.000, whore_talk_think, // frame 15 + ai_stand, 0.000, whore_talk_think, // frame 16 + ai_stand, 0.000, whore_talk_think, // frame 17 + ai_stand, 0.000, whore_talk_think, // frame 18 + ai_stand, 0.000, whore_talk_think, // frame 19 + ai_stand, 0.000, whore_talk_think, // frame 20 + ai_stand, 0.000, whore_talk_think, // frame 21 + ai_stand, 0.000, whore_talk_think, // frame 22 + ai_stand, 0.000, whore_talk_think, // frame 23 + ai_stand, 0.000, whore_talk_think, // frame 24 + ai_stand, 0.000, whore_talk_think, // frame 25 + ai_stand, 0.000, whore_talk_think, // frame 26 +}; +mmove_t whore_move_talk2 = {FRAME_talk2_01, FRAME_talk2_27, whore_frames_talk2, whore_end_stand}; + +mframe_t whore_frames_talk3[] = +{ + ai_stand, 0.000, whore_talk_think, // frame 0 + ai_stand, 0.000, whore_talk_think, // frame 1 + ai_stand, 0.000, whore_talk_think, // frame 2 + ai_stand, 0.000, whore_talk_think, // frame 3 + ai_stand, 0.000, whore_talk_think, // frame 4 + ai_stand, 0.000, whore_talk_think, // frame 5 + ai_stand, 0.000, whore_talk_think, // frame 6 + ai_stand, 0.000, whore_talk_think, // frame 7 +}; +mmove_t whore_move_talk3 = {FRAME_talk3_01, FRAME_talk3_08, whore_frames_talk3, whore_end_stand}; + +mframe_t whore_frames_talk4[] = +{ + ai_stand, 0.000, whore_talk_think, // frame 0 + ai_stand, 0.000, whore_talk_think, // frame 1 + ai_stand, 0.000, whore_talk_think, // frame 2 + ai_stand, 0.000, whore_talk_think, // frame 3 + ai_stand, 0.000, whore_talk_think, // frame 4 + ai_stand, 0.000, whore_talk_think, // frame 5 + ai_stand, 0.000, whore_talk_think, // frame 6 + ai_stand, 0.000, whore_talk_think, // frame 7 + ai_stand, 0.000, whore_talk_think, // frame 8 + ai_stand, 0.000, whore_talk_think, // frame 9 + ai_stand, 0.000, whore_talk_think, // frame 10 + ai_stand, 0.000, whore_talk_think, // frame 11 + ai_stand, 0.000, whore_talk_think, // frame 12 + ai_stand, 0.000, whore_talk_think, // frame 13 + ai_stand, 0.000, whore_talk_think, // frame 14 + ai_stand, 0.000, whore_talk_think, // frame 15 + ai_stand, 0.000, whore_talk_think, // frame 16 + ai_stand, 0.000, whore_talk_think, // frame 17 + ai_stand, 0.000, whore_talk_think, // frame 18 + ai_stand, 0.000, whore_talk_think, // frame 19 + ai_stand, 0.000, whore_talk_think, // frame 20 + ai_stand, 0.000, whore_talk_think, // frame 21 + ai_stand, 0.000, whore_talk_think, // frame 22 + ai_stand, 0.000, whore_talk_think, // frame 23 +}; +mmove_t whore_move_talk4 = {FRAME_talk4_01, FRAME_talk4_24, whore_frames_talk4, whore_end_stand}; + +mframe_t whore_frames_talk5[] = +{ + ai_stand, 0.000, whore_talk_think, // frame 0 + ai_stand, 0.000, whore_talk_think, // frame 1 + ai_stand, 0.000, whore_talk_think, // frame 2 + ai_stand, 0.000, whore_talk_think, // frame 3 + ai_stand, 0.000, whore_talk_think, // frame 4 + ai_stand, 0.000, whore_talk_think, // frame 5 + ai_stand, 0.000, whore_talk_think, // frame 6 + ai_stand, 0.000, whore_talk_think, // frame 7 + ai_stand, 0.000, whore_talk_think, // frame 8 + ai_stand, 0.000, whore_talk_think, // frame 9 + ai_stand, 0.000, whore_talk_think, // frame 10 + ai_stand, 0.000, whore_talk_think, // frame 11 + ai_stand, 0.000, whore_talk_think, // frame 12 + ai_stand, 0.000, whore_talk_think, // frame 13 + ai_stand, 0.000, whore_talk_think, // frame 14 + ai_stand, 0.000, whore_talk_think, // frame 15 + ai_stand, 0.000, whore_talk_think, // frame 16 + ai_stand, 0.000, whore_talk_think, // frame 17 + ai_stand, 0.000, whore_talk_think, // frame 18 + ai_stand, 0.000, whore_talk_think, // frame 19 + ai_stand, 0.000, whore_talk_think, // frame 20 +}; +mmove_t whore_move_talk5 = {FRAME_talk5_01, FRAME_talk5_21, whore_frames_talk5, whore_end_stand}; + +/* +mframe_t whore_frames_talk6[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 + ai_stand, 0.000, NULL, // frame 9 + ai_stand, 0.000, NULL, // frame 10 + ai_stand, 0.000, NULL, // frame 11 + ai_stand, 0.000, NULL, // frame 12 + ai_stand, 0.000, NULL, // frame 13 + ai_stand, 0.000, NULL, // frame 14 + ai_stand, 0.000, NULL, // frame 15 + ai_stand, 0.000, NULL, // frame 16 + ai_stand, 0.000, NULL, // frame 17 + ai_stand, 0.000, NULL, // frame 18 + ai_stand, 0.000, NULL, // frame 19 + ai_stand, 0.000, NULL, // frame 20 +}; +mmove_t whore_move_talk6 = {FRAME_talk6_01, FRAME_talk6_21, whore_frames_talk6, whore_end_stand}; +*/ + +mframe_t whore_frames_pain_Rarm[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 +}; +mmove_t whore_move_pain_Rarm = {FRAME_pain_Rarm_01, FRAME_pain_Rarm_07, whore_frames_pain_Rarm, AI_EndAttack}; + +mframe_t whore_frames_pain_Larm[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 +}; +mmove_t whore_move_pain_Larm = {FRAME_pain_Larm_01, FRAME_pain_Larm_06, whore_frames_pain_Larm, AI_EndAttack}; + +mframe_t whore_frames_pain_chest[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 +}; +mmove_t whore_move_pain_chest = {FRAME_pain_chest_01, FRAME_pain_chest_06, whore_frames_pain_chest, AI_EndAttack}; + +mframe_t whore_frames_pain_head[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 +}; +mmove_t whore_move_pain_head = {FRAME_pain_head_01, FRAME_pain_head_06, whore_frames_pain_head, AI_EndAttack}; + +mframe_t whore_frames_pain_Rleg[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t whore_move_pain_Rleg = {FRAME_pain_Rleg_01, FRAME_pain_Rleg_09, whore_frames_pain_Rleg, AI_EndAttack}; + +mframe_t whore_frames_pain_Lleg[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 +}; +mmove_t whore_move_pain_Lleg = {FRAME_pain_Lleg_01, FRAME_pain_Lleg_09, whore_frames_pain_Lleg, AI_EndAttack}; + +mframe_t whore_frames_pain_crch[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 +}; +mmove_t whore_move_pain_crch = {FRAME_pain_crch_01, FRAME_pain_crch_08, whore_frames_pain_crch, AI_EndAttack}; + +mframe_t whore_frames_pain_butt[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 +}; +mmove_t whore_move_pain_butt = {FRAME_pain_butt_01, FRAME_pain_butt_10, whore_frames_pain_butt, AI_EndAttack}; + +mframe_t whore_frames_jump[] = +{ +// ai_stand, 0.000, NULL, // frame 0 +// ai_stand, 0.000, NULL, // frame 1 +// ai_stand, 0.000, NULL, // frame 2 +// ai_stand, 0.000, NULL, // frame 3 +// ai_stand, 0.000, NULL, // frame 4 + + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, AI_CheckStillInair, // frame 7 + NULL, 0.000, NULL, // frame 8 + +// ai_stand, 0.000, NULL, // frame 9 +// ai_stand, 0.000, NULL, // frame 10 +// ai_stand, 0.000, NULL, // frame 11 +}; +mmove_t whore_move_jump = {FRAME_jump_06, FRAME_jump_09, whore_frames_jump, AI_EndJump}; + +mframe_t whore_frames_death1[] = +{ + ai_move, -2.902, NULL, // frame 0 + ai_move, -0.664, NULL, // frame 1 + ai_move,-14.584, NULL, // frame 2 + ai_move,-17.393, NULL, // frame 3 + ai_move,-28.195, NULL, // frame 4 + ai_move, 9.304, NULL, // frame 5 + ai_move, -6.112, NULL, // frame 6 + ai_move, -0.394, NULL, // frame 7 + ai_move, -0.618, NULL, // frame 8 + ai_move, 1.842, NULL, // frame 9 + ai_move, 1.468, NULL, // frame 10 + ai_move, -4.435, NULL, // frame 11 + ai_move, -8.503, NULL, // frame 12 + ai_move, -3.642, NULL, // frame 13 + ai_move, 0.104, NULL, // frame 14 +}; +mmove_t whore_move_death1 = {FRAME_death1_01, FRAME_death1_15, whore_frames_death1, AI_EndDeath}; + +mframe_t whore_frames_death2[] = +{ + ai_move, 0.271, NULL, // frame 0 + ai_move, -1.254, NULL, // frame 1 + ai_move, -7.892, NULL, // frame 2 + ai_move, -21.044, NULL, // frame 3 + ai_move, -10.949, NULL, // frame 4 + ai_move, -19.873, NULL, // frame 5 + ai_move, -6.772, NULL, // frame 6 + ai_move, 1.508, NULL, // frame 7 + ai_move, 2.394, NULL, // frame 8 + ai_move, 4.865, NULL, // frame 9 + ai_move, -3.174, NULL, // frame 10 + ai_move, -0.039, NULL, // frame 11 + ai_move, 0.694, NULL, // frame 12 + ai_move, 0.036, NULL, // frame 13 + ai_move, -0.467, NULL, // frame 14 + ai_move, 0.096, NULL, // frame 15 +}; +mmove_t whore_move_death2 = {FRAME_death2_01, FRAME_death2_16, whore_frames_death2, AI_EndDeath}; + +mframe_t whore_frames_death3[] = +{ + ai_move, 2.578, NULL, // frame 0 + ai_move, 9.487, NULL, // frame 1 + ai_move, 8.104, NULL, // frame 2 + ai_move, 7.801, NULL, // frame 3 + ai_move, 4.730, NULL, // frame 4 + ai_move, 10.007, NULL, // frame 5 + ai_move, 1.971, NULL, // frame 6 + ai_move, 0.830, NULL, // frame 7 + ai_move, -0.488, NULL, // frame 8 + ai_move, 0.076, NULL, // frame 9 + ai_move, 0.033, NULL, // frame 10 + ai_move, -0.045, NULL, // frame 11 + ai_move, -0.006, NULL, // frame 12 + ai_move, 0.017, NULL, // frame 13 + ai_move, -0.006, NULL, // frame 14 + ai_move, 0.002, NULL, // frame 15 +}; +mmove_t whore_move_death3 = {FRAME_death3_01, FRAME_death3_16, whore_frames_death3, AI_EndDeath}; + +mframe_t whore_frames_death4[] = +{ + ai_move, 0.040, NULL, // frame 0 + ai_move, 0.468, NULL, // frame 1 + ai_move, 1.581, NULL, // frame 2 + ai_move, 3.461, NULL, // frame 3 + ai_move, 3.338, NULL, // frame 4 + ai_move, 4.240, NULL, // frame 5 + ai_move, 11.085, NULL, // frame 6 + ai_move, 0.212, NULL, // frame 7 + ai_move, -0.200, NULL, // frame 8 + ai_move, 0.730, NULL, // frame 9 + ai_move, 2.632, NULL, // frame 10 + ai_move, 4.002, NULL, // frame 11 + ai_move, 10.135, NULL, // frame 12 + ai_move, 6.510, NULL, // frame 13 + ai_move, 5.890, NULL, // frame 14 + ai_move, 0.438, NULL, // frame 15 + ai_move, 0.487, NULL, // frame 16 + ai_move, 1.542, NULL, // frame 17 + ai_move, 0.243, NULL, // frame 18 + ai_move, -0.291, NULL, // frame 19 + ai_move, -0.144, NULL, // frame 20 + ai_move, 0.045, NULL, // frame 21 +}; +mmove_t whore_move_death4 = {FRAME_death4_01, FRAME_death4_22, whore_frames_death4, AI_EndDeath}; + +mframe_t whore_frames_death5[] = +{ + ai_move, -0.476, NULL, // frame 0 + ai_move, -15.310, NULL, // frame 1 + ai_move, -5.952, NULL, // frame 2 + ai_move, -7.488, NULL, // frame 3 + ai_move, -18.312, NULL, // frame 4 + ai_move, -2.110, NULL, // frame 5 + ai_move, -11.255, NULL, // frame 6 + ai_move, -1.091, NULL, // frame 7 + ai_move, 0.135, NULL, // frame 8 + ai_move, -0.201, NULL, // frame 9 + ai_move, -0.217, NULL, // frame 10 + ai_move, 0.002, NULL, // frame 11 + ai_move, 0.008, NULL, // frame 12 + ai_move, 0.008, NULL, // frame 13 + ai_move, 0.008, NULL, // frame 14 + ai_move, 0.008, NULL, // frame 15 + ai_move, 0.008, NULL, // frame 16 + ai_move, 0.008, NULL, // frame 17 + ai_move, 0.008, NULL, // frame 18 + ai_move, 0.008, NULL, // frame 19 + ai_move, 0.008, NULL, // frame 20 + ai_move, 0.008, NULL, // frame 21 + ai_move, 0.008, NULL, // frame 22 + ai_move, 0.008, NULL, // frame 23 + ai_move, 0.008, NULL, // frame 24 + ai_move, 0.008, NULL, // frame 25 + ai_move, 0.008, NULL, // frame 26 + ai_move, 0.008, NULL, // frame 27 + ai_move, 0.008, NULL, // frame 28 + ai_move, 0.008, NULL, // frame 29 + ai_move, 0.008, NULL, // frame 30 + ai_move, 0.008, NULL, // frame 31 + ai_move, 0.008, NULL, // frame 32 +}; +mmove_t whore_move_death5 = {FRAME_death5_01, FRAME_death5_33, whore_frames_death4, AI_EndDeath}; + +mframe_t whore_frames_crh_shuf[] = +{ + ai_run, 5.383, NULL, // frame 0 + ai_run, 5.466, NULL, // frame 1 + ai_run, 3.693, NULL, // frame 2 + ai_run, 5.865, NULL, // frame 3 + ai_run, 13.852, NULL, // frame 4 + ai_run, 6.698, NULL, // frame 5 + ai_run, 3.743, NULL, // frame 6 + ai_run, 3.743, NULL, // frame 7 + ai_run, 3.743, NULL, // frame 8 + ai_run, 3.743, NULL, // frame 9 + ai_run, 3.743, NULL, // frame 10 + ai_run, 3.743, NULL, // frame 11 + ai_run, 3.743, NULL, // frame 12 + ai_run, 3.743, NULL, // frame 13 +}; +mmove_t whore_move_crh_shuf = {FRAME_crouch_walk_01, FRAME_crouch_walk_14, whore_frames_crh_shuf, NULL}; + +mframe_t whore_frames_crouch_walk[] = +{ + ai_run, 5.383, NULL, // frame 0 + ai_run, 5.466, NULL, // frame 1 + ai_run, 3.693, NULL, // frame 2 + ai_run, 5.865, NULL, // frame 3 + ai_run, 13.852, NULL, // frame 4 + ai_run, 6.698, NULL, // frame 5 + ai_run, 3.743, NULL, // frame 6 + ai_run, 3.743, NULL, // frame 7 + ai_run, 3.743, NULL, // frame 8 + ai_run, 3.743, NULL, // frame 9 + ai_run, 3.743, NULL, // frame 10 + ai_run, 3.743, NULL, // frame 11 + ai_run, 3.743, NULL, // frame 12 + ai_run, 3.743, NULL, // frame 13 +}; +mmove_t whore_move_crouch_walk = {FRAME_crouch_walk_01, FRAME_crouch_walk_14, whore_frames_crouch_walk, NULL}; + +mframe_t whore_frames_crouch_painC[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 +}; +mmove_t whore_move_crouch_painC = {FRAME_crouch_painC_01, FRAME_crouch_painC_10, whore_frames_crouch_painC, AI_EndAttack}; + +mframe_t whore_frames_crouch_painL[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 +}; +mmove_t whore_move_crouch_painL = {FRAME_crouch_painL_01, FRAME_crouch_painL_11, whore_frames_crouch_painL, AI_EndAttack}; + +mframe_t whore_frames_crouch_painR[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 +}; +mmove_t whore_move_crouch_painR = {FRAME_crouch_painR_01, FRAME_crouch_painR_11, whore_frames_crouch_painR, AI_EndAttack}; + +mframe_t whore_frames_crouch_shoot[] = +{ + ai_turn, 0.000, whore_firegun, // frame 0 + ai_turn, 0.000, whore_firegun_cr, // frame 1 + ai_turn, 0.000, whore_firegun_cr, // frame 2 + ai_turn, 0.000, whore_firegun_cr, // frame 3 + ai_turn, 0.000, whore_firegun_cr, // frame 4 + ai_turn, 0.000, whore_firegun_cr, // frame 5 + ai_turn, 0.000, whore_firegun_cr, // frame 6 + ai_turn, 0.000, whore_firegun_cr, // frame 7 + ai_turn, 0.000, whore_firegun_cr, // frame 8 + ai_turn, 0.000, whore_firegun_cr, // frame 9 + ai_turn, 0.000, whore_firegun_cr, // frame 10 + ai_turn, 0.000, whore_firegun_cr, // frame 11 + ai_turn, 0.000, whore_firegun_cr, // frame 12 + ai_turn, 0.000, whore_firegun_cr, // frame 13 + ai_turn, 0.000, whore_firegun_cr, // frame 14 + ai_turn, 0.000, whore_firegun_cr, // frame 15 + ai_turn, 0.000, whore_firegun_cr, // frame 16 +}; +mmove_t whore_move_crouch_shoot = {FRAME_crouch_shoot_01, FRAME_crouch_shoot_17, whore_frames_crouch_shoot, AI_EndAttack}; + +mframe_t whore_frames_crch_shg_sht[] = +{ + ai_turn, 0.000, whore_firegun, // frame 0 + ai_turn, 0.000, NULL, // frame 1 + ai_turn, 0.000, NULL, // frame 2 + ai_turn, 0.000, NULL, // frame 3 + ai_turn, 0.000, NULL, // frame 4 + ai_turn, 0.000, whore_shotgun_reload, // frame 5 + ai_turn, 0.000, NULL, // frame 6 + ai_turn, 0.000, NULL, // frame 7 + ai_turn, 0.000, NULL, // frame 8 + ai_turn, 0.000, NULL, // frame 9 + ai_turn, 0.000, NULL, // frame 10 + +}; +mmove_t whore_move_crch_shg_sht = {FRAME_crch_shg_sht_01, FRAME_crch_shg_sht_11, whore_frames_crch_shg_sht, AI_EndAttack}; + +mframe_t whore_frames_crouch_stand_down[] = +{ +// NULL, 0.000, NULL, // frame 0 +// NULL, 0.000, NULL, // frame 1 +// NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 +// NULL, 0.000, NULL, // frame 7 +// NULL, 0.000, NULL, // frame 8 +// NULL, 0.000, NULL, // frame 9 +// NULL, 0.000, NULL, // frame 10 +}; +mmove_t whore_move_crouch_stand_down = {FRAME_stand_crouch_04, FRAME_stand_crouch_07, whore_frames_crouch_stand_down, AI_End_CrouchStand_Down}; + +mframe_t whore_frames_crouch_stand_up[] = +{ +// NULL, 0.000, NULL, // frame 0 +// NULL, 0.000, NULL, // frame 1 +// NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 +// NULL, 0.000, NULL, // frame 7 +// NULL, 0.000, NULL, // frame 8 +// NULL, 0.000, NULL, // frame 9 +// NULL, 0.000, NULL, // frame 10 +}; +mmove_t whore_move_crouch_stand_up = {FRAME_stand_crouch_07, FRAME_stand_crouch_04, whore_frames_crouch_stand_up, AI_End_CrouchStand_Up}; + +mframe_t whore_frames_crch_astand[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 + ai_stand, 0.000, NULL, // frame 9 + ai_stand, 0.000, NULL, // frame 10 + ai_stand, 0.000, NULL, // frame 11 + ai_stand, 0.000, NULL, // frame 12 + ai_stand, 0.000, NULL, // frame 13 + ai_stand, 0.000, NULL, // frame 14 + ai_stand, 0.000, NULL, // frame 15 + ai_stand, 0.000, NULL, // frame 16 + ai_stand, 0.000, NULL, // frame 17 + ai_stand, 0.000, NULL, // frame 18 + ai_stand, 0.000, NULL, // frame 19 + ai_stand, 0.000, NULL, // frame 20 + ai_stand, 0.000, NULL, // frame 21 + ai_stand, 0.000, NULL, // frame 22 + ai_stand, 0.000, NULL, // frame 23 + ai_stand, 0.000, NULL, // frame 24 + ai_stand, 0.000, NULL, // frame 25 + ai_stand, 0.000, NULL, // frame 26 + ai_stand, 0.000, NULL, // frame 27 + ai_stand, 0.000, NULL, // frame 28 + ai_stand, 0.000, NULL, // frame 29 +}; +mmove_t whore_move_crch_astand = {FRAME_crch_astand_01, FRAME_crch_astand_30, whore_frames_crch_astand, NULL}; + +mframe_t whore_frames_crouch_death1[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 + ai_move, 0.000, NULL, // frame 12 + ai_move, 0.000, NULL, // frame 13 + ai_move, 0.000, NULL, // frame 14 + ai_move, 0.000, NULL, // frame 15 +}; +mmove_t whore_move_crouch_death1 = {FRAME_crch_death1_01, FRAME_crch_death1_16, whore_frames_crouch_death1, AI_EndDeath}; + +mframe_t whore_frames_crouch_death2[] = +{ + ai_move, 0.000, NULL, // frame 0 + ai_move, 0.000, NULL, // frame 1 + ai_move, 0.000, NULL, // frame 2 + ai_move, 0.000, NULL, // frame 3 + ai_move, 0.000, NULL, // frame 4 + ai_move, 0.000, NULL, // frame 5 + ai_move, 0.000, NULL, // frame 6 + ai_move, 0.000, NULL, // frame 7 + ai_move, 0.000, NULL, // frame 8 + ai_move, 0.000, NULL, // frame 9 + ai_move, 0.000, NULL, // frame 10 + ai_move, 0.000, NULL, // frame 11 + ai_move, 0.000, NULL, // frame 12 + ai_move, 0.000, NULL, // frame 13 + ai_move, 0.000, NULL, // frame 14 + ai_move, 0.000, NULL, // frame 15 + ai_move, 0.000, NULL, // frame 16 + ai_move, 0.000, NULL, // frame 17 + ai_move, 0.000, NULL, // frame 18 + ai_move, 0.000, NULL, // frame 19 + ai_move, 0.000, NULL, // frame 20 + ai_move, 0.000, NULL, // frame 21 + ai_move, 0.000, NULL, // frame 22 +}; +mmove_t whore_move_crouch_death2 = {FRAME_crch_death2_01, FRAME_crch_death2_23, whore_frames_crouch_death2, AI_EndDeath}; + +/* +mframe_t whore_frames_st_clmb[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 +}; +mmove_t whore_move_st_clmb = {FRAME_st_clmb_01, FRAME_st_clmb_02, whore_frames_st_clmb, NULL}; +*/ + +mframe_t whore_frames_clmb_loop[] = +{ + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 7 + NULL, 0.000, NULL, // frame 8 + NULL, 0.000, NULL, // frame 9 + NULL, 0.000, NULL, // frame 10 +}; +mmove_t whore_move_clmb_loop = {FRAME_clmb_loop_01, FRAME_clmb_loop_11, whore_frames_clmb_loop, AI_CheckStillClimbingLadder}; + +mframe_t whore_frames_clmb_over[] = +{ +// NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + NULL, 0.000, NULL, // frame 4 + NULL, 0.000, NULL, // frame 5 + NULL, 0.000, NULL, // frame 6 + NULL, 0.000, NULL, // frame 7 + NULL, 0.000, NULL, // frame 8 + NULL, 0.000, NULL, // frame 9 +// NULL, 0.000, NULL, // frame 10 +// NULL, 0.000, NULL, // frame 11 +// NULL, 0.000, NULL, // frame 12 +// NULL, 0.000, NULL, // frame 13 +// NULL, 0.000, NULL, // frame 14 +}; +mmove_t whore_move_clmb_over = {FRAME_clmb_over_02, FRAME_clmb_over_10, whore_frames_clmb_over, AI_EndJump}; + +/* +mframe_t whore_frames_lside_step[] = +{ + ai_sidestep, 0.215, NULL, // frame 0 + ai_sidestep, 0.721, NULL, // frame 1 + ai_sidestep, 2.871, NULL, // frame 2 + ai_sidestep, 4.372, NULL, // frame 3 + ai_sidestep, 2.453, NULL, // frame 4 + ai_sidestep, 2.358, NULL, // frame 5 + ai_sidestep, -0.671, NULL, // frame 6 +}; +mmove_t whore_move_lside_step = {FRAME_lside_step_01, FRAME_lside_step_07, whore_frames_lside_step, NULL}; + +mframe_t whore_frames_rside_step[] = +{ + ai_sidestep, 0.676, NULL, // frame 0 + ai_sidestep, -0.261, NULL, // frame 1 + ai_sidestep, -1.790, NULL, // frame 2 + ai_sidestep, -1.300, NULL, // frame 3 + ai_sidestep, -2.096, NULL, // frame 4 + ai_sidestep, -3.586, NULL, // frame 5 + ai_sidestep, -3.024, NULL, // frame 6 +}; +mmove_t whore_move_rside_step = {FRAME_rside_step_01, FRAME_rside_step_07, whore_frames_rside_step, NULL}; +*/ + +mframe_t whore_frames_lside_step[] = +{ + ai_sidestep, -0.215, NULL, // frame 0 + ai_sidestep, -0.721, NULL, // frame 1 + ai_sidestep, -2.871, NULL, // frame 2 + ai_sidestep, -4.372, NULL, // frame 3 + ai_sidestep, -2.453, NULL, // frame 4 + ai_sidestep, -2.358, NULL, // frame 5 + ai_sidestep, 0.671, NULL, // frame 6 +}; +mmove_t whore_move_lside_step = {FRAME_lside_step_01, FRAME_lside_step_07, whore_frames_lside_step, AI_EndAttack}; + +/* +mframe_t whore_frames_rside_step[] = +{ + ai_sidestep, -0.676, NULL, // frame 0 + ai_sidestep, 0.261, NULL, // frame 1 + ai_sidestep, 1.790, NULL, // frame 2 + ai_sidestep, 1.300, NULL, // frame 3 + ai_sidestep, 2.096, NULL, // frame 4 + ai_sidestep, 3.586, NULL, // frame 5 + ai_sidestep, 3.024, NULL, // frame 6 +}; +mmove_t whore_move_rside_step = {FRAME_rside_step_01, FRAME_rside_step_07, whore_frames_rside_step, AI_EndAttack}; +*/ + +mframe_t whore_frames_walk_nw[] = +{ + ai_run, 16.781, NULL, // frame 0 + ai_run, 14.098, NULL, // frame 1 + ai_run, 7.220, NULL, // frame 2 + ai_run, 1.106, NULL, // frame 3 + ai_run, -0.983, NULL, // frame 4 + ai_run, -0.107, NULL, // frame 5 + ai_run, 5.744, NULL, // frame 6 + ai_run, 5.101, NULL, // frame 7 + ai_run, 3.955, NULL, // frame 8 + ai_run, 6.993, NULL, // frame 9 + ai_run, 5.951, NULL, // frame 10 +}; +mmove_t whore_move_walk_nw = {FRAME_walk_nw_01, FRAME_walk_nw_11, whore_frames_walk_nw, AI_EndRun}; + +mframe_t whore_frames_walk_tg_sht[] = +{ + ai_turn, 11.306, whore_firegun, // frame 0 + ai_turn, 6.486, whore_firegun, // frame 1 + ai_turn, 6.159, whore_firegun, // frame 2 + ai_turn, 9.146, whore_firegun, // frame 3 + ai_turn, 9.527, whore_firegun, // frame 4 + ai_turn, 8.850, whore_firegun, // frame 5 + ai_turn, 8.214, whore_firegun, // frame 6 + ai_turn, 6.377, whore_firegun, // frame 7 + ai_turn, 5.029, whore_firegun, // frame 8 + ai_turn, 5.740, whore_firegun, // frame 9 +}; +mmove_t whore_move_walk_tg_sht = {FRAME_walk_tg_sht_01, FRAME_walk_tg_sht_10, whore_frames_walk_tg_sht, AI_EndAttack}; + +mframe_t whore_frames_walk_hmg_sht[] = +{ + ai_turn, 11.306, whore_firehmg, // frame 0 + ai_turn, 6.486, whore_firehmg, // frame 1 + ai_turn, 6.159, whore_firehmg, // frame 2 + ai_turn, 9.146, NULL, // frame 3 + ai_turn, 9.527, NULL, // frame 4 + ai_turn, 8.850, NULL, // frame 5 + ai_turn, 8.214, NULL, // frame 6 + ai_turn, 6.377, NULL, // frame 7 + ai_turn, 5.029, NULL, // frame 8 + ai_turn, 5.740, whore_firehmg_delay, // frame 9 +}; +mmove_t whore_move_walk_hmg_sht = {FRAME_walk_tg_sht_01, FRAME_walk_tg_sht_10, whore_frames_walk_hmg_sht, AI_EndAttack}; + +mframe_t whore_frames_walk_bazooka_sht[] = +{ + ai_turn, 11.306, whore_firegun, // frame 0 + ai_turn, 6.486, NULL, // frame 1 + ai_turn, 6.159, NULL, // frame 2 + ai_turn, 9.146, NULL, // frame 3 + ai_turn, 9.527, NULL, // frame 4 + ai_turn, 8.850, NULL, // frame 5 + ai_turn, 8.214, NULL, // frame 6 + ai_turn, 6.377, NULL, // frame 7 + ai_turn, 5.029, NULL, // frame 8 + ai_turn, 5.740, whore_bazooka_delay, // frame 9 +}; +mmove_t whore_move_walk_bazooka_sht = {FRAME_walk_tg_sht_01, FRAME_walk_tg_sht_10, whore_frames_walk_bazooka_sht, AI_EndAttack}; + +mframe_t whore_frames_walk_grenade_sht[] = +{ + ai_turn, 11.306, whore_firegun, // frame 0 + ai_turn, 6.486, NULL, // frame 1 + ai_turn, 6.159, NULL, // frame 2 + ai_turn, 9.146, NULL, // frame 3 + ai_turn, 9.527, NULL, // frame 4 + ai_turn, 8.850, NULL, // frame 5 + ai_turn, 8.214, NULL, // frame 6 + ai_turn, 6.377, NULL, // frame 7 + ai_turn, 5.029, NULL, // frame 8 + ai_turn, 5.740, NULL, // frame 9 +}; +mmove_t whore_move_walk_grenade_sht = {FRAME_walk_tg_sht_01, FRAME_walk_tg_sht_10, whore_frames_walk_grenade_sht, AI_EndAttack}; + +mframe_t whore_frames_walk_flamegun_sht[] = +{ + ai_turn, 11.306, whore_firegun, // frame 0 + ai_turn, 6.486, whore_firegun, // frame 1 + ai_turn, 6.159, whore_firegun, // frame 2 + ai_turn, 9.146, whore_firegun, // frame 3 + ai_turn, 9.527, whore_firegun, // frame 4 + ai_turn, 8.850, whore_firegun, // frame 5 + ai_turn, 8.214, whore_firegun, // frame 6 + ai_turn, 6.377, whore_firegun, // frame 7 + ai_turn, 5.029, whore_firegun, // frame 8 + ai_turn, 5.740, whore_firegun, // frame 9 +}; +mmove_t whore_move_walk_flamegun_sht = {FRAME_walk_tg_sht_01, FRAME_walk_tg_sht_10, whore_frames_walk_flamegun_sht, AI_EndAttack}; + + +mframe_t whore_frames_walk_shg_sht[] = +{ + ai_turn, 13.194, whore_firegun, // frame 0 + ai_turn, 3.697, NULL, // frame 1 + ai_turn, 9.794, NULL, // frame 2 + ai_turn, 9.688, NULL, // frame 3 + ai_turn, 8.709, NULL, // frame 4 + ai_turn, 9.221, whore_shotgun_reload, // frame 5 + ai_turn, 7.405, NULL, // frame 6 + ai_turn, 7.594, NULL, // frame 7 + ai_turn, 2.303, NULL, // frame 8 + ai_turn, 5.228, NULL, // frame 9 +}; +mmove_t whore_move_walk_shg_sht = {FRAME_walk_shg_sht_01, FRAME_walk_shg_sht_10, whore_frames_walk_shg_sht, AI_EndAttack}; + +mframe_t whore_frames_walk_gdown[] = +{ + ai_run, 3.636, NULL, // frame 0 + ai_run, 6.504, NULL, // frame 1 + ai_run, 3.111, NULL, // frame 2 + ai_run, 4.200, NULL, // frame 3 + ai_run, 8.913, NULL, // frame 4 + ai_run, 7.640, NULL, // frame 5 + ai_run, 11.360, NULL, // frame 6 + ai_run, 4.233, NULL, // frame 7 + ai_run, 12.047, NULL, // frame 8 + ai_run, 10.356, NULL, // frame 9 +}; +mmove_t whore_move_walk_gdown = {FRAME_walk_gdown_01, FRAME_walk_gdown_10, whore_frames_walk_gdown, NULL}; + +mframe_t whore_frames_run_nw[] = +{ + ai_run, 1.956, NULL, // frame 0 + ai_run, 15.182, NULL, // frame 1 + ai_run, 3.415, NULL, // frame 2 + ai_run, 15.985, NULL, // frame 3 + ai_run, 39.101, NULL, // frame 4 + ai_run, 7.988, NULL, // frame 5 + ai_run, 24.122, NULL, // frame 6 +}; +mmove_t whore_move_run_nw = {FRAME_run_nw_01, FRAME_run_nw_07, whore_frames_run_nw, AI_EndRun}; + +mframe_t whore_frames_run_tg_sht[] = +{ + ai_charge, 0.000, whore_firegun, // frame 0 + ai_charge, 18.721, NULL, // frame 1 + ai_charge, 11.416, whore_firegun, // frame 2 + ai_charge, 22.838, NULL, // frame 3 + ai_charge, 19.254, whore_firegun, // frame 4 + ai_charge, 14.931, NULL, // frame 5 + ai_charge, 24.714, whore_firegun, // frame 6 +}; +mmove_t whore_move_run_tg_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_07, whore_frames_run_tg_sht, AI_EndAttack}; + +mframe_t whore_frames_run_reverse_tg_sht[] = +{ + ai_charge,- 24.714, NULL, // frame 0 + ai_charge,- 14.931, whore_firegun, // frame 5 + ai_charge,- 19.254, NULL, // frame 4 + ai_charge,- 22.838, whore_firegun, // frame 3 + ai_charge,- 11.416, NULL, // frame 2 + ai_charge,- 18.721, whore_firegun, // frame 1 + ai_charge, 0.0, NULL, // frame 0 + +}; +mmove_t whore_move_run_reverse_tg_sht = {FRAME_run_tg_sht_07, FRAME_run_tg_sht_01, whore_frames_run_reverse_tg_sht, AI_EndAttack}; + + +mframe_t whore_frames_run_hmg_sht[] = +{ + ai_charge, 0.000, whore_firehmg, // frame 0 + ai_charge, 18.721, whore_firehmg, // frame 1 + ai_charge, 11.416, whore_firehmg, // frame 2 + ai_charge, 22.838, NULL, // frame 3 + ai_charge, 19.254, NULL, // frame 4 + ai_charge, 14.931, NULL, // frame 5 + ai_charge, 24.714, whore_firehmg_delay, +}; +mmove_t whore_move_run_hmg_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_07, whore_frames_run_hmg_sht, AI_EndAttack}; + +mframe_t whore_frames_run_reverse_hmg_sht[] = +{ + ai_charge,- 24.714, whore_firehmg, + ai_charge,- 14.931, whore_firehmg, // frame 5 + ai_charge,- 19.254, whore_firehmg, // frame 4 + ai_charge,- 22.838, NULL, // frame 3 + ai_charge,- 11.416, NULL, // frame 2 + ai_charge,- 18.721, NULL, // frame 1 + ai_charge, 0.0, NULL, // frame 0 +}; +mmove_t whore_move_run_reverse_hmg_sht = {FRAME_run_tg_sht_07, FRAME_run_tg_sht_01, whore_frames_run_reverse_hmg_sht, AI_EndAttack}; + + +mframe_t whore_frames_run_bazooka_sht[] = +{ + ai_charge, 0.000, whore_firegun, // frame 0 + ai_charge, 18.721, NULL, // frame 1 + ai_charge, 11.416, NULL, // frame 2 + ai_charge, 22.838, NULL, // frame 3 + ai_charge, 19.254, NULL, // frame 4 + ai_charge, 14.931, NULL, // frame 5 + ai_charge, 24.714, whore_bazooka_delay, // frame 6 +}; +mmove_t whore_move_run_bazooka_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_07, whore_frames_run_bazooka_sht, AI_EndAttack}; + +mframe_t whore_frames_run_reverse_bazooka_sht[] = +{ + ai_charge,- 24.714, whore_firegun, // frame 5 + ai_charge,- 14.931, NULL, // frame 5 + ai_charge,- 19.254, NULL, // frame 4 + ai_charge,- 22.838, NULL, // frame 3 + ai_charge,- 11.416, NULL, // frame 2 + ai_charge,- 18.721, NULL, // frame 1 + ai_charge, 0.0, NULL, // frame 0 +}; +mmove_t whore_move_run_reverse_bazooka_sht = {FRAME_run_tg_sht_07, FRAME_run_tg_sht_01, whore_frames_run_reverse_bazooka_sht, AI_EndAttack}; + + +mframe_t whore_frames_run_grenade_sht[] = +{ + ai_charge, 0.000, whore_firegun, // frame 0 + ai_charge, 18.721, NULL, // frame 1 + ai_charge, 11.416, NULL, // frame 2 + ai_charge, 22.838, NULL, // frame 3 + ai_charge, 19.254, NULL, // frame 4 + ai_charge, 14.931, NULL, // frame 5 + ai_charge, 24.714, NULL, // frame 6 +}; +mmove_t whore_move_run_grenade_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_07, whore_frames_run_grenade_sht, AI_EndAttack}; + +mframe_t whore_frames_run_reverse_grenade_sht[] = +{ + ai_charge,- 24.714, whore_firegun, // frame 5 + ai_charge,- 14.931, NULL, // frame 5 + ai_charge,- 19.254, NULL, // frame 4 + ai_charge,- 22.838, NULL, // frame 3 + ai_charge,- 11.416, NULL, // frame 2 + ai_charge,- 18.721, NULL, // frame 1 + ai_charge, 0.0, NULL, // frame 0 +}; +mmove_t whore_move_run_reverse_grenade_sht = {FRAME_run_tg_sht_07, FRAME_run_tg_sht_01, whore_frames_run_reverse_grenade_sht, AI_EndAttack}; + + +mframe_t whore_frames_run_flamegun_sht[] = +{ + ai_charge, 27.656, whore_firegun, // frame 0 + ai_charge, 17.929, whore_firegun, // frame 1 + ai_charge, 33.470, whore_firegun, // frame 2 + ai_charge, 37.084, whore_firegun, // frame 3 + ai_charge, 31.857, whore_firegun, // frame 4 + ai_charge, 24.969, whore_firegun, // frame 5 +}; +mmove_t whore_move_run_flamegun_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, whore_frames_run_flamegun_sht, AI_EndAttack}; + +mframe_t whore_frames_run_reverse_flamegun_sht[] = +{ + ai_charge,- 24.969, whore_firegun, // frame 5 + ai_charge,- 31.857, whore_firegun, // frame 4 + ai_charge,- 37.084, whore_firegun, // frame 3 + ai_charge,- 33.470, whore_firegun, // frame 2 + ai_charge,- 17.929, whore_firegun, // frame 1 + ai_charge,- 27.656, whore_firegun, // frame 0 +}; +mmove_t whore_move_run_reverse_flamegun_sht = {FRAME_run_tg_sht_01, FRAME_run_tg_sht_06, whore_frames_run_reverse_flamegun_sht, AI_EndAttack}; + + +mframe_t whore_frames_run_shg_sht[] = +{ + ai_charge, 0.000, whore_firegun, // frame 0 + ai_charge, 15.902, NULL, // frame 1 + ai_charge, 14.235, NULL, // frame 2 + ai_charge, 17.221, whore_shotgun_reload, // frame 3 + ai_charge, 19.659, NULL, // frame 4 + ai_charge, 18.310, NULL, // frame 5 + ai_charge, 26.546, NULL +}; +mmove_t whore_move_run_shg_sht = {FRAME_run_shg_sht_01, FRAME_run_shg_sht_07, whore_frames_run_shg_sht, AI_EndAttack}; + +mframe_t whore_frames_run_gun_down[] = +{ + ai_run, 1.956, NULL, // frame 0 + ai_run, 15.182, NULL, // frame 1 + ai_run, 3.415, NULL, // frame 2 + ai_run, 15.985, NULL, // frame 3 + ai_run, 39.101, NULL, // frame 4 + ai_run, 7.988, NULL, // frame 5 + ai_run, 24.122, NULL, // frame 6 +}; +mmove_t whore_move_run_gun_down = {FRAME_run_gun_down_01, FRAME_run_gun_down_07, whore_frames_run_gun_down, AI_EndRun}; + +mframe_t whore_frames_run_on_fire[] = +{ + ai_onfire_run, 8.376, NULL, // frame 0 + ai_onfire_run, 20.175, NULL, // frame 1 + ai_onfire_run, 1.329, NULL, // frame 2 + ai_onfire_run, 31.146, NULL, // frame 3 + ai_onfire_run, 24.144, NULL, // frame 4 + ai_onfire_run, 8.606, NULL, // frame 5 + ai_onfire_run, 19.366, NULL, // frame 6 + ai_onfire_run, 17.079, NULL, // frame 7 + ai_onfire_run, 9.276, NULL, // frame 8 + ai_onfire_run, 25.777, NULL, // frame 9 + ai_onfire_run, 22.222, NULL, // frame 10 + ai_onfire_run, 12.728, NULL, // frame 11 + ai_onfire_run, 24.948, NULL, // frame 12 +}; +mmove_t whore_move_run_on_fire = {FRAME_run_on_fire_01, FRAME_run_on_fire_13, whore_frames_run_on_fire, NULL}; + +mframe_t whore_frames_lsd_tg_run[] = +{ + ai_sidestep, 0.000, whore_firegun_left, // frame 0 + ai_sidestep,-15.496, whore_firegun_left, // frame 1 + ai_sidestep,-19.304, whore_firegun_left, // frame 2 + ai_sidestep,-15.863, whore_firegun_left, // frame 3 + ai_sidestep,-22.482, whore_firegun_left, // frame 4 + ai_sidestep,-17.608, whore_firegun_left, // frame 5 + ai_sidestep,-18.113, whore_firegun_left, // frame 6 + +}; +mmove_t whore_move_lsd_tg_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_07, whore_frames_lsd_tg_run, NULL}; + +mframe_t whore_frames_rsd_tg_run[] = +{ + ai_sidestep, 0.000, whore_firegun_right, // frame 0 + ai_sidestep,22.407, whore_firegun_right, // frame 1 + ai_sidestep,17.900, whore_firegun_right, // frame 2 + ai_sidestep,14.898, whore_firegun_right, // frame 3 + ai_sidestep,18.887, whore_firegun_right, // frame 4 + ai_sidestep,17.189, whore_firegun_right, // frame 5 + ai_sidestep,17.301, whore_firegun_right, // frame 6 +}; +mmove_t whore_move_rsd_tg_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_07, whore_frames_rsd_tg_run, NULL}; + +/* +mframe_t whore_frames_lsd_hmg_run[] = +{ + ai_sidestep,- 23.733*0.75, whore_firegun_left, // frame 0 + ai_sidestep,- 18.601*0.75, NULL, // frame 1 + ai_sidestep,- 31.336*0.75, whore_firegun, // frame 2 + ai_sidestep,- 39.244*0.75, NULL, // frame 3 + ai_sidestep,- 26.961*0.75, whore_firegun, // frame 4 + ai_sidestep,- 23.858*0.75, NULL, // frame 5 +}; +mmove_t whore_move_lsd_hmg_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_06, whore_frames_lsd_hmg_run, NULL}; + +mframe_t whore_frames_rsd_hmg_run[] = +{ + ai_sidestep, 19.829*0.75, whore_firegun_right, // frame 0 + ai_sidestep, 17.364*0.75, NULL, // frame 1 + ai_sidestep, 32.611*0.75, whore_firegun, // frame 2 + ai_sidestep, 37.973*0.75, NULL, // frame 3 + ai_sidestep, 32.279*0.75, whore_firegun, // frame 4 + ai_sidestep, 24.741*0.75, NULL, // frame 5 +}; +mmove_t whore_move_rsd_hmg_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_06, whore_frames_rsd_hmg_run, NULL}; +*/ + +mframe_t whore_frames_lsd_bazooka_run[] = +{ + ai_sidestep, 0.000, whore_firegun_left, // frame 0 + ai_sidestep,-15.496, NULL, // frame 1 + ai_sidestep,-19.304, NULL, // frame 2 + ai_sidestep,-15.863, NULL, // frame 3 + ai_sidestep,-22.482, NULL, // frame 4 + ai_sidestep,-17.608, NULL, // frame 5 + ai_sidestep,-18.113, NULL, // frame 6 +}; +mmove_t whore_move_lsd_bazooka_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_07, whore_frames_lsd_bazooka_run, NULL}; + +mframe_t whore_frames_rsd_bazooka_run[] = +{ + ai_sidestep, 0.000, whore_firegun_right, // frame 0 + ai_sidestep,22.407, NULL, // frame 1 + ai_sidestep,17.900, NULL, // frame 2 + ai_sidestep,14.898, NULL, // frame 3 + ai_sidestep,18.887, NULL, // frame 4 + ai_sidestep,17.189, NULL, // frame 5 + ai_sidestep,17.301, NULL, // frame 6 +}; +mmove_t whore_move_rsd_bazooka_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_07, whore_frames_rsd_bazooka_run, NULL}; + + +mframe_t whore_frames_lsd_grenade_run[] = +{ + ai_sidestep, 0.000, whore_firegun_left, // frame 0 + ai_sidestep,-15.496, NULL, // frame 1 + ai_sidestep,-19.304, NULL, // frame 2 + ai_sidestep,-15.863, NULL, // frame 3 + ai_sidestep,-22.482, NULL, // frame 4 + ai_sidestep,-17.608, NULL, // frame 5 + ai_sidestep,-18.113, NULL, // frame 6 +}; +mmove_t whore_move_lsd_grenade_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_07, whore_frames_lsd_grenade_run, NULL}; + +mframe_t whore_frames_rsd_grenade_run[] = +{ + ai_sidestep, 0.000, whore_firegun_right, // frame 0 + ai_sidestep,22.407, NULL, // frame 1 + ai_sidestep,17.900, NULL, // frame 2 + ai_sidestep,14.898, NULL, // frame 3 + ai_sidestep,18.887, NULL, // frame 4 + ai_sidestep,17.189, NULL, // frame 5 + ai_sidestep,17.301, NULL, // frame 6 +}; +mmove_t whore_move_rsd_grenade_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_07, whore_frames_rsd_grenade_run, NULL}; + + +mframe_t whore_frames_lsd_flamegun_run[] = +{ + ai_sidestep, 0.000, whore_firegun_left, // frame 0 + ai_sidestep,-15.496, whore_firegun_left, // frame 1 + ai_sidestep,-19.304, whore_firegun_left, // frame 2 + ai_sidestep,-15.863, whore_firegun_left, // frame 3 + ai_sidestep,-22.482, whore_firegun_left, // frame 4 + ai_sidestep,-17.608, whore_firegun_left, // frame 5 + ai_sidestep,-18.113, whore_firegun_left, // frame 6 +}; +mmove_t whore_move_lsd_flamegun_run = {FRAME_rsd_tg_run_01, FRAME_rsd_tg_run_07, whore_frames_lsd_flamegun_run, NULL}; + +mframe_t whore_frames_rsd_flamegun_run[] = +{ + ai_sidestep, 0.000, whore_firegun_right, // frame 0 + ai_sidestep,22.407, whore_firegun_right, // frame 1 + ai_sidestep,17.900, whore_firegun_right, // frame 2 + ai_sidestep,14.898, whore_firegun_right, // frame 3 + ai_sidestep,18.887, whore_firegun_right, // frame 4 + ai_sidestep,17.189, whore_firegun_right, // frame 5 + ai_sidestep,17.301, whore_firegun_right, // frame 6 +}; +mmove_t whore_move_rsd_flamegun_run = {FRAME_lsd_tg_run_01, FRAME_lsd_tg_run_07, whore_frames_rsd_flamegun_run, NULL}; + +mframe_t whore_frames_lsd_shg_run[] = +{ + ai_sidestep, 0.000, NULL, // frame 0 + ai_sidestep,-15.072, whore_firegun_left, // frame 1 + ai_sidestep,-19.236, NULL, // frame 2 + ai_sidestep,-16.334, whore_shotgun_reload, // frame 3 + ai_sidestep,-22.102, NULL, // frame 4 + ai_sidestep,-17.517, NULL, // frame 5 + ai_sidestep,-18.783, NULL, // frame 6 +}; +mmove_t whore_move_lsd_shg_run = {FRAME_rsd_shg_run_01, FRAME_rsd_shg_run_07, whore_frames_lsd_shg_run, NULL}; + +mframe_t whore_frames_rsd_shg_run[] = +{ + ai_sidestep, 0.000, NULL, // frame 0 + ai_sidestep,21.514, whore_firegun_right, // frame 1 + ai_sidestep,18.794, NULL, // frame 2 + ai_sidestep,14.898, whore_shotgun_reload, // frame 3 + ai_sidestep,19.542, NULL, // frame 4 + ai_sidestep,16.533, NULL, // frame 5 + ai_sidestep,17.042, NULL, // frame 6 +}; +mmove_t whore_move_rsd_shg_run = {FRAME_lsd_shg_run_01, FRAME_lsd_shg_run_07, whore_frames_rsd_shg_run, NULL}; + +//================================================================================================================ +// created moves +mframe_t whore_frames_avoid_walk[] = +{ + ai_turn, 3.636, NULL, // frame 0 + ai_turn, 6.504, NULL, // frame 1 + ai_turn, 3.111, NULL, // frame 2 + ai_turn, 4.200, NULL, // frame 3 + ai_turn, 8.913, NULL, // frame 4 + ai_turn, 7.640, NULL, // frame 5 +}; +mmove_t whore_move_avoid_walk = {FRAME_walk_gdown_01, FRAME_walk_gdown_06, whore_frames_avoid_walk, AI_EndAttack}; + +mframe_t whore_frames_avoid_crouch_walk[] = +{ + ai_turn, 5.383, NULL, // frame 0 + ai_turn, 5.466, NULL, // frame 1 + ai_turn, 3.693, NULL, // frame 2 + ai_turn, 5.865, NULL, // frame 3 + ai_turn, 13.852, NULL, // frame 4 + ai_turn, 6.698, NULL, // frame 5 + ai_turn, 3.743, NULL, // frame 6 +}; +mmove_t whore_move_avoid_crouch_walk = {FRAME_crouch_walk_01, FRAME_crouch_walk_07, whore_frames_avoid_crouch_walk, AI_EndAttack}; + +mframe_t whore_frames_walk_gdownFLASHLIGHT[] = +{ + ai_runFLASHLIGHT, 12.686, NULL, // frame 0 + ai_runFLASHLIGHT, 6.612, NULL, // frame 1 + ai_runFLASHLIGHT, 4.302, NULL, // frame 2 + ai_runFLASHLIGHT, 8.823, NULL, // frame 3 + ai_runFLASHLIGHT, 7.734, NULL, // frame 4 + ai_runFLASHLIGHT, 9.099, NULL, // frame 5 + ai_runFLASHLIGHT, 9.405, NULL, // frame 6 + ai_runFLASHLIGHT, 5.060, NULL, // frame 7 + ai_runFLASHLIGHT, 4.412, NULL, // frame 8 + ai_runFLASHLIGHT, 8.700, NULL, // frame 9 +}; +mmove_t whore_move_walk_gdownFLASHLIGHT = {FRAME_walk_gdown_01, FRAME_walk_gdown_10, whore_frames_walk_gdownFLASHLIGHT, AI_EndRun }; + +mframe_t whore_frames_avoid_run[] = +{ + ai_turn, 26.748, NULL, // frame 0 + ai_turn, 17.188, NULL, // frame 1 + ai_turn, 31.486, NULL, // frame 2 + ai_turn, 31.052, NULL, // frame 3 + ai_turn, 23.944, NULL, // frame 4 + ai_turn, 24.549, NULL, // frame 5 +}; +mmove_t whore_move_avoid_run = {FRAME_run_gun_down_01, FRAME_run_gun_down_06, whore_frames_avoid_run, AI_EndAttack}; + +mframe_t whore_frames_avoid_reverse_walk[] = +{ + ai_turn, -7.640, NULL, // frame 5 + ai_turn, -8.913, NULL, // frame 4 + ai_turn, -4.200, NULL, // frame 3 + ai_turn, -3.111, NULL, // frame 2 + ai_turn, -6.504, NULL, // frame 1 + ai_turn, -3.636, NULL, // frame 0 +}; +mmove_t whore_move_avoid_reverse_walk = {FRAME_walk_gdown_06, FRAME_walk_gdown_01, whore_frames_avoid_reverse_walk, AI_EndAttack}; + +mframe_t whore_frames_avoid_reverse_run[] = +{ + ai_turn, - 24.549, NULL, // frame 5 + ai_turn, - 23.944, NULL, // frame 4 + ai_turn, - 31.052, NULL, // frame 3 + ai_turn, - 31.486, NULL, // frame 2 + ai_turn, - 17.188, NULL, // frame 1 + ai_turn, - 26.748, NULL, // frame 0 +}; +mmove_t whore_move_avoid_reverse_run = {FRAME_run_gun_down_06, FRAME_run_gun_down_03, whore_frames_avoid_reverse_run, AI_EndAttack}; + +mframe_t whore_frames_sg_stand[] = +{ + ai_stand, 0.000, whore_talk_think, // frame 0 + ai_stand, 0.000, whore_talk_think, // frame 1 + ai_stand, 0.000, whore_talk_think, // frame 2 + ai_stand, 0.000, whore_talk_think, // frame 3 + ai_stand, 0.000, whore_talk_think, // frame 4 + ai_stand, 0.000, whore_talk_think, // frame 5 + ai_stand, 0.000, whore_talk_think, // frame 6 + ai_stand, 0.000, whore_talk_think, // frame 7 + ai_stand, 0.000, whore_talk_think, // frame 8 + ai_stand, 0.000, whore_talk_think, // frame 9 + ai_stand, 0.000, whore_talk_think, // frame 10 + ai_stand, 0.000, whore_talk_think, // frame 11 + ai_stand, 0.000, whore_talk_think, // frame 12 + ai_stand, 0.000, whore_talk_think, // frame 13 + ai_stand, 0.000, whore_talk_think, // frame 14 + ai_stand, 0.000, whore_talk_think, // frame 15 + ai_stand, 0.000, whore_talk_think, // frame 16 +}; +mmove_t whore_move_sg_stand = {FRAME_sg_stand_01, FRAME_sg_stand_17, whore_frames_sg_stand, whore_end_stand}; + +mframe_t whore_frames_sg_talk1[] = +{ + ai_stand, 0.000, whore_talk_think, // frame 0 + ai_stand, 0.000, whore_talk_think, // frame 1 + ai_stand, 0.000, whore_talk_think, // frame 2 + ai_stand, 0.000, whore_talk_think, // frame 3 + ai_stand, 0.000, whore_talk_think, // frame 4 + ai_stand, 0.000, whore_talk_think, // frame 5 + ai_stand, 0.000, whore_talk_think, // frame 6 + ai_stand, 0.000, whore_talk_think, // frame 7 + ai_stand, 0.000, whore_talk_think, // frame 8 + ai_stand, 0.000, whore_talk_think, // frame 9 + ai_stand, 0.000, whore_talk_think, // frame 10 + ai_stand, 0.000, whore_talk_think, // frame 11 + ai_stand, 0.000, whore_talk_think, // frame 12 + ai_stand, 0.000, whore_talk_think, // frame 13 + ai_stand, 0.000, whore_talk_think, // frame 14 + ai_stand, 0.000, whore_talk_think, // frame 15 + ai_stand, 0.000, whore_talk_think, // frame 16 + ai_stand, 0.000, whore_talk_think, // frame 17 + ai_stand, 0.000, whore_talk_think, // frame 18 + ai_stand, 0.000, whore_talk_think, // frame 19 + ai_stand, 0.000, whore_talk_think, // frame 20 + ai_stand, 0.000, whore_talk_think, // frame 21 + ai_stand, 0.000, whore_talk_think, // frame 22 + ai_stand, 0.000, whore_talk_think, // frame 23 + ai_stand, 0.000, whore_talk_think, // frame 24 + ai_stand, 0.000, whore_talk_think, // frame 25 + ai_stand, 0.000, whore_talk_think, // frame 26 + ai_stand, 0.000, whore_talk_think, // frame 27 + ai_stand, 0.000, whore_talk_think, // frame 28 + ai_stand, 0.000, whore_talk_think, // frame 29 + ai_stand, 0.000, whore_talk_think, // frame 30 + ai_stand, 0.000, whore_talk_think, // frame 31 + ai_stand, 0.000, whore_talk_think, // frame 32 + ai_stand, 0.000, whore_talk_think, // frame 33 + ai_stand, 0.000, whore_talk_think, // frame 34 + ai_stand, 0.000, whore_talk_think, // frame 35 + ai_stand, 0.000, whore_talk_think, // frame 36 + ai_stand, 0.000, whore_talk_think, // frame 37 +}; +mmove_t whore_move_sg_talk1 = {FRAME_sg_talk1_01, FRAME_sg_talk1_38, whore_frames_sg_talk1, whore_end_stand}; + +mframe_t whore_frames_sg_talk2[] = +{ + ai_stand, 0.000, whore_talk_think, // frame 0 + ai_stand, 0.000, whore_talk_think, // frame 1 + ai_stand, 0.000, whore_talk_think, // frame 2 + ai_stand, 0.000, whore_talk_think, // frame 3 + ai_stand, 0.000, whore_talk_think, // frame 4 + ai_stand, 0.000, whore_talk_think, // frame 5 + ai_stand, 0.000, whore_talk_think, // frame 6 + ai_stand, 0.000, whore_talk_think, // frame 7 + ai_stand, 0.000, whore_talk_think, // frame 8 + ai_stand, 0.000, whore_talk_think, // frame 9 + ai_stand, 0.000, whore_talk_think, // frame 10 + ai_stand, 0.000, whore_talk_think, // frame 11 + ai_stand, 0.000, whore_talk_think, // frame 12 + ai_stand, 0.000, whore_talk_think, // frame 13 + ai_stand, 0.000, whore_talk_think, // frame 14 + ai_stand, 0.000, whore_talk_think, // frame 15 + ai_stand, 0.000, whore_talk_think, // frame 16 + ai_stand, 0.000, whore_talk_think, // frame 17 + ai_stand, 0.000, whore_talk_think, // frame 18 + ai_stand, 0.000, whore_talk_think, // frame 19 + ai_stand, 0.000, whore_talk_think, // frame 20 + ai_stand, 0.000, whore_talk_think, // frame 21 + ai_stand, 0.000, whore_talk_think, // frame 22 + ai_stand, 0.000, whore_talk_think, // frame 23 + ai_stand, 0.000, whore_talk_think, // frame 24 + ai_stand, 0.000, whore_talk_think, // frame 25 + ai_stand, 0.000, whore_talk_think, // frame 26 + ai_stand, 0.000, whore_talk_think, // frame 27 + ai_stand, 0.000, whore_talk_think, // frame 28 + ai_stand, 0.000, whore_talk_think, // frame 29 + ai_stand, 0.000, whore_talk_think, // frame 30 + ai_stand, 0.000, whore_talk_think, // frame 31 + ai_stand, 0.000, whore_talk_think, // frame 32 + ai_stand, 0.000, whore_talk_think, // frame 33 + ai_stand, 0.000, whore_talk_think, // frame 34 + ai_stand, 0.000, whore_talk_think, // frame 35 + ai_stand, 0.000, whore_talk_think, // frame 36 + ai_stand, 0.000, whore_talk_think, // frame 37 +}; +mmove_t whore_move_sg_talk2 = {FRAME_sg_talk2_01, FRAME_sg_talk2_38, whore_frames_sg_talk2, whore_end_stand}; + +mframe_t whore_frames_sg_talk3[] = +{ + ai_stand, 0.000, whore_talk_think, // frame 0 + ai_stand, 0.000, whore_talk_think, // frame 1 + ai_stand, 0.000, whore_talk_think, // frame 2 + ai_stand, 0.000, whore_talk_think, // frame 3 + ai_stand, 0.000, whore_talk_think, // frame 4 + ai_stand, 0.000, whore_talk_think, // frame 5 + ai_stand, 0.000, whore_talk_think, // frame 6 + ai_stand, 0.000, whore_talk_think, // frame 7 + ai_stand, 0.000, whore_talk_think, // frame 8 + ai_stand, 0.000, whore_talk_think, // frame 9 + ai_stand, 0.000, whore_talk_think, // frame 10 + ai_stand, 0.000, whore_talk_think, // frame 11 + ai_stand, 0.000, whore_talk_think, // frame 12 + ai_stand, 0.000, whore_talk_think, // frame 13 + ai_stand, 0.000, whore_talk_think, // frame 14 + ai_stand, 0.000, whore_talk_think, // frame 15 + ai_stand, 0.000, whore_talk_think, // frame 16 + ai_stand, 0.000, whore_talk_think, // frame 17 + ai_stand, 0.000, whore_talk_think, // frame 18 + ai_stand, 0.000, whore_talk_think, // frame 19 + ai_stand, 0.000, whore_talk_think, // frame 20 + ai_stand, 0.000, whore_talk_think, // frame 21 + ai_stand, 0.000, whore_talk_think, // frame 22 +}; +mmove_t whore_move_sg_talk3 = {FRAME_sg_talk3_01, FRAME_sg_talk3_23, whore_frames_sg_talk3, whore_end_stand}; +/* +mframe_t whore_frames_sg_talk4[] = +{ + ai_stand, 0.000, whore_talk_think, // frame 0 + ai_stand, 0.000, whore_talk_think, // frame 1 + ai_stand, 0.000, whore_talk_think, // frame 2 + ai_stand, 0.000, whore_talk_think, // frame 3 + ai_stand, 0.000, whore_talk_think, // frame 4 + ai_stand, 0.000, whore_talk_think, // frame 5 + ai_stand, 0.000, whore_talk_think, // frame 6 + ai_stand, 0.000, whore_talk_think, // frame 7 + ai_stand, 0.000, whore_talk_think, // frame 8 + ai_stand, 0.000, whore_talk_think, // frame 9 + ai_stand, 0.000, whore_talk_think, // frame 10 + ai_stand, 0.000, whore_talk_think, // frame 11 + ai_stand, 0.000, whore_talk_think, // frame 12 + ai_stand, 0.000, whore_talk_think, // frame 13 + ai_stand, 0.000, whore_talk_think, // frame 14 +}; +mmove_t whore_move_sg_talk4 = {FRAME_sg_talk4_01, FRAME_sg_talk4_15, whore_frames_sg_talk4, whore_end_stand}; +*/ +mframe_t whore_frames_sg_talk5[] = +{ + ai_stand, 0.000, whore_talk_think, // frame 0 + ai_stand, 0.000, whore_talk_think, // frame 1 + ai_stand, 0.000, whore_talk_think, // frame 2 + ai_stand, 0.000, whore_talk_think, // frame 3 + ai_stand, 0.000, whore_talk_think, // frame 4 + ai_stand, 0.000, whore_talk_think, // frame 5 + ai_stand, 0.000, whore_talk_think, // frame 6 + ai_stand, 0.000, whore_talk_think, // frame 7 + ai_stand, 0.000, whore_talk_think, // frame 8 + ai_stand, 0.000, whore_talk_think, // frame 9 + ai_stand, 0.000, whore_talk_think, // frame 10 + ai_stand, 0.000, whore_talk_think, // frame 11 + ai_stand, 0.000, whore_talk_think, // frame 12 + ai_stand, 0.000, whore_talk_think, // frame 13 + ai_stand, 0.000, whore_talk_think, // frame 14 + ai_stand, 0.000, whore_talk_think, // frame 15 +}; +mmove_t whore_move_sg_talk5 = {FRAME_sg_talk5_01, FRAME_sg_talk5_16, whore_frames_sg_talk5, whore_end_stand}; + +mframe_t whore_frames_sg_talk6[] = +{ + ai_stand, 0.000, whore_talk_think, // frame 0 + ai_stand, 0.000, whore_talk_think, // frame 1 + ai_stand, 0.000, whore_talk_think, // frame 2 + ai_stand, 0.000, whore_talk_think, // frame 3 + ai_stand, 0.000, whore_talk_think, // frame 4 + ai_stand, 0.000, whore_talk_think, // frame 5 + ai_stand, 0.000, whore_talk_think, // frame 6 + ai_stand, 0.000, whore_talk_think, // frame 7 + ai_stand, 0.000, whore_talk_think, // frame 8 + ai_stand, 0.000, whore_talk_think, // frame 9 + ai_stand, 0.000, whore_talk_think, // frame 10 + ai_stand, 0.000, whore_talk_think, // frame 11 + ai_stand, 0.000, whore_talk_think, // frame 12 + ai_stand, 0.000, whore_talk_think, // frame 13 + ai_stand, 0.000, whore_talk_think, // frame 14 + ai_stand, 0.000, whore_talk_think, // frame 15 + ai_stand, 0.000, whore_talk_think, // frame 16 + ai_stand, 0.000, whore_talk_think, // frame 17 + ai_stand, 0.000, whore_talk_think, // frame 18 + ai_stand, 0.000, whore_talk_think, // frame 19 +}; +mmove_t whore_move_sg_talk6 = {FRAME_sg_talk6_01, FRAME_sg_talk6_20, whore_frames_sg_talk6, whore_end_stand}; + +mframe_t whore_frames_sg_talk7[] = +{ + ai_stand, 0.000, whore_talk_think, // frame 0 + ai_stand, 0.000, whore_talk_think, // frame 1 + ai_stand, 0.000, whore_talk_think, // frame 2 + ai_stand, 0.000, whore_talk_think, // frame 3 + ai_stand, 0.000, whore_talk_think, // frame 4 + ai_stand, 0.000, whore_talk_think, // frame 5 + ai_stand, 0.000, whore_talk_think, // frame 6 + ai_stand, 0.000, whore_talk_think, // frame 7 + ai_stand, 0.000, whore_talk_think, // frame 8 + ai_stand, 0.000, whore_talk_think, // frame 9 + ai_stand, 0.000, whore_talk_think, // frame 10 + ai_stand, 0.000, whore_talk_think, // frame 11 + ai_stand, 0.000, whore_talk_think, // frame 12 + ai_stand, 0.000, whore_talk_think, // frame 13 + ai_stand, 0.000, whore_talk_think, // frame 14 + ai_stand, 0.000, whore_talk_think, // frame 15 + ai_stand, 0.000, whore_talk_think, // frame 16 + ai_stand, 0.000, whore_talk_think, // frame 17 + ai_stand, 0.000, whore_talk_think, // frame 18 + ai_stand, 0.000, whore_talk_think, // frame 19 + ai_stand, 0.000, whore_talk_think, // frame 20 +}; +mmove_t whore_move_sg_talk7 = {FRAME_sg_talk7_01, FRAME_sg_talk7_21, whore_frames_sg_talk7, whore_end_stand}; + +mframe_t whore_frames_sg_talk8[] = +{ + ai_stand, 0.000, whore_talk_think, // frame 0 + ai_stand, 0.000, whore_talk_think, // frame 1 + ai_stand, 0.000, whore_talk_think, // frame 2 + ai_stand, 0.000, whore_talk_think, // frame 3 + ai_stand, 0.000, whore_talk_think, // frame 4 + ai_stand, 0.000, whore_talk_think, // frame 5 + ai_stand, 0.000, whore_talk_think, // frame 6 + ai_stand, 0.000, whore_talk_think, // frame 7 + ai_stand, 0.000, whore_talk_think, // frame 8 + ai_stand, 0.000, whore_talk_think, // frame 9 + ai_stand, 0.000, whore_talk_think, // frame 10 + ai_stand, 0.000, whore_talk_think, // frame 11 + ai_stand, 0.000, whore_talk_think, // frame 12 + ai_stand, 0.000, whore_talk_think, // frame 13 + ai_stand, 0.000, whore_talk_think, // frame 14 + ai_stand, 0.000, whore_talk_think, // frame 15 + ai_stand, 0.000, whore_talk_think, // frame 16 + ai_stand, 0.000, whore_talk_think, // frame 17 + ai_stand, 0.000, whore_talk_think, // frame 18 + ai_stand, 0.000, whore_talk_think, // frame 19 + ai_stand, 0.000, whore_talk_think, // frame 20 +}; +mmove_t whore_move_sg_talk8 = {FRAME_sg_talk8_01, FRAME_sg_talk8_19, whore_frames_sg_talk8, whore_end_stand}; + +mframe_t whore_frames_walk_dokey[] = +{ + ai_runDOKEY, 12.686, EP_ReachedDoKey, // frame 0 + ai_runDOKEY, 6.612, EP_ReachedDoKey, // frame 1 + ai_runDOKEY, 4.302, EP_ReachedDoKey, // frame 2 + ai_runDOKEY, 8.823, EP_ReachedDoKey, // frame 3 + ai_runDOKEY, 7.734, EP_ReachedDoKey, // frame 4 + ai_runDOKEY, 9.099, EP_ReachedDoKey, // frame 5 + ai_runDOKEY, 9.405, EP_ReachedDoKey, // frame 6 + ai_runDOKEY, 5.060, EP_ReachedDoKey, // frame 7 + ai_runDOKEY, 4.412, EP_ReachedDoKey, // frame 8 + ai_runDOKEY, 8.700, EP_ReachedDoKey, // frame 9 +}; +mmove_t whore_move_walk_dokey = {FRAME_walk_gdown_01, FRAME_walk_gdown_10, whore_frames_walk_dokey, EP_ReachedDoKey}; + +mframe_t whore_frames_crch_dokey[] = +{ + ai_stand, 0.000, NULL, // frame 0 + ai_stand, 0.000, NULL, // frame 1 + ai_stand, 0.000, NULL, // frame 2 + ai_stand, 0.000, NULL, // frame 3 + ai_stand, 0.000, NULL, // frame 4 + ai_stand, 0.000, NULL, // frame 5 + ai_stand, 0.000, NULL, // frame 6 + ai_stand, 0.000, NULL, // frame 7 + ai_stand, 0.000, NULL, // frame 8 + ai_stand, 0.000, NULL, // frame 9 + ai_stand, 0.000, NULL, // frame 10 + ai_stand, 0.000, NULL, // frame 11 + ai_stand, 0.000, NULL, // frame 12 + ai_stand, 0.000, NULL, // frame 13 + ai_stand, 0.000, NULL, // frame 14 + ai_stand, 0.000, NULL, // frame 15 + ai_stand, 0.000, NULL, // frame 16 + ai_stand, 0.000, NULL, // frame 17 + ai_stand, 0.000, NULL, // frame 18 + ai_stand, 0.000, NULL, // frame 19 +}; +mmove_t whore_move_crch_dokey = {FRAME_crch_astand_01, FRAME_crch_astand_20, whore_frames_crch_dokey, EP_EndDoKey}; + + +/* +custom moves to allow hmg sound to and visuals to behave as player hmg +*/ + +mframe_t whore_frames_hmg_shoot2[] = +{ + ai_charge, 0.000, NULL, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, whore_hmg_avoid, // frame 2 +}; +mmove_t whore_move_hmg_shoot2 = {FRAME_hmg_std_01, FRAME_hmg_std_03, whore_frames_hmg_shoot2, AI_EndAttack}; + +mframe_t whore_frames_walk_hmg_sht2[] = +{ + ai_turn, 0.049 , NULL, // frame 0 + ai_turn, 6.533 , NULL, // frame 1 + ai_turn, 5.211 , NULL, // frame 2 + ai_turn, 6.256 , NULL, // frame 3 + ai_turn, 7.597 , NULL, // frame 4 + ai_turn, 6.603 , NULL, // frame 5 + ai_turn, 7.558 , NULL, // frame 6 + ai_turn, 6.896 , NULL, // frame 7 + ai_turn, 3.916 , NULL, // frame 8 + ai_turn, 5.127 , NULL, // frame 9 + ai_turn, 3.965 , whore_hmg_avoid, // frame 10 +}; +mmove_t whore_move_walk_hmg_sht2 = {FRAME_hmg_wlk_01, FRAME_hmg_wlk_11, whore_frames_walk_hmg_sht2, AI_EndAttack}; + +mframe_t whore_frames_run_hmg_sht2[] = +{ + ai_charge, 0.000 , NULL, // frame 0 + ai_charge, 16.658 , NULL, // frame 1 + ai_charge, 9.637 , NULL, // frame 2 + ai_charge, 27.670 , NULL, // frame 3 + ai_charge, 18.670 , NULL, // frame 4 + ai_charge, 14.250 , NULL, // frame 5 + ai_charge, 23.489 , whore_hmg_avoid, // frame 6 +}; +mmove_t whore_move_run_hmg_sht2 = {FRAME_hmg_run_01, FRAME_hmg_run_07, whore_frames_run_hmg_sht2, AI_EndAttack}; + + +mframe_t whore_frames_bazooka_shoot2[] = +{ + ai_charge, 0.000, NULL, // frame 0 + ai_charge, 0.000, NULL, // frame 1 + ai_charge, 0.000, NULL, // frame 2 +}; +mmove_t whore_move_bazooka_shoot2 = {FRAME_hmg_std_01, FRAME_hmg_std_03, whore_frames_bazooka_shoot2, AI_EndAttack}; + +mframe_t whore_frames_walk_bazooka_shoot2[] = +{ + ai_turn, 0.049 , NULL, // frame 0 + ai_turn, 6.533 , NULL, // frame 1 + ai_turn, 5.211 , NULL, // frame 2 + ai_turn, 6.256 , NULL, // frame 3 + ai_turn, 7.597 , NULL, // frame 4 + ai_turn, 6.603 , NULL, // frame 5 + ai_turn, 7.558 , NULL, // frame 6 + ai_turn, 6.896 , NULL, // frame 7 + ai_turn, 3.916 , NULL, // frame 8 + ai_turn, 5.127 , NULL, // frame 9 + ai_turn, 3.965 , NULL, // frame 10 +}; +mmove_t whore_move_walk_bazooka_shoot2 = {FRAME_hmg_wlk_01, FRAME_hmg_wlk_11, whore_frames_walk_bazooka_shoot2, AI_EndAttack}; + +mframe_t whore_frames_run_bazooka_shoot2[] = +{ + ai_charge, 0.000 , NULL, // frame 0 + ai_charge, 16.658 , NULL, // frame 1 + ai_charge, 9.637 , NULL, // frame 2 + ai_charge, 27.670 , NULL, // frame 3 + ai_charge, 18.670 , NULL, // frame 4 + ai_charge, 14.250 , NULL, // frame 5 + ai_charge, 23.489 , NULL, // frame 6 +}; +mmove_t whore_move_run_bazooka_shoot2 = {FRAME_hmg_run_01, FRAME_hmg_run_07, whore_frames_run_bazooka_shoot2, AI_EndAttack}; diff --git a/gamesrc/ep_crystalpalace.c b/gamesrc/ep_crystalpalace.c new file mode 100644 index 0000000..c430476 --- /dev/null +++ b/gamesrc/ep_crystalpalace.c @@ -0,0 +1,209 @@ +/****************************************************************************** + + CRYSTALPALACE - Episode specific code + +*******************************************************************************/ + +#include "g_local.h" + +#include "voice_punk.h" +#include "voice_bitch.h" + +void ProcessKingpin (edict_t *self, edict_t *other); +void misc_cp_afraid_think (edict_t *self); + +qboolean EP_CrystalPalace_CastSight ( edict_t *self, edict_t *other, cast_memory_t *mem ) +{ + return false; +} + +qboolean EP_CrystalPalace_CastUse (edict_t *self, edict_t *other, edict_t *activator) +{ + return false; +} + +qboolean EP_CrystalPalace_EventSpeech (edict_t *self, edict_t *other, int saywhat) +{ + cast_memory_t *mem; + + mem = level.global_cast_memory[ self->character_index ][ other->character_index ]; + + switch (saywhat) + { + + case say_neutral: + if (self->name_index == NAME_KINGPIN && other->client) + { + if (!(other->episode_flags & EP_CP_KINGPIN_FIRSTSIGHT)) + { + gi.dprintf ("there he is lets go!\n"); + EP_Skidrow_Register_EPFLAG (other, EP_CP_KINGPIN_FIRSTSIGHT); + { + // need to make blunt and kingpin leave through the elevator + ProcessKingpin (self, other); + } + } + return true; + } + return false; + break; + case say_hostile: + if (self->name_index == NAME_KINGPIN) + { + if (!(other->episode_flags & EP_CP_KINGPIN_FIRSTSIGHT)) + { + gi.dprintf ("there he is lets go!\n"); + EP_Skidrow_Register_EPFLAG (other, EP_CP_KINGPIN_FIRSTSIGHT); + { + // need to make blunt and kingpin leave through the elevator + ProcessKingpin (self, other); + } + } + return true; + } + return false; + break; + } + + return false; +} + +void EP_CrystalPalace_ItemPickup ( edict_t *self, edict_t *other ) +{ + +} + +void EP_CrystalPalace_Script( edict_t *ent, char *scriptname ) +{ + +} + +int EP_CrystalPalace_HiredGuysFlags (edict_t *player, edict_t *self) +{ + + if (self->gender == GENDER_MALE) + Voice_Random (self, player, &hiredguy_ask[10], 4); + else + Voice_Random (self, player, &hiredgal_specific[12], 4); + + return (0); +} + +void EP_CrystalPalaceFlags (edict_t *self) +{ + +} + +qboolean EP_CrystalPalace_DoKey (edict_t *self, edict_t *other) +{ + return false; +} + +void EP_CrystalPalace_Check_DoKey (edict_t *self, edict_t *ent) +{ + +} + +void EP_CrystalPalace_ReachedDoKey (edict_t *self) +{ + +} + +void EP_CrystalPalace_EndDoKey (edict_t *self) +{ + +} + +qboolean EP_CrystalPalace_UnlockDoorFlag (edict_t *ent) +{ + return false; +} + +void EP_CrystalPalace_HiredGuysRegisterFlags (edict_t *ent, edict_t *other) +{ + +} + +void ProcessKingpin (edict_t *self, edict_t *other) +{ + edict_t *Blunt; + edict_t *ent = NULL; + + Blunt = EP_GetCharacter (NAME_BLUNT); + + if (Blunt) + { + + ent = G_Find (ent, FOFS(classname), "misc_cp_afraid"); + + if (ent) + { + self->goal_ent = ent; + ent->cast_info.aiflags |= AI_GOAL_RUN; + ent->think = misc_cp_afraid_think; + ent->nextthink = level.time + 0.1; + self->cast_info.aiflags &= ~AI_TALK; + } + else + gi.dprintf ("Kingpin missing misc_cp_afraid marker\n"); + + } + + // todo + // the doors to the escape elevator need to open + +} + +/*QUAKED misc_cp_afraid (.5 .5 1) (-16 -16 -24) (16 16 48) +used as the location mo will run to before larry and curly attack him +*/ + +void misc_cp_afraid_think (edict_t *self) +{ + edict_t *Kingpin; + edict_t *Blunt; + + vec3_t vec; + float dist; + + Kingpin = EP_GetCharacter (NAME_KINGPIN); + Blunt = EP_GetCharacter (NAME_BLUNT); + + if (Kingpin) + { + + VectorSubtract (Kingpin->s.origin, self->s.origin, vec); + dist = VectorLength (vec); + + // gi.dprintf ("dist: %5.3f\n", dist); + if (dist < 128) + { + + } + else + self->nextthink = level.time + 0.1; + + } + + +} + +void SP_misc_cp_afraid (edict_t *self) +{ + if (deathmatch->value) + { + G_FreeEdict(self); + return; + } + + self->movetype = MOVETYPE_NONE; + self->solid = SOLID_NOT; + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 48); + + self->cast_info.aiflags |= AI_RUN_LIKE_HELL; + + AI_Ent_droptofloor( self ); + + gi.linkentity (self); +} diff --git a/gamesrc/ep_posionville.c b/gamesrc/ep_posionville.c new file mode 100644 index 0000000..52cfb7d --- /dev/null +++ b/gamesrc/ep_posionville.c @@ -0,0 +1,1608 @@ +/****************************************************************************** + + POSIONVILLE - Episode specific code + +*******************************************************************************/ + +#include "g_local.h" + +#include "voice_punk.h" +#include "voice_bitch.h" + +qboolean ProcessPVMomo (edict_t *self, edict_t *other); +qboolean ProcessPVYolanda (edict_t *self, edict_t *other); + +void Resp_PVLouie_TellsMe (edict_t *self, edict_t *other, response_t response); +void misc_pv_afraid_think (edict_t *self); + +// This gets called whenever a character (player or AI) is sighted by an AI character +// in the Posionville episode + +qboolean EP_Poisonville_CastSight ( edict_t *self, edict_t *other, cast_memory_t *mem ) +{ + if (self->name_index == NAME_MOMO && other->client) + { + if (mem->timestamp < (level.time - 8)) + { // haven't seen them for a while + other->episode_flags &= ~EP_PV_MOMO_ASKED_MONEY; + // mem->flags &= ~MEMORY_LASTWARNING; + } + + if ((mem->memory_type == MEMORY_TYPE_ENEMY) /*&& !other->client->pers.weapon*/) + { // give them a chance to make friends if they holster + self->enemy = NULL; + + // make them a neutral instead of enemy + AI_RemoveFromMemory( self, mem ); + AI_AddToMemory( self, mem, MEMORY_TYPE_NEUTRAL ); + mem->flags &= ~MEMORY_HOSTILE_ENEMY; + } + + return true; + } + + if (self->name_index == NAME_YOLANDA && other->client) + { + if (mem->timestamp < (level.time - 8)) + { // haven't seen them for a while + if (!(other->episode_flags & EP_PV_YOLANDA_TOOK_MONEY)) + other->episode_flags &= ~EP_PV_YOLANDA_ASKED_MONEY; + } + + if ((mem->memory_type == MEMORY_TYPE_ENEMY) && !(other->client->pers.weapon)) + { // give them a chance to make friends if they holster + self->enemy = NULL; + + // make them a neutral instead of enemy + AI_RemoveFromMemory( self, mem ); + AI_AddToMemory( self, mem, MEMORY_TYPE_NEUTRAL ); + mem->flags &= ~MEMORY_HOSTILE_ENEMY; + } + + return false; + } + + if ( ( (self->name_index == NAME_LAUREL) + || (self->name_index == NAME_HARDEY)) + && (other->client) ) + { + if (self->enemy) + { + self->goal_ent = NULL; + + return false; + } + + if (other->current_territory != self->cast_group || VectorDistance(self->s.origin, other->s.origin) > AI_NOT_HOLSTERED_RANGE_1) + { + // Ignore them + return true; + } + else + { + if (VectorDistance (self->s.origin, other->s.origin) > AI_NOT_HOLSTERED_RANGE_1) + { + // Dont get mad yet + return true; + } + else + { + // too close waist em + AI_MakeEnemy( self, other, 0 ); + AI_StartAttack( self, other ); + self->goal_ent = NULL; + return false; + } + } + } + + return false; +} + +// EP_Posionville_CastUse +// Called when ever a character is "used" (like when someone dies that has a ->deathtarget set) + +qboolean EP_Poisonville_CastUse (edict_t *self, edict_t *other, edict_t *activator) +{ + return false; +} + + +// EP_Posionville_EventSpeech +// Called on speech occasions +// +// Return TRUE so that the normal speech routines don't say something as well + +qboolean EP_Poisonville_EventSpeech (edict_t *self, edict_t *other, int saywhat) +{ + cast_memory_t *mem; + + mem = level.global_cast_memory[ self->character_index ][ other->character_index ]; + + switch (saywhat) + { + + case say_neutral: + + if (self->name_index == NAME_LAUREL && other->name_index == NAME_YOLANDA) + { + Voice_Random (self, other, neutral_converse_to_female, 10); + return true; + } + + if (self->name_index == NAME_HARDEY && other->name_index == NAME_YOLANDA) + { + Voice_Random (self, other, neutral_converse_to_female, 10); + return true; + } + + if ((self->name_index == NAME_MOMO) + && (other->client)) + { + return (ProcessPVMomo (self, other)); + } + + if (self->name_index == NAME_YOLANDA) + { + if (other->client) + { + // hack to save test time for yolanda + // other->episode_flags |= EP_PV_HIRED_SAFE_BOY; + + if (other->episode_flags & EP_PV_HIRED_SAFE_BOY) + { + { + edict_t *Laurel; + edict_t *Hardey; + + Laurel = EP_GetCharacter (NAME_LAUREL); + Hardey = EP_GetCharacter (NAME_HARDEY); + + if (Laurel && Hardey) + return (ProcessPVYolanda (self, other)); + else + Voice_Random (self, other, &yolanda_specific[0], 5); + } + } + else + Voice_Random (self, other, &yolanda_specific[0], 5); + + return true; + } + else + { + Voice_Random (self, other, &yolanda_specific[12], 5); + return true; + } + } + + if (self->name_index == NAME_LOUIE && other->client) + { + + if (other->episode_flags & EP_PV_SAFE_DOCS) + { + EP_Skidrow_Register_EPFLAG (other, EP_PV_TALKED_LOUIE); + EP_Skidrow_Register_EPFLAG (other, EP_PV_TALKED_LOUIE2); + EP_Skidrow_Register_EPFLAG (other, EP_PV_TALKED_LOUIE3); + EP_Skidrow_Register_EPFLAG (other, EP_PV_TALKED_LOUIE5); + } + + if (!(other->episode_flags & EP_PV_TALKED_LOUIE)) + { + // hey your alive... I gotta job for you you get me the files from + // nicki blanco's safe and I'll let ya hire my guys + + Voice_Specific (self, other, pv_louie, 0); + EP_Skidrow_Register_EPFLAG (other, EP_PV_TALKED_LOUIE); + + return true; + } + + if (!(other->episode_flags & EP_PV_TALKED_LOUIE2)) + { + Voice_Specific (self, other, pv_louie, 1); + EP_Skidrow_Register_EPFLAG (other, EP_PV_TALKED_LOUIE2); + + return true; + } + if (!(other->episode_flags & EP_PV_TALKED_LOUIE3)) + { + Voice_Specific (self, other, pv_louie, 3); + EP_Skidrow_Register_EPFLAG (other, EP_PV_TALKED_LOUIE3); + + return true; + } + if (!(other->episode_flags & EP_PV_TALKED_LOUIE5)) + { + Voice_Specific (self, other, pv_louie, 18); + EP_Skidrow_Register_EPFLAG (other, EP_PV_TALKED_LOUIE5); + + return true; + } + + if (!(other->episode_flags & EP_PV_SAFE_DOCS_DELIVERED)) + { + if ((other->client->pers.inventory[ITEM_INDEX(FindItem("Safe docs"))]) + && (other->episode_flags & EP_PV_SAFE_DOCS)) + { + // a deal is a deal my guys will run with you now + Voice_Specific (self, other, pv_louie, 15); + EP_Skidrow_Register_EPFLAG (other, EP_PV_SAFE_DOCS_DELIVERED); + + { + int index; + gitem_t *item; + + item = FindItem ("Safe docs"); + index = ITEM_INDEX (item); + other->client->pers.inventory[index] = 0; + } + + return true; + } + else + { + if (!(other->client->pers.episode_flags & EP_PV_SENT_TO_GET_SAFEDOCS)) + { + Voice_Specific (self, other, pv_louie, 4); + EP_Skidrow_Register_EPFLAG (other, EP_PV_SENT_TO_GET_SAFEDOCS); + return true; + } + + if (!(other->client->pers.episode_flags & EP_PV_LOUIE_SPEACH_1)) + { + Voice_Specific (self, other, pv_louie, 13); + EP_Skidrow_Register_EPFLAG (other, EP_PV_LOUIE_SPEACH_1); + + return true; + } + + if (!(other->client->pers.episode_flags & EP_PV_TALKED_LOUIE4)) + { + Voice_Specific (self, other, pv_louie, 14); + EP_Skidrow_Register_EPFLAG (other, EP_PV_TALKED_LOUIE4); + + return true; + } + + if (!(other->client->pers.episode_flags & EP_PV_LOUIE_SPEACH_2)) + { + Voice_Specific (self, other, pv_louie, 19); + EP_Skidrow_Register_EPFLAG (other, EP_PV_LOUIE_SPEACH_2); + + { + cast_memory_t *mem; + + mem = level.global_cast_memory[ self->character_index ][ other->character_index ]; + + mem->response = Resp_PVLouie_TellsMe; + } + + return true; + } + + { + // random speak about the wearabouts of the safe + Voice_Random (self, other, &pv_louie[9], 5); + } + + return true; + } + } + + else + { + if (!(other->client->pers.episode_flags & EP_PV_LOUIE_KEY)) + { + int index; + gitem_t *item; + + Voice_Specific (self, other, pv_louie, 16); + EP_Skidrow_Register_EPFLAG (other, EP_PV_LOUIE_KEY); + + item = FindItem ("Chem_Plant_Key"); + index = ITEM_INDEX (item); + other->client->pers.inventory[ index ] = 1; + // show icon and name on status bar + other->client->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(item->icon); + other->client->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS+index; + other->client->pickup_msg_time = level.time + 5.5; + + } + // thanks see ya again sometime + Voice_Specific (self, other, pv_louie, 12); + } + + return true; + } + + + return false; + break; + + case say_hostile: + + + if (self->name_index == NAME_LOUIE && other->client) + { + if (other->episode_flags & EP_PV_SAFE_DOCS) + { + EP_Skidrow_Register_EPFLAG (other, EP_PV_TALKED_LOUIE); + EP_Skidrow_Register_EPFLAG (other, EP_PV_TALKED_LOUIE2); + EP_Skidrow_Register_EPFLAG (other, EP_PV_TALKED_LOUIE3); + EP_Skidrow_Register_EPFLAG (other, EP_PV_TALKED_LOUIE5); + + Voice_Random (self, other, &pv_louie[6], 3); + + mem = level.global_cast_memory [self->character_index][other->character_index]; + mem->flags &= ~MEMORY_ASSHOLE; + + return true; + } + + if (other->client->ps.stats[STAT_HUD_SELF_TALK] == TT_POSITIVE) + { + mem = level.global_cast_memory [self->character_index][other->character_index]; + mem->flags &= ~MEMORY_ASSHOLE; + + Voice_Random (self, other, &pv_louie[9], 3); + + return true; + } + else + { + // just do a random curse at the player + + Voice_Random (self, other, &pv_louie[6], 3); + return true; + } + } + + + if (self->name_index == NAME_MOMO && other->client) + { + return (ProcessPVMomo (self, other)); + } + + if (self->name_index == NAME_YOLANDA && other->client) + { + self->cast_info.aiflags &= ~AI_NO_TALK; + + if (other->client->ps.stats[STAT_HUD_SELF_TALK] == TT_POSITIVE) + { + mem = level.global_cast_memory [self->character_index][other->character_index]; + mem->flags &= ~MEMORY_ASSHOLE; + + Voice_Random (self, other, &yolanda_specific[0], 2); + + return true; + } + else + { + Voice_Random (self, other, &yolanda_specific[17], 8); + } + + self->cast_info.aiflags |= AI_NO_TALK; + + return true; + } + + return false; + break; + } + + + return false; +} + + +// EP_Posionville_ItemPickup +// Called whenever an item is picked up + +void EP_Poisonville_ItemPickup ( edict_t *self, edict_t *other ) +{ + +if (!Q_strcasecmp( self->classname, "item_safedocs" )) +{ + EP_Skidrow_Register_EPFLAG (other, EP_PV_SAFE_DOCS); + EP_Skidrow_Register_EPFLAG (other, EP_PV_SAFEDOORISOPEN); +} + +} + +// EP_Posionville_Script + +void EP_Poisonville_Script( edict_t *ent, char *scriptname ) +{ + +} + + +//::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: +// +// Special Posionville entities + +//................................................ + + +//========================================================================================== +// +// RESPONSES + +void Resp_PVLouie_TellsMe (edict_t *self, edict_t *other, response_t response) +{ + + if (response == resp_yes) + { + Voice_Player_Specific(self, TT_YES); + { + cast_memory_t *mem; + mem = level.global_cast_memory[ other->character_index ][ self->character_index ]; + mem->response = NULL; + } + } + else + { + Voice_Player_Specific(self, TT_NO); + + self->episode_flags = self->client->pers.episode_flags &= ~EP_PV_LOUIE_SPEACH_1; + self->episode_flags = self->client->pers.episode_flags &= ~EP_PV_LOUIE_SPEACH_2; + } + + self->response_ent = other; + self->last_response_time = level.time; + self->last_response = response; +} + +void Resp_PVYolanda_GotMoney ( edict_t *self, edict_t *other, response_t response ) +{ + + if (self->episode_flags & EP_PV_YOLANDA_TOOK_MONEY) + return; + + if (response == resp_yes) + { + Voice_Player_Specific(self, TT_YES); + + if (!(self->episode_flags & EP_PV_YOLANDA_TOOK_MONEY)) + { + if (self->client->pers.currentcash >= 10) + { + Voice_Random (self, other, player_money_yes, NUM_PLAYER_MONEY_YES); + + self->client->pers.currentcash -= 10; + other->currentcash += 10; + + EP_Skidrow_Register_EPFLAG (self, EP_PV_YOLANDA_TOOK_MONEY); + + { + edict_t *ent = NULL; + + ent = G_Find (ent, FOFS(classname), "misc_pv_afraid"); + + Voice_Specific (other, self, yolanda_specific, 11); + + if (ent) + { + other->goal_ent = ent; + ent->cast_info.aiflags |= AI_GOAL_RUN; + ent->think = misc_pv_afraid_think; + ent->nextthink = level.time + 2.0; + other->cast_info.aiflags &= ~AI_TALK; + { + cast_memory_t *mem; + + mem = level.global_cast_memory[ other->character_index ][ self->character_index ]; + + self->last_response_time = 0; // so we don't process this response again + mem->response = NULL; + self->response_ent = NULL; + } + + } + else + gi.dprintf ("yolanda missing misc_pv_afraid marker\n"); + } + } + else + { + Voice_Random (self, other, player_money_no, NUM_PLAYER_MONEY_NO); + + response = resp_no; + } + } + + } + else if (response == resp_no) + { + Voice_Specific( self, other, specific, 6 ); + Voice_Player_Specific(self, TT_NO); + } + + self->response_ent = other; + self->last_response_time = level.time; + self->last_response = response; + +} + + +qboolean ProcessPVYolanda (edict_t *self, edict_t *other) +{ + + cast_memory_t *mem; + + mem = level.global_cast_memory[ self->character_index ][ other->character_index ]; + + if (other->episode_flags & EP_PV_YOLANDA_TOOK_MONEY) + { + Voice_Random (self, other, &yolanda_specific[0], 3); + return true; + } + + if (!(other->episode_flags & EP_PV_YOLANDA_ASKED_MONEY)) + { + Voice_Specific (self, other, yolanda_specific, 6); + EP_Skidrow_Register_EPFLAG (other, EP_PV_YOLANDA_ASKED_MONEY); + mem->response = Resp_PVYolanda_GotMoney; + return true; + } + /* + else if ( (other->response_ent == self) + && (other->last_response_time > (level.time - 5))) + { + if (other->last_response == resp_yes) + { + Voice_Specific (self, other, yolanda_specific, 25); + } + else // they said no + { + Voice_Specific (self, other, yolanda_specific, 25); + } + + other->last_response_time = 0; // so we don't process this response again + + mem->response = NULL; + other->response_ent = NULL; + + return true; + } + */ + else + { + Voice_Random (self, other, &yolanda_specific[8], 2); + + if (yolanda_specific[8].last_played == level.time + || yolanda_specific[9].last_played == level.time ) + { + mem->response = Resp_PVYolanda_GotMoney; + } + + } + + return true; +} + + +void Resp_PVMomo_GotMoney ( edict_t *self, edict_t *other, response_t response ) +{ + cast_memory_t *mem; + + if (self->episode_flags & EP_PV_MOMO_TOOK_MONEY) + return; + + mem = level.global_cast_memory[ other->character_index ][ self->character_index ]; + + if (response == resp_yes) + { + Voice_Player_Specific(self, TT_YES); + Voice_Random (self, other, player_money_yes, NUM_PLAYER_MONEY_YES); // yes + } + else if (response == resp_no) + { + Voice_Player_Specific (self, TT_NO); + Voice_Random (self, other, player_money_no, NUM_PLAYER_MONEY_NO); // no + } + + self->response_ent = other; + self->last_response_time = level.time; + self->last_response = response; +} + + +// generic process for hostile or neutral momo +qboolean ProcessPVMomo (edict_t *self, edict_t *other) +{ + + cast_memory_t *mem; + + mem = level.global_cast_memory[ self->character_index ][ other->character_index ]; + + if (mem->flags & MEMORY_LASTWARNING) + { + Voice_Random ( self, other, &momo_specific[13], 2); // get the fuck out of my foyer + + return true; + } + + if (other->episode_flags & EP_PV_MOMO_TOOK_MONEY) + { + // Ridah, 5-8-99, we've already taken their money, so say one of the following.. + + if (!(mem->flags & MEMORY_ASSHOLE)) + Voice_Random ( self, other, &momo_specific[12], 2); // so what's it gonna be... in or out? + else // they've cussed us, don't act all happy to see them + Voice_Random ( self, other, &momo_specific[13], 2); // get the fuck out of my foyer + + return true; + } + + if (!(other->episode_flags & EP_PV_MOMO_FIRST_TIME)) + { + + Voice_Specific (self, other, momo_specific, 17); // welcome.wav + + EP_Skidrow_Register_EPFLAG (other, EP_PV_MOMO_FIRST_TIME); + + return true; + } + + // Ridah, 5-8-99, I changed this so it clears this flag in EP_CastSight() if Momo sees you after not having seen you for a while + if (!(other->episode_flags & EP_PV_MOMO_ASKED_MONEY)) + { + // note to Rafael: you can use "inc" for anything.. usually used to count events + if (!mem->inc) + { + if (!( mem->flags & MEMORY_ASSHOLE)) + { + Voice_Random (self, other, &momo_specific[1], 3); // 10 dollar cover charge + mem->inc = 1; + } + else + { + Voice_Specific (self, other, momo_specific, 5); // now it's 20 bucks! + mem->inc = 2; + } + } + else + { + Voice_Specific (self, other, momo_specific, 9); // your back + } + + EP_Skidrow_Register_EPFLAG (other, EP_PV_MOMO_ASKED_MONEY); + + mem->response = Resp_Momo_GotMoney; + return true; + } + + // have they responded yet? + else if ( (other->response_ent == self) + && (other->last_response_time > (level.time - 5))) + { + + if (other->last_response == resp_yes) + { + edict_t *door = NULL; + int cost; + + if ( mem->flags & MEMORY_ASSHOLE) + { + if (mem->inc < 3) + cost = 20; + else + cost = 30; + } + else + { + cost = 10; + } + + // have we really have money to give? + if (other->client->pers.currentcash >= cost) + { + other->client->pers.currentcash -= cost; + self->currentcash += cost; + + EP_Skidrow_Register_EPFLAG (other, EP_PV_MOMO_TOOK_MONEY); + + // TBD: at this point need to have momo walk away to a path corner cast + + Voice_Specific( self, other, &momo_specific[0], 10 ); // go on in + + + // JOSEPH 9-MAR-99 + // in case there's more than one door + { // unlock the door for player + // Find target door + edict_t *e; + int i; + + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->targetname) && (!strcmp(e->targetname, "bardoor_pv"))) + { + // Unlock target door + if (e->key == -1) + { + e->key = 0; + e->targetname = NULL; + } + } + } + + EP_Skidrow_Register_EPFLAG (other, EP_PV_MOMO_TOOK_MONEY); + } + // END JOSEPH + + } + else + { + // don't have money to give + Voice_Random( self, other, &momo_specific[7], 2 ); // see me later when you got the money + } + } + else // they said no + { + Voice_Random( self, other, &momo_specific[13], 3 ); + } + + other->last_response_time = 0; // so we don't process this response again + + mem->response = NULL; + other->response_ent = NULL; + + return true; + } + + else + { + + if (mem->flags & MEMORY_ASSHOLE) + { + if (!(mem->flags & MEMORY_UPSET)) + { + mem->flags |= MEMORY_UPSET; + + if (mem->inc < 3) + { + Voice_Specific (self, other, momo_specific, 5); + } + else // 30 bucks for you now! + { + Voice_Specific (self, other, momo_specific, 6); + } + } + else + { + Voice_Random (self, other, &momo_specific[12], 4); + + // This needs to be here, or Momo will never take the money when mad + if (momo_specific[12].last_played == level.time) + { // we just asked them if they wanna come in, so let them respond + mem->response = Resp_PVMomo_GotMoney; + } + + } + } + else + { + Voice_Random (self, other, &momo_specific[12], 5); + + if (momo_specific[12].last_played == level.time) + { // we just asked them if they wanna come in, so let them respond + mem->response = Resp_PVMomo_GotMoney; + } + } + + } + + return true; +} + +// +// PROCEDURES + +int EP_PV_HiredGuysFlags (edict_t *player, edict_t *self) +{ + if ((self->name_index == NAME_FINGERS || self->name_index == NAME_BUSTER)) + { + edict_t *Buster; + edict_t *Fingers; + cast_memory_t *cast_memory; + + Buster = EP_GetCharacter (NAME_BUSTER); + Fingers = EP_GetCharacter (NAME_FINGERS); + + cast_memory = level.global_cast_memory[self->character_index][player->character_index]; + + if (player->episode_flags & EP_PV_SAFE_DOCS_DELIVERED && cast_memory && !(cast_memory->flags & MEMORY_HIRED)) + { + Voice_Specific (self, player, hiredguy_ask, 10); + return (0); + } + + if (player->episode_flags & EP_PV_TALKED_LOUIE) + { + if (Buster && self == Buster) + { + if (Fingers) + { + cast_memory = level.global_cast_memory[Fingers->character_index][player->character_index]; + + if (cast_memory && cast_memory->flags & MEMORY_HIRED) + { + // gi.dprintf ("FIXME SOUND TODO: %s:sorry I only work alone\n", Buster->name); + Voice_Specific (self, player, hiredguy_ask, 18); + return (0); + } + } + } + else if (Fingers && self == Fingers) + { + if (Buster) + { + cast_memory = level.global_cast_memory[Buster->character_index][player->character_index]; + if (cast_memory && cast_memory->flags & MEMORY_HIRED) + { + // gi.dprintf ("FIXME SOUND TODO: %s:sorry I only work alone\n", Fingers->name); + Voice_Specific (self, player, hiredguy_ask, 18); + return (0); + } + } + } + + + { + cast_memory_t *cast_memory; + + if (Buster && self == Buster) + { + cast_memory = level.global_cast_memory[self->character_index][player->character_index]; + + if (!(cast_memory->flags & MEMORY_HIRE_FIRST_TIME)) + { + cast_memory->flags |= MEMORY_HIRE_FIRST_TIME; + Voice_Specific (self, player, hiredguy_ask, 14); + return (0); + } + else + return (1); + } + else if (Fingers && self == Fingers) + { + cast_memory = level.global_cast_memory[self->character_index][player->character_index]; + if (!(cast_memory->flags & MEMORY_HIRE_FIRST_TIME)) + { + cast_memory->flags |= MEMORY_HIRE_FIRST_TIME; + Voice_Specific (self, player, hiredguy_ask, 16); + return (0); + } + else + return (1); + } + } + } + else + { + Voice_Random (self, player, &hiredguy_ask[10], 4); + return (0); + } + // only the two safe crackers are allowed to join the player + return (1); + } + else if (player->episode_flags & EP_PV_SAFE_DOCS_DELIVERED) + return (1); + else + { + if (!(player->episode_flags & EP_PV_FIND_LOUIE)) + EP_Skidrow_Register_EPFLAG (player, EP_PV_FIND_LOUIE); + + if (self->gender == GENDER_MALE) + Voice_Random (self, player, &hiredguy_ask[10], 4); + else + Voice_Random (self, player, &hiredgal_specific[12], 4); + + return (0); + } +} + +void EP_PV_SpecialEventDeath (edict_t *self) +{ + edict_t *player; + edict_t *idiot; + + player = &g_edicts[1]; + + if (self->name_index == NAME_BUSTER) + EP_Skidrow_Register_EPFLAG (player, EP_PV_BUSTERISDEAD); + + if (self->name_index == NAME_FINGERS) + EP_Skidrow_Register_EPFLAG (player, EP_PV_FINGERSISDEAD); + + if ( !(player->episode_flags & EP_PV_SAFEDOORISOPEN) && + (player->episode_flags & EP_PV_BUSTERISDEAD && player->episode_flags & EP_PV_FINGERSISDEAD)) + { + idiot = G_Find (NULL, FOFS (targetname), "trigger_idiot"); + + if (idiot) + idiot->use (idiot, player, player); + else + gi.dprintf ("error you are an idiot\n"); + + player->episode_flags = player->client->pers.episode_flags = 0; + } + +} + +void EP_PVFlags (edict_t *self) +{ + if (self->name_index == NAME_MOMO) + { + self->cast_info.aiflags |= AI_IMMORTAL; + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + self->s.model_parts[PART_GUN2].invisible_objects = (1<<0 | 1<<1); + } + else if ((strstr (level.mapname, "bar_"))) + { + // make all weapons invisible while we are in a bar + if (self->gender == GENDER_MALE || self->gender == GENDER_FEMALE) + { + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + self->s.model_parts[PART_GUN2].invisible_objects = (1<<0 | 1<<1); + } + } +} + + +void EP_PV_CheckMomo (edict_t *ent, cast_memory_t *mem) +{ + if (ent->episode_flags & EP_PV_MOMO_ASKED_MONEY) + mem->inc++; + +} + +qboolean EP_PV_DoKey (edict_t *self, edict_t *other) +{ + if (other->name_index == NAME_FINGERS || other->name_index == NAME_BUSTER && self->client) + return true; + else + return false; +} + +extern mmove_t punk_move_walk_dokey; +extern mmove_t punk_move_crch_dokey; + +extern mmove_t runt_move_walk_dokey; +extern mmove_t runt_move_crch_dokey; + +extern mmove_t bitch_move_walk_dokey; + +extern mmove_t thug_move_walk_dokey; +extern mmove_t thug_move_crch_dokey; + +void EP_PV_Check_DoKey (edict_t *self, edict_t *ent) +{ + edict_t *Buster; + edict_t *Fingers; + edict_t *dest; + vec3_t vec; + float dist; + + Buster = EP_GetCharacter (NAME_BUSTER); + Fingers = EP_GetCharacter (NAME_FINGERS); + + if (!ent) + return; + + if (!(ent->targetname)) + { + if (Fingers) + { + self->cast_info.aiflags &= ~AI_DOKEY; + Fingers->cast_info.aiflags &= ~AI_DOKEY; + } + if (Buster) + { + self->cast_info.aiflags &= ~AI_DOKEY; + Buster->cast_info.aiflags &= ~AI_DOKEY; + } + + return; + } + + + // its a safe and its locked + if (!strcmp (ent->targetname, "safe_door") && ent->key == -1) + { + dest = G_Find (NULL, FOFS (targetname), ent->target); // ai_safespot + + if (Buster && Buster->cast_info.aiflags & AI_DOKEY) + { + if (!(Buster->goal_ent) || !(Buster->enemy)) + { + if (visible (Buster, dest)) + { + VectorSubtract (Buster->s.origin, dest->s.origin, vec); + dist = VectorLength (vec); + + if (dist < 384) + { + Buster->goal_ent = dest; + self->cast_info.aiflags &= ~AI_DOKEY; + Buster->cast_info.aiflags &= ~AI_DOKEY; + Buster->cast_info.currentmove = &runt_move_walk_dokey; + } + } + } + } + else if (Fingers && Fingers->cast_info.aiflags & AI_DOKEY) + { + if (!(Fingers->goal_ent) || !(Fingers->enemy)) + { + if (visible (Fingers, dest)) + { + VectorSubtract (Fingers->s.origin, dest->s.origin, vec); + dist = VectorLength (vec); + + if (dist < 384) + { + Fingers->goal_ent = dest; + + self->cast_info.aiflags &= ~AI_DOKEY; + Fingers->cast_info.aiflags &= ~AI_DOKEY; + + Fingers->cast_info.currentmove = &thug_move_walk_dokey; // this should be called dokey + + // make the guns invisible + Fingers->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + Fingers->s.model_parts[PART_GUN2].invisible_objects = (1<<0 | 1<<1); + + } + } + } + } + else + gi.dprintf ("there is no one to open the safe\n"); + } + + + +} + + +void EP_PV_ReachedDoKey (edict_t *self) +{ + vec3_t vec; + float dist; + edict_t *dest; + + VectorSubtract (self->s.origin, self->goal_ent->s.origin, vec); + dist = VectorLength (vec); + + if (dist < 32) + { + if (self->name_index == NAME_BUSTER) + { + self->cast_info.currentmove = &runt_move_crch_dokey; + } + else if (self->name_index == NAME_FINGERS) + { + self->goal_ent = NULL; + + dest = G_Find (NULL, FOFS (targetname), "trigger_fingers"); + if (dest->use) + { + dest->use (dest, self, self); + } + + self->cast_info.currentmove = &thug_move_crch_dokey; + } + else if (self->name_index == NAME_YOLANDA) + { + self->goal_ent = NULL; + self->cast_info.currentmove = self->cast_info.move_stand; + self->cast_info.aiflags |= AI_TALK; + + { + edict_t *Laurel; + vec3_t vec; + + Laurel = EP_GetCharacter (NAME_LAUREL); + + if (Laurel) + { + VectorSubtract (Laurel->s.origin, self->s.origin, vec); + VectorNormalize (vec); + self->ideal_yaw = vectoyaw (vec); + M_ChangeYawOld (self); + Laurel->cast_info.aiflags |= AI_TALK; + + Voice_Specific (Laurel, self, neutral_converse_to_female, 6); + } + + } + + } + + } + /* + else if (dist < 128) + { + if (self->name_index == NAME_LAUREL) + { + self->goal_ent = NULL; + self->cast_info.currentmove = self->cast_info.move_stand; + + { + edict_t *Yolanda; + vec3_t vec; + + Yolanda = EP_GetCharacter (NAME_YOLANDA); + + if (Yolanda) + { + VectorSubtract (self->s.origin, Yolanda->s.origin, vec); + VectorNormalize (vec); + Yolanda->ideal_yaw = vectoyaw (vec); + M_ChangeYawOld (Yolanda); + self->cast_info.aiflags |= AI_TALK; + + Voice_Specific (self, Yolanda, neutral_converse_to_female, 6); + } + + } + } + else if (self->name_index == NAME_HARDEY) + { + self->goal_ent = NULL; + self->cast_info.currentmove = self->cast_info.move_stand; + + } + } + */ + +} + +void EP_PV_EndDoKey (edict_t *self) +{ + edict_t *dest; + edict_t *player; + + player = &g_edicts[1]; + + if (self->name_index == NAME_BUSTER) + { + self->cast_info.currentmove = self->cast_info.move_run; + + dest = G_Find (NULL, FOFS (targetname), "trigger_buster"); + + if (dest) + if (dest->use) + { + dest->use (dest, self, self); + } + + // spawn a grenade + // FIXME: need to replace with dynamite + { + // JOSEPH 17-MAY-99 + fire_dynamite (self, self->s.origin, vec3_origin, 120, 750, 5.0, 256); + // fire_grenade (self, self->s.origin, vec3_origin, 120, 750, 5.0, 256); + // END JOSEPH + // gi.dprintf ("FIXME SOUND TODO: %s: run she's gonna blow\n", self->name); + Voice_Specific (self, player, hiredguy_ask, 15); + EP_Skidrow_Register_EPFLAG (player, EP_PV_SAFEDOORISOPEN); + } + + } + else if (self->name_index == NAME_FINGERS) + { + self->cast_info.currentmove = self->cast_info.move_run; + // gi.dprintf ("FIXME SOUND TODO %s: there you go easy money!\n", self->name); + Voice_Specific (self, player, hiredguy_ask, 17); + EP_Skidrow_Register_EPFLAG (player, EP_PV_SAFEDOORISOPEN); + + // he's done so show the guns + self->s.model_parts[PART_GUN].invisible_objects = 0; + self->s.model_parts[PART_GUN2].invisible_objects = 0; + + } + +} + +qboolean EP_PV_UnlockDoorFlag (edict_t *ent) +{ + + return false; + +} + +void EP_PV_HiredGuysRegisterFlags (edict_t *ent, edict_t *other) +{ + if (other->name_index == NAME_FINGERS || other->name_index == NAME_BUSTER) + EP_Skidrow_Register_EPFLAG (ent, EP_PV_HIRED_SAFE_BOY); +} + +/*QUAKED misc_pv_afraid (.5 .5 1) (-16 -16 -24) (16 16 48) +used by actors to pick location where it is safer to run away from the player +*/ + +void misc_pv_afraid_think (edict_t *self) +{ + edict_t *Yolanda; + edict_t *Laurel; + edict_t *Hardey; + vec3_t vec; + float dist; + + Yolanda = EP_GetCharacter (NAME_YOLANDA); + + if (!self->count) + { + if (Yolanda) + { + self->count = 1; + gi.sound(Yolanda, CHAN_VOICE, gi.soundindex("actors/female/yolanda/shakin.wav"), 1, ATTN_NORM, 0); + } + } + else if (self->count == 3) + return; + + if (Yolanda) + { + + VectorSubtract (Yolanda->s.origin, self->s.origin, vec); + dist = VectorLength (vec); + + // gi.dprintf ("dist: %5.3f\n", dist); + + if (dist < 128) + { + if (self->count == 1) + { + Yolanda->cast_info.currentmove = &bitch_move_walk_dokey; + Yolanda->cast_info.aiflags &= ~AI_TALK; + } + + Laurel = EP_GetCharacter (NAME_LAUREL); + Hardey = EP_GetCharacter (NAME_HARDEY); + + if (Laurel && self->count == 1) + { + { + edict_t *ent = NULL; + + ent = G_Find (ent, FOFS(classname), "misc_pv_afraid"); + + if (ent) + { + Laurel->goal_ent = ent; + ent->cast_info.aiflags |= AI_GOAL_RUN; + Laurel->cast_info.aiflags &= ~AI_TALK; + } + + } + + Laurel->cast_info.talk_ent = NULL; + Laurel->cast_info.currentmove = Laurel->cast_info.move_run; + self->count = 2; + self->nextthink = level.time + 2.0; + } + + else if (Hardey && self->count == 2) + { + /* + { + edict_t *ent = NULL; + + ent = G_Find (ent, FOFS(classname), "misc_pv_afraid"); + + if (ent) + { + // Hardey->goal_ent = ent; + ent->cast_info.aiflags |= AI_GOAL_RUN; + Hardey->cast_info.aiflags &= ~AI_TALK; + } + + } + */ + + if (Laurel) + Hardey->goal_ent = Laurel; + else + Hardey->goal_ent = Yolanda; + + Hardey->cast_info.aiflags &= ~AI_TALK; + Hardey->cast_info.talk_ent = NULL; + Hardey->cast_info.currentmove = Hardey->cast_info.move_run; + self->count = 3; + } + } + else + self->nextthink = level.time + 0.1; + + } + + +} + +void SP_misc_pv_afraid (edict_t *self) +{ + if (deathmatch->value) + { + G_FreeEdict(self); + return; + } + + self->movetype = MOVETYPE_NONE; + self->solid = SOLID_NOT; + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 48); + + self->cast_info.aiflags |= AI_RUN_LIKE_HELL; + self->count = 0; + + AI_Ent_droptofloor( self ); + + gi.linkentity (self); +} + + +/*QUAKED ai_pv_fuseblown1 (.5 .5 1) ? +This will set the EP_PV_FUSEBLOWN flag +*/ + +void ai_fuseblown_touch1 (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + int index; + gitem_t *item; + + if (!(other->client)) + return; + + item = FindItem ("Fuse"); + index = ITEM_INDEX (item); + + if (other->client->pers.inventory[ index ]) + { + self->touch = NULL; + return; + } + + if (!(other->episode_flags & EP_PV_ONEFUSE)) + EP_Skidrow_Register_EPFLAG (other, EP_PV_ONEFUSE); + + if (!(other->episode_flags & EP_PV_FUSEISBLOWN1)) + { + EP_Skidrow_Register_EPFLAG (other, EP_PV_FUSEISBLOWN1); + + if (other->episode_flags & EP_PV_ONEFUSE && other->episode_flags & EP_PV_FUSEISBLOWN2) + { + gi.sound(other, CHAN_VOICE, gi.soundindex("scenaric/fuse2.wav"), 1, ATTN_NORM, 0); + } + else + { + gi.sound(other, CHAN_VOICE, gi.soundindex("scenaric/fuse1.wav"), 1, ATTN_NORM, 0); + } + + self->touch = NULL; + + } + // FIXME + // we need to play a wav file + +} + +void SP_pv_fuse_blown1 (edict_t *ent) +{ + if (deathmatch->value) + { + G_FreeEdict(ent); + return; + } + + ent->solid = SOLID_TRIGGER; + ent->touch = ai_fuseblown_touch1; + + ent->svflags |= SVF_NOCLIENT; + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); + +} + +/*QUAKED ai_pv_fuseblown2 (.5 .5 1) ? +This will set the EP_PV_FUSEBLOWN flag +*/ + +void ai_fuseblown_touch2 (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + int index; + gitem_t *item; + + if (!(other->client)) + return; + + item = FindItem ("Fuse"); + index = ITEM_INDEX (item); + + if (other->client->pers.inventory[ index ]) + { + self->touch = NULL; + return; + } + + if (!(other->episode_flags & EP_PV_ONEFUSE)) + EP_Skidrow_Register_EPFLAG (other, EP_PV_ONEFUSE); + + if (!(other->episode_flags & EP_PV_FUSEISBLOWN2)) + { + EP_Skidrow_Register_EPFLAG (other, EP_PV_FUSEISBLOWN2); + + if (other->episode_flags & EP_PV_ONEFUSE && other->episode_flags & EP_PV_FUSEISBLOWN1) + { + gi.sound(other, CHAN_VOICE, gi.soundindex("scenaric/fuse2.wav"), 1, ATTN_NORM, 0); + } + else + { + gi.sound(other, CHAN_VOICE, gi.soundindex("scenaric/fuse1.wav"), 1, ATTN_NORM, 0); + } + + self->touch = NULL; + + } + + // FIXME + // we need to play a wav file + +} + +void SP_pv_fuse_blown2 (edict_t *ent) +{ + if (deathmatch->value) + { + G_FreeEdict(ent); + return; + } + + ent->solid = SOLID_TRIGGER; + ent->touch = ai_fuseblown_touch2; + + ent->svflags |= SVF_NOCLIENT; + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); + +} + + +/*QUAKED ai_pv_deadlouie (.5 .5 1) ? +This will set the EP_PV_LOUIEPVB flag +*/ + +void ai_louiedead_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + if (!(other->client)) + return; + + if (!(other->episode_flags & EP_PV_LOUIEPVB)) + { + EP_Skidrow_Register_EPFLAG (other, EP_PV_LOUIEPVB); + // gi.sound(other, CHAN_VOICE, gi.soundindex("scenaric/louieisdead.wav"), 1, ATTN_NORM, 0); + self->touch = NULL; + } + + // FIXME + // we need to play a wav file + +} + +void SP_pv_deadlouie (edict_t *ent) +{ + if (deathmatch->value) + { + G_FreeEdict(ent); + return; + } + + ent->solid = SOLID_TRIGGER; + ent->touch = ai_louiedead_touch; + + ent->svflags |= SVF_NOCLIENT; + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); + +} + +#include "ep_log.h" + +extern int the_log_page; + +void EP_PV_Player_Log (edict_t *self, int page) +{ + int len; + int i; + int cnt = 0; + int select = 0; + + len = 0; + + Com_sprintf (game.helpmessage1, sizeof(game.helpmessage1), ""); + Com_sprintf (game.helpmessage2, sizeof(game.helpmessage2), ""); + + the_log_page += page; + + if (the_log_page < 0) + the_log_page = 0; + else if (the_log_page >= NUM_PV_PLAYER_LOG) + the_log_page = 0; + + for (i=1; iclient->pers.episode_flags & ep_pv_player_log[i].ep_flag) + cnt++; + + if (cnt == the_log_page) + { + select = i; + break; + } + } + + if (!page || !the_log_page) + for (i=0; iname_index == NAME_MOMO && other->client) + { + if (mem->timestamp < (level.time - 8)) + { // haven't seen them for a while + other->episode_flags &= ~EP_RC_MOMO_ASKED_MONEY; + // mem->flags &= ~MEMORY_LASTWARNING; + } + + if ((mem->memory_type == MEMORY_TYPE_ENEMY) /*&& !other->client->pers.weapon*/) + { // give them a chance to make friends if they holster + self->enemy = NULL; + + // make them a neutral instead of enemy + AI_RemoveFromMemory( self, mem ); + AI_AddToMemory( self, mem, MEMORY_TYPE_NEUTRAL ); + mem->flags &= ~MEMORY_HOSTILE_ENEMY; + } + + return true; + } + + if (self->name_index == NAME_SCALPER && other->client) + { + + other->episode_flags &= ~EP_RC_SCALPER_ASKED_MONEY; + + mem->flags &= ~MEMORY_ASSHOLE; + + return true; + } + + if (self->name_index == NAME_LOLA && other->client) + { + if ((mem->memory_type == MEMORY_TYPE_ENEMY) && !(other->client->pers.weapon)) + { // give them a chance to make friends if they holster + self->enemy = NULL; + + // make them a neutral instead of enemy + AI_RemoveFromMemory( self, mem ); + AI_AddToMemory( self, mem, MEMORY_TYPE_NEUTRAL ); + mem->flags &= ~MEMORY_HOSTILE_ENEMY; + } + + return false; + } + + return false; +} + +qboolean EP_RC_CastUse (edict_t *self, edict_t *other, edict_t *activator) +{ + return false; +} + +qboolean EP_RC_EventSpeech (edict_t *self, edict_t *other, int saywhat) +{ + cast_memory_t *mem; + + mem = level.global_cast_memory[ self->character_index ][ other->character_index ]; + + switch (saywhat) + { + + case say_neutral: + + if ((self->name_index == NAME_MOMO) + && (other->client)) + { + return (ProcessRCMomo (self, other)); + } + + if (self->name_index == NAME_SCALPER && other->client) + { + + if(other->episode_flags & EP_RC_SCALPER_GAVE_MONEY) + { + if (!(other->episode_flags & EP_RC_SCALPER_RANDOM)) + { + EP_Skidrow_Register_EPFLAG (other, EP_RC_SCALPER_RANDOM); + Voice_Random (self, other, &rc_scalper[6], 3); + } + else + { + Voice_Specific (self, other, rc_scalper, 3); + other->episode_flags = other->client->pers.episode_flags &= ~EP_RC_SCALPER_RANDOM; + } + return true; + } + + if (!(other->episode_flags & EP_RC_SCALPER_LINE1)) + { + EP_Skidrow_Register_EPFLAG (other, EP_RC_SCALPER_LINE1); + Voice_Random (self, other, rc_scalper, 2); + return true; + } + + /* + if (other->episode_flags & EP_RC_SCALPER_ASKED_MONEY) + { + Voice_Random (self, other, &rc_scalper[6], 3); + return true; + } + */ + + if (!(other->episode_flags & EP_RC_TALKED_TO_SCALPER) && !(self->episode_flags & EP_RC_SCALPER_GAVE_MONEY)) + { + mem = level.global_cast_memory[ self->character_index ][ other->character_index ]; + + Voice_Random (self, other, rc_scalper, 2); + EP_Skidrow_Register_EPFLAG (other, EP_RC_TALKED_TO_SCALPER); + mem->response = Resp_Scalper_GotTicket; + + return true; + } + else if (!(other->episode_flags & EP_RC_SCALPER_ASKED_MONEY) && !(self->episode_flags & EP_RC_SCALPER_GAVE_MONEY)) + { + if (mem = level.global_cast_memory[ self->character_index ][ other->character_index ]) + { + Voice_Random (self, other, rc_scalper, 2); + + EP_Skidrow_Register_EPFLAG (other, EP_RC_SCALPER_ASKED_MONEY); + EP_Skidrow_Register_EPFLAG (other, EP_RC_TALKED_TO_SCALPER); + mem->response = Resp_Scalper_GotTicket; + + return true; + } + } + + // have they responded yet? + else if ( (other->response_ent == self) + && (other->last_response_time > (level.time - 5))) + { + + if (other->last_response == resp_yes) + { + int index; + gitem_t *item; + + Voice_Random ( self, other, &rc_scalper[2], 2 ); + // gi.dprintf ("Scalper: here's your ticket \n"); + + item = FindItem ("Ticket"); + index = ITEM_INDEX (item); + other->client->pers.inventory[ index ] = 1; + // show icon and name on status bar + other->client->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(item->icon); + other->client->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS+index; + other->client->pickup_msg_time = level.time + 5.5; + + EP_Skidrow_Register_EPFLAG (other, EP_RC_SCALPER_GAVE_MONEY); + EP_Skidrow_Register_EPFLAG (other, EP_RC_SCALPER_NOTEPAD); + } + else + { + Voice_Random (self, other, &rc_scalper[4], 2); + mem->response = Resp_Scalper_GotTicket; + } + + if (mem = level.global_cast_memory[ self->character_index ][ other->character_index ]) + mem->response = NULL; + + other->response_ent = NULL; + return true; + } + + else if ( (specific[0].last_played < (level.time - 3)) + && (specific[1].last_played < (level.time - 4))) + { + Voice_Random ( self, other, rc_scalper, 2 ); + + if (mem = level.global_cast_memory[ self->character_index ][ other->character_index ]) + mem->response = Resp_Scalper_GotTicket; + + return true; + } + + else + { + if (!(other->episode_flags & EP_RC_SCALPER_NOTEPAD)) + { + EP_Skidrow_Register_EPFLAG (other, EP_RC_SCALPER_NOTEPAD); + Voice_Specific ( self, other, rc_scalper, 6); + } + else + Voice_Random ( self, other, &rc_scalper[6], 3); + return true; + } + + return true; + } + + + if (self->name_index == NAME_LOLA && other->client) + { + if (!(other->episode_flags & EP_RC_LOLA_CLUE1)) + { + EP_Skidrow_Register_EPFLAG (other, EP_RC_LOLA_CLUE1); + EP_Skidrow_Register_EPFLAG (other, EP_RC_LOLA_NOTEBOOK); + Voice_Specific (self, other, rc_lola, 0); + } + else + { + Voice_Random (self, other, &rc_lola[1], 3); + other->episode_flags = other->client->pers.episode_flags &= ~EP_RC_LOLA_CLUE1; + } + return true; + } + + return false; + break; + + case say_hostile: + + if ((self->name_index == NAME_MOMO) + && (other->client)) + { + return (ProcessRCMomo (self, other)); + } + + if (self->name_index == NAME_SCALPER && (other->client)) + { + + if(other->episode_flags & EP_RC_SCALPER_GAVE_MONEY) + { + if (!(other->episode_flags & EP_RC_SCALPER_RANDOM)) + { + EP_Skidrow_Register_EPFLAG (other, EP_RC_SCALPER_RANDOM); + Voice_Random (self, other, &rc_scalper[6], 3); + } + else + { + Voice_Specific (self, other, rc_scalper, 3); + other->episode_flags = other->client->pers.episode_flags &= ~EP_RC_SCALPER_RANDOM; + } + return true; + } + + if (other->client->ps.stats[STAT_HUD_SELF_TALK] == TT_POSITIVE) + { + mem = level.global_cast_memory [self->character_index][other->character_index]; + mem->flags &= ~MEMORY_ASSHOLE; + + Voice_Random (self, other, &rc_scalper[6], 3); + + return true; + } + + + else + { + + Voice_Random (self, other, &rc_scalper[9], 4); + + return true; + } + + } + + if (self->name_index == NAME_LOLA && other->client) + { + if (other->client->ps.stats[STAT_HUD_SELF_TALK] == TT_POSITIVE) + { + mem = level.global_cast_memory [self->character_index][other->character_index]; + mem->flags &= ~MEMORY_ASSHOLE; + + // Voice_Random (self, other, &rc_lola[4], 3); + if (!(other->episode_flags & EP_RC_LOLA_CLUE1)) + { + EP_Skidrow_Register_EPFLAG (other, EP_RC_LOLA_CLUE1); + EP_Skidrow_Register_EPFLAG (other, EP_RC_LOLA_NOTEBOOK); + Voice_Specific (self, other, rc_lola, 0); + } + else + { + Voice_Random (self, other, &rc_lola[1], 3); + other->episode_flags = other->client->pers.episode_flags &= ~EP_RC_LOLA_CLUE1; + } + + return true; + } + else + { + // just do a random curse at the player + Voice_Random (self, other, &rc_lola[4], 3); + return true; + } + + return true; + } + return false; + break; + } + + + return false; +} + +void EP_RC_ItemPickup ( edict_t *self, edict_t *other ) +{ + +} + +// EP_RC_Script + +void EP_RC_Script( edict_t *ent, char *scriptname ) +{ + +} + +void Resp_Scalper_GotTicket ( edict_t *self, edict_t *other, response_t response ) +{ + + if (response == resp_yes) + { + Voice_Player_Specific(self, TT_YES); + + if (!(self->episode_flags & EP_RC_SCALPER_GAVE_MONEY)) + { + if (self->client->pers.currentcash >= 50) + { + self->client->pers.currentcash-=50; + Voice_Specific( self, other, player_50bucks, 0 ); + + other->episode_flags |= EP_RC_SCALPER_GAVE_MONEY; + } + else + { + // gi.cprintf( self, PRINT_HIGH, "FIXME: you don't have 50 bucks.\n" ); + Voice_Specific( self, other, player_50bucks, 1 ); + response = resp_no; + } + } + else + { + // gi.cprintf( self, PRINT_HIGH, "FIXME: you don't have 50 bucks.\n" ); + Voice_Specific( self, other, player_50bucks, 1 ); + response = resp_no; + } + } + else if (response == resp_no) + { + // gi.cprintf( self, PRINT_HIGH, "FIXME: you don't have 50 bucks.\n" ); + Voice_Specific( self, other, player_50bucks, 1 ); + Voice_Player_Specific(self, TT_NO); + } + + other->cast_info.talk_ent = self; + + self->response_ent = other; + self->last_response_time = level.time; + self->last_response = response; + +} + + +void Resp_RCMomo_GotMoney ( edict_t *self, edict_t *other, response_t response ) +{ + cast_memory_t *mem; + + if (self->episode_flags & EP_RC_MOMO_TOOK_MONEY) + return; + + mem = level.global_cast_memory[ other->character_index ][ self->character_index ]; + + if (response == resp_yes) + { + Voice_Player_Specific(self, TT_YES); + Voice_Random (self, other, player_money_yes, NUM_PLAYER_MONEY_YES); // yes + } + else if (response == resp_no) + { + Voice_Player_Specific (self, TT_NO); + Voice_Random (self, other, player_money_no, NUM_PLAYER_MONEY_NO); // no + } + + self->response_ent = other; + self->last_response_time = level.time; + self->last_response = response; +} + + +// generic process for hostile or neutral momo +qboolean ProcessRCMomo (edict_t *self, edict_t *other) +{ + + cast_memory_t *mem; + + mem = level.global_cast_memory[ self->character_index ][ other->character_index ]; + + if (mem->flags & MEMORY_LASTWARNING) + { + Voice_Random ( self, other, &momo_specific[13], 2); // get the fuck out of my foyer + + return true; + } + + if (other->episode_flags & EP_RC_MOMO_TOOK_MONEY) + { + // Ridah, 5-8-99, we've already taken their money, so say one of the following.. + + if (!(mem->flags & MEMORY_ASSHOLE)) + Voice_Random ( self, other, &momo_specific[12], 2); // so what's it gonna be... in or out? + else // they've cussed us, don't act all happy to see them + Voice_Random ( self, other, &momo_specific[13], 2); // get the fuck out of my foyer + + return true; + } + + if (!(other->episode_flags & EP_RC_MOMO_FIRST_TIME)) + { + + Voice_Specific (self, other, momo_specific, 20); // welcome.wav + + EP_Skidrow_Register_EPFLAG (other, EP_RC_MOMO_FIRST_TIME); + + return true; + } + + // Ridah, 5-8-99, I changed this so it clears this flag in EP_CastSight() if Momo sees you after not having seen you for a while + if (!(other->episode_flags & EP_RC_MOMO_ASKED_MONEY)) + { + // note to Rafael: you can use "inc" for anything.. usually used to count events + if (!mem->inc) + { + if (!( mem->flags & MEMORY_ASSHOLE)) + { + Voice_Random (self, other, &momo_specific[1], 3); // 10 dollar cover charge + mem->inc = 1; + } + else + { + Voice_Specific (self, other, momo_specific, 5); // now it's 20 bucks! + mem->inc = 2; + } + } + else + { + Voice_Specific (self, other, momo_specific, 9); // your back + } + + EP_Skidrow_Register_EPFLAG (other, EP_RC_MOMO_ASKED_MONEY); + + mem->response = Resp_RCMomo_GotMoney; + return true; + } + + // have they responded yet? + else if ( (other->response_ent == self) + && (other->last_response_time > (level.time - 5))) + { + + if (other->last_response == resp_yes) + { + edict_t *door = NULL; + int cost; + + if ( mem->flags & MEMORY_ASSHOLE) + { + if (mem->inc < 3) + cost = 20; + else + cost = 30; + } + else + { + cost = 10; + } + + // have we really have money to give? + if (other->client->pers.currentcash >= cost) + { + other->client->pers.currentcash -= cost; + self->currentcash += cost; + + EP_Skidrow_Register_EPFLAG (other, EP_RC_MOMO_TOOK_MONEY); + + // TBD: at this point need to have momo walk away to a path corner cast + + Voice_Specific( self, other, momo_specific, 10 ); // go on in + + + // JOSEPH 9-MAR-99 + // in case there's more than one door + { // unlock the door for player + // Find target door + edict_t *e; + int i; + + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->targetname) && (!strcmp(e->targetname, "bardoor_rc"))) + { + // Unlock target door + if (e->key == -1) + { + e->key = 0; + e->targetname = NULL; + } + } + } + + + EP_Skidrow_Register_EPFLAG (other, EP_RC_MOMO_TOOK_MONEY); + } + // END JOSEPH + + } + else + { + // don't have money to give + Voice_Random( self, other, &momo_specific[7], 2 ); // see me later when you got the money + } + } + else // they said no + { + Voice_Random( self, other, &momo_specific[13], 3 ); + } + + other->last_response_time = 0; // so we don't process this response again + + mem->response = NULL; + other->response_ent = NULL; + + return true; + } + + else + { + + if (mem->flags & MEMORY_ASSHOLE) + { + if (!(mem->flags & MEMORY_UPSET)) + { + mem->flags |= MEMORY_UPSET; + + if (mem->inc < 3) + { + Voice_Specific (self, other, momo_specific, 5); + } + else // 30 bucks for you now! + { + Voice_Specific (self, other, momo_specific, 6); + } + } + else + { + Voice_Random (self, other, &momo_specific[12], 4); + + // This needs to be here, or Momo will never take the money when mad + if (momo_specific[12].last_played == level.time) + { // we just asked them if they wanna come in, so let them respond + mem->response = Resp_RCMomo_GotMoney; + } + + } + } + else + { + Voice_Random (self, other, &momo_specific[12], 5); + + if (momo_specific[12].last_played == level.time) + { // we just asked them if they wanna come in, so let them respond + mem->response = Resp_RCMomo_GotMoney; + } + } + + } + + return true; +} + + +int FindMarxBrothers (edict_t *player) +{ + if (player->episode_flags & EP_RC_GROUCHO_DEAD + && player->episode_flags & EP_RC_HARPO_DEAD + && player->episode_flags & EP_RC_CHICO_DEAD) + return (1); + + return (0); + +} + + +int EP_RC_HiredGuysFlags (edict_t *player, edict_t *self) +{ + int marx_brothers_defeated; + cast_memory_t *cast_memory; + + marx_brothers_defeated = FindMarxBrothers (player); + + if (self->name_index == NAME_BUTCH) + { + + if (player->episode_flags & EP_RC_JOKERS_HIRED) + return (1); + + if (player->episode_flags & EP_RC_PAY_500) + { + if (player->client->pers.currentcash >= 500) + { + player->client->pers.currentcash-=500; + EP_Skidrow_Register_EPFLAG (player, EP_RC_JOKERS_HIRED); + + { + // auto hire butch and patrick + edict_t *Patrick; + + Patrick = EP_GetCharacter (NAME_PATRICK); + + if (Patrick) + { + cast_memory = level.global_cast_memory[Patrick->character_index][player->character_index]; + + cast_memory->flags |= MEMORY_HIRED; + cast_memory->flags |= MEMORY_HIRE_FIRST_TIME; + cast_memory->flags |= MEMORY_HIRE_ASK; + + Patrick->leader = player; + Patrick->cast_info.aiflags |= AI_NOWALK_FACE; + Patrick->order = ORDER_FOLLOWME; + Patrick->order_timestamp = level.time; + Patrick->spawnflags &= ~2; + player->client->pers.friends++; + } + + cast_memory = level.global_cast_memory[self->character_index][player->character_index]; + cast_memory->flags |= MEMORY_HIRED; + cast_memory->flags |= MEMORY_HIRE_FIRST_TIME; + cast_memory->flags |= MEMORY_HIRE_ASK; + player->client->pers.friends++; + self->spawnflags &= ~2; + //gi.dprintf ("DEBUG: hired patrick and butch %d\n", player->client->pers.friends); + + } + return(1); + } + else + { + Voice_Specific (self, player, rc_butch, 12); + return (0); + } + } + else if (player->episode_flags & EP_RC_BUTCH_500) + { + EP_Skidrow_Register_EPFLAG (player, EP_RC_PAY_500); + Voice_Specific (self, player, rc_butch, 12); + return (0); + } + else if (player->episode_flags & EP_RC_FAILED_TEST) + { + EP_Skidrow_Register_EPFLAG (player, EP_RC_BUTCH_500); + Voice_Random (self, player, &rc_butch[7], 2); + return (0); + } + + // the player had defeated all three + // and he didn't cheat + if (marx_brothers_defeated && !(player->episode_flags & EP_RC_FAILED_TEST)) + { + EP_Skidrow_Register_EPFLAG (player, EP_RC_JOKERS_HIRED); + Voice_Random (self, player, &rc_butch[9], 2); + { + // need to auto hire butch and patrick + { + // auto hire butch and patrick + edict_t *Patrick; + + Patrick = EP_GetCharacter (NAME_PATRICK); + + if (Patrick) + { + cast_memory = level.global_cast_memory[Patrick->character_index][player->character_index]; + + cast_memory->flags |= MEMORY_HIRED; + cast_memory->flags |= MEMORY_HIRE_FIRST_TIME; + cast_memory->flags |= MEMORY_HIRE_ASK; + + Patrick->leader = player; + Patrick->cast_info.aiflags |= AI_NOWALK_FACE; + Patrick->order = ORDER_FOLLOWME; + Patrick->order_timestamp = level.time; + Patrick->spawnflags &= ~2; + player->client->pers.friends++; + } + + cast_memory = level.global_cast_memory[self->character_index][player->character_index]; + cast_memory->flags |= MEMORY_HIRED; + cast_memory->flags |= MEMORY_HIRE_FIRST_TIME; + cast_memory->flags |= MEMORY_HIRE_ASK; + player->client->pers.friends++; + self->spawnflags &= ~2; + //gi.dprintf ("DEBUG: hired patrick and butch %d\n", player->client->pers.friends); + + } + } + return (1); + } + + if (!(player->episode_flags & EP_RC_BUTCH_FIRST)) + { + EP_Skidrow_Register_EPFLAG (player, EP_RC_BUTCH_FIRST); + Voice_Random (self, player, rc_butch, 3); + } + else if (!(player->episode_flags & EP_RC_BUTCH_TALK1)) + { + EP_Skidrow_Register_EPFLAG (player, EP_RC_BUTCH_TALK1); + Voice_Specific (self, player, rc_butch, 3); + } + else if (!(player->episode_flags & EP_RC_BUTCH_TALK2)) + { + EP_Skidrow_Register_EPFLAG (player, EP_RC_BUTCH_TALK2); + Voice_Specific (self, player, rc_butch, 4); + } + else + { + player->episode_flags = player->client->pers.episode_flags &= ~EP_RC_BUTCH_TALK1; + player->episode_flags = player->client->pers.episode_flags &= ~EP_RC_BUTCH_TALK2; + Voice_Specific (self, player, rc_butch, 11); + } + + return (0); + } + + if (self->name_index == NAME_PATRICK) + { + + if (player->episode_flags & EP_RC_JOKERS_HIRED) + return (1); + + if (player->episode_flags & EP_RC_PAY_500) + { + if (player->client->pers.currentcash >= 500) + { + player->client->pers.currentcash-=500; + EP_Skidrow_Register_EPFLAG (player, EP_RC_JOKERS_HIRED); + + { + // auto hire butch and patrick + edict_t *Butch; + + Butch = EP_GetCharacter (NAME_BUTCH); + + if (Butch) + { + cast_memory = level.global_cast_memory[Butch->character_index][player->character_index]; + + cast_memory->flags |= MEMORY_HIRED; + cast_memory->flags |= MEMORY_HIRE_FIRST_TIME; + cast_memory->flags |= MEMORY_HIRE_ASK; + + Butch->leader = player; + Butch->cast_info.aiflags |= AI_NOWALK_FACE; + Butch->order = ORDER_FOLLOWME; + Butch->order_timestamp = level.time; + Butch->spawnflags &= ~2; + player->client->pers.friends++; + } + + cast_memory = level.global_cast_memory[self->character_index][player->character_index]; + cast_memory->flags |= MEMORY_HIRED; + cast_memory->flags |= MEMORY_HIRE_FIRST_TIME; + cast_memory->flags |= MEMORY_HIRE_ASK; + player->client->pers.friends++; + self->spawnflags &= ~2; + // gi.dprintf ("DEBUG: hired patrick and butch %d\n", player->client->pers.friends); + + } + return(1); + } + else + { + Voice_Specific (self, player, rc_patrick, 12); + return (0); + } + } + else if (player->episode_flags & EP_RC_BUTCH_500) + { + EP_Skidrow_Register_EPFLAG (player, EP_RC_PAY_500); + Voice_Specific (self, player, rc_patrick, 12); + return (0); + } + else if (player->episode_flags & EP_RC_FAILED_TEST) + { + EP_Skidrow_Register_EPFLAG (player, EP_RC_BUTCH_500); + Voice_Random (self, player, &rc_patrick[7], 2); + return (0); + } + + // the player had defeated all three + // and he didn't cheat + if (marx_brothers_defeated && !(player->episode_flags & EP_RC_FAILED_TEST)) + { + EP_Skidrow_Register_EPFLAG (player, EP_RC_JOKERS_HIRED); + Voice_Random (self, player, &rc_patrick[9], 2); + { + // need to auto hire butch and patrick + { + // auto hire butch and patrick + edict_t *Butch; + + Butch = EP_GetCharacter (NAME_BUTCH); + + if (Butch) + { + cast_memory = level.global_cast_memory[Butch->character_index][player->character_index]; + + cast_memory->flags |= MEMORY_HIRED; + cast_memory->flags |= MEMORY_HIRE_FIRST_TIME; + cast_memory->flags |= MEMORY_HIRE_ASK; + + Butch->leader = player; + Butch->cast_info.aiflags |= AI_NOWALK_FACE; + Butch->order = ORDER_FOLLOWME; + Butch->order_timestamp = level.time; + Butch->spawnflags &= ~2; + player->client->pers.friends++; + } + + cast_memory = level.global_cast_memory[self->character_index][player->character_index]; + cast_memory->flags |= MEMORY_HIRED; + cast_memory->flags |= MEMORY_HIRE_FIRST_TIME; + cast_memory->flags |= MEMORY_HIRE_ASK; + player->client->pers.friends++; + self->spawnflags &= ~2; + // gi.dprintf ("DEBUG: hired patrick and butch %d\n", player->client->pers.friends); + + } + } + return (1); + } + + if (!(player->episode_flags & EP_RC_BUTCH_FIRST)) + { + EP_Skidrow_Register_EPFLAG (player, EP_RC_BUTCH_FIRST); + Voice_Random (self, player, rc_patrick, 3); + } + else if (!(player->episode_flags & EP_RC_BUTCH_TALK1)) + { + EP_Skidrow_Register_EPFLAG (player, EP_RC_BUTCH_TALK1); + Voice_Specific (self, player, rc_patrick, 3); + } + else if (!(player->episode_flags & EP_RC_BUTCH_TALK2)) + { + EP_Skidrow_Register_EPFLAG (player, EP_RC_BUTCH_TALK2); + Voice_Specific (self, player, rc_patrick, 4); + } + else + { + player->episode_flags = player->client->pers.episode_flags &= ~EP_RC_BUTCH_TALK1; + player->episode_flags = player->client->pers.episode_flags &= ~EP_RC_BUTCH_TALK2; + Voice_Specific (self, player, rc_patrick, 11); + } + + return (0); + } + + if (player->episode_flags & EP_RC_JOKERS_HIRED) + { + cast_memory = level.global_cast_memory[self->character_index][player->character_index]; + + if (cast_memory && !(cast_memory->flags & MEMORY_HIRED)) + { + if (player->client->pers.friends < 2) + { + cast_memory->flags |= MEMORY_HIRED; + cast_memory->flags |= MEMORY_HIRE_FIRST_TIME; + cast_memory->flags |= MEMORY_HIRE_ASK; + + Voice_Random (self, player, rc_joker, 4); + + player->client->pers.friends++; + self->spawnflags &= ~2; + } + else + { + Voice_Specific (self, player, hiredguy_ask, 10); + return (0); + } + } + + return (1); + } + else + { + // Voice_Random (self, player, &rc_joker[4], 6); + + if (self->gender == GENDER_MALE) + { + if (!(player->episode_flags & EP_RC_JOKERS_NOTEPAD)) + { + EP_Skidrow_Register_EPFLAG (player, EP_RC_JOKERS_NOTEPAD); + Voice_Random (self, player, &rc_joker[6], 2); + } + else + Voice_Random (self, player, &rc_joker[4], 6); + } + else + gi.dprintf ("ERROR no female jokers\n"); + } + + + return (0); +} + +void EP_RCFlags (edict_t *self) +{ + if (self->name_index == NAME_MOMO) + { + self->cast_info.aiflags |= AI_IMMORTAL; + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + self->s.model_parts[PART_GUN2].invisible_objects = (1<<0 | 1<<1); + } + + // David should have his weapons invisible till he gets hired +} + +void EP_RC_CheckMomo (edict_t *ent, cast_memory_t *mem) +{ + if (ent->episode_flags & EP_RC_MOMO_ASKED_MONEY) + mem->inc++; + +} + +qboolean EP_RC_DoKey (edict_t *self, edict_t *other) +{ + return false; +} + +extern mmove_t punk_move_walk_dokey; +extern mmove_t punk_move_crch_dokey; + +extern mmove_t runt_move_walk_dokey; +extern mmove_t runt_move_crch_dokey; + +extern mmove_t bitch_move_walk_dokey; + +extern mmove_t thug_move_walk_dokey; +extern mmove_t thug_move_crch_dokey; + +void EP_RC_Check_DoKey (edict_t *self, edict_t *ent) +{ + return; +} + + +void EP_RC_ReachedDoKey (edict_t *self) +{ + vec3_t vec; + float dist; + + VectorSubtract (self->s.origin, self->goal_ent->s.origin, vec); + dist = VectorLength (vec); + +} + +void EP_RC_EndDoKey (edict_t *self) +{ + edict_t *dest = NULL; + edict_t *ent = NULL; + edict_t *player; + + player = &g_edicts[1]; + +} + +void EP_RC_HiredGuysRegisterFlags (edict_t *ent, edict_t *other) +{ + + return; +} + +void EP_RC_SpecialEventDeath (edict_t *self) +{ + edict_t *player; + + player = &g_edicts[1]; + + if (self->name_index == NAME_GROUCHO) + EP_Skidrow_Register_EPFLAG (player, EP_RC_GROUCHO_DEAD); + else if (self->name_index == NAME_HARPO) + EP_Skidrow_Register_EPFLAG (player, EP_RC_HARPO_DEAD); + else if (self->name_index == NAME_CHICO) + EP_Skidrow_Register_EPFLAG (player, EP_RC_CHICO_DEAD); + +} + +/*QUAKED rc_initiation_observer (.5 .5 1) (-16 -16 -24) (16 16 48) +will check to see if the player cheated +*/ + +void rc_observer_think (edict_t *self) +{ + edict_t *player; + + self->nextthink = level.time + 0.1; + + player = &g_edicts[1]; + + if(player->episode_flags & EP_RC_JOKERS_HIRED) + return; + + if (player->episode_flags & EP_RC_INTOBRUSH) + { + if (player->client->gun_noise) + { + { + edict_t *Butch = NULL; + edict_t *Patrick = NULL; + + Patrick = EP_GetCharacter (NAME_PATRICK); + Butch = EP_GetCharacter (NAME_BUTCH); + + if (Butch || Patrick) + { + gi.dprintf ("Hey! We heard that\n"); + EP_Skidrow_Register_EPFLAG (player, EP_RC_FAILED_TEST); + + if (Butch) + gi.sound(player, CHAN_VOICE, gi.soundindex("rc/actors/male/butch/hearshooting.wav"), 1, ATTN_NORM, 0); + else + gi.sound(player, CHAN_VOICE, gi.soundindex("rc/actors/male/patrick/hearshooting.wav"), 1, ATTN_NORM, 0); + + + self->nextthink = level.time + 15.0; + } + } + } + } +} + +void SP_rc_initiation_observer (edict_t *self) +{ + if (deathmatch->value) + { + G_FreeEdict(self); + return; + } + + self->movetype = MOVETYPE_NONE; + self->solid = SOLID_NOT; + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 48); + + self->think = rc_observer_think; + self->nextthink = level.time + 0.1; + + AI_Ent_droptofloor( self ); +} + + +/*QUAKED rc_initiation_brush (.5 .5 0) ? +marks where the player can no longer fire his gun +*/ + +void rc_initiation_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + vec3_t vec; + + if (!(other->client)) + return; + + // are we going into, or out of the territory? + + VectorSubtract( other->s.origin, self->pos1, vec ); + vec[2] = 0; + VectorNormalize( vec ); + + if (DotProduct( vec, self->movedir ) > 0) + { // going into + EP_Skidrow_Register_EPFLAG (other, EP_RC_INTOBRUSH); + other->episode_flags = other->client->pers.episode_flags &= ~EP_RC_OUTOFBRUSH; + + if (!(other->episode_flags & EP_RC_THE_WARNING)) + { + EP_Skidrow_Register_EPFLAG (other, EP_RC_THE_WARNING); + { + edict_t *Butch = NULL; + edict_t *Patrick = NULL; + + Patrick = EP_GetCharacter (NAME_PATRICK); + Butch = EP_GetCharacter (NAME_BUTCH); + + if (Butch || Patrick) + { + if (Butch) + gi.sound(other, CHAN_VOICE, gi.soundindex("rc/actors/male/butch/noshooting.wav"), 1, ATTN_NORM, 0); + else + gi.sound(other, CHAN_VOICE, gi.soundindex("rc/actors/male/patrick/noshooting.wav"), 1, ATTN_NORM, 0); + } + } + + } + + } + else // going out of + { + EP_Skidrow_Register_EPFLAG (other, EP_RC_OUTOFBRUSH); + other->episode_flags = other->client->pers.episode_flags &= ~EP_RC_INTOBRUSH; + } + + other->time_territory_touched = level.time; + +} + +void SP_rc_initiation_brush ( edict_t *ent ) +{ + if (deathmatch->value) + { + G_FreeEdict(ent); + return; + } + + ent->solid = SOLID_TRIGGER; + ent->touch = rc_initiation_touch; + + ent->svflags |= SVF_NOCLIENT; + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); + + // set the center pos + VectorAdd( ent->absmin, ent->absmax, ent->pos1 ); + VectorScale( ent->pos1, 0.5, ent->pos1 ); + + AngleVectors( ent->s.angles, ent->movedir, NULL, NULL ); +} + + +#include "ep_log.h" + +extern int the_log_page; + +void EP_RC_Player_Log (edict_t *self, int page) +{ + int len; + int i; + int cnt = 0; + int select = 0; + + len = 0; + + Com_sprintf (game.helpmessage1, sizeof(game.helpmessage1), ""); + Com_sprintf (game.helpmessage2, sizeof(game.helpmessage2), ""); + + the_log_page += page; + + if (the_log_page < 0) + the_log_page = 0; + else if (the_log_page >= NUM_RC_PLAYER_LOG) + the_log_page = 0; + + for (i=1; iclient->pers.episode_flags & ep_rc_player_log[i].ep_flag) + cnt++; + + if (cnt == the_log_page) + { + select = i; + break; + } + } + + if (!page || !the_log_page) + for (i=0; iname_index == NAME_MOE && other->client) + { + if (mem->timestamp < (level.time - 8)) + { // haven't seen them for a while + other->episode_flags &= ~EP_SY_MOE_FIRST_SIGHT; + } + return false; + } + + if (self->name_index == NAME_MOMO && other->client) + { + if (mem->timestamp < (level.time - 8)) + { // haven't seen them for a while + other->episode_flags &= ~EP_SY_MOMO_ASKED_MONEY; + // mem->flags &= ~MEMORY_LASTWARNING; + } + + if ((mem->memory_type == MEMORY_TYPE_ENEMY) /*&& !other->client->pers.weapon*/) + { // give them a chance to make friends if they holster + self->enemy = NULL; + + // make them a neutral instead of enemy + AI_RemoveFromMemory( self, mem ); + AI_AddToMemory( self, mem, MEMORY_TYPE_NEUTRAL ); + mem->flags &= ~MEMORY_HOSTILE_ENEMY; + } + + return true; + } + + if (self->name_index == NAME_POPEYE && other->client) + { + if ((mem->memory_type == MEMORY_TYPE_ENEMY) && !(other->client->pers.weapon)) + { // give them a chance to make friends if they holster + self->enemy = NULL; + + // make them a neutral instead of enemy + AI_RemoveFromMemory( self, mem ); + AI_AddToMemory( self, mem, MEMORY_TYPE_NEUTRAL ); + mem->flags &= ~MEMORY_HOSTILE_ENEMY; + } + return false; + } + + return false; +} + +qboolean EP_SY_CastUse (edict_t *self, edict_t *other, edict_t *activator) +{ + return false; +} + +qboolean EP_SY_EventSpeech (edict_t *self, edict_t *other, int saywhat) +{ + cast_memory_t *mem; + + mem = level.global_cast_memory[ self->character_index ][ other->character_index ]; + + switch (saywhat) + { + + case say_neutral: + + if (self->name_index == NAME_MOE && other->client) + { + if (!(other->episode_flags & EP_SY_MOE_FIRST_SIGHT)) + { + // HEY WHAT ARE YOU DOING HERE + EP_Skidrow_Register_EPFLAG (other, EP_SY_MOE_FIRST_SIGHT); + Voice_Specific (self, other, ty_mo, 0); + mem->flags |= MEMORY_UPSET; + return true; + } + + if (other->client->ps.stats[STAT_HUD_SELF_TALK] == TT_POSITIVE || mem->flags & MEMORY_UPSET) + { + mem->flags |= MEMORY_UPSET; + return (ProcessMoe (self, other, mem)); + } + else + return true; + } + + if (self->name_index == NAME_BWILLIE && other->client) + { + Voice_Random (self, other, sy_bigwillie, 5); + return true; + } + + if (self->name_index == NAME_DOGG && other->client) + { + Voice_Random (self, other, sy_dogg, 5); + return true; + } + + if ((self->name_index == NAME_MOMO) + && (other->client)) + { + return (ProcessSYMomo (self, other)); + } + + if (self->name_index == NAME_POPEYE && other->client) + { + { + float dist; + vec3_t vec; + + VectorSubtract (self->s.origin, other->s.origin, vec); + dist = VectorLength (vec); + if (dist > 192) + { + Voice_Specific (self, other, sy_popeye, 22); + return true; + } + + } + + if (!(other->episode_flags & EP_SY_SCREAMING_BITCH)) + { + // tell player about the bigwillie's girl + EP_Skidrow_Register_EPFLAG (other, EP_SY_SCREAMING_BITCH); + Voice_Specific (self, other, sy_popeye, 0); + } + else if (!(other->episode_flags & EP_SY_TACKLE)) + { + EP_Skidrow_Register_EPFLAG (other, EP_SY_TACKLE); + Voice_Specific (self, other, sy_popeye, 1); + } + else if (!(other->client->pers.friends) && !(other->episode_flags & EP_SY_GOTO_SALTYDOG)) + { + // tell them to go to the bar + EP_Skidrow_Register_EPFLAG (other, EP_SY_GOTO_SALTYDOG); + Voice_Specific (self, other, sy_popeye, 2); + } + else if (other->episode_flags & EP_SY_FOUND_BITCH) + { + // player found the remains so just say ambient + + if (!(other->episode_flags & EP_SY_POPEYE_LASTLINE)) + { + EP_Skidrow_Register_EPFLAG (other, EP_SY_POPEYE_LASTLINE); + Voice_Specific (self, other, sy_popeye, 12); + } + else + Voice_Random (self, other, &sy_popeye[9], 7); + } + else + { + Voice_Random (self, other, &sy_popeye[3], 6); + } + return true; + } + + return false; + + break; + case say_hostile: + + if (self->name_index == NAME_MOE && other->client) + { + mem->flags &= ~MEMORY_UPSET; + return (ProcessMoe (self, other, mem)); + } + + if (self->name_index == NAME_BWILLIE && other->client) + { + Voice_Random (self, other, sy_bigwillie, 5); + return true; + } + + if (self->name_index == NAME_DOGG && other->client) + { + Voice_Random (self, other, sy_dogg, 5); + return true; + } + + if (self->name_index == NAME_MOMO && other->client) + { + return (ProcessSYMomo (self, other)); + } + + if (self->name_index == NAME_POPEYE && other->client) + { + if (other->client->ps.stats[STAT_HUD_SELF_TALK] == TT_POSITIVE) + { + mem = level.global_cast_memory [self->character_index][other->character_index]; + mem->flags &= ~MEMORY_ASSHOLE; + + if (other->episode_flags & EP_SY_FOUND_BITCH) + { + // player found the remains so just say ambient + // Voice_Random (self, other, &sy_popeye[9], 7); + if (!(other->episode_flags & EP_SY_POPEYE_LASTLINE)) + { + EP_Skidrow_Register_EPFLAG (other, EP_SY_POPEYE_LASTLINE); + Voice_Specific (self, other, sy_popeye, 12); + } + else + Voice_Random (self, other, &sy_popeye[9], 7); + } + else + Voice_Random (self, other, &sy_popeye[3], 6); + + return true; + } + else + { + // just do a random speech + Voice_Random (self, other, &sy_popeye[16], 3); + + return true; + } + } + + return false; + + break; + } + + return false; +} + +void EP_SY_ItemPickup ( edict_t *self, edict_t *other ) +{ + /* + if (!Q_strcasecmp( self->classname, "item_lure" )) + { + EP_Skidrow_Register_EPFLAG (other, EP_SY_GOT_LURE); + } + */ + if (!Q_strcasecmp( self->classname, "item_lizzyhead" )) + { + // EP_Skidrow_Register_EPFLAG (other, EP_SY_FOUND_BITCH); + + if (!(other->episode_flags & EP_SY_FOUND_BITCH)) + { + //edict_t *Sal; + + EP_Skidrow_Register_EPFLAG (other, EP_SY_FOUND_BITCH); + + //Sal = EP_GetCharacter (NAME_SAL); + + //if (Sal) + //{ + // Voice_Specific (Sal, other, sy_sal, 3); + + //} + //else + gi.sound(other, CHAN_VOICE, gi.soundindex("scenaric/tellwilly.wav"), 1, ATTN_NORM, 0); + } + } + +} + +void EP_SY_Script( edict_t *ent, char *scriptname ) +{ + +} + +void Resp_SYMomo_GotMoney ( edict_t *self, edict_t *other, response_t response ) +{ + cast_memory_t *mem; + + if (self->episode_flags & EP_SY_MOMO_TOOK_MONEY) + return; + + mem = level.global_cast_memory[ other->character_index ][ self->character_index ]; + + if (response == resp_yes) + { + Voice_Player_Specific(self, TT_YES); + Voice_Random (self, other, player_money_yes, NUM_PLAYER_MONEY_YES); // yes + } + else if (response == resp_no) + { + Voice_Player_Specific (self, TT_NO); + Voice_Random (self, other, player_money_no, NUM_PLAYER_MONEY_NO); // no + } + + self->response_ent = other; + self->last_response_time = level.time; + self->last_response = response; +} + + +qboolean ProcessMoe (edict_t *self, edict_t *player, cast_memory_t *mem) +{ + if (player->episode_flags & EP_SY_MOE_RUNAWAY) + return false; + + if (player->client->ps.stats[STAT_HUD_SELF_TALK] == TT_POSITIVE || mem->flags & MEMORY_UPSET) + { + mem->flags &= ~MEMORY_ASSHOLE; + + if (!(player->episode_flags & EP_SY_MOE_ESCALATE1)) + { + player->episode_flags = player->client->pers.episode_flags &= ~EP_SY_MOE_FEAR3; + player->episode_flags = player->client->pers.episode_flags &= ~EP_SY_MOE_FEAR2; + player->episode_flags = player->client->pers.episode_flags &= ~EP_SY_MOE_FEAR1; + + EP_Skidrow_Register_EPFLAG (player, EP_SY_MOE_ESCALATE1); + Voice_Random (self, player, &ty_mo[1], 4); + } + + else if (!(player->episode_flags & EP_SY_MOE_ESCALATE2)) + { + EP_Skidrow_Register_EPFLAG (player, EP_SY_MOE_ESCALATE2); + Voice_Random (self, player, &ty_mo[1], 4); + } + + else if (!(player->episode_flags & EP_SY_MOE_ESCALATE3)) + { + EP_Skidrow_Register_EPFLAG (player, EP_SY_MOE_ESCALATE3); + Voice_Random (self, player, &ty_mo[1], 4); + } + + else + { + // Moe is brave enough to attack the player now + { + edict_t *Larry; + edict_t *Curly; + + // MO ATTACK THE PLAYER LINE + Voice_Specific (self, player, ty_mo, 8); + + AI_MakeEnemy(self, self->cast_info.talk_ent, 0); + + Larry = EP_GetCharacter (NAME_LARRY); + Curly = EP_GetCharacter (NAME_CURLY); + + if (Larry) + { + // make larry hostile + AI_MakeEnemy(Larry, self->cast_info.talk_ent, 0); + } + + if (Curly) + { + // make curly hostile + AI_MakeEnemy(Curly, self->cast_info.talk_ent, 0); + } + + } + } + + } + else + { + if (!(player->episode_flags & EP_SY_MOE_FEAR1)) + { + // GENERIC MOE CURSE AFRAID + player->episode_flags = player->client->pers.episode_flags &= ~EP_SY_MOE_ESCALATE1; + player->episode_flags = player->client->pers.episode_flags &= ~EP_SY_MOE_ESCALATE2; + player->episode_flags = player->client->pers.episode_flags &= ~EP_SY_MOE_ESCALATE3; + EP_Skidrow_Register_EPFLAG (player, EP_SY_MOE_FEAR1); + EP_Skidrow_Register_EPFLAG (player, EP_SY_MOE_LASTLINE); + Voice_Specific (self, player, ty_mo, 5); + } + + else if (!(player->episode_flags & EP_SY_MOE_FEAR2)) + { + // GENERIC MOE CURSE AFRAID + EP_Skidrow_Register_EPFLAG (player, EP_SY_MOE_FEAR2); + Voice_Specific (self, player, ty_mo, 6); + } + + else if (!(player->episode_flags & EP_SY_MOE_FEAR3)) + { + // GENERIC MOE CURSE AFRAID + EP_Skidrow_Register_EPFLAG (player, EP_SY_MOE_FEAR3); + Voice_Specific (self, player, ty_mo, 7); + } + + else + { + + // make Moe run off to misc_sy_afraid + { + edict_t *ent = NULL; + + ent = G_Find (ent, FOFS(classname), "misc_sy_afraid"); + + if (ent) + { + self->goal_ent = ent; + ent->cast_info.aiflags |= AI_GOAL_RUN; + ent->think = misc_sy_afraid_think; + ent->nextthink = level.time + 0.1; + self->cast_info.aiflags &= ~AI_TALK; + + EP_Skidrow_Register_EPFLAG (player, EP_SY_MOE_RUNAWAY); + } + else + gi.dprintf ("moe missing misc_sy_afraid marker\n"); + } + + + } + + last_client_talk = level.time + 2; + return true; + } + + return true; +} + + +// generic process for hostile or neutral momo +qboolean ProcessSYMomo (edict_t *self, edict_t *other) +{ + + cast_memory_t *mem; + + mem = level.global_cast_memory[ self->character_index ][ other->character_index ]; + + if (mem->flags & MEMORY_LASTWARNING) + { + Voice_Random ( self, other, &momo_specific[13], 2); // get the fuck out of my foyer + + return true; + } + + if (other->episode_flags & EP_SY_MOMO_TOOK_MONEY) + { + // Ridah, 5-8-99, we've already taken their money, so say one of the following.. + + if (!(mem->flags & MEMORY_ASSHOLE)) + Voice_Random ( self, other, &momo_specific[12], 2); // so what's it gonna be... in or out? + else // they've cussed us, don't act all happy to see them + Voice_Random ( self, other, &momo_specific[13], 2); // get the fuck out of my foyer + + return true; + } + + if (!(other->episode_flags & EP_SY_MOMO_FIRST_TIME)) + { + + Voice_Specific (self, other, momo_specific, 19); // welcome.wav + + EP_Skidrow_Register_EPFLAG (other, EP_SY_MOMO_FIRST_TIME); + + return true; + } + + // Ridah, 5-8-99, I changed this so it clears this flag in EP_CastSight() if Momo sees you after not having seen you for a while + if (!(other->episode_flags & EP_SY_MOMO_ASKED_MONEY)) + { + // note to Rafael: you can use "inc" for anything.. usually used to count events + if (!mem->inc) + { + if (!( mem->flags & MEMORY_ASSHOLE)) + { + Voice_Random (self, other, &momo_specific[1], 3); // 10 dollar cover charge + mem->inc = 1; + } + else + { + Voice_Specific (self, other, momo_specific, 5); // now it's 20 bucks! + mem->inc = 2; + } + } + else + { + Voice_Specific (self, other, momo_specific, 9); // your back + } + + EP_Skidrow_Register_EPFLAG (other, EP_SY_MOMO_ASKED_MONEY); + + mem->response = Resp_SYMomo_GotMoney; + return true; + } + + // have they responded yet? + else if ( (other->response_ent == self) + && (other->last_response_time > (level.time - 5))) + { + + if (other->last_response == resp_yes) + { + edict_t *door = NULL; + int cost; + + if ( mem->flags & MEMORY_ASSHOLE) + { + if (mem->inc < 3) + cost = 20; + else + cost = 30; + } + else + { + cost = 10; + } + + // have we really have money to give? + if (other->client->pers.currentcash >= cost) + { + other->client->pers.currentcash -= cost; + self->currentcash += cost; + + EP_Skidrow_Register_EPFLAG (other, EP_SY_MOMO_TOOK_MONEY); + + // TBD: at this point need to have momo walk away to a path corner cast + + Voice_Specific( self, other, momo_specific, 10 ); // go on in + + + // JOSEPH 9-MAR-99 + // in case there's more than one door + { // unlock the door for player + // Find target door + edict_t *e; + int i; + + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->targetname) && (!strcmp(e->targetname, "bardoor_sy"))) + { + // Unlock target door + if (e->key == -1) + { + e->key = 0; + e->targetname = NULL; + } + } + } + + EP_Skidrow_Register_EPFLAG (other, EP_SY_MOMO_TOOK_MONEY); + } + // END JOSEPH + + } + else + { + // don't have money to give + Voice_Random( self, other, &momo_specific[7], 2 ); // see me later when you got the money + } + } + else // they said no + { + Voice_Random( self, other, &momo_specific[13], 3 ); + } + + other->last_response_time = 0; // so we don't process this response again + + mem->response = NULL; + other->response_ent = NULL; + + return true; + } + + else + { + + if (mem->flags & MEMORY_ASSHOLE) + { + if (!(mem->flags & MEMORY_UPSET)) + { + mem->flags |= MEMORY_UPSET; + + if (mem->inc < 3) + { + Voice_Specific (self, other, momo_specific, 5); + } + else // 30 bucks for you now! + { + Voice_Specific (self, other, momo_specific, 6); + } + } + else + { + Voice_Random (self, other, &momo_specific[12], 4); + + // This needs to be here, or Momo will never take the money when mad + if (momo_specific[12].last_played == level.time) + { // we just asked them if they wanna come in, so let them respond + mem->response = Resp_SYMomo_GotMoney; + } + + } + } + else + { + Voice_Random (self, other, &momo_specific[12], 5); + + if (momo_specific[12].last_played == level.time) + { // we just asked them if they wanna come in, so let them respond + mem->response = Resp_SYMomo_GotMoney; + } + } + + } + + return true; +} + + +int EP_SY_HiredGuysFlags (edict_t *player, edict_t *self) +{ + cast_memory_t *cast_memory; + + if (self->name_index == NAME_BIGWILLIE) + { + if (player->episode_flags & EP_SY_BW_HIRED) + return (1); + + if (player->episode_flags & EP_SY_FOUND_BITCH && !(player->episode_flags & EP_SY_BIGWILLIE_REVENGE)) + { + EP_Skidrow_Register_EPFLAG (player, EP_SY_BIGWILLIE_REVENGE); + Voice_Specific (self, player, sy_bigwillie, 5); + return (0); + } + + if (!(player->episode_flags & EP_SY_BW_HIRED) && player->episode_flags & EP_SY_FOUND_BITCH) + { + edict_t *Lefty; + + Lefty = EP_GetCharacter (NAME_LEFTY); + + EP_Skidrow_Register_EPFLAG (player, EP_SY_BW_HIRED); + + { + int index; + gitem_t *item; + + item = FindItem ("Lizzy Head"); + index = ITEM_INDEX (item); + player->client->pers.inventory[ index ] = 0; + } + + + switch (player->client->pers.friends) + { + case 0: // Big Willie and Lefty will join + { + if (Lefty) + { + //cast_memory = level.global_cast_memory[Lefty->character_index][player->character_index]; + //cast_memory->flags |= MEMORY_HIRED; + //cast_memory->flags |= MEMORY_HIRE_FIRST_TIME; + //cast_memory->flags |= MEMORY_HIRE_ASK; + //player->client->pers.friends++; + cast_memory = level.global_cast_memory[Lefty->character_index][player->character_index]; + + cast_memory->flags |= MEMORY_HIRED; + cast_memory->flags |= MEMORY_HIRE_FIRST_TIME; + cast_memory->flags |= MEMORY_HIRE_ASK; + + Lefty->leader = player; + Lefty->cast_info.aiflags |= AI_NOWALK_FACE; + Lefty->order = ORDER_FOLLOWME; + Lefty->order_timestamp = level.time; + + // hack to fix trigger spawn problem + Lefty->spawnflags &= ~2; + + player->client->pers.friends++; + + EP_Skidrow_Register_EPFLAG (player, EP_SY_LEFTY_HIRED); + } + + cast_memory = level.global_cast_memory[self->character_index][player->character_index]; + cast_memory->flags |= MEMORY_HIRED; + cast_memory->flags |= MEMORY_HIRE_FIRST_TIME; + cast_memory->flags |= MEMORY_HIRE_ASK; + player->client->pers.friends++; + + // hack to fix trigger spawn problem + self->spawnflags &= ~2; + + // Voice_Specific (self, player, sy_bigwillie, 5); + + { + int index; + gitem_t *item; + + item = FindItem ("Shipyard_Key"); + index = ITEM_INDEX (item); + player->client->pers.inventory[ index ] = 1; + // show icon and name on status bar + player->client->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(item->icon); + player->client->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS+index; + player->client->pickup_msg_time = level.time + 5.5; + } + } + return (1); + break; + case 1: // Big Willie will join + cast_memory = level.global_cast_memory[self->character_index][player->character_index]; + cast_memory->flags |= MEMORY_HIRED; + cast_memory->flags |= MEMORY_HIRE_FIRST_TIME; + cast_memory->flags |= MEMORY_HIRE_ASK; + player->client->pers.friends++; + + // hack to fix trigger spawn problem + self->spawnflags &= ~2; + // Voice_Specific (self, player, sy_bigwillie, 5); + + { + int index; + gitem_t *item; + + item = FindItem ("Shipyard_Key"); + index = ITEM_INDEX (item); + player->client->pers.inventory[ index ] = 1; + // show icon and name on status bar + player->client->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(item->icon); + player->client->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS+index; + player->client->pickup_msg_time = level.time + 5.5; + } + return (1); + break; + case 2: // no one can join + gi.dprintf ("FIXME: level problem with Bigwillie\n"); + return (1); + break; + } + } + } + + if (self->name_index == NAME_SAL) + { + if (!(player->episode_flags & EP_SY_GOFIND_BITCH_SAL)) + { + EP_Skidrow_Register_EPFLAG (player, EP_SY_GOFIND_BITCH_SAL); + Voice_Specific (self, player, sy_sal, 0); + return (0); + } + if (!(player->episode_flags & EP_SY_SAL_SECONDLINE)) + { + Voice_Specific (self, player, sy_sal, 2); + EP_Skidrow_Register_EPFLAG (player, EP_SY_SAL_SECONDLINE); + return (0); + } + else if (!(player->episode_flags & EP_SY_HIRED_SAL)) + { + if (player->client->pers.friends < 2) + { + + // Voice_Specific (self, player, sy_sal, 2); + EP_Skidrow_Register_EPFLAG (player, EP_SY_HIRED_SAL); + + cast_memory = level.global_cast_memory[self->character_index][player->character_index]; + + cast_memory->flags |= MEMORY_HIRED; + cast_memory->flags |= MEMORY_HIRE_FIRST_TIME; + cast_memory->flags |= MEMORY_HIRE_ASK; + + self->leader = player; + self->cast_info.aiflags |= AI_NOWALK_FACE; + self->order = ORDER_FOLLOWME; + self->order_timestamp = level.time; + + self->spawnflags &= ~2; + + player->client->pers.friends++; + + { + int index; + gitem_t *item; + + item = FindItem ("Warehouse_Key"); + index = ITEM_INDEX (item); + player->client->pers.inventory[ index ] = 1; + // show icon and name on status bar + player->client->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(item->icon); + player->client->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS+index; + player->client->pickup_msg_time = level.time + 5.5; + } + return (1); + } + else + { + Voice_Random (self, player, sy_sal, 2); + return (0); + } + } + else // note to self this may be a problem + return (1); + } + + if (self->name_index == NAME_BLEFTY) + { + if (!(player->episode_flags & EP_SY_GOFIND_BITCH)) + { + EP_Skidrow_Register_EPFLAG (player, EP_SY_GOFIND_BITCH); + Voice_Specific (self, player, sy_lefty, 3); + } + else if (!(player->episode_flags & EP_SY_FOUND_BITCH)) + { + // hey your back without lizzy + Voice_Random (self, player, sy_lefty, 3); + } + else if (player->episode_flags & EP_SY_FOUND_BITCH) + { + Voice_Random (self, player, &sy_lefty[3], 2); + } + return (0); + + } + + if (self->name_index == NAME_LEFTY) + { + if (player->episode_flags & EP_SY_LEFTY_HIRED) + return (1); + + if (player->episode_flags & EP_SY_BW_HIRED) + { + if (player->client->pers.episode_flags & EP_SY_BIGWILLIE_DEAD || player->client->pers.episode_flags & EP_SY_SAL_DEAD) + { + // gi.dprintf ("hires: %d\n", player->client->pers.friends); + if (player->client->pers.friends < 2) + { + cast_memory = level.global_cast_memory[self->character_index][player->character_index]; + + cast_memory->flags |= MEMORY_HIRED; + cast_memory->flags |= MEMORY_HIRE_FIRST_TIME; + cast_memory->flags |= MEMORY_HIRE_ASK; + + self->leader = player; + self->cast_info.aiflags |= AI_NOWALK_FACE; + self->order = ORDER_FOLLOWME; + self->order_timestamp = level.time; + + player->client->pers.friends++; + + self->spawnflags &= ~2; + + EP_Skidrow_Register_EPFLAG (player, EP_SY_LEFTY_HIRED); + + return (1); + } + else + Voice_Random (self, player, sy_lefty, 2); + } + else + Voice_Random (self, player, sy_lefty, 2); + + return (0); + } + + if (!(player->episode_flags & EP_SY_GOFIND_BITCH)) + { + EP_Skidrow_Register_EPFLAG (player, EP_SY_GOFIND_BITCH); + Voice_Specific (self, player, sy_lefty, 3); + } + else if (!(player->episode_flags & EP_SY_FOUND_BITCH)) + { + // hey your back without lizzy + Voice_Random (self, player, sy_lefty, 3); + } + else if (player->episode_flags & EP_SY_FOUND_BITCH) + { + Voice_Random (self, player, &sy_lefty[3], 2); + } + return (0); + + } + + return (1); +} + +void EP_SYFlags (edict_t *self) +{ + if (self->name_index == NAME_MOMO) + { + self->cast_info.aiflags |= AI_IMMORTAL; + + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + self->s.model_parts[PART_GUN2].invisible_objects = (1<<0 | 1<<1); + } +} + +qboolean EP_SY_DoKey (edict_t *self, edict_t *other) +{ + return false; +} + +void EP_SY_Check_DoKey (edict_t *self, edict_t *ent) +{ + +} + +void EP_SY_ReachedDoKey (edict_t *self) +{ + +} + +void EP_SY_EndDoKey (edict_t *self) +{ + +} + +qboolean EP_SY_UnlockDoorFlag (edict_t *ent) +{ + return false; +} + +void EP_SY_HiredGuysRegisterFlags (edict_t *ent, edict_t *other) +{ + +} + +/*QUAKED ai_sy_dykes_boundry (.5 .5 1) ? +touching this brush will cause mo larry and curly to attack +*/ + + +void ai_sy_boundry_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + + edict_t *Moe; + + if (!(other->client)) + return; + + Moe = EP_GetCharacter (NAME_MOE); + + if (Moe) + { + edict_t *Larry; + edict_t *Curly; + + Larry = EP_GetCharacter (NAME_LARRY); + Curly = EP_GetCharacter (NAME_CURLY); + + if (Larry) + { + AI_MakeEnemy(Larry, other, 0); + } + + if (Curly) + { + AI_MakeEnemy(Curly, other, 0); + } + + + } + + +} + +void SP_sy_dykes_boundry ( edict_t *ent ) +{ + if (deathmatch->value) + { + G_FreeEdict(ent); + return; + } + + ent->solid = SOLID_TRIGGER; + ent->touch = ai_sy_boundry_touch; + + ent->svflags |= SVF_NOCLIENT; + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); + +} + +void EP_SY_CheckMomo (edict_t *ent, cast_memory_t *mem) +{ + if (ent->episode_flags & EP_SY_MOMO_ASKED_MONEY) + mem->inc++; + +} + + +extern mmove_t runt_move_walk_dokey; + +/*QUAKED misc_sy_afraid (.5 .5 1) (-16 -16 -24) (16 16 48) +used as the location mo will run to before larry and curly attack him +*/ + +void misc_sy_afraid_think (edict_t *self) +{ + edict_t *Moe; + edict_t *Larry; + edict_t *Curly; + edict_t *Player; + vec3_t vec; + float dist; + + extern void AI_CreateCharacterMemory(edict_t *src, edict_t *dest); + + Player = &g_edicts[1]; + + Moe = EP_GetCharacter (NAME_MOE); + + if (Moe) + { + + VectorSubtract (Moe->s.origin, self->s.origin, vec); + dist = VectorLength (vec); + + // gi.dprintf ("dist: %5.3f\n", dist); + + if (dist < 256) + { + Moe->cast_info.currentmove = &runt_move_walk_dokey; + Moe->cast_info.aiflags &= ~AI_TALK; + + Larry = EP_GetCharacter (NAME_LARRY); + Curly = EP_GetCharacter (NAME_CURLY); + + if (Larry) + { + { + cast_memory_t *mem; + + mem = level.global_cast_memory[ Larry->character_index ][ Moe->character_index ]; + + if (mem) + AI_MakeEnemy(Larry, Moe, 0); + else + { + AI_CreateCharacterMemory(Larry, Moe); + AI_MakeEnemy(Larry, Moe, 0); + } + + } + + } + + if (Curly) + { + { + cast_memory_t *mem; + + mem = level.global_cast_memory[ Curly->character_index ][ Moe->character_index ]; + + if (mem) + AI_MakeEnemy(Curly, Moe, 0); + else + { + AI_CreateCharacterMemory(Curly, Moe); + AI_MakeEnemy(Curly, Moe, 0); + } + } + } + } + else + self->nextthink = level.time + 0.1; + + } + + +} + +void SP_misc_sy_afraid (edict_t *self) +{ + if (deathmatch->value) + { + G_FreeEdict(self); + return; + } + + self->movetype = MOVETYPE_NONE; + self->solid = SOLID_NOT; + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 48); + + self->cast_info.aiflags |= AI_RUN_LIKE_HELL; + + AI_Ent_droptofloor( self ); + + gi.linkentity (self); +} + +void larry_say (edict_t *self) +{ + edict_t *Larry; + edict_t *Player; + + Player = &g_edicts[1]; + Larry = EP_GetCharacter (NAME_LARRY); + + Voice_Specific (Larry, Player, ty_larry, 0); +} + +void EP_SY_SpecialEventDeath (edict_t *self) +{ + edict_t *Player; + Player = &g_edicts[1]; + + if (self->name_index == NAME_MOE) + { + { + edict_t *Larry; + + Larry = EP_GetCharacter (NAME_LARRY); + + if (Larry) + { + { + edict_t *larry_noise; + + larry_noise = G_Spawn (); + larry_noise->think = larry_say; + larry_noise->nextthink = level.time + 1.5; + gi.linkentity (larry_noise); + } + } + + } + } + + if (self->name_index == NAME_BIGWILLIE) + { + EP_Skidrow_Register_EPFLAG (Player, EP_SY_BIGWILLIE_DEAD); + } + + if (self->name_index == NAME_SAL) + { + EP_Skidrow_Register_EPFLAG (Player, EP_SY_SAL_DEAD); + } +} + + +/*QUAKED ai_sy_oilcan (.5 .5 1) ? +set EP_SY_GOTO_DOORSHUT flag +*/ + +void ai_sy_oilcan_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + if (!(other->client)) + return; + + if (!(other->episode_flags & EP_SY_GOTO_DOORSHUT)) + { + EP_Skidrow_Register_EPFLAG (other, EP_SY_GOTO_DOORSHUT); + // gi.sound(ent, CHAN_VOICE, gi.soundindex("need_oilcan.wav"), 1, ATTN_NORM, 0); + } + // FIXME + // we need to play a wav file + +} + +void SP_sy_oilcan ( edict_t *ent ) +{ + if (deathmatch->value) + { + G_FreeEdict(ent); + return; + } + + ent->solid = SOLID_TRIGGER; + ent->touch = ai_sy_oilcan_touch; + + ent->svflags |= SVF_NOCLIENT; + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); + +} + +/*QUAKED ai_sy_blefty (.5 .5 1) ? +blefty unlink +*/ + +void ai_sy_blefty_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + edict_t *BLefty; + + if (!(other->client)) + return; + + if (other->episode_flags & EP_SY_FOUND_BITCH) + { + + BLefty = EP_GetCharacter (NAME_BLEFTY); + + if (BLefty) + gi.unlinkentity (BLefty); + + self->touch = NULL; + } + + +} + +void SP_sy_blefty ( edict_t *ent ) +{ + if (deathmatch->value) + { + G_FreeEdict(ent); + return; + } + + ent->solid = SOLID_TRIGGER; + ent->touch = ai_sy_blefty_touch; + + ent->svflags |= SVF_NOCLIENT; + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); + +} + + + +#include "ep_log.h" + +extern int the_log_page; + +void EP_SY_Player_Log (edict_t *self, int page) +{ + int len; + int i; + int cnt = 0; + int select = 0; + + len = 0; + + Com_sprintf (game.helpmessage1, sizeof(game.helpmessage1), ""); + Com_sprintf (game.helpmessage2, sizeof(game.helpmessage2), ""); + + the_log_page += page; + + if (the_log_page < 0) + the_log_page = 0; + else if (the_log_page >= NUM_SY_PLAYER_LOG) + the_log_page = 0; + + for (i=1; iclient->pers.episode_flags & ep_sy_player_log[i].ep_flag) + cnt++; + + if (cnt == the_log_page) + { + select = i; + break; + } + } + + if (!page || !the_log_page) + for (i=0; iname_index == NAME_JESUS && other->client && !(self->cast_info.aiflags & AI_NO_TAKE_COVER)) + { + static int battery_index; + + if (!battery_index) + battery_index = 1 + ITEM_INDEX(FindItem("Battery")); + + if (other->client->pers.inventory[battery_index - 1]) + { // go into Psycho mode + self->cast_info.aiflags |= AI_NO_TAKE_COVER; + + // gi.dprintf( "SOUND TODO: Leave that battery alone muthafucka!!\n" ); + Voice_Specific (self, other, sr_jesus, 16); + + // release if currently hiding + self->combat_goalent = NULL; + self->cast_info.aiflags &= ~AI_TAKE_COVER; + self->dont_takecover_time = 99999; + } + + return false; + } + + if (self->name_index == NAME_RUMMY || self->name_index == NAME_NICK || self->name_index == NAME_ED) + { + if (self->name_index == NAME_RUMMY && other->client) + { + other->episode_flags &= ~EP_SKIDROW_RUMMY_ASKED_WINE; + } + + if (other->client && (mem->memory_type == MEMORY_TYPE_ENEMY) && !(other->client->pers.weapon)) + { // give them a chance to make friends if they holster + self->enemy = NULL; + + // make them a neutral instead of enemy + AI_RemoveFromMemory( self, mem ); + AI_AddToMemory( self, mem, MEMORY_TYPE_NEUTRAL ); + mem->flags &= ~MEMORY_HOSTILE_ENEMY; + } + // ignore them + return true; + } + + // Ridah, 5-8-99, added this so Momo asks you for the money if he hasn't seen you for a while + if (self->name_index == NAME_MOMO && other->client) + { + if (mem->timestamp < (level.time - 8)) + { // haven't seen them for a while + other->episode_flags &= ~EP_SKIDROW_MOMO_ASKED_MONEY; + // mem->flags &= ~MEMORY_LASTWARNING; + } + + if ((mem->memory_type == MEMORY_TYPE_ENEMY) /*&& !other->client->pers.weapon*/) + { // give them a chance to make friends if they holster + self->enemy = NULL; + + // make them a neutral instead of enemy + AI_RemoveFromMemory( self, mem ); + AI_AddToMemory( self, mem, MEMORY_TYPE_NEUTRAL ); + mem->flags &= ~MEMORY_HOSTILE_ENEMY; + } + + return true; + } + + // Hack, don't let Mona talk, or it'll probably sound too "feminin" + if (self->name_index == NAME_MONA) + { + self->cast_info.aiflags |= AI_NO_TALK; + } + + // Ridah, if listening to the radio, ignore player unless he's really close + if ( ( (self->name_index == NAME_BERNIE) + || (self->name_index == NAME_ARNOLD)) + && (other->client) + && (self->goal_ent && self->goal_ent->think == EP_skidrow_radio_on)) + { + if (self->enemy) + { + self->goal_ent = NULL; + + return false; + } + + if (other->current_territory != self->cast_group || VectorDistance(self->s.origin, other->s.origin) > AI_NOT_HOLSTERED_RANGE_2) + { + // Ignore them + return true; + } + else + { + if (VectorDistance (self->s.origin, other->s.origin) > AI_NOT_HOLSTERED_RANGE_1) + { + // Dont get mad yet + return true; + } + else + { + // too close waist em + AI_MakeEnemy( self, other, 0 ); + AI_StartAttack( self, other ); + self->goal_ent = NULL; + return false; + } + } + } + + if (self->name_index == NAME_LAMONT) + { + float dist; + + if (self->enemy) // currently attacking + { + self->cast_info.aiflags |= AI_NO_TALK; + return false; + } + else + { + self->cast_info.aiflags &= ~AI_NO_TALK; + } + + dist = VectorDistance(self->s.origin, other->s.origin); + + self->cast_info.aiflags |= AI_FASTWALK; + + // check if player has entered range 1 + if (other->client) + { + if (dist < AI_NOT_HOLSTERED_RANGE_1) + { + if (mem->inc < 10) + { // we've come from outside the range + if (mem->inc < 4) + mem->inc++; + + mem->inc += 10; // signify that we are now inside the range + } + } + else + { + if (mem->inc >= 10) + { // just left the range 1 + mem->inc -= 10; + } + } + } + else if (VectorDistance( self->s.origin, g_edicts[1].s.origin ) < AI_NOT_HOLSTERED_RANGE_1) + { // talk to the player since they're close by + return false; + } + + // now talk if we're standing around + if ( (self->last_talk_time < (level.time - 3)) + && ( (self->cast_info.currentmove->frame->aifunc == ai_stand) + || (other->client && dist < AI_NOT_HOLSTERED_RANGE_1/2))) + { // Lamont's a nut case.. + + if (dist < AI_NOT_HOLSTERED_RANGE_1/2) + self->cast_info.pausetime = level.time + 2; + + if (other->client && (dist < AI_NOT_HOLSTERED_RANGE_1)) // talk shit to player + { + // client is close, act hostile + + if (mem->inc%10 >= 4) + { // attack + AI_MakeEnemy( self, other, 0 ); + Voice_Specific( self, other, lamont_random, 14 ); + } + + if ( (lamont_random[10 + mem->inc%10].last_played < (level.time - 10)) + || (lamont_random[10 + mem->inc%10].last_played > level.time)) + { + Voice_Specific( self, other, lamont_random, 10 + mem->inc%10 ); + } + else // randomly abuse player, and go on about Lenny + { + Voice_Random( self, other, &lamont_random[6], 7 ); + } + + } + else if (!(other->client)) + { + Voice_Random( self, other, lamont_random, 6 ); + } + else // they are a client, but a good distance away + { + Voice_Random( self, other, &lamont_random[0], 9 ); + } + + if ((dist < AI_NOT_HOLSTERED_RANGE_1) && !directly_infront( self, other)) + self->cast_info.avoid( self, other, true ); + else + self->cast_info.talk( self ); + + // pick a random path_corner to go to next + if (self->goal_ent && self->goal_ent->target) + { + edict_t *trav=NULL; + int i; + + i = rand()%4; + + while (i-- && self->goal_ent->target && (trav = G_PickTarget(self->goal_ent->target))) + { + self->goal_ent = trav; + } + + self->goal_ent->wait = 1 + rand()%4; + } + } + + if (self->goal_ent && !self->goal_ent->wait) + self->goal_ent->wait = 1 + rand()%4; + + + return false; + } + // Ridah, play Beth's special "backoff" + if ( self->name_index == NAME_BETH && other->client && (self->last_talk_time < (level.time - 3)) ) + { + if ( (!(other->client->pers.holsteredweapon)) + && (other->client->pers.weapon) + && (!(mem->flags & MEMORY_WARNED_BACKOFF))) + { + float dist; + + dist = VectorDistance( self->s.origin, other->s.origin ); + + if (dist < AI_NOT_HOLSTERED_RANGE_2) + { + mem->flags |= MEMORY_WARNED_BACKOFF; + Voice_Random(self, other, &beth_specific[7], 2); + } + + } + } + + if ( self->name_index == NAME_MAGICJ && other->client) + { + + if ( !(other->client->pers.holsteredweapon) ) + { + mem->flags |= MEMORY_AFRAID; + } + else + { + self->cast_info.aiflags &= ~AI_NO_TALK; + mem->flags &= ~MEMORY_AFRAID; + } + + return EP_Skidrow_ProcessMagicJ (self, other, mem); + } + + if ( self->cast_group == GANG_RATGANG ) + { + + cast_memory_t *mem; + + mem = level.global_cast_memory[ self->character_index ][ other->character_index ]; + + if (other->client && !(other->episode_flags & EP_SKIDROW_RATS_PISSED)) + { + EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_RATS_PISSED); + } + + if (mem->flags & MEMORY_TAUNT && last_client_talk > level.time) + { + mem->flags &= ~MEMORY_TAUNT; + + Voice_Random(self, self->cast_info.talk_ent, profanity_level2, NUM_PROFANITY_LEVEL2); + last_client_talk = level.time + 3 + rand()%10; + + self->cast_info.currentmove = self->cast_info.move_stand; + + + + } + + } + + return false; +} + +//............................................................................ +// EP_Skidrow_CastUse +// Called when ever a character is "used" (like when someone dies) + +qboolean EP_Skidrow_CastUse (edict_t *self, edict_t *other, edict_t *activator) +{ + + if ((other->name_index == NAME_LOUIE) && (other->health <= 0)) + { // Louie has been killed, so walk to him + self->goal_ent = other; + self->target = NULL; + + other->cast_info.aiflags |= AI_GOAL_RUN; // Run to him + +// gi.dprintf( "Louie has been killed, sending Al in to investigate\n" ); + + return true; + } + + return false; + +} + + +//............................................................................ +// EP_Skidrow_EventSpeech +// Called on speech occasions (including flashlight hitting player) +// +// Return TRUE so that the normal speech routines don't say something as well + +qboolean EP_Skidrow_EventSpeech (edict_t *self, edict_t *other, int saywhat) +{ + cast_memory_t *mem; + + mem = level.global_cast_memory[ self->character_index ][ other->character_index ]; + + + //............................................................................ + // LAMONT + if ( self->name_index == NAME_LAMONT ) + { // Lamont speech done in EP_CastSight() + return true; + } + + // Hack, record that we've been to the Bar + if (other->client && level.bar_lvl) + { + // other->client->pers.episode_flags = other->episode_flags |= EP_BAR_FIRST_TIME; + EP_Skidrow_Register_EPFLAG (other, EP_BAR_FIRST_TIME); + } + + switch (saywhat) + { + + case say_neutral: + + if (self->name_index == NAME_RUMMY && other->client) + { + if (other->episode_flags & EP_SKIDROW_RUMMY_GAVE_WINE) + { + Voice_Random (self, other, &rummy[14], 2); + return true; + } + + if (!(other->episode_flags & EP_SKIDROW_TALKED_TO_RUMMY) && !(self->episode_flags & EP_SKIDROW_RUMMY_GAVE_WINE)) + { + mem = level.global_cast_memory[ self->character_index ][ other->character_index ]; + + Voice_Random (self, other, &rummy[8], 2); + EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_TALKED_TO_RUMMY); + mem->response = Resp_Rummy_GotWine; + + return true; + } + else if (!(other->episode_flags & EP_SKIDROW_RUMMY_ASKED_WINE) && !(self->episode_flags & EP_SKIDROW_RUMMY_GAVE_WINE)) + { + if (mem = level.global_cast_memory[ self->character_index ][ other->character_index ]) + { + Voice_Random (self, other, &rummy[8], 2); + // other->episode_flags |= EP_SKIDROW_RUMMY_ASKED_WINE; + // other->client->pers.episode_flags |= EP_SKIDROW_RUMMY_ASKED_WINE; + + EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_RUMMY_ASKED_WINE); + EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_TALKED_TO_RUMMY); + mem->response = Resp_Rummy_GotWine; + + return true; + } + } + + // have they responded yet? + else if ( (other->response_ent == self) + && (other->last_response_time > (level.time - 5))) + { + + if (other->last_response == resp_yes) + { + int index; + gitem_t *item; + + Voice_Random ( self, other, &rummy[4], 2 ); + // gi.dprintf ("Rummy: the combination is 36 26 36 ... \n"); + + item = FindItem ("Whiskey"); + index = ITEM_INDEX (item); + other->client->pers.inventory[ index ] = 0; + // show icon and name on status bar + other->client->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(item->icon); + other->client->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS+index; + other->client->pickup_msg_time = level.time + 5.5; + + // other->episode_flags |= EP_SKIDROW_RUMMY_GAVE_WINE; + // other->client->pers.episode_flags |= EP_SKIDROW_RUMMY_GAVE_WINE; + + EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_RUMMY_GAVE_WINE); + + { + edict_t *e; + int i; + + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->targetname) && (!strcmp(e->targetname, "safedoor_sr"))) + { + // Unlock target door + if (e->key == -1) + { + e->key = 0; + e->targetname = NULL; + } + } + } + + } + + } + else + { + Voice_Random (self, other, &rummy[10], 2); + mem->response = Resp_Rummy_GotWine; + } + + if (mem = level.global_cast_memory[ self->character_index ][ other->character_index ]) + mem->response = NULL; + + other->response_ent = NULL; + return true; + } + + // ask for wine + else if ( (specific[4].last_played < (level.time - 3)) + && (specific[9].last_played < (level.time - 4))) + { + Voice_Random ( self, other, &rummy[8], 2 ); + + if (mem = level.global_cast_memory[ self->character_index ][ other->character_index ]) + mem->response = Resp_Rummy_GotWine; + + return true; + } + + else + { + Voice_Random ( self, other, &rummy[12], 2); + return true; + } + + return true; + } + + if (self->name_index == NAME_NICK && other->client) + { + if (!(other->episode_flags & EP_SKIDROW_NICK_TOLD_BIKE)) + { + Voice_Specific (self, other, nick, 6); + EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_NICK_TOLD_BIKE); + return true; + } + + if (!(other->episode_flags & EP_SKIDROW_NICK_WARNING_1)) + { + Voice_Specific (self, other, nick, 0); + // other->client->pers.episode_flags = other->episode_flags |= EP_SKIDROW_JOSEPH_WARNING_1; + + EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_NICK_WARNING_1); + } + else if (!(other->episode_flags & EP_SKIDROW_NICK_WARNING_2)) + { + Voice_Random (self, other, &nick[1], 2); + // other->client->pers.episode_flags = other->episode_flags |= EP_SKIDROW_JOSEPH_WARNING_2; + + EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_NICK_WARNING_2); + } + else if (!(other->episode_flags & EP_SKIDROW_NICK_WARNING_3)) + { + Voice_Random (self, other, &nick[3], 2); + // other->client->pers.episode_flags = other->episode_flags |= EP_SKIDROW_JOSEPH_WARNING_3; + + EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_NICK_WARNING_3); + } + else + { + Voice_Specific( self, other, nick, 5 ); + other->client->pers.episode_flags = other->episode_flags &= ~EP_SKIDROW_NICK_WARNING_1; + other->client->pers.episode_flags = other->episode_flags &= ~EP_SKIDROW_NICK_WARNING_2; + other->client->pers.episode_flags = other->episode_flags &= ~EP_SKIDROW_NICK_WARNING_3; + } + + return true; + } + + if (self->name_index == NAME_ED && other->client) + { + Voice_Random (self, other, rummy, 4); + return true; + } + + if (self->name_index == NAME_LENNY && other->client) + { + + self->cast_info.aiflags |= AI_REPEAT_TALK_JESTURE; + + // Have they got the watch? + if ((other->client->pers.inventory[ITEM_INDEX(FindItem("Watch"))]) || + (other->episode_flags & EP_SKIDROW_LENNY_TOOK_WATCH)) + { // got the watch.. + + if (!(other->client->pers.inventory[ITEM_INDEX(FindItem("StoreRoomKey"))])) + { // Lenny hasn't given the key yet.. + + if (mem->inc != 199) // we haven't praised them yet + { + if (other->client->pers.episode_flags & EP_TALKED_TO_LENNY) + { + Voice_Specific( self, other, lenny_table, 1 ); // that's great! + self->last_talk_time -= TALK_SELF_DELAY - 1.5; // only wait 1.5 before we speak again, regardless of whether they respond or not + other->last_talk_time = self->last_talk_time - 1; // must have this so we don't think they've said something after us as a result of the above hack + } + else + { + Voice_Specific( self, other, lenny_table, 0 ); // christ, that's great! + self->last_talk_time -= TALK_SELF_DELAY - 4.5; // wait 4.5 seconds + other->last_talk_time = self->last_talk_time - 1; // must have this so we don't think they've said something after us as a result of the above hack + } + + mem->inc = 199; + } + else // give them the watch + { + int index; + gitem_t *item; + + // Lenny takes the watch + item = FindItem ("Watch"); + index = ITEM_INDEX (item); + other->client->pers.inventory[ index ] = 0; + + // other->episode_flags |= EP_SKIDROW_LENNY_TOOK_WATCH; + // other->client->pers.episode_flags |= EP_SKIDROW_LENNY_TOOK_WATCH; + + EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_LENNY_TOOK_WATCH); + + // Lenny gives player the key + Voice_Specific( self, other, lenny_table, 2 ); // here's the key + item = FindItem ("StoreRoomKey"); + index = ITEM_INDEX (item); + other->client->pers.inventory[ index ]++; + // show icon and name on status bar + other->client->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(item->icon); + other->client->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS+index; + other->client->pickup_msg_time = level.time + 5.5; + + mem->inc = 0; + } + } + else // given them the watch, just chat + { + if (!mem->inc) + { + Voice_Specific( self, other, lenny_table, 14 ); + mem->inc = 1; + } + else if (mem->inc == 1) + { // thanks again + Voice_Random( self, other, &lenny_table[14], 2 ); + mem->inc = 2; + } + else if (mem->inc == 2) + { // you'd better leave now + Voice_Specific( self, other, lenny_table, 13 ); + self->last_talk_time += 5; // this is a long one, give us more time to say it all + mem->inc = 3; + } + else // random stuff + { + Voice_Random( self, other, &lenny_table[10], 3 ); + if (mem->inc++ > 4) + mem->inc = 1; /// thank them again + } + + } + + mem->response = Resp_Lenny; + return true; + } + + // if we've cussed him, act hostile back + else if (other->response_ent == self && other->last_response == resp_no) + { + Voice_Random( self, other, &lenny_table[17], 3 ); + other->response_ent = NULL; // get over it + } + + // talked to them yet? + else if (other->client->pers.episode_flags & EP_TALKED_TO_LENNY) + { + // random chat, we've already asked them about Lamont + + if (self->last_talk_time < (level.time - 15)) // haven't spoken for a while, they must have left and come back + { + Voice_Random( self, other, &lenny_table[22], 3 ); + } + else if (mem->inc > 4) + { // been here too long + Voice_Specific( self, other, lenny_table, 13 ); + self->last_talk_time += 3; // this is a long one, give us more time to say it all + mem->inc = 0; + } + else + { + Voice_Random( self, other, &lenny_table[4], 9 ); + mem->inc++; + } + + mem->response = Resp_Lenny; + return true; + } + + // first greeting + else + { + if (mem->inc == 0) + { // hey you're that dude + Voice_Specific( self, other, lenny_table, 3 ); + self->last_talk_time -= TALK_SELF_DELAY - 5; + other->last_talk_time = self->last_talk_time - 1; // must have this so we don't think they've said something after us as a result of the above hack + mem->inc++; + } + else if (mem->inc == 1) + { // jesus + Voice_Specific( self, other, lenny_table, 17 ); + self->last_talk_time -= TALK_SELF_DELAY - 2; + other->last_talk_time = self->last_talk_time - 1; // must have this so we don't think they've said something after us as a result of the above hack + mem->inc++; + } + else + { + Voice_Specific( self, other, lenny_table, 4 ); // go kill lamont for me + + // other->client->pers.episode_flags = other->episode_flags |= EP_TALKED_TO_LENNY; + self->last_talk_time -= TALK_SELF_DELAY - 3; + other->last_talk_time = self->last_talk_time - 1; // must have this so we don't think they've said something after us as a result of the above hack + + mem->inc = 0; + + EP_Skidrow_Register_EPFLAG (other, EP_TALKED_TO_LENNY); + } + + mem->response = Resp_Lenny; + return true; + } + + } + + //............................................................................ + // LISA + // note to self: + // this will ensure that she keeps the same tone of voice + if ( self->name_index == NAME_LISA && other->client)/* && !other->client->pers.inventory[ITEM_INDEX(FindItem("Pistol"))])*/ + { + int index; +// int rval; + edict_t *Igmo; + + index = ITEM_INDEX (FindItem ("Pistol")); + + Igmo = EP_GetCharacter( NAME_IGMO ); + + // check to see if the player has a pistol + if (!Igmo) + { + // gi.dprintf ("SOUND TODO: Shit... your one bad ass Dude!\n"); + Voice_Specific (self, other, mona_specific, 13); + + } + else if (other->client->pers.inventory [index]) + { + Voice_Random (self, other, &lisa_specific[5], 3); // Ridah, NOTE! new method of playing specific sounds, without repeating one's self + } + else if (other->client->pers.episode_flags & EP_PAWNOMATIC_FIRST_TIME) + { + Voice_Random (self, other, &lisa_specific[2], 6); + } + else + Voice_Random(self, other, lisa_specific, 8); + + return true; + } + //............................................................................ + // BETH + else if ( self->name_index == NAME_BETH && other->client) + { + if (other->client->pers.episode_flags & EP_SKIDROW_GOT_COIL) + { + Voice_Random (self, other, &beth_specific[4] , 3); + } + else + { + Voice_Random(self, other, beth_specific, 6); + } + return true; + } + + //............................................................................ + // MONA + // JOSEPH 19-MAR-99 + else if ( self->name_index == NAME_MONA && other->client) + { + edict_t *Lamont; + + Lamont = EP_GetCharacter( NAME_LAMONT ); + + self->cast_info.aiflags &= ~AI_NO_TALK; + + if (Lamont && !(other->episode_flags & EP_SKIDROW_MONA_FIRST_TIME)) + EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_MONA_FIRST_TIME); + + // If the player has killed Lamont + if ((!Lamont || Lamont->health <= 0)) + { + if (!(other->client->pers.episode_flags & EP_TALKED_TO_LENNY) && rand()%2) + Voice_Random (self, other, &mona_specific[0], 4); // make sure they know about Lenny in the bar + else + Voice_Random (self, other, &mona_specific[13], 2); // you're one bad ass mofo + } + // If the player hasn't visited the bar + else if (!(other->client->pers.episode_flags & EP_BAR_FIRST_TIME)) + { + Voice_Random (self, other, &mona_specific[0], 8); + } + // If the player hasn't talked to lenny + else if (!(other->client->pers.episode_flags & EP_TALKED_TO_LENNY)) + { + Voice_Random (self, other, &mona_specific[10], 3); + } + else + { + Voice_Random (self, other, &mona_specific[4], 6); + } + + self->cast_info.aiflags |= AI_NO_TALK; + + return true; + } + // END JOSEPH + + + //............................................................................ + // MAGICJ + if ( (self->name_index == NAME_MAGICJ) + && (other->client)) + { + + if (other->episode_flags & EP_SKIDROW_MAGICJ_GAVE_DOLLAR) + { + Voice_Random ( self, other, mj_random, 4); + return true; + } + + if (!(other->episode_flags & EP_SKIDROW_MAGICJ_ASKED_DOLLAR)) + { + + if (mem = level.global_cast_memory[ self->character_index ][ other->character_index ]) + { + Voice_Specific( self, other, specific, 4 ); + // other->episode_flags |= EP_SKIDROW_MAGICJ_ASKED_DOLLAR; + // other->client->pers.episode_flags |= EP_SKIDROW_MAGICJ_ASKED_DOLLAR; + + EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_MAGICJ_ASKED_DOLLAR); + + mem->response = Resp_MagicJ_GotDollar; + + return true; + } + + } + + // have they responded yet? + else if ( (other->response_ent == self) + && (other->last_response_time > (level.time - 5))) + { + + if (other->last_response == resp_yes) + { // give the crow bar to the player + int index; + gitem_t *item; + + Voice_Specific( self, other, specific, 7 ); + item = FindItem ("Crowbar"); + index = ITEM_INDEX (item); + other->client->pers.inventory[ index ]++; + // show icon and name on status bar + other->client->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(item->icon); + other->client->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS+index; + other->client->pickup_msg_time = level.time + 5.5; + + // other->episode_flags |= EP_SKIDROW_MAGICJ_GAVE_DOLLAR; + // other->client->pers.episode_flags |= EP_SKIDROW_MAGICJ_GAVE_DOLLAR; + + EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_MAGICJ_GAVE_DOLLAR); + } + else + { + Voice_Specific( self, other, specific, 8 ); + } + + if (mem = level.global_cast_memory[ self->character_index ][ other->character_index ]) + mem->response = NULL; + + other->response_ent = NULL; + + return true; + } + + // randomly ask them about the iron bar + else if ( (specific[4].last_played < (level.time - 30)) + && (specific[9].last_played < (level.time - 40))) + { + Voice_Specific( self, other, specific, 9 ); + + if (mem = level.global_cast_memory[ self->character_index ][ other->character_index ]) + mem->response = Resp_MagicJ_GotDollar; + + return true; + } + + else + { + Voice_Random ( self, other, mj_random, 4); + return true; + } + + } + // END JOSEPH + + //............................................................................ + // LEROY -> BETTY + if ( (self->name_index == NAME_LEROY) + && (other->name_index == NAME_BETTY)) + { + Voice_Random(self, self->cast_info.talk_ent, neutral_converse_to_female, NUM_NEUTRAL_CONVERSE_TO_FEMALE); + return true; + } + + + //............................................................................ + // BUSTER -> JED (doors.bsp scripting test) + if ( (self->name_index == NAME_BUSTER) + && (other->name_index == NAME_JED)) + { + + mem = level.global_cast_memory[self->character_index][other->character_index]; + + if (mem->inc++ > 2) + { // time to bury them + Voice_Specific(self, other, profanity_level2, 14 ); + AI_MakeEnemy( self, other, 0 ); + + return true; + } + + + if (mem->inc == 1) + Voice_Specific(self, other, profanity_level2, 7 ); + else if (mem->inc == 2) + Voice_Specific(self, other, profanity_level2, 17 ); + else if (mem->inc == 3) + Voice_Specific(self, other, profanity_level2, 11 ); + + // pretend he's going to respond soon, so we don't wait so long + other->last_talk_time = level.time + 2; + + return true; + } + + // JOSEPH 13-FEB-99 + //............................................................................ + // MOMO + if ( (self->name_index == NAME_MOMO) + && (other->client)) + { + return (ProcessMomo (self, other)); + } + // END JOSEPH + + break; + + case say_hostile: + + if (self->name_index == NAME_ED && other->client) + { + Voice_Random (self, other, rummy, 4); + return true; + } + + if ( self->name_index == NAME_BETH && other->client) + { + // Rafael: we need more negative sounds + if (rand()%100 > 75) + Voice_Random (self, other, &f_fightsounds[0],3); + else + Voice_Specific (self, other, beth_specific, 7); + return true; + } + + //............................................................................ + // MONA + // JOSEPH 19-MAR-99 + if ( self->name_index == NAME_MONA && other->client) + { + { + edict_t *Lamont; + + Lamont = EP_GetCharacter( NAME_LAMONT ); + + if (Lamont && !(other->episode_flags & EP_SKIDROW_MONA_FIRST_TIME)) + EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_MONA_FIRST_TIME); + } + + + self->cast_info.aiflags &= ~AI_NO_TALK; + + if (other->client->ps.stats[STAT_HUD_SELF_TALK] == TT_POSITIVE) + { + mem = level.global_cast_memory [self->character_index][other->character_index]; + mem->flags &= ~MEMORY_ASSHOLE; + + + + Voice_Random (self, other, &mona_specific[0], 8); + + return true; + } + else + { + Voice_Random (self, other, &mona_specific[15], 5); + } + + self->cast_info.aiflags |= AI_NO_TALK; + + return true; + } + // END JOSEPH + + if ( (self->name_index == NAME_MAGICJ) + && (other->client)) + { + if (other->client->ps.stats[STAT_HUD_SELF_TALK] == TT_POSITIVE) + { + mem = level.global_cast_memory [self->character_index][other->character_index]; + mem->flags &= ~MEMORY_ASSHOLE; + + Voice_Random ( self, other, mj_random, 4); + return true; + } + + + else + { + if ((rand()%10) < 4) + Voice_Specific (self, other, specific, 29); + else + Voice_Random ( self, other, &specific[23], 2); + return true; + } + + } + + + if ( (self->name_index == NAME_RUMMY || self->name_index == NAME_NICK) + && (other->client)) + { + + if (other->client->ps.stats[STAT_HUD_SELF_TALK] == TT_POSITIVE) + { + mem = level.global_cast_memory [self->character_index][other->character_index]; + mem->flags &= ~MEMORY_ASSHOLE; + + if (self->name_index == NAME_RUMMY) + Voice_Random (self, other, &rummy[12], 2); + else + { + if (!(other->episode_flags & EP_SKIDROW_NICK_TOLD_BIKE)) + { + Voice_Specific (self, other, nick, 6); + EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_NICK_TOLD_BIKE); + } + else + Voice_Random ( self, other, rummy, 3); + } + return true; + } + + + else + { + + if (self->name_index == NAME_RUMMY) + Voice_Random (self, other, &rummy[12], 2); + else + { + if (!(other->episode_flags & EP_SKIDROW_NICK_TOLD_BIKE)) + { + Voice_Specific (self, other, nick, 6); + EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_NICK_TOLD_BIKE); + } + else + Voice_Random ( self, other, rummy, 3); + } + return true; + } + + } + + // JOSEPH 13-FEB-99 + if (self->name_index == NAME_MOMO && other->client) + { + return (ProcessMomo (self, other)); + } + + // END JOSEPH + + if ( ((self->name_index == NAME_BETTY) || (self->name_index == NAME_LEROY)) + && other->client) + { + edict_t *betty; + betty = EP_GetCharacter (NAME_BETTY); + + if (!betty || betty->health < 0) + return false; + + self->last_talk_time = level.time; + + { + edict_t *leroy; + leroy = EP_GetCharacter (NAME_LEROY); + + if (leroy && leroy->health > 0) + { +// return true; // never speak to player if leroy is there + + float time_offset; + + time_offset = 0.0; + + mem = level.global_cast_memory[ leroy->character_index ][ other->character_index ]; + + if (mem->flags & MEMORY_LASTWARNING && directly_infront(other, self)) // they're looking at her + { + Voice_Random ( leroy, self->cast_info.talk_ent, &specific[16], 2); +// Voice_Specific(leroy, self->cast_info.talk_ent, specific, 16 + rand()%2); // die + AI_MakeEnemy(leroy, self->cast_info.talk_ent, 0); + } + else if (mem->flags & MEMORY_UPSET) + { + mem->flags |= MEMORY_LASTWARNING; + + if (!specific[15].last_played || specific[15].last_played > level.time) + Voice_Specific ( leroy, other, specific, 15); // step off + else + Voice_Random ( leroy, other, &specific[12], 3); + + time_offset = 10.0; + } + else if (mem->flags & MEMORY_ASSHOLE) + { + Voice_Random ( leroy, other, &specific[12], 3); + + mem->flags |= MEMORY_UPSET; + + time_offset = 3.0; + } + else + { + Voice_Random ( leroy, other, &specific[12], 3); + + mem->flags |= MEMORY_ASSHOLE; + } + + last_client_talk = level.time + 3 + time_offset; + + // Ridah, turn to face them, or make a gesture + if (!infront( leroy, other )) + { + leroy->cast_info.avoid( leroy, other, true ); + } + else + { + // make talking gesture if we're just standing around + if (leroy->cast_info.currentmove == leroy->cast_info.move_stand) + leroy->cast_info.talk(leroy); + } + + } + else + { + return false; + } + } + + return true; + } + + + + +// Ridah, not used anymore +/* + if (self->name_index == NAME_LEROY && other->client) + { + { + edict_t *betty; + static int rnd; + float time_offset; + + time_offset = 0.0; + + mem = level.global_cast_memory[ self->character_index ][ other->character_index ]; + + betty = EP_GetCharacter (NAME_BETTY); + + if (betty && betty->health > 0) + { + if (VectorDistance( self->s.origin, betty->s.origin ) < 256) + { // don't say anything just yet +// self->last_talk_time = level.time; + return true; + } + else + { + return false; + } + } + else + { + // is not on the map anymore + return false; + } + + return true; + } + + } +*/ + break; + + case say_flashlight: + + // We put it in here so it only occurs if we aren't already angry at them + if (self->enemy != other) + { + cast_memory_t *mem, *premem; + + // get the memory of this "other" character before we record the sighting + premem = level.global_cast_memory[self->character_index][other->character_index]; + + AI_RecordSighting(self, other, VectorDistance(self->s.origin, other->s.origin)); + + // get the post sighting memory + mem = level.global_cast_memory[self->character_index][other->character_index]; + + // if we recorded a new sighting (or hadn't seen them in a while), and they are hostile.. + if ( (!premem || (premem->timestamp < (level.time - 10))) + && (mem->flags & MEMORY_HOSTILE_ENEMY)) + { + +//gi.dprintf ("%s: there he is!\n", self->name); // Rafael: make sure you call the Voice routines, so they don't talk again for a bit + + return true; + } + + } + + break; +// Ridah, this is a mess, we should just scan for names, and go from there +/* + case say_alisthatyou: + AI_RecordSighting(self, other, VectorDistance(self->s.origin, other->s.origin)); + gi.dprintf ("%s: Al is that you?\n", self->classname); + break; + case say_behindthebarrel: break; + case say_forabuck: break; + case say_talktobetty: + if (self->name_index == NAME_LEROY) + { + Voice_Random(self, self->cast_info.talk_ent, neutral_converse_to_female, NUM_NEUTRAL_CONVERSE_TO_FEMALE); + return true; + } + break; +*/ + } + + return false; +} + +//............................................................................ +// EP_Skidrow_ItemPickup +// Called whenever an item is picked up + +void EP_Skidrow_ItemPickup ( edict_t *self, edict_t *other ) +{ +if (!Q_strcasecmp( self->classname, "item_coil" )) +{ + + // other->client->pers.episode_flags |= EP_SKIDROW_GOT_COIL; + // other->episode_flags |= EP_SKIDROW_GOT_COIL; + + EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_GOT_COIL); +} + +// note to self +// for now they should just listen to the radio or wake up if they see the player +#if 0 + edict_t /* *Al,*/ *Bernie, *Arnold, *radio ; + + if (!Q_strcasecmp( self->classname, "item_coil" )) + { + + other->episode_flags |= EP_SKIDROW_GOT_COIL; + + //Al = EP_GetCharacter( NAME_AL ); + Bernie = EP_GetCharacter( NAME_BERNIE ); + + if (/*Al &&*/ Bernie) + { + Bernie->cast_info.aiflags |= AI_GOAL_RUN; // So we run back to him + + // send him to Bernie + + //Al->goal_ent = Bernie; // this will make him walk to Bernie + // we then use the sight handler (above) to stop him + // when he gets close, and send them all to the 2nd door + } + else + { + //Al = EP_GetCharacter( NAME_AL ); + Bernie = EP_GetCharacter( NAME_BERNIE ); + Arnold = EP_GetCharacter( NAME_ARNOLD ); + + //if (Al) + // AI_MakeEnemy(Al, other, 0); + if (Bernie) + AI_MakeEnemy(Bernie, other, 0); + if (Arnold) + AI_MakeEnemy(Arnold, other, 0); + + // gi.dprintf ("CHEATER: AL, Arnold, and Bernie made hostile\n"); + } + + // kill the radio + radio = G_Find( NULL, FOFS(classname), "misc_skidrow_radio" ); + if (!radio) + { + gi.dprintf( "EP_Skidrow_CastSight: Can't find radio to turn off!!\n"); + } + else + { + radio->think = NULL; + radio->nextthink = -1; + } + + } +#endif +} + + +//............................................................................ +// Special event-driven scripting. Usually called when a character reaches a +// path_corner_cast with the "scriptname" field set. + +void EP_Skidrow_Script( edict_t *ent, char *scriptname ) +{ + edict_t *other; + +//gi.dprintf( "Script '%s' called by %s\n", scriptname, ent->classname ); + + switch (ent->name_index) + { + + //================================================================================================ + // Test script using doors.bsp + case NAME_JED: + + if (!strcmp( scriptname, "jed_script" )) + { + // Tell Jed to start evading Buster + ent->enemy = EP_GetCharacter( NAME_BUSTER ); + AI_RecordSighting( ent, ent->enemy, VectorDistance( ent->s.origin, ent->enemy->s.origin ) ); + ent->cast_info.currentmove = ent->cast_info.move_evade; + } + + break; + + case NAME_BUSTER: + + if (!strcmp( scriptname, "buster_script" )) + { + // Stand here looking at Jed + + other = EP_GetCharacter( NAME_JED ); + + AI_RecordSighting( ent, other, VectorDistance( ent->s.origin, other->s.origin ) ); + ent->cast_info.avoid( ent, other, true ); + ent->cast_info.talk_ent = other; + + + // find our mates and tell them to look at Jed also, but don't talk + { + int i; + + for (i=0; icast_group == ent->cast_group) + && (VectorDistance( level.characters[i]->s.origin, ent->s.origin ) < 256)) + { + AI_RecordSighting( level.characters[i], other, VectorDistance( level.characters[i]->s.origin, other->s.origin ) ); + level.global_cast_memory[level.characters[i]->character_index][other->character_index]->flags |= MEMORY_NO_TALK; + + level.characters[i]->cast_info.talk_ent = other; + + level.characters[i]->cast_info.avoid( level.characters[i], other, true ); + } + } + + } + + } + + break; + + +#define SR1_INTRO 1 + +#if SR1_INTRO // out for demo + //================================================================================================ + // SR1 intro + + case NAME_TOUGHGUY1: + + if (!strcmp( scriptname, "intro_script1" )) + { // say something, do talking motion + ent->last_talk_time = level.time + 2; + ent->cast_info.talk( ent ); + + ent->cast_info.pausetime = level.time + 7; + } + + else if (!strcmp( scriptname, "intro_script2" )) + { // tell the other guy to come with us + + ent->yaw_speed = 40; + + other = EP_GetCharacter( NAME_TOUGHGUY2 ); + + other->last_talk_time = level.time + 2; + other->cast_info.talk( ent ); + + other->yaw_speed = 40; + + other->leader = ent; +// ent->cast_info.aiflags |= AI_GOALENT_MANUAL_CLEAR; + other->cast_info.pausetime = level.time + 2; + + } + + break; + + default: + + if (!strcmp( scriptname, "intro_player_script1" )) + { // go into death frame + static mframe_t frames[] = { + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + NULL, 0, NULL, + }; + static mmove_t move = {725, 755, frames, NULL}; + + other = EP_GetCharacter( NAME_INTROGUY1 ); + + other->yaw_speed = 5; + + other->s.frame = move.firstframe; + other->cast_info.currentmove = &move; + + other->s.model_parts[PART_GUN].invisible_objects = 0xFF; + + if (!(cl_parental_lock->value && !cl_parental_override->value)) + { + // set pain skins + other->s.model_parts[PART_HEAD].skinnum[0] = other->s.model_parts[PART_HEAD].baseskin + 1; + other->s.model_parts[PART_BODY].skinnum[0] = other->s.model_parts[PART_BODY].baseskin + 1; + } + } + + else if (!strcmp( scriptname, "intro_camera3" )) + { + void intro_player_standup( edict_t *self ); + + edict_t *thinker; + + thinker = G_Spawn(); + thinker->nextthink = level.time + 0.5; + thinker->think = intro_player_standup; + } + + else if (!strcmp( scriptname, "intro_player_script1a" )) + { + // delete the tough guys + other = EP_GetCharacter( NAME_TOUGHGUY1 ); + G_FreeEdict( other ); + other = EP_GetCharacter( NAME_TOUGHGUY2 ); + G_FreeEdict( other ); + + } + + else if (!strcmp( scriptname, "intro_player_script2" )) + { // we're at the corner, crouch down and grab the pipe + void intro_player_pickup_pipe( edict_t *self ); + + static mframe_t frames[] = + { + NULL, 0.000, NULL, // frame 0 + NULL, 0.000, NULL, // frame 1 + NULL, 0.000, NULL, // frame 2 + NULL, 0.000, NULL, // frame 3 + }; + static mmove_t move = {570, 573, frames, intro_player_pickup_pipe}; + + ent->yaw_speed = 40; + + // crouch down + ent->cast_info.currentmove = &move; + ent->s.frame = ent->cast_info.currentmove->firstframe; + ent->maxs[2] = DUCKING_MAX_Z; + + + // release the player from the camera + other = NULL; + while (other = G_Find( other, FOFS(classname), "misc_cutscene_trigger" )) + { + if (other->nextthink >= level.time && other->think) + { + other->wait = 2/FRAMETIME; + } + } + } + else if (!strcmp( scriptname, "intro_end" )) + { // end of intro + + other = EP_GetCharacter( NAME_INTROGUY1 ); + G_FreeEdict( other ); + + } + + break; +#endif + + } + + + // Alarm + if (!strcmp( scriptname, "alarm" )) + { + // We need some assistance! + + edict_t *marker; + + // find the 2nd door ambush marker, tell all 3 guys to move to it + marker = G_Find( NULL, FOFS(classname), "misc_skidrow_ambush" ); + if (!marker) + { + gi.dprintf( "EP_Skidrow_Script: Can't find ambush marker!!\n"); + } + else + { + edict_t *plyr; + + if (plyr = EP_GetCharacter( NAME_BERNIE )) + { + plyr->goal_ent = plyr->start_ent = marker; + plyr->guard_ent = NULL; + plyr->target = NULL; // stop guarding the radio area/patrolling + } + +// if (plyr = EP_GetCharacter( NAME_AL )) +// plyr->goal_ent = marker; + + if (plyr = EP_GetCharacter( NAME_ARNOLD )) + { + plyr->goal_ent = marker; + plyr->guard_ent = NULL; + plyr->target = NULL; // stop guarding the radio area/patrolling + } + + } + + // kill the radio + marker = G_Find( NULL, FOFS(classname), "misc_skidrow_radio" ); + if (marker) + { + G_FreeEdict( marker ); + } + } + +} + + +//::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: +#if SR1_INTRO // out for demo + +void intro_player_standup( edict_t *self ) +{ // stand up + edict_t *trav, *other; + + trav = G_Find( NULL, FOFS(targetname), "intro_player_corner1a" ); + + other = EP_GetCharacter( NAME_INTROGUY1 ); + + other->cast_info.currentmove = other->cast_info.move_stand_up; + other->s.frame = other->cast_info.currentmove->firstframe; + other->maxs[2] = other->cast_info.standing_max_z; + + other->last_talk_time = level.time; // make talking jesture when standing + + // head for the corner in a few seconds + other->goal_ent = trav; + other->cast_info.goal_ent_pausetime = level.time + 2.5; // pause for a bit + +// other->maxs[2] = DUCKING_MAX_Z; +} + +void intro_player_turnaround( edict_t *self ) +{ + edict_t *other; + + //self->owner->cast_info.currentmove = self->owner->cast_info.move_stand_up; + //self->owner->maxs[2] = self->owner->cast_info.standing_max_z; + + // turn to face alley + other = NULL; + while (other = G_Find( other, FOFS(targetname), "intro_corner1" )) + { +// if (VectorDistance(self->owner->s.origin, other->s.origin) < 384) + { + self->owner->goal_ent = other; +// self->owner->cast_info.goal_ent_pausetime = level.time + 0.5; + self->owner->goal_ent->cast_info.aiflags |= AI_GOALENT_MANUAL_CLEAR; + break; + } + } + + G_FreeEdict( self ); +} + +void intro_player_pickup_pipe( edict_t *self ) +{ + edict_t *think; + + // show the pipe + self->s.model_parts[PART_GUN].invisible_objects = 0x0; + +// self->cast_info.currentmove = self->cast_info.move_crstand; + self->cast_info.currentmove = self->cast_info.move_stand_up; + self->maxs[2] = self->cast_info.standing_max_z; + + think = G_Spawn(); + think->nextthink = level.time + 0.7; + think->think = intro_player_turnaround; + think->owner = self; +} +#endif + +qboolean EP_Skidrow_ProcessMagicJ( edict_t *self, edict_t *other, cast_memory_t *mem ) +{ + if ( (other->client) + && (!(other->client->pers.holsteredweapon)) + && (mem->flags & MEMORY_AFRAID ) + && (other->client->pers.weapon) ) + { + float dist; + + dist = VectorDistance( self->s.origin, other->s.origin ); + + // if running, don't say or do anything + if (self->cast_info.currentmove->frame->aifunc == ai_run) + return true; + + + if ( (dist < AI_NOT_HOLSTERED_RANGE_1) + && !(mem->flags & MEMORY_HOSTILE_ENEMY)) + + { + + #define MAXCHOICES 8 + + edict_t *ent = NULL; + int num_choices = 0; + edict_t *choice[MAXCHOICES]; + int rval; + float dist[MAXCHOICES]; + + while(1) + { + ent = G_Find (ent, FOFS(classname), "misc_skidrow_afraid"); + if (!ent) + break; + if ((dist[num_choices] = VectorDistance( ent->s.origin, self->s.origin )) > 384) + choice[num_choices++] = ent; + if (num_choices == MAXCHOICES) + break; + } + + if (!num_choices) + { + // gi.dprintf( "AI: can't find a misc_skidrow_afraid\n"); + mem->flags &= ~MEMORY_AFRAID; + } + else if (self->groundentity) + { + + // gi.dprintf( "AI: Going to misc_skidrow_afraid\n"); + // rval = rand() % num_choices; + { + int i; + float olddist = 0; + + for (i=0; i olddist) + { + rval = i; + olddist = dist[i]; + } + } + } + + if (!(choice[rval]->cast_info.aiflags & AI_GOAL_RUN)) + // gi.sound(ent, CHAN_VOICE, gi.soundindex("actors/skidrow/magicj/fuckthat.wav"), 1, ATTN_NORM, 0); + Voice_Specific( self, other, specific, 25 ); + + choice[rval]->cast_info.aiflags |= AI_GOAL_RUN; + self->cast_info.aiflags |= AI_RUN_LIKE_HELL; + + self->goal_ent = choice[rval]; + self->cast_info.aiflags |= AI_GOAL_IGNOREENEMY; + + self->cast_info.currentmove = self->cast_info.move_run; + } + } + + else if (dist < AI_NOT_HOLSTERED_RANGE_2) + { + #define TIME_TO_COMPLY_OR_I_RUN 5.0 + + if (!(mem->flags & MEMORY_HOSTILE_ENEMY)) + { + if ( (level.time > mem->not_holstered_attack_time) + && (level.time < (mem->not_holstered_attack_time+5))) + { + // gi.dprintf ("stay away I'll fuck you up\n"); + + if (!(self->cast_info.aiflags & AI_NO_TALK)) + { + self->cast_info.aiflags |= AI_NO_TALK; + + if (rand()%3 == 0) + Voice_Specific( self, other, specific, 23 ); // fuck you up + else //if (rand()%3 == 1) + Voice_Specific( self, other, specific, 24 ); // fuck that +// else +// Voice_Specific( self, other, specific, 25 ); // be back + } + +// Ridah, not sure what this was for, but it causes behavoural problem +// if (self->groundentity) +// self->cast_info.currentmove = self->cast_info.move_avoid_walk; + + if (ai_debug_memory->value) + { + gi.dprintf("AI_RecordSighting: is cowering!\n"); + } + } + else if (level.time > mem->not_holstered_attack_time) + { + + if (!(other->client->pers.weapon->ammo)) + Voice_Specific( self, other, specific, 22 ); // put that pipe down + else + Voice_Random( self, other, m_backoff, NUM_BACKOFF ); + + // give them some "time to comply" + mem->not_holstered_attack_time = level.time + TIME_TO_COMPLY_OR_I_RUN; + + if (ai_debug_memory->value) + { + gi.dprintf("AI_RecordSighting: i'm about to run in %d seconds\n", (int) TIME_TO_COMPLY_OR_I_RUN); + } + + // if we're standing around, turn to face them + if ( (self->cast_info.currentmove->frame->aifunc == ai_stand) + && (self->cast_info.move_avoid_walk && self->cast_info.move_avoid_crwalk)) + { + self->cast_info.avoid( self, other, true ); + } + + } + + } + + // if we're standing around, turn to face them + if (self->cast_info.currentmove->frame->aifunc == ai_stand) + { + vec3_t vec; + + VectorSubtract( other->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + self->ideal_yaw = vectoyaw( vec ); + + M_ChangeYaw( self ); + } + + // evade? + if (self->cast_info.currentmove->frame->aifunc == ai_stand && self->cast_info.move_stand_evade && (self->moral < MORAL_AGGRESSIVE)) + { + self->cast_info.currentmove = self->cast_info.move_stand_evade; + self->last_stand_evade = level.time; + } + } +/* + else if (dist < AI_NOT_HOLSTERED_RANGE_3) + { // if walking, ignore, if running, turn to face them, ready for attack if they get within range + + if (VectorLength( other->velocity ) > 210) + { // running + + // if we're standing around, turn to face them + if (self->cast_info.currentmove->frame->aifunc == ai_stand) + { + vec3_t vec; + + VectorSubtract( other->s.origin, self->s.origin, vec ); + VectorNormalize( vec ); + self->ideal_yaw = vectoyaw( vec ); + + M_ChangeYaw( self ); + } + + } + + } +*/ + return true; + } + + return false; +} + +//::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: +// +// Special Skidrow entities + +//................................................ +// Radio + +/*QUAKED misc_skidrow_radio (.5 .5 1) (-16 -16 -24) (16 16 48) +Bernie and the guys will listen to this. After the radio has stopped, +they'll discuss the game for some time. + + "delay" time to wait between starting to listen to the radio + "wait" time spent listening to the radio each time + "speed" time spent discussing the game afterwards +*/ + +/*QUAKED misc_skidrow_radio_repeater (.5 .5 1) (-16 -16 -24) (16 16 48) +Use to tag the speaker inside the warehouse +*/ + +void EP_Radio_On_First_Time (edict_t *self); + +void radio_snd_think (edict_t *self) +{ + self->count++; + + if (self->count == 1) + { + gi.sound ( self, CHAN_VOICE, gi.soundindex ("world/cheerup.wav"), 1, ATTN_NORM, 0); + self->nextthink = level.time + 1.0; + } + else if (self->count == 2 || self->count == 3) + { + gi.sound ( self, CHAN_VOICE, gi.soundindex ("world/cheerhigh.wav"), 1, ATTN_NORM, 0); + self->nextthink = level.time + 6.0; + } + else if (self->count == 4) + { + gi.sound ( self, CHAN_VOICE, gi.soundindex ("world/cheerdown.wav"), 1, ATTN_NORM, 0); + self->nextthink = level.time + 2.0; + } + else + self->think = G_FreeEdict; +} + +void Skidrow_Radio_Sound (edict_t *self) +{ + edict_t *radio_snd; + + radio_snd = G_Spawn (); + radio_snd->think = radio_snd_think; + radio_snd->nextthink = level.time + 0.1; + radio_snd->count = 0; +} + + +void radio_loop_think (edict_t *self) +{ + gi.sound ( self, CHAN_VOICE, gi.soundindex ("world/cheerlow.wav"), 1, ATTN_NORM, 0); + self->nextthink = level.time + 1.0; +} + +void Skidrow_Radio_Loop (edict_t *self) +{ + edict_t *radio_loop; + + radio_loop = G_Spawn (); + radio_loop->think = radio_loop_think; + radio_loop->nextthink = level.time + 1.0; +} + +void EP_skidrow_radio_stop_discuss (edict_t *self) +{ + // self->think = EP_skidrow_radio_on; + self->think = EP_Radio_On_First_Time; + + self->nextthink = level.time + self->delay; + self->timestamp = self->nextthink + self->wait; // set the time to stop playing +} + +void EP_skidrow_radio_off (edict_t *self) +{ + edict_t *Bernie/*, *Al*/, *Arnold; + + Bernie = EP_GetCharacter( NAME_BERNIE ); + // Al = EP_GetCharacter( NAME_AL ); + Arnold = EP_GetCharacter( NAME_ARNOLD ); + + // Ridah 5-8-99, modified this to prevent courtyard wierdness after touching reset + + if (Bernie) + { + if (Bernie->goal_ent == self) + { + Bernie->goal_ent = NULL; + if (!Bernie->enemy) + Bernie->cast_info.pausetime = level.time + self->speed; // stick around for a bit + } + + Bernie->cast_info.aiflags |= AI_TALK; + } +/* + if (Al && (Al->goal_ent == self)) + { + Al->goal_ent = NULL; + + if (!Al->enemy) + Al->cast_info.pausetime = level.time + self->speed; // stick around for a bit + + Al->cast_info.aiflags |= AI_TALK; + } +*/ + if (Arnold) + { + if (Arnold->goal_ent == self) + { + Arnold->goal_ent = NULL; + if (!Arnold->enemy) + Arnold->cast_info.pausetime = level.time + self->speed; // stick around for a bit + } + + Arnold->cast_info.aiflags |= AI_TALK; + } + + self->think = EP_skidrow_radio_stop_discuss; + self->nextthink = level.time + self->speed; +} + +void EP_skidrow_radio_on (edict_t *self) +{ + edict_t *Bernie/*, *Al*/, *Arnold; + + Bernie = EP_GetCharacter( NAME_BERNIE ); + // Al = EP_GetCharacter( NAME_AL ); + Arnold = EP_GetCharacter( NAME_ARNOLD ); + + + if ( (Bernie) + && !Bernie->enemy + && (!Bernie->goal_ent || (Bernie->goal_ent->touch == path_corner_cast_touch)) + && (VectorDistance( Bernie->s.origin, self->s.origin ) < 1024)) + { + Bernie->goal_ent = self; + + Bernie->cast_info.aiflags &= ~AI_TALK; // don't talk while at radio + +// Ridah, 5-8-99, we shouldn't need this anymore + } +/* + if ( (Al) + && !Al->enemy + && (!Al->goal_ent || (Al->goal_ent->touch == path_corner_cast_touch)) + && (VectorDistance( Al->s.origin, self->s.origin ) < 1024)) + { + Al->goal_ent = self; + + Al->cast_info.aiflags &= ~AI_TALK; // don't talk while at radio + } +*/ + if ( (Arnold) + && !Arnold->enemy + && (!Arnold->goal_ent || (Arnold->goal_ent->touch == path_corner_cast_touch)) + && (VectorDistance( Arnold->s.origin, self->s.origin ) < 1024)) + { + Arnold->goal_ent = self; + + Arnold->cast_info.aiflags &= ~AI_TALK; // don't talk while at radio + +// Ridah, 5-8-99, we shouldn't need this anymore + } + + if (level.time > self->timestamp) + { // turn the radio off + self->think = EP_skidrow_radio_off; + self->nextthink = level.time + 0.1; + return; + } + + self->nextthink = level.time + 3; +/* + Skidrow_Radio_Sound (self); + + { + edict_t *repeater; + + repeater = G_Find ( self, FOFS(classname), "misc_skidrow_radio_repeater"); + + if (repeater) + Skidrow_Radio_Sound (repeater); + } +*/ +} + +void EP_Radio_On_First_Time (edict_t *self) +{ + Skidrow_Radio_Sound (self); +/* + { + edict_t *repeater; + + repeater = G_Find ( self, FOFS(classname), "misc_skidrow_radio_repeater"); + + if (repeater) + Skidrow_Radio_Sound (repeater); + } +*/ + EP_skidrow_radio_on (self); + + self->think = EP_skidrow_radio_on; +} + +void SP_misc_skidrow_radio_repeater (edict_t *self) +{ + self->movetype = MOVETYPE_NONE; + self->solid = SOLID_NOT; + gi.linkentity (self); +} + +void SP_misc_skidrow_radio (edict_t *self) +{ + if (deathmatch->value) + { + G_FreeEdict(self); + return; + } + + self->movetype = MOVETYPE_NONE; + self->solid = SOLID_NOT; + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 48); + + // self->think = EP_skidrow_radio_on; + self->think = EP_Radio_On_First_Time; + self->nextthink = level.time + self->delay; + self->timestamp = self->nextthink + self->wait; // set the time to stop playing + + self->cast_info.aiflags |= AI_GOALENT_MANUAL_CLEAR; // don't clear it out when we get there + self->cast_info.aiflags |= AI_GOAL_RUN; // run to us + +// just for testing we need a constant background sound for the radio +// self->s.sound = gi.soundindex ("world/baseball.wav"); + + AI_Ent_droptofloor( self ); + + Skidrow_Radio_Loop (self); +} + + +/*QUAKED misc_skidrow_ambush (.5 .5 1) (-16 -16 -24) (16 16 48) +Used to set ambush location for the 3 guards when the +player goes into the 2nd door. +*/ + +void SP_misc_skidrow_ambush (edict_t *self) +{ + if (deathmatch->value) + { + G_FreeEdict(self); + return; + } + + self->movetype = MOVETYPE_NONE; + self->solid = SOLID_NOT; + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 48); + + AI_Ent_droptofloor( self ); +} + +//========================================================================================== +// +// RESPONSES + +// JOSEPH 23-MAR-99 +void Resp_Lenny (edict_t *self, edict_t *other, response_t response) +{ + if (response == resp_yes) + { + Voice_Specific( self, other, player_answer, 1 ); + //Voice_Random( self, other, m_response, NUM_RESPONSE ); + Voice_Player_Specific (self, TT_POSITIVE); + } + else + { + Voice_Random( self, other, player_profanity_level1, NUM_PROFANITY_LEVEL1 ); + Voice_Player_Specific(self, TT_NEGATIVE); + } + + self->response_ent = other; + self->last_response_time = level.time; + self->last_response = response; +} +// END JOSEPH + + +void Resp_MagicJ_GotDollar( edict_t *self, edict_t *other, response_t response ) +{ + + if (response == resp_yes) + { + Voice_Player_Specific(self, TT_YES); + + if (!(other->episode_flags & EP_SKIDROW_MAGICJ_GAVE_DOLLAR)) + { + // have we really got a dollar to give? + if (self->client->pers.currentcash >= 1) + { + Voice_Specific( self, other, specific, 5 ); + + // give him the dollar + + self->client->pers.currentcash -= 1; + other->currentcash += 1; + + other->episode_flags |= EP_SKIDROW_MAGICJ_GAVE_DOLLAR; + + // EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_MAGICJ_GAVE_DOLLAR); + } + else + { + Voice_Specific( self, other, specific, 6 ); + // gi.cprintf( self, PRINT_HIGH, "You don't have a dollar to give.\n" ); + + response = resp_no; + } + } + } + else if (response == resp_no) + { + Voice_Specific( self, other, specific, 6 ); + Voice_Player_Specific(self, TT_NO); + } + + self->response_ent = other; + self->last_response_time = level.time; + self->last_response = response; + +} + + +void Resp_Rummy_GotWine ( edict_t *self, edict_t *other, response_t response ) +{ + + int index; + gitem_t *item; + + item = FindItem ("Whiskey"); + index = ITEM_INDEX (item); + + if (response == resp_yes) + { + Voice_Player_Specific(self, TT_YES); + + if (!(self->episode_flags & EP_SKIDROW_RUMMY_GAVE_WINE)) + { + if (self->client->pers.inventory[index]) + { + // gi.dprintf ("FIXME: heres your wine\n"); + Voice_Specific( self, other, player_whiskey, 0 ); + + other->episode_flags |= EP_SKIDROW_RUMMY_GAVE_WINE; + + // EP_Skidrow_Register_EPFLAG (self, EP_SKIDROW_RUMMY_GAVE_WINE); + } + else + { + // gi.cprintf( self, PRINT_HIGH, "FIXME: You don't have any wine to give.\n" ); + + Voice_Specific( self, other, player_whiskey, 1 ); + response = resp_no; + + } + } + else + { + // gi.cprintf( self, PRINT_HIGH, "FIXME: You don't have any wine to give.\n" ); + Voice_Specific( self, other, player_whiskey, 1 ); + response = resp_no; + } + } + else if (response == resp_no) + { + //gi.cprintf( self, PRINT_HIGH, "FIXME: I aint go any drink to give.\n" ); + Voice_Specific( self, other, player_whiskey, 1 ); + Voice_Player_Specific(self, TT_NO); + } + + // hack to get rummy to work + other->cast_info.talk_ent = self; + + self->response_ent = other; + self->last_response_time = level.time; + self->last_response = response; + +} + +/*QUAKED misc_skidrow_afraid (.5 .5 1) (-16 -16 -24) (16 16 48) +used by actors to pick location where it is safer to run away from the player +*/ + +void SP_misc_skidrow_afraid (edict_t *self) +{ + if (deathmatch->value) + { + G_FreeEdict(self); + return; + } + + self->movetype = MOVETYPE_NONE; + self->solid = SOLID_NOT; + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 48); + + self->cast_info.aiflags |= AI_RUN_LIKE_HELL; + + AI_Ent_droptofloor( self ); +} + + +// Pull Alarm routines + +void Pull_Alarm_Ring (edict_t *ent) +{ + edict_t *Louie; + + Louie = EP_GetCharacter( NAME_LOUIE ); + + if ( Louie && ent->owner == Louie ) + { + { + edict_t *entity = NULL; + edict_t *alarm = NULL; + + while(1) + { + entity = G_Find (NULL, FOFS(classname), "misc_alarm"); + if (!entity) + break; + if (VectorDistance( entity->s.origin, Louie->s.origin ) < 64) + { + alarm = entity; + break; + } + + } + + if (!alarm) + { + ent->nextthink = level.time + 0.1; + } + else + { + Louie->cast_info.aiflags &= ~AI_GOAL_IGNOREENEMY; + // Louie->cast_info.aiflags &= ~AI_GOAL_PULL_ALARM; + alarm->use (alarm, Louie, Louie); + G_FreeEdict(ent); + } + } + } +} + +void Pull_Alarm_Think (edict_t *ent) +{ + edict_t *Louie; + cast_memory_t *mem; + + Louie = EP_GetCharacter( NAME_LOUIE ); + + if ( Louie && ent->owner == Louie ) + { + mem = level.global_cast_memory[ Louie->character_index ][ ent->enemy->character_index ]; + Louie->goal_ent = ent; + ent->cast_info.aiflags |= AI_GOAL_RUN; + ent->nextthink = level.time + 0.1; + ent->think = Pull_Alarm_Ring; + return; + } + + // the user must be dead so free it up + G_FreeEdict (ent); + +} +/* +edict_t *FindCastOrigin (edict_t *self) +{ + edict_t *ent = NULL; + + while(1) + { + ent = G_Find (ent, FOFS(classname), "cast_origin"); + if (!ent) + break; + if (ent->owner != self) + continue; + else + return ent; + } + + return NULL; +} +*/ +void EP_Skidrow_Reset( edict_t *self, edict_t *other ) +{ + extern void AI_CreateCharacterMemory(edict_t *src, edict_t *dest); + extern void AI_ReleaseCastMemory(edict_t *self, cast_memory_t *cast_memory); + + edict_t *Arnold, *Bernie; + cast_memory_t *mem; + edict_t *Cast_Origin; + + if (!(other->client)) + return; + + Arnold = EP_GetCharacter( NAME_ARNOLD ); + Bernie = EP_GetCharacter( NAME_BERNIE ); + + if (other->client && (other->client->pers.episode_flags & EP_SKIDROW_GOT_COIL)) + return; + + // both are still alive + if (Arnold && Bernie) + { + + // TBD: + // actors need to go back to their start location + if (Arnold && (mem = level.global_cast_memory[ Arnold->character_index ][ other->character_index ])) + { + + // Ridah, 5-8-99, some modifications for courtyard problems.. + + if (mem->memory_type == MEMORY_TYPE_ENEMY) + { + AI_ReleaseCastMemory( Arnold, Arnold->cast_info.enemy_memory ); + Arnold->cast_info.enemy_memory = NULL; + } + +// Ridah, 5-8-99, make it so we don't even remember the player +// AI_CreateCharacterMemory (Arnold, other); + + // Ridah, DEMO: if they're currently in Louie's office, just spawn them back at the start pos + if (ValidBoxAtLoc( Arnold->start_ent->s.origin, Arnold->mins, Arnold->maxs, Arnold, MASK_PLAYERSOLID )) + VectorCopy( Arnold->start_ent->s.origin, Arnold->s.origin ); + else // just run back there + Arnold->start_ent->cast_info.aiflags |= AI_GOAL_RUN; + + Arnold->enemy = NULL; + Cast_Origin = Arnold->start_ent; + + Arnold->goal_ent = Cast_Origin; + Arnold->cast_info.currentmove = Arnold->cast_info.move_stand; + + } + if (Bernie && (mem = level.global_cast_memory[ Bernie->character_index ][ other->character_index ])) + { + + // Ridah, 5-8-99, some modifications for courtyard problems.. + + if (mem->memory_type == MEMORY_TYPE_ENEMY) + { + AI_ReleaseCastMemory( Bernie, Bernie->cast_info.enemy_memory ); + Bernie->cast_info.enemy_memory = NULL; + } + +// Ridah, 5-8-99, make it so we don't even remember the player +// AI_CreateCharacterMemory (Bernie, other); + + // Ridah, DEMO: if they're currently in Louie's office, just spawn them back at the start pos + if (ValidBoxAtLoc( Bernie->start_ent->s.origin, Bernie->mins, Bernie->maxs, Bernie, MASK_PLAYERSOLID )) + VectorCopy( Bernie->start_ent->s.origin, Bernie->s.origin ); + else // just run back there + Bernie->start_ent->cast_info.aiflags |= AI_GOAL_RUN; + + Bernie->enemy = NULL; + Cast_Origin = Bernie->start_ent; + + Bernie->goal_ent = Cast_Origin; + Bernie->cast_info.currentmove = Bernie->cast_info.move_stand; + + } + } +} + +// JOSEPH 17-MAR-99 +int EP_skidrow_touch_motorcycle_that_needs_battery_to_start (edict_t *self, edict_t *trigger) +{ + + + // If the don't have the battery, then we don't get to go + if (!(self->client->pers.inventory[ITEM_INDEX(FindItem("Battery"))])) + { + if (!(self->episode_flags & EP_SKIDROW_FOUND_BIKE)) + { + gi.sound(self, CHAN_VOICE, gi.soundindex("scenaric/bikenobattery.wav"), 1, ATTN_NORM, 0); + EP_Skidrow_Register_EPFLAG (self, EP_SKIDROW_FOUND_BIKE); + } + + return 0; + } + + // JOSEPH 5-JUN-99 + self->client->pers.inventory[ITEM_INDEX(FindItem("Battery"))] = 0; + // END JOSEPH + + // Trigger triggered + G_UseTargets (trigger, self); + + // Delete old bike + { + edict_t *e; + int i; + + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->classname) && (!strcmp(e->classname, "props_motorcycle"))) + { + G_FreeEdict(e); + } + } + } + + // New bike + { + edict_t *moto = NULL; + extern void SP_props_motorcycle_run (edict_t *self); + + moto = G_Spawn(); + + if (!moto) + return 1; + + SP_props_motorcycle_run(moto); + } + + // Do camera cut + + // Delete trigger brush + return 1; +} +// END JOSEPH + +void Resp_Momo_GotMoney ( edict_t *self, edict_t *other, response_t response ) +{ + cast_memory_t *mem; + + if (self->episode_flags & EP_SKIDROW_MOMO_TOOK_MONEY) + return; + + mem = level.global_cast_memory[ other->character_index ][ self->character_index ]; + + if (response == resp_yes) + { + Voice_Player_Specific(self, TT_YES); + Voice_Random (self, other, player_money_yes, NUM_PLAYER_MONEY_YES); // yes + } + else if (response == resp_no) + { + Voice_Player_Specific (self, TT_NO); + Voice_Random (self, other, player_money_no, NUM_PLAYER_MONEY_NO); // no + } + + self->response_ent = other; + self->last_response_time = level.time; + self->last_response = response; +} + + +// generic process for hostile or neutral momo +qboolean ProcessMomo (edict_t *self, edict_t *other) +{ + + cast_memory_t *mem; + + mem = level.global_cast_memory[ self->character_index ][ other->character_index ]; + + if (mem->flags & MEMORY_LASTWARNING) + { + Voice_Random ( self, other, &momo_specific[13], 2); // get the fuck out of my foyer + + return true; + } + + if (other->episode_flags & EP_SKIDROW_MOMO_TOOK_MONEY) + { + // Ridah, 5-8-99, we've already taken their money, so say one of the following.. + + if (!(mem->flags & MEMORY_ASSHOLE)) + Voice_Random ( self, other, &momo_specific[12], 2); // so what's it gonna be... in or out? + else // they've cussed us, don't act all happy to see them + Voice_Random ( self, other, &momo_specific[13], 2); // get the fuck out of my foyer + + return true; + } + + if (!(other->episode_flags & EP_SKIDROW_MOMO_FIRST_TIME)) + { + Voice_Specific (self, other, momo_specific, 0); // welcome.wav + +// mem->inc = 1; + +// other->episode_flags = other->client->pers.episode_flags |= EP_SKIDROW_MOMO_ASKED_MONEY; +// mem->response = Resp_Momo_GotMoney; + + + // other->episode_flags = other->client->pers.episode_flags |= EP_SKIDROW_MOMO_FIRST_TIME; + EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_MOMO_FIRST_TIME); + + return true; + } + + // Ridah, 5-8-99, I changed this so it clears this flag in EP_CastSight() if Momo sees you after not having seen you for a while + if (!(other->episode_flags & EP_SKIDROW_MOMO_ASKED_MONEY)) + { + // note to Rafael: you can use "inc" for anything.. usually used to count events + if (!mem->inc) + { + if (!( mem->flags & MEMORY_ASSHOLE)) + { + Voice_Random (self, other, &momo_specific[1], 3); // 10 dollar cover charge + mem->inc = 1; + } + else + { + Voice_Specific (self, other, momo_specific, 5); // now it's 20 bucks! + mem->inc = 2; + } + } + else + { + Voice_Specific (self, other, momo_specific, 9); // your back + } + + // other->episode_flags = other->client->pers.episode_flags |= EP_SKIDROW_MOMO_ASKED_MONEY; + + EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_MOMO_ASKED_MONEY); + + mem->response = Resp_Momo_GotMoney; + return true; + } + + // have they responded yet? + else if ( (other->response_ent == self) + && (other->last_response_time > (level.time - 5))) + { + + if (other->last_response == resp_yes) + { + edict_t *door = NULL; + int cost; + + if ( mem->flags & MEMORY_ASSHOLE) + { + if (mem->inc < 3) + cost = 20; + else + cost = 30; + } + else + { + cost = 10; + } + + // have we really have money to give? + if (other->client->pers.currentcash >= cost) + { + other->client->pers.currentcash -= cost; + self->currentcash += cost; + + // other->episode_flags = other->client->pers.episode_flags |= EP_SKIDROW_MOMO_TOOK_MONEY; + + EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_MOMO_TOOK_MONEY); + + // TBD: at this point need to have momo walk away to a path corner cast + + Voice_Specific( self, other, &momo_specific[0], 10 ); // go on in + + + // JOSEPH 9-MAR-99 + // in case there's more than one door + { // unlock the door for player + // Find target door + edict_t *e; + int i; + + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->targetname) && (!strcmp(e->targetname, "bardoor_sr"))) + { + // Unlock target door + if (e->key == -1) + { + e->key = 0; + e->targetname = NULL; + } + } + } + + // other->episode_flags |= EP_SKIDROW_MOMO_TOOK_MONEY; + // other->client->pers.episode_flags |= EP_SKIDROW_MOMO_TOOK_MONEY; + + EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_MOMO_TOOK_MONEY); + } + // END JOSEPH + + } + else + { + // don't have money to give + Voice_Random( self, other, &momo_specific[7], 2 ); // see me later when you got the money + } + } + else // they said no + { + Voice_Random( self, other, &momo_specific[13], 3 ); + } + + other->last_response_time = 0; // so we don't process this response again + + mem->response = NULL; + other->response_ent = NULL; + + return true; + } + + else + { + + if (mem->flags & MEMORY_ASSHOLE) + { + if (!(mem->flags & MEMORY_UPSET)) + { + mem->flags |= MEMORY_UPSET; + + if (mem->inc < 3) + { + Voice_Specific (self, other, momo_specific, 5); + } + else // 30 bucks for you now! + { + Voice_Specific (self, other, momo_specific, 6); + } + } + else + { + Voice_Random (self, other, &momo_specific[12], 4); + + // This needs to be here, or Momo will never take the money when mad + if (momo_specific[12].last_played == level.time) + { // we just asked them if they wanna come in, so let them respond + mem->response = Resp_Momo_GotMoney; + } + + } + } + else + { + Voice_Random (self, other, &momo_specific[12], 5); + + if (momo_specific[12].last_played == level.time) + { // we just asked them if they wanna come in, so let them respond + mem->response = Resp_Momo_GotMoney; + } + } + + } + + return true; +} + + +void EP_SkidrowFlags (edict_t *self) +{ + if (self->name_index == NAME_MOMO) + { + self->cast_info.aiflags |= AI_IMMORTAL; + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + self->s.model_parts[PART_GUN2].invisible_objects = (1<<0 | 1<<1); + } +} + +/*UAKED immortal_hostility (.5 .5 1) (-16 -16 -24) (16 16 48) + This is an entity that will let an immortal check for player + hostility and take corresponding actions + +health = the distance to check for ei a health of 64 would have a 128 diameter +*/ + +#if 0 +void immortal_hostile_think (edict_t *self) +{ + edict_t *player; + vec3_t vec; + float dist; + + player = &g_edicts[1]; + + if (player->client->gun_noise) + { + + VectorSubtract (self->s.origin, player->s.origin, vec); + dist = VectorLength (vec); + + if (dist < self->health) + { + edict_t *dude; + cast_memory_t *mem; + + { + dude = G_PickTarget(self->target); + + if (dude) + { + mem = level.global_cast_memory[ dude->character_index ][ player->character_index ]; + + mem->flags |= MEMORY_LASTWARNING; + // gi.dprintf ("%s heard the shot\n", dude->name); + } + else + gi.dprintf ("player made gun noise in my detect zone!\n"); + } + + } + } + + self->nextthink = level.time + 0.1; +} + +void SP_immortal_hostility (edict_t *self) +{ + + self->movetype = MOVETYPE_NONE; + self->solid = SOLID_NOT; + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 48); + + if (!(self->health)) + { + gi.dprintf ("setting default radius of 128\n"); + self->health = 128; + } + + self->think = immortal_hostile_think; + self->nextthink = level.time + 0.1; + + AI_Ent_droptofloor( self ); + + +} + +#endif + + +/*QUAKED ep_skidrow_flag (.5 .5 0) ? +marks where the player can no longer fire his gun +*/ + +void ep_skidrow_flag_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + + if (!(other->client)) + return; + + if (!(other->episode_flags & EP_SKIDROW_RATS_FIND)) + { + EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_RATS_FIND); + // EP_Skidrow_Register_EPFLAG (other, EP_SKIDROW_CUT_SCENE_TWO); + } + +} + +void SP_ep_skidrow_flag ( edict_t *ent ) +{ + if (deathmatch->value) + { + G_FreeEdict(ent); + return; + } + + ent->solid = SOLID_TRIGGER; + ent->touch = ep_skidrow_flag_touch; + + ent->svflags |= SVF_NOCLIENT; + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); + +} + +/* +// Skidrow flags +#define EP_SKIDROW_MAGICJ_ASKED_DOLLAR 0x00000001 //1 +#define EP_SKIDROW_BETH_GIVES_HINT 0x00000002 //2 +#define EP_SKIDROW_AL_SAW_DEAD_LOUIE 0x00000004 //3 +#define EP_PAWNOMATIC_FIRST_TIME 0x00000008 //4 +#define EP_SKIDROW_GOT_COIL 0x00000010 //5 +#define EP_SKIDROW_MAGICJ_GAVE_DOLLAR 0x00000020 //6 +#define EP_SKIDROW_MOMO_ASKED_MONEY 0x00000040 //7 +#define EP_SKIDROW_MOMO_TOOK_MONEY 0x00000080 //8 +#define EP_SKIDROW_MOMO_FIRST_TIME 0x00000100 //9 +#define EP_TALKED_TO_LENNY 0x00000200 //10 +#define EP_SKIDROW_MOMO_GAVE_MONEY 0x00000800 //11 +#define EP_BAR_FIRST_TIME 0x00001000 //12 +#define EP_SKIDROW_LENNY_TOOK_WATCH 0x00002000 //13 +#define EP_SKIDROW_JOSEPH_WARNING_1 0x00004000 //16 +#define EP_SKIDROW_JOSEPH_WARNING_2 0x00080000 //15 +#define EP_SKIDROW_JOSEPH_WARNING_3 0x00100000 //16 +#define EP_SKIDROW_RUMMY_GAVE_WINE 0x00200000 //17 +#define EP_SKIDROW_RUMMY_ASKED_WINE 0x00400000 //18 +#define EP_SKIDROW_RATS_PISSED 0x00800000 //19 +*/ +#include "ep_log.h" + +int the_log_page = 0; + +void EP_Skidrow_Player_Log (edict_t *self, int page) +{ + int len; + int i; + int cnt = 0; + int select = 0; + + len = 0; + + Com_sprintf (game.helpmessage1, sizeof(game.helpmessage1), ""); + Com_sprintf (game.helpmessage2, sizeof(game.helpmessage2), ""); + + the_log_page += page; + + if (the_log_page < 0) + the_log_page = 0; + else if (the_log_page >= NUM_SKIDROW_PLAYER_LOG) + the_log_page = 0; + + for (i=1; iclient->pers.episode_flags & ep_skidrow_player_log[i].ep_flag) + cnt++; + + if (cnt == the_log_page) + { + select = i; + break; + } + } + + if (!page || !the_log_page) + for (i=0; iclient->pers.episode_flags & ep_flag) + return; + + self->episode_flags = self->client->pers.episode_flags |= ep_flag; + + EP_Flash_Newflag (self, ep_flag); +} + + +void EP_Skidrow_CheckMomo (edict_t *ent, cast_memory_t *mem) +{ + if (ent->episode_flags & EP_SKIDROW_MOMO_ASKED_MONEY) + mem->inc++; + +} + + +qboolean EP_Skidrow_Flash_Newflag (edict_t *self, int ep_flag) +{ + int i; + qboolean gotone = false; + + for (i=0; iname_index == NAME_DAVID && other->client) + { + if (other->client && (mem->memory_type == MEMORY_TYPE_ENEMY) ) + { // give them a chance to make friends if they holster + + self->s.model_parts[PART_GUN].invisible_objects = 0; + self->s.model_parts[PART_GUN2].invisible_objects = 0; + } + } + + if (self->name_index == NAME_PETE) + { + if (other->client && (mem->memory_type == MEMORY_TYPE_ENEMY) /*&& !(other->client->pers.weapon)*/) + { // give them a chance to make friends if they holster + self->enemy = NULL; + + // make them a neutral instead of enemy + AI_RemoveFromMemory( self, mem ); + AI_AddToMemory( self, mem, MEMORY_TYPE_NEUTRAL ); + mem->flags &= ~MEMORY_HOSTILE_ENEMY; + } + // ignore them + return true; + } + + if (self->name_index == NAME_MOMO && other->client) + { + if (mem->timestamp < (level.time - 8)) + { // haven't seen them for a while + other->episode_flags &= ~EP_Steeltown_MOMO_ASKED_MONEY; + // mem->flags &= ~MEMORY_LASTWARNING; + } + + if ((mem->memory_type == MEMORY_TYPE_ENEMY) /*&& !other->client->pers.weapon*/) + { // give them a chance to make friends if they holster + self->enemy = NULL; + + // make them a neutral instead of enemy + AI_RemoveFromMemory( self, mem ); + AI_AddToMemory( self, mem, MEMORY_TYPE_NEUTRAL ); + mem->flags &= ~MEMORY_HOSTILE_ENEMY; + } + + return true; + } + + if ((self->name_index >= NAME_KID_1 && self->name_index <= NAME_KID_8) && other->client) + { + if ( !(other->client->pers.holsteredweapon) ) + { + mem->flags |= MEMORY_AFRAID; + } + else + { + self->cast_info.aiflags &= ~AI_NO_TALK; + mem->flags &= ~MEMORY_AFRAID; + } + + if ((mem->memory_type == MEMORY_TYPE_ENEMY) ) + { + self->enemy = NULL; + + // make them a neutral instead of enemy + AI_RemoveFromMemory( self, mem ); + AI_AddToMemory( self, mem, MEMORY_TYPE_NEUTRAL ); + mem->flags &= ~MEMORY_HOSTILE_ENEMY; + } + + return true; + } + + + if (self->name_index == NAME_KROKER && other->client) + { + + if ((mem->memory_type == MEMORY_TYPE_ENEMY) )//&& !(other->episode_flags & EP_Steeltown_KROKER_BOLT) /*&& !other->client->pers.weapon*/) + { // give them a chance to make friends if they holster + self->enemy = NULL; + + // make them a neutral instead of enemy + AI_RemoveFromMemory( self, mem ); + AI_AddToMemory( self, mem, MEMORY_TYPE_NEUTRAL ); + mem->flags &= ~MEMORY_HOSTILE_ENEMY; + + mem->flags |= MEMORY_ASSHOLE; + return true; + } + else if (other->episode_flags & EP_Steeltown_KROKER_BOLT) + return false; + else + return true; + } + + return false; +} + +qboolean EP_Steeltown_CastUse (edict_t *self, edict_t *other, edict_t *activator) +{ + return false; +} + +qboolean EP_Steeltown_EventSpeech (edict_t *self, edict_t *other, int saywhat) +{ + cast_memory_t *mem; + + mem = level.global_cast_memory[ self->character_index ][ other->character_index ]; + + switch (saywhat) + { + + case say_neutral: + + if ((self->name_index == NAME_BAMBI) && other->client) + { + return (ProcessSteeltownBambi (self, other, mem)); + } + + if ((self->name_index == NAME_MOMO) + && (other->client)) + { + return (ProcessSteeltownMomo (self, other)); + } + + if (self->name_index == NAME_PETE && other->client) + { + Voice_Random (self, other, steeltown_pete, 4); + return true; + } + + if (self->name_index == NAME_MATHEW && other->client) + { + if (!(other->episode_flags & EP_Steeltown_MATHEW_CLUE1)) + { + EP_Skidrow_Register_EPFLAG (other, EP_Steeltown_MATHEW_CLUE1); + EP_Skidrow_Register_EPFLAG (other, EP_Steeltown_MATHEW_LINE1); + Voice_Specific (self, other, steeltown_mathew, 0); + } + else if (!(other->episode_flags & EP_Steeltown_MATHEW_CLUE2)) + { + EP_Skidrow_Register_EPFLAG (other, EP_Steeltown_MATHEW_CLUE2); + Voice_Specific (self, other, steeltown_mathew, 1); + } + else + { + Voice_Random (self, other, &steeltown_mathew[2], 4); + other->episode_flags = other->client->pers.episode_flags &= ~EP_Steeltown_MATHEW_CLUE1; + other->episode_flags = other->client->pers.episode_flags &= ~EP_Steeltown_MATHEW_CLUE2; + } + + return true; + } + + if (self->name_index == NAME_BRITTANY && other->client) + { + if (!(other->episode_flags & EP_Steeltown_BRITTANY_CLUE1)) + { + EP_Skidrow_Register_EPFLAG (other, EP_Steeltown_BRITTANY_CLUE1); + EP_Skidrow_Register_EPFLAG (other, EP_Steeltown_BRITTANY_LINE1); + Voice_Specific (self, other, steeltown_brittany, 0); + } + else + { + Voice_Random (self, other, &steeltown_brittany[4], 3); + other->episode_flags = other->client->pers.episode_flags &= ~EP_Steeltown_BRITTANY_CLUE1; + } + return true; + } + + if (self->name_index == NAME_KROKER && other->client) + { + return (ProcessKroker (self, other, mem)); + } + + if ((self->name_index >= NAME_KID_1 && self->name_index <= NAME_KID_8) && other->client) + { + return (ProcessKids (self, other, mem)); + } + + return false; + break; + + case say_hostile: + + if ((self->name_index == NAME_BAMBI) && other->client) + { + return (ProcessSteeltownBambi (self, other, mem)); + } + + if (self->name_index == NAME_MOMO && other->client) + { + return (ProcessSteeltownMomo (self, other)); + } + + if (self->name_index == NAME_MATHEW && other->client) + { + if (other->client->ps.stats[STAT_HUD_SELF_TALK] == TT_POSITIVE) + { + mem = level.global_cast_memory [self->character_index][other->character_index]; + mem->flags &= ~MEMORY_ASSHOLE; + + Voice_Random (self, other, &steeltown_mathew[2], 4); + + return true; + } + else + { + // just do a random curse at the player + Voice_Random (self, other, &steeltown_mathew[6], 3); + return true; + } + + return true; + } + + if (self->name_index == NAME_BRITTANY && other->client) + { + if (other->client->ps.stats[STAT_HUD_SELF_TALK] == TT_POSITIVE) + { + mem = level.global_cast_memory [self->character_index][other->character_index]; + mem->flags &= ~MEMORY_ASSHOLE; + + Voice_Random (self, other, &steeltown_brittany[4], 3); + + return true; + } + else + { + // just do a random curse at the player + Voice_Random (self, other, &steeltown_brittany[1], 3); + return true; + } + + return true; + } + + if (self->name_index == NAME_PETE && other->client) + { + Voice_Random (self, other, &steeltown_pete[4], 4); + return true; + } + + if (self->name_index == NAME_KROKER && other->client) + { + return (ProcessKroker (self, other, mem)); + } + + if ((self->name_index >= NAME_KID_1 && self->name_index <= NAME_KID_8) && other->client) + { + return (ProcessKids (self, other, mem)); + } + + return false; + break; + } + + + return false; +} + +void EP_Steeltown_ItemPickup ( edict_t *self, edict_t *other ) +{ + +} + +// EP_Steeltown_Script + +void EP_Steeltown_Script( edict_t *ent, char *scriptname ) +{ + +} + +extern mmove_t runt_move_walk_dokey; +extern mmove_t runt_move_crch_dokey; + +qboolean ProcessSteeltownBambi (edict_t *self, edict_t *player, cast_memory_t *mem) +{ + if (mem->flags & MEMORY_ASSHOLE) + { + if (player->client->ps.stats[STAT_HUD_SELF_TALK] == TT_POSITIVE) + { + mem->flags &= ~MEMORY_ASSHOLE; + + if ((player->episode_flags & EP_Steeltown_DAVID_DEAD) || (player->episode_flags & EP_Steeltown_DAVID_SAY1)) + Voice_Random (self, player, &steeltown_bambi[12], 3); + else if (player->episode_flags & EP_Steeltown_KIDS_CLUE) + Voice_Random (self, player, &steeltown_bambi[1], 3); + + return true; + } + else + { + // just do a random curse at the player + Voice_Random (self, player, &steeltown_bambi[7], 3); + return true; + } + } + else + { + if (player->episode_flags & EP_Steeltown_BAMBI_DONE) + { + Voice_Random (self, player, &steeltown_bambi[12], 3); + return true; + } + else if (player->episode_flags & EP_Steeltown_DAVID_DEAD) + { + EP_Skidrow_Register_EPFLAG (player, EP_Steeltown_BAMBI_DONE); + + Voice_Specific (self, player, steeltown_bambi, 11); + + { + int index; + gitem_t *item; + + item = FindItem ("Office_Key"); + index = ITEM_INDEX (item); + player->client->pers.inventory[ index ] = 1; + // show icon and name on status bar + player->client->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(item->icon); + player->client->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS+index; + player->client->pickup_msg_time = level.time + 5.5; + } + return true; + } + else if (player->episode_flags & EP_Steeltown_DAVID_SAY3) + { + EP_Skidrow_Register_EPFLAG (player, EP_Steeltown_BAMBI_DONE); + + Voice_Specific (self, player, steeltown_bambi, 10); + + { + int index; + gitem_t *item; + + item = FindItem ("Office_Key"); + index = ITEM_INDEX (item); + player->client->pers.inventory[ index ] = 1; + // show icon and name on status bar + player->client->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(item->icon); + player->client->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS+index; + player->client->pickup_msg_time = level.time + 5.5; + } + return true; + } + else if (!(player->episode_flags & EP_Steeltown_BAMBI_LINE1)) + { + EP_Skidrow_Register_EPFLAG (player, EP_Steeltown_BAMBI_LINE1); + Voice_Specific (self, player, steeltown_bambi, 0); + } + else + { + // go find my brother + Voice_Random (self, player, &steeltown_bambi[4], 3); + } + + return true; + } + + +} + +qboolean ProcessKids (edict_t *self, edict_t *player, cast_memory_t *mem) +{ + qboolean runaway = false; + + if (mem->flags & MEMORY_ASSHOLE) + { + // RUN AWAY + runaway = true; + Voice_Random (self, player, &steeltown_kids[8] , 4); + + } + else if (!(self->episode_flags & EP_Steeltown_KIDS_CLUE)) + { + + if (!(player->episode_flags & EP_Steeltown_KIDS_CLUE1)) + { + EP_Skidrow_Register_EPFLAG (player, EP_Steeltown_KIDS_CLUE1); + Voice_Specific (self, player, steeltown_kids, 6); + } + else if (!(player->episode_flags & EP_Steeltown_KIDS_CLUE2)) + { + EP_Skidrow_Register_EPFLAG (player, EP_Steeltown_KIDS_CLUE2); + Voice_Specific (self, player, steeltown_kids, 3); + } + else + Voice_Random (self, player, steeltown_kids, 8); + + return true; + } + else + runaway = true; + // + + if (runaway) + { + { + + #define MAXCHOICES 8 + + edict_t *ent = NULL; + int num_choices = 0; + edict_t *choice[MAXCHOICES]; + int rval; + float dist[MAXCHOICES]; + + while(1) + { + ent = G_Find (ent, FOFS(classname), "misc_steeltown_afraid"); + if (!ent) + break; + if ((dist[num_choices] = VectorDistance( ent->s.origin, self->s.origin )) > 384) + choice[num_choices++] = ent; + if (num_choices == MAXCHOICES) + break; + } + + if (!num_choices) + { + // gi.dprintf( "AI: can't find a misc_skidrow_afraid\n"); + mem->flags &= ~MEMORY_AFRAID; + } + else if (self->groundentity) + { + + // gi.dprintf( "AI: Going to misc_skidrow_afraid\n"); + // rval = rand() % num_choices; + { + int i; + float olddist = 0; + + for (i=0; i olddist) + { + rval = i; + olddist = dist[i]; + } + } + } + + if (!(choice[rval]->cast_info.aiflags & AI_GOAL_RUN)) + Voice_Specific( self, player, specific, 25 ); + + choice[rval]->cast_info.aiflags |= AI_GOAL_RUN; + self->cast_info.aiflags |= AI_RUN_LIKE_HELL; + + self->goal_ent = choice[rval]; + self->cast_info.aiflags |= AI_GOAL_IGNOREENEMY; + + self->cast_info.currentmove = self->cast_info.move_run; + } + } + return true; + } + return true; +} + +qboolean ProcessKroker (edict_t *self, edict_t *player, cast_memory_t *mem) +{ + if (mem->flags & MEMORY_ASSHOLE) + { + + edict_t *dest = NULL; + edict_t *ent = NULL; + + // if ((player->episode_flags & EP_Steeltown_KROKER_SAY)) + if ((player->episode_flags & EP_Steeltown_KROKER_BOLT)) + { + AI_MakeEnemy(self, player, 0); + return false; + } + // dont shoot let me open the safe + Voice_Specific (self, player, steeltown_kroker, 0); + + ent = G_Find (NULL, FOFS (targetname), "safe_door"); + + if (ent) + { + if (ent->key == -1) + { + dest = G_Find (NULL, FOFS (targetname), ent->target); // ai_safespot + self->goal_ent = dest; + self->cast_info.currentmove = &runt_move_walk_dokey; // this should be called dokey + + // make the guns invisible + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + self->s.model_parts[PART_GUN2].invisible_objects = (1<<0 | 1<<1); + } + else + { + // the safe is open + // player must have met up with him again just make him hostile + AI_MakeEnemy(self, player, 0); + } + } + else + { + gi.dprintf ("FIXME: failed to find safe_door\n"); + } + } + else + { + if (!(player->episode_flags & EP_Steeltown_KROKER_SAY)) + { + Voice_Specific (self, player, steeltown_kroker, 1); + EP_Skidrow_Register_EPFLAG (player, EP_Steeltown_KROKER_SAY); + return true; + } + else + { + AI_MakeEnemy(self, player, 0); + return true; + } + } + + return false; +} + +void Resp_SteeltownMomo_GotMoney ( edict_t *self, edict_t *other, response_t response ) +{ + cast_memory_t *mem; + + if (self->episode_flags & EP_Steeltown_MOMO_TOOK_MONEY) + return; + + mem = level.global_cast_memory[ other->character_index ][ self->character_index ]; + + if (response == resp_yes) + { + Voice_Player_Specific(self, TT_YES); + Voice_Random (self, other, player_money_yes, NUM_PLAYER_MONEY_YES); // yes + } + else if (response == resp_no) + { + Voice_Player_Specific (self, TT_NO); + Voice_Random (self, other, player_money_no, NUM_PLAYER_MONEY_NO); // no + } + + self->response_ent = other; + self->last_response_time = level.time; + self->last_response = response; +} + + +// generic process for hostile or neutral momo +qboolean ProcessSteeltownMomo (edict_t *self, edict_t *other) +{ + + cast_memory_t *mem; + + mem = level.global_cast_memory[ self->character_index ][ other->character_index ]; + + if (mem->flags & MEMORY_LASTWARNING) + { + Voice_Random ( self, other, &momo_specific[13], 2); // get the fuck out of my foyer + + return true; + } + + if (other->episode_flags & EP_Steeltown_MOMO_TOOK_MONEY) + { + // Ridah, 5-8-99, we've already taken their money, so say one of the following.. + + if (!(mem->flags & MEMORY_ASSHOLE)) + Voice_Random ( self, other, &momo_specific[12], 2); // so what's it gonna be... in or out? + else // they've cussed us, don't act all happy to see them + Voice_Random ( self, other, &momo_specific[13], 2); // get the fuck out of my foyer + + return true; + } + + if (!(other->episode_flags & EP_Steeltown_MOMO_FIRST_TIME)) + { + + Voice_Specific (self, other, momo_specific, 18); // welcome.wav + + EP_Skidrow_Register_EPFLAG (other, EP_Steeltown_MOMO_FIRST_TIME); + + return true; + } + + // Ridah, 5-8-99, I changed this so it clears this flag in EP_CastSight() if Momo sees you after not having seen you for a while + if (!(other->episode_flags & EP_Steeltown_MOMO_ASKED_MONEY)) + { + // note to Rafael: you can use "inc" for anything.. usually used to count events + if (!mem->inc) + { + if (!( mem->flags & MEMORY_ASSHOLE)) + { + Voice_Random (self, other, &momo_specific[1], 3); // 10 dollar cover charge + mem->inc = 1; + } + else + { + Voice_Specific (self, other, momo_specific, 5); // now it's 20 bucks! + mem->inc = 2; + } + } + else + { + Voice_Specific (self, other, momo_specific, 9); // your back + } + + EP_Skidrow_Register_EPFLAG (other, EP_Steeltown_MOMO_ASKED_MONEY); + + mem->response = Resp_SteeltownMomo_GotMoney; + return true; + } + + // have they responded yet? + else if ( (other->response_ent == self) + && (other->last_response_time > (level.time - 5))) + { + + if (other->last_response == resp_yes) + { + edict_t *door = NULL; + int cost; + + if ( mem->flags & MEMORY_ASSHOLE) + { + if (mem->inc < 3) + cost = 20; + else + cost = 30; + } + else + { + cost = 10; + } + + // have we really have money to give? + if (other->client->pers.currentcash >= cost) + { + other->client->pers.currentcash -= cost; + self->currentcash += cost; + + EP_Skidrow_Register_EPFLAG (other, EP_Steeltown_MOMO_TOOK_MONEY); + + // TBD: at this point need to have momo walk away to a path corner cast + + Voice_Specific( self, other, &momo_specific[0], 10 ); // go on in + + + // JOSEPH 9-MAR-99 + // in case there's more than one door + { // unlock the door for player + // Find target door + edict_t *e; + int i; + + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->targetname) && (!strcmp(e->targetname, "bardoor_st"))) + { + // Unlock target door + if (e->key == -1) + { + e->key = 0; + e->targetname = NULL; + } + } + } + + + EP_Skidrow_Register_EPFLAG (other, EP_Steeltown_MOMO_TOOK_MONEY); + } + // END JOSEPH + + } + else + { + // don't have money to give + Voice_Random( self, other, &momo_specific[7], 2 ); // see me later when you got the money + } + } + else // they said no + { + Voice_Random( self, other, &momo_specific[13], 3 ); + } + + other->last_response_time = 0; // so we don't process this response again + + mem->response = NULL; + other->response_ent = NULL; + + return true; + } + + else + { + + if (mem->flags & MEMORY_ASSHOLE) + { + if (!(mem->flags & MEMORY_UPSET)) + { + mem->flags |= MEMORY_UPSET; + + if (mem->inc < 3) + { + Voice_Specific (self, other, momo_specific, 5); + } + else // 30 bucks for you now! + { + Voice_Specific (self, other, momo_specific, 6); + } + } + else + { + Voice_Random (self, other, &momo_specific[12], 4); + + // This needs to be here, or Momo will never take the money when mad + if (momo_specific[12].last_played == level.time) + { // we just asked them if they wanna come in, so let them respond + mem->response = Resp_SteeltownMomo_GotMoney; + } + + } + } + else + { + Voice_Random (self, other, &momo_specific[12], 5); + + if (momo_specific[12].last_played == level.time) + { // we just asked them if they wanna come in, so let them respond + mem->response = Resp_SteeltownMomo_GotMoney; + } + } + + } + + return true; +} + + + +int EP_Steeltown_HiredGuysFlags (edict_t *player, edict_t *self) +{ + if (self->name_index == NAME_DAVID) + { + if (player->episode_flags & EP_Steeltown_DAVID_SAY3) + { + if (!(player->episode_flags & EP_Steeltown_DAVID_HIRED)) + { + cast_memory_t *cast_memory; + + cast_memory = level.global_cast_memory[self->character_index][player->character_index]; + + cast_memory->flags |= MEMORY_HIRED; + cast_memory->flags |= MEMORY_HIRE_FIRST_TIME; + cast_memory->flags |= MEMORY_HIRE_ASK; + + self->leader = player; + self->cast_info.aiflags |= AI_NOWALK_FACE; + self->order = ORDER_FOLLOWME; + self->order_timestamp = level.time; + + player->client->pers.friends++; + + self->spawnflags &= ~2; + + self->s.model_parts[PART_GUN].invisible_objects = 0; + self->s.model_parts[PART_GUN2].invisible_objects = 0; + + EP_Skidrow_Register_EPFLAG (player, EP_Steeltown_DAVID_HIRED); + + } + + return (1); + } + + if (!(player->episode_flags & EP_Steeltown_DAVID_SAY1)) + { + EP_Skidrow_Register_EPFLAG (player, EP_Steeltown_DAVID_SAY1); + Voice_Specific (self, player, steeltown_david, 0); + + return (0); + } + else if (!(player->episode_flags & EP_Steeltown_DAVID_SAY2)) + { + EP_Skidrow_Register_EPFLAG (player, EP_Steeltown_DAVID_SAY2); + Voice_Specific (self, player, steeltown_david, 1); + + return (0); + } + else if (!(player->episode_flags & EP_Steeltown_DAVID_SAY3)) + { + EP_Skidrow_Register_EPFLAG (player, EP_Steeltown_DAVID_SAY3); + Voice_Specific (self, player, steeltown_david, 2); + + return (0); + } + } + + return (1); +} + +void EP_SteeltownFlags (edict_t *self) +{ + if (self->name_index == NAME_MOMO) + { + self->cast_info.aiflags |= AI_IMMORTAL; + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + self->s.model_parts[PART_GUN2].invisible_objects = (1<<0 | 1<<1); + } + + if (self->name_index == NAME_DAVID) + { + self->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + self->s.model_parts[PART_GUN2].invisible_objects = (1<<0 | 1<<1); + } + + // David should have his weapons invisible till he gets hired +} + +void EP_Steeltown_CheckMomo (edict_t *ent, cast_memory_t *mem) +{ + if (ent->episode_flags & EP_Steeltown_MOMO_ASKED_MONEY) + mem->inc++; + +} + +qboolean EP_Steeltown_DoKey (edict_t *self, edict_t *other) +{ + if (other->name_index == NAME_DAVID && self->client) + return true; + else + return false; +} + +extern mmove_t punk_move_walk_dokey; +extern mmove_t punk_move_crch_dokey; + +extern mmove_t runt_move_walk_dokey; +extern mmove_t runt_move_crch_dokey; + +extern mmove_t bitch_move_walk_dokey; + +extern mmove_t thug_move_walk_dokey; +extern mmove_t thug_move_crch_dokey; + +void EP_Steeltown_Check_DoKey (edict_t *self, edict_t *ent) +{ + edict_t *David; + edict_t *dest; + vec3_t vec; + float dist; + + David = EP_GetCharacter (NAME_DAVID); + + if (!ent) + return; + + if (!(ent->targetname)) + { + if (David) + { + self->cast_info.aiflags &= ~AI_DOKEY; + David->cast_info.aiflags &= ~AI_DOKEY; + } + return; + } + + + + // its a safe and its locked + if (!strcmp (ent->targetname, "david_door") && ent->key == -1) + { + dest = G_Find (NULL, FOFS (targetname), ent->target); // ai_safespot + + if (David && David->cast_info.aiflags & AI_DOKEY) + { + if (!(David->goal_ent) || !(David->enemy)) + { + if (visible (David, dest)) + { + VectorSubtract (David->s.origin, dest->s.origin, vec); + dist = VectorLength (vec); + + if (dist < 384) + { + David->goal_ent = dest; + + self->cast_info.aiflags &= ~AI_DOKEY; + David->cast_info.aiflags &= ~AI_DOKEY; + + David->cast_info.currentmove = &punk_move_walk_dokey; // this should be called dokey + + // make the guns invisible + //David->s.model_parts[PART_GUN].invisible_objects = (1<<0 | 1<<1); + //David->s.model_parts[PART_GUN2].invisible_objects = (1<<0 | 1<<1); + + } + } + } + } + else + gi.dprintf ("there is no one to open the safe\n"); + } + + + return; +} + + +void EP_Steeltown_ReachedDoKey (edict_t *self) +{ + vec3_t vec; + float dist; + edict_t *dest; + + VectorSubtract (self->s.origin, self->goal_ent->s.origin, vec); + dist = VectorLength (vec); + + if (dist < 32) + { + if (self->name_index == NAME_KROKER) + { + self->cast_info.currentmove = &runt_move_crch_dokey; + } + else if (self->name_index == NAME_DAVID) + { + self->goal_ent = NULL; + + dest = G_Find (NULL, FOFS (targetname), "trigger_david"); + if (dest->use) + dest->use (dest, self, self); + + self->cast_info.currentmove = &punk_move_crch_dokey; + } + } + +} + +void EP_Steeltown_EndDoKey (edict_t *self) +{ + edict_t *dest = NULL; + edict_t *ent = NULL; + edict_t *player; + + player = &g_edicts[1]; + + if (self->name_index == NAME_KROKER) + { + self->cast_info.currentmove = self->cast_info.move_run; + + dest = G_Find (NULL, FOFS (targetname), "trigger_kroker"); + if (dest->use) + dest->use (dest, self, self); + + { + // bolt outta here + ent = G_Find (ent, FOFS(classname), "misc_kroker_afraid"); + + if (ent) + { + self->goal_ent = ent; + ent->cast_info.aiflags |= AI_GOAL_RUN; + self->cast_info.aiflags |= AI_RUN_LIKE_HELL; + self->cast_info.aiflags |= AI_GOAL_IGNOREENEMY; + self->cast_info.currentmove = self->cast_info.move_run; + + EP_Skidrow_Register_EPFLAG (player, EP_Steeltown_KROKER_BOLT); + } + else + gi.dprintf ("didn't find misc_kroker_afraid\n"); + } + } + + else if (self->name_index == NAME_DAVID) + { + self->cast_info.currentmove = self->cast_info.move_run; + + // gi.dprintf ("FIXME SOUND TODO %s: there you go easy money!\n", self->name); + // Voice_Specific (self, player, hiredguy_ask, 17); + + + // he's done so show the guns + //self->s.model_parts[PART_GUN].invisible_objects = 0; + //self->s.model_parts[PART_GUN2].invisible_objects = 0; + + } + +} + +void EP_Steeltown_HiredGuysRegisterFlags (edict_t *ent, edict_t *other) +{ + return; +} + +void EP_Steeltown_SpecialEventDeath (edict_t *self) +{ + edict_t *player; + + player = &g_edicts[1]; + + if (self->name_index == NAME_DAVID && strstr (level.mapname, "steel3")) + { + EP_Skidrow_Register_EPFLAG (player, EP_Steeltown_DAVID_DEAD); + + if (player->episode_flags & EP_Steeltown_BAMBI_LINE1) + EP_Skidrow_Register_EPFLAG (player, EP_Steeltown_DAVID_DEAD_A); + else + EP_Skidrow_Register_EPFLAG (player, EP_Steeltown_DAVID_DEAD_B); + + gi.sound(player, CHAN_VOICE, gi.soundindex("scenaric/daviddead.wav"), 1, ATTN_NORM, 0); + + } + +} + +/*QUAKED misc_steeltown_afraid (.5 .5 1) (-16 -16 -24) (16 16 48) +used by kids in the mill to run away +*/ + +void SP_misc_steeltown_afraid (edict_t *self) +{ + if (deathmatch->value) + { + G_FreeEdict(self); + return; + } + + self->movetype = MOVETYPE_NONE; + self->solid = SOLID_NOT; + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 48); + + self->cast_info.aiflags |= AI_RUN_LIKE_HELL; + + AI_Ent_droptofloor( self ); +} + +/*QUAKED misc_kroker_afraid (.5 .5 1) (-16 -16 -24) (16 16 48) +safe spot for kroker +*/ + +void SP_misc_kroker_afraid (edict_t *self) +{ + if (deathmatch->value) + { + G_FreeEdict(self); + return; + } + + self->movetype = MOVETYPE_NONE; + self->solid = SOLID_NOT; + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 48); + + self->cast_info.aiflags |= AI_RUN_LIKE_HELL; + + AI_Ent_droptofloor( self ); +} + +/*QUAKED ai_moker_notinoffice (.5 .5 1) ? +This will set the EP_Steeltown_MOKER_NOTINOFFICE flag +*/ + +void ai_moker_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + if (!(other->client)) + return; + + if (!(other->episode_flags & EP_Steeltown_MOKER_NOTINOFFICE)) + { + EP_Skidrow_Register_EPFLAG (other, EP_Steeltown_MOKER_NOTINOFFICE); + gi.sound(other, CHAN_VOICE, gi.soundindex("scenaric/mokersnothere.wav"), 1, ATTN_NORM, 0); + } + // FIXME + // we need to play a wav file + +} + +void SP_moker_notinoffice ( edict_t *ent ) +{ + if (deathmatch->value) + { + G_FreeEdict(ent); + return; + } + + ent->solid = SOLID_TRIGGER; + ent->touch = ai_moker_touch; + + ent->svflags |= SVF_NOCLIENT; + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); + +} + + +#include "ep_log.h" + +extern int the_log_page; + +void EP_Steeltown_Player_Log (edict_t *self, int page) +{ + int len; + int i; + int cnt = 0; + int select = 0; + + len = 0; + + Com_sprintf (game.helpmessage1, sizeof(game.helpmessage1), ""); + Com_sprintf (game.helpmessage2, sizeof(game.helpmessage2), ""); + + the_log_page += page; + + if (the_log_page < 0) + the_log_page = 0; + else if (the_log_page >= NUM_ST_PLAYER_LOG) + the_log_page = 0; + + for (i=1; iclient->pers.episode_flags & ep_st_player_log[i].ep_flag) + cnt++; + + if (cnt == the_log_page) + { + select = i; + break; + } + } + + if (!page || !the_log_page) + for (i=0; icharacter_index ][ other->character_index ]; + + switch (saywhat) + { + + case say_neutral: + + if (self->name_index == NAME_LUKE && other->client) + { + if (!(other->episode_flags & EP_TY_LUKE_CLUE1)) + { + EP_Skidrow_Register_EPFLAG (other, EP_TY_LUKE_CLUE1); + EP_Skidrow_Register_EPFLAG (other, EP_TY_TAKETHESEWER); + Voice_Specific (self, other, ty_luke, 0); + } + else if (!(other->episode_flags & EP_TY_LUKE_CLUE2)) + { + EP_Skidrow_Register_EPFLAG (other, EP_TY_LUKE_CLUE2); + Voice_Specific (self, other, ty_luke, 1); + } + else + Voice_Random (self, other, &ty_luke[2], 4); + + return true; + + } + + if (self->name_index == NAME_HANN && other->client) + { + if (!(other->episode_flags & EP_TY_HANN_CLUE1)) + { + EP_Skidrow_Register_EPFLAG (other, EP_TY_HANN_CLUE1); + EP_Skidrow_Register_EPFLAG (other, EP_TY_TAKETHESEWER); + Voice_Specific (self, other, ty_hann, 0); + } + else if (!(other->episode_flags & EP_TY_HANN_CLUE2)) + { + EP_Skidrow_Register_EPFLAG (other, EP_TY_HANN_CLUE2); + Voice_Specific (self, other, ty_hann, 1); + } + else + Voice_Random (self, other, &ty_hann[2], 4); + + return true; + + } + return false; + + break; + case say_hostile: + + if (self->name_index == NAME_LUKE && other->client) + { + if (other->client->ps.stats[STAT_HUD_SELF_TALK] == TT_POSITIVE) + { + mem = level.global_cast_memory [self->character_index][other->character_index]; + mem->flags &= ~MEMORY_ASSHOLE; + + Voice_Random (self, other, &ty_luke[2], 4); + + return true; + } + else + { + // just do a random curse at the player + Voice_Random (self, other, &ty_luke[6], 3); + return true; + } + } + + if (self->name_index == NAME_HANN && other->client) + { + if (other->client->ps.stats[STAT_HUD_SELF_TALK] == TT_POSITIVE) + { + mem = level.global_cast_memory [self->character_index][other->character_index]; + mem->flags &= ~MEMORY_ASSHOLE; + + Voice_Random (self, other, &ty_hann[2], 4); + + return true; + } + else + { + // just do a random curse at the player + Voice_Random (self, other, &ty_hann[6], 3); + return true; + } + } + + return false; + + break; + } + + return false; +} + +void EP_Trainyard_ItemPickup ( edict_t *self, edict_t *other ) +{ + +} + +void EP_Trainyard_Script( edict_t *ent, char *scriptname ) +{ + +} + +int EP_Trainyard_HiredGuysFlags (edict_t *player, edict_t *self) +{ + return (1); +} + +void EP_TrainyardFlags (edict_t *self) +{ + +} + +qboolean EP_Trainyard_DoKey (edict_t *self, edict_t *other) +{ + return false; +} + +void EP_Trainyard_Check_DoKey (edict_t *self, edict_t *ent) +{ + +} + +void EP_Trainyard_ReachedDoKey (edict_t *self) +{ + +} + +void EP_Trainyard_EndDoKey (edict_t *self) +{ + +} + +qboolean EP_Trainyard_UnlockDoorFlag (edict_t *ent) +{ + return false; +} + +void EP_Trainyard_HiredGuysRegisterFlags (edict_t *ent, edict_t *other) +{ + +} + + +extern mmove_t punk_move_walk_dokey; +extern mmove_t punk_move_crch_dokey; + +extern mmove_t runt_move_walk_dokey; +extern mmove_t runt_move_crch_dokey; + +extern mmove_t bitch_move_walk_dokey; + + +/*QUAKED misc_ty_afraid (.5 .5 1) (-16 -16 -24) (16 16 48) +used as the location mo will run to before larry and curly attack him +*/ + +void misc_ty_afraid_think (edict_t *self) +{ + +} + +void SP_misc_ty_afraid (edict_t *self) +{ + if (deathmatch->value) + { + G_FreeEdict(self); + return; + } + + self->movetype = MOVETYPE_NONE; + self->solid = SOLID_NOT; + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 48); + + self->cast_info.aiflags |= AI_RUN_LIKE_HELL; + + AI_Ent_droptofloor( self ); + + gi.linkentity (self); +} + +/*QUAKED ai_ty_mo_boundry (.5 .5 1) ? +touching this brush will cause mo larry and curly to attack +*/ + +void ai_mo_boundry_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ +// vec3_t vec; + + // if (!(other->svflags & SVF_MONSTER) && !(other->client)) + if (!(other->client)) + return; + +} + +void SP_ty_mo_boundry ( edict_t *ent ) +{ + if (deathmatch->value) + { + G_FreeEdict(ent); + return; + } + + ent->solid = SOLID_TRIGGER; + ent->touch = ai_mo_boundry_touch; + + ent->svflags |= SVF_NOCLIENT; + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); + +} + +/*QUAKED ai_ty_fuseblown (.5 .5 1) ? +This will set the EP_TY_FUSEBLOWN flag +*/ + +void ai_ty_fuseblown_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + if (!(other->client)) + return; + + if (!(other->episode_flags & EP_TY_FUSEBLOWN)) + { + EP_Skidrow_Register_EPFLAG (other, EP_TY_FUSEBLOWN); + gi.sound(other, CHAN_VOICE, gi.soundindex("scenaric/need_fuse.wav"), 1, ATTN_NORM, 0); + } + // FIXME + // we need to play a wav file + +} + +void SP_ty_fuseblown ( edict_t *ent ) +{ + if (deathmatch->value) + { + G_FreeEdict(ent); + return; + } + + ent->solid = SOLID_TRIGGER; + ent->touch = ai_ty_fuseblown_touch; + + ent->svflags |= SVF_NOCLIENT; + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); + +} + +/*QUAKED ai_ty_valvehandle (.5 .5 1) ? +*/ + +void ai_ty_valvehandle_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + + int index; + gitem_t *item; + + if (!(other->client)) + return; + + item = FindItem ("Valve"); + index = ITEM_INDEX (item); + + if (!(other->client->pers.inventory[ index ])) + { + gi.sound(other, CHAN_VOICE, gi.soundindex("scenaric/need_valvehandle.wav"), 1, ATTN_NORM, 0); + + self->touch = NULL; + } + +} + +void SP_ty_valvehandle ( edict_t *ent ) +{ + if (deathmatch->value) + { + G_FreeEdict(ent); + return; + } + + ent->solid = SOLID_TRIGGER; + ent->touch = ai_ty_valvehandle_touch; + + ent->svflags |= SVF_NOCLIENT; + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); + +} + + + +#include "ep_log.h" + +extern int the_log_page; + +void EP_Trainyard_Player_Log (edict_t *self, int page) +{ + int len; + int i; + int cnt = 0; + int select = 0; + + len = 0; + + Com_sprintf (game.helpmessage1, sizeof(game.helpmessage1), ""); + Com_sprintf (game.helpmessage2, sizeof(game.helpmessage2), ""); + + the_log_page += page; + + if (the_log_page < 0) + the_log_page = 0; + else if (the_log_page >= NUM_TY_PLAYER_LOG) + the_log_page = 0; + + for (i=1; iclient->pers.episode_flags & ep_ty_player_log[i].ep_flag) + cnt++; + + if (cnt == the_log_page) + { + select = i; + break; + } + } + + if (!page || !the_log_page) + for (i=0; is.origin, start ); + start[2] += 0.1; + + VectorCopy( start, dest ); + dest[2] -= 4000; + + tr = gi.trace( start, self->mins, self->maxs, dest, self, MASK_PLAYERSOLID ); + + if (tr.startsolid || tr.allsolid) + { + gi.dprintf( "Warning: %s in solid at (%s)\n", self->classname, vtos(self->s.origin) ); + return; + } + if (tr.fraction == 1) + { + gi.dprintf( "Warning: %s above ground at (%s)\n", self->classname, vtos(self->s.origin) ); + return; + } + + VectorCopy( tr.endpos, self->s.origin ); +} + +//====================================================================================== + +/*QUAKED ai_boundary (.5 .5 0) ? +Character will abort pursuing player when touching this brush. Will +take cover until the player is out of view, then return to guarding position (if +character has been assigned one). + + "moral" range from 1 (Coward) to 7 (Psycotic). Only characters with an equal or lower moral level will be effected by this brush. +*/ + +void boundary_takecover_think ( edict_t *self ) +{ + if (!self->owner->combat_goalent) + { + if ((self->owner->cast_info.aiflags & (AI_TAKE_COVER|AI_TAKECOVER_IGNOREHEALTH)) != (AI_TAKE_COVER|AI_TAKECOVER_IGNOREHEALTH)) + { + AI_ForceTakeCover( self->owner, self->owner->enemy, true ); + } + + G_FreeEdict( self ); + return; + } + + if (self->owner->health <= 0) + { + G_FreeEdict( self ); + return; + } + + self->nextthink = level.time + 1.0; +} + +void ai_boundary_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ +#define DEBUG_AI_BOUNDARY 0 + + edict_t *thinker; + + if (!(other->svflags & SVF_MONSTER)) + return; + + if (other->cast_group != self->cast_group) + return; + else if (other->moral > self->moral) + return; + + // abort taking cover + other->cast_info.aiflags &= ~AI_TAKE_COVER; + other->combat_goalent = NULL; + + // we should go into a Take Cover mode for a bit, and then return to our guarding + // position, if possible. + + if (other->enemy) + { + cast_memory_t *mem; + + if ((other->cast_info.aiflags & (AI_TAKE_COVER|AI_TAKECOVER_IGNOREHEALTH)) != (AI_TAKE_COVER|AI_TAKECOVER_IGNOREHEALTH)) + { + + // Just go back to our start position + + if (!AI_ForceTakeCover( other, other->enemy, true )) + { + if (mem = level.global_cast_memory[other->character_index][other->enemy->character_index]) + { + // pretend that we haven't seen them in a while + mem->timestamp = level.time - 5; + mem->flags |= MEMORY_TAUNT; + other->enemy = NULL; + + if (DEBUG_AI_BOUNDARY) + gi.dprintf( "Sending %s to start position\n", other->name ); + + // go back to our start position + other->combat_goalent = other->goal_ent = other->start_ent; + other->combat_goalent->cast_info.aiflags |= AI_GOAL_RUN; + + thinker = G_Spawn(); + thinker->owner = other; + thinker->nextthink = level.time + 3; + thinker->think = boundary_takecover_think; + + mem->ignore_time = level.time + 2; + } + } +// else +// { +// if (DEBUG_AI_BOUNDARY) +// gi.dprintf( "%s taking cover\n", other->name ); +// } + } +/* + // tell all our friends in our vacinity to do the same + mem = other->cast_info.friend_memory; + + while (mem) + { + if (g_edicts[mem->cast_ent].health > 0 && VectorDistance( other->s.origin, g_edicts[mem->cast_ent].s.origin ) < 256) + { + edict_t *dude; + cast_memory_t *dude_mem; + + dude = &g_edicts[mem->cast_ent]; + + if (dude->enemy) + { + if ((dude->cast_info.aiflags & (AI_TAKE_COVER|AI_TAKECOVER_IGNOREHEALTH)) != (AI_TAKE_COVER|AI_TAKECOVER_IGNOREHEALTH)) + { + if (!AI_ForceTakeCover( dude )) + { + dude_mem = level.global_cast_memory[dude->character_index][dude->enemy->character_index]; + + // pretend that we haven't seen them in a while + dude_mem->timestamp = level.time - 5; + dude_mem->flags |= MEMORY_TAUNT; + dude_mem->ignore_time = level.time + 2; +// dude->enemy = NULL; + } + else + { + if (DEBUG_AI_BOUNDARY) + gi.dprintf( "%s taking cover\n", dude->name ); + } + } + } + + if ((dude->cast_info.aiflags & (AI_TAKE_COVER|AI_TAKECOVER_IGNOREHEALTH)) != (AI_TAKE_COVER|AI_TAKECOVER_IGNOREHEALTH)) + { + if (DEBUG_AI_BOUNDARY) + gi.dprintf( "Sending %s to start position\n", dude->name ); + + // go back to our start position + dude->goal_ent = dude->start_ent; + dude->goal_ent->cast_info.aiflags |= AI_GOAL_RUN; + + thinker = G_Spawn(); + thinker->owner = dude; + thinker->nextthink = level.time + 1; + thinker->think = boundary_takecover_think; + } + + } + + mem = mem->next; + } +*/ + } + else if ((other->cast_info.aiflags & (AI_TAKE_COVER|AI_TAKECOVER_IGNOREHEALTH)) != (AI_TAKE_COVER|AI_TAKECOVER_IGNOREHEALTH)) + { + if (DEBUG_AI_BOUNDARY) + gi.dprintf( "Sending %s to start position\n", other->name ); + + // start walking back to our start position + other->goal_ent = other->start_ent; + other->goal_ent->cast_info.aiflags |= AI_GOAL_RUN; + + thinker = G_Spawn(); + thinker->owner = other; + thinker->nextthink = level.time + 1; + thinker->think = boundary_takecover_think; + } + +} + +void SP_ai_boundary (edict_t *ent) +{ + if (deathmatch->value) + { + G_FreeEdict(ent); + return; + } + + ent->solid = SOLID_TRIGGER; + ent->touch = ai_boundary_touch; + + // set the center pos + VectorAdd( ent->absmin, ent->absmax, ent->pos1 ); + VectorScale( ent->pos1, 0.5, ent->pos1 ); + + ent->svflags |= SVF_NOCLIENT; + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); +} + +//====================================================================================== + +/*QUAKED ai_event_hostile (.5 .5 0) ? +Character touching this brush will become a hostile enemy to all other characters +in LOS, that have the same "cast_group" as the brush. + +"cast_group" must be > 0 for this brush to have any effect. +*/ + +void ai_event_hostile_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + int i; + cast_memory_t *mem; + edict_t *icast; + + if (self->last_talk_time > (level.time - 0.5)) + return; + self->last_talk_time = level.time; + + if (!(other->svflags & SVF_MONSTER) && !(other->client)) + return; + + if (other->cast_group == self->cast_group) + return; + + // for all characters that belong to this entity, make them hostile towards us + for (i=0; icast_group != self->cast_group) + continue; + + if (icast->health <= 0 || !icast->inuse) + continue; + + mem = level.global_cast_memory[i][other->character_index]; + + if (!mem) + continue; + if (mem->timestamp < (level.time - ENEMY_SIGHT_DURATION*2)) + continue; + if (mem->flags & MEMORY_HOSTILE_ENEMY) + continue; + + AI_MakeEnemy( icast, other, 0 ); + + // now send them to us, if they can see/hear us + if ( (mem->timestamp > (level.time - ENEMY_SIGHT_DURATION)) +// || (gi.inPHS( other->s.origin, icast->s.origin )) + || (gi.inPVS( other->s.origin, icast->s.origin ))) + { + AI_RecordSighting( icast, other, VectorDistance(icast->s.origin, other->s.origin) ); + } + } +} + +void SP_ai_event_hostile (edict_t *ent) +{ + if (deathmatch->value) + { + G_FreeEdict(ent); + return; + } + + if (ent->cast_group < 1) + { + gi.dprintf("Warning: ai_event_hostile without a valid cast_group\n"); + return; + } + + ent->solid = SOLID_TRIGGER; + ent->touch = ai_event_hostile_touch; + + ent->svflags |= SVF_NOCLIENT; + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); +} + +//====================================================================================== + +/*QUAKED ai_event_follow (.5 .5 0) ? +Client touching this brush will become a leader to all other characters +in LOS, that have the same "cast_group" as the brush. + +"cast_group" must be > 0 for this brush to have any effect. +*/ + +void ai_event_follow_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + int i; + edict_t *icast; + + if (self->last_talk_time > (level.time - 0.5)) + return; + self->last_talk_time = level.time; + + if (!(other->client)) + return; + + if (other->cast_group != self->cast_group) + return; + + // for all characters that belong to this entity, make them follow us + for (i=0; icast_group != self->cast_group) + continue; + + if (icast->health <= 0 || !icast->inuse) + continue; + + if (icast->leader) + continue; + + icast->leader = other; + } +} + +void SP_ai_event_follow (edict_t *ent) +{ + if (deathmatch->value) + { + G_FreeEdict(ent); + return; + } + + if (ent->cast_group < 1) + { + gi.dprintf("Warning: ai_event_follow without a valid cast_group\n"); + return; + } + + ent->solid = SOLID_TRIGGER; + ent->touch = ai_event_follow_touch; + + ent->svflags |= SVF_NOCLIENT; + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); +} + +//====================================================================================== + +/*QUAKED ai_guard (.5 .5 1) (-16 -16 -24) (16 16 48) +Set a cast's "guard_target" to the "targetname" of this entity. +That character will then guard this location. + + "targetname" links to "guard_target" for the cast entity(s) + "guard_radius" is the max guarding radius (default = 512) +*/ + +void SP_ai_guard (edict_t *self) +{ + if (deathmatch->value) + { + G_FreeEdict(self); + return; + } + + self->movetype = MOVETYPE_NONE; + self->solid = SOLID_NOT; + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 48); + + if (!self->guard_radius) + self->guard_radius = 512; + + AI_Ent_droptofloor( self ); +} + +//====================================================================================== + +/*QUAKED ai_territory (.5 .5 0) ? +Marks the boundary of a gang's territory. + +A character touching this will be deemed inside the gang's +territory. This means war if sighted. + +!!NOTE!!: Point the "angles" in the direction of the territory. This lets +the AI know if the character is walking into or out of the territory. + + "cast_group" is the group that owns this territory + "angles" points to the direction of the territory + "radius" distance from brush before the player will be attacked (default 512) +*/ + +void ai_territory_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + vec3_t vec; + + if (!(other->svflags & SVF_MONSTER) && !(other->client)) + return; + + // are we going into, or out of the territory? + + VectorSubtract( other->s.origin, self->pos1, vec ); + vec[2] = 0; + VectorNormalize( vec ); + + if (DotProduct( vec, self->movedir ) > 0) + { // going into +// if (nav_dynamic->value && other->client && (!other->last_territory_touched || (other->last_territory_touched->cast_group != self->cast_group))) +// gi.dprintf("%s going into %s territory\n", other->classname, EP_GetGangName(self->cast_group) ); + + if ((!other->last_territory_touched || (other->last_territory_touched->cast_group != self->cast_group))) + { + other->last_territory_touched = self; + other->current_territory = self->cast_group; + } + } + else // going out of + { +// if (nav_dynamic->value && other->client && other->last_territory_touched) +// gi.dprintf("%s leaving %s territory\n", other->classname, EP_GetGangName(self->cast_group) ); + + if (other->last_territory_touched) + { + other->last_territory_touched = NULL; + other->current_territory = self->cast_group; + } + } + + other->time_territory_touched = level.time; + +} + +void SP_ai_territory ( edict_t *ent ) +{ + if (deathmatch->value) + { + G_FreeEdict(ent); + return; + } + + ent->solid = SOLID_TRIGGER; + ent->touch = ai_territory_touch; + + if (!ent->cast_group) + ent->cast_group = 2; + + if (!ent->dmg_radius) + ent->dmg_radius = 512; + + if (!ent->moral) + { + gi.dprintf( "\n\nWARNING: ai_territory without a 'moral' (defaulting to 7)\nUse a 'moral' = 1 to PREVENT the gang members getting hostile when you enter their turf\n\n" ); + ent->moral = MORAL_AGGRESSIVE; + } + + ent->svflags |= SVF_NOCLIENT; + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); + + // set the center pos + VectorAdd( ent->absmin, ent->absmax, ent->pos1 ); + VectorScale( ent->pos1, 0.5, ent->pos1 ); + + AngleVectors( ent->s.angles, ent->movedir, NULL, NULL ); +} + +/*QUAKED ai_safespot (.5 .5 1) (-16 -16 -24) (16 16 48) + +Set a cast's "flee_target" to the "targetname" of this entity. +That character will then flee to this location. + + "targetname" links to "flee_target" for the cast entity(s) +*/ + +void SP_ai_safespot (edict_t *self) +{ + if (deathmatch->value) + { + G_FreeEdict(self); + return; + } + + self->movetype = MOVETYPE_NONE; + self->solid = SOLID_NOT; + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 48); + + AI_Ent_droptofloor( self ); +} + + +/*QUAKED ai_reset (.5 .5 0) ? +This is a brush that will reset a cast location to his +startup location + + FIXME: Is this implemented yet? +*/ +void ai_reset_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + EP_Reset (self, other); +} + +void SP_ai_reset (edict_t *ent) +{ + + if (deathmatch->value) + { + G_FreeEdict(ent); + return; + } + + ent->solid = SOLID_TRIGGER; + ent->touch = ai_reset_touch; + + ent->svflags |= SVF_NOCLIENT; + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); + +} + +/*QUAKED ai_combat_spot (.5 .5 1) (-16 -16 -24) (16 16 48) + + A good place to go to get a vantage point during fighting. +*/ + +void SP_ai_combat_spot (edict_t *self) +{ + if (deathmatch->value) + { + G_FreeEdict(self); + return; + } + + self->movetype = MOVETYPE_NONE; + self->solid = SOLID_NOT; + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 48); + + AI_Ent_droptofloor( self ); +} + + +/*QUAKED ai_trigger_character (.5 .5 0) ? +When the player touches this brush, the targetted character will start +following it's path_corner. + + "target" link this with the "targetname" of the character to be triggered +*/ + +void ai_trigger_character_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf); + +void SP_ai_trigger_character (edict_t *ent) +{ + if (deathmatch->value) + { + G_FreeEdict(ent); + return; + } + + ent->solid = SOLID_TRIGGER; + ent->touch = ai_trigger_character_touch; + + if (!ent->cast_group) + ent->cast_group = 2; + + ent->svflags |= SVF_NOCLIENT; + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); +} + +void ai_trigger_character_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + edict_t *trav=NULL; + + if (!(other->client)) + return; + + while (trav = G_Find(trav, FOFS(targetname), self->target)) + { + trav->spawnflags |= SPAWNFLAG_IMMEDIATE_FOLLOW_PATH; + } +} + +/*QUAKED ai_locked_door (.5 .5 0) ? +A character touching this brush will check the targetted door to see if it is closed. +If so, the character will head towards the specified path_corner_cast. + +Example use: guiding AI characters away from a locked door + + "target" link this with the "targetname" of the door to check + "pathtarget" linked with "targetname" of path_corner_cast to head for +*/ + +void ai_locked_door_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf); + +void locked_door_think( edict_t *ent ) +{ + if (ent->pathtarget) + ent->target_ent = G_Find( NULL, FOFS(targetname), ent->pathtarget ); + if (!ent->target_ent) + { + gi.dprintf( "ai_locked_door has invalid pathtarget (should point to a path_corner_cast)\n" ); + return; + } + + if (ent->target) + ent->goal_ent = G_Find( NULL, FOFS(targetname), ent->target ); + if (!ent->goal_ent) + { + gi.dprintf( "ai_locked_door has invalid target (should point to a door)\n" ); + return; + } +} + +void SP_ai_locked_door (edict_t *ent) +{ + if (deathmatch->value) + { + G_FreeEdict(ent); + return; + } + + ent->solid = SOLID_TRIGGER; + ent->touch = ai_locked_door_touch; + + ent->svflags |= SVF_NOCLIENT; + + ent->think = locked_door_think; + ent->nextthink = level.time + 0.1; + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); +} + +void ai_locked_door_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + if (!self->goal_ent) + return; + + // JOSEPH 14-MAY-99 + if (!(other->svflags & SVF_MONSTER)) + return; + // END JOSEPH + + if (other->goal_ent == self->goal_ent) + return; + + // if it's not closed, ignore + if (!(self->goal_ent->moveinfo.state == STATE_BOTTOM || self->goal_ent->moveinfo.state == STATE_DOWN)) + return; + + other->goal_ent = self->goal_ent; + other->cast_info.aiflags |= AI_GOAL_IGNOREENEMY; +} + +//====================================================================================== + +void ai_button_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + // JOSEPH 14-MAY-99 + if (!(other->svflags & SVF_MONSTER)) + return; + // END JOSEPH + + self->owner->use( self->owner, other, other ); +} + +void ai_button_think (edict_t *self) +{ + edict_t *trav; + route_t r; + +// disabled this, doesn't work too well, need a better approach +// eg. they'll activate lifts when they shouldn't +return; + + // check characters to see if any are within range + + while ( (self->count < level.num_characters) + && (level.characters[self->count]) + && ( (level.characters[self->count]->client) + || (level.characters[self->count]->health < 0))) + { + self->count++; + } + + if (self->count < level.num_characters) + { // check this character + + if (!level.characters[self->count]) + goto fail; + + trav = level.characters[self->count]; + + if (!trav->inuse || trav->health <= 0) + goto fail; + + if (trav->activator) + goto fail; + + if (trav->cast_info.currentmove->frame->aifunc != ai_run) + goto fail; + + if (VectorDistance( trav->s.origin, self->s.origin ) > 200) + goto fail; + + if (!AI_ClearSight( self, trav, false )) + goto fail; + + if (!NAV_Route_EntityToEntity( trav, NULL, self, VIS_PARTIAL, false, &r )) + goto fail; + + // good enough.. + trav->activator = self->owner; + + } + +fail: + + self->count++; + + if (self->count > level.num_characters) + self->count = 0; + + self->nextthink = level.time + 0.1; +} diff --git a/gamesrc/g_ai_fight.c b/gamesrc/g_ai_fight.c new file mode 100644 index 0000000..c74e73b --- /dev/null +++ b/gamesrc/g_ai_fight.c @@ -0,0 +1,586 @@ +//============================================================== +// g_ai_fight.c +// +// Combat oriented AI routines +//============================================================== + +#include "g_local.h" + +//============================================================================ + + +void AI_CheckMakeEnemy( edict_t *self, edict_t *other ) +{ + if (other != self->enemy && other->cast_group != self->cast_group && other->enemy == self) + { // make them our enemy now + + if ( !self->enemy + || !(self->cast_info.aiflags & AI_MELEE) + || VectorDistance(self->s.origin, other->s.origin) < 128) + { + if (level.global_cast_memory[self->character_index][other->character_index]) + self->enemy = other; + } + } +} + +/* +================== +AI_BeginAttack + + Returns true if OK to attack, false otherwise + + May start a new movement for the character, to straighten up, or avoid something/someone +================== +*/ +qboolean AI_BeginAttack( edict_t *self ) +{ + vec3_t vec; + float dist; + + + // Ridah, 7-5-99, If they've been ordered to attack us by a client, get mad at them also + if (self->enemy && self->enemy->leader) + AI_MakeEnemy( self, self->enemy->leader, 0 ); + + + if (!self->enemy || (self->enemy->health <= 0)) + { + self->cast_info.currentmove = self->cast_info.move_stand; + return false; + } + + dist = VectorDistance( self->s.origin, self->enemy->s.origin ); + + + // Ridah, 19-may-99, Grenade AI + if (self->cast_info.aiflags & AI_GRENADE_GUY) + { + if (( self->s.origin[2] - self->enemy->s.origin[2] ) < -256) + { + if (self->cast_info.currentmove != self->cast_info.move_avoid_run) + AI_EndAttack(self); // try find something else to do + + return false; + } + } + + + if ( !(self->cast_info.aiflags & AI_SIDE_ATTACK)) +// Ridah 7/5/99, fixes shooting with back to player (happens in SR1 courtyard sometimes) +// && ( (dist > FACE_ANIM_DIST) +// || (self->cast_info.aiflags & AI_FACE_ATTACK))) + { + + if (!directly_infront(self, self->enemy)) + { // we need to straighten up + float dist; + + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + dist = VectorNormalize( vec ); + self->ideal_yaw = vectoyaw( vec ); + + if ((dist > 384) && (self->maxs[2] == self->cast_info.standing_max_z)) + { + int side_result; + + side_result = AI_SideTrace( self, 48, 90, SIDE_RANDOM ); + + if (side_result && self->cast_info.move_lside_step) + { + if (side_result < 0) + self->cast_info.currentmove = self->cast_info.move_lside_step; + else + self->cast_info.currentmove = self->cast_info.move_rside_step; + } + else + { + self->cast_info.currentmove = self->cast_info.move_avoid_walk; + } + + return false; + } + else + { + M_ChangeYaw(self); + } + + } + + } +/* + if ( (self->cast_info.move_avoid_reverse_run) + && (self->cast_info.last_reverse < (level.time - 5)) + && (dist < 64)) + { + // trace a line backwards, make sure we can move there + if ( AI_YawTrace( self, 64, 180 ) ) + { + self->cast_info.currentmove = self->cast_info.move_avoid_reverse_run; + self->cast_info.last_reverse = level.time; + return false; + } + } +*/ + if (!AI_ClearSight(self, self->enemy, true)) + { // can't see them directly, will we hit another enemy? if so keep firing + + static vec3_t mins = { -8, -8, -4 }; + static vec3_t maxs = { 8, 8, 4 }; + vec3_t start, end; + trace_t tr; + cast_memory_t *tr_memory; + + VectorCopy( self->s.origin, start ); + start[2] += self->viewheight - 8; + + VectorCopy( self->enemy->s.origin, end ); + end[2] += self->enemy->viewheight - 8; + + tr = gi.trace( start, mins, maxs, end, self, MASK_PLAYERSOLID ); + + if (tr.fraction < 1) + { + if (tr.ent == world) + { + if (self->cast_info.currentmove != self->cast_info.move_avoid_run) + AI_EndAttack(self); // try find something else to do + + return false; + } + else if (tr.ent->svflags & SVF_MONSTER || tr.ent->client) + { + tr_memory = level.global_cast_memory[self->character_index][tr.ent->character_index]; + + if (!tr_memory || !(tr_memory->flags & MEMORY_HOSTILE_ENEMY)) + { + if (self->cast_info.currentmove != self->cast_info.move_avoid_run) + AI_EndAttack(self); // try find something else to do + + return false; + } + } + } + } + + if (self->dont_takecover_time == 99999) + { // attack for at least 2 seconds + if (!(self->cast_info.aiflags & AI_MELEE)) + self->dont_takecover_time = level.time + 2 + random()*4; + else + self->dont_takecover_time = 0; + } + + return true; +} + +/* +============= +AI_AvoidDangerousEntity + + Alerts all AI in vaccinity of the given ent, so they can flee if possible +============= +*/ +void AI_AvoidDangerousEntity( edict_t *ent ) +{ + int i; + float old_time; + + if (deathmatch->value) + return; + + ent->s.origin[2] += 4; + old_time = level.time; + + for (i=1; ihealth <= 0) + continue; + + if (level.characters[i] == ent) + continue; + + if (!ent->client && VectorDistance( level.characters[i]->s.origin, ent->s.origin ) > ent->dmg_radius*2) + continue; + + // if they are already fleeing this ent, check our fleeing position + if (level.characters[i]->cast_info.aiflags & AI_TAKE_COVER) + { + if (level.characters[i]->combat_goalent && !CanDamage( level.characters[i]->combat_goalent, ent )) + continue; + } + + if (!gi.inPVS( level.characters[i]->s.origin, ent->s.origin )) + continue; + + if ((VectorDistance( level.characters[i]->s.origin, ent->s.origin ) > 64) && !CanDamage( level.characters[i], ent)) + continue; + +// gi.dprintf( "RUN FOR YOUR LIVES!!!!\n" ); + + level.characters[i]->last_gethidepos = 0; + level.time -= 0.1; // so we bypass speed optimization + + AI_ForceTakeCover( level.characters[i], ent, (ent->client == NULL) ); + ent->noise_time = level.time; + + } + + level.time = old_time; + ent->s.origin[2] -= 4; +} + +/* +============= +AI_CheckAttack + + Generic check for ability and willingness to attack our enemy +============= +*/ +qboolean AI_CheckAttack(edict_t *self) +{ + float dist; + + // Ridah, 17-may-99, fixes health_threshold not working + if (self->goal_ent && (self->cast_info.aiflags & AI_GOAL_IGNOREENEMY) && (VectorDistance(self->s.origin, self->goal_ent->s.origin) > 256)) + { + self->cast_info.currentmove = self->cast_info.move_run; + return false; + } + + if ( !self->cast_info.attack || !self->cast_info.long_attack ) + return false; // never attack if we are unable to + + if (!self->cast_info.move_run) + return false; + + if (self->cast_info.pausetime > (level.time - 1)) + return false; + + if (self->combat_goalent && (VectorDistance(self->s.origin, self->combat_goalent->s.origin) > 128)) + return false; + + if (!AI_HasLeaderButGoForEnemy(self, self->enemy)) + { + return false; + } + + if ( !self->enemy || (self->enemy->health <= 0) || !self->enemy->inuse ) + { + self->enemy = NULL; + return false; + } + + if ( !AI_ClearSight( self, self->enemy, true ) ) + { + route_t route; + + // we can't hit them from here, should we pursue them? + + if ( NAV_Route_EntityToEntity( self, NULL, self->enemy, VIS_PARTIAL, false, &route ) ) + { + AI_StartRun( self ); + } + + return false; + } + + if ( self->cast_info.aiflags & AI_MELEE ) + { + if ( (fabs( self->s.origin[2] - self->enemy->s.origin[2] ) > 32) + || (VectorDistance( self->s.origin, self->enemy->s.origin ) > 96 )) + { + return false; + } + } + + dist = VectorDistance(self->enemy->s.origin, self->s.origin); +/* + if ( ((dist < FACE_ANIM_DIST) && !infront(self, self->enemy)) + || ((dist >= FACE_ANIM_DIST) && !directly_infront(self, self->enemy))) + { + vec3_t vec; + float dist; + + // just straighten up + VectorSubtract( self->enemy->s.origin, self->s.origin, vec ); + dist = VectorNormalize( vec ); + + if ( self->maxs[2] == self->cast_info.standing_max_z ) + { + self->ideal_yaw = vectoyaw( vec ); + + if (dist < AI_GUARDING_DIST) + { + if (self->cast_info.move_avoid_reverse_walk) + self->cast_info.currentmove = self->cast_info.move_avoid_reverse_walk; + } + else + self->cast_info.avoid(self, self->enemy, true); + + return true; + } + else + { + if (self->cast_info.move_avoid_crwalk) + { + self->ideal_yaw = vectoyaw( vec ); + self->cast_info.currentmove = self->cast_info.move_avoid_crwalk; + return true; + } + else // just keep using ai_run() + { + self->cast_info.currentmove = self->cast_info.move_crwalk; + return false; + } + } + } +*/ + if (dist < self->cast_info.max_attack_distance) + { + // we can attack from here + + return self->cast_info.attack(self); + } + else if (!(self->cast_info.aiflags & AI_MELEE)) + { // attack from far away + + self->cast_info.long_attack(self); + + return false; + } + + return false; +} + +/* +=========== +AI_Goto_CombatTarget +=========== +*/ +qboolean AI_Goto_CombatTarget( edict_t *self ) +{ + if (self->combattarget) + { + edict_t *target, *oldtarget; + + target = NULL; + while ((target = G_Find (target, FOFS(targetname), self->combattarget)) != NULL) + { + if (strcmp(target->classname, "path_corner") == 0) + { + if (self->health > 0) + { + self->combat_goalent = target; + target->cast_info.aiflags |= AI_GOAL_RUN; + self->cast_info.aiflags |= AI_RUN_LIKE_HELL; + + self->cast_info.currentmove = self->cast_info.move_run; + self->combattarget = NULL; + + return true; + } + else // we're dead, but check for pathtarget's + { + oldtarget = target; + + // check all items in chain + while (target) + { + if (target->pathtarget) + { // fire it in 2 seconds (otherwise we might cause a loop) + char *savetarget; + + if (target->delay < 2) + target->delay = 2; + + savetarget = target->target; + target->target = target->pathtarget; + G_UseTargets (target, self); + target->target = savetarget; + } + + if (!target->target) + return false; + + target = G_Find (NULL, FOFS(targetname), target->target); + + if (target == oldtarget) // looped around + return false; + } + } + } + } + } + + return false; +} + +void GotoCombatTargetThink( edict_t *self ) +{ + if (self->owner->health > 0) + AI_Goto_CombatTarget( self->owner ); + + G_FreeEdict( self ); +} + +/* +=========== +AI_StartAttack + + Begins an attack on enemy +=========== +*/ +void AI_StartAttack(edict_t *self, edict_t *enemy) +{ + mmove_t *oldmove; + cast_memory_t *mem; + + if (!self->pain_debounce_time) + self->pain_debounce_time = 0.1; // so we attack them from now on + + // FIXME: remember the current enemy, if it exists? + self->enemy = enemy; + + + if (mem = level.global_cast_memory[self->character_index][enemy->character_index]) + { + mem->flags |= MEMORY_STARTED_ATTACK; + } + + + if (self->combattarget) + { + if (self->delay) + { // set a thinker to get us moving + edict_t *thinker; + + thinker = G_Spawn(); + thinker->owner = self; + thinker->think = GotoCombatTargetThink; + thinker->nextthink = level.time + self->delay; + } + else // go now + { + if (AI_Goto_CombatTarget( self )) + return; + } + } + + oldmove = self->cast_info.currentmove; + + self->cast_info.checkattack(self); + + if (oldmove == self->cast_info.currentmove) + { // start running + self->cast_info.currentmove = self->cast_info.move_run; + } +} + +//============================================================================ +// General Combat AI routines + +#define COMBAT_FORCED_HIDE 1 + +/* +============= +CombatHideThink +============= +*/ +/* +void CombatHideThink ( edict_t *thinker ) +{ + edict_t *ent; + + ent = thinker->owner; + + if (!(ent->cast_info.aiflags & AI_TAKE_COVER)) + { // not hiding anymore so free ourself + G_FreeEdict( thinker ); + } +} +*/ +/* +============= +AI_ProcessCombat + + For each AI character, take a look at what they're currently doing, and look + for something they could be doing that would be better for them. +============= +*/ +void CheckStillHiding( edict_t *self ); + +void AI_ProcessCombat (void) +{ + int i; + edict_t *ent; + + for (i=0; iclient) + continue; + + if (!ent->enemy) + continue; + + if (ent->health <= 0) + continue; + + if (ent->enemy->health <= 0) + continue; + + if (AI_ClearSight( ent, ent->enemy, false )) + { // visible + + ent->combat_last_visible = level.time; + VectorCopy( ent->enemy->s.origin, ent->combat_last_visible_pos ); + + } + else // not visible + { + + if (!(ent->cast_info.aiflags & AI_TAKE_COVER)) + { // not currently hiding + + // should we start hiding, rather than walk straight into their trap? + + if ( (ent->combat_last_visible > (level.time - 0.5)) + && ( (!ent->enemy->client && !(ent->enemy->cast_info.aiflags & AI_MELEE)) + || (ent->enemy->client && ent->enemy->client->pers.weapon && ent->enemy->client->pers.weapon->ammo))) // they have a weapon capable of doing some damage + { + // ok so start hiding, but should we hide from the position they were last visible from? or just them? + + if ((ent->moral < MORAL_PSYCOTIC) /*&& (VectorDistance( ent->enemy->s.origin, ent->combat_last_visible_pos ) < (256 * ent->moral))*/) + { // hide from last visible position + + { + vec3_t org; + + VectorCopy( ent->enemy->s.origin, org ); + VectorCopy( ent->combat_last_visible_pos, ent->enemy->s.origin ); + AI_ForceTakeCover( ent, ent->enemy, true ); + VectorCopy( org, ent->enemy->s.origin ); + + if (ent->moral > 2) // don't wait there forever + { + ent->cast_info.aiflags &= ~AI_TAKECOVER_IGNOREHEALTH; + + ent->take_cover_time = level.time + (float)(ent->moral * 2); + } + } + + } + + } + + } + else // we are currently hiding, yell something out perhaps? + { + + } + + } + } +} diff --git a/gamesrc/g_ai_memory.c b/gamesrc/g_ai_memory.c new file mode 100644 index 0000000..a3e4fcc --- /dev/null +++ b/gamesrc/g_ai_memory.c @@ -0,0 +1,1476 @@ + +//============================================================== +// g_ai_memory.c +// +// Character memory related AI routines +//============================================================== + +#include "g_local.h" + +#include "voice_punk.h" +#include "voice_bitch.h" + +//============================================================================ + +/* +================= +AddCharacterToGame + + Called whenever a character enters the game (whether AI or client) + + returns FALSE if the character is not allowed to enter the game +================= +*/ +qboolean AddCharacterToGame(edict_t *self) +{ + int i; + + + if (level.num_characters == MAX_CHARACTERS) + { + gi.dprintf("\nMAX_CHARACTERS exceeded, new character rejected.\n\n"); + return false; + } + + // client is always first + if ((level.characters[0] != &g_edicts[1]) || self->client) + { + level.characters[0] = &g_edicts[1]; + g_edicts[1].character_index = 0; + + if (self->client) + return true; + } + + // look for them already in the list + for (i=0; icharacter_index = i; + return true; + } + } + + if (level.num_characters < 1) + level.num_characters = 1; + + // add them to the list + self->character_index = level.num_characters++; + level.characters[self->character_index] = self; + + return true; +} + +/* +============== +AI_RelaseCastMemory + + Release all memory associated to this memory block +============== +*/ +void AI_ReleaseCastMemory(edict_t *self, cast_memory_t *cast_memory) +{ + cast_memory_t *next_memory, *this_memory; + + this_memory = cast_memory; + + while (this_memory) + { + next_memory = this_memory->next; + + level.global_cast_memory[self->character_index][g_edicts[cast_memory->cast_ent].character_index] = NULL; + memset( this_memory, 0, sizeof(cast_memory_t) ); + + this_memory = next_memory; + } +} + +/* +============== +AI_InitMemory +============== +*/ +void AI_InitMemory( edict_t *self ) +{ + self->cast_info.friend_memory = NULL; + self->cast_info.enemy_memory = NULL; + self->cast_info.neutral_memory = NULL; +} + +/* +============== +AI_UnloadCastMemory + + Clears all memory associated with the cast member +============== +*/ +void AI_UnloadCastMemory (edict_t *self) +{ + int i; + edict_t *trav; + cast_memory_t *other_memory; + + if (deathmatch->value) + return; + if (!(self->svflags & SVF_MONSTER || self->client)) // <- Note to Rafael: the lack of this line was causing memory problems (hopefully all of them..) + return; + + // delete all our memories + AI_ReleaseCastMemory( self, self->cast_info.friend_memory ); + self->cast_info.friend_memory = NULL; + AI_ReleaseCastMemory( self, self->cast_info.neutral_memory ); + self->cast_info.neutral_memory = NULL; + AI_ReleaseCastMemory( self, self->cast_info.enemy_memory ); + self->cast_info.enemy_memory = NULL; + + // initialize the global memory list, and delete all other memories of us + for ( i=0; icharacter_index][i] = NULL; // since this doesn't exist anymore.. + + // unload this other character's memory of us + + trav = level.characters[i]; + + if (trav->client) + continue; + + if (!(other_memory = level.global_cast_memory[i][self->character_index])) + continue; + + AI_RemoveFromMemory ( trav, other_memory ); + + level.global_cast_memory[i][self->character_index] = NULL; + } +} + +/* +=========== +AI_RemoveFromMemory +=========== +*/ +void AI_RemoveFromMemory ( edict_t *self, cast_memory_t *memory ) +{ + if (memory->prev) + memory->prev->next = memory->next; + + if (memory->next) + memory->next->prev = memory->prev; + + if (self->cast_info.friend_memory == memory) + self->cast_info.friend_memory = memory->next; + else if (self->cast_info.neutral_memory == memory) + self->cast_info.neutral_memory = memory->next; + else if (self->cast_info.enemy_memory == memory) + self->cast_info.enemy_memory = memory->next; + +} + +/* +=========== +AI_AddToMemory +=========== +*/ +void AI_AddToMemory ( edict_t *self, cast_memory_t *memory, int memory_type ) +{ + cast_memory_t **head=NULL; + + switch (memory_type) + { + case MEMORY_TYPE_FRIEND : + head = &self->cast_info.friend_memory; + break; + case MEMORY_TYPE_NEUTRAL : + head = &self->cast_info.neutral_memory; + break; + case MEMORY_TYPE_ENEMY : + head = &self->cast_info.enemy_memory; + break; + } + + if (*head) + { + (*head)->prev = memory; + memory->next = *head; + } + else + { + memory->next = NULL; + } + + *head = memory; + memory->prev = NULL; + + memory->memory_type = memory_type; + memory->timestamp = level.time; +} + +/* +=========== +AI_CreateCharacterMemory + + Creates a Character Memory association between 2 characters +=========== +*/ +void AI_CreateCharacterMemory(edict_t *src, edict_t *dest) +{ + cast_memory_t *new_memory, **head; + int memory_type = MEMORY_TYPE_NEUTRAL; // default to neutral + + if (ai_debug_memory->value) + { + gi.dprintf("ai_debug_memory: #%i sighted #%i", src->character_index, dest->character_index); + } + + head = &src->cast_info.neutral_memory; + + // first, create the cast_memory structure +// new_memory = gi.TagMalloc(sizeof(cast_memory_t), TAG_LEVEL); + new_memory = &(g_cast_memory[src->character_index * MAX_CHARACTERS + dest->character_index]); + memset( new_memory, 0, sizeof(cast_memory_t)); + + // set variables + new_memory->cast_ent = (int) (dest - g_edicts); + new_memory->flags = 0; + new_memory->timestamp = -1; + + // determine relationship between us and this character + + if (dest->cast_group) + { + if (dest->cast_group == src->cast_group) + { // we're in the same group, so we're mates + memory_type = MEMORY_TYPE_FRIEND; + head = &src->cast_info.friend_memory; + + if (ai_debug_memory->value) + gi.dprintf(" - FRIEND"); + } + else if (src->cast_group) + { // rival groups + + // FIXME: check for inter-group relationships? (some groups may have an agreement?) + + memory_type = MEMORY_TYPE_ENEMY; + head = &src->cast_info.enemy_memory; + + if (ai_debug_memory->value) + gi.dprintf(" - ENEMY"); + } + } + + if (ai_debug_memory->value) + gi.dprintf("\n"); + + // never start off as enemies, for now + + // place this memory chunk into the SRC's memory + + if (!(*head)) + { + *head = new_memory; + } + else // add to the start of the current list + { + (*head)->prev = new_memory; + new_memory->next = *head; + + *head = new_memory; + } + + new_memory->memory_type = memory_type; + new_memory->prev = NULL; + + // set the global memory + level.global_cast_memory[src->character_index][dest->character_index] = new_memory; +} + +/* +=========== +AI_CreateCopyMemory + + creates a memory slot, and copies the given memory information into it +=========== +*/ +cast_memory_t *AI_CreateCopyMemory ( edict_t *src, edict_t *dest, cast_memory_t *cast_memory ) +{ + cast_memory_t *new_memory; + + // first, create the cast_memory structure +// new_memory = gi.TagMalloc(sizeof(cast_memory_t), TAG_LEVEL); + new_memory = &(g_cast_memory[src->character_index * MAX_CHARACTERS + dest->character_index]); + + // copy the information across + memcpy( new_memory, cast_memory, sizeof(cast_memory_t) ); + + new_memory->prev = new_memory->next = NULL; + new_memory->cast_ent = (int) (dest - g_edicts); + + return new_memory; +} + +/* +=========== +AI_ShareEnemies + + spreads our list of enemies with other +=========== +*/ +void AI_ShareEnemies ( edict_t *self, edict_t *other ) +{ + cast_memory_t *self_memory, *other_memory; + + // Ridah, 18-may-99, cast_group 1 guys shouldn't help other group 1's if they haven't been hired yet + if ((other->cast_group == 1) && !other->leader) + return; + if ((self->cast_group == 1) && !self->leader) + return; + + // see if any of self's enemies aren't an enemy of other + + self_memory = self->cast_info.enemy_memory; + + while (self_memory) + { + // is this character an enemy to other? + if ( (self_memory->cast_ent != (int) (other - g_edicts)) + && !(self_memory->flags & MEMORY_PERSONAL_OPINION)) + { + if ( !(other_memory = level.global_cast_memory[other->character_index][g_edicts[self_memory->cast_ent].character_index]) + || (other_memory->memory_type != MEMORY_TYPE_ENEMY)) + { + if (!other_memory) + { // create the memory of them + other_memory = AI_CreateCopyMemory( other, &g_edicts[self_memory->cast_ent], self_memory); + level.global_cast_memory[other->character_index][g_edicts[self_memory->cast_ent].character_index] = other_memory; + } + else // remove them from whereever they are + { + AI_RemoveFromMemory(other, other_memory); + } + + // make an enemy + AI_AddToMemory(other, other_memory, MEMORY_TYPE_ENEMY); + + if (ai_debug_memory->value) + { + gi.dprintf("ai_debug_memory: #%i is now an enemy of #%i (copied from #%i)\n", + g_edicts[self_memory->cast_ent].character_index, other->character_index, self->character_index); + } + + } + + // make sure we share any flags necessary + other_memory->flags |= (self_memory->flags & MEMORY_HOSTILE_ENEMY); + } + + self_memory = self_memory->next; + } +} + + +// JOSEPH 28-DEC-98 +void AI_Think_MakeEnemy_Timer (edict_t *ent) +{ + cast_memory_t *cast_memory; + + ent->reactdelay -= 0.1; + + if (ent->reactdelay <= 0) + { + if ((ent->handle) && (ent->handle2) && (!ent->handle->deadflag) && (!ent->handle2->deadflag)) + { + if ((!(cast_memory = level.global_cast_memory[ent->handle->character_index][ent->handle2->character_index])) || + (!(cast_memory->flags & MEMORY_HOSTILE_ENEMY))) + { + AI_MakeEnemy(ent->handle, ent->handle2, ent->avelflag); + } + } + + ent->nextthink = 0; + G_FreeEdict(ent); + } + else + { + ent->nextthink = level.time + 0.1; + } +} + +void AI_MakeEnemy_Timer (edict_t *self, edict_t *other, int flags, float delay) +{ + edict_t *timer; + + timer = G_Spawn(); + + timer->think = AI_Think_MakeEnemy_Timer; + timer->nextthink = level.time + 0.1; + timer->reactdelay = delay; + timer->handle = self; + timer->handle2 = other; + timer->avelflag = flags; + gi.linkentity (timer); + + return; +} +// END JOSEPH + +/* +=========== +AI_MakeEnemy + + other becomes an enemy of self, and we get hostile at them + + memory_flags get carried through to the cast_memory->flags variable +=========== +*/ +void AI_MakeEnemy ( edict_t *self, edict_t *other, int memory_flags ) +{ + cast_memory_t *cast_memory; + + // JOSEPH 28-DEC-98 + edict_t *e; + int i; + +//if (self->name_index == NAME_LISA) +//self = self; + +if (other->client)// && other->client->gun_noise) + // Find all members of the local team and hostilize them + if (self->localteam) + { + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((!e->deadflag) && (e->localteam) && (e->localteam != self->localteam) && + (!strcmp(e->localteam, self->localteam))) + { + if ((!(cast_memory = level.global_cast_memory[self->character_index][other->character_index])) || + (!(cast_memory->flags & MEMORY_HOSTILE_ENEMY))) + { + e->localteam = NULL; + + if (e->reactdelay) + { + AI_MakeEnemy_Timer(e, other, memory_flags, e->reactdelay); + } + else + { + AI_MakeEnemy(e, other, memory_flags); + } + } + } + } + + self->localteam = NULL; + } + // END JOSEPH + + if ( ! (cast_memory = level.global_cast_memory[self->character_index][other->character_index] ) ) + { // we are not aware of this person, so create the memory + + AI_RecordSighting ( self, other, VectorDistance(self->s.origin, other->s.origin) ); + cast_memory = level.global_cast_memory[self->character_index][other->character_index]; + + } + + if (cast_memory->memory_type != MEMORY_TYPE_ENEMY) + { // make them one + + AI_RemoveFromMemory( self, cast_memory ); + AI_AddToMemory ( self, cast_memory, MEMORY_TYPE_ENEMY ); + + } + + cast_memory->flags |= memory_flags; + cast_memory->flags |= MEMORY_HOSTILE_ENEMY; +} + + +/* +=========== +AI_RecordSighting + + Updates SRC's memory of DEST +=========== +*/ +void AI_RecordSighting(edict_t *src, edict_t *dest, float dist) +{ + cast_memory_t *cast_memory, *dest_enemy_memory, *dest_to_dest_enemy_memory; + qboolean processed=false; + + if (ai_debug_memory->value) + { + // draw a line to show that we can see them + NAV_DrawLine( src->s.origin, dest->s.origin ); + } + + cast_memory = level.global_cast_memory[src->character_index][dest->character_index]; + + if (!cast_memory) + { // we need to create the memory of this character + AI_CreateCharacterMemory(src, dest); + cast_memory = level.global_cast_memory[src->character_index][dest->character_index]; + } + + // do we have a sight target? + if ( (cast_memory->memory_type == MEMORY_TYPE_ENEMY) + && (src->sight_target) + && (!src->goal_ent) + && (cast_memory->timestamp < (level.time - 10))) // we haven't seen them in a while + { + edict_t *targ; + + targ = NULL; + if (targ = G_Find (NULL, FOFS(targetname), src->sight_target)) + { + src->goal_ent = targ; + src->cast_info.aiflags |= AI_GOAL_IGNOREENEMY; + gi.dprintf( "AI: Going for sight_target\n"); + } + } + + + // Check for special events + processed = EP_CastSight ( src, dest, cast_memory ); + + + // update the memory of this character + + VectorCopy(dest->s.origin, cast_memory->last_known_origin); + cast_memory->timestamp = level.time; + cast_memory->timestamp_dist = dist; + + cast_memory->last_known_closest_node = dest->nav_data.cache_node; + + + // if they're a friend, share enemy information + if ( (cast_memory->memory_type == MEMORY_TYPE_FRIEND) + && ( (src->cast_group != 1) + || (!dest->client && dest->leader) // if not a client, only help if they've been hired + || (cast_memory->flags & MEMORY_HIRED))) + { + + AI_ShareEnemies( src, dest ); + + } + + else if (processed) // EP_CastSight() has processed the reactions of this AI character + { + + return; + + } + + /* + else if (cast_memory->flags & MEMORY_TAUNT) + { + src->cast_info.currentmove = src->cast_info.move_stand; + } + */ + + // Below checks for making them HOSTILE + + else if (cast_memory->flags & MEMORY_HOSTILE_ENEMY) + { + + // already hostile + + // if currently hiding from someone else, then abort hiding + if ( (src->cast_info.aiflags & AI_TAKE_COVER) + && (dest != src->cover_ent)) + { + src->cast_info.aiflags &= ~AI_TAKE_COVER; + src->cast_info.aiflags &= ~AI_TAKECOVER_IGNOREHEALTH; + } + + // if we've been told to hold position, and we're melee, then hide + else if ( !(src->cast_info.aiflags & AI_TAKE_COVER) + && (src->cast_info.aiflags & AI_HOLD_POSITION) + && (src->cast_info.aiflags & AI_MELEE)) + { + AI_ForceTakeCover( src, dest, true ); + } + + + } + + // If our leader has just issued a Moveout order, then we should attack it + else if ( (src->leader) + && (src->cast_info.aiflags & AI_MOVEOUT) + && (src->leader->order == ORDER_MOVE) + && (src->leader->moveout_ent == dest) + && (dest->health > 0)) + { + + AI_MakeEnemy( src, dest, 0 ); + src->enemy = dest; + +// Ridah, changed this, they should keep taking moveout orders until we tell them otherwise +// src->cast_info.aiflags &= ~AI_MOVEOUT; + + } + + // Are they in our territory? + else if ( (dest->last_territory_touched) + && (dest->last_territory_touched->cast_group == src->cast_group) + && (dest->last_territory_touched->moral > MORAL_HAPPY)) + { + + // the player can have some time to get out of the + // territory if his weapon is holstered + + if ( ( (dest->noise_time > (level.time - 1)) + && (dest->noise_type == PNOISE_WEAPON)) + + || ( VectorDistance(dest->s.origin, dest->last_territory_touched->pos1) > dest->last_territory_touched->dmg_radius ) + + // problem with the ai_territory + // || (dest->client && !(dest->client->pers.holsteredweapon) && dest->client->pers.weapon) + // && (dist < AI_NOT_HOLSTERED_RANGE_2) + + || ( (dist < AI_NOT_HOLSTERED_RANGE_1) + && (!(cast_memory->flags & MEMORY_HOSTILE_ENEMY)) + && ( (!dest->client) + || ( (!dest->client->pers.holsteredweapon) + && (dest->client->pers.weapon))))) + { // always attack + AI_MakeEnemy( src, dest, 0 ); + + if (dest->client && !(dest->client->pers.holsteredweapon) && dest->client->pers.weapon) + { + if (src->gender == GENDER_FEMALE) + Voice_Random( src, dest, f_profanity_level3, F_NUM_PROFANITY_LEVEL3 ); + else + Voice_Random( src, dest, fightsounds, 10 ); + } + else + { + if (src->gender == GENDER_FEMALE) + Voice_Specific( src, dest, f_fightsounds, 1 ); // FUCKER!! + else + Voice_Specific( src, dest, fightsounds, 9 ); // FUCKER!! + } + + if (ai_debug_memory->value) + { + gi.dprintf("AI_RecordSighting: Weapon not holstered, attacking!\n"); + } + } + else if (dist < AI_NOT_HOLSTERED_RANGE_3) + { // let them know we're aware of them + + #define TIME_TO_COMPLY 4.0 + + if (!(cast_memory->flags & MEMORY_HOSTILE_ENEMY)) + { + if ( (level.time > cast_memory->not_holstered_attack_time) + && (level.time < (cast_memory->not_holstered_attack_time+5))) + { // attack, we've already warned them + AI_MakeEnemy( src, dest, 0 ); + + if (ai_debug_memory->value) + { + gi.dprintf("AI_RecordSighting: Weapon not holstered, attacking!\n"); + } + } + else if (level.time > cast_memory->not_holstered_attack_time) + { + + //gi.dprintf( "SOUND TODO: GET OUT OF OUR TERRITORY PUNK!\n" ); + + // FIXME: we need a list of voices to choose from here + + // there sounds should only play is dest can see src + + if (visible (src, dest) && infront (src, dest)) + { + if (src->gender == GENDER_FEMALE) + { + //extern voice_table_t f_backoff[]; + Voice_Random(src, dest, f_backoff, 3); + } + else + { + //extern voice_table_t m_backoff[]; + + // JOSEPH 26-MAY-99 + if (src->name_index == NAME_NICKIBLANCO) + { + Voice_Specific(src, src->cast_info.talk_ent, nickiblanco, 10); + } + else if (src->name_index == NAME_TYRONE) + { + Voice_Specific(src, src->cast_info.talk_ent, ty_tyrone, 10); + } + else if (src->name_index == NAME_MOKER) + { + Voice_Specific(src, src->cast_info.talk_ent, steeltown_moker, 10); + } + else if (src->name_index == NAME_JESUS) + { + Voice_Specific(src, src->cast_info.talk_ent, sr_jesus, 10); + } + else if (src->name_index == NAME_HEILMAN) + { + Voice_Specific(src, src->cast_info.talk_ent, heilman, 10); + } + else if (src->name_index == NAME_BLUNT) + { + Voice_Specific(src, src->cast_info.talk_ent, blunt, 10); + } + else if (src->name_index == NAME_KINGPIN) + { + Voice_Specific(src, src->cast_info.talk_ent, kingpin, 10); + } + else + Voice_Random(src, dest, specific, 2); + // END JOSEPH + } + } + + // give them some "time to comply" + cast_memory->not_holstered_attack_time = level.time + TIME_TO_COMPLY; + + if (ai_debug_memory->value) + { + gi.dprintf("AI_RecordSighting: Weapon not holstered, you have %i seconds to comply\n", (int) TIME_TO_COMPLY); + } + + // if we're standing around, turn to face them + if ( (src->cast_info.currentmove->frame->aifunc == ai_stand) + && (src->cast_info.move_avoid_walk && src->cast_info.move_avoid_crwalk)) + { + vec3_t vec; + + VectorSubtract( dest->s.origin, src->s.origin, vec ); + VectorNormalize( vec ); + src->ideal_yaw = vectoyaw( vec ); + + if (src->maxs[2] < src->cast_info.standing_max_z) + src->cast_info.currentmove = src->cast_info.move_avoid_crwalk; + else + src->cast_info.currentmove = src->cast_info.move_avoid_walk; + } + + } + } + + // if we're standing around, turn to face them + if (src->cast_info.currentmove->frame->aifunc == ai_stand) + { + vec3_t vec; + + VectorSubtract( dest->s.origin, src->s.origin, vec ); + VectorNormalize( vec ); + src->ideal_yaw = vectoyaw( vec ); + + M_ChangeYaw( src ); + } + } +/* + else if (dist < AI_NOT_HOLSTERED_RANGE_3) + { // if walking, ignore, if running, turn to face them, ready for attack if they get within range + + if (VectorLength( dest->velocity ) > 210) + { // running + + // if we're standing around, turn to face them + if (src->cast_info.currentmove->frame->aifunc == ai_stand) + { + vec3_t vec; + + VectorSubtract( dest->s.origin, src->s.origin, vec ); + VectorNormalize( vec ); + src->ideal_yaw = vectoyaw( vec ); + + M_ChangeYaw( src ); + } + + } + + } +*/ + if (ai_debug_memory->value) + { + gi.dprintf("AI_RecordSighting: Get the FUCK off my street!\n"); + } + + } + + // are they attacking one of our friends (client only)? + else if ( (dest->enemy) + && (dest->enemy->client) + && (dest->enemy->health > 0) + && (dest_to_dest_enemy_memory = level.global_cast_memory[dest->character_index][dest->enemy->character_index]) + && (dest_to_dest_enemy_memory->flags & MEMORY_STARTED_ATTACK) + && (dest_enemy_memory = level.global_cast_memory[src->character_index][dest->enemy->character_index]) + && ( (src->cast_group != 1) + || (!dest->enemy->client && dest->enemy->leader) // if not a client, only help if they've been hired + || (dest_enemy_memory->flags & MEMORY_HIRED)) + && (dest_enemy_memory->memory_type == MEMORY_TYPE_FRIEND)) + { // hey, leave our homie alone! + + AI_MakeEnemy( src, dest, 0 ); + + if (ai_debug_memory->value) + { + gi.dprintf("AI_RecordSighting: Hey, leave our homie alone!\n"); + } + + } + + // if they have recently fired a weapon, we should get outta here (since we don't want to get involved) + else if ( !src->enemy + && (!src->cast_group || (dest->current_territory != src->cast_group)) + && (src->moral < MORAL_PSYCOTIC) + && (dest->noise_time > (level.time - 3) && dest->noise_type == PNOISE_WEAPON) + && (!src->leader || (src->cast_info.aiflags & AI_HOLD_POSITION)) + && !src->goal_ent + && (!(src->cast_info.aiflags & AI_TAKE_COVER) || (VectorDistance(src->s.origin, src->combat_goalent->s.origin) < 256)) + && (!directly_infront_angle(dest->noise_angles, dest, src))) +// && (AI_ClearSight(src, dest, false))) + { + + if (AI_ForceTakeCover( src, dest, true )) + { + } + else if (src->maxs[2] > DUCKING_MAX_Z && src->cast_info.move_evade && src->cast_info.currentmove != src->cast_info.move_evade + && (src->cast_info.currentmove->endfunc != AI_CheckEvade)) // evade + { + + src->cast_info.currentmove = src->cast_info.move_evade; + src->cast_info.avoid_ent = dest; + src->cast_info.last_avoid = level.time; + + if (src->cast_info.backoff) + src->cast_info.backoff( src, dest ); + } + + } + + // if they just fired in our direction, attack + else if ( (dest->noise_time > (level.time - 1)) + && (src->cast_info.currentmove->frame->aifunc == ai_stand) + && (dest->noise_type == PNOISE_WEAPON) + && (dest->client && dest->client->pers.weapon && (dest->client->pers.weapon->ammo)) // ignore if melee + && (cast_memory->memory_type != MEMORY_TYPE_FRIEND) + && (directly_infront_angle( dest->noise_angles, dest, src )) + && (AI_ClearSight(dest, src, false))) + { + AI_MakeEnemy( src, dest, 0 ); + } + + else if ( (dest->client) + && !(dest->client->pers.holsteredweapon) + && (cast_memory->memory_type != MEMORY_TYPE_FRIEND) + && (dest->client->pers.weapon)) + { // get mad, they have a weapon raised + + if ( (dist < AI_NOT_HOLSTERED_RANGE_1) + && !(cast_memory->flags & MEMORY_HOSTILE_ENEMY)) + + { // always attack + AI_MakeEnemy( src, dest, 0 ); + + if (ai_debug_memory->value) + { + gi.dprintf("AI_RecordSighting: Weapon not holstered, attacking!\n"); + } + } + else if (dist < AI_NOT_HOLSTERED_RANGE_2) + { // let them know we're aware of them + + #define TIME_TO_COMPLY 4.0 + + if (!(cast_memory->flags & MEMORY_HOSTILE_ENEMY)) + { + if ( (level.time > cast_memory->not_holstered_attack_time) + && (level.time < (cast_memory->not_holstered_attack_time+5))) + { // attack, we've already warned them + AI_MakeEnemy( src, dest, 0 ); + + if (ai_debug_memory->value) + { + gi.dprintf("AI_RecordSighting: Weapon not holstered, attacking!\n"); + } + } + else if (level.time > cast_memory->not_holstered_attack_time) + { + if ( !(cast_memory->flags & MEMORY_WARNED_BACKOFF) + && (infront(src, dest) && visible (src, dest))) + { + cast_memory->flags |= MEMORY_WARNED_BACKOFF; + + if (src->gender == GENDER_FEMALE) + { + extern voice_table_t f_backoff[]; + Voice_Random(src, src->cast_info.talk_ent, f_backoff, 3); + } + else + { + extern voice_table_t m_backoff[]; + + // JOSEPH 26-MAY-99 + if (src->name_index == NAME_JESUS) + Voice_Random(src, src->cast_info.talk_ent, &sr_jesus[6], 10); + else if (src->name_index == NAME_KINGPIN) + Voice_Random(src, src->cast_info.talk_ent, &kingpin[6], 10); + else if (src->name_index == NAME_HEILMAN) + Voice_Specific (src, src->cast_info.talk_ent, heilman, 11); + else if (src->name_index == NAME_NICKIBLANCO) + Voice_Specific (src, src->cast_info.talk_ent, nickiblanco, 11); + else + Voice_Random(src, src->cast_info.talk_ent, m_backoff, 3); + // END JOSEPH + } + } + // gi.sound( src, CHAN_VOICE, gi.soundindex( "actors/profanity/level2/cuss2-3.wav" ), 1, 2, 0 ); + + // give them some "time to comply" + cast_memory->not_holstered_attack_time = level.time + TIME_TO_COMPLY; + + // gi.dprintf("SOUND TODO: Drop your weapon biatch!\n"); + + if (ai_debug_memory->value) + { + gi.dprintf("AI_RecordSighting: Weapon not holstered, you have %i seconds to comply\n", (int) TIME_TO_COMPLY); + } + + // if we're standing around, turn to face them + if ( (src->cast_info.currentmove->frame->aifunc == ai_stand) + && (src->cast_info.move_avoid_walk && src->cast_info.move_avoid_crwalk)) + { + src->cast_info.avoid( src, dest, true ); + } + + } + } + + // if we're standing around, turn to face them + if (src->cast_info.currentmove->frame->aifunc == ai_stand) + { + vec3_t vec; + + VectorSubtract( dest->s.origin, src->s.origin, vec ); + VectorNormalize( vec ); + src->ideal_yaw = vectoyaw( vec ); + + M_ChangeYaw( src ); + } + + // evade? + if (src->cast_info.currentmove->frame->aifunc == ai_stand && src->cast_info.move_stand_evade && (src->moral < MORAL_AGGRESSIVE)) + { + src->cast_info.currentmove = src->cast_info.move_stand_evade; + src->last_stand_evade = level.time; + } + + } + else if (dist < AI_NOT_HOLSTERED_RANGE_3) + { // if walking, ignore, if running, turn to face them, ready for attack if they get within range + + if (VectorLength( dest->velocity ) > 210) + { // running + + // if we're standing around, turn to face them + if (src->cast_info.currentmove->frame->aifunc == ai_stand) + { + vec3_t vec; + + VectorSubtract( dest->s.origin, src->s.origin, vec ); + VectorNormalize( vec ); + src->ideal_yaw = vectoyaw( vec ); + + M_ChangeYaw( src ); + } + + } + + } + + } + +} + + +void AI_CheckRecordMemory( edict_t *src, edict_t *dest ) +{ + vec3_t dest_vec; + float length; + int i; + cast_memory_t *memory; + vec3_t src_org, dest_org; + + if (dest->health <= 0) + return; + + if (!dest->solid) + return; + + if (dest->flags & FL_NOTARGET) + return; + + memory = NULL; + + // check for sight by noise + if ( (dest->noise_time > level.time) + //&& (level.global_cast_memory[src->character_index][dest->character_index]) + && (gi.inPVS( src->s.origin, dest->noise_pos ))) + { + // update the memory of this character + AI_RecordSighting(src, dest, VectorDistance(src->s.origin, dest->s.origin) ); + return; + } + + if (dest->client && (dest->light_level < 5)) + return; + + // do a faster distance check, without sqrt'ing + VectorSubtract(dest->s.origin, src->s.origin, dest_vec); + + length = 0; + for (i=0 ; i< 3 ; i++) + length += dest_vec[i]*dest_vec[i]; + + if (length > (src->cast_info.max_sighting_distance * src->cast_info.max_sighting_distance)) + return; + + memory = level.global_cast_memory[src->character_index][dest->character_index]; + + if (memory && (memory->ignore_time > level.time)) + return; // we are currently ignoring this entity + + if ( ( (length > 65535) // 256^2, since length is the squared distance + || ( (dest->client) + && (VectorLength(dest->velocity) < 210))) // out of "close" range + && ( ( !memory + || (memory->timestamp < (level.time - 10))) // not aware of this person + && (!infront(src, dest)))) + { + return; + } + + VectorCopy( src->s.origin, src_org ); + src_org[2] += src->viewheight; + VectorCopy( dest->s.origin, dest_org ); + dest_org[2] += dest->viewheight; + + if (!gi.inPVS(src_org, dest_org) /*&& !gi.inPHS(src_org, dest_org)*/) + return; + + if ( !memory + || (memory->timestamp < (level.time - 5)) // haven't seen them for a while + || (memory->ignore_time > level.time)) + { // do a thorough test + if (!AI_ClearSight(src, dest, false)) + return; + + // move the box around a bit + } + + // SRC can see DEST + + // update the memory of this character + AI_RecordSighting(src, dest, sqrt(length)); +} + +/* +=========== +AI_UpdateCharacterMemories + + Called once per frame, this handles all AI character sightings, updating their memories + as we go. + + The individual characters can then evaluate their memory when idle, to see if there's + something they can do. +=========== +*/ +void AI_UpdateCharacterMemories( int max_iterations ) +{ + + // For each character, check all other characters to see if we can see and recognise them + + // Reasons for failing a sighting (in order for speed purposes): + // + // 1. Enemy is too dark (can't see or recognise) + // 2. Enemy is a NOTARGET + // 3. Enemy is too far away to recognise + // 4. Enemy is not infront of us + // 5. We can't physically see them + + static int src_index, dest_index; + int num_iterations=0; + edict_t *src, *dest; + int i; + + if (deathmatch->value) + return; + + if (level.cut_scene_time) + return; + + // first check client sightings + dest = level.characters[0]; + + if (dest && !(dest->flags & FL_NOTARGET)) + { + for (i=1; ihealth <= 0) + continue; + + if (src->client) + continue; + + if (src->cast_group < 2) + continue; + + AI_CheckRecordMemory( src, dest ); + } + } + + if (src_index >= level.num_characters) + src_index = 0; + + for ( ; src_index < level.num_characters; src_index++) + { + if (!level.characters[src_index]) + continue; + + src = level.characters[src_index]; + + if (src->health <= 0) + continue; + + if (src->client) + continue; + + for ( ; dest_index < level.num_characters; dest_index++ ) + { + if (!level.characters[dest_index]) + continue; + + dest = level.characters[dest_index]; + + if (src == dest) + continue; + + if (dest->client && (src->cast_group >= 2)) + continue; // already processed above + + if (num_iterations++ > max_iterations) + return; + + AI_CheckRecordMemory( src, dest ); + } + + dest_index = 0; + } + + src_index = 0; +} + + +void AI_ReactDelayThink (edict_t *ent) +{ + if (ent->enemy && ent->owner) + { + AI_MakeEnemy (ent->owner, ent->enemy, 0); + ent->cast_info.aiflags &= ~AI_HEARD_GUN_SHOT; + } + + G_FreeEdict (ent); + +} + +// RAFAEL 28-dec-98 +void AI_ReactDelay (edict_t *self, edict_t *player) +{ + edict_t *ent; + + ent = G_Spawn(); + + ent->enemy = player; + ent->owner = self; + ent->nextthink = level.time + self->gun_noise_delay; + ent->think = AI_ReactDelayThink; + + gi.linkentity (self); +} + + +// RAFAEL 28-dec-98 +/* +AI_HearPlayer + +Returns TRUE if the player and self are in the same PVS and the player has made a hostile sound +*/ +qboolean AI_HearPlayer (edict_t *self) +{ + edict_t *player; + float dist; + vec3_t vec; + + if (self->cast_info.aiflags & AI_IMMORTAL) + return false; + + if (self->cast_group == 1) + return false; + + if (self->cast_group == 0) // neutral will try to take cover + return false; + + if (self->cast_info.aiflags & AI_HEARD_GUN_SHOT) + return false; + + // this will cause a problem with scripted characters so + // if (!EP_GetCharacter ( self->name_index )) + // return false; + + player = &g_edicts[1]; + + if (!player->client) + return false; + + if (player->client->gun_noise) + { + if ( (self->cast_group || directly_infront(player, self)) + && gi.inPVS (player->s.origin, self->s.origin)) + { + VectorSubtract (player->s.origin, self->s.origin, vec); + dist = VectorLength (vec); + + // if (self->moral > MORAL_HAPPY) + if (dist < 1538) + { + if (self->gun_noise_delay) + { + self->cast_info.aiflags |= AI_HEARD_GUN_SHOT; + AI_ReactDelay (self, player); + } + else + AI_MakeEnemy (self, player, 0); + return true; + } + /* + else + { + gi.dprintf ("Player fired a shot but my moral is %d\n", self->moral); + return false; + } + */ + } + } + + return false; + +} + +/* +=========== +AI_HasLeaderButGoForEnemy +=========== +*/ +qboolean AI_HasLeaderButGoForEnemy( edict_t *self, edict_t *enemy ) +{ + float leader_dist; + + if (!( (self->leader) + && (self->leader->order == ORDER_FOLLOWME))) + { + return true; + } + + leader_dist = VectorDistance( self->s.origin, self->leader->s.origin ); + + // if we're out of range, go to them + if (leader_dist > 512) + { + return false; + } + +/* + // if they've just ordered it, go to them at all costs + if (enemy->leader->order_timestamp > (level.time - 5)) + { + return false; + } +*/ + + // if we're a Melee and the enemy is out of a reasonable range, don't bother + if (self->cast_info.aiflags & AI_MELEE) + { + if (VectorDistance( self->leader->s.origin, enemy->s.origin ) > 256) + { + return false; + } + } + + // if we're shooting, and they're not clearly visible (shootable from here), then fail + else + { + if (!AI_ClearSight( self, enemy, false )) + { + return false; + } + } + + return true; +} + +/* +=========== +AI_FindTarget + +Self is currently not attacking anything, so try to find a target + +Returns TRUE if an enemy is available (has been sighted, and we should engage) +============ +*/ +qboolean AI_FindTarget (edict_t *self) +{ + cast_memory_t *cast_memory; + edict_t *enemy, *best; + float best_dist; + int i; + + if (self->cast_info.aiflags & AI_IMMORTAL) + return false; + + // Ridah, Changed this 28-Mar-99, so if even a slight memory bug won't cause them to ignore you if under attack + + // traverse our enemy list for something to attack + //cast_memory = self->cast_info.enemy_memory; + + best = NULL; + + i = 0; + + for (i = 0; i < level.num_characters; i++) + { + cast_memory = level.global_cast_memory[self->character_index][i]; + + if (!cast_memory || cast_memory->memory_type != MEMORY_TYPE_ENEMY || g_edicts[cast_memory->cast_ent].health <= 0) + continue; + + if ( (cast_memory->timestamp > (level.time - ENEMY_SIGHT_DURATION)) + && (cast_memory->flags & MEMORY_HOSTILE_ENEMY) + && (cast_memory->ignore_time < level.time)) + { + enemy = &g_edicts[cast_memory->cast_ent]; + + if (enemy->flags & FL_NOTARGET) + goto failed; + + if (!enemy->inuse) + goto failed; + + if (enemy->health <= 0) + goto failed; + + if (!AI_HasLeaderButGoForEnemy( self, enemy )) + goto failed; + + if (self->cast_info.aiflags & AI_TAKE_COVER) + { // make sure we can see them before we attack + if (!AI_ClearSight( self, enemy, false )) + { + goto failed; + } + else if (cast_memory->timestamp_dist < 128) // allow some time to attack + { + self->cast_info.aiflags &= ~AI_TAKE_COVER; + self->combat_goalent = NULL; + self->dont_takecover_time = 99999; // attack for a few second + } + else // too far away, just go for another hiding pos + { + self->cast_info.aiflags &= ~AI_TAKE_COVER; + self->combat_goalent = NULL; +// goto failed; + } + } + + // found an enemy + + if (!best || (cast_memory->timestamp_dist < best_dist)) + { + best = enemy; + best_dist = cast_memory->timestamp_dist; + } + + } + +failed: + + cast_memory = cast_memory->next; + } + + if (best) + { + enemy = best; + + if ( (enemy->client) + && (self->cast_info.move_evade) + && (!self->cast_group) + && (self->moral < MORAL_AGGRESSIVE) + && (!self->pain_debounce_time)) // if we've been hurt, go bezerk (don't evade) + { + if ( (!enemy->client->pers.holsteredweapon) + && (enemy->client->pers.weapon)) + { + vec3_t vec; + float len; + + VectorSubtract (self->s.origin, enemy->s.origin, vec); + len = VectorLength (vec); + + self->enemy = enemy; + if (len < AI_NOT_HOLSTERED_RANGE_1 && self->moral > MORAL_HAPPY) + { + AI_StartAttack( self, enemy ); + + if (self->cast_info.sight) + self->cast_info.sight ( self, self->enemy ); + } + else if (len > AI_NOT_HOLSTERED_RANGE_3) + { + self->cast_info.currentmove = self->cast_info.move_stand; + } + else if (self->maxs[2] > DUCKING_MAX_Z) + self->cast_info.currentmove = self->cast_info.move_evade; + else if (self->cast_info.move_stand_up) + self->cast_info.currentmove = self->cast_info.move_stand_up; + + self->maxs[2] = self->cast_info.standing_max_z; + } + else + { + return false; + } + } + else + { + AI_StartAttack( self, enemy ); + + if (self->cast_info.sight) + self->cast_info.sight ( self, self->enemy ); + + // Ridah, 7-5-99, If they've been ordered to attack us by a client, get mad at them also + if (enemy->leader) + AI_MakeEnemy( self, enemy->leader, 0 ); + } + + return true; + } + + return false; +} diff --git a/gamesrc/g_joe_misc.c b/gamesrc/g_joe_misc.c new file mode 100644 index 0000000..b2f6beb --- /dev/null +++ b/gamesrc/g_joe_misc.c @@ -0,0 +1,9902 @@ +// g_joe_misc.c + +// JOSEPH 14-JUN-99 ALL + +#include "g_local.h" + +/*QUAKED props_hydrant (0 .5 .8) (-10 -10 -19) (10 10 19) + +A hydrant that does jack + +model="models\props\hydrant\" +*/ + +void metal_explode (edict_t *self) +{ + vec3_t org; + float spd; + vec3_t save; + edict_t *breakit; + extern void breakittrash_sound (edict_t *self); + + VectorCopy (self->s.origin, save); + VectorMA (self->absmin, 0.5, self->size, self->s.origin); + + // a few big chunks + spd = 1.5 * (float)self->dmg / 200.0; + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + + // bottom corners + spd = 1.75 * (float)self->dmg / 200.0; + VectorCopy (self->absmin, org); + ThrowDebris (self, "models/props/metal/metal2.md2", spd, org); + VectorCopy (self->absmin, org); + org[0] += self->size[0]; + ThrowDebris (self, "models/props/metal/metal3.md2", spd, org); + VectorCopy (self->absmin, org); + org[1] += self->size[1]; + ThrowDebris (self, "models/props/metal/metal4.md2", spd, org); + VectorCopy (self->absmin, org); + org[0] += self->size[0]; + org[1] += self->size[1]; + ThrowDebris (self, "models/props/metal/metal5.md2", spd, org); + + // a bunch of little chunks + spd = 2 * self->dmg / 200; + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + + breakit = NULL; + + breakit = G_Spawn(); + + if (breakit) + { + breakit->think = breakittrash_sound; + breakit->nextthink = level.time + 0.1; + VectorCopy (self->s.origin, breakit->s.origin); + gi.linkentity(breakit); + } + + VectorCopy (save, self->s.origin); + + G_FreeEdict (self); +} + +void metal_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + self->takedamage = DAMAGE_NO; + self->nextthink = level.time + FRAMETIME; + self->think = metal_explode; +} + +void SP_props_hydrant (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + self->model = "models/props/hydrant/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -10, -10, -19); + VectorSet (self->maxs, 10, 10, 19); + self->surfacetype = SURF_METAL; + gi.linkentity (self); +} +// END JOSEPH + +/*QUAKED props_antenna1a (0 .5 .8) (-28 -22 -22) (28 22 22) + +An antenna + +model="models\props\antenna\antenna.mdx" +skin="models\props\antenna\antenna.pcx" +*/ + +void SP_props_antenna1a (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + //self->model = "models/props/antenna/tris.md2"; + //self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -28, -22, -22); + VectorSet (self->maxs, 28, 22, 22); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/antenna/antenna.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/antenna/antenna.mdx", &self->s.model_parts[PART_HEAD]); + + // JOSEPH 24-JAN-99 + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->surfacetype = SURF_METAL_L; + gi.linkentity (self); +} + +/*QUAKED props_antenna2a (0 .5 .8) (-26 -30 -22) (26 30 22) + +An antenna + +model="models\props\ant2a\antenna.mdx" +skin="models\props\antenna\antenna.pcx" +*/ + +void SP_props_antenna2a (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + //self->model = "models/props/antenna2/tris.md2"; + //self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -26, -30, -22); + VectorSet (self->maxs, 26, 30, 22); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/ant2a/antenna.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/ant2a/antenna.mdx", &self->s.model_parts[PART_HEAD]); + + // JOSEPH 24-JAN-99 + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->surfacetype = SURF_METAL_L; + gi.linkentity (self); +} + +/*QUAKED props_antenna3a (0 .5 .8) (-14 -2 -22) (14 2 22) + +An antenna + +model="models\props\ant3a\antenna.mdx" +skin="models\props\antenna\antenna.pcx" +*/ + +void SP_props_antenna3a (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + //self->model = "models/props/antenna3/tris.md2"; + //self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -14, -2, -22); + VectorSet (self->maxs, 14, 2, 22); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/ant3a/antenna.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/ant3a/antenna.mdx", &self->s.model_parts[PART_HEAD]); + + // JOSEPH 24-JAN-99 + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->surfacetype = SURF_METAL_L; + gi.linkentity (self); +} + +/*QUAKED props_antenna1b (0 .5 .8) (-41 -33 -32) (41 33 32) + +An antenna + +model="models\props\ant1b\antenna.mdx" +skin="models\props\antenna\antenna.pcx" +*/ + +void SP_props_antenna1b (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + //self->model = "models/props/antennab/tris.md2"; + //self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -41, -33, -32); + VectorSet (self->maxs, 41, 33, 32); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/ant1b/antenna.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/ant1b/antenna.mdx", &self->s.model_parts[PART_HEAD]); + + // JOSEPH 24-JAN-99 + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->surfacetype = SURF_METAL_L; + gi.linkentity (self); +} + +/*QUAKED props_antenna2b (0 .5 .8) (-38 -45 -32) (38 45 32) + +An antenna + +model="models\props\ant2b\antenna.mdx" +skin="models\props\antenna\antenna.pcx" +*/ + +void SP_props_antenna2b (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + //self->model = "models/props/antenna2b/tris.md2"; + //self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -38, -45, -32); + VectorSet (self->maxs, 38, 45, 32); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/ant2b/antenna.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/ant2b/antenna.mdx", &self->s.model_parts[PART_HEAD]); + + // JOSEPH 24-JAN-99 + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->surfacetype = SURF_METAL_L; + gi.linkentity (self); +} + +/*QUAKED props_antenna3b (0 .5 .8) (-21 -3 -33) (21 3 33) + +An antenna + +model="models\props\ant3b\antenna.mdx" +skin="models\props\antenna\antenna.pcx" +*/ + +void SP_props_antenna3b (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + //self->model = "models/props/antenna3b/tris.md2"; + //self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -21, -3, -33); + VectorSet (self->maxs, 21, 3, 33); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/ant3b/antenna.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/ant3b/antenna.mdx", &self->s.model_parts[PART_HEAD]); + + // JOSEPH 24-JAN-99 + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->surfacetype = SURF_METAL_L; + gi.linkentity (self); +} + +/*QUAKED props_antenna1c (0 .5 .8) (-55 -44 -43) (55 44 43) + +An antenna + +model="models\props\ant1c\antenna.mdx" +skin="models\props\antenna\antenna.pcx" +*/ + +void SP_props_antenna1c (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + //self->model = "models/props/antennac/tris.md2"; + //self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -55, -44, -43); + VectorSet (self->maxs, 55, 44, 43); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/ant1c/antenna.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/ant1c/antenna.mdx", &self->s.model_parts[PART_HEAD]); + + // JOSEPH 24-JAN-99 + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->surfacetype = SURF_METAL_L; + gi.linkentity (self); +} + +/*QUAKED props_antenna2c (0 .5 .8) (-50 -60 -43) (60 50 43) + +An antenna + +model="models\props\ant2c\antenna.mdx" +skin="models\props\antenna\antenna.pcx" +*/ + +void SP_props_antenna2c (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + //self->model = "models/props/antenna2c/tris.md2"; + //self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -50, -60, -43); + VectorSet (self->maxs, 50, 60, 43); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/ant2c/antenna.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/ant2c/antenna.mdx", &self->s.model_parts[PART_HEAD]); + + // JOSEPH 24-JAN-99 + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->surfacetype = SURF_METAL_L; + gi.linkentity (self); +} + +/*QUAKED props_antenna3c (0 .5 .8) (-28 -3 -44) (28 3 44) + +An antenna + +model="models\props\ant3c\antenna.mdx" +skin="models\props\antenna\antenna.pcx" +*/ + +void SP_props_antenna3c (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + //self->model = "models/props/antenna3c/tris.md2"; + //self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -28, -3, -44); + VectorSet (self->maxs, 28, 3, 44); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/ant3c/antenna.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/ant3c/antenna.mdx", &self->s.model_parts[PART_HEAD]); + + // JOSEPH 24-JAN-99 + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->surfacetype = SURF_METAL_L; + gi.linkentity (self); +} + + +/*QUAKED props_fan (0 .5 .8) (-8 -12 -16) (8 12 16) + +A fan + +model="models\props\fan\tris.md2" +*/ + +void think_fan (edict_t *self) +{ + if (self->s.frame < 18) + { + self->s.frame++; + } + else + { + self->s.frame = 0; + } + + self->nextthink = level.time + FRAMETIME; +} + +void radio_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject); + +void SP_props_fan (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + self->model = "models/props/fan/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -8, -12, -16); + VectorSet (self->maxs, 8, 12, 16); + + self->die = radio_die; + self->takedamage = DAMAGE_YES; + + self->surfacetype = SURF_METAL_L; + gi.linkentity (self); + + self->nextthink = level.time + FRAMETIME *2; + self->think = think_fan; +} + +/*QUAKED props_aircon (0 .5 .8) (-16 -16 -24) (16 16 24) + +A cool box deluxe + +model="models\props\aircon\tris.md2" +*/ + +void think_aircon (edict_t *self) +{ + if (self->s.frame < 18) + { + self->s.frame++; + } + else + { + self->s.frame = 0; + } + + self->nextthink = level.time + FRAMETIME; +} + +void SP_props_aircon (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + self->model = "models/props/aircon/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 24); + self->surfacetype = SURF_METAL_L; + gi.linkentity (self); + + self->nextthink = level.time + FRAMETIME *2; + self->think = think_aircon; +} + +// JOSEPH 12-OCT-98 +/*QUAKED props_phone (0 .5 .8) (-8 -8 -6) (8 8 6) + +A phone (telephone) + +model="models\props\phone\tris.md2" +*/ + +void SP_props_phone (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + self->model = "models/props/phone/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -8, -8, -6); + VectorSet (self->maxs, 8, 8, 6); + + self->die = radio_die; + self->takedamage = DAMAGE_YES; + self->surfacetype = SURF_METAL_L; + gi.linkentity (self); +} + +// JOSEPH 12-OCT-98 + +// JOSEPH 13-FEB-99 +/*QUAKED props_tablesetA (0 .5 .8) (-26 -27 -6) (26 27 6) + +Card-shark table setting + +model="models\props\tablesets\set.mdx" +skin="models\props\tablesets\card_skin.pcx" +*/ + +void SP_props_tablesetA (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -26, -27, -6); + VectorSet (self->maxs, 26, 27, 6); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/tablesets/set.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/tablesets/set.mdx", &self->s.model_parts[PART_HEAD]); + + // JOSEPH 24-JAN-99 + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + // JOSEPH 5-FEB-99-B + self->s.renderfx2 |= RF2_NOSHADOW; + self->surfacetype = SURF_FABRIC; + gi.linkentity (self); +} + +// END JOSEPH + +/*QUAKED props_radio (0 .5 .8) (-8 -12 -8) (8 12 8) + +A radio that will take damage and activate triggers on destruction + +"health" - hit points (25 default) + +model="models\props\radio\tris.md2" +*/ + +void radio_explode (edict_t *self) +{ + vec3_t org; + float spd; + vec3_t save; + + VectorCopy (self->s.origin, save); + VectorMA (self->absmin, 0.5, self->size, self->s.origin); + + // a few big chunks + spd = 1.5 * (float)self->dmg / 200.0; + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + + // bottom corners + spd = 1.75 * (float)self->dmg / 200.0; + VectorCopy (self->absmin, org); + ThrowDebris (self, "models/props/metal/metal2.md2", spd, org); + VectorCopy (self->absmin, org); + org[0] += self->size[0]; + ThrowDebris (self, "models/props/metal/metal3.md2", spd, org); + VectorCopy (self->absmin, org); + org[1] += self->size[1]; + ThrowDebris (self, "models/props/metal/metal4.md2", spd, org); + VectorCopy (self->absmin, org); + org[0] += self->size[0]; + org[1] += self->size[1]; + ThrowDebris (self, "models/props/metal/metal5.md2", spd, org); + + // a bunch of little chunks + spd = 2 * self->dmg / 200; + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + + VectorCopy (save, self->s.origin); + + G_FreeEdict (self); +} + +void radio_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + self->takedamage = DAMAGE_NO; + self->nextthink = level.time + FRAMETIME; + self->think = radio_explode; + self->activator = attacker; + + G_UseTargets (self, inflictor); + + { + vec3_t realorigin; + + VectorCopy(self->s.origin, realorigin); + realorigin[2] += 8; + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SPLASH); + gi.WriteByte (25); + gi.WritePosition (realorigin); + gi.WriteDir (self->movedir); + gi.WriteByte (1); + gi.multicast (realorigin, MULTICAST_PVS); + } +} + +void SP_props_radio (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/props/radio/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -8, -12, -8); + VectorSet (self->maxs, 8, 12, 8); + + if (!(self->health == 666)) + { + self->die = radio_die; + self->takedamage = DAMAGE_YES; + + if (!self->health) + self->health = 25; + } + + self->surfacetype = SURF_METAL_L; + gi.linkentity (self); +} + +/*QUAKED elements_raincloud (0 .5 .8) ? +Snow falls from this invisable cloud at random points + +center of cloud to ground trace determines the drop fall distance + +cloud can be any recatangle size + +fxdensity - total number of drops in the sky 1 - 1000 (default 400) + +firetype - type of drops, 0 = rain 1 = drip +*/ + +void think_new_first_raincloud (edict_t *self) +{ + vec3_t neworigin, minmaxsize; + int effectsizex, effectsizey, effectsizez; + + // Find cloud size + VectorSubtract(self->mins, self->maxs, minmaxsize); + effectsizex = abs(minmaxsize[0])-2; + effectsizey = abs(minmaxsize[1])-2; + effectsizez = abs(minmaxsize[2])-2; + + // Find cloud center + VectorCopy(self->mins, neworigin); + neworigin[0] += (effectsizex >> 1); + neworigin[1] += (effectsizey >> 1); + neworigin[2] += (effectsizez >> 1); + + // Adjust rain density + if (!self->fxdensity) + self->fxdensity = 400; + else if (self->fxdensity > 1000) + self->fxdensity = 1000; + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_RAIN); + gi.WritePosition (neworigin); + gi.WriteShort (self->fxdensity); + gi.WriteShort (effectsizex); + gi.WriteShort (effectsizey); + gi.WriteShort (effectsizez); + gi.WriteShort (self->firetype); + gi.multicast (neworigin, MULTICAST_ALL_R); +} + +void SP_elements_raincloud (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BSP; + self->movetype = MOVETYPE_NONE; + gi.setmodel (self, self->model); + gi.linkentity (self); + self->nextthink = level.time + (10 * FRAMETIME); + self->think = think_new_first_raincloud; + self->svflags |= SVF_NOCLIENT; +} + +/*QUAKED elements_snowcloud (0 .5 .8) ? +Snow falls from this invisable cloud at random points + +center of cloud to ground trace determines the flake fall distance + +cloud can be any recatangle size + +fxdensity - total number of flakes in the sky 1 - 1000 (default 400) +*/ + +void think_new_first_snowcloud (edict_t *self) +{ + vec3_t neworigin, minmaxsize; + int effectsizex, effectsizey, effectsizez; + + // Find cloud size + VectorSubtract(self->mins, self->maxs, minmaxsize); + effectsizex = abs(minmaxsize[0])-2; + effectsizey = abs(minmaxsize[1])-2; + effectsizez = abs(minmaxsize[2])-2; + + // Find cloud center + VectorCopy(self->mins, neworigin); + neworigin[0] += (effectsizex >> 1); + neworigin[1] += (effectsizey >> 1); + neworigin[2] += (effectsizez >> 1); + + // Adjust snow density + if (!self->fxdensity) + self->fxdensity = 400; + else if (self->fxdensity > 1000) + self->fxdensity = 1000; + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SNOW); + gi.WritePosition (neworigin); + gi.WriteShort (self->fxdensity); + gi.WriteShort (effectsizex); + gi.WriteShort (effectsizey); + gi.WriteShort (effectsizez); + gi.multicast (neworigin, MULTICAST_ALL_R); +} + +void SP_elements_snowcloud (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BSP; + self->movetype = MOVETYPE_NONE; + gi.setmodel (self, self->model); + gi.linkentity (self); + self->nextthink = level.time + (10 * FRAMETIME); + self->think = think_new_first_snowcloud; + self->svflags |= SVF_NOCLIENT; +} + +#define NON_MOVEABLE 2 +#define TYPE_WOOD 4 +#define TYPE_WOOD2 8 +#define TYPE_METAL 16 +#define TYPE_CARDBOARD 32 + +// JOSEPH 04-JAN-99 +/*QUAKED props_trashcanA (0 .5 .8) (-16 -16 -21) (16 16 21) ? NON_MOVEABLE +Trash can you can push. You can override its mass (400), +health (10). + +"item" - Item to spawn on destruction + +model="models\props\t_can\" +*/ + +void trashcanA_check_sound (edict_t *ent) +{ + if (((ent->s.origin[1] == ent->save_avel[1]) && (ent->s.origin[0] == ent->save_avel[0])) || + (ent->groundentity == NULL)) + { + ent->s.sound = 0; + } +} + + +// JOSEPH 5-FEB-99-B +void trashcanA_explode (edict_t *self); + +void trashcanA_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + float ratio; + vec3_t v; + + if ((!other->groundentity) || (other->groundentity == self)) + return; + + self->pullingflag = 0; + + // If activate key is pressed + if ((plane) && (plane->type == 123)) + { + if ((other->s.origin[0] != other->s.old_origin[0]) || (other->s.origin[1] != other->s.old_origin[1])) + { + //vec3_t move; + //float yaw, dist; + + self->pullingflag = 1; + + ratio = (float)other->mass / (float)self->mass; + VectorSubtract (self->s.origin, other->s.origin, v); + M_walkmove (self, 180+vectoyaw(v), 20 * ratio * FRAMETIME); + + /*yaw = vectoyaw(v); + yaw = yaw*M_PI*2 / 360; + dist = 20 * ratio * FRAMETIME; + + move[0] = cos(yaw)*dist; + move[1] = sin(yaw)*dist; + move[2] = 0; + + if (abs(other->client->ps.pmove.velocity[0]) > abs(move[0])) + other->client->ps.pmove.velocity[0] = move[0]; + if (abs(other->client->ps.pmove.velocity[1]) > abs(move[1])) + other->client->ps.pmove.velocity[1] = move[1];*/ + + if (!self->s.sound) + self->s.sound = gi.soundindex ("world/trash1.wav"); + VectorCopy(self->s.origin, self->save_avel); + self->think = trashcanA_check_sound; + self->nextthink = level.time + (FRAMETIME * 1.1); + } + } + else + { + ratio = (float)other->mass / (float)self->mass; + VectorSubtract (self->s.origin, other->s.origin, v); + M_walkmove (self, vectoyaw(v), 20 * ratio * FRAMETIME); + + if (((self->s.origin[0] != self->s.old_origin[0]) || (self->s.origin[1] != self->s.old_origin[1]))) + { + if (!self->s.sound) + self->s.sound = gi.soundindex ("world/trash1.wav"); + VectorCopy(self->s.origin, self->save_avel); + self->think = trashcanA_check_sound; + self->nextthink = level.time + (FRAMETIME * 1.1); + } + } + + if (self->health <= 0) + trashcanA_explode(self); +} +// END JOSEPH + +// JOSEPH 5-FEB-99-C +void breakittrash_sound (edict_t *self) +{ + gi.sound (self, CHAN_VOICE, gi.soundindex("world/trash3.wav"), 1, ATTN_NORM, 0); + self->think = G_FreeEdict; + self->nextthink = level.time + 2.0; +} + +void trashcanA_explode (edict_t *self) +{ + vec3_t org; + float spd; + vec3_t save; + edict_t *breakit; + + VectorCopy (self->s.origin, save); + VectorMA (self->absmin, 0.5, self->size, self->s.origin); + + // a few big chunks + spd = 1.5 * (float)self->dmg / 200.0; + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + + // bottom corners + spd = 1.75 * (float)self->dmg / 200.0; + VectorCopy (self->absmin, org); + ThrowDebris (self, "models/props/metal/metal2.md2", spd, org); + VectorCopy (self->absmin, org); + org[0] += self->size[0]; + ThrowDebris (self, "models/props/metal/metal3.md2", spd, org); + VectorCopy (self->absmin, org); + org[1] += self->size[1]; + ThrowDebris (self, "models/props/metal/metal4.md2", spd, org); + VectorCopy (self->absmin, org); + org[0] += self->size[0]; + org[1] += self->size[1]; + ThrowDebris (self, "models/props/metal/metal5.md2", spd, org); + + // a bunch of little chunks + spd = 2 * self->dmg / 200; + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + + if (self->item) + { + Drop_Item (self, self->item); + self->item = NULL; + } + + breakit = G_Spawn(); + + if (breakit) + { + breakit->think = breakittrash_sound; + breakit->nextthink = level.time + 0.1; + VectorCopy (self->s.origin, breakit->s.origin); + gi.linkentity(breakit); + } + + VectorCopy (save, self->s.origin); + G_FreeEdict (self); +} +// END JOSEPH + +void crate_stuff (edict_t *self) +{ + vec3_t org; + float spd; + vec3_t save; + + VectorCopy (self->s.origin, save); + VectorMA (self->absmin, 0.5, self->size, self->s.origin); + + // a few big chunks + spd = 7.0 * (float)self->dmg / 200.0; + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris_stuff (self, "models/props/stuff/piece1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris_stuff (self, "models/props/stuff/piece1.md2", spd, org); + + // bottom corners + spd = 6.0 * (float)self->dmg / 200.0; + VectorCopy (self->absmin, org); + ThrowDebris_stuff (self, "models/props/stuff/piece3.md2", spd, org); + VectorCopy (self->absmin, org); + org[0] += self->size[0]; + ThrowDebris_stuff (self, "models/props/stuff/piece3.md2", spd, org); + VectorCopy (self->absmin, org); + org[1] += self->size[1]; + ThrowDebris_stuff (self, "models/props/stuff/piece1.md2", spd, org); + VectorCopy (self->absmin, org); + org[0] += self->size[0]; + org[1] += self->size[1]; + ThrowDebris_stuff (self, "models/props/stuff/piece2.md2", spd, org); + + // a bunch of little chunks + spd = 10 * self->dmg / 200; + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris_stuff (self, "models/props/stuff/piece1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris_stuff (self, "models/props/stuff/piece3.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris_stuff (self, "models/props/stuff/piece3.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris_stuff (self, "models/props/stuff/piece1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris_stuff (self, "models/props/stuff/piece3.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris_stuff (self, "models/props/stuff/piece3.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris_stuff (self, "models/props/stuff/piece1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris_stuff (self, "models/props/stuff/piece2.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris_stuff (self, "models/props/stuff/piece1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris_stuff (self, "models/props/stuff/piece3.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris_stuff (self, "models/props/stuff/piece3.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris_stuff (self, "models/props/stuff/piece1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris_stuff (self, "models/props/stuff/piece3.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris_stuff (self, "models/props/stuff/piece3.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris_stuff (self, "models/props/stuff/piece1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris_stuff (self, "models/props/stuff/piece2.md2", spd, org); +} + +/*QUAKED props_crate_bust_32 (0 .5 .8) (-16 -16 -16) (16 16 16) ? NON_MOVEABLE TYPE_WOOD TYPE_WOOD2 TYPE_METAL TYPE_CARDBOARD +Crate can bust and you can push +health (10). + +"item" - Item to spawn on destruction + +model="models\props\crate\stillcrate32_1.mdx" +*/ + +/*QUAKED props_crate_bust_48 (0 .5 .8) (-24 -24 -24) (24 24 24) ? NON_MOVEABLE TYPE_WOOD TYPE_WOOD2 X TYPE_CARDBOARD +Crate can bust and you can push +health (10). + +"item" - Item to spawn on destruction + +model="models\props\crate\stillcrate48_1.mdx" +*/ + +/*QUAKED props_crate_bust_64 (0 .5 .8) (-32 -32 -32) (32 32 32) ? X TYPE_WOOD TYPE_WOOD2 X TYPE_CARDBOARD +Crate you can bust +health (10). + +"item" - Item to spawn on destruction + +model="models\props\crate\stillcrate64_1.mdx" +*/ + +void crate_check_sound (edict_t *ent) +{ + if (((ent->s.origin[1] == ent->save_avel[1]) && (ent->s.origin[0] == ent->save_avel[0])) || + (ent->groundentity == NULL)) + { + ent->s.sound = 0; + } +} + +void crate_explode (edict_t *self); + +void breakit_sound (edict_t *self) +{ + gi.sound (self, CHAN_VOICE, gi.soundindex("world/boardbreak.wav"), 1, ATTN_NORM, 0); + self->think = G_FreeEdict; + self->nextthink = level.time + 2.0; +} + +void crate_bust_final_32 (edict_t *self) +{ + if (self->s.frame < 19) + { + if (self->item) + { + Drop_Item (self, self->item); + self->item = NULL; + } + else + { + if (self->s.frame == 0) + crate_stuff (self); + } + + self->s.frame++; + + self->nextthink = level.time + 0.1; + } + else if (self->misstime-- > 0) + { + if (self->misstime <= 20) + { + if (self->misstime == 20) + { + self->s.renderfx2 |= RF2_PASSALPHA; + self->s.effects = 1; // this is full alpha now + } + + self->s.effects += (255/20); + + if (self->s.effects > 255) + self->s.effects = 255; + } + + self->nextthink = level.time + 0.1; + } + else + { + G_FreeEdict (self); + } +} + +void crate_bust_die_32 (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + int i; + + if (self->takedamage == DAMAGE_NO) + return; + + self->s.sound = 0; + + self->think = crate_bust_final_32; + self->nextthink = level.time + FRAMETIME; + + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + + if (self->spawnflags & TYPE_CARDBOARD) + { + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/crate/cardboard32.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/crate/cardboard32.mdx", &self->s.model_parts[PART_HEAD]); + + self->takedamage = DAMAGE_NO; + self->think = NULL; + self->nextthink = 0; + gi.sound (self, CHAN_AUTO, gi.soundindex ("weapons/melee/pipehitcboard.wav"), 1, ATTN_NORM, 0); + return; + } + + if (self->spawnflags & TYPE_WOOD2) + { + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/crate/crate32_2.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/crate/crate32_2.mdx", &self->s.model_parts[PART_HEAD]); + } + else + { + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/crate/crate32_1.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/crate/crate32_1.mdx", &self->s.model_parts[PART_HEAD]); + } + + self->s.renderfx2 |= RF2_NOSHADOW; + self->solid = 0; + self->touch = NULL; + gi.sound (self, CHAN_AUTO, gi.soundindex ("world/crate2.wav"), 1, ATTN_NORM, 0); +} + +void crate_touch_32 (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + float ratio; + vec3_t v; + + if ((!other->groundentity) || (other->groundentity == self)) + return; + + self->pullingflag = 0; + + // If activate key is pressed + if ((plane) && (plane->type == 123)) + { + if ((other->s.origin[0] != other->s.old_origin[0]) || (other->s.origin[1] != other->s.old_origin[1])) + { + self->pullingflag = 1; + + ratio = (float)other->mass / (float)self->mass; + VectorSubtract (self->s.origin, other->s.origin, v); + M_walkmove (self, 180+vectoyaw(v), 20 * ratio * FRAMETIME); + + if (!self->s.sound) + self->s.sound = gi.soundindex ("world/crate1.wav"); + VectorCopy(self->s.origin, self->save_avel); + self->think = trashcanA_check_sound; + self->nextthink = level.time + (FRAMETIME * 1.1); + } + } + else + { + ratio = (float)other->mass / (float)self->mass; + VectorSubtract (self->s.origin, other->s.origin, v); + M_walkmove (self, vectoyaw(v), 20 * ratio * FRAMETIME); + + if (((self->s.origin[0] != self->s.old_origin[0]) || (self->s.origin[1] != self->s.old_origin[1]))) + { + if (!self->s.sound) + self->s.sound = gi.soundindex ("world/crate1.wav"); + VectorCopy(self->s.origin, self->save_avel); + self->think = trashcanA_check_sound; + self->nextthink = level.time + (FRAMETIME * 1.1); + } + } + + if (!(self->spawnflags & TYPE_METAL)) + { + if (self->health <= 0) + crate_bust_die_32(self, 0, 0, 0, vec3_origin, 0, 0); + } +} + +void SP_props_crate_bust_32 (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + + if (self->spawnflags & NON_MOVEABLE) + self->movetype = MOVETYPE_NONE; + else + self->movetype = MOVETYPE_STEP; + + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -16, -16, -16); + VectorSet (self->maxs, 16, 16, 16); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + + if (self->spawnflags & TYPE_METAL) + { + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/crate/stillcrate32.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/crate/stillcrate32.mdx", &self->s.model_parts[PART_HEAD]); + self->surfacetype = SURF_WOOD; + } + else if (self->spawnflags & TYPE_CARDBOARD) + { + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/crate/stillcard32.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/crate/stillcard32.mdx", &self->s.model_parts[PART_HEAD]); + self->surfacetype = SURF_FABRIC; + } + else if (self->spawnflags & TYPE_WOOD2) + { + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/crate/stillcrate32_2.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/crate/stillcrate32_2.mdx", &self->s.model_parts[PART_HEAD]); + self->surfacetype = SURF_WOOD; + } + else + { + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/crate/stillcrate32_1.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/crate/stillcrate32_1.mdx", &self->s.model_parts[PART_HEAD]); + self->surfacetype = SURF_WOOD; + } + + if (!(self->spawnflags & NON_MOVEABLE)) + { + self->pullable = 1; + self->nokickbackflag = 1; + self->fallerflag = 1; + } + + if (!self->mass) + self->mass = 400; + if (!self->health) + self->health = 10; + if (!self->dmg) + self->dmg = 0; + + if (self->spawnflags & TYPE_METAL) + { + if (self->pullable) + self->touch = crate_touch_32; + } + else + { + self->die = crate_bust_die_32; + self->takedamage = DAMAGE_YES; + if (self->pullable) + self->touch = crate_touch_32; + } + + self->cast_info.aiflags = AI_NOSTEP; + + self->think = M_droptofloor; + self->nextthink = level.time + 2 * FRAMETIME; + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->misstime = 21; + + if (st.item) + { + self->item = FindItemByClassname (st.item); + if (!self->item) + gi.dprintf("%s at %s has bad item: %s\n", self->classname, vtos(self->s.origin), st.item); + } + + gi.linkentity (self); +} + + +void crate_bust_final_48 (edict_t *self) +{ + if (self->s.frame < 28) + { + if (self->item) + { + Drop_Item (self, self->item); + self->item = NULL; + } + else + { + if (self->s.frame == 0) + crate_stuff (self); + } + + self->s.frame++; + + self->nextthink = level.time + 0.1; + } + else if (self->misstime-- > 0) + { + if (self->misstime <= 20) + { + if (self->misstime == 20) + { + self->s.renderfx2 |= RF2_PASSALPHA; + self->s.effects = 1; // this is full alpha now + } + + self->s.effects += (255/20); + + if (self->s.effects > 255) + self->s.effects = 255; + } + + self->nextthink = level.time + 0.1; + } + else + { + G_FreeEdict (self); + } +} + +void crate_bust_die_48 (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + int i; + + if (self->takedamage == DAMAGE_NO) + return; + + self->s.sound = 0; + + self->think = crate_bust_final_48; + self->nextthink = level.time + FRAMETIME; + + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + + if (self->spawnflags & TYPE_CARDBOARD) + { + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/crate/cardboard48.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/crate/cardboard48.mdx", &self->s.model_parts[PART_HEAD]); + + self->takedamage = DAMAGE_NO; + self->think = NULL; + self->nextthink = 0; + + gi.sound (self, CHAN_AUTO, gi.soundindex ("weapons/melee/pipehitcboard.wav"), 1, ATTN_NORM, 0); + return; + } + + if (self->spawnflags & TYPE_WOOD2) + { + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/crate/crate48_2.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/crate/crate48_2.mdx", &self->s.model_parts[PART_HEAD]); + } + else + { + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/crate/crate48_1.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/crate/crate48_1.mdx", &self->s.model_parts[PART_HEAD]); + } + + self->s.renderfx2 |= RF2_NOSHADOW; + self->solid = 0; + self->touch = NULL; + gi.sound (self, CHAN_AUTO, gi.soundindex ("world/crate2.wav"), 1, ATTN_NORM, 0); +} + +void crate_touch_48 (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + float ratio; + vec3_t v; + + if ((!other->groundentity) || (other->groundentity == self)) + return; + + self->pullingflag = 0; + + // If activate key is pressed + if ((plane) && (plane->type == 123)) + { + if ((other->s.origin[0] != other->s.old_origin[0]) || (other->s.origin[1] != other->s.old_origin[1])) + { + self->pullingflag = 1; + + ratio = (float)other->mass / (float)self->mass; + VectorSubtract (self->s.origin, other->s.origin, v); + M_walkmove (self, 180+vectoyaw(v), 20 * ratio * FRAMETIME); + + if (!self->s.sound) + self->s.sound = gi.soundindex ("world/crate1.wav"); + VectorCopy(self->s.origin, self->save_avel); + self->think = trashcanA_check_sound; + self->nextthink = level.time + (FRAMETIME * 1.1); + } + } + else + { + ratio = (float)other->mass / (float)self->mass; + VectorSubtract (self->s.origin, other->s.origin, v); + M_walkmove (self, vectoyaw(v), 20 * ratio * FRAMETIME); + + if (((self->s.origin[0] != self->s.old_origin[0]) || (self->s.origin[1] != self->s.old_origin[1]))) + { + if (!self->s.sound) + self->s.sound = gi.soundindex ("world/crate1.wav"); + VectorCopy(self->s.origin, self->save_avel); + self->think = trashcanA_check_sound; + self->nextthink = level.time + (FRAMETIME * 1.1); + } + } + + if (!(self->spawnflags & TYPE_METAL)) + { + if (self->health <= 0) + crate_bust_die_48(self, 0, 0, 0, vec3_origin, 0, 0); + } +} + +void SP_props_crate_bust_48 (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + + if (self->spawnflags & NON_MOVEABLE) + self->movetype = MOVETYPE_NONE; + else + self->movetype = MOVETYPE_STEP; + + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -24.1, -24.1, -24.1); + VectorSet (self->maxs, 24.1, 24.1, 24.1); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + + if (self->spawnflags & TYPE_METAL) + { + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/crate/stillcrate48.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/crate/stillcrate48.mdx", &self->s.model_parts[PART_HEAD]); + self->surfacetype = SURF_WOOD; + } + else if (self->spawnflags & TYPE_CARDBOARD) + { + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/crate/stillcard48.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/crate/stillcard48.mdx", &self->s.model_parts[PART_HEAD]); + self->surfacetype = SURF_FABRIC; + } + else if (self->spawnflags & TYPE_WOOD2) + { + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/crate/stillcrate48_2.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/crate/stillcrate48_2.mdx", &self->s.model_parts[PART_HEAD]); + self->surfacetype = SURF_WOOD; + } + else + { + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/crate/stillcrate48_1.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/crate/stillcrate48_1.mdx", &self->s.model_parts[PART_HEAD]); + self->surfacetype = SURF_WOOD; + } + + if (!(self->spawnflags & NON_MOVEABLE)) + { + self->pullable = 1; + self->nokickbackflag = 1; + self->fallerflag = 1; + } + + if (!self->mass) + self->mass = 400; + if (!self->health) + self->health = 10; + if (!self->dmg) + self->dmg = 0; + + if (self->spawnflags & TYPE_METAL) + { + if (self->pullable) + self->touch = crate_touch_48; + } + else + { + self->die = crate_bust_die_48; + self->takedamage = DAMAGE_YES; + if (self->pullable) + self->touch = crate_touch_48; + } + + self->cast_info.aiflags = AI_NOSTEP; + + self->think = M_droptofloor; + self->nextthink = level.time + 2 * FRAMETIME; + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->misstime = 21; + + if (st.item) + { + self->item = FindItemByClassname (st.item); + if (!self->item) + gi.dprintf("%s at %s has bad item: %s\n", self->classname, vtos(self->s.origin), st.item); + } + + gi.linkentity (self); +} + +void crate_bust_final_64 (edict_t *self) +{ + if (self->s.frame < 39) + { + if (self->item) + { + Drop_Item (self, self->item); + self->item = NULL; + } + else + { + if (self->s.frame == 0) + crate_stuff (self); + } + + self->s.frame++; + + self->nextthink = level.time + 0.1; + } + else if (self->misstime-- > 0) + { + if (self->misstime <= 20) + { + if (self->misstime == 20) + { + self->s.renderfx2 |= RF2_PASSALPHA; + self->s.effects = 1; // this is full alpha now + } + + self->s.effects += (255/20); + + if (self->s.effects > 255) + self->s.effects = 255; + } + + self->nextthink = level.time + 0.1; + } + else + { + G_FreeEdict (self); + } +} + +void crate_bust_die_64 (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + int i; + + if (self->takedamage == DAMAGE_NO) + return; + + self->s.sound = 0; + + self->think = crate_bust_final_64; + self->nextthink = level.time + FRAMETIME; + + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + + if (self->spawnflags & TYPE_CARDBOARD) + { + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/crate/cardboard64.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/crate/cardboard64.mdx", &self->s.model_parts[PART_HEAD]); + + self->takedamage = DAMAGE_NO; + self->think = NULL; + self->nextthink = 0; + + gi.sound (self, CHAN_AUTO, gi.soundindex ("weapons/melee/pipehitcboard.wav"), 1, ATTN_NORM, 0); + return; + } + + if (self->spawnflags & TYPE_WOOD2) + { + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/crate/crate64_2.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/crate/crate64_2.mdx", &self->s.model_parts[PART_HEAD]); + } + else + { + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/crate/crate64_1.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/crate/crate64_1.mdx", &self->s.model_parts[PART_HEAD]); + } + + self->s.renderfx2 |= RF2_NOSHADOW; + self->solid = 0; + self->touch = NULL; + gi.sound (self, CHAN_AUTO, gi.soundindex ("world/crate2.wav"), 1, ATTN_NORM, 0); +} + +void SP_props_crate_bust_64 (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -32, -32, -32); + VectorSet (self->maxs, 32, 32, 32); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + + if (self->spawnflags & TYPE_METAL) + { + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/crate/stillcrate64.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/crate/stillcrate64.mdx", &self->s.model_parts[PART_HEAD]); + self->surfacetype = SURF_WOOD; + } + else if (self->spawnflags & TYPE_CARDBOARD) + { + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/crate/stillcard64.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/crate/stillcard64.mdx", &self->s.model_parts[PART_HEAD]); + self->surfacetype = SURF_FABRIC; + } + else if (self->spawnflags & TYPE_WOOD2) + { + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/crate/stillcrate64_2.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/crate/stillcrate64_2.mdx", &self->s.model_parts[PART_HEAD]); + self->surfacetype = SURF_WOOD; + } + else + { + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/crate/stillcrate64_1.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/crate/stillcrate64_1.mdx", &self->s.model_parts[PART_HEAD]); + self->surfacetype = SURF_WOOD; + } + + if (!self->mass) + self->mass = 400; + if (!self->health) + self->health = 10; + if (!self->dmg) + self->dmg = 0; + + if (!(self->spawnflags & TYPE_METAL)) + { + self->die = crate_bust_die_64; + self->takedamage = DAMAGE_YES; + } + + self->think = M_droptofloor; + self->nextthink = level.time + 2 * FRAMETIME; + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->misstime = 21; + + if (st.item) + { + self->item = FindItemByClassname (st.item); + if (!self->item) + gi.dprintf("%s at %s has bad item: %s\n", self->classname, vtos(self->s.origin), st.item); + } + + gi.linkentity (self); +} + +/*QUAKED props_ammocrate_bust (0 .5 .8) (-32 -16 -8) (32 16 8) +Crate you may bust. +health (10). + +"item" - Item to spawn on destruction if hit by pipe or crowbar + +The bounding box can be rotated in angles of 90 deg and block properly + +model="models\props\crate\crate_32_64.mdx" +skin="models\props\crate\crate_exp.tga" +*/ + +void ammocrate_bust_finalA (edict_t *self) +{ + if (self->s.frame < 15) + { + self->s.frame++; + + self->nextthink = level.time + 0.1; + } + else if (self->misstime-- > 0) + { + if (self->misstime <= 20) + { + if (self->misstime == 20) + { + self->s.renderfx2 |= RF2_PASSALPHA; + self->s.effects = 1; // this is full alpha now + } + + self->s.effects += (255/20); + + if (self->s.effects > 255) + self->s.effects = 255; + } + + self->nextthink = level.time + 0.1; + } + else + { + G_FreeEdict (self); + } +} + +void ammocrate_bust_finalB (edict_t *self) +{ + if (self->s.frame < 7) + { + if (self->item) + { + Drop_Item (self, self->item); + self->item = NULL; + } + + self->s.frame++; + + self->nextthink = level.time + 0.1; + } + else if (self->misstime-- > 0) + { + if (self->misstime <= 20) + { + if (self->misstime == 20) + { + self->s.renderfx2 |= RF2_PASSALPHA; + self->s.effects = 1; // this is full alpha now + } + + self->s.effects += (255/20); + + if (self->s.effects > 255) + self->s.effects = 255; + } + + self->nextthink = level.time + 0.1; + } + else + { + G_FreeEdict (self); + } +} + +void ammocrate_bust_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + if ((attacker->client) && (attacker->client->pers.weapon) && + ((!strcmp(attacker->client->pers.weapon->pickup_name, "Crowbar")) || // Ridah, 12-may-99, added brackets to fix crash if Dog busts open crate while attacking player + (!strcmp(attacker->client->pers.weapon->pickup_name, "Pipe")))) + { + self->think = ammocrate_bust_finalB; + self->nextthink = level.time + FRAMETIME; + } + else + { + vec3_t vec; + + self->model = "models/props/crate/exp.md2"; + self->s.modelindex = gi.modelindex (self->model); + self->think = ammocrate_bust_finalA; + self->nextthink = level.time + FRAMETIME; + + { + edict_t *breakit; + + breakit = G_Spawn(); + + if (breakit) + { + VectorCopy (self->s.origin, breakit->s.origin); + gi.linkentity(breakit); + gi.sound (breakit, CHAN_VOICE, gi.soundindex("world/explosion1.wav"), 1, ATTN_NORM, 0); + breakit->think = G_FreeEdict; + breakit->nextthink = level.time + 5.0; + } + } + + { + vec3_t neworigin; + + VectorCopy(self->s.origin, neworigin); + neworigin[1] -= 48; + neworigin[0] -= 32; + neworigin[2] += 16; + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_EXPLOSION1); + gi.WritePosition (neworigin); + gi.WriteDir( vec ); + gi.WriteByte( (int)(self->dmg / 2) ); + gi.WriteByte (self->fxdensity); + gi.multicast (neworigin, MULTICAST_PVS); + } + } + + self->s.renderfx2 |= RF2_NOSHADOW; + self->solid = 0; + self->touch = NULL; + gi.sound (self, CHAN_AUTO, gi.soundindex ("world/crate2.wav"), 1, ATTN_NORM, 0); +} + +void SP_props_ammocrate_bust (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + self->model = "models/props/crate/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + + if ((self->s.angles[1] == 90) || self->s.angles[1] == 270) + { + VectorSet (self->mins, -16, -32, -8); + VectorSet (self->maxs, 16, 32, 8); + } + else + { + VectorSet (self->mins, -32, -16, -8); + VectorSet (self->maxs, 32, 16, 8); + } + + if (!self->mass) + self->mass = 400; + if (!self->health) + self->health = 10; + if (!self->dmg) + self->dmg = 0; + + self->die = ammocrate_bust_die; + self->takedamage = DAMAGE_YES; + + self->think = M_droptofloor; + self->nextthink = level.time + 2 * FRAMETIME; + + self->misstime = 26; + + if (st.item) + { + self->item = FindItemByClassname (st.item); + if (!self->item) + gi.dprintf("%s at %s has bad item: %s\n", self->classname, vtos(self->s.origin), st.item); + } + + self->surfacetype = SURF_WOOD; + gi.linkentity (self); +} + +void trashcanA_delay (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + self->takedamage = DAMAGE_NO; + self->nextthink = level.time + 2 * FRAMETIME; + self->think = trashcanA_explode; + self->activator = attacker; +} + +void SP_props_trashcanA (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + VectorClear(self->s.angles); + + if (!(self->spawnflags & NON_MOVEABLE)) + self->fallerflag = 1; + + self->pullable = 1; + // JOSEPH 24-NOV-98 + self->nokickbackflag = 1; + // END JOSEPH + + // JOSEPH 20-JAN-99 + gi.modelindex ("models/props/metal/metal1.md2"); + gi.modelindex ("models/props/metal/metal2.md2"); + gi.modelindex ("models/props/metal/metal3.md2"); + gi.modelindex ("models/props/metal/metal4.md2"); + gi.modelindex ("models/props/metal/metal5.md2"); + // END JOSEPH + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_STEP; + self->svflags |= SVF_PROP; + + self->model = "models/props/t_can/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -16, -16, -21); + VectorSet (self->maxs, 16, 16, 21); + + if (!self->mass) + self->mass = 400; + if (!self->health) + self->health = 10; + if (!self->dmg) + self->dmg = 0; + + self->die = trashcanA_delay; + self->takedamage = DAMAGE_YES; + self->cast_info.aiflags = AI_NOSTEP; + + if (!(self->spawnflags & NON_MOVEABLE)) + self->touch = trashcanA_touch; + + self->think = M_droptofloor; + self->nextthink = level.time + 2 * FRAMETIME; + + if (st.item) + { + self->item = FindItemByClassname (st.item); + if (!self->item) + gi.dprintf("%s at %s has bad item: %s\n", self->classname, vtos(self->s.origin), st.item); + } + + self->surfacetype = SURF_METAL_L; + gi.linkentity (self); +} + +/*QUAKED props_trashcan_fall (0 .5 .8) (-16 -16 -21) (16 16 21) +Trash can you can push. You can override its mass (100), +health (80). + +"item" - Item to spawn on push down or destruction + +model="models\props\t_can2\" +*/ + +// JOSEPH 9-FEB-99 +void trashcan_fall_final (edict_t *self) +{ + float ratio; + vec3_t forward; + + if (self->s.frame < 14) + { + if (self->item) + { + Drop_Item (self, self->item); + self->item = NULL; + } + + self->s.frame++; + + if ((self->s.frame > 2) && (self->s.frame < 12)) + { + ratio = 500 / (float)self->mass; + AngleVectors(self->s.angles, forward, NULL, NULL); + M_walkmove (self, vectoyaw(forward), 20 * ratio * FRAMETIME); + } + } + + if (self->health <= 0) + trashcanA_explode(self); + else + self->nextthink = level.time + 0.1; +} +// END JOSEPH + +void trashcan_fall_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + self->s.angles[1] = (other->s.angles[1] + 90); + self->s.angles[1] += (((rand() / (float)RAND_MAX)*(float)180.0)-(float)90.0); + + self->touch = NULL; + self->think = trashcan_fall_final; + self->nextthink = level.time + FRAMETIME; + + gi.sound (self, CHAN_AUTO, gi.soundindex ("world/trash2.wav"), 1, ATTN_NORM, 0); +} + +void SP_props_trashcan_fall (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + VectorClear(self->s.angles); + + // JOSEPH 20-JAN-99 + gi.modelindex ("models/props/metal/metal1.md2"); + gi.modelindex ("models/props/metal/metal2.md2"); + gi.modelindex ("models/props/metal/metal3.md2"); + gi.modelindex ("models/props/metal/metal4.md2"); + gi.modelindex ("models/props/metal/metal5.md2"); + // END JOSEPH + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/props/t_can2/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -16, -16, -21); + VectorSet (self->maxs, 16, 16, 21); + + if (!self->mass) + self->mass = 400; + if (!self->health) + self->health = 10; + if (!self->dmg) + self->dmg = 0; + + self->die = trashcanA_delay; + self->takedamage = DAMAGE_YES; + + self->touch = trashcan_fall_touch; + + self->think = M_droptofloor; + self->nextthink = level.time + 2 * FRAMETIME; + + if (st.item) + { + self->item = FindItemByClassname (st.item); + if (!self->item) + gi.dprintf("%s at %s has bad item: %s\n", self->classname, vtos(self->s.origin), st.item); + } + + self->surfacetype = SURF_METAL_L; + gi.linkentity (self); +} + +/*QUAKED light_fire_esm (1 0 0) (-8 -8 -8) (8 8 8) X X X DYNAMIC +Cool fire extra-small + +alphalevel 1 - 10 (default 5) +*/ + +/*QUAKED light_fire_sm (1 0 0) (-16 -16 -16) (16 16 16) X X X DYNAMIC +Cool fire small + +alphalevel 1 - 10 (default 5) +*/ + +/*QUAKED light_fire_med (1 0 0) (-24 -24 -24) (24 24 24) X X X DYNAMIC +Cool fire medium + +alphalevel 1 - 10 (default 5) +*/ + +/*QUAKED light_fire_lg (1 0 0) (-32 -32 -32) (32 32 32) X X X DYNAMIC +Cool fire large + +alphalevel 1 - 10 (default 5) +*/ + +/*QUAKED smoke_esm (1 0 0) (-8 -8 -8) (8 8 8) +Cool smoke extra-small + +alphalevel 1 - 10 (default 4) +*/ + +/*QUAKED smoke_sm (1 0 0) (-16 -16 -16) (16 16 16) +Cool smoke small + +alphalevel 1 - 10 (default 4) +*/ + +/*QUAKED smoke_med (1 0 0) (-24 -24 -24) (24 24 24) +Cool smoke medium + +alphalevel 1 - 10 (default 4) +*/ + +/*QUAKED smoke_lg (1 0 0) (-32 -32 -32) (32 32 32) +Cool smoke large + +alphalevel 1 - 10 (default 4) +*/ + +void light_fire_think( edict_t *ent) +{ + ent->nextthink = level.time + 0.1; + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SFXFIRE); + gi.WritePosition (ent->s.origin); +// gi.WriteDir (ent->s.angles); + gi.WriteByte (ent->firetype); + if (ent->alphalevel) + { + gi.WriteByte (ent->alphalevel); + } + else + { + gi.WriteByte (0); + } + gi.multicast (ent->s.origin, MULTICAST_PVS); +} + +void smoke_think( edict_t *ent) +{ + ent->nextthink = level.time + 0.5; + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SFXSMOKE); + gi.WritePosition (ent->s.origin); +// gi.WriteDir (ent->s.angles); + gi.WriteByte (ent->firetype); + if (ent->alphalevel) + { + gi.WriteByte (ent->alphalevel); + } + else + { + gi.WriteByte (0); + } + gi.multicast (ent->s.origin, MULTICAST_PVS); +} + +void SP_light_fire_esm (edict_t *ent) +{ + if (ent->alphalevel > 10) ent->alphalevel = 10; + VectorSet (ent->movedir, 0.0, 1, 0.0); + ent->think = light_fire_think; + ent->nextthink = level.time + 0.1; + ent->firetype = 8; + gi.linkentity (ent); + + AddLightSource(ent); +} + +void SP_light_fire_sm (edict_t *ent) +{ + if (ent->alphalevel > 10) ent->alphalevel = 10; + VectorSet (ent->movedir, 0.0, 1, 0.0); + ent->think = light_fire_think; + ent->nextthink = level.time + 0.1; + ent->firetype = 16; + gi.linkentity (ent); + + AddLightSource(ent); +} + +void SP_light_fire_med (edict_t *ent) +{ + if (ent->alphalevel > 10) ent->alphalevel = 10; + VectorSet (ent->movedir, 0.0, 1, 0.0); + ent->think = light_fire_think; + ent->nextthink = level.time + 0.1; + ent->firetype = 24; + gi.linkentity (ent); + + AddLightSource(ent); +} + +void SP_light_fire_lg (edict_t *ent) +{ + if (ent->alphalevel > 10) ent->alphalevel = 10; + VectorSet (ent->movedir, 0.0, 1, 0.0); + ent->think = light_fire_think; + ent->nextthink = level.time + 0.1; + ent->firetype = 32; + gi.linkentity (ent); + + AddLightSource(ent); +} + +void SP_smoke_esm (edict_t *ent) +{ + if (ent->alphalevel > 10) ent->alphalevel = 10; + VectorSet (ent->movedir, 0.0, 1, 0.0); + ent->think = smoke_think; + ent->nextthink = level.time + 0.1; + ent->firetype = 5; + gi.linkentity (ent); +} + +void SP_smoke_sm (edict_t *ent) +{ + if (ent->alphalevel > 10) ent->alphalevel = 10; + VectorSet (ent->movedir, 0.0, 1, 0.0); + ent->think = smoke_think; + ent->nextthink = level.time + 0.1; + ent->firetype = 10; + gi.linkentity (ent); +} + +void SP_smoke_med (edict_t *ent) +{ + if (ent->alphalevel > 10) ent->alphalevel = 10; + VectorSet (ent->movedir, 0.0, 1, 0.0); + ent->think = smoke_think; + ent->nextthink = level.time + 0.1; + ent->firetype = 20; + gi.linkentity (ent); +} + +void SP_smoke_lg (edict_t *ent) +{ + if (ent->alphalevel > 10) ent->alphalevel = 10; + VectorSet (ent->movedir, 0.0, 1, 0.0); + ent->think = smoke_think; + ent->nextthink = level.time + 0.1; + ent->firetype = 30; + gi.linkentity (ent); +} + +/*QUAKED cast_buma (1 .5 0) (-30 -16 -25) (31 43 13) +Bum +model = "models\actors\bum_seg" +*/ + +/*QUAKED cast_bumb (1 .5 0) (-30 -16 -25) (31 43 13) +Bum +model = "models\actors\bum_seg" +*/ + +void think_bum1b (edict_t *self); +void think_bum2b (edict_t *self); + +void think_bum1a (edict_t *self) +{ + self->nextthink = level.time + FRAMETIME; + + if (self->s.frame < 17) + { + self->s.frame++; + } + else + { + self->s.frame = 0; + + if (((float)rand() / (float)RAND_MAX) < (float)0.1) + { + self->think = think_bum1b; + gi.sound ( self, CHAN_VOICE, gi.soundindex ("actors/bum/bum.wav"), 1, 3, 0); + return; + } + } + + self->think = think_bum1a; +} + +void think_bum1b (edict_t *self) +{ + self->nextthink = level.time + FRAMETIME; + + if (self->s.frame < 74) + { + self->s.frame++; + } + else + { + self->s.frame = 0; + self->think = think_bum1a; + return; + } + + self->think = think_bum1b; +} + +void think_bum2a (edict_t *self) +{ + self->nextthink = level.time + FRAMETIME; + + if (self->s.frame < 117) + { + self->s.frame++; + } + else + { + self->s.frame = 75; + + if (((float)rand() / (float)RAND_MAX) < (float)0.1) + { + self->think = think_bum2b; + gi.sound ( self, CHAN_VOICE, gi.soundindex ("actors/bum/bum.wav"), 1, 3, 0); + return; + } + } + + self->think = think_bum2a; +} + +void think_bum2b (edict_t *self) +{ + self->nextthink = level.time + FRAMETIME; + + if (self->s.frame < 218) + { + self->s.frame++; + } + else + { + self->s.frame = 75; + self->think = think_bum2a; + return; + } + + self->think = think_bum2b; +} + +// JOSEPH 24-JAN-99 +void SP_cast_buma (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + + self->s.skinnum = self->skin; + + VectorSet (self->mins, -16, -30, -25); + VectorSet (self->maxs, 43, 31, 13); + + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/bum_seg/parta.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/bum_seg/parta.mdx", &self->s.model_parts[PART_HEAD] ); + + self->s.num_parts++; + self->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/actors/bum_seg/partb.mdx"); + for (i=0; is.model_parts[PART_BODY].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/bum_seg/partb.mdx", &self->s.model_parts[PART_BODY] ); + self->health = 100; + self->gib_health = -40; + self->mass = 100; + + //self->pain = bum_pain; + //self->die = bum_die; + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + gi.linkentity (self); + + self->think = think_bum1a; + self->nextthink = level.time + 2 * FRAMETIME; +} + +void SP_cast_bumb (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + + self->s.skinnum = self->skin; + + VectorSet (self->mins, -16, -30, -25); + VectorSet (self->maxs, 43, 31, 13); + + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/actors/bum_seg/parta.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/bum_seg/parta.mdx", &self->s.model_parts[PART_HEAD] ); + + self->s.num_parts++; + self->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/actors/bum_seg/partb.mdx"); + for (i=0; is.model_parts[PART_BODY].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/actors/bum_seg/partb.mdx", &self->s.model_parts[PART_BODY] ); + + self->health = 100; + self->gib_health = -40; + self->mass = 100; + + //self->pain = bum_pain; + //self->die = bum_die; + + gi.linkentity (self); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; // Ridah + + self->s.frame = 75; + self->think = think_bum2b; + self->nextthink = level.time + 2 * FRAMETIME; +} +// END JOSEPH + +// JOSEPH 23-JAN-99-B +/*QUAKED props_chair (0 .5 .8) (-11 -13 -26) (11 13 26) + +A chair + +model="models\props\chair\chair.mdx" +skin="models\props\chair\chair1.tga" +*/ + +void SP_props_chair (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = 0; //SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -11, -13, -26); + VectorSet (self->maxs, 11, 13, 26); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/chair/chair.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/chair/chair.mdx", &self->s.model_parts[PART_HEAD]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + self->think = M_droptofloor; + self->nextthink = level.time + 2 * FRAMETIME; + + self->surfacetype = SURF_WOOD; + gi.linkentity (self); +} +// END JOSEPH + +/*QUAKED props2_chair_push (0 .5 .8) (-16 -16 -26) (16 16 26) + +A pushable chair + +"health" - default 25 + +model="models\props\chair\chair.mdx" +skin="models\props\chair\chair1.tga" +*/ + +void chair_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + float ratio; + vec3_t v; + + if ((!other->groundentity) || (other->groundentity == self)) + return; + + self->pullingflag = 0; + + // If activate key is pressed + if ((plane) && (plane->type == 123)) + { + if ((other->s.origin[0] != other->s.old_origin[0]) || (other->s.origin[1] != other->s.old_origin[1])) + { + self->pullingflag = 1; + + ratio = (float)other->mass / (float)self->mass; + VectorSubtract (self->s.origin, other->s.origin, v); + M_walkmove (self, 180+vectoyaw(v), 20 * ratio * FRAMETIME); + + if (!self->s.sound) + self->s.sound = gi.soundindex ("world/crate1.wav"); + VectorCopy(self->s.origin, self->save_avel); + self->think = trashcanA_check_sound; + self->nextthink = level.time + (FRAMETIME * 1.1); + } + } + else + { + ratio = (float)other->mass / (float)self->mass; + VectorSubtract (self->s.origin, other->s.origin, v); + M_walkmove (self, vectoyaw(v), 20 * ratio * FRAMETIME); + + if (((self->s.origin[0] != self->s.old_origin[0]) || (self->s.origin[1] != self->s.old_origin[1]))) + { + if (!self->s.sound) + self->s.sound = gi.soundindex ("world/crate1.wav"); + VectorCopy(self->s.origin, self->save_avel); + self->think = trashcanA_check_sound; + self->nextthink = level.time + (FRAMETIME * 1.1); + } + } + + if (self->health <= 0) + trashcanA_delay(self, NULL, NULL, 0, vec3_origin, 0, 0); +} + +void SP_props2_chair_push (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_STEP; + self->svflags |= SVF_PROP; + + self->pullable = 1; + self->nokickbackflag = 1; + + gi.modelindex ("models/props/metal/metal1.md2"); + gi.modelindex ("models/props/metal/metal2.md2"); + gi.modelindex ("models/props/metal/metal3.md2"); + gi.modelindex ("models/props/metal/metal4.md2"); + gi.modelindex ("models/props/metal/metal5.md2"); + + VectorSet (self->mins, -16, -16, -26); + VectorSet (self->maxs, 16, 16, 0); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/chair/chair.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/chair/chair.mdx", &self->s.model_parts[PART_HEAD]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + if (!self->mass) + self->mass = 400; + + if (!self->health) + self->health = 25; + + self->die = trashcanA_delay; + self->takedamage = DAMAGE_YES; + + self->cast_info.aiflags = AI_NOSTEP; + self->touch = chair_touch; + + self->think = M_droptofloor; + self->nextthink = level.time + 2 * FRAMETIME; + + self->surfacetype = SURF_METAL; + gi.linkentity (self); +} +// END JOSEPH + +// JOSEPH 24-JAN-99 +/*QUAKED props_extinguisherA (0 .5 .8) (-16 -16 -16) (16 16 16) + +An extingusher + +model="models\pu_icon\exting\ext1.md2" + +dmg - damage an exploding extinguisher causes (default 25) +*/ + +/*QUAKED props_extinguisherB (0 .5 .8) (-16 -16 -16) (16 16 16) + +An extingusher + +dmg - damage an exploding extinguisher causes (default 25) + +model="models\pu_icon\exting\ext2.md2" +*/ + +void exting_delay (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + vec3_t vec; + + self->takedamage = DAMAGE_NO; + self->nextthink = level.time + FRAMETIME; + self->think = trashcanA_explode; + self->activator = attacker; + + VectorClear(vec); + vec[2] = 1; + + { + edict_t *breakit; + + breakit = G_Spawn(); + + if (breakit) + { + VectorCopy (self->s.origin, breakit->s.origin); + gi.linkentity(breakit); + gi.sound (breakit, CHAN_VOICE, gi.soundindex("world/explosion1.wav"), 1, ATTN_NORM, 0); + breakit->think = G_FreeEdict; + breakit->nextthink = level.time + 5.0; + } + } + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_EXPLOSION1); + gi.WritePosition (self->s.origin); + gi.WriteDir( vec ); + gi.WriteByte( (int)(self->dmg / 2) ); + gi.WriteByte (self->fxdensity); + gi.multicast (self->s.origin, MULTICAST_PVS); + + T_RadiusDamage (self, self->activator, self->dmg, NULL, self->dmg+40, MOD_EXPLOSIVE); +} + +// JOSEPH 3-FEB-99 +void SP_props_extinguisherA (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/pu_icon/exting/ext1.md2"; + self->s.modelindex = gi.modelindex (self->model); + + VectorSet (self->mins, -16, -16, -16); + VectorSet (self->maxs, 16, 16, 16); + + self->die = exting_delay; + self->takedamage = DAMAGE_YES; + + if (!self->dmg) + self->dmg = 25; + + self->s.renderfx |= RF_REFL_MAP; + + self->surfacetype = SURF_METAL; + gi.linkentity (self); +} + +void SP_props_extinguisherB (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/pu_icon/exting/ext2.md2"; + self->s.modelindex = gi.modelindex (self->model); + + VectorSet (self->mins, -16, -16, -16); + VectorSet (self->maxs, 16, 16, 16); + + self->die = exting_delay; + self->takedamage = DAMAGE_YES; + + if (!self->dmg) + self->dmg = 25; + + self->s.renderfx |= RF_REFL_MAP; + + self->surfacetype = SURF_METAL; + gi.linkentity (self); +} +// END JOSEPH + +// JOSEPH 13-FEB-99 +/*QUAKED props_motorcycle (0 .5 .8) (-60 -20 -26) (60 20 26) + +A motorcycle + +model="models\props\moto\moto.mdx;models\props\moto\chrome.mdx" +skin="models\props\moto\motoskin.tga;models\props\moto\motoskin_a.tga" +*/ + +void SP_props_motorcycle (edict_t *self) +{ + int i; + //edict_t *box = NULL; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/moto/moto.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/moto/moto.mdx", &self->s.model_parts[PART_HEAD]); + + self->s.num_parts++; + self->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/props/moto/chrome.mdx"); + for (i=0; is.model_parts[PART_BODY].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/props/moto/chrome.mdx", &self->s.model_parts[PART_BODY] ); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx |= RF_REFL_MAP; + + self->surfacetype = SURF_METAL; + gi.linkentity (self); +} +// END JOSEPH + +/*QUAKED props_motorcycle_run (0 .5 .8) (-16 -16 -16) (16 16 16) + +A motorcycle speeding away + +model="models\props\ride\moto.mdx" +*/ + +void think_motorcycle_run (edict_t *self) +{ + if (self->s.frame < 111) + { + self->nextthink = level.time + 0.1; + self->s.frame++; + } + else + { + G_FreeEdict (self); + } +} + +void SP_props_motorcycle_run (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->s.angles[0] = 0; + self->s.angles[1] = 270; + self->s.angles[2] = 0; + + self->s.origin[0] = -2368+16; + self->s.origin[1] = -880-16; + self->s.origin[2] = 48-16-5; + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/ride/head.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/ride/head.mdx", &self->s.model_parts[PART_HEAD]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/ride/moto.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/props/ride/moto.mdx", &self->s.model_parts[1] ); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/ride/body.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/props/ride/body.mdx", &self->s.model_parts[2] ); + + self->s.num_parts++; + self->s.model_parts[3].modelindex = gi.modelindex("models/props/ride/legs.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/props/ride/legs.mdx", &self->s.model_parts[3] ); + + self->s.num_parts++; + self->s.model_parts[4].modelindex = gi.modelindex("models/props/ride/cigar.mdx"); + for (i=0; is.model_parts[4].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/props/ride/cigar.mdx", &self->s.model_parts[4] ); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx |= RF_REFL_MAP; + + self->think = think_motorcycle_run; + self->nextthink = level.time + 2.0; + + gi.linkentity (self); +} + +/*QUAKED props_motorcycle_runaway (0 .5 .8) (-16 -16 -16) (16 16 16) + +A motorcycle riding in place + +model="models\props\runaway\moto.mdx" +*/ + +void think_motorcycle_runaway (edict_t *self) +{ + if (self->s.frame < 55) + { + self->s.frame++; + + /*if (self->count) + { + edict_t *player; + + if (self->count > 10) + self->count = 10; + + player = &g_edicts[1]; + + player->client->ps.stats[STAT_ENDPIC] = self->count; + + self->count++; + } + else + { + edict_t *player; + + player = &g_edicts[1]; + + player->client->ps.stats[STAT_ENDPIC] = 100; + }*/ + } + else + { + self->s.frame = 0; + self->count++; + } + + self->nextthink = level.time + 0.1; +} + +void SP_props_motorcycle_runaway (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/runaway/head.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/runaway/head.mdx", &self->s.model_parts[PART_HEAD]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/runaway/moto.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/props/runaway/moto.mdx", &self->s.model_parts[1] ); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/runaway/body.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/props/runaway/body.mdx", &self->s.model_parts[2] ); + + self->s.num_parts++; + self->s.model_parts[3].modelindex = gi.modelindex("models/props/runaway/legs.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/props/runaway/legs.mdx", &self->s.model_parts[3] ); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx |= RF_REFL_MAP; + + self->think = think_motorcycle_runaway; + self->nextthink = level.time + 0.1; + self->count = 0; + + gi.linkentity (self); +} + +// JOSEPH 13-FEB-99 +/*QUAKED props_shelf (0 .5 .8) (-40 -85 -51) (40 85 51) + +The pawn shop shelf + +model="models\props\shelf\flametank.mdx;models\props\shelf\pistol.mdx;models\props\shelf\shotgun.mdx;models\props\shelf\tomgun.mdx;models\props\shelf\sshell.mdx" +*/ + +void SP_props_shelf (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/shelf/flametank.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelf/flametank.mdx", &self->s.model_parts[PART_HEAD]); + + self->s.num_parts++; + self->s.model_parts[PART_BODY].modelindex = gi.modelindex("models/props/shelf/pistol.mdx"); + for (i=0; is.model_parts[PART_BODY].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/props/shelf/pistol.mdx", &self->s.model_parts[PART_BODY] ); + + self->s.num_parts++; + self->s.model_parts[PART_LEGS].modelindex = gi.modelindex("models/props/shelf/shotgun.mdx"); + for (i=0; is.model_parts[PART_LEGS].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/props/shelf/shotgun.mdx", &self->s.model_parts[PART_BODY] ); + + self->s.num_parts++; + self->s.model_parts[PART_GUN].modelindex = gi.modelindex("models/props/shelf/sshell.mdx"); + for (i=0; is.model_parts[PART_GUN].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/props/shelf/sshell.mdx", &self->s.model_parts[PART_BODY] ); + + self->s.num_parts++; + self->s.model_parts[PART_GUN2].modelindex = gi.modelindex("models/props/shelf/tomgun.mdx"); + for (i=0; is.model_parts[PART_GUN2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/props/shelf/tomgun.mdx", &self->s.model_parts[PART_BODY] ); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + gi.linkentity (self); +} +// END JOSEPH + +/*QUAKED props_mattressA (0 .5 .8) (-36 -28 -38) (36 28 38) +model="models/props/mattress/matt.md2" +A mattress + +*/ + +void SP_props_mattressA (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/props/mattress/matt.md2"; + self->s.modelindex = gi.modelindex (self->model); + + VectorSet (self->mins, -36, -28, -38); + VectorSet (self->maxs, 36, 28, 38); + + self->s.renderfx2 |= RF2_NOSHADOW; + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + self->surfacetype = SURF_FABRIC; + gi.linkentity (self); +} + +/*QUAKED props_mattressB (0 .5 .8) (-8 -34-38) (8 34 38) +A mattress +model="models/props/mattress/matt2.md2" +*/ + +void SP_props_mattressB (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/props/mattress/matt2.md2"; + self->s.modelindex = gi.modelindex (self->model); + + VectorSet (self->mins, -8, -34, -38); + VectorSet (self->maxs, 8, 34, 38); + + self->s.renderfx2 |= RF2_NOSHADOW; + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + self->surfacetype = SURF_FABRIC; + gi.linkentity (self); +} + +/*QUAKED props_mattressC (0 .5 .8) (-34 -38 -8) (34 38 8) +A mattress +model="models/props/mattress/matt3.md2" +*/ + +void SP_props_mattressC (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/props/mattress/matt3.md2"; + self->s.modelindex = gi.modelindex (self->model); + + VectorSet (self->mins, -34, -38, -8); + VectorSet (self->maxs, 34, 38, 8); + + self->s.renderfx2 |= RF2_NOSHADOW; + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + self->surfacetype = SURF_FABRIC; + gi.linkentity (self); +} + +/*QUAKED props_tv (0 .5 .8) (-8 -16 -22) (8 16 22) + +A television + +model="models\props\tv\tv.md2" +*/ + +void SP_props_tv (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/props/tv/tv.md2"; + self->s.modelindex = gi.modelindex (self->model); + + VectorSet (self->mins, -8, -16, -22); + VectorSet (self->maxs, 8, 16, 22); + + self->s.renderfx2 |= RF2_NOSHADOW; + self->surfacetype = SURF_METAL; + gi.linkentity (self); +} + +/*QUAKED props_steam_machine (0 .5 .8) (-8 -8 -8) (8 8 8) + +A real steam producer + +"alphalevel" 1 - 10 (default 2) +"firetype" length of steam 1 - 100 (default 15) +"thudsurf" start size of steam 1 - 10 (default 5) +"thudsnd" end size steam increase 1 - 10 (default 5) +"deadticks" number of steam puffs per length element 1- 10 (default 2) +*/ + +void steam_think( edict_t *ent) +{ + ent->nextthink = level.time + 0.5; + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SFXSTEAM); + gi.WritePosition (ent->s.origin); + gi.WriteDir (ent->s.angles); + gi.WriteByte (ent->firetype); // length + gi.WriteByte (ent->deadticks); // puffs + gi.WriteByte (ent->thudsurf); // start size + gi.WriteByte (ent->thudsnd); // end size + if (ent->alphalevel) + gi.WriteByte (ent->alphalevel); + else + gi.WriteByte (0); + gi.multicast (ent->s.origin, MULTICAST_PVS); +} + +void SP_props_steam_machine (edict_t *ent) +{ + if (ent->alphalevel > 10) ent->alphalevel = 10; + if ((!ent->thudsurf) || (ent->thudsurf > 10)) + ent->thudsurf = 5; + if ((!ent->thudsnd) || (ent->thudsnd > 10)) + ent->thudsnd = 5; + if ((!ent->firetype) || (ent->firetype > 100)) + ent->firetype = 15; + if ((!ent->deadticks) || (ent->deadticks > 10)) + ent->deadticks = 2; + ent->think = steam_think; + ent->nextthink = level.time + 0.1; + gi.linkentity (ent); +} + +// JOSEPH 24-FEB-99 +/*QUAKED props_trash (0 .5 .8) (-64 -64 -4) (64 64 4) + +Some trash + +model="models\props\trash\tris.md2" +*/ + +void SP_props_trash (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -64, -64, -4); + VectorSet (self->maxs, 64, 64, 4); + + self->model = "models/props/trash/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + + self->s.renderfx2 |= RF2_NOSHADOW; + + if (st.item) + { + self->item = FindItemByClassname (st.item); + if (!self->item) + gi.dprintf("%s at %s has bad item: %s\n", self->classname, vtos(self->s.origin), st.item); + } + + gi.linkentity (self); +} +// END JOSEPH + +/*UAKED props_wall_fall_test (0 .5 .8) (-64 -26 -48) (64 26 48) + +A test wall + +model="models\props\wall\testwall.mdx" +*/ + +/*QUAKED props_wall_fall (0 .5 .8) (-64 -26 -48) (64 26 48) + +A wall that falls when trigered + +model="models\props\wall\wall.mdx" +*/ +void wall_fall_final (edict_t *self) +{ + if (self->s.frame < 45) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + + if (self->s.frame == 1) + { + self->svflags &= ~SVF_NOCLIENT; + } + } + + if (self->misstime-- > 0) + { + if (self->misstime <= 20) + { + if (self->misstime == 20) + { + self->s.renderfx2 |= RF2_PASSALPHA; + self->s.effects = 1; // this is full alpha now + } + + self->s.effects += (255/20); + + if (self->s.effects > 255) + self->s.effects = 255; + } + + self->nextthink = level.time + 0.1; + } + else + { + G_FreeEdict (self); + } +} +// END JOSEPH + +void wall_fall_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = wall_fall_final; + ent->nextthink = level.time + FRAMETIME; + gi.sound (ent, CHAN_AUTO, gi.soundindex ("world/brickfall.wav"), 1, ATTN_NORM, 0); +} + +void SP_props_wall_fall (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -64, -26, -48); + VectorSet (self->maxs, 64, 26, 48); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/wall/wall.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/wall/wall.mdx", &self->s.model_parts[PART_HEAD]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = wall_fall_trigger; + + self->svflags |= SVF_NOCLIENT; + + self->misstime = 40; + + gi.linkentity (self); +} + +/*QUAKED props_trashbottle (0 .5 .8) (-8 -2 -2) (8 2 2) + +Some trash + +model="models\props\trashbottle\tris.md2" +*/ + +void SP_props_trashbottle (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/props/trashbottle/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + + self->s.renderfx2 |= RF2_NOSHADOW; + + gi.linkentity (self); +} +// END JOSEPH + +/*QUAKED props_trashpaper (0 .5 .8) (-18 -18 -2) (18 18 2) + +Some trash + +model="models\props\trashpaper\tris.md2" +*/ + +void SP_props_trashpaper (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/props/trashpaper/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + + self->s.renderfx2 |= RF2_NOSHADOW; + + gi.linkentity (self); +} +// END JOSEPH + +/*QUAKED props_trashwall (0 .5 .8) (-70 -25 -10) (70 25 10) + +Some trash + +model="models\props\trashwall\tris.md2" +*/ + +void SP_props_trashwall (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/props/trashwall/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + + self->s.renderfx2 |= RF2_NOSHADOW; + + gi.linkentity (self); +} +// END JOSEPH + +/*QUAKED props_trashcorner (0 .5 .8) (-40 -40 -8) (40 40 8) + +Some trash + +model="models\props\trashcorner\tris.md2" +*/ + +void SP_props_trashcorner (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/props/trashcorner/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + + self->s.renderfx2 |= RF2_NOSHADOW; + + gi.linkentity (self); +} +// END JOSEPH + +/*QUAKED props_trashbottle_vert (0 .5 .8) (-2 -2 -8) (2 2 8) + +A vertical trash bottle + +model="models\props\trashbottle_vert\tris.md2" +*/ + +void SP_props_trashbottle_vert (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/props/trashbottle_vert/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + + self->s.renderfx2 |= RF2_NOSHADOW; + + gi.linkentity (self); +} +// END JOSEPH + +/*QUAKED props_shelf_fall (0 .5 .8) (-65 -13 -51) (65 13 51) + +An falling shelf + +The bounding box can be rotated in angles of 90 deg and block properly + +model="models\props\shelf\shelf.mdx;models\props\shelf\top.mdx" +*/ + +void shelf_fall_final (edict_t *self) +{ + if (self->s.frame < 84) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + self->handle2->s.frame++; + } +} + +void shelf_fall_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + self->takedamage = DAMAGE_NO; + self->nextthink = level.time + FRAMETIME; + self->think = shelf_fall_final; +} + +void SP_props_shelf_fall (edict_t *self) +{ + int i; + edict_t *newent = NULL; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + if ((self->s.angles[1] == 90) || self->s.angles[1] == 270) + { + VectorSet (self->mins, -20, -78, -52); + VectorSet (self->maxs, 20, 78, 52); + } + else + { + VectorSet (self->mins, -78, -20, -52); + VectorSet (self->maxs, 78, 20, 52); + } + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/shelf/shelf.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelf/shelf.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/shelf/tops.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelf/tops.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/shelf/barre0.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelf/barre0.mdx", &self->s.model_parts[2]); + + self->s.num_parts++; + self->s.model_parts[3].modelindex = gi.modelindex("models/props/shelf/barre1.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelf/barre1.mdx", &self->s.model_parts[3]); + + self->s.num_parts++; + self->s.model_parts[4].modelindex = gi.modelindex("models/props/shelf/barre2.mdx"); + for (i=0; is.model_parts[4].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelf/barre2.mdx", &self->s.model_parts[4]); + + self->s.num_parts++; + self->s.model_parts[5].modelindex = gi.modelindex("models/props/shelf/barre3.mdx"); + for (i=0; is.model_parts[5].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelf/barre3.mdx", &self->s.model_parts[5]); + + self->s.num_parts++; + self->s.model_parts[6].modelindex = gi.modelindex("models/props/shelf/barre4.mdx"); + for (i=0; is.model_parts[6].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelf/barre4.mdx", &self->s.model_parts[6]); + + + newent = G_Spawn(); + + if (!newent) + return; + + self->handle2 = newent; + + VectorCopy(self->s.origin, newent->s.origin); + VectorCopy(self->s.angles, newent->s.angles); + + newent->solid = SOLID_NOT; + newent->movetype = MOVETYPE_NONE; + newent->svflags |= SVF_PROP; + + newent->s.skinnum = newent->skin; + memset(&(newent->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + newent->s.num_parts++; + newent->s.model_parts[0].modelindex = gi.modelindex("models/props/shelf/barre5.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds("models/props/shelf/barre5.mdx", &newent->s.model_parts[0]); + + newent->s.num_parts++; + newent->s.model_parts[1].modelindex = gi.modelindex("models/props/shelf/barre6.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds("models/props/shelf/barre6.mdx", &newent->s.model_parts[1]); + + newent->s.num_parts++; + newent->s.model_parts[2].modelindex = gi.modelindex("models/props/shelf/barre7.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds("models/props/shelf/barre7.mdx", &newent->s.model_parts[2]); + + newent->s.num_parts++; + newent->s.model_parts[3].modelindex = gi.modelindex("models/props/shelf/barre8.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds("models/props/shelf/barre8.mdx", &newent->s.model_parts[3]); + + newent->s.num_parts++; + newent->s.model_parts[4].modelindex = gi.modelindex("models/props/shelf/barre9.mdx"); + for (i=0; is.model_parts[4].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds("models/props/shelf/barre9.mdx", &newent->s.model_parts[4]); + + newent->s.num_parts++; + newent->s.model_parts[5].modelindex = gi.modelindex("models/props/shelf/barre10.mdx"); + for (i=0; is.model_parts[5].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds("models/props/shelf/barre10.mdx", &newent->s.model_parts[5]); + + newent->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + self->die = shelf_fall_die; + self->takedamage = DAMAGE_YES; + + newent->surfacetype = SURF_WOOD; + self->surfacetype = SURF_WOOD; + gi.linkentity (newent); + gi.linkentity (self); +} + + +/*QUAKED props_shelfB_fall (0 .5 .8) (-65 -13 -51) (65 13 51) + +Another falling shelf + +model="models\props\shelftwo\shelf.mdx;models\props\shelftwo\top.mdx" +*/ + +void shelfB_fall_final (edict_t *self) +{ + if (self->s.frame < 75) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + self->handle->s.frame++; + self->handle2->s.frame++; + } +} + +void shelfB_fall_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + self->takedamage = DAMAGE_NO; + self->nextthink = level.time + FRAMETIME; + self->think = shelfB_fall_final; +} + +void SP_props_shelfB_fall (edict_t *self) +{ + int i; + edict_t *newent = NULL; + edict_t *newent2 = NULL; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + if ((self->s.angles[1] == 90) || self->s.angles[1] == 270) + { + VectorSet (self->mins, -20, -78, -52); + VectorSet (self->maxs, 20, 78, 52); + } + else + { + VectorSet (self->mins, -78, -20, -52); + VectorSet (self->maxs, 78, 20, 52); + } + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/shelftwo/shelf.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelftwo/shelf.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/shelftwo/tanktops.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelftwo/tanktops.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/shelftwo/barre0.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelftwo/barre0.mdx", &self->s.model_parts[2]); + + self->s.num_parts++; + self->s.model_parts[3].modelindex = gi.modelindex("models/props/shelftwo/barre1.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelftwo/barre1.mdx", &self->s.model_parts[3]); + + self->s.num_parts++; + self->s.model_parts[4].modelindex = gi.modelindex("models/props/shelftwo/barre2.mdx"); + for (i=0; is.model_parts[4].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelftwo/barre2.mdx", &self->s.model_parts[4]); + + self->s.num_parts++; + self->s.model_parts[5].modelindex = gi.modelindex("models/props/shelftwo/barre3.mdx"); + for (i=0; is.model_parts[5].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelftwo/barre3.mdx", &self->s.model_parts[5]); + + self->s.num_parts++; + self->s.model_parts[6].modelindex = gi.modelindex("models/props/shelftwo/barre4.mdx"); + for (i=0; is.model_parts[6].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelftwo/barre4.mdx", &self->s.model_parts[6]); + + + newent = G_Spawn(); + + if (!newent) + return; + + self->handle2 = newent; + + VectorCopy(self->s.origin, newent->s.origin); + VectorCopy(self->s.angles, newent->s.angles); + + newent->solid = SOLID_NOT; + newent->movetype = MOVETYPE_NONE; + newent->svflags |= SVF_PROP; + + newent->s.skinnum = newent->skin; + memset(&(newent->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + newent->s.num_parts++; + newent->s.model_parts[0].modelindex = gi.modelindex("models/props/shelftwo/barre6.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds("models/props/shelftwo/barre6.mdx", &newent->s.model_parts[0]); + + newent->s.num_parts++; + newent->s.model_parts[1].modelindex = gi.modelindex("models/props/shelftwo/barre8.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds("models/props/shelftwo/barre8.mdx", &newent->s.model_parts[1]); + + newent->s.num_parts++; + newent->s.model_parts[2].modelindex = gi.modelindex("models/props/shelftwo/tank_lg.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds("models/props/shelftwo/tank_lg.mdx", &newent->s.model_parts[2]); + + newent->s.num_parts++; + newent->s.model_parts[3].modelindex = gi.modelindex("models/props/shelftwo/tank_lg3.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds("models/props/shelftwo/tank_lg3.mdx", &newent->s.model_parts[3]); + + newent->s.num_parts++; + newent->s.model_parts[4].modelindex = gi.modelindex("models/props/shelftwo/tank_lg1.mdx"); + for (i=0; is.model_parts[4].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds("models/props/shelftwo/tank_lg1.mdx", &newent->s.model_parts[4]); + + newent->s.num_parts++; + newent->s.model_parts[5].modelindex = gi.modelindex("models/props/shelftwo/tank_lg2.mdx"); + for (i=0; is.model_parts[5].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds("models/props/shelftwo/tank_lg2.mdx", &newent->s.model_parts[5]); + + newent2 = G_Spawn(); + + if (!newent2) + return; + + self->handle = newent2; + + VectorCopy(self->s.origin, newent2->s.origin); + VectorCopy(self->s.angles, newent2->s.angles); + + newent2->solid = SOLID_NOT; + newent2->movetype = MOVETYPE_NONE; + newent2->svflags |= SVF_PROP; + + newent2->s.skinnum = newent2->skin; + memset(&(newent2->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + newent2->s.num_parts++; + newent2->s.model_parts[0].modelindex = gi.modelindex("models/props/shelftwo/tank_sm.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = newent2->s.skinnum; + gi.GetObjectBounds("models/props/shelftwo/tank_sm.mdx", &newent2->s.model_parts[0]); + + newent2->s.num_parts++; + newent2->s.model_parts[1].modelindex = gi.modelindex("models/props/shelftwo/tank_sm1.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = newent2->s.skinnum; + gi.GetObjectBounds("models/props/shelftwo/tank_sm1.mdx", &newent2->s.model_parts[1]); + + newent2->s.num_parts++; + newent2->s.model_parts[2].modelindex = gi.modelindex("models/props/shelftwo/tank_sm2.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = newent2->s.skinnum; + gi.GetObjectBounds("models/props/shelftwo/tank_sm2.mdx", &newent2->s.model_parts[2]); + + newent2->s.num_parts++; + newent2->s.model_parts[3].modelindex = gi.modelindex("models/props/shelftwo/barreltops.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = newent2->s.skinnum; + gi.GetObjectBounds("models/props/shelftwo/barreltops.mdx", &newent2->s.model_parts[3]); + + newent->s.renderfx2 |= RF2_DIR_LIGHTS; + newent2->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + self->die = shelfB_fall_die; + self->takedamage = DAMAGE_YES; + + newent->surfacetype = SURF_WOOD; + newent2->surfacetype = SURF_WOOD; + self->surfacetype = SURF_WOOD; + gi.linkentity (newent); + gi.linkentity (newent2); + gi.linkentity (self); +} + +/*QUAKED props_rat (0 .5 .8) (-12 -12 0) (12 12 10) + +A rat + +"dmg" - rat bite damage (2 default) + +"health" - heath of the rat (10 default) + +*/ + +void rat_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + vec3_t realorigin; + + VectorCopy(self->s.origin, realorigin); + realorigin[2] += 8; + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_GIBS); + gi.WritePosition (realorigin); + gi.WriteDir (vec3_origin); + gi.WriteByte ( 1 ); // number of gibs + gi.WriteByte ( 0 ); // scale of direction to add to velocity + gi.WriteByte ( 0 ); // random offset scale + gi.WriteByte ( 10 ); // random velocity scale + gi.multicast (realorigin, MULTICAST_PVS); + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SPLASH); + gi.WriteByte (50); + gi.WritePosition (realorigin); + gi.WriteDir (self->movedir); + gi.WriteByte (6); + gi.multicast (realorigin, MULTICAST_PVS); + + // If this rat was spawned - tell spawner to make a new one + if (self->targetname) + { + int i; + edict_t *e = NULL; + + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->classname) && (!strcmp(e->classname, "props_rat_spawner")) && + (e->target) && (!strcmp(e->target, self->targetname))) + { + e->fxdensity++; + break; + } + } + } + + G_FreeEdict (self); +} + +int check_rat_hit_player(edict_t *ent) +{ + trace_t tr; + vec3_t endpos, forward; + + AngleVectors (ent->s.angles, forward, NULL, NULL); + VectorMA(ent->s.origin, 32, forward, endpos); + endpos[2] += 32; + tr = gi.trace(ent->s.origin, NULL, NULL, endpos, ent, MASK_SHOT); + + if (tr.fraction < 1) + { + if ((tr.ent) && (tr.ent->client)) + { + vec3_t start, aimdir, dang; + + if (ent->timestamp > level.time) + return false; + + ent->timestamp = level.time + 0.5; + + ent->debugprint = 1; + + //T_Damage (tr.ent, tr.ent, tr.ent, vec3_origin, tr.ent->s.origin, vec3_origin, ent->dmg, ent->dmg, 0, MOD_DOGBITE); + + VectorSubtract (tr.ent->s.origin, ent->s.origin, aimdir); + vectoangles (aimdir, dang); + AngleVectors (dang, forward, NULL, NULL); + VectorMA (ent->s.origin, 16, forward, start); + + fire_rat (ent, start, forward, ent->dmg); + + return true; + } + } + + return false; +} + +void rat_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + if (!other->client) + return; + + if (self->timestamp > level.time) + return; + + self->timestamp = level.time + 0.5; + + self->debugprint = 1; + + T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, self->dmg, self->dmg, 0, MOD_DOGBITE); +} + +void rat_go (edict_t *self) +{ + if (self->option) + { + cvar_t *props; + + props = gi.cvar("props", "1", CVAR_ARCHIVE); + + if (!props->value) + { + self->nextthink = level.time + (FRAMETIME * 10); + return; + } + } + + if (self->debugprint != 1) + M_walkmove (self, self->healspeed, 20 * 5 * FRAMETIME); + + if (self->debugprint == 1) + { + if (self->s.frame < 8 || self->s.frame >= 17) + { + self->s.frame = 8; + } + else + { + self->s.frame++; + + if (self->s.frame == 17) + { + self->debugprint = 0; + } + } + } + else if (!VectorCompare(self->s.origin, self->s.old_origin)) + { + if (self->s.frame <= 3) + { + self->s.frame++; + } + else + { + self->s.frame = 0; + } + + if (self->fxdensity++ >= self->deadticks) + { + self->deadticks = rand()&7; + self->healspeed += (rand()&31)-16; + if (self->healspeed > 360) + self->healspeed = (self->healspeed - 360); + if (self->healspeed < 0) + self->healspeed = (self->healspeed + 360); + self->s.angles[1] = self->healspeed; + } + + if ((rand()&127) == 4) + { + self->debugprint = 1; + } + } + else + { + if (self->s.frame <= 7 && self->s.frame >= 4) + { + self->s.frame++; + } + else + { + self->s.frame = 4; + } + + if (self->durationflag) + self->healspeed += 16; + else + self->healspeed -= 16; + + if (self->healspeed > 360) + self->healspeed = (self->healspeed - 360); + if (self->healspeed < 0) + self->healspeed = (self->healspeed + 360); + self->s.angles[1] = self->healspeed; + + M_walkmove (self, self->healspeed, 20 * 5 * FRAMETIME); + + if (!VectorCompare(self->s.origin, self->s.old_origin)) + { + self->deadticks = (rand()&3)+6; + } + else + { + if (check_rat_hit_player(self)) + { + self->debugprint = 1; + } + } + } + + self->nextthink = level.time + FRAMETIME; +} + + +void SP_props_rat (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_STEP; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -8, -8, 0); + VectorSet (self->maxs, 8, 8, 10); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/actors/rat/rat.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/actors/rat/rat.mdx", &self->s.model_parts[0]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + // Note to Joseph: you can use AI_ADJUSTPITCH to keep them angled correctly on slopes + + self->monsterprop = 1; + self->deadticks = 1; + self->fxdensity = 0; + self->healspeed = rand()&360; + self->debugprint = 0; + // Born left or right handed + self->durationflag = rand()&1; + + self->die = rat_die; + self->touch = rat_touch; + self->takedamage = DAMAGE_YES; + self->cast_info.aiflags = AI_NOSTEP; + + if (!self->dmg) + self->dmg = 2; + + if (!self->health) + self->health = 10; + + self->think = rat_go; + self->nextthink = level.time + (FRAMETIME * 2); + + self->surfacetype = SURF_FABRIC; + gi.linkentity (self); +} + +/*QUAKED props_rat_trigger (0 .5 .8) (-12 -12 0) (12 12 10) + +A rat that is spawned when triggered + +"dmg" - rat bite damage (2 default) + +"health" - heath of the rat (10 default) + +"targetname" - target ID +*/ + +void rat_trigger_use (edict_t *self, edict_t *other, edict_t *activator) +{ + self->svflags &= ~SVF_NOCLIENT; + self->use = NULL; + self->targetname = NULL; + self->solid = SOLID_BBOX; + self->think = rat_go; + self->nextthink = level.time + FRAMETIME; +} + +void SP_props_rat_trigger (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->movetype = MOVETYPE_STEP; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -8, -8, 0); + VectorSet (self->maxs, 8, 8, 10); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/actors/rat/rat.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/actors/rat/rat.mdx", &self->s.model_parts[0]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + self->monsterprop = 1; + self->deadticks = 1; + self->fxdensity = 0; + self->healspeed = rand()&360; + self->debugprint = 0; + // Born left or right handed + self->durationflag = rand()&1; + + self->die = rat_die; + self->touch = rat_touch; + self->takedamage = DAMAGE_YES; + self->cast_info.aiflags = AI_NOSTEP; + + if (!self->dmg) + self->dmg = 2; + + if (!self->health) + self->health = 10; + + if (self->targetname) + { + self->solid = SOLID_NOT; + self->use = rat_trigger_use; + self->svflags |= SVF_NOCLIENT; + } + else + { + gi.dprintf ("props_rat_trigger without a targetname at %s\n", vtos(self->absmin)); + G_FreeEdict (self); + return; + } + + self->surfacetype = SURF_FABRIC; + gi.linkentity (self); +} + +/*QUAKED props_rat_spawner (0 .5 .8) (-16 -16 -16) (16 16 16) + +Base rat spawner + + props_rat_spawner_node determine possible spawn point + + "dmg" - rat bite damage (2 default) + + "health" - heath of the rat (10 default) + + "deadticks" - total number of rats in level from spawner at a time (default 5) + + "target" - ID string for spawner +*/ + +void rat_spawn_think (edict_t *self) +{ + if (self->fxdensity) + { + int i, tnode, node; + edict_t *e = NULL; + + if (self->option) + { + cvar_t *props; + + props = gi.cvar("props", "1", CVAR_ARCHIVE); + + if (!props->value) + { + self->nextthink = level.time + FRAMETIME * 50; + return; + } + } + + tnode = rand()%self->firetype; + node = 0; + + // Find a spawner origin + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->classname) && (!strcmp(e->classname, "props_rat_spawner_node")) && + (e->targetname) && (self->target) && (!strcmp(e->targetname, self->target)) + // Ridah, added this so they don't spawn if you can see them + && (!gi.inPVS(g_edicts[1].s.origin, e->s.origin))) + { + if (node == tnode) + { + edict_t *rat = NULL; + + rat = G_Spawn(); + + if (!rat) + return; + + // Spawn new rat + VectorCopy(e->s.origin, rat->s.origin); + rat->s.origin[2] -= 6; + rat->targetname = self->target; + rat->dmg = self->dmg; + rat->health = self->health; + rat->option = self->option; + SP_props_rat(rat); + self->fxdensity--; + self->nextthink = level.time + FRAMETIME * 50; + return; + } + + node++; + } + } + } + + self->nextthink = level.time + FRAMETIME * 50; // Ridah, increased this +} + +void rat_spawn_first_think (edict_t *self) +{ + int i; + edict_t *e = NULL; + + if (self->target) + { + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->classname) && (!strcmp(e->classname, "props_rat_spawner_node")) && + (e->targetname) && (!strcmp(e->targetname, self->target))) + { + self->firetype++; + } + } + + if (self->firetype) + { + self->think = rat_spawn_think; + self->nextthink = level.time + FRAMETIME; + } + } + else + { + gi.dprintf ("props_rat_spawner without a target at %s\n", vtos(self->absmin)); + } +} + +void SP_props_rat_spawner (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + if (!self->deadticks) + self->deadticks = 5; + + self->fxdensity = self->deadticks; + + if (!self->dmg) + self->dmg = 2; + + if (!self->health) + self->health = 10; + + self->firetype = 0; + + self->think = rat_spawn_first_think; + self->nextthink = level.time + (FRAMETIME * 3); + + gi.linkentity (self); +} +// END JOSEPH + +/*QUAKED props_rat_spawner_node (0 .5 .8) (-16 -16 -16) (16 16 16) + + Possible rat spawn point from props_rat_spawner + + "targetname" - ID string for spawner +*/ + +void SP_props_rat_spawner_node (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + gi.linkentity (self); +} + +/*QUAKED props_blimp (0 .5 .8) (-140 -40 -58) (140 40 58) + +A path corner blimp - trigger to make visable and start moving + +"speed" speed of the blimp (20 default) +"target" target path corner ID + +model="models\props\blimp\tris.md2" +*/ + +void train_use (edict_t *self, edict_t *other, edict_t *activator); +void func_train_find (edict_t *self); + +void blimp_use (edict_t *self, edict_t *other, edict_t *activator) +{ + self->svflags &= ~SVF_NOCLIENT; + self->use = train_use; + train_use (self, other, activator); +} + +void SP_props_blimp (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + if (!self->target) + { + gi.dprintf ("props_blimp without a target at %s\n", vtos(self->absmin)); + G_FreeEdict (self); + return; + } + + if (!self->speed) + self->speed = 20; + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_FLY; + self->svflags |= SVF_PROP; + + self->model = "models/props/blimp/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + + self->s.renderfx2 |= RF2_NOSHADOW; + + self->think = func_train_find; + self->nextthink = level.time + FRAMETIME; + self->use = blimp_use; + self->svflags |= SVF_NOCLIENT; + self->moveinfo.accel = self->moveinfo.decel = self->moveinfo.speed = self->speed; + + self->surfacetype = SURF_FABRIC; + gi.linkentity (self); +} + +/*QUAKED props_roof_vent (0 .5 .8) (-32 -36 -48) (32 36 48) + +A moving roof vent + +"health" - hit points (25 default) + +model="models\props\roof_vent\tris.md2" +*/ + +void vent_explode (edict_t *self) +{ + vec3_t org; + float spd; + vec3_t save; + + VectorCopy (self->s.origin, save); + VectorMA (self->absmin, 0.5, self->size, self->s.origin); + + // a few big chunks + spd = 1.5 * (float)self->dmg / 200.0; + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + + // bottom corners + spd = 1.75 * (float)self->dmg / 200.0; + VectorCopy (self->absmin, org); + ThrowDebris (self, "models/props/metal/metal2.md2", spd, org); + VectorCopy (self->absmin, org); + org[0] += self->size[0]; + ThrowDebris (self, "models/props/metal/metal3.md2", spd, org); + VectorCopy (self->absmin, org); + org[1] += self->size[1]; + ThrowDebris (self, "models/props/metal/metal4.md2", spd, org); + VectorCopy (self->absmin, org); + org[0] += self->size[0]; + org[1] += self->size[1]; + ThrowDebris (self, "models/props/metal/metal5.md2", spd, org); + + // a bunch of little chunks + spd = 2 * self->dmg / 200; + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + org[0] = self->s.origin[0] + crandom() * self->size[0]; + org[1] = self->s.origin[1] + crandom() * self->size[1]; + org[2] = self->s.origin[2] + crandom() * self->size[2]; + ThrowDebris (self, "models/props/metal/metal1.md2", spd, org); + + VectorCopy (save, self->s.origin); +} + +void vent_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + self->s.frame = 0; + self->takedamage = DAMAGE_NO; + self->nextthink = level.time + FRAMETIME; + self->think = vent_explode; + self->activator = attacker; + + self->model = "models/props/ventbroke/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); +} + +void think_roof_vent (edict_t *self) +{ + if (self->s.frame < 11) + { + self->s.frame++; + } + else + { + self->s.frame = 0; + } + + self->nextthink = level.time + FRAMETIME; +} + +void SP_props_roof_vent (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + self->model = "models/props/roof_vent/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -32, -36, -48); + VectorSet (self->maxs, 32, 36, 48); + + self->surfacetype = SURF_METAL_L; + self->s.renderfx2 |= RF2_NOSHADOW; + gi.linkentity (self); + + self->die = vent_die; + self->takedamage = DAMAGE_YES; + + if (!self->health) + self->health = 25; + + self->nextthink = level.time + FRAMETIME *2; + self->think = think_roof_vent; +} + +/*QUAKED props2_truck_die_TEST (0 .5 .8) (-61 -148 -78) (61 148 78) + +First and last frames of the truck + +model="models\props\trucktest\1st.mdx;models\props\trucktest\last.mdx" +*/ + +/*QUAKED props2_truck_die (0 .5 .8) (-61 -148 -78) (61 148 78) + +A truck that becomes toast + +model="models\props\truck\box.mdx;models\props\truck\tires.mdx;models\props\truck\wood.mdx;models\props\truck\c4.mdx;models\props\truck\m26y.mdx;models\props\truck\mn3.mdx;models\props\truck\mp1a.mdx;models\props\truck\v1a.mdx;models\props\truck\v1b.mdx;models\props\truck\v1c.mdx;" +*/ + +void truck_die_final (edict_t *self) +{ + if (self->s.frame < 59) + { + self->svflags &= ~SVF_NOCLIENT; + self->handle2->svflags &= ~SVF_NOCLIENT; + + self->nextthink = level.time + 0.1; + + self->s.frame++; + self->handle2->s.frame++; + } + + //self->s.origin[2] += 5; + //gi.dprintf ("z: %5.3f\n", self->s.origin[2]); +} + +void truck_die_use (edict_t *self, edict_t *other, edict_t *activator) +{ + self->use = NULL; + self->nextthink = level.time + FRAMETIME; + self->think = truck_die_final; +} + +void SP_props2_truck_die (edict_t *self) +{ + int i; + edict_t *newent = NULL; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->s.angles[1] = 270; + + //VectorSet (self->mins, -148, -61, -78); + //VectorSet (self->maxs, 148, 61, 78); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/truck/box.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/truck/box.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/truck/c4.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/truck/c4.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/truck/m26y.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/truck/m26y.mdx", &self->s.model_parts[2]); + + self->s.num_parts++; + self->s.model_parts[3].modelindex = gi.modelindex("models/props/truck/mn3.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/truck/mn3.mdx", &self->s.model_parts[3]); + + self->s.num_parts++; + self->s.model_parts[4].modelindex = gi.modelindex("models/props/truck/mp1a.mdx"); + for (i=0; is.model_parts[4].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/truck/mp1a.mdx", &self->s.model_parts[4]); + + self->s.num_parts++; + self->s.model_parts[5].modelindex = gi.modelindex("models/props/truck/tires.mdx"); + for (i=0; is.model_parts[5].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/truck/tires.mdx", &self->s.model_parts[5]); + + self->s.num_parts++; + self->s.model_parts[6].modelindex = gi.modelindex("models/props/truck/v1a.mdx"); + for (i=0; is.model_parts[6].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/truck/v1a.mdx", &self->s.model_parts[6]); + + + newent = G_Spawn(); + + if (!newent) + return; + + self->handle2 = newent; + + VectorCopy(self->s.origin, newent->s.origin); + VectorCopy(self->s.angles, newent->s.angles); + + newent->solid = SOLID_NOT; + newent->movetype = MOVETYPE_NONE; + newent->svflags |= SVF_PROP; + + newent->s.skinnum = newent->skin; + memset(&(newent->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + newent->s.num_parts++; + newent->s.model_parts[0].modelindex = gi.modelindex("models/props/truck/v1b.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds("models/props/truck/v1b.mdx", &newent->s.model_parts[0]); + + newent->s.num_parts++; + newent->s.model_parts[1].modelindex = gi.modelindex("models/props/truck/v1c.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds("models/props/truck/v1c.mdx", &newent->s.model_parts[1]); + + newent->s.num_parts++; + newent->s.model_parts[2].modelindex = gi.modelindex("models/props/truck/wood.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds("models/props/truck/wood.mdx", &newent->s.model_parts[2]); + + newent->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + self->use = truck_die_use; + + self->s.renderfx2 |= RF2_NOSHADOW; + newent->s.renderfx2 |= RF2_NOSHADOW; + + self->svflags |= SVF_NOCLIENT; + newent->svflags |= SVF_NOCLIENT; + + gi.linkentity (newent); + gi.linkentity (self); +} + +/*QUAKED props_cola_machine (0 .5 .8) (-16 -24 -32) (24 32 32) + +A cola machine + +The bounding box can be rotated in angles of 90 deg and block properly + +model="models\props\vending_mach\tris.md2" +*/ + +void SP_props_cola_machine (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + self->model = "models/props/vending_mach/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + + if ((self->s.angles[1] == 90) || self->s.angles[1] == 270) + { + VectorSet (self->mins, -24, -16, -32); + VectorSet (self->maxs, 24, 16, 32); + } + else + { + VectorSet (self->mins, -16, -24, -32); + VectorSet (self->maxs, 16, 24, 32); + } + + self->s.renderfx2 |= RF2_NOSHADOW; + self->surfacetype = SURF_METAL; + gi.linkentity (self); +} + +/*QUAKED props_cig_machine (0 .5 .8) (-16 -24 -32) (16 24 32) + +A cigarette machine + +The bounding box can be rotated in angles of 90 deg and block properly + +model="models\props\cigmachine\tris.md2" +*/ + +void SP_props_cig_machine (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + self->model = "models/props/cigmachine/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + + if ((self->s.angles[1] == 90) || self->s.angles[1] == 270) + { + VectorSet (self->mins, -24, -16, -32); + VectorSet (self->maxs, 24, 16, 32); + } + else + { + VectorSet (self->mins, -16, -24, -32); + VectorSet (self->maxs, 16, 24, 32); + } + + self->s.renderfx2 |= RF2_NOSHADOW; + self->surfacetype = SURF_METAL_L; + gi.linkentity (self); +} + +/*QUAKED props2_barrels_fallA_TEST (0 .5 .8) (-69 -33 -49) (69 33 49) + +First and last frame of barrels + +model="models\props\barl1test\1st.mdx;models\props\barl1test\last.mdx" +*/ + +/*QUAKED props2_barrels_fallA (0 .5 .8) (-69 -33 -49) (69 33 49) + +A set of barrels that you can trigger to fall + +model="models\props\barl1\barrels.mdx;models\props\barl1\tops.mdx" +*/ +void barrels_fallA (edict_t *self) +{ + if (self->s.frame < 28) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + + if (self->s.frame == 1) + { + self->svflags &= ~SVF_NOCLIENT; + } + } +} + +void barrelsfallA_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = barrels_fallA; + ent->nextthink = level.time + FRAMETIME; + //gi.sound (ent, CHAN_AUTO, gi.soundindex ("world/brickfall.wav"), 1, ATTN_NORM, 0); +} + +void SP_props2_barrels_fallA (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -69, -33, -49); + VectorSet (self->maxs, 69, 33, 49); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/barl1/barrels.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/barl1/barrels.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/barl1/tops.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/barl1/tops.mdx", &self->s.model_parts[1]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = barrelsfallA_trigger; + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +/*QUAKED props2_barrels_fallB_TEST (0 .5 .8) (-69 -33 -49) (69 33 49) + +First and last frame of barrels + +model="models\props\barl2test\1st.mdx;models\props\barl2test\last.mdx" +*/ + +/*QUAKED props2_barrels_fallB (0 .5 .8) (-33 -81 -49) (33 81 49) + +Another set of barrels that you can trigger to fall + +model="models\props\barl2\barrels2.mdx;models\props\barl2\tops2.mdx" +*/ +void barrels_fallB (edict_t *self) +{ + if (self->s.frame < 38) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + + if (self->s.frame == 1) + { + self->svflags &= ~SVF_NOCLIENT; + } + } +} + +void barrelsfallB_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = barrels_fallB; + ent->nextthink = level.time + FRAMETIME; + //gi.sound (ent, CHAN_AUTO, gi.soundindex ("world/brickfall.wav"), 1, ATTN_NORM, 0); +} + +void SP_props2_barrels_fallB (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -33, -81, -49); + VectorSet (self->maxs, 33, 81, 49); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/barl2/barrels2.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/barl2/barrels2.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/barl2/tops2.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/barl2/tops2.mdx", &self->s.model_parts[1]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = barrelsfallB_trigger; + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +/*QUAKED props2_clubcouch (0 .5 .8) (-32 -64 -24) (32 64 24) + +A couch + +The bounding box can be rotated in angles of 90 deg and block properly + +model="models\props\clubcouch\" +*/ + +void SP_props2_clubcouch (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + self->model = "models/props/clubcouch/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + + if ((self->s.angles[1] == 90) || self->s.angles[1] == 270) + { + VectorSet (self->mins, -64, -32, -24); + VectorSet (self->maxs, 64, 32, 24); + } + else + { + VectorSet (self->mins, -32, -64, -24); + VectorSet (self->maxs, 32, 64, 24); + } + + self->surfacetype = SURF_FABRIC; + gi.linkentity (self); +} + +/*QUAKED props2_clubchair (0 .5 .8) (-32 -32 -24) (32 32 24) + +A pushable chair + +model="models\props\clubchair\" +*/ + +void SP_props2_clubchair (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_STEP; + self->svflags |= SVF_PROP; + + self->pullable = 1; + self->nokickbackflag = 1; + + self->model = "models/props/clubchair/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -32, -32, -24); + VectorSet (self->maxs, 32, 32, 24); + + if (!self->mass) + self->mass = 400; + + if (!self->health) + self->health = 25; + + //self->die = trashcanA_delay; + //self->takedamage = DAMAGE_YES; + + self->cast_info.aiflags = AI_NOSTEP; + self->touch = chair_touch; + + self->think = M_droptofloor; + self->nextthink = level.time + 2 * FRAMETIME; + + self->surfacetype = SURF_FABRIC; + gi.linkentity (self); +} + +/*QUAKED props2_vaseA (0 .5 .8) (-16 -16 -24) (16 16 24) + +A vase + +model="models\props\vase1\" +*/ + +void SP_props2_vaseA (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + self->model = "models/props/vase1/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 24); + + if (!self->health) + self->health = 25; + + self->die = metal_die; + self->takedamage = DAMAGE_YES; + + self->surfacetype = SURF_TILE; + gi.linkentity (self); +} + +/*QUAKED props2_vaseB (0 .5 .8) (-16 -16 -24) (16 16 24) + +A vase + +model="models\props\vase2\" +*/ + +void SP_props2_vaseB (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + self->model = "models/props/vase2/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -16, -16, -24); + VectorSet (self->maxs, 16, 16, 24); + + if (!self->health) + self->health = 25; + + self->die = metal_die; + self->takedamage = DAMAGE_YES; + + self->surfacetype = SURF_TILE; + gi.linkentity (self); +} + +/*QUAKED props2_chair_conf (0 .5 .8) (-24 -24 -32) (24 24 32) + +An pushable chair + +model="models\props\confchair\" +*/ + +void SP_props2_chair_conf (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_STEP; + self->svflags |= SVF_PROP; + + self->pullable = 1; + self->nokickbackflag = 1; + + self->model = "models/props/confchair/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -24, -24, -32); + VectorSet (self->maxs, 24, 24, 32); + + if (!self->mass) + self->mass = 400; + + if (!self->health) + self->health = 25; + + //self->die = trashcanA_delay; + //self->takedamage = DAMAGE_YES; + + self->cast_info.aiflags = AI_NOSTEP; + self->touch = chair_touch; + + self->think = M_droptofloor; + self->nextthink = level.time + 2 * FRAMETIME; + + self->surfacetype = SURF_FABRIC; + gi.linkentity (self); +} + +/*QUAKED props2_shelf_metal_A_fall (0 .5 .8) (-60 -20 -56) (60 20 66) + +A falling metal shelf + +The bounding box can be rotated in angles of 90 deg and block properly + +model="models\props\shelfmetal1\shelf1.mdx;models\props\shelfmetal1\shelf2.mdx;models/props/shelfmetal1/barreltops.mdx;models/props/shelfmetal1/tanktops.mdx" +*/ + +void shelfA_fall_final_mb (edict_t *self) +{ + if (self->s.frame < 62) + { + self->solid = SOLID_NOT; + + self->nextthink = level.time + 0.1; + + self->s.frame++; + self->handle->s.frame++; + self->handle2->s.frame++; + } +} + +void shelfA_fall_die_mb (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + self->takedamage = DAMAGE_NO; + self->nextthink = level.time + FRAMETIME; + self->think = shelfA_fall_final_mb; +} + +void SP_props2_shelf_metal_A_fall (edict_t *self) +{ + int i; + edict_t *newent = NULL; + edict_t *newent2 = NULL; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + if ((self->s.angles[1] == 90) || self->s.angles[1] == 270) + { + VectorSet (self->mins, -20, -60, -56); + VectorSet (self->maxs, 20, 60, 66); + } + else + { + VectorSet (self->mins, -60, -20, -56); + VectorSet (self->maxs, 60, 20, 66); + } + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/shelfmetal1/shelf1.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal1/shelf1.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/shelfmetal1/tanktops.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal1/tanktops.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/shelfmetal1/shelf2.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal1/shelf2.mdx", &self->s.model_parts[2]); + + self->s.num_parts++; + self->s.model_parts[3].modelindex = gi.modelindex("models/props/shelfmetal1/barre1.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal1/barre1.mdx", &self->s.model_parts[3]); + + self->s.num_parts++; + self->s.model_parts[4].modelindex = gi.modelindex("models/props/shelfmetal1/barre2.mdx"); + for (i=0; is.model_parts[4].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal1/barre2.mdx", &self->s.model_parts[4]); + + self->s.num_parts++; + self->s.model_parts[5].modelindex = gi.modelindex("models/props/shelfmetal1/barre3.mdx"); + for (i=0; is.model_parts[5].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal1/barre3.mdx", &self->s.model_parts[5]); + + self->s.num_parts++; + self->s.model_parts[6].modelindex = gi.modelindex("models/props/shelfmetal1/barre4.mdx"); + for (i=0; is.model_parts[6].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal1/barre4.mdx", &self->s.model_parts[6]); + + + newent = G_Spawn(); + + if (!newent) + return; + + self->handle2 = newent; + + VectorCopy(self->s.origin, newent->s.origin); + VectorCopy(self->s.angles, newent->s.angles); + + newent->solid = SOLID_NOT; + newent->movetype = MOVETYPE_NONE; + newent->svflags |= SVF_PROP; + + newent->s.skinnum = newent->skin; + memset(&(newent->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + //newent->s.num_parts++; + //newent->s.model_parts[0].modelindex = gi.modelindex("models/props/shelfmetal1/cartboard1.mdx"); + //for (i=0; is.model_parts[0].skinnum[i] = newent->s.skinnum; + //gi.GetObjectBounds("models/props/shelfmetal1/cartboard1.mdx", &newent->s.model_parts[0]); + + //newent->s.num_parts++; + //newent->s.model_parts[1].modelindex = gi.modelindex("models/props/shelfmetal1/cartboard2.mdx"); + //for (i=0; is.model_parts[1].skinnum[i] = newent->s.skinnum; + //gi.GetObjectBounds("models/props/shelfmetal1/cartboard2.mdx", &newent->s.model_parts[1]); + + //newent->s.num_parts++; + //newent->s.model_parts[2].modelindex = gi.modelindex("models/props/shelfmetal1/tank_lg.mdx"); + //for (i=0; is.model_parts[2].skinnum[i] = newent->s.skinnum; + //gi.GetObjectBounds("models/props/shelfmetal1/tank_lg.mdx", &newent->s.model_parts[2]); + + newent->s.num_parts++; + newent->s.model_parts[3].modelindex = gi.modelindex("models/props/shelfmetal1/tank_lg3.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal1/tank_lg3.mdx", &newent->s.model_parts[3]); + + newent->s.num_parts++; + newent->s.model_parts[4].modelindex = gi.modelindex("models/props/shelfmetal1/tank_lg1.mdx"); + for (i=0; is.model_parts[4].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal1/tank_lg1.mdx", &newent->s.model_parts[4]); + + newent->s.num_parts++; + newent->s.model_parts[5].modelindex = gi.modelindex("models/props/shelfmetal1/tank_lg2.mdx"); + for (i=0; is.model_parts[5].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal1/tank_lg2.mdx", &newent->s.model_parts[5]); + + newent2 = G_Spawn(); + + if (!newent2) + return; + + self->handle = newent2; + + VectorCopy(self->s.origin, newent2->s.origin); + VectorCopy(self->s.angles, newent2->s.angles); + + newent2->solid = SOLID_NOT; + newent2->movetype = MOVETYPE_NONE; + newent2->svflags |= SVF_PROP; + + newent2->s.skinnum = newent2->skin; + memset(&(newent2->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + newent2->s.num_parts++; + newent2->s.model_parts[0].modelindex = gi.modelindex("models/props/shelfmetal1/tank_sm.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = newent2->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal1/tank_sm.mdx", &newent2->s.model_parts[0]); + + newent2->s.num_parts++; + newent2->s.model_parts[1].modelindex = gi.modelindex("models/props/shelfmetal1/tank_sm1.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = newent2->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal1/tank_sm1.mdx", &newent2->s.model_parts[1]); + + newent2->s.num_parts++; + newent2->s.model_parts[2].modelindex = gi.modelindex("models/props/shelfmetal1/tank_sm2.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = newent2->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal1/tank_sm2.mdx", &newent2->s.model_parts[2]); + + newent2->s.num_parts++; + newent2->s.model_parts[3].modelindex = gi.modelindex("models/props/shelfmetal1/barreltops.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = newent2->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal1/barreltops.mdx", &newent2->s.model_parts[3]); + + newent->s.renderfx2 |= RF2_DIR_LIGHTS; + newent2->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + self->die = shelfA_fall_die_mb; + self->takedamage = DAMAGE_YES; + + newent->surfacetype = SURF_METAL_L; + newent2->surfacetype = SURF_METAL_L; + self->surfacetype = SURF_METAL_L; + gi.linkentity (newent); + gi.linkentity (newent2); + gi.linkentity (self); +} + +/*QUAKED props2_shelf_metal_B_fall (0 .5 .8) (-60 -20 -56) (60 20 66) + +Another falling metal shelf + +The bounding box can be rotated in angles of 90 deg and block properly + +model="models\props\shelfmetal2\shelf1.mdx;models\props\shelfmetal2\shelf2.mdx;models/props/shelfmetal2/barreltops.mdx;models/props/shelfmetal2/tanktops.mdx" +*/ + +void shelfB_fall_final_mb (edict_t *self) +{ + if (self->s.frame < 76) + { + self->solid = SOLID_NOT; + self->nextthink = level.time + 0.1; + + self->s.frame++; + self->handle->s.frame++; + self->handle2->s.frame++; + } +} + +void shelfB_fall_die_mb (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + self->takedamage = DAMAGE_NO; + self->nextthink = level.time + FRAMETIME; + self->think = shelfB_fall_final_mb; +} + +void SP_props2_shelf_metal_B_fall (edict_t *self) +{ + int i; + edict_t *newent = NULL; + edict_t *newent2 = NULL; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + if ((self->s.angles[1] == 90) || self->s.angles[1] == 270) + { + VectorSet (self->mins, -20, -60, -56); + VectorSet (self->maxs, 20, 60, 66); + } + else + { + VectorSet (self->mins, -60, -20, -56); + VectorSet (self->maxs, 60, 20, 66); + } + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/shelfmetal2/shelf1.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal2/shelf1.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/shelfmetal2/tanktops.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal2/tanktops.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/shelfmetal2/shelf2.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal2/shelf2.mdx", &self->s.model_parts[2]); + + self->s.num_parts++; + self->s.model_parts[3].modelindex = gi.modelindex("models/props/shelfmetal2/barre1.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal2/barre1.mdx", &self->s.model_parts[3]); + + self->s.num_parts++; + self->s.model_parts[4].modelindex = gi.modelindex("models/props/shelfmetal2/barre2.mdx"); + for (i=0; is.model_parts[4].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal2/barre2.mdx", &self->s.model_parts[4]); + + self->s.num_parts++; + self->s.model_parts[5].modelindex = gi.modelindex("models/props/shelfmetal2/barre3.mdx"); + for (i=0; is.model_parts[5].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal2/barre3.mdx", &self->s.model_parts[5]); + + self->s.num_parts++; + self->s.model_parts[6].modelindex = gi.modelindex("models/props/shelfmetal2/barre4.mdx"); + for (i=0; is.model_parts[6].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal2/barre4.mdx", &self->s.model_parts[6]); + + + newent = G_Spawn(); + + if (!newent) + return; + + self->handle2 = newent; + + VectorCopy(self->s.origin, newent->s.origin); + VectorCopy(self->s.angles, newent->s.angles); + + newent->solid = SOLID_NOT; + newent->movetype = MOVETYPE_NONE; + newent->svflags |= SVF_PROP; + + newent->s.skinnum = newent->skin; + memset(&(newent->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + newent->s.num_parts++; + newent->s.model_parts[0].modelindex = gi.modelindex("models/props/shelfmetal2/cartboard1.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal2/cartboard1.mdx", &newent->s.model_parts[0]); + + newent->s.num_parts++; + newent->s.model_parts[1].modelindex = gi.modelindex("models/props/shelfmetal2/cartboard2.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal2/cartboard2.mdx", &newent->s.model_parts[1]); + + //newent->s.num_parts++; + //newent->s.model_parts[2].modelindex = gi.modelindex("models/props/shelfmetal2/tank_lg.mdx"); + //for (i=0; is.model_parts[2].skinnum[i] = newent->s.skinnum; + //gi.GetObjectBounds("models/props/shelfmetal2/tank_lg.mdx", &newent->s.model_parts[2]); + + //newent->s.num_parts++; + //newent->s.model_parts[3].modelindex = gi.modelindex("models/props/shelfmetal2/tank_lg3.mdx"); + //for (i=0; is.model_parts[3].skinnum[i] = newent->s.skinnum; + //gi.GetObjectBounds("models/props/shelfmetal2/tank_lg3.mdx", &newent->s.model_parts[3]); + + newent->s.num_parts++; + newent->s.model_parts[4].modelindex = gi.modelindex("models/props/shelfmetal2/tank_lg1.mdx"); + for (i=0; is.model_parts[4].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal2/tank_lg1.mdx", &newent->s.model_parts[4]); + + newent->s.num_parts++; + newent->s.model_parts[5].modelindex = gi.modelindex("models/props/shelfmetal2/tank_lg2.mdx"); + for (i=0; is.model_parts[5].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal2/tank_lg2.mdx", &newent->s.model_parts[5]); + + newent2 = G_Spawn(); + + if (!newent2) + return; + + self->handle = newent2; + + VectorCopy(self->s.origin, newent2->s.origin); + VectorCopy(self->s.angles, newent2->s.angles); + + newent2->solid = SOLID_NOT; + newent2->movetype = MOVETYPE_NONE; + newent2->svflags |= SVF_PROP; + + newent2->s.skinnum = newent2->skin; + memset(&(newent2->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + newent2->s.num_parts++; + newent2->s.model_parts[0].modelindex = gi.modelindex("models/props/shelfmetal2/tank_sm.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = newent2->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal2/tank_sm.mdx", &newent2->s.model_parts[0]); + + newent2->s.num_parts++; + newent2->s.model_parts[1].modelindex = gi.modelindex("models/props/shelfmetal2/tank_sm1.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = newent2->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal2/tank_sm1.mdx", &newent2->s.model_parts[1]); + + newent2->s.num_parts++; + newent2->s.model_parts[2].modelindex = gi.modelindex("models/props/shelfmetal2/tank_sm2.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = newent2->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal2/tank_sm2.mdx", &newent2->s.model_parts[2]); + + newent2->s.num_parts++; + newent2->s.model_parts[3].modelindex = gi.modelindex("models/props/shelfmetal2/barreltops.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = newent2->s.skinnum; + gi.GetObjectBounds("models/props/shelfmetal2/barreltops.mdx", &newent2->s.model_parts[3]); + + newent->s.renderfx2 |= RF2_DIR_LIGHTS; + newent2->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + self->die = shelfB_fall_die_mb; + self->takedamage = DAMAGE_YES; + + newent->surfacetype = SURF_METAL_L; + newent2->surfacetype = SURF_METAL_L; + self->surfacetype = SURF_METAL_L; + gi.linkentity (newent); + gi.linkentity (newent2); + gi.linkentity (self); +} + +/*QUAKED props2_deadguy (0 .5 .8) (-40 -27 -9) (40 27 9) + +An dead guy body you can shoot + +The bounding box can be rotated in angles of 90 deg and block properly + +"health" - pre-gib hit points for the dead body (50 default) + +model="models\props\deadguy\body.mdx;models\props\deadguy\head.mdx;models\props\deadguy\legs.mdx" +*/ + +void body_gib (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + int i; + vec3_t realorigin; + + VectorCopy(self->s.origin, realorigin); + realorigin[2] += 8; + + for (i = 0; i < 20; i++) + { + realorigin[0] = (self->s.origin[0] + ((rand()&63) - 32)); + realorigin[1] = (self->s.origin[1] + ((rand()&63) - 31)); + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_GIBS); + gi.WritePosition (realorigin); + gi.WriteDir (vec3_origin); + gi.WriteByte ( 2 ); // number of gibs + gi.WriteByte ( 0 ); // scale of direction to add to velocity + gi.WriteByte ( 0 ); // random offset scale + gi.WriteByte ( 10 ); // random velocity scale + gi.multicast (realorigin, MULTICAST_PVS); + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SPLASH); + gi.WriteByte (4); + gi.WritePosition (realorigin); + gi.WriteDir (self->movedir); + gi.WriteByte (6); + gi.multicast (realorigin, MULTICAST_PVS); + } + + if (self->item) + { + Drop_Item (self, self->item); + self->item = NULL; + } + + G_FreeEdict (self); +} + +void SP_props2_deadguy (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + self->svflags |= SVF_DEADMONSTER; + + if ((self->s.angles[1] == 90) || self->s.angles[1] == 270) + { + VectorSet (self->mins, -27, -40, -9); + VectorSet (self->maxs, 27, 40, 9); + } + else + { + VectorSet (self->mins, -40, -27, -9); + VectorSet (self->maxs, 40, 27, 9); + } + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/deadguy/body.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/deadguy/body.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/deadguy/head.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/deadguy/body.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/deadguy/legs.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/deadguy/legs.mdx", &self->s.model_parts[2]); + + self->die = body_gib; + self->takedamage = DAMAGE_YES; + + if (!self->health) + self->health = 50; + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + self->surfacetype = SURF_FABRIC; + + if (st.item) + { + self->item = FindItemByClassname (st.item); + if (!self->item) + gi.dprintf("%s at %s has bad item: %s\n", self->classname, vtos(self->s.origin), st.item); + } + + gi.linkentity (self); +} + + +/*QUAKED props2_deadguy_underwater (0 .5 .8) (-17 -50 0) (13 30 88) + +An underwater dead guy in cement body you can shoot + +The bounding box can be rotated in angles of 90 deg and block properly + +"health" - pre-gib hit points for the dead body (50 default) + +model="models\props\cementguy\body.mdx;models\props\cementguy\head.mdx;models\props\cementguy\legs.mdx" +*/ + +void think_deadguy_underwater (edict_t *self) +{ + if (self->s.frame < 39) + { + self->s.frame++; + } + else + { + self->s.frame = 0; + } + + self->nextthink = level.time + FRAMETIME; +} + +void SP_props2_deadguy_underwater (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + if ((self->s.angles[1] == 90) || self->s.angles[1] == 270) + { + VectorSet (self->mins, -64, -32, 0); + VectorSet (self->maxs, 64, 32, 88); + } + else + { + VectorSet (self->mins, -32, -64, -0); + VectorSet (self->maxs, 32, 64, 88); + } + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/cementguy/body.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/cementguy/body.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/cementguy/head.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/cementguy/head.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/cementguy/legs.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/cementguy/legs.mdx", &self->s.model_parts[2]); + + self->die = body_gib; + self->takedamage = DAMAGE_YES; + + if (!self->health) + self->health = 50; + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + self->surfacetype = SURF_FABRIC; + + if (st.item) + { + self->item = FindItemByClassname (st.item); + if (!self->item) + gi.dprintf("%s at %s has bad item: %s\n", self->classname, vtos(self->s.origin), st.item); + } + + gi.linkentity (self); + + self->s.renderfx2 |= RF2_NOSHADOW; + self->think = think_deadguy_underwater; + self->nextthink = level.time + (FRAMETIME*3); +} + +/*QUAKED props2_deadgal_headless (0 .5 .8) (-32 -26 -7) (32 26 7) + +A female dead body you can shoot that has no head + +The bounding box can be rotated in angles of 90 deg and block properly + +"health" - pre-gib hit points for the dead body (50 default) + +model="models\props\dead_fem\body.mdx;models\props\dead_fem\legs.mdx" +*/ + +void SP_props2_deadgal_headless (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + self->svflags |= SVF_DEADMONSTER; + + if ((self->s.angles[1] == 90) || self->s.angles[1] == 270) + { + VectorSet (self->mins, -26, -32, -7); + VectorSet (self->maxs, 26, 32, 7); + } + else + { + VectorSet (self->mins, -32, -26, -7); + VectorSet (self->maxs, 32, 26, 7); + } + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/dead_fem/body.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/dead_fem/body.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/dead_fem/legs.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/dead_fem/legs.mdx", &self->s.model_parts[1]); + + self->die = body_gib; + self->takedamage = DAMAGE_YES; + + if (!self->health) + self->health = 50; + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + self->surfacetype = SURF_FABRIC; + + if (st.item) + { + self->item = FindItemByClassname (st.item); + if (!self->item) + gi.dprintf("%s at %s has bad item: %s\n", self->classname, vtos(self->s.origin), st.item); + } + + gi.linkentity (self); +} + +#define FLAG1 2 +#define FLAG2 4 +#define FLAG3 8 + +/*QUAKED props2_flag (0 .5 .8) (-47 -6 -100) (47 6 100) ? FLAG1 FLAG2 FLAG3 + +A flag + +The bounding box can be rotated in angles of 90 deg and block properly + +model="models\props\flag\flag1.md2" +*/ + +void think_flag (edict_t *self) +{ + if (self->s.frame < 39) + { + self->s.frame++; + } + else + { + self->s.frame = 0; + } + + self->nextthink = level.time + FRAMETIME; +} + +void SP_props2_flag (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + if (self->spawnflags & FLAG2) + { + self->model = "models/props/flag/flag1.md2"; + } + else if (self->spawnflags & FLAG3) + { + self->model = "models/props/flag/flag2.md2"; + } + else + { + self->model = "models/props/flag/flag3.md2"; + } + + self->s.modelindex = gi.modelindex (self->model); + + + if ((self->s.angles[1] == 90) || self->s.angles[1] == 270) + { + VectorSet (self->mins, -6, -47, -100); + VectorSet (self->maxs, 6, 47, 100); + } + else + { + VectorSet (self->mins, -47, -6, -100); + VectorSet (self->maxs, 47, 6, 100); + } + + self->s.renderfx2 |= RF2_NOSHADOW; + + self->surfacetype = SURF_METAL_L; + gi.linkentity (self); + + self->nextthink = level.time + FRAMETIME *2; + self->think = think_flag; +} + +/*QUAKED props2_fish (0 .5 .8) (-12 -12 0) (12 12 10) + +A fish + +"dmg" - fish bite damage (2 default) + +"health" - heath of the fish (10 default) + +*/ + +void fish_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point, int mdx_part, int mdx_subobject) +{ + vec3_t realorigin; + + VectorCopy(self->s.origin, realorigin); + realorigin[2] += 8; + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SPLASH); + gi.WriteByte (15); + gi.WritePosition (realorigin); + gi.WriteDir (self->movedir); + gi.WriteByte (6); + gi.multicast (realorigin, MULTICAST_PVS); + + // If this fish was spawned - tell spawner to make a new one + if (self->targetname) + { + int i; + edict_t *e = NULL; + + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->classname) && (!strcmp(e->classname, "props2_fish_spawner")) && + (e->target) && (!strcmp(e->target, self->targetname))) + { + e->fxdensity++; + break; + } + } + } + + G_FreeEdict (self); +} + +int check_fish_hit_player(edict_t *ent) +{ + trace_t tr; + vec3_t endpos, forward; + + AngleVectors (ent->s.angles, forward, NULL, NULL); + VectorMA(ent->s.origin, 32, forward, endpos); + endpos[2] += 32; + tr = gi.trace(ent->s.origin, NULL, NULL, endpos, ent, MASK_SHOT); + + if (tr.fraction < 1) + { + if ((tr.ent) && (tr.ent->client)) + { + vec3_t start, aimdir, dang; + + if (ent->timestamp > level.time) + return false; + + ent->timestamp = level.time + 0.5; + + ent->debugprint = 1; + + //T_Damage (tr.ent, tr.ent, tr.ent, vec3_origin, tr.ent->s.origin, vec3_origin, ent->dmg, ent->dmg, 0, MOD_DOGBITE); + + VectorSubtract (tr.ent->s.origin, ent->s.origin, aimdir); + vectoangles (aimdir, dang); + AngleVectors (dang, forward, NULL, NULL); + VectorMA (ent->s.origin, 16, forward, start); + + fire_rat (ent, start, forward, ent->dmg); + + return true; + } + } + + return false; +} + +void fish_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + if (!other->client) + return; + + if (self->timestamp > level.time) + return; + + self->timestamp = level.time + 0.5; + + self->debugprint = 1; + + T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, self->dmg, self->dmg, 0, MOD_DOGBITE); +} + +void fish_go (edict_t *self) +{ + if (self->option) + { + cvar_t *props; + + props = gi.cvar("props", "1", CVAR_ARCHIVE); + + if (!props->value) + { + self->nextthink = level.time + (FRAMETIME * 10); + return; + } + } + + self->waterlevel = 3; + M_walkmove (self, self->healspeed, 16 * FRAMETIME); + + if (!VectorCompare(self->s.origin, self->s.old_origin)) + { + if (self->s.frame <= 1) + { + self->s.frame++; + } + else + { + self->s.frame = 0; + } + + if (self->fxdensity++ >= self->deadticks) + { + vec3_t point; + int cont; + int cangoup = 0; + int cangodown = 0; + + point[0] = self->s.origin[0]; + point[1] = self->s.origin[1]; + point[2] = self->s.origin[2] + self->maxs[2] - 2; + cont = gi.pointcontents (point); + + if (cont & MASK_WATER) + cangoup = 1; + + point[0] = self->s.origin[0]; + point[1] = self->s.origin[1]; + point[2] = self->s.origin[2] + self->mins[2] - 4; + cont = gi.pointcontents (point); + + if (cont & MASK_WATER) + cangodown = 1; + + self->deadticks = rand()&7; + self->healspeed += (rand()&7)-4; + + if (self->deadticks > 3) + { + if (cangodown) + self->s.origin[2] -= 0.5; + } + else + { + if (cangoup) + self->s.origin[2] += 0.5; + } + + if (self->healspeed > 360) + self->healspeed = (self->healspeed - 360); + if (self->healspeed < 0) + self->healspeed = (self->healspeed + 360); + + self->s.angles[1] = self->healspeed; + } + } + else + { + if (self->s.frame <= 1) + { + self->s.frame++; + } + else + { + self->s.frame = 0; + } + + if (self->durationflag) + self->healspeed += 8; + else + self->healspeed -= 8; + + if (self->healspeed > 360) + self->healspeed = (self->healspeed - 360); + if (self->healspeed < 0) + self->healspeed = (self->healspeed + 360); + self->s.angles[1] = self->healspeed; + + self->waterlevel = 3; + M_walkmove (self, self->healspeed, 16 * FRAMETIME); + + if (!VectorCompare(self->s.origin, self->s.old_origin)) + { + self->deadticks = (rand()&7)+12; + } + else + { + check_fish_hit_player(self); + } + } + + self->nextthink = level.time + FRAMETIME; +} + + +void SP_props2_fish (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_FLY; + self->svflags |= SVF_PROP; + self->flags |= FL_FLY; + self->waterlevel = 3; + + VectorSet (self->mins, -8, -8, 0); + VectorSet (self->maxs, 8, 8, 10); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/actors/shrimp/shrimp.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/actors/shrimp/shrimp.mdx", &self->s.model_parts[0]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + self->monsterprop = 1; + self->deadticks = 1; + self->fxdensity = 0; + self->healspeed = rand()&360; + self->debugprint = 0; + // Born left or right handed + self->durationflag = rand()&1; + + self->die = fish_die; + self->touch = fish_touch; + self->takedamage = DAMAGE_YES; + self->cast_info.aiflags = AI_NOSTEP; + + if (!self->dmg) + self->dmg = 2; + + if (!self->health) + self->health = 10; + + self->think = fish_go; + self->nextthink = level.time + (FRAMETIME * 2); + + self->surfacetype = SURF_FABRIC; + gi.linkentity (self); +} + +/*QUAKED props2_fish_trigger (0 .5 .8) (-12 -12 0) (12 12 10) + +A fish that is spawned when triggered + +"dmg" - fish bite damage (2 default) + +"health" - heath of the fish (10 default) + +"targetname" - target ID +*/ + +void fish_trigger_use (edict_t *self, edict_t *other, edict_t *activator) +{ + self->svflags &= ~SVF_NOCLIENT; + self->use = NULL; + self->targetname = NULL; + self->solid = SOLID_BBOX; + self->think = fish_go; + self->nextthink = level.time + FRAMETIME; +} + +void SP_props2_fish_trigger (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->movetype = MOVETYPE_FLY; + self->svflags |= SVF_PROP; + self->flags |= FL_FLY; + self->waterlevel = 3; + + VectorSet (self->mins, -8, -8, 0); + VectorSet (self->maxs, 8, 8, 10); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/actors/shrimp/shrimp.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/actors/shrimp/shrimp.mdx", &self->s.model_parts[0]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + self->monsterprop = 1; + self->deadticks = 1; + self->fxdensity = 0; + self->healspeed = rand()&360; + self->debugprint = 0; + // Born left or right handed + self->durationflag = rand()&1; + + self->die = fish_die; + self->touch = fish_touch; + self->takedamage = DAMAGE_YES; + self->cast_info.aiflags = AI_NOSTEP; + + if (!self->dmg) + self->dmg = 2; + + if (!self->health) + self->health = 10; + + if (self->targetname) + { + self->solid = SOLID_NOT; + self->use = fish_trigger_use; + self->svflags |= SVF_NOCLIENT; + } + else + { + gi.dprintf ("props2_fish_trigger without a targetname at %s\n", vtos(self->absmin)); + G_FreeEdict (self); + return; + } + + self->surfacetype = SURF_FABRIC; + gi.linkentity (self); +} + +/*QUAKED props2_fish_spawner (0 .5 .8) (-16 -16 -16) (16 16 16) + +Base fish spawner + + props2_fish_spawner_node determine possible spawn point + + "dmg" - fish bite damage (2 default) + + "health" - heath of the fish (10 default) + + "deadticks" - total number of fishs in level from spawner at a time (default 5) + + "target" - ID string for spawner +*/ + +void fish_spawn_think (edict_t *self) +{ + if (self->fxdensity) + { + int i, tnode, node; + edict_t *e = NULL; + + if (self->option) + { + cvar_t *props; + + props = gi.cvar("props", "1", CVAR_ARCHIVE); + + if (!props->value) + { + self->nextthink = level.time + FRAMETIME * 50; + return; + } + } + + tnode = rand()%self->firetype; + node = 0; + + // Find a spawner origin + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->classname) && (!strcmp(e->classname, "props2_fish_spawner_node")) && + (e->targetname) && (self->target) && (!strcmp(e->targetname, self->target))) + { + if (node == tnode) + { + edict_t *fish = NULL; + + fish = G_Spawn(); + + if (!fish) + return; + + // Spawn new fish + VectorCopy(e->s.origin, fish->s.origin); + fish->s.origin[2] -= 6; + fish->targetname = self->target; + fish->dmg = self->dmg; + fish->health = self->health; + fish->option = self->option; + SP_props2_fish(fish); + self->fxdensity--; + self->nextthink = level.time + FRAMETIME * 50; + return; + } + + node++; + } + } + } + + self->nextthink = level.time + FRAMETIME * 10; +} + +void fish_spawn_first_think (edict_t *self) +{ + int i; + edict_t *e = NULL; + + if (self->target) + { + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->classname) && (!strcmp(e->classname, "props2_fish_spawner_node")) && + (e->targetname) && (!strcmp(e->targetname, self->target))) + { + self->firetype++; + } + } + + if (self->firetype) + { + self->think = fish_spawn_think; + self->nextthink = level.time + FRAMETIME; + } + } + else + { + gi.dprintf ("props2_fish_spawner without a target at %s\n", vtos(self->absmin)); + } +} + +void SP_props2_fish_spawner (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + if (!self->deadticks) + self->deadticks = 5; + + self->fxdensity = self->deadticks; + + if (!self->dmg) + self->dmg = 2; + + if (!self->health) + self->health = 10; + + self->firetype = 0; + + self->think = fish_spawn_first_think; + self->nextthink = level.time + (FRAMETIME * 3); + + gi.linkentity (self); +} +// END JOSEPH + +/*QUAKED props2_fish_spawner_node (0 .5 .8) (-16 -16 -16) (16 16 16) + + Possible fish spawn point from props2_fish_spawner + + "targetname" - ID string for spawner +*/ + +void SP_props2_fish_spawner_node (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + gi.linkentity (self); +} + +/*QUAKED props2_wall_fish (0 .5 .8) (-2 -40 -12) (2 40 12) + +A fish on the wall + +The bounding box can be rotated in angles of 90 deg and block properly + +model="models\props\fish\tris.md2" +*/ + +void SP_props2_wall_fish (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + self->model = "models/props/fish/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + + if ((self->s.angles[1] == 90) || self->s.angles[1] == 270) + { + VectorSet (self->mins, -40, -2, -12); + VectorSet (self->maxs, 40, 2, 12); + } + else + { + VectorSet (self->mins, -2, -40, -12); + VectorSet (self->maxs, 2, 40, 12); + } + + self->s.renderfx2 |= RF2_NOSHADOW; + self->surfacetype = SURF_WOOD; + gi.linkentity (self); +} + +/*QUAKED props2_barrels_fall_ST (0 .5 .8) (-89 -48 -56) (89 48 56) + +A set of barrels that you can trigger to fall + +model="models\props\barl_steel\barrels.mdx;models\props\barl_steel\tops.mdx;models\props\barl_steel\door.mdx" +*/ +void barrels_fallST (edict_t *self) +{ + if (self->s.frame < 37) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + + if (self->s.frame == 1) + { + self->svflags &= ~SVF_NOCLIENT; + } + } +} + +void barrelsfallST_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = barrels_fallST; + ent->nextthink = level.time + FRAMETIME; + //gi.sound (ent, CHAN_AUTO, gi.soundindex ("world/brickfall.wav"), 1, ATTN_NORM, 0); +} + +void SP_props2_barrels_fall_ST (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -89, -48, -56); + VectorSet (self->maxs, 89, 48, 56); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/barl_steel/barrels.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/barl_steel/barrels.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/barl_steel/door.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/barl_steel/door.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/barl_steel/tops.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/barl_steel/tops.mdx", &self->s.model_parts[2]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = barrelsfallST_trigger; + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +/*QUAKED props2_sign (0 .5 .8) (-4 -44 -44) (4 44 44) + +A sign + +The bounding box can be rotated in angles of 90 deg and block properly + +model="models\props\sign\sign.mdx;models\props\sign\bar.mdx;models\props\sign\chain.mdx" +*/ +void think_sign (edict_t *self) +{ + self->nextthink = level.time + FRAMETIME; + + if (self->s.frame < 40) + { + self->s.frame++; + } + else + { + self->s.frame = 0; + } +} + +void SP_props2_sign (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->s.skinnum = self->skin; + + if ((self->s.angles[1] == 90) || self->s.angles[1] == 270) + { + VectorSet (self->mins, -44, -4, -44); + VectorSet (self->maxs, 44, 4, 44); + } + else + { + VectorSet (self->mins, -4, -44, -44); + VectorSet (self->maxs, 4, 44, 44); + } + + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/sign/sign.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/props/sign/sign.mdx", &self->s.model_parts[0] ); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/sign/bar.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/props/sign/bar.mdx", &self->s.model_parts[1] ); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->surfacetype = SURF_METAL_L; + gi.linkentity (self); + + self->think = think_sign; + self->nextthink = level.time + 2 * FRAMETIME; +} + +/*QUAKED props2_lighthouse_beam (0 .5 .8) (-16 -16 -88) (16 16 -40) + +A light house light beam that rotates + +-482 -25 -88, -85 25 -40 + +"reactdelay" light distance from center (default 40) + +model="models\props\litecone\litecone.mdx" +*/ +void think_lighthouse_beam (edict_t *self) +{ + self->nextthink = level.time + FRAMETIME; + + self->s.angles[1] += 3; + + if (self->handle) + { + vec3_t forward; + + AngleVectors(self->s.angles, forward, NULL, NULL); + VectorMA(self->s.origin, self->reactdelay, forward, self->handle->s.origin); + self->handle->s.origin[2] -= 64; + } +} + +void SP_props2_lighthouse_beam (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->s.skinnum = self->skin; + + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/litecone/litecone.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/props/litecone/litecone.mdx", &self->s.model_parts[0] ); + + self->s.renderfx2 |= RF2_NOSHADOW; + self->s.renderfx2 |= RF2_PASSALPHA; + self->s.effects = 128+32; + + gi.linkentity (self); + + if (!self->reactdelay) + self->reactdelay = 40; + + { + edict_t *newent = NULL; + vec3_t forward; + + newent = G_Spawn(); + + if (!newent) + return; + + self->handle = newent; + + AngleVectors(self->s.angles, forward, NULL, NULL); + VectorMA(self->s.origin, self->reactdelay, forward, newent->s.origin); + newent->s.origin[2] -= 64; + newent->s.effects |= EF_BLUEHYPERBLASTER; + + newent->s.modelindex = gi.modelindex("models/weapons/sshell_md2/tris.md2"); + + gi.linkentity (newent); + + newent->s.renderfx |= RF_BEAM; + + newent->s.renderfx2 |= RF2_NOSHADOW; + } + + self->think = think_lighthouse_beam; + self->nextthink = level.time + 2 * FRAMETIME; +} + +/*QUAKED props2_boat (0 .5 .8) (-80 -160 -38) (80 160 38) + +A boat + +The bounding box can be rotated in angles of 90 deg and block properly + +model="models\props\boat\boat.mdx;models\props\boat\glass.mdx" +*/ + +void SP_props2_boat (edict_t *self) +{ + int i; + edict_t *newent = NULL; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->s.skinnum = self->skin; + + if ((self->s.angles[1] == 90) || self->s.angles[1] == 270) + { + VectorSet (self->mins, -160, -80, -38); + VectorSet (self->maxs, 160, 80, 38); + } + else + { + VectorSet (self->mins, -80, -160, -38); + VectorSet (self->maxs, 80, 160, 38); + } + + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/boat/boat.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/props/boat/boat.mdx", &self->s.model_parts[0] ); + + newent = G_Spawn(); + + if (!newent) + return; + + //self->handle2 = newent; + + VectorCopy(self->s.origin, newent->s.origin); + VectorCopy(self->s.angles, newent->s.angles); + + newent->solid = SOLID_BBOX; + newent->movetype = MOVETYPE_NONE; + newent->svflags |= SVF_PROP; + + newent->s.skinnum = self->skin; + + memset(&(newent->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + newent->s.num_parts++; + newent->s.model_parts[0].modelindex = gi.modelindex("models/props/boat/glass.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds( "models/props/boat/glass.mdx", &newent->s.model_parts[0] ); + + newent->s.renderfx2 |= RF2_NOSHADOW; + newent->s.renderfx2 |= RF2_PASSALPHA; + newent->s.effects = 64; + + newent->s.renderfx2 |= RF2_DIR_LIGHTS; + newent->surfacetype = SURF_METAL; + gi.linkentity (newent); + + self->s.renderfx2 |= RF2_NOSHADOW; + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->surfacetype = SURF_METAL; + gi.linkentity (self); +} + +/*QUAKED props2_buoy (0 .5 .8) (-41 -41 -75) (41 41 75) + +A buoy + +model="models\props\buoy\buoy.mdx" +*/ + +void SP_props2_buoy (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -41, -41, -75); + VectorSet (self->maxs, 41, 41, 75); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/buoy/buoy.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/buoy/buoy.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/buoy/light.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/buoy/light.mdx", &self->s.model_parts[1]); + + self->s.renderfx2 |= RF2_NOSHADOW; + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->surfacetype = SURF_METAL; + gi.linkentity (self); + + //AddLightSource(self); +} + + +/*QUAKED props2_buoy_side (1 0 0) (-81 -55 -64) (81 55 64) + +A buoy on it's side + +model="models\props\buoyside\buoy.mdx" +*/ + +void SP_props2_buoy_side (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -81, -55, -64); + VectorSet (self->maxs, 81, 55, 64); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/buoyside/buoy.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/buoyside/buoy.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/buoyside/light.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/buoyside/light.mdx", &self->s.model_parts[1]); + + self->s.renderfx2 |= RF2_NOSHADOW; + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->surfacetype = SURF_METAL; + gi.linkentity (self); + + //AddLightSource(self); +} + +/*QUAKED props2_buoy_animate (0 .5 .8) (-41 -41 -75) (41 41 75) + +An animated buoy + +model="models\props\buoya\buoy.mdx" +*/ + +void think_buoya (edict_t *self) +{ + self->nextthink = level.time + FRAMETIME; + + if (self->s.frame < 49) + { + self->s.frame++; + } + else + { + self->s.frame = 0; + } +} + +void SP_props2_buoy_animate (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -41, -41, -75); + VectorSet (self->maxs, 41, 41, 75); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/buoya/buoy.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/buoy/buoy.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/buoya/light.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/buoy/light.mdx", &self->s.model_parts[1]); + + self->s.renderfx2 |= RF2_NOSHADOW; + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->surfacetype = SURF_METAL; + gi.linkentity (self); + + self->think = think_buoya; + self->nextthink = level.time + 2 * FRAMETIME; + + //AddLightSource(self); +} + +/*QUAKED props2_gargoyle (0 .5 .8) (-47 -22 -50) (47 22 50) + +A gargoyle + +model="models\props\gargoyle\" +*/ + +void SP_props2_gargoyle (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + self->model = "models/props/gargoyle/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -47, -22, -50); + VectorSet (self->maxs, 47, 22, 50); + + self->surfacetype = SURF_METAL; + self->s.renderfx2 |= RF2_NOSHADOW; + gi.linkentity (self); +} + +#define DONOTMOVE 2 + +/*QUAKED props2_clothesline (0 .5 .8) (-4 -85 -25) (4 85 25) ? DONOTMOVE + +A clothes line + +model="models\props\clothes\" +*/ + +void think_clothesline (edict_t *self) +{ + self->nextthink = level.time + FRAMETIME; + + if (self->s.frame < 19) + { + self->s.frame++; + } + else + { + self->s.frame = 0; + } +} + +void SP_props2_clothesline (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/props/clothes/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -4, -85, -25); + VectorSet (self->maxs, 4, 85, 25); + + self->surfacetype = SURF_FABRIC; + gi.linkentity (self); + + if (!(self->spawnflags & DONOTMOVE)) + { + self->think = think_clothesline; + self->nextthink = level.time + 2 * FRAMETIME; + } +} + + +/*QUAKED props2_plant_XL (0 .5 .8) (-50 -46 -53) (50 46 53) + +A plant + +model="models\props\plants\plant_xl.md2" +*/ + +void SP_props2_plant_XL (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/props/plants/plant_xl.md2"; + self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -50, -46, -53); + VectorSet (self->maxs, 50, 46, 53); + + if (!self->health) + self->health = 25; + + self->die = metal_die; + self->takedamage = DAMAGE_YES; + + self->surfacetype = SURF_FABRIC; + gi.linkentity (self); +} + +/*QUAKED props2_plant_SM (0 .5 .8) (-12 -9 -20) (12 9 20) + +A plant + +model="models\props\plants\plant_sm.md2" +*/ + +void SP_props2_plant_SM (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/props/plants/plant_sm.md2"; + self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -12, -9, -20); + VectorSet (self->maxs, 12, 9, 20); + + if (!self->health) + self->health = 25; + + self->die = metal_die; + self->takedamage = DAMAGE_YES; + + self->surfacetype = SURF_FABRIC; + gi.linkentity (self); +} + +/*QUAKED props2_lunch (0 .5 .8) (-10 -7 -5) (10 7 5) + +A lunch + +model="models\props\lunch_set\tris.md2" +*/ + +void SP_props2_lunch (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/props/lunch_set/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -10, -7, -5); + VectorSet (self->maxs, 10, 7, 5); + + self->surfacetype = SURF_METAL; + gi.linkentity (self); +} + +/*QUAKED props2_ashtray (0 .5 .8) (-12 -18 -4) (12 18 4) + +An ashtray + +model="models\props\ashtray_set\tris.md2" +*/ + +void SP_props2_ashtray (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/props/ashtray_set/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -12, -18, -4); + VectorSet (self->maxs, 12, 18, 4); + + self->surfacetype = SURF_TILE; + gi.linkentity (self); +} + +/*QUAKED props2_boatphone (0 .5 .8) (-5 -9 -12) (5 9 12) + +A boat phone + +model="models\props\boatphone\tris.md2" +*/ + +void SP_props2_boatphone (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/props/boatphone/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -5, -9, -12); + VectorSet (self->maxs, 5, 9, 12); + + self->surfacetype = SURF_METAL_L; + gi.linkentity (self); +} + +/*QUAKED props2_plant_bush (0 .5 .8) (-9 -11 -32) (9 11 32) + +A bush like plant + +model="models\props\bush\tris.md2" +*/ + +void SP_props2_plant_bush (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/props/bush/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -9, -11, -32); + VectorSet (self->maxs, 9, 11, 32); + + if (!self->health) + self->health = 25; + + self->die = metal_die; + self->takedamage = DAMAGE_YES; + + self->surfacetype = SURF_FABRIC; + gi.linkentity (self); +} + +/*QUAKED props2_boat_animate (0 .5 .8) (-80 -160 -38) (80 160 38) + +An animated boat + +model="models\props\boata\boat.mdx" +*/ + +void think_boat_a (edict_t *self) +{ + self->nextthink = level.time + FRAMETIME; + + if (self->s.frame < 49) + { + self->s.frame++; + + if (self->handle) + self->handle->s.frame++; + } + else + { + self->s.frame = 0; + + if (self->handle) + self->handle->s.frame = 0; + } +} + +void SP_props2_boat_animate (edict_t *self) +{ + int i; + edict_t *newent = NULL; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -80, -160, -38); + VectorSet (self->maxs, 80, 160, 38); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/boata/boat.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/boata/boat.mdx", &self->s.model_parts[0]); + + newent = G_Spawn(); + + if (!newent) + return; + + self->handle = newent; + + VectorCopy(self->s.origin, newent->s.origin); + VectorCopy(self->s.angles, newent->s.angles); + + newent->solid = SOLID_BBOX; + newent->movetype = MOVETYPE_NONE; + newent->svflags |= SVF_PROP; + + newent->s.skinnum = self->skin; + + memset(&(newent->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + newent->s.num_parts++; + newent->s.model_parts[0].modelindex = gi.modelindex("models/props/boata/window.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds( "models/props/boata/window.mdx", &newent->s.model_parts[0] ); + + newent->s.renderfx2 |= RF2_NOSHADOW; + newent->s.renderfx2 |= RF2_PASSALPHA; + newent->s.effects = 64; + + newent->s.renderfx2 |= RF2_DIR_LIGHTS; + newent->surfacetype = SURF_METAL; + gi.linkentity (newent); + + self->s.renderfx2 |= RF2_NOSHADOW; + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->surfacetype = SURF_METAL; + gi.linkentity (self); + + self->think = think_boat_a; + self->nextthink = level.time + 2 * FRAMETIME; +} + +/*QUAKED props2_helicopter_animate (0 .5 .8) (-16 -16 -16) (16 16 16) + +A helicopter and actor that animate when trigered + +model="models\props\helicopter\helicopter.mdx;models\props\helicopter\rotor.mdx;models\props\helicopter\body.mdx;models\props\helicopter\foot.mdx;models\props\helicopter\legs.mdx;models\props\helicopter\head.mdx" +*/ +void helicopter_a_final (edict_t *self) +{ + if (self->s.frame < 223) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + + if (self->s.frame == 1) + { + self->svflags &= ~SVF_NOCLIENT; + } + } +} + +void helicopter_a_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = helicopter_a_final; + ent->nextthink = level.time + FRAMETIME; + //gi.sound (ent, CHAN_AUTO, gi.soundindex ("world/brickfall.wav"), 1, ATTN_NORM, 0); +} + +void SP_props2_helicopter_animate (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -16, -16, -16); + VectorSet (self->maxs, 16, 16, 16); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/helicopter/helicopter.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/helicopter/helicopter.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/helicopter/rotor.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/helicopter/rotor.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/helicopter/legs.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/helicopter/legs.mdx", &self->s.model_parts[2]); + + self->s.num_parts++; + self->s.model_parts[3].modelindex = gi.modelindex("models/props/helicopter/body.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/helicopter/body.mdx", &self->s.model_parts[3]); + + self->s.num_parts++; + self->s.model_parts[4].modelindex = gi.modelindex("models/props/helicopter/foot.mdx"); + for (i=0; is.model_parts[4].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/helicopter/foot.mdx", &self->s.model_parts[4]); + + self->s.num_parts++; + self->s.model_parts[5].modelindex = gi.modelindex("models/props/helicopter/head.mdx"); + for (i=0; is.model_parts[5].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/helicopter/head.mdx", &self->s.model_parts[5]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = helicopter_a_trigger; + + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + + +/*QUAKED props2_car_animate (0 .5 .8) (-16 -16 -16) (16 16 16) + +A car and actors that animate when trigered + +model="models\props\cars\car.mdx;models\props\cars\legs_boss.mdx;models\props\cars\body_boss.mdx;models\props\cars\head_boss.mdx;models\props\cars\legs_chick.mdx;models\props\cars\body_chick.mdx;models\props\cars\head_chick.mdx" +*/ +void car_a_final (edict_t *self) +{ + if (self->s.frame < 85) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + + if (self->s.frame == 1) + { + self->svflags &= ~SVF_NOCLIENT; + } + } +} +// END JOSEPH + +void car_a_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = car_a_final; + ent->nextthink = level.time + FRAMETIME; + //gi.sound (ent, CHAN_AUTO, gi.soundindex ("world/brickfall.wav"), 1, ATTN_NORM, 0); +} + +void SP_props2_car_animate (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -16, -16, -16); + VectorSet (self->maxs, 16, 16, 16); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/cars/car.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/cars/car.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/cars/legs_boss.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/cars/legs_boss.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/cars/body_boss.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/cars/body_boss.mdx", &self->s.model_parts[2]); + + self->s.num_parts++; + self->s.model_parts[3].modelindex = gi.modelindex("models/props/cars/head_boss.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/cars/head_boss.mdx", &self->s.model_parts[3]); + + self->s.num_parts++; + self->s.model_parts[4].modelindex = gi.modelindex("models/props/cars/legs_chick.mdx"); + for (i=0; is.model_parts[4].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/cars/legs_chick.mdx", &self->s.model_parts[4]); + + self->s.num_parts++; + self->s.model_parts[5].modelindex = gi.modelindex("models/props/cars/body_chick.mdx"); + for (i=0; is.model_parts[5].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/cars/body_chick.mdx", &self->s.model_parts[5]); + + self->s.num_parts++; + self->s.model_parts[6].modelindex = gi.modelindex("models/props/cars/head_chick.mdx"); + for (i=0; is.model_parts[6].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/cars/head_chick.mdx", &self->s.model_parts[6]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = car_a_trigger; + + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +/*QUAKED props2_car_topup (0 .5 .8) (-50 -102 -35) (50 102 35) + +A car with top up + +The bounding box can be rotated in angles of 90 deg and block properly + +model="models\props\car\car_up.md2" +*/ + +void SP_props2_car_topup (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/props/car/car_up.md2"; + self->s.modelindex = gi.modelindex (self->model); + + if ((self->s.angles[1] == 90) || self->s.angles[1] == 270) + { + VectorSet (self->mins, -102, -50, -35); + VectorSet (self->maxs, 102, 50, 35); + } + else + { + VectorSet (self->mins, -50, -102, -35); + VectorSet (self->maxs, 50, 102, 35); + } + + self->surfacetype = SURF_METAL; + gi.linkentity (self); +} + +/*QUAKED props2_car_topdown (0 .5 .8) (-50 -102 -33) (50 102 33) + +A car with top down + +The bounding box can be rotated in angles of 90 deg and block properly + +model="models\props\car\car_td.md2" +*/ + +void SP_props2_car_topdown (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/props/car/car_td.md2"; + self->s.modelindex = gi.modelindex (self->model); + + if ((self->s.angles[1] == 90) || self->s.angles[1] == 270) + { + VectorSet (self->mins, -102, -50, -33); + VectorSet (self->maxs, 102, 50, 33); + } + else + { + VectorSet (self->mins, -50, -102, -33); + VectorSet (self->maxs, 50, 102, 33); + } + + self->surfacetype = SURF_METAL; + gi.linkentity (self); +} + +/*QUAKED props2_plant_fern (0 .5 .8) (-50 -46 -40) (50 46 40) + +A fern plant + +model="models\props\fern\tris.md2" +*/ + +void SP_props2_plant_fern (edict_t *self) +{ + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->model = "models/props/fern/tris.md2"; + self->s.modelindex = gi.modelindex (self->model); + VectorSet (self->mins, -50, -46, -40); + VectorSet (self->maxs, 50, 46, 40); + + if (!self->health) + self->health = 25; + + self->die = metal_die; + self->takedamage = DAMAGE_YES; + + self->surfacetype = SURF_FABRIC; + gi.linkentity (self); +} + +#define PINNUM1 2 +#define PINNUM2 4 +#define PINNUM3 8 + +/*QUAKED props2_pinball_machine (0 .5 .8) (-42 -18 -38) (42 18 38) ? PINNUM1 PINNUM2 PINNUM3 + +A pinball machine + +The bounding box can be rotated in angles of 90 deg and block properly + +model="models\props\pinball\pinball_m.mdx;models\props\pinball\glass.mdx;models\props\pinball\ball.mdx" +*/ + +void pinball_go (edict_t *self) +{ + if (self->s.frame < 44) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + + if (self->handle) + { + self->handle->s.frame++; + } + } + else + { + self->s.frame = 0; + + if (self->handle) + { + self->handle->s.frame = 0; + } + } +} + +void pinball_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = pinball_go; + ent->nextthink = level.time + FRAMETIME; + //gi.sound (ent, CHAN_AUTO, gi.soundindex ("world/brickfall.wav"), 1, ATTN_NORM, 0); +} + +void SP_props2_pinball_machine (edict_t *self) +{ + int i; + edict_t *newent = NULL; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->s.skinnum = self->skin; + + if ((self->s.angles[1] == 90) || self->s.angles[1] == 270) + { + VectorSet (self->mins, -18, -42, -38); + VectorSet (self->maxs, 18, 42, 38); + } + else + { + VectorSet (self->mins, -42, -18, -38); + VectorSet (self->maxs, 42, 18, 38); + } + + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + + if (self->spawnflags & PINNUM3) + { + self->s.model_parts[0].modelindex = gi.modelindex("models/props/pin3/pinball_m.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/props/pin3/pinball_m.mdx", &self->s.model_parts[0] ); + } + else if (self->spawnflags & PINNUM2) + { + self->s.model_parts[0].modelindex = gi.modelindex("models/props/pin2/pinball_m.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/props/pin2/pinball_m.mdx", &self->s.model_parts[0] ); + } + else + { + self->s.model_parts[0].modelindex = gi.modelindex("models/props/pin1/pinball_m.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/props/pin1/pinball_m.mdx", &self->s.model_parts[0] ); + } + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/pinball/ball.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/props/pinball/ball.mdx", &self->s.model_parts[1] ); + + newent = G_Spawn(); + + if (!newent) + return; + + self->handle = newent; + + VectorCopy(self->s.origin, newent->s.origin); + VectorCopy(self->s.angles, newent->s.angles); + + newent->solid = SOLID_BBOX; + newent->movetype = MOVETYPE_NONE; + newent->svflags |= SVF_PROP; + + newent->s.skinnum = self->skin; + + memset(&(newent->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + newent->s.num_parts++; + newent->s.model_parts[0].modelindex = gi.modelindex("models/props/pinball/glass.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds( "models/props/pinball/glass.mdx", &newent->s.model_parts[0] ); + + newent->s.renderfx2 |= RF2_NOSHADOW; + newent->s.renderfx2 |= RF2_PASSALPHA; + newent->s.effects = 128; + + newent->s.renderfx2 |= RF2_DIR_LIGHTS; + newent->surfacetype = SURF_WOOD; + gi.linkentity (newent); + + self->use = pinball_trigger; + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->surfacetype = SURF_WOOD; + gi.linkentity (self); +} + +/*QUAKED props2_barrels_PV_A (0 .5 .8) (-90 -32 -48) (90 32 48) + +A set of barrels that you can trigger to fall + +model="models\props\pv_barl1\barrel_v4last.mdx;models\props\pv_barl1\barrel_v2.mdx;models\props\pv_barl1\barrel_v4.mdx;models\props\pv_barl1\top_barrel_v2.mdx;models\props\pv_barl1\top_barrel_v4.mdx" +*/ + +/*QUAKED props2_barrels_PV_B (0 .5 .8) (-17 -77 -49) (17 77 49) + +A set of barrels that you can trigger to fall + +model="models\props\pv_barl7\barrel_v2.mdx;models\props\pv_barl7\barrel_v4.mdx;models\props\pv_barl7\top_barrel_v2.mdx;models\props\pv_barl7\top_barrel_v4.mdx" +*/ + +/*QUAKED props2_barrels_PV_C (0 .5 .8) (-68 -50 -48) (68 50 48) + +A set of barrels that you can trigger to fall + +model="models\props\pv_barl3\barrel_v2.mdx;models\props\pv_barl3\barrel_v2.mdx;models\props\pv_barl3\barrel_v4.mdx;models\props\pv_barl3\top_barrel_v2.mdx;models\props\pv_barl3\top_barrel_v4.mdx" +*/ + +/*QUAKED props2_barrels_PV_D (0 .5 .8) (-20 -52 -48) (20 52 48) + +A set of barrels that you can trigger to fall + +model="models\props\pv_barl4\barrel_v2.mdx;models\props\pv_barl4\barrel_v4.mdx;models\props\pv_barl4\top_barrel_v2.mdx;models\props\pv_barl4\top_barrel_v4.mdx" +*/ + +/*QUAKED props2_barrels_PV_E (0 .5 .8) (-24 -64 -48) (24 64 48) + +A set of barrels that you can trigger to fall + +model="models\props\pv_barl5\barrel_v2.mdx;models\props\pv_barl5\barrel_v4.mdx;models\props\pv_barl5\top_barrel_v2.mdx;models\props\pv_barl5\top_barrel_v4.mdx" +*/ + +/*QUAKED props2_barrels_PV_F (0 .5 .8) (-20 -32 -24) (20 32 24) + +A set of barrels that you can trigger to fall + +model="models\props\pv_barl6\barrel_v2.mdx;models\props\pv_barl6\top_barrel_v2.mdx" +*/ + +void barrels_fallPV (edict_t *self) +{ + if (self->s.frame < 37) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + + if (self->s.frame == 1) + { + self->svflags &= ~SVF_NOCLIENT; + } + else if (self->s.frame == 13) + { + if (self->classname) + { + if (!(strcmp(self->classname, "props2_barrels_PV_B"))) + { + self->s.model_parts[1].modelindex = 0; + self->s.model_parts[3].modelindex = 0; + } + } + } + else if (self->s.frame == 16) + { + if (self->classname) + { + if (!(strcmp(self->classname, "props2_barrels_PV_A"))) + { + self->s.model_parts[1].modelindex = 0; + self->s.model_parts[3].modelindex = 0; + } + } + } + else if (self->s.frame == 17) + { + if (self->classname) + { + if (!(strcmp(self->classname, "props2_barrels_PV_D"))) + { + self->s.model_parts[1].modelindex = 0; + self->s.model_parts[3].modelindex = 0; + } + else if (!(strcmp(self->classname, "props2_barrels_PV_E"))) + { + self->s.model_parts[1].modelindex = 0; + self->s.model_parts[3].modelindex = 0; + } + } + } + else if (self->s.frame == 37) + { + if (self->classname) + { + if (!(strcmp(self->classname, "props2_barrels_PV_F"))) + { + self->s.model_parts[0].modelindex = 0; + self->s.model_parts[1].modelindex = 0; + } + } + } + } +} + +void barrels_fallPV_BlackSheep (edict_t *self) +{ + if (self->s.frame < 47) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + + if (self->s.frame == 1) + { + self->svflags &= ~SVF_NOCLIENT; + } + else if (self->s.frame == (93/4)) + { + if (self->classname) + { + if (!(strcmp(self->classname, "props2_barrels_PV_C"))) + { + self->s.model_parts[1].modelindex = 0; + self->s.model_parts[3].modelindex = 0; + } + } + } + } +} + +void barrelsfallPV_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = barrels_fallPV; + ent->nextthink = level.time + FRAMETIME; + //gi.sound (ent, CHAN_AUTO, gi.soundindex ("world/brickfall.wav"), 1, ATTN_NORM, 0); +} + +void barrelsfallPV_trigger_BlackSheep (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = barrels_fallPV_BlackSheep; + ent->nextthink = level.time + FRAMETIME; + //gi.sound (ent, CHAN_AUTO, gi.soundindex ("world/brickfall.wav"), 1, ATTN_NORM, 0); +} + +void SP_props2_barrels_PV_A (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -90, -32, -48); + VectorSet (self->maxs, 90, 32, 48); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + //self->s.num_parts++; + //self->s.model_parts[0].modelindex = gi.modelindex("models/props/pv_barl1/barrel_v4last.mdx"); + //for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + //gi.GetObjectBounds("models/props/pv_barl1/barrel_v4last.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/pv_barl1/top_barrel_v4.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/pv_barl1/top_barrel_v4.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/pv_barl1/barrel_v2.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/pv_barl1/barrel_v2.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/pv_barl1/barrel_v4.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/pv_barl1/barrel_v4.mdx", &self->s.model_parts[2]); + + self->s.num_parts++; + self->s.model_parts[3].modelindex = gi.modelindex("models/props/pv_barl1/top_barrel_v2.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/pv_barl1/top_barrel_v2.mdx", &self->s.model_parts[3]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = barrelsfallPV_trigger; + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +void SP_props2_barrels_PV_B (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -17, -77, -49); + VectorSet (self->maxs, 17, 77, 49); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + //self->s.num_parts++; + //self->s.model_parts[0].modelindex = gi.modelindex("models/props/pv_barl1/barrel_v4last.mdx"); + //for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + //gi.GetObjectBounds("models/props/pv_barl1/barrel_v4last.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/pv_barl7/top_barrel_v4.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/pv_barl7/top_barrel_v4.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/pv_barl7/barrel_v2.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/pv_barl7/barrel_v2.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/pv_barl7/barrel_v4.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/pv_barl7/barrel_v4.mdx", &self->s.model_parts[2]); + + self->s.num_parts++; + self->s.model_parts[3].modelindex = gi.modelindex("models/props/pv_barl7/top_barrel_v2.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/pv_barl7/top_barrel_v2.mdx", &self->s.model_parts[3]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = barrelsfallPV_trigger; + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +void SP_props2_barrels_PV_C (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -68, -50, -48); + VectorSet (self->maxs, 68, 50, 48); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + + //self->s.model_parts[0].modelindex = gi.modelindex("models/props/pv_barl3/barrel_v4last.mdx"); + //for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + //gi.GetObjectBounds("models/props/pv_barl3/barrel_v4last.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/pv_barl3/top_barrel_v4.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/pv_barl3/top_barrel_v4.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/pv_barl3/barrel_v2.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/pv_barl3/barrel_v2.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/pv_barl3/barrel_v4.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/pv_barl3/barrel_v4.mdx", &self->s.model_parts[2]); + + self->s.num_parts++; + self->s.model_parts[3].modelindex = gi.modelindex("models/props/pv_barl3/top_barrel_v2.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/pv_barl3/top_barrel_v2.mdx", &self->s.model_parts[3]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = barrelsfallPV_trigger_BlackSheep; + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +void SP_props2_barrels_PV_D (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -20, -52, -48); + VectorSet (self->maxs, 20, 52, 48); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/pv_barl4/top_barrel_v4.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/pv_barl4/top_barrel_v4.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/pv_barl4/barrel_v2.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/pv_barl4/barrel_v2.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/pv_barl4/barrel_v4.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/pv_barl4/barrel_v4.mdx", &self->s.model_parts[2]); + + self->s.num_parts++; + self->s.model_parts[3].modelindex = gi.modelindex("models/props/pv_barl4/top_barrel_v2.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/pv_barl4/top_barrel_v2.mdx", &self->s.model_parts[3]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = barrelsfallPV_trigger; + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +void SP_props2_barrels_PV_E (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -24, -64, -48); + VectorSet (self->maxs, 24, 64, 48); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/pv_barl5/top_barrel_v4.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/pv_barl5/top_barrel_v4.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/pv_barl5/barrel_v2.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/pv_barl5/barrel_v2.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/pv_barl5/barrel_v4.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/pv_barl5/barrel_v4.mdx", &self->s.model_parts[2]); + + self->s.num_parts++; + self->s.model_parts[3].modelindex = gi.modelindex("models/props/pv_barl5/top_barrel_v2.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/pv_barl5/top_barrel_v2.mdx", &self->s.model_parts[3]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = barrelsfallPV_trigger; + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +void SP_props2_barrels_PV_F (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -20, -32, -24); + VectorSet (self->maxs, 20, 32, 24); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/pv_barl6/barrel_v2.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/pv_barl6/barrel_v2.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/pv_barl6/top_barrel_v2.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/pv_barl6/top_barrel_v2.mdx", &self->s.model_parts[1]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = barrelsfallPV_trigger; + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +/*QUAKED props2_air_train (0 .5 .8) (-65 -259 -129) (65 255 139) + +An an train that animates when trigger + +model="models\props\air_train\beam.mdx;models\props\air_train\frontfront.mdx;models\props\air_train\bottom.mdx;models\props\air_train\frontside.mdx;models\props\air_train\middle.mdx;models\props\air_train\middle2.mdx;models\props\air_train\propeler.mdx;models\props\air_train\top.mdx" + +*/ + +/*QUAKED props2_air_train_test (0 .5 .8) (-66 -257 -135) (66 257 135) + +An an train that animates when trigger + +model="models\props\air_train\frontfront.mdx;models\props\air_train\bottom.mdx;models\props\air_train\frontside.mdx;models\props\air_train\middle.mdx;models\props\air_train\middle2.mdx;models\props\air_train\propeler.mdx;models\props\air_train\top.mdx;models\props\air_last\frontfront.mdx;models\props\air_last\bottom.mdx;models\props\air_last\frontside.mdx;models\props\air_last\middle.mdx;models\props\air_last\middle2.mdx;models\props\air_last\propeler.mdx;models\props\air_last\top.mdx" +*/ + +void air_train_go (edict_t *self) +{ + if (self->s.frame < 153) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + + if (self->s.frame == 1) + { + self->svflags &= ~SVF_NOCLIENT; + } + } +} + +void air_train_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = air_train_go; + ent->nextthink = level.time + FRAMETIME; + //gi.sound (ent, CHAN_AUTO, gi.soundindex ("world/brickfall.wav"), 1, ATTN_NORM, 0); +} + +void SP_props2_air_train (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -66, -257, -135); + VectorSet (self->maxs, 66, 257, 135); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/air_train/frontfront.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/air_train/frontfront.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/air_train/bottom.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/air_train/bottom.mdx", &self->s.model_parts[1]); + + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/air_train/frontside.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/air_train/frontside.mdx", &self->s.model_parts[2]); + + self->s.num_parts++; + self->s.model_parts[3].modelindex = gi.modelindex("models/props/air_train/middle.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/air_train/middle.mdx", &self->s.model_parts[3]); + + self->s.num_parts++; + self->s.model_parts[4].modelindex = gi.modelindex("models/props/air_train/middle2.mdx"); + for (i=0; is.model_parts[4].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/air_train/middle2.mdx", &self->s.model_parts[4]); + + self->s.num_parts++; + self->s.model_parts[5].modelindex = gi.modelindex("models/props/air_train/propeler.mdx"); + for (i=0; is.model_parts[5].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/air_train/propeler.mdx", &self->s.model_parts[5]); + + self->s.num_parts++; + self->s.model_parts[6].modelindex = gi.modelindex("models/props/air_train/top.mdx"); + for (i=0; is.model_parts[6].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/air_train/top.mdx", &self->s.model_parts[6]); + + self->s.num_parts++; + self->s.model_parts[7].modelindex = gi.modelindex("models/props/air_train/beam.mdx"); + for (i=0; is.model_parts[7].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/air_train/beam.mdx", &self->s.model_parts[7]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = air_train_trigger; + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +/*QUAKED props3_dead_louie (0 .5 .8) (-40 -48 -14) (40 48 14) + +An dead louie body you can shoot + +"health" - pre-gib hit points for the dead body (50 default) + +model="models\props\louie\body.mdx;models\props\louie\head.mdx;models\props\louie\legs.mdx" +*/ + +void SP_props3_dead_louie (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + self->svflags |= SVF_DEADMONSTER; + + VectorSet (self->mins, -40, -48, -14); + VectorSet (self->maxs, 40, 48, 14); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/louie/body.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/louie/body.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/louie/head.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/louie/body.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/louie/legs.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/louie/legs.mdx", &self->s.model_parts[2]); + + self->die = body_gib; + self->takedamage = DAMAGE_YES; + + if (!self->health) + self->health = 50; + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + + self->surfacetype = SURF_FABRIC; + + if (st.item) + { + self->item = FindItemByClassname (st.item); + if (!self->item) + gi.dprintf("%s at %s has bad item: %s\n", self->classname, vtos(self->s.origin), st.item); + } + + gi.linkentity (self); +} + +/*QUAKED props3_cut_boss_player_animate (0 .5 .8) (-16 -16 -16) (16 16 16) + +A boss and player that animate when trigered + +model="models\props\player\bodyP.mdx;models\props\player\legsP.mdx;models\props\player\headP.mdx;models\props\boss\body_boss.mdx;models\props\boss\legs_boss.mdx;models\props\boss\head_boss.mdx" +*/ +void cutbossplayer_final (edict_t *self) +{ + if (self->s.frame < 137) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + + if (self->s.frame == 1) + { + self->svflags &= ~SVF_NOCLIENT; + } + } + else + { + G_FreeEdict (self); + } +} + +void cutbossplayer_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = cutbossplayer_final; + ent->nextthink = level.time + FRAMETIME; + //gi.sound (ent, CHAN_AUTO, gi.soundindex ("world/brickfall.wav"), 1, ATTN_NORM, 0); +} + +void SP_props3_cut_boss_player_animate (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -16, -16, -16); + VectorSet (self->maxs, 16, 16, 16); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/boss/body_boss.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/boss/body_boss.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/boss/head_boss.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/boss/head_boss.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/boss/legs_boss.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/boss/legs_boss.mdx", &self->s.model_parts[2]); + + self->s.num_parts++; + self->s.model_parts[3].modelindex = gi.modelindex("models/props/player/bodyP.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/player/bodyP.mdx", &self->s.model_parts[3]); + + self->s.num_parts++; + self->s.model_parts[4].modelindex = gi.modelindex("models/props/player/headP.mdx"); + for (i=0; is.model_parts[4].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/player/headP.mdx", &self->s.model_parts[4]); + + self->s.num_parts++; + self->s.model_parts[5].modelindex = gi.modelindex("models/props/player/legsP.mdx"); + for (i=0; is.model_parts[5].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/player/legsP.mdx", &self->s.model_parts[5]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = cutbossplayer_trigger; + + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +/*QUAKED props3_deco_fixture (0 .5 .8) (-32 -8 -58) (32 8 58) + +A deco fixture + +model="models\props\deco_fixture\deco_fixture.mdx" +*/ + +void SP_props3_deco_fixture (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -32, -8, -58); + VectorSet (self->maxs, 32, 8, 58); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/deco_fixture/deco_fixture.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/deco_fixture/deco_fixture.mdx", &self->s.model_parts[0]); + + self->surfacetype = SURF_TILE; + self->s.renderfx2 |= RF2_NOSHADOW; + gi.linkentity (self); +} + +/*QUAKED props3_cut_boss_chick_animate (0 .5 .8) (-16 -16 -16) (16 16 16) + +A boss and chick that animate on a balcony when trigered + +model="models\props\cutbc\body_chick.mdx;models\props\cutbc\legs_chick.mdx;models\props\cutbc\head_chick.mdx;models\props\cutbc\body.mdx;models\props\cutbc\legs.mdx;models\props\cutbc\head.mdx;models\props\cutbc\cigar.mdx" +*/ +void cutbosschick_final (edict_t *self) +{ + if (self->s.frame < 210) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + + if (self->s.frame == 1) + { + self->svflags &= ~SVF_NOCLIENT; + } + } + else + { + G_FreeEdict (self); + } +} + +void cutbosschick_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = cutbosschick_final; + ent->nextthink = level.time + FRAMETIME; + //gi.sound (ent, CHAN_AUTO, gi.soundindex ("world/brickfall.wav"), 1, ATTN_NORM, 0); +} + +void SP_props3_cut_boss_chick_animate (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -16, -16, -16); + VectorSet (self->maxs, 16, 16, 16); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/cutbc/body.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/cutbc/body.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/cutbc/head.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/cutbc/head.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/cutbc/legs.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/cutbc/legs.mdx", &self->s.model_parts[2]); + + self->s.num_parts++; + self->s.model_parts[3].modelindex = gi.modelindex("models/props/cutbc/body_chick.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/cutbc/body_chick.mdx", &self->s.model_parts[3]); + + self->s.num_parts++; + self->s.model_parts[4].modelindex = gi.modelindex("models/props/cutbc/head_chick.mdx"); + for (i=0; is.model_parts[4].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/cutbc/head_chick.mdx", &self->s.model_parts[4]); + + self->s.num_parts++; + self->s.model_parts[5].modelindex = gi.modelindex("models/props/cutbc/legs_chick.mdx"); + for (i=0; is.model_parts[5].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/cutbc/legs_chick.mdx", &self->s.model_parts[5]); + + self->s.num_parts++; + self->s.model_parts[6].modelindex = gi.modelindex("models/props/cutbc/cigar.mdx"); + for (i=0; is.model_parts[6].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/cutbc/cigar.mdx", &self->s.model_parts[6]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = cutbosschick_trigger; + + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +/*QUAKED props3_cut_train_run_animate (0 .5 .8) (-16 -16 -16) (16 16 16) + +A guy that likes to run to trains + +model="models\props\train_jump\bodyP.mdx;models\props\train_jump\legsP.mdx;models\props\train_jump\headP.mdx; +*/ +void cuttrainrun_final (edict_t *self) +{ + if (self->s.frame < 41) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + + if (self->s.frame == 1) + { + self->svflags &= ~SVF_NOCLIENT; + } + } + else + { + G_FreeEdict (self); + } +} + +void cuttrainrun_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = cuttrainrun_final; + ent->nextthink = level.time + FRAMETIME; + //gi.sound (ent, CHAN_AUTO, gi.soundindex ("world/brickfall.wav"), 1, ATTN_NORM, 0); +} + +void SP_props3_cut_train_run_animate (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -16, -16, -16); + VectorSet (self->maxs, 16, 16, 16); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/train_jump/bodyP.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/train_jump/bodyP.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/train_jump/headP.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/train_jump/headP.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/train_jump/legsP.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/train_jump/legsP.mdx", &self->s.model_parts[2]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = cuttrainrun_trigger; + + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +/*QUAKED props3_cut_A_animate (0 .5 .8) (-16 -16 -16) (16 16 16) + +A guy sitting on a chair + +model="models\props\kpcut1\body.mdx;models\props\kpcut1\legs.mdx;models\props\kpcut1\head.mdx; +*/ + +/*QUAKED props3_cut_B_animate (0 .5 .8) (-16 -16 -16) (16 16 16) + +model="models\props\kpcut2\body.mdx;models\props\kpcut2\legs.mdx;models\props\kpcut2\head.mdx; +*/ + +/*QUAKED props3_cut_C_animate (0 .5 .8) (-16 -16 -16) (16 16 16) + +model="models\props\kpcut3\body.mdx;models\props\kpcut3\legs.mdx;models\props\kpcut3\head.mdx; +*/ + +/*QUAKED props3_cut_D_animate (0 .5 .8) (-16 -16 -16) (16 16 16) + +model="models\props\kpcut4\body.mdx;models\props\kpcut4\legs.mdx;models\props\kpcut4\head.mdx; +*/ + +void cutA_A_final (edict_t *self) +{ + if (self->s.frame < 250) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + + if (self->s.frame == 1) + { + self->svflags &= ~SVF_NOCLIENT; + } + } + else + { + G_FreeEdict (self); + } +} + +void cutB_A_final (edict_t *self) +{ + if (self->s.frame < 514) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + + if (self->s.frame == 1) + { + self->svflags &= ~SVF_NOCLIENT; + } + } + else + { + G_FreeEdict (self); + } +} + +void cutC_A_final (edict_t *self) +{ + if (self->s.frame < 249) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + + if (self->s.frame == 1) + { + self->svflags &= ~SVF_NOCLIENT; + } + } + else + { + G_FreeEdict (self); + } +} + +void cutD_A_final (edict_t *self) +{ + if (self->s.frame < 365) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + + if (self->s.frame == 1) + { + self->svflags &= ~SVF_NOCLIENT; + } + } + else + { + G_FreeEdict (self); + } +} + +void cutA_A_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = cutA_A_final; + ent->nextthink = level.time + FRAMETIME; +} + +void cutB_A_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = cutB_A_final; + ent->nextthink = level.time + FRAMETIME; +} + +void cutC_A_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = cutC_A_final; + ent->nextthink = level.time + FRAMETIME; +} + +void cutD_A_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = cutD_A_final; + ent->nextthink = level.time + FRAMETIME; +} + +void SP_props3_cut_A_animate (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -16, -16, -16); + VectorSet (self->maxs, 16, 16, 16); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/kpcut1/body.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/kpcut1/body.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/kpcut1/head.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/kpcut1/head.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/kpcut1/legs.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/kpcut1/legs.mdx", &self->s.model_parts[2]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = cutA_A_trigger; + + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +void SP_props3_cut_B_animate (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -16, -16, -16); + VectorSet (self->maxs, 16, 16, 16); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/kpcut2/body.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/kpcut2/body.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/kpcut2/head.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/kpcut2/head.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/kpcut2/legs.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/kpcut2/legs.mdx", &self->s.model_parts[2]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = cutB_A_trigger; + + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +void SP_props3_cut_C_animate (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -16, -16, -16); + VectorSet (self->maxs, 16, 16, 16); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/kpcut3/body.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/kpcut3/body.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/kpcut3/head.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/kpcut3/head.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/kpcut3/legs.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/kpcut3/legs.mdx", &self->s.model_parts[2]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = cutC_A_trigger; + + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +void SP_props3_cut_D_animate (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -16, -16, -16); + VectorSet (self->maxs, 16, 16, 16); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/kpcut4/body.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/kpcut4/body.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/kpcut4/head.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/kpcut4/head.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/kpcut4/legs.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/kpcut4/legs.mdx", &self->s.model_parts[2]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = cutD_A_trigger; + + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +/*QUAKED props3_cash_counter_animate (0 .5 .8) (-12 -14 -8) (12 18 7) + +A cash counter machine that animates when triggered + +model="models\props\bill_counter\cashstack.mdx;models\props\bill_counter\numbers.mdx;models\props\bill_counter\machine.mdx; +*/ +void cashcounter_final (edict_t *self) +{ + if (self->s.frame < 39) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + } +} + +void cashcounter_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = cashcounter_final; + ent->nextthink = level.time + FRAMETIME; + ent->s.frame = 0; +} + +void SP_props3_cash_counter_animate (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -14, -12, -8); + VectorSet (self->maxs, 18, 12, 7); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/bill_counter/cashstack.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/bill_counter/cashstack.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/bill_counter/machine.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/bill_counter/machine.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/bill_counter/numbers.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/bill_counter/numbers.mdx", &self->s.model_parts[2]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = cashcounter_trigger; + + gi.linkentity (self); +} + +/*QUAKED props3_decanter (0 .5 .8) (-3 -5 -6) (3 5 6) + +A decanter + +model="models\props\decanter\solid.mdx;models\props\decanter\glass.mdx" +*/ + +void SP_props3_decanter (edict_t *self) +{ + int i; + edict_t *newent = NULL; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->s.skinnum = self->skin; + + VectorSet (self->mins, -3, -5, -6); + VectorSet (self->maxs, 3, 5, 6); + + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/decanter/solid.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/props/decanter/solid.mdx", &self->s.model_parts[0] ); + + newent = G_Spawn(); + + if (!newent) + return; + + //self->handle2 = newent; + + VectorCopy(self->s.origin, newent->s.origin); + VectorCopy(self->s.angles, newent->s.angles); + + newent->solid = SOLID_NOT; + newent->movetype = MOVETYPE_NONE; + newent->svflags |= SVF_PROP; + + newent->s.skinnum = self->skin; + + memset(&(newent->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + newent->s.num_parts++; + newent->s.model_parts[0].modelindex = gi.modelindex("models/props/decanter/glass.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds( "models/props/decanter/glass.mdx", &newent->s.model_parts[0] ); + + newent->s.renderfx2 |= RF2_NOSHADOW; + newent->s.renderfx2 |= RF2_PASSALPHA; + newent->s.effects = 100; + + newent->s.renderfx2 |= RF2_DIR_LIGHTS; + newent->surfacetype = SURF_METAL; + gi.linkentity (newent); + + //self->s.renderfx2 |= RF2_PASSALPHA; + //self->s.effects = 32; + self->s.renderfx2 |= RF2_NOSHADOW; + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->surfacetype = SURF_METAL; + gi.linkentity (self); +} + +/*QUAKED props3_whiskey_glass (0 .5 .8) (-2 -2 -2) (2 2 2) + +A decanter + +model="models\props\whiskeyglass\solid.mdx;models\props\whiskeyglass\glass.mdx" +*/ + +void SP_props3_whiskey_glass (edict_t *self) +{ + int i; + edict_t *newent = NULL; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + self->s.skinnum = self->skin; + + VectorSet (self->mins, -2, -2, -2); + VectorSet (self->maxs, 2, 2, 2); + + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/whiskeyglass/solid.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds( "models/props/whiskeyglass/solid.mdx", &self->s.model_parts[0] ); + + newent = G_Spawn(); + + if (!newent) + return; + + //self->handle2 = newent; + + VectorCopy(self->s.origin, newent->s.origin); + VectorCopy(self->s.angles, newent->s.angles); + + newent->solid = SOLID_NOT; + newent->movetype = MOVETYPE_NONE; + newent->svflags |= SVF_PROP; + + newent->s.skinnum = self->skin; + + memset(&(newent->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + newent->s.num_parts++; + newent->s.model_parts[0].modelindex = gi.modelindex("models/props/whiskeyglass/glass.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = newent->s.skinnum; + gi.GetObjectBounds( "models/props/whiskeyglass/glass.mdx", &newent->s.model_parts[0] ); + + newent->s.renderfx2 |= RF2_NOSHADOW; + newent->s.renderfx2 |= RF2_PASSALPHA; + newent->s.effects = 128; + + newent->s.renderfx2 |= RF2_DIR_LIGHTS; + newent->surfacetype = SURF_METAL; + gi.linkentity (newent); + + //self->s.renderfx2 |= RF2_PASSALPHA; + //self->s.effects = 32; + self->s.renderfx2 |= RF2_NOSHADOW; + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->surfacetype = SURF_METAL; + gi.linkentity (self); +} + +/*QUAKED props3_barrels_fall_nikki_A (0 .5 .8) (-44 -60 -49) (44 60 49) + +A set of barrels that you can trigger to fall + +model="models\props\nikki1\barrel_v4.mdx;models\props\nikki1\top_barrel_v4.mdx" +*/ +void barrels_fall_nikki_A (edict_t *self) +{ + if (self->s.frame < 85) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + + if (self->s.frame == 1) + { + self->svflags &= ~SVF_NOCLIENT; + } + } +} + +void barrelsfall_nikkiA_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = barrels_fall_nikki_A; + ent->nextthink = level.time + FRAMETIME; +} + +void SP_props3_barrels_fall_nikki_A (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -44, -60, -49); + VectorSet (self->maxs, 44, 60, 49); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/nikki1/barrel_v4.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/nikki1/barrel_v4.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/nikki1/top_barrel_v4.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/nikki1/top_barrel_v4.mdx", &self->s.model_parts[1]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = barrelsfall_nikkiA_trigger; + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +/*QUAKED props3_barrels_fall_nikki_B (0 .5 .8) (-24 -48 -24) (24 48 24) + +A set of barrels that you can trigger to fall + +model="models\props\nikki2\barrel_v4.mdx;models\props\nikki2\top_barrel_v4.mdx" +*/ +void barrels_fall_nikki_B (edict_t *self) +{ + if (self->s.frame < 90) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + + if (self->s.frame == 1) + { + self->svflags &= ~SVF_NOCLIENT; + } + } +} + +void barrelsfall_nikkiB_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = barrels_fall_nikki_B; + ent->nextthink = level.time + FRAMETIME; +} + +void SP_props3_barrels_fall_nikki_B (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -24, -48, -24); + VectorSet (self->maxs, 24, 48, 24); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/nikki2/barrel_v4.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/nikki2/barrel_v4.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/nikki2/top_barrel_v4.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/nikki2/top_barrel_v4.mdx", &self->s.model_parts[1]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = barrelsfall_nikkiB_trigger; + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +/*QUAKED props3_cut_run_to_car_animate (0 .5 .8) (-16 -16 -16) (16 16 16) + +An actor running to a car + +model="models\props\run_to_car\body_boss.mdx;models\props\run_to_car\legs_boss.mdx;models\props\run_to_car\head_boss.mdx" +*/ + +void cut_carrun_final (edict_t *self) +{ + if (self->s.frame < 44) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + + if (self->s.frame == 1) + { + self->svflags &= ~SVF_NOCLIENT; + } + } + else + { + G_FreeEdict (self); + } +} + +void cut_carrun_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = cut_carrun_final; + ent->nextthink = level.time + FRAMETIME; +} + +void SP_props3_cut_run_to_car_animate (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -16, -16, -16); + VectorSet (self->maxs, 16, 16, 16); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/run_to_car/body_boss.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/run_to_car/body_boss.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/run_to_car/head_boss.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/run_to_car/head_boss.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/run_to_car/legs_boss.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/run_to_car/legs_boss.mdx", &self->s.model_parts[2]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = cut_carrun_trigger; + + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +/*QUAKED props3_cut_final_animate (0 .5 .8) (-16 -16 -16) (16 16 16) + +The final cut scene + +model="models\props\finale\body_bossf.mdx;models\props\finale\legs_bossf.mdx;models\props\finale\head_bossf.mdx;models\props\finale\cigarf.mdx" +*/ + +void cut_final_final (edict_t *self) +{ + if (self->s.frame < 245) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + + if (self->s.frame == 1) + { + self->svflags &= ~SVF_NOCLIENT; + } + } + else + { + G_FreeEdict (self); + } +} + +void cut_final_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = cut_final_final; + ent->nextthink = level.time + FRAMETIME; +} + +void SP_props3_cut_final_animate (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -16, -16, -16); + VectorSet (self->maxs, 16, 16, 16); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/finale/body_bossf.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/finale/body_bossf.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/finale/head_bossf.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/finale/head_bossf.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/finale/legs_bossf.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/finale/legs_bossf.mdx", &self->s.model_parts[2]); + + self->s.num_parts++; + self->s.model_parts[3].modelindex = gi.modelindex("models/props/finale/cigarf.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/finale/cigarf.mdx", &self->s.model_parts[3]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = cut_final_trigger; + + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +/*QUAKED props3_cash (0 .5 .8) (-12 -11 -5) (12 11 5) + +Some cash + +model="models\props\cash\cashstack.mdx" +*/ + +void SP_props3_cash (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -12, -11, -5); + VectorSet (self->maxs, 12, 11, 5); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[PART_HEAD].modelindex = gi.modelindex("models/props/cash/cashstack.mdx"); + for (i=0; is.model_parts[PART_HEAD].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/cash/cashstack.mdx", &self->s.model_parts[PART_HEAD]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->surfacetype = SURF_FABRIC; + gi.linkentity (self); +} + +/*QUAKED props3_cut_truck_driver (0 .5 .8) (-67 -16 -58) (0 17 8) + +The driver driving a truck + +model="models\props\driver\body_driver.mdx;models\props\driver\legs_driver.mdx;models\props\driver\head_driver.mdx;models\props\driver\wheel.mdx" +*/ + +void cut_truckdriver_final (edict_t *self) +{ + if (self->s.frame < 20) + { + self->s.frame++; + + if (self->s.frame == 1) + { + self->svflags &= ~SVF_NOCLIENT; + } + } + else + { + self->s.frame = 0; + } + + self->nextthink = level.time + 0.1; +} + +void cut_truckdriver_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = cut_truckdriver_final; + ent->nextthink = level.time + FRAMETIME; +} + +void SP_props3_cut_truck_driver (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -67, -16, -58); + VectorSet (self->maxs, 0, 17, 8); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/driver/body_driver.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/driver/body_driver.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/driver/head_driver.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/driver/head_driver.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/driver/legs_driver.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/driver/legs_driver.mdx", &self->s.model_parts[2]); + + self->s.num_parts++; + self->s.model_parts[3].modelindex = gi.modelindex("models/props/driver/wheel.mdx"); + for (i=0; is.model_parts[3].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/driver/wheel.mdx", &self->s.model_parts[3]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = cut_truckdriver_trigger; + + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} + +/*QUAKED props3_cut_pinball_guy_animate (0 .5 .8) (-16 -16 -16) (16 16 16) + +A cut scene of a guy and his pinball machine + +model="models\props\kpcut4_pinball\body.mdx;models\props\kpcut4_pinball\legs.mdx;models\props\kpcut4_pinball\head.mdx" +*/ + +void cut_pinballguy_final (edict_t *self) +{ + if (self->s.frame < 365) + { + self->nextthink = level.time + 0.1; + + self->s.frame++; + + if (self->s.frame == 1) + { + self->svflags &= ~SVF_NOCLIENT; + } + } + else + { + G_FreeEdict (self); + } +} + +void cut_pinballguy_trigger (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->think = cut_pinballguy_final; + ent->nextthink = level.time + FRAMETIME; +} + +void SP_props3_cut_pinball_guy_animate (edict_t *self) +{ + int i; + + if (deathmatch->value) + { // auto-remove for deathmatch + G_FreeEdict (self); + return; + } + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + self->svflags |= SVF_PROP; + + VectorSet (self->mins, -16, -16, -16); + VectorSet (self->maxs, 16, 16, 16); + + self->s.skinnum = self->skin; + memset(&(self->s.model_parts[0]), 0, sizeof(model_part_t) * MAX_MODEL_PARTS); + self->s.num_parts++; + self->s.model_parts[0].modelindex = gi.modelindex("models/props/kpcut4_pinball/body.mdx"); + for (i=0; is.model_parts[0].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/kpcut4_pinball/body.mdx", &self->s.model_parts[0]); + + self->s.num_parts++; + self->s.model_parts[1].modelindex = gi.modelindex("models/props/kpcut4_pinball/head.mdx"); + for (i=0; is.model_parts[1].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/kpcut4_pinball/head.mdx", &self->s.model_parts[1]); + + self->s.num_parts++; + self->s.model_parts[2].modelindex = gi.modelindex("models/props/kpcut4_pinball/legs.mdx"); + for (i=0; is.model_parts[2].skinnum[i] = self->s.skinnum; + gi.GetObjectBounds("models/props/kpcut4_pinball/legs.mdx", &self->s.model_parts[2]); + + self->s.renderfx2 |= RF2_DIR_LIGHTS; + self->s.renderfx2 |= RF2_NOSHADOW; + + self->use = cut_pinballguy_trigger; + + self->svflags |= SVF_NOCLIENT; + + gi.linkentity (self); +} diff --git a/gamesrc/g_teamplay.c b/gamesrc/g_teamplay.c new file mode 100644 index 0000000..cdc438c --- /dev/null +++ b/gamesrc/g_teamplay.c @@ -0,0 +1,680 @@ + +// g_teamplay.c - teamplay oriented code + +#include "g_local.h" + +// current teamplay mode (set by "level.style") +teamplay_mode_t teamplay_mode; + +#define CASH_ROLL 10 +#define CASH_BAG 25 + +#define MAX_CASH_ITEMS 10 // never spawn more than this many cash items at once +int num_cash_items; + +char *team_names[] = { + "(spectator)", + "Dragons", + "Nikki's Boyz", + NULL +}; + + +int team_cash[3]; // cash per team, 0 is neutral so just ignore + +float last_safe_withdrawal[3]; +float last_safe_deposit[3]; + +//===================================================================== +// Entity spawn functions + +// .................................................................... +// Cash Spawning during GRAB DA LOOT + +void cash_touch( edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + float speed; + + if (surf && plane && plane->normal[2] > 0.5) + { // let it rest here + + if ((speed = VectorLength( self->velocity )) > 10) + { + self->s.angles[ROLL] = 0; + self->s.angles[PITCH] = 0; + self->avelocity[PITCH] = 0; + self->avelocity[ROLL] = 0; + self->avelocity[YAW] *= 0.5; + + // randomize bounce + VectorAdd( self->velocity, tv( crandom()*speed*0.3, crandom()*speed*0.3, random()*speed*0.15 ), self->velocity ); + } + else + { + VectorClear( self->velocity ); + VectorClear( self->avelocity ); + self->s.angles[PITCH] = 0; + self->s.angles[ROLL] = 0; + + self->movetype = MOVETYPE_NONE; + } + + return; + } + + if (other->client) + { + if (other->client->pers.currentcash < MAX_CASH_PLAYER) + { // they can hold the cash + + if ((self->currentcash == CASH_BAG) || (self->movetype != MOVETYPE_NONE) || (other->client->ps.pmove.pm_flags & PMF_DUCKED)) + { // they can pick it up + + Touch_Item( self, other, plane, surf ); + + num_cash_items--; + + G_FreeEdict( self ); + return; + } + + } + } +} + +void cash_kill( edict_t *self ) +{ + num_cash_items--; + G_FreeEdict( self ); +} + +void cashroll_animate( edict_t *self ) +{ + // reduce XY velocity (air friction) + self->velocity[0] *= 0.9; + self->velocity[1] *= 0.9; + + if (level.time > (self->timestamp)) + { + cash_kill( self ); + return; + } + + if (self->movetype != MOVETYPE_NONE) + { + + if (VectorDistance( self->s.origin, self->pos1 ) < 1) + self->count++; + else + self->count = 0; + + VectorCopy( self->s.origin, self->pos1 ); + + if (self->count > 2) // rested for 2 frames + { + VectorClear( self->velocity ); + VectorClear( self->avelocity ); + self->s.angles[PITCH] = 0; + self->s.angles[ROLL] = 0; + + self->movetype = MOVETYPE_NONE; + } + } + + self->nextthink = level.time + 0.1; +} + +void cashspawn_think( edict_t *self ) +{ + edict_t *cash; + + if (num_cash_items > MAX_CASH_ITEMS) + { + self->nextthink = level.time + self->delay; + return; + } + + // spawn some money + cash = G_Spawn(); + + VectorCopy( self->s.origin, cash->s.origin ); + cash->movetype = MOVETYPE_BOUNCE; + cash->solid = SOLID_TRIGGER; + + AngleVectors( self->s.angles, cash->velocity, NULL, NULL ); + VectorScale( cash->velocity, self->speed, cash->velocity ); + + // randomize the velocity a bit + VectorAdd( cash->velocity, tv( crandom()*self->speed*0.3, crandom()*self->speed*0.3, crandom()*self->speed*0.15 ), cash->velocity ); + + cash->s.renderfx2 |= RF2_NOSHADOW; + + // FIXME: doh this doesn't work, need to spawn actual item's, so the HUD is updated automatically when picking up + + if (!strcmp(self->type, "cashroll")) + { // small dollar notes + cash->s.modelindex = gi.modelindex( "models/pu_icon/cash/tris.md2" ); + cash->gravity = 0.1 + random()*0.5; + + cash->think = cashroll_animate; + cash->nextthink = level.time + 0.1; + cash->s.angles[PITCH] = 10; + VectorSet( cash->avelocity, 0, 10000 * cash->gravity, 0 ); + + VectorSet( cash->mins, -4, -4, -15 ); + VectorSet( cash->maxs, 4, 4, -13 ); + + cash->item = FindItem("Cash"); + + cash->currentcash = CASH_ROLL; + cash->touch = cash_touch; + + cash->timestamp = level.time + 60; + + cash->think = cashroll_animate; + cash->nextthink = level.time + 0.1; + } + else + { + cash->s.modelindex = gi.modelindex( "models/pu_icon/money/money_sm.md2" ); + cash->gravity = 1.0; + + VectorSet( cash->mins, -12, -12, -15 ); + VectorSet( cash->maxs, 12, 12, 10 ); + + cash->item = FindItem("Small Cash Bag"); + + cash->currentcash = CASH_BAG; + cash->touch = cash_touch; + + cash->think = cash_kill; + cash->nextthink = level.time + 60; + } + + num_cash_items++; + + self->nextthink = level.time + self->delay; + +} + +/*QUAKED dm_cashspawn (0.5 0 1) (-16 -16 -16) (16 16 16) +Spawn location for cash during "Grab da Loot" games + + angle - direction to project cash upon spawning + speed - speed of projection + type - "cashroll" or "cashbag" (more money, longer delay) +*/ +void SP_dm_cashspawn( edict_t *self ) +{ + if (!teamplay->value || ((int)teamplay->value != TM_AUTO && (int)teamplay->value != TM_GRABDALOOT)) + return; + + // set the game to "Grab da Loot" + teamplay_mode = TM_GRABDALOOT; + num_cash_items = 0; + + if (!strcmp(self->type, "cashroll")) + { + self->delay = (float)g_cashspawndelay->value; + } + else // bag, so longer delay + { + self->delay = (float)g_cashspawndelay->value * (CASH_BAG / CASH_ROLL); + } + + if (!self->speed) + self->speed = 10; + + self->think = cashspawn_think; + self->nextthink = level.time + self->delay; +} + +// .................................................................... +// Safe Bag, used for Grab Da Loot and teamplay Cash-Match + +void safebag_touch( edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + static float last_touch_time; + static edict_t *last_touch_ent; + static int last_touch_count = 0; + + if (!other->client) + return; + + if ((level.time < last_touch_time) || (last_touch_time && (last_touch_time < (level.time - 2.0))) || (last_touch_ent && (last_touch_ent != other))) + { // reset + last_touch_time = 0; + last_touch_ent = NULL; + last_touch_count = 0; + } + else if (last_touch_time > (level.time - 0.1)) + { + return; + } + else + { + last_touch_count++; + last_touch_time = level.time; + + if (last_touch_count > (int)(50.0 * (1.0 + (0.5*(other->client->pers.team == self->style))))) + { + // let them go away on their own terms + T_Damage( other, other, other, vec3_origin, other->s.origin, vec3_origin, 9999, 0, 0, MOD_SAFECAMPER ); + last_touch_count = 0; + } + } + + last_touch_ent = other; + + if (self->timestamp > (level.time - 1.0)) + return; + + self->timestamp = level.time; + + // depositing, or withdrawing? + + if (other->client->pers.team == self->style) + { // deposit + + if (other->client->pers.currentcash > 0 || other->client->pers.bagcash > 0) + { + int precash, amount; + + precash = team_cash[self->style]; + + team_cash[self->style] += other->client->pers.currentcash; + team_cash[self->style] += other->client->pers.bagcash; + + other->client->resp.deposited += other->client->pers.currentcash; + other->client->resp.deposited += other->client->pers.bagcash; + + other->client->pers.currentcash = 0; + other->client->pers.bagcash = 0; + + gi.sound(other, CHAN_ITEM, gi.soundindex("world/pickups/cash.wav"), 1, 3, 0); + + // make a droping sound + gi.positioned_sound(self->s.origin, self, CHAN_ITEM, gi.soundindex("world/doors/dr1_end.wav"), 1, 1, 0); + + // let everyone know how much was deposited + amount = team_cash[self->style] - precash; + gi.bprintf( PRINT_MEDIUM, "%s deposited $%i\n", other->client->pers.netname, amount ); + + last_safe_deposit[self->style] = level.time; + } + + } + else if (team_cash[self->style] > 0) + { // withdrawal + + if (other->client->pers.bagcash < MAX_BAGCASH_PLAYER) + { + int precash, amount; + + precash = team_cash[self->style]; + + team_cash[self->style] -= (MAX_BAGCASH_PLAYER - other->client->pers.bagcash); + other->client->pers.bagcash += (MAX_BAGCASH_PLAYER - other->client->pers.bagcash); + + if (team_cash[self->style] < 0) + { // don't take more than they have + other->client->pers.bagcash += team_cash[self->style]; + team_cash[self->style] = 0; + } + + gi.sound(other, CHAN_ITEM, gi.soundindex("world/pickups/cash.wav"), 1, 3, 0); + + // alarm! + gi.positioned_sound(self->s.origin, self, CHAN_ITEM, gi.soundindex("misc/cashmatch_alarm.wav"), 1, 1, 0); + + // let everyone know how much was stolen + amount = precash - team_cash[self->style]; + gi.bprintf( PRINT_MEDIUM, "%s stole $%i from %s's safe!\n", other->client->pers.netname, amount, team_names[self->style] ); + + last_safe_withdrawal[self->style] = level.time; + } + + } +} + +// Safebag think, if a friendly guy has been standing near us for more than a few seconds, make them vulnerable to friendly fire +void safebag_think(edict_t *self) +{ + int i; + edict_t *trav; + qboolean noenemies = true; + #define SAFE_CLOSE_DIST 128 + #define MAX_TIMEATSAFE 8.0 + + // first, check if we have any unwanted enemies around, if so, don't count + for (i=0; ivalue; i++) + { + trav = &g_edicts[i+1]; + + if (!trav->inuse || !trav->client) + continue; + + if (trav->health <= 0) + continue; + + if (!trav->client->pers.team || (trav->client->pers.team == self->style)) + continue; + + if (VectorDistance( self->s.origin, trav->s.origin ) > 512) + continue; + + if (!gi.inPVS( self->s.origin, trav->s.origin )) + continue; + + noenemies = false; + } + + for (i=0; ivalue; i++) + { + trav = &g_edicts[i+1]; + + if (!trav->inuse || !trav->client) + continue; + + if (trav->health <= 0) + continue; + + if (!trav->client->pers.team || (trav->client->pers.team != self->style)) + continue; + + if (noenemies) + { + + if (VectorDistance( self->s.origin, trav->s.origin ) > SAFE_CLOSE_DIST) + { + trav->client->pers.timeatsafe -= 0.2; + + if (trav->client->pers.timeatsafe < 0) + trav->client->pers.timeatsafe = 0; + } + else + { + trav->client->pers.timeatsafe += 0.2; + + if (trav->client->pers.timeatsafe > MAX_TIMEATSAFE) + trav->client->pers.timeatsafe = MAX_TIMEATSAFE; + } + + if (trav->client->pers.timeatsafe >= MAX_TIMEATSAFE) + trav->client->pers.friendly_vulnerable = true; + else + trav->client->pers.friendly_vulnerable = false; + + } + else // turn off vulnerability, there is an enemy in range + { + trav->client->pers.friendly_vulnerable = false; + } + } + + self->nextthink = level.time + 0.2; +} + +/*QUAKED dm_safebag (0.5 0 1) (-12 -12 -16) (12 12 12) +Bag that holds the money in the safe. + + style - team that this bag belongs to (1 or 2) +*/ +void SP_dm_safebag( edict_t *self ) +{ + if (!teamplay->value) + { + G_FreeEdict( self ); + return; + } + + if (self->style < 1 || self->style > 2) + { + gi.dprintf( "dm_safebag has invalid \"style\" at %s, should be 1 or 2.\n", vtos(self->s.origin)); + G_FreeEdict( self ); + return; + } + + self->s.modelindex = gi.modelindex("models/pu_icon/money/money_lg.md2"); + VectorSet( self->mins, -12, -12, -16 ); + VectorSet( self->maxs, 12, 12, 12 ); + + self->movetype = MOVETYPE_NONE; + self->solid = SOLID_TRIGGER; + + gi.linkentity( self ); + + self->touch = safebag_touch; + self->currentcash = 0; // start with no cash + + self->think = safebag_think; + self->nextthink = level.time + 2; +} + + +/*QUAKED dm_props_banner (.5 0 1) (-4 -4 -4) (4 4 4) +Temp banner for teamplay + + style = team (1 / 2) + scale = scale the size up/down (2 = double size) + +model="models\props\temp\triangle\small.md2" +*/ +void SP_dm_props_banner (edict_t *self) +{ +// vec3_t end, bestnorm, bestend; +// float bestdist; +// int x,y; +// trace_t tr; + + if (!deathmatch->value || !teamplay->value) + { // remove + G_FreeEdict (self); + return; + } + + if (!self->style) + { + gi.dprintf( "%s has invalid style (should be 1 or 2) at %s\n", self->classname, vtos(self->s.origin) ); + G_FreeEdict (self); + return; + } +/* + // trace a line back, to get the wall, then go out + { + bestdist = 9999; + + for (x=-256; x<300; x+= 256) + { + VectorCopy( self->s.origin, end ); + end[0] = self->s.origin[0] + x; + tr = gi.trace( self->s.origin, NULL, NULL, end, NULL, MASK_SOLID ); + if (tr.fraction < bestdist) + { + VectorCopy( tr.plane.normal, bestnorm ); + VectorCopy( tr.endpos, bestend ); + bestdist = tr.fraction; + } + } + for (y=-256; y<300; y+= 256) + { + VectorCopy( self->s.origin, end ); + end[1] = self->s.origin[1] + y; + tr = gi.trace( self->s.origin, NULL, NULL, end, NULL, MASK_SOLID ); + if (tr.fraction < bestdist) + { + VectorCopy( tr.plane.normal, bestnorm ); + VectorCopy( tr.endpos, bestend ); + bestdist = tr.fraction; + } + } + + vectoangles( bestnorm, self->s.angles ); + + VectorMA( bestend, 40 * self->cast_info.scale, bestnorm, self->s.origin ); + } + +*/ +// Ridah, 1-jun-99, use flag models for now +#if 1 + { + void think_flag (edict_t *self); + +// self->solid = SOLID_BBOX; + self->movetype = MOVETYPE_NONE; + + if (self->style == 2) + { + self->model = "models/props/flag/flag1.md2"; + } + else + { + self->model = "models/props/flag/flag3.md2"; + } + + self->s.modelindex = gi.modelindex (self->model); + + self->s.renderfx2 |= RF2_NOSHADOW; + self->s.renderfx |= RF_MINLIGHT; + + if (!self->cast_info.scale) + self->cast_info.scale = 1; + + self->s.scale = (self->cast_info.scale - 1); + +// VectorMA( bestend, 40 * self->cast_info.scale, bestnorm, self->s.origin ); + + self->cast_info.scale *= 0.3; + + gi.linkentity (self); + + self->s.effects |= EF_ANIM_ALLFAST_NEW; + self->s.renderfx2 |= RF2_MODULUS_FRAME; + self->s.renderfx2 |= RDF_NOLERP; + +// Disabled, doesn't animate much, and uses bandwidth +// self->nextthink = level.time + FRAMETIME *2; +// self->think = think_flag; + } + +#else // TRIANGULAR ROTATING ICONS + + self->solid = SOLID_NOT; + self->movetype = MOVETYPE_NONE; + + self->s.skinnum = self->style - 1; + + self->s.renderfx2 |= RF2_NOSHADOW; + self->s.renderfx |= RF_MINLIGHT; + + if (!self->cast_info.scale) + self->cast_info.scale = 1; + + self->s.scale = self->cast_info.scale - 1; + + self->s.modelindex = gi.modelindex ("models/props/temp/triangle/small.md2"); + + gi.linkentity (self); + + { + edict_t *arm; + + arm = G_Spawn(); + arm->solid = self->solid; + arm->movetype = self->movetype; + arm->s.renderfx2 |= RF2_NOSHADOW; + arm->s.scale = self->s.scale; + + VectorCopy( self->s.origin, arm->s.origin ); + VectorCopy( self->s.angles, arm->s.angles ); + + arm->s.modelindex = gi.modelindex ("models/props/temp/triangle/arm.md2"); + gi.linkentity (arm); + } + + VectorCopy( self->s.angles, self->last_step_pos ); + VectorClear( self->move_angles ); +#endif +} + +// .................................................................... + +void Teamplay_ValidateSkin( edict_t *self ) +{ + // TODO: we need color coded skins, for now, just use any skin +} + +extern void ClientUserinfoChanged (edict_t *ent, char *userinfo); + +qboolean Teamplay_ValidateJoinTeam( edict_t *self, int teamindex ) +{ + // NOTE: this is called by each player on level change, as well as when a player issues a "join XXX" command + + // TODO: player limit per team? cvar? + + + // setup client stuff + self->movetype = MOVETYPE_WALK; + self->solid = SOLID_BBOX; + self->svflags &= ~SVF_NOCLIENT; + + Teamplay_ValidateSkin( self ); + +// InitClientPersistant (self->client); + + self->client->pers.team = teamindex; + +/* + // Validate skins + { + char *str[256]; + + strcpy( str, self->client->pers.userinfo ); + ClientUserinfoChanged ( self, str ); + } +*/ + + self->health = 0; // so we're not counted in spawn point checking + self->client->resp.enterframe = level.framenum; + InitClientResp( self->client ); + PutClientInServer( self ); // find a new spawn point + gi.bprintf( PRINT_HIGH, "%s joined %s\n", self->client->pers.netname, team_names[teamindex] ); + + return true; +} + +void Teamplay_AutoJoinTeam( edict_t *self ) +{ + int team_count[2]; + int i; + + // count number of players on each team, assign the team with least players + + team_count[0] = 0; + team_count[1] = 0; + + for (i=1; ivalue; i++) + { + if (g_edicts[i].client && g_edicts[i].client->pers.team) + team_count[g_edicts[i].client->pers.team - 1]++; + } + + if (team_count[0] > team_count[1]) + self->client->pers.team = 2; + else + self->client->pers.team = 1; + + Teamplay_ValidateJoinTeam( self, self->client->pers.team ); +} + + +void Teamplay_InitTeamplay (void) +{ + num_cash_items = 0; + memset( team_cash, 0, sizeof(int) * 3 ); + memset( last_safe_withdrawal, 0, sizeof(float) * 3 ); + memset( last_safe_deposit, 0, sizeof(float) * 3 ); + + last_safe_deposit[0] = last_safe_deposit[1] = 0; + last_safe_withdrawal[0] = last_safe_withdrawal[1] = 0; +} diff --git a/gamesrc/g_teamplay.h b/gamesrc/g_teamplay.h new file mode 100644 index 0000000..84e1281 --- /dev/null +++ b/gamesrc/g_teamplay.h @@ -0,0 +1,48 @@ +// .................................................................... + +// teamplay.h - teamplay defines + +typedef enum +{ + TM_NONE, + TM_AUTO, + TM_CASHMATCH, + TM_GRABDALOOT, + TM_GANGBANG // Ridah, 27-may-99, just normal deathmatch, but with Kings/Pins teams +} teamplay_mode_t; + + +typedef enum +{ + TEAM_NONE, + TEAM_1, + TEAM_2, +} teams_t; + + +#define MAX_CASH_PLAYER 150 // make this a cvar? +#define MAX_BAGCASH_PLAYER 200 // make this a cvar? + +// .................................................................... + +extern char *team_names[]; + +extern teamplay_mode_t teamplay_mode; +extern int num_cash_items; + +extern int team_cash[3]; // cash per team, 0 is neutral so just ignore + +extern float last_safe_withdrawal[3]; +extern float last_safe_deposit[3]; + +// .................................................................... +// Spawn functions +void SP_dm_cashspawn( edict_t *self ); +void SP_dm_safebag( edict_t *self ); +void SP_dm_props_banner (edict_t *self); + +// .................................................................... +// Other declarations +void Teamplay_ValidateSkin( edict_t *self ); +qboolean Teamplay_ValidateJoinTeam( edict_t *self, int teamindex ); +void Teamplay_InitTeamplay (void); diff --git a/gamesrc/g_trigger.c b/gamesrc/g_trigger.c new file mode 100644 index 0000000..53d1634 --- /dev/null +++ b/gamesrc/g_trigger.c @@ -0,0 +1,1128 @@ +#include "g_local.h" + + +void InitTrigger (edict_t *self) +{ + if (!VectorCompare (self->s.angles, vec3_origin)) + G_SetMovedir (self->s.angles, self->movedir); + + self->solid = SOLID_TRIGGER; + self->movetype = MOVETYPE_NONE; + gi.setmodel (self, self->model); + self->svflags = SVF_NOCLIENT; +} + + +// the wait time has passed, so set back up for another activation +void multi_wait (edict_t *ent) +{ + ent->nextthink = 0; +} + + +// the trigger was just activated +// ent->activator should be set to the activator so it can be held through a delay +// so wait for the delay time before firing +void multi_trigger (edict_t *ent) +{ + if (ent->nextthink) + return; // already been triggered + + G_UseTargets (ent, ent->activator); + + if (ent->wait > 0) + { + ent->think = multi_wait; + ent->nextthink = level.time + ent->wait; + } + else + { // we can't just remove (self) here, because this is a touch function + // called while looping through area links... + ent->touch = NULL; + ent->nextthink = level.time + FRAMETIME; + ent->think = G_FreeEdict; + } +} + +void Use_Multi (edict_t *ent, edict_t *other, edict_t *activator) +{ + ent->activator = activator; + multi_trigger (ent); +} + +void Touch_Multi (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + if(other->client) + { + if (self->spawnflags & 2) + return; + } + else if (other->svflags & SVF_MONSTER) + { + if (!(self->spawnflags & 1)) + return; + } + else + return; + + if (!VectorCompare(self->movedir, vec3_origin)) + { + vec3_t forward; + + AngleVectors(other->s.angles, forward, NULL, NULL); + if (_DotProduct(forward, self->movedir) < 0) + return; + } + + self->activator = other; + multi_trigger (self); +} + +void Touch_Multi2 (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + if(other->client) + { + if (!(other->client->pers.holsteredweapon)) + return; + + if (self->spawnflags & 2) + return; + } + else if (other->svflags & SVF_MONSTER) + { + if (!(self->spawnflags & 1)) + return; + } + else + return; + + if (!VectorCompare(self->movedir, vec3_origin)) + { + vec3_t forward; + + AngleVectors(other->s.angles, forward, NULL, NULL); + if (_DotProduct(forward, self->movedir) < 0) + return; + } + + self->activator = other; + multi_trigger (self); +} + +/*QUAKED trigger_multiple (.5 .5 .5) ? MONSTER NOT_PLAYER TRIGGERED +Variable sized repeatable trigger. Must be targeted at one or more entities. +If "delay" is set, the trigger waits some time after activating before firing. +"wait" : Seconds between triggerings. (.2 default) +sounds +1) secret +2) beep beep +3) large switch +4) +set "message" to text string +*/ +void trigger_enable (edict_t *self, edict_t *other, edict_t *activator) +{ + self->solid = SOLID_TRIGGER; + self->use = Use_Multi; + gi.linkentity (self); +} + +void SP_trigger_multiple (edict_t *ent) +{ + if (ent->sounds == 1) + ent->noise_index = gi.soundindex ("misc/secret.wav"); + else if (ent->sounds == 2) + ent->noise_index = gi.soundindex ("misc/talk.wav"); + else if (ent->sounds == 3) + ent->noise_index = gi.soundindex ("misc/trigger1.wav"); + + if (!ent->wait) + ent->wait = 0.2; + ent->touch = Touch_Multi; + ent->movetype = MOVETYPE_NONE; + ent->svflags |= SVF_NOCLIENT; + + + if (ent->spawnflags & 4) + { + ent->solid = SOLID_NOT; + ent->use = trigger_enable; + } + else + { + ent->solid = SOLID_TRIGGER; + ent->use = Use_Multi; + } + + if (!VectorCompare(ent->s.angles, vec3_origin)) + G_SetMovedir (ent->s.angles, ent->movedir); + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); +} + +void SP_trigger_multiple2 (edict_t *ent) +{ + if (ent->sounds == 1) + ent->noise_index = gi.soundindex ("misc/secret.wav"); + else if (ent->sounds == 2) + ent->noise_index = gi.soundindex ("misc/talk.wav"); + else if (ent->sounds == 3) + ent->noise_index = gi.soundindex ("misc/trigger1.wav"); + + if (!ent->wait) + ent->wait = 0.2; + ent->touch = Touch_Multi2; + ent->movetype = MOVETYPE_NONE; + ent->svflags |= SVF_NOCLIENT; + + + if (ent->spawnflags & 4) + { + ent->solid = SOLID_NOT; + ent->use = trigger_enable; + } + else + { + ent->solid = SOLID_TRIGGER; + ent->use = Use_Multi; + } + + if (!VectorCompare(ent->s.angles, vec3_origin)) + G_SetMovedir (ent->s.angles, ent->movedir); + + gi.setmodel (ent, ent->model); + gi.linkentity (ent); +} + +/*QUAKED trigger_once (.5 .5 .5) ? x x TRIGGERED SCENERIC +Triggers once, then removes itself. +You must set the key "target" to the name of another object in the level that has a matching "targetname". + +If TRIGGERED, this trigger must be triggered before it is live. + +sounds + 1) secret + 2) beep beep + 3) large switch + 4) + +"message" string to be displayed when triggered +*/ + +void SP_trigger_once(edict_t *ent) +{ + // make old maps work because I messed up on flag assignments here + // triggered was on bit 1 when it should have been on bit 4 + if (ent->spawnflags & 1) + { + vec3_t v; + + VectorMA (ent->mins, 0.5, ent->size, v); + ent->spawnflags &= ~1; + ent->spawnflags |= 4; + gi.dprintf("fixed TRIGGERED flag on %s at %s\n", ent->classname, vtos(v)); + } + + ent->wait = -1; + + if (ent->spawnflags & 8) + SP_trigger_multiple2 (ent); + else + SP_trigger_multiple (ent); +} + +/*QUAKED trigger_relay (.5 .5 .5) (-8 -8 -8) (8 8 8) +This fixed size trigger cannot be touched, it can only be fired by other events. +*/ +void trigger_relay_use (edict_t *self, edict_t *other, edict_t *activator) +{ + G_UseTargets (self, activator); +} + +void SP_trigger_relay (edict_t *self) +{ + self->use = trigger_relay_use; +} + + +/* +============================================================================== + +trigger_key + +============================================================================== +*/ + +/*QUAKED trigger_key (.5 .5 .5) (-8 -8 -8) (8 8 8) +A relay trigger that only fires it's targets if player has the proper key. +Use "item" to specify the required key, for example "key_data_cd" +*/ +void trigger_key_use (edict_t *self, edict_t *other, edict_t *activator) +{ + int index; + + if (!self->item) + return; + if (!activator->client) + return; + + index = ITEM_INDEX(self->item); + if (!activator->client->pers.inventory[index]) + { + if (level.time < self->touch_debounce_time) + return; + self->touch_debounce_time = level.time + 5.0; + // JOSEPH 4-JUN-99 + if (!strcmp(self->item->pickup_name, "Fuse")) + { + //gi.sound (activator, CHAN_AUTO, gi.soundindex ("misc/fusetry.wav"), 1, ATTN_NORM, 0); + } + else if (!strcmp(self->item->pickup_name, "Oil Can")) + { + //gi.sound (activator, CHAN_AUTO, gi.soundindex ("misc/fusetry.wav"), 1, ATTN_NORM, 0); + } + else if (!strcmp(self->item->pickup_name, "Valve")) + { + //gi.sound (activator, CHAN_AUTO, gi.soundindex ("misc/fusetry.wav"), 1, ATTN_NORM, 0); + } + else + { + gi.centerprintf (activator, "You need the %s", self->item->pickup_name); + } + // END JOSEPH + return; + } + + // JOSEPH 13-MAY-99 + //gi.sound (activator, CHAN_AUTO, gi.soundindex ("misc/keyuse.wav"), 1, ATTN_NORM, 0); + // END JOSEPH + if (coop->value) + { + int player; + edict_t *ent; + + if (strcmp(self->item->classname, "key_fuse") == 0) + { + int cube; + + for (cube = 0; cube < 8; cube++) + if (activator->client->pers.power_cubes & (1 << cube)) + break; + for (player = 1; player <= game.maxclients; player++) + { + ent = &g_edicts[player]; + if (!ent->inuse) + continue; + if (!ent->client) + continue; + if (ent->client->pers.power_cubes & (1 << cube)) + { + ent->client->pers.inventory[index]--; + ent->client->pers.power_cubes &= ~(1 << cube); + } + } + } + else + { + for (player = 1; player <= game.maxclients; player++) + { + ent = &g_edicts[player]; + if (!ent->inuse) + continue; + if (!ent->client) + continue; + ent->client->pers.inventory[index] = 0; + } + } + } + else + { + activator->client->pers.inventory[index]--; + } + + G_UseTargets (self, activator); + + self->use = NULL; +} + +void SP_trigger_key (edict_t *self) +{ + if (!st.item) + { + gi.dprintf("no key item for trigger_key at %s\n", vtos(self->s.origin)); + return; + } + self->item = FindItemByClassname (st.item); + + if (!self->item) + { + gi.dprintf("item %s not found for trigger_key at %s\n", st.item, vtos(self->s.origin)); + return; + } + + if (!self->target) + { + gi.dprintf("%s at %s has no target\n", self->classname, vtos(self->s.origin)); + return; + } + + // JOSEPH 13-MAY-99 + //gi.soundindex ("misc/keytry.wav"); + //gi.soundindex ("misc/keyuse.wav"); + // END JOSEPH + + self->use = trigger_key_use; +} + + +/* +============================================================================== + +trigger_counter + +============================================================================== +*/ + +/*QUAKED trigger_counter (.5 .5 .5) ? nomessage +Acts as an intermediary for an action that takes multiple inputs. + +If nomessage is not set, t will print "1 more.. " etc when triggered and "sequence complete" when finished. + +After the counter has been triggered "count" times (default 2), it will fire all of it's targets and remove itself. +*/ + +void trigger_counter_use(edict_t *self, edict_t *other, edict_t *activator) +{ + if (self->count == 0) + return; + + self->count--; + + if (self->count) + { + if (! (self->spawnflags & 1)) + { + if (developer->value) + gi.centerprintf(activator, "%i more to go...", self->count); + // JOSEPH 29-MAR-99 + //gi.sound (activator, CHAN_AUTO, gi.soundindex ("misc/talk1.wav"), 1, ATTN_NORM, 0); + // END JOSEPH + } + return; + } + + if (! (self->spawnflags & 1)) + { + if (developer->value) + { + // gi.centerprintf(activator, "Sequence completed!"); + gi.centerprintf (activator, "Armagedon virus installed successfully"); + } + + // JOSEPH 29-MAR-99 + //gi.sound (activator, CHAN_AUTO, gi.soundindex ("misc/talk1.wav"), 1, ATTN_NORM, 0); + // END JOSEPH + } + self->activator = activator; + multi_trigger (self); +} + +void SP_trigger_counter (edict_t *self) +{ + self->wait = -1; + if (!self->count) + self->count = 2; + + self->use = trigger_counter_use; +} + + +/* +============================================================================== + +trigger_always + +============================================================================== +*/ + +/*QUAKED trigger_always (.5 .5 .5) (-8 -8 -8) (8 8 8) +This trigger will always fire. It is activated by the world. +*/ +void SP_trigger_always (edict_t *ent) +{ + // we must have some delay to make sure our use targets are present + if (ent->delay < 0.2) + ent->delay = 0.2; + G_UseTargets(ent, ent); +} + + +/* +============================================================================== + +trigger_push + +============================================================================== +*/ +//#if 0 +#define PUSH_ONCE 1 + +static int windsound; + +void trigger_push_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + if (strcmp(other->classname, "grenade") == 0) + { + VectorScale (self->movedir, self->speed * 10, other->velocity); + } + else if (other->health > 0) + { + VectorScale (self->movedir, self->speed * 10, other->velocity); + + if (other->client) + { + // don't take falling damage immediately from this + VectorCopy (other->velocity, other->client->oldvelocity); + if (other->fly_sound_debounce_time < level.time) + { + other->fly_sound_debounce_time = level.time + 1.5; + gi.sound (other, CHAN_AUTO, windsound, 1, ATTN_NORM, 0); + } + } + } + if (self->spawnflags & PUSH_ONCE) + G_FreeEdict (self); +} + +void SP_trigger_push (edict_t *self) +{ + InitTrigger (self); + windsound = gi.soundindex ("misc/windfly.wav"); + self->touch = trigger_push_touch; + if (!self->speed) + self->speed = 1000; + gi.linkentity (self); +} +//#endif +#if 0 +// RAFAEL +#define PUSH_ONCE 1 + +static int windsound; + +void trigger_push_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + if (strcmp(other->classname, "grenade") == 0) + { + VectorScale (self->movedir, self->speed * 10, other->velocity); + } + else if (other->health > 0) + { + VectorScale (self->movedir, self->speed * 10, other->velocity); + + if (other->client) + { + // don't take falling damage immediately from this + VectorCopy (other->velocity, other->client->oldvelocity); + if (other->fly_sound_debounce_time < level.time) + { + other->fly_sound_debounce_time = level.time + 1.5; + gi.sound (other, CHAN_AUTO, windsound, 1, ATTN_NORM, 0); + } + } + } + if (self->spawnflags & PUSH_ONCE) + G_FreeEdict (self); +} + + +/*QUAKED trigger_push (.5 .5 .5) ? PUSH_ONCE PUSH_PLUS PUSH_RAMP +Pushes the player +"speed" defaults to 1000 +"wait" defaults to 10 must use PUSH_PLUS used for on +*/ + +void trigger_push_active (edict_t *self); + +void trigger_effect (edict_t *self) +{ + vec3_t origin; + vec3_t size; + int i; + + VectorScale (self->size, 0.5, size); + VectorAdd (self->absmin, size, origin); + +} + +void trigger_push_inactive (edict_t *self) +{ + if (self->delay > level.time) + { + self->nextthink = level.time + 0.1; + } + else + { + self->touch = trigger_push_touch; + self->think = trigger_push_active; + self->nextthink = level.time + 0.1; + self->delay = self->nextthink + self->wait; + } +} + +void trigger_push_active (edict_t *self) +{ + if (self->delay > level.time) + { + self->nextthink = level.time + 0.1; + trigger_effect (self); + } + else + { + self->touch = NULL; + self->think = trigger_push_inactive; + self->nextthink = level.time + 0.1; + self->delay = self->nextthink + self->wait; + } +} + +void SP_trigger_push (edict_t *self) +{ + InitTrigger (self); + windsound = gi.soundindex ("misc/windfly.wav"); + self->touch = trigger_push_touch; + + if (self->spawnflags & 2) + { + if (!self->wait) + self->wait = 10; + + self->think = trigger_push_active; + self->nextthink = level.time + 0.1; + self->delay = self->nextthink + self->wait; + } + + if (!self->speed) + self->speed = 1000; + + gi.linkentity (self); + +} +#endif +/* +============================================================================== + +trigger_hurt + +============================================================================== +*/ + +/*QUAKED trigger_hurt (.5 .5 .5) ? START_OFF TOGGLE SILENT NO_PROTECTION SLOW +Any entity that touches this will be hurt. + +It does dmg points of damage each server frame + +SILENT supresses playing the sound +SLOW changes the damage rate to once per second +NO_PROTECTION *nothing* stops the damage + +"dmg" default 5 (whole numbers only) + +*/ +void hurt_use (edict_t *self, edict_t *other, edict_t *activator) +{ + if (self->solid == SOLID_NOT) + self->solid = SOLID_TRIGGER; + else + self->solid = SOLID_NOT; + gi.linkentity (self); + + if (!(self->spawnflags & 2)) + self->use = NULL; +} + + +void hurt_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + int dflags; + + if (!other->takedamage) + return; + + if (self->timestamp > level.time) + return; + + if (self->spawnflags & 16) + self->timestamp = level.time + 1; + else + self->timestamp = level.time + FRAMETIME; + + if (!(self->spawnflags & 4)) + { + if ((level.framenum % 10) == 0) + gi.sound (other, CHAN_AUTO, self->noise_index, 1, ATTN_NORM, 0); + } + + if (self->spawnflags & 8) + dflags = DAMAGE_NO_PROTECTION; + else + dflags = 0; + T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, self->dmg, self->dmg, dflags, MOD_TRIGGER_HURT); +} + +void SP_trigger_hurt (edict_t *self) +{ + InitTrigger (self); + + // JOSEPH 29-MAR-99 + //self->noise_index = gi.soundindex ("world/electro.wav"); + // END JOSEPH + self->touch = hurt_touch; + + if (!self->dmg) + self->dmg = 5; + + if (self->spawnflags & 1) + self->solid = SOLID_NOT; + else + self->solid = SOLID_TRIGGER; + + if (self->spawnflags & 2) + self->use = hurt_use; + + gi.linkentity (self); +} + +// JOSEPH 23-MAR-99 +/* +============================================================================== + +trigger_hurt_fire + +============================================================================== +*/ + +/*QUAKED trigger_hurt_fire (.5 .5 .5) ? START_OFF TOGGLE SILENT NO_PROTECTION SLOW +Any entity that touches this will be hurt. + +It does dmg points of damage each server frame and burns the player + +SILENT supresses playing the sound +SLOW changes the damage rate to once per second +NO_PROTECTION *nothing* stops the damage + +"dmg" default 5 (whole numbers only) + +*/ +void hurt_use_fire (edict_t *self, edict_t *other, edict_t *activator) +{ + if (self->solid == SOLID_NOT) + self->solid = SOLID_TRIGGER; + else + self->solid = SOLID_NOT; + gi.linkentity (self); + + if (!(self->spawnflags & 2)) + self->use = NULL; +} + +void hurt_touch_fire (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + int dflags; + + // JOSEPH 11-APR-99 + //if (!other->client) + // return; + // END JOSEPH + + if (self->timestamp > level.time) + return; + + if (self->spawnflags & 16) + self->timestamp = level.time + 1; + else + self->timestamp = level.time + FRAMETIME; + + if (!(self->spawnflags & 4)) + { + if ((level.framenum % 10) == 0) + gi.sound (other, CHAN_AUTO, self->noise_index, 1, ATTN_NORM, 0); + } + + if (self->spawnflags & 8) + dflags = DAMAGE_NO_PROTECTION; + else + dflags = 0; + + T_Damage (other, other, other, vec3_origin, other->s.origin, vec3_origin, self->dmg, self->dmg, dflags, MOD_FLAMETHROWER); + // JOSEPH 29-MAR-99 + //gi.sound (other, CHAN_BODY, gi.soundindex ("misc/fhit3.wav"), 1, ATTN_NORM, 0); + // END JOSEPH +} + +void SP_trigger_hurt_fire (edict_t *self) +{ + InitTrigger (self); + + // JOSEPH 29-MAR-99 + //self->noise_index = gi.soundindex ("world/electro.wav"); + // END JOSEPH + self->touch = hurt_touch_fire; + + if (!self->dmg) + self->dmg = 5; + + if (self->spawnflags & 1) + self->solid = SOLID_NOT; + else + self->solid = SOLID_TRIGGER; + + if (self->spawnflags & 2) + self->use = hurt_use_fire; + + gi.linkentity (self); +} +// END JOSEPH + +/* +============================================================================== + +trigger_gravity + +============================================================================== +*/ + +/*QUAKED trigger_gravity (.5 .5 .5) ? +Changes the touching entites gravity to +the value of "gravity". 1.0 is standard +gravity for the level. +*/ + +void trigger_gravity_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + other->gravity = self->gravity; +} + +void SP_trigger_gravity (edict_t *self) +{ + if (st.gravity == 0) + { + gi.dprintf("trigger_gravity without gravity set at %s\n", vtos(self->s.origin)); + G_FreeEdict (self); + return; + } + + InitTrigger (self); + self->gravity = atoi(st.gravity); + self->touch = trigger_gravity_touch; +} + + +/* +============================================================================== + +trigger_monsterjump + +============================================================================== +*/ + +/*QUAKED trigger_monsterjump (.5 .5 .5) ? +Walking monsters that touch this will jump in the direction of the trigger's angle +"speed" default to 200, the speed thrown forward +"height" default to 200, the speed thrown upwards +*/ + +void trigger_monsterjump_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + if (other->flags & (FL_FLY | FL_SWIM) ) + return; + if (other->svflags & SVF_DEADMONSTER) + return; + if ( !(other->svflags & SVF_MONSTER)) + return; + +// set XY even if not on ground, so the jump will clear lips + other->velocity[0] = self->movedir[0] * self->speed; + other->velocity[1] = self->movedir[1] * self->speed; + + if (!other->groundentity) + return; + + other->groundentity = NULL; + other->velocity[2] = self->movedir[2]; +} + +void SP_trigger_monsterjump (edict_t *self) +{ + if (!self->speed) + self->speed = 200; + if (!st.height) + st.height = 200; + if (self->s.angles[YAW] == 0) + self->s.angles[YAW] = 360; + InitTrigger (self); + self->touch = trigger_monsterjump_touch; + self->movedir[2] = st.height; +} + +void unlock_sound (edict_t *self) +{ + gi.sound (self, CHAN_VOICE, gi.soundindex("world/doors/dr_unlock.wav"), 1, ATTN_NORM, 0); + self->think = G_FreeEdict; + self->nextthink = level.time + 1.0; +} + + +// JOSEPH 1-MAR-99 +/*QUAKED trigger_unlock (.5 .5 .5) ? +Player will unlock a targeted door when this brush is touched +Can be triggered also! +door's "key" should equal -1 +"target" target ID to match door +*/ + +void Touch_unlock (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + edict_t *e; + int i; + + // Make sure player triggered brush + if (!((other->classname) && (strcmp(other->classname, "player") == 0))) + return; + + // Find target entity + self->target_ent = 0; + + if (self->target) + { + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->targetname) && (!strcmp(e->targetname, self->target))) + { + self->target_ent = e; + break; + } + } + } + + // No target found + if (self->target_ent) + { + // Unlock target door + if (self->target_ent->key == -1) + { + self->target_ent->key = 0; + self->target_ent->targetname = NULL; + // JOSEPH 24-JAN-99 + { + edict_t *unlock; + + unlock = G_Spawn(); + unlock->think = unlock_sound; + unlock->nextthink = level.time + 0.1; + if (other) + VectorCopy (other->s.origin, unlock->s.origin); + gi.linkentity(unlock); + } + } + } + + G_FreeEdict(self); +} + +void Use_unlock (edict_t *self, edict_t *other, edict_t *activator) +{ + edict_t *e; + int i; + + // Make sure player triggered brush + // if (!((activator->classname) && (strcmp(activator->classname, "player") == 0)) || !(other->cast_info.aiflags & AI_DOKEY)) + // return; + + // Find target entity + self->target_ent = 0; + + if (self->target) + { + for (i=1, e=g_edicts+i ; i < globals.num_edicts ; i++,e++) + { + if ((e->targetname) && (!strcmp(e->targetname, self->target))) + { + self->target_ent = e; + break; + } + } + } + + // No target found + if (self->target_ent) + { + // Unlock target door + if (self->target_ent->key == -1) + { + self->target_ent->key = 0; + // Don't tigger door + self->target = NULL; + self->target_ent->targetname = NULL; + // JOSEPH 24-JAN-99 + { + edict_t *unlock; + + unlock = G_Spawn(); + unlock->think = unlock_sound; + unlock->nextthink = level.time + 0.1; + if (activator) + VectorCopy (other->s.origin, unlock->s.origin); + gi.linkentity(unlock); + } + } + } + + G_FreeEdict(self); +} + +void SP_trigger_unlock (edict_t *self) +{ + self->solid = SOLID_TRIGGER; + gi.setmodel (self, self->model); + self->svflags |= SVF_NOCLIENT; + self->touch = Touch_unlock; + self->use = Use_unlock; + gi.linkentity (self); +} +// END JOSEPH + +// JOSEPH 16-MAR-99 +/*QUAKED trigger_motorcycle (.5 .5 .5) ? +Will trigger the motorcycle +*/ +extern int EP_skidrow_touch_motorcycle_that_needs_battery_to_start (edict_t *self, edict_t *trigger); + +void Touch_motorcycle (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + // Make sure player triggered brush + if (!((other->classname) && (strcmp(other->classname, "player") == 0))) + return; + + // Call motorcycle episode function + if (EP_skidrow_touch_motorcycle_that_needs_battery_to_start (other, self)) + G_FreeEdict(self); +} +// END JOSEPH + +void SP_trigger_motorcycle (edict_t *self) +{ + self->solid = SOLID_TRIGGER; + gi.setmodel (self, self->model); + self->svflags |= SVF_NOCLIENT; + self->touch = Touch_motorcycle; + gi.linkentity (self); +} + + +/*QUAKED trigger_hurt_electric (.5 .5 .5) ? START_OFF TOGGLE SILENT NO_PROTECTION SLOW +Any entity that touches this will be hurt. + +it does dmg of electric damage + +SILENT supresses playing the sound +SLOW changes the damage rate to once per second +NO_PROTECTION *nothing* stops the damage + +"dmg" default 5 (whole numbers only) + +"count" is the number of sparks + +*/ +void hurt_use_electric (edict_t *self, edict_t *other, edict_t *activator) +{ + if (self->solid == SOLID_NOT) + self->solid = SOLID_TRIGGER; + else + self->solid = SOLID_NOT; + + //if (!(self->spawnflags & 2)) + // self->use = NULL; +} + +void hurt_touch_electric (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) +{ + int dflags; + + if (self->timestamp > level.time) + return; + + if (self->spawnflags & 16) + self->timestamp = level.time + 1; + else + self->timestamp = level.time + FRAMETIME; + + if (!(self->spawnflags & 4)) + { + if ((level.framenum % 10) == 0) + gi.sound (other, CHAN_AUTO, self->noise_index, 1, ATTN_NORM, 0); + } + + if (self->spawnflags & 8) + dflags = DAMAGE_NO_PROTECTION; + else + dflags = 0; + + { + vec3_t startpos; + int i; + + VectorCopy (other->s.origin, startpos); + + for (i=0 ; i<4; i++) + { + startpos[2] += other->viewheight + ((crandom() * 16) - 8); + + gi.WriteByte (svc_temp_entity); + gi.WriteByte (TE_SPLASH); + gi.WriteByte (self->count); + gi.WritePosition (startpos); + gi.WriteDir (self->movedir); + // JOSEPH 17-MAY-99 + if (other->client) + gi.WriteByte (SPLASH_SPARKS_P); + else + gi.WriteByte (1); + // END JOSEPH + gi.multicast (other->s.origin, MULTICAST_PVS); + + } + + if (other->client) + { + VectorScale (self->movedir, self->speed, other->velocity); + gi.sound(other, CHAN_VOICE, gi.soundindex("world/shock.wav"), 1, ATTN_NORM, 0); + T_Damage (other, other, other, vec3_origin, other->s.origin, vec3_origin, self->dmg, self->dmg, dflags, MOD_FALLING); + } + } + +} + +void SP_trigger_hurt_electric (edict_t *self) +{ + InitTrigger (self); + + self->touch = hurt_touch_electric; + + if (!self->dmg) + self->dmg = 5; + + if (self->spawnflags & 1) + self->solid = SOLID_NOT; + else + self->solid = SOLID_TRIGGER; + + if (self->spawnflags & 2) + self->use = hurt_use_electric; + + //if (!self->count) + self->count = 5; + + gi.linkentity (self); +} diff --git a/gamesrc/game.dsp b/gamesrc/game.dsp new file mode 100644 index 0000000..4487cac --- /dev/null +++ b/gamesrc/game.dsp @@ -0,0 +1,1192 @@ +# Microsoft Developer Studio Project File - Name="game" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 +# TARGTYPE "Win32 (ALPHA) Dynamic-Link Library" 0x0602 + +CFG=game - Win32 Debug Alpha +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "game.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "game.mak" CFG="game - Win32 Debug Alpha" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "game - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "game - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "game - Win32 Debug Alpha" (based on "Win32 (ALPHA) Dynamic-Link Library") +!MESSAGE "game - Win32 Release Alpha" (based on "Win32 (ALPHA) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" + +!IF "$(CFG)" == "game - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir ".\Release" +# PROP BASE Intermediate_Dir ".\Release" +# PROP BASE Target_Dir "." +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "..\Release" +# PROP Intermediate_Dir ".\Release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "." +CPP=cl.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /c +# ADD CPP /nologo /G5 /MT /W3 /GX /Zi /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 navlib\navlib.lib kernel32.lib user32.lib winmm.lib /nologo /base:"0x20000000" /subsystem:windows /dll /debug /machine:I386 /out:".\Debug\gamex86.dll" +# SUBTRACT LINK32 /incremental:yes /nodefaultlib + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir ".\Debug" +# PROP BASE Intermediate_Dir ".\Debug" +# PROP BASE Target_Dir "." +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "\kingpin" +# PROP Intermediate_Dir ".\Debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "." +CPP=cl.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /c +# ADD CPP /nologo /G5 /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "BUILDING_REF_GL" /D "MAKE_ALPHAS" /YX /FD /c +# SUBTRACT CPP /Fr +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 +# ADD LINK32 navlib\navlib.lib kernel32.lib user32.lib winmm.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib /nologo /base:"0x20000000" /subsystem:windows /dll /incremental:no /pdb:"..\Debug/gamex86.pdb" /debug /machine:I386 /out:".\Debug\gamex86.dll" +# SUBTRACT LINK32 /pdb:none /map + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug Alpha" +# PROP BASE Intermediate_Dir "Debug Alpha" +# PROP BASE Ignore_Export_Lib 0 +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "..\DebugAxp" +# PROP Intermediate_Dir ".\DebugAxp" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +CPP=cl.exe +# ADD BASE CPP /nologo /Gt0 /W3 /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /MTd /c +# ADD CPP /nologo /Gt0 /W3 /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /QA21164 /MTd /c +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x20000000" /subsystem:windows /dll /debug /machine:ALPHA +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x20000000" /subsystem:windows /dll /debug /machine:ALPHA /out:"..\DebugAxp/gameaxp.dll" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "game___W" +# PROP BASE Intermediate_Dir "game___W" +# PROP BASE Ignore_Export_Lib 0 +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "..\ReleaseAXP" +# PROP Intermediate_Dir ".\ReleaseAXP" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +CPP=cl.exe +# ADD BASE CPP /nologo /MT /Gt0 /W3 /GX /Zd /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MT /Gt0 /W3 /GX /Zd /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /QA21164 /c +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x20000000" /subsystem:windows /dll /machine:ALPHA /out:"..\Release/gamex86.dll" +# ADD LINK32 kernel32.lib user32.lib gdi32.lib /nologo /base:"0x20000000" /subsystem:windows /dll /machine:ALPHA /out:"..\ReleaseAXP/gameaxp.dll" + +!ENDIF + +# Begin Target + +# Name "game - Win32 Release" +# Name "game - Win32 Debug" +# Name "game - Win32 Debug Alpha" +# Name "game - Win32 Release Alpha" +# Begin Group "Source Files" + +# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;hpj;bat;for;f90" +# Begin Source File + +SOURCE=.\ai_bitch.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\ai_bum_sit.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\ai_dog.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\ai_punk.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\ai_runt.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\ai_shorty.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\ai_thug.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\ai_thug_sit.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\ai_whore.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\ep_all.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\ep_crystalpalace.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\ep_log.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\ep_posionville.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\ep_radiocity.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\ep_shipyards.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\ep_skidrow.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\ep_steeltown.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\ep_trainyard.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\g_ai.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +DEP_CPP_G_AI_=\ + ".\g_local.h"\ + ".\game.h"\ + +NODEP_CPP_G_AI_=\ + "..\qcommon\qcommon.h"\ + "..\qcommon\qfiles.h"\ + "..\server\server.h"\ + + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\g_ai_ents.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\g_ai_fight.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\g_ai_memory.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\g_cast.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\G_chase.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\g_cmds.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +DEP_CPP_G_CMD=\ + ".\g_local.h"\ + ".\game.h"\ + +NODEP_CPP_G_CMD=\ + "..\qcommon\qcommon.h"\ + "..\qcommon\qfiles.h"\ + "..\server\server.h"\ + + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\g_combat.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +DEP_CPP_G_COM=\ + ".\g_local.h"\ + ".\game.h"\ + +NODEP_CPP_G_COM=\ + "..\qcommon\qcommon.h"\ + "..\qcommon\qfiles.h"\ + "..\server\server.h"\ + + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\g_func.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +DEP_CPP_G_FUN=\ + ".\g_local.h"\ + ".\game.h"\ + +NODEP_CPP_G_FUN=\ + "..\qcommon\qcommon.h"\ + "..\qcommon\qfiles.h"\ + "..\server\server.h"\ + + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\g_items.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +DEP_CPP_G_ITE=\ + ".\g_local.h"\ + ".\game.h"\ + +NODEP_CPP_G_ITE=\ + "..\qcommon\qcommon.h"\ + "..\qcommon\qfiles.h"\ + "..\server\server.h"\ + + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\g_joe_misc.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\g_main.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +DEP_CPP_G_MAI=\ + ".\g_local.h"\ + ".\game.h"\ + +NODEP_CPP_G_MAI=\ + "..\qcommon\qcommon.h"\ + "..\qcommon\qfiles.h"\ + "..\server\server.h"\ + + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\g_misc.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +DEP_CPP_G_MIS=\ + ".\g_local.h"\ + ".\game.h"\ + +NODEP_CPP_G_MIS=\ + "..\qcommon\qcommon.h"\ + "..\qcommon\qfiles.h"\ + "..\server\server.h"\ + + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\g_pawn.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\g_phys.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\g_save.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\g_spawn.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\g_svcmds.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\g_target.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +DEP_CPP_G_TAR=\ + ".\g_local.h"\ + ".\game.h"\ + +NODEP_CPP_G_TAR=\ + "..\qcommon\qcommon.h"\ + "..\qcommon\qfiles.h"\ + "..\server\server.h"\ + + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\g_teamplay.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\g_trigger.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +DEP_CPP_G_TRI=\ + ".\g_local.h"\ + ".\game.h"\ + +NODEP_CPP_G_TRI=\ + "..\qcommon\qcommon.h"\ + "..\qcommon\qfiles.h"\ + "..\server\server.h"\ + + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\g_utils.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +DEP_CPP_G_UTI=\ + ".\g_local.h"\ + ".\game.h"\ + +NODEP_CPP_G_UTI=\ + "..\qcommon\qcommon.h"\ + "..\qcommon\qfiles.h"\ + "..\server\server.h"\ + + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\g_weapon.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +DEP_CPP_G_WEA=\ + ".\g_local.h"\ + ".\game.h"\ + +NODEP_CPP_G_WEA=\ + "..\qcommon\qcommon.h"\ + "..\qcommon\qfiles.h"\ + "..\server\server.h"\ + + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\game.def +# End Source File +# Begin Source File + +SOURCE=.\m_bbox.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\m_move.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\p_client.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\p_hud.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\p_view.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\p_weapon.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\q_shared.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\vehicles.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\voice.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\voice_bitch.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\voice_punk.c + +!IF "$(CFG)" == "game - Win32 Release" + +!ELSEIF "$(CFG)" == "game - Win32 Debug" + +!ELSEIF "$(CFG)" == "game - Win32 Debug Alpha" + +!ELSEIF "$(CFG)" == "game - Win32 Release Alpha" + +!ENDIF + +# End Source File +# End Group +# Begin Group "Header Files" + +# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" +# Begin Source File + +SOURCE=.\ai_bitch.h +# End Source File +# Begin Source File + +SOURCE=.\ai_bitch_tables.h +# End Source File +# Begin Source File + +SOURCE=.\ai_bum_sit.h +# End Source File +# Begin Source File + +SOURCE=.\ai_dog.h +# End Source File +# Begin Source File + +SOURCE=.\ai_dog_tables.h +# End Source File +# Begin Source File + +SOURCE=.\ai_punk.h +# End Source File +# Begin Source File + +SOURCE=.\ai_punk_tables.h +# End Source File +# Begin Source File + +SOURCE=.\ai_runt.h +# End Source File +# Begin Source File + +SOURCE=.\ai_runt_tables.h +# End Source File +# Begin Source File + +SOURCE=.\ai_shorty.h +# End Source File +# Begin Source File + +SOURCE=.\ai_shorty_tables.h +# End Source File +# Begin Source File + +SOURCE=.\ai_thug.h +# End Source File +# Begin Source File + +SOURCE=.\ai_thug2.h +# End Source File +# Begin Source File + +SOURCE=.\ai_thug2_tables.h +# End Source File +# Begin Source File + +SOURCE=.\ai_thug_tables.h +# End Source File +# Begin Source File + +SOURCE=.\ai_whore.h +# End Source File +# Begin Source File + +SOURCE=.\ai_whore_tables.h +# End Source File +# Begin Source File + +SOURCE=.\ep_all.h +# End Source File +# Begin Source File + +SOURCE=.\ep_log.h +# End Source File +# Begin Source File + +SOURCE=.\g_ai.h +# End Source File +# Begin Source File + +SOURCE=.\g_func.h +# End Source File +# Begin Source File + +SOURCE=.\g_local.h +# End Source File +# Begin Source File + +SOURCE=.\g_teamplay.h +# End Source File +# Begin Source File + +SOURCE=.\game.h +# End Source File +# Begin Source File + +SOURCE=.\m_player.h +# End Source File +# Begin Source File + +SOURCE=.\q_shared.h +# End Source File +# Begin Source File + +SOURCE=.\veh_defs.h +# End Source File +# Begin Source File + +SOURCE=.\vehicles.h +# End Source File +# Begin Source File + +SOURCE=.\voice.h +# End Source File +# Begin Source File + +SOURCE=.\voice_bitch.h +# End Source File +# Begin Source File + +SOURCE=.\voice_punk.h +# End Source File +# End Group +# Begin Group "Resource Files" + +# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe" +# End Group +# End Target +# End Project diff --git a/gamesrc/releasei386-glibc/GAME/g_nav.o b/gamesrc/releasei386-glibc/GAME/g_nav.o new file mode 100644 index 0000000000000000000000000000000000000000..9320a9f786ce0c2a1e43363a18ef00af4a267512 GIT binary patch literal 17324 zcmcJ04|rA8mG8dE0WJ_cR~t*js8>9cfHB@k_!F9rNytCx6>nllm=+rYxrf}CKQuWP z&C>l5;R zYwvw-ZZ1*r`#Sgg&RKiyKWnYM_F8MNy-)IBd9cFc@i6!2Vd-oVW6Zc!v=nfV!{#zC ztFOEJ458oNeKH-uF4KI?=NB;6!a`?0otT)gpQY9o=DbL--Z9evLiXOH028lUCv21I zEnf?@T`_%|IjDhvnMJLRdENA#IDw_px0!=k-~LX+N%O3-K1JUA@%#^lAT!1>vs=qz zYODwn3aMva^ku7f^l-W$Vn# z@656xj%Vn&ALEvsG2clyFZg%V;dC#tP^L*N_<<7qIb2uZPow>hv*dX4W zijb_v?h$OQkHNQhIQp-t6fDy&9Jn408U!t=2>5= zz1gjrrekFTI))YKR#3~dd$VUTrte<$V%n~29CJCeC0r+eAVJM{Qt)cN0EwDIG~J&4 z=m-xw#nBd4C)`aCvzczql;VXHtB!20$o5zjUS23stcna#@>&%>l!~b_lNYElOO()< zty{bNBy5guty}m|Pz&x~r;U_nj$jUUtrj?zVbyB6BduC4yz9+uZ3Bt{-KzMSIhgrS zg%%qyt}aU3er4|m#%%MSa%MngLpfEUF}wFAFC+iD%I;}Gi41zy{)(Kjnb!EJiX60) zR@8oHLH$EHj=1@ z9(~nne+2@DoF7HBLy0b;)*SS~9FC>!x>-aKhuaxCl86W;PXJ83?wCJKj57x_tdE4@ z`A+tkXS1fUyMR7aUNJF&cNu?|@^>+R{|SE=@%L)}Ud7)l_`86=Z{zO(f9LUcE`Kkb zn8+X3?ec}Xd46KoOx-GrF0HW3y<*bVkX@c3izlq}6xU$*PRzrjR%Rbr4?-rqN<-|O zz>J(by>N?ciVs0evkUDz6yRFnzp1f*Mze0u(hJKMs0oA3BTEgtmFp&>cdZ+2^b8N+>VwrW0DXOm-}<-_0N z!)F*vS`;}_JyxlO)MMou1^)n12)InMFfx|}<+{-A$|~sQiU)ma|Laf`e6y^6sXkFz zWnNSbbu4W(E~ei*7a>NsqE)@)(W`~`I*+^o_BD2~GVyvM8f5X<5=dQR>|=aq2F$@A zQeT;F7BcnVX&4S_{ZvbOHM9c6pfcNd-fJ1~j&7|Ao&EYyS>ak*)3U-K`QCh#zK04~ z5_N^OT7eo1gQ9NNSLwaOYHR}`pdYyR|KQE{()UalMKyAeANEh?Mq2A zJNPiIRwk#{YmvOITBft!TZ6C?G*5VI_);Lwlp(1odoBZhT#VpSY@YSLU8H^MPf;$@ zVLq#1KI7&7G$UWP*TWj>7e*I5&wd1gBQxV|zIcO=FZ{({VDs*rr&G|Ofs-- zHcgNu4$wXV22e(I6`FkNfl+KHy&tHt*-%*i08IomszAe!0V~&107g^|t_&6;(nc%M z2>Yrd^&6{QovZ!Bg|F|tnY66ix9b*WVZkxQWPE%`VfVVF#=H{f-B)4WJv9w4KCSge>vkz zh!y{b4Ak%?Owm;V^t3l9m4;2R_IXm;m;yEBm@r!^aDxR$ZY~E_U%>8*RuS?7+#meY z_(L`pmMouAMD5Jzp>6`J3w8kdA@1S{6je z0&oA$E5J8f@b!bQ+Ak7446|F0cy-%`Gr$T}_23IA_31WGd}%d&dg1?7W4lqS_Mdi? zM@c4_W6oN=@HI6SLA`GNVM0Af0Y~kBjU=&a4}oN@4_#m;(QVi}YPHN7=aEm)M>q%s zAdZqA+H=-oB$8AThRcS{K`*RcXv~6%d$~J{5gD!oOF(|TXkUVMsi(DyWz!xw)<9xK z|5Rl1&Wi;w(a~A)b|wDjv?V4v*9{5rGSNqfXV)p#Bh(L4NKqliqr`?BeUWyU_~7#S*d$gqX}*z0?;jlV3{=lC`wbEYf;lTm2epdtNq;wM(_ye zY3EX*;UiwSq))f`?urQg@_T7$K!vdy#(r@kI$yU{z3^qV_wONtUKm`uR*n4?FFuPm zcC8=a4PHKq666eS;3|Nr6!5?mfQbc?0#||czoezW(7`PeWOpt#prO;8ce-&Tm}Deo zch1@gLsg&uAL{e9IS7s)6`tO?SV##U#FD$JwTwrDs4p0*!oBn%t`O2PUk%xpW~`Trp7Yg1@8XPyo>U7R zBzcB;wkp*h(cIKK5S=Fs$vQWdPiLOB9vsB%WzI}>|(MQk2tNB^?Xtsow@rp9AeXIT4+0LuCA{G*jl|F z?_9g2fHu`^$W=?{D!vB=wT;#0fZ}FsUWCZCUxp8eZJ>nU^H>=R(c#`yHuH`{b|xZA z)ye!}=pc(luLsCv(fK3L?Z}y=iOqO{x?8Wi1E9OzXJe?kMD5RMbl83nmcu_UX=s_YnVv0_>e>VVN0U?hZNS8<`^Piu#PN>&ceJTQ}hjAv#OnnJiph;cze z>m9S0YU;5VRn>MWH-=oE5kzl*x(i%&^Hcx4@iMJB%g7v4tntx!{s5_6YM}4UnD#WW z-Kb@Y^94#sY86_u_(m;Xk*Xdwb_TUvMQShQGH)Q} zxD$(GdzEuiV>nk#jK))qh|bEPl&cx!1NYh$UZi~)b_HdBKD)vPkm_equ9;Z_x zGiDuE08aLe_dJK)UjgptxOsd(Kfu0o+$Zp}WvMdPYPF!W0n4=!=9eKtU2{51Ppg3- zWU>HcvLW+?Qd4bL!0O=YgV}}MTF|%(dd+mrj)$)#FEDH!$io$^ z1FchiOSgZ<8JXC;557wSrXfmac|jC&cI;Z9qn`Nt@i)lxW{i#)*Nw*Eb6iffe<(%L zz9|i`FwOiKH-zW{>*e_Oi(x2}0Z`rZUqGGCY*=T_9Pq-hln`7nTk6c~*c(Yq4_qd5 zQ|>b}(+p#nTuvjw>7FevNCX?~!?s z8k5Y17Rpt>ykB+fW=sGJ+N{JMry+b*4Rwm4Bt{wYhH&9S4m=is4Z3rfOSOKgUC`%t zFn=ce*-I7V(l(ZoD*?9_2p6I#ZY|RHl9A8gw-&iXVbw=B8Fv5%Fb;vlOQ*LQn6I;r zt}Fc3zu9eyJCPgh`3duk{~*<%GRY-oao1E3&$_7$pCmW!0c}Ek!bNGJ5!$+iWax{t zuOert#(qtmrT?q3SAn_KrN-zG@<)gV(;DffFJ+`+CzxR@b?mLeE@`XXh&v$}58iqe z)?N^owZevJzrju#5Y`)ek7hdmp;CT>gKh8$;MM$$j2_#u6Z{;p9@hs%RC*ZQ58Y_rj)O=J zRa27U*oM%CJ4=Hss`np|iNmFG;8N(BquUPr&UYm*OX5H$O4Y zHeZqyBH4oRYK#r6fda{}%zq3aKHy4I)c2HOOX2mWlsczFMh7fZ0LG5>$cf{i#XV7t z9fIg)zt}vlckCT}Cdq+J-P4XbHy(A1nf@p#9-Y|z9tETt$U;G`x^7A^%Ey55eIj-? zU|%JTWr<1i1+1@g9-)AQgE2{5L+L$kLGmkh+?)95BuR%&%!#I~Th(d$kY{4zIHHI=Jv1Xv7>&2!tDEdp z?LraJK+_zgbk2{1g-eHMh=^(qHX|Q;TI&J9-VdUSE+tbh==>a1DD2V93tKh68Y@S3 z2i^N|gEZxWgWqecM>j+yBFl_<_91b>KWw)?Om`f(2EmQtfeUDyY%(4uYvi{$Scl$m zH8zU&%h7eUQ-{O&q*f6PjP0(C{xR29JyxeBRy2hvEoGYZA5tTjB(BeThr6?pxHncSqMpQX@Ok9|+NRJ~T?)R7~}`xoIzMR25SIFd$b26rU7r1eWj z(zqi*#Ob^!>tu^NW%bdd`4m;VACX{F(XU`~tGENY&XaYraLCw?FIQOaBe+5O!^EyP zc_#~(th_Qv?2?vH+~;qcCPr_CzfeTOCDT(-IaY3mdCEH_9E(-kKkb5SN3Cn~ShWMw zcB(O z)l}O^jlo|$3-ws_q`M*j)7gmM+f9ZF^4j9du$u#X@N}lL5%IHCGZMj*mXKmFhbh6c z1A2sc?3gxW(%L{_#+Qqibc06Uc_!oK7whGZ8!tbH-{r+iQpab<%Pi<5OPLZcX&rTo z;-wtQ&(1&%LtrnXv3=nVQdbi7-9l(<=Gu7C8 z7$K%IvX2t5kmWmjaH{Uko_7-;{HI#Cbx1EGWH5TIR=W7mPJ zA_TWfbL_PlR+Tpi^;uOJQl{b@`v^_j>Z5m3WjC*+cT!~!ucY^6WxdY|`I68~E0mdp zW?7*uiH35-oUJ{yI-;`2oA!Pw==BNI+>wd7Wud~IXl!nR+c-;8V^&RzUNK3r6*cA|+t#ej@zjQ;AZMfm~}>M`L1>akw#3!s#n*o>hF z@mBzsK}HOB$xlBF!*n@N+uUeZFVk6v>K7GH3`Zg1<@O zdq5%*%h2GzFm^5e-hl5ccG^$UjCnFf7>ahmN^>1nq06BybU9R&RD~!(Y6&J)`4Biz z6-q>!PsD0exr}i;`V!Z#jPLMJ<68*=4~6{Zd;Xf1G=8rM>yq~s6h;bK6xlDN$eS0} zf%siV9c59nKlx(s{em?`tkl3{ouW-`-1x3}(Gy+HL(>s)8r(;hy>vfI5=d$|lw2b7 zO7mix+WU7fvE;y}eD)}W(B0HqZg26)L|5FjuI9VEUv7=q&7v~0(~g_i%}TSU>}EY) z4|cPJ+p7I!_cAO9WsyLxpJ$ClkYixRo5*qP&zvz9Fbj6YcgN!7Dfw^(mi)&o3+zL@ zQz|8^#N8x|`P#+VCeguX@D_c_ky-)ZGoV9-F$)O;Vt=slT3=8KZ|uNaX=4 zm&m7hvRqt>Pao(?eduAI(T}C{OQz?x(OCWfuoC$cr_d()cm`gchVNyyVLWK_hiJ>P zD+AG{hvaa}f)`Rk{`24+$j=Mp6J+g;+ZvkgZ*OdiY!>D4rsx)y9|(x1j;%(dE%HE^ zw>3t#HX6+UKmzuVs#Zrt1)Zp!sX+Z#8vhW$o|e>3Wgu)n>dDLjX*U4LiD z&w?fE%KR)8EUERg+VWtzpOvn!UFT=(!rT3R=Fe%0ZoV(lzGaD@(J22-ip@))`qJ|e`oAJ^7g8NPByUeKAo|gd=)HpS6QzHa`L~tt zJ`fZ1E7z=9?a!%Pw|jx8*HkEU)YSHluM9pwTH{vs*I4I}DcB8E(xJrKU!s zk>zdb>SB5A9Yz>U9inP;M_XICoxV<9_U~Hs^x&B(M_|8X@7^pC0PM2-cO%}jWtqTl zS7T-{PO78v)Q@bHh7wNRNx!UI#x$ysKbIcaG4*%*72V?Y5YX+n0w_Xv;z#{56PVyd zDE-9-u}LEYzYzKjOvASfZAsP4ckA@@u0%gqHlnAY-ms*3HG&qMRWgYQG0%qDggxw*e9j7w5lS8=pILbYE-2Ms_97}4?08TQw{WF2n zpSigBV&FeX!dC)+4!BFN9Qg61_6@)XlW_Xv_O^XLA30fD`X_K;qvC=>CZRjuhMho((tHF8kBp z7q~y_{}bRU+gfP z{tLiA1>Py~SAlQ+3fi#&5dYr*fASh!!2%NgAAm=%W9)CF{25rBsv8*FBinBR{)>f- zU5x-o{R?RE zKrWHDnQhs;`L+gZfLkM!O0bSd-m(JL(UP}pIcsg~G8#5f0?|NeL*B9#qDtpELql8F zmb_&v*|zZJhPFt1!`8-5BhuKKR}e^4>Csl;`2ug;(I9i5yn@>jRieu>W^^`g4mY$l zcHNg(P>>+NQ?9%M$t0P=suT)^$rP3+M95pd%44Ii-Tw&Ve;ma%mubq#m4M~srqMr2!f9kS3a)=(L|tF$E8a92ge-Q~3nwI!v& z@&?uxZtDsgY)j-b5@*Urr^}g%Lnzw0C7jHnHM}j{%9+=9MvN&<)PD_6rAZpzr)g_v zq}|YYc}-*MW@@-Q+Nr}zcwI?T6IIoAtO>Wab|tz+Tak~~i9~p6Wew%jqGLs*y{WRJ zv9%m2AF-|s8${)f_NMTTijK~b9g!|p7v5}ibe2WBjK+4!GMQ`*odqcS<^=AN=LX3G z9Jl+wb895rZZsH;t@p95o#D;=sMN5nBeI!#Y~2*q`4CakJ6c;i zwud{r7{ecPu{lez_fTv@5{!_@(sLO@6`PINM)@wmQmRL8O1UKA-yuAYvHK)Wahd8( zsz=UwP~tx#Jir+J!42_=6An6*5T@V8*gOPS1wnoRAn~QVf#5GC^kBasyhOq_3BNDl z&n3Jl;mwGz#HSjNbDP&=xsz&OyeH|r22oC zxNnZAKLSYo{u>~z>l=WxNp~%j+lZ4v|g3eArk~=2rekW@+^=r45*Z1eF;bVe+4AIPs#RwlJH6#6qPmb zZ-QmG005-^`w7SRzmfO=AdNpoIQYaRyzVN|zYdV(iAvl8r2dBpNB5}n^keExN!|5Jd(e~@tSKMhFq#wEP@dNJ-%f}lT65cKPj zThq7)0BPJlKpOY7gs({WA+>)4=Q_WT{~AD&-!I`of*AKpK%!r8qoDs|K&l@m9OJ*b zP~eq-)bC9|;(zx|qW?C)^kVEM68@O#OE4ag=q%7g`yxQ40P%5=sDA)ZsX{y?cn8iq z1Tmih+5Vb@SA9+NF9IZa)=S(Z9P%8M_-hhBBk>D>B-f0^=m);pfFw^oAk}|E)^C#a z+hzS8S^r~Me@f#2LJ;!3FY7;%aB&XmgU}x!(XWxv03kV0d zUgBO{3ekRe1t5*j1SGlvS^w7r*D&_?vi@ztp%)cvLi)%jcn9J$LCC8E()dRtepKSm bNO%U2(anoPNK5 z_dDPDopWz`A(86$csxuF5A(7ekFf=xn|Yi=C%c>Z*$X45*U3Hm=86|!pI3smrG)G< z1+#zM#n>x;d-fun`qj!;mE-olN{_E{fBBOC?91v(rB4ae3?)$B^j+&vUW6H}TqS*&D+}e#;F;zEM2_WhI_F0`J`VXou`5c!Etl!C17; zd6JwbI1sH9&lkiqw`H9mZqNE1Z)mO#ieV+_`ICqQjkC1yKY9Wc3DCq{B`(<=5#a@U zseCE8g16Ki^e%TrBVAE)V~dyBG0fOv0+@K<)90UNY&PyzuAR7LKH1xQJlvTaJo9k4 zJMv_tJMtJ~k89G!_{vl~|-;S~^mu8%mq`yk4+e z9k=)QFv@6e`$Rb%{|EFn5<`5p*hBDJWf1r^8WYBY6r<;=7eAGv( zm+Akidjd84G3B7TkaU2wHjQU6$;L;Mk4@CYgiRpV?Sn0!q4-fG_ToE;oYY2jG1Q$R zLk!8$xF)3r(8vV@@gDQu(7Ne%Q)fgUl{TmS0LZV z4m3WnYv+`gr|uScS<9|!FFJojM4koSi|6_M7ctsbQrHCKKZhB^d>@nQ$AEHBK8v}A zxq^eD{2Q=ok2DXmKkD;9>KRS)-){03oBWTP{G}%UvhZoE#P^->x9eW+|Ik$bv+zGb zE2*AMs0D3WP3wkHilo^@I^C_}HJi*CdM3gK<0EQsQP(WJ7X^c6MrUd=HPjPNsYCt! zrxU~KaJ(m#P}xL|*Cus~3Qra?`b@uBjL+msY}_!-BG1M%8KM|AsiwpVQ+ajV(26=t zNXVQkX!%^)we_*732vE_RxY1=UFVLLo7AiOap4QS?J)=&W zxit8U$+4+%zJP0un}%V&rWZ^2zXW#|m$x10g_9Eg2(T4BEC`$ySP}S^z;^|HD3G7W zJ&gSdpLn-LJcI)$z9Ryo0-qAtEAW)SQJ@bz^TK~m;70;K6Syq!iokCLt^w)!cHBGK aR}x6;4+)$X_>RC|fK>M=?g8Pnz<&T9`ZkmR literal 0 HcmV?d00001 diff --git a/gamesrc/releasei386-glibc/GAME/g_nav_io.o b/gamesrc/releasei386-glibc/GAME/g_nav_io.o new file mode 100644 index 0000000000000000000000000000000000000000..23ce744f9da569bcecc525f88ff377351df63737 GIT binary patch literal 7340 zcmcgxeQ;FO6~CJ-vc|0&FhHtNp8C*;bV-o0hEgYi-2~$nLI|Ye*Sgt#k1T9<>E}IXXl=Fild4UCK-5+T?O2J`ns)4r7_ioMqIQt&@7#M|vPnqW zzxpQoe)oLbbI(2Z+;i`4wgyABE|-frkBb$uQHrrorU}VH4(03u=3(1T-3MxQ^O{v3 z68F|^M+yPfcTZ2p2_8M zW}jl47m{4iR!A+iR=O*Cvu~d{2zl<)Uu0i4`#k37XER>gEGEq%x4n@yI{iKN3)H_E zHp>LhHfM|)TmybW@SB}3iq)+?43(9R{-vY(wmCbWxN?-p_QTojxy($<1QYYxa}}V` zsxHeNhll+EwZsiZ^E%f$w;fQG20lR|3s&L+l?|ySzMj>ry6SkxfDrZvX#^%5u-HI#iP`5K`1qZZ?+YmtCh$um-iOCa9H9P`k{on>$tw9hV7CKk?spYy^#eDbo zfvh}@SYwi<%-1uu>J#G@-3ooPUPp|Jb@PkdmU`W4UZ!t+5;5>iFhaT(}#0 zP^k*l%{7{6CH~gg0VA1X?GtXfV zwrGg~N4A|BgfrupSnR=Um-+#OwrS%Hf_8L&mwF074r=Dkr(z#px9L7mrD%6|NR2);hYK-=^P09}%T6%(+SHlX{P+^%n zg64~l(^4?s_DjUdg1ZdDGH~`I#Hd=T{Q{M{gH!N2bAbKhr@pRxAvsqdY2|2LPCj-v zm&*=wzi1zeVj#B*UqGaYc|(Ekek$CKS^=g;=YW_BG%8Qa6cGF80qA1=@Mf)F7U0!z z0Xlb5ImsP|<{31yfk!=@zmCb_x>XN(3%;H$hn7P%pzWp6F#KX?NQy4y9I2B6kF>0Z zo}d)cRygYGP9tF4b&;R>%1|U{`fJ>Hk1dm)F=cYG#ZRme!_#c{cWw6)+kG$ovTq#v z^OQq_DB>>np%0518f|kg%r#iGVuOonItbR0?67&NWc+4>bLF~KqZ}yqb)AoyRt{I@ zutFuBD~{A7L41=K~CH*C<1jnvx?jC-^y(A6;M99At@e5WNIrCocda zJAAncJ^2Beq*;>6<9Nn&y9NG!<9ftunIcX;J#=Q3U%sCA!+co2xvfm+Xrh!?H0 zfm-j0NHJOpYEY@jMx22NU9kw=ZXS~2pZGa&aXIj=7R> zHLo2Uy^?UX0y{Y7O2XB^9KDioHJ2S6b0u-qoGS@mbzVFRx6E*yLZ^{4u2>|7d4p@K zSI7(26%Q5dc62YZgYw=2D-IKW$g7L&P1V`8byX!5xH3_F>5#4*9rS2H7gp?9USG>5k?FM(Fmin+d?PxWlmbM@%EVlDz$VKqJIF%Nqh?PgD-IBg8I z)YlW(G8C+Ea@sKixJ^4WCf8app@>oR71hh}ti^Sa%7 z6?Tl#?CUvdd$&WEZcw=1c2r^98p3+kQ6(-^{V2mILKL5-9iB$I%8cBRyxV&>Plt%o z=|-{6HzKR_pz!dTt^2ss)LFOA6TWrF;I!DyWk)6~SOVX15Dg0v&Cp}3h-U|b!6yf!KUv^ODs>0RlTt#IGKr&??^w- zHvz{m-yN9m^Oy>s%Ms)UqB#{SzN21zN#j|NJw)g9D;@KKLq))t8; zSu(OQ7BM2sPc62og)L2G60zjfhLYN#C6zhtik?aP3o?Po^t0Eh67l5v zdFZM|*3ARf4-Mzix`eQ%5~EJZ+h252UpOMhwRaJNavxk=~;{qwRvp= z9)R8lju5mnZb0e*_|uKwz0PG1>=EBc@nJB&#e0aCV>*9Kk{q~*u_xgKR+-0!#-*=v z6enk{XtHn5Wb9SP24%U%p>@Rp^KYs+G-OM|pO^tkOBzIO_C>63P zW3&qqdCCuZj-%^z^sf*kf785b$I&;9qZ`K2&Ex3X$I&s+G}fRTFFj6vH)x6}eWtNb zb0+XfOgo7W`L_?W^N@c(!zW*#fA^CLBtIzI1Vs1Z(~8BLi8Um9uYqE`M z{brLdzkeM4kfbRU$ljBZK9eit^t0pidnHXVCw;ayj58@5Px+&4Z8W+7mAq|3JfX$> zqvuXd)Ic4i)2E$<>q0A*)P%w-YHL>oo5D>sOG3dgTN`I6cF_%YbBGvBr-O~@bfjsc zhR6idqlr|zMkir7rnO|&a&e;;iRBMN<@}~(+{ou`)KHIcO6jP?G1jKFwQKym2vcWn zntIj5c)KaJR7)hl~9k_c7?ohLtgSTfTV))SF5BF86ucQVozkMeeEgAs3w-yGxupfV|2qN{U1vD5lKHG>1QPUqNMu?Vdr&8zc2BxK(cd6 z()9ZP(eyhZjYCC{=<_HSu{UM_$zS>%jQER*kNRIHF+qsUNM9J-sN;Kqg_!KG2+{9( zAoY76Nb~;}kotR30|+mdc%8&$5^s^1lDJLcUWo@JUW~m$gCm^q!FPuZcz+Uy=B>#P_89 zLrH%|h<*h)7D#`V#49A01IeH3BwZ!x0MS^N&63_D@kbJSfQ9%!%~7Bm=iqN8eOl5* zuu1+e1iEK2b|)e38y$pSWo$no*6~roiy33e__?<*vI zt)!PrIw~HW^V z_jQ_vv37k`opaB<=bU@)x##aa*s`#(&f#z{`*E-WHi0qr!MDUpB?qPKa^_^qS2W*! zlJFmIJ6Hf<_Gm?BL@PG?X|i20>(*wDwO`ADm|J1i^<<7M=YP#Or*f_`DDtB zfXQ;ihZT|>A9f#1Z6GEs{)(T})o(I?Msn4cecBEFRJ;shfBPg*R4g@XourdHetuG{ zL=YTTv|LefFUZGsiBp(;6)=`M01ZvwcBkRfij70@L(b(eNoo9uvVvcbJa4P?RvO5=x=Zz$FBX+=5rwe1vxALjYlF3p8WX?kXPi>y!I z|Kty&TR&d7^_*9~IhBCJIGBG~O4r=Y-1LIB8Mn*mUa`ZrVG;~~E6Vq`5FD-;-t5y# zLuP4c9z6QNI(484Hq^CJv*#Di*>8mAee&Rq>cCq=A58-J{5vxl0*#D?YB=9K=avsc zFb-!4ndMwc&+nw@PYn2uF)n0c8?&d+Is0^IUbJCz2Ygf=_)i0xWBGw^hm6Q$ck&U* zHJkdJ@dM6fsTIy;;#|5`tPbc8d>afU7MzW!_PF4HniYYkpK|`8TD$iij7y<>Nyun= zxe;y`T1cC1`2|-ogq32Ub%pxK8eF8Xe-XvYwo}KTYrcuhJ=({Zj_=oa{Kuw`O$O~q zdiEf(ZW|_^gMA{rEFP0qtupeVeMKXd{*Lua&@i)BF?Kxb7_Vq&;>IZ>462EC94EAGzjhdFY?9i0 zFZtl7oQr7>sLIWhWx zk6ajy@{!cpID}=vWgIY04vkJJ*g@ep`Rr717WElT+Ddp@+#nbF@@dhh`15Nj`*O{4-3#~ zvlbu^LYVr}t28g)LQPBu!`9b|3PJW@so=D{ZrsU9%%s=2Ql^eU_V(1o$BM0v>315< ziaEvfyNqThLATND!iDbC$Rn28*Xg3`d;x503s}LV=G2a1ByoRg$6f+BnNK8H1UC^T zKnVBbKBXoo&qFJu${wxCrn`hosfos{UJrRa@lg+a3yf97=(QQ$w870FZ1-TT(R4^s z9QO=1QeWzAgE{=_OFK9OjhFZvY<}*Te}vj_^>@Kw)F~K|iH$lZM&wXNoh!$?MbTSn zI-rhij}p@2X-H9DPH^}3iwc!)(tHya-!;Pmo^w;{z%f?PHD^pDLhxBW;lu=Ofr;IG!i5Ri1ryH!z*f%!2p1hm zTM15<-YLR4!D)a|Jf9fCDk%?~tPgyZR)+hjT!EXawhO5%wQnOBtn=zm!Yadd{IHZa}YqFfU{3 z!(^lUbhL}MwbRk#9FghhDInOM2y#w(6e!NZDHHsNz=)Kel#U4eS&pNDN$pEuI5I`5 zt0ww@@`L5Y#!k#zjx?MDnxJIJN^TLQkXenC+)io_ zV#U7f3I*{QF>LTqdk9IJvEQ>MV_YVqJ&${z|k< zFEAc{94XlJY1KKEl-FSwEO1dB-miHujYOxB#V)GD#Dh9qKT(qE?UF=hz6chy!RXcqQ-Ca9!1W;s4-=dSHfS~l?gGE)x;QP zd6dk`Y=QIkb1yCQzwgq>7fo{05xb_#N=26M<25a-7@*+pD_< z)t63=U1yBP&)&FM-FqWw;$Phuo4of1jEqCZIOlyu@cy^tEr9QAx(c`9W)Ltd1Jbc; zVONqdO~}AnRtl&^$?lyf*=Wh))i1Kx^?%KtFrjo;zhXQ_U5!ZtGAdZ$cy3&WSx-Gf z5g(B=7GreLR)`-{`Fr?t8*<`G*&#GRXS(WAaAaamTA>;AVs!bGG}ll!a|&}-oin|L zx|uT^aiIbO`4R}?kO(GfIqKU^tqcN|it>a_{c*fT^k{8NO*FuY@xuzb%W7jBePSC% z_nV8U?`T5{&}cow9RNI*sP%}FlaP-VG{IX$>v;~2Kf_(-dC}Sph=yer;^uyH+SfEK zuaW6!$3nYl>Aj$7`4!gV1F~s(l!zar_4r>Lo8g;-7+Rm^`0sqap`*%Qs(*LhW5ZZh z6Za4oPco_g-DIu8^jc-2$y5{bK`=IHBrSMlKScMJwP71n^fhBWBKjrne+Y^u*fG`r zoDjN7R%JEu3A#0L^6^@aN1w`DsX@^D6BTTnML#)_`mx3OX+y{{-%=6I`F_ z=X8Z>G>}<3HL+uY$Pv3*_G%)-s)_K#VkS1@ftNgna)wrC24J^~Qu-K~yDv zrM9@rR6mubk-`&ir0ZQ)i;IVH74(szj0$V-ie53~ zjx>M2LgxM<-jvY6^uJ3qg(rqmX8J;c>6`%m^Z$u`*pIRxIhV+SMm<$lo(1cv<^2Gg z&5T|p0=>n4Q=u2mGncHrm~ z6RWaahniT1*))v$QIP+42@1gelD8mi*h9)3l)XT zNa3C6WU4~R(+?g;60dUdN>NE(8Zw{f2eidvxe_tyKnd@|*vn$~Nd-}VtZkQysK<6ck)1%u7{NpV}~8YaK0HJM-ZlW^L8Juw-*Xg1nw5E-%n}e%T_)0 z_2h`47zBVr5TPB5R)UkEpXG&3bY#H31P$+Y$-9A{75FNx65*J=bZW-DNcrcnim<9) znv*Gc(%XXKO#eso|&$}K=g2ToQyF+|Cz z{}hHu65_jwn%D{S5~n8<;`HdKQzkE24rvL|?oUCxFTU~E{eC_A{k5XsmsuEDO}6@J z2t%ts(dI{3>>A$Yug}TeDt`~9C?oG2>ygfv)9W814>Ox~P^W*t?DQk(^pmH17OMk@ zpB?nA)h)U!x_i-Gz0OAzphs!Mql(8@PHbfmBq9J3OmzImKr8anyL?1>i4KB5zeV1d~s+JFAlu*M~{4}`l6SH9?cJx2z9d zPcKLB;igjjvyW|}j^{ay0wQy6?^q2+~_D@ewrG=`HqF)pLAn>thk zO$whcZC8i2SJF2+&QT>W9wqb*j<4}B!Mhf?s%$RUu^L`n0q6y+L{QMDD!j&Ggx!FZ zjfju$DU*U_#PPu@t%$p&niwLR%y_6)eEM<3@vRkGmDnEz_?MrjK{MXF2U%0mr=#W; zQcq}?C>LH-wzRvmGSru9HGByYUxcK%?8kb12-26OOzI?Zv_KQ4``|YvOjn_;2gyVu z^(O1L0M&2^k9j+N?=@j8xW5;$4A2Ky0oZ_xO5T4ylS!V|>08`NPUqlMH3}!Haqh*Q zOnm39rtiFbzt|Px18#hn&q-ddLA*YL^EMcl;60^WYPGWm3O{z5*|XPdibn z#Zi6~GLs50`bUb*KQ#Y=-tYN8Ou(2zE#;tD7&7sBiqpy5fcL4NlMrt7EZxEhCtjH6 z#L0>Gw`%Uh_$QH>*ei7xy~DWsjPvFeCH|`Y1@-HE_#^HcRxKr?lJvBkM0PJ`Jn3u2 z$(C5PE>5vj$szeZC%K1DP1e6-)w%_ZGl%ACK_jNf3%dDx$Je@}zGOU^=Zec^nIc!5 zjemu+`K2o+`A5l1xT2ag$!Rib^3Q;_CnyJT?5#uM$0Q_ta0uUFzjh62kv}jutC(G0 zF&l7kO>>JcxH`6`#n%;hz#q`p&i5>ide&p$(W9QWV7DIb4Cvu#=Tt_kp0;qe9_VZh zdj8fkD?Ig*{Hwd7>w=x0NVs#IC*0}jipKOHzOm!kI)L8-{BVc{Kzc^+kPvH(#+dhd z5rb88`ST9uM!j;rR>%OxDrgQ*rI!PC_6|Y+N0Q-v@(FrA$N19wi1jxH1aDS{J6QdK z1@k?n^^2F^=9yFe{qi~Ga~Uh|-qfK7Rs-r?0FbL9Y@Ef|Ml8}C z@e>{0{dXi@07y>>N=}s+^1rq`@(ZH3>6$=i`wkJ>bhl%S*v~#hSCqxX-h@`;M|w;m z1kYN~QRTHCTb>USIn!(-{*C)m@}_~#){SKB1l?UUkdG}RcTZZ{bt4=DjO2?XgZ6df zM|R4U_wG%M{n}O*YqmTLFL-k274~^1ck#l1tta`pI}on0D{~q0b}7KE%YWkMdOGm8 z4D_Tk{Rsbo-hPv+r2%fo-2hrf`A z@5{sA1|Gq8mD_P)wEu^B>wn6_KLft|8pZmekeVy|AgJsiwAZ zVGCOmzC^j>Q_HBtwJhw^!}_MCsDON-ZGBg`QxCC7a6>S{nuD!+w96+eXb$J%Xj?GL zM>cAslFT-AOLnT#%P;weqa_pxbOkXa%WUclbc9>^IJ#aBchF&JArPjfMLJF-j9S~G2O{g(dhCp21lwAm zNGqg7)~}9*xL7d?MI({u1HrCtiY3aOQ?FtSVZ;iqM(LN(D`6`jttSDM>8L4ymmwaW zBzy*A&r19tAo0H`ar(wVbcG1U0>p3`pn~MQkZ{o5BjGv;AExzd8T%KBpOEm3gdW5e z@l{G#C!r2V`fVc|hxiSkf}Y_8x&Dq^--4K={l@``{w5>_(yJ8kGW_n4Fa$_+QNp4B z6NKa3pAozPc0yTDP*-P3xC@Zvd`>v{{suh6w-!Ie!`Pz)XEH_~k!k$^AgzBv_)Uz> zK`vHqM*l)kW6XobgXHZ3r2YP#AoxZBiLU^~n{W+~@XdsS?q!L;C)ZC%{68d|jwXQY z7a|DxS0fK|en7Iv3xIU4y%HV(B)X3P$v$67cqJT$_-+GKZoz#>e1U}b$@wQF{E8st zICgk zY)pD=mhe3ZuPG98A_SqwVS+f7@8(!DMt zh<*F*QxP-r#^M8j}B)LxzgxtdfA@_d)w9>8J literal 0 HcmV?d00001 diff --git a/gamesrc/voice_bitch.c b/gamesrc/voice_bitch.c new file mode 100644 index 0000000..e440659 --- /dev/null +++ b/gamesrc/voice_bitch.c @@ -0,0 +1,747 @@ + +// JOSEPH 16-MAR-99 ALL +#include "g_local.h" + +extern voice_table_t f_neutral_talk[]; +extern voice_table_t f_neutral_talk_player[]; +extern voice_table_t f_neutral_converse[]; + +// Conversation: +// The neutrals would say to you +// 20 + +// the response choices haven't been updated + +voice_table_t f_neutral_talk[] = +{ + {f_neutral_talk_player, "You're new around here huh?", "You're new around here huh?", "actors/female/neutral/new.wav", 3, {0,1,2,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "So what's going on?", "So what's going on?", "actors/female/neutral/goingon.wav", 4, {4,7,8,9,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "You must be new around here", "You must be new around here", "actors/female/neutral/new2.wav", 3, {7,8,9,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "I ain't seen nothin'", "I ain't seen nothin'", "actors/female/neutral/seennothing.wav", 3, {6,3,5,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "No shit", "No @*%$#!", "actors/female/neutral/noshit.wav", 1, {3,0,0,0,0},0, 0 , TT_NEUTRAL}, + + {f_neutral_talk_player, "I don't know shit", "I don't know @*%$#!", "actors/female/neutral/knowshit.wav", 4, {4,7,8,9,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "Shit baby", "baby", "actors/female/neutral/shitbaby.wav", 5, {2,4,7,8,9},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "Just hanging man", "Just hanging man", "actors/female/neutral/hanging.wav", 5, {11,18,19,11,9},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "umhmm", "umhmm", "actors/female/neutral/umhmm.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "Hey baby", "Hey baby", "actors/female/neutral/heybaby.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + + {f_neutral_talk_player, "Yo, that's it", "Yo, that's it", "actors/female/neutral/thatsit.wav", 3, {2,1,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "Cool", "Cool", "actors/female/neutral/cool.wav", 3, {7,8,9,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "Alright", "Alright", "actors/female/neutral/alright.wav", 3, {7,8,9,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "Yeah", "Yeah", "actors/female/neutral/yeah.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "Yeah", "Yeah", "actors/female/neutral/yeah2.wav", 2, {6,3,0,0,0},0, 0 , TT_NEUTRAL}, + + {f_neutral_talk_player, "uhuh", "uhuh", "actors/female/neutral/uhuh.wav", 3, {18,0,6,0,0},0, 0 , TT_NEUTRAL}, +}; + +voice_table_t f_neutral_asshole_talk[] = +{ + +// {NULL, "infacemf", "infacemf", "actors/bitch/infacemf.wav", 0, {0,0,0,0,0},0, false , TT_NEUTRAL}, +// {NULL, "mf", "mf", "actors/bitch/mf.wav", 0, {0,0,0,0,0},0, false , TT_NEUTRAL}, +// {NULL, "takethatmf", "takethatmf", "actors/bitch/takethatmf.wav", 0, {0,0,0,0,0},0, false , TT_NEUTRAL}, + + {NULL, "In your face motherfucker", "In your face @*%$#!", "actors/female/fighting/infacemf.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {NULL, "Die you son of a bitch", "Die you son of a @*%$#!", "actors/female/fighting/f_die.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {NULL, "Die you motherfucker", "Die you @*%$#!", "actors/female/fighting/f_die2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {NULL, "I'll fuck you up you son of a bitch", "I'll @*%$#! you up you son of a @*%$#!", "actors/female/fighting/f_die3.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {NULL, "Take that you motherfucker", "Take that you @*%$#!", "actors/female/fighting/f_takethat.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL} + +}; + +// Player talk to a neutral + +// 10 + +voice_table_t f_neutral_talk_player[] = +{ + /* + {f_neutral_talk, "Hey bud", "Hey bud", "actors/male/neutral/play1.wav", 0, {0,0,0,0,0},0, true}, + {f_neutral_talk, "Yo", "Yo", "actors/male/neutral/play2.wav", 0, {0,0,0,0,0},0, true}, + {f_neutral_talk, "Whats up", "Whats up", "actors/male/neutral/play3.wav", 3, {9,5,11,0,0},0, 0}, + {f_neutral_talk, "So what's all the commotion", "So what's all the commotion", "actors/male/neutral/play4.wav", 3, {8,11,14,0,0},0, 0}, + {f_neutral_talk, "Fuck me, Freddy is it you?", "@*%$#! me, Freddy is it you?", "actors/male/neutral/play5.wav", 4, {0,9,12,13,0},0, 0}, + + {f_neutral_talk, "Seen Pauly around?", "Seen Pauly around?", "actors/male/neutral/play6.wav", 2, {4,1,0,0,0},0, 0}, + {f_neutral_talk, "That fuckin cop", "That @*%$#!in cop", "actors/male/neutral/play7.wav", 2, {8,14,0,0,0},0, true}, + {f_neutral_talk, "Shove off...", "Shove off...", "actors/male/neutral/play8.wav", 3, {11,6,4,0,0},0, true}, + {f_neutral_talk, "Hit the dust", "Hit the dust", "actors/male/neutral/play9.wav", 3, {11,6,4,0,0},0, true}, + {f_neutral_talk, "Get lost", "Get lost", "actors/male/neutral/play10.wav", 3, {11,6,4,0,0},0, true} + */ + {f_neutral_talk, "um hmm", "um hmm", "actors/skidrow/leroy/conv6.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "Yeah I heard that baby", "Yeah I heard that baby", "actors/skidrow/leroy/conv7.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "Yeah that's cool", "Yeah that's cool", "actors/skidrow/leroy/cool.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, +}; + +// Neutrals converse among themselves + +// 20 +voice_table_t f_neutral_converse[] = +{ + {f_neutral_talk, "Yo, that's it", "Yo, that's it", "actors/female/neutral/thatsit.wav", 3, {2,1,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "Shit baby", "baby", "actors/female/neutral/shitbaby.wav", 5, {2,4,7,8,9},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "No shit", "No @*%$#!", "actors/female/neutral/noshit.wav", 1, {3,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "You're new around here huh?", "You're new around here huh?", "actors/female/neutral/new.wav", 3, {0,1,2,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "You must be new around here", "You must be new around here", "actors/female/neutral/new2.wav", 3, {7,8,9,0,0},0, 0 , TT_NEUTRAL}, + + {f_neutral_talk, "Cool", "Cool", "actors/female/neutral/cool.wav", 3, {7,8,9,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "Alright", "Alright", "actors/female/neutral/alright.wav", 3, {7,8,9,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "Yeah", "Yeah", "actors/female/neutral/yeah.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "Yeah", "Yeah", "actors/female/neutral/yeah2.wav", 2, {6,3,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "I ain't seen nothin'", "I ain't seen nothin'", "actors/female/neutral/seennothing.wav", 3, {6,3,5,0,0},0, 0 , TT_NEUTRAL}, + + {f_neutral_talk, "umhmm", "umhmm", "actors/female/neutral/umhmm.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "Hey baby", "Hey baby", "actors/female/neutral/heybaby.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "So what's going on?", "So what's going on?", "actors/female/neutral/goingon.wav", 4, {4,7,8,9,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "I don't know shit", "I don't know @*%$#!", "actors/female/neutral/knowshit.wav", 4, {4,7,8,9,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "Just hanging man", "Just hanging man", "actors/female/neutral/hanging.wav", 5, {11,18,19,11,9},0, 0 , TT_NEUTRAL}, + + {f_neutral_talk, "uhuh", "uhuh", "actors/female/neutral/uhuh.wav", 3, {18,0,6,0,0},0, 0 , TT_NEUTRAL}, +}; + +// profanity +// 20 + +voice_table_t f_profanity_level1[] = +{ + {f_neutral_asshole_talk, "You talkin' to me?", "You talkin' to me?", "actors/female/profanity/level1/f_cuss1-1.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {f_neutral_asshole_talk, "back your ugly ass up", "back your ugly @*%$#! up", "actors/female/profanity/level1/f_cuss1-2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {f_neutral_asshole_talk, "piss the fuck off", "piss the @*%$#! off", "actors/female/profanity/level1/f_cuss1-3.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {f_neutral_asshole_talk, "I'll bust a cap in yo ass", "I'll bust a cap in yo @*%$#!", "actors/female/profanity/level1/f_cuss1-4.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {f_neutral_asshole_talk, "Your mama made that?", "Your mama made that?", "actors/female/profanity/level1/f_cuss1-5.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE} + +}; +//20 + +voice_table_t f_profanity_level2[] = +{ + {NULL, "motherfucker what you lookin at?", "what are You lookin at?", "actors/female/profanity/level2/f_cuss2-1.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "eat me you asshole", "@*%$#! me you @*%$#!", "actors/female/profanity/level2/f_cuss2-2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "keep talkin' asshole", "keep talkin' @*%$#!", "actors/female/profanity/level2/f_cuss2-3.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "I'll bust your face", "I'll bust your face", "actors/female/profanity/level2/f_cuss2-4.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE} +}; + +//3 +voice_table_t f_profanity_level3[] = +{ + {NULL, "Yo, fuck you man", "Yo, @*%$#! you man", "actors/female/profanity/level3/f_cuss3-1.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "back the fuck up bitch", "back the @*%$#! up @*%$#!", "actors/female/profanity/level3/f_cuss3-2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "fuck you you motherfucker", "@*%$#! you @*%$#!", "actors/female/profanity/level3/f_cuss3-3.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE} +}; + +//=================================================================================== + +voice_table_t f_followme[] = + +// GARY 11-MAR-99 + +{ + {NULL, "Let's go", "Let's go", "actors/player/male/followme/follow1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Come on", "Come on", "actors/player/male/followme/follow2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Let's go this way", "Let's go this way", "actors/player/male/followme/follow3.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Follow me", "Follow me", "actors/player/male/followme/follow4.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Let's blow", "Let's blow", "actors/player/male/followme/follow5.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE} +}; +// END GARY + +voice_table_t f_moveout[] = +{ + +// we need to get Drew to give move out orders so this is placeholder + // Gary + {NULL, "Alright, let's move out", "Alright, let's move out", "actors/player/male/moveout/moveout1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Alright, move it", "Alright, move it", "actors/player/male/moveout/moveout2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Let's head out", "Let's head out", "actors/player/male/moveout/moveout3.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Let's get the fuck out of here", "Let's get the @*%$#! out of here", "actors/player/male/moveout/moveout4.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "C'mon let's go", "C'mon let's go", "actors/player/male/moveout/moveout5.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + +}; + +voice_table_t f_holdposition[] = +{ + +// we need to get Drew to give hold position orders so this is just the responses + // Gary + {NULL, "Stop here", "Stop here", "actors/player/male/hold/hold1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Wait here", "Wait here", "actors/player/male/hold/hold2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Stay right here", "Stay right here", "actors/player/male/hold/hold3.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Don't move", "Don't move", "actors/player/male/hold/hold4.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Park your ass", "Park your @*%$#!", "actors/player/male/hold/hold5.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, +}; + +//=================================================================================== + +voice_table_t f_fightsounds[] = +{ + {NULL, "In your face motherfucker", "In your face @*%$#!", "actors/female/fighting/infacemf.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "Die you son of a bitch", "Die you son of a @*%$#!", "actors/female/fighting/f_die.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "Take that you motherfucker", "Take that you @*%$#!", "actors/female/fighting/f_takethat.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + + {NULL, "back the fuck off asshole", "back the @*%$#!", "actors/female/fighting/f_backoff.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "Die you son of a bitch", "Die you son of a @*%$#!", "actors/female/fighting/f_die.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "Die you motherfucker", "Die you @*%$#!", "actors/female/fighting/f_die2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "I'll fuck you up you son of a bitch", "I'll @*%$#! you up you son of a @*%$#!", "actors/female/fighting/f_die3.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "take that you motherfucker", "take that you @*%$#!", "actors/female/fighting/f_takethat.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE} + +}; + +// These are used for all specific speech functions throughout the game +// NOTE: Altering the order of these items will cause problems +voice_table_t f_specific[] = +{ + {NULL, "motherfucker what you lookin at?", "what are You lookin at?", "actors/female/profanity/level2/f_cuss2-1.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, // first time they see you + {NULL, "eat me you asshole", "@*%$#! me you @*%$#!", "actors/female/profanity/level2/f_cuss2-2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, // if you leave + {NULL, "keep talkin' asshole", "keep talkin' @*%$#!", "actors/female/profanity/level2/f_cuss2-3.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, // if you come back after leaving + {NULL, "I'll bust your face", "I'll bust your face", "actors/female/profanity/level2/f_cuss2-4.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, // profanity level 3 +}; + + +voice_table_t f_backoff[] = +{ + {NULL, "Yo put that away man", "Yo put that away man", "actors/female/beth_specific/putaway.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Back off motherfucker", "Back off @*%$#!", "actors/female/beth_specific/backoff.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Yo, drop that shit motherfucker", "Yo, drop that @*%$#! @*%$#!", "actors/female/beth_specific/droppiece.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Don't be pulling that shit on me", "Don't be pulling that @*%$#! on me", "actors/female/beth_specific/pullshit.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, +}; + + +voice_table_t lisa_specific[] = +{ + {NULL, "You might want to try Pawn-o-Matic", "You might want to try Pawn-o-Matic", "actors/female/lisa_specific/pawnomatic1.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, // profanity level 3 + {NULL, "Try that Pawn-o-Matic down the street", "Try that Pawn-o-Matic down the street", "actors/female/lisa_specific/pawnomatic2.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, +//2 + {NULL, "Yo man, you'd best find a piece", "Yo man, you'd best find a piece", "actors/female/lisa_specific/findpiece.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE }, // first time they see you + {NULL, "You'd best get strapped", "You'd best get strapped", "actors/female/lisa_specific/getstrapped.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, // if you leave + {NULL, "You gonna need a gun", "You gonna need a gun", "actors/female/lisa_specific/needgun.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, // if you come back after leaving +//5 + {NULL, "You betta back off, those guys'll rip you to shreds", "You betta back off, those guys'll rip you to shreds", "actors/female/lisa_specific/ripshreds.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "They'll tear you up", "They'll tear you up", "actors/female/lisa_specific/tearup.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "There's some tough motherfuckers back there", "There's some tough @*%$#!s back there", "actors/female/lisa_specific/toughbastards.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + +}; + +voice_table_t beth_specific[] = +{ + {NULL, "Wait 'til they're disctracted by the radio", "Wait 'til they're disctracted by the radio", "actors/female/beth_specific/distracted.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, // first time they see you + {NULL, "You best wait 'til that game is goin'!", "You best wait 'til that game is goin'!", "actors/female/beth_specific/gamegoing.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, // if you leave + {NULL, "You better not go back there", "You better not go back there", "actors/female/beth_specific/notgoback.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, // if you come back after leaving + {NULL, "Make your move when the radio's loud", "Make your move when the radio's loud", "actors/female/beth_specific/radioloud.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, // profanity level 3 + +// note to self +// place holders for three more generic sounds + + {NULL, "You betta back off, those guys'll rip you to shreds", "You betta back off, those guys'll rip you to shreds", "actors/female/lisa_specific/ripshreds.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "They'll tear you up", "They'll tear you up", "actors/female/lisa_specific/tearup.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "There's some tough motherfuckers back there", "There's some tough @*%$#!s back there", "actors/female/lisa_specific/toughbastards.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + + {NULL, "back off motherfucker", "back off @*%$#!", "actors/female/beth_specific/backoff.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "Yo put that away man", "Yo put that away man", "actors/female/beth_specific/putaway.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, +}; + + +// JOSEPH 7-MAR-99 +voice_table_t mona_specific[] = +{ + + // JOSEPH 19-MAR-99 + // 0, Lamont alive - random + {NULL, "What up sugar?", "What up sugar?", "actors/female/mona/nobar1.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + {NULL, "You been in the bar yet?", "You been in the bar yet?", "actors/female/mona/nobar2.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + {NULL, "Go in the bar and talk to Lenny", "Go in the bar and talk to Lenny", "actors/female/mona/nobar4.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + {NULL, "I hear you looking to get outta here", "I hear you looking to get outta here", "actors/female/mona/nobar6.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + // 4, Be careful of Lamont + {NULL, "Lamont's gonnna kill Lenny if he comes out", "Lamont's gonnna kill Lenny if he comes out", "actors/female/mona/lamont1.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + {NULL, "Good thing they won't let Lamont's crazy ass in that bar", "Good thing they won't let Lamont's crazy @*%$#! in that bar", "actors/female/mona/lamont3.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + {NULL, "Yeah, Lenny threw Lamont outta his apartment", "Yeah, Lenny threw Lamont outta his apartment", "actors/female/mona/lamont4.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + {NULL, "You best stay away from Lamont if you know what's good for you", "You best stay away from Lamont if you know what's good for you", "actors/female/mona/lamont6.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + // 8, Been in bar + {NULL, "That bar is happenin' huh", "That bar is happenin' huh", "actors/female/mona/bar1.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + {NULL, "I hope you talked to the right people in there", "I hope you talked to the right people in there", "actors/female/mona/bar2.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + // 10, Talk to Lenny + {NULL, "So you talk to Lenny yet?", "So you talk to Lenny yet?", "actors/female/mona/lenny1.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + {NULL, "I hope Lenny set you straight", "I hope Lenny set you straight", "actors/female/mona/lenny3.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + {NULL, "Did Lenny give you some good information?", "Did Lenny give you some good information?", "actors/female/mona/lenny4.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + // 13, You killed Lamont + {NULL, "Damn, you one badass motherfucker", "Damn, you one bad@*%$#!", "actors/female/mona/badass.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + {NULL, "Shit man, you took Lamont out!", "Man, you took Lamont out!", "actors/female/mona/badass2.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + // 15, You pissed off Mona + {NULL, "Hey motherfucker, don't be pullin' no piece out on me!", "Hey @*%$#!, don't be pullin' no piece out on me!", "actors/female/mona/angry1.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + {NULL, "I will bust a cap in yo ass, you do understand", "I will bust a cap in yo @*%$#!, you do understand", "actors/female/mona/angry2.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + {NULL, "Now that's it motherfucker", "Now that's it @*%$#!", "actors/female/mona/angry3.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + {NULL, "I can get down with yo ass", "I can get down with yo @*%$#!", "actors/female/mona/angry4.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + {NULL, "Yeah, fuck you too", "Yeah, @*%$#! you too", "actors/female/mona/angry5.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + // END JOSEPH +}; +// END JOSEPH + +// JOSEPH 29-MAY-99 +voice_table_t female_specific[] = +{ + // pain + {NULL, "", "", "actors/female/pain1.wav", 0, {0,0,0,0,0},0,0 , TT_NONE}, + {NULL, "", "", "actors/female/pain2.wav", 0, {0,0,0,0,0},0,0 , TT_NONE}, + {NULL, "", "", "actors/female/pain3.wav", 0, {0,0,0,0,0},0,0 , TT_NONE}, + {NULL, "", "", "actors/female/pain4.wav", 0, {0,0,0,0,0},0,0 , TT_NONE}, + // death + {NULL, "", "", "actors/female/death1.wav", 0, {0,0,0,0,0},0,0 , TT_NONE}, + {NULL, "", "", "actors/female/death2.wav", 0, {0,0,0,0,0},0,0 , TT_NONE}, + // fire death + {NULL, "", "", "actors/female/f_flamedeath1.wav", 0, {0,0,0,0,0},0,0 , TT_NONE}, + {NULL, "", "", "actors/female/f_flamedeath2.wav", 0, {0,0,0,0,0},0,0 , TT_NONE}, + {NULL, "", "", "actors/female/f_flamedeath2.wav", 0, {0,0,0,0,0},0,0 , TT_NONE}, +}; +// END JOSEPH + +// JOSEPH 12-MAR-99 +voice_table_t f_grunting[] = +{ + {NULL, " ", " ", "actors/female/fighting/grunt1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, " ", " ", "actors/female/fighting/grunt2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, " ", " ", "actors/female/fighting/grunt3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, " ", " ", "actors/female/fighting/grunt4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, " ", " ", "actors/female/fighting/grunt5.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, +}; +// END JOSEPH + +voice_table_t yolanda_specific[] = +{ + {NULL, "Don't go back there... Nicki's boys'll fuck you up", "Don't go back there... Nicki's boys'll @*%$#! you up", "actors/female/yolanda/backthere.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + {NULL, "Those are Nicki Blanco's boys", "Those are Nicki Blanco's boys", "actors/female/yolanda/blancoboys.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + {NULL, "You gonna need a BIGGER gun baby", "You gonna need a BIGGER gun baby", "actors/female/yolanda/biggergun.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + + {NULL, "Hey you been to pawnomatic yet?", "Hey you been to pawnomatic yet?", "actors/female/yolanda/pawnomatic.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, // first time they see you + {NULL, "Been to club swank?", "Been to club swank?", "actors/female/yolanda/swank.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + {NULL, "You one bad-assed motherfucker...", "You one bad @*%$#!", "actors/female/yolanda/badass.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + + {NULL, "Hey... gimme 10 bucks and I'll distract 'em for you", "Hey... gimme 10 bucks and I'll distract 'em for you", "actors/female/yolanda/distract1.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + {NULL, "Hey... gimme 20 bucks and I'll distract 'em for you", "Hey... gimme 20 bucks and I'll distract 'em for you", "actors/female/yolanda/distract2.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + {NULL, "Come back later then", "Come back later then", "actors/female/yolanda/later.wav", 0, {0,0,0,0,0},0, 0 , TT_QUESTION}, + + {NULL, "Hey... you ready for me now?", "Hey... you ready for me now?", "actors/female/yolanda/readynow.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + {NULL, "Let's do it", "Let's do it", "actors/female/yolanda/doit.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + {NULL, "Here I go", "Here I go", "actors/female/yolanda/herego.wav", 0, {0,0,0,0,0},0, 0 , TT_POSITIVE}, + + {NULL, "Wassup?", "Wassup?", "actors/female/yolanda/wassup.wav", 0, {0,0,0,0,0},0, 0 , TT_NONE}, + {NULL, "Hey boys, wass shakin'", "Hey boys, wass shakin'", "actors/female/yolanda/shakin.wav", 0, {0,0,0,0,0},0, 0 , TT_NONE}, + {NULL, "Ooohh... How y'all doin'", "Ooohh... How y'all doin'", "actors/female/yolanda/howall.wav", 0, {0,0,0,0,0},0, 0 , TT_NONE}, + + {NULL, "Hey, y'all want to party?", "Hey, y'all want to party?", "actors/female/yolanda/party.wav", 0, {0,0,0,0,0},0, 0 , TT_NONE}, + {NULL, "Mmmmmm-Hmmmmmmm", "Mmmmmm-Hmmmmmmm", "actors/female/yolanda/mmhmm.wav", 0, {0,0,0,0,0},0, 0 , TT_NONE}, + {NULL, "Fuck you, I ain't helpin' you asshole...", "I ain't helpin' you @*%$#!...", "actors/female/yolanda/asshole.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + + {NULL, "Hey, fuck you motherfucker!", "Hey, @*%$#! you @*%$#!!", "actors/female/yolanda/fuckyou.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "Go do it yourself, shithead", "Go do it yourself, @*%$#!", "actors/female/yolanda/shithead.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "Piss off...", "@*%$#! off...", "actors/female/yolanda/pissoff.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + + {NULL, "Don't pull a fuckin' piece on me...", "Don't pull a @*%$#! piece on me...", "actors/female/yolanda/piece.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "Drop it", "Drop it", "actors/female/yolanda/dropit.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "Fuckin' die!", "Die!", "actors/female/yolanda/die.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + + {NULL, "That's it, motherfucker!", "That's it, @*%$#!!", "actors/female/yolanda/mf.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "Shit... you ain't got any money!", "@*%$#!... you ain't got any money!", "actors/female/yolanda/nomoney.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, +}; + +// todo: Gary sound todo +// new sounds for yolanda +// sounds for a female friendly hire +// momo welcome to swank + + +// hiredgal_specific is missing 3 hired wav files + +voice_table_t hiredgal_specific[] = +{ + {NULL, "you got the cash?", "you got the cash?", "actors/female/hiredgirl/gotcash1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "So, you got the money?", "So, you got the money?", "actors/female/hiredgirl/gotcash2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "No? I'll be here if you change your mind", "No? I'll be here if you change your mind", "actors/female/hiredgirl/changemind.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "come back when you got the money", "come back when you got the money", "actors/female/hiredgirl/comeback1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "I'll be right here waitin'", "I'll be right here waitin'", "actors/female/hiredgirl/waiting1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "I'll be right here waitin'", "I'll be right here waitin'", "actors/female/hiredgirl/waiting2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + + {NULL, "Come see me when your gang's not full up", "Come see me when your gang's not full up", "actors/female/hiredgirl/full1.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {NULL, "Your gang's full", "Your gang's full", "actors/female/hiredgirl/full2.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + + {NULL, "Alright, let's go", "Alright, let's go", "actors/female/hiredgirl/hired1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Alright, I'm all yours", "Alright, I'm all yours", "actors/female/hiredgirl/hired2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "I'm hired", "I'm hired", "actors/female/hiredgirl/hired3.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + + {NULL, "when you got the money, come back and see me", "when you got the money, come back and see me", "actors/female/hiredgirl/comeback2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + + {NULL, "FIXME:Sorry, I can't run with you...", "FIXME:Sorry, I can't run with you...", "actors/male/hiredguy/louiesorry.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "FIXME:Hey, I'm working for Louie right now", "FIXME:Hey, I'm working for Louie right now", "actors/male/hiredguy/louiework.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "FIXME:Hey, talked to Louie yet?", "FIXME:Hey, talked to Louie yet?", "actors/male/hiredguy/louietalked.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "FIXME:Talk to the boss", "FIXME:Talk to the boss", "actors/male/hiredguy/louieboss.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, +}; + +voice_table_t hiredgal_ask[] = +{ + {NULL, "I'll run with you for 10 bucks", "I'll run with you for 10 bucks", "actors/female/hiredgirl/10bucks1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "$10 I'm all yours", "$10 I'm all yours", "actors/female/hiredgirl/10bucks2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "I'll watch your back for 25 bucks", "I'll watch your back for 25 bucks", "actors/female/hiredgirl/25bucks1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "I'll run with you for 25 bucks", "I'll run with you for 25 bucks", "actors/female/hiredgirl/25bucks2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "I'll join your crew for 50 bucks", "I'll join your crew for 50 bucks", "actors/female/hiredgirl/50bucks1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "You want me? 50 bucks", "You want me? 50 bucks", "actors/female/hiredgirl/50bucks2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "You want me? $75", "You want me? $75", "actors/female/hiredgirl/75bucks1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "You want me... $75", "You want me... $75", "actors/female/hiredgirl/75bucks2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "I'll join your crew... for $100", "I'll join your crew... for $100", "actors/female/hiredgirl/100bucks1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "I'll join your gang for 100 bucks", "I'll join your gang for 100 bucks", "actors/female/hiredgirl/100bucks2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, +}; + +voice_table_t steeltown_brittany[]= +{ + // clue about armor + {NULL, "there's new package for Moker ordered in the pawnomatic basement. It's that fancy new armor he ordered", "there's new package for Moker ordered in the pawnomatic basement. It's that fancy new armor he ordered", "actors/female/brittany/clue1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL, "Who needs your sorry ass around here?", "Who needs your sorry @*%$#! around here?", "actors/female/brittany/curse1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Okay, be like that", "Okay, be like that" , "actors/female/brittany/curse2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Up yours you foul mouth little creep", "Up yours you foul mouth little creep", "actors/female/brittany/curse3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + + {NULL, "It's 2 for 1 ladies night down at the Boiler Room", "It's 2 for 1 ladies night down at the Boiler Room", "actors/female/brittany/amb1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Just got through talking with Bambi... She's feeling pretty low", "Just got through talking with Bambi... She's feeling pretty low", "actors/female/brittany/amb2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Seems like Moker get's a new shipment almost every day now. He must be planning something big", "Seems like Moker get's a new shipment almost every day now. He must be planning something big", "actors/female/brittany/amb3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, +}; + + + +voice_table_t steeltown_bambi[]= +{ + {NULL,"Mister, can you help me out? It's my brother David. He's a prisoner at Moker's steel mill", "Mister, can you help me out? It's my brother David. He's a prisoner at Moker's steel mill", "actors/female/bambi/clue.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + //3 back without David + {NULL,"I thought you were gonna bring David back", "I thought you were gonna bring David back", "actors/female/bambi/scold1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL,"Didn't you find him yet?", "Didn't you find him yet?", "actors/female/bambi/scold2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL,"You didn't rescue David? What are you doing back here?", "You didn't rescue David? What are you doing back here?", "actors/female/bambi/scold3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + //3 you're not gonna find him here + {NULL,"Please mister. You've got to hurry. That mill is really dangerous", "Please mister. You've got to hurry. That mill is really dangerous", "actors/female/bambi/hurry1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL,"Well, he isn't likely to walk in here on his own. Go get him", "Well, he isn't likely to walk in here on his own. Go get him", "actors/female/bambi/hurry2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL,"What are you waiting for? I told you he's at the mill", "What are you waiting for? I told you he's at the mill", "actors/female/bambi/hurry3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + //3 hostile + {NULL,"Fuck off, you prick", "@*%$#! off, you @*%$#!", "actors/female/bambi/curse1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL,"Some help you are. What a loser", "Some help you are. What a loser", "actors/female/bambi/curse2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL,"Piss off. I don't have time for your shit", "@*%$#! off. I don't have time for your @*%$#!", "actors/female/bambi/curse3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + //Thanks for saving my brother + {NULL,"You saved him. How can I ever thank you? Here, one of Moker's thugs left his keys", "You saved him. How can I ever thank you? Here, one of Moker's thugs left his keys", "actors/female/bambi/success.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + //Couldn't save David + {NULL,"David dead? I can't believe it... Here, one of Moker's thugs left his keys", "David dead? I can't believe it... Here, one of Moker's thugs left his keys", "actors/female/bambi/failure.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL,"Those guys are over at Moker's right now. You better hurry", "Those guys are over at Moker's right now. You better hurry", "actors/female/bambi/getgoin1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL,"I thought you were going after Moker and his gang", "I thought you were going after Moker and his gang", "actors/female/bambi/getgoin2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL,"Well, if you're gonna stick around here, at least buy a drink", "Well, if you're gonna stick around here, at least buy a drink", "actors/female/bambi/getgoin3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, +}; + + +///////////////////////////////////////////////////////////////////////////////////////// +// radio city +///////////////////////// + +voice_table_t rc_f_neutral_talk[] = +{ + {f_neutral_talk_player, "This your first time in RC?", "This your first time in RC?", "rc/actors/female/neutral/new.wav", 3, {0,1,2,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "Some serious shit's going down", "Some serious @*%$#!'s going down", "rc/actors/female/neutral/goingon.wav", 4, {4,7,8,9,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "You must be the hardcore motherfucker", "You must be the hardcore xxx", "rc/actors/female/neutral/new2.wav", 3, {7,8,9,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "Fuckin' Dragons are gettin' worked", "@*%$#! Dragons are gettin' worked", "rc/actors/female/neutral/seennothing.wav", 3, {6,3,5,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "I heard that", "I heard that", "rc/actors/female/neutral/noshit.wav", 1, {3,0,0,0,0},0, 0 , TT_NEUTRAL}, + + {f_neutral_talk_player, "I ain't got nothin' to do with that shit", "I ain't got nothin' to do with that @*%$#!", "rc/actors/female/neutral/knowshit.wav", 4, {4,7,8,9,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "So what you got in mind baby?", "So what you got in mind baby?", "rc/actors/female/neutral/shitbaby.wav", 5, {2,4,7,8,9},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "Just layin' low 'til this shit blows over","Just layin' low 'til this @*%$#! blows over", "rc/actors/female/neutral/hanging.wav", 5, {11,18,19,11,9},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "Fuckin' Jokers are out for blood", "@*%$#! Jokers are out for blood", "rc/actors/female/neutral/umhmm.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "Hey baby, you for real?", "Hey baby, you for real?", "rc/actors/female/neutral/heybaby.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + + {f_neutral_talk_player, "You got that shit right", "You got that @*%$#! right", "rc/actors/female/neutral/thatsit.wav", 3, {2,1,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "That's Kool and the Gang", "That's Kool and the Gang", "rc/actors/female/neutral/cool.wav", 3, {7,8,9,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "Fuckin' aye man", "@*%$#! aye man", "rc/actors/female/neutral/alright.wav", 3, {7,8,9,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "Fuck yeah", "@*%$#! Yeah", "rc/actors/female/neutral/yeah.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "Yeah", "Yeah", "rc/actors/female/neutral/yeah2.wav", 2, {6,3,0,0,0},0, 0 , TT_NEUTRAL}, + + {f_neutral_talk_player, "uhuh", "uhuh", "rc/actors/female/neutral/uhuh.wav", 3, {18,0,6,0,0},0, 0 , TT_NEUTRAL}, +/* + {f_neutral_talk_player, "FIXME", "FIXME", "rc/actors/female/neutral/new.wav", 3, {0,1,2,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "FIXME", "FIXME", "rc/actors/female/neutral/goingon.wav", 4, {4,7,8,9,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "FIXME", "FIXME", "rc/actors/female/neutral/new2.wav", 3, {7,8,9,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "FIXME", "FIXME", "rc/actors/female/neutral/seennothing.wav", 3, {6,3,5,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "FIXME", "FIXME", "rc/actors/female/neutral/noshit.wav", 1, {3,0,0,0,0},0, 0 , TT_NEUTRAL}, + + {f_neutral_talk_player, "FIXME", "FIXME", "rc/actors/female/neutral/knowshit.wav", 4, {4,7,8,9,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "FIXME", "FIXME", "rc/actors/female/neutral/shitbaby.wav", 5, {2,4,7,8,9},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "FIXME", "FIXME", "rc/actors/female/neutral/hanging.wav", 5, {11,18,19,11,9},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "FIXME", "FIXME", "rc/actors/female/neutral/umhmm.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "FIXME", "FIXME", "rc/actors/female/neutral/heybaby.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + + {f_neutral_talk_player, "FIXME", "FIXME", "rc/actors/female/neutral/thatsit.wav", 3, {2,1,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "FIXME", "FIXME", "rc/actors/female/neutral/cool.wav", 3, {7,8,9,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "FIXME", "FIXME", "rc/actors/female/neutral/alright.wav", 3, {7,8,9,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "FIXME", "FIXME", "rc/actors/female/neutral/yeah.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk_player, "FIXME", "FIXME", "rc/actors/female/neutral/yeah2.wav", 2, {6,3,0,0,0},0, 0 , TT_NEUTRAL}, + + {f_neutral_talk_player, "FIXME", "FIXME", "rc/actors/female/neutral/uhuh.wav", 3, {18,0,6,0,0},0, 0 , TT_NEUTRAL}, +*/ +}; + +voice_table_t rc_f_neutral_asshole_talk[] = +{ + {NULL, "In your face motherfucker", "In your face @*%$#!", "rc/actors/female/fighting/infacemf.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {NULL, "Die you son of a bitch", "Die you son of a @*%$#!", "rc/actors/female/fighting/f_die.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {NULL, "Die you motherfucker", "Die you @*%$#!", "rc/actors/female/fighting/f_die2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {NULL, "I'll fuck you up you son of a bitch", "I'll @*%$#! you up you son of a @*%$#!", "rc/actors/female/fighting/f_die3.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {NULL, "Take that you motherfucker", "Take that you @*%$#!", "rc/actors/female/fighting/f_takethat.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL} + +/* +// {NULL, "infacemf", "infacemf", "actors/bitch/infacemf.wav", 0, {0,0,0,0,0},0, false , TT_NEUTRAL}, +// {NULL, "mf", "mf", "actors/bitch/mf.wav", 0, {0,0,0,0,0},0, false , TT_NEUTRAL}, +// {NULL, "takethatmf", "takethatmf", "actors/bitch/takethatmf.wav", 0, {0,0,0,0,0},0, false , TT_NEUTRAL}, + + {NULL, "FIXME", "FIXME", "rc/actors/female/fighting/infacemf.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {NULL, "FIXME", "FIXME", "rc/actors/female/fighting/f_die.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {NULL, "FIXME", "FIXME", "rc/actors/female/fighting/f_die2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {NULL, "FIXME", "FIXME", "rc/actors/female/fighting/f_die3.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {NULL, "FIXME", "FIXME", "rc/actors/female/fighting/f_takethat.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL} +*/ +}; + +voice_table_t rc_f_neutral_talk_player[] = +{ + {f_neutral_talk, "um hmm", "um hmm", "rc/actors/skidrow/leroy/conv6.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "Yeah I heard that baby", "Yeah I heard that baby", "rc/actors/skidrow/leroy/conv7.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "Yeah that's cool", "Yeah that's cool", "rc/actors/skidrow/leroy/cool.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, +/* /* + {f_neutral_talk, "Hey bud", "Hey bud", "actors/male/neutral/play1.wav", 0, {0,0,0,0,0},0, true}, + {f_neutral_talk, "Yo", "Yo", "actors/male/neutral/play2.wav", 0, {0,0,0,0,0},0, true}, + {f_neutral_talk, "Whats up", "Whats up", "actors/male/neutral/play3.wav", 3, {9,5,11,0,0},0, 0}, + {f_neutral_talk, "So what's all the commotion", "So what's all the commotion", "actors/male/neutral/play4.wav", 3, {8,11,14,0,0},0, 0}, + {f_neutral_talk, "Fuck me, Freddy is it you?", "@*%$#! me, Freddy is it you?", "actors/male/neutral/play5.wav", 4, {0,9,12,13,0},0, 0}, + + {f_neutral_talk, "Seen Pauly around?", "Seen Pauly around?", "actors/male/neutral/play6.wav", 2, {4,1,0,0,0},0, 0}, + {f_neutral_talk, "That fuckin cop", "That @*%$#!in cop", "actors/male/neutral/play7.wav", 2, {8,14,0,0,0},0, true}, + {f_neutral_talk, "Shove off...", "Shove off...", "actors/male/neutral/play8.wav", 3, {11,6,4,0,0},0, true}, + {f_neutral_talk, "Hit the dust", "Hit the dust", "actors/male/neutral/play9.wav", 3, {11,6,4,0,0},0, true}, + {f_neutral_talk, "Get lost", "Get lost", "actors/male/neutral/play10.wav", 3, {11,6,4,0,0},0, true} + * / + {f_neutral_talk, "FIXME", "FIXME", "rc/actors/skidrow/leroy/conv6.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "FIXME", "FIXME", "rc/actors/skidrow/leroy/conv7.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "FIXME", "FIXME", "rc/actors/skidrow/leroy/cool.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, +*/ +}; + +// Neutrals converse among themselves + + + + + + +// 20 +voice_table_t rc_f_neutral_converse[] = +{ + {f_neutral_talk, "You got that shit right", "You got that @*%$#! right", "rc/actors/female/neutral/thatsit.wav", 3, {2,1,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "So what you got in mind baby?", "So what you got in mind baby?", "rc/actors/female/neutral/shitbaby.wav", 5, {2,4,7,8,9},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "I heard that", "I heard that", "rc/actors/female/neutral/noshit.wav", 1, {3,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "This your first time in RC?", "This your first time in RC?", "rc/actors/female/neutral/new.wav", 3, {0,1,2,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "You must be the hardcore motherfucker", "You must be the hardcore xxx", "rc/actors/female/neutral/new2.wav", 3, {7,8,9,0,0},0, 0 , TT_NEUTRAL}, + + {f_neutral_talk, "That's Kool and the Gang", "That's Kool and the Gang", "rc/actors/female/neutral/cool.wav", 3, {7,8,9,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "Fuckin' aye man", "@*%$#! aye man", "rc/actors/female/neutral/alright.wav", 3, {7,8,9,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "Fuck yeah", "@*%$#! Yeah", "rc/actors/female/neutral/yeah.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "Yeah", "Yeah", "rc/actors/female/neutral/yeah2.wav", 2, {6,3,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "Fuckin' Dragons are gettin' worked", "@*%$#! Dragons are gettin' worked", "rc/actors/female/neutral/seennothing.wav", 3, {6,3,5,0,0},0, 0 , TT_NEUTRAL}, + + {f_neutral_talk, "Fuckin' Jokers are out for blood", "@*%$#! Jokers are out for blood", "rc/actors/female/neutral/umhmm.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "Hey baby, you for real?", "Hey baby, you for real?", "rc/actors/female/neutral/heybaby.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "Some serious shit's going down", "Some serious @*%$#!'s going down", "rc/actors/female/neutral/goingon.wav", 4, {4,7,8,9,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "I ain't got nothin' to do with that shit", "I ain't got nothin' to do with that @*%$#!", "rc/actors/female/neutral/knowshit.wav", 4, {4,7,8,9,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "Just layin' low 'til this shit blows over", "Just layin' low 'til this @*%$#! blows over", "rc/actors/female/neutral/hanging.wav", 5, {11,18,19,11,9},0, 0 , TT_NEUTRAL}, + + {f_neutral_talk, "uhuh", "uhuh", "rc/actors/female/neutral/uhuh.wav", 3, {18,0,6,0,0},0, 0 , TT_NEUTRAL}, + + +/* + {f_neutral_talk, "FIXME", "FIXME", "rc/actors/female/neutral/thatsit.wav", 3, {2,1,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "FIXME", "FIXME", "rc/actors/female/neutral/shitbaby.wav", 5, {2,4,7,8,9},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "FIXME", "FIXME", "rc/actors/female/neutral/noshit.wav", 1, {3,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "FIXME", "FIXME", "rc/actors/female/neutral/new.wav", 3, {0,1,2,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "FIXME", "FIXME", "rc/actors/female/neutral/new2.wav", 3, {7,8,9,0,0},0, 0 , TT_NEUTRAL}, + + {f_neutral_talk, "FIXME", "FIXME", "rc/actors/female/neutral/cool.wav", 3, {7,8,9,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "FIXME", "FIXME", "rc/actors/female/neutral/alright.wav", 3, {7,8,9,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "FIXME", "FIXME", "rc/actors/female/neutral/yeah.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "FIXME", "FIXME", "rc/actors/female/neutral/yeah2.wav", 2, {6,3,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "FIXME", "FIXME", "rc/actors/female/neutral/seennothing.wav", 3, {6,3,5,0,0},0, 0 , TT_NEUTRAL}, + + {f_neutral_talk, "FIXME", "FIXME", "rc/actors/female/neutral/umhmm.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "FIXME", "FIXME", "rc/actors/female/neutral/heybaby.wav", 0, {0,0,0,0,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "FIXME", "FIXME", "rc/actors/female/neutral/goingon.wav", 4, {4,7,8,9,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "FIXME", "FIXME", "rc/actors/female/neutral/knowshit.wav", 4, {4,7,8,9,0},0, 0 , TT_NEUTRAL}, + {f_neutral_talk, "FIXME", "FIXME", "rc/actors/female/neutral/hanging.wav", 5, {11,18,19,11,9},0, 0 , TT_NEUTRAL}, + + {f_neutral_talk, "FIXME", "FIXME", "rc/actors/female/neutral/uhuh.wav", 3, {18,0,6,0,0},0, 0 , TT_NEUTRAL}, +*/ +}; + +// profanity +// 20 + +voice_table_t rc_f_profanity_level1[] = +{ + {f_neutral_asshole_talk, "You talkin' to me?", "You talkin' to me?", "rc/actors/female/profanity/level1/f_cuss1-1.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {f_neutral_asshole_talk, "back your ugly ass up", "back your ugly @*%$#! up", "rc/actors/female/profanity/level1/f_cuss1-2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {f_neutral_asshole_talk, "piss the fuck off", "piss the @*%$#! off", "rc/actors/female/profanity/level1/f_cuss1-3.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {f_neutral_asshole_talk, "I'll bust a cap in yo ass", "I'll bust a cap in yo @*%$#!", "rc/actors/female/profanity/level1/f_cuss1-4.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {f_neutral_asshole_talk, "Your mama made that?", "Your mama made that?", "rc/actors/female/profanity/level1/f_cuss1-5.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE} + +/* + {f_neutral_asshole_talk, "FIXME", "FIXME", "rc/actors/female/profanity/level1/f_cuss1-1.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {f_neutral_asshole_talk, "FIXME", "FIXME", "rc/actors/female/profanity/level1/f_cuss1-2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {f_neutral_asshole_talk, "FIXME", "FIXME", "rc/actors/female/profanity/level1/f_cuss1-3.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {f_neutral_asshole_talk, "FIXME", "FIXME", "rc/actors/female/profanity/level1/f_cuss1-4.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {f_neutral_asshole_talk, "FIXME", "FIXME", "rc/actors/female/profanity/level1/f_cuss1-5.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE} +*/ +}; +//20 + +voice_table_t rc_f_profanity_level2[] = +{ + {NULL, "motherfucker what you lookin at?", "what are You lookin at?", "rc/actors/female/profanity/level2/f_cuss2-1.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "eat me you asshole", "@*%$#! me you @*%$#!", "rc/actors/female/profanity/level2/f_cuss2-2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "keep talkin' asshole", "keep talkin' @*%$#!", "rc/actors/female/profanity/level2/f_cuss2-3.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "I'll bust your face", "I'll bust your face", "rc/actors/female/profanity/level2/f_cuss2-4.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE} +/* + {NULL, "FIXME", "FIXME", "rc/actors/female/profanity/level2/f_cuss2-1.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/female/profanity/level2/f_cuss2-2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/female/profanity/level2/f_cuss2-3.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/female/profanity/level2/f_cuss2-4.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE} +*/ +}; + +//3 +voice_table_t rc_f_profanity_level3[] = +{ + {NULL, "Yo, fuck you man", "Yo, @*%$#! you man", "rc/actors/female/profanity/level3/f_cuss3-1.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "back the fuck up bitch", "back the @*%$#! up @*%$#!", "rc/actors/female/profanity/level3/f_cuss3-2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "fuck you you motherfucker", "@*%$#! you @*%$#!", "rc/actors/female/profanity/level3/f_cuss3-3.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE} +/* + {NULL, "FIXME", "FIXME", "rc/actors/female/profanity/level3/f_cuss3-1.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/female/profanity/level3/f_cuss3-2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/female/profanity/level3/f_cuss3-3.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE} +*/ +}; + +voice_table_t rc_f_fightsounds[] = +{ + {NULL, "In your face motherfucker", "In your face @*%$#!", "rc/actors/female/fighting/infacemf.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "Die you son of a bitch", "Die you son of a @*%$#!", "rc/actors/female/fighting/f_die.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "Take that you motherfucker", "Take that you @*%$#!", "rc/actors/female/fighting/f_takethat.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + + {NULL, "back the fuck off asshole", "back the @*%$#!", "rc/actors/female/fighting/f_backoff.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "Die you son of a bitch", "Die you son of a @*%$#!", "rc/actors/female/fighting/f_die.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "Die you motherfucker", "Die you @*%$#!", "rc/actors/female/fighting/f_die2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "I'll fuck you up you son of a bitch", "I'll @*%$#! you up you son of a @*%$#!", "rc/actors/female/fighting/f_die3.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "take that you motherfucker", "take that you @*%$#!", "rc/actors/female/fighting/f_takethat.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE} +/* + {NULL, "FIXME", "FIXME", "rc/actors/female/fighting/infacemf.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/female/fighting/f_die.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/female/fighting/f_takethat.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + + {NULL, "FIXME", "FIXME", "rc/actors/female/fighting/f_backoff.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/female/fighting/f_die.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/female/fighting/f_die2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/female/fighting/f_die3.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/female/fighting/f_takethat.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE} +*/ +}; + +// These are used for all specific speech functions throughout the game +// NOTE: Altering the order of these items will cause problems +voice_table_t rc_f_specific[] = +{ + {NULL, "motherfucker what you lookin at?", "what are You lookin at?", "actors/female/profanity/level2/f_cuss2-1.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, // first time they see you + {NULL, "eat me you asshole", "@*%$#! me you @*%$#!", "actors/female/profanity/level2/f_cuss2-2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, // if you leave + {NULL, "keep talkin' asshole", "keep talkin' @*%$#!", "actors/female/profanity/level2/f_cuss2-3.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, // if you come back after leaving + {NULL, "I'll bust your face", "I'll bust your face", "actors/female/profanity/level2/f_cuss2-4.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, // profanity level 3 +/* + {NULL, "FIXME", "FIXME", NULL, 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, // first time they see you + {NULL, "FIXME", "FIXME", NULL, 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, // if you leave + {NULL, "FIXME", "FIXME", NULL, 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, // if you come back after leaving + {NULL, "FIXME", "FIXME", NULL, 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, // profanity level 3 +*/ +}; + + +voice_table_t rc_f_backoff[] = +{ + {NULL, "Yo put that away man", "Yo put that away man", "rc/actors/female/beth_specific/putaway.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Back off motherfucker", "Back off @*%$#!", "rc/actors/female/beth_specific/backoff.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Yo, drop that shit motherfucker", "Yo, drop that @*%$#! @*%$#!", "rc/actors/female/beth_specific/droppiece.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Don't be pulling that shit on me", "Don't be pulling that @*%$#! on me", "rc/actors/female/beth_specific/pullshit.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, +/* {NULL, "FIXME", "FIXME", "rc/actors/female/beth_specific/putaway.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/female/beth_specific/backoff.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/female/beth_specific/droppiece.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/female/beth_specific/pullshit.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, +*/ +}; + + + + + +voice_table_t rc_female_specific[] = +{ + // pain + {NULL, "", "", "rc/actors/female/pain1.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "", "", "rc/actors/female/pain2.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "", "", "rc/actors/female/pain3.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "", "", "rc/actors/female/pain4.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + // death + {NULL, "", "", "rc/actors/female/death1.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "", "", "rc/actors/female/death2.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + // fire death + {NULL, "", "", "rc/actors/female/f_flamedeath1.wav", 0, {0,0,0,0,0},0,0 , TT_NONE}, + {NULL, "", "", "rc/actors/female/f_flamedeath2.wav", 0, {0,0,0,0,0},0,0 , TT_NONE}, + {NULL, "", "", "rc/actors/female/f_flamedeath2.wav", 0, {0,0,0,0,0},0,0 , TT_NONE}, +}; + +voice_table_t rc_f_grunting[] = +{ + {NULL, "", " ", "rc/actors/female/fighting/grunt1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", " ", "rc/actors/female/fighting/grunt2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", " ", "rc/actors/female/fighting/grunt3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", " ", "rc/actors/female/fighting/grunt4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", " ", "rc/actors/female/fighting/grunt5.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, +}; + +voice_table_t rc_lola[]= +{ + {NULL, "I think they got some weapons stashed around here somewhere", "I think they got some weapons stashed around here somewhere", "actors/female/lola/clue.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL, "man, this gang war's fuckin' everything up", "man, this gang war's @*%$#! everything up", "actors/female/lola/amb1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "goddam dragons are tearin' this city up", "@*%$#! dragons are tearin' this city up", "actors/female/lola/amb2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "they're really trashin' the place", "they're really trashin' the place", "actors/female/lola/amb3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + + {NULL, "hey motherfucker!", "hey @*%$#!!", "actors/female/lola/curse1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "yo!", "yo!", "actors/female/lola/curse2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "be cool bitch!", "be cool @*%$#!!", "actors/female/lola/curse3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + +}; + +voice_table_t blunt[] = +{ + {NULL, "", "", "actors/female/blunt/death1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/female/blunt/death1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + + {NULL, "Oh, I gotta go pee", "Oh, I gotta go pee", "actors/female/blunt/pain1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/female/blunt/pain2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/female/blunt/pain3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/female/blunt/pain4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + + {NULL, "You hurt him, you die!", "You hurt him, you die!", "actors/female/blunt/fight1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Let's dance, motherfucker!", "Let's dance, @*%$#!", "actors/female/blunt/fight2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "I'm gonna unload in your fucking face!", "I'm gonna unload in your @*%$#! face!", "actors/female/blunt/fight3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "You like to watch? Well, watch this!", "You like to watch? Well, watch this!", "actors/female/blunt/fight4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + + {NULL, "I'll execute you motherfucker!", "I'll execute you @*%$#!!", "actors/female/blunt/funny1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Let's do it... right here, right now!", "Let's do it... right here, right now!", "actors/female/blunt/funny2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Are you gonna give me a fuckin' problem?", "Are you gonna give me a @*%$#! problem?", "actors/female/blunt/funny3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "You're getting me all worked up!", "You're getting me all worked up!", "actors/female/blunt/funny4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "I'm talking to you, motherfucker!", "I'm talking to you, @*%$#!", "actors/female/blunt/funny5.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "I never thanked you for dinner!", "I never thanked you for dinner!", "actors/female/blunt/funny6.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + +}; diff --git a/gamesrc/voice_bitch.h b/gamesrc/voice_bitch.h new file mode 100644 index 0000000..daf8687 --- /dev/null +++ b/gamesrc/voice_bitch.h @@ -0,0 +1,114 @@ + +// voice_bitch.h + +// Conversation: +// The neutrals would say to you +// 20 +#define F_NUM_NEUTRAL_TALK 16 +extern voice_table_t f_neutral_talk[]; + +#define F_NUM_NEUTRAL_ASSHOLE_TALK 8 +extern voice_table_t f_neutral_asshole_talk[]; + +// Player talk to a neutral + +// 10 +#define F_NUM_NEUTRAL_TALK_PLAYER 3 +extern voice_table_t f_neutral_talk_player[]; + +// Neutrals converse among themselves + +// 20 +#define F_NUM_NEUTRAL_CONVERSE 16 +extern voice_table_t f_neutral_converse[]; + +// profanity +// 20 +#define F_NUM_PROFANITY_LEVEL1 5 +extern voice_table_t f_profanity_level1[]; +//20 +#define F_NUM_PROFANITY_LEVEL2 4 +extern voice_table_t f_profanity_level2[]; + +//3 +#define F_NUM_PROFANITY_LEVEL3 3 +extern voice_table_t f_profanity_level3[]; + +//=================================================================================== + +#define F_NUM_FOLLOWME 5 +extern voice_table_t f_followme[]; + +#define F_NUM_MOVEOUT 4 +extern voice_table_t f_moveout[]; + +#define F_NUM_HOLDPOSITION 6 +extern voice_table_t f_holdposition[]; + +//=================================================================================== + +#define F_NUM_FIGHTING 8 +extern voice_table_t f_fightsounds[]; + +#define F_NUM_SPECIFIC 4 +extern voice_table_t f_specific[]; + +#define F_NUM_BACKOFF 4 +extern voice_table_t f_backoff[]; + +#define F_NUM_LISA_SPECIFIC 8 +extern voice_table_t lisa_specific[]; + +#define F_NUM_BETH_SPECIFIC 8 +extern voice_table_t beth_specific[]; + +// JOSEPH 29-MAY-99 +#define F_NUM_FEMALE_SPECIFIC 9 +extern voice_table_t female_specific[]; +// END JOSEPH + +// JOSEPH 19-MAR-99 +#define F_NUM_MONA_SPECIFIC 20 +extern voice_table_t mona_specific[]; +// END JOSEPH + +// JOSEPH 12-MAR-99 +#define F_NUM_GRUNTING 5 +extern voice_table_t f_grunting[]; +// END JOSEPH + +#define F_NUM_YOLANDA_SPECIFIC 26 +extern voice_table_t yolanda_specific[]; + + +#define F_NUM_HIREDGAL_SPECIFIC 11 +extern voice_table_t hiredgal_specific[]; + +#define F_NUM_HIREDGAL_ASK 9 +extern voice_table_t hiredgal_ask[]; + +extern voice_table_t sy_selma[]; +extern voice_table_t sy_jane[]; + + +///////////////////////////////////////////////// +// radio city voice files +///////////////////////////////////////////////// + +extern voice_table_t rc_f_neutral_talk[]; +extern voice_table_t rc_f_neutral_asshole_talk[]; +extern voice_table_t rc_f_neutral_talk_player[]; +extern voice_table_t rc_f_neutral_converse[]; + +extern voice_table_t rc_f_profanity_level1[]; +extern voice_table_t rc_f_profanity_level2[]; +extern voice_table_t rc_f_profanity_level3[]; + +extern voice_table_t rc_f_fightsounds[]; +extern voice_table_t rc_f_specific[]; +extern voice_table_t rc_f_backoff[]; +extern voice_table_t rc_female_specific[]; +extern voice_table_t rc_f_grunting[]; +extern voice_table_t rc_lola[]; + +extern voice_table_t blunt[]; diff --git a/gamesrc/voice_punk.c b/gamesrc/voice_punk.c new file mode 100644 index 0000000..5dc8960 --- /dev/null +++ b/gamesrc/voice_punk.c @@ -0,0 +1,1587 @@ +#include "g_local.h" + +extern voice_table_t neutral_talk[]; +extern voice_table_t neutral_talk_player[]; +extern voice_table_t neutral_converse[]; + +// Conversation: +// The neutrals would say to you + +voice_table_t neutral_talk[] = +{ + {neutral_talk_player, "Hey buddy, what's on your mind?", "Hey buddy, what's on your mind?", "actors/male/neutral/talk1.wav", 3, {2,1,0,0,0},0, 0, TT_NONE}, + {neutral_talk_player, "You lookin' for trouble?", "You lookin' for trouble?", "actors/male/neutral/talk2.wav", 5, {2,4,7,8,9},0, 0, TT_NONE}, + {neutral_talk_player, "What can I do you for?", "What can I do you for?", "actors/male/neutral/talk3.wav", 1, {3,0,0,0,0},0, 0, TT_NONE}, + {neutral_talk_player, "Hey sport, lookin' for some action?", "Hey sport, lookin' for some action?", "actors/male/neutral/talk4.wav", 3, {0,1,2,0,0},0, 0, TT_NONE}, + {neutral_talk_player, "Fo'gettaboutit", "Fo'gettaboutit", "actors/male/neutral/talk5.wav", 3, {7,8,9,0,0},0, true, TT_NONE}, + + {neutral_talk_player, "What time you got?", "What time you got?", "actors/male/neutral/talk6.wav", 3, {7,8,9,0,0},0, 0, TT_NONE}, + {neutral_talk_player, "What the fuck's up with you?", "What the @*%$#!'s up with you?", "actors/male/neutral/talk7.wav", 3, {7,8,9,0,0},0, true, TT_NONE}, + {neutral_talk_player, "Another freekin night and no pussy", "Another freekin night and no @*%$#!", "actors/male/neutral/talk8.wav", 0, {0,0,0,0,0},0, true, TT_NONE}, + {neutral_talk_player, "Fuckin' cop can kiss my ass", "@*%$#! cop can kiss my @*%$#!", "actors/male/neutral/talk9.wav", 2, {6,3,0,0,0},0, 0, TT_NONE}, + {neutral_talk_player, "Yo man, what the fuck", "Yo man, what the @*%$#!", "actors/male/neutral/talk10.wav", 3, {6,3,5,0,0},0, 0, TT_NONE}, + + {neutral_talk_player, "Hey man, you hang around here much?", "Hey man, you hang around here much?", "actors/male/neutral/talk11.wav", 0, {0,0,0,0,0},0, 0, TT_NONE}, + {neutral_talk_player, "Yo man, this street ain't safe no more", "Yo man, this street ain't safe no more", "actors/male/neutral/talk12.wav", 0, {0,0,0,0,0},0, true, TT_NONE}, + {neutral_talk_player, "Lemme bum a smoke man", "Lemme bum a smoke man", "actors/male/neutral/talk13.wav", 4, {4,7,8,9,0},0, 0, TT_NONE}, + {neutral_talk_player, "You gotta match?", "You gotta match?", "actors/male/neutral/talk14.wav", 4, {4,7,8,9,0},0, 0, TT_NONE}, + /* + {neutral_talk_player, "It was a hit alright... Big time!", "It was a hit alright... Big time!", "actors/male/ambient/conv15.wav", 5, {11,18,19,11,9},0, 0, TT_NONE}, + + {neutral_talk_player, "It's a damn shame I tell ya", "It's a damn shame I tell ya", "actors/male/ambient/conv19.wav", 3, {18,0,6,0,0},0, 0, TT_NONE} + */ + {neutral_talk_player, "It was a hit alright... Big time!", "It was a hit alright... Big time!", "actors/male/ambient/conv15.wav", 5, {0,0,0,0,0},0, 0, TT_NONE}, + + {neutral_talk_player, "It's a damn shame I tell ya", "It's a damn shame I tell ya", "actors/male/ambient/conv19.wav", 3, {0,0,0,0,0},0, 0, TT_NONE} +}; + +voice_table_t neutral_asshole_talk[] = +{ + {NULL, "Fo'gettaboutit", "Fo'gettaboutit", "actors/male/neutral/talk5.wav", 0, {0,0,0,0,0},0, false, TT_NEGATIVE}, + {NULL, "What the fuck's up with you?", "What the @*%$#! up with you?", "actors/male/neutral/talk7.wav", 0, {0,0,0,0,0},0, false, TT_NEGATIVE}, +}; + +// Player talk to a neutral + +voice_table_t neutral_talk_player[] = +{ + /* + {neutral_talk, "Hey", "Hey", "actors/player/male/neutral/play1.wav", 0, {0,0,0,0,0},0, false, TT_NONE}, + {neutral_talk, "So what the fuck's goin' on man?", "So what the @*%$#!'s goin' on man?", "actors/player/male/neutral/play2.wav", 0, {0,0,0,0,0},0, false, TT_NONE}, + {neutral_talk, "So what's up?", "So what's up?", "actors/player/male/neutral/play3.wav", 4, {9,5,11,7,0},0, false, TT_NONE}, + {neutral_talk, "So what's all the commotion?" , "So what's all the commotion?", "actors/player/male/neutral/play4.wav", 3, {8,11,14,0,0},0, false, TT_NONE}, + {neutral_talk, "What's happening?", "What's happening?", "actors/player/male/neutral/play5.wav", 5, {0,9,12,13,7},0, false, TT_NONE}, + + {neutral_talk, "No shit", "No @*%$#!", "actors/player/male/neutral/play6.wav", 2, {4,1,0,0,0},0, true, TT_NONE}, + {neutral_talk, "So what's going on?", "So what's going on?", "actors/player/male/neutral/play7.wav", 3, {8,14,7,0,0},0, false, TT_NONE}, + {neutral_talk, "Hey, piss off man", "Hey, @*%$#! off man?", "actors/player/male/neutral/play8.wav", 3, {11,6,4,0,0},0, true, TT_NONE}, + {neutral_talk, "Got any information?", "Got any information?", "actors/player/male/neutral/play9.wav", 3, {11,6,4,0,0},0, false, TT_NONE}, + {neutral_talk, "Know anything good?", "Know anything good?", "actors/player/male/neutral/play10.wav", 3, {11,6,4,0,0},0, false, TT_NONE} + */ + {neutral_talk, "Hey", "Hey", "actors/player/male/neutral/play1.wav", 0, {0,0,0,0,0},0, true, TT_NONE}, + {neutral_talk, "So what the fuck's goin' on man?", "So what the @*%$#!'s goin' on man?", "actors/player/male/neutral/play2.wav", 0, {0,0,0,0,0},0, true, TT_NONE}, + {neutral_talk, "So what's up?", "So what's up?", "actors/player/male/neutral/play3.wav", 4, {9,5,11,7,0},0, 0, TT_NONE}, + {neutral_talk, "So what's all the commotion?" , "So what's all the commotion?", "actors/player/male/neutral/play4.wav", 3, {8,11,14,0,0},0, 0, TT_NONE}, + {neutral_talk, "What's happening?", "What's happening?", "actors/player/male/neutral/play5.wav", 5, {0,9,12,13,7},0, 0, TT_NONE}, + + {neutral_talk, "No shit", "No @*%$#!", "actors/player/male/neutral/play6.wav", 2, {4,1,0,0,0},0, true, TT_NONE}, + {neutral_talk, "So what's going on?", "So what's going on?", "actors/player/male/neutral/play7.wav", 3, {8,14,7,0,0},0, true, TT_NONE}, + {neutral_talk, "So what's up?", "So what's up?", "actors/player/male/neutral/play3.wav", 3, {11,6,4,0,0},0, true, TT_NONE}, + {neutral_talk, "Got any information?", "Got any information?", "actors/player/male/neutral/play9.wav", 3, {11,6,4,0,0},0, true, TT_NONE}, + {neutral_talk, "Know anything good?", "Know anything good?", "actors/player/male/neutral/play10.wav", 3, {11,6,4,0,0},0, true, TT_NONE} +}; + +// Neutrals converse among themselves + +voice_table_t neutral_converse[] = +{ + {neutral_converse, "Fo'gettaboutit", "Fo'gettaboutit", "actors/male/ambient/conv0.wav", 5, {7,8,3,18,19},0, true, TT_NEUTRAL}, + {neutral_converse, "Two points over the vig?... You gotta be crazy!", "Two points over the vig?... You gotta be crazy!", "actors/male/ambient/conv1.wav", 1, {0,0,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "She had a setta knockers on her like out to here!", "She had a setta knockers on her like out to here!", "actors/male/ambient/conv2.wav", 0, {0,0,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "Listen to me, will ya?", "Listen to me, will ya?", "actors/male/ambient/conv3.wav", 5, {5,7,18,4,2},0, true, TT_NEUTRAL}, + {neutral_converse, "What can I do?... He's my wife's brother", "What can I do?... He's my wife's brother", "actors/male/ambient/conv4.wav", 3, {0,5,13,0,0},0, 0, TT_NEUTRAL}, + + {neutral_converse, "He's gonna get clipped if he don't watch himself", "He's gonna get clipped if he don't watch himself", "actors/male/ambient/conv5.wav", 1, {0,0,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "Yeah, let's put twenty on Blueboy to show in the third", "Yeah, let's put twenty on Blueboy to show in the third", "actors/male/ambient/conv6.wav", 1, {3,0,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "Let's get started already", "Let's get started already", "actors/male/ambient/conv7.wav", 3, {8,13,16,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "What time you got?", "What time you got?", "actors/male/ambient/conv8.wav", 4, {0,3,12,18,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "He's doin' a three to five stretch up at Big Rock", "He's doin' a three to five stretch up at Big Rock", "actors/male/ambient/conv9.wav", 0, {0,0,0,0,0},0, 0, TT_NEUTRAL}, + + {neutral_converse, "The Feds shut that down weeks ago", "The Feds shut that down weeks ago", "actors/male/ambient/conv10.wav", 1, {11,0,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "No kiddin'?", "No kiddin'?", "actors/male/ambient/conv11.wav", 0, {0,0,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "What's it to ya?", "What's it to ya?", "actors/male/ambient/conv12.wav", 3, {0,3,18,0,0},0, true, TT_NEUTRAL}, + {neutral_converse, "He better pay up... or else", "He better pay up... or else", "actors/male/ambient/conv13.wav", 0, {0,0,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "If I gotta show up in person, someone ain't gonna like it", "If I gotta show up in person, someone ain't gonna like it", "actors/male/ambient/conv14.wav", 0, {0,0,0,0,0},0, 0, TT_NEUTRAL}, + + {neutral_converse, "It was a hit alright... Big time!", "It was a hit alright... Big time!", "actors/male/ambient/conv15.wav", 5, {11,18,19,11,9},0, 0, TT_NEUTRAL}, + {neutral_converse, "A hundred cases of the real stuff comin' in from up North", "A hundred cases of the real stuff comin' in from up North", "actors/male/ambient/conv16.wav", 2, {11,13,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "They got him... but good!", "They got him... but good!", "actors/male/ambient/conv17.wav", 4, {9,19,15,11,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "Don't worry 'bout it... the fix is in", "Don't worry 'bout it... the fix is in", "actors/male/ambient/conv18.wav", 1, {16,0,0,0,0},0, true, TT_NEUTRAL}, + {neutral_converse, "It's a damn shame I tell ya", "It's a damn shame I tell ya", "actors/male/ambient/conv19.wav", 3, {18,0,6,0,0},0, 0, TT_NEUTRAL} +}; + +voice_table_t neutral_converse_to_female[] = +{ + {neutral_converse, "hey baby. it's cool, we're gonna go over there later, you know", "hey baby, it's cool, we're gonna go over there later, you know", "actors/skidrow/leroy/conv1.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "man you shouldn't be hanging out with Nokia no more, that bitch trouble", "man you shouldn't be hanging out with Nokia no more, that @*%$#! trouble", "actors/skidrow/leroy/conv2.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "yeah I saw him last night man, it was cool", "yeah I saw him last night man, it was cool", "actors/skidrow/leroy/conv3.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "yeah yeah, we were there, we were there till about 2:00 am", "yeah yeah, we were there, we were there till about 2:00 am", "actors/skidrow/leroy/conv4.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "that motherfucker's had that shit back up in there till like 5:00 in the morning", "that @*%$#!'s had that @*%$#! back up in there till like 5:00 in the morning", "actors/skidrow/leroy/conv5.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + + {neutral_converse, "umm hmm", "umm hmm", "actors/skidrow/leroy/conv6.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "yeah I heard that baby", "yeah I heard that baby", "actors/skidrow/leroy/conv7.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "hell yeah", "@*%$#! yeah", "actors/skidrow/leroy/conv8.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "hey man, don't be getting' yourself all fucked up over it", "hey man, don't be getting' yourself all @*%$#!ed up over it", "actors/skidrow/leroy/conv9.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "Yo bitch, don't be getting' all like that with me. fuck wrong wit' you?", "Yo @*%$#!, don't be getting' all like that with me. @*%$#! wrong wit' you?", "actors/skidrow/leroy/conv10.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + + {neutral_converse, "shit...", "@*%$#!...", "actors/skidrow/leroy/conv11.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, +}; + + +// profanity + +voice_table_t profanity_level1[] = +{ + {neutral_asshole_talk, "What the fuck you lookin' at?", "What you lookin' at?", "actors/male/profanity/level1/cuss1-1.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "You talkin to me?", "You talkin to me?", "actors/male/profanity/level1/cuss1-2.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "You wanna throw?", "You wanna throw?", "actors/male/profanity/level1/cuss1-3.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "You gonna stand there all day?","You gonna stand there all day?", "actors/male/profanity/level1/cuss1-4.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "You want some of me?", "You want some of me?", "actors/male/profanity/level1/cuss1-5.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + + {neutral_asshole_talk, "I will bury you", "I will bury you", "actors/male/profanity/level1/cuss1-6.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "Turn around asswipe", "Turn around @*%$#!wipe", "actors/male/profanity/level1/cuss1-7.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "You piece of crap", "You piece of @*%$#!", "actors/male/profanity/level1/cuss1-8.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "Hey, what'd you say?", "Hey, what'd you say?", "actors/male/profanity/level1/cuss1-9.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "Kiss my ass", "Kiss my @*%$#!", "actors/male/profanity/level1/cuss1-10.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + + {neutral_asshole_talk, "Hey, beat it", "Hey, beat it", "actors/male/profanity/level1/beatit.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, +}; + +voice_table_t profanity_level2[] = +{ + {NULL, "What are you lookin' at asshole?", "What are you lookin' at @*%$#!?", "actors/male/profanity/level2/cuss2-1.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "You fuckin' talkin to me?", "You talkin to me?", "actors/male/profanity/level2/cuss2-2.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "You wanna throw me motherfucker?", "You wanna throw me @*%$#!?", "actors/male/profanity/level2/cuss2-3.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "You gonna fuckin' stand there all day?", "You gonna @*%$#! stand there all day?", "actors/male/profanity/level2/cuss2-4.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "You want some of me asshole?", "You want some of me @*%$#!?", "actors/male/profanity/level2/cuss2-5.wav", 0, {0,0,0,0,0},0, 0}, + + {NULL, "I will fuckin' bury you", "I will @*%$#! bury you", "actors/male/profanity/level2/cuss2-6.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "Fuck me? Fuck you you piece of shit", "@*%$#! me? @*%$#! you you piece of @*%$#!", "actors/male/profanity/level2/cuss2-7.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "You gonna fuck with my boys?", "You gonna @*%$#! with my boys?", "actors/male/profanity/level2/cuss2-8.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "What are you doin' on my fuckin' street", "What are you doin' on my @*%$#! street", "actors/male/profanity/level2/cuss2-9.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "Turn around shit for brains", "Turn around @*%$#! for brains", "actors/male/profanity/level2/cuss2-10.wav", 0, {0,0,0,0,0},0, 0}, + + {NULL, "I will fuckin' end you", "I will end you", "actors/male/profanity/level2/cuss2-11.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "You piece of shit", "You piece of @*%$#!", "actors/male/profanity/level2/cuss2-12.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "You fuckin' piece of shit", "You @*%$#!", "actors/male/profanity/level2/cuss2-13.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "What did you say motherfucker", "What did you say @*%$#!", "actors/male/profanity/level2/cuss2-14.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "Fuck you, you fuckin' piece of shit", "@*%$#! you, you @*%$#! piece of @*%$#!", "actors/male/profanity/level2/cuss2-15.wav", 0, {0,0,0,0,0},0, 0}, + + {NULL, "You fuckin' whore", "You @*%$#!", "actors/male/profanity/level2/cuss2-16.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "Kiss my ass you piece of shit", "Kiss my @*%$#! you piece of @*%$#!", "actors/male/profanity/level2/cuss2-17.wav", 0, {0,0,0,0,0},0, 0}, +}; + +voice_table_t profanity_level3[] = +{ + {NULL, "You punk mother fuckin' piece of shit", "You punk @*%$#! piece of @*%$#!", "actors/male/profanity/level3/cuss3-1.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {NULL, "I'm gonna fade your ass motherfucker", "I'm gonna fade your @*%$#! @*%$#!", "actors/male/profanity/level3/cuss3-2.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, +}; + + +voice_table_t player_profanity_level1[] = +{ + {neutral_asshole_talk, "What the fuck are you lookin' at?", "What the @*%$#! are you lookin' at?", "actors/player/male/profanity/level1/cuss1-1.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "You're not talkin to me are you?", "You're not talkin to me are you?", "actors/player/male/profanity/level1/cuss1-2.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "Hey you fuckin' want some of this?", "Hey you @*%$#! want some of this?", "actors/player/male/profanity/level1/cuss1-3.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "So you gonna fuckin' stand there?", "So you gonna @*%$#! stand there?", "actors/player/male/profanity/level1/cuss1-4.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "Hey you fuckin' want some of me?", "Hey you @*%$#! want some of me?", "actors/player/male/profanity/level1/cuss1-5.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + + {neutral_asshole_talk, "I will fuckin' bury you", "I will @*%$#! bury you", "actors/player/male/profanity/level1/cuss1-6.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "Turn the fuck around", "Turn the @*%$#! around", "actors/player/male/profanity/level1/cuss1-7.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "Hey fuck you piece of shit", "Hey @*%$#! you piece of @*%$#!", "actors/player/male/profanity/level1/cuss1-8.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "What the fuck did you say to me?", "What'd you say to me?", "actors/player/male/profanity/level1/cuss1-9.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "Hey fuckin' kiss my ass", "Hey @*%$#! kiss my @*%$#!", "actors/player/male/profanity/level1/cuss1-10.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + + {neutral_asshole_talk, "Hey fuckin' piss off", "Hey @*%$#! piss off", "actors/player/male/profanity/level1/beatit.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, +}; + +voice_table_t player_profanity_level2[] = +{ + {NULL, "What the fuck are you lookin' at asshole?", "What the @*%$#! are you lookin' at @*%$#!?", "actors/player/male/profanity/level2/cuss2-1.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "Hey I know you're not fuckin' talkin to me", "Hey I know you're not @*%$#! talkin to me", "actors/player/male/profanity/level2/cuss2-2.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "Hey you wanna fuckin' throw me motherfucker?", "Hey you wanna @*%$#! throw me @*%$#!?", "actors/player/male/profanity/level2/cuss2-3.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "So what are you gonna fuckin' stand there all day?", "So what are you gonna @*%$#! stand there all day?", "actors/player/male/profanity/level2/cuss2-4.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "Hey you fuckin' want some of me asshole?", "Want some of me @*%$#!?", "actors/player/male/profanity/level2/cuss2-5.wav", 0, {0,0,0,0,0},0, 0}, + + {NULL, "I will fucking bury you", "I will @*%$#! bury you", "actors/player/male/profanity/level2/cuss2-6.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "Fuck me? Fuck you, you piece of shit", "@*%$#! me? @*%$#! you, you piece of @*%$#!", "actors/player/male/profanity/level2/cuss2-7.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "Are you fuckin' talkin to me?", "Are you @*%$#! talkin to me?", "actors/player/male/profanity/level2/cuss2-8.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "Hey fuckin' turn around", "Hey @*%$#! turn around", "actors/player/male/profanity/level2/cuss2-9.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "Turn the fuck around", "Turn the @*%$#! around", "actors/player/male/profanity/level2/cuss2-10.wav", 0, {0,0,0,0,0},0, 0}, + + {NULL, "I will fucking end you", "I will @*%$#! end you", "actors/player/male/profanity/level2/cuss2-11.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "You fuckin' piece of shit", "You @*%$#! piece of @*%$#!", "actors/player/male/profanity/level2/cuss2-12.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "You fuckin' piece of shit", "You @*%$#! piece of @*%$#!", "actors/player/male/profanity/level2/cuss2-13.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "What the fuck did you say motherfucker?", "What the @*%$#! did you say @*%$#!?", "actors/player/male/profanity/level2/cuss2-14.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "Fuck you, you piece of shit", "@*%$#! you, you piece of @*%$#!", "actors/player/male/profanity/level2/cuss2-15.wav", 0, {0,0,0,0,0},0, 0}, + + {NULL, "You fuckin' whore", "You @*%$#!", "actors/player/male/profanity/level2/cuss2-16.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "Fuckin' kiss my ass you piece of shit", "@*%$#! kiss my @*%$#! you piece of @*%$#!", "actors/player/male/profanity/level2/cuss2-17.wav", 0, {0,0,0,0,0},0, 0}, +}; + +voice_table_t player_profanity_level3[] = +{ + {NULL, "You fuckin' piece of shit!", "You @*%$#! piece of @*%$#!!", "actors/player/male/profanity/level3/cuss3-1.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {NULL, "You fuckin' want some of this fuck?", "You @*%$#! want some of this @*%$#!?", "actors/player/male/profanity/level3/cuss3-2.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, +}; + +//=================================================================================== + +voice_table_t followme[] = +{ + {NULL, "Let's go", "Let's go", "actors/player/male/followme/follow1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Come on", "Come on", "actors/player/male/followme/follow2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Let's go this way", "Let's go this way", "actors/player/male/followme/follow3.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Follow me", "Follow me", "actors/player/male/followme/follow4.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Let's blow", "Let's blow", "actors/player/male/followme/follow5.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE} +}; + +voice_table_t moveout[] = +{ + {NULL, "Alright, let's move out", "Alright, let's move out", "actors/player/male/moveout/moveout1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Alright, move it", "Alright, move it", "actors/player/male/moveout/moveout2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Let's head out", "Let's head out", "actors/player/male/moveout/moveout3.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Let's get the fuck out of here", "Let's get the @*%$#! out of here", "actors/player/male/moveout/moveout4.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "C'mon let's go", "C'mon let's go", "actors/player/male/moveout/moveout5.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, +}; + +voice_table_t holdposition[] = +{ + {NULL, "Stop here", "Stop here", "actors/player/male/hold/hold1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Wait here", "Wait here", "actors/player/male/hold/hold2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Stay right here", "Stay right here", "actors/player/male/hold/hold3.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Don't move", "Don't move", "actors/player/male/hold/hold4.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Park your ass", "Park your @*%$#!", "actors/player/male/hold/hold5.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, +}; + + +// Ridah, using this for general chatting now.. +voice_table_t m_response[] = +{ + {NULL, "No problem", "No problem", "actors/male/hiredguy/orders/response1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "OK", "OK", "actors/male/hiredguy/orders/response2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Hey whatever", "Hey whatever", "actors/male/hiredguy/orders/response3.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Sure thing", "Sure thing", "actors/male/hiredguy/orders/response4.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "You got it", "You got it", "actors/male/hiredguy/orders/response5.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, +}; + + + +voice_table_t friendlycombat[] = +{ + {NULL, "C'mon punk!", "C'mon punk!", "actors/male/hiredguy/fighting/fight1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Yeah, you scared huh?", "Yeah, you scared huh?", "actors/male/hiredguy/fighting/fight2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "die you fuck!", "die you @*%$#!!", "actors/male/hiredguy/fighting/fight3.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "eat lead you fuck!", "eat lead you @*%$#!!", "actors/male/hiredguy/fighting/fight4.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Die fuck!", "Die @*%$#!!", "actors/male/hiredguy/fighting/fight5.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, +}; + +voice_table_t friendlypain[] = +{ + {NULL, "done shootin' me?", "done shootin' me?", "actors/male/hiredguy/wounded/friendlyfire1.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {NULL, "Hey quit shootin' me", "Hey quit shootin' me", "actors/male/hiredguy/wounded/friendlyfire2.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, +}; + +voice_table_t friendlyhurt[] = +{ + {NULL, "boss I'm all fucked up here", "boss I'm all @*%$#!ed up here", "actors/male/hiredguy/wounded/fuckedup.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "boss I'm hurt bad", "boss I'm hurt bad", "actors/male/hiredguy/wounded/hurtbad.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, +}; + +voice_table_t hiredguy_ask[] = +{ + {NULL, "Hey I'll follow you for 10 bucks", "Hey I'll follow you for 10 bucks", "actors/male/hiredguy/10bucks1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Hey 10 bucks? I'll run with ya", "Hey 10 bucks? I'll run with ya", "actors/male/hiredguy/10bucks2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Hey 25 bucks, I'll follow you anywhere", "Hey 25 bucks, I'll follow you anywhere", "actors/male/hiredguy/25bucks1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Hey, for 25 bucks I'll watch your back", "Hey, for 25 bucks I'll watch your back", "actors/male/hiredguy/25bucks2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "$50, I'm all yours", "$50, I'm all yours", "actors/male/hiredguy/50bucks1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Hey wanna hire me, it's 50 bucks", "Hey wanna hire me, it's 50 bucks", "actors/male/hiredguy/50bucks2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "I'll run with you for 75 bucks", "I'll run with you for 75 bucks", "actors/male/hiredguy/75bucks1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Hey you want me? 75 bucks I'm your man", "Hey you want me? 75 bucks I'm your man", "actors/male/hiredguy/75bucks2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "For $100, I'm all yours", "For $100, I'm all yours", "actors/male/hiredguy/100bucks1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Want somebody to watch your back? $100 I'll run with you", "Want somebody to watch your back? $100 I'll run with you", "actors/male/hiredguy/100bucks2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + + {NULL, "Sorry, I can't run with you...", "Sorry, I can't run with you...", "actors/male/hiredguy/louiesorry.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Hey, I'm working for Louie right now", "Hey, I'm working for Louie right now", "actors/male/hiredguy/louiework.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Hey, talked to Louie yet?", "Hey, talked to Louie yet?", "actors/male/hiredguy/louietalked.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Talk to the boss...", "Talk to the boss...", "actors/male/hiredguy/louieboss.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + + // buster lines + {NULL, "I hear your lookin' to blow a safe. 50 bucks and I'll do it", "I hear your lookin' to blow a safe. 50 bucks and I'll do it", "actors/male/hiredguy/buster1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "We're hot, get the fuck out of here!", "We're, hot get the @*%$#! out of here!", "actors/male/hiredguy/buster2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + // finger lines + {NULL, "Name's Fingers. 200 bucks, I'll open any safe for ya", "Name's Fingers. 200 bucks, I'll open any safe for ya", "actors/male/hiredguy/fingers1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Voila... Easy money", "Voila... Easy money", "actors/male/hiredguy/fingers2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + + {NULL, "Hey, Sorry I work alone", "Hey, Sorry I work alone ", "actors/male/hiredguy/workalone.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, +}; + +voice_table_t hiredguy_combat_moveout[] = +{ + {NULL, "Alright, take this motherfucker out", "Alright, take this @*%$#! out", "actors/player/male/combat/combat1.wav", 0, {0,0,0,0,0},0, 0, TT_NONE}, + {NULL, "Let's do it", "Let's do it", "actors/player/male/combat/combat2.wav", 0, {0,0,0,0,0},0, 0, TT_NONE}, + {NULL, "Time for you to do it", "Time for you to do it", "actors/player/male/combat/combat3.wav", 0, {0,0,0,0,0},0, 0, TT_NONE}, + {NULL, "Do your thing", "Do your thing", "actors/player/male/combat/combat4.wav", 0, {0,0,0,0,0},0, 0, TT_NONE}, + {NULL, "Go to it man", "Go to it man", "actors/player/male/combat/combat5.wav", 0, {0,0,0,0,0},0, 0, TT_NONE}, +}; + +voice_table_t hiredguy_specific[] = +{ + {NULL, "so, you got the money?", "so, you got the money?", "actors/male/hiredguy/gotcash1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "you got the bucks or what?", "you got the bucks or what?", "actors/male/hiredguy/gotcash2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "hey, you change your mind, I'll be here", "hey, you change your mind, I'll be here", "actors/male/hiredguy/changemind.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "hey, come back to me when you got the money", "hey, come back to me when you got the money", "actors/male/hiredguy/comeback.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "hey, I'll be waitin' for you man", "hey, I'll be waitin' for you man", "actors/male/hiredguy/waiting1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "hey buddy, I'll be waitin' for you", "hey buddy, I'll be waitin' for you", "actors/male/hiredguy/waiting2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + + {NULL, "I can't run with you, your crew's full", "I can't run with you, your crew's full", "actors/male/hiredguy/full1.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {NULL, "I can't run with you unless you make room for me", "I can't run with you unless you make room for me", "actors/male/hiredguy/full2.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + + {NULL, "Alright, let's go", "Alright, let's go", "actors/male/hiredguy/hired1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Alright, I'm all yours", "Alright, I'm all yours", "actors/male/hiredguy/hired2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "I'm hired", "I'm hired", "actors/male/hiredguy/hired3.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + + {NULL, "when you got the cash, come see me", "when you got the cash, come see me", "actors/male/hiredguy/comeback2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "come back when you got the money", "hey, come back to me when you got the money", "actors/male/hiredguy/comeback.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "when you got the dough, I'll go", "when you got the dough, I'll go", "actors/male/hiredguy/comeback3.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + +}; + +//=================================================================================== + +voice_table_t fightsounds[] = +{ + {NULL, "Take some!", "Take some!", "actors/male/fighting/takesome.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {NULL, "Eat lead!", "Eat lead!", "actors/male/fighting/eatlead1.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "Yo eat lead man!", "Yo eat lead man!", "actors/male/fighting/eatlead2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "die you fuck", "die you @*%$#!", "actors/male/fighting/diefuck.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "die rat fuck", "die rat @*%$#!", "actors/male/fighting/ratfuck.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "piece of shit", "piece of @*%$#!", "actors/male/fighting/pieceshit.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "die die die", "die die die", "actors/male/fighting/diediedie.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "fuck you", "@*%$#! you", "actors/male/fighting/fuckyou1.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "fuck you fuck", "@*%$#! you @*%$#!", "actors/male/fighting/fuckyou2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "fucker!", "@*%$#!er!", "actors/male/fighting/fucker.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE} +}; + + +// +// These are used for all specific speech functions throughout the game +// NOTE: Altering the order of these items will cause problems +// + +voice_table_t specific[] = +{ + {NULL, "What the fuck are you doin' back here?", "What the @*%$#! are you doin' back here?", "actors/male/specific/spec1.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, // first time they see you + {NULL, "Fuckin' pussy ass", "@*%$#! @*%$#! @*%$#!", "actors/male/specific/spec2.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, // if you leave + {NULL, "What are you fuckin' doin'g back here?", "What are you @*%$#! doin'g back here?", "actors/male/specific/spec3.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, // if you come back after leaving + {NULL, "Kill that motherfucker", "Kill that @*%$#!", "actors/male/specific/spec4.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, // profanity level 3 + {NULL, "Yo man you got a dollar?", "Yo man you got a dollar?", "actors/skidrow/magicj/holdbuck.wav", 0, {0,0,0,0,0},0,0, TT_QUESTION}, + {NULL, "Here's your fuckin' dollar", "Here's your @*%$#! dollar", "actors/player/male/p_heresdollar.wav", 0, {0,0,0,0,0},0,0, TT_NONE}, + {NULL, "Nah I ain't got a dollar", "Nah I ain't got a dollar", "actors/player/male/p_nodollar.wav", 0, {0,0,0,0,0},0,0 , TT_NONE}, + + {NULL, "A'right cool, here's your crowbar", "A'right cool, here's your crowbar", "actors/skidrow/magicj/crowbar.wav", 0, {0,0,0,0,0},0,0, TT_POSITIVE}, + {NULL, "get back to me when you got a dollar", "get back to me when you got a dollar", "actors/skidrow/magicj/getbacktome.wav",0, {0,0,0,0,0},0,0, TT_POSITIVE}, + {NULL, "I'll give you a crowbar for a dollar...", "I'll give you a crowbar for a dollar...", "actors/skidrow/magicj/gotdollar.wav", 0, {0,0,0,0,0},0,0, TT_QUESTION}, + {NULL, "That's cool", "That's cool", "actors/skidrow/leroy/cool.wav", 0, {0,0,0,0,0},0,0, TT_NEUTRAL}, // 10 + +// 10 + {NULL, "What the fuck's up?", "What the @*%$#!'s up?", "actors/skidrow/leroy/whatsup.wav", 0, {0,0,0,0,0},0,0 , TT_NEUTRAL}, // 11 + {NULL, "Yo Fuck you man", "Yo @*%$#! you man", "actors/skidrow/leroy/fuckyou.wav", 0, {0,0,0,0,0},0,0 , TT_NEUTRAL}, // 12 + {NULL, "Man don't be lookin' at my bitch motherfucker", "Man don't be lookin' at my @*%$#! @*%$#!", "actors/skidrow/leroy/mybitch1.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, // 13 + {NULL, "Hey motherfucker don't be talkin' to my bitch", "Hey @*%$#! don't be talkin' to my @*%$#!", "actors/skidrow/leroy/mybitch2.wav", 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, // 14 + {NULL, "better step the fuck off man", "better step the @*%$#! off man", "actors/skidrow/leroy/stepoff.wav", 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, // 15 + {NULL, "Man I warned your punk ass bitch, motherfucker","Man I warned your punk @*%$#! @*%$#! @*%$#!", "actors/skidrow/leroy/warned.wav", 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, // 16 + {NULL, "Fuckin' die you piece of shit", "@*%$#! die you piece of @*%$#!", "actors/skidrow/leroy/die.wav", 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, // 17 + {NULL, "Shit... Louie, you a'ight?... who did this?!", "@*%$#!... Louie, you a'ight?... who did this?!", NULL, 0, {0,0,0,0,0},0,0, TT_NONE}, + {NULL, "We'll get that fucker", "We'll get that @*%$#!er", NULL, 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + {NULL, "Hold on boss, you're gonna be ok", "Hold on boss, you're gonna be ok", NULL, 0, {0,0,0,0,0},0,0, TT_NONE}, + +// 20 + {NULL, "Damn, that punk's gonna pay", "Damn, that punk's gonna pay", NULL, 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + {NULL, "yo man put that pipe down", "yo man put that pipe down", "actors/skidrow/magicj/pipedown.wav" , 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + {NULL, "hey man I'll fuck you up good now", "hey man I'll @*%$#! you up good now", "actors/skidrow/magicj/fuckup.wav" , 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + {NULL, "Fuck that", "@*%$#! that", "actors/skidrow/magicj/fuckthat.wav" , 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + {NULL, "i'll be back motherfucker", "i'll be back @*%$#!", "actors/skidrow/magicj/beback.wav" , 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + +// 26: SR1 intro voices + {NULL, "don't fuck with us punk", "don't @*%$#! with us punk", NULL, 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + {NULL, "those fuckin' punks are gonna pay", "those @*%$#! punks are gonna pay", NULL, 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + {NULL, "this pipe should come in handy", "this pipe should come in handy", NULL, 0, {0,0,0,0,0},0,0, TT_NEUTRAL}, + + {NULL, "Fuck this shit", "@*%$#! this @*%$#!", "actors/skidrow/magicj/fuckshit.wav", 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, +}; + +voice_table_t m_backoff[] = +{ + {NULL, "Drop your fucking weapon", "Drop your @*%$#! weapon", "actors/male/specific/weapon1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Put that fucking thing away before I stick it up your ass", "Put that @*%$#! thing away before I stick it up your @*%$#!", "actors/male/specific/weapon2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Put that shit down", "Put that @*%$#! down", "actors/male/specific/weapon3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE} +}; + +voice_table_t momo_specific [] = +{ + {NULL, "Hey welcome to jax... how ya doin'?", "Hey welcome to jax... how ya doin'?", "actors/male/momo/welcome.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + +//1 + {NULL, "10 dollar cover charge gets you right in", "10 dollar cover charge gets you right in", "actors/male/momo/cover1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_QUESTION}, + {NULL, "You got the ten bucks?", "You got the ten bucks?", "actors/male/momo/cover2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_QUESTION}, + {NULL, "10 dollar cover charge gets you right in the door", "10 dollar cover charge gets you right in the door", "actors/male/momo/cover3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_QUESTION}, + +//4 + {NULL, "scram you fuckin' bum. You aint gettin in here for nuttin'", "scram you @*%$#! bum. You aint gettin in here for nuttin'", "actors/male/momo/scram.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "fuck me? no, fuck you, you piece of shit. now its 20 for you to get in you cock suck", "@*%$#! me? No @*%$#! you, you piece of @*%$#!. now its 20 for you to get in, you @*%$#!", "actors/male/momo/hostile1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "oh, fuck me again huh? now its 30 fuckin' dollars you fuckin' ingrate", "oh, @*%$#! me again huh? now its 30 @*%$#! dollars you @*%$#! ingrate", "actors/male/momo/hostile2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + +//7 + {NULL, "you ain't got the money? come back and see me later", "you ain't got the money? come back and see me later", "actors/male/momo/comeback1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "come back when you got some money you fuckin' dead beat", "come back when you got some money you @*%$#! dead beat", "actors/male/momo/comeback2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + +//9 + {NULL, "you're back eh... you got the dough?", "you're back eh... you got the dough?", "actors/male/momo/iamback.wav", 0, {0,0,0,0,0}, 0, 0 , TT_QUESTION}, + {NULL, "all right have a good time. go on in", "all right have a good time. go on in", "actors/male/momo/goin.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "and stay out of the ladies bathroom you fuckin' pervert", "and stay out of the ladies bathroom you @*%$#! pervert", "actors/male/momo/ladiesroom.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + +//12 + {NULL, "so what's it gonna be... you coming in or what?", "so what's it gonna be... you coming in or what?", "actors/male/momo/idle1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_QUESTION}, + {NULL, "so what... you gonna fuckin' hang out all day?", "so what... you gonna @*%$#! hang out all day?", "actors/male/momo/idle2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "get the fuck out of my foyer", "get the @*%$#! out of my foyer", "actors/male/momo/idle3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "why don't you go cap somebody and get some dough off em?", "why don't you go cap somebody and get some dough off em?", "actors/male/momo/idle4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + +// Ridah, had to duplicate this down here for code simplicity (can't delete from above since it'll screw up the order) + {NULL, "scram you fuckin' bum, you ain't gettin in here for nuttin'", "scram you @*%$#! bum, you ain't gettin in here for nuttin'", "actors/male/momo/scram.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + + {NULL, "Hey... c'mon in, this is club swank. How ya doin?", "Hey... c'mon in, this is club swank. How ya doin?", "actors/male/momo/welcome_swank.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Yes, you did the right thing by comin' to the boilerroom... c'mon in", "Yes, you did the right thing by comin' to the boilerroom... c'mon in", "actors/male/momo/welcome_boilerroom.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Hey look, this is the Salty dog... gimme your money and come on in", "Hey look, this is the Salty dog... gimme your money and come on in", "actors/male/momo/welcome_saltydog.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Welcome to the Typhoon... come on in", "Welcome to the Typhoon... come on in", "actors/male/momo/welcome_typhoon.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + +}; + + + +voice_table_t mj_random [] = +{ + {NULL, "What's goin' on?", "What's goin' on?", "actors/skidrow/magicj/idle1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Man, I ain't seen shit", "Man, I ain't seen @*%$#!", "actors/skidrow/magicj/idle2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "I don't know nothin'", "I don't know nothin'", "actors/skidrow/magicj/idle3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "What's up man?", "What's up man?", "actors/skidrow/magicj/idle4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, +}; + + +// JOSEPH 29-MAY-99 +voice_table_t male_specific[] = +{ + // pain + {NULL, "", "", "actors/male/pain100_1.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "", "", "actors/male/pain100_2.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "", "", "actors/male/pain75_1.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "", "", "actors/male/pain75_2.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "", "", "actors/male/pain50_1.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "", "", "actors/male/pain50_2.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "", "", "actors/male/pain25_1.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "", "", "actors/male/pain25_2.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + // death + {NULL, "", "", "actors/male/death1.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "", "", "actors/male/death2.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + // fire death + {NULL, "", "", "actors/male/flamedeath1.wav", 0, {0,0,0,0,0},0,0 , TT_NONE}, + {NULL, "", "", "actors/male/flamedeath2.wav", 0, {0,0,0,0,0},0,0 , TT_NONE}, + {NULL, "", "", "actors/male/flamedeath3.wav", 0, {0,0,0,0,0},0,0 , TT_NONE}, +}; +// END JOSEPH + +voice_table_t player_answer[] = +{ + {NULL, "no", "no", "actors/player/male/no.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "yes", "yes", "actors/player/male/yes.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, +}; + +voice_table_t lamont_random[] = +{ + {NULL, "why you come around lookin' ...", "why you come around lookin' ...", "actors/male/lamont/babble1.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "motherfucker is gonna be dead...", "@*%$#! is gonna be dead...", "actors/male/lamont/babble2.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "motherfucker's gonna come out...", "@*%$#!s gonna come out...", "actors/male/lamont/mfcomeout.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, +//3 + {NULL, "I swear I'm gonna kill him...", "I swear I'm gonna kill him...", "actors/male/lamont/killem.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "lenny gonna get my shit out there", "lenny gonna get my @*%$#! out there", "actors/male/lamont/lenny1.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "I tell you lenny ain't gonna do that shit to me", "I tell you lenny ain't gonna do that @*%$#! to me", "actors/male/lamont/lenny2.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, +//6 + {NULL, "motherfuckin' get me in that bar I'm gonna get that Lenny...", "goin get me in that bar... I'm gonna get that Lenny...", "actors/male/lamont/lenny3.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "kill that motherfucker I swear to god... What the Fuck you lookin' at?", "kill that @*%$#! I swear to god... What the @*%$#! you lookin' at?", "actors/male/lamont/lookin'at2.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "fuck you motherfuckers", "@*%$#! you @*%$#!", "actors/male/lamont/fuckyou.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, +//9 + {NULL, "you think you're gonna get somma dat out there...", "you think you're gonna get somma dat out there...", "actors/male/lamont/getsome.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "what the fuck you lookin' at?", "what the @*%$#! you lookin' at?", "actors/male/lamont/lookin'at1.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, +//11 + {NULL, "you got a fuckin' problem?", "you got a @*%$#! problem?", "actors/male/lamont/fuckinprob.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "man get the fuck off my street", "man get the @*%$#! off my street", "actors/male/lamont/offstreet1.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "you better get the fuck off my street", "you better get the @*%$#! off my street", "actors/male/lamont/offstreet2.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "Man, get the fuck out my face motherfucker", "Man, get the @*%$#! out my face @*%$#!", "actors/male/lamont/outofface.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, +}; + +voice_table_t lenny_table[] = +{ +//0 - straight after they come back with watch + {NULL, "ah christ, you got my watch! holy god... that's fuckin' great man", "ah christ, you got my watch! holy god... that's @*%$#! great man", "actors/male/lenny/gotwatch.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "oh... that's great!", "oh... that's great!", "actors/male/lenny/great.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + +//2 - give them the key straight after saying one of the above + {NULL, "hey, here's the key to the store room... you can go in there, and go into those headquarters", "hey, here's the key to the store room... you can go in there, and go into those headquarters", "actors/male/lenny/key.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + +//3 - play first time + {NULL, "hey, you're the guy that wasted all them sewer rats ain't ya?", "hey, you're the guy that wasted all them sewer rats ain't ya?", "actors/male/lenny/idle1.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + +//4 - random idle, haven't got watch + {NULL, "damn Lamont didn't pay his rent I threw his ass out", "damn Lamont didn't pay his rent I threw his @*%$#! out", "actors/male/lenny/intro2.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "If you could take care of him, I... I could do somethin' for ya", "If you could take care of him, I... I could do somethin' for ya", "actors/male/lenny/idle6.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "If you're gonna do it, you bring my watch back, that way I know he's fuckin' dead", "If you're gonna do it, you bring my watch back, that way I know he's dead", "actors/male/lenny/killhim.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "If you could take care of my little Lamont problem, I might be able to help you out, ya know", "If you could take care of my little Lamont problem, I might be able to help you out, ya know", "actors/male/lenny/lamont1.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "Christ sakes the guy's tryin' to fuckin' kill me now", "the guy's tryin' to @*%$#! kill me now", "actors/male/lenny/killme.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, +//SA +// {NULL, "He didn't pay his rent for 6 months, now the guy's tryin' to fuckin' kill me", "He didn't pay his rent for 6 months, now the guy's tryin' to @*%$#! kill me", "actors/male/lenny/killme2.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "that fucker Lamont didn't pay his rent for 6 months, now he's gonna try and kill me", "that @*%$#!er Lamont didn't pay his rent for 6 months, now he's gonna try and kill me", "actors/male/lenny/killme2.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "yeh that son of a bitch stole my zolex", "yeh that son of a @*%$#! stole my zolex", "actors/male/lenny/stole1.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "that's a genuine immitation zolex the fucker took from me", "that's a genuine immitation zolex the @*%$#!er took from me", "actors/male/lenny/stole2.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "got my fuckin' watch", "got my @*%$#! watch", "actors/male/lenny/stole3.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + +//13 - been around for a while + {NULL, "you ought to leave now, frankly we been in here too long... I don't want anybody gettin the wrong idea...", "you ought to leave now, frankly we been in here too long... I don't want anybody gettin the wrong idea...", "actors/male/lenny/leave.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + +//14 + {NULL, "thanks again, you're jake man", "thanks again, you're jake man", "actors/male/lenny/thanks1.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "thanks again, that's jake what ya did for me", "thanks again, that's jake what ya did for me", "actors/male/lenny/thanks2.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + + // Note to self: cloned this line for now need to remove the safe line from the code + {NULL, "thanks again, you're jake man", "thanks again, you're jake man", "actors/male/lenny/thanks1.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + // {NULL, "they don't know I know, but they got a safe up there behind one of their pictures", "actors/male/lenny/wallsafe.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + +//17 - after cuss, also play "jesus christ" after first time + {NULL, "Jesus Christ", "Jesus...", "actors/male/lenny/idle2.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "hey, I'm just tryin' to make a livin' here ya know", "hey, I'm just tryin' to make a livin' here ya know", "actors/male/lenny/idle4.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "I'm just tryin' to make a livin'", "I'm just tryin' to make a livin'", "actors/male/lenny/idle5.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + +//20 + {NULL, "yeh, I was the super in the building", "yeh, I was the super in the building", "actors/male/lenny/intro.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "hey, you wanna get those motherfuckers, they owe me rent for a fuckin' year", "hey, you wanna get those @*%$#!s, they owe me rent for a @*%$#! year", "actors/male/lenny/idle3.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + +//22 - came back without watch + {NULL, "if you could take out Lamont... I'll do somethin' for ya", "if you could take out Lamont... I'll do somethin' for ya", "actors/male/lenny/watch1.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "what, you didn't bring me my watch?", "what, you didn't bring me my watch?", "actors/male/lenny/watch2.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "hey I told you I'd do somethin' for ya if you'd get my watch back", "hey I told you I'd do somethin' for ya if you'd get my watch back", "actors/male/lenny/watch3.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, +}; + + +voice_table_t grunting[] = +{ + {NULL, "", "", "actors/male/fighting/grunt1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/fighting/grunt2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/fighting/grunt3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/fighting/grunt4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/fighting/grunt5.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, +}; + + +voice_table_t nick[] = +{ + {NULL, "better keep your ass out of there if you know what's good for you", "better keep your @*%$#! out of there if you know what's good for you", "actors/male/joseph/keepout.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "hey them scorps will rip you a new asshole", "hey them scorps will rip you a new @*%$#!", "actors/male/joseph/ripass.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "you go in there they will bring you out in a body bag", "you go in there they will bring you out in a body bag", "actors/male/joseph/bodybag.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "that's all I know", "that's all I know", "actors/male/joseph/alliknow.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "sorry, that's all I got to say", "sorry, that's all I got to say", "actors/male/joseph/alltosay.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "hey ask me again I tell you the same you fuckin' motard", "hey ask me again I tell you the same you @*%$#! motard", "actors/male/joseph/motard.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + + {NULL, "that bike the sewer rats got is the only way outta skidrow", "that bike the sewer rats got is the only way outta skidrow", "actors/male/joseph/outofskidrow.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE} +}; + + +voice_table_t rummy [] = +{ + // 0 + {NULL, "swat", "swat", "actors/bum/swat.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "shuffle", "shuffle", "actors/bum/shuffle.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "sit", "sit", "actors/bum/sit.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "bum", "bum", "actors/bum/bum.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + + // 4 + {NULL, "the combination to the safe is 36 26 36. left right left", "the combination to the safe is 36 26 36. left right left", "actors/male/rummy/combo1.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "Here's the combination to the safe", "Here's the combination to the safe", "actors/male/rummy/combo2.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + + // 6 + {NULL, "hey fuck y'all over there motherfuckers", "hey @*%$#! y'all over there @*%$#!s", "actors/male/rummy/fuckthem1.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "yeah fuck them motherfuckers at the warehouse", "yeah @*%$#! them @*%$#!s at the warehouse", "actors/male/rummy/fuckthem2.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + + // 8 + {NULL, "get me something to drink and I'll tell you somethin'", "get me something to drink and I'll tell you somethin'", "actors/male/rummy/getme1.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "you find me something to drink I might tell you somethin' good", "you find me something to drink I might tell you somethin' good", "actors/male/rummy/getme2.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + + // 10 + {NULL, "I thought you were gonna get me somethin to drink motherfucker", "I thought you were gonna get me somethin to drink", "actors/male/rummy/nogot1.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "hey fuck you man, where's my drink at?", "hey @*%$#! you man, where's my drink at?", "actors/male/rummy/nogot2.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + + // 12 + {NULL, "I used to work in the warehouse over there...", "I used to work in the warehouse over there...", "actors/male/rummy/worked1.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "I used to work in the warehouse over there...", "I used to work in the warehouse over there...", "actors/male/rummy/worked2.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + + // 14 + {NULL, "aww that's good man. much obliged to ya", "aww that's good man. much obliged to ya", "actors/male/rummy/yesgot1.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "aw yeah man, that's right!", "aw yeah man, that's right!", "actors/male/rummy/yesgot2.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE} + +}; + + +voice_table_t player_money_yes[] = +{ + {NULL, "here's your dough", "here's your dough", "actors/player/male/money1.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "here's your fuckin' money", "here's your @*%$#! money", "actors/player/male/money2.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, +}; + + +voice_table_t player_money_no[] = +{ + {NULL, "nah, I ain't got enough", "nah, I ain't got enough", "actors/player/male/nomoney1.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "I ain't got that much", "I ain't got that much", "actors/player/male/nomoney2.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, +}; + +voice_table_t sr_jesus[] = +{ + {NULL, "", "", "actors/male/jesus/death1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/jesus/death1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + + {NULL, "Ahh! God dammit!", "Ahh! Dammit!", "actors/male/jesus/pain1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/jesus/pain2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "Ow! mutha fucka!", "Ow! @*%$#!", "actors/male/jesus/pain3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/jesus/pain4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + + {NULL, "Let's go motherfucker!", "Let's go @*%$#!", "actors/male/jesus/fight1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Is that what you got pendejo?", "Is that what you got @*%$#!?", "actors/male/jesus/fight2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Fuckin' eat shit motherfucker!", "@*%$#! eat @*%$#! @*%$#!!", "actors/male/jesus/fight3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "I'll fuck you in the ass man!", "I'l @*%$#! you in the @*%$#! man", "actors/male/jesus/fight4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + + {NULL, "Are you ready to be fucked man?", "Are you ready to be @*%$#! man?", "actors/male/jesus/funny1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "You don't Fuck with the Jesus, man", "You don't @*%$#! with the Jesus, man", "actors/male/jesus/funny2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "I will Fuck you in the ass motherfucker", "I will @*%$#! you in the @*%$#! @*%$#!", "actors/male/jesus/funny3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Nobody fucks with the Jesus", "Nobody @*%$#! with the Jesus", "actors/male/jesus/funny4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Whooo!", "Whooo!", "actors/male/jesus/funny5.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "I'll stick that thing up your ass and pull the fucking trigger till it goes click", "I'll stick that thing up your @*%$#! and pull the @*%$#! trigger till it goes click", "actors/male/jesus/funny6.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + + {NULL, "Leave that battery alone muthafucka", "Leave that battery alone @*%$#!", "actors/male/jesus/battery.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, +}; + + +voice_table_t ty_mo[] = +{ + // 0 + {NULL, "Hey this is our turf asshole... turn around", "Hey this is our turf @*%$#!... turn around", "actors/male/moe/moe1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + + // 1 + {NULL, "get the fuck outta here", "get the @*%$#! outta here", "actors/male/moe/aggressive1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "I said beat it", "I said beat it", "actors/male/moe/aggressive2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "what, are you deaf? get lost", "what, are you deaf? get lost", "actors/male/moe/aggressive3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "blow, you fuck", "blow, you @*%$#!", "actors/male/moe/aggressive4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + // 5 + {NULL, "yeah... well fuck you too", "yeah... well @*%$#! you too", "actors/male/moe/cowar1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "man... you better get the fuck outta here", "man... you better get the @*%$#! outta here", "actors/male/moe/cowar2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "I... it's cool man, it's cool!", "I... it's cool man, it's cool!", "actors/male/moe/cowar3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + // 8 + {NULL, "kill that fucker", "kill that @*%$#!er", "actors/male/moe/killhim.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE} +}; + + +voice_table_t ty_larry[] = +{ + // 0 + {NULL, "You fuckin' looser", "You @*%$#! looser", "actors/male/hiredguy/larry.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, +}; + + +voice_table_t sy_popeye[] = +{ + + {NULL, "Heilman's boys just dragged some dame into that warehouse... she was screamin' er head off a minute ago", "Heilman's boys just dragged some dame into that warehouse... she was screamin' er head off a minute ago", "actors/male/popeye/dragged.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL, "don't try to tackle those goons yourself... you won't stand a chance", "don't try to tackle those goons yourself... you won't stand a chance", "actors/male/popeye/tackle.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "you ought to go down to the salty dog saloon and get a little help", "you ought to go down to the salty dog saloon and get a little help", "actors/male/popeye/saltydog.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL, "ahh, that Heilman's a piece of work, isn't he", "ahh, that Heilman's a piece of work, isn't he", "actors/male/popeye/prefind1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "son of a bitch has got these docks sewn up tight", "son of a @*%$#! has got these docks sewn up tight", "actors/male/popeye/prefind2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "you want to work steady, you gotta kick back half your dough", "you want to work steady, you gotta kick back half your dough", "actors/male/popeye/prefind3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "you give the big guy any lip and his goons do a number on yeh", "you give the big guy any lip and his goons do a number on yeh", "actors/male/popeye/prefind4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "I guess she musta talked outta turn", "I guess she musta talked outta turn", "actors/male/popeye/prefind5.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "uuuurrp", "uuuurrp", "actors/male/popeye/burp.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + + {NULL, "poor dame, they really did a number on her", "poor dame, they really did a number on her", "actors/male/popeye/postfind1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "Heilman and the rest of his goons are holed up over by the shipyard", "Heilman and the rest of his goons are holed up over by the shipyard", "actors/male/popeye/postfind2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "they're all armed to the teeth... you better get some more help", "they're all armed to the teeth... you better get some more help", "actors/male/popeye/postfind3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "somebody's got to open up the gate for yeh", "somebody's got to open up the gate for yeh", "actors/male/popeye/postfind4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "Heilman sure ain't gonna like hearin how you iced his boys", "Heilman sure ain't gonna like hearin how you iced his boys", "actors/male/popeye/postfind5.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "poor Barney... he's sleepin with the wharf shrimp", "poor Barney... he's sleepin with the wharf shrimp", "actors/male/popeye/barny.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "you go in the water... wharf shrimp in the water...", "you go in the water... wharf shrimp in the water...", "actors/male/popeye/wharfshrimp.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + + {NULL, "Don't talk to me like that ya young punk!", "Don't talk to me like that ya young punk!", "actors/male/popeye/hostile1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Whattaya barking at me for? I didn't do nothin'", "Whattaya barking at me for? I didn't do nothin'", "actors/male/popeye/hostile2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Ah so go fuck yourself, I was just tryin' ta help", "Ah so go @*%$#! yourself, I was just tryin' ta help", "actors/male/popeye/hostile3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + + {NULL, "arrrrh", "arrrrh", "actors/male/popeye/argh1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "nnaarrahh", "nnaarrahh", "actors/male/popeye/argh2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "nahrrnn", "nahrrnn", "actors/male/popeye/argh3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + + {NULL, "", "", "actors/male/popeye/whistle.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + +}; + + +voice_table_t sy_barney[] = +{ + {NULL, "FIXME", "FIXME", "actors/male/barney/wav1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "FIXME", "FIXME", "actors/male/barney/wav1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "FIXME", "FIXME", "actors/male/barney/wav1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "FIXME", "FIXME", "actors/male/barney/wav1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL, "FIXME", "FIXME", "actors/male/barney/wav1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "FIXME", "FIXME", "actors/male/barney/wav1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "FIXME", "FIXME", "actors/male/barney/wav1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + + {NULL, "FIXME", "FIXME", "actors/male/barney/wav1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "FIXME", "FIXME", "actors/male/barney/wav1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "FIXME", "FIXME", "actors/male/barney/wav1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, +}; + + +voice_table_t sy_sal[] = +{ + {NULL, "somebody just kidnapped big willie's girl", "somebody just kidnapped big willie's girl", "actors/male/sal/kidnapped.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "yeah, that's him lyin on the floor", "yeah, that's him lyin on the floor", "actors/male/sal/onfloor.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "let's get her back before it's too late", "let's get her back before it's too late", "actors/male/sal/getherback.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "man, look what they did to her... better go tell willie", "man, look what they did to her... better go tell willie", "actors/male/sal/didtoher.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "man, we gonna need shotguns for this kinda deal", "man, we gonna need shotguns for this kinda deal", "actors/male/sal/shotguns.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + +}; + + +voice_table_t sy_bigwillie[] = +{ + {NULL, "ughhhh, my achin' head", "ughhhh, my achin' head", "actors/male/willy/onfloor1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "what fell on me?", "what fell on me?", "actors/male/willy/onfloor2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "somebody turn on the lights", "somebody turn on the lights", "actors/male/willy/onfloor3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "where's lizzy?", "where's lizzy?", "actors/male/willy/onfloor4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "What'd they do to her?", "What'd they do to her?", "actors/male/willy/onfloor5.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + + {NULL, "Lizzy... I'm gonna take it outta their fuckin' hides!", "Lizzy... I'm gonna take it outta their @*%$#! hides!", "actors/male/willy/lizzy1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "I got the key with me... let's go", "I got the key with me... let's go", "actors/male/willy/lizzy2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL, "Payback time motherfuckers!", "Payback time @*%$#!!", "actors/male/willy/fight1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "This is for you Lizzy!", "This is for you Lizzy!", "actors/male/willy/fight2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "You murderin' bastards!", "You murderin' @*%$#!!", "actors/male/willy/fight3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "Die you fuckin' scum!", "Die you @*%$#! scum!", "actors/male/willy/fight4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "Straight to hell motherfucker!", "Straight to hell @*%$#!!", "actors/male/willy/fight5.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, +}; + + +voice_table_t sy_dogg[] = +{ + {NULL, "man, Heilman's boys sure fucked this joint up", "man, Heilman's boys sure @*%$#! this joint up", "actors/male/dogg/dogg1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "What the hell is up with you, stupid?", "What the @*%$#! is up with you, stupid?", "actors/male/dogg/dogg2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "I don't like no goons breakin' heads in my place", "I don't like no goons breakin' heads in my place", "actors/male/dogg/dogg3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "ahh, little wreckage that's all, no problem, just watch the broken glass eh?", "ahh, little wreckage that's all, no problem, just watch the broken glass eh?", "actors/male/dogg/dogg4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "one grain alcohol and rain water, comin' up", "one grain alcohol and rain water, comin' up", "actors/male/dogg/dogg5.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + + +}; + + +voice_table_t sy_lefty[] = +{ + {NULL, "what we standin' around for? time's a wastin'", "what we standin' around for? time's a wastin'", "actors/male/lefty/random1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "get a move on will ya?", "get a move on will ya?", "actors/male/lefty/random2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "get goin' or you'll never find her", "get goin' or you'll never find her", "actors/male/lefty/random3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "hey I gotta stay put and look after big Willi", "hey I gotta stay put and look after big Willi", "actors/male/lefty/nohire1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "I can't leave big Willie in this shape", "I can't leave big Willie in this shape", "actors/male/lefty/nohire2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, +}; + + + + +voice_table_t pv_louie[] = +{ + {NULL, "So, Nicki didn't kill you after all", "So, Nicki didn't kill you after all", "actors/male/louie/didntkill.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Nicki's got some of my personal shit in a safe in his warehouse... I need somebody to get it back for me", "Nicki's got some of my personal @*%$#! in a safe in his warehouse... I need somebody to get it back for me", "actors/male/louie/safe.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "FIXME:", "FIXME:xxx", "", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "You'll need some muscle... I got all the local guys tied up right now", "You'll need some muscle... I got all the local guys tied up right now", "actors/male/louie/muscle.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Man, I'll bet your lookin' to pay him back", "Man, I'll bet your lookin' to pay him back", "actors/male/louie/payback.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "No? Heh, good luck asshole... see you in the morgue", "No? Heh, good luck @*%$#!... see you in the morgue", "actors/male/louie/morgue.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Why don't you turn around and get the fuck outta here", "Why don't you turn around and get the @*%$#! outta here", "actors/male/louie/getout1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Yeah? Well piss off you fuck", "Yeah? Well piss off you @*%$#!", "actors/male/louie/getout2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Well fuck you too. Get outta my face", "Well @*%$#! you too. Get outta my face", "actors/male/louie/getout3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "You know what to do... get going", "You know what to do... get going", "actors/male/louie/getgoing.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "What are you hangin' around here for?", "What are you hangin' around here for?", "actors/male/louie/hangaround.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "You ain't gonna find any safe in here...", "You ain't gonna find any safe in here...", "actors/male/louie/findsafe.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Good luck", "Good luck", "actors/male/louie/goodluck.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Hey, there's a couple of freelancers you might want to talk to downstairs... Demo guy and a safecracker", "Hey, there's a couple of freelancers you might want to talk to downstairs... Demo guy and a safecracker", "actors/male/louie/buster.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "The entrance his warehouse is over by my place. Watch yourself, he's got a couple of tough nuts parked out front", "The entrance his warehouse is over by my place. Watch yourself, he's got a couple of tough nuts parked out front", "actors/male/louie/entrance.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Jezus, you made it! Pretty impressive... now that I've got my shit back I'm blowin' this burg. Local muscle's all yours pal", "@*%$#!, you made it! Pretty impressive... now that I've got my @*%$#! back I'm blowin' this burg. Local muscle's all yours pal", "actors/male/louie/madeit.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "here's the key to Nicki's production facility. Well, see ya round", "here's the key to Nicki's production facility. Well, see ya round", "actors/male/louie/key.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "No luck eh?", "No luck eh?", "actors/male/louie/noluck.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "You do that for me, I'll let you hire some of my muscle... deal?", "You do that for me, I'll let you hire some of my muscle... deal?", "actors/male/louie/favor.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "So, you understand?", "So, you understand?", "actors/male/louie/questions.wav", 0, {0,0,0,0,0}, 0, 0 , TT_QUESTION}, +}; + + +voice_table_t ty_tyrone[] = +{ + {NULL, "", "", "actors/male/tyrone/death1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/tyrone/death1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/tyrone/pain1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/tyrone/pain2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/tyrone/pain3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/tyrone/pain4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + + + {NULL, "Les go! Come on!", "Les go! Come on!", "actors/male/tyrone/fight1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Bring it motherfucker!", "Bring it @*%$#!!", "actors/male/tyrone/fight2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Be cool bitch!", "Be cool @*%$#!!", "actors/male/tyrone/fight3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Bring it motherfucker!", "Bring it @*%$#!!", "actors/male/tyrone/fight4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + + {NULL, "I'm sorry, did I break your concentration?", "I'm sorry, did I break your concentration?", "actors/male/tyrone/funny1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Do I look like a bitch, motherfucker?", "Do I look like a @*%$#!, @*%$#!?", "actors/male/tyrone/funny2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "I'm the guns of the Navarone!", "I'm the guns of the Navarone!", "actors/male/tyrone/funny3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "I'm superfly TNT!", "I'm superfly TNT!", "actors/male/tyrone/funny4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "I'm a mushroom cloud layin' motherfucker, motherfucker!", "I'm a mushroom cloud layin' @*%$#!, @*%$#!!", "actors/male/tyrone/funny5.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "I will lay my vengeance down upon thee!", "I will lay my vengeance down upon thee!", "actors/male/tyrone/funny6.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE} + +}; + + +voice_table_t ty_luke[] = +{ + {NULL, "If you wanna get to Radio City, you should, like, go in the sewers", "If you wanna get to Radio City, you should, like, go in the sewers", "actors/male/luke/clue1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "I dunno how to get the door open, but you can", "I dunno how to get the door open, but you can", "actors/male/luke/clue2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL, "Were you on the train to Radio City that just crashed? You should be dead", "Were you on the train to Radio City that just crashed? You should be dead", "actors/male/luke/rand1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "The trainyard guys are everywhere", "The trainyard guys are everywhere", "actors/male/luke/rand2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "Yeah, it's pretty dangerous around here", "Yeah, it's pretty dangerous around here", "actors/male/luke/rand3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "Train guys have got this joint locked up man", "Train guys have got this joint locked up man", "actors/male/luke/rand4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + + {NULL, "Hey, why are you fucking with us man?", "Hey, why are you @*%$#! with us man?", "actors/male/luke/hostile1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "You should not do that!", "You should not do that!", "actors/male/luke/hostile2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "Hey... what's wrong with you?", "Hey... what's wrong with you?", "actors/male/luke/hostile3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + +}; + +voice_table_t ty_hann[] = +{ + {NULL, "Now that the tunnels are blocked off you'll have to use the sewers", "Now that the tunnels are blocked off you'll have to use the sewers", "actors/male/hann/clue1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Somebody busted the valve handle right off the access panel. Can't get out without that...", "Somebody busted the valve handle right off the access panel. Can't get out without that...", "actors/male/hann/clue2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL, "There's nothin' but union train boys around here", "There's nothin' but union train boys around here", "actors/male/hann/rand1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "They're some tough motherfuckers", "They're some tough @*%$#!", "actors/male/hann/rand2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "That was a hell of a wreck... you should be a grease spot", "That was a @*%$#! of a wreck... you should be a grease spot", "actors/male/hann/rand3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "I wish we could help you get out but... I don't know how to open that last door", "I wish we could help you get out but... I don't know how to open that last door", "actors/male/hann/rand4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + + {NULL, "Hey, we didn't do nothin' to you!", "Hey, we didn't do nothin' to you!", "actors/male/hann/hostile1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "Hey, back up with that shit!", "Hey, back up with that @*%$#!!", "actors/male/hann/hostile2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "Fuck you!", "@*%$#! you!", "actors/male/hann/hostile3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, +}; + + +voice_table_t steeltown_moker[] = +{ + {NULL, "", "", "actors/male/moker/death1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/moker/death1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + + {NULL, "", "", "actors/male/moker/pain1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/moker/pain2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/moker/pain3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/moker/pain4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + + {NULL, "Ahh, moving up the ladder!", "Ahh, moving up the ladder!", "actors/male/moker/fight1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Heh heh hehehe!", "Heh heh hehehe!", "actors/male/moker/fight2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "C'mon girlie man!", "C'mon girlie man!", "actors/male/moker/fight3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Moker will eat you for breakfast and shit you the next day!", "Moker will eat you for breakfast and @*%$#! you the next day!", "actors/male/moker/fight4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + + {NULL, "Moker will eat you for breakfast and crap you out!", "Moker will eat you for breakfast and @*%$#! you out!", "actors/male/moker/funny1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "I'll eat you up and shit you out!", "I'll eat you up and @*%$#! you out!", "actors/male/moker/funny2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "You think you're tough?", "You think you're tough?", "actors/male/moker/funny3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Let's go girlie man", "Let's go girlie man", "actors/male/moker/funny4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "How's that for a strike breaker?", "How's that for a strike breaker?", "actors/male/moker/funny5.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "I have chunks of guys bigger than you in my stool!", "I have chunks of guys bigger than you in my stool!", "actors/male/moker/funny6.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE} +}; + + +voice_table_t steeltown_kids[]= +{ + // 4 clues about david + {NULL, "I just saw David a minute ago", "I just saw David a minute ago", "actors/male/steelkids/david_clue1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "You need help taking Moker down, David's your man", "You need help taking Moker down, David's your man", "actors/male/steelkids/david_clue2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "David's looking to put some serious hurt on Moker", "David's looking to put some serious hurt on Moker", "actors/male/steelkids/david_clue3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "That David's one handy motherfucker with a lockpick", "That David's one handy @*%$#! with a lockpick", "actors/male/steelkids/david_clue4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + // 4 clues about hmg + {NULL, "Moker's main job is moving weapons for the kingpin", "Moker's main job is moving weapons for the kingpin", "actors/male/steelkids/hmg_clue1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Moker's gang got some shiny new toys... came from the big man himself", "Moker's gang got some shiny new toys... came from the big man himself", "actors/male/steelkids/hmg_clue2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "That new gun packs some serious firepower... a real hand cannon", "That new gun packs some serious firepower... a real hand cannon", "actors/male/steelkids/hmg_clue3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "A whole shitload of those new guns just came in", "A whole @*%$#!load of those new guns just came in", "actors/male/steelkids/hmg_clue4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + // 4 random i'm out of here + {NULL, "I'm outta here", "I'm outta here", "actors/male/steelkids/afraid1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Catch ya later", "Catch ya later", "actors/male/steelkids/afraid2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Sorry, gotta go", "Sorry, gotta go", "actors/male/steelkids/afraid3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "I'm gone", "I'm gone", "actors/male/steelkids/afraid4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + +}; + +voice_table_t steeltown_mathew[]= +{ + // clue talk to bambi + {NULL, "Bambi waits tables down at the boiler room. Poor girl's worried sick about her brother", "Bambi waits tables down at the boiler room. Poor girl's worried sick about her brother", "actors/male/mathew/bambi.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + // he work in the mill + {NULL, "He works in the mill... rough way to earn a living", "He works in the mill... rough way to earn a living", "actors/male/mathew/mill.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + // 4 ambs + {NULL, "That Moker's one heartless son of a bitch, I'll tell ya", "That Moker's one heartless son of a @*%$#!, I'll tell ya", "actors/male/mathew/amb1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "He works those young fellas at the mill day and night", "He works those young fellas at the mill day and night", "actors/male/mathew/amb2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Poor devils don't last long there", "Poor devils don't last long there", "actors/male/mathew/amb3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Little David was lookin awful sickly today", "Little David was lookin awful sickly today", "actors/male/mathew/amb4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + // 3 curses + {NULL, "Hey, people loose their teeth talkin like that", "Hey, people loose their teeth talkin like that", "actors/male/mathew/curse1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "The cheaper the hood, the gaudier the patter", "The cheaper the hood, the gaudier the patter", "actors/male/mathew/curse2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Crawl back in the gutter where you belong", "Crawl back in the gutter where you belong", "actors/male/mathew/curse3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, +}; + + +voice_table_t heilman[] = +{ + {NULL, "Mein Fuhrer, I can't walk!", "Mein Fuhrer, I can't walk!", "actors/male/heilman/death1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "Ich bin fertig!", "Ich bin fertig!", "actors/male/heilman/death1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + + {NULL, "Ach mein lieben!", "Ach mein lieben!", "actors/male/heilman/pain1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/heilman/pain2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/heilman/pain3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "Gaaouch!", "Gaaouch!", "actors/male/heilman/pain4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + + {NULL, "I'm hitting you!", "I'm hitting you!", "actors/male/heilman/fight1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "How you like zem apples?", "How you like zem apples?", "actors/male/heilman/fight2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "You are making me sooo angry!", "You are making me sooo angry!", "actors/male/heilman/fight3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Take zat you little sheiter!", "Take zat you little @*%$#!!", "actors/male/heilman/fight4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + + {NULL, "Ve have meat here in the building!", "Ve have meat here in the building!", "actors/male/heilman/funny1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "I have vays of making you hurt!", "I have vays of making you hurt!", "actors/male/heilman/funny2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Pain is instructive!", "Pain is instructive!", "actors/male/heilman/funny3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "I have five times your strength!", "I have five times your strength!", "actors/male/heilman/funny4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Time to nip this in the bud!", "Time to nip this in the bud!", "actors/male/heilman/funny5.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Stop fighting back, it's not fair!", "Stop fighting back, it's not fair!", "actors/male/heilman/funny6.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "I'll cut off your johnson!", "I'll cut off your @*%$#!!", "actors/male/heilman/funny7.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE} + +}; + +// JOSEPH 26-MAY-99 +voice_table_t nickiblanco[] = +{ + {NULL, "I'll... remember you...", "I'll... remember you...", "actors/male/nicki/death1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "Okay, I'm licked...", "Okay, I'm licked...", "actors/male/nicki/death1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + + {NULL, "", "", "actors/male/nicki/pain1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/nicki/pain2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/nicki/pain3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/nicki/pain4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + + {NULL, "What... you think I'm just one of the guys?", "What... you think I'm just one of the guys?", "actors/male/nicki/fight1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Your ass is mine you hear me? It's Mine!", "Your @*%$#! is mine you hear me? It's Mine!", "actors/male/nicki/fight2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "C'mon... C'mon!", "C'mon... C'mon!", "actors/male/nicki/fight3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "You like that?!", "You like that?!", "actors/male/nicki/fight4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + + {NULL, "You dug your grave, go fall in it", "You dug your grave, go fall in it", "actors/male/nicki/funny1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "You're gonna talk yourself right into the river", "You're gonna talk yourself right into the river", "actors/male/nicki/funny2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "So, fucking with us makes you a bigshot eh?", "So, @*%$#! with us makes you a bigshot eh?", "actors/male/nicki/funny3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Nobody Fucks with our operation!", "Nobody @*%$#! with our operation!", "actors/male/nicki/funny4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "C'mere punk, I wanna chastise you!", "C'mere punk, I wanna chastise you!", "actors/male/nicki/funny5.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Where you gonna run to now tough guy?!", "Where you gonna run to now tough guy?!", "actors/male/nicki/funny6.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, +}; +// END JOSEPH + +voice_table_t steeltown_david[]= +{ + {NULL, "Thanks a lot for coming to get me man", "Thanks a lot for coming to get me man", "actors/male/david/david1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Okay man, I'm stickin' with you now", "Okay man, I'm stickin' with you now", "actors/male/david/david2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Moker's got one of the new guns locked up... but I can get it for ya", "Moker's got one of the new guns locked up... but I can get it for ya", "actors/male/david/david3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, +}; + + +voice_table_t steeltown_pete[]= +{ + {NULL, "...don't serve me drinks no more", "...don't serve me drinks no more", "actors/male/pete/rand1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "wy doesn... everbody just...", "wy doesn... everbody just...", "actors/male/pete/rand2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "You drove me to... drink an I never thanked ya", "You drove me to... drink an I never thanked ya", "actors/male/pete/rand3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Got me a can of eight year old Sterno... back in muh box", "Got me a can of eight year old Sterno... back in muh box", "actors/male/pete/rand4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL, "Gahhh... get away from me!", "Gahhh... get away from me!", "actors/male/pete/curse1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "You... fuckin' devil. Get outta here", "You... @*%$#! devil. Get outta here", "actors/male/pete/curse2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Nu... nooo, ya can't have muh soul!", "Nu... nooo, ya can't have muh soul!", "actors/male/pete/curse3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "You don't fool me... you spawn of hell!", "You don't fool me... you spawn of @*%$#!!", "actors/male/pete/curse4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, +}; + + +voice_table_t steeltown_kroker[]= +{ + {NULL, "Don't kill me! I'll open the safe", "Don't kill me! I'll open the safe", "actors/male/kroker/opensafe.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Get the fuck outta my office!", "Get the @*%$#! outta my office!", "actors/male/kroker/getout.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, +}; + + +voice_table_t rc_scalper[]= +{ + // 0 + {NULL, "I'll sell you a Sky Tram ticket for $50", "I'll sell you a Sky Tram ticket for $50", "actors/male/scalper/buyticket1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Want to take the Sky Tram to Central Tower? It'll cost you $50", "Want to take the Sky Tram to Central Tower? It'll cost you $50", "actors/male/scalper/buyticket2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + // 2 + {NULL, "There you go my man", "There you go my man", "actors/male/scalper/yes1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Have a good trip", "Have a good trip", "actors/male/scalper/yes2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + // 4 + {NULL, "Sorry, you need $50", "Sorry, you need $50", "actors/male/scalper/no1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Like I said, the price is $50", "Like I said, the price is $50", "actors/male/scalper/no2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL, "The Sky Tram's the only way to get to the tower", "The Sky Tram's the only way to get to the tower", "actors/male/scalper/amb1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "The gang violence in RC is gettin' way out of hand", "The gang violence in RC is gettin' way out of hand", "actors/male/scalper/amb2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "With them Jokers and Dragons goin' at it, it ain't safe to walk the streetsno more", "With them Jokers and Dragons goin' at it, it ain't safe to walk the streets no more", "actors/male/scalper/amb3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL, "I don't care what you say... It's still gonna cost you $50", "I don't care what you say... It's still gonna cost you $50", "actors/male/scalper/curse1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Go flap your wings and fly to Central Tower, cause you ain't gettin' there any other way", "Go flap your wings and fly to Central Tower, cause you ain't gettin' there any other way", "actors/male/scalper/curse2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Fine. Be that way. I'll just sell it to somebody else...", "Fine. Be that way. I'll just sell it to somebody else...", "actors/male/scalper/curse3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, +}; + + + +////////////////////////////////////////////////////////////////////////////////////// +// radio city +//////////////////////// + +voice_table_t rc_neutral_talk[] = +{ + {neutral_talk_player, "Hey buddy, what's on your mind?", "Hey buddy, what's on your mind?", "rc/actors/male/neutral/talk1.wav", 3, {2,1,0,0,0},0, 0, TT_NONE}, + {neutral_talk_player, "You lookin' for trouble?", "You lookin' for trouble?", "rc/actors/male/neutral/talk2.wav", 5, {2,4,7,8,9},0, 0, TT_NONE}, + {neutral_talk_player, "What can I do you for?", "What can I do you for?", "rc/actors/male/neutral/talk3.wav", 1, {3,0,0,0,0},0, 0, TT_NONE}, + {neutral_talk_player, "Hey sport, lookin' for some action?", "Hey sport, lookin' for some action?", "rc/actors/male/neutral/talk4.wav", 3, {0,1,2,0,0},0, 0, TT_NONE}, + {neutral_talk_player, "Fo'gettaboutit", "Fo'gettaboutit", "rc/actors/male/neutral/talk5.wav", 3, {7,8,9,0,0},0, true, TT_NONE}, + + {neutral_talk_player, "What time you got?", "What time you got?", "rc/actors/male/neutral/talk6.wav", 3, {7,8,9,0,0},0, 0, TT_NONE}, + {neutral_talk_player, "What the fuck's up with you?", "What the @*%$#!'s up with you?", "rc/actors/male/neutral/talk7.wav", 3, {7,8,9,0,0},0, true, TT_NONE}, + {neutral_talk_player, "Another freekin night and no pussy", "Another freekin night and no @*%$#!", "rc/actors/male/neutral/talk8.wav", 0, {0,0,0,0,0},0, true, TT_NONE}, + {neutral_talk_player, "Fuckin' cop can kiss my ass", "@*%$#! cop can kiss my @*%$#!", "rc/actors/male/neutral/talk9.wav", 2, {6,3,0,0,0},0, 0, TT_NONE}, + {neutral_talk_player, "Yo man, what the fuck", "Yo man, what the @*%$#!", "rc/actors/male/neutral/talk10.wav", 3, {6,3,5,0,0},0, 0, TT_NONE}, + + {neutral_talk_player, "Hey man, you hang around here much?", "Hey man, you hang around here much?", "rc/actors/male/neutral/talk11.wav", 0, {0,0,0,0,0},0, 0, TT_NONE}, + {neutral_talk_player, "Yo man, this street ain't safe no more", "Yo man, this street ain't safe no more", "rc/actors/male/neutral/talk12.wav", 0, {0,0,0,0,0},0, true, TT_NONE}, + {neutral_talk_player, "Lemme bum a smoke man", "Lemme bum a smoke man", "rc/actors/male/neutral/talk13.wav", 4, {4,7,8,9,0},0, 0, TT_NONE}, + {neutral_talk_player, "You gotta match?", "You gotta match?", "rc/actors/male/neutral/talk14.wav", 4, {4,7,8,9,0},0, 0, TT_NONE}, + + {neutral_talk_player, "It was a hit alright... Big time!", "It was a hit alright... Big time!", "rc/actors/male/ambient/conv15.wav", 5, {0,0,0,0,0},0, 0, TT_NONE}, + + {neutral_talk_player, "It's a damn shame I tell ya", "It's a damn shame I tell ya", "rc/actors/male/ambient/conv19.wav", 3, {0,0,0,0,0},0, 0, TT_NONE} +/* + {neutral_talk_player, "FIXME", "FIXME", "rc/actors/male/neutral/talk1.wav", 3, {2,1,0,0,0},0, 0, TT_NONE}, + {neutral_talk_player, "FIXME", "FIXME", "rc/actors/male/neutral/talk2.wav", 5, {2,4,7,8,9},0, 0, TT_NONE}, + {neutral_talk_player, "FIXME", "FIXME", "rc/actors/male/neutral/talk3.wav", 1, {3,0,0,0,0},0, 0, TT_NONE}, + {neutral_talk_player, "FIXME", "FIXME", "rc/actors/male/neutral/talk4.wav", 3, {0,1,2,0,0},0, 0, TT_NONE}, + {neutral_talk_player, "FIXME", "FIXME", "rc/actors/male/neutral/talk5.wav", 3, {7,8,9,0,0},0, true, TT_NONE}, + + {neutral_talk_player, "FIXME", "FIXME", "rc/actors/male/neutral/talk6.wav", 3, {7,8,9,0,0},0, 0, TT_NONE}, + {neutral_talk_player, "FIXME", "FIXME", "rc/actors/male/neutral/talk7.wav", 3, {7,8,9,0,0},0, true, TT_NONE}, + {neutral_talk_player, "FIXME", "FIXME", "rc/actors/male/neutral/talk8.wav", 0, {0,0,0,0,0},0, true, TT_NONE}, + {neutral_talk_player, "FIXME", "FIXME", "rc/actors/male/neutral/talk9.wav", 2, {6,3,0,0,0},0, 0, TT_NONE}, + {neutral_talk_player, "FIXME", "FIXME", "rc/actors/male/neutral/talk10.wav", 3, {6,3,5,0,0},0, 0, TT_NONE}, + + {neutral_talk_player, "FIXME", "FIXME", "rc/actors/male/neutral/talk11.wav", 0, {0,0,0,0,0},0, 0, TT_NONE}, + {neutral_talk_player, "FIXME", "FIXME", "rc/actors/male/neutral/talk12.wav", 0, {0,0,0,0,0},0, true, TT_NONE}, + {neutral_talk_player, "FIXME", "FIXME", "rc/actors/male/neutral/talk13.wav", 4, {4,7,8,9,0},0, 0, TT_NONE}, + {neutral_talk_player, "FIXME", "FIXME", "rc/actors/male/neutral/talk14.wav", 4, {4,7,8,9,0},0, 0, TT_NONE}, + {neutral_talk_player, "FIXME", "FIXME", "rc/actors/male/ambient/conv15.wav", 5, {11,18,19,11,9},0, 0, TT_NONE}, + + {neutral_talk_player, "FIXME", "FIXME", "rc/actors/male/ambient/conv19.wav", 3, {18,0,6,0,0},0, 0, TT_NONE} +*/ +}; + +voice_table_t rc_neutral_asshole_talk[] = +{ + {NULL, "Fo'gettaboutit", "Fo'gettaboutit", "rc/actors/male/neutral/talk5.wav", 0, {0,0,0,0,0},0, false, TT_NEGATIVE}, + {NULL, "What the fuck's up with you?", "What the @*%$#! up with you?", "rc/actors/male/neutral/talk7.wav", 0, {0,0,0,0,0},0, false, TT_NEGATIVE}, +/* + {NULL, "FIXME", "FIXME", "rc/actors/male/neutral/talk5.wav", 0, {0,0,0,0,0},0, false, TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/male/neutral/talk7.wav", 0, {0,0,0,0,0},0, false, TT_NEGATIVE}, +*/ +}; + +voice_table_t rc_neutral_talk_player[] = +{ + {neutral_talk, "Hey", "Hey", "rc/actors/player/male/neutral/play1.wav", 0, {0,0,0,0,0},0, true, TT_NONE}, + {neutral_talk, "So what the fuck's goin' on man?", "So what the @*%$#!'s goin' on man?", "rc/actors/player/male/neutral/play2.wav", 0, {0,0,0,0,0},0, true, TT_NONE}, + {neutral_talk, "So what's up?", "So what's up?", "rc/actors/player/male/neutral/play3.wav", 4, {9,5,11,7,0},0, 0, TT_NONE}, + {neutral_talk, "So what's all the commotion?" , "So what's all the commotion?", "rc/actors/player/male/neutral/play4.wav", 3, {8,11,14,0,0},0, 0, TT_NONE}, + {neutral_talk, "What's happening?", "What's happening?", "rc/actors/player/male/neutral/play5.wav", 5, {0,9,12,13,7},0, 0, TT_NONE}, + + {neutral_talk, "No shit", "No @*%$#!", "rc/actors/player/male/neutral/play6.wav", 2, {4,1,0,0,0},0, true, TT_NONE}, + {neutral_talk, "So what's going on?", "So what's going on?", "rc/actors/player/male/neutral/play7.wav", 3, {8,14,7,0,0},0, true, TT_NONE}, + {neutral_talk, "Hey, piss off man", "Hey, @*%$#! off man?", "rc/actors/player/male/neutral/play8.wav", 3, {11,6,4,0,0},0, true, TT_NONE}, + {neutral_talk, "Got any information?", "Got any information?", "rc/actors/player/male/neutral/play9.wav", 3, {11,6,4,0,0},0, true, TT_NONE}, + {neutral_talk, "Know anything good?", "Know anything good?", "rc/actors/player/male/neutral/play10.wav", 3, {11,6,4,0,0},0, true, TT_NONE} +/* + {neutral_talk, "FIXME", "FIXME", "rc/actors/player/male/neutral/play1.wav", 0, {0,0,0,0,0},0, false, TT_NONE}, + {neutral_talk, "FIXME", "FIXME", "rc/actors/player/male/neutral/play2.wav", 0, {0,0,0,0,0},0, false, TT_NONE}, + {neutral_talk, "FIXME", "FIXME", "rc/actors/player/male/neutral/play3.wav", 4, {9,5,11,7,0},0, false, TT_NONE}, + {neutral_talk, "FIXME", "FIXME", "rc/actors/player/male/neutral/play4.wav", 3, {8,11,14,0,0},0, false, TT_NONE}, + {neutral_talk, "FIXME", "FIXME", "rc/actors/player/male/neutral/play5.wav", 5, {0,9,12,13,7},0, false, TT_NONE}, + + {neutral_talk, "FIXME", "FIXME", "rc/actors/player/male/neutral/play6.wav", 2, {4,1,0,0,0},0, true, TT_NONE}, + {neutral_talk, "FIXME", "FIXME", "rc/actors/player/male/neutral/play7.wav", 3, {8,14,7,0,0},0, false, TT_NONE}, + {neutral_talk, "FIXME", "FIXME", "rc/actors/player/male/neutral/play8.wav", 3, {11,6,4,0,0},0, true, TT_NONE}, + {neutral_talk, "FIXME", "FIXME", "rc/actors/player/male/neutral/play9.wav", 3, {11,6,4,0,0},0, false, TT_NONE}, + {neutral_talk, "FIXME", "FIXME", "rc/actors/player/male/neutral/play10.wav", 3, {11,6,4,0,0},0, false, TT_NONE} +*/ +}; + +voice_table_t rc_neutral_converse[] = +{ + {neutral_converse, "Fo'gettaboutit", "Fo'gettaboutit", "rc/actors/male/ambient/conv0.wav", 5, {7,8,3,18,19},0, true, TT_NEUTRAL}, + {neutral_converse, "Two points over the vig?... You gotta be crazy!", "Two points over the vig?... You gotta be crazy!", "rc/actors/male/ambient/conv1.wav", 1, {0,0,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "She had a setta knockers on her like out to here!", "She had a setta knockers on her like out to here!", "rc/actors/male/ambient/conv2.wav", 0, {0,0,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "Listen to me, will ya?", "Listen to me, will ya?", "rc/actors/male/ambient/conv3.wav", 5, {5,7,18,4,2},0, true, TT_NEUTRAL}, + {neutral_converse, "What can I do?... He's my wife's brother", "What can I do?... He's my wife's brother", "rc/actors/male/ambient/conv4.wav", 3, {0,5,13,0,0},0, 0, TT_NEUTRAL}, + + {neutral_converse, "He's gonna get clipped if he don't watch himself", "He's gonna get clipped if he don't watch himself", "rc/actors/male/ambient/conv5.wav", 1, {0,0,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "Yeah, let's put twenty on Blueboy to show in the third", "Yeah, let's put twenty on Blueboy to show in the third", "rc/actors/male/ambient/conv6.wav", 1, {3,0,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "Let's get started already", "Let's get started already", "rc/actors/male/ambient/conv7.wav", 3, {8,13,16,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "What time you got?", "What time you got?", "rc/actors/male/ambient/conv8.wav", 4, {0,3,12,18,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "He's doin' a three to five stretch up at Big Rock", "He's doin' a three to five stretch up at Big Rock", "rc/actors/male/ambient/conv9.wav", 0, {0,0,0,0,0},0, 0, TT_NEUTRAL}, + + {neutral_converse, "The Feds shut that down weeks ago", "The Feds shut that down weeks ago", "rc/actors/male/ambient/conv10.wav", 1, {11,0,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "No kiddin'?", "No kiddin'?", "rc/actors/male/ambient/conv11.wav", 0, {0,0,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "What's it to ya?", "What's it to ya?", "rc/actors/male/ambient/conv12.wav", 3, {0,3,18,0,0},0, true, TT_NEUTRAL}, + {neutral_converse, "He better pay up... or else", "He better pay up... or else", "rc/actors/male/ambient/conv13.wav", 0, {0,0,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "If I gotta show up in person, someone ain't gonna like it", "If I gotta show up in person, someone ain't gonna like it", "rc/actors/male/ambient/conv14.wav", 0, {0,0,0,0,0},0, 0, TT_NEUTRAL}, + + {neutral_converse, "It was a hit alright... Big time!", "It was a hit alright... Big time!", "rc/actors/male/ambient/conv15.wav", 5, {11,18,19,11,9},0, 0, TT_NEUTRAL}, + {neutral_converse, "A hundred cases of the real stuff comin' in from up North", "A hundred cases of the real stuff comin' in from up North", "rc/actors/male/ambient/conv16.wav", 2, {11,13,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "They got him... but good!", "They got him... but good!", "rc/actors/male/ambient/conv17.wav", 4, {9,19,15,11,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "Don't worry 'bout it... the fix is in", "Don't worry 'bout it... the fix is in", "rc/actors/male/ambient/conv18.wav", 1, {16,0,0,0,0},0, true, TT_NEUTRAL}, + {neutral_converse, "It's a damn shame I tell ya", "It's a damn shame I tell ya", "rc/actors/male/ambient/conv19.wav", 3, {18,0,6,0,0},0, 0, TT_NEUTRAL} +/* + {neutral_converse, "FIXME", "FIXME", "rc/actors/male/ambient/conv0.wav", 5, {7,8,3,18,19},0, true, TT_NEUTRAL}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/male/ambient/conv1.wav", 1, {0,0,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/male/ambient/conv2.wav", 0, {0,0,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/male/ambient/conv3.wav", 5, {5,7,18,4,2},0, true, TT_NEUTRAL}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/male/ambient/conv4.wav", 3, {0,5,13,0,0},0, 0, TT_NEUTRAL}, + + {neutral_converse, "FIXME", "FIXME", "rc/actors/male/ambient/conv5.wav", 1, {0,0,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/male/ambient/conv6.wav", 1, {3,0,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/male/ambient/conv7.wav", 3, {8,13,16,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/male/ambient/conv8.wav", 4, {0,3,12,18,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/male/ambient/conv9.wav", 0, {0,0,0,0,0},0, 0, TT_NEUTRAL}, + + {neutral_converse, "FIXME", "FIXME", "rc/actors/male/ambient/conv10.wav", 1, {11,0,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/male/ambient/conv11.wav", 0, {0,0,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/male/ambient/conv12.wav", 3, {0,3,18,0,0},0, true, TT_NEUTRAL}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/male/ambient/conv13.wav", 0, {0,0,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/male/ambient/conv14.wav", 0, {0,0,0,0,0},0, 0, TT_NEUTRAL}, + + {neutral_converse, "FIXME", "FIXME", "rc/actors/male/ambient/conv15.wav", 5, {11,18,19,11,9},0, 0, TT_NEUTRAL}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/male/ambient/conv16.wav", 2, {11,13,0,0,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/male/ambient/conv17.wav", 4, {9,19,15,11,0},0, 0, TT_NEUTRAL}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/male/ambient/conv18.wav", 1, {16,0,0,0,0},0, true, TT_NEUTRAL}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/male/ambient/conv19.wav", 3, {18,0,6,0,0},0, 0, TT_NEUTRAL} +*/ +}; + +voice_table_t rc_neutral_converse_to_female[] = +{ + {neutral_converse, "hey baby. it's cool, we're gonna go over there later, you know", "hey baby, it's cool, we're gonna go over there later, you know", "rc/actors/skidrow/leroy/conv1.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "man you shouldn't be hanging out with Nokia no more, that bitch trouble", "man you shouldn't be hanging out with Nokia no more, that @*%$#! trouble", "rc/actors/skidrow/leroy/conv2.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "yeah I saw him last night man, it was cool", "yeah I saw him last night man, it was cool", "rc/actors/skidrow/leroy/conv3.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "yeah yeah, we were there, we were there till about 2:00 am", "yeah yeah, we were there, we were there till about 2:00 am", "rc/actors/skidrow/leroy/conv4.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "that motherfucker's had that shit back up in there till like 5:00 in the morning", "that @*%$#!'s had that @*%$#! back up in there till like 5:00 in the morning", "rc/actors/skidrow/leroy/conv5.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + + {neutral_converse, "umm hmm", "umm hmm", "rc/actors/skidrow/leroy/conv6.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "yeah I heard that baby", "yeah I heard that baby", "rc/actors/skidrow/leroy/conv7.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "hell yeah", "@*%$#! yeah", "rc/actors/skidrow/leroy/conv8.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "hey man, don't be getting' yourself all fucked up over it", "hey man, don't be getting' yourself all @*%$#!ed up over it", "rc/actors/skidrow/leroy/conv9.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "Yo bitch, don't be getting' all like that with me. fuck wrong wit' you?", "Yo @*%$#!, don't be getting' all like that with me. @*%$#! wrong wit' you?", "rc/actors/skidrow/leroy/conv10.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + + {neutral_converse, "shit...", "@*%$#!...", "rc/actors/skidrow/leroy/conv11.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, +/* + {neutral_converse, "FIXME", "FIXME", "rc/actors/skidrow/leroy/conv1.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/skidrow/leroy/conv2.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/skidrow/leroy/conv3.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/skidrow/leroy/conv4.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/skidrow/leroy/conv5.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + + {neutral_converse, "FIXME", "FIXME", "rc/actors/skidrow/leroy/conv6.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/skidrow/leroy/conv7.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/skidrow/leroy/conv8.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/skidrow/leroy/conv9.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + {neutral_converse, "FIXME", "FIXME", "rc/actors/skidrow/leroy/conv10.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, + + {neutral_converse, "FIXME", "FIXME", "rc/actors/skidrow/leroy/conv11.wav", 3, {18,0,6,0,0},0, 0, TT_NONE}, +*/ +}; + +voice_table_t rc_profanity_level1[] = +{ + {neutral_asshole_talk, "What the fuck you lookin' at?", "What you lookin' at?", "rc/actors/male/profanity/level1/cuss1-1.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "You talkin to me?", "You talkin to me?", "rc/actors/male/profanity/level1/cuss1-2.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "You wanna throw?", "You wanna throw?", "rc/actors/male/profanity/level1/cuss1-3.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "You gonna stand there all day?","You gonna stand there all day?", "rc/actors/male/profanity/level1/cuss1-4.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "You want some of me?", "You want some of me?", "rc/actors/male/profanity/level1/cuss1-5.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + + {neutral_asshole_talk, "I will bury you", "I will bury you", "rc/actors/male/profanity/level1/cuss1-6.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "Turn around asswipe", "Turn around @*%$#!wipe", "rc/actors/male/profanity/level1/cuss1-7.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "You piece of crap", "You piece of @*%$#!", "rc/actors/male/profanity/level1/cuss1-8.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "Hey, what'd you say?", "Hey, what'd you say?", "rc/actors/male/profanity/level1/cuss1-9.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "Kiss my ass", "Kiss my @*%$#!", "rc/actors/male/profanity/level1/cuss1-10.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + + {neutral_asshole_talk, "Hey, beat it", "Hey, beat it", "rc/actors/male/profanity/level1/beatit.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, +/* + {neutral_asshole_talk, "FIXME", "FIXME", "rc/actors/male/profanity/level1/cuss1-1.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "FIXME", "FIXME", "rc/actors/male/profanity/level1/cuss1-2.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "FIXME", "FIXME", "rc/actors/male/profanity/level1/cuss1-3.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "FIXME", "FIXME", "rc/actors/male/profanity/level1/cuss1-4.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "FIXME", "FIXME", "rc/actors/male/profanity/level1/cuss1-5.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + + {neutral_asshole_talk, "FIXME", "FIXME", "rc/actors/male/profanity/level1/cuss1-6.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "FIXME", "FIXME", "rc/actors/male/profanity/level1/cuss1-7.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "FIXME", "FIXME", "rc/actors/male/profanity/level1/cuss1-8.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "FIXME", "FIXME", "rc/actors/male/profanity/level1/cuss1-9.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {neutral_asshole_talk, "FIXME", "FIXME", "rc/actors/male/profanity/level1/cuss1-10.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + + {neutral_asshole_talk, "FIXME", "FIXME", "rc/actors/male/profanity/level1/beatit.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, +*/ +}; + +voice_table_t rc_profanity_level2[] = +{ + {NULL, "What are you lookin' at asshole?", "What are you lookin' at @*%$#!?", "rc/actors/male/profanity/level2/cuss2-1.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "You fuckin' talkin to me?", "You talkin to me?", "rc/actors/male/profanity/level2/cuss2-2.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "You wanna throw me motherfucker?", "You wanna throw me @*%$#!?", "rc/actors/male/profanity/level2/cuss2-3.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "You gonna fuckin' stand there all day?", "You gonna @*%$#! stand there all day?", "rc/actors/male/profanity/level2/cuss2-4.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "You want some of me asshole?", "You want some of me @*%$#!?", "rc/actors/male/profanity/level2/cuss2-5.wav", 0, {0,0,0,0,0},0, 0}, + + {NULL, "I will fuckin' bury you", "I will @*%$#! bury you", "rc/actors/male/profanity/level2/cuss2-6.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "Fuck me? Fuck you you piece of shit", "@*%$#! me? @*%$#! you you piece of @*%$#!", "rc/actors/male/profanity/level2/cuss2-7.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "You gonna fuck with my boys?", "You gonna @*%$#! with my boys?", "rc/actors/male/profanity/level2/cuss2-8.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "What are you doin' on my fuckin' street", "What are you doin' on my @*%$#! street", "rc/actors/male/profanity/level2/cuss2-9.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "Turn around shit for brains", "Turn around @*%$#! for brains", "rc/actors/male/profanity/level2/cuss2-10.wav", 0, {0,0,0,0,0},0, 0}, + + {NULL, "I will fuckin' end you", "I will end you", "rc/actors/male/profanity/level2/cuss2-11.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "You piece of shit", "You piece of @*%$#!", "rc/actors/male/profanity/level2/cuss2-12.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "You fuckin' piece of shit", "You @*%$#!", "rc/actors/male/profanity/level2/cuss2-13.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "What did you say motherfucker", "What did you say @*%$#!", "rc/actors/male/profanity/level2/cuss2-14.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "Fuck you, you fuckin' piece of shit", "@*%$#! you, you @*%$#! piece of @*%$#!", "rc/actors/male/profanity/level2/cuss2-15.wav", 0, {0,0,0,0,0},0, 0}, + + {NULL, "You fuckin' whore", "You @*%$#!", "rc/actors/male/profanity/level2/cuss2-16.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "Kiss my ass you piece of shit", "Kiss my @*%$#! you piece of @*%$#!", "rc/actors/male/profanity/level2/cuss2-17.wav", 0, {0,0,0,0,0},0, 0}, +/* + {NULL, "FIXME", "FIXME", "rc/actors/male/profanity/level2/cuss2-1.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "FIXME", "FIXME", "rc/actors/male/profanity/level2/cuss2-2.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "FIXME", "FIXME", "rc/actors/male/profanity/level2/cuss2-3.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "FIXME", "FIXME", "rc/actors/male/profanity/level2/cuss2-4.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "FIXME", "FIXME", "rc/actors/male/profanity/level2/cuss2-5.wav", 0, {0,0,0,0,0},0, 0}, + + {NULL, "FIXME", "FIXME", "rc/actors/male/profanity/level2/cuss2-6.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "FIXME", "FIXME", "rc/actors/male/profanity/level2/cuss2-7.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "FIXME", "FIXME", "rc/actors/male/profanity/level2/cuss2-8.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "FIXME", "FIXME", "rc/actors/male/profanity/level2/cuss2-9.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "FIXME", "FIXME", "rc/actors/male/profanity/level2/cuss2-10.wav", 0, {0,0,0,0,0},0, 0}, + + {NULL, "FIXME", "FIXME", "rc/actors/male/profanity/level2/cuss2-11.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "FIXME", "FIXME", "rc/actors/male/profanity/level2/cuss2-12.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "FIXME", "FIXME", "rc/actors/male/profanity/level2/cuss2-13.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "FIXME", "FIXME", "rc/actors/male/profanity/level2/cuss2-14.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "FIXME", "FIXME", "rc/actors/male/profanity/level2/cuss2-15.wav", 0, {0,0,0,0,0},0, 0}, + + {NULL, "FIXME", "FIXME", "rc/actors/male/profanity/level2/cuss2-16.wav", 0, {0,0,0,0,0},0, 0}, + {NULL, "FIXME", "FIXME", "rc/actors/male/profanity/level2/cuss2-17.wav", 0, {0,0,0,0,0},0, 0}, +*/ +}; + +voice_table_t rc_profanity_level3[] = +{ + {NULL, "You punk mother fuckin' piece of shit", "You punk @*%$#! piece of @*%$#!", "rc/actors/male/profanity/level3/cuss3-1.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {NULL, "I'm gonna fade your ass motherfucker", "I'm gonna fade your @*%$#! @*%$#!", "rc/actors/male/profanity/level3/cuss3-2.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, +/* + {NULL, "FIXME", "FIXME", "rc/actors/male/profanity/level3/cuss3-1.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/male/profanity/level3/cuss3-2.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, +*/ +}; + +voice_table_t rc_friendlycombat[] = +{ + {NULL, "C'mon punk!", "C'mon punk!", "rc/actors/male/hiredguy/fighting/fight1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Yeah, you scared huh?", "Yeah, you scared huh?", "rc/actors/male/hiredguy/fighting/fight2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "die you fuck!", "die you @*%$#!!", "rc/actors/male/hiredguy/fighting/fight3.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "eat lead you fuck!", "eat lead you @*%$#!!", "rc/actors/male/hiredguy/fighting/fight4.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "Die fuck!", "Die @*%$#!!", "rc/actors/male/hiredguy/fighting/fight5.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, +/* + {NULL, "FIXME", "FIXME", "rc/actors/male/hiredguy/fighting/fight1.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/male/hiredguy/fighting/fight2.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/male/hiredguy/fighting/fight3.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/male/hiredguy/fighting/fight4.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/male/hiredguy/fighting/fight5.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, +*/ +}; + +voice_table_t rc_friendlypain[] = +{ + {NULL, "done shootin' me?", "done shootin' me?", "rc/actors/male/hiredguy/wounded/friendlyfire1.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {NULL, "Hey quit shootin' me", "Hey quit shootin' me", "rc/actors/male/hiredguy/wounded/friendlyfire2.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, +/* + {NULL, "FIXME", "FIXME", "rc/actors/male/hiredguy/wounded/friendlyfire1.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/male/hiredguy/wounded/friendlyfire2.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, +*/ +}; + +voice_table_t rc_friendlyhurt[] = +{ + {NULL, "boss I'm all fucked up here", "boss I'm all @*%$#!ed up here", "rc/actors/male/hiredguy/wounded/fuckedup.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "boss I'm hurt bad", "boss I'm hurt bad", "rc/actors/male/hiredguy/wounded/hurtbad.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, +/* + {NULL, "FIXME", "FIXME", "rc/actors/male/hiredguy/wounded/fuckedup.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/male/hiredguy/wounded/hurtbad.wav", 0, {0,0,0,0,0},0, 0, TT_POSITIVE}, +*/ +}; + +voice_table_t rc_fightsounds[] = +{ + {NULL, "Take some!", "Take some!", "rc/actors/male/fighting/takesome.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {NULL, "Eat lead!", "Eat lead!", "rc/actors/male/fighting/eatlead1.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "Yo eat lead man!", "Yo eat lead man!", "rc/actors/male/fighting/eatlead2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "die you fuck", "die you @*%$#!", "rc/actors/male/fighting/diefuck.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "die rat fuck", "die rat @*%$#!", "rc/actors/male/fighting/ratfuck.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "piece of shit", "piece of @*%$#!", "rc/actors/male/fighting/pieceshit.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "die die die", "die die die", "rc/actors/male/fighting/diediedie.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "fuck you", "@*%$#! you", "rc/actors/male/fighting/fuckyou1.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "fuck you fuck", "@*%$#! you @*%$#!", "rc/actors/male/fighting/fuckyou2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "fucker!", "@*%$#!er!", "rc/actors/male/fighting/fucker.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE} +/* + {NULL, "FIXME", "FIXME", "rc/actors/male/fighting/takesome.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/male/fighting/eatlead1.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/male/fighting/eatlead2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/male/fighting/diefuck.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/male/fighting/ratfuck.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/male/fighting/pieceshit.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/male/fighting/diediedie.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/male/fighting/fuckyou1.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/male/fighting/fuckyou2.wav", 0, {0,0,0,0,0},0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/male/fighting/fucker.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE} +*/ +}; + +voice_table_t rc_specific[] = +{ + {NULL, "What the fuck are you doin' back here?", "What the @*%$#! are you doin' back here?", "rc/actors/male/specific/spec1.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, // first time they see you + {NULL, "Fuckin' pussy ass", "@*%$#! @*%$#! @*%$#!", "rc/actors/male/specific/spec2.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, // if you leave + {NULL, "What are you fuckin' doin'g back here?", "What are you @*%$#! doin'g back here?", "rc/actors/male/specific/spec3.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, // if you come back after leaving + {NULL, "Kill that motherfucker", "Kill that @*%$#!", "rc/actors/male/specific/spec4.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, // profanity level 3 + {NULL, "Yo man you got a dollar?", "Yo man you got a dollar?", "rc/actors/skidrow/magicj/holdbuck.wav", 0, {0,0,0,0,0},0,0, TT_QUESTION}, + {NULL, "Here's your fuckin' dollar", "Here's your @*%$#! dollar", "rc/actors/player/male/p_heresdollar.wav", 0, {0,0,0,0,0},0,0, TT_NONE}, + {NULL, "Nah I ain't got a dollar", "Nah I ain't got a dollar", "rc/actors/player/male/p_nodollar.wav", 0, {0,0,0,0,0},0,0 , TT_NONE}, + + {NULL, "A'right cool, here's your crowbar", "A'right cool, here's your crowbar", "rc/actors/skidrow/magicj/crowbar.wav", 0, {0,0,0,0,0},0,0, TT_POSITIVE}, + {NULL, "get back to me when you got a dollar", "get back to me when you got a dollar", "rc/actors/skidrow/magicj/getbacktome.wav", 0, {0,0,0,0,0},0,0, TT_POSITIVE}, + {NULL, "I'll give you a crowbar for a dollar...", "I'll give you a crowbar for a dollar...", "rc/actors/skidrow/magicj/gotdollar.wav", 0, {0,0,0,0,0},0,0, TT_QUESTION}, + {NULL, "That's cool", "That's cool", "rc/actors/skidrow/leroy/cool.wav", 0, {0,0,0,0,0},0,0, TT_NEUTRAL}, // 10 + +// 10 + {NULL, "What the fuck's up?", "What the @*%$#!'s up?", "rc/actors/skidrow/leroy/whatsup.wav", 0, {0,0,0,0,0},0,0 , TT_NEUTRAL}, // 11 + {NULL, "Yo Fuck you man", "Yo @*%$#! you man", "rc/actors/skidrow/leroy/fuckyou.wav", 0, {0,0,0,0,0},0,0 , TT_NEUTRAL}, // 12 + {NULL, "Man don't be lookin' at my bitch motherfucker", "Man don't be lookin' at my @*%$#! @*%$#!", "rc/actors/skidrow/leroy/mybitch1.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, // 13 + {NULL, "Hey motherfucker don't be talkin' to my bitch", "Hey @*%$#! don't be talkin' to my @*%$#!", "rc/actors/skidrow/leroy/mybitch2.wav", 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, // 14 + {NULL, "better step the fuck off man", "better step the @*%$#! off man", "rc/actors/skidrow/leroy/stepoff.wav", 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, // 15 + {NULL, "Man I warned your punk ass bitch, motherfucker","Man I warned your punk @*%$#! @*%$#! @*%$#!", "rc/actors/skidrow/leroy/warned.wav", 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, // 16 + {NULL, "Fuckin' die you piece of shit", "@*%$#! die you piece of @*%$#!", "rc/actors/skidrow/leroy/die.wav", 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, // 17 + {NULL, "Shit... Louie, you a'ight?... who did this?!", "@*%$#!... Louie, you a'ight?... who did this?!", NULL, 0, {0,0,0,0,0},0,0, TT_NONE}, + {NULL, "We'll get that fucker", "We'll get that @*%$#!er", NULL, 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + {NULL, "Hold on boss, you're gonna be ok", "Hold on boss, you're gonna be ok", NULL, 0, {0,0,0,0,0},0,0, TT_NONE}, + +// 20 + {NULL, "Damn, that punk's gonna pay", "Damn, that punk's gonna pay", NULL, 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + {NULL, "yo man put that pipe down", "yo man put that pipe down", "rc/actors/skidrow/magicj/pipedown.wav" , 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + {NULL, "hey man I'll fuck you up good now", "hey man I'll @*%$#! you up good now", "rc/actors/skidrow/magicj/fuckup.wav" , 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + {NULL, "Fuck that", "@*%$#! that", "rc/actors/skidrow/magicj/fuckthat.wav" , 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + {NULL, "i'll be back motherfucker", "i'll be back @*%$#!", "rc/actors/skidrow/magicj/beback.wav" , 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + +// 26: SR1 intro voices + {NULL, "don't fuck with us punk", "don't @*%$#! with us punk", NULL, 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + {NULL, "those fuckin' punks are gonna pay", "those @*%$#! punks are gonna pay", NULL, 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + {NULL, "this pipe should come in handy", "this pipe should come in handy", NULL, 0, {0,0,0,0,0},0,0, TT_NEUTRAL}, + + {NULL, "Fuck this shit", "@*%$#! this @*%$#!", "rc/actors/skidrow/magicj/fuckshit.wav", 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, +/* + {NULL, "FIXME", "FIXME", "rc/actors/male/specific/spec1.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, // first time they see you + {NULL, "FIXME", "FIXME", "rc/actors/male/specific/spec2.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, // if you leave + {NULL, "FIXME", "FIXME", "rc/actors/male/specific/spec3.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, // if you come back after leaving + {NULL, "FIXME", "FIXME", "rc/actors/male/specific/spec4.wav", 0, {0,0,0,0,0},0, 0, TT_NEGATIVE}, // profanity level 3 + {NULL, "FIXME", "FIXME", "rc/actors/skidrow/magicj/holdbuck.wav", 0, {0,0,0,0,0},0,0, TT_QUESTION}, + {NULL, "FIXME", "FIXME", "rc/actors/player/male/p_heresdollar.wav", 0, {0,0,0,0,0},0,0, TT_NONE}, + {NULL, "FIXME", "FIXME", "rc/actors/player/male/p_nodollar.wav", 0, {0,0,0,0,0},0,0 , TT_NONE}, + + {NULL, "FIXME", "FIXME", "rc/actors/skidrow/magicj/crowbar.wav", 0, {0,0,0,0,0},0,0, TT_POSITIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/skidrow/magicj/getbacktome.wav",0, {0,0,0,0,0},0,0, TT_POSITIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/skidrow/magicj/gotdollar.wav", 0, {0,0,0,0,0},0,0, TT_QUESTION}, + {NULL, "FIXME", "FIXME", "rc/actors/skidrow/leroy/cool.wav", 0, {0,0,0,0,0},0,0, TT_NEUTRAL}, // 10 + +// 10 + {NULL, "FIXME", "FIXME", "rc/actors/skidrow/leroy/whatsup.wav", 0, {0,0,0,0,0},0,0 , TT_NEUTRAL}, // 11 + {NULL, "FIXME", "FIXME", "rc/actors/skidrow/leroy/fuckyou.wav", 0, {0,0,0,0,0},0,0 , TT_NEUTRAL}, // 12 + {NULL, "FIXME", "FIXME", "rc/actors/skidrow/leroy/mybitch1.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, // 13 + {NULL, "FIXME", "FIXME", "rc/actors/skidrow/leroy/mybitch2.wav", 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, // 14 + {NULL, "FIXME", "FIXME", "rc/actors/skidrow/leroy/stepoff.wav", 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, // 15 + {NULL, "FIXME", "FIXME", "rc/actors/skidrow/leroy/warned.wav", 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, // 16 + {NULL, "FIXME", "FIXME", "rc/actors/skidrow/leroy/die.wav", 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, // 17 + {NULL, "FIXME", "FIXME", NULL, 0, {0,0,0,0,0},0,0, TT_NONE}, + {NULL, "FIXME", "FIXME", NULL, 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", NULL, 0, {0,0,0,0,0},0,0, TT_NONE}, + +// 20 + {NULL, "FIXME", "FIXME", NULL, 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/skidrow/magicj/pipedown.wav" , 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/skidrow/magicj/fuckup.wav" , 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/skidrow/magicj/fuckthat.wav" , 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/skidrow/magicj/beback.wav" , 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + +// 26: SR1 intro voices + {NULL, "FIXME", "FIXME", NULL, 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", NULL, 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", NULL, 0, {0,0,0,0,0},0,0, TT_NEUTRAL}, + + {NULL, "FIXME", "FIXME", "rc/actors/skidrow/magicj/fuckshit.wav", 0, {0,0,0,0,0},0,0, TT_NEGATIVE}, +*/ +}; + +voice_table_t rc_m_backoff[] = +{ + {NULL, "Drop your fucking weapon", "Drop your @*%$#! weapon", "rc/actors/male/specific/weapon1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Put that fucking thing away before I stick it up your ass", "Put that @*%$#! thing away before I stick it up your @*%$#!", "rc/actors/male/specific/weapon2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Put that shit down", "Put that @*%$#! down", "rc/actors/male/specific/weapon3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE} +/* + {NULL, "FIXME", "FIXME", "rc/actors/male/specific/weapon1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/male/specific/weapon2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "FIXME", "FIXME", "rc/actors/male/specific/weapon3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE} +*/ +}; + +voice_table_t rc_butch[] = +{ + {NULL, "You must be the badass we've been hearin' about", "You must be the @*%$#! we've been hearin' about", "rc/actors/male/butch/badass1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Hey, word on you is all over the street", "Hey, word on you is all over the street", "rc/actors/male/butch/badass2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "You've put yourself up quite a wrap", "You've put yourself up quite a wrap", "rc/actors/male/butch/badass3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL, "There's three freaks in that tunnel... you wanna join us you gotta take them out with a crowbar", "There's three freaks in that tunnel... you wanna join us you gotta take them out with a crowbar", "rc/actors/male/butch/tunnel1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "You ready to take on some tunnel freaks? Let's see you trash all three of those sick fucks with just a crowbar", "You ready to take on some tunnel freaks? Let's see you trash all three of those sick @*%$#! with just a crowbar", "rc/actors/male/butch/tunnel2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL, "Hey, I told you what you got to do... get hot", "Hey, I told you what you got to do... get hot", "rc/actors/male/butch/go1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "So get goin already", "So get goin already", "rc/actors/male/butch/go2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL, "You don't listen too well do ya asshole? I said use a fuckin' crowbar", "You don't listen too well do ya @*%$#!? I said use a @*%$#! crowbar", "rc/actors/male/butch/gun1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "You's supposed to use a crowbar... usin' a gun don't mean shit", "You's supposed to use a crowbar... usin' a gun don't mean @*%$#!", "rc/actors/male/butch/gun2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL, "Nice work... a little messy, but nice. Alright, you can run with us", "Nice work... a little messy, but nice. Alright, you can run with us", "rc/actors/male/butch/nice1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "You're one tough motherfucker man, you can definately join the jokers", "You're one tough @*%$#! man, you can definately join the jokers", "rc/actors/male/butch/nice2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL, "We're at fuckin' war with the dragons... we ain't got time for your shit", "We're at @*%$#! war with the dragons... we ain't got time for your @*%$#!", "rc/actors/male/butch/special1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "You wanna join our gang? It's gonna cost you five hundred", "You wanna join our gang? It's gonna cost you five hundred", "rc/actors/male/butch/special2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "That was fuckin' awesome man. And with nothin' but a crowbar. Alright, you one of us now", "That was @*%$#! awesome man. And with nothin' but a crowbar. Alright, you one of us now", "rc/actors/male/butch/special3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, +}; + +voice_table_t rc_patrick[]= +{ + {NULL, "We could use a guy like you against those Dragon fucks", "We could use a guy like you against those Dragon @*%$#!", "rc/actors/male/patrick/badass1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "You want to join our gang, you gotta pass a little test", "You want to join our gang, you gotta pass a little test", "rc/actors/male/patrick/badass2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "We're fightin' a war with the Dragons. We could use the right kind of help", "We're fightin' a war with the Dragons. We could use the right kind of help", "rc/actors/male/patrick/badass3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL, "Lesse... clear out all three of those tunnel freaks with nothin' but a crowbar", "Lesse... clear out all three of those tunnel freaks with nothin' but a crowbar", "rc/actors/male/patrick/tunnel1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "If you can waste all three of those fuckers with nothin' but a crowbar you can definitely join in with the jokers", "If you can waste all three of those @*%$#! with nothin' but a crowbar you can definitely join in with the jokers", "rc/actors/male/patrick/tunnel2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL, "You ain't showin' us shit just standin' there", "You ain't showin' us @*%$#! just standin' there", "rc/actors/male/patrick/go1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "You scared of somethin'?", "You scared of somethin'?", "rc/actors/male/patrick/go2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL, "You used a fuckin' piece man, that's bullshit", "You used a @*%$#! piece man, that's @*%$#!", "rc/actors/male/patrick/gun1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "I told you no shootin' motherfucker", "I told you no shootin' @*%$#!", "rc/actors/male/patrick/gun2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL, "FIXSOUND: I guess everything we heard about you is true... c'mon, let's go", "FIXSOUND: I guess everything we heard about you is true... c'mon, let's go", "rc/actors/male/patrick/nice1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Man, you the fuckin' real deal... let's get movin'", "Man, you the @*%$#! real deal... let's get movin'", "rc/actors/male/patrick/nice2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL, "Hey, we're in the middle of a gang war man, don't bother me now", "Hey, we're in the middle of a gang war man, don't bother me now", "rc/actors/male/patrick/special1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "500 bucks, you can join up with us", "500 bucks, you can join up with us", "rc/actors/male/patrick/special2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "You wasted their asses with a fuckin' crowbar man... we could use a guy like you", "You wasted their asses with a @*%$#! crowbar man... we could use a guy like you", "rc/actors/male/patrick/special3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, +}; + +voice_table_t rc_joker[]= +{ + {NULL, "You're one of us... sure, I'll follow you", "You're one of us... sure, I'll follow you", "rc/actors/male/joker/hire1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Okay, where are we goin'?", "Okay, where are we goin'?", "rc/actors/male/joker/hire2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "I got your back bro", "I got your back bro", "rc/actors/male/joker/hire3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Always there for a brother joker", "Always there for a brother joker", "rc/actors/male/joker/hire4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + + {NULL, "I don't run with anyone who ain't in a gang", "I don't run with anyone who ain't in a gang", "rc/actors/male/joker/nohire1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "No way man, you ain't one of us", "No way man, you ain't one of us", "rc/actors/male/joker/nohire2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "Go see Butch and Patrick", "Go see Butch and Patrick", "rc/actors/male/joker/nohire3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "You wanna join us? Talk to Butch or Patrick", "You wanna join us? Talk to Butch or Patrick", "rc/actors/male/joker/nohire4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "You gotta be a joker before I run with you", "You gotta be a joker before I run with you", "rc/actors/male/joker/nohire5.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, + {NULL, "You gotta be a part of the gang first", "You gotta be a part of the gang first", "rc/actors/male/joker/nohire6.wav", 0, {0,0,0,0,0}, 0, 0 , TT_POSITIVE}, +}; + +voice_table_t rc_male_specific[] = +{ + // pain + {NULL, "", "", "rc/actors/male/pain100_1.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "", "", "rc/actors/male/pain100_2.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "", "", "rc/actors/male/pain75_1.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "", "", "rc/actors/male/pain75_2.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "", "", "rc/actors/male/pain50_1.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "", "", "rc/actors/male/pain50_2.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "", "", "rc/actors/male/pain25_1.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "", "", "rc/actors/male/pain25_2.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + // death + {NULL, "", "", "rc/actors/male/death1.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + {NULL, "", "", "rc/actors/male/death2.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + // fire death + {NULL, "", "", "rc/actors/male/flamedeath1.wav", 0, {0,0,0,0,0},0,0 , TT_NONE}, + {NULL, "", "", "rc/actors/male/flamedeath2.wav", 0, {0,0,0,0,0},0,0 , TT_NONE}, + {NULL, "", "", "rc/actors/male/flamedeath3.wav", 0, {0,0,0,0,0},0,0 , TT_NONE}, +}; + +voice_table_t rc_grunting[] = +{ + {NULL, "", "", "rc/actors/male/fighting/grunt1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "rc/actors/male/fighting/grunt2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "rc/actors/male/fighting/grunt3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "rc/actors/male/fighting/grunt4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "rc/actors/male/fighting/grunt5.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, +}; + +// {NULL, "", "", "actors/player/male/.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, +// {NULL, "", "", "actors/player/male/.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, + +voice_table_t player_whiskey[]= +{ + {NULL, "Here's your whiskey", "Here's your whiskey", "actors/player/male/whiskey.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "I don't have any whiskey", "I don't have any whiskey", "actors/player/male/nowhiskey.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, +}; + +voice_table_t player_50bucks[]= +{ + {NULL, "Here's your 50 bucks", "Here's your 50 bucks", "actors/player/male/yes50.wav", 0, {0,0,0,0,0},0,0 , TT_POSITIVE}, + {NULL, "I don't have $50 right now", "I don't have $50 right now", "actors/player/male/no50.wav", 0, {0,0,0,0,0},0,0 , TT_NEGATIVE}, +}; + + +voice_table_t kingpin[]= +{ + {NULL, "", "", "actors/male/kingpin/death1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/kingpin/death2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + + {NULL, "", "", "actors/male/kingpin/pain1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/kingpin/pain2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/kingpin/pain3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + {NULL, "", "", "actors/male/kingpin/pain4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NONE}, + + {NULL, "I ain't through with you by a damned site", "I ain't through with you by a @*%$#! site", "actors/male/kingpin/fight1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Your ass is goin' down", "Your @*%$#! is goin' down", "actors/male/kingpin/fight2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "I'm a sick the dogs on your ass", "I'm a sick the dogs on your @*%$#!", "actors/male/kingpin/fight3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "I'm a get medieval on your ass", "I'm a get medieval on your @*%$#!", "actors/male/kingpin/fight4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + + {NULL, "You come close, but you never made it", "You come close, but you never made it", "actors/male/kingpin/funny1.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "This business is filled to the brim with unrealistic motherfuckers", "This business is filled to the brim with unrealistic @*%$#!", "actors/male/kingpin/funny2.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "Your days are just about numbered motherfucker", "Your days are just about numbered @*%$#!", "actors/male/kingpin/funny3.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "You stay gone or you be gone", "You stay gone or you be gone", "actors/male/kingpin/funny4.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "You lost all your RC priviledges!", "You lost all your RC priviledges!", "actors/male/kingpin/funny5.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + {NULL, "I'm prepared to scour the earth for you, motherfucker!", "I'm prepared to scour the earth for you, @*%$#!!", "actors/male/kingpin/funny6.wav", 0, {0,0,0,0,0}, 0, 0 , TT_NEGATIVE}, + +}; + diff --git a/gamesrc/voice_punk.h b/gamesrc/voice_punk.h new file mode 100644 index 0000000..0da0b18 --- /dev/null +++ b/gamesrc/voice_punk.h @@ -0,0 +1,191 @@ +//#include "voice.h" + +// Conversation: +// The neutrals would say to you +// 20 +#define NUM_NEUTRAL_TALK 16 +extern voice_table_t neutral_talk[]; + +#define NUM_NEUTRAL_ASSHOLE_TALK 2 +extern voice_table_t neutral_asshole_talk[]; + +// Player talk to a neutral + +// 10 +#define NUM_NEUTRAL_TALK_PLAYER 10 +extern voice_table_t neutral_talk_player[]; + +// Neutrals converse among themselves + +// 20 +#define NUM_NEUTRAL_CONVERSE 20 +extern voice_table_t neutral_converse[]; + +// profanity +// 20 +#define NUM_PROFANITY_LEVEL1 11 +extern voice_table_t profanity_level1[]; +//20 +#define NUM_PROFANITY_LEVEL2 17 +extern voice_table_t profanity_level2[]; + +//3 +#define NUM_PROFANITY_LEVEL3 2 +extern voice_table_t profanity_level3[]; + +// JOSEPH 15-MAR-99 +// 20 +#define NUM_PLAYER_PROFANITY_LEVEL1 11 +extern voice_table_t player_profanity_level1[]; +//20 +#define NUM_PLAYER_PROFANITY_LEVEL2 17 +extern voice_table_t player_profanity_level2[]; +//3 +#define NUM_PLAYER_PROFANITY_LEVEL3 2 +extern voice_table_t player_profanity_level3[]; +// END JOSEPH + +//=================================================================================== + +#define NUM_FOLLOWME 5 +extern voice_table_t followme[]; + +#define NUM_MOVEOUT 5 +extern voice_table_t moveout[]; + +#define NUM_HOLDPOSITION 5 +extern voice_table_t holdposition[]; + +#define NUM_RESPONSE 5 +extern voice_table_t m_response[]; + +#define NUM_FRIENDLYCOMBAT 5 +extern voice_table_t friendlycombat[]; + +#define NUM_FRIENDLYPAIN 2 +extern voice_table_t friendlypain[]; + +#define NUM_FRIENDLYHURT 2 +extern voice_table_t friendlyhurt[]; + +#define NUM_HIREDGUY_ASK 10 +extern voice_table_t hiredguy_ask[]; + +#define NUM_HIREDGUY_COMBAT_MOVEOUT 5 +extern voice_table_t hiredguy_combat_moveout[]; + +// RAFAEL 02-18-99 +#define NUM_HIREDGUY_SPECIFIC 12 +extern voice_table_t hiredguy_specific[]; + +//=================================================================================== + +#define NUM_FIGHTING 10 +extern voice_table_t fightsounds[]; + +#define NUM_SPECIFIC 30 +extern voice_table_t specific[]; + +#define NUM_BACKOFF 3 +extern voice_table_t m_backoff[]; + +#define NUM_NEUTRAL_CONVERSE_TO_FEMALE 11 +extern voice_table_t neutral_converse_to_female[]; + +#define NUM_MOMO_SPECIFIC 17 +extern voice_table_t momo_specific[]; + +#define NUM_MJ_RANDOM 4 +extern voice_table_t mj_random[]; + +// JOSEPH 29-MAY-99 +#define NUM_MALE_SPECIFIC 13 +extern voice_table_t male_specific[]; +// END JOSEPH + +#define NUM_PLAYER_ANSWER 12 +extern voice_table_t player_answer[]; + +#define NUM_LAMONT_RANDOM 15 +extern voice_table_t lamont_random[]; + +// JOSEPH 12-MAR-99 +#define NUM_GRUNTING 5 +extern voice_table_t grunting[]; +// END JOSEPH + +extern voice_table_t lenny_table[]; +extern voice_table_t nick[]; +extern voice_table_t rummy[]; + +#define NUM_PLAYER_MONEY_YES 2 +extern voice_table_t player_money_yes[]; + +#define NUM_PLAYER_MONEY_NO 2 +extern voice_table_t player_money_no[]; + + +#define NUM_PV_LOUIE 11 +extern voice_table_t pv_louie[]; + + +extern voice_table_t sr_jesus[]; +extern voice_table_t ty_mo[]; +extern voice_table_t ty_larry[]; +extern voice_table_t sy_popeye[]; +extern voice_table_t sy_saltydog[]; +extern voice_table_t sy_barney[]; +extern voice_table_t sy_sal[]; +extern voice_table_t sy_bigwillie[]; +extern voice_table_t sy_dogg[]; +extern voice_table_t sy_lefty[]; +extern voice_table_t ty_tyrone[]; +extern voice_table_t ty_luke[]; +extern voice_table_t ty_hann[]; + +extern voice_table_t steeltown_moker[]; +extern voice_table_t steeltown_kids[]; +extern voice_table_t steeltown_brittany[]; +extern voice_table_t steeltown_mathew[]; +extern voice_table_t heilman[]; + +// JOSEPH 26-MAY-99 +extern voice_table_t nickiblanco[]; +// END JOSEPH +extern voice_table_t steeltown_david[]; +extern voice_table_t steeltown_pete[]; +extern voice_table_t steeltown_kroker[]; +extern voice_table_t steeltown_bambi[]; +extern voice_table_t rc_scalper[]; + +///////////////////////////////////////// +// Radio city tables +///////////////////////////////////////// + +extern voice_table_t rc_neutral_talk[]; +extern voice_table_t rc_neutral_asshole_talk[]; +extern voice_table_t rc_neutral_talk_player[]; +extern voice_table_t rc_neutral_converse[]; +extern voice_table_t rc_neutral_converse_to_female[]; + +extern voice_table_t rc_profanity_level1[]; +extern voice_table_t rc_profanity_level2[]; +extern voice_table_t rc_profanity_level3[]; + +extern voice_table_t rc_friendlycombat[]; +extern voice_table_t rc_friendlypain[]; +extern voice_table_t rc_friendlyhurt[]; + +extern voice_table_t rc_fightsounds[]; +extern voice_table_t rc_specific[]; +extern voice_table_t rc_m_backoff[]; +extern voice_table_t rc_butch[]; +extern voice_table_t rc_patrick[]; +extern voice_table_t rc_joker[]; +extern voice_table_t rc_male_specific[]; +extern voice_table_t rc_grunting[]; + +extern voice_table_t player_whiskey[]; +extern voice_table_t player_50bucks[]; +extern voice_table_t kingpin[]; + diff --git a/kpdata.exe b/kpdata.exe new file mode 100644 index 0000000000000000000000000000000000000000..3be80b8eeb6cbb690cc63361a92c2347c49ed0e6 GIT binary patch literal 389182 zcmeFa4}6?OwKu-WZpzZ`k}W2ZLJNTwC=?3VqClvoA&Y_AmEEQ5tyr{ZtxJkfAyLEz z5;lu@^7N5b8!g&OW2;oHQtz!=5NJ|r(_+;Yie{x~s8wg#s1b8z!Il2L-!sp%yJ;IJ z_w{#QUvK+?$vkJyoH=vm%$YNPH*~{tm)qrXdGP#IL@ z+rp1b_xs0Au}QByE3$jfRquMx`TtuVobljZd|x(yru@DBgO@zG3*Y}S|AGgf5xjRk zxLVRLeK0ED?|N`Q{zh;9aGW$o<2W32x#pCVx%SS!@$C-Ifa|1^aV2A1t|h2__4-o6 zht`$2TmeM*Kc!&DDIflG{<_v~DAhPFk)I$+9t83?|3_!s^ib(k9Xop1^H8a4GLl+7 zu8Bv-I4ZQ~yAPGF0?VWQo8I)1JDZT$x&WM$FV@xO&&gBmaxIvC`@)-=ZgROEJCDe~ zx!C^eAmMK<{+q7RT)Y4N)l%0c;DwREzeWFQU9O(#H*3V3$07lB*JYL!VF|sS>9>F6 zmfJq;a=o%2NtD3={sxY~s~eH=_{VVx9GAdx2^^QeaS0rkz;Ov2m%woe9GAdx2^^Qe zo0h%dfnLOd7auT z?EdKpPW?MR%br1S+Y$t)UkcdQ|BTpKm;|Oj_89~Z^&zNw8-lJgk$UG35c|))2)?ow z!7E=vuT1FGTQzcO&>VDQ_cz`!WcgAZ+|J1Y>6)C?`WZP6EC9*AP1&6Weq* zQ$K$yf`Avn+gRyS|AJr}QEs^u!Sn5mQ4sgshG6=11V1L;1`1*dt5EeT1apYj&Vnwa zbnhbGnIA&%4N6>5bQL!v$gDze5(&KL4B&N;gWvZcm_P|l`VL~(vC`M?LF_IHXYNeI zo*jc=&AIq|<{|_?BfYnrf#B1BK=6sLBWPi{6CXhAD`f3ee!9lv^CLGRSkKD*t^&c0 zNd%iQ1y7sjBe;+}cZ~(|t?wg@&Ao%cc#8PrEWDGInaK*4TmrmPCL*}%Nqm0#6a>RW zX)Fiq&<7E7v%XUaxa1#D9P_r3GaR{f~&7U zQ2$*7=PyK1O3_VYjasRl|HkTnokAR9wR}T}^|c|0HX@k7YQ5_g#7-o=Uu{Eh^YaMq zVL>PTJA!jV2+pDs-cPB0i**Z75Vu^3;JgHa2pjbF6k?N07`qxV$@bc>5lc~4Pm%oR zi9CK1f~jnZ6_n5fs-Bl@yr&*9MSZ!641H??f()b~UHo`(Tmr`>@UJg{m^qjj446Tm z5gao87e89>GRG&jozVNL+lXcRg2QwWGAEkB;Y3e~5gax{!!@C7xwQ;nGv;;2hRxtm z=hzOf85>G$D=}h2X3*;n4$s)t=}qoxD$V?;FPJM48wAXl5A^|WHe;uo^400>7>k&2##E`KH}h^Y#AsJxrOn7lomgIaoe`FGd7eOv78yqnGI7T>XETi@DGMYuu@kKg$(wWAd{K3)ohG2v{5But z&T{4~uZpOMohYEx{N+`dFQv~xYZR&&%1UcxQKy>9^(%Llwgg9EXd0xjc$biGU$J0# zLupvOWQ*HLNUfHH%#O@Mg%X0rLfnKB%B@Zau}}({kc!EMbhk`1gW1JB6|DTq4%Zi+ zDUGUSPNUihsnwE@*&*#vVczQlT3CIgh?$Di0|Yt<0YRAXU$zucjS8cU!1M=32&14O z*_yJA!s@q1uo@Z`X^~YgSfw7!VPh=2x2J1oX+*u?G_0MFS}h4+l_HvBt{4DXRNX&Z z;AD=`MxagW-h+sT)vY5D2y_sEEI&L zBM}J97ZMkY4;)qqq3O!e>)bkH8R~pGY@5`1qPb!%AW?O4QArbxHUdY{#d)HO6QPTX z%#{rrC3k;uZgjOpMtg)QBT)ZCP``Z?RHkGeu#r2~<13=tUedCmHcd3{CD1|GAP5Ua zA`qw%7MUGe1f$L_N=Pg+?j8D;Rwgn@4s=9*aE>7_YRrB6z7{IW4 z=Ff$eg!l;52vC?Qg7H0@U257yC=8)_lyd~-bBCc2dQ6Ql6^K!FeQ|cX5tw3&O}E!{ zL7jRORHitM01?i_XG9&c>*a`$(7XuWE-3pCLm@Pea+#n!au^Dsd6X*zwAzIFa02i5_SnG^Vw88Z@iBNWt;Rz9z`EkMEj<8~DY0}R`4_IVYgw~!q4brO| zk(;nlb8r01hSHWZklU=VT8B3y^S(bh&2M-Fl=;ahC0E1dwAAX7tpy*x6`8+0McW8ddXVl(-Vxedx%{VHXjJ3-O>gtUe%e^1_qG2usJ& zaf=fzxv6)Y1vjo+aDB@o>hptI$KcutcZO$0=4WOl)7!4NrtbQ1(|B+mj>pN;R|VOw zN8(eSbDAbKo}-b?I!_p0a3tPJ#7_xgpz-23ozh0X`ioS?w~k(Gqc2W>t+7-+Z$s(m zHCDvwUp1DfJ{wBstZ`zTCcV+CzH37{5CF%cX*-&~PjivEcRI%|y^*$R)y9OxjPvcm1l?|o6YV^cuY#M#)LWeH8JD{{8jpNiQ zHk1|ybz?_wJV}+Z74f2pzKqPC#$VCls&Mq zBwl;zOC^nN^$i=kmUK(v1E*e6+IWK9jJ|cPET$yhbLxeqjV{$<<8ELr0Og;6`lyEL zc8jXccT$@?K>uV$>w+^Y3dGk!f7E$11z{a^BEA~UONCH({5zpuJ;#fHI&mGEUzp3p zKwl86S$gU+BvY56M9a|BJ0@dNW@`b<*&0a2T1&;M7F@5+ zowy4cII-~@t<4P{^bT({zJ++%G-(Fxl$i#G4AE(`?qVaDYlIKRzBC+Fk44ET`qFT? zu>|HbB08j=yUYG@heY+7JYbX0Zgx;ij>1mIog~%wnSSUKt{Opb+h{} z?wJ^Ny7e;}Zu%)_%v5x%G?uAH?Sx8p;>Ax_fRgUq-8Ln5x5Yiau+t3CQ8C@)H#uZz2qKPk z_>x0|T|VmAfp!gzyWl=MR$z&SHM*cQS}(tQohZ%GT6~Tp6j9&}?-2#oYbUcdpnO+z znPOXZJC!wMeIgRy$IduU6y9f6O5>pUyBP_`2box7C;FWRGAkL2#yvko>Li_-S2fd5 zrHjNTGSTJG6)kysPPChmaC{~ce-o41n0`tEs!KMb@i|P|sgvRh`SC;f@N{zwqT-l- z#v<`J6Te~;sT2i$dSX;GH5_kcVw+Qf=;E#l6v9|EzKW?I)~Vgn7ogg@S485Qn0U2A z*H*r6{td@>GVOeatZ3j1>~&x$8XsVy-=->BI8X|zj78#ECJu?!g`6E#>}Dh!4?Kp% zXY52jwI~vwO4wF`!J1Nspl*bHOT(mbX~Dv3f|Lm}<+bLP9MUUHH9_y~n2F}fpBSHb zwfY|T2)P}c+2#^yS%2H_cqJG$)7Vde{iNOX!SV)kn8b^D^~KkI^fNB?h?M9_WY4(W zAD>4at~e-mN+;j+dwY1u8M8S`4HPG~=)AKIxm_;gZes4-Z;EnHwsUh83_ci^#^B8v zngrLg>QKSE>`$aRL!TF>^OG8kHO3QW^rU%kIldh9HCOFgOvxU&Yb#mmeY(^(-5Z0xMxb)z^M`VsqiBS;QEb3P~Hjo^8E3A%sIoZNG@OMNlvL)?L1o@ zI&kO^q{?c5UPFb!wMo>`sH=E{YpBUx%^S8bVpprLO!_JS-Ru-$F%K#zrFhk6K@HU@ z&HR_N{gwcB#ialBC3Bdp_n_;W5;Kxne47?SEM)d2hvBw^s4G)$b}`QNGl`gzR3pXO zlXr^iR}51QT|>lwoFP|mx5izM!@rOM!m3BtR+p6MEj6S_UB=?4r; zPBJb2HOG%2S>FClR$oxq@>W+CNKy4(P1#EFGps&^s&jY*SQGK>X8y0>&uFECoC;agWWK*6Oq!#H&;Gtxu6SpUXM!PPX$?jY#aX2cVXH!zPWd3>2?i^x&;Ld*?Kgl_BHm^1p| zW1)+A!YU?J_M$Jr`2#gC7QSYRSulfvuxinojwE9?meVuehuQd#^Bl7w3huQPoGe1Y zNnBlRXJhAv>jFYEiwV6EhggRwaQL5E7T^%_$eCc{gv{P8uD?JX^F~1&G5DhD;$KtL zaDLhOqUu~}DNhQ$&%vFT$Mrb42m6AG-J~x#$UkOG$@a&fxX?p%QDehs1S_b*R%j?< z#j?@(TzYG7lOG;NUS zS;6tto>N@dbbj31!@&>Jg?Hq~=F8(g0j)AAEnlV4W#kXc8{Ry~M zR@Z*)hGH!R^nNf${2n7Y%uU+I86IjbORodVmX-S(961@*>-%Mtw~|B18Mag60We^7 z<&Y<;PP&GK0#=frVfFoAiU+2P#}c*hBD~QhmWY)k8)4I8p%L}5kZ_X79%^0%$5x0M zdU~Dip&!RpW7ffdbLHzR6^h!&h{UVFiTc~s;wD)=2MDd#$RFRZ~Mjq@WOCL5>gX4f=94YOXH2jIC1R2YX;!YEnldr=cloX8Y-e)C00 zhn`P^b4}Lc163gY9-BBn;`2$oSA^lsTn-{~&LEfhx;W&wFm?8`qH&qiWG7kZv;rRQ zVB!=>be8@K@_$D`{udyNBme5S7tX6%CAnl_PXij?Ewayy7xIGhZVlSP4?X##G~f#R z;~QA=H}^R$D3!ga=@h5*`As;1fg@S-F~K2$cmVL2mm%#h!AhHJXk+KQnb_RT<&Wi|Hv_+3p^c zs=BdWdIuUNtZtelap@-1066aN5&e=`kDbe+efXm8AJ3sfX|SxE2|=Ik5%K+CiY%(r zGzqDcU_2#LKrCk*!d&|N#H`IFLD%@EGfh7u5%qqZ3?;%^^#G+i=NZvep^zAyVg>h$ z2B{UdmU4DR+fbI+c_`!NEMN1J7{u<5>|E_AtGxvB;x?EpQ+!m6Dq6&z#Z}*P7Uy!! z88^Wwlq~CJg@0wgj1V*2+wUAgYb&xbFoa{8OwF75DG=71a`DJ1);q&3qYJlz@+pd zKJ&+}z_2Z(H!86-!;-7-`Sys~6xu>0M_PHAVq6pInA7>BhS*^UVCE*vV*ymuGouH` z#%RK_P458lo0gU%yz3quoy#RuH3XSx$qFz_AkIalt7VEPIYb|DoD2<{n9<`X>4W#- zSQ+;UsFw@(7PN}%c+xa9R@h-YL))^5x?AiMwi@+o?e-eR=sE3! zd_2EL!>G%z@efRVsib8xO6)#}n29||2ra5!`k7chNCrkEm+@qF9eWUo`+99Ei$|eyM=_NEu+_rDsgMik1UAoPTlc2R$xomr7{Hq1ROWb_ zA>5W;3-}pObnuqkc_!U>^)a0 zu_LAuKea!(+5v5js<&22UanjOhuzNFFIsXK4pug-DkXhPOI2f)4pEnf`%E~;`r$+ICE6;}7-fV!+K^PDNR$9M2pCHKpQAy+W| zS;+zQK<>X>D!6nwL&NZ<@@(iu?nj*}!-oo>B0lXYUN2x|fxy0NQz#x^{;rh{oEO%{ z(eddPRf82cC{0x;N0;`)6>JTw zuh^KfZUvqHto~-22+#g5>bzlfgJx0An2M&~Jps6omY8+=Fpwq>pyo0!=md(fxRO;z zP&luM!t|!o@)U}|7lHBdnZ4{m0GM(8MJ|crk|(ug<5Zfq26q zN_5-^;pL`D_u)v6GZFPCQ-miY;bJ*?E{MVpVTVxiROhc!U1CgjBuWX!jt)Rnl|7ZOP%Yb4ICXQ zjQ^0VwyeTzdHY(?oow#__FK?+*}$_&UkyCbZ*(%Ne(WxkYI~ORXq1*bC1#xs$3wNbbQDu9 zkhJv++>4e^X&$eK&ZrvvvGnrHOegK)W-tXbx|nwYj~)j$!nfOa+V}^HwRmIQVopO>xv1`BK>LDMG@mFfgOlY1%0QmwEUa))TRVzx2dHy= z2h|7mBzsZQiRDjVAK{hx&8MQ`P-f(YuP^$5{vaOQ_{w(0%6N!^1{X6Qz3sF( zhWKWdz4*6wyKtV~37MlJ0bLP&tfEC$qOcak^*SW}Wt-sY#05^`5bA=&pBE=y?|R=b2sn!bU$!#i}kbB6_tECz!Uw1G=@BHK@=Sb)tm~c$l=;q zBelk{*Sr?aM1f90zqo{%0*;nlsL^VPVXMsd1jFa3%*Qlm>0Yfe&-WB*#kH~|SWuas z;=~J`L|bLn6(S5gaf>I8!nRlN=kAsl%Wd9IOde-E*fI8o*skoH+AN+a^aR_!+_OkB{F6 zb#esj3;}*)4m6PH#g)zhEKZa^%$tV?VTTX8_rN@tKOD-s_i}BYQ}v;iQ)D5i3?>)1 z2(X)kLl&VyBc#%w#H^(gCoQz2-Zr=ZHW&-4e!ZY->v3~coKH1&v-gDKtcLoITV$x( zAq6gNrN`je0~n`?PZShb8{s=e`KgEzwMArnc=zZahHXN>AQ(Q&-eGxU$S3Qko`Nx>GccH zwD?&gM9Qt_K;$`r_ggH~>>_b4Z*=WJK^{?fVLHF+pUg%S|OocLd^Z zu>Ni&w+JFbU3468ez+P-G``vjoUkrL{ilwTGxZST>KBhvfhzO}fwfyP`65i({`7;` zI^=LdLCSE#NShw_AXVIXd48LVS%bB%u%S88p-v7&Tw?9KwB$l3=34L2qRlLg#|pPm4Bk+(#pMz zt3Pkitt`#cQKB1-)=*k6{W)$BOUv(Y;XEc=KJPoEuay?0tnL0L&Vgh;Oc_ocjYj6j zmfn(%ucYZ;G1WHx!zd`M&KDK*qQxhPKAjkF5+#yo2}mN&tzto0IujNh0$4TR zDL<^1e)R{!g{;nSbs@iul9)wP&J(+9SkIB@S@vY& z@UhCv8-aruoL1C=x)D2wp$7w;78t-47_+i&Jw_cYR&{74<`wRp2Cm7(4vw&ExDc1q zBbM{RLI&6Gc@Jz@W*$R2hF2AGI)>%!tlRJ6n92i&L+(ls<9v4^=Ps+q{;FO+goK8$ zCgc;Fns2*vSF zOIZ9qD|rEwG_1C1^+M`v-)B2%=TR-zE2u_t1F(?zLUH1IoWx~1aeHy%B~IdUo%m33 zVuh2~jzrTUO5%lboS62TT?8c#lw>o4Cx? ztml8GpMs0Ta}?a-%@mw3{VSLxtBb9Tn<Ue$CkC4V4XY>4CZ83~#Goww zb{-P2*z|5`Bg2}4xY@<_c1uGUT^k8WE=Pzt58KX~<60O|xBuNmJA-b~xDY#n+ylA| z4>)m?K#;M`|DWWGi;>3cYTfKnb#D<6FO9%pEh&P`GrK6DsCs`9a6b3F)HOwr1tY3? zF={AX>(^6QegF%jn{ke05}QT~;xdhq=(#Mc9@R+TD$%>pu$HoRQs452D>>WimdV~W zw{!?2xrymA4V-36Xr<&}KBH?j<4MM+v2TCvKMFOTs;L@XO-Q9b#=qi1Fk)H^Yb*-4 z-1>qjADhAGYDGwN{uOjaOp9TSv`))hvx{8OSQyD$B$eMXHZjunIDzat&13rn0lfvv zO*T8_n=T2zBnu;%`!!8>*GhaDLO*>Ci1djKLv~j;ZOuBdL1KxtiRw$r1Y(@%xhNot&rx<5CAkOi8K{LM?an zC8rh;EyhKFjF?>vYr4o`OHenqTQZ~5uu!+nk|0|w+7#{S^ptkAaR4&~C;kNN#9jt&l1LpEZQ9K>)aq26t)An`XM(+ z_G&Q|Asa}Ns}wxKL<$CG++Lk@p^3Gc#; zX^CT}3GXF%u^<=K3oUWsZ|HBYL2`2({`eVD9=k})lRaI`f@_Oh!nu=KER8e4&eFxt zsM@O~k}=ZTpyle%-+_-ShP|VxnBSfume(QiN6mhL}RC#w3H;hA69^yc33D#k|^e(bC%;$;ZdL^M}hL5{SzW39!1cEI@&9TK`Hb3^d0O) zLN=^kLvb=99oAwZ&rL=0?7~Ab7$_ZiUMiK7GiPtLD;)2kJf5E@^2nSm>k;|_D63>8 zSvvf4-K6(RdsL*GIHNeek@nBIb#a`l;}SS7f#VW*Qxee68@{)D-?E_+ciC=)vs_qO zxf>_DcVK+j^L6nfjvV?h^QoyMddnw|95Qh-&)srEVe~F~ht7>BePX%Z130gdU^6~Gm*^DRazB_929hD5M{ayI>W>=IzNc+UwUR8JpheA+HA z|F%%kVHs{SEGkIOS;djZ2Iq|Ar<$}b8o>|es`}AGt9=Cp7FN@2=KR83ug8!`=4%7qOP=cJ2o^8=Maa|_cMW~#9p#%C(DYVq0FcHl7o&Q zaSW}_ml(hqddMP6S@^!H+ZrSx3rszUYqeMMJ%F$pC(F$N(;`%6uZ&=|llxS$A!$gq z7kh<9Dt}_7|4+b4KHafqaQt%aqnKEZ?(6PIvb9 zm9Z|6C5$7rP{*Xh35<4F!;Unf@yo!URQL0uP5IOD)oii&l}L>*89){0%8DZ1^H4WT zAkVx*KvgUiRs4b+ZwTP%Wwz}VHht67@~t@j_$rmEX<~dqo{mqiOoGnInhvLKFs)&A z)`_I+i@T~Z?fqI>7W39|?7(_Ho^wIOz$P#duhZIM_tfSS3+8Moh5d&IZS{ZwXVvXo zzd1p(eSEg_ru>P2c4YWFP~XG=Zm%`j2UdA;$~n~Qvz-}0aEhA`7~7Yiu-qW~LbF=Y zHSV65Kb_n5XD->{#IZ*1EbYLqQQ^|lus&0Zof9|%K$OiUb%OLAO!n<$oK4_9k1umW zf$l3Ts3q7L8*bfJ(!p~HngLL-kFsn zJ4E^zTA+N{c=}R!F*+20)0btBcy6_0e)2|RrtJat1qZ;E%L)z(AL=b%Au0|J55iW) zuf8rCQa9PTLxY!>zyw$A0!71y@lkK=7hrQ~h}#$Ml-yW?-$Q$Ar|iLlp&D-LO)hRr znRpk?tBGJ!p{-^3nmKi$rmGPN*M+K^W}$YyuT<#+(^z2{&L6*q?z&POBzNz$KT3KB0?r2#s@P%*MJ3>vaW`+D5!>C?vb!$SP~UV0B3FfGhs)bH zLga*ASO329_UG`S4?5ut%1}673r|;lE4=q(_njvTrU=Ixl_vs9(20d?a2e zX+DET-Yba;rg*)wKcapi>V|#J{>(d}36;dfkpDJ^HNgVqs8YWc_VWqq^P*R9#{1d6 z{pm(@G2D89GZvpuy}RoH-D~iYi~6X8t2cDhcmAE;#~|Ln`Gbg0E+pj)T;>b7V6kGj zb})cjQqE|8v3+i|OyOuzSgko=%bZuejS%`(Zb#|Wus$LY0(X>L2Ou{HOFjD~t?y{9MP{rbsb*95xWBTEXU=rQdIDTn3sIZSx%`o{a;&Xz-=iuw}IW4%aDA#YkXxDDv8|B&qk?jFjH~{in z$%GLVW6Y8Hk7!AgJ=557b^l@U34Xe|N!FaokU|(2yior0X1fLXEf9NVI@+1we3#*?O zgX=W79;UPy%qEnJTVtEAM)T0t+aKYT}igI`I?~zhOB5O`bNMg(R$0XFF9*jzy;%nrU-Dj z|J*M{JrXSyF1#`9lnBFxbD%~b(Na|e9xLD~f_=CXntmIYaI)w$%^xqLmp{BWs+u(m z=nHa-)E{3?UJrcURvM^47J9=2`pP+uKM_4e%qF}Sn;Hf&+-bv5gCSf?WbEa!q4N7p zXoI~Nk;lC}GaaY z5FF74Gnh0|z#K|(l18Se1Ib;Sfhzn;N@r+4e>uhZWt3lL+S2c)cNZL-7R=QI58ln& zad={qb^Yt-q+QUgQT5R8WYoy(IvfkRjDVkI;jn^-)TFD@bj0sP>GpAn+EST;K~_6l zxcZRYF}tJ;wr)pVDNio#sC9b*T+}xkJEH(E>Z==rNHBoQq+#_gThx3Lel~cnKwYBh zykh8BSaLjiTUiW)xuz=2VRVI^yK)|}I@ z*w4%V1`O_5RJ61d4s1DsM{~hJZux+|=uvt$n`#yV-1(&S_rdYU#4~T#?aQAT{5}Xq z&EBFEm5w;)}xqvs>#iy1-@8-4ojM7F}}HVI@~dwyMk?lspYu zjBV1;F#1#$Mi-{0R3xW&!Z&FL&2DymuhFg5eqbG@LMXw8^lM%?&$M=w8s1>J|@)U7#whH`JfU0x3 z8oVwR$`$r~(S6j~TAk(SEKjmo&N(bUe!s&qdKFo&f*>kTko^XNDXLKco?K7awd{O@ zEJ-`dc=6^u$fh>xEcxEUX(i?``U*TQn2I>-olhu>ea#aMB-0Yk5B8LAb*`Ao&nJPv z$xeejCK>$P5u)f+(@+|GQ&L`%H`g$o;&beFa9dWlbP;|GHa~J1&Y1`m-=yUu6 zR7ptw2bT6=xG_0PwCuqHA!0f%W`%$FS=)5%iK<(if-%rz)V$I8`~wG7^&aQ*k7f+W z?-NOR7V+Rbv9HO0za;2qIOuTqfPQ{H`LBY0YW^EC1@*D{?^gx?RpE=|(aAu557t|; z@`QV_g5K+V!oU8bo|h+HEyV$o;2)(O64|ksuhz4MDT_6P5&46bA}SfLE+3BMDOkn~4my)sh@$eZGFTQ@tUNgpR>BPS%jNxpJhpI9 zo)|HU9xDQ* z&xU`Q9?l_1U_Z_b{ZUIg@ygiph3Xj&RU&j+3_C(=cLX^ znulDik291m#t6FDzp;xQU>C!f*WkfW3-KD)dhnUJ6V@HG<~`eq6&ucr(_!%3P6O;E`}Yk^~XpwJPOffhbR#`yBK!FHXb9gWXJ|9$p}WO}*e!sKhXdA+1n`EEGpMFlzlq-2K<4OW9A-%qvd0235~0&#_$GR1 z{U}r~bf^-c(_;80dS~q@RDYqbJQ+zMbXpAGMDM(E6sm0wRU&j+4ADFP|LAq+kJ9T( zu^4}Nms^!Xm)n&^@FfK3B2jhci}~e;fA;Oe7{gK#PQ-dsp3Z*Xefxvi=Wop7MON(kagA5C;wl+d?VgWio%61d z_ZCj?I{UzQ$HLu$CzQFCh-FB#*++6y?!z-{&rh79ey@q_pHz!W^uHeX>-O359_=(2_J@4G>cuK=3M*&cR4vv# zDpIpOdFTyrlL5wt0l?k@Sf9&58kU=ptN$9fmEhQys`K_Ycz%_}dU0w(0R%K4_);bP z*Lso2A3i}z4v1ygbWTJne;;K8eOEuhaQpd8rWS#9LxnAe-Jd$wrpUM2Jj7{+- zj}Xk4;qAW(nU5?2vw{)%Qgt4FIRb!8`B@-~29pBOJa(nM%#yFPmpNEzyJgRl$6na7{gcABQq(q` z4L;)*Te=PZ^ zf?)Y^4cZfIuwD4sAnp7<#EaghOu146M5hL#CinodXdEhnFF*?#20^u6_vE{Q4?#&R z=Itw$h)5B!J}pIwQHqS%uT47dd2?aP{)KuuWj_ZST`0%of)tK-i0r`b#7+vR1h21i z{{bzZGb-979$;-IwrTkx0m2W!5b$LE*Vt?SAy(~w4-tKyu&=g)8ZT`t&r6_5`btYC z2R{mp=&SV@-}=d)B+>iY{zq3avCj92xo->Djf+--8V7pQ?!*i4lEW@I#Ee!6SQR^w zWP};VPeCH%<<|!8z^XZa?Mf!RUgO#dv|z8oi>ojQ6?nIZ87dyB1wYep`h+SGz$@an z$I<*@=mN%xVc_7=)~blQ@Q3!k0ggFx2M$|F=;<6mpi6uJ02UD&k+u4mL!#$hczybg zN>IW3z#xQ;sAo|Q&@;bqPT$M9W(orjEa8|(9=A~FmPd7=&KahPMjG8jPXNDbg+uQ9 z@oOPG7lOBR>rgSb?1m5F2=!%m_#e4Us)ffj1~cOxy^|k2FE)tX5Yhh}epB?v*udh$ zpg+eg5zuMG%b|Sl8IR;{w;|Yg;TaTEc8M;laUQm`iSe=DjAShgEE8r#2Ff~pc1G;3 z$PlOQaR#TcmgKD9rm*U@Sr26=bEwX~{Pg75(731EA*_Ps+`XDbX~RW6GTY0?$Ct!EFH$7n-GUI&U&}5!B8G3mS@{HT##zHV2 zwgwp#Hr#svPc;wss>*T5%w6BfJW)7I9&+U2F(?3eKw-Gb@D{Mw`=XybzyxF`bDua% z9)`$651O4kkiFgkH`wblY`G2MT;Lt>_SW z$dZSCa7Z4=Uhe=F6o-4$mE?f}N818S9&+SiKR6^0WUu$YTgbKYlLrd?Fnz#Cam@N~ z5F8$>J}7W_tondX^G5n0+MsJXZks!}3Bt5imOSvOdvADM)eyzdl^(a(9qWNyakxja z*;;}}{GlbMjnop+5eSC5z0=LZi^Ep?SjlE946G3p=9G~NBkBSfQO&_5M&xXsNv%76 zfO^w!8L2y>IS?1?2qrh9;5?JBqeh}ckR0m>Cby&DJd;|Za0Uh%b=pXc5`EHrhfMB6 z!FeXNa$$cK%5};}-H1#cM8SC`wVwG!&)zap&&2BJ9z`a%px``{>=C1wATdC? zbCJoNC^*lgwnk;_GwIXFWWgGVEz z2xVuWle2qJ^90kjW#}HzJn0^6t{FI|hAz%6Vk(mx-cc!C`cYL1MbCh-hY1xe(xq!H;)yF;)u}}&dIn5=jDthI^rMbwD0&7A zy`w9-bge7c9EYxqcXS0s&w!c7U@9g{mwwdI3`IluZXDnjD+JBN>W@@ZEfElD0^fu5A%c*uoZ#cWjZXTXbjDE&;2o5M03O_^Rt@bm?Y7-yrB>chLl^66`=#cA!(riiN0 zr#TCUr1DE0@-s!)`*PMMARoC6K{je)fje$N3VbuOqD}9CgRnc8?EoJTlMfT0UZt;h zplCPVzn_g6HaPX+r(=540lno2PZbPzTr0mWBD8v6tQtWs>`vdseH6zh%|GL1UpO6| zzaYv2L%2@B#R3$=OCPxB;T^ZL@Qu43f#PpB?tbuFM2e|bcfR0Ttl$RxK+0nK0Fr*1 zPGDmM=CeW@@Y}B|qv`@|Xwy*-uAC8EH6yrsMsTeWTyNsPIZ>(>0#TN`6#7lOV(qi7Yqik&n4#@VE^}K{XuGV*TZ^+fV)@^z??K1rv5jFgq z8L!;Lc;yzv`^u_!5Em~9FtYA3f$is0>G=1-56C0!ug@;{X&bEfxLjZ8w}h$G?e zi`UK{Dv58x5}IYd==(i69_X{|=ddT@@Cgo$tRucgUJqomlHXCa6Zfi6p?DmyZi2$< zdjj%WAxvO7+Q@9!^fNJ{rv63nZ3}%&Z09Ql{=;oJu+qzW*`a2Nf4Rl=sLAYU3xf*}FS&->x)T(I1dku&jb(MVl9TPdu zR9LJ11pfZ zDVU4QWp%DQeh)qu+KhA&Ymw0&^WiV3FYfVaLW|6m4P$^BRhQeSLKdi@lYyF9-srQs zm`O|aPf~B6{4`L3?Ge(FhPIx@$`#7Fxo2vt%T-qEeGyl3Hd@wHP%=Ur%-BY~#i0x8OH3F(KRtpxL}JRlnTVKjpLim+oe#V#0>h z#N|wjZ7|_sHg7aN_u&;lU*^#x$pOEnk_umLZAU@C$8Rs$d7C$O){mLlQQtYO4`-%q zHZ}V;msqeu`QXSgaQvHnSq*@-1h`9xt46s?(U8cV(J_bh)yNB!HT zrf)igLmN{N6e=0qET>wv%&xF&<>?Ho&uB(8BsCFl(83YlV9ssBy4+$rO+cynZ9e?U zPbK>(ntMYSUR*@w1jUzrE8iOv+rUH7@qyca2LWQ)Zof`{bEYY8qy9HXWPE9G#uxS* z-j|w;4V(O1fy<$D{MitUez+umTAY!1Pa6gwdGI=-F54sH1AfZG^7`Tmxi-7m9&&CxVnVZy)k99mSMGCXUP1#uS|FYE9v{t zt@%46lf=773lpZXZWOLCWNf<1%cnmTUUxg%f@F&v!9ll#W zD2zHec5625C1rKq2PD<3yoFlY9Y+|BcaY2)Ap@(=9v+F`NtmHYo0T-C(fC5bnl-GO zl?un_67(S(%|G>0g{<|2y~oMQ@hKXgN!S&3R!S=zpF+^NHX7F8)wHKr5l=WCV2WR- z#D~$jl}kQ2U_@2Lj|43~#Dq`i`lQ6Q(K~$cJxsV!5`4CkFaU$a)+?i1z<>V_^f&S6 z7QlIeo#^u<7rgRq7dIneRq!rSTQ5f_-nb9?9(V-DIbAQmf}3;YTYX`}-vjx|Hblu0 zN!y*I(j$^~>ZB3yIpHyezj}r`8aYXu;-rnFCuvie7V{dF3*ZsK`TW^I7xZ6~8i@|3 z;hJ#cWF(wqxSo!LBdWr6v?Jh>0ShtusSB(H@MqjGT9=8mf(LmpHGf<2U}Bq3-YOq- zyoF})XTJ-<9zGyFd?3*>fbnZChh#1*9i)(JLODFAiUkY}K)E%cVLs?zva6{~-Vf-e#Pnt68IrX~I6_v|5>ebpxRycYl2Nii&PUGz zIUkXL+hvvH!tixz^*90prR7oB;KDS7Z1|FFcAdu4vqA@(TScmzz8-^Ox)A}CT4a6r zub_w**Mbc}$i|W$(2P5hprHi?ZOZ&iO8kGIKmVVO)&IiwV1&(ajKK(?D7Cf(McS_I zooxw5!gVkBZ(9Ofh#1up4AF@Fk68k_UvRXZ`Fg!ycRTnam|jW8^|Kdaxz(t!-gGbh z0ek6B|JV0Yt_Li+80!Il>9f}ZIMe69zA`#K{1_dAiI&Hd1TR$_iqZe$iw_xWLl5EL13ap8^FWMlyd(M9`;ZwwOoLL45C*w} zMr@$q`8ua|WPmKaJd|xY9}C=2Hq7toD;UeV_G5;YhtVA&>`#~wZ!3_&QzCr2g&9#M zyl2^N#$((ZH;i^`KT6M}(r0t7hG(xaSJUh3BVF&}FdT6-k+Q`T4=|Mj{y-<>g<#4iczzvym}zEj7f?EwEFl2uH`u@$8ZX zPZo|^)?8^(5_;1eZi6g;7}h>;`dpG>>c&BA!Dmb{mY$tr- zUtSuA2!WdlDhERU9XNO;33b7ch>p#=Nfn?d>jZ2ks@F@*n(fjwhDQi!f_dSjPpA0n zaM@5#UNQ2r82%ek)W6{PEAz|8P*J$xR&WbW^lXo)FGi*R6#8`Wnp4o%Qd>|9XM!k) z+s@(YnibrRMS!~Cu-nIEKrTlzn;UA+(MtT^nE3ikAWWViY^ z`5H>h;=-=0Jh=w->ze&saJWCTr+?BgG*6D+HTwYCKTF{|b>p7rf7hLws=Hb+h{mjCbfjXWGcKot=D0Sn$BP9ya z)Wm$ax<{9ut9euMts=*fOZyj|PtOH45V({c+^BM5-UehZ?TNrrCz5+Wj6;npALQVFhe99yj1aAEidH{kdR!>c#zV{!-W|p&lO==aC52@+S4EE?+*^h!d#0K>oJ>i zi~m}s+*o@AzR~{E0qiXh9s2bl9MRp^AKWkap%M7cJmcUW1it**V0s~4i`d}a1Nw)f z5QX-Zx60>9zruk&&rx@`F=#*E` zeKBc#5$gkby=0FZhV*p1Ua_3twWyuXc;`zTwxa%&%!>afBQEvpNUxq zbS|0z7mE)7SdH0F2Vk* z83pO@9lF2A7os=H{=hjsGMd|Oyr%Eski~t4TelF76;ZEMUwQ~Xv55|AS`2GK-lhx9 zE=J`gw2POXp%coV7@v6c@_WXcg3Ko&B$C;wlOcR`w#Seys;cE&GyDs0*s}Hm6j6Q~ zB!s8MygS+}pGSgA+ZfAYM&u`QR4-i5rLnPhd4DGCR$2Bg?`>#5aF11KcsGZdrkj`ANTlD%RJKQf=PxwMij49|vgOIcgC9GOrb(%6>$6SAcv3p@9) zQfl+1oGR3BpMdmj6CL>hl_lU9*@(`RM;G}Op`SGZJ?=u1y8C;ghi$Vu&^@^jy%g`WQ#f}9 zr786m_07AuVcFIzJC>G0YnYYHAPazukZJsWClV69IJCb-O7c46!2}D>g<6=WI%Cwg zgi~MUl*1Fo;x#z#QO5>rWOJg)8Gqud$<%Lfot-|gUD8yXh%PujBZdjF^mrzK&ll{Ts^Nh7CJihi8@YXcu(NKF~f&vg3uW=^rg!JECj$kCv`|(KS0qOV{q`n%$$N zYmaoz9;Bl?Aw-jr7%TvJj;iU>0=|4AaU$wPK%eht%XAT7bZtSHO7<`uNUb3Z)`=+s z8*Svig;r30RRcpr`BuGMZ&(MJ{qSKrg~2p6(C_Ejm;N$2^U_5`*@zxWO$;0{#_G+a zeqU*SnH-A|x=;@cnyL9?ag7QiS@FnjpbmIv} zcb!&dCtpe=+TUI_$O<{gsnve@cDUDK>&NT=#LDMgEgD+LmE4Zx{&qhV+05r%EsCAb zWiBhD=3@xRqZrF72}-wd(5=S;KtYKM3qaW#@kh$7g}Oy3)ON{dBv+H*;|%$8vrX)l zb7r%mp64WO|ExG*y65#Tle(qWYykR*Wa)?f%cPR2H5(64mR{Mvtc99eJJ;A4mo+v<+8&oARIB9<(_$P>S1L)O z{l+c4nA0V|rvW5a{hdny#6?RX15YiLBscvXO#)7Jt>V`j@}SQ#RN+?!@nKj5X<|kf z8PiWEO2wc+rofE3CBAe!=Sf_|+xB@G`~R->cChTS@*=P0``6EPWp5kW##O5lwUp?7?i@!`h3GK^4!RYl2}*%v)3q zO0rkoi$`Bj`xweRL!)SVw}6y$4$eL!@yK^b5tADGq*+@p&rU@2k18%;(em@(QMFtU z1DT-B8aKct^%6Sd(Nm%gfO{q^sv)J{I*Mp?`#76Oh zEUcYd_$^#vEz6=TGi_Kv8drc zjTy-IPblVnHPRVGU)1%Y6>t(#lQ`ZZ`J=_jGwtL_^c|3RZE@l$g}fa4-;6+t`T6S= zMf^O8BLEmBQ1;@fiarvJpF8?=ANcnQ+7xlfNIIYi4 zh+4Cn)2`LkCtiB#w5G#nXQfZz1S`@p4{+Bl=?&<2r7 zSiZE{Jcb=M7%!N*iG5{Ul%oaLWVf&>=13Or>(ubgbq$fnJbfN$-NNgz>*JR&QX5r2 zc!x*@zroO^+s*?!T3GmYHXbqA9)CwQ7Nsz^#dVXgx<}_Dq>@<-PiJOtVpcV`Gn?-^ zk^p{w8(1(0HIa&z3%lh*xNtXI0BG-lG47`#@KFlK;C?R6;LSW{XN^=Cm2+|aP3LX! z8vX`+>C(+Q-?};Y%J?;M-)wysU0Ca8W!-f%*Da8$OVN_xj?6SFTd%{J^&>Z03+z^x zTkFw2M>?@w{w}u?NP`r(uvW4MqKLh#aC$<`gZB61hy5h4=O!Zou!! z7?nF8#xzKm$A)s(U1n#%>--N#@NVY&+fep;3{w#~tTY>ey0=d;6Vsg&e(w1}mdrAAvVG-d=0ckkQk zj{tg&wuU2sKBKLA2xM%<6q0oTqixC&zzU;nDuI47eDf|B&MAnRRax!h=gfbx1eH5V zN-a~=lb2G4MeFGKMG9#_$hM}gs@!^6y3a5|Ic!k0l#bseBzleJ760PF6VJCSF&k8KrR+0=JCa_iXZh!X_hy;te>-g8E{|JYq zdybr*X9BbdmS40jr2 zaR^b89gzW==)tcV4VgF|n8sOb?l_^deiAk`U4kH=-;gR4gkC5=Kb%#yTx@GW?omoj z_m^i5n4aVSsy%L-qjNbPlmI02h;86R73-?j@vl~Zh^lUjGk&~Q7qP#T>0b4FncVDg!0-3;gj;b zir%7p$Jgg2RsEmDprp?E8Z9VogHbuJ1fv0+ zwRQ6mXya%27a-nO7Dvc`ePy@UF+FY>l}jYO79s8)&g(0yN6Z7vZj#I2Jq!z06TYy|hDjUKCvcOgNYgRHeDpw-x z3$CU-cx-YtS7i~ltUiU87+2#GBgGL_J?Cq^39ZH@#`Ur!NW|>or%_3%bk9YAiAq>sZw#%CsO#)Zj`U1X6a4g~{MED!KZRG|F1A|MYjCP( zbxj!sTyCMsU46+M90#cZE*&z?&21fdoS$;(aJ5`Ip3(z%bQKiQS)5-=_u4j~!T zx%)5qdFk*RpyH?DY*Y=#rNh4hRbM(}CM}7(E})R|lJIFsq_2V?9C5JG`;q}b$Z(-< zj^rWp8kt3uTkqtCRcy863Cl)bmk&Anl3s)Z^jebq7O&nSOuYJ^ih+ZppsP%{*;&hO zaTu(gum)_l6eH3#Ht=xW2q0Z!qXB+oF(zGOqaiR7NY~hCsOSr>k_N#d+bU_aRc3Hi zO&Jxs+`@r4n5tE>&$G&u%9!6{MLOr4G_zyQa$Ia&>EvE1xmPAyR$}T%nxMnGkQVWA zQ)DV$GB86c&F`_ADbKzA3qK1sS8A&LGndQ3sF~-nT|B8S50DPK;Yg6a;mBCwe3#sC z)QQ3^h*~o{Q%Qnk?q-U_JL)f)n#Q5tL+O(d99iu|%PMyZeoJwcM#qB`QT3o^Cl8dF zlp_e4O10P+_~{c7Pl|J?Z<&4?4p?~BRcoAA)Y8^Cx1`%j_f700IZ8*fBHp3g>eY@P z`rwbH6imbE8tM*6Lo=fL()x(ECRyo?ne4vH?X1$t-P-6%T$5QRwn_*YelbzDHJ}L^ zMd@j+THa|^in)54@5-&dxrcL%GMPI`u@fAQZKRP_17~FHBDIB^1B%h^288y-yD49g zvBLCI5ABP00fBkVN*WaV;$2QgLa&(XaC~JumYC8SWXc#4iMJE>tPK+z7S*@xdhM(< z)8Y6MqJ787N-G_S&nN6lPF6bl(Rc%4_t`Mo)K2_lIyBb4pm&Q-(Fe{xC?DAIL^IrB z3EDqk$bN$n{dn>}lLU(WPkX9`S0vDh`42JZnT}Drbc|h`|KhG5xi-N8P;C}1T>ylS}`71JIaP%5W)SAg+WO?cKqn~jl zUYXK_^O9>9<5CUIOTK`db-!$}da(q2BI*KKuFRG3$MVTb zMkHfMbY&*RH|LWh`D8vJiRCg^<_>tX+DlHzPujSe#_32&)A^bA>UHZ?AfPIxW?q5V zF1T8Okq3@xX1c~}BHkZX2u!ovaF$e4yNn#1WX(g?E*$rMmeBPivL$!C6^Hz>s2z#t z*u#HtCi8kT7dn%JT>|jL_e=kmVm!P>O#x=7G?%GoAk=@p-d(JJX!&(^Ey%Vd6BGPO zn{F5F;LGm|MO4s+U5VOSdYYoz#Dd|LjQ&l{YCC_?ROnp~QTlZ7gP07+UfE_{;JU|f z#n`N5s9zQ=TZ?Po_&ubX#VW4bE~8bJi%*;n@iVN#olFb}otYhi*jHAK^(Fqp^Z_xW zayL*NPWq_=FUl_5KWc|T)rYAFdXa!VLjlnQpG?rpkolt@oke_A^9f(tc;N z*ilqvE9E{Brk-mav|)P)v*()C%UDMUnCJhB=9=?BUC%Xt1t(ey_#ozrW+mlhNb~f` zPb*O{JhZU{UWXjokjUcZ*T*ItZ8 z@+pgVRXLd90w$j!!PzmHOE)w`@Y8rw@2I+Xt>_1KW~dWQlVpj&&yU5s>VX#@C^_g- zV;wB=;%b^mYTd$D&zvxjYIgwXw=$uHs$o_xS~{((iJqISi|!=9!s>|vn)+%|G}2+_ zs*lU3-InnxYQzV1kNM}b3WX68`kfe@59LnGqD;4{UC9}a z)0{ZU2%+(Ix@duzR^~6wKGwbBVjWuBLN^ zxVNO~^!Sp`)T1`q+-KQRJ5STqoUVy2)x`3{;FR+AKcQ>sTBSsxa7;HFA7;;#p>d@% zxHU~Kg5Is6=!#+WRVUkUW(xS7po>7PyqNQ)c`PjRV-*)OeXdMn9Tyk)@$0q2_uPOL z-Uku~PH=DQ&AM@A@j3j2oqpCouz}+Cs&>?#OWOFQ&=cSVe5$M=u`^qXjfY2DT{O$; znO7kScW|(?!B>i{HarYD*m12d(*O`s%C;N}8>Iu9uPS}=;8kC80os>q@@ zy%jE&X5ri-3SLlH^9B?iwJEgZDf||9X)wuwt{8PbP4FD{D17d4}6?emH$6UCNP!>Ge81W3q)uY zZINnGfwbC|4iqGsL?W#6&lPbjx*}xw<2KMRiDohkR=?E6f4kJ8vb(s8F01GQCZ*dH z>}r9i0fMG%R-Q0f%}TTZv*i2!ocla8&m=AA_q*$Nf4`S~HS;{r{d4ZU=bn4cx#ymH z@3%`3Zpa6%c*|cM<{Ij)2x<&TMpf=~&ewxUy3z2j(tC_&`KIxg? za;XXheYU2T_dybeXO%Nn*rKpDQvOycCy#JMZO;F!pQRg>_UAWRT3bYWkL6>Ed&-q; zgQZTKZHP-8Hc&w`FHM2szysE62-5UpRU<8rB)YZO(8XLNvKm`3^C}v}e0_=vFe%Fw zCiSvKpXlfMXz_mH12MPB+?ENYDCoDTpmbObEsXT~Y)KERGH_pKuC=KwnqtnONjVyS8uWcuj6xP({easIy zMFAj&g`q;kd)U#B`5EX^4#EO#9cv^R-zwa-c$YiCY_i{gpJ-5A>N*t{4+fr(=YKPx zLC!ViLlVtfCv}ahh=J!g`ig_2r!YBBx1`S(tv`Q*fkI8@kTnI2Tfl!4?=0~Xj2!QF zm~q_vAxBbk>B9KK1urYDKRb@Fk$M&iW6z6}AKIk)CktCVElw4B6x!m|J95tTj1ii> zPrtLco-k0zs5LN5CG5m=Ok?af%F^WkF+`MQZ<53Gj!xWf3uf8pU*C}cw59t`SM6eg z8W7OxC0y108nFF^{4L%it_IoZ*-U|rGb+;iMUPR*+(sUVIDd!mFg_1T80k5Dp66;g zw-0p|Lc>`>+0-fIlAv8~F$TyC45N|o+aKL#5r9UT_@y`A56jhS2j-vK2R zNy6>*R)G_lalb*Up}!xy`Wn8{J5-gP$c(z~8e@JOh^Wt2?<7~1Ks;3!zvZ%+pYPq) z1SM?q-e&pO5$V8eXWcfLGt2`}$Ir`FrD ztGdPeipyVoXq@dv|3$XZ61|jc+P`Fqf%5gBE39nC{t4k_3pag!jQ5|1+9r%Rxcj_c zx1#wq^*oZfH@)ztU^4%;jUsbV$^vimAuJev0$Ax}DgKk8_~U>%ewpIqrT7nq;@?Ck zjq7UZbfgr2W+;Az;$N-!>3mTBYeMlc!9Pgxlco5BL-BVnApYmo#CxUqr_EW^)&E!; zI=)l!Bc=GkQ2ZO!J{`D}9xBCuEfl{)_4|b4ca`El8H&GN`7cxay`}gMhT@y8{ffV< z6n|zY{#t9l;%_U(za|v_TD9*W#cwXf9~_DwQ29UCw4%2Z|Fk)(y7qt8+OPO)OYwuD z_*W_ZtBSv(6#unQ{3^xkh|+Yr6#vOkyq5XLFH`&lrT7nq;=l4T;?GcgODX=$Q2a{e zf3@P*mEvC$ihq~l4^sTfQvAW8_}435XAh;9mExZ^>FV15zf}HC#V;m{ogXx3J&}K?GKX=tDQV7q~aWegNxkWgA7-L zwVSI_wgCgijh|7Ggth zPsX&G@i!~u>bV&|U&`1%SQ}JuuvW84fhZMnZdVk?0>MigyjVqy=hd1pwLs|*hLatt z!y@ujBL6j|BHvn$a46Tdn_C^q+^(CbO8iZS_0}AeW2cxw=2YVQ`>t}};pKz1I&jAD zFh)A>E`t(ff?Ps>e6yX8abo6`rPkmUlisc5x8PsHh~&VN+VL;p!eS|)Db7H+K=BS-)W8a_L{;%;=N+})(e&E?;}b6a zu>1*r(zdpH>J?`j#uV zIi?tQwGShc()w{`Fr~lFRduk|+#3KqSbMu19r$OLbC#38SgY$*(c7!6)#+3C2-;K^ z5TgpEz?@ap#SV6r8e{FX0`k4qmOg8X1-sVOzzz*hxh^&4Me3{S3q$U1(au;TbA-PN zyv2zbla);M17+)a|sw4|kX}3Te902O&wg*$43&f$-7oK;TAZeRiWhVaVwi|+eSA7 z)j@CTbNtIpOxvcI@e~7w! zs(Zq(`}-MZSSOk2q@zy+vyGp9*q9Q0ZwXWWuUS&xL*UmOo-4Dkn8eL4qF8H;$(JKe z3g&y&HMSD$IQ)#yUZSwiW_rV#+jzt4DVq_Lg>fim1>I%d&`v;+&e4-a9$6eD+L&0A z1(eJE!^-+UmiC9ofX&zLh?)H|yXu7BuEYF@&n1i{9XTQu@$USPNHz+|)}_a!+Q0re zBUFoZ#^Ygv3q7~m@=sxdlCzwoiAkj6tuEOfr6}BLD-~kRLwR%m@TRnioXPejO;GoQ<&sz7cH+pZMw&+~y)(zF( zTZ4};ZWa6%@5CVBHm-hZzSZ3PynP0dlfb7aA6N5fJ!H(ChB>=ytefhTKT%+zm6<6= zO}3ydy-XLJJ+aRpznl-&lIv1nkRWOazFV0G_pm`C_&p+rC=hUG_0yARhxH(5k>O%LyL`{ z54-V0l^XzPh#B*qpiZ1!@n(`- z8&2|XW^p6)2r(ChW4<563>UfT$ny_l9?7T1{8#SB?Q%SPvd#OoYw7RTMSpmv z`rlZhjSuHPAXMQX?|t>z7j)*z`BP=mbG$p^#)SFfH& zD@v{Wq`z|@w9;j(@>P+}KV`IK_a3VYfmpJ7zBc>R+t~lkI31WiBs+SnvC%261GfZ| zoa|t+oZ5)%;B;E6IxNa+soU;Cm}>Dlf2C$|(9uk9SEJV*Dc)4Nx^_Ji+=1x@xfI8p z?-{AP3wnC&!YNd!f#+(i4!fU7?GC~{)+e)19h+<4^+ak{5I8-U8so6Jv&z>A*~LH* zdspYECjN=S%aKEn^1yTPT=R}6QaggIL(t^F^MFj`+WVhK^#|ebq|t%tXm&J_OWpfK z>fRunVKNAaLX{&TOx{M-@*E4L9>SGIC-+pDysH13w*qtbJm*dE&7P zCv~lWpLFKMk`AXhPo31$LF(a`O3jIhsgdEjT`IR$rT_H7$J!@{FC4RjXQ}?3(ExNykEB(2U_86sMO0KHD11q}BUHxJ z`%FFr8Sk`=(c(JCin^83x7j^pDdXu|RhtuCZM<{Xsp*Or4F;yXCFSD(8;ATK6ts=+ zn0Ev%+v+{t9cijvNP}5-{5BZK?wT!LV!@a9FZkTPRf-A}qfrufa7o8>u0gMyh{bQD z18IR{#ISI=_af_pe4XIh6h<%R%&HepTWDbv!FoJ{zxJz_J4`a04didgFRXe!We?3q~0KBJWjWlq#>TrD>Fs z2=)BN)79Bkx3J<6>8MLjC`<9*Z9ELtDpUYnh00m|^r+m?5z_xtI6cYX+y;6Vpe<|H zL>wcBw~~f?M_~cPC5pj0SSz&ZAAE9~`f9LNU4zPqyHq?^ryj!Q&aW!r10A;dT2nK1 z8zQsqNw7Trmn0bMK^Y0w-M8pneP=Iui)u0qb)K9rD6(*i`GvH>&n*@Yrev#pZe|;X zC?jtfbKP5}uu*WMMi{ugOX;>32d>GwrE}p17WoC93sIDle%k}I;`jaP@8-j`Ne%a2 z3+Z^#t3Zjo$Q(%?1pzHB2t)V@3BT(vaD@5)hil9kzpeA7GehT9S8+jG=}57Y9Z9(m z?Xeju@zA>j@km0v)%g6M-)-4&sElBev3Za zyiZKnfLZlj=B45&I1OGRIA3;f*o0VxKjO*C!y(%r2B=oqw&+FbDtk5J=6{6Ai^idt zu#bkqdM*$FdDpqZwCApN{4bTDpa}esT(LPzm*1kmCfkOS=)RZ{^O%K?96fxqyMkqP zqI;OO4E9_?x%!v4H=|<(iEmLZhxh8M(A{u}761IZTw4nYP27J=oq}-y87LzqO-!rz zu%B>?KJkMq8d7pS`pg?DttjC%d!GU$C^qHF7<{SL_TnR<%GI%OQ|%=h58g+DGF)Y- zBf(7m2Z~n&%^eMz+i_vOV1;q2kG+HnvnCpQu$H^-t;$=`1=qwjFX9(wbxhn(9n|s% zGXvx6Db+y}b-?oHz_T1p*78K*=OQ4(ZCdOu*dF-hHp6SMtMEyq6`Y68r4S!#LGOkV zd$~`)HJuj>_Oz7KY|*>5#9r>xZ%yZ$^9JYg{$-%-M%NS#i;M1^oy?;`hb?Dw&E) zuT+LZD~iY*mtLpPFC75P%>v^SZ_J^4>puFmqH#M$&sg8dT;D#Okk zo4!S%mzgY>hyCJvf-<9SAb3|Bbfy{;k&ag)Bf0*e6AdEXlD3iYKbp4wr7wBlTK~u9!n*(+-1>2jbx(b8AJd3R zy`xpwh^0rB&c7_A`yCeMIyaIz%E25{^6Omk@z;qav_;@udkrUcs^CPcH~u6kP|GmgRT@iWqE6kIl zGB2(EUPr{csYM{-Ta!fj21qXXm=YSamDE3<5)b;O_DK%+Qypq*>q$)9ibpQX*ROZ` z^SQNB@EGg#3TF)Jqxd~v(=7u`O-TnzO?7or1m-9>?G%?1D|MuU6NUU$u;Py;Ez>hX z*V$G>-1CDe+{7aPobRns>cJ^kF&>)crs904ji39@q11ohbL@5{kP_#GWBr<1D%&cJ zo$wp0E8nOaM>|e5HBWY4#EqS7bal;ZsuhB6V76&QlA+#m`kqEnEu_2_??>;mUMaq& z9A1Gd4s6A$JJ90Y=_mYjNuOT?^;s?PG5W;`)}b0d%~NIpj(0sJZHT?Oy~wK4&fYkt ztpmm+4;Zs>e=%hY=*B=U6P@T{ctM<<2`CF}x(~|pOOSkpuNziIyT2@nkP79 z^e~?!TsCeL!Gw&Bs;@^cT9fvhG5@&su1?Pi=8#g4%Sb)aH(7SBCvEqbQYwUA(w%nQ zc7lHK0f=VMMW`Rg-v_G!TT8`!bet-kR3aQsl#k`n3Axl*QK6XU=0 z>aFV$9xyRf5c0rG?7Mvug@U{@MkX_zwKBS}Eo-8wedhXuO)n^}qFhJkbR(D40xkm^ zv{3~j49VDBxgsrynzXuWuC}5-T;2FKr2w;>@Jwx}w+`F&cD~xDlLL`&yi+%PQ-rz? z&3144ehe*A7PwZ2WA(l6j~Kx+56cd)q@4)>vRP)@Zd#2mF}iD>>SaVvS(Rbx@qy{s zfg+LzideXxh%zZv47+$IoK5x4uG}muO?B~Sw4iIR)unx^cR>iV69do14j7X>V9dh( z#gwa4zS*80jdLllo%PD$UNl~pgne#bXPjPzlKSeCy~rNFr;Gor9Yx-UPqLmd_5vcY zHiOYXNzG2^9^={3U)Mqml8Fac#9T*Lcb-j8a1%`SyE_IEOI&*K1h6-O#x`AnvfHK5kEK@$cwRYjaq)~qo zI#=WMb?Jpah5P>Oag$9NIGCj3J&mwIG*0YyoM9XJhbtn*bD>UZ(KS#iG_Ff1+5MJe z47899MmdvTi`Ml40|xry*#|kHfYaQP5EcX(CmH8A#M`{JeiGkYH*rF6f{~zmKQ(~| z5;c*xwclYIXBh8?o0{XDOQ~8-`>;l+PLeY`m`DnR<}9?hBe)?tSWXT=HVBH1BI2)&YjNr)G!RYxHHR=1SY`~gtj{#GqjZ}Iu|N6EkpfK zzZ+|#g>^9z*rx|1luZGEp>{; zG^bd|AiKd^8iayzLgTZUV=X89he>?uni!VPm8$lC3|qB}Zy_B$CLFSTt`(*e&2Lf} zHC82+fZLi17h|xOaTyY1J`5nYcvl-Vb$8*GmuUr}&8s`kXIzZ&35n-&9CpamSc~`D zGnGP_f^j;gQ9ow=tn{H#KQE><>gUCjMtwNuz}>^CFV;P&vA#aFyBB@$d7&$$$FedF1$A z?8$o#qi5jx8U{#quahr|8|$k-Y{4G1Bo6i9tG8ZymsN14c&D9$Ph7VDU>B_^?iejt zDt!jYGl3K;iJ66rKOHywu|~gdobo}MlJYSjw%H z+hxMP66Ux*H|0603k#dkW#*zZiTxSQjn)U3aWV)%a_F8HE{L_Uv^=&Z zG`30&2#>9KF{QCJFQzoM!ZD>mG79$4U`FB3iNZ#+?=lKToff49Ud8((5o$=f)ObLU z;d-V7@ulsf3=9cU1`;jKH4kMwhh{rI$_j7SGvbSQF9)P#NNo+}j4PjpW*g zig^}}m!^ilqXL&Qo`$oXV;o%iIjjAcqsILV)QO6LIuRbIL5&Z`OCzYU@2;8c9Eo+V zbZ4kHk8pr`YWn!?SS$9=4Ca>s4|qU`40yte7nQ6mYWVjostmk+#8?oxhW9Ysn5d6L zD}j&wp1|Q+;{M#Tni}hQq~lZ@*rRTifqoAwoTihEF6w*KS0a?=QB)O$(b-m`(c-tq zua$AO%oHcY6d4~AOSOECLN|%h_TCa#{GBv4RF1bJDkUCMvFt{i-=U@_sgm>q{25j* zke;^NSIe4X`TDA`o@N0~Nt6b0ds$DbN5yn72G=c!8gYdcwYV{^rfg@u6tzpl8s5x$ zKUM?kF)+FSF)5q#Exor5ZW2EYg6aus{2of%pITs@#OdB>;g(qcH{S`7qpc<%9?hj- z_VsW{^tL3*8Ot-8>*Cj3+@ms*q>9rW^HTY%xc}^@3RF1r*rN%qNNj!-m6|Tys?cS0 zI%PPV=9Fm7taRrW_Koj7qVmu@XH22dv0PGUsMAynNN)B1(obN=45@FgMYqw39nvOa z22zVl!X#8tPtB)m>J8purAdu{Q{a>-Los;&ZOpjr>;a}d&qzB(bN!DWx|RoRN+N)$ zH+(BFl?3wu&G^LWq#KwHFy(VPN2vXO_fF|dRD^3B^brsXzBYCF?ghe*Ng+o<3eCAt zWzme)oui3uCh+WT$4d-DSiJLS9RtWrIW=WhMZ_2+qPJ<|a6cq6as6tLR4WN-s@>$k z-n#rPRaU0zG$$(Oq9lU3mgJn|EHmeE4r>V9O0p9i25o4NqmeIQeW{u#Y@o|aLLjiQ z1WH6;VOWmrRl`#gs?bfx@fO|nY%cxq;3$+TWFGu{p7Y7u(6t8-fDVN_kAQ8oH6Zd8S9iSp|z zYIS5PgixREy{UQ>^D~xQvt#)aW>dr%)m52ySS=)hdX*kOR8S`l-)Q|ibGZ4`e3hPWuR5~llKYP0erOuP-Q#7yokUKFfSso1B4?= z6k@t`AW0ynl0-y?Gn}$wAX2GE+;D>LGYMM&f6sS+S}e_UyK;~iAFi8ObUfx{*Qzh; zcUxa72!$IXlx{nj^kwX%WUTjl$)=KUE#8S7LSI0aQ9sIVI%Y~HD)$H;oc`G43~a{c zNR4Ja!Pp!P#^zWear5VmSci>SkL7RaUGxCWlDb|F`r`L#7D}&c)+RM;)%U~AVi-zP z{#P}Ns*Z3J`)sa#WIQc0+pqkDgepyKT@#C;voeo_XOK1ix$k&vTEZ@CcaG=nn)44m zqA((tZvWhOE(HUM9+ky#Zgjq&;L9JpbSW#bct~1Gvn>j;9{`DVCZm~^B4SP^ApGn{jm6oY7eXqiLCRCo+ z`(^=Rd8w^wR{D4Q)q!D^L%@KTY;foC0c*SIgVME5+7Vj0Osa0GR=vEyx zFufyBQJ5SCZ6!kE*Q+jtHEMN2T+#c*Tl{oT6Je6f-s6>FlA+#C7v>%I5UuX?qM0Rg z*KmeZqrx7l-0Jljp6iRp&rLL;L|c@o&3nH~ROr!XOFH^9I_P^=Obj^Fz$xGYTR;^cc@B&dB*HD=g`F zMQ)2mdiFjIR%zU?sT{uE`MVs3jj^F#LgmiFk=JFSnO<Ftbav_hWX6wu8(r z(H4{0CECnV2?mEeHWy1Hk9d=qu(o}XJviQFygl(0dm!g&N2IR^<9o1n*Hi2W`uZ9+ z&+O(c@-@Bf;VpTG-iCN<`KsQAc^kFZ5#E%e0+wn9ywpZ&`0;w{tX zt%>9ZzpKdXc=XD6cC@Bu*X-h+B;m7*3$gRpL^kuhiOU}iywSovsxQ|cP;lrsAB~-Kt+(Y(D8^z@b$(y{q9*%G^=RV8 z_b|r_@?6NXo+sxq-kju_ z3-{)vt5XqX$~dE)uR*b+-o_&F`BXjONsM9fwos}!hEkOQmf&GgbkJlN44}F3oKGzz zsvdw^-ePs@o0q(}5#?bWnfwb}KQ zsoK5bK^6@5a8)*$&DJ{IR2$=+sB%N5X_Q-n6Fz4fM&W7M9g8U7B6-nw;8f`lnZDhM zGrV&+8w(#K^9y=}olQR}zB;{$Bz8=ION9~eN=vuUPuCCF$5-@^pP&VO^Cw{0B>P-- z2S+$q6Q8OAlAIo866c(z(Q6I?*V+EX+3C@%mzf3jf^s#gydx^Ws~S%L{y}onlS{NE zC_5ePSWVYdb(~gF;xfW&I$oVVVNR8+yzg1R1yvTz$6Xz4u>fn^G0yKi==g&v@jR7i zh?Y&tz2L0eaTeq-NK@3@nZY#}BzeR2bZyMuh+G}N_q!u6Xz8&%mTP6Lk)V1pc+0R* z$;NNfXT$BtkQx%%%ho&f#STzC^L6@ds=JHdtK<0wedQYTm0fiQzwA-nswW^h;DMC} zRz4eUQvf2VPBFR(mRh;`X)QHrSH7}@SI<=};o5;ju5%@|Ruj({SooS@QLwSqTkm2CYFp8N+o425iL6c%b)p|7IF0)| z!yq(%4m4iznuG)rf1kosL<1I@Rh%_wBX{o!OffR0Ib(ar2`n6&QJghUZnf81GV6&~ z9fkpHXEj&~yfvSu(Z0>xC>*oVfy&nnVig?2Pk0!8nccBah4A0!2sYm9ZM@r>r=3v7 zO=Dq>6L0aBxLS|@gnr6)F5)sW<2h`76`y0NeI3SmY{C%a-6W~t8spgS!d&B2hG4)o z{-s6P>i5SrSVzL)xWqLAG){s>$6Lh;H&oBz8};HFKF-sZep+nG=No@&MFo6A{6KtT zHAyP@#%Y!=7=&VE;u}9@V9?|zU4zg*xuwh|gtz!;Zt^}TRwtiXoKiOt4<-xosVjg~DyrI^QqVjf;2q{b3X z_PY8S@wW-b-`J1xR!Fbw^3pO$eLoA znw51BeL67kU2BiC3la{1HT9_ZiH;#rzE1K;)^GR1u7S+E8E9L@-c344OB{((TD>p02<;%su!9I_@I}^M$hnXca^MhhoLj%pqT;!=N#QJm zPc*+u*3>)=x=(iKz9WS0wq}(WM)yAhtSL3!fj$9wh+mFBtv;kJr$#z(M4QU98Dffi z>vAp8;>xY!<4XUk^g;*TZldz_foIPNgBQ*GPyp6Ow;B5f=5=@duz<~_#3YsdeBRF3tDW67fuc3Bf%5Q5P|;2SG%3+>HZV>H}^O?KoWm_quwiM#%G0M0LmOTtp2-)lKD4GM@{T@Rw(Y zTPq&-wKAp>J^u_!H$+PkAOGS-ZQkP&Sv$1J^mJ1X8a1@?t-944U#oh@nQ_TWGV0pW z=Ubt!%e|AVxWqcZPp;7FOr3OA zac~_1BAt=`Vbc^nvfGvW%22uSdFB3q9CKKvDcF0fdmc>m3_Fn7)5K8d0BL_PfZUpB zk+Z;!qcqP@)ZMPA*M*AOYRj=f6V>@Yur7?U%~dQH-_eg7OHse#&N#!CsVeq1*#JkW z0_qnX)RRL{-@bpSSWX-lp?3ShVJ+%0L}fU9neC5^7GDbj2iMfoK!>zs1>UpUp^_ii zs#!e5YNSuT1V7;R%efrkv-FJV0scg6W2iwNx24bkO`?Q7Hh8}b7nw77dqUYxugF$0 zc(uo>JVtHsN}aI58;Y>OYkEd`@a97$?6oz{pkg+7P3x$iM{-VE>3E|nw}SRQ69Txo z0-#z7?NK33jOm#WmfhSp;ICVyRGO|$FY8@oRMv;Ze~m+5VLGj*zL)y6nyPf#fOt07Y+>?$%~og@m|5Ia4Wpc2r}qI*^BQPBz)A zt-*3q?qGg`T2vp*O`{yJM%x6|2M8iP1;sHFfTy}80Q6qVo#I|^!!LICjS4Pc0aU8kT`@SiicmTRq zaJXPB`;15z?IvOKg;;SJUMpw_U3(*&ked&7_}iX?wCn*~{Q0M=so@wktZbs{W5PfO za69p-Ip26(yNhaN^ec(Lx_AIE8aiR`_`-x;Ns8XBx>WXR@6d(0-w~Gxj@?zYCDEIV4_g@LwWfi2SeM9bvGsAAjN6t_N~UqL?$hXnC6$Gc{JC9XlQk{kRQWZouauJT;u6xfrB{Q2 z5(_!{t#cdy#P~a*41qEuK(2KeA7x%JB{g*p8IJvsdPTd8gAaB56EqG>m0$Gkp$ z(>#=aZPnaTu?tU+?*=brR0sPj7|gZ4ryVM=6oMJ8_no_W;nH(&Hu`YQ6LE%Oqr|f7 zL|sDTO?}oDq0I~NM|b^}-PnhEy~LQsvHVtN4!7SUd>Jo|gCRXFaW(!CLkc#7cz(^Y zrE8Z7>>6xmkZ?SI_VT6cmqQ7;vzLP`-%6dDo`3K?5Z4hKncpDXmVNb9ZSt z!(Uj2uqpFlOSiBseL*MNx(eEw`wH2nSW-L6)CH@D=HE$>L1Ms zJ7}SbdYBS8kIVrozPGX+)tR%)71&=pc83S?`3AhA9R_^0U&|k(2&M0yHws^6*}~oQ z_$kYo0`WU>=B9kWTwosxieCP|fVzPqXU&P3t!de^Rz zyZhEQ_NMO2u4??Zb&;y;7o}~Pr}-|o$Gp}1w@ZXj%%FF$@uvMQcTCFG`hQ)=0c4lu z<1Jl#l_A%BN4E2hNC#(Y_(^i@x2w?G8&y#1?!M;Rd(Wx8rxe|mzJp#M;`08Q!a23O zTfO)pDkwhwW{v0eyLYZ@xQFwuc5@HgJ+0|m!(CQw4(Q=7`^kLtIR1As_z@8A=I2bP z+DQa2XOk><{e;F;$Eqx68g#rReHZ0a8tJ#366T1akH=Z^`=PB;L~WiS*|-1lHNP|I zRy%$tXee{g3SqTQ6y{rnL|Y~+qS7neD`PGG+0Y=au^I(LrLlH@@#{+3x~whjg%S1G zTf%ksM(X$rH3+`beuzviEZeLiVZE>_9ynQNdatEsb!Zh7Cb$ z{W0lNT>Y;}FVjo4x7rE}Cg|crKQ?I@Uy>y=+?`Q}3I65pQ~jlJNj`cDF0oG&z#Pwh z$i?>A)88pQPgN=|CSCU9EE>IX1F8l(HIt3{qIw<;bb4^@BGs*2OHf>Hr}VF&zh33n zIQ<#Yr`Nek=gsFnsI;*8C|D1)vQpI%RV*nV!*5l`LVl||4j-(&8>Nt)Wrmk;st#g~ zpzW7bA=jd_+^Vp-%dxwMNh@teoYm~%tPoZ=NG{>gQfj~D?Rshx;b0x*S&CS8FG!ln zogFWp90XMPXC&m;;zYxpRm|Z0tPvC;D48AZti0$A^Ymb#3)dhamQ$Ftt-zTsE) z?;BoUMwGAP89gixsDM>S)>Ca)KZ}f|6_YQ+8(2r6eqDRxyi+4nCfBk!I41ru7NLDg zp6I?xX`Ac8OV?AD_K}Vb@@B6^7r-o1j{(1_HF}lo>>P8hy=0_~+A$-eY|F8&1n8;N z@Ofyb^9j>-$+VQC|7|q`TisI4_v>?Kqkq)rIh4u1K*KcWDnQNS&j{CA${0)B_&MI$ z$sQ41bE4P2%oxw5Y{MPVDQcJwMr=#Ghqb_pl#;wQ+2YkW)Nx*xEu|dm+LV0=g`}Ro z&f5`8f)^hbwUcNzvnWW^I4@E0eH6Bo!-}*JGi~Q?O&3!nYw;em6&rs>GK=<923=%r za@s$Jfr%ngfuTBO_8P!YQFXw0)+U6u6|$@^`eXJcH)h|I?snvVlez1M$^XZYf8zeb zAf#i`SGd$~4pLtU&B-2&N zpgfY9!_9Qtjhes`V9FbBQ5C75_z~|>g%7r+oVF684|TpP|Ehz8s)(fu<3Y^e6Jc*g~X#irC)hG{z0M4{oxf(e5t)@*(t zW{8xXwkb6+r-1OBotQWhc#=x$v zi>{3?G2YsrK_*!up_+;=!@4Z?v?j#^^n6`VwRb3+Fz>W72m88S6k zTGQR%vD$rR{-c(_NWSX3voE}Gea)WiPw z9eo6k$Sm83|D~{o1B@3(mkvBoSo1>Z?LSLzGya=NH1HecJGO7T>cBqP>eH$+uV2vL z@#@pwSCv_^V65Zl0WW#ln(EBU2|Vny_tj*Q)FQh*x?n8xNS@>A9@zZK{)b0bKY;J# zb|_r!s9p<@@ik-^-KX{CNXH$Q<*PZSm*7VTeMqn$1ol97pt^XIRmA_X{#b7Pfp{A! zNW5~qi}lKG*DDvM`(3Y0o*3>GDXBm9xvk%S7X>MIR-}{?0~a3|ToYeQ<&bBR=UVhf zw#9S;`3URRXjV6H;tNAS_O+1~@6*=TPzjT~5o9ojK@iSTJ)c@^-*}uLRqy0#%m>{( zBG=5)5J6@s8DX*PFg{r-_I`e~kpefNu$j9;$2c#)adE7;p>X?RYKA|m`szHNKoX8X zngRlOaoRW@+IWSdjYG?{aoudOu5jH8#aQ9G|18!Nt`jlDefTf$J8Vt&BORCa9(AT) z#4n1qxudd!QKP|pl~0BF!%B3xm-Huh|EA+L`?ebu98|{ao~r!bd@R2@+VX&{-v_g{qc$*@ zbc6ynfRo?lV|1p7Sl(pIKDpYd2x0Pc`ogjorO&nL5l5dbOJ9OMPY+VQx*}zWKF``eed6BmfSZd!d#vqp zq7gJIKeUln?=h>s(diuGq9u&4u8DIPr-hz-5&qvmPn!24OMokGFmMPoU;y}r%+taUe=Fx6O@X7B02ot?iu{Bgh*|Elz3|0rUHMH z&hma)CDIJI!>W*0Mz0}FpF-N!Pa4v;@c5mOR_uIfjD3qn%){8$P+$pTH-!RU3}crX zxiPMUt$(M3pX0BVI=?8kjNT*_XB(y*iV_tBAR|IZ`E>M|oxqA3%bvoW!ceC;t2?Xm zBRYcI0h=*k9fud#NUhM>hG_@h4z*mzog=BKz|i(9=Yc}sPr9`iVEiJ8e5MrX`H|k| zbHd#s-(WA@`L)7JX|%w#$oK&j8k6H3-9J9_D!^p8=ylpigffFghcKl+P?LVGo=#Wa)5ZWcVrfdKZRB1cKNv@gZRS_6wejTGZ+G@wBRL5h_Mlf zN0i54?X+UZ+1H%xt()S*B>0)xRri|Rb6LLO9$wsr@T_Nw7MG#cDfUX7+h*kGg62Fk zn=C$=Ui@wFu;?Gb!w0M~vGlU<5OTsjgdiV;tL&->`wAkN#tpMxa!j)y6wyW|5)h_h zR2T2t6GX_KQC;NPX{$WJj#Wl<>yW>gAfMI9l$E zfWD<~V!V;2SgCNnA?-QQ(Xd3doiokCPV(6??o3s;C9w@9ImX1Zs<7J>+}nk^}|HGJ@fo~FLG*u=@n;n z{Jm2x4hmF@BeOew75Ar%wq*>pV|>*j?o^A+&fHN&9UVE#^!KRZq0ThR8(!)Lb4CAI z9Sc_U=MF}1IV&?wg)==t9ew#XOyzW`z-&W3y;)FR4|n-r%>*ZuKk4!(x5jwM^_+mL z9q(0j3d?z=9&zfC>siJ}_CEd2cAV^9s&zutLk>Pu8VqjOZsUUnLR71xR|JmN(!28K zEp(g8lP7DPYQU5@*HEvQ)butr2`b9fEz-*t!GJ}20gL>3iA9dN!ijt;i2P|Oa>S4H z-qS78U1WwJR%)c8an=^w5I9w$JZ=~Y_7DEl8ki$sB6U>W35}eGL=8@l`fHv>w?;Fbr>^6tGT1zzo+EU#BI@y#;Uhjt==faQR zxF2#O!SF78;#onk`^$tt$%l!UaS?yj{Vm3NR`;f+ccz}B;m=>NGxb{;`p}(X3|30Pl?f=gF`F~*lmtKrzAN&6U;tnYCQ@@Y>|75F!v;RK?$(X4; zzQn52-_c0*TD`1|5jksOoz-;;&X!+A*8h{`f-$3IG!`uvaQ^s#R|4!VL#&B&76T9` zO)2lH7h6I|7cWA1W2-lgrM-^um&-q3w3?lsvvPp&#wU*>w=tIM>`&=ZoO*iQ!U!DQ zUpg2T!y2Z=^w=;bXpf%?Tb7eYS*{sBst*`U*h2A{wWUFFKnsP9lnM(4<4fl_Sqpr# zg=950_Rg6T<#v@X%ykLXROA3*2A)1@0qs)dSL_E~vyrk;?(tA{aK2u&QK> zHyv1br@1kdf(qxxSdRlGW@fQfKi|XEPNzLF!)EO1eZxg|{@V6A$s-cCcvD~o8C{|K zmgLpKckd5DA6w%iXyU*o99O@v3Fklv0+la;pegzh&O5C~P@e!#|F+t%i?@F~apIyE z>1cvoYZ(p7nrih1AnE+B{I9@k)?5C$nq5cyihjyvP}R*I74Dwm&G5t%GhC=LwQpFI z_ef;l<1DaAfu9a;gA*<7nEJwFoiBWWo6TO>v^#zoFdqBJ%+ETf9{b1(F7bmUQ+A+F zx&6fjZe&1Zah6kmCHj=~l$&0BYoVGKOfSryU1>QzHAs0=MM|@=8uNqF7)%#A*L<6f zOu~a?fg<>WW{j(tj@;5_2&K*y(-F}N^TXRT*<+=o)?N^K#Uor`eJ2(p1{?A3(%$iLC^HwQ?|JtyP!jjoYPJkJuJwAmbS15IzpoE6zw~=P zDQrbHyfz&(w0ZZk9$)Tx-_nS4gtKPH%$jXBmyL~(ZJxC>|4tRW1uX#6DMJohHnVTm z7*~QPFeVCM*DxF<>|EgLYy7}2o;(mg(Ef``O8ro}(bYG;-})LO!lA0LVORsBpEfm z9Mv37lDL0u)Bvm!6xfXwx#n1GS6?c2> z#1)To!M}3B#U+B+ao3Z>Pn>wg)9WJU!BhhN*-GHvUooEE6CO{=w5HYRw;e$vzVI25 z1L_|u(udkKc**1qk;p3jBziteIm`)}sxdaM*z6~jSg-0hl;3K($V}FBEH9p6FyV(S z-g*b}N!0lpT&Tp!8%v>&jTS$MM(6X_SnGxc??+UbC5qxZ6;8&H+VqVWlR);O#ii+V z!-kl*(e$iE#aCl5(hPm}2B%6eV9P}fe%dPfq%XrACkgQr*Z!^dfcX~h^DeRJM~AxU zf7f2MzUw)M1LptGp0iGQAO2Jb2a)U73J2FSUj+xRES_Ah!n&XevGMO({!nud@qSK^ z(A@FA@}mya;zMY0pP^<^@#<0??(kt>I86&jE{y$b^fx2u>+f?NR625gf5*MwKu*6)f5++X&u>!NaDU(9!#-et|Kw(?d-#dNZ7MgOnmRJ za*fj{#F(t|HLaBY*F=7cl=~X)lh|?v426kUjdaZktb9#&P5U+MNm0g$mf7}tcx6xj z^^fNZO1o6{Fw10Fo7$(YW*WkQxE9DR7?-^B;k+L|aaA>w0Xa3f6xu7~^;*5-#h!|Y zsW$JUE+TK&n=^+45qYZ-bH}EEjbfHmyUAc*^;)K}YS2w~Rk|y1soFo8yT#pOU-nFy zXtFk6#l&L*?2q390*dsq-{7m@u9J%Dw(G_*vpO8*ZYfOL4AD0oQd~`QvdNlqReh<* zoB>)Y0QJ}7i(m2! zmi`U_Y7gmKAsI5+^+riFuGbUZhlPt3WVlV7SM(--_NZ@n^AQWODA@7hb_Wo68)nm| zz#P-JG_8$Xx>Ypaa%oNioEl8RNpm0YW*e4aOWdYSM_ctX;JI4}x9#R5*o-twj$GX? zg*51w+Y)LTlpxozgI_0`f4SH|eI>c{FzHSeXR_|XwqH~tv%46JS z)8?J8Jd7XPO);u*!-X}i-eGywCH6r619-fRwt1~e);xJByV3aP>sR0_yXsu(Al>P0 ze_{Ng#rp&=G$Sn(uvY*+&X-LQD$*x{^zW`nuO+U~d;+(Z8m3(=jd?%7JCrH~kxswQ zPRL)-dAV(3@8j(3nQPp%x}SN`^;IovBz802NV7Nck?AKdoP07hIdZi06$#=s@);Xr z;6|KdEH5~Kl_rU*??fzp2?R0Qa55Eh94*puYDg}j>Kl-r~C18Yd1r`xR7)xyz?w4&inVf zKFw>)-L@DdT-TfWCK-bIs(YC$G{^edr+W|UOU+=U=PPl)Rz{6m$8ci$Nx0UuU*n6~ zGNKl_vJ>~$2{e0*wbjAKPprs}C8a6_$PEz~qUAR*Z!epK+my`x~qZ56Np1GrQbr$nI=U6hy!H<6XE4ye^roRu_lE z&9nJG5T1;T9DN1-DT=5PMVLLjv_1ehKbO%%T*?%7N#ufzU^L zNaC-y8_V=YnXWM!icIr0gKo=LwRm6L=2HqCJBa>!P#B*Bg;Qg)%4osknuh*R?GS^kr**SEe(jMO(wD8Q(pH23H6#~Mh0i2Jah~I}dIex3!CwePukd0cQfkJ=fl#;4T5jR$>b z{TH;C{yY1{`Y+#b34O~VUFKE5tEttODN|EBtC*gbZnd4-2{&39>eZcyA;X{Fs~9_y zHEVGfYo3NCPNieFBhhNM)Bm?A<%{>GIvLO48;-RtY%Sicrd=_9=oDEAoXJUByC`m^ zW_=XGFoL-miJ*ONvgE$s&s6UJQcm*8^w4<;jKawJ!Hzo0G~)x;bTJpy_LbGy41r;%Uuu>{7wd z5!eTyC{rPzd*wiGtiQytBkk2BTXYAPDSIa!Gx>!`tta*X4 z6=+0=4(Cs@-}dh`W`c8Q`J75vT#L8ae5g>BXIu(NuYiuj_$%cP`SRDh!vp5!75#T6 zKVX|%Q<+zk4@&aq--}$C#gj>OSq8?hX@DQsZ(eY57-i`YJ*j&%?#*bHUPBy zR~P@OqKi~t;Bo&udjV0Og{@Pt3y}lR)&kaLXNt>gzKUOY*0nyM#&rz8R-N_?c~3SysqYzCdqeY8b28X#Q?*Wv)2O7Gy+lw8ul)V?#by zD({^}Wv~QnVI*pcqFlE?0=fEvzC&GOBsd5D!SYg^Exw-;o)1cxQVFfJob7vhH}iO$ zOI0`gdbVM;nnS-wEvon$GX9pBDL)4H>gW~&z_uMYUYvUw^;xQh%HO(Nc6FbA^j?ZJ z`nqQs+L-qMqE!iffTJ+A~E} zviIp1O(ngO7^b3p(dANCw<%AM)5`fe3_aj5=@{t?1+{_nmUKt5utneaI-Wy*zaHy( z^@hb8FdFMfK|846EqQARV|ig~`ri{+O}D7kZQko|7p1b1yt6(%g0@iTQ8@F3heh*p zBdN~3(Lmr>G)!%Gkw}h3dcRxhML}<^RE0;I_YRlO2SbGw>8%ezJGD%Dc0xu+eflmH z>?b|iB~4Fm(hW%t=*xoau${F9>tR|VS;WDRx05+-F5}k2E#7;-tR^iiH_2hm`-eT& zq~ei2SO9^&7Vir#JiAJS#S$Jh`K4=-kgLH-2N8wHkvuSz91_BIzDMcDHM4RISbm=GQAdM9M4$zNQC|wO>zX|EIcwJe zn#*#WNF$5~cK?cPiC>+9Wzt(AymCqgS8aXqb6RssKMv1%=PGlwaq_TFmaVP%LpD7@ACtaWWHeRyM4 zBz-Qq3R@J>=B+XY2{O!o;XX5TW)9nMq!%?d6WvhbJ@km^M={Zi?{XJ%RAW4tKVIBv zAlHhac%QV1A_{^tQM}1tE@lWe)tMf_-p#<9m+9;Yrca3d90d1t7XISvk)(Fhsf@!= zHAl847Ne$Xs=>I9wQWcSr|euHX5!Crtv>Y-R>Yk*;f_< zzE^GZ;!N!fhC{^}Vr%PXY@(^1CLGSAtwwMxJ<_;>t~f*F(>h}|OHHoj$gPPOW^T$yOVX}N z+2f?_vUqZ|Up~ERCiIWE@{21f%hom%r|xNvWZ6;q8l>{U?A1Sh1u`$ouF^sGcD($w zOx+v??QyvoID!$H`aAw-&|0WJP5T967@Z=OrQP zaQZsrNC~svo};wV+=-`dtlzLc6S-zBXr5S;N zbmMJnBe_7SKd|I@TiWP5)6}qt*v_}7Bdg^;LfLsH*6ZVFRv!jlIkk5@qtROT88>-tA==}{kWk{LpC-;krup7@qyA$d(x{J zS7p?TT(_w>?2`OC+?HFebz;h;UXw3RV1)5S~)yj{iAX1Yk7*;`)^x{HtQ@BAw}pIy5BQVz-z zkm-SE5&*e}%50)z9`$U{#g5;Dv9nRYMicZhb5l9mqpc$3umIXc0U{{#(_*w6O0E7Y zjcc$obO$wL$ShrpEqxN(_`rC=jA%0-dL#-O@~It#o0985r`02#eFhh|G0e+(PR+$j zZV%@7nsyxAcI8vMbRgD*ZkJyR_hGGb!tLemInLPM#K80Ndf?t$uCRaG)l_TbZL~-E zns?<}qD`%_M9&^Vh;F>yDRMj7sIs*^JF_M@{ocUu$%e zwvq0rNsaW%okD?$`&-%XoLN{2gw=uL_t0>Tapqiz5sv-ULiwggpV{|_MjN>3?%F}f z@!MU2x$ZuFI@o>dqnor|xPuFmdvy+k3QXL;9!)aC&C+wA!IGoLKLl>=$cSAWvXlo! zc8aW8+e&@~=FTR3kDbjx#r6zL%QnOISav2DhK3D8xGL_|rud$B8zRS+>W1mv^kAGrL*U;~!|vS>cGh*R zE1_mx-#SCVPzWzW0bYiDyezB)63fRNP8JCNL*U=~C)C3?8Ny4QeA8ybzq)iN)Xzgf zKU0qNGx(naP1a=B*CL7C_!#9=yXg~k2d&k4-U`gMC|s*ZK8~58w+}V7gPWvqqm9bb zh57+IEQCa(fR)dVGK|_S5Tm@ySE+f-I+b_Etrn#MjP5du9&Wsfr9|2>tSTGkhK0ES zN4dkj(9t8ABYk`gKdME7eC!aTpanh^4{O*51L2U+K)|=#_+vtxv@Lsd$=r3=NKLs-y?~h_kq0ZD&wh%?$i0$ znuJ{rjB+`r0&&`^foFKWJlP~nd%oasD5z8VN1xehsn-h;4SHp~_(92hgOUt(e_AA> ze?dfF>*+9r;H$UwbeA>17902a(;2PYr($5&Mi;-}>ZAR?7RJeFvxy!p`uH-<2NOuT zASY(rvi-> zs$~H8OullNKS-35FcH&(H^q-ZWXBs>m;7*b9NVfYL9_O1}ZQf+m zR72IWHOaCVZCIboo;qu(?slni4bmW7R1V$_pGT3}lkLPy^?1gJ0%)ojru)e3KK^dw zbBF9iXfu_O&|?HJpvXOP{JCAQR{Ky&lSqgB81BH-bdN1;>?tCz_I#+{1a$MR!Yx%M zpt+lQ~e~W?k6zIa++0MRN&8&Vq5Xh~GEJ{p``IEg+{DcGUAK(LQGwr}Y11v?^emlN!} zYMMs_hQF&OHEIlBfpY}A55#kV-E)Fnv};_%i7vxrS+J|Xl3*9?K!EM4X&*HKroggb zp92j7Fv0GbV4pO>KAHCg`=rSL1;VJ@$)JZyjA#lpW4@)VzD-II^CgkqO=2jV%OK=X z!;w9DM=*u)$9fuy(L`hCdq7f6YC;vHC8!R4Yok#ZuU>oCN*g)SmlqR~7obM|v7pA6 zEfbP0h7-j3A!s^=5U8_=hx|)GMu<$5rM8WVsDmykt0*7uehCiir9zxKCA@H_m0CBg ztCc2ekRU8NuSEl!tRYMj)?o;pB)Ozy6GBp{hI40Yf|)1Jj5`qoH(?x;r2%_Qrorou zmpxbn7?2s<-o@r^Kxhc=(fGxUC>m@I@E45WpRL9`*{i2~tbgj69Y|jOAWJ=S=P7RL zY3mfm1ti~*nK_$Ha8sAEZcpayWj;@yN$*(0)Ff7#$=c!t+1Dg#Rrcc?uc{gA)f=Me zNTWa3l3DKxn^O4>*4d9^bYP*%e5OOQVhJKLpGwT2nyq^I9?<~jUM(?ss}r6Q+a!D> z>|2wA)rt^2nLJFMEDPob5+eDvta~#v92QJui)R)jm~-J_O$tA#v84NM7%{hU;NSVBjeh@ncLg?Sv;`gvpr6 zWyk>|fN%l>HPinaG|Wa!_gD`YCil3rQUE8(VYi19q4dc>; z9WOE=CgHbr!rD3(#6r--f@6mXVqpYmoo1o=#xj`qNE` z9O^~4c|`u{Qhl=zF?zHW!5{P}l$zs!OkV?6{e3qQ>+j_(7H9j9k~s|I0V0`ehi$}y zIVk*T%FRI`lc1aTl)9M#%#nYzZ-VCH!LDf@RmQCmaWO<~b*3%MZcNjToA1)Z64yXY zY9!T$IehEX_Oa`AY;}9Bb!1pqv6;=No7q5)LxE;3u_;xiG*>~H@n>>-^5wb8o}A59 z_JmkHGcL#K6*yR$lmTn= z7!R7!c=P8mdbfFu!fhTyQBWW6^nDoHZXN@+na2dpfvNgf)jY;pTQQFTm!hFL^B9D- z_zv`i-1lb~dnETYk9jH3h@g-}Hj)m_V?vnqi>R2#lzU0I(mZAee2Q6U9y4Y#XF@V( z%w*0)P5T%!XZ&6>gc$7>9PRq?Y-8aZK5gf*9#{hq%OiO|Y~92t9u8EcId+fsNn7(u z^fWo%^+%HTm7@KSyqy?!Ktzt9KA3ie7yOn7dN zbF&$BT_gV=&doEIW>-mXsk;8X!31AtBLvF=Qh?^_T&3Cf(uZ0t57SHBh@~2~dX1fk z5P3$~OdP3YFCoRzt>6-p zS}y=5XT?D~3rw{b?74%a_U7!tGVyZ-AVyp*Ml~i1zhJV4!Mwz~5OcgERZx1Hai;)*|#Pfy~eHvrygZv|C4+%T6QjFj2x9ZNPzipRaS@@0m$| zu+b2bIv_?u)Dudl06&t6qwke??^@ZL0kLKC`6NKIWJ3@ z3$w1R;@y(w;|!IjGCY)JT6vbycP*Am3&qLwlLk!R&MM(u z&dZrZv*v=V%RIb=$p7&4&3MkA$h;;|Kw4-LLhT{jnCcTae?=}r(t938vn)g!OJh%* zN|1LGtvZ%4`KWn2ajxVlSH8oqz_6tJQCGZLN%60%`1`GRHKoj&fIhCiPxYs*<4Vw? z1cr<O$29xZViujc+ zl3ucV4}pjStm_$KBR0e&CTOTgUrD0D?#D=>=v1H5Cav3C?L@iLj}w^c(|5fks91fW zt&k(Bv~t!vTve=|sZc-NK_c#F?CG~W)ENq0-z@<5Pv4BPmiDW11{m)mm~kZ2>xfPD z={vC%{S3V6Xt@m>^LGbJP@f(mGLFgcXuTDJzVI|sq4+rb7J+5^$d&yOA@!Dp%cFjy zqJFMgxi-xHz4{*KvfvPfn<*x zU>i`}RkYzh)rKGB`<&fQy$wO4UQ^U2MWr-Pym`Hy?VqA7(@>~|(x^Phox^PK%`Zg%vQ+r}7sjF) zT;jo~M+RQ^4}&|;GR3JbQhgDEUQnD2=S#hbU=yrrii41Eo$~lV~wYaF% zsO*{CbNy)iObT!I-s#@qG~%|emjcsw36S@8MAcfn1z$Aylw}^DBL$DoI~EUw*%6u} zBw1bWf48fNbA%L#eQ0mtFsXmIe_q>D&dTa#vqhS8n3O`zvo_e2hvz10i%cSMSe8T$ zxIZ%aNVE5|UPcHe-hS$1tTCjtW9gAW^^vfXzuP=A*ue5(XOIHDwl9t{`HPHAq8z5e zxJJ0lN?qIRHIl)s8k|k)B|%xC2CEt80I3=h8&{ zJ#*o6`{yC{G_dQij8kaia%p%7a<0S8aOL3-GXWa99fz|vI%2=OgoSFH=6HcT`SCegC?x|KZoC=$2po8lOX=s$+i6o-pI zUKO;*H@opw-jX``*OSBR)SK&yiZmy+=!>xp=I>&`8g3BiREQM#3QC20t@+m9yW)SU zG2D*A!evNB*R*&a5jAi_yx`y>tI-~6$9dRTYNi3I>cSo(F^rH3mjgxMo4q-C0J_Cg zOEhZ~Usje`Kj+=S`29sk{SPOo9ZJyz{ejU1gf;5RiFV(gsAe=8pDf*P+AXt*8bi$X z5Yv${g4_=-DnAt`nSk3}63yP9{Gp9cLAjQ(X?{D3s7Nn*giZ~CqKR8&uG)KU+KSA< zxxaDkMWp*bZEu(f<~xpeW=Lk=cOHPv@dL~Fan97$PZB}>piHCTgzEc5a0yf5-brmJ zxSKCeyfGcerYDxbir9P8?(!aO%S>LXt*JO#iTwQAFi!##f>u5qD_FDN(oqI1=ZmrD zN={V`&`m3yH1z#J52?e-+s`VHYY@Cq_C~UE_E<-V|FlW4U*v^p*W!Kqok9O)1{K!o znOA&7LnlYsMVdF={S~XfX5dCc@rB3>G1LSN?bnU!o{eg|tT_Wv;C8jV^Gv5+?3ewTOnerxrBMbkqUj6`-fBGdOce3J^Tchd4 z(QxC>tJQ*&30Nrd;pr9!O!HhWRF0nKK17IOgQj zJjO|ElyyICmkt!w{3N4fTJb2c6CB(wiB5)NTlj(TcZHdM6j?0BL1Cna6GxUn*kcvX zAOIVm4(oJW{VzKX*h%2@wjS-dd7wPYipr(#(e|?{oTx`4Hg?I=aI=C?aL7q@6-K3PhPyH(0iQxN?dS8(8{z)nO z8H_(-MAPN1!<`+&pNL=0_x=xIdz+^{BjUcVEemsM(QH#zCG}y8ucTWjsr`#y-i}gLUribVg%! z*o7VSuVNfwC)RHaMm{rZ=}71Eq#en;W|bYe$ddFI;A=zK`CJ2VGtZO6e2C@qSJIQ# z%GRTu&o@wH=5J4(CU&&*=(DO0>?Cj?Ud3?SjkdI5S1n~_?>TWSK*6BI%(H zG4m~O7&`reu)!WUm0$-;AsI)LOHg|S_r@?e25Fxljtwq~*pnh_>`5eMJh?;^#y>9p z(IbmOU;OE!P>fF|5hr8VZ~*2fgH@BMX)OCk%Uj!qY#J}G_1?r61lS~z z%sKX+hs>3X?8h^}-Nq2@-iocu8 z-`v~QMY=Z6YSk7Zmv@(|Sdu&SIyQyyo^ZDJiD!+^OvN^B)RKoIZFXq2WR&b~lXl8Y zn^M(^Vz>svRizyNyF4mKAg7%Z`ZTQ}`!ET5izE*;y z0c`MnJTXpXzOqj9cL1{wM9Un9UYBfL-_@}$L^E~VbzL&{m`3em3P?3QmTX!#7}K~l zhi{MD68888Rkl91t|HBLB-AE{`jgrlUtt{)w3lABX$9xp)HD~K7^qEJ z0-D~sDX|r!{!OXa;~e*~<_}o&o78+Ym*&Sd4LZGU)21DZX#TE@+!+kUo}eC~?AfW- zC#;%J6b-cX*5dU<)wizexH}bFpSW&9_ahlAVF#2xKyt17+Wl#yt>@aXiR#sE$9h$& z=?Pm)7+77 z6ZNU+{PO~uwyy9Q(6pGtH*WsP|X z$*U@yj6Ip?crp~{5Idls!aAbqNhg&^yk4rdZ9?}EZJ?x{MPc3H_@r~yn|Py4r|UP# zZe|w@?IxOnIM@$pI6k1$1!QWdp$!RY)TuET?CB(bIC0vuBsFwg1L_kCj6>x7toGVD z4q*x-&0hN#G6?^;F}FO=3-jYv>^lg#F9@-DprrfNQO6T%`H1t~jefW|06Fi9Ltyo^?MT>pq}m0-~qv zAE-g>vZ9t*8T5`3iF3y{*f>WE7$Mqt>q)?(UAyHri%>)vrbx;=7V$Bx{`0XL=ddaQ zpYz*7->~y*8z?qFbGLICnHVo=FWF;f*Pb)>9ZMRF`QB&9<`OKogkDG4E#6Y3Z)~$& zROiuO5$HS&s;X++Bs&*Kk(=0tVIL5T4uGaPK*!hIHGukejXVK{XoPS7IM{svCQ|T% z4Wv2Wk@2o{YCaDo?&(J}Af8(+b;YB*c!7sKn0UQ*<#|e)c;lf}XTTzpuVTHyYD4Fu|?lgE57tG3Q48)GEtXae2gnk zVn+>3>%mjI(!Mp_r#c!xp&D{NowZAvuhytMs-ULktPiRnxWCqe*pZyy_L%F!FEX0j z9@TTHx7A!D7tfS^>9pW#SGrW~Z1#R4gm4?{W=<*jvqL;adOOJwxAL9rds@%k`o@mI zpZbH{dwAEM-=53^Ku}$i={BYB(>M2~C*8vqy;eTBBxSMUOILym_|m)hVZS2r{+Z@&Z&v(4Vq zhB1l}0uo#F9l~d89v^^CEAXCOfNnjQUOaoROPjgbU29+B zDdwmat9~|HJ4PvnM#%oKA;F?8*|(0osQ*F89`ZyZiZp*4p@qCP%s;UASpM!T8cd`1-)wStgb|5rx^_Whv^wMzL-J5SYH3- zU@T{%CTW0#Hjs)V$<&645z0KmSK&4LfNLh0Cv-1~rt+laPS2O*)3VHqN(a|-#?QeN zo&@ty1M`#UZ|UhC-~pM8u`ac)1VOdo-^l}0$_;=2Zlgedb`Cclws>Ep8?5hp0F&%{ zl<&+}U7-ncPP)VfL<9Ic*D}1*WvF24ugBn!n30Agx+~1t%Ezqr?`yhgQ9F<+Q{W)gZLu@|0Bt2j`YHu`k4e)4i6s zWco3ex$}8!EpvFFah0}6mpY%M>qrQMv8tb)@}reEahTh43ZRY~#YT^W-^7t)z;_vE zbStA6VP9C5Zu$=+Q5vg`*x01iYxn+DRjIV#&#JF!KnuYdTolw~Wk(c^=_46{$MJ(&3ot6H() z%u?tgb#{cJXsG8dk_%_X!evYlhzwr5e&Qp6iSp&e`&isR58q-}OJdm$#VHWRQyroY7NCLOG!XD5R;&s*c5 z=>SQ^>c{Cl;iTfr-%vlshLhc$su1@lrdR5r&%V3$ZNoqhH1^Y}w9+k0&0d!5yUm`u z_0ybAKg17}S2TBaGvisX4yU5cQ&@sl;T*4scgfu77vtTAx%0c?NEFq~Z!`uxbE(9?Y8{&G<$!ROEU z{DjY+{c2Gt!td#P-Xi|je9qIRxI%|qvBh#kOnl)oqbk?ky`K`1)Xuk)~2zLSl0LN$tVWM)E zw(??_#*|qn;Pt*K@AjTWCF)<{%AJ&AzkT;v=NrDoezV<|jaE~olUZ>>8b7k`*4Ijo z6$Y{bRe|ONNTzb_Rj%Y^oCPp1^3QG`n|_ian@*5dbD;9ssjn z^v?Okusu=4n|1=oX9`ua`e5XY@Q7`YOoDmga^axRLOdJpAYRLU2_`d6e{ESNox?mF=)O_L0{je5%cJyRs|(MeQx#l}U@>j*TO~uw&g$8~+H?miegD=cbKsfJSjT zPN(+e)PLM}>i=7M#f3V5L+>XF83LK}!T3Ltqc@#Q$CQT-GJSvI2sdhsBPU?X;sSQp zx&Y}M|59N6U{2yFU6Ae7{HtG%zbRz8+P>J?BSZm!)a|OSj&Vs};?sCAp$oFA(WPG9 zy_&od(_oB)$K|_f?cJ3TT#U|+UCnTI2D(GMdw<9IZBGc3p|xzb zqwgOr7_peF&vXJKb_Ibu>XkTLs|Cd_Fjr%L@vPdW|MtWvv&jo2Kn6D91w2aXO zx}IaW^EtMU+Cfk$WC5OjvavM&dZnoJ#%@y8v{|#|NC&yJ(hsMq8`z&{2|{W)GFRqS3V;-Cun1{E7!@4bsd52D1cdftO8iKQHTVF#zBY$L2Al*2kj+Z5F`L=qaA zXBYokp|h5Q{iwTv`JWD{OcuTfdLT5wtxXqO6r0$hZwYS;?1{QO0&d~k z51RiQbVvW-9z-ooyyL@c_I_(yWp!0)_OM^K#2Xh?bpIW!`CzPHowWn$CbDHcB1ukm z%W5T+);G$=9XM0(Z5{1teXKY3SWj$CZ_}EdCa<^E>uFuL15M?Q*v^u{?mE?yKZGJ4 zmIB=^VD0$I$PmTHM$K|``eRNCjXlCaA0J_$NCG`}f`lt^7=uwoC${K26u%_ZXT~+M zOSbyzJk!xMrZ};&^i9ossd+{kF@PoeLS#vG>pS6Ho^%ge^x9PMCF5}{g=7@BRyHDB zN?*s1T{hVp+j&JvPi$u|>c~t<4;sF9hgwNb-qrq2htZbO#2eSPUrGm?k{_Xg@S&ct z2mj>nVC;ZUl%1cwthaS%=hl**)}7glDIpw`FkmH|-rKsyV%KCNy)jR*US=ZzS!>rY z=Ab6HuDXH%+h8JQfGkyF3!H4-zJuvUAB-@UP@LIFOuX?S#29YuC0@UweMT?ZR~0@Y z@FQy8NRV`QEp!-bq0hwM!}lk31;^MI;&82^0?v@szXhKS_@#(>a)}RG+>RuY5A;9=7OpPQ{nj&LokgkQD2A>x%Bb=EnyH zlYT;{o0|J5m>KEb_3*Ub)^*mjb%Wit6n_)6qBl0GCXQx5dx}Jhixa*7ghbYz%WGw+vA)^+e78)lN!PvHDicCQF4vDP2V(R|oA-tTL%?1=`gziSaAjwPd@=#bSa5 zf1$p2wBOik0Ju((Mb6E$fj7!h7U-*m4m)REFAVqIRK0%s&f;`Egk-jBUcGH~V&m?b zn;G>cEcC*W-o@qXr*AC=G4Og>&*GWuv)>TS%kJlV)FFPbL;Gf}bnWg#`K7wTB? z%*`{`Gml5-?{#5`e4oe{P{rzhB()<472P7-EJ5pF`5x%)7KEPeO1@oA*QX~lK(-@x zS}lgPo_JALt)A}L*qZu>%=1Jv7|8-gZX3#-)0w4xJR^c{*{`Mt0p;Lf1+fcMn>M920fIUwv$!Tt?M`fSPnBNbU^`P{#MW_lRa{eUrz-|uPz#rDC9^mA&mL`(9 zhE8STJq9g7@3R+yWYYmBjRfOO2Qo7LAl`!pb@%waEyMq@``RB0P+jBt+n?XxH{&<3 zJt}OU;|iQajyge#i^kcgA-p!#)IR{n*VG?$aYZ2F*Vrqd&7{&nxkX*v927dDLQm1f zic4(KcZi$A)y3xqUCd$i{(&Q9$=3ctS*Q=FPiucV+$;Yn{q%Q}XJiFkt}xR6k^GeP zTS?-@)9JJR|8}3PLY$soBeX?0NuT|@rHN$jE%X_CjQ(RB#qXy%H%fYIOnstbZ79CP zEf?*7gdZLoVtW!>Yzpg^+U*Q7QS<}263Estop-Wf;8xS^v=_w*vJO%GeyBcVHjQ{Y za}6_+T7e-_uVLvd&Hh8?90IwXo%%RVDIh;|fN?gZS02af6zDM|(I3r|7t03%`Mx7M zj;TZ;r`lQh2BE>CCD9eta|D=x7`-~UUE-%a=D2dy<;Bd=ohM@1-X-Mu?L(>=s0x?_aW z>G^e7iUV`+VXfN{y8CSreP?l5g>h!Q_>Ph*kK>OElxNb0$Ma zt7s$7U&};e{8eXU7wFS6GAtaUa#6a;n|QQ+icDfff1vhVkW3H8=O9dS7c19FusFLNI`dYcZ~W?5!5V&SHxy0u$npQ;!! zVh6KW)1Rc)c3xq7B;%N7|H7-xuWiEQmo(ee>hfUroVT#f=7(HBb^UzxuTj^NvFwjn zrij0fQMb9>N|692P^HB=CUeq)f1)uhopV&Zp0;oKvZWuQ6#VYv3Re75Z<;IkxHwe+ z{@MUWve)Ee-Kd^mzaMPmFG8_v8~G(AiPt}aLE@@eJsuY8{6^Fux%R0XH{E15dAbn4Wy zsr;VeFHCrOA#TcxT>V-#r7`rS>5ZWo<&B~H`K{#r{F27dX}sUa?`^XhxkIb8v~*gT zY=^@o<vNojz2g&fb}K+b}fo z-u}tum^}9iAY6Gbi~>#uDecCUES-^F<`XxIBCFr3nI+So$}(=Kcm>HSTs0|&%UIDX z@YG!TFv8dawhZD*C6ajM#!v14G$U1sypn-&#IgsQWSc_IY}*3S@*HQkUY_#n4#A_3Y(TVy0 zcm9sV)-XmsB_&<$H5ch8{(^o=+9O>*2XJTm_B%iJ(fR$`@QQog!T7sY_s3toZYX}q z>Z9>r40x3URTDHs&=i6WWWRRj$6SpY-y+|(bmN=uC#N5Oe5?QMELXv9Ht^Pr=Hbc} z7os>JNqzW-k)LCxD(j9^)pJpvlhsdg1T5Q_eV$%F{eJn&uX~VN!xhRtKa{zS^c_V4lZr`JTaz-BI14y$BIMfaHou@(#8RP|F-DcOq9PFj!PKB77^vOXgH z4?t_NXmj+5A)OO^T&%?Q+3@~oKXFRROWAN&mK-Q9aZh&XHfhPi{U*)z?wRu>fp zCa5mLY!C#_-7tET!lco5Em#g+35sT3D%r;kqtw(6fen$|(GZ7Y=UF&pDc?m(7H}3c zI40QI8xkEgumpIFsgKo|E3PV~XsSW0Fb6nCDRziwr@9UL%s^%7h>XdputmgcS)hkH z5VZOupH{2)sMW1|U`S5Z>S2HgVOp2WI84nki=Eg3iXNuup!HFnBbY+DVPmJ;?@{gB zud+d79p&=0)zXov)>;xjYW*WW$j-&y_1Sr@OKX5W2Z#q~UC6f8o$JPhd9}sT`tDPbFIBG%LK#YTF)*l@x;7MolZ9|^Rz8D0ylQlP& zi>z6S?VvvMt81i|PSTA2pPkYFAlUFNchC;PgmOq-r(&%auMw(FanjRS&N=m?*046S z1lB59I3QVcI505l%3p8*u}4m&9;TUdxwN6FvLf*cuj#%K>fjdHbXw1I2Nr5Xc6S{}xmyNc%|*iMCaLreT(P782mVDXEY&7a#u8N-Rq&#|2k#joJIyuG^U zq%XRyY8~~3kI_vMyKxc&Z=iG8lwEZA)*YPi4>rphpn~~rCV^+!th&I#)M2qn&K|@! zj?V2iTo-9p-6Y^P`bg@gy2=?l`Hn(C7uSW49o||Q`p~h%se_6=c2`|hnR_~1_QFSr zDw;m|^I$m*7fi^tI;+4!Z~EuKzCh0v&V#i{v3;@w{1*htI1kq1edZ2_3%pa9b(F-lgrlTJ?817P)GJi&IG9rToQ2dywk~#dJx6Zh#?N$~p zZ05hbRzN0OXB>YdME1MO>-`+=)WSUmgFMjFL(y!kOUi1PHRLHyA+aqKb@;n z9y;le<*or8*1+nWK(nmisBqz2NZ~LDIem+bz%}UcO8?H!&nj=9y)5+?GNkGJzonhO zcDy1Ni#I^O9@_QN!EN5ZYP9|KrGqaWJoKw=_Tz1Paf^i{ef!6;1*;Ta{ue^^kJGbb3 zVrW$Wd-|?z)A7cAXxO+#w;pXrFgdKNlki`}Eo~T}Ow%^Nf?v909HlraW8Li(^Ej=V zjz!SwHn%MG?z3$~l-q}w!49q}jh7wzbfj?Ax=q_d{fBZxhY#&KG<<0EkoS{;LvOxx zXd8@m7}i3Y|J|#WC2y{qa_HW=Dck-ggfV=4%4Rkmp>0Fu_c2F&#-}lSQ7AOJ3Lhe) ztKwxZmBKEE6C=~%Nhek%7uQYUH8s8B@trdU4$t5{oQ&4Jctu@e`*c7usv5)FL|KYp zlvu#FWnByEtln4D-L?&9Jax+!@_OzvRiEF7hGsslgkMvKsACsikzLGxI)W$ zi|Ik?vbB)cW-nuJTn;W=!7F+@O-Bk+<^-!kQ2RptFQxvqVl9?>$#T_6^>3j5I-i6M z)KKE^VLPBS1jB9jdoWS=D$nG0UFzD^PG<$}I^^mDmlgB|dJEchRjTz;+EqutsN|FF ze~=Y?!E`8Un_4=vxNWgZo4paIh)K}hFVl~}KTlI6f3h40N2JyOs!R;aNbn3e z`mcmSFwF91nRiPJ2jp((fq=^T#s6BzqsVza7?bXU^AaJd!O zb>zIzTNAEVG*D74wZV9;^wR_cPVf&;z`iFk|FobshT)D=RYa3NBW3R6vqlH4LAFQD

eMIeg~2;!d2%-20RUI`W7_W5IzO~8K}~r$i7!51AVm!=p=|Q=OF^E z3~?MD0?Hn2!q^fkxROg6p^y~ZdGyzvdyu-xs{86fh$asq=M_SjUkbsh+vO@ix9U!X z?=V*$v-mEFpT&1+{9+9jTG09PUw1yQ%`n4cj)jhPT1uRdkEs2c}4{Mlpyx{APxvbj}Kz6 zfv}r_4gezi@X7KkF&Bkxc+{$}r??6`E&oncVUP0v(W&$I`}wyQm)~#sQAwk)()ywE zEjXXaW$rL+L)h_BQ?dGkdh?g2iq(sF%O6pudn)Nk6vuYjkAeD9X#s@|72Q%crMaa@ zCAEZ?rb?Q2DSvWqH09CH0FI`-do?y6jtZ2B!bVLZub*Q$cb5SMje z5rqA?O?f$pF^_Trh>&Vu#%|LXbF&_C)2M{JohG#yQ{-3{ZzD%hd{8Nkg;CAW*eKHn zqfGod1o#l(`1IwK-nquQu#RwU=uMOAGjFt%a0eHQuGWszIfiu1P~(!lN-|wlh!fzo z{iooMYMH*x-aabF%<;vj@!Od-W`)K3&CVeV4IeEpiJ0Y3r)w4?(@0x** zjn;mg`8Roc;>(Y$zKH&)FKVS(*oVTacO9`>#wy|XX6#*-Y<-KNaD0;~zl&R4*@w2z zL_NZMvMp-%6E1WjA8HuJA&g(wahkSJUt};$&r3DU!pc(R9#(kQ>uP=bnM|>PBQw#& zVjsnBc&cso3XVDr-&HTgA_XGR5a;$L6QBC@${$aeH>}r+kR==Yrxe%}9XK4tatu3b zt_WSdo-mC7@HYvvk)IJ8K1}ryQbB%3%pbCYYLmO2rbOj7mvtfnF9r!=trP#Ny^H3S zB27*ugM(al0O~bs*+s8%ygJ5&!MWB9x_egVbDebdEbXuS6JURd(%DGpSeEO)^F6E6 zuP!)`UVr2;6f|Z;Y3Wy(x?Hj}Kh%QtT=KYYzSLo(>Ui;%&1d3?e({Kg-SG(w{}Dkr z)B(>O!C!90v$Beg9@~H6ZX4XWL!TDx@#C`w<#T^0`SWvc`iobtXU%)@j70f`kTDi!q45S5*BD61qVRv}-1I{HwKG>q}$ zRBn6$y4gSP2)#v|3(emGLmZR56jUPcT7Qf)0@vP&FI%~V*~%xn3+ zzG<}MG}ILL?2isU(ho-Tmp!myfpRfzIVWi~IAf3#fjaxYn$J(QYhfxDtz0~XqpTY*_LcV^YcB5}EogPSf;dK(XwiG@#n z=NDX!Tkfr6(e%m8hMUxXqzx2SwBOucy}nS=^Ks)tm?MZp9{6L;SaDw5^KLX?_wrA- zwf&`p;A}V3(QYj@E#AYIC>^H~$7p-9dWgj{u~6Ugcs9-Z?EMBND43yvN}r?8n(UOU z6Vh5YTD&Q)Jb&0&Tw;7-{JqOR7Zj=!ca^R*6-6z^64$v>rnyoCNIifzslgAbTsAKF zzQn$CEc+#@U9ILX^=4dcaf9W0)gO=s?P0L|agfH4FJAE7{3_t{rjH<13zMj=pZrpH z-^#oiEFYoK3fZs#r^9wJJw|8M3Y9~_hy@$RGXlpWQ+spkE#Z_}_5g*VS7__xw=M3_ zY<@`7(sInX*vGQD3UToOwVG zMOvPKe#~(=Kx#awO$T(q{E)D8${jF^LZvK6F@3@jPc#@e7gTibvb4SyFCUIURnWor z(Jwj(gQ3PF8~z`zQ!`P|AE2f6ZE5BtE6ta04P}rE2S$h~D$N*0?@m962$F5Hu8y0N zWD%^y!UNVH(7onTmD{c$IF%Vj!o-P?k&9Gf1*d(QSZysc=I!+Y)LB6Rng6SX{9dKF zQmuQeSSFNz$c=V>)!L{-`0+pZy}?;ynG^nrxWpT^xJZeOnY|iw1d9*9fW+(5xHnjh z4AR1QnBG|)5pr2r98fb=?Oim%y!TlEf3BTR%~4egyz&?hrpY$aM{@RM7Yd_Mo-xxm z*Zt~n-Iu9jhfF8fhARIwcU7{)-wWjx(JCu3e!Ete{FURQhWAm9Cgw2@6FxeBzZuXU zdyPh1FQ_#?|d2Ao*P?b(q0g%j1AAcju9gjc1(a)pbU zWG|Sge$t|xWXO*)o?Dh7|4t$Y1#_KahGV+pj7jj!tl`f|n2L=U$1pyBKVB%9Xtk1n z%I`94L=ec-4g$HpwrPBB)5yNp-8{>il|Y4o#pS;uko0>moImVk2^kHfRp0vr*xGL2c;F= zPZ$n7!$A?^3mMPURhPEUxydNI}oH`hU2Y?HN3eD>lxJl4O}_A~(Qn!ty7 zD0ElyBK;6ko4PfUx-Xh|Ya)JCeY~zNerfvJ2U5}RCU2^X;3+q;^1FEOI<3vbW{bZY z@fyfBar1X0*==`yrCczmJ(bxuzyB`o1?8{nb72+K&cWJfYH9TPmPmWK(_wz7<=-2` z-%a-);PsOqh$L?aC+~@V!%rt+@QI9$a;eY+}xUE}t(gG6#Xkp0+~Q zk-~n|S3TEE2eixQ$4{8dbU=Od`wFV)me>^)wn~?{c03jS;mt(YRA%^vEnhdF%QA}!VQLTF;WO~1a;~1G3R#Gx8=!#N!x!cAm4t#JHB!~{5!?$fIYyqHllU1`kS#Q1^-t_afpw$UoVDxY3l`h8~l z^0Kx#u$ag#-us#q8EsqeZGiVR18u4I!^H+%voxJnP>Z+U1+{sP6_Py@B*Sm$_tmzR z0KnsZ>dM-ZP+OHCcMD9jS6>s%8k^`6!00So2U1lOVu;!%U5_jb~ca=!C3Cf%rcDjaR)P@k~aw=OA z(yrYRgpo4Yc22u8~DjV>-tm)CO z;|08IE0@iP?}9>{7YcQLu6#*i=WxUKcn-~lwx9=R` z;)ci|!u3ea-V;lV#5+Bb9n-*~jQZGK%7(PB8V?~G^v2Crx?E4eDhZ{E=X16i}{FaQra0G1{Tzi07o#DLP zVb#&=53p)MuUUTO7?`Fa869+C(o3s@0OCUkcU`y@K^=%la!(X`ag$rBZ$=%rOtZ^6 z5TK3%XE2Ny61IxWg=wC2{ZLZom zs-7OtJ`Osee5P!ZB#YT6>Gn#z^N-axc`MPsjLnrk(SWrx-M$7G3<)g2H}cJH3$BZE z``2sf&H1~QrIt)*xm*P^m(lH=jy%ihZR7NdLY*SK!y0BSQ%qrrK?qBx#)|pH9TC5<1jJLDvTXP-f34pi5GKcg1;^0gA_dbiU9mk zP>G}Du(o1IwY6k(EpKxn8$G(m?6|esT_3qn z!(TQArZq&u$HcR{wL!<2B)*>G51~ZHiO$$dnq|or2FOT2f8f8h<=4NkpwiP^DCnJk zu9lS=s!13;_dZ93C*#oQPmrHAr6~X5bN;*eCzrqBxcq;1%JS)7Sp>L|Wuq;(BQy_k zzIzF20fOUmLU|DD8BqMIj z`d)vuS2!xi)$A2Mpc3$&O^b!i&K;$7?p z&Ni66I%-P05xCbAi1N@`l+JcqdD)O2`?2VjvvZB4N-aKF;->N|HkGsg?1-c2AHL+Z zEyP~66{f#2aw5XP_bnezu@i@ia{13dYG2uo`nMj4)Q?v@@(_dL*dUt-j+YN)N_B(i z>yi5}`}JQ<)b;gz5G%n!?Y%>ZO!)pNc7$a+xu9YFADb(^$B15oF=35^vX|!xSz{G?ayq?dKeEJ1D7P<3dySA-SYm1*<%l#1QI0+k| zB1oH#U!6;@ygujSzpjA)nQ#93uX2=I+d?T^Q300sHaCWV74*mJu0Q6gKQ1MT6iU42 zI-YOk)5)jz#WXL$~8sls6DOo`|4L^ ziC5L56_4D;I$e|l*as+oh|f_zBYejAa!Dt@c@t>m|o z-zdLPek1%w_zm+Lp4=}EKl6Zh9iJt9ZWrvJUv4a;^+o+)@3gk44`>@{T-c<3%Tp_p z4{#3bYacS|>iBQeEu31EWlqN&ZHo$rGQ6uaUA9+d&(P9X6s{xJIuLgJX$)Wfpa}8Y zoPy>)<))lmofMQn5&8a!5G=32FtYoPwPRAJ-J^SC1?U)?_5gY#uAjti#a0Y|DMQ+# zP%SN5NAe3?B=q1@Zhayqzehv4s+|uD<2aAhYP`2;RNmimwlze=;je!rsBg;Mzvra% zro|A1p8*h*H*aIXl=K#~Yxz)p5A{aXx`$a>N6_YI^&bT3A=j zUTJ1nD^5|)DN>m z^X8y3aNf*A%PSLTUK5|kpZNuF@u>)g0Q2|5AOJYoy4Qk?eH!AN0qoQe0(|e5#{~+O zkobd>MYP~2F>*z|{gYdMTidPQww5o02o_rI-!EF+@{a~77fecNIHD4R4X)*`!Q!@u z!~`(&Kt(jk>AAeygP~?G(wA>J8912p3RGwaCttKb!JRg=oP4D_(3`XQv6eR-uprn& z;i!a`w+?Zp%)4Ww-*T9~<62%Me`4rH!*U20EyGfvQ9LD=!gF;=N2EHAHAmzOd4!Er zRCG%bWpNs{)$Me*XwXOcN|ZV=V3w=ZX34cb+O^dzxmt7gOS$y}$Y^$^Gd;G2!5NI5 zLxXPNb2XpEd_Kiz(&YlWN`T7*%8FJepMKFlOh|T>NZ{eRX*^_V42ny|Ls&V-#)Sy& zjZvB_yxO{H%=uD~JKz%RYYO*Y=9W&dYHSY&5=mb-sDf=i%(4DqXX;u1NKIb#;Qg?r z>Ypoav;L{#M;lQU+%$?946`USfTLCughbSEBzq$P>JSOssM?6G$sJX1N(Z>7A8{3M;b$;{65d;Wj^Qd9QlmPoSKfxRlwB4n!)^Y4HEK`kT zQVa&L6V-a~rzzBFp<+WigQe41dLgcu`2eo~SHXFfKe$fl@lV&omo!7XjS z${eELzUFbpXp%EgdDk^=ftF(z2guy0xonuyNGv8U25S)C^UWM5rU`gaJEw>~3$YL@ z=^W6q#`m&-3yIaQ@R zBXa~T5snE4U+}8FYnqBgmtp1vCnJdkdnel40xOC}@g|^1DsVecBTgX4xqL2cgd1M| z+llJ!>L$7`+PwTX{u?3)dK%LT#XEOlPyl6IaSu2v$7X3d4k5UrOP*EI?q8vPV~7m7~U=9 z|5q(>gcdT{Sq?09mw10jKr|y!+5wI z>)ch_qfr(`^3-4+q_{O;EZW&4t}EJgxD&imBF>M;I(Jw0XjE(Vtu|s|sA{irOdIz% zeOJ@p9Mp6Oaq`Sf0Sy$8Wfzz$Yj$6LHR zoWS3zf%|=`F^)=>sKnv(QdM?)H1+OTEYB%6q$iE%73aMzLUr~)=f5=4AJV1>@DrVf)Pl|D#hE7?`7gUV38Od<6 zX>(V{=1>?bmOu0#;+%TlESn42wb(=a<^&J%`Ff?a`21|E9)T0TA^Uzkmh*VA9a_6iDI*WTmi&#a`~=_T)*;MEjWmsd?t_15%UuTk<=`&JiVT z5+&R>mM%`_AWv^0&jaKknJ5%jwd`)tRV^%FV`c47zn#$tqh9%Cr|bQcM!=>kTo<_@ z{5Q%xQlQLCiJqJG>ZZ<}i6cwoJN-E@AUE3=b@HHVBA({gkc3rL#p=K3jXR()<`?{S zW15n&?TL=<6YUptEfk?hkc3;Fuu}FeaK~IAOm?O_yJAOdFC3(l#|GffA20w=pg*9@ zy@~O&;6|FZyU3p*iKO<4@d@dSfOfzgAQ72cVJsonKY1UUT!+~P_iqa+->1eThL=!A zy){E8R<9s1|Pd0|C`JBt=5b_>4)}s8rkX@A8 znYx`Atfq;L?#t|Zao;QZ4$j!sK6dQasZqSK%^}6&x~gM8FWYzjta{Qt7`cCHJ!u~( z`Q!QfQ#VX2#DPE`P{yZL$ zM@{F1jDHqnCM)-@M8{LpD^}kEJtr~8JLEGze=6gtWUMpM(K(~yOIIsFQzr_TSMG1r z6$;xEZ(P0dY^Kfj#Q62AZ~^#~76L$^t~3?Tl-DtQ>i4!IwtmW%gFAYgw)do0 z!Zvnp(f8c=Iqu=g_=WCa9^$A=NG?Qa;d@G}heKbMo2Lt}o!LrWr>odNZl6iALV;H0 zb#=RX<+*qU-=28=`c-(@ah1%c77V{-RZOVp$w}yccwn2^8jYW>GTeS%uqS&2+@fz`Pzbk*z!>>BS_ki+X`?6~L6Qm|*X8W5>93N9&t48K+iu6Sn!T;}*aDF> zr+K;tXS`a%x;Qr-HtzOaWa`hNF=^HS#CPkr%ct}pI(eervDK{LJXU*W=Hl~x98_!fXfotGhZ@H&?-ZK$upy@PL3u^q+JRho6YU;<^;3&%1)UG`qS4wLE_MC_1r4-?EPR zHmIAlPGs-GMSCdz$C|7%L|SJQ^d^#bZqfJL_}T8^N^-yBzZ?^-BCQ3wo}VIrIZgwe z8kL>nlN_^LNH=IdSRK|Rruk%#VR6Ndw@O4qIoISb_sJegH?4=GTZ5_M&Sr118Iz$o zcr=9BOw$NAx63AJq^xxklCj1{aENa^9kw3qmPY0_)sPI=K0%-M(+C{46S66b zvmbg{_bY|6^PG>u5v;J*w|Kv}jOK5TV&$_QbE3_u*tbm@@Yh&35%#x)ZOWd*TEE#= z{7p12w#hhGrwu`_Cp5NSHYrK#rob#}6itKyd>Vgh?60%8*xvmjl5d(=B_$1ecAvj> zAaG)Yue4n~y?;4df_oZ6_wY&F+Zg)iPdA3FKF9#Lqv9lgCAz!fZT?D1zD#Yq z`K;&jKL9gHV`K86D(%>`SuUvQ4O@AI+)?2cr>`GzL8K*Rp-2yqHBUOUpoQFL1&tN%qe%N2~?}Rn+8*^g$Qj-@orMUbv+B((S0wLz-RQOP$$v}z_QVj2O-M$R4 z>k7b5tdDShiu#eouI32Joui2A&fAUhr@Y=lcK7x4~EKWKi@MM`zWgXLE<$9ou*ZMq+rCn=a0t zAQFu5q8anaLLnz$)SofZ*yui+$j5Z>!o)Lqmv_E8-~{;j9xHnr_? z`Fib&DHVUU^@ZVWslD_2I}e}t!V%7#&)@IP>xke&It%{gKi)R%i0oDG5+;j@EOt;b z9idSZa%_y29jy&6;Gkr(IYD0|Tsldtxsx|%aApaylL&1Pa5j&BiyzCaBPGyaY3-y=d$=NGIH`l>Pl=tM0~aK%{Jqr9EX_nf~*AIHBvu-9|=;H znmrNOBrv-P%4T7*!}39u_BKV#eo*#VvOU5fzT67Zs=8P04au?IqAreVb4HL#<&Cfy zFNuZ2QbV+#9Xy=oNsX{Up#a^eUwU{Y!z)-I@V7w^8=v5-?b?lt zLtg#);=Q0+CP1#}mKwfo9@!?UqpTrFP%Bo?Cd|R&0pXvb@7c8=X*VCqD@FAKgwQEx zY*?+R{sk$ELi<}tvfCxOG_mj?PoemEgXOviNf0+EWNx{iccbn=%2v5(S9yi#FO5!& zMfyFd>UD%H#Zuu~a+>gQgJh3rr6hZ#^SB!bi}z@1rV{R0^d23kvP>LFa57Aw%v?`o z3s8CjDEYCS^nyCjkX^w<^D{Pd4 z;ai^h4_dmsbb}(Bz4l*7s`~1?!oB|FIjsj7dDAL87A% zRrND9=|H>=K2+7)gsfOSNOvX{+BB_L9p^o69!r$wxn*kJh9UH%IwcncyhmcIuPZenr;h{;xp`u)rborxevqASL;y z5eh8v@Bh2PBI88nEB=TI7l2Lyu=t0S*($zLk*?wo<)c5Jj}}2Gs(8rTC`9Ee{$GPu zxdK@$cUTeWjjB$OZr;b`xL=$ zXS(O=%Qvb1elc?ZRR!UwpV=?Sekj&R1;$Q*Rvw!{d?@0)E>~(n?XwB8P z)^xmsdk^Nqpf=4x*m2LUsb$I|J0Bz*HFHU(3;U*)#m39Fn$^Xe@^*|&aP?cJZIB#$ zh5NRv4zW==<5msFt%k@9#_MCFx+riwk(nxx?^Ioml(E^v%a$r{ZNZ8Y$KZlvZP8W~ zmv=H@C~K|7LKaS@q#e_V@r~+@R8t)bCl?!(?X%9fqHOD@`i1;d(>$$~!ZyVut3@j^ z8x4Wu8#N^UtDLG#s#*)>r}hir1_hLD-Kd|$LVbriE=*a+bq$1WzqmYU&v?010%Sq< zkiERir6s}2a}CCoN^D?Itt%~VmF&UlxtWkc@B946eRQLyJ62No{u{N!8g^K1tpxj$ zJ0YlAJN3Z^q)(jTiFQjtk~8__wLHw$s7F(hJ53J=VRKH%IX>b&+5LI9#O zyfd#(@dUxfAtLdK0o{tmjSw$>+vqk+@MjqN$=Di1WR)`8T62cXoY$O#C=b2yUVPtk z6M3q2Z^HcKo2`5_wFF&Se@f?cw`bXG?bU4^d-LEqdmFL6GIPQf{B-QGX7B5Np%UjH zq*u3&rDiYnmi?`QFbg#%osD?nx=4IZaNPw5-J>lYG84y$nSCgJsW^s?ImQWvd%Qukrf^AHAQ;do`aZA8o6cfAjnE+@Rkdm(ucP?=>U+aC*q|BK0#vU;9O= zEm1EhTnggZ-rqBDyvx8g@{6Yl_VFu)jIaFz)#Vil$t$4__w>(8^<2kgEf|1TbYDoI zfB&B{4B3nx>gpJhdn&v@#fEltuE!%HNBIkei2?6`6+(CgcVgx4**}jJJpJg_CBW6R z0~D@05yn9r#!=-+2j4^(I*La5hF-)BmG~stIz-yo5WJJ!NTR@&lIvTC9z-@hL`U?l zk>k4QU!4bFLVD~q`&{-fGguNJkd0tW2~GyfALW}WGoAFl)SKfFxAAfG`GuMX{0TLm zvO?R6dv+n!6c@ED_2{An6tXNCZS4d?_66^UfB>g$fX!^e05RP$x;^YLna8tyj|=BSGJwYPqx$=7so@ujJGN{v91}W;J>spV2CPPBB^DlK zS%;tV{*!E;)(wKo*pNA@#C#Ymw_U3mW61w(-aV4$o9r>Q>E|?R=5Z#FGYviMK`y42C(t$Fq*-u{_B4hz&t`66ARLC) zWh*zIrnhOEb+cGtLjF9de#mEt&rkWh!be6TlMF+O&OoUA!YoC_pwXX`n+6)#fz4@d zM^`ZE%GC)po4s5f-Q~duDgY^(>QivS!2#$Z#23?gpWbwh)RZ&sy1ks-o4cMa8rP>& z71)oHlC~`IgRq9S_a>-IslGd1!+$5!653m&5XMso5u| ztpdnHy_ffj7T3uB#m2LX?$cF@lag9^YNi0Tc;84WQ!SYsIq_k7w6WPer&WuVHd)_c z@lK|t-rX+KB)l1N)W7ynz*|K^{yJ0EG_lren^bpqX~MgFl$y^@E@5yDcT?F#xqQ8A zXQ~xFYt}PFvLA6#TEZWV88DNwywl}&er=<*E@w}d$byUU3wyL&jqB+(STlWGKccr# z27%8+=KC6h#Y5uMP5TB(6E;K^-Cyq>ZhP<=ztZM>7W-URt|RC!Dlt$SG}UU+;_kL7MaKX_P%!uG%4#(Uvokzvs8@OA3 ziIv0@!HV#d;#B5eQF$Z;kP6!kvv6@FB5Yoc*oA~!ywyPh<3{jYsXd5XEohz8rH+;! zPDZIMGTiLphT1_jS(1N0lg?U*LN<%-;8+2vqky75>|=1zaF)yDqtdn4YKamAy_`Il zNcjlIPYra>9$^P1Of{7rcP;HZBJh<4FTC%_3~~ML9xWB105}ILpWZ6KUxE*_l7fE} z;Vf;R-yzQU4||5GWh@OQ>uR>*ARBfCbS)+ zaH>@8s)Tlzgyz>_H2WVwvYg2!)AJL{`YR6p)>Ss~y}d~`U+cdCpD;Xj+6|}gh&{Py zN9;R%{+`c2@Y%%YANl+fpYQT{iqAju`Iq1Ai2dt(24hcX;m559m5Z%mPS{}{P`Wu4 zTVp!qz~9DW)Md>wbhX?7*|Y{#yHh8#*f8B{b~Kb;nZ@yR&5lK-wP?+Q$o6;JrPtTW zcDfx7pvKgJ`E)fq8q1gsWDn1?z;fprHghq8d1bs$PYuvolx>e>yg zvaf~FviZ@#KK7EfW+aGgcr}H+e|ybDi&jY46dFvnkdt&bJ?2!;aL|}_3toTw4@F zEK|Pa18<-jZC#u13-Jv9AA9cu7*%!Uk57^roZ`e8ZKBadi3&=^f336y11->uMkRG7 zl4>m~T4bMKx2#SqT7tyM*gPI%u_e3MLQ4v^?AEPrYZWa>f|LZMDHAt3elYxmpjchJ0f@1A?lJ@?#m&pr3tf2b&I%INJ#R-hur5T7|JRmWs$~l5;c);mv9GJ1#^Q*!6P1Gwy5!-`>}EJzMoJqK;97 z5hpk72)^h_S?J=#ivTq!D;2Rm-wwc1neJ%jlS{tDqS%X0b;H2nVRzuzE4}h{N&~x2 z965yRCPX;7vyI!wq*&-`P;bTaJvc)jbtAJv%ZuHplEIdu)E8OkZ2pvNB)$XABcO(x zoXfj@n?pMBkFH&KA%qkln%D(8Kt#)x7;B8dq&*zbV|G-JcB8^KW>urpzib)@uZa5D z8}AQsn|^HY_b`)VX*^+K;Ym?Ik5X024RqKMG;-%zZjTQKL3ulZlDwLUolxVM#ym7+ zoO9g-Y{qqbFIJ0AqbTLi-o3~jp2#e$+?NsNGh+iFA-aXnp~zUeSV2IY`j4Ou?iVnh zI6a$Fawc0s&^Iy0Ff*nE&Zo=&z#(SN%^AQFX9>fq7uVh*AA`M%V6K9T5KWJRpe>RN z(UmH_czB}<8Ol8)R*W!M?|9-s*f_CHl$=d@k7|1T-^3Zo*dt+|<+u=QRZ*VQ7j1AO zm*2x*Bzb?YTJnZ%5>h|y;yX8H^SG04uv@;x(ASRu@|(*C(_VzvMY| zW6P-IYxhBWsQKgB-{Kd0WS!18k#{UxLiAn9Zm3(ReH$Be@x2)BR$2~L-GOrOx?AE; zdv7b&7{c?rPiLPq```;*HgqqTXsd?A+bM(V z#lz^aerP%tB_?-qG+3L^^rDl$8XXPLNJq0<>~1;x7_+E8qN~B zG==rJ)>an^RI^O3Ja|kD z_L;$5)ULavqu3Q~+~r!j1oW5G_u_s;5CCsGcJ;u&6rWv+%edOnCx|l`D}6C3V-=%w zMwevOwnN}H!&+_UfTZj#-HL*n#J++1zI(n^UEZ&iaQA$(y0l+>if{z>a=4>l$!3z+ zzyr@+ceDfRe!G*C@g;0(dj0*+QbKT&+3r~TQk=q!3q?TvGBE43IJY0IlKgnS+wS=n z6w$`mo!Wz&vUbOI-g}*9wV0(gipERe*4K5R`*G<5c-kqBxySaRhaGges!shDn%uPbCY>zxZ=$k-Z-`&$4M?Icgl;iQCSmuS z#>=zUnhqkTWlh_pMK~k2!^Jzr&8f)g4QG{Ozq875Kvp^G2A6GV&e3d+MKAiJV$*~) zCKA+K8GmABh)1S6q^H3-96pZsd{4LhCnqN6g2l4rj?GhyX-13OC7tzb85d%2-f?nd zsSi8OF@BQOsl^yi)T)I$xxk`ikK;YYoCKMTF5zsrkmbw`8CLbnunNxGH)II*M%B7c#MRX$2Hh)I_=NK0#tFM;Oayw_S7g~hkg>2A|Jjs3IHn;7UmR8 zRXqSs*)z&6?uW!uBAH8fw$6$Fq`|{wMaF_@#v-w|WXZ$e)3PW;CNr@zMWO_Wic1wx z?;)V$N+nFK^FR*0j73K~1CbCx-R2gHg0%2@qrv2SQ0>S8=*4=NE@XJb^FO+r^FPw` zx;I>#J^Mo+0RlRP%KKn`K*(_j2qUo@Oxzn6e^OzmQxxncAs(wE$ZCtyWO?fLni%6A#Rf!CG% z0lwqG?U0g6Y=h*~4jLZ|W$K774&TQVMJ_-#Me>gOJd9>mugiD>7>p%S)vDZ2h2xmk zJSM9{cycE;%NE~h=Qc@ld(I5Dvp;T^PO#moZ^s-DD_|PJWHtvbi;qKg=^wYDRb5MX z<1HtE(EkEZQ&hF*Ub~Plqu8lOb%FL!g^=e?#;i`cz9?S*9Qt}L?!CuT4xraV?wWxR%ZE@E`_c{1`{Gu$~T}crbe)J-w(zeS98Q9Xnau z)yY#*HFa9phEtcw9wzfG#6#XJk(E14#w*lq66)Y?=sps4ws9t8M;p8KNmZA@zy)dC zGH&NPoHXhzn0^T~fNsR=L%d#FbFl%iVd}GE9y#LKF}D7PzZq7X_O43*%86I$7I~~c zRtR&Ti#IIMvZtF;`<+0Ht8x5G(920OInYq_U&R-sYa6=&lEL-LS^>ezXHShq^BA4h zDn0!B5o8+XJ}*V1f}YN$`_fBRl_sD=8_F!Xb+JyBNYi((XAc_HcQE>6KLex1JQ(Zr zxhJc8;BP={kiq2@z@DV?mD|@?;h$#1w6AddwDApqjD$471#Y$S=b~%#v(Q8qBaw9Z z+Mc%aYM5*gbuN9#PEY0U#1S&KK_IMB2J2CVE|V;iP+%Ua4Hoea5J{AtSO@+Uyo!yJ zqL-roAe~Z#JF#w%2WJf6+6A1qzLf-f*(kH~0a%HGgMM%%ez_eHmO#URHTxgjJU9L~ z25*nCNk)W@1XoXBX;tB79^+@7A%;vq0KI^l%jVO7!9Jm2M%?lS z`$Y$7Z6;n8=lB5G(!SyBx!g=3@151lAt-?0EHKux^bWe@FaYm0 z{sXXVCScgV;-pO2OwdLl_3NMU9c$OQ4a60xqfsT7<*ex?03xR*!j)g&Pt%ZYq#dLn z>;6g0QN(-CmO*$wnvO!#;Sx<8H2(A!!Ei~toUu=P!M6UKgOk{&qDx0bMX(Bt$6&HQ z7RmqKJ2J|F7P&}50ro%R!>O~=A_1`iVEp=@Df2?#V<=m3xj_C!>DfE%3FgWfh+j@-|7NCHGa8m&!t=75gA@w`sGRT<2!utNWyOj(Nsek;b z%{}@_Q5p_p=%YY?8F`!$XTarAyB%Bq42uIPYJNKQP#7#yqhhhipibLykSGZ{e$SM8AC;XK ziZL}2OOl*83@^qm#;>8jk$f;*n-cW#oH(yD$xlUV{~H?L`>!~wV|+rMeezWDOv|%h zo&)mC$a7GhE(qk%c(**g^5kmmq45EEmdUe1o@3-$DbI28oFLEh<$19@C&_cNJg3TY zx;(4pStHL`@(jtdU1+#Y-si}3t~}?-(~#%w@?0cOIge!gVtHR8&t>v#mS>ARSIBdv zJXgtcwLI6zbDcal$aAASACc!{@_byLo8-A!p6&A7F3&D`?vm$jdG3>Ew>*30nUH6n zJQbc!{Yd|X*)F{-UuGgOWyJQa@9n&l`yQb;;D6A8SY16QcbLLOa$Bk1cEw``2cidY zOE&LcKzgoZ!p4n$*D{*Ec$q$(Q&X4{li})sJrg-@nFrnh0BSSykMDvoXBJ$@;fPuZ zttvf)G|@Utmx zp#L-iLM+UIQ*rzOiUGRp!*T$%4@u%1ox*frp;N@Ub4Ag2FKyuBTFpM}e#hHPn%PH9 z>~Ruf`1~uG#lcy*bIsUenD0y-uU-ci^+!C`j%i8heTT}~{LC0SEBJKz9P-ELi7|X6 zn?v+l;HA@K&z1Y|KvO6le;i1|>WSkBgZF#0r03HW!O0MOsZ-v4T03S+aO$W;38{J7 zoBt#OjmayM;#L|3QFhpw=|6xV5u^Ggv z$LFyp8Ur~pXO5w*hSdS#F=nVD@4Yg4D=Hu!Ta7ZIXrP)@QU8Fk>` zRKqyu+@X^&tYlviC-;z!I*fIB7jR;b+WH7mYk8`(V*iW}agD*XzL9_fEJ@gE{b7Er zALPYi=5{Rg+L!YR6Wy|lMQ$jKZs7zutRd`aVgHsD@6s( ztX!o;w{U)6%G7m)G7cOb-IYMIrG2 zVI8eGBcMGTv>(_~RTRQOYcb>T-=_^FC=$%y&B3x2(Js+L7x`n4fhAhS6j84OpRI%d zTSXWQ0N%tao*hoL+MNIz2v5JWF><6N8)q(pX@Dh^(tEHG&6YS}UXXVM;)s)$sPq5} z=SS*f>`?53dK?T+9F1Cb^&V+CzV=UIrLinY%CnfZ>mDLG9jy@s#I|JIZpUKSOHYs= z8YfDK!F%o=bANLS3tfwo_m^|mGaRy<1HzG7McP%ipqR@^U@5}{d%XyY;(%T+tW)0- zQK-}=c@cUR{}Z(XG|jljzQ4Euy2!o{T+FQh77I-#dInRY#j%$BHX2=)!qiMnBZ$n= z7>H&9m`!mm1_7B5a_trmUnZwS#b8K@UM;PyLT<=r$hJUMQAgLy_7ru_;9g%8EqDw zW^x6~!)u(Da~ek*4`lhU3*~1>>%xjCdI+?{MaF{Oj)W6%{5G1_81B*xhxn%8`^Qja z6yj5`;P&=a)o1XHVWkK+v1GCG$U56h&lW-G2NsMlvBw94F^&StxjqWXLaJ55uy~NeXOFM%BH$)eXVWCSe(#qWffwP&>(~}R}a}v0t zQZPgN!)QDIQ9-Qnou%>NbY!@G$J?=J#f{RjoUZpDZ2^`4zG08F72Go%JZHJ5=MO+wk=#o$ zcBy^DDQBGZv6p^ggj@SlSg8TkIlTo#@8Elv?g+l`;?2acyEF-uu9KYdblxE4LAt!0 zbb)kzVT(0M_20h|PgGQg()K#AgXOv$Ew%3*S*gh|E_okP!qcZ0_Ck%}jBPw&4G&w) z`zxWO65=o8xsX+VNHax7n`mXgqQ$cWlbjqMrq0)LZYxnyQ0zu>4RnAL1{}C^RDAe? zQr(`8pubUtY)Jpj0&_UdjS_iYAKhI1&A$|eaG@vQIS0oeTOMk9A;K6nr$;bp68Wqh z3WOZ&R_%e?t)59{VhxPmS5dVMx5~w*1`7CvT6udH#&4r=7NQ*@4R94)=`v6T?0yCn9@KYafG?#@bVp zHi`1zFX_)^`mvW!?vA_}x<=zH(YpIkoqIJuOv*y%FVaCPI8S3^y3Pi2<{RZW!!q(-x?7K>vO{H{Mv2vB8G$|5H=n0Jh$9@=dFuf z61L9{J1%n5onOBB_FGQ?zKor=Xo1VcZ(ejx{6)99TqooEai+m#VLfx2e5og`@|6R9 zyg+(m2v;YC)u7xZ=S!Z9OR22#xnbq%I9QC^=DzkSZ+{A@UJbwL#xISyQ0Xs>zkg}u z$o*h7VEi>-xHdX%Be?Er@FdU1HGa`)nM@paY&G+aE&nr~c2A!RcSZe;!55>wsoE8f zXa0bTC{@=Byqn6GI@PE=^gEaF7(uNB)v15cpm>a*xTbrqTnIjT_`P zY?o+8KLK~?^7METZ}+*PY46Kp#u>W_xIqBEHsubYG8XAHogRMj-~WR4Cikh$g>XYp zbh=~9-uo9`QOR2+7w+^mbyR-sHJ4edaP!|oPvLT1*E@%-pz?3^h0M|f_=|Ad(K!Ot z=YWbwfRqLe3!fDlWtL9=v^o+xfmJ)O;rIkrLl`c6D_;h!*Xc>T*yn=$YgEIdgJ@hw zN{WYv6Ai9uKVngE%k#)^Nzji><$kv`I0q&yZ1;JDTfx56Nw`i^+HKmZ?~88pne}~E zFkR)LfcxVOa@$}6L`n-!NX$gEF;U`=&j!q@Pgub|GP$aD5O>4%IswSHs&)V&&so95 zFuvQdGl2c%2rx<558#7VeL6a|m9^}Oc#eA zOfJ9!Lal2BiWPi7^m<)x>&YqP6Lb&vBybm_c~)Y1IKsh-YYf~Y!U-7oNFd8jzQCGWg* zTfb}}sMsG*GG37KDE(Ex=+J)LQH}np3xQFISj1a_`!OUL45^`d+JCshwJ-HitF}KZ z7S*}gK=f`^!G!;T`;pj+GZ(WKom`(;pU7FhxtmYXK^9M`%`~0|BN)PF`C_yc%oVM@ zzlBbB!f1{#?Ds=Mscktl^%>FgOo%*TJ)<2X2~<1SYBtAvk$b8qiR++;l7E2ojRqy4TYMTll3<(oRR*o}h9sdqx zs6Ggov6`i7Ot&D=X|l{ooP?+HH;HFT#c6(U; zW1Y00T$^^T5=QH)3i=wS=fuL1Qe1&u(s)k1ep6jMxE)S`!G$}=pb=a_=z?7JPZZQE>wB2n6RqE0<68g}@ZF@3iFm07ie-1hYqaPTH zuOsG){lOJ4H4OCJ(2YS*R3S;r{$R^X4gEbg>>J5Z@Up7j=Z}AbCVg;lVf(mjt>6yh z9(Qr~yc2vqH*7otth(3@V4&xQM~(>e0$A2_!(>R%oo?Y^U7r`B=?SjtK7BKWysWDk4Y)Ht4J~8_oA(Esdu~Xij??`K1QRmjI+}dm z1D-70I}QV;l5J4L7-5!ln8C-b`p0{UAwAu--QB@NxM$2b)hOAzt%kvcZ&#>qzX%rA zX3XY)bG<_Y<8jK@E#B_heci!ciC;S`{+F}y-H4y$o%YFjG%f1Wdk)HAtS{PLGH!4^ zHJ(+g%u*`4ze4SD?9qVepV@BFKMP#y#aXOwcXZkyeOnDD*-oy8k3^?czlY|FLF4N% zCbYj~?l0Kb+-;Tb#o=jbU-%7|F?Y`EMMmI0`o7ZQ``QKF7TsPJZ{=s5;R8rbkaXU7 zjA0=)LFZ|e5>MF1L!Xr3(Fs+vjmJ*2N~b|9jW(u-8p`bKj12UHy6P%XpV4XVLnuV# zG=o-999|tK$EPK=FIAx-a0}V=sft<=_co@W77eQ@64#s4xVervg90roOTH3Ekx?m|~q=5{wfec6k38}X= z2^gUlr;1a*fSFZQ&a@3*6Xj05QqqMUe&JqU8^fXRE#HY|3o(vBXh~8;wW_^t^S-FA`Ve3WCp*&L?hW2A{Fgsx#BKO=-z zps4<>WpUakDBYA*U2M(`V}-^FprY|Y69rUES+R|67uVg>rBT~oRZ2t+vvk}xegMUM zYt?haF&{>kU}a}lVM$yeuX#7I%!k<_cm*J4hae!ceaLJ+GMI0!n0XG0k(>%eA&zv_ zS~E2C*QOMty|?K0Zp=e#l=*=two11N2}5u1P2R&Ui}MQaKPfF7hD5x&c*u-xLW8y9 zd{)(ZBNte$eDyz59L-$3WUL1GpE)u5?v#5^v?Ov=VKl)=sV)r$^U>HgBcx6}_LSsG z3gYoz1clXFJ4g^utoQC{E`J#Sm)0@yI1?g0BiCui^=vAe*dPKz>ZVOZSP_r&GpxRf z`h$LgR~pvMP~<|ZoEipNfLNR?jT#^@lq={`m6E({6F*XS+f>G5%q*lc)0$0Ve^Yn^ z&BjkySHm+q_pn^1XLEU4(gk!b9|ddcj4=SJ*2_d|UDE!4RpdDS+}MoqX9;RTyM;sQ zN+Hc{#u8s={qq^NReh9m8KT?OfhWlQfTLu?I#D*dX!N}3KOGj`Z~>%F__;_#lb&cn zN3*2V=q7U(2c;^l(v4{Nx9yy;%;jq8nCp8T;~WL{TjdNF2OwW4QI-Ir9Tj0!BOLcS z{lTg6`ZTQMK}dk^qkb%u`ckJH4j6s8^ad~+s$_B^Qf3#VaLr)or3VXJyrR*ng}b{}vb0qj_zYrBsI*M{iY-lM^_ExNYr zXmD+guHAJsxVA{w?gkvq2~SiRkwF8H<~ntu)POGwWSp>i9icCGbL7&>0JC)yo;|U4 zJ`+7_83ye{h=g?pkKA+LPA%wk5&o?!W{P`1-pAyJchf!SOnVaDrJNw@_U!%{`mk0; zMD?Oy>lqWsGT!N9^<+}FuejT@kI@A$!~>mX&z#XnrK>C3v)l1!o#^fMbTdIr@F(2p zyL#pnp{$3AMLx!oJ$0&NrWR%=U5{|IyV;Xwft>7n)|AS(L%n8OcXK%I-q_yhW8=H{ z*!a@4ML;N4y0t7Q;#7;M*L)OPx3MdIyI8%7BSM~vHidVv5W&6V12Ppiv_t%Ch- zt03^n*h_Ux6Ktuqe@xYjJ$aqi89#peGd3lheXm4|Tt@UyYm5$kp5(_khRh8ZBQy)_ z&g{EC(N=_X-(hvUMi`2VdaF}Q9u*5g-8WrIUyss{)loFQ+kr}^{&Q<2t`LkE)R3l* z1EZQcxOO6J$dZV;%(_**!&Y3WvrYx`#-Ot`X@G~6OT#r(mU0k!I9}C*$yL}vmaNwh zn}ivE(2)8xREu4HqZ%mHs7Iufarn;T^#j^ism(y$s6UX*YH0oUX8H2B1U8|gVUWsnLyz5r;>4~f+MTSL+3~1g*p|GDgUE%C1*;u z0Xsef8*CtUB3qh>%a?ivpAgLZtE4fAyr|!aRKQ5+Ii3AIz<-+$-fn|W zr|kgXmHEIQ<6r|0cU^XR$8$xzm`9M#`boH|uo9@>d&Y-D}^?LUbW{4sRo z=YLmz{&zkjmA;-HSCseqeAu-%jQ-bSWRj2nPdZG3+4yl$fj3coia3}E&vKp zvkUKNGP!H;dHE8>JK;>XMMr#h7$~sb5RXfL`#GU3(>iNcEJ4 zVaeFCmEXXUG59#98+=vY)YwAurNw4em#`X&eoUu_PC06Djdl~OqW4FHdq1FrAFgQ# zKd#dQzxB=6aC%3c;puhi$xjPcLh7Amy6(n7kLDcT&cq`I+b7;x38xgsww8N&NZqT` zF{GSHO!xBCp6ImcoX%{xXCwlvl(C==s={TB7qrQTP*GBIK0-SVjw*RB3>zh<;^zxX zy{XN1(r}qs9`W?KblMuPS!&=*=WfmPt-l>#sZt%eb4D3hY6II?*piu()-RKyOV&bj zNqCZ3zV4dj5z3oKZlyoI0k}pQv7Daq$D_=LQ!_rRoEgaM%zVo?GpugXJo0bd?ceGl zXG(VKm~G6oqyvf)POcghpI$ymOc(lmYj(}3I(4R#y4}CER8n{7m{zGIe+~nd`DS%^ zRB{2#z9cM%A)7UoASR5ZcgUo!Z93QjqtY{dG?cd5^K}tDyLjaUmV_%!d5KPI#;2o|0zxoUT&pzP|w6xYlN{`kpQ zZsueyl@gw;^Qs;6KUxzg*<+R~s17?nR#eH%$=Ry#KN=2{Y+Ii|j0J%R)VP!WCSLYtt|xOT&b)TBK=+PHP8Fmp?|)LABksSKJ%hZijmV{rcc-?fmx8+YwSr zBqy&UMa<1AHk;-`Vuppybem1{Mg)4zCSydP&up4L05rB>3d)%Qv#EMSV42xe!@yD! zeA`YJ)+vaXRm7W5ynXKLMJU`6Aae;(&wi3T%=4pXofOi(z}u>s75?};(tM6IAaA@D zJcqM3?puk4Cm`UG_T|;1Ct%)ge^9{;(t+K+<%pvzy1Tl`m*r=hGz%H<#8(uzfSGU* z_l$Wk^_^_BUb1)j?52rXj${6h?NB^0<|^+hCMlQl?Uj;qPOk#ESaLL>BS2VkT4%aO zM^X@0fA6IA$#Z6K`rzRzsD#`I>6rx{kK5_Z^BhQ$~bQe%V!EDhtFjH{v2PH&VU zjy4ls`k4?6Ga>P?^e>?MLQzg;Y%$xLJohB9-u^Br?fQ9Kg@n0UtCjG&1x0NP38{W5 zS->jgXIM2{pjBKsKkL*T%Oo}Vpq^MI?|%#fjv+w8pAgzMs-!dK0zKdrn9V7!GJJ*A z)8AuWUSpqdieYu?2|H}JaEf6e_2z1cX9m|r8`lY^B)zdA%c;kH${0Ry>Is+*RylQp zS-u#imsoP^m*7n+KeKch-a9=lc=BJTXNCQy`z^D4rNHOnc|~>Tx=znLytxsxjp*XO z*aW@l+Y%ca=6D-JU~a9(k5$TS#l+<&?X)%c6^qdSsD~IZKTAlLS-Os2 z<)p2Rujty%(hU+OrQoZCZIm!lzi@AL8^4g-BMdBMK^E?uWtH=jxjly8HWmlDH514Q zVFoh8P58CS`83NP$FnoI1_j})eQ*uEvUoPGIpxkVR_z+AEKYXRsrK`<+|;fytK%C| zzg{pWUcUi7^tzC07LoEr9Haz(E6#ULZtIsV{48m_&Z=L- zS#F6r-&!$~#(h}*-Y!%tV_^!vz8}B9&e?xSkE!*V%Mi6rZMUQ9V6(aQZA4A2T;Pkh zGLh!QJ?E22Sx)#gCz787BOG?H(mP`TgplA|*&NP;=T$O_@W(&H39I@wjwLJ;eXTyE z?2LJtejjQv#&5Ce;|vq4{>JZ0n{kTFaBKNoHVYUJnhiQ^9>Z!d*^(bf)7Y#zEGA83 zvj%o#eoUIiW=&vtAWdVlrmQoFhASdfzgjA7wG~`l<)J|P3a+whS6M%2k$T+sb@kz^d zEE&65!ts{sk55QqQSVUlBs@kIJKDIqr13Hkt)p8UNqt|FlMR%Sl*0%aN;TRs>g~`T zj-`HViRyudXIZtxc||O3i7OGfEp-2kc_c^Zs8+-}>_`-c3~l(K4L&cqU>Hu*P&Ys- znqkeC+DEK4NlI%>n(s**0mXU+8gg4Zn9w-srVzkdVNvWm7#vF#7 z=Om?}UuV=X>|{HPI`y<~ky2-a-k|i%UcKP#_qv-Few4%|+Ml4yK1PpT0RJU%Am9G9 zhgzNDFQeAP8{|yCQM&XSn>ha&u6Efr!46PWi*Aft!IMX+A7{j1nigY}XJkkbE5 zxj^2%py38%R}7{uKh;>7V)eoW{1KFeNK;dd%~`N(7#LlmD|Nc@couv>sAFoZz8!?S z%$2$m)~vRYqg!YTyCTQym!imdsV`{1^=cqc4?id!rGz*p{F%C`r7qO*B8=CV7f;ok zCB@VxBRePYd5G`AG4FpR@!io((VZt_kw2W;VPlXj{K+$!)|+Mk{GsO8+od4caT%C|RFAF~ZQ#dQ4Po_bJ4}W`dYGb46b*)< zPzF9n8u&VW-caa;ABxh3f&Xjt|1wwhxXy5W8e5F5az0JERt7!muhs7!W+$A)L^%Xfg0F@gIf{cr(k>i0V+%O%b@~n~eFVnqd(B?M8kW zAAx^gt`w1qPGd=24Haz^8O(p&kBpngipV5OoylTHP#4=msYg(HtQoPx^ax6iH6OEt z@)2Xr>wsO4HUADqv>ri4{*f#opG>Kq&e$ThAN=E@4Zh2w4SCtZ=P7r7%!>0xr;>?| ze>g)*V}}bK&UI|nLsqLMWX2;*A&@rV_sj{FhzRPEd56!J;Dzngc5t``69FO^W@wgG z%19jT2nK8BEKCeYa&tz=4wJanl^4TFK5pU83MXbL7ZW1_%opo;H8tS{MY;qS=zO2t z2w-N0G7&jlTm+^3Sh%wq@eJ3fK9~BA6N|LCB4dcHP3UT$6+)!B&mmHSjwGXUkBmN*zHORAo>iQd9%nLQLB^p__ z8yx3v{ymzOF4b)sIrN}0z?Lap<2a}9i=3SodV&r`Qw*t3ILQW5<3R7JIt#q{^C|ab zW5LZ2FD^#<^i0E#iw*q!RrLe+UJnoNL(zlBm2B(Clwix^{$QWIVQ8J6TUBLXEnV8d z{_)4b3b@--6Ya`O$Hc?a%Uo2;>cw}#ijrV@d5y0aQ*DDK_34%?eW_LubDuE6EuP|G z-P-`D)Rj_aY$wZ3TK*R=+-NZ(-_;`D6fu8Rz5~We6Qy|JR9*4kg7XN@Y^^(*I;c5B zz8NC&%@^?JmeWMO^H_7LBS^D|?_R;@P0j>9Eg6@JuM9)?L9-YL&O8Q!&)5ixvIq`g z9}5+Yv=m_Yt;BF2m4v|xlITrtg^8s}crp)z7Z}za1H;ochQ=(0hCB>DVEEE8Ff6t) zRAn)ITRJzEqUZVmFr0b}44<+w9CCV7^{BU|3{hxFn0g%EM3z3@07~!-Y16|AJ=HwRuGz25OQQ zB*xMCkUm-S;n6IH}0EYN6F#NNP;VW4TzZBC<^Wl78xat@f3>(A5EQV+vhKqsW zBgepSj*S6*xXp(dc^D=EL#MRW=gt2clY| z+0w^3uc2Ph)wF&VHV7{886o^wrThr1c>==P(;9qE$L5YWsas;c>k? z2Qh&!q)x&V3RU@1=7`xb!~GKCuGVp7ip&=k5sqdi-+@i8peeu@hv4Bvy148VB&s@f zg+^t@GWdkOg#zL%FgoR%wlE00VBznDUkmOwZm)z|G< zm=A1Yt%TIablY(1>^n;ZO-OZ}$U?&)XEYOwYor_@^_U%AD&aGx>Il(o(@lwKM?*D*r=7A)3xst|wW7TG`>D{DgLR!uXl7!&8T!&+YJBgP*H} z-U}#3oQ}6eEY)a}d#WaD{cJ>qX;-JbcEEKEz*1Svz{Fk3_^4DR28A#L!xH9@`GkOc zZ6rFRzNHakH~RuCP;|1p{cdLGbL8AE;F4h}jm5f%!l0%kv+X#9Gp2Cz!~lG|nUE1; z^_{s)P?1r_A_fE`z{?~0&`L1s59$(V_4bs=pxbUiV?L7KW|kp&JnqV{g0B~;2*g|a z-iCn1V+_SXak`RCX$a9Rl;I&XJxD$hW)Ksu0_;RvK}0dvAd{S^5n+=Dz|jMN*v`o5 z{%2YlIr{E}5x*1fJxyiG4+@Ylto)i%n*z){QDoIEF&5Vw%?vffF~uapxD-c#P{gt& zz9t|tr%Sv+BeqNIcFTMhnmA~dQ8}BtjLP`}lz3K^x}Y5z$63l;9FtxR58snmwa_7h@R=`Pq$(@?va0IGExZ!PM8f3bjzoJ4ml4Y$dd7XOY zUa3-tGoy3??BX@0Sp;cTG58LDfKs52Z`OHAiH%Ldeij7sXXCOrGd`_3<7my|)Dt?1 zEH2$HG%#JAx?a*@8=gi}D}{FFmZdn0Z(uoAmG4^JRm>v=v6N|+$NQbG;*k2RPLTRd zGE85Eu9~dJ^Y<`7(KY{AN6L9Q{~h5u|0fuHhWafi#=2F`PcN}?rexJiY;VJ6V;@M? z)qJWb99GL{bw??tlkTUHo5;csNki0dH*hBB6RxuGo;>&|;AZkN!qZv!Q+e=m!p|Xm zAPave5B@sgqX-|&!tc(5{{!aUlCKs6?%wav|HV9b5ek~zLAWmqpOObJWBGU-k5Q3@ zpPC2%A@jeV@X9Rw&=P4l!k@WJKcDdPv+$lg_(f8F!Y60pPvya{m+}){orOP?2S1+W z8%2013%@%LzMlEN3O#Mi$-=*w2VX4ZCwyKOJ|z!cLii5}k7VJe=E27j4o{}bSdxVw zl69!M{=Y`}e8QWv@SZ&QH;xDVGQwA8;ZNnk&tUp<2w$CrKa>amB;lh7Uzdg7od*vP z&XZ}3jam2?^WY84e+S{4vhXQ+@OKG^R~Mq6g`b)SpDFTBcvlvF=pLv3k5gX(JawC~ zI}7a11NsS^WprnOTl0WVpk`AS8GTvc5AuMIj|T80txyIKLwONEL&*)bX6s)r2Z;xL zI2r`2ieC7Lz&mm3X;7A=!@wx#yPg)nOB=tcf?j|8GK!PCmmVU9S@k|~mY$W(|Ef;U zz?e6S!1cT+)ypvjxa=gXu{Sk;V>w1{j}Uj3nOsVG zMHcs|ogN;+A$)k8SS}PSZVVjqQuujdzy%F|lPwJv3K(6Ce&2B-WjF%DlU$2QeTe~? z!mjXM!fz2cyq)@>j}xrYeX#wp_!Smc3X}WY{E|)osnTI=(Z#?S290;+QxY~NzYMf3 zvaSsC;v%kEiku#PP#4aagNRNyf2JnWF@M^mZMZ|~BK@N723!UB_{AtR|2xpF+9R5X zM;(t^yQH1n?4Nd^R=`%^K!F1zIDmmwxNYvdZ@4@G^k?h&)-;VzPF`RfQ1J>Bz~~au zq_R9V>XG*l=1LH&PW>UGRj=S+pNLHld=INnV?7o6OpYvdTw^McU3y0@LFY0bQcxf2 zL^`5%AMuz?93I%=4>AOc=7m&qrI!$GiKAaYZV4y!dBpL~`HM>awloLbz-Y$Gxq$L)^i9*Kve(}drVvK-@Ou#{W{M4Ba1 zZfhl3QuQE9uU$*(a~e-_0fL-*XCygLr_%q;4Jd^jt~n_ZQgxq=f_9k8MsY4t*zDFQ z(0x%*to!&0b3lKZ`t#7}hTt&PZe|%jie;-1V22dpgv=1yHOl}V-XMt0<@`+IsEwfy zF69k^)tzj{sLDZ|EoD_?#)z=9aj=kP*@M}57x`mYhHzN=nMKjeMGf~zLCTN>brv@E zu_RXvy)PxnV}bvfV{jyL{s)(%RdBkKn_IE}*o{suo*{xG&&o zp~0OzfOeBwY1g*MO-Hd)+x$#^0Y(@+37nzLizNo!S^n5olrS$iPgIyV526!9?#v5< zH)45FOEH{bGC6Cj(46!hyDacIoYmAgNIlq42C5+qb%y)5U~$!Z!s6sTSy^q-h0BVv z6mIQs@`cDseM)T}p%Ps6KS6sXX}=fivpEp^GJP?@K@2U8sR-Aeli%L%=)Li9vYaBt zv}f#Zm2^1U14`n3{hsoOVzT=Y-3wa637MG{ZGp{~TD`cTK5J1MnhW<{h`iB)qEH-! zT!QN2NYCz|5KqgK08dVJ0xU|bN&<5Ej_8gH0e@v2km;R`nBI{k0$%h$+~G&XVkB07$d$~T*wP0 z2KFNGvrc^*hd2Y>4i9sKnIROQVJB|{2{u+^H#7c$A&m!kkW*Ow_+3c|JmN)tSL1;( zXIxQz%_r0^G6FV(s}~fjpEw_D+K4}-);a;}uq&c=wJf_+e=8_(GWP)T$I|Z%f4I{m z1Lcg>E?9?GRm$}KIA&hq7r|+SA?v|F(S^woguS{flh=ziE!TV2n=*0D2ecq z;Sm_I8>6|Y9DIDa2?R)BD`H*uQ2SO2$A*3<}# z7F$w2($px|xGXI-<`R6j218U!a9S^yZVi<1ym-t-Q&ubC5IUdn!aAO`%7yJA59QYk zCal^7vNkcHi`PEc_mi-Kz2;2pqX(qh4EuCL*6O7ar~rs|1j5QEa)6!L%m)pELLgHv z0Yr+&_KB8y?N$m4Oi)G=f26$FO3N>Y!w2frJDP(ZP9Xlw{e!fR={aQ$kJQNn@AC|l zF8nycBIQ;t-6mvxybC2&L$|QpSVTXXQ(2-dR7!{av4xcU1G(8LXVWw+IS!N?Z$WE| z9vI6DdT{c`yPoL5&zjiAjl(}O$43)mMU4)094L_p{Wxhspg7hHOZhU!5cDeMZe<}f z?|>&T2YgE)SCcW)_<7r;^E12CaF4ta!z zUHgN(oN$Ht(&)jlW_{QGV3!k^=?wPa@V6^Eg9+p;%03~=KGD>OkRqu1Qz73Fu8u=K zvv&Lb;C3hJK1fN&yFlqT>)ZDS+nsReq(n!?9ZmSn;O70o%}#hXCG>#btlhLfxXB6Z z?ZFx9rClUExUahwpS`^o?8c`Ke5K=+WKVs%yEff(LqCuCx1$bzP}FXmU&z=QCwBL- zV&eqEU~hM6H}mx{_g8lI)c1Ga&?g7IM|e+!$s3WpICnQO-}D6&b@#iHdpMxdK8~g| zod}S@YN;$Zcy;&h*P83mw?r~i*U6`Dj?FNN9e?a~B7y;91r6w5%$45C_@@)6W8%_q zEyEP-8G-k(sK*fo@z zE5QrfM?dt=G=dz%$c6U^F3rf8<$T5QX{lx`H-`?#`iVdSygYEDQ~|UulX3AhUt|J` zFY1@zF%*SenPGbhJ2F;zfB*gvI(r@pj6tKH{rOONAJ9YHrMm6-(P=(pf;AHAAfj8r zzP$ z^za4R0E2VB)fp9ds(w&SCyZ_hnA$*5xYlZ-QHi&q^6ee36~pI*xg8fe&v8uhC7d1t z(&2zYC=qIca!Kv@FuA8P{>1$Fh>po-LEQz^lC&x9D@HSU1O->8zyoN;&=(BBm?kaw zho-xpb=B!%)xc!Lx+b4l${NCq4}wU9jkH_nm7+G3E^rOi2S92PYk0927zPqGG#7KU z@||@jFIYo_&nn?i<0LE2ulOq2fLsTCF3^xw8whi0&QSS2wVXJPrF5E%E z1xpb!{Q8u%na#tE>}x@0u{jhVb+^upd*D3D z?=eE0fUvq(XKPA4tCfLOvMt8nd=pwskA(N0u9oXP+SC2b-6%_EY%cQUKTF<3ju`}I zV^a>c@3itO-dsLcvVZp)UDh~5{m-l_WiV{+jvP}AK*DN|9kG?4b?Sf=9_8hyC9IUJ z$kXT+2D)I_cnTGgo^)CpgmU4FHiU7fMn$i&7P=ew{(UbgUA(m1Cx7RtqG<-6o8 zFI)I5Y5bHWcow#w57sSa1++4;9Na*$!*vjn(E2&!TeJSvXZlvAehTANq%yi~oGC9{ z^AKl(iC(MYp{K@yuy+nkbHN{jAyOY@{6ZzNpTv-FD0wlFVLgV(_(a@orxRH90kfFm zqSjt5jo?PM=KnF9;V(HO>cjb>5ZmTHyVy0~|AcowY!CldxUoJb_`0+P?m%?4@dUBBqlU&G6Q&?4=c;c(BJFrljVIs{9LK!YbTF)SLI>cuE z?Rbk$z!e_X zL2SkRXlsAI*|narMel$8RgqZR%JS|A4q{0RV-N}ON!~aoH&dt1m?#K`lYYxpaxQpEzSis}uiw?z5) zqKyGpL-|vqz{7Y$uhr;%>tXaSNjcD@Hh_gnARNuBq`u4)o*OmH{{TotUxQU4$P0Ta z7r2cO!tHWk$}t$RITbm}xQ;3MBs=$rjDC%d#IB7Fm}Jb(h%mv@VOcbsWh`On+M}R( zfM{&t^=cNV*5AE9mVIvBb~01 z=54@B7>^L|zv)_cShB$8MWq(U2Lzik9%t0+`-X9E8o0L^;SL+dgw?1!9YL#f2&k|L zs1{5(?^u-t2e8YJS6L}Y;*hbOxGx_@M#ETR7enVuUoe9Esq39Q-MS&DS3#N>ENNHd zZ_r2LI)+AA5WbL+AfC2^q}-btg$9h1M3*XM=AqIZ48qeUZaBXoconNFJZcJT@9yboMRaM zZXG>&9%X{ZOh0=-_${aWrNb(D9+SG)lN^lK;ATm~__9j*9aamkA{0mEpm|<>g~Vh8 z8*FFqIMPmmG%&I*{npB@i(GF#jB&D??xnfUMqFw|h$wt*7XxIw8gc2y0NKE;o%YpB z@DEni_v5fV(oo`=gvfwhvUk2!R-^aJ;}%KcLt96!;LJaMq_*0YZVq8^fHqKYps5jA zz#RomJAg}q8QT@XG1~SlSn4*bI1(BD}u{si$;XQ`!z6;9#0fDZ5NhTuz@xlwV1A|?Qgu%s_(!^^xQ6Uvag5)^hT;kk>6B!|#jebZL zxM8l4v*c619T^i5aDk#fzMM4HdP{24IP~*GTO@QcGv0@m10U7$7+*LiZ5LzY@#(g| zx)FzlDqIfA)7h&eIj#$>R~S+<1hvFF=9=Y1`_!`#nobR1Jtl94ssXnqQu*+BQ&dt` zaB#xA*Men$Kp#)l%)4GDdwMFacqw0p_TP9{n}N;)N(?3l(m>-zra1Lml%VN=&{99pf{BhSXVV>ryhnuujtZ$b5+p}X?xuOvs1KLqvI+EKK{5)@ zOS>L=r_qO6g(NL63$&o`vFSxIIk?aDZv0R=Q%jydGgtV41oAGmg^W+3j=8C zN?oRYfSdE+c%z_x6!h{&q-8{kCJx0i;8@U2SR2Mxe-Ui1O3W06sC}>AFMSgm4qQ^W zDi~@I7AO37I8(L~CS__iq!Uy$b!0R3@lr_aP79z7gpdr1a?qLytLxV<5gFL$i|)jU z0XSVP0KtMl;>LQOr{JqoKeeOS?z;2@=R_f5SFcEi2PSeLFVg|t($3(#@2;x#L2uxS z*7|O?P@e22e2^|FFVvLK)OLGL!ETm0l(pR)an^P>HFgU-CSXE~H{{$WTn;9dmLsz) z+s*of73_w>PVI^)8jCqs@Nz4IjeV92FgS;f^0igTP z!5mVrc01J_U-c0ey16=4dX}xY(8km3o@;#$41UO9ANDg|&KQ&tr=9k()#HLu^v#T) z*Xl<=vaNmuB-`rqAxEzsoWdg26YN{QoaJr-Kl?-p_NDe_ts19tgTtiIA8%sA%1RAIg|T3dIhDI6yXSrgjL&nb{F;to{QGg@ootk2xff+ zOjzIYvJ*$|hLwavHt^L_M!QQ0985hTr_uu!Z9h(fIq>a62`18>LC=#$FO=;SE71OU z{OjLW+I6Fi55&nDA88sNX=xV>&NDtnK(fZi2uRlW$cNZA0Lm|y`@Tue;X2!((!DNJ z*dQ+#r=+pl=Q+;&z~z`|1YmOBy(_rL`TVBFem14Xv&9%uG)ABpF;mV{ry)S-50w-{ zrFJ2%G;o*}{m7&8BiL=jJo=G`eBefQ&YTY_U~Iq=t@Ms!1>OlFbPDO^^@HpH@&o$w z0&qpS9Eu_p+mD)r@=Y(tJSk);Emf6Hy`01%Vc09_iAS3OJN@t5QFCo8&9;>-Kz`dA z0m-(l5s+-#%7jAgME>(zxFR56R3J#E`fbs;`S}|S@pd#m%7gkqEp$2Lu=cgU+gmL_oXaM98U~( zKgA3uqCMfJ`aT>a`jAlHr={@-4K+Qip{Da2szdQfSUcfRY%kZ0HuicOr|L7!YkP5^ zc`$SKHY_PQvN9N%2Xw%*WTc}LJ~*qu@T|H&WL7!k^}Qn3;5Bp)nj7W>d)>p4_kBp@ z&|1{~xc4;J7uy?|A`LsCM;Wm1p$apoB$11<80(6HQk#IO!Z1{}P?ShLnOscgY)&br zsT9#Z(i1s-4ug)XV7`>qihq=)29x6|bd~HLgWl*8EPjVHy$q7%Kw58f>S)?&yKJ+p z)@zj&<=bfzpp8UY5F2uKS{Y1Cjia-Av|EHL-%#_3;;M=^meEjKP1W#2%=g1<06IDn zqtQ*$=e(+={rP3or%q5Af~G$UqwN+6EM<3kz#U)ZO+0ZmgdEmtU{AsfLfMx=OTumo zz&OM749B{dpZ${L5kM>-s$)bfdlvVTb}Yw)lNEa?g3b~?KV%imWN$fW5;+|Z9%gWA zGe=gugA4wRi(X`zV0jLTLBnIRXwZPBfe@G+RwvjIc=QkqPMpmJ+lJ?8(3oz^KV*PC~fl0a5E0`~39BRv}& z@ln&!HV_+Nz}9qHP!m7Bnl=*%!LM&HYV z2h${IMKMXisCwziM+nD&CiM)9DCcvsO=N9%2ffp;+UWi9Wvqo@e@6nMo`x9gZx&JS zEp=Jdu9t#?z2m)nX&6-Z&gLX^rl~PQ_Mla5WUC7On{HM4RKobxgbIxq3ZYZaw5%w0 zJ^58^NXUpE%N{U`A%<36)bM$sf;~_R<6#zUtS(~beJnFeqhst?MtD&Qv%##M&Zd3` zOd7m9?kge~aYO11-Q<(YF!cnrh#UBThih^WLw!zWnsO35f#cT|bp64Jc>l>+Q?Gsi z%l`6UFcol}uZm1{tO|SZo~9qbHd_!q=LZ-8aQpxx0FECZACQ$0v8A1!1mcwK5z&XE zIYq%CX->VmIYIAZ5H=e6-D-Z2Dot#=To4r>PLzwn#>1HGG1g`CE~!ff!Qh4yinovS z+kI?5`&jj%`lf8>ntBBN5bOomGOS1XP5Z>igvs5Db(MD8#F^A+o4q9*#W-y<;k3;@ zzyE>nh!Av(vhK51wM^|qv1qR6f;PW^V!`Ou#oEMT{mb+D#X>V=SNW$Z7D(;I(da{F zeQ(mBm>seIga{3HwKb*3LC$hI5;_A(eGfgQuxSZ?S-At;l559r+siNjCvJP_sd?Z4 z!3lZ{4+mRu1~1$>Zz5)5u|iT}if@sa?Er{qW5C@ol|qb*a*+TxS2G<>AnC=AsB_&| zaK)U_4i3g`m;K*YQRK&AGY0+X;&wzLradfCZ(gFQlBm)cV3<8e(DErF${s}PxA}lJ zi%ut1FFn_)k4p=*^ENW9$+=S`U0mPX$-|MX`m(w>ntI&6S^Gf|;W9{`|55RUW(^m+ zXKG4MK3-P(UH_a&gXPjaP4VqTmVQ(Yj_7Ffir)FR{si*qcN z4VLCd8Er?2b-{&|!pZjhMQ!BIm<$Rx=&Z&0|23YDM+Nr|o!P1bit$V7XA7p zsZ>*zHb=K`fiw0~*>!AG6K$%Kbp^8o{=@b1j#VQRR;!iK?Zq$*2&vn}0~W9}2`X}o z=+o@zrJNQCtKc!BpWsC2%t~0De2nP7t&ys=N;v})RL9fyReZhd%X7U19JC>9Q|yV?K-Bzel`q z0ZT8)*Q_Xt$B6*<%U&kcjwJ@1Y{}8naE9$hcjT7Xpi9-0I>BL;@`5mdYEsV^;f@3H z?Rwo{VBdyS>vmhBc0pqDvBnq>Qa3t?rRJa((Ni6Us=OtDH`b1FaA4>1PZvw% zkg<|UElKLN)2KBQ1!&JBM*PmS?j$?^!n&ZpFuckeF4>vv%fj+&3R z{RgoJa>S}>#2*%hZ=Ct|YPIXJM`mF2%pl%Y{*Z63*Q#CXe#AF7-VzV<&5O5166V7j zQw+mJ%78E2)&&~GFYPr;`3^4#$J;ji+AmlQn6D0CajMl}?J3z&_5NMns*L}>#W3XG z>4c$<0bfV5IC`)oddPdn$KHB)Xk2T{wKH5+=hFm6lkPiw(L_l}*U-4wx-ZOd4ULPh z26!cY$ME+tg!SUjg^#oMEFaZ!-15tcS}reIepxZlwp?Bu-BA+l6y&?I$m3V!;!3Qd z=#JuOXE90mVK&xEjqftVxSWs`SqReKi~MfK-#q-y!QX8B&B9+b{-)y3s(zr)to~*n zesRXYHx+)<_)X)tAHV(h#gPQx9Kde|zZv`v;&(8PyLj=hq`xHNaAJrBUWdO&@Yhb< zLGO(>?R<76OPl|$OKyjN#$nt5E1bCT$j1lcOQsCk{2!O&f9ZQ~Jv@kfE5C?bhTiD` zmv>(`!v$PUeH_yDF_HB#0U*R+wxxxD1_Kzubh_e36A(q+SQ zb@WDY^!LL36?rjN=EVc`D4ktbZgLcRj{fc`1N<>=@PI$y#;<#Ly=eYi41AOESA)Mf z#O>6}WhE$mUOmV+N}E>)C>!GFuwnI<*W}T@IM;$Zl~#`mx-e44VzlenD7KeL0|VR& zmLWU}>k?)H%jV zL^0Z%NR}P%4vAM`$7=`Lmo8~fPT+*TtS5jEFnXvsf+HNHhzE;+iHjalCZ5xj_}cMc zQM7$rG?TdNeDT2Eo+G13eRLRllCdA?cOo@vay&hZ(TqDX9aU2lxpY{L=Oe5na*i?i zFp`VZR;f3KWa4~D(;$-t@V1?y*PS~Re;jhWmN^Qe>66kgSgahm0^-n#qOiDwoipH& z#2c2L&h*L~fYW`OpYDC1Q;+ptGmN=L1eH<2OM(hUORnQ*`9Aa^C5R+1ZN2=$4p9DD zrF>SECh)w=XO;8IEaz8rS~s59quRz_pv18Ym}$VwXZdahpi3$xgg3K-Dor2fQUh`Y zE2i+uI7gaC9hivgRS}yri!-sJdC(LL3*7J|l~09up><#$e@sZtKZ`Qr17zp&QbN#n z;6@q5q+n$j_t*&(L3Nk3ulo$ZkVMQ*0(5~5BA&`4oni1tv{$T}gb4T_#c6rija6GA zUUAGpi@2-(aK)g>!HXnwZxb+aEKYIEf#Q~V&Lv|$@y-+B0NYUvE;*|;Uqhj7pSj34 z+(t*$7xXFRYYaQ$iKxry_6lZ#|8w>LrbVT_%cP{7P==eohNoBKHPy*~M?FOw$KY}> z(K*=qNWvVh4A&c%N<60#Qjt+_yn=>-BJYPP zfLb>ybC`>icUTHyrYd+uQUr=3GeI!c28zCMMg^H_PGBy(6v<*}2>Lsdf5FohGnyR3xzEv@w%_M?0TqSthfD1in{ zU}mC=D_oH?jmI_Wg?XsY9fq1L*`At*)Yi;0ThkRcV3ldMlts)a00huD*+^MK!X6c1bsbmNkHBYRs&I(VqhjtX-@3VHYGc0KBQE zjEr;!B3Y&EkLdl@FW5EE@C7uqHtM&DGXv}Si!+4rEa853`2?6sjo_TZ6R>=W#>4hG zM7e9U#9YsJG-K!!S<;M^I=-rzfxE^bjH|=Kfjq5)kiim!sK-xdrTt=YXXkKJ{( z%rT$czXYGC7p%F>C-s3<&pgTBjYSy&yK|D zaBvE=^f*{35O$~NJa=-$fzXJ@9oz$*({+b~T`M|vaPUalewe*Tovi78UME{v%>(Q-~Ui zD=MKbOY+s_L}T*dX#Py(S^1>#_29?Hw%dspU{mOAc7IZpi__TC08&g#q? ze}F+pLL5}kRHHr`&}cp+My-ZKfiN+#Ap!~Nwpt`GWQYVPGm{S+lypMNFizL@m9D$% z?wacE>u%lMbl2^=yN!jIHzcWbF{TzR-4d5=9~|1!N)5VH-rw&&=b3p15^dl8|F8FY z_X^3(JkR+)_qosgb?$SHr}KXSq+4AHjt~Fh`Bm0iWLdJwbhU^FCZ|@klDBNb*D6<0 zX1L@PW7bvq{Zgr7vDOVzo#~*&2b{%6OLI^Z+zm|lpZrd>taR3LR2DH)YSBOlH32#f z5)FSbA<QQFI_+Zl%Mr26Udzqu&>{<1`iX1aYrU=+4(>srPItNve;T0q( z7ywFtAOMjPR~#qN3q>iPLRE)URo6SJ+9%7gb{9GLugVa*B9adUg&!7@!f|!6-1JBq z_BP1`hfsx5pI4>c@N?2mNCuLA)4OLEac1+<(L zxQ7n{OJ0>#vup>cp*;C9^Z>U}&ZG!m!^nsnpcS#*jt)I6OQANHhzSESdA|-SGGp>~ zI*!Eaz=9UMjbVrlr>JfVKR9|>d2jia!OhW-l*zL z!9Ct9Y2*CkDFw2pz&$jGiZMpU0p%2ZyK*0eN|CiO%6ujoCFNn#U!l;gBGXd!edzxK zI`+DwYMiCO7Ru68z2>V@>0iK#4755#mxEAS4-c2v;~J$ruwstji=O6*ksY-SaH z-z6twg&)Qoyfif?ox75;X9~hT_Q@pkXa)!0Np5f-dkn4H>ar!x$#5Sw$$u06=892* zDNmAKNdZ*6#!?s~{Gp^PHck*U-_uTG4*tlQi2f-4C@S3NUA71FSr%I-XJH8zt4TI0B^Ms?r@6dr~??|+c}v@JppO2Iac zZ~))}IS$|g``~uDo#pJr#m38}Y20`U_|cUd-7j_)bV*7JrTdbF<~iNBu}XigGs{Sc zvs0`aox%}^u(7z6pQ4`k9S^~1i%%gwnfN40mplnQAU_2?fS@;x;pS#rhB&A~GE*Xb zc$jlA-R6gMP8QzFt-*9s4njYHSd?q)rY;;XnmPvapfD2qGX?0^AIMV2A+B zd2S$xC|Vm&pLMg0;KT4Yf2wwb19SMyOiBKy%cqDK&v%Om8sx8dJ)`z={)V72~GR~8-uRtzLh%5++ZrVdKnNdMX6)jO? z#gqt-7a(nwzXA|QkdVu7pV|2zj@}K-U{PWOh*T~Hx+o(;WNl$8Gsmm}{1trlR%)3$ zI5j5QpxTYIW0v}#ng#OzxoT#uunSL)z5=);L2d7^z+}$Uo^}v{DG*F?y>HXw^A>IT zvfzj69+A@#>q0Dcop4Cdc@dwvMdz&?2P&I9X3k6~``?4_>5*d$VA;2H`}CXH0Q z{W5hvhc1i?-Ib%@aLD-~P68?+poXo$7>M=Aj^&s^F$D0KqwA#voc_{*UL=s}h6Ig3dm=LZ6dH(x6Hj);EdG z5HL-GIg35qf2*@NQ;M@0GkMrS_yvM~7$9}*s}w`Q0XzV~ z@(l<={zJ27;Z>5&IZSWO##ou(_lx}d0*aIEoiETA*82j`F}y1$ryXS4ElSGs(mp4lBwYy@m6+`h~+~c`xF;t5 z@F@Cs6X3%_tS`SWOjS-I_yjh|;;tXZoC>ZA<4l9#C;h#sC)G&bbE}gg5yg zl(@(rt*i&-RTwZ1OrKLDubsW^l=Il6cs|mFAI755Wm_R?K&FPWksIg8Ljs-bFP+b} zC0hv)C;Lfx#U8J#bc_98MSA}x)##}B+}n*NG+zhQZK*8Lbg(KcDPMu_wBS5^rw1?W z&m4hJh@E8um%n2hNE`vSU!Vz*3ZCVb2Aew_yE~z@qR(Jw83Q;g1gjfJPUcaO=)dIM z^L7Wq0d)w^6vVzOUD@%Q?0__I5^jr*mcoe!w^Blb(^;{(1X+1FK2~DqVH-Uf zWG{6Ib+tAK=(EGt^r^widQT0mO#(_wk5s~?Mui4~KtgEn9t0qxs! zG8@lmkqDEeFjkL{K8zUXACr6b2AH-y7jW70wxm5C3?grMCu9MbMRH-lFRF9}XlKVs z``k;0v@SVjWEk6WWGeyW)O65!;7!=*T#PYI7iS0-<9hz?^GG`@<*P^mTIIM^ZF_Uuc z)@0m^WEIv?S+UU?$uy*=WYKY~O-|}#7@#PED`2Wlh`k2IprIUq(Xc3lvK2BZFX}n_ zl$x_Q`=3zg|CqSzJJJ6Qpugv(3xG&h_&ZeUTkO=Iot65ytm9tcZ&fKjX{Wp?C8eeX z*|^jP6YL8A{VMgXcItCxr9N(bVGB(>B5H{;cLi`BSMb<o#4;dvaG)Y}*>8TxiF(?Tk`!L|RK7bVP?JJ|M*zi+7P4~RCe!#WoWCzd;Gw&uz4yrxH$&=h94JuHS z9)LrSx`Qc;YqXZ&j1~Vu97?8Yl9X~hG=rM)wi|WzD|XLa~4%{LSt%X924>}iK`a?A>6nS&F)cs*wp8;shwxHUR#%c%Fi&a%Vw|6YFKR`a56}vL5g=LhdVv za7s!FF`(i@{UzC@XdL(%`8gN;!Q0$izaGN+H6*J?apDW60PSl-71mc|tbrv^@`k{J zaTo-`u~d&&F1GK!nkA(l#?_cdl^zi($I=jj#8NVZ#j*?Vilt)fC)))Ta1#nPbEn7{ z_eOW;yW?A9&*r0L@JHoX-K!DAqY$LXMv#xjjRnAsOBHUMpTvz_)A6~nT_48Xv0cB3 zXT)|98M1ZxpXk1zWbg4{eb*&->MDL7&x~9W?so|eM$|j|rKPpxtf)hQJys-Eq@w3!Frtq_3(Z}HDYCGjM zDJdQJx$gA%3HOGVl`aO{!`d!RGy;y&fnuoAdQ+M&csc{Q&=btBJ!9)JPh*|m2J=S_ zH!kNGgIzY#`68u(1N@#2HBRSQ45Sh=73p~afzeKWhb^R(hXef1*|8)lu^5K#j4z6F z^r=od(^L58+>c+Zo~a>Wdw7acu!r4~hAip8BZck-^2(*Uv{+9sYN)a-G?&T&!b)7R z9_-yk;OmY+H#TWY;7g7`oOpxXxj5-=8csX0n1u(<d9B)eE{|UJ+XD80QE+J@|Yiv;^PC6{qti6o@=22tXr( zL-iK|{PSMGm;3J^ zeLM<0ghb(YeG?(ZeuQjOAxW4bzYsZ$fz>Kw?UeRy|10GoQE`TNNblfT5d2YDYHpPu zcVr;`!ZXF=3g^Y}K@ z!mA2Vi4iilPFp!6)P5j{nouNwn2cdttbZIs1nn8=aa=nsjYqH|l?Iw^FXkwGMX%sO z5tv70g&!Yu5%=_k#Nb{u*Bu{D4u*~2ls93#p`@59a4z#tD%O!#z}C)CvtTFrnJ7>w z7d|6u*-u2v_rxef0ahu2P_-6F5VedH`GV~JUdZha-?K6LW;B?ed+IO+KVo<2TnNme zmiSe`T*}nJ0$}NNDn1mCzRB3i@V{pS=c)vVz2Q@#cfsXzKJ(d{m(|Xi;DyZU*$X_j z_d5MtWo<&lr$Qfm=CevH5V>Mq@Nbo9agHroTpT{EMcjYGY+H<}c7+x#vXy8NIvlwq z&Z8rzq5fVHKVO+<@dPh*DRX)6x?tAw-pIL-Th@gp(cn<0-A2v-2GKZPDlnawi_whX zoDI0`aa^lEPz5jVZP<4gu%T!m#HBDrBzU}e-dctp;|lqELPKZ{p1X#DeW9Xg^{DaC47M2)4`k6Lpo20I;P5p zN&|x%Y`59{QUtM|UZU=NF$7_yh9Vly+QK#joGPIgK`{^PKhUR2 z+Z+KRG8c^(0|6CRCKrA?k5r9|;5DQm7Oe!Bw~*p5>(8_xW_XZG@fGIB^6|gnhtsjI zxT}2Pu=m$14tw8Qdf0o)AhU>d;+`NJDdIvgJW6CbZ$4q}9gpYX_#H&yT5Cj2=gm{W zazGR&wAPxT1~Ym)SIKu#CV@=>%Uz)|Fqoq1oJSyEjz>BvZcqu%iHPJ8?O{Nbb@_LN zH3Uxed+kQ*Ef-i1GWmnF#kWrQL5!!HCF7M=F@B8TZ2lpTL{wF#*iH@4mBejx`<s-xV>&;hP;;JE`qCs45w!mbH-?QRdgAAS_Z4CS3q3>^JWfYLtD`gU7^ zxCr)gO8=+UuuhnW#^br5-i~#i@X2)8XT*I)is70QQX~$%1=1tLks;v&0c9|mtgCvm z+w1P~zK`MHf{4h)7j&1qyUICA3<64FNfVqlBZjkCfc;nkn#2)qNQwzwp>XfKW`!XR!Z|vC`kt{(pdJwf&!j4W#{d zxBpWvhGif2|CdP}AjnVrF82SMqz%gce+(!irt<6pX-;p@MDr@Gu*?xUYr;Cq>lBnN zKMh&`PnHWt1eYPPaJc~IkDqxZK<+YxHF3sb0N6>9*9v^p5`sVeSuk(d>V;x)uOsNo zLq5UP@Z^k@12Av+}GpuCg(vD;(A=|75fTddQ=2`4UEMz9Fvn#*Xwtcgmi4=5cy68#n6 z8nz1mFyqKYzrr|0LJ-x(9_1XK_?JNwmxOSk%EYNbV%~A%)LU3!qX0i?-v&oqIyCXe zZ?=E<$GF+-!;V+78&JlZ+opcpKJn(Z4^`r$2~)O+RDyrpUmU}Y3=mnA+h z!^1GVir+@)4o99ZI`c&5GE=4Xti znfV~}HuMu0z@Ro>#tAo9JA=c=A)}o>4zf5km0X+(uN;_$JI`q&46J-1;$&w3o>tUB z=^Z`}N#dg9J?lkG6wgbU)RsYxGp(*YypmRiU(16Se?9Uhp=E5n&Oc9${I{_lpB#B@ zX@qlxvSz!*nk_b$-6qgBinTO-rwY6UB><*VOgY%Hp?zbGaV6jch!F#@YZw&8>0F@N zEA&7vo;(vh;QotLOl|ZRs`h4|w!K1#xWaFHPKXPg?U5nNin~FkN#VFAhn+D&oFL2$ z+2Ce4Jvy5!kH5zxDinQUsCp}qb@*PIpMcD7bx056-~ytQUsPzT*|e7c zR!N^-@C7_VYNq!p+?%F@S4nt|tf`@Z96>EvR*Pj1V3f$CCLe@o4oc#AsnjI}tYRr3 zH&SKCt7f9kJz#K{Z=v7HV*-YGDM29%S`C{l9R9Fstq%pp3+4*~BNymt4&~%Wx%t-R zn7UfIbH5zJnv-<|EvowCH&^CEH_r}MHtboM|7bdpxdY)`uILC|`Q``VRXkqB@N~Y5 z(0|TEaBS`{j&K5jye5UnM#~{KJa$`Jx6Fj6Z4^tN7*V z{2JmNfoPSh>lAYX`2z_%n zz6BDUrmybGt$Eh>(PS)9#P4P}G7e?>zW`$rfIUAyp-$&*bz8ed&YB;;2KFLq=+loX zQ34Y-Sylg6q@h33JX}!{2R%{!-)8~x71kfA#3CP^uhjoNC)xWw?<*KU{|D|V>y*{> z`wkcwkCYMyk3e4q3@(e`lx#wo-30gOKTCc`cjs6?!HA%{qkpEO&eY>M=yA7zW`2Bo zq7BdKvLBd44~HIb|9JSlL&d?1la=?YfkJG&7yu2wZ9)py@f@K4nT!Yd;9>Oiv>@Bp z=WEQ_nqyt4>P;oriXPM6mrCDm_ODd*ZSe){nazoX9;b5RTkMqSDJiwb2v@Z*mn*Cj zSSiwUIO)?=Vf{$F_k|OKmVqL`pG<m#(4ix2h%#o`$b*$8OQqvUzSFmalHRA8Grim&c=9Ot?HdU-uJ?^ zTAuUo*TB9C)5)pjy}$aKQ*UN`H~Jym#NYjk?loBTS#js|4p-2%Zr!QZqJ1!)CWSc2 zL%1Ctj0sqf-lkmEGe<8@r=&U#?58P3rd~F@n&9s3`P1w3i+sfFH*`Gcnq`{ ziZ1RQ=!QPuMp6KCL16}14QADs@C%fF?H$kG(tmt{moC6>imq{-g)k>?>Ua2?cGcIYv=DqU5$i2WarJfZHfPkN?|6-l21P&~!}{m~}?fH+23 zcQ^p*I?kxQa@{!0tO`bvCt{PLA!^ehs>>+PDUz-PauZcXr0~%@bW%C59Tbud1t{r> zSP+mCU%qkNfye?Q(y7t&nIT0wwC#al0YzT-cKDORa7Vd~qg746An%k67R7g*qrc-) zk^~YE8}yIB$q(w~Wc>R;F2qoxhhJeHFi-3X*#Hq7G~<7wE2jJo1mqsl+krC3B-b0| zK;l}8@NQVRu!0O~lZ{8nOEFHyZ2X&N~qb0-;+$8X%0kdem(k-Q0f z>x{}FUy6eL`2lnkWEApN*4Fvfze=69I$#+kvYy?K;=HNS;$LFejE__$uVrcwSS{s{rj4`P42yU~fvhHIZ%pciJG0b^` z3u`K^3!-d``{k$)9&f`{Rwa{_kJsa(XZ&gT3h)ZA+KW;tJKgaILLVxuFX92+@Dl{n zdE=ntcoP*NCB4T^e@{w!E^#^Z3AnvvV0jTsW7ezi4n>pfNG0Eg$LKGpyxcml_i=jq z&Jv|o_d+jvB(0)^Y&T>Lm0LsGCV%w6_>a8fLzh!tAtNrK&)5hiuAv-b@c;*~gp$bi zj=BAqh4WCJsy*i>2{ zz9UwO@T4!eCV`u_E#P9te`tf;42Z48%bXFSHgjYQC!5^U_=vjXlQP z>LByS9mkF(rb-0R4G|I~`Gv|1y#Y_@>?=<(L#5#lyiQxw_YtZsJiL02W?$qCzh4-V zY9uWFjtcd>lqXF%Mz2Yj+38M$?8^3piZCvEz7tlq*Cn*o^!T8&d!qlNgdZ70mv>-1 zi4keU2z9FsR2fmMQJl^t_>fIu3U*2G1sch%Enk=6fxt&4l=Z>anIn}W2l89}I-a*6 zO~Aj)ffcGeXw#2j4xxQFMdxWYs{MkVvnbxpN zs*OX64PV+hn!KMK?9|I!_J$wIDum&M6XZIK5ch^Ua zUo`J=j4c-FLRX=@j7+|XFg0;F4eEK~R@;fgphhblqk0%@NZ_YO6~>O7j8eFZl}`dE zZo|MH1V_s_i1B}#DL;BNImqw~e)LM&!d78DDbf|@4+e!+0%daI)-F^xm9f?Z#1Mq} zGB^VFz0s0er!ytTKamspXnJUW5QIX|`e<-2>J;MxuIYj<$n7hxQ*Yf?odXF~423Xn z=s~uW;@G8_fW!R^=hQxa zX{?${&`0waGINrtP|Psdx>jl31*MO5Nn-Q?#Af-?+hpuKPxW=peIikkihPDehgb1? zYWJL|)KpZSvm2sLt}a#U=M{h^mFOZ&7nTC_nUC%XIoA7Xp$DeN;~bfi4>7lFi3qGi z`IDTs|A&Q`z^5j8P9;cOh4r}jP(f6lQYpy2Y&>?tFOlEj%b%+b515sg_}`x6lg+K( z(511^!DWL`CJxb~xQEW&0?87P0iT!hvkjbwz#eRP zUGYn~$Co?zAz0#)-ak-CPqBdGzwapk6D>tik-2O`Gd>O$R@(9#|ev#iH+ne{m5Fm;*NL3BL{ZcCuAm5d--F zA|#gNZ-wmQr~&0mcOCGV&Rdxj$XGv%-VN2zov~Z|-EN1jIE^jHV8O1=d1x0l7_UwuR{$V*fr#{hD!7t+xPe^=J9M? zs=D>p(|N`04#wRjQSob$@jnqWp=01)?dp*Nux$qvk5@?ZHPH;#zpsLJb&WrKPQ(g+ zy|@_CnDsJH@!rFolm80S+&@ic(19X$;C;Nk`;CTg{1qa8oDzXI9bt?+Bhv6D5i#%l zNaxfqF!o94iXk}9?FUJ@EyL6>ycl# zV=W%7LDB{ojd`S?98~bhsPqJLd0wUeXC7Ehd)VtLYw5GZRBR+~&-IT%T8MQr9Qwj* z#Cf`rq=#;lBH&mwh}I4w5gm*8e2C&jj8Bzl3Vy1r4Jw~51`TGUwboJEZAsLV6EcFi z{$5tBlU}Zp`o}wX(~>ImJUctcPH9X=7(F2`!oiR)AhTaw#$|*ntj~O%U7DBdl7gD` z_XE;$Gu!M(}{6h7Jz~$t`2qFqBhx|Z5GRFb!XeZN;QnON1 zfU_vf(`}&uLlj;q_&gn4#%rL)2@gGP)&;M!MXn0nlH>%!kd|Q_IU%xT{;Cy=xjLg7 zaA&Lw6T6ubLGbdeS+SlW)FPbC`YdEOG#r;pA&BF~U$hiW;Xng~V1W_{h-xl~UDwEy z8^a-QrGFZRX6h z7J?@&r>XN_l@FE}N#G?kop&F=fbd*@7qX%IAU;*rsKCt)u;Eq60wj<_uLv;1lf~Pw z6CvgARRCBu4#epNP1>5_--}W}J1VSme!$d_%5o#I@t@=Q0Ka*NZx0`;tWdJJo1>i! z!yTWxM9CqAN@BZQo$4EJNYMfxOqwxd%|W#UKA*GMgz|ZiDS#j_AI*bn7=jti-;`*$ z^a02yWCSr&pa4w8XG!HnAyfhpKa8+R9nWXR3pzkigH>(_LCnhEL=-19-p6$|KC3v) zGPH|0qqFfh5ru36c(-&mK1-Yi;Q3L3P9*k<&dgtD0^~n}pdp=~&y0@t5IDd^0s+Q7 z_7c}Ju`>u{!x6|fB9QGtAge|oD?lI%0?toSUI8B}#3ZcpccB(d9446Bx?SeON(XUZ zc%}6<8CtjhLNm?q*CSV~hY?lQDj|>nhWIZW5JP9^f~^-@E+I3ntr^y_qxzhxP^Kh&46kYM4r9vehhiO&Fa+I3> zpZuxJHa179`I$5cjBC;eJ)8<5NI-p_@X7HAwSFGZX@iFnmpv3~h(485VzZ=jO-F7j zVlZ=~en?5&RY`jsgimJ zUU(G`x|ieSCu!==uCOfJWd<055Q_La3Tt7)l12GQMl(IWLU3ylnSN6Eyihe2THA4n zaL4J$=@d90bYO>)*MW|xVcHtF#DEUePNNIR^)$WyZJ6=kCbVava@`D1?hIj94_$9} z0vVMP>q0z$TaCteQ}s z-{^o+4Gf2ZoQ<|H47i4sbqCG}(0JxqE>U@3G>;X|jJHL4w$d^G_Hl|k`VTkMNuZ5r zD3pSqVZ1H$qd)#)%&R2miLTGEy6`G~E7;r+ohx0QdlQ2CGjC-C{`xc7RrO@z31Ci? ztTar4SN1+8d#E>8l|tLrgzA#`dQBF2Cjte8LA85PCFa1?9%yEOTL7xfWE^eA-uhgC zJO29V&cBlL*(uvE!a-RqWU}ua4+?n^jp@L^yl%;)b1xWxvD0K>!yb$>bW=LoLs|us zg9T773Lrv>pB84jfK=MQQm6)Yh8{u-F=ZB&!j?V`+j!roM~rAwjmKR8L)3dH_E=6C zz$xv>4!;8zw-K0^qc}AeUUCC4zh_j#!R<)YdxQsKjq!H*QcxePb&jdM+?`ho`5Wu| zfL;%{_ZC;!-?1Id8oC4hVZQPs(F#{lrQ6dvfDlBRfg0V{q1UZb1L$(J`cQOzci94( z#n7n8`p022Jd{yB)LrT7;5O1j8Q!5Tx>GRF^HL@DJBQ|_7J}7*1q0|fj&a7h5JNcj zmkZ?`ufKEZIAxG9hs)xFG4g@RoytEdQWC%A) z&nOKf*|p#pU@J#P9Kj(=QGiHJk!5cyk)MH)yAVDgXEUH-1AUXU&0u>hb|wgf1_eTJ zRXoW}@tyYwAV(JQhUr%@o_6{ZIG9G#pHS%sGPul$u^F&oKBGkMi6ZZyXD|2aM9W`^ zqOcNIQE3AHCjfr|4R-H3pi{P|ECHIb?lJ+v2?tzG*l;tAV3I}np8))2 zd>kYEm;gL6$d5fP@aK@8aE$W_dz?{^j5FXrqcmER)mRfHUV)EM)cXp?gu{W}@;q+_ zMk*N2RU{2#Xz0}^imCyd9Kwbhl_z7leR5a`5)GqR`s^^nu-pPMjA!~Pm5<1v;u-Un zi&8d3j|fH&ngJ{&q9227vOsQ-kn2;JJJTn&O?zjalvR#~H^uyL35*VK^CW+SAEJAI;NrF*c{ObHa?9v_A=F6At;%@m%4f83$FlV0Mf8Ds<7< zH7li6Sbv2rqtvD5l82Ct$^(c+ku+kvS`Y$za65SviHT~scj_7TT{B3b=eOQ7n<1S* zj_|=t#AY_gE6+7`8OC8&W_xb<7}i3EUw;P#x!((E9vV-czAYZ%z!exoUbiBcHo_w1 z)DWwv`a~cfg9U=O0Hn*p>{(FinsWpUC!GdxOZdALN8L>8>HHx_Mi?zKSvW5eEk_Z| zI{f`$3GpwczxAOu|&!4pK#bu0c_BDtrt2c@VIaSjJk@C?+H`rcNtp>?zCg4?1c zC*Gx${^LaHp*)KRxT8vXB+GpbZ{Z!es;qIBh=y!sWe%3b(1*1-;oGJq)e9;WZnWWG zNK^#09dsUo)Ihi$UaAW)M;L&vl3=Qr&?^gG5IQ&KFqk$}88SW008A+49$K(z4@j%L zFr{#$Id6bEKs6nZg^htY_|-sTuQ2HHBe5saghAty8t?F|qQI`@n3YQrX*%k8Wx*3t zw2tR)rIFW$g%l3UBII!Vr&u&6W5ii7N{fi5FY*pTYQbFZdta?>(VhH`N5IU-g!NR9 z6;%)0=N67bo=9cvz&o3<4=b`S;L(g7Ebxe8>_;-nhi!s?B*Qx_1fPL37`raSQjFbF zjGeeER79~Zfn<`gv%&;pXW2FbJCad7EDVf+Nya{-G$4R5c1sxhxG?tdsAlZr!UGrx zLZwayJ)dlZD$tbpmSXj7oPwChz{MQE*A(dAG=B^ja;nx#TfYoKtumnfJXC{G4d9H3E24@NIC)#U}qd2@*h(& zn8;X?Ys;)~snW@18KvQ_Yfw;6RHDQwxl|}udN;|dmBur`L9pmt3JGjH16+g(>mU#v zNg_GqO<z3T6~}rqqcba1(}OG9_RO_wZmA@{X5*B4HjOxVEm7p%s%6A@gmB(I=KBJfcxJ?$siZmo~vu;u$g@GW*J${&YsLJeoX&pDecZ12U0l zDb~HA84ePb96k_>^2yguib}wdic}ARSa=6*l5`?Lk|s1sqTkf8_-By&+|h1Qma3kJ zxsHME5|MD$8d09lyoT#Fpg`Z-Sj2Zj&6E?K2oWe_!k2*#Fai)JAfRIUU&d+X9nUmc zNy$fmNzh{A5ay=#9Aq|S0>XJuJ03uv`%45A1j-ktpf2g|hkKy}u?78U;|N8YRAx>e zBDkfFS7BT4Vp}uEkP1iafElVB@!vW75|VI~E9y zSio380tH<(nFx6jssw737qZMZX`0^g;*>O_g+GC7=VW&aw63r8*W<%1$~-OIw;V@9_E3> zFk=Ga$UpRN4BdqXJJmci8E%bW7bnnKo@onWH$t`J%loNV!Znae4Y}GN4&S=1dgKuv zTV0)rIPbVqRuRo+SZOvu#}l?>O}0r0`; zgQ|dic*fW}p{?{7KpT3D-5n5B4OQwf(%Te02CyU!&Cp}Ov_;7nphB-Ti~;g}>MBMVA9^cV+ZbrmUkOmdV6E9x;P08bJN>MPXMug{#WmJ!V=Zt<^3?YKM zF@?K29@|)O4j;Gk$Ox365XnP+KPbb5Sv+WqN;B*p)#I|}<>@R^wCgO&YoX{gC@&|5 zoe_{j5FbRk0viG3DWZv<&u777h6_<06X{BkUm;c6?4+bCn4KV90gc73BZiqFEnR_P z45dm}Fieq9igX2wk|wl6#CQlYLVzgv040O~QM&q=l7ZT^A|>>2(gjLaYD<~Jz@%$P zN>@^eZLC7S1}Rqo6G4IpAy+xQKa{;Xp_^X@+&isqKIPQS;oK}nUDe6|i@JHJKD>%@ zOWGr!u@!utjbJYePym`Kb0xIzMaOWh4h6ejI2DN*qS7+k!9wU6C7L+6mOMBFN3}k? zXUtDHF%e9@$W2)f#&309L{KD{C0a{ zJB0UPMIk#9jwFmcCa0aKqvUdSe?m84m{$I5RXux&>fdMeZBjkE zk|ABddR$Qt+mF6ZGC?I12rx3F2N8LW3fPJSFrF`rBfSD)kpR!mOYa>J*h~?lan$iP zrh^1=K~WDojAW-+#m|LFT9M9I5D0UC3_Vb6Oi+wwf?`i>2@>^pK8X~Jj`lEZM21bZ zj+8t0ECQoF{4SCNp1li%Lykpb%vq#h<=H!zp*r0lBHDm^{LM5v4CA&=7SNXUA{J}W ze>P4E#_1w(l{WjkY@X?@S3k(G}YL-NWUuN|jY;of3c7`(>!}%M(g`<_!;e`M& zaz7$xM3I&-ioXhtz^v48;nE4H0nVX9AAZF?d^a)X&~}Oh1rha2M(t-*jOY;VbHf(` z52L+s%7WSv6_N-C2ZR+tO2n;E$v`%(NQvIKGY2C(9rr6D0@V#@5D|g`IUtk9GSRT6 zsJKpzPGjO~N-4cBO2;Z`>=4R}_OMqtG8`rTf+b!Y?PNIZlJYRR7TKx4%|6R1s`jYI0Y-}x@&R;pdCHfSg6Gj~S9&i#4Pi0~dYE;MG7%?~&!vbFwgZseNG%FA$bK`C0G%3KcIwhNJ z(HeVcHQ}##51L<;IUigtaHUkwBiNEV?&UaWrLN6aOV#J0Qnh@I2RWVoPwuQqM)>!Anqig>|!fholh{y`Br0`bdDpX-8;U zrM2>lQa ziM!3+I3AZ_*rj8yYio0q@)w4)Nj5f9!MTR8jB~lR!YV}u@oG>$sn^;pv0 zu#0|$0wwn@%sw7c*>`ZHw%!&((+-qFbP?x0gaHB zTzTXkOu;HiCte*8Tq>+htJpg1nwtn+r3$nU-^LxfQe^n#Z%`Jm8h{a>b%c+aDgdp) zL<7K7Qy@>{QGkL0 za^A(t$8m!|2Sd1k&!DKQTe>gfeKfd*I2^))g~|}ke!SB9JyHXO;>iOp;>30%gu}xo zqI0F7+&%Dz2oJ+Zg(C+X#aCGK5(V%UQ?h9AD11p>;{BXB4n~g`#`eEBL1j}4C+K&D zF2GpBv78R+^F%qLvEmcQ@XP9!I5$qf%(fHL5jX<7AEcMOr7II6V!Jzhz+xvuZiGVOo^tHJ|vHu&kTQ%g@a9J*8q;#z5ZBc7u7Pcmr^yQ zL`##Oz76v-O3tzmpwupu*}eJ~6tlE-O@nIS|J;(|;Z#sKDd%q^djT^yLuouEn z6JQA4c$!?@IJ7<+<}3$nv*o^luCmu$@nxs!TQ|<|?|Az^Q_6D5Q5{{Ij-VvC$4p>q zig`C1XWrlDo$`b~1mS|_Ee*LeRGpGJ<@o$!@Wy2+%~97M2&Nt-X-~44B&Lr3Da%Ji z+}bynr-|So3%yw{u>nf&ei`L)vXqvqvtwmh(`a7cPH9?Y8i7P3ez+IY3nl~Xpvpo~ zf*up``6MIdQ{5MIffOcan0Cn;y@aLO+nhAb1D<%t!S`cw>42lAE_Fp%nu+x;&T|LsZsV_4Q zj*3g&vqP79UV`E6eHK_y;Ku7+df34=BOl@T(;GwqW2q z?@8ZFver)dR7y&HrhYEV)MrSovs1REr0fMUz5$HJkXH|Pv=7$?m*KlD=*IVs;6-sP z6pK;?lVdgr$4Gn;0@8$5jf9Wlkj0VsClGR;pvFk}7>@kKO*x=vS7CO7!6F=33#V6P z#;OG8Y3Fgz-p3Fw3i{qJFsB#caN`=nLUj0@Mao%go##uRW?cCY?vL2>AOFtNwmT2t zht%xtbl^ckR=XOME*tnv;~MlNwibn=GFSWykl5QSRugNFry5CGzKBB&CLpK%oG(u#F_V$Cq%eBBc>H9EaWO{r`)`*RFW~bYJ_YzR z;qy2?>+o5Qc;mb?{H3LYr)RiQ-ZRfhzMdw2O(arMTEz7gJ3|=4An1vsT);e@ zIoc|c*(A2Q09^WrDaft;r8w)1QwEZ%f-GW*f0!33cZTIqzDt#Fn*4i^&Oa%w@*Buy z)vJa@aHn4Tegmf`TxQjNN94??cmFfI^rc@kG!q$VyW3AqxqN>#k5SNeQO0f6`vY)* z-hUX%1rqe9NyXLs50_?U#lIKxz6kBA3vxoVT%X#`E$$B^BMb%*gIn_n8q%fUZ~X4;))8SjEc|Vef60$+*Q%Fv}PwkJG_B5^yo6g&-G}fij^5;b8eJ-gw%eusV zGzz7`KNcJwPZSpJa*ghEGzh)Y4Z?kh8J^f{Xl2yA;UGXHR>uq~i7)0s8Ptkr1(emb&&7HenJX6;|l; zL?7teQ~gS4lX3k{qF7s<*7PN*@@p2FXEoVj`OJRv_R)qVmYPun3f518~g2WlpvMw!|Acs$WI{+fy47r!$0tn6a=^w!Vn zmWjWERSxPS^lB3Gfk{9}utiQKR_7b!qNU=I04Wmw9HKq*em?Mh6wO2N_!Pf^9fFpX zEt#2t?{Fef$MN--&Laau2o-NWv9Rnt$9QZOLSf2~g`~v6A{xRRKMma=HmkzmbCo}b zpf&vaP^}H-PIX{pcrq=N_KNIX`<{sJ@T7q=-#P&{F2PbP^j6eeX;s1c1~pqnb&UKR zf$D@oHkEx#@pAzwQWIMstP6smgM!Xe1HylmXY4sZ2%XUWkNuq|AVjh}TY;3r zcj&y!H8m|mQF?k~4v6OgN$q*;C|)4L4u;=1cVEe*;SY8`dND*~`W7NBY{yD|jdV64K74@R=X$V$w^HJLO#d_FAktf(f>`w>p;>uTbHcwO;#88Nx9@1a+ApA(K@;|4B@Qc7^|5JQU zw+_nD$j+JaS}ewLsg+i-pB2`>5g@pY^+oJb(zAmyM(hxh!Q6`PNYA(V+{thFG3cq^ z-}wsO`KS9cx*a93t&y0Y>3jH%d($K8;Q(KAcC3v`EalSdQzDm603^Ve@G*dID!vdn zLTPy_&a1seOrFAip6V%)NqOHg;<->ZdakZ6{QmW!b;ZCJz!)OF0 zb63<bDP3q)#*jgP?4+r>qv*$~_u--)_1+VXUN}3gW zkj;XPx)4Qx)+P%@1NOX~!_ecw+XQ4sF;*Z9ILmjefku&74>xe*e5aiZ$8gfsLV!qw z6MB4&WUR0=cD{&+?ijzjV$6)0&vdFJxciUJM;j&2e3b`RHX&K~0Kai-L^LL^yjtf{ zh@m)4NcIQ}S6EG7K{9S98^YO=1-;9FJ<`r$LS5k78}!RX$LB@oHnB(L!}?$;I08p{o@eVjnLjF}&~sfLp!1kf ziRO9-&1hIjVQM0fJjDA|{G#gN*FJz!8UM7@$Zu72|$I zRH8*^Md_VPD=Wf$h#yt4i%?4W(CB6u{-lSS0eJSX^I4V*g+i{Wxe%*!cyGYASpGyV zh@X#zHKq_+7IF7?+E_DsiP#WjiKV-Gu;ZZFMfyKQwQVXUcmo*Oa~7cIJO$nu@%cJ1 zbdj3uTi}i=u^eadwF8#I(FnFb_>jP(Ezn;|zu?0EC`l zk&A&8z~!gEY~%81wpbcKLW_|KTawWlOblc63;0UD#<#0(0`dqQK%#T;M0UsLYZGa~ z=1GGRD+HIr6&?u+u?&o#aBpQ-XCEG5lM&IyR5h?vLH`asU`i?U*LNG)>t~na#=}bM zix>tO`z{m{>3Iy_qhC>#hUIY5wSo}EfZr98;bxV=^PS#5jC3Y5#jg-lxj1{hA~6Nrn%o>ZATUWKpa6i%Q~jh0B2I+0}0+Xeszu6|imM>B8uByP`17BvHl zg&q;U;kQqre3fxdCo@tI*2c0}`45Cd5myzlkx9$f&f|~fMq@00jx?33<{l1!pw1sw zRYZGO7`CM|O@;O60l=-dFw*%rUXzI=FJ=Q1RarSmq#G@{!v~o9wnr|EO12Ea9$f_7 zFnbu=1vkH8Hp@FaS_Qg@HY-BmK=r8t9^njJxDFEpL;QaPpiB9RmxVia{-)PNbaYt30NTQBuaD z@}Wg=QjG0IjZ#K726KK)q*Sa5U=6N^QB^Q+{2TfKb-@{j)q|MKt_lms5Hc2XNUdMu z)J+U9x1OD@v_k7~RT?*tc=kSv(IZSeU;ZPGqjxyc*}(?k{>0dBKJ>_UC%**^_<+uC zi^iC)A$mbWr03J})XATUSZpVL(0E4UZqtZ7SkYEC(jDmxGWY<$jYret*Esvs!%%dK z1yoqqsb-EojNy%6=8#Ew>nKT{b*@TbcQ<&t?wZy<3=_aJIv3s;IOGFmYn7ojUSed8 zl^E;s`4@aH`dNu_H9pPwr2V|acoJdH;PYjC!ub3RKHtK}$jnU3RDbE28JU@`{m3wi z&!6M-E#Dx&QHU?FIuDFwu;neda#c!zl z^wBEMQ8p{=kj6Q(>ekmBY%8>F1#AH7XY~+Ixd9pHBRm4R)jpRDO9b}=2}HBW4X>Dn z(@uJPAZ3Z&Zoi`dOw2?9nEj-8>Rb%biQLwCvx$CSotGl zqX1almhNevr1d3u9v;N#0$bI1m6hMb$xAa0oN;jCa=j_~G>-G=VRZ*)V&Of$1`7()L0BQ-v5)os@uU-r*!pBmU`(zcP+PsiCrvUGxxk#A z{ppVtl5-?+7OK1Jg7_5x8X!bogfl(qmw|NOxy-H-HvS^-R1kWd_p6xyz6bS@8Uz{zTY$x%xHpFLdbv<( zO{{0rsH_P);zlmAT%27B#w_ajuoRbu5oJU=RYDYsNk1ITYlVJ776hy1*dn@HF#x1! zpG0sK1XzJ>JGm;rK|s)-J!ARc2lkY@N?%s)=hB(q^#@|>c;oM8j{oc8-f@**xeWP< zjdtR{Oi9ee!PgICx0EQt+(J3bU9{!dyoQKIBRSbcUn_L!RzN>n-N5{JZ?aA>J~!5Z zumW724XqvaZ}B8cT*BPL*zf^<(|DT{PdMamz!q}*pqzh$wWGgP52Tj#^rgLrWmZ`4 ziK@(@N{^q^Z3}-;;OYDZMDu=cF9+)|tedbc^AVQhNGH8kqA`ABvGFhtQ}3=G@2Y;X z+xujf_wnxX$Ggg{?rN*6`l-WMsXXjGlGfju&sO3OMiC310-cqB+RVn#5k*5|{#LB% zPbe!i{1FBiGS=!6}Od~P4;&>-w>njG( z@=>mcp|D7gfh^HZeuu5=BkJJ*U&}pT5*bHQ&_-c-O0nn}JAxm%Y_i*XWN})T_eeLE zBS+J^u)-Hopr!TXme9=#qLu044{i!A!~n}8Ka2*12S-94^v>UY?+Jn^zC3x=TAB5CODgg1y4->Iq?!pgokYI+f@^$ z#xE1k8Aj1^yPOQ;F30l&j^~|@=WhKhm7o1O3xTr`I17QZ5I75gvk*87fwK@e3xTr` zI17QZ5I75gvk>_I6#`c;d*BvUK<)i@yC$5@ll&XL<%?H*U;qBc9d_K*U;grV z`Q{4!F6WonQTQECq`Tn;bCbU@U^X;1`OGc8W?x%v&{uD6-erESzBX8EE-}km%nf&M zGRs@)8yj|Iakbk1L*9ab4k-xS5NvAJg|siw_^@wI_>SYE#qAE}4g0=3&4o41(37Iq!)1%U#rrt(+y ze_Q>He8s!`=&u>@@7+?YB5q$TzrCCF`^BpZ0%m=SFVK8#(DdzW39@I~G3ZC3W&$*3 zZ7^6{=l9vA7X((A&7p0ZeQjn-gCm*U@NKohI={KOHh@Msz%8|HYpM4&Ek*7ci3*sv zuQJO^?yFf-RZ{NVm}ro(rLA`JWp; z^^PJ`8B1I1V6??E0HGf7tezB%n>KGle6pQ_Vdg5;%<{4uH-2i}hGauG*41L-gj#`? zg3L(W+UlsZARr}i^rUmnw>1O~2eCP5ZfguEur;)_ndN2oA$Z%i+GZP-C2yOrw%*sa z!ZGYEt-fY8b+0W5T&vOAXxnTUOEn_O90_e+(z1E0ug)St*Ht@G8wm6q=gdkn#F0aHzVu zb~6wgbdHtCFtjwAO=@HolRR+rg+cjv_OAQ0?x=y}5DCeP&~Gy>F)(+|}wcopo;u1%fEbXBL_Z6{)_?#H3kfF0?7u zb!Z6+s6hkFz^>+C?M{Urv!JOPil2P8sut;2O06}lb@4~kaJx>3-(-JkB=7C!XBMs$ z>Q)m7*0u$22NTurzUKPduLBM)eIP5#^le#TCaNtoZ!Sa^%w>gy`LbJ0^Co$^xiCxk za~<){7cgs^1vG(H&N~ohQ$YZ^ZSV&DAiIrifDvJ+&~PzeX)XuJ;Wug>Qq0y)RNc5_P`r{AnXlDMV?4F_u3?RB&afOFt7cx`h_Xp7&h zZQByshAstWm7i#1nRm^)4c_0mi9k(bd40ezO;YyOHV{2@t)Z=D8z~*d3C+YX9%~?r z36%?CV47MmWylm-Yab%P(I|^I2bVF7x|Y^m3`htjNC%c(_fR0TZG~C5vtXwhK2%0g zDuCkZ9zqL%7YN$C3%HdSU-HHqu3vgRtAZdD4577@K6cb%i5h?4-V~5*o>;ZXd!K}Z z*VVR4%FO|I9~r4{hOxP}o}DLKBVm&~`HjuM;DB%0EkTkH6;|8S>IW6r;urD9$Y()_ z$**s0V}gA4fWO-t>wPWw^)+vAY-?%e$VvRRMpln}jjcM1Jh$rh=hw9~k!dhdep~Gh zNlSr)?`mer43TgW;$%37g~5tmIB2{*krQzwn|3<84DbpSPoWjEti}WPy zT7!+4%vTo#u9if$e6|#2D6CX%T*8Thzq?u0OhFLgOV|edmWCRegkxhe5G6Q0>|QQG z7|Woj!O6zCp_AE3j3xF=lyt2iW1(OxqcK6whq< zc;lpm;kP#>E}<_f{d9Fxqs-`aTbf(ifc&egHW?c@aY2UGwD~w43~yUo3&fdizHPu; zv$mE;v%nwF%%)!DtKYoE@2hQHT8FmOtZoagCY>&q9xS|$VXbS(ze}anP&``i zZmO3TiCbTLhA5+<$|qeickebAUX^&e<{GnggKx*|;-s$9^>?rSRL!Q}tMD#N)U)LF zW=UNg@LjiRRgEJ_G8}DjrWctVZC!WghP$i0HS5VES+U*pCAT+K`92r&K`cq8s`6H% z7=gjMz&(`v)&edSEsf1VU)#b~RNqzxBLv%7k{DUcI&ejBYDk4`X0vY##(O*Gesb`T z-Z_44z9o*KP7dM6ra8k9&Ke)InmnSWHFa!su+ho~2TTcp1R#;mjz1F&RrWK(udJlJ zTn3v93q9>+^BBqa%HQ69@m9*@}`xcu4D0nbsz>LAR-l*Ct6NmE|a!R5X zkmM6XEy9tSQ%tJ|S*5n8-a^0tN$h@u{{&lFX}2H+F;(9ag{!hu+A^cY4{WUSKP3GL zD7#2V^RhM{#G+;s%1X$06^P2|($=i?mQ<9MlvQl1l7c@fjdw%Y$EMi;+ZhvmR5_*I zJJ)SMqSBevPs~F}FiJU~Js>+meq_?EFgH}MUvENdfo{>NrXdoNMj>5UV?%?l&DUIq z$#&XwcZ-d|tPgE#6(N@@KI^G#gMmsgG686ecxba|b_F{ZpKd%s@j>TjXR~LyJ@j?L zBW9=jsNz3g&{W@Ug2(y;#13->o)@eksTOXszz!@!N6789?ZjMidzN96AgwT076fh= z&R($e#`}=nC_`WCh^QLjAv--30Ag%v38EWG@&nTuYEQ5kV?7BOh@!TqL9MNykpk_s zGl;Z~7b3gNKjYBCEycwVg!P1=2fd?e2j*G&-W05ucx%e(3(vPuf4zUTGCTH zhy#gN<9eAdsc9N$%RzoS%1#S1)6|4;=%CHP230Sp39T@8)duAmI}&Xo7?W|3ahr9% z?T&N}j^`Ry%DT7sf_3;s8NS+W$ubzfIiw2N?#Kuq^J(kZ5+mc!am+@bqOFDIrIxle z(4N7!DVhvcnGJOhmAnxAUwq|q) zvYf^gXk~L#@{q^)>aRLY7;%mBsciF>Dqky<*%jtS1)hYm2NJpNZiR|)ul3cnKwVnx zuf@DGXSQmExrS(45Lj#q^H8So9UAy0s2>Q`w*1DW^-YkO${Xw2S^_N%LGzx*KnQ5L zdeI`Y%(pqT1-Uo3)wV&XR<8v>-7EkP!Z)->%B-{hWo0cSI0I&tk0t;pp7l}`%?!1z ztxb(e5CgJhmABM~D4wG|S!^(#ve;h!0)f3dm55HM4N2rr?0Ud=g;yL0{P(x)Fn2-p zHd|HGOyChd=p*eSwf2x@X%-J60}{{nIQm=PQYR|DNQo>|WedO<4!ex8(k@!0a!u{A z_yU=&tu?4{J@7CklXCPOdQ=i64Vbij0D&N7jbrXeQ3>paZXmd<%4!6aZPew~1R8=i zPB%2wZlRn|NMX)?S!Nj6L3a*M>BuoM&N0qO&vALZUfCLRbD>c|$e9aot+?-8xADos z!h0*QZO}Bi-_LMA=zkD@5H?zO;?Io~#<_;ujUPAu@zq#pG#eqK3I9kT@ZJowEFP6w zq}mI^ehQITcr}bgEzo8IK};+lZYhLbUsHYHYCvE5x#aemRuH8n$yZq!fZe|kW!E$` z1?)aIHbeVDHS3z1Ak~5R!zzIxgwzP!M|;X_{Zy7beA`-syNorV<~o_CTm@;QS(#P< zHD5Q-dIAfGnXpiv#B#(wZ8ZAA%MOk-T2?Riz6Ab^%UYU$Au$l4zEJwgzC5@tI9N%uk?Y zy>ELXdM)$YQTw`P%&oQ-P)hRXbvN7%P74!UOB1wfuH9j#B-@a%#RpCoMs6~zJ+=jm zZCVG&nF*r++ejOHGJtIk0U>l#jdf79*$Qeq?3A=!Re?DxVe$YC^3~DIMkZ#rsibWSx&r2GlV)j$v(MB(>{fG3fxkCsBZ4ku9aWjO zP%A})1{+sl;-MwYhM#U);$7N?l9P~zEyNyO!F{}JYYY<2QHI@If+X=rKKK`TrN;C4 z@cF5WOO3DNQv-f#&$mS4#KZUvi(vUhu>3Z)Y*|)_ zaQqsrEjtXhAP@wKZCAQDo`L?`h0xX3AQ(?=Se$Fbf|CH*G>p06SDV(~y>X)o;j6K6 z-G)0IuSVJ3WdffNYSd}AfjVP( z5W-=-5c`?w&kPrxiAz{$!rZLd&06Qcbfny4V&ZOVY)*x9q4ejp`Wg(1ZjBIO!lS)orIB2VC9m5X|rN z1!=G-0R!Fct7vHrVL~EIz2A$qEX)xt<&?JUq%^56d3xdgQsbZTX$iokqoGCS%eKwI zmK_w-@mF42v%0#f2CF)hV3tvWNe#l}4PosmsMBu@HJ7(EZwmSD_0@0kht{+;Zmi`* zzpJ)+jc;>#ZCgoeTY2rSyF$%(g_=r2TQ>Sy@2(4OXxU!ollp=W2e7PEXKebkVJurv zxuIkOf7fkTgEIJACchgcyv|QkpK2$c=zl<(up`(4hX$GQMr}>qHd2JTI{#`e&M#ZF zs*uJk`~AjMtE5x*JK~qkh-Z=VM+$oP*Gr9ReE9q`{Jx71TC8h>+zC506EEE?-NySi zp_xnJgd*WL+;7}*y%cx$>nsG$Lf|X}&O+cU1kOU>ECkL%;4B2rLf|X}&O+cU1peDX zVE7MkR@Y;t|84tswqs`@@Vi1F=MR-V?sv_1HvL%$oQ1%DKL`}x{HrvW!?m|F{2k!* zZ?^eb;rC*!#~MQE#tJUSt}t7$$EArLTFL<(e&TSb<03_^xekeBVHDs|;dIUCGHgL3 zxBLY0OUQA5+5bttf}0yn`W-a|unU5J1)r2n4-DVj77F-%I$~yc0E_XAa)h@w)i&G7 zo#9-B!kUB>?+k}ifNWNh2we`>?pU|lLZeG_)X|K#+D&zq)qr*S(}lz5tKm%Hi9C+- znLg2PM|dFA*5Ip$TNoSb2v3AL!lgf0rN&+fyMK~Hg>P>R*rB?lidt;8@V3^%XF4ce z3y!tzkBa*|V5Q=*9va-W!u-4-L}Jq^cXR^ASe!(&vFgJuJ>?}8HQo)I)@@p+c6O%Z z_ujomJSw@dkN#_1_JR)*9X)VUi1B$04mS$OZUH>EU4YSmh+Lbv!SDbs*b<7>|CxO&v~6-N(Uy8WAwBU@y5 zF}Co!*h!WC==Oa}V`83xAFXLRf9tUsJD=aXaHVC@%5qe?h@96FzDZsXJvgqz!uQsd z9Q^9!Uw=IO`|{nRPt;et70;fF&v3HmgEo^JuC4n1hQ5pQPSuD0@WuVQZhZNu`tbIjz4pbsn|^P4yyk|!Q#y3b7xS8A<|zH_ z?797^PiEch^LgWu*4O!#ElM2P?`o~x%?g)!#cq+MVu6*n#yA zQ~R&)eBy)qb>4Kva`g%(Wu5(e+wJo|JUyI0)%>!_?A~LCjsIf6x2tc?&2qHt_By|H zxs;M^F1Lff5|u8dScR%dZCh*_IBnvS`DfNRI}059=wun$i=@a?jqlm3Y4P!KGVA zuDCvP-{|7~GA1T8t5R#8J+REh0^75^bK8C1{BXY?KL2ua>gll$XXoy$_HR%p`Gbk& zzH*Ody;HC>S}AR+p!IjuU|%a8_KT_#8(TLvDlDWlHFTn`J>omI#ysl_7mG<~B_G{u zi%m>nm$Zf?7{nHsvgd@-)o-0#4{@tvqgqUSayxAN?h-|NjYBc3^iINdF1m$}-EEp5F}AsUzK{o#cV{qW!^azM9rC(dx>udoER1b*4Xs4Sn1yi4ht~eI!``*PdfU*`ar1x3FKTBr7ZogPN%*q`{XG1%hL3(a z{E-1KR{{PCL4S4l@x$st@N(v7UalGQ2U4^nKZ5B_68RBK{@(DD`wA$9#SffIF${i6 zN%zLVpDyU11V5FB!e_uw4UeE#15l}BI zH=#Q1o`}^sa1*iWixTw;EL-5PfQ+pb3T>l?&`zF zCpWa~FurqpHYbn#ThUs!?j8H!ncZkTIG2o_v)v^r;HoOES;Ax6a*!9;ZbDk6)CQD@ zl}#;?nATM!U}X~ZgV2VqV%?M4w_)0&+#7^uz@FeE@_vaB_0h-|#+o%_tDrxCI+v3SK zAqOyJ`}wg;3v2Dr_vlr+2U53e4HqkTux_(EZORbnz!NMVr2YRU)(r(V4nkbPHd)4( zilOFS>_`pUlp5kKA(y&;fQ!)C8KE>(2O&Qa<5^gQ0nf{Nd2yZGmbIs1STEkQJf-{d zozUJzq%22^@Wbx23WeMepGbVEPv9I6tk5O_x(j5@VA0speS+tI^pEjnGb#@2W7!t+ z&=!2cHh8agu!2Kd)mybgy@uTnTg`?2@ze@v0p!c{FY+ci9Sg=-I|%0eZ>4?lY?8mD zf=~Vz)4q7_KX|8q>$(4B_i2oyX7_KM6T-&G7n+|GU7vv-Xp=RtqC0Rv$BV;V0t5N~ zhnD(Mhb6u9#Tfv-+9xEpqkUG8RjSsFtsPY(n)WiW^A$oZhHi5WI%5xWm$se3VzA&A z>v`F>PmJ@e0)G?-eG_kv9RuL~t-B?nWh6w^s#H7BLj(KbnVf)*99Sm|PEjA*v_Gs& zr{Dw+JE5Jsp$%uqGp2ImP~50qI64HIm+0wi?J}JxLrekB4IPowjt$RRy&JwR7vB_S7vw$*npMJWI0{!;#* zW}iYLHv4VP`H{DLcQtn0R-1u|UdG!ynO{E}=Y4NvW%2$iExjL-bRd{V>mXMW_z z;!!xIqkPF9EGP2^%O8qQ@5TJV_ho)6FO@s^T*8MvH;5bahuRcjT{$_yYjQT(CI9GS zwY)Y1e_{Sar-VmD;S@&q$WL)84f&~Tp*ll2%PSb4i?L@tObQKt8Eq`7?j;xy&CdPbi$q8H!KkXMQRR~P(E}oJZ>KMSY)C|?Rk8*(WgwQItFD6EY$Kb1WcPHiqMK7|wCCu~@s2+N0s zqi?hP!}tx2C9Ka=ny_#hOHx4$A4(VG11|ZAF9!LT8{``vg$MZw^V5BbN8v&K!~DVL zgu+Ao(+%=57EXMK@};yvzQ_DQe#puY#y{CRP`(sD7*70(@wp%$3+0na;lccwKlohc z596ONaH9BO{FBNV;-8`SWog6sX9yowhA{p~^~dm}dM3URYK#R=n| zF2$uZVQqx@gM2I$Kg2&-+YjXv#y=Tv3q3cit%Smfk1?JX?yBcILnLt!Sb_kDoc=mhTfMwD~x}-=mQKN>X+a{#AnbqvU)-O!~9|VlijCyVf~o- z!}urTTa-SSPl$g~{=^4ap49i~9fHrL@NHr7nLmtw(sM)nla)8nr?ZC2gMOdY3*(=m z^0Rz`@5TJ!K`cGFgb(%WU>Jpa@=uT29L1x4Mz|4$_qkwrh<{T25dUO25EfzanLn5h^Aj(i z{KNSo`4P_Y2@8KAi&K36=Ogf+iNNvUuw8@b7ua|lFd4kCa?qq{jXITUHHc;trkKxc z%}&k;&R_m3X@bX(V2dx#YQb~pm<8BU$>2d7^#f)dsONtlFL0g>SxjG^Ao$PH{(HmY zUQRT_>JWaIC!LQ%Tj$v%^k44bY`|8DJrdX+I0o8(@Ly>D>BV_*FV7bYY*!7Ka09k( z97NbfFNaxkvJ)}ucUTDKk3wh81Am$LewGWsXwr2T(5(ha9fAa5M{$abw_ zMlQB>s~%Wq0gF%^3#x@f3&?^JxN6Xu9ZAqDcnB_C;3hkO@*kL4{uTQl6)#`|3#|L7 znAjc`tH3EYF!aINj>(mTm$pAL$CiObt8M#Mp>t}`oO+2c&R79PHLB8fPOeeKhE>R|O$P*^wNiL_3Je-| zDepF&lB2@o&^0st;^xaev@w-yhc^7vd4jmt3KJQWu2zluapZQ2@5at%pd}P^9eO5P zQW4CsKApNv#iYZE1dC4prfO0^yu6k$6nyNI|EeGQp&RWLiU^j{#UQ-<%9iU@w1&7?y zc_GN3O&7rci8+;ITEjwRuhq1EeOmI-1?Ic9xc>WmdLlznQMf|5K?e4a`=|03YajRv zPGbFod+ZLq8@vW=oW~TJOrwzhx?hiJ7zaRH!-^aqq)=%h;2|QO@$CFT zE^2Hvmj{#+lm(Oy6#knt^QTC`9o8E|de47X|+Qdhf3x)sg4_?QanG*S|l zngJRHqBw~`w=vvkP)Sfu&{LG1?!QYfg&)0NE>MUkqZ=?k^_e`N^dLHWE(7RQ5KjE! zvVdsq4Y?FXE{$|_FEc1~kMgCo8i{e$Z_Mm-24{qG!{gK9o-p7SaVKGRH1{^#7I5>yZ3Y*tkBfu*4%}LB--H_tw-8(#ZdSN5Tq;u; zxP*IAxP*HFxKy7x;TD9O4KCF|7PwJxGr?tLg-d0Bi1z#z+&gdy!|QPK!o3KW-t`n* zY9mMB5@vhhf<1F-a0|oT0=EdE>bw2 zwZ}9n8~uPyTDpLjn-b<94L`L(`i%+mj}7yW3-hCnU&Nmf=ARhmr+z{0o7&7MP*nPf z1jUOV)%h=T18dUK;8I(f1ef9`!6p2o;Sz2+;S%n5<^<|*7hJ+|6kN(Q0WQ^d8Msv6 z_fa2&{{gtY;ckK32kvsXec{f4`xNdpxX=zTw)SLfUVx%hYGk7J4evI!jU*KQ(HTkI>TOb_G z!?2kOcOB?B=pHCL8V?Vu1L_0{r7>}@38)tcZHHS6ItIE6%7%F5LA61Nph?AnO=LRO zq!s|f7N7R{v=HLaZ_y6{ckaS~J7D%jstT?`{}kpfLHzCW&&-bs-2Th|0e=ewRS3H4 z{>AtegYnlR{^5C7=jG#moOgZR`~N)u{&QK1dSC$c&U|ntiu>?Phcn_|;~zV9;o>8l zYt%nfvS5@skrjeIboBHu{f{%f@K>0T<%K_H=Nm8lMepYb`BSD$%N6oRZP}JL;7^yj zFaH>s{Bv&|IFx_Ku{sr^?#x=3^zM=syJxnqaHRROVn5~^Q#bF;ffc$=IXSs<*7T!G zeL1VbqtrRkw+7@GJK)nz6;kaJiw-}p@lNj@$0~H$b8*y-lzr7UPh3)Q%ixX;N*JU6 zNV?ds(w6gME3iqt8Y*9eJu)^Wl%qwp}{;;k^>6^Y%7BpVGP3zR#yd zjfjkGv8z}Qyf1g~z`+B7-xIH^^V-SzN%Zfb*EGTUq3-CZopTKQ-P?JrOzXUt8|U6| z^f&Lw8$||H%U^Bz?!~`)6&9^;pZI0^t=f>Ap5$z))c3~|lTyF`$=mVl*`fGB*?S#W zcGW9i>-|f$cWs+A`Px2j!mj#OkLZIrw@v@jyU=#?B%{iTf~yZt@`@JOb9u{VONbxY z*Nbn^WPAVB_50=c`a|#JujNN)*fwGCTTi0BqTa$A#=;Umf3l>s_wn+%SGOeet9s;o z1Gm*j84eVQ>oxHC_yNxN$7bHXt%_9^(w5tWh9A{Gtu}Qd_w1x~Zdl_?`Bz`RGGx&! z)}BFCDrH>%Sr6@OIaBId;JYGc#b0ZTYicYSx-G5InT4M&nzv58-0rLFi(_X;H`$P_ zOtBhQ%c^qS`YR80EH<`Dx&>($c6|Kg`ksQbej3)a(Re#GW?3^;^4Y+#UuKx} zarUcaFU&sl-QINP7o8&3>;HTNd<1+1d<1+1d<1+1d<1+1d<1+1d<1+1d<1+1{?{T< za@AroS+n2WHH#zDR=>Osg_E0a{o=@WxSs-=23iH$1Nt7stz8_M4HO09K@~u;pq8M{ zpdp|+pp~EmGS_;|%+6y`Zx(<2_%C=!~WO0xRstRfhN(PMqEdiy0&Va6g{szjn zadBi}kO-;@iUYL(bpZ7Q4FOF9Ed}iYg=6=h>G$j9zh}L?AAv6%)MsDeseyBXxHfdE zOzUoyX}fr<_(Xhei+w_e+a6J?HTG!!CAH3zo28FL~y1*3BU`;I7W^{vQpGg(L-?ClH$jAPf8>Ck5FYATnpP#)CJu*;|-@|f?4t)m-Zs8^Yu~j>i zy6DUD(Nlt0%wr{tZ5=4%Y<5LozC?Rq{%EWb?AE0Z_c^<&jKWiEN{wt7_!XFn;*{gD$=x!h;wkXqC8*foL=_XYU7ZboK9^alx zq6Sfs`!2E(j{Cv~@4CfxVcYjB;WJ>|)rc4VxGtdxTxvwE%C+N@USO3Le%%N&tC6ws z?Qz}}J|)k-JfpGq*jI(Cy!@DWAm8p4xi$afP9rV@mH)3v zxJ>^z9AzpW8JnEgpfep*!c`=6DhED?Q#rX?VgRUaT>StlwD>#Fgt>-)4naQsC~a5^ zTgp{U#2IRYY$dk(yE|4I1Y14@R>bBLl(ljU<9nOPU$JrwW)dmqx>ahEKc4ce(mA1S z8%jZ|J}P6$czn0kFAy&L=Ma>mWgyLqFR(Yncev;?M-{o|?Ck;^AiVGWXO6pm-aZ08 z0zLvh0zLx&qY=o4bz^ve3)&L>q29#kXxL^O^AmHHdBFV9yk};za$2RV8dfiBoHff@ zW2IWht&7(0)?0Q-+qK`b&|Yotv5(m|>{p%q4(~K^x;ulMS)Z?OL-$p$h$nj0y#`)KueUeG``laY9rZ4FcRenO zgFJ>cqkIAE)~L-l;S>4c{1kpEzmDI>U*qrduL^Gor3F=ZPiQA33qytR!UAEta8S4? z{46{Z@`)uxOROq372AnD#9`uR;#TpP_=EVnm{lq$DN;45qcl}oE^UzZO5aOYrQak@ zenZYB7n94#mRw1$CpVVc%AMtp6-x9Jd+90qclrbU znf{8A#fUcQ8qJI$#v-Ex%1mWlX+APDpnRpQidI#tpEcT=W38|@SZUTn>zNg4zhR4L zot5oVcBGTpDd@CxMzW_jb33~O-D55uSRrseWOhD3KY?Gtr}3xwdwd2#7g`Iwg_7c9 zWxCeN>EiTp`a1)i&(MpZra z7ZPq79+8fJl`qH_=ilX<^L_cL{967YpG7DyOcXv7_6wqTPP``G6Ca5Mr6N*E$&so^ zHKiJ8Zs)b!dO?TWTo|58tH<9oMxUF&&)}EwtAWvZ{%8I+dR}g!fKW(i zAq*GB3X_B_!VcjZ;eqf(@Wd)&O|h=nLA0cbQdQ|asjoC#8fJ_!rW;#Py3FRAXoa>} z$*gYHF&mpL&0gR(qs=MiGV>tX-fh#e-nTkf-BIQt)+C zc2&EZJ;|PFud{d9`%%Zg*^lhE(AFwAu}-q{vGajD*ZsoH=Bb|RHS#|6dU&6B!@Y^# zOmDHb$~)v8qjyXS)PFA2e_g&YI7<(_?HGQnbV=$hS5oSsFSkWs?x&1YCMa{2CCUb6 zt8zfeuNGC~)vjuPb(FePU9TQi@2KajVRo`J7y16=-J`ry0&C_=^Ktx8ej7ht_)-`z z?h(0hfi>u}lpV?%?YwqfYomA9`|Ghb(##30Cmw_LJ>Ohzt~NKATg{#3KJ&17$~`Fc*N|^~{tEjQ+DfI{Si5jV8 z)Us>2wJ5E$)bbXzEM8APnU&ttJ@Wx`}8>6l{#+-(+YKggm;k5_+ z>xr2WW7a#?U9^}ic6r;g(>r;=g@&RJFLahUYn`3Wx6Tpgv~$V1=@fNcx1rn2Z3oWK z3%z-WJI0;l&T{9w%iPuO4tKA6)V<_hcYkvqxzwqT0G{>y5&j~2!E^pYp_9;0d@h!k z>fkNg$zA2X@=)~O>GEuO0mh1R@@4eoU*vZ%Mkq>Mw5YLYLuZssYLr?=t*pkVZPjG8 zk2*k|qOMkVsfW}{>P_{rno-N4<bHKMMe({KSLd-8kNyVhHk_`^^o)jas!MK?u z4ML5MktRtqF@mm>zLs`L2hn$m%Vp&_xtW|SkHcuWL0+ruQjRH?FcNZVH0ro9dQS(n zhnj-7J*r*=KP#%0LLGP4dTWEV5!zI3rZ!LeQd_HS(za;_wNu(P?WXoj%b;i0JE6CX z*3b0*S*#pZZY#6lJ6^sY`$Unj+x=uCH3 zI9o9K{owot{4={b-MsEQkc2$9F2;{8Zf`fm9pg=BP(Bm%Rj3QQV8TdKqd#A+nVos?zB${aHTj_!nDQA=m$c5z+ zkYhwymtDEK91B_I1DRTAe@HW9WDUY4)Rx8w)%Q#qZI zS)txpSSg{DQ#8d>swnR%os{LuYGpIp@C_v$#->i{*QmqaF(ye`HLaP}RU4vxj+*oI zW~iUM=%otkCI(Vv5?btdW1g|n*o+o?9#To9S;#D5mNg}_A|#Rq=KE$ljPCs)k&MG= zFdw5lalrlNQS+wx(0t2z$0_AVPGzSNxK>ZJ>7~vl^yIyeEq`(%+zhVcRsy1}-45u- zgVBpu0Mn!HMR%&V%uDsIc-KAd4)#`#edCNTfp41eo$;IT6bR=8x~>^*HZ*&fDdrIH$_?fYbFX>Qd;s|_qm>I1lxU5# z=VEMFX>YZ++rKi&ATP#<(oPkpE86b{C(3Q*c5_ESVqXHDnCf=)`gkdj-^QSIe&)^d zHhJH&vG11m1fxd;w*(kx=L-R2g^%WILi*{bokhz6WmF5wg-qb)33PU8U|RQbpFL$weTc22ip*t;xeEO~RJx1&YRyzB2 z`%OE)T?kqfZ>x--yl?lkH`wc(RA)E1#Sx56kH9Z-yKlRtUDK`L#=0%s?r7V?-HGlz zcM-;?b?(=wjXjWOPh*7o!_DYr@d|onJ;ST)#X=rUL_K}tP4MP;3%uptW^a$T-#h7@ zM_&NX$L5w8)YB_`7XBT+7;32{-;N*6p0V#02^qDkU zS}mnXN2H&m#}esTf~?B5(QDq9yUV?yV|^`u3$3ak>dV$@Xmzyu=oLv?5A8E;jo`2b1(KAP;=2pU^MpPoX8OGg6IX#zpY_pTS!q%#3DM)L2_{FluOrdCtrY ziJ*)nTWze5z}bgbBcU;TVSQ=sw=dg2*$?e3&Q|9v*DqI271H18QvG*%vZf%2+ybpE}FIbTzqN1B40)jg~~#0p^1wowcr5 z*R5YI-nP*?>)K815A5#t6nnP4!2ZhKY@fHU*-vfJv79()R~?*g&L_@jrsu7}Xm{4R zfzd8I^gRPSxgYrP2zM+H{nFinwtB(M3@lBrIn(%OdkejJr#4al9-4D5NCkb(p=Ms_w(r;zYz!&^;&wp zyvtOd6(TUViG83L8*cF&cvmts9cuF}VNK{Nj(~*pHCp;T$htYC!WelKjIs^oEDFhb z9n>!BY;}RUQT;=WffUkGMNi?$uQ+a+lDuj+5>f?h+fqt}Oi-x)2sxBjs{P2a8G z)*Bl`jrB$*v#8m{+-+VmpIPJW1F);ywW-5iN148bW#N0}oN`&YuKcQGSF5Ns)VgYY zXo}6%R*)z=K|krGexy!T=c?CL4)XLHT23vGRzRx)4memF1r9h#o2Jb`uUY`x!(Hv6 z_7uGNE5?`U2P)Zt8Etx=_+6gOOZ@oMjsoz#+#OlfWZq7>|u8l<$EV zX%)0eTklz|tzpo_cY(uMb_IJVtU^CxJh^8-u_K&}&Ku5Kun81#WXC~U84i7Vhm+eY z>JVv^G#OgQN@=ImSneeEk-vg&y%S?{dgXmc zNDtejRZC@s{{82z59^|jVo2kjziw>a9`7PPOH5mc7{CYag{AV8l;Beemu`_r80S@K1?g_KTkUC;W8&D}D!`MSKgq-V<}l4rIo4 z^7nXN8|5SPyS0!8_bA^fZ87$CQ5Rv{y{z6)Z$ppEs7(gno~iBAj%m5{lF-|-8gCkT zjAGE<_JCKP0k^&d+f<~P8&aTXdXQ6M%|yuOaIa z^P~0GFz%qtCBZp4SR-PgVRx}hIipaQN5I)0yRUftJZ??|+eez2e;_@P^2l#P7B4R= zaz(kC90MNlK5A@&JXM}6ua~#TJLJ9cVY!$Rtu#=QQLc>Y>uP?r7+T|WbqiYJbm%|r z!6AyF7aB$>NOX0f%M`OJSl?I&tW(wn>%NuQ&I_wfNn2vNe>;0UtRfH4($>NHdffTZ z$?1Lu?c$P~-V?l9UNhK2X2TM)8FJfkNCUr9ov(^uHlGN7JSq6!Hr12u+1gAO(Db(f=nQn^+c>)gIzdj9K&0^Dc@%iNA^Ir8m$n`$=Qb@77|h z|5f@!a^%U-Gtz)O^}D=EF{J`zxn@c)WvDU{E$AC)h$Ymru#&cd{##a)wS`(OaK?lB zas7(^9yHz*@Wk=pIE##H#!bk!G`g37EcSuf4RY;J$hC8z&8;xkn!8}Vd;*S?(R$s= z2W_r6>|Z7kZ+4m!~#-F>AHFkZN3;J7fGuC zjlC|D=X+`Wz;CB&v$Wl?+5N0#)AQ)3b?!(6w;bij#TSNcuo@qWkuHH*pa%03`Puv` z{%d|0%5@4-^G*H^|A>zevS0)%CX^Fop{5Wgybrs>bXdBli@lL|X~?ei^!N4E`YyE7 zw~gXPW=NrBV6p81IcGoY^<)bv0-jvg9*hzEYxJhe_AhopSbd_4=YawCBIS}qxB4MiUY6(ya9^`SIcqZ!NPnTi-)oylrzB$;vx1PBUj3#<4}fs|tD+DwT`mbo@WU zpXA?!HTfO6jyzG_s^)THU6$W*DQ=@l`wPAhhcmevhyFt z+t3)Ro5#%ykQURU_f&!XxECz3GaxTFvD55!&N=6EcLp?ytr)LQc-I2_BPx<>jQ1`M zjd}{ocUxGl#A22sz4j_*Iv&A(lU2{F+mLzc!8Xtjvl-(dWo*&+p|;QIHmq4wj25uE z%(GToUpsHPgTc?&5T1M_w-=7d_k%5UIwyQ$Ds_y~P;CHT@0 z;7j*0^HUOfNk8Z#^Tl=GNfvC7&86Pb2x)>ejp>;yrH#@RjGPtZt@2!D5^8;lJ{z^O z8Ra<#8LSCL_7Tvfzrz@H&!`5=#0c0JZe zoeKSW0ow6$_k{bzeakE0MPavfNk{~|Cqqj56dK1UZya>)$An8vBqu{gO3z0@&n|=c zF&XxZkHELr@*DXrn9tY+-gW>;<%3nDDEL|#VFv83dob2aQD!S?%06W~df!p?9Av~> zY7Q+gWS)055w?h`T0N}^B!_L7lR68o^(!RA2ijw;yj~5~hfT1+9n~+x0v8L5TSr*i z20jy69?5Vk=XXo60=!ul=z9AH#g! zS@drKa(*XB)hnTAe5)-nP8y#;_u6T`3oGnejL_A=eUG8N^mPU}+o0VK3AFE|NX|w* z=HNa4XYp6@uJ{1D^WVfsDTDNylohgUE@(Ujp> z`q=~XaT8!~U+*4(ghDm=3al8p(DvVj4b<~KfWF<;`v|o;0d=_r9Op1Bp;x_M$qt$l z$@GNW=mVwE{vG~3Cbw+o4}(A4g*`7HX4@QS-vc239RYV}1zX+>aT)6OHmrE*rBYIP z$;3QWHRub?Fp77Sx?`qd80^|pr8%hi3()7XDLElo7r;D4QKh8PRGFt7Rvs(0p>H)) zJHvWUGeH|+)4K$nllo8!^sBX6nzmQ_9%IUN?G0F$s^|^$4`ILVr4QD}=sRJzxC8s$ zLs%|2%x>0(ML*scW_*P?+m4WErlH*&G=DRz1N|i6J|8n+-(se&{aOcW z-3g3;+_*@t9h!D=jK?#CG~qqSw%wHBsQ=CCPF2R(*HrsZJBhJoF?h`$`vM&kJNYOL~;etPD=yhhJ1T) zn5&RXvcWF8QYm0;1(J7D$=NU_2S6<63pL@WCzB5i47mTYI&F&Zvm>o0|6CaC5<@15(&d!$ zNChM$IugkLI57LgyW`!by1tl>`vp!mJ|~|CYcHZOy6AiwX7~SH zFcR&81?vE`@Z;cE=ah@eRoFFtfo1o;@=$rIEP&-^Eo>*dv;&aS&Ot`|1@hTb=xSLY zF&5B^>SbUdw_&}lrN=?GNYE4YWIYZm1`^O#l8t^CpGLuAF~e8@tL|E33uej>7{_7T zodK-@uj&7M1bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU1 z1bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU1 z1bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU1 z1bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU1 z1bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU1 z1bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU1 z1bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU11bhU1 z1bhU11bhU11bhU11bhVkn;=l9lE70@S}t9n^oCo-Y}T=T=e9}hJ2y-2(j~EbvmVLq c6T3^zx+cUY$2W^^-Lgm9fWKT)LQC%d0EUgpxBvhE literal 0 HcmV?d00001 diff --git a/readme.txt b/readme.txt new file mode 100644 index 0000000..38789ca --- /dev/null +++ b/readme.txt @@ -0,0 +1,148 @@ +============================================== +KINGPIN: Life of Crime (TM) - SDK +============================================== + + +This is a bare-bones compilation of the tools necessary to +create user modifications to Kingpin. + +Kingpin uses the Quake2 engine as a base, and therefore +if you are familiar with Quake2 modifications, you will +find yourself in very familiar waters with the Kingpin +SDK. + +This SDK consists of: + +Game source-code (sdk\gamesrc) +Kingpin Data conversion (sdk\kpdata.exe) +Example files (sdk\examples) + +----------------------------------------------------------- + +The source code is very similar to the Quake2 game source +that was released publicly. You'll need MS Visual C++ v5.0 +or higher to use it (earlier versions may work, but have not +been tested). + +We recommend that only experienced MSVC++ programmers attempt +to use the source code. + +----------------------------------------------------------- + +To build Kingpin model files (.mdx), you will need to use +the kpdata.exe tool that is included, along with a script +file. There is an example script file provided in the +"examples" folder. Open this in a text editor to see how it +works. + +To execute the script, type the following at the dos prompt, +whilst inside the SDK folder: + +kpdata examples\makemdx.qdt + +It will most definately not work, due to the fact that the +example models don't exist. That's your task. + +This utility will convert .md2 (Quake2 model) to .mdx (Kingpin +model) files. There are many Quake2 model editors and converters +out there, we recommend you search the internet for an +editor/convertor combination that works best for you. + +Kingpin also supports .md2 files, however, so unless you are +creating Plugin Player Models (PPM) or characters that require +locational based damage, we recommend you use .md2 files. + +----------------------------------------------------------- + +There are a few maps provided in the "examples\maps" folder. +You will need KPradiant that comes on the Kingpin CD to use +these files. + +Each map is provided for a different purpose: + +bar_sy.map: how to build a bar level. + +rival_teams.map: how to build a teamplay or deathmatch +level. + +rtpv20.map: an unfinished example motorcycle level. You will +need to type "g_vehicle_test 3" before starting this level. +Keep in mind that the motorcycles are very rough and unfinished. +We decided to keep them in there, incase some mod authors wanted +to make a motorcycle-based mod, this gives you a head-start. + +sr1.map: the first playable level in the game, this map shows +how to build a single player level, with various characters +assigned to different gangs, AI moral levels, etc. + +----------------------------------------------------------- + +This is an unsupported release. If you have problems using this +SDK, we recommend you visit one of several Kingpin fan sites, +changes are someone else has a solution to your problem. + +A web-search for "Kingpin" should return several sites worth +visiting. + + +================================================= +SOFTWARE USE LIMITATIONS AND LIMITED LICENSE +================================================= + +GENERAL PRODUCT LICENSE. + +This SDK for Kingpin: Life of Crime (the "Software") is intended solely for +your personal noncommercial home entertainment use. You may not decompile, +reverse engineer, or disassemble the Software, except as permitted by law. +Interplay Productions, Xatrix, and Id Software retain[s] all right, title and +interest in the Software including all intellectual property rights embodied +therein and derivatives thereof. The Software, including, without limitation, +all code, data structures, characters, images, sounds, text, screens, game +play, derivative works and all other elements of the Software may not be +copied, resold, rented, leased, distributed (electronically or otherwise), +used on pay-per-play, coin-op or other for-charge basis, or for any commercial +purpose. Any permissions granted herein are provided on a temporary basis and +can be withdrawn by Interplay Productions at any time. All rights not +expressly granted are reserved. + +MODEM AND NETWORK PLAY. + +If the Software contains modem or network play, you may play the Software via +modem transmission with another person or persons directly without +transmission through a third party service or indirectly through a third party +service only if such service is an authorized licensee of Interplay. For the +purposes of this license, a third party service refers to any third party +service which provides a connection between two or more users of the Software, +manages, organizes, or facilitates game play, translates protocols, or +otherwise provides a service which commercially exploits the Software, but +does not include a third party service which merely provides a telephonic +connection (and nothing more) for modem or network play. Authorized licensee +services are listed on the Interplay Productions World Wide Web Site located +at http://www.interplay.com. This limited right to transmit the Software +expressly excludes any transmission of the Software or any data streams +thereof on a commercial basis, including, without limitation, transmitting the +Software by way of a commercial service (excepting those specific commercial +services licensed by Interplay) which translates the protocols or manages or +organizes game play sessions. If you would like information about obtaining a +pay-for-play or commercial license to the Software, please call Interplay +Productions in the US at +(949) 553-6655. + +ACCEPTANCE OF LICENSE TERMS. + +By acquiring and retaining this Software, you assent to the terms and +restrictions of this limited license. If you do not accept the terms of this +limited license, you must return the Software together with all packaging, +manuals and other material contained therein to the store where you acquired +the Software for a full refund. + +Kingpin: Life of Crime (c)1999 Xatrix Entertainment, Inc. All rights +reserved. This product contains software technology licensed from Id Software, +Inc. ("Id Technology"). Id Technology c1996, 1997, 1998, 1999 Id Software, +Inc. All rights reserved. Kingpin, Kingpin: Life of Crime, Interplay, the +Interplay logo, and "By Gamers. For Gamers." are trademarks of Interplay +Productions. Xatrix and the Xatrix logo are trademarks of Xatrix +Entertainment, Inc. All rights reserved. + +All other trademarks and copyrights are the property of their respective +owners. +